@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,7 +10,7 @@ declare const _default: {
|
|
10
10
|
onContainer: ColorDefinition;
|
11
11
|
isContainer: boolean;
|
12
12
|
name: string;
|
13
|
-
colorSchemaType: "info" | "error" |
|
13
|
+
colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes;
|
14
14
|
id: import("@omnia/fx-models").GuidValue;
|
15
15
|
};
|
16
16
|
events: {
|
@@ -20,13 +20,13 @@ declare const _default: {
|
|
20
20
|
onMutatedOnContainer: import("../../..").MessageBusExposeOnlySubscription<ColorDefinition>;
|
21
21
|
onMutatedIsContainer: import("../../..").MessageBusExposeOnlySubscription<boolean>;
|
22
22
|
onMutatedName: import("../../..").MessageBusExposeOnlySubscription<string>;
|
23
|
-
onMutatedColorSchemaType: import("../../..").MessageBusExposeOnlySubscription<"info" | "error" |
|
23
|
+
onMutatedColorSchemaType: import("../../..").MessageBusExposeOnlySubscription<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes>;
|
24
24
|
onMutatedId: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").GuidValue>;
|
25
25
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
26
26
|
actions: {
|
27
27
|
onDispatching: {
|
28
28
|
setColorSchema: {
|
29
|
-
subscribe(fn: (colorSchemaType: "info" | "error" |
|
29
|
+
subscribe(fn: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
30
30
|
};
|
31
31
|
setCustomColorSchema: {
|
32
32
|
subscribe(fn: (colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -62,17 +62,17 @@ declare const _default: {
|
|
62
62
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
63
63
|
};
|
64
64
|
get: {
|
65
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
65
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
66
66
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
67
67
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
68
68
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
69
69
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
70
70
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
71
|
-
color(colorSchemaType: "info" | "error" |
|
72
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
71
|
+
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
72
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): ColorDefinition;
|
73
73
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
74
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
75
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
74
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
75
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): ColorDefinition;
|
76
76
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
77
77
|
};
|
78
78
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -80,7 +80,7 @@ declare const _default: {
|
|
80
80
|
};
|
81
81
|
onDispatched: {
|
82
82
|
setColorSchema: {
|
83
|
-
subscribe(fn: (result: void, colorSchemaType: "info" | "error" |
|
83
|
+
subscribe(fn: (result: void, colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
84
84
|
};
|
85
85
|
setCustomColorSchema: {
|
86
86
|
subscribe(fn: (result: void, colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -116,17 +116,17 @@ declare const _default: {
|
|
116
116
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
117
117
|
};
|
118
118
|
get: {
|
119
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
119
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
120
120
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
121
121
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
122
122
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
123
123
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
124
124
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
125
|
-
color(colorSchemaType: "info" | "error" |
|
126
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
125
|
+
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
126
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): ColorDefinition;
|
127
127
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
128
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
129
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
128
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
129
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): ColorDefinition;
|
130
130
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
131
131
|
};
|
132
132
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -134,7 +134,7 @@ declare const _default: {
|
|
134
134
|
};
|
135
135
|
onFailure: {
|
136
136
|
setColorSchema: {
|
137
|
-
subscribe(fn: (failureReason: any, colorSchemaType: "info" | "error" |
|
137
|
+
subscribe(fn: (failureReason: any, colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
138
138
|
};
|
139
139
|
setCustomColorSchema: {
|
140
140
|
subscribe(fn: (failureReason: any, colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -170,24 +170,24 @@ declare const _default: {
|
|
170
170
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
171
171
|
};
|
172
172
|
get: {
|
173
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
173
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
174
174
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
175
175
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
176
176
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
177
177
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
178
178
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
179
|
-
color(colorSchemaType: "info" | "error" |
|
180
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
179
|
+
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
180
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): ColorDefinition;
|
181
181
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
182
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
183
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
182
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
183
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): ColorDefinition;
|
184
184
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
185
185
|
};
|
186
186
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
187
187
|
};
|
188
188
|
};
|
189
189
|
} & {
|
190
|
-
setColorSchema(colorSchemaType: "info" | "error" |
|
190
|
+
setColorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean): void;
|
191
191
|
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
192
192
|
setColor(colorDefinition: ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
193
193
|
setThemeStore(themeStoreInstance: {
|
@@ -217,17 +217,17 @@ declare const _default: {
|
|
217
217
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
218
218
|
};
|
219
219
|
get: {
|
220
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
220
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
221
221
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
222
222
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
223
223
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
224
224
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
225
225
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
226
|
-
color(colorSchemaType: "info" | "error" |
|
227
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
226
|
+
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
227
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): ColorDefinition;
|
228
228
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
229
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
230
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
229
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
230
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): ColorDefinition;
|
231
231
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
232
232
|
};
|
233
233
|
}): void;
|
@@ -489,17 +489,17 @@ declare const _default: {
|
|
489
489
|
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
490
490
|
};
|
491
491
|
get: {
|
492
|
-
colorSchema: (colorSchemaType: "info" | "error" |
|
492
|
+
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
493
493
|
blueprint: <TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
494
494
|
typography: () => import("@omnia/fx-models").TypographyBlueprint;
|
495
495
|
spacing: () => import("@omnia/fx-models").SpacingBlueprint;
|
496
496
|
chrome: () => import("@omnia/fx-models").ChromeBlueprint;
|
497
497
|
component: () => import("@omnia/fx-models").ComponentBlueprint;
|
498
|
-
color: (colorSchemaType: "info" | "error" |
|
499
|
-
colorDefinition: (colorSchemaType: "info" | "error" |
|
498
|
+
color: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => string;
|
499
|
+
colorDefinition: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => ColorDefinition;
|
500
500
|
complementaryColorType: (colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => import("@omnia/fx-models").ColorTypes;
|
501
|
-
complementaryColor: (colorSchemaType: "info" | "error" |
|
502
|
-
complementaryColorDefinition: (colorSchemaType: "info" | "error" |
|
501
|
+
complementaryColor: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => string;
|
502
|
+
complementaryColorDefinition: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => ColorDefinition;
|
503
503
|
currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
|
504
504
|
};
|
505
505
|
};
|
@@ -18,9 +18,9 @@ declare const _default: {
|
|
18
18
|
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
19
19
|
};
|
20
20
|
variant: {
|
21
|
-
type: import("vue").PropType<"
|
21
|
+
type: import("vue").PropType<"default" | "background">;
|
22
22
|
} & {
|
23
|
-
type: import("vue").PropType<"
|
23
|
+
type: import("vue").PropType<"default" | "background">;
|
24
24
|
};
|
25
25
|
"color-type": {
|
26
26
|
type: import("vue").PropType<"base" | "onBase" | "container" | "onContainer">;
|
@@ -63,9 +63,9 @@ declare const _default: {
|
|
63
63
|
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
64
64
|
};
|
65
65
|
variant: {
|
66
|
-
type: import("vue").PropType<"
|
66
|
+
type: import("vue").PropType<"default" | "background">;
|
67
67
|
} & {
|
68
|
-
type: import("vue").PropType<"
|
68
|
+
type: import("vue").PropType<"default" | "background">;
|
69
69
|
};
|
70
70
|
"color-type": {
|
71
71
|
type: import("vue").PropType<"base" | "onBase" | "container" | "onContainer">;
|
@@ -119,9 +119,9 @@ declare const _default: {
|
|
119
119
|
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
120
120
|
};
|
121
121
|
variant: {
|
122
|
-
type: import("vue").PropType<"
|
122
|
+
type: import("vue").PropType<"default" | "background">;
|
123
123
|
} & {
|
124
|
-
type: import("vue").PropType<"
|
124
|
+
type: import("vue").PropType<"default" | "background">;
|
125
125
|
};
|
126
126
|
"color-type": {
|
127
127
|
type: import("vue").PropType<"base" | "onBase" | "container" | "onContainer">;
|
@@ -172,9 +172,9 @@ declare const _default: {
|
|
172
172
|
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
173
173
|
};
|
174
174
|
variant: {
|
175
|
-
type: import("vue").PropType<"
|
175
|
+
type: import("vue").PropType<"default" | "background">;
|
176
176
|
} & {
|
177
|
-
type: import("vue").PropType<"
|
177
|
+
type: import("vue").PropType<"default" | "background">;
|
178
178
|
};
|
179
179
|
"color-type": {
|
180
180
|
type: import("vue").PropType<"base" | "onBase" | "container" | "onContainer">;
|
@@ -213,7 +213,7 @@ declare const _default: {
|
|
213
213
|
class?: String | String[];
|
214
214
|
size?: "small" | "default" | "large" | "x-large" | "x-small";
|
215
215
|
animation?: "flip" | "spin" | "beat" | "bounce";
|
216
|
-
variant?: "
|
216
|
+
variant?: "default" | "background";
|
217
217
|
toned?: boolean;
|
218
218
|
colorType?: "base" | "onBase" | "container" | "onContainer";
|
219
219
|
"color-type"?: "base" | "onBase" | "container" | "onContainer";
|