sprintify-ui 0.11.15 → 0.11.16

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.
@@ -42,7 +42,7 @@ type __VLS_Slots = {} & {
42
42
  declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
43
43
  modelValue: {
44
44
  default: undefined;
45
- type: PropType<string[] | string | number | null | undefined>;
45
+ type: PropType<(string | number)[] | string | number | null | undefined>;
46
46
  };
47
47
  options: {
48
48
  required: true;
@@ -103,7 +103,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
103
103
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
104
104
  modelValue: {
105
105
  default: undefined;
106
- type: PropType<string[] | string | number | null | undefined>;
106
+ type: PropType<(string | number)[] | string | number | null | undefined>;
107
107
  };
108
108
  options: {
109
109
  required: true;
@@ -161,7 +161,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
161
161
  required: boolean;
162
162
  disabled: boolean;
163
163
  name: string;
164
- modelValue: string | number | string[] | null | undefined;
164
+ modelValue: string | number | (string | number)[] | null | undefined;
165
165
  hasError: boolean;
166
166
  max: number;
167
167
  primaryKey: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.11.15",
3
+ "version": "0.11.16",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": "rimraf dist && vue-tsc && vite build",
@@ -56,7 +56,7 @@ import { Size } from '@/utils/sizes';
56
56
  const props = defineProps({
57
57
  modelValue: {
58
58
  default: undefined,
59
- type: [Array, String, Number, null, undefined] as PropType<string[] | string | number | null | undefined>,
59
+ type: [Array, String, Number, null, undefined] as PropType<(string | number)[] | string | number | null | undefined>,
60
60
  },
61
61
  options: {
62
62
  required: true,