@omnia/fx 8.0.76-dev → 8.0.77-dev

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 (34) hide show
  1. package/internal-do-not-import-from-here/shared/models/OmniaSharedBootstrapData.d.ts +1 -0
  2. package/internal-do-not-import-from-here/shared/models/Tokens.d.ts +1 -0
  3. package/internal-do-not-import-from-here/shared/models/theming/BlueprintDefinition.d.ts +6 -1
  4. package/internal-do-not-import-from-here/shared/models/theming/ChromeDefinition.d.ts +7 -5
  5. package/internal-do-not-import-from-here/ux/blueprintpickers/chromepicker/ChromePicker.css.d.ts +3 -5
  6. package/internal-do-not-import-from-here/ux/blueprintpickers/chromepicker/ChromePicker.d.ts +132 -97
  7. package/internal-do-not-import-from-here/ux/blueprintpickers/chromepicker/{ChromePreview.d.ts → ChromeViewer.d.ts} +35 -18
  8. package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaPicker.css.d.ts +1 -0
  9. package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaPicker.d.ts +90 -90
  10. package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.css.d.ts +31 -31
  11. package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +9 -9
  12. package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview2.d.ts +496 -0
  13. package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/chrome/store/ChromeEditorStore.d.ts +10 -2
  14. package/internal-do-not-import-from-here/ux/theming-v2/designkits/core/DefinitionsChrome.d.ts +156 -0
  15. package/internal-do-not-import-from-here/ux/theming-v2/designkits/core/index.d.ts +1 -0
  16. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/BlueprintsChrome.d.ts +5 -3
  17. package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/BlueprintsChrome.d.ts +2 -3
  18. package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/BlueprintsChrome.d.ts +5 -3
  19. package/internal-do-not-import-from-here/ux/theming-v2/store/ChromeBlueprintStore.d.ts +23 -24
  20. package/internal-do-not-import-from-here/ux/theming-v2/store/ColorSchemaStore.d.ts +25 -25
  21. package/internal-do-not-import-from-here/ux/theming-v2/store/ComponentBlueprintStore.d.ts +20 -20
  22. package/internal-do-not-import-from-here/ux/theming-v2/store/SpacingBlueprintStore.d.ts +22 -24
  23. package/internal-do-not-import-from-here/ux/theming-v2/store/ThemeContextStore.d.ts +45 -45
  24. package/internal-do-not-import-from-here/ux/theming-v2/store/TypographyBlueprintStore.d.ts +27 -29
  25. package/internal-do-not-import-from-here/ux/theming-v2/styling/UseStyling.d.ts +81 -81
  26. package/internal-do-not-import-from-here/ux/theming-v2/themeprovider/ThemeProvider.d.ts +720 -715
  27. package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +31 -31
  28. package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronColorSchema.d.ts +6 -6
  29. package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +5 -5
  30. package/internal-do-not-import-from-here/wctypings.d.ts +18 -3
  31. package/package.json +2 -2
  32. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/DefinitionsChrome.d.ts +0 -49
  33. package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/DefinitionsChrome.d.ts +0 -49
  34. package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/DefinitionsChrome.d.ts +0 -49
@@ -1,11 +1,16 @@
1
1
  import { ChromeDefinition } from "@omnia/fx-models";
2
+ type VariantTypes = "selection-option" | "default";
2
3
  declare const _default: {
3
4
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
- "no-text": {
5
- type: import("vue").PropType<boolean>;
5
+ text: {
6
+ type: import("vue").PropType<string>;
7
+ } & {
8
+ type: import("vue").PropType<string>;
6
9
  };
7
- noText: {
8
- type: import("vue").PropType<boolean>;
10
+ variant: {
11
+ type: import("vue").PropType<VariantTypes>;
12
+ } & {
13
+ type: import("vue").PropType<VariantTypes>;
9
14
  };
10
15
  definition: {
11
16
  type: import("vue").PropType<ChromeDefinition>;
@@ -16,11 +21,15 @@ declare const _default: {
16
21
  container?: any;
17
22
  colors?: any;
18
23
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
19
- "no-text": {
20
- type: import("vue").PropType<boolean>;
24
+ text: {
25
+ type: import("vue").PropType<string>;
26
+ } & {
27
+ type: import("vue").PropType<string>;
21
28
  };
22
- noText: {
23
- type: import("vue").PropType<boolean>;
29
+ variant: {
30
+ type: import("vue").PropType<VariantTypes>;
31
+ } & {
32
+ type: import("vue").PropType<VariantTypes>;
24
33
  };
25
34
  definition: {
26
35
  type: import("vue").PropType<ChromeDefinition>;
@@ -42,11 +51,15 @@ declare const _default: {
42
51
  M: {};
43
52
  Defaults: {};
44
53
  }, Readonly<import("vue").ExtractPropTypes<{
45
- "no-text": {
46
- type: import("vue").PropType<boolean>;
54
+ text: {
55
+ type: import("vue").PropType<string>;
56
+ } & {
57
+ type: import("vue").PropType<string>;
47
58
  };
48
- noText: {
49
- type: import("vue").PropType<boolean>;
59
+ variant: {
60
+ type: import("vue").PropType<VariantTypes>;
61
+ } & {
62
+ type: import("vue").PropType<VariantTypes>;
50
63
  };
51
64
  definition: {
52
65
  type: import("vue").PropType<ChromeDefinition>;
@@ -65,11 +78,15 @@ declare const _default: {
65
78
  __isTeleport?: never;
66
79
  __isSuspense?: never;
67
80
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
68
- "no-text": {
69
- type: import("vue").PropType<boolean>;
81
+ text: {
82
+ type: import("vue").PropType<string>;
83
+ } & {
84
+ type: import("vue").PropType<string>;
70
85
  };
71
- noText: {
72
- type: import("vue").PropType<boolean>;
86
+ variant: {
87
+ type: import("vue").PropType<VariantTypes>;
88
+ } & {
89
+ type: import("vue").PropType<VariantTypes>;
73
90
  };
74
91
  definition: {
75
92
  type: import("vue").PropType<ChromeDefinition>;
@@ -89,9 +106,9 @@ declare const _default: {
89
106
  colorSchemaType?: any;
90
107
  colors?: any;
91
108
  } & {
109
+ text?: string;
92
110
  definition?: ChromeDefinition;
93
- noText?: boolean;
94
- "no-text"?: boolean;
111
+ variant?: VariantTypes;
95
112
  }>, never>;
96
113
  };
97
114
  export default _default;
@@ -1,3 +1,4 @@
1
1
  export declare const ColorSchemaPickerStyles: {
2
2
  viewWrapper: string;
3
+ selector: (dark: boolean) => string;
3
4
  };
@@ -19,67 +19,67 @@ declare const _default: {
19
19
  type: import("vue").PropType<ThemeDefinitionV2>;
20
20
  };
21
21
  "onUpdate:modelValue": {
22
- type: import("vue").PropType<(value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any>;
22
+ type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
23
23
  };
24
24
  "v-model": {
25
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
25
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
26
26
  required: false;
27
27
  };
28
28
  modelValue: {
29
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
29
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
30
30
  required: false;
31
31
  };
32
32
  name: <TName extends string>(n?: TName) => { [key in import("../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
33
- type: import("vue").PropType<(value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any>;
33
+ type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
34
34
  }; } & { [key_1 in import("../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
35
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
35
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
36
36
  required: false;
37
37
  }; } & { [key_2 in import("../DefineVueTypings").VModelKeyNameInProps<TName>]: {
38
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
38
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
39
39
  required: false;
40
40
  }; } & {
41
- require(): import("../DefineVueTypings").DefinePropModelRequire<TName, "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", {
41
+ require(): import("../DefineVueTypings").DefinePropModelRequire<TName, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
42
42
  "onUpdate:modelValue": {
43
- type: import("vue").PropType<(value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any>;
43
+ type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
44
44
  };
45
45
  } & {
46
46
  "v-model": {
47
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
47
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
48
48
  required: false;
49
49
  };
50
50
  } & {
51
51
  modelValue: {
52
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
52
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
53
53
  required: false;
54
54
  };
55
55
  }>;
56
- defaultValue(value?: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", {
56
+ defaultValue(value?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
57
57
  "onUpdate:modelValue": {
58
- type: import("vue").PropType<(value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any>;
58
+ type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
59
59
  };
60
60
  } & {
61
61
  "v-model": {
62
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
62
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
63
63
  required: false;
64
64
  };
65
65
  } & {
66
66
  modelValue: {
67
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
67
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
68
68
  required: false;
69
69
  };
70
70
  }, false>;
71
- doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", {
71
+ doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
72
72
  "onUpdate:modelValue": {
73
- type: import("vue").PropType<(value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any>;
73
+ type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
74
74
  };
75
75
  } & {
76
76
  "v-model": {
77
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
77
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
78
78
  required: false;
79
79
  };
80
80
  } & {
81
81
  modelValue: {
82
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
82
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
83
83
  required: false;
84
84
  };
85
85
  }>;
@@ -114,67 +114,67 @@ declare const _default: {
114
114
  type: import("vue").PropType<ThemeDefinitionV2>;
115
115
  };
116
116
  "onUpdate:modelValue": {
117
- type: import("vue").PropType<(value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any>;
117
+ type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
118
118
  };
119
119
  "v-model": {
120
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
120
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
121
121
  required: false;
122
122
  };
123
123
  modelValue: {
124
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
124
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
125
125
  required: false;
126
126
  };
127
127
  name: <TName extends string>(n?: TName) => { [key in import("../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
128
- type: import("vue").PropType<(value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any>;
128
+ type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
129
129
  }; } & { [key_1 in import("../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
130
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
130
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
131
131
  required: false;
132
132
  }; } & { [key_2 in import("../DefineVueTypings").VModelKeyNameInProps<TName>]: {
133
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
133
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
134
134
  required: false;
135
135
  }; } & {
136
- require(): import("../DefineVueTypings").DefinePropModelRequire<TName, "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", {
136
+ require(): import("../DefineVueTypings").DefinePropModelRequire<TName, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
137
137
  "onUpdate:modelValue": {
138
- type: import("vue").PropType<(value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any>;
138
+ type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
139
139
  };
140
140
  } & {
141
141
  "v-model": {
142
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
142
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
143
143
  required: false;
144
144
  };
145
145
  } & {
146
146
  modelValue: {
147
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
147
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
148
148
  required: false;
149
149
  };
150
150
  }>;
151
- defaultValue(value?: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", {
151
+ defaultValue(value?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
152
152
  "onUpdate:modelValue": {
153
- type: import("vue").PropType<(value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any>;
153
+ type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
154
154
  };
155
155
  } & {
156
156
  "v-model": {
157
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
157
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
158
158
  required: false;
159
159
  };
160
160
  } & {
161
161
  modelValue: {
162
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
162
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
163
163
  required: false;
164
164
  };
165
165
  }, false>;
166
- doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", {
166
+ doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
167
167
  "onUpdate:modelValue": {
168
- type: import("vue").PropType<(value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any>;
168
+ type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
169
169
  };
170
170
  } & {
171
171
  "v-model": {
172
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
172
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
173
173
  required: false;
174
174
  };
175
175
  } & {
176
176
  modelValue: {
177
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
177
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
178
178
  required: false;
179
179
  };
180
180
  }>;
@@ -212,67 +212,67 @@ declare const _default: {
212
212
  type: import("vue").PropType<ThemeDefinitionV2>;
213
213
  };
214
214
  "onUpdate:modelValue": {
215
- type: import("vue").PropType<(value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any>;
215
+ type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
216
216
  };
217
217
  "v-model": {
218
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
218
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
219
219
  required: false;
220
220
  };
221
221
  modelValue: {
222
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
222
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
223
223
  required: false;
224
224
  };
225
225
  name: <TName extends string>(n?: TName) => { [key in import("../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
226
- type: import("vue").PropType<(value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any>;
226
+ type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
227
227
  }; } & { [key_1 in import("../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
228
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
228
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
229
229
  required: false;
230
230
  }; } & { [key_2 in import("../DefineVueTypings").VModelKeyNameInProps<TName>]: {
231
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
231
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
232
232
  required: false;
233
233
  }; } & {
234
- require(): import("../DefineVueTypings").DefinePropModelRequire<TName, "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", {
234
+ require(): import("../DefineVueTypings").DefinePropModelRequire<TName, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
235
235
  "onUpdate:modelValue": {
236
- type: import("vue").PropType<(value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any>;
236
+ type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
237
237
  };
238
238
  } & {
239
239
  "v-model": {
240
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
240
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
241
241
  required: false;
242
242
  };
243
243
  } & {
244
244
  modelValue: {
245
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
245
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
246
246
  required: false;
247
247
  };
248
248
  }>;
249
- defaultValue(value?: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", {
249
+ defaultValue(value?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
250
250
  "onUpdate:modelValue": {
251
- type: import("vue").PropType<(value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any>;
251
+ type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
252
252
  };
253
253
  } & {
254
254
  "v-model": {
255
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
255
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
256
256
  required: false;
257
257
  };
258
258
  } & {
259
259
  modelValue: {
260
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
260
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
261
261
  required: false;
262
262
  };
263
263
  }, false>;
264
- doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", {
264
+ doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
265
265
  "onUpdate:modelValue": {
266
- type: import("vue").PropType<(value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any>;
266
+ type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
267
267
  };
268
268
  } & {
269
269
  "v-model": {
270
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
270
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
271
271
  required: false;
272
272
  };
273
273
  } & {
274
274
  modelValue: {
275
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
275
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
276
276
  required: false;
277
277
  };
278
278
  }>;
@@ -307,67 +307,67 @@ declare const _default: {
307
307
  type: import("vue").PropType<ThemeDefinitionV2>;
308
308
  };
309
309
  "onUpdate:modelValue": {
310
- type: import("vue").PropType<(value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any>;
310
+ type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
311
311
  };
312
312
  "v-model": {
313
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
313
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
314
314
  required: false;
315
315
  };
316
316
  modelValue: {
317
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
317
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
318
318
  required: false;
319
319
  };
320
320
  name: <TName extends string>(n?: TName) => { [key in import("../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
321
- type: import("vue").PropType<(value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any>;
321
+ type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
322
322
  }; } & { [key_1 in import("../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
323
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
323
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
324
324
  required: false;
325
325
  }; } & { [key_2 in import("../DefineVueTypings").VModelKeyNameInProps<TName>]: {
326
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
326
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
327
327
  required: false;
328
328
  }; } & {
329
- require(): import("../DefineVueTypings").DefinePropModelRequire<TName, "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", {
329
+ require(): import("../DefineVueTypings").DefinePropModelRequire<TName, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
330
330
  "onUpdate:modelValue": {
331
- type: import("vue").PropType<(value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any>;
331
+ type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
332
332
  };
333
333
  } & {
334
334
  "v-model": {
335
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
335
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
336
336
  required: false;
337
337
  };
338
338
  } & {
339
339
  modelValue: {
340
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
340
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
341
341
  required: false;
342
342
  };
343
343
  }>;
344
- defaultValue(value?: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", {
344
+ defaultValue(value?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
345
345
  "onUpdate:modelValue": {
346
- type: import("vue").PropType<(value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any>;
346
+ type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
347
347
  };
348
348
  } & {
349
349
  "v-model": {
350
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
350
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
351
351
  required: false;
352
352
  };
353
353
  } & {
354
354
  modelValue: {
355
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
355
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
356
356
  required: false;
357
357
  };
358
358
  }, false>;
359
- doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", {
359
+ doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
360
360
  "onUpdate:modelValue": {
361
- type: import("vue").PropType<(value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any>;
361
+ type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
362
362
  };
363
363
  } & {
364
364
  "v-model": {
365
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
365
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
366
366
  required: false;
367
367
  };
368
368
  } & {
369
369
  modelValue: {
370
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
370
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
371
371
  required: false;
372
372
  };
373
373
  }>;
@@ -388,70 +388,70 @@ declare const _default: {
388
388
  propsDefinition: Omit<Readonly<{} & {
389
389
  name?: {
390
390
  [x: `onUpdate:${string}`]: {
391
- type: import("vue").PropType<(value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any>;
391
+ type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
392
392
  };
393
393
  } & {
394
394
  [x: `v-model:${string}`]: {
395
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
395
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
396
396
  required: false;
397
397
  };
398
398
  } & {
399
399
  [x: string]: {
400
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
400
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
401
401
  required: false;
402
402
  };
403
403
  } & {
404
- require(): import("../DefineVueTypings").DefinePropModelRequire<string, "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", {
404
+ require(): import("../DefineVueTypings").DefinePropModelRequire<string, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
405
405
  "onUpdate:modelValue": {
406
- type: import("vue").PropType<(value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any>;
406
+ type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
407
407
  };
408
408
  } & {
409
409
  "v-model": {
410
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
410
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
411
411
  required: false;
412
412
  };
413
413
  } & {
414
414
  modelValue: {
415
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
415
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
416
416
  required: false;
417
417
  };
418
418
  }>;
419
- defaultValue(value?: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("../DefineVueTypings").DefinePropModelDefaultValue<string, "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", {
419
+ defaultValue(value?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes): import("../DefineVueTypings").DefinePropModelDefaultValue<string, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
420
420
  "onUpdate:modelValue": {
421
- type: import("vue").PropType<(value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any>;
421
+ type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
422
422
  };
423
423
  } & {
424
424
  "v-model": {
425
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
425
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
426
426
  required: false;
427
427
  };
428
428
  } & {
429
429
  modelValue: {
430
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
430
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
431
431
  required: false;
432
432
  };
433
433
  }, false>;
434
- doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<string, "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", {
434
+ doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<string, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
435
435
  "onUpdate:modelValue": {
436
- type: import("vue").PropType<(value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any>;
436
+ type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
437
437
  };
438
438
  } & {
439
439
  "v-model": {
440
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
440
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
441
441
  required: false;
442
442
  };
443
443
  } & {
444
444
  modelValue: {
445
- type: import("vue").PropType<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
445
+ type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
446
446
  required: false;
447
447
  };
448
448
  }>;
449
449
  };
450
450
  label?: string;
451
451
  class?: String | String[];
452
- "onUpdate:modelValue"?: (value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any;
453
- "v-model"?: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background";
454
- modelValue?: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background";
452
+ "onUpdate:modelValue"?: (value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any;
453
+ "v-model"?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes;
454
+ modelValue?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes;
455
455
  "v-slots"?: {
456
456
  default?: import("../DefineVueTypings").Slot<any[]>;
457
457
  } & {