@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
@@ -31,18 +31,18 @@ export declare function useThemeStyling(): {
|
|
31
31
|
styling: (blueprints: {
|
32
32
|
state: {
|
33
33
|
blueprint: import("@omnia/fx-models").TypographyDefinition;
|
34
|
-
blueprintType: "
|
34
|
+
blueprintType: import("@omnia/fx-models").TypographyBlueprintVariants;
|
35
35
|
id: import("@omnia/fx-models").GuidValue;
|
36
36
|
};
|
37
37
|
events: {
|
38
38
|
onMutatedBlueprint: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").TypographyDefinition>;
|
39
|
-
onMutatedBlueprintType: import("../../..").MessageBusExposeOnlySubscription<"
|
39
|
+
onMutatedBlueprintType: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").TypographyBlueprintVariants>;
|
40
40
|
onMutatedId: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").GuidValue>;
|
41
41
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
42
42
|
actions: {
|
43
43
|
onDispatching: {
|
44
44
|
setBlueprint: {
|
45
|
-
subscribe(fn: (type: "
|
45
|
+
subscribe(fn: (type: import("@omnia/fx-models").TypographyBlueprintVariants) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
46
46
|
};
|
47
47
|
setThemeStore: {
|
48
48
|
subscribe(fn: (themeStoreInstance: {
|
@@ -72,17 +72,17 @@ export declare function useThemeStyling(): {
|
|
72
72
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
73
73
|
};
|
74
74
|
get: {
|
75
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
75
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): ColorSchema;
|
76
76
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
77
77
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
78
78
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
79
79
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
80
80
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
81
|
-
color(colorSchemaType: "info" | "error" |
|
82
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
81
|
+
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;
|
82
|
+
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"): import("@omnia/fx-models").ColorDefinition;
|
83
83
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
84
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
85
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
84
|
+
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;
|
85
|
+
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"): import("@omnia/fx-models").ColorDefinition;
|
86
86
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
87
87
|
};
|
88
88
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -90,7 +90,7 @@ export declare function useThemeStyling(): {
|
|
90
90
|
};
|
91
91
|
onDispatched: {
|
92
92
|
setBlueprint: {
|
93
|
-
subscribe(fn: (result: void, type: "
|
93
|
+
subscribe(fn: (result: void, type: import("@omnia/fx-models").TypographyBlueprintVariants) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
94
94
|
};
|
95
95
|
setThemeStore: {
|
96
96
|
subscribe(fn: (result: void, themeStoreInstance: {
|
@@ -120,17 +120,17 @@ export declare function useThemeStyling(): {
|
|
120
120
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
121
121
|
};
|
122
122
|
get: {
|
123
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
123
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): ColorSchema;
|
124
124
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
125
125
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
126
126
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
127
127
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
128
128
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
129
|
-
color(colorSchemaType: "info" | "error" |
|
130
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
129
|
+
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;
|
130
|
+
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"): import("@omnia/fx-models").ColorDefinition;
|
131
131
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
132
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
133
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
132
|
+
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;
|
133
|
+
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"): import("@omnia/fx-models").ColorDefinition;
|
134
134
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
135
135
|
};
|
136
136
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -138,7 +138,7 @@ export declare function useThemeStyling(): {
|
|
138
138
|
};
|
139
139
|
onFailure: {
|
140
140
|
setBlueprint: {
|
141
|
-
subscribe(fn: (failureReason: any, type: "
|
141
|
+
subscribe(fn: (failureReason: any, type: import("@omnia/fx-models").TypographyBlueprintVariants) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
142
142
|
};
|
143
143
|
setThemeStore: {
|
144
144
|
subscribe(fn: (failureReason: any, themeStoreInstance: {
|
@@ -168,24 +168,24 @@ export declare function useThemeStyling(): {
|
|
168
168
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
169
169
|
};
|
170
170
|
get: {
|
171
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
171
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): ColorSchema;
|
172
172
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
173
173
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
174
174
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
175
175
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
176
176
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
177
|
-
color(colorSchemaType: "info" | "error" |
|
178
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
177
|
+
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;
|
178
|
+
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"): import("@omnia/fx-models").ColorDefinition;
|
179
179
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
180
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
181
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
180
|
+
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;
|
181
|
+
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"): import("@omnia/fx-models").ColorDefinition;
|
182
182
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
183
183
|
};
|
184
184
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
185
185
|
};
|
186
186
|
};
|
187
187
|
} & {
|
188
|
-
setBlueprint(type: "
|
188
|
+
setBlueprint(type: import("@omnia/fx-models").TypographyBlueprintVariants): void;
|
189
189
|
setThemeStore(themeStoreInstance: {
|
190
190
|
state: {
|
191
191
|
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
@@ -213,17 +213,17 @@ export declare function useThemeStyling(): {
|
|
213
213
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
214
214
|
};
|
215
215
|
get: {
|
216
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
216
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): ColorSchema;
|
217
217
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
218
218
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
219
219
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
220
220
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
221
221
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
222
|
-
color(colorSchemaType: "info" | "error" |
|
223
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
222
|
+
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;
|
223
|
+
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"): import("@omnia/fx-models").ColorDefinition;
|
224
224
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
225
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
226
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
225
|
+
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;
|
226
|
+
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"): import("@omnia/fx-models").ColorDefinition;
|
227
227
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
228
228
|
};
|
229
229
|
}): void;
|
@@ -485,17 +485,17 @@ export declare function useThemeStyling(): {
|
|
485
485
|
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
486
486
|
};
|
487
487
|
get: {
|
488
|
-
colorSchema: (colorSchemaType: "info" | "error" |
|
488
|
+
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => ColorSchema;
|
489
489
|
blueprint: <TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
490
490
|
typography: () => import("@omnia/fx-models").TypographyBlueprint;
|
491
491
|
spacing: () => import("@omnia/fx-models").SpacingBlueprint;
|
492
492
|
chrome: () => import("@omnia/fx-models").ChromeBlueprint;
|
493
493
|
component: () => import("@omnia/fx-models").ComponentBlueprint;
|
494
|
-
color: (colorSchemaType: "info" | "error" |
|
495
|
-
colorDefinition: (colorSchemaType: "info" | "error" |
|
494
|
+
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;
|
495
|
+
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") => import("@omnia/fx-models").ColorDefinition;
|
496
496
|
complementaryColorType: (colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => import("@omnia/fx-models").ColorTypes;
|
497
|
-
complementaryColor: (colorSchemaType: "info" | "error" |
|
498
|
-
complementaryColorDefinition: (colorSchemaType: "info" | "error" |
|
497
|
+
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;
|
498
|
+
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") => import("@omnia/fx-models").ColorDefinition;
|
499
499
|
currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
|
500
500
|
};
|
501
501
|
};
|
@@ -553,17 +553,17 @@ export declare function useThemeStyling(): {
|
|
553
553
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
554
554
|
};
|
555
555
|
get: {
|
556
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
556
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): ColorSchema;
|
557
557
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
558
558
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
559
559
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
560
560
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
561
561
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
562
|
-
color(colorSchemaType: "info" | "error" |
|
563
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
562
|
+
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;
|
563
|
+
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"): import("@omnia/fx-models").ColorDefinition;
|
564
564
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
565
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
566
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
565
|
+
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;
|
566
|
+
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"): import("@omnia/fx-models").ColorDefinition;
|
567
567
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
568
568
|
};
|
569
569
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -601,17 +601,17 @@ export declare function useThemeStyling(): {
|
|
601
601
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
602
602
|
};
|
603
603
|
get: {
|
604
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
604
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): ColorSchema;
|
605
605
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
606
606
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
607
607
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
608
608
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
609
609
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
610
|
-
color(colorSchemaType: "info" | "error" |
|
611
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
610
|
+
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;
|
611
|
+
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"): import("@omnia/fx-models").ColorDefinition;
|
612
612
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
613
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
614
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
613
|
+
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;
|
614
|
+
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"): import("@omnia/fx-models").ColorDefinition;
|
615
615
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
616
616
|
};
|
617
617
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -649,17 +649,17 @@ export declare function useThemeStyling(): {
|
|
649
649
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
650
650
|
};
|
651
651
|
get: {
|
652
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
652
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): ColorSchema;
|
653
653
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
654
654
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
655
655
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
656
656
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
657
657
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
658
|
-
color(colorSchemaType: "info" | "error" |
|
659
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
658
|
+
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;
|
659
|
+
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"): import("@omnia/fx-models").ColorDefinition;
|
660
660
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
661
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
662
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
661
|
+
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;
|
662
|
+
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"): import("@omnia/fx-models").ColorDefinition;
|
663
663
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
664
664
|
};
|
665
665
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -694,17 +694,17 @@ export declare function useThemeStyling(): {
|
|
694
694
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
695
695
|
};
|
696
696
|
get: {
|
697
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
697
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): ColorSchema;
|
698
698
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
699
699
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
700
700
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
701
701
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
702
702
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
703
|
-
color(colorSchemaType: "info" | "error" |
|
704
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
703
|
+
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;
|
704
|
+
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"): import("@omnia/fx-models").ColorDefinition;
|
705
705
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
706
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
707
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
706
|
+
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;
|
707
|
+
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"): import("@omnia/fx-models").ColorDefinition;
|
708
708
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
709
709
|
};
|
710
710
|
}): void;
|
@@ -967,17 +967,17 @@ export declare function useThemeStyling(): {
|
|
967
967
|
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
968
968
|
};
|
969
969
|
get: {
|
970
|
-
colorSchema: (colorSchemaType: "info" | "error" |
|
970
|
+
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => ColorSchema;
|
971
971
|
blueprint: <TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
972
972
|
typography: () => import("@omnia/fx-models").TypographyBlueprint;
|
973
973
|
spacing: () => import("@omnia/fx-models").SpacingBlueprint;
|
974
974
|
chrome: () => import("@omnia/fx-models").ChromeBlueprint;
|
975
975
|
component: () => import("@omnia/fx-models").ComponentBlueprint;
|
976
|
-
color: (colorSchemaType: "info" | "error" |
|
977
|
-
colorDefinition: (colorSchemaType: "info" | "error" |
|
976
|
+
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;
|
977
|
+
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") => import("@omnia/fx-models").ColorDefinition;
|
978
978
|
complementaryColorType: (colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => import("@omnia/fx-models").ColorTypes;
|
979
|
-
complementaryColor: (colorSchemaType: "info" | "error" |
|
980
|
-
complementaryColorDefinition: (colorSchemaType: "info" | "error" |
|
979
|
+
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;
|
980
|
+
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") => import("@omnia/fx-models").ColorDefinition;
|
981
981
|
currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
|
982
982
|
};
|
983
983
|
};
|
@@ -1029,17 +1029,17 @@ export declare function useThemeStyling(): {
|
|
1029
1029
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
1030
1030
|
};
|
1031
1031
|
get: {
|
1032
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
1032
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): ColorSchema;
|
1033
1033
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
1034
1034
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
1035
1035
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
1036
1036
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
1037
1037
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
1038
|
-
color(colorSchemaType: "info" | "error" |
|
1039
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
1038
|
+
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;
|
1039
|
+
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"): import("@omnia/fx-models").ColorDefinition;
|
1040
1040
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1041
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
1042
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
1041
|
+
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;
|
1042
|
+
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"): import("@omnia/fx-models").ColorDefinition;
|
1043
1043
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
1044
1044
|
};
|
1045
1045
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -1077,17 +1077,17 @@ export declare function useThemeStyling(): {
|
|
1077
1077
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
1078
1078
|
};
|
1079
1079
|
get: {
|
1080
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
1080
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): ColorSchema;
|
1081
1081
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
1082
1082
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
1083
1083
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
1084
1084
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
1085
1085
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
1086
|
-
color(colorSchemaType: "info" | "error" |
|
1087
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
1086
|
+
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;
|
1087
|
+
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"): import("@omnia/fx-models").ColorDefinition;
|
1088
1088
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1089
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
1090
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
1089
|
+
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;
|
1090
|
+
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"): import("@omnia/fx-models").ColorDefinition;
|
1091
1091
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
1092
1092
|
};
|
1093
1093
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -1125,17 +1125,17 @@ export declare function useThemeStyling(): {
|
|
1125
1125
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
1126
1126
|
};
|
1127
1127
|
get: {
|
1128
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
1128
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): ColorSchema;
|
1129
1129
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
1130
1130
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
1131
1131
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
1132
1132
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
1133
1133
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
1134
|
-
color(colorSchemaType: "info" | "error" |
|
1135
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
1134
|
+
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;
|
1135
|
+
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"): import("@omnia/fx-models").ColorDefinition;
|
1136
1136
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1137
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
1138
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
1137
|
+
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;
|
1138
|
+
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"): import("@omnia/fx-models").ColorDefinition;
|
1139
1139
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
1140
1140
|
};
|
1141
1141
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -1170,17 +1170,17 @@ export declare function useThemeStyling(): {
|
|
1170
1170
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
1171
1171
|
};
|
1172
1172
|
get: {
|
1173
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
1173
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): ColorSchema;
|
1174
1174
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
1175
1175
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
1176
1176
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
1177
1177
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
1178
1178
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
1179
|
-
color(colorSchemaType: "info" | "error" |
|
1180
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
1179
|
+
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;
|
1180
|
+
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"): import("@omnia/fx-models").ColorDefinition;
|
1181
1181
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1182
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
1183
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
1182
|
+
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;
|
1183
|
+
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"): import("@omnia/fx-models").ColorDefinition;
|
1184
1184
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
1185
1185
|
};
|
1186
1186
|
}): void;
|
@@ -1443,17 +1443,17 @@ export declare function useThemeStyling(): {
|
|
1443
1443
|
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
1444
1444
|
};
|
1445
1445
|
get: {
|
1446
|
-
colorSchema: (colorSchemaType: "info" | "error" |
|
1446
|
+
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => ColorSchema;
|
1447
1447
|
blueprint: <TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
1448
1448
|
typography: () => import("@omnia/fx-models").TypographyBlueprint;
|
1449
1449
|
spacing: () => import("@omnia/fx-models").SpacingBlueprint;
|
1450
1450
|
chrome: () => import("@omnia/fx-models").ChromeBlueprint;
|
1451
1451
|
component: () => import("@omnia/fx-models").ComponentBlueprint;
|
1452
|
-
color: (colorSchemaType: "info" | "error" |
|
1453
|
-
colorDefinition: (colorSchemaType: "info" | "error" |
|
1452
|
+
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;
|
1453
|
+
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") => import("@omnia/fx-models").ColorDefinition;
|
1454
1454
|
complementaryColorType: (colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => import("@omnia/fx-models").ColorTypes;
|
1455
|
-
complementaryColor: (colorSchemaType: "info" | "error" |
|
1456
|
-
complementaryColorDefinition: (colorSchemaType: "info" | "error" |
|
1455
|
+
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;
|
1456
|
+
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") => import("@omnia/fx-models").ColorDefinition;
|
1457
1457
|
currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
|
1458
1458
|
};
|
1459
1459
|
};
|