@histoire/controls 0.17.15 → 0.17.17

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 (56) hide show
  1. package/dist/components/HstCopyIcon.vue.d.ts +3 -3
  2. package/dist/components/HstWrapper.vue.d.ts +11 -11
  3. package/dist/components/button/HstButton.vue.d.ts +141 -10
  4. package/dist/components/button/HstButtonGroup.vue.d.ts +9 -9
  5. package/dist/components/checkbox/HstCheckbox.vue.d.ts +8 -8
  6. package/dist/components/checkbox/HstCheckboxList.vue.d.ts +9 -9
  7. package/dist/components/checkbox/HstSimpleCheckbox.vue.d.ts +3 -3
  8. package/dist/components/colorselect/HstColorSelect.vue.d.ts +8 -8
  9. package/dist/components/design-tokens/HstColorShades.vue.d.ts +8 -8
  10. package/dist/components/design-tokens/HstTokenGrid.vue.d.ts +12 -12
  11. package/dist/components/design-tokens/HstTokenList.vue.d.ts +9 -9
  12. package/dist/components/json/HstJson.vue.d.ts +8 -8
  13. package/dist/components/number/HstNumber.vue.d.ts +8 -8
  14. package/dist/components/radio/HstRadio.vue.d.ts +9 -9
  15. package/dist/components/select/CustomSelect.vue.d.ts +9 -9
  16. package/dist/components/select/HstSelect.vue.d.ts +9 -9
  17. package/dist/components/slider/HstSlider.vue.d.ts +3 -3
  18. package/dist/components/text/HstText.vue.d.ts +8 -8
  19. package/dist/components/textarea/HstTextarea.vue.d.ts +8 -8
  20. package/dist/index.d.ts +48 -48
  21. package/dist/index.es.js +69 -67
  22. package/dist/style.css +1 -1
  23. package/package.json +12 -12
  24. package/src/components/HstCopyIcon.vue +1 -1
  25. package/src/components/HstWrapper.vue +0 -1
  26. package/src/components/button/HstButton.story.vue +1 -1
  27. package/src/components/button/HstButtonGroup.story.vue +2 -2
  28. package/src/components/button/HstButtonGroup.vue +8 -5
  29. package/src/components/checkbox/HstCheckbox.spec.ts +3 -3
  30. package/src/components/checkbox/HstCheckbox.story.vue +1 -1
  31. package/src/components/checkbox/HstCheckbox.vue +2 -2
  32. package/src/components/checkbox/HstCheckboxList.story.vue +1 -1
  33. package/src/components/checkbox/HstCheckboxList.vue +9 -6
  34. package/src/components/checkbox/HstSimpleCheckbox.story.vue +1 -1
  35. package/src/components/checkbox/HstSimpleCheckbox.vue +2 -2
  36. package/src/components/checkbox/__snapshots__/HstCheckbox.spec.ts.snap +4 -0
  37. package/src/components/colorselect/HstColorSelect.vue +1 -4
  38. package/src/components/design-tokens/HstColorShades.story.vue +2 -2
  39. package/src/components/design-tokens/HstColorShades.vue +2 -2
  40. package/src/components/design-tokens/HstTokenGrid.story.vue +6 -6
  41. package/src/components/design-tokens/HstTokenList.story.vue +23 -23
  42. package/src/components/json/HstJson.story.vue +1 -1
  43. package/src/components/json/HstJson.vue +15 -12
  44. package/src/components/number/HstNumber.story.vue +1 -1
  45. package/src/components/number/HstNumber.vue +8 -8
  46. package/src/components/radio/HstRadio.story.vue +1 -1
  47. package/src/components/radio/HstRadio.vue +7 -5
  48. package/src/components/select/CustomSelect.vue +9 -7
  49. package/src/components/select/HstSelect.story.vue +1 -1
  50. package/src/components/select/HstSelect.vue +1 -1
  51. package/src/components/slider/HstSlider.vue +3 -3
  52. package/src/components/text/HstText.story.vue +1 -1
  53. package/src/components/textarea/HstTextarea.story.vue +1 -1
  54. package/tailwind.config.cjs +1 -1
  55. package/tsconfig.json +25 -25
  56. package/vite.config.ts +8 -8
@@ -1,10 +1,10 @@
1
- import { HstControlOption } from '../../types';
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
1
+ import type { HstControlOption } from '../../types';
2
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
3
3
  modelValue: string;
4
4
  options: Record<string, any> | string[] | number[] | HstControlOption[];
5
5
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
6
  "update:modelValue": (value: string) => void;
7
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
7
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
8
8
  modelValue: string;
9
9
  options: Record<string, any> | string[] | number[] | HstControlOption[];
10
10
  }>>> & {
@@ -15,8 +15,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
15
15
  }): any;
16
16
  }>;
17
17
  export default _default;
18
+ type __VLS_WithTemplateSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
18
23
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
19
- type __VLS_TypePropsToRuntimeProps<T> = {
24
+ type __VLS_TypePropsToOption<T> = {
20
25
  [K in keyof T]-?: {} extends Pick<T, K> ? {
21
26
  type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
22
27
  } : {
@@ -24,8 +29,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
24
29
  required: true;
25
30
  };
26
31
  };
27
- type __VLS_WithTemplateSlots<T, S> = T & {
28
- new (): {
29
- $slots: S;
30
- };
31
- };
@@ -1,11 +1,11 @@
1
- import { HstControlOption } from '../../types';
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
1
+ import type { HstControlOption } from '../../types';
2
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
3
3
  title?: string;
4
4
  modelValue?: any;
5
5
  options: Record<string, any> | string[] | HstControlOption[];
6
6
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
7
  "update:modelValue": (value: any) => void;
8
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
8
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
9
9
  title?: string;
10
10
  modelValue?: any;
11
11
  options: Record<string, any> | string[] | HstControlOption[];
@@ -15,8 +15,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
15
15
  actions?(_: {}): any;
16
16
  }>;
17
17
  export default _default;
18
+ type __VLS_WithTemplateSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
18
23
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
19
- type __VLS_TypePropsToRuntimeProps<T> = {
24
+ type __VLS_TypePropsToOption<T> = {
20
25
  [K in keyof T]-?: {} extends Pick<T, K> ? {
21
26
  type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
22
27
  } : {
@@ -24,8 +29,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
24
29
  required: true;
25
30
  };
26
31
  };
27
- type __VLS_WithTemplateSlots<T, S> = T & {
28
- new (): {
29
- $slots: S;
30
- };
31
- };
@@ -1,11 +1,11 @@
1
- declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
1
+ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
2
2
  title?: string;
3
3
  modelValue?: number;
4
4
  min: number;
5
5
  max: number;
6
6
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
7
  "update:modelValue": (newValue: number) => void;
8
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
8
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
9
9
  title?: string;
10
10
  modelValue?: number;
11
11
  min: number;
@@ -15,7 +15,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
15
15
  }, {}, {}>;
16
16
  export default _default;
17
17
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
18
- type __VLS_TypePropsToRuntimeProps<T> = {
18
+ type __VLS_TypePropsToOption<T> = {
19
19
  [K in keyof T]-?: {} extends Pick<T, K> ? {
20
20
  type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
21
21
  } : {
@@ -1,9 +1,9 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
2
2
  title?: string;
3
3
  modelValue?: string;
4
4
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
5
5
  "update:modelValue": (newValue: string) => void;
6
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
6
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
7
7
  title?: string;
8
8
  modelValue?: string;
9
9
  }>>> & {
@@ -12,8 +12,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
12
12
  actions?(_: {}): any;
13
13
  }>;
14
14
  export default _default;
15
+ type __VLS_WithTemplateSlots<T, S> = T & {
16
+ new (): {
17
+ $slots: S;
18
+ };
19
+ };
15
20
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
16
- type __VLS_TypePropsToRuntimeProps<T> = {
21
+ type __VLS_TypePropsToOption<T> = {
17
22
  [K in keyof T]-?: {} extends Pick<T, K> ? {
18
23
  type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
19
24
  } : {
@@ -21,8 +26,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
21
26
  required: true;
22
27
  };
23
28
  };
24
- type __VLS_WithTemplateSlots<T, S> = T & {
25
- new (): {
26
- $slots: S;
27
- };
28
- };
@@ -1,9 +1,9 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
2
2
  title?: string;
3
3
  modelValue?: string;
4
4
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
5
5
  "update:modelValue": (newValue: string) => void;
6
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
6
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
7
7
  title?: string;
8
8
  modelValue?: string;
9
9
  }>>> & {
@@ -12,8 +12,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
12
12
  actions?(_: {}): any;
13
13
  }>;
14
14
  export default _default;
15
+ type __VLS_WithTemplateSlots<T, S> = T & {
16
+ new (): {
17
+ $slots: S;
18
+ };
19
+ };
15
20
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
16
- type __VLS_TypePropsToRuntimeProps<T> = {
21
+ type __VLS_TypePropsToOption<T> = {
17
22
  [K in keyof T]-?: {} extends Pick<T, K> ? {
18
23
  type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
19
24
  } : {
@@ -21,8 +26,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
21
26
  required: true;
22
27
  };
23
28
  };
24
- type __VLS_WithTemplateSlots<T, S> = T & {
25
- new (): {
26
- $slots: S;
27
- };
28
- };
package/dist/index.d.ts CHANGED
@@ -3,10 +3,10 @@ export declare const HstButton: {
3
3
  $: import("@vue/runtime-core").ComponentInternalInstance;
4
4
  $data: {};
5
5
  $props: Partial<{}> & Omit<{
6
- readonly color?: "flat" | "default" | "primary";
6
+ readonly color?: "default" | "primary" | "flat";
7
7
  } & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & Readonly<import("@vue/runtime-core").ExtractPropTypes<{
8
8
  color: {
9
- type: import("@vue/runtime-core").PropType<"flat" | "default" | "primary">;
9
+ type: import("@vue/runtime-core").PropType<"default" | "primary" | "flat">;
10
10
  };
11
11
  }>>, never>;
12
12
  $attrs: {
@@ -24,7 +24,7 @@ export declare const HstButton: {
24
24
  $el: any;
25
25
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
26
26
  color: {
27
- type: import("@vue/runtime-core").PropType<"flat" | "default" | "primary">;
27
+ type: import("@vue/runtime-core").PropType<"default" | "primary" | "flat">;
28
28
  };
29
29
  }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
30
30
  beforeCreate?: (() => void) | (() => void)[];
@@ -48,7 +48,7 @@ export declare const HstButton: {
48
48
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("@vue/runtime-core").WatchOptions<boolean>): import("@vue/runtime-core").WatchStopHandle;
49
49
  } & Readonly<import("@vue/runtime-core").ExtractPropTypes<{
50
50
  color: {
51
- type: import("@vue/runtime-core").PropType<"flat" | "default" | "primary">;
51
+ type: import("@vue/runtime-core").PropType<"default" | "primary" | "flat">;
52
52
  };
53
53
  }>> & import("@vue/reactivity").ShallowUnwrapRef<{}> & {} & import("@vue/runtime-core").ComponentCustomProperties & {};
54
54
  __isFragment?: never;
@@ -56,7 +56,7 @@ export declare const HstButton: {
56
56
  __isSuspense?: never;
57
57
  } & import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
58
58
  color: {
59
- type: import("@vue/runtime-core").PropType<"flat" | "default" | "primary">;
59
+ type: import("@vue/runtime-core").PropType<"default" | "primary" | "flat">;
60
60
  };
61
61
  }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
62
62
  $slots: {
@@ -970,7 +970,7 @@ export declare const HstTokenList: {
970
970
  token: {
971
971
  key: string;
972
972
  name: string;
973
- value: string | Record<string, any>;
973
+ value: string | any[] | Record<string, any>;
974
974
  };
975
975
  }): any;
976
976
  };
@@ -983,22 +983,22 @@ export declare const HstTokenGrid: {
983
983
  getName: (key: string, value: string | number | any[] | Record<string, any>) => string;
984
984
  colSize: number;
985
985
  }> & Omit<{
986
- readonly colSize: number;
987
986
  readonly tokens: Record<string, string | number | any[] | Record<string, any>>;
987
+ readonly colSize: number;
988
988
  readonly getName?: (key: string, value: string | number | any[] | Record<string, any>) => string;
989
989
  } & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & Readonly<import("@vue/runtime-core").ExtractPropTypes<{
990
990
  getName: {
991
991
  type: import("@vue/runtime-core").PropType<(key: string, value: string | number | any[] | Record<string, any>) => string>;
992
992
  default: any;
993
993
  };
994
- colSize: {
995
- type: import("@vue/runtime-core").PropType<number>;
996
- default: number;
997
- };
998
994
  tokens: {
999
995
  type: import("@vue/runtime-core").PropType<Record<string, string | number | any[] | Record<string, any>>>;
1000
996
  required: true;
1001
997
  };
998
+ colSize: {
999
+ type: import("@vue/runtime-core").PropType<number>;
1000
+ default: number;
1001
+ };
1002
1002
  }>>, "getName" | "colSize">;
1003
1003
  $attrs: {
1004
1004
  [x: string]: unknown;
@@ -1018,14 +1018,14 @@ export declare const HstTokenGrid: {
1018
1018
  type: import("@vue/runtime-core").PropType<(key: string, value: string | number | any[] | Record<string, any>) => string>;
1019
1019
  default: any;
1020
1020
  };
1021
- colSize: {
1022
- type: import("@vue/runtime-core").PropType<number>;
1023
- default: number;
1024
- };
1025
1021
  tokens: {
1026
1022
  type: import("@vue/runtime-core").PropType<Record<string, string | number | any[] | Record<string, any>>>;
1027
1023
  required: true;
1028
1024
  };
1025
+ colSize: {
1026
+ type: import("@vue/runtime-core").PropType<number>;
1027
+ default: number;
1028
+ };
1029
1029
  }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {
1030
1030
  getName: (key: string, value: string | number | any[] | Record<string, any>) => string;
1031
1031
  colSize: number;
@@ -1054,14 +1054,14 @@ export declare const HstTokenGrid: {
1054
1054
  type: import("@vue/runtime-core").PropType<(key: string, value: string | number | any[] | Record<string, any>) => string>;
1055
1055
  default: any;
1056
1056
  };
1057
- colSize: {
1058
- type: import("@vue/runtime-core").PropType<number>;
1059
- default: number;
1060
- };
1061
1057
  tokens: {
1062
1058
  type: import("@vue/runtime-core").PropType<Record<string, string | number | any[] | Record<string, any>>>;
1063
1059
  required: true;
1064
1060
  };
1061
+ colSize: {
1062
+ type: import("@vue/runtime-core").PropType<number>;
1063
+ default: number;
1064
+ };
1065
1065
  }>> & import("@vue/reactivity").ShallowUnwrapRef<{}> & {} & import("@vue/runtime-core").ComponentCustomProperties & {};
1066
1066
  __isFragment?: never;
1067
1067
  __isTeleport?: never;
@@ -1071,14 +1071,14 @@ export declare const HstTokenGrid: {
1071
1071
  type: import("@vue/runtime-core").PropType<(key: string, value: string | number | any[] | Record<string, any>) => string>;
1072
1072
  default: any;
1073
1073
  };
1074
- colSize: {
1075
- type: import("@vue/runtime-core").PropType<number>;
1076
- default: number;
1077
- };
1078
1074
  tokens: {
1079
1075
  type: import("@vue/runtime-core").PropType<Record<string, string | number | any[] | Record<string, any>>>;
1080
1076
  required: true;
1081
1077
  };
1078
+ colSize: {
1079
+ type: import("@vue/runtime-core").PropType<number>;
1080
+ default: number;
1081
+ };
1082
1082
  }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {
1083
1083
  getName: (key: string, value: string | number | any[] | Record<string, any>) => string;
1084
1084
  colSize: number;
@@ -1088,7 +1088,7 @@ export declare const HstTokenGrid: {
1088
1088
  token: {
1089
1089
  key: string;
1090
1090
  name: string;
1091
- value: string | Record<string, any>;
1091
+ value: string | any[] | Record<string, any>;
1092
1092
  };
1093
1093
  }): any;
1094
1094
  };
@@ -1404,10 +1404,10 @@ export declare const components: {
1404
1404
  $: import("@vue/runtime-core").ComponentInternalInstance;
1405
1405
  $data: {};
1406
1406
  $props: Partial<{}> & Omit<{
1407
- readonly color?: "flat" | "default" | "primary";
1407
+ readonly color?: "default" | "primary" | "flat";
1408
1408
  } & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1409
1409
  color: {
1410
- type: import("@vue/runtime-core").PropType<"flat" | "default" | "primary">;
1410
+ type: import("@vue/runtime-core").PropType<"default" | "primary" | "flat">;
1411
1411
  };
1412
1412
  }>>, never>;
1413
1413
  $attrs: {
@@ -1425,7 +1425,7 @@ export declare const components: {
1425
1425
  $el: any;
1426
1426
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1427
1427
  color: {
1428
- type: import("@vue/runtime-core").PropType<"flat" | "default" | "primary">;
1428
+ type: import("@vue/runtime-core").PropType<"default" | "primary" | "flat">;
1429
1429
  };
1430
1430
  }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
1431
1431
  beforeCreate?: (() => void) | (() => void)[];
@@ -1449,7 +1449,7 @@ export declare const components: {
1449
1449
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("@vue/runtime-core").WatchOptions<boolean>): import("@vue/runtime-core").WatchStopHandle;
1450
1450
  } & Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1451
1451
  color: {
1452
- type: import("@vue/runtime-core").PropType<"flat" | "default" | "primary">;
1452
+ type: import("@vue/runtime-core").PropType<"default" | "primary" | "flat">;
1453
1453
  };
1454
1454
  }>> & import("@vue/reactivity").ShallowUnwrapRef<{}> & {} & import("@vue/runtime-core").ComponentCustomProperties & {};
1455
1455
  __isFragment?: never;
@@ -1457,7 +1457,7 @@ export declare const components: {
1457
1457
  __isSuspense?: never;
1458
1458
  } & import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1459
1459
  color: {
1460
- type: import("@vue/runtime-core").PropType<"flat" | "default" | "primary">;
1460
+ type: import("@vue/runtime-core").PropType<"default" | "primary" | "flat">;
1461
1461
  };
1462
1462
  }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
1463
1463
  $slots: {
@@ -2574,7 +2574,7 @@ export declare const components: {
2574
2574
  token: {
2575
2575
  key: string;
2576
2576
  name: string;
2577
- value: string | Record<string, any>;
2577
+ value: string | any[] | Record<string, any>;
2578
2578
  };
2579
2579
  }): any;
2580
2580
  };
@@ -2587,22 +2587,22 @@ export declare const components: {
2587
2587
  getName: (key: string, value: string | number | any[] | Record<string, any>) => string;
2588
2588
  colSize: number;
2589
2589
  }> & Omit<{
2590
- readonly colSize: number;
2591
2590
  readonly tokens: Record<string, string | number | any[] | Record<string, any>>;
2591
+ readonly colSize: number;
2592
2592
  readonly getName?: (key: string, value: string | number | any[] | Record<string, any>) => string;
2593
2593
  } & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & Readonly<import("@vue/runtime-core").ExtractPropTypes<{
2594
2594
  getName: {
2595
2595
  type: import("@vue/runtime-core").PropType<(key: string, value: string | number | any[] | Record<string, any>) => string>;
2596
2596
  default: any;
2597
2597
  };
2598
- colSize: {
2599
- type: import("@vue/runtime-core").PropType<number>;
2600
- default: number;
2601
- };
2602
2598
  tokens: {
2603
2599
  type: import("@vue/runtime-core").PropType<Record<string, string | number | any[] | Record<string, any>>>;
2604
2600
  required: true;
2605
2601
  };
2602
+ colSize: {
2603
+ type: import("@vue/runtime-core").PropType<number>;
2604
+ default: number;
2605
+ };
2606
2606
  }>>, "getName" | "colSize">;
2607
2607
  $attrs: {
2608
2608
  [x: string]: unknown;
@@ -2622,14 +2622,14 @@ export declare const components: {
2622
2622
  type: import("@vue/runtime-core").PropType<(key: string, value: string | number | any[] | Record<string, any>) => string>;
2623
2623
  default: any;
2624
2624
  };
2625
- colSize: {
2626
- type: import("@vue/runtime-core").PropType<number>;
2627
- default: number;
2628
- };
2629
2625
  tokens: {
2630
2626
  type: import("@vue/runtime-core").PropType<Record<string, string | number | any[] | Record<string, any>>>;
2631
2627
  required: true;
2632
2628
  };
2629
+ colSize: {
2630
+ type: import("@vue/runtime-core").PropType<number>;
2631
+ default: number;
2632
+ };
2633
2633
  }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {
2634
2634
  getName: (key: string, value: string | number | any[] | Record<string, any>) => string;
2635
2635
  colSize: number;
@@ -2658,14 +2658,14 @@ export declare const components: {
2658
2658
  type: import("@vue/runtime-core").PropType<(key: string, value: string | number | any[] | Record<string, any>) => string>;
2659
2659
  default: any;
2660
2660
  };
2661
- colSize: {
2662
- type: import("@vue/runtime-core").PropType<number>;
2663
- default: number;
2664
- };
2665
2661
  tokens: {
2666
2662
  type: import("@vue/runtime-core").PropType<Record<string, string | number | any[] | Record<string, any>>>;
2667
2663
  required: true;
2668
2664
  };
2665
+ colSize: {
2666
+ type: import("@vue/runtime-core").PropType<number>;
2667
+ default: number;
2668
+ };
2669
2669
  }>> & import("@vue/reactivity").ShallowUnwrapRef<{}> & {} & import("@vue/runtime-core").ComponentCustomProperties & {};
2670
2670
  __isFragment?: never;
2671
2671
  __isTeleport?: never;
@@ -2675,14 +2675,14 @@ export declare const components: {
2675
2675
  type: import("@vue/runtime-core").PropType<(key: string, value: string | number | any[] | Record<string, any>) => string>;
2676
2676
  default: any;
2677
2677
  };
2678
- colSize: {
2679
- type: import("@vue/runtime-core").PropType<number>;
2680
- default: number;
2681
- };
2682
2678
  tokens: {
2683
2679
  type: import("@vue/runtime-core").PropType<Record<string, string | number | any[] | Record<string, any>>>;
2684
2680
  required: true;
2685
2681
  };
2682
+ colSize: {
2683
+ type: import("@vue/runtime-core").PropType<number>;
2684
+ default: number;
2685
+ };
2686
2686
  }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {
2687
2687
  getName: (key: string, value: string | number | any[] | Record<string, any>) => string;
2688
2688
  colSize: number;
@@ -2692,7 +2692,7 @@ export declare const components: {
2692
2692
  token: {
2693
2693
  key: string;
2694
2694
  name: string;
2695
- value: string | Record<string, any>;
2695
+ value: string | any[] | Record<string, any>;
2696
2696
  };
2697
2697
  }): any;
2698
2698
  };