inertia-bootstrap-forms 1.0.44 → 1.0.45

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.
@@ -2599,6 +2599,7 @@ function Vd(t, e, i, n, r, s) {
2599
2599
  }
2600
2600
  const Dm = /* @__PURE__ */ Q(Pd, [["render", Vd]]), $d = x({
2601
2601
  components: { Vue3PersianDatetimePicker: Ja },
2602
+ emits: ["update:modelValue", "change"],
2602
2603
  props: {
2603
2604
  name: {
2604
2605
  type: String,
@@ -2628,7 +2629,6 @@ const Dm = /* @__PURE__ */ Q(Pd, [["render", Vd]]), $d = x({
2628
2629
  },
2629
2630
  placeholder: String
2630
2631
  },
2631
- emits: ["update:modelValue"],
2632
2632
  setup(t) {
2633
2633
  let e = K("form", {
2634
2634
  errors: {},
@@ -2647,6 +2647,11 @@ const Dm = /* @__PURE__ */ Q(Pd, [["render", Vd]]), $d = x({
2647
2647
  }
2648
2648
  }), form: e, group: i };
2649
2649
  },
2650
+ watch: {
2651
+ modelValue: (t, e) => {
2652
+ (void 0).$emit("change", t, e);
2653
+ }
2654
+ },
2650
2655
  methods: {
2651
2656
  clear() {
2652
2657
  this.modelValue = null;