@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.
- package/internal-do-not-import-from-here/shared/models/OmniaSharedBootstrapData.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/Tokens.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/theming/BlueprintDefinition.d.ts +6 -1
- package/internal-do-not-import-from-here/shared/models/theming/ChromeDefinition.d.ts +7 -5
- package/internal-do-not-import-from-here/ux/blueprintpickers/chromepicker/ChromePicker.css.d.ts +3 -5
- package/internal-do-not-import-from-here/ux/blueprintpickers/chromepicker/ChromePicker.d.ts +132 -97
- package/internal-do-not-import-from-here/ux/blueprintpickers/chromepicker/{ChromePreview.d.ts → ChromeViewer.d.ts} +35 -18
- package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaPicker.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaPicker.d.ts +90 -90
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.css.d.ts +31 -31
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview2.d.ts +496 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/chrome/store/ChromeEditorStore.d.ts +10 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/core/DefinitionsChrome.d.ts +156 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/core/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/BlueprintsChrome.d.ts +5 -3
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/BlueprintsChrome.d.ts +2 -3
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/BlueprintsChrome.d.ts +5 -3
- package/internal-do-not-import-from-here/ux/theming-v2/store/ChromeBlueprintStore.d.ts +23 -24
- package/internal-do-not-import-from-here/ux/theming-v2/store/ColorSchemaStore.d.ts +25 -25
- package/internal-do-not-import-from-here/ux/theming-v2/store/ComponentBlueprintStore.d.ts +20 -20
- package/internal-do-not-import-from-here/ux/theming-v2/store/SpacingBlueprintStore.d.ts +22 -24
- package/internal-do-not-import-from-here/ux/theming-v2/store/ThemeContextStore.d.ts +45 -45
- package/internal-do-not-import-from-here/ux/theming-v2/store/TypographyBlueprintStore.d.ts +27 -29
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseStyling.d.ts +81 -81
- package/internal-do-not-import-from-here/ux/theming-v2/themeprovider/ThemeProvider.d.ts +720 -715
- package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +31 -31
- package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronColorSchema.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +5 -5
- package/internal-do-not-import-from-here/wctypings.d.ts +18 -3
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/DefinitionsChrome.d.ts +0 -49
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/DefinitionsChrome.d.ts +0 -49
- 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
|
-
|
5
|
-
type: import("vue").PropType<
|
5
|
+
text: {
|
6
|
+
type: import("vue").PropType<string>;
|
7
|
+
} & {
|
8
|
+
type: import("vue").PropType<string>;
|
6
9
|
};
|
7
|
-
|
8
|
-
type: import("vue").PropType<
|
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
|
-
|
20
|
-
type: import("vue").PropType<
|
24
|
+
text: {
|
25
|
+
type: import("vue").PropType<string>;
|
26
|
+
} & {
|
27
|
+
type: import("vue").PropType<string>;
|
21
28
|
};
|
22
|
-
|
23
|
-
type: import("vue").PropType<
|
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
|
-
|
46
|
-
type: import("vue").PropType<
|
54
|
+
text: {
|
55
|
+
type: import("vue").PropType<string>;
|
56
|
+
} & {
|
57
|
+
type: import("vue").PropType<string>;
|
47
58
|
};
|
48
|
-
|
49
|
-
type: import("vue").PropType<
|
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
|
-
|
69
|
-
type: import("vue").PropType<
|
81
|
+
text: {
|
82
|
+
type: import("vue").PropType<string>;
|
83
|
+
} & {
|
84
|
+
type: import("vue").PropType<string>;
|
70
85
|
};
|
71
|
-
|
72
|
-
type: import("vue").PropType<
|
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
|
-
|
94
|
-
"no-text"?: boolean;
|
111
|
+
variant?: VariantTypes;
|
95
112
|
}>, never>;
|
96
113
|
};
|
97
114
|
export default _default;
|
@@ -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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
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" |
|
453
|
-
"v-model"?: "info" | "error" |
|
454
|
-
modelValue?: "info" | "error" |
|
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
|
} & {
|