sprintify-ui 0.0.189 → 0.0.190

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.
Files changed (40) hide show
  1. package/dist/sprintify-ui.es.js +2691 -2681
  2. package/dist/types/src/components/BaseActionItem.vue.d.ts +22 -33
  3. package/dist/types/src/components/BaseAlert.vue.d.ts +3 -3
  4. package/dist/types/src/components/BaseAppDialogs.vue.d.ts +1 -1
  5. package/dist/types/src/components/BaseAutocomplete.vue.d.ts +1 -1
  6. package/dist/types/src/components/BaseAutocompleteFetch.vue.d.ts +1 -1
  7. package/dist/types/src/components/BaseBelongsTo.vue.d.ts +1 -1
  8. package/dist/types/src/components/BaseButtonGroup.vue.d.ts +1 -1
  9. package/dist/types/src/components/BaseColor.vue.d.ts +1 -1
  10. package/dist/types/src/components/BaseCounter.vue.d.ts +3 -3
  11. package/dist/types/src/components/BaseDatePicker.vue.d.ts +1 -1
  12. package/dist/types/src/components/BaseDateSelect.vue.d.ts +1 -1
  13. package/dist/types/src/components/BaseDialog.vue.d.ts +2 -2
  14. package/dist/types/src/components/BaseDropdownAutocomplete.vue.d.ts +1 -1
  15. package/dist/types/src/components/BaseField.vue.d.ts +1 -1
  16. package/dist/types/src/components/BaseFieldI18n.vue.d.ts +1 -1
  17. package/dist/types/src/components/BaseInput.vue.d.ts +3 -3
  18. package/dist/types/src/components/BaseInputPercent.vue.d.ts +1 -1
  19. package/dist/types/src/components/BaseMenu.vue.d.ts +3 -3
  20. package/dist/types/src/components/BaseMenuItem.vue.d.ts +3 -3
  21. package/dist/types/src/components/BaseNavbarItemContent.vue.d.ts +1 -1
  22. package/dist/types/src/components/BaseNavbarSideItemContent.vue.d.ts +1 -1
  23. package/dist/types/src/components/BaseNumber.vue.d.ts +4 -4
  24. package/dist/types/src/components/BasePassword.vue.d.ts +1 -1
  25. package/dist/types/src/components/BaseRadioGroup.vue.d.ts +1 -1
  26. package/dist/types/src/components/BaseRichText.vue.d.ts +4 -4
  27. package/dist/types/src/components/BaseSelect.vue.d.ts +1 -1
  28. package/dist/types/src/components/BaseShortcut.vue.d.ts +23 -4
  29. package/dist/types/src/components/BaseStatistic.vue.d.ts +1 -1
  30. package/dist/types/src/components/BaseSwitch.vue.d.ts +4 -4
  31. package/dist/types/src/components/BaseSystemAlert.vue.d.ts +3 -3
  32. package/dist/types/src/components/BaseTableColumn.vue.d.ts +1 -1
  33. package/dist/types/src/components/BaseTagAutocomplete.vue.d.ts +1 -1
  34. package/dist/types/src/components/BaseTextarea.vue.d.ts +1 -1
  35. package/package.json +1 -1
  36. package/src/components/BaseActionItem.vue +21 -28
  37. package/src/components/BaseNavbarItem.vue +4 -2
  38. package/src/components/BaseNavbarSideItem.vue +8 -5
  39. package/src/components/BaseShortcut.stories.js +20 -1
  40. package/src/components/BaseShortcut.vue +13 -4
@@ -1,42 +1,31 @@
1
- import { PropType } from 'vue';
2
- import { ActionItem } from '@/types';
3
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
4
- item: {
5
- required: true;
6
- type: PropType<ActionItem>;
7
- };
8
- dark: {
9
- default: boolean;
10
- type: BooleanConstructor;
11
- };
12
- itemClass: {
13
- default: string;
14
- type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
15
- };
16
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
17
- item: {
18
- required: true;
19
- type: PropType<ActionItem>;
20
- };
21
- dark: {
22
- default: boolean;
23
- type: BooleanConstructor;
24
- };
25
- itemClass: {
26
- default: string;
27
- type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
28
- };
29
- }>> & {
1
+ import { RouteLocationRaw } from 'vue-router';
2
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
+ to?: RouteLocationRaw | undefined;
4
+ href?: string | undefined;
5
+ action?: (() => Promise<void>) | (() => void) | undefined;
6
+ class?: string | string[] | null | undefined;
7
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
8
+ to?: RouteLocationRaw | undefined;
9
+ href?: string | undefined;
10
+ action?: (() => Promise<void>) | (() => void) | undefined;
11
+ class?: string | string[] | null | undefined;
12
+ }>>> & {
30
13
  onClick?: ((...args: any[]) => any) | undefined;
31
- }, {
32
- dark: boolean;
33
- itemClass: string | Record<string, any> | unknown[];
34
- }>, {
14
+ }, {}>, {
35
15
  default: (_: {
36
16
  active: boolean;
37
17
  }) => any;
38
18
  }>;
39
19
  export default _default;
20
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
21
+ type __VLS_TypePropsToRuntimeProps<T> = {
22
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
23
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
24
+ } : {
25
+ type: import('vue').PropType<T[K]>;
26
+ required: true;
27
+ };
28
+ };
40
29
  type __VLS_WithTemplateSlots<T, S> = T & {
41
30
  new (): {
42
31
  $slots: S;
@@ -7,7 +7,7 @@ declare const _default: import("vue").DefineComponent<{
7
7
  };
8
8
  color: {
9
9
  default: string;
10
- type: PropType<"danger" | "success" | "warning" | "info">;
10
+ type: PropType<"success" | "info" | "danger" | "warning">;
11
11
  };
12
12
  showIcon: {
13
13
  default: boolean;
@@ -32,7 +32,7 @@ declare const _default: import("vue").DefineComponent<{
32
32
  };
33
33
  color: {
34
34
  default: string;
35
- type: PropType<"danger" | "success" | "warning" | "info">;
35
+ type: PropType<"success" | "info" | "danger" | "warning">;
36
36
  };
37
37
  showIcon: {
38
38
  default: boolean;
@@ -44,7 +44,7 @@ declare const _default: import("vue").DefineComponent<{
44
44
  };
45
45
  }>>, {
46
46
  title: string;
47
- color: "danger" | "success" | "warning" | "info";
47
+ color: "success" | "info" | "danger" | "warning";
48
48
  showIcon: boolean;
49
49
  bordered: boolean;
50
50
  }>;
@@ -1,7 +1,7 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
2
  dialogs: import("vue").ComputedRef<{
3
3
  id: number;
4
- color: "danger" | "success" | "warning" | "info";
4
+ color: "success" | "info" | "danger" | "warning";
5
5
  title: string;
6
6
  message: string;
7
7
  confirmText: string;
@@ -181,9 +181,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
181
181
  onOpen?: ((...args: any[]) => any) | undefined;
182
182
  }, {
183
183
  filter: (option: NormalizedOption) => boolean;
184
- required: boolean;
185
184
  name: string;
186
185
  select: SelectConfiguration | undefined;
186
+ required: boolean;
187
187
  modelValue: Option | null | undefined;
188
188
  placeholder: string;
189
189
  disabled: boolean;
@@ -159,9 +159,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
159
159
  onClear?: ((...args: any[]) => any) | undefined;
160
160
  onTyping?: ((...args: any[]) => any) | undefined;
161
161
  }, {
162
- required: boolean;
163
162
  name: string;
164
163
  select: SelectConfiguration | undefined;
164
+ required: boolean;
165
165
  modelValue: Option | null | undefined;
166
166
  placeholder: string;
167
167
  disabled: boolean;
@@ -163,9 +163,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
163
163
  }>> & {
164
164
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
165
165
  }, {
166
- required: boolean;
167
166
  name: string;
168
167
  select: SelectConfiguration | undefined;
168
+ required: boolean;
169
169
  modelValue: string | number | null | undefined;
170
170
  placeholder: string;
171
171
  disabled: boolean;
@@ -117,8 +117,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
117
117
  }>> & {
118
118
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
119
119
  }, {
120
- required: boolean;
121
120
  name: string;
121
+ required: boolean;
122
122
  modelValue: Option | Option[] | null | undefined;
123
123
  disabled: boolean;
124
124
  hasError: boolean;
@@ -68,8 +68,8 @@ declare const _default: import("vue").DefineComponent<{
68
68
  }>> & {
69
69
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
70
70
  }, {
71
- required: boolean;
72
71
  name: string;
72
+ required: boolean;
73
73
  modelValue: string | string[] | null | undefined;
74
74
  disabled: boolean;
75
75
  hasError: boolean;
@@ -14,7 +14,7 @@ declare const _default: import("vue").DefineComponent<{
14
14
  };
15
15
  color: {
16
16
  default: string;
17
- type: PropType<"dark" | "light" | "danger" | "white" | "primary">;
17
+ type: PropType<"danger" | "dark" | "light" | "white" | "primary">;
18
18
  };
19
19
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
20
20
  count: {
@@ -31,10 +31,10 @@ declare const _default: import("vue").DefineComponent<{
31
31
  };
32
32
  color: {
33
33
  default: string;
34
- type: PropType<"dark" | "light" | "danger" | "white" | "primary">;
34
+ type: PropType<"danger" | "dark" | "light" | "white" | "primary">;
35
35
  };
36
36
  }>>, {
37
- color: "dark" | "light" | "danger" | "white" | "primary";
37
+ color: "danger" | "dark" | "light" | "white" | "primary";
38
38
  size: string;
39
39
  maxDigit: number;
40
40
  }>;
@@ -54,8 +54,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
54
54
  }>>> & {
55
55
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
56
56
  }, {
57
- required: boolean;
58
57
  name: string;
58
+ required: boolean;
59
59
  mode: 'single' | 'multiple' | 'range' | 'time';
60
60
  modelValue: string | null | string[];
61
61
  disabled: boolean;
@@ -60,8 +60,8 @@ declare const _default: import("vue").DefineComponent<{
60
60
  }>> & {
61
61
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
62
62
  }, {
63
- required: boolean;
64
63
  name: string;
64
+ required: boolean;
65
65
  disabled: boolean;
66
66
  hasError: boolean;
67
67
  minYear: number;
@@ -2,7 +2,7 @@ import { PropType } from 'vue';
2
2
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
3
3
  color: {
4
4
  required: true;
5
- type: PropType<"danger" | "success" | "warning" | "info">;
5
+ type: PropType<"success" | "info" | "danger" | "warning">;
6
6
  };
7
7
  title: {
8
8
  default: string;
@@ -23,7 +23,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
23
23
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("cancel" | "confirm")[], "cancel" | "confirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
24
24
  color: {
25
25
  required: true;
26
- type: PropType<"danger" | "success" | "warning" | "info">;
26
+ type: PropType<"success" | "info" | "danger" | "warning">;
27
27
  };
28
28
  title: {
29
29
  default: string;
@@ -102,8 +102,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
102
102
  onClose?: ((...args: any[]) => any) | undefined;
103
103
  "onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
104
104
  }, {
105
- required: boolean;
106
105
  select: SelectConfiguration | undefined;
106
+ required: boolean;
107
107
  modelValue: Option | Option[] | null | undefined;
108
108
  options: Option[] | undefined;
109
109
  labelKey: string;
@@ -42,9 +42,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
42
42
  type: PropType<string | string[] | Record<string, boolean>>;
43
43
  };
44
44
  }>>, {
45
+ name: string;
45
46
  label: string;
46
47
  required: boolean;
47
- name: string;
48
48
  errorType: "default" | "alert";
49
49
  labelClass: string | string[] | Record<string, boolean>;
50
50
  }>, {
@@ -81,9 +81,9 @@ declare const _default: import("vue").DefineComponent<{
81
81
  }>> & {
82
82
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
83
83
  }, {
84
+ name: string;
84
85
  label: string;
85
86
  required: boolean;
86
- name: string;
87
87
  modelValue: {
88
88
  [locale: string]: string | number | boolean;
89
89
  } | null;
@@ -68,7 +68,7 @@ declare const _default: import("vue").DefineComponent<{
68
68
  type: NumberConstructor;
69
69
  };
70
70
  mask: {
71
- type: (StringConstructor | ArrayConstructor | FunctionConstructor)[];
71
+ type: (ArrayConstructor | StringConstructor | FunctionConstructor)[];
72
72
  default(): null;
73
73
  };
74
74
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur")[], "update:modelValue" | "focus" | "blur", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -140,7 +140,7 @@ declare const _default: import("vue").DefineComponent<{
140
140
  type: NumberConstructor;
141
141
  };
142
142
  mask: {
143
- type: (StringConstructor | ArrayConstructor | FunctionConstructor)[];
143
+ type: (ArrayConstructor | StringConstructor | FunctionConstructor)[];
144
144
  default(): null;
145
145
  };
146
146
  }>> & {
@@ -148,11 +148,11 @@ declare const _default: import("vue").DefineComponent<{
148
148
  onBlur?: ((...args: any[]) => any) | undefined;
149
149
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
150
150
  }, {
151
- required: boolean;
152
151
  type: string;
153
152
  name: string;
154
153
  mask: string | Function | unknown[];
155
154
  step: number;
155
+ required: boolean;
156
156
  modelValue: string | number | null;
157
157
  placeholder: string;
158
158
  disabled: boolean;
@@ -118,9 +118,9 @@ declare const _default: import("vue").DefineComponent<{
118
118
  onBlur?: ((...args: any[]) => any) | undefined;
119
119
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
120
120
  }, {
121
- required: boolean;
122
121
  name: string;
123
122
  step: number;
123
+ required: boolean;
124
124
  icon: string;
125
125
  modelValue: string | number | null;
126
126
  placeholder: string;
@@ -7,7 +7,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
7
7
  };
8
8
  menuClass: {
9
9
  default: string;
10
- type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
10
+ type: (ObjectConstructor | ArrayConstructor | StringConstructor)[];
11
11
  };
12
12
  position: {
13
13
  default: string;
@@ -24,7 +24,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
24
24
  };
25
25
  menuClass: {
26
26
  default: string;
27
- type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
27
+ type: (ObjectConstructor | ArrayConstructor | StringConstructor)[];
28
28
  };
29
29
  position: {
30
30
  default: string;
@@ -37,7 +37,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
37
37
  }>>, {
38
38
  size: "xs" | "sm" | "md";
39
39
  items: MenuItemInterface[];
40
- menuClass: string | Record<string, any> | unknown[];
40
+ menuClass: string | unknown[] | Record<string, any>;
41
41
  position: "custom" | "bottom-left" | "bottom-right";
42
42
  }>, {
43
43
  button: (_: {
@@ -18,7 +18,7 @@ declare const _default: import("vue").DefineComponent<{
18
18
  };
19
19
  color: {
20
20
  default: string;
21
- type: PropType<"dark" | "light" | "danger" | "success" | "warning">;
21
+ type: PropType<"success" | "danger" | "warning" | "dark" | "light">;
22
22
  };
23
23
  size: {
24
24
  default: string;
@@ -43,7 +43,7 @@ declare const _default: import("vue").DefineComponent<{
43
43
  };
44
44
  color: {
45
45
  default: string;
46
- type: PropType<"dark" | "light" | "danger" | "success" | "warning">;
46
+ type: PropType<"success" | "danger" | "warning" | "dark" | "light">;
47
47
  };
48
48
  size: {
49
49
  default: string;
@@ -52,7 +52,7 @@ declare const _default: import("vue").DefineComponent<{
52
52
  }>>, {
53
53
  label: string;
54
54
  active: boolean;
55
- color: "dark" | "light" | "danger" | "success" | "warning";
55
+ color: "success" | "danger" | "warning" | "dark" | "light";
56
56
  icon: string;
57
57
  count: number;
58
58
  size: "xs" | "sm" | "md";
@@ -41,10 +41,10 @@ declare const _default: import("vue").DefineComponent<{
41
41
  type: BooleanConstructor;
42
42
  };
43
43
  }>>, {
44
- dark: boolean;
45
44
  label: string;
46
45
  active: boolean;
47
46
  icon: string;
48
47
  count: number;
48
+ dark: boolean;
49
49
  }>;
50
50
  export default _default;
@@ -41,10 +41,10 @@ declare const _default: import("vue").DefineComponent<{
41
41
  type: BooleanConstructor;
42
42
  };
43
43
  }>>, {
44
- dark: boolean;
45
44
  label: string;
46
45
  active: boolean;
47
46
  icon: string;
48
47
  count: number;
48
+ dark: boolean;
49
49
  }>;
50
50
  export default _default;
@@ -45,7 +45,7 @@ declare const _default: import("vue").DefineComponent<{
45
45
  };
46
46
  rounded: {
47
47
  default: string;
48
- type: PropType<"left" | "right" | "full" | "none">;
48
+ type: PropType<"full" | "left" | "right" | "none">;
49
49
  };
50
50
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "keydown")[], "update:modelValue" | "focus" | "blur" | "keydown", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
51
51
  modelValue: {
@@ -93,7 +93,7 @@ declare const _default: import("vue").DefineComponent<{
93
93
  };
94
94
  rounded: {
95
95
  default: string;
96
- type: PropType<"left" | "right" | "full" | "none">;
96
+ type: PropType<"full" | "left" | "right" | "none">;
97
97
  };
98
98
  }>> & {
99
99
  onFocus?: ((...args: any[]) => any) | undefined;
@@ -101,9 +101,9 @@ declare const _default: import("vue").DefineComponent<{
101
101
  onKeydown?: ((...args: any[]) => any) | undefined;
102
102
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
103
103
  }, {
104
- required: boolean;
105
104
  name: string;
106
105
  step: number;
106
+ required: boolean;
107
107
  modelValue: number | null;
108
108
  placeholder: string;
109
109
  disabled: boolean;
@@ -111,6 +111,6 @@ declare const _default: import("vue").DefineComponent<{
111
111
  max: number;
112
112
  hasError: boolean;
113
113
  borderless: boolean;
114
- rounded: "left" | "right" | "full" | "none";
114
+ rounded: "full" | "left" | "right" | "none";
115
115
  }>;
116
116
  export default _default;
@@ -52,8 +52,8 @@ declare const _default: import("vue").DefineComponent<{
52
52
  }>> & {
53
53
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
54
54
  }, {
55
- required: boolean;
56
55
  name: string;
56
+ required: boolean;
57
57
  modelValue: string | null;
58
58
  placeholder: string;
59
59
  disabled: boolean;
@@ -85,8 +85,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
85
85
  }>> & {
86
86
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
87
87
  }, {
88
- required: boolean;
89
88
  name: string;
89
+ required: boolean;
90
90
  labelClass: string;
91
91
  modelValue: OptionValue | undefined;
92
92
  disabled: boolean;
@@ -12,7 +12,7 @@ declare const _default: import("vue").DefineComponent<{
12
12
  default: string;
13
13
  };
14
14
  toolbar: {
15
- type: PropType<string | Record<string, any> | unknown[] | undefined>;
15
+ type: PropType<string | unknown[] | Record<string, any> | undefined>;
16
16
  default(): string[];
17
17
  };
18
18
  placeholder: {
@@ -49,7 +49,7 @@ declare const _default: import("vue").DefineComponent<{
49
49
  default: string;
50
50
  };
51
51
  toolbar: {
52
- type: PropType<string | Record<string, any> | unknown[] | undefined>;
52
+ type: PropType<string | unknown[] | Record<string, any> | undefined>;
53
53
  default(): string[];
54
54
  };
55
55
  placeholder: {
@@ -79,14 +79,14 @@ declare const _default: import("vue").DefineComponent<{
79
79
  }>> & {
80
80
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
81
81
  }, {
82
- required: boolean;
83
82
  name: string;
83
+ required: boolean;
84
84
  modelValue: string | Delta | null | undefined;
85
85
  placeholder: string;
86
86
  disabled: boolean;
87
87
  hasError: boolean;
88
88
  enable: boolean;
89
- toolbar: string | Record<string, any> | unknown[] | undefined;
89
+ toolbar: string | unknown[] | Record<string, any> | undefined;
90
90
  theme: "" | "snow" | "bubble";
91
91
  }>;
92
92
  export default _default;
@@ -77,8 +77,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
77
77
  }>> & {
78
78
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
79
79
  }, {
80
- required: boolean;
81
80
  name: string;
81
+ required: boolean;
82
82
  modelValue: (string | number | null) | undefined;
83
83
  placeholder: string;
84
84
  disabled: boolean;
@@ -2,8 +2,16 @@ import { PropType } from 'vue';
2
2
  import { RouteLocationRaw } from 'vue-router';
3
3
  declare const _default: import("vue").DefineComponent<{
4
4
  to: {
5
- required: true;
6
- type: PropType<RouteLocationRaw>;
5
+ default: undefined;
6
+ type: PropType<RouteLocationRaw | undefined>;
7
+ };
8
+ href: {
9
+ default: undefined;
10
+ type: PropType<string | undefined>;
11
+ };
12
+ action: {
13
+ default: undefined;
14
+ type: PropType<() => Promise<void> | undefined>;
7
15
  };
8
16
  title: {
9
17
  required: true;
@@ -31,8 +39,16 @@ declare const _default: import("vue").DefineComponent<{
31
39
  };
32
40
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
33
41
  to: {
34
- required: true;
35
- type: PropType<RouteLocationRaw>;
42
+ default: undefined;
43
+ type: PropType<RouteLocationRaw | undefined>;
44
+ };
45
+ href: {
46
+ default: undefined;
47
+ type: PropType<string | undefined>;
48
+ };
49
+ action: {
50
+ default: undefined;
51
+ type: PropType<() => Promise<void> | undefined>;
36
52
  };
37
53
  title: {
38
54
  required: true;
@@ -59,6 +75,9 @@ declare const _default: import("vue").DefineComponent<{
59
75
  type: PropType<"high" | "low">;
60
76
  };
61
77
  }>>, {
78
+ to: RouteLocationRaw | undefined;
79
+ href: string | undefined;
80
+ action: () => Promise<void> | undefined;
62
81
  color: string;
63
82
  description: string;
64
83
  contrast: "high" | "low";
@@ -48,8 +48,8 @@ declare const _default: import("vue").DefineComponent<{
48
48
  type: PropType<string | null>;
49
49
  };
50
50
  }>>, {
51
- label: string | null;
52
51
  caption: string | null;
52
+ label: string | null;
53
53
  secondaryValue: string | null;
54
54
  trend: "up" | "down" | null;
55
55
  }>;
@@ -10,7 +10,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
10
10
  };
11
11
  color: {
12
12
  default: string;
13
- type: PropType<"dark" | "light" | "danger" | "success" | "warning" | "info" | "primary">;
13
+ type: PropType<"success" | "info" | "danger" | "warning" | "dark" | "light" | "primary">;
14
14
  };
15
15
  size: {
16
16
  default: string;
@@ -35,7 +35,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
35
35
  };
36
36
  color: {
37
37
  default: string;
38
- type: PropType<"dark" | "light" | "danger" | "success" | "warning" | "info" | "primary">;
38
+ type: PropType<"success" | "info" | "danger" | "warning" | "dark" | "light" | "primary">;
39
39
  };
40
40
  size: {
41
41
  default: string;
@@ -52,9 +52,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
52
52
  }>> & {
53
53
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
54
54
  }, {
55
- required: boolean;
56
55
  name: string;
57
- color: "dark" | "light" | "danger" | "success" | "warning" | "info" | "primary";
56
+ color: "success" | "info" | "danger" | "warning" | "dark" | "light" | "primary";
57
+ required: boolean;
58
58
  modelValue: string | number | boolean | null | undefined;
59
59
  hasError: boolean;
60
60
  size: "base" | "xs" | "sm" | "lg" | "xl";
@@ -11,7 +11,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
11
11
  };
12
12
  color: {
13
13
  default: string;
14
- type: PropType<"danger" | "success" | "warning" | "info">;
14
+ type: PropType<"success" | "info" | "danger" | "warning">;
15
15
  };
16
16
  closable: {
17
17
  default: boolean;
@@ -28,7 +28,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
28
28
  };
29
29
  color: {
30
30
  default: string;
31
- type: PropType<"danger" | "success" | "warning" | "info">;
31
+ type: PropType<"success" | "info" | "danger" | "warning">;
32
32
  };
33
33
  closable: {
34
34
  default: boolean;
@@ -38,8 +38,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
38
38
  onClose?: ((...args: any[]) => any) | undefined;
39
39
  }, {
40
40
  to: RouteLocationRaw | undefined;
41
- color: "danger" | "success" | "warning" | "info";
42
41
  action: () => Promise<void> | void;
42
+ color: "success" | "info" | "danger" | "warning";
43
43
  closable: boolean;
44
44
  }>, {
45
45
  default: (_: {}) => any;
@@ -153,8 +153,8 @@ declare const _default: import("vue").DefineComponent<{
153
153
  default: () => {};
154
154
  };
155
155
  }>>, {
156
+ meta: unknown[] | Record<string, any>;
156
157
  label: string;
157
- meta: Record<string, any> | unknown[];
158
158
  toggle: boolean;
159
159
  width: number;
160
160
  field: string;
@@ -144,8 +144,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
144
144
  onOpen?: ((...args: any[]) => any) | undefined;
145
145
  }, {
146
146
  filter: (option: NormalizedOption) => boolean;
147
- required: boolean;
148
147
  name: string;
148
+ required: boolean;
149
149
  placeholder: string;
150
150
  disabled: boolean;
151
151
  max: number;
@@ -84,9 +84,9 @@ declare const _default: import("vue").DefineComponent<{
84
84
  }>> & {
85
85
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
86
86
  }, {
87
- required: boolean;
88
87
  type: string;
89
88
  name: string;
89
+ required: boolean;
90
90
  modelValue: string | null | undefined;
91
91
  placeholder: string;
92
92
  disabled: boolean;