@omnia/fx 8.0.76-dev → 8.0.77-dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/internal-do-not-import-from-here/shared/models/OmniaSharedBootstrapData.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/Tokens.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/theming/BlueprintDefinition.d.ts +6 -1
- package/internal-do-not-import-from-here/shared/models/theming/ChromeDefinition.d.ts +7 -5
- package/internal-do-not-import-from-here/ux/blueprintpickers/chromepicker/ChromePicker.css.d.ts +3 -5
- package/internal-do-not-import-from-here/ux/blueprintpickers/chromepicker/ChromePicker.d.ts +132 -97
- package/internal-do-not-import-from-here/ux/blueprintpickers/chromepicker/{ChromePreview.d.ts → ChromeViewer.d.ts} +35 -18
- package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaPicker.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaPicker.d.ts +90 -90
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.css.d.ts +31 -31
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview2.d.ts +496 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/chrome/store/ChromeEditorStore.d.ts +10 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/core/DefinitionsChrome.d.ts +156 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/core/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/BlueprintsChrome.d.ts +5 -3
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/BlueprintsChrome.d.ts +2 -3
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/BlueprintsChrome.d.ts +5 -3
- package/internal-do-not-import-from-here/ux/theming-v2/store/ChromeBlueprintStore.d.ts +23 -24
- package/internal-do-not-import-from-here/ux/theming-v2/store/ColorSchemaStore.d.ts +25 -25
- package/internal-do-not-import-from-here/ux/theming-v2/store/ComponentBlueprintStore.d.ts +20 -20
- package/internal-do-not-import-from-here/ux/theming-v2/store/SpacingBlueprintStore.d.ts +22 -24
- package/internal-do-not-import-from-here/ux/theming-v2/store/ThemeContextStore.d.ts +45 -45
- package/internal-do-not-import-from-here/ux/theming-v2/store/TypographyBlueprintStore.d.ts +27 -29
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseStyling.d.ts +81 -81
- package/internal-do-not-import-from-here/ux/theming-v2/themeprovider/ThemeProvider.d.ts +720 -715
- package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +31 -31
- package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronColorSchema.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +5 -5
- package/internal-do-not-import-from-here/wctypings.d.ts +18 -3
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/DefinitionsChrome.d.ts +0 -49
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/DefinitionsChrome.d.ts +0 -49
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/DefinitionsChrome.d.ts +0 -49
@@ -1,9 +1,8 @@
|
|
1
1
|
import { ChromeBlueprint } from "@omnia/fx-models";
|
2
|
-
import {
|
2
|
+
import { FilledChrome } from "../../core";
|
3
3
|
export declare class DefaultChromeBlueprint implements ChromeBlueprint {
|
4
4
|
type: "chrome";
|
5
5
|
name: string;
|
6
|
-
default:
|
7
|
-
variant1: RoundedChrome;
|
6
|
+
default: FilledChrome;
|
8
7
|
constructor();
|
9
8
|
}
|
@@ -1,9 +1,11 @@
|
|
1
1
|
import { ChromeBlueprint } from "@omnia/fx-models";
|
2
|
-
import {
|
2
|
+
import { ElevatedSmallRoundingChrome, FilledChrome, FilledSmallRoundingChrome, OutlinedSmallRoundingChrome } from "../../core";
|
3
3
|
export declare class DefaultChromeBlueprint implements ChromeBlueprint {
|
4
4
|
type: "chrome";
|
5
5
|
name: string;
|
6
|
-
default:
|
7
|
-
variant1:
|
6
|
+
default: FilledChrome;
|
7
|
+
variant1: FilledSmallRoundingChrome;
|
8
|
+
variant2: OutlinedSmallRoundingChrome;
|
9
|
+
variant3: ElevatedSmallRoundingChrome;
|
8
10
|
constructor();
|
9
11
|
}
|
@@ -1,6 +1,5 @@
|
|
1
|
-
import { ChromeBlueprint } from "@omnia/fx-models";
|
1
|
+
import { ChromeBlueprint, ChromeBlueprintVariants } from "@omnia/fx-models";
|
2
2
|
import { useThemeStoreV2 } from "./ThemeStoreV2";
|
3
|
-
type blueprintType = "default" | "variant1";
|
4
3
|
export declare const useChromeBlueprintStore: () => {
|
5
4
|
state: {
|
6
5
|
blueprint: ChromeBlueprint;
|
@@ -43,17 +42,17 @@ export declare const useChromeBlueprintStore: () => {
|
|
43
42
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
44
43
|
};
|
45
44
|
get: {
|
46
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
45
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
47
46
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
48
47
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
49
48
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
50
49
|
chrome(): ChromeBlueprint;
|
51
50
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
52
|
-
color(colorSchemaType: "info" | "error" |
|
53
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
51
|
+
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;
|
52
|
+
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;
|
54
53
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
55
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
56
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
54
|
+
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;
|
55
|
+
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;
|
57
56
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
58
57
|
};
|
59
58
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -91,17 +90,17 @@ export declare const useChromeBlueprintStore: () => {
|
|
91
90
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
92
91
|
};
|
93
92
|
get: {
|
94
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
93
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
95
94
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
96
95
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
97
96
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
98
97
|
chrome(): ChromeBlueprint;
|
99
98
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
100
|
-
color(colorSchemaType: "info" | "error" |
|
101
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
99
|
+
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;
|
100
|
+
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;
|
102
101
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
103
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
104
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
102
|
+
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;
|
103
|
+
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;
|
105
104
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
106
105
|
};
|
107
106
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -139,17 +138,17 @@ export declare const useChromeBlueprintStore: () => {
|
|
139
138
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
140
139
|
};
|
141
140
|
get: {
|
142
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
141
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
143
142
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
144
143
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
145
144
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
146
145
|
chrome(): ChromeBlueprint;
|
147
146
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
148
|
-
color(colorSchemaType: "info" | "error" |
|
149
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
147
|
+
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;
|
148
|
+
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;
|
150
149
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
151
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
152
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
150
|
+
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;
|
151
|
+
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;
|
153
152
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
154
153
|
};
|
155
154
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -416,22 +415,22 @@ export declare const useChromeBlueprintStore: () => {
|
|
416
415
|
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
417
416
|
};
|
418
417
|
get: {
|
419
|
-
colorSchema: (colorSchemaType: "info" | "error" |
|
418
|
+
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
420
419
|
blueprint: <TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
421
420
|
typography: () => import("@omnia/fx-models").TypographyBlueprint;
|
422
421
|
spacing: () => import("@omnia/fx-models").SpacingBlueprint;
|
423
422
|
chrome: () => ChromeBlueprint;
|
424
423
|
component: () => import("@omnia/fx-models").ComponentBlueprint;
|
425
|
-
color: (colorSchemaType: "info" | "error" |
|
426
|
-
colorDefinition: (colorSchemaType: "info" | "error" |
|
424
|
+
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;
|
425
|
+
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;
|
427
426
|
complementaryColorType: (colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => import("@omnia/fx-models").ColorTypes;
|
428
|
-
complementaryColor: (colorSchemaType: "info" | "error" |
|
429
|
-
complementaryColorDefinition: (colorSchemaType: "info" | "error" |
|
427
|
+
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;
|
428
|
+
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;
|
430
429
|
currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
|
431
430
|
};
|
432
431
|
};
|
433
|
-
|
432
|
+
hasBlueprintVariant(type: ChromeBlueprintVariants): boolean;
|
433
|
+
blueprintByType(type: ChromeBlueprintVariants): import("@omnia/fx-models").ChromeDefinition;
|
434
434
|
};
|
435
435
|
deactivated(): void;
|
436
436
|
};
|
437
|
-
export {};
|
@@ -8,7 +8,7 @@ export declare const useColorSchemaStore: () => {
|
|
8
8
|
onContainer: ColorDefinition;
|
9
9
|
isContainer: boolean;
|
10
10
|
name: string;
|
11
|
-
colorSchemaType: "info" | "error" |
|
11
|
+
colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes;
|
12
12
|
id: import("@omnia/fx-models").GuidValue;
|
13
13
|
};
|
14
14
|
events: {
|
@@ -18,13 +18,13 @@ export declare const useColorSchemaStore: () => {
|
|
18
18
|
onMutatedOnContainer: import("@omnia/fx").MessageBusExposeOnlySubscription<ColorDefinition>;
|
19
19
|
onMutatedIsContainer: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
20
20
|
onMutatedName: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
|
21
|
-
onMutatedColorSchemaType: import("@omnia/fx").MessageBusExposeOnlySubscription<"info" | "error" |
|
21
|
+
onMutatedColorSchemaType: import("@omnia/fx").MessageBusExposeOnlySubscription<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
|
22
22
|
onMutatedId: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").GuidValue>;
|
23
23
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
24
24
|
actions: {
|
25
25
|
onDispatching: {
|
26
26
|
setColorSchema: {
|
27
|
-
subscribe(fn: (colorSchemaType: "info" | "error" |
|
27
|
+
subscribe(fn: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
28
28
|
};
|
29
29
|
setCustomColorSchema: {
|
30
30
|
subscribe(fn: (colorSchema: ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -60,17 +60,17 @@ export declare const useColorSchemaStore: () => {
|
|
60
60
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
61
61
|
};
|
62
62
|
get: {
|
63
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
63
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes): ColorSchema;
|
64
64
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
65
65
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
66
66
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
67
67
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
68
68
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
69
|
-
color(colorSchemaType: "info" | "error" |
|
70
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
69
|
+
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
70
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): ColorDefinition;
|
71
71
|
complementaryColorType(colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): ColorTypes;
|
72
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
73
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
72
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
73
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): ColorDefinition;
|
74
74
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
75
75
|
};
|
76
76
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -78,7 +78,7 @@ export declare const useColorSchemaStore: () => {
|
|
78
78
|
};
|
79
79
|
onDispatched: {
|
80
80
|
setColorSchema: {
|
81
|
-
subscribe(fn: (result: void, colorSchemaType: "info" | "error" |
|
81
|
+
subscribe(fn: (result: void, colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
82
82
|
};
|
83
83
|
setCustomColorSchema: {
|
84
84
|
subscribe(fn: (result: void, colorSchema: ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -114,17 +114,17 @@ export declare const useColorSchemaStore: () => {
|
|
114
114
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
115
115
|
};
|
116
116
|
get: {
|
117
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
117
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes): ColorSchema;
|
118
118
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
119
119
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
120
120
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
121
121
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
122
122
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
123
|
-
color(colorSchemaType: "info" | "error" |
|
124
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
123
|
+
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
124
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): ColorDefinition;
|
125
125
|
complementaryColorType(colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): ColorTypes;
|
126
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
127
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
126
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
127
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): ColorDefinition;
|
128
128
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
129
129
|
};
|
130
130
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -132,7 +132,7 @@ export declare const useColorSchemaStore: () => {
|
|
132
132
|
};
|
133
133
|
onFailure: {
|
134
134
|
setColorSchema: {
|
135
|
-
subscribe(fn: (failureReason: any, colorSchemaType: "info" | "error" |
|
135
|
+
subscribe(fn: (failureReason: any, colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
136
136
|
};
|
137
137
|
setCustomColorSchema: {
|
138
138
|
subscribe(fn: (failureReason: any, colorSchema: ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -168,17 +168,17 @@ export declare const useColorSchemaStore: () => {
|
|
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" | 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" | ColorSchemaTypes, colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
178
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): ColorDefinition;
|
179
179
|
complementaryColorType(colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): ColorTypes;
|
180
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
181
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
180
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
181
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): ColorDefinition;
|
182
182
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
183
183
|
};
|
184
184
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -447,17 +447,17 @@ export declare const useColorSchemaStore: () => {
|
|
447
447
|
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
448
448
|
};
|
449
449
|
get: {
|
450
|
-
colorSchema: (colorSchemaType: "info" | "error" |
|
450
|
+
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => ColorSchema;
|
451
451
|
blueprint: <TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
452
452
|
typography: () => import("@omnia/fx-models").TypographyBlueprint;
|
453
453
|
spacing: () => import("@omnia/fx-models").SpacingBlueprint;
|
454
454
|
chrome: () => import("@omnia/fx-models").ChromeBlueprint;
|
455
455
|
component: () => import("@omnia/fx-models").ComponentBlueprint;
|
456
|
-
color: (colorSchemaType: "info" | "error" |
|
457
|
-
colorDefinition: (colorSchemaType: "info" | "error" |
|
456
|
+
color: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer") => string;
|
457
|
+
colorDefinition: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer") => ColorDefinition;
|
458
458
|
complementaryColorType: (colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer") => ColorTypes;
|
459
|
-
complementaryColor: (colorSchemaType: "info" | "error" |
|
460
|
-
complementaryColorDefinition: (colorSchemaType: "info" | "error" |
|
459
|
+
complementaryColor: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer") => string;
|
460
|
+
complementaryColorDefinition: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer") => ColorDefinition;
|
461
461
|
currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
|
462
462
|
};
|
463
463
|
};
|
@@ -45,17 +45,17 @@ export declare const useComponentBlueprintStore: () => {
|
|
45
45
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
46
46
|
};
|
47
47
|
get: {
|
48
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
48
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
49
49
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
50
50
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
51
51
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
52
52
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
53
53
|
component(): ComponentBlueprint;
|
54
|
-
color(colorSchemaType: "info" | "error" |
|
55
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
54
|
+
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;
|
55
|
+
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;
|
56
56
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
57
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
58
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
57
|
+
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;
|
58
|
+
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;
|
59
59
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
60
60
|
};
|
61
61
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -93,17 +93,17 @@ export declare const useComponentBlueprintStore: () => {
|
|
93
93
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
94
94
|
};
|
95
95
|
get: {
|
96
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
96
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
97
97
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
98
98
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
99
99
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
100
100
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
101
101
|
component(): ComponentBlueprint;
|
102
|
-
color(colorSchemaType: "info" | "error" |
|
103
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
102
|
+
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;
|
103
|
+
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;
|
104
104
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
105
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
106
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
105
|
+
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;
|
106
|
+
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;
|
107
107
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
108
108
|
};
|
109
109
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -141,17 +141,17 @@ export declare const useComponentBlueprintStore: () => {
|
|
141
141
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
142
142
|
};
|
143
143
|
get: {
|
144
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
144
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
145
145
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
146
146
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
147
147
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
148
148
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
149
149
|
component(): ComponentBlueprint;
|
150
|
-
color(colorSchemaType: "info" | "error" |
|
151
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
150
|
+
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;
|
151
|
+
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;
|
152
152
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
153
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
154
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
153
|
+
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;
|
154
|
+
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;
|
155
155
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
156
156
|
};
|
157
157
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -419,17 +419,17 @@ export declare const useComponentBlueprintStore: () => {
|
|
419
419
|
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
420
420
|
};
|
421
421
|
get: {
|
422
|
-
colorSchema: (colorSchemaType: "info" | "error" |
|
422
|
+
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
423
423
|
blueprint: <TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
424
424
|
typography: () => import("@omnia/fx-models").TypographyBlueprint;
|
425
425
|
spacing: () => import("@omnia/fx-models").SpacingBlueprint;
|
426
426
|
chrome: () => import("@omnia/fx-models").ChromeBlueprint;
|
427
427
|
component: () => ComponentBlueprint;
|
428
|
-
color: (colorSchemaType: "info" | "error" |
|
429
|
-
colorDefinition: (colorSchemaType: "info" | "error" |
|
428
|
+
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;
|
429
|
+
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;
|
430
430
|
complementaryColorType: (colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => import("@omnia/fx-models").ColorTypes;
|
431
|
-
complementaryColor: (colorSchemaType: "info" | "error" |
|
432
|
-
complementaryColorDefinition: (colorSchemaType: "info" | "error" |
|
431
|
+
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;
|
432
|
+
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;
|
433
433
|
currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
|
434
434
|
};
|
435
435
|
};
|