From 92af34001e6a0a3d00255e090d6ec742a61c5838 Mon Sep 17 00:00:00 2001 From: HerrHase Date: Wed, 5 Mar 2025 13:56:38 +0100 Subject: [PATCH] add namespace --- package.json | 2 +- src/mixin.js | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 9c2cf6a..fc86ac5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@tiny-components/datepicker", - "version": "0.1.0", + "version": "0.2.0", "description": "Datepicker for Desktop and Mobile", "repository": { "type": "git", diff --git a/src/mixin.js b/src/mixin.js index 4a87b6f..a04225e 100644 --- a/src/mixin.js +++ b/src/mixin.js @@ -32,7 +32,8 @@ export default { weekFormat: 'isoWeek', - isoFormat: true + isoFormat: true, + namespace: '' }, /** @@ -49,6 +50,10 @@ export default { this.state.date = dayjs() } + if (this.props.namespace) { + this.state.namespace = this.props.namespace + '.' + } + // change if (this.props.isoFormat === 0) { this.state.isoFormat = false @@ -69,7 +74,7 @@ export default { * */ onBeforeUpdate() { - store.trigger('change', { + store.trigger(this.state.namespace + 'change', { date: this.state.date }) },