sit-onyx 1.2.0-dev-20251008133229 → 1.2.0-dev-20251010055521

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.
@@ -1,11 +1,10 @@
1
- import { Nullable } from '../../types/index.js';
2
1
  import { OnyxDatePickerProps } from './types.js';
3
2
  declare const _default: import('vue').DefineComponent<OnyxDatePickerProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
4
3
  validityChange: (validity: ValidityState) => any;
5
- "update:modelValue": (value?: Nullable<string | number | Date>) => any;
4
+ "update:modelValue": (value?: string | undefined) => any;
6
5
  }, string, import('vue').PublicProps, Readonly<OnyxDatePickerProps> & Readonly<{
7
6
  onValidityChange?: ((validity: ValidityState) => any) | undefined;
8
- "onUpdate:modelValue"?: ((value?: Nullable<string | number | Date>) => any) | undefined;
7
+ "onUpdate:modelValue"?: ((value?: string | undefined) => any) | undefined;
9
8
  }>, {
10
9
  skeleton: import('../../composables/useSkeletonState.js', { with: { "resolution-mode": "import" } }).SkeletonInjected;
11
10
  required: boolean;
@@ -8917,7 +8917,7 @@ const _sfc_main$G = /* @__PURE__ */ defineComponent({
8917
8917
  get: () => getNormalizedDate.value(modelValue.value),
8918
8918
  set: (value2) => {
8919
8919
  const newDate = new Date(value2 ?? "");
8920
- modelValue.value = isValidDate(newDate) ? newDate.toISOString() : "";
8920
+ modelValue.value = isValidDate(newDate) ? newDate.toISOString() : void 0;
8921
8921
  }
8922
8922
  });
8923
8923
  const input2 = useTemplateRef("inputRef");