@voicenter-team/voicenter-ui-plus 0.0.91 → 0.0.92

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/library/super.mjs CHANGED
@@ -30506,13 +30506,19 @@ const hq = /* @__PURE__ */ pe(oq, [["render", fq], ["__scopeId", "data-v-dd23560
30506
30506
  handler(e) {
30507
30507
  if (!this.useLocalData) {
30508
30508
  const t = this.getSecondsOfTime(e);
30509
- this.$emit("update:modelValue", t);
30509
+ this.$emit("update:modelValue", t), this.$emit("input", {
30510
+ seconds: t,
30511
+ string: e
30512
+ });
30510
30513
  }
30511
30514
  }
30512
30515
  }
30513
30516
  },
30514
30517
  mounted() {
30515
- !this.useLocalData && this.timeModel < this.minValue && this.$emit("update:modelValue", this.minValue);
30518
+ !this.useLocalData && this.timeModel < this.minValue && (this.$emit("update:modelValue", this.minValue), this.$emit("input", {
30519
+ seconds: this.minValue,
30520
+ string: this.timeSetting
30521
+ }));
30516
30522
  },
30517
30523
  methods: {
30518
30524
  onClickWrapper() {