@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
|
@@ -10,6 +10,9 @@ export interface ChromeBluePrintDefinitions {
|
|
|
10
10
|
variant3: ChromeDefinition;
|
|
11
11
|
}
|
|
12
12
|
export type BlueprintType = "chrome" | "typography" | "spacing" | "component";
|
|
13
|
+
export type ChromeBlueprintVariants = "default" | "variant1" | "variant2" | "variant3";
|
|
14
|
+
export type TypographyBlueprintVariants = "default" | "variant1";
|
|
15
|
+
export type SpacingBlueprintVariants = "default";
|
|
13
16
|
export interface BlueprintDefinition {
|
|
14
17
|
type: BlueprintType;
|
|
15
18
|
name: string;
|
|
@@ -17,7 +20,9 @@ export interface BlueprintDefinition {
|
|
|
17
20
|
export interface ChromeBlueprint extends BlueprintDefinition {
|
|
18
21
|
type: "chrome";
|
|
19
22
|
default: ChromeDefinition;
|
|
20
|
-
variant1
|
|
23
|
+
variant1?: ChromeDefinition;
|
|
24
|
+
variant2?: ChromeDefinition;
|
|
25
|
+
variant3?: ChromeDefinition;
|
|
21
26
|
}
|
|
22
27
|
export interface TypographyBlueprint extends BlueprintDefinition {
|
|
23
28
|
type: "typography";
|
|
@@ -2,7 +2,7 @@ import { GuidValue } from "../Guid";
|
|
|
2
2
|
import { VelcronAppDefinition } from "../velcron";
|
|
3
3
|
import { BoxDimensions } from "./BlueprintDefinition";
|
|
4
4
|
import { SpacingSettings } from "./SpacingSetting";
|
|
5
|
-
import {
|
|
5
|
+
import { ColorType } from "./ThemeDefinitionV2";
|
|
6
6
|
export interface ChromeDefinition {
|
|
7
7
|
id: GuidValue;
|
|
8
8
|
name: string;
|
|
@@ -10,11 +10,13 @@ export interface ChromeDefinition {
|
|
|
10
10
|
definitionId: GuidValue;
|
|
11
11
|
definition?: VelcronAppDefinition;
|
|
12
12
|
};
|
|
13
|
-
colors: {
|
|
14
|
-
colorSchemaType?: ColorSchemaTypes | ColorSchemaType;
|
|
15
|
-
};
|
|
16
13
|
styles: {
|
|
17
|
-
|
|
14
|
+
background?: {
|
|
15
|
+
filled?: boolean;
|
|
16
|
+
opacity?: number;
|
|
17
|
+
colorType?: ColorType;
|
|
18
|
+
toned?: boolean;
|
|
19
|
+
};
|
|
18
20
|
spacing?: SpacingSettings;
|
|
19
21
|
elevation?: number;
|
|
20
22
|
borderRadius?: BoxDimensions;
|
package/internal-do-not-import-from-here/ux/blueprintpickers/chromepicker/ChromePicker.css.d.ts
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
IconColumn: string;
|
|
5
|
-
titleColumn: string;
|
|
1
|
+
export declare const ChromePickerStyles: {
|
|
2
|
+
selector: (dark: boolean) => string;
|
|
3
|
+
container: string;
|
|
6
4
|
};
|
|
@@ -1,144 +1,161 @@
|
|
|
1
|
+
import { ChromeBlueprintVariants } from "../../velcron/core";
|
|
1
2
|
declare const _default: {
|
|
2
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
4
|
+
"preview-color-schema-type": {
|
|
5
|
+
type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
|
|
6
|
+
required: false;
|
|
7
|
+
};
|
|
8
|
+
previewColorSchemaType: {
|
|
9
|
+
type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
|
|
10
|
+
required: false;
|
|
11
|
+
};
|
|
3
12
|
"onUpdate:modelValue": {
|
|
4
|
-
type: import("vue").PropType<(value:
|
|
13
|
+
type: import("vue").PropType<(value: ChromeBlueprintVariants) => any>;
|
|
5
14
|
};
|
|
6
15
|
"v-model": {
|
|
7
|
-
type: import("vue").PropType<
|
|
16
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
8
17
|
required: false;
|
|
9
18
|
};
|
|
10
19
|
modelValue: {
|
|
11
|
-
type: import("vue").PropType<
|
|
20
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
12
21
|
required: false;
|
|
13
22
|
};
|
|
14
23
|
name: <TName extends string>(n?: TName) => { [key in import("../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
|
15
|
-
type: import("vue").PropType<(value:
|
|
24
|
+
type: import("vue").PropType<(value: ChromeBlueprintVariants) => any>;
|
|
16
25
|
}; } & { [key_1 in import("../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
|
17
|
-
type: import("vue").PropType<
|
|
26
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
18
27
|
required: false;
|
|
19
28
|
}; } & { [key_2 in import("../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
|
20
|
-
type: import("vue").PropType<
|
|
29
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
21
30
|
required: false;
|
|
22
31
|
}; } & {
|
|
23
|
-
require(): import("../../DefineVueTypings").DefinePropModelRequire<TName,
|
|
32
|
+
require(): import("../../DefineVueTypings").DefinePropModelRequire<TName, ChromeBlueprintVariants, {
|
|
24
33
|
"onUpdate:modelValue": {
|
|
25
|
-
type: import("vue").PropType<(value:
|
|
34
|
+
type: import("vue").PropType<(value: ChromeBlueprintVariants) => any>;
|
|
26
35
|
};
|
|
27
36
|
} & {
|
|
28
37
|
"v-model": {
|
|
29
|
-
type: import("vue").PropType<
|
|
38
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
30
39
|
required: false;
|
|
31
40
|
};
|
|
32
41
|
} & {
|
|
33
42
|
modelValue: {
|
|
34
|
-
type: import("vue").PropType<
|
|
43
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
35
44
|
required: false;
|
|
36
45
|
};
|
|
37
46
|
}>;
|
|
38
|
-
defaultValue(value?:
|
|
47
|
+
defaultValue(value?: ChromeBlueprintVariants): import("../../DefineVueTypings").DefinePropModelDefaultValue<TName, ChromeBlueprintVariants, {
|
|
39
48
|
"onUpdate:modelValue": {
|
|
40
|
-
type: import("vue").PropType<(value:
|
|
49
|
+
type: import("vue").PropType<(value: ChromeBlueprintVariants) => any>;
|
|
41
50
|
};
|
|
42
51
|
} & {
|
|
43
52
|
"v-model": {
|
|
44
|
-
type: import("vue").PropType<
|
|
53
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
45
54
|
required: false;
|
|
46
55
|
};
|
|
47
56
|
} & {
|
|
48
57
|
modelValue: {
|
|
49
|
-
type: import("vue").PropType<
|
|
58
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
50
59
|
required: false;
|
|
51
60
|
};
|
|
52
61
|
}, false>;
|
|
53
|
-
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName,
|
|
62
|
+
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName, ChromeBlueprintVariants, {
|
|
54
63
|
"onUpdate:modelValue": {
|
|
55
|
-
type: import("vue").PropType<(value:
|
|
64
|
+
type: import("vue").PropType<(value: ChromeBlueprintVariants) => any>;
|
|
56
65
|
};
|
|
57
66
|
} & {
|
|
58
67
|
"v-model": {
|
|
59
|
-
type: import("vue").PropType<
|
|
68
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
60
69
|
required: false;
|
|
61
70
|
};
|
|
62
71
|
} & {
|
|
63
72
|
modelValue: {
|
|
64
|
-
type: import("vue").PropType<
|
|
73
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
65
74
|
required: false;
|
|
66
75
|
};
|
|
67
76
|
}>;
|
|
68
77
|
};
|
|
69
78
|
}>> & {
|
|
70
|
-
"onUpdate:modelValue"?: (value:
|
|
79
|
+
"onUpdate:modelValue"?: (value: ChromeBlueprintVariants) => any;
|
|
71
80
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
72
|
-
"update:modelValue": (value:
|
|
81
|
+
"update:modelValue": (value: ChromeBlueprintVariants) => any;
|
|
73
82
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
83
|
+
"preview-color-schema-type": {
|
|
84
|
+
type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
|
|
85
|
+
required: false;
|
|
86
|
+
};
|
|
87
|
+
previewColorSchemaType: {
|
|
88
|
+
type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
|
|
89
|
+
required: false;
|
|
90
|
+
};
|
|
74
91
|
"onUpdate:modelValue": {
|
|
75
|
-
type: import("vue").PropType<(value:
|
|
92
|
+
type: import("vue").PropType<(value: ChromeBlueprintVariants) => any>;
|
|
76
93
|
};
|
|
77
94
|
"v-model": {
|
|
78
|
-
type: import("vue").PropType<
|
|
95
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
79
96
|
required: false;
|
|
80
97
|
};
|
|
81
98
|
modelValue: {
|
|
82
|
-
type: import("vue").PropType<
|
|
99
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
83
100
|
required: false;
|
|
84
101
|
};
|
|
85
102
|
name: <TName extends string>(n?: TName) => { [key in import("../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
|
86
|
-
type: import("vue").PropType<(value:
|
|
103
|
+
type: import("vue").PropType<(value: ChromeBlueprintVariants) => any>;
|
|
87
104
|
}; } & { [key_1 in import("../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
|
88
|
-
type: import("vue").PropType<
|
|
105
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
89
106
|
required: false;
|
|
90
107
|
}; } & { [key_2 in import("../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
|
91
|
-
type: import("vue").PropType<
|
|
108
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
92
109
|
required: false;
|
|
93
110
|
}; } & {
|
|
94
|
-
require(): import("../../DefineVueTypings").DefinePropModelRequire<TName,
|
|
111
|
+
require(): import("../../DefineVueTypings").DefinePropModelRequire<TName, ChromeBlueprintVariants, {
|
|
95
112
|
"onUpdate:modelValue": {
|
|
96
|
-
type: import("vue").PropType<(value:
|
|
113
|
+
type: import("vue").PropType<(value: ChromeBlueprintVariants) => any>;
|
|
97
114
|
};
|
|
98
115
|
} & {
|
|
99
116
|
"v-model": {
|
|
100
|
-
type: import("vue").PropType<
|
|
117
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
101
118
|
required: false;
|
|
102
119
|
};
|
|
103
120
|
} & {
|
|
104
121
|
modelValue: {
|
|
105
|
-
type: import("vue").PropType<
|
|
122
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
106
123
|
required: false;
|
|
107
124
|
};
|
|
108
125
|
}>;
|
|
109
|
-
defaultValue(value?:
|
|
126
|
+
defaultValue(value?: ChromeBlueprintVariants): import("../../DefineVueTypings").DefinePropModelDefaultValue<TName, ChromeBlueprintVariants, {
|
|
110
127
|
"onUpdate:modelValue": {
|
|
111
|
-
type: import("vue").PropType<(value:
|
|
128
|
+
type: import("vue").PropType<(value: ChromeBlueprintVariants) => any>;
|
|
112
129
|
};
|
|
113
130
|
} & {
|
|
114
131
|
"v-model": {
|
|
115
|
-
type: import("vue").PropType<
|
|
132
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
116
133
|
required: false;
|
|
117
134
|
};
|
|
118
135
|
} & {
|
|
119
136
|
modelValue: {
|
|
120
|
-
type: import("vue").PropType<
|
|
137
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
121
138
|
required: false;
|
|
122
139
|
};
|
|
123
140
|
}, false>;
|
|
124
|
-
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName,
|
|
141
|
+
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName, ChromeBlueprintVariants, {
|
|
125
142
|
"onUpdate:modelValue": {
|
|
126
|
-
type: import("vue").PropType<(value:
|
|
143
|
+
type: import("vue").PropType<(value: ChromeBlueprintVariants) => any>;
|
|
127
144
|
};
|
|
128
145
|
} & {
|
|
129
146
|
"v-model": {
|
|
130
|
-
type: import("vue").PropType<
|
|
147
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
131
148
|
required: false;
|
|
132
149
|
};
|
|
133
150
|
} & {
|
|
134
151
|
modelValue: {
|
|
135
|
-
type: import("vue").PropType<
|
|
152
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
136
153
|
required: false;
|
|
137
154
|
};
|
|
138
155
|
}>;
|
|
139
156
|
};
|
|
140
157
|
}>> & {
|
|
141
|
-
"onUpdate:modelValue"?: (value:
|
|
158
|
+
"onUpdate:modelValue"?: (value: ChromeBlueprintVariants) => any;
|
|
142
159
|
}, {}, true, {}, {}, {
|
|
143
160
|
P: {};
|
|
144
161
|
B: {};
|
|
@@ -147,217 +164,235 @@ declare const _default: {
|
|
|
147
164
|
M: {};
|
|
148
165
|
Defaults: {};
|
|
149
166
|
}, Readonly<import("vue").ExtractPropTypes<{
|
|
167
|
+
"preview-color-schema-type": {
|
|
168
|
+
type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
|
|
169
|
+
required: false;
|
|
170
|
+
};
|
|
171
|
+
previewColorSchemaType: {
|
|
172
|
+
type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
|
|
173
|
+
required: false;
|
|
174
|
+
};
|
|
150
175
|
"onUpdate:modelValue": {
|
|
151
|
-
type: import("vue").PropType<(value:
|
|
176
|
+
type: import("vue").PropType<(value: ChromeBlueprintVariants) => any>;
|
|
152
177
|
};
|
|
153
178
|
"v-model": {
|
|
154
|
-
type: import("vue").PropType<
|
|
179
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
155
180
|
required: false;
|
|
156
181
|
};
|
|
157
182
|
modelValue: {
|
|
158
|
-
type: import("vue").PropType<
|
|
183
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
159
184
|
required: false;
|
|
160
185
|
};
|
|
161
186
|
name: <TName extends string>(n?: TName) => { [key in import("../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
|
162
|
-
type: import("vue").PropType<(value:
|
|
187
|
+
type: import("vue").PropType<(value: ChromeBlueprintVariants) => any>;
|
|
163
188
|
}; } & { [key_1 in import("../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
|
164
|
-
type: import("vue").PropType<
|
|
189
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
165
190
|
required: false;
|
|
166
191
|
}; } & { [key_2 in import("../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
|
167
|
-
type: import("vue").PropType<
|
|
192
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
168
193
|
required: false;
|
|
169
194
|
}; } & {
|
|
170
|
-
require(): import("../../DefineVueTypings").DefinePropModelRequire<TName,
|
|
195
|
+
require(): import("../../DefineVueTypings").DefinePropModelRequire<TName, ChromeBlueprintVariants, {
|
|
171
196
|
"onUpdate:modelValue": {
|
|
172
|
-
type: import("vue").PropType<(value:
|
|
197
|
+
type: import("vue").PropType<(value: ChromeBlueprintVariants) => any>;
|
|
173
198
|
};
|
|
174
199
|
} & {
|
|
175
200
|
"v-model": {
|
|
176
|
-
type: import("vue").PropType<
|
|
201
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
177
202
|
required: false;
|
|
178
203
|
};
|
|
179
204
|
} & {
|
|
180
205
|
modelValue: {
|
|
181
|
-
type: import("vue").PropType<
|
|
206
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
182
207
|
required: false;
|
|
183
208
|
};
|
|
184
209
|
}>;
|
|
185
|
-
defaultValue(value?:
|
|
210
|
+
defaultValue(value?: ChromeBlueprintVariants): import("../../DefineVueTypings").DefinePropModelDefaultValue<TName, ChromeBlueprintVariants, {
|
|
186
211
|
"onUpdate:modelValue": {
|
|
187
|
-
type: import("vue").PropType<(value:
|
|
212
|
+
type: import("vue").PropType<(value: ChromeBlueprintVariants) => any>;
|
|
188
213
|
};
|
|
189
214
|
} & {
|
|
190
215
|
"v-model": {
|
|
191
|
-
type: import("vue").PropType<
|
|
216
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
192
217
|
required: false;
|
|
193
218
|
};
|
|
194
219
|
} & {
|
|
195
220
|
modelValue: {
|
|
196
|
-
type: import("vue").PropType<
|
|
221
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
197
222
|
required: false;
|
|
198
223
|
};
|
|
199
224
|
}, false>;
|
|
200
|
-
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName,
|
|
225
|
+
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName, ChromeBlueprintVariants, {
|
|
201
226
|
"onUpdate:modelValue": {
|
|
202
|
-
type: import("vue").PropType<(value:
|
|
227
|
+
type: import("vue").PropType<(value: ChromeBlueprintVariants) => any>;
|
|
203
228
|
};
|
|
204
229
|
} & {
|
|
205
230
|
"v-model": {
|
|
206
|
-
type: import("vue").PropType<
|
|
231
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
207
232
|
required: false;
|
|
208
233
|
};
|
|
209
234
|
} & {
|
|
210
235
|
modelValue: {
|
|
211
|
-
type: import("vue").PropType<
|
|
236
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
212
237
|
required: false;
|
|
213
238
|
};
|
|
214
239
|
}>;
|
|
215
240
|
};
|
|
216
241
|
}>> & {
|
|
217
|
-
"onUpdate:modelValue"?: (value:
|
|
242
|
+
"onUpdate:modelValue"?: (value: ChromeBlueprintVariants) => any;
|
|
218
243
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
|
219
244
|
__isFragment?: never;
|
|
220
245
|
__isTeleport?: never;
|
|
221
246
|
__isSuspense?: never;
|
|
222
247
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
248
|
+
"preview-color-schema-type": {
|
|
249
|
+
type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
|
|
250
|
+
required: false;
|
|
251
|
+
};
|
|
252
|
+
previewColorSchemaType: {
|
|
253
|
+
type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
|
|
254
|
+
required: false;
|
|
255
|
+
};
|
|
223
256
|
"onUpdate:modelValue": {
|
|
224
|
-
type: import("vue").PropType<(value:
|
|
257
|
+
type: import("vue").PropType<(value: ChromeBlueprintVariants) => any>;
|
|
225
258
|
};
|
|
226
259
|
"v-model": {
|
|
227
|
-
type: import("vue").PropType<
|
|
260
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
228
261
|
required: false;
|
|
229
262
|
};
|
|
230
263
|
modelValue: {
|
|
231
|
-
type: import("vue").PropType<
|
|
264
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
232
265
|
required: false;
|
|
233
266
|
};
|
|
234
267
|
name: <TName extends string>(n?: TName) => { [key in import("../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
|
235
|
-
type: import("vue").PropType<(value:
|
|
268
|
+
type: import("vue").PropType<(value: ChromeBlueprintVariants) => any>;
|
|
236
269
|
}; } & { [key_1 in import("../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
|
237
|
-
type: import("vue").PropType<
|
|
270
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
238
271
|
required: false;
|
|
239
272
|
}; } & { [key_2 in import("../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
|
240
|
-
type: import("vue").PropType<
|
|
273
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
241
274
|
required: false;
|
|
242
275
|
}; } & {
|
|
243
|
-
require(): import("../../DefineVueTypings").DefinePropModelRequire<TName,
|
|
276
|
+
require(): import("../../DefineVueTypings").DefinePropModelRequire<TName, ChromeBlueprintVariants, {
|
|
244
277
|
"onUpdate:modelValue": {
|
|
245
|
-
type: import("vue").PropType<(value:
|
|
278
|
+
type: import("vue").PropType<(value: ChromeBlueprintVariants) => any>;
|
|
246
279
|
};
|
|
247
280
|
} & {
|
|
248
281
|
"v-model": {
|
|
249
|
-
type: import("vue").PropType<
|
|
282
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
250
283
|
required: false;
|
|
251
284
|
};
|
|
252
285
|
} & {
|
|
253
286
|
modelValue: {
|
|
254
|
-
type: import("vue").PropType<
|
|
287
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
255
288
|
required: false;
|
|
256
289
|
};
|
|
257
290
|
}>;
|
|
258
|
-
defaultValue(value?:
|
|
291
|
+
defaultValue(value?: ChromeBlueprintVariants): import("../../DefineVueTypings").DefinePropModelDefaultValue<TName, ChromeBlueprintVariants, {
|
|
259
292
|
"onUpdate:modelValue": {
|
|
260
|
-
type: import("vue").PropType<(value:
|
|
293
|
+
type: import("vue").PropType<(value: ChromeBlueprintVariants) => any>;
|
|
261
294
|
};
|
|
262
295
|
} & {
|
|
263
296
|
"v-model": {
|
|
264
|
-
type: import("vue").PropType<
|
|
297
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
265
298
|
required: false;
|
|
266
299
|
};
|
|
267
300
|
} & {
|
|
268
301
|
modelValue: {
|
|
269
|
-
type: import("vue").PropType<
|
|
302
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
270
303
|
required: false;
|
|
271
304
|
};
|
|
272
305
|
}, false>;
|
|
273
|
-
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName,
|
|
306
|
+
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName, ChromeBlueprintVariants, {
|
|
274
307
|
"onUpdate:modelValue": {
|
|
275
|
-
type: import("vue").PropType<(value:
|
|
308
|
+
type: import("vue").PropType<(value: ChromeBlueprintVariants) => any>;
|
|
276
309
|
};
|
|
277
310
|
} & {
|
|
278
311
|
"v-model": {
|
|
279
|
-
type: import("vue").PropType<
|
|
312
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
280
313
|
required: false;
|
|
281
314
|
};
|
|
282
315
|
} & {
|
|
283
316
|
modelValue: {
|
|
284
|
-
type: import("vue").PropType<
|
|
317
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
285
318
|
required: false;
|
|
286
319
|
};
|
|
287
320
|
}>;
|
|
288
321
|
};
|
|
289
322
|
}>> & {
|
|
290
|
-
"onUpdate:modelValue"?: (value:
|
|
323
|
+
"onUpdate:modelValue"?: (value: ChromeBlueprintVariants) => any;
|
|
291
324
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
292
|
-
"update:modelValue": (value:
|
|
325
|
+
"update:modelValue": (value: ChromeBlueprintVariants) => any;
|
|
293
326
|
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
|
294
327
|
propsDefinition: Omit<Readonly<{} & {
|
|
295
328
|
name?: {
|
|
296
329
|
[x: `onUpdate:${string}`]: {
|
|
297
|
-
type: import("vue").PropType<(value:
|
|
330
|
+
type: import("vue").PropType<(value: ChromeBlueprintVariants) => any>;
|
|
298
331
|
};
|
|
299
332
|
} & {
|
|
300
333
|
[x: `v-model:${string}`]: {
|
|
301
|
-
type: import("vue").PropType<
|
|
334
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
302
335
|
required: false;
|
|
303
336
|
};
|
|
304
337
|
} & {
|
|
305
338
|
[x: string]: {
|
|
306
|
-
type: import("vue").PropType<
|
|
339
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
307
340
|
required: false;
|
|
308
341
|
};
|
|
309
342
|
} & {
|
|
310
|
-
require(): import("../../DefineVueTypings").DefinePropModelRequire<string,
|
|
343
|
+
require(): import("../../DefineVueTypings").DefinePropModelRequire<string, ChromeBlueprintVariants, {
|
|
311
344
|
"onUpdate:modelValue": {
|
|
312
|
-
type: import("vue").PropType<(value:
|
|
345
|
+
type: import("vue").PropType<(value: ChromeBlueprintVariants) => any>;
|
|
313
346
|
};
|
|
314
347
|
} & {
|
|
315
348
|
"v-model": {
|
|
316
|
-
type: import("vue").PropType<
|
|
349
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
317
350
|
required: false;
|
|
318
351
|
};
|
|
319
352
|
} & {
|
|
320
353
|
modelValue: {
|
|
321
|
-
type: import("vue").PropType<
|
|
354
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
322
355
|
required: false;
|
|
323
356
|
};
|
|
324
357
|
}>;
|
|
325
|
-
defaultValue(value?:
|
|
358
|
+
defaultValue(value?: ChromeBlueprintVariants): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, ChromeBlueprintVariants, {
|
|
326
359
|
"onUpdate:modelValue": {
|
|
327
|
-
type: import("vue").PropType<(value:
|
|
360
|
+
type: import("vue").PropType<(value: ChromeBlueprintVariants) => any>;
|
|
328
361
|
};
|
|
329
362
|
} & {
|
|
330
363
|
"v-model": {
|
|
331
|
-
type: import("vue").PropType<
|
|
364
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
332
365
|
required: false;
|
|
333
366
|
};
|
|
334
367
|
} & {
|
|
335
368
|
modelValue: {
|
|
336
|
-
type: import("vue").PropType<
|
|
369
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
337
370
|
required: false;
|
|
338
371
|
};
|
|
339
372
|
}, false>;
|
|
340
|
-
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string,
|
|
373
|
+
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, ChromeBlueprintVariants, {
|
|
341
374
|
"onUpdate:modelValue": {
|
|
342
|
-
type: import("vue").PropType<(value:
|
|
375
|
+
type: import("vue").PropType<(value: ChromeBlueprintVariants) => any>;
|
|
343
376
|
};
|
|
344
377
|
} & {
|
|
345
378
|
"v-model": {
|
|
346
|
-
type: import("vue").PropType<
|
|
379
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
347
380
|
required: false;
|
|
348
381
|
};
|
|
349
382
|
} & {
|
|
350
383
|
modelValue: {
|
|
351
|
-
type: import("vue").PropType<
|
|
384
|
+
type: import("vue").PropType<ChromeBlueprintVariants>;
|
|
352
385
|
required: false;
|
|
353
386
|
};
|
|
354
387
|
}>;
|
|
355
388
|
};
|
|
356
|
-
"onUpdate:modelValue"?: (value:
|
|
357
|
-
"v-model"?:
|
|
358
|
-
modelValue?:
|
|
389
|
+
"onUpdate:modelValue"?: (value: ChromeBlueprintVariants) => any;
|
|
390
|
+
"v-model"?: ChromeBlueprintVariants;
|
|
391
|
+
modelValue?: ChromeBlueprintVariants;
|
|
392
|
+
previewColorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background";
|
|
393
|
+
"preview-color-schema-type"?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background";
|
|
359
394
|
}>, "onUpdate:modelValue"> & {
|
|
360
|
-
"onUpdate:modelValue"?: (value:
|
|
395
|
+
"onUpdate:modelValue"?: (value: ChromeBlueprintVariants) => any;
|
|
361
396
|
};
|
|
362
397
|
};
|
|
363
398
|
export default _default;
|