@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.
Files changed (34) hide show
  1. package/internal-do-not-import-from-here/shared/models/OmniaSharedBootstrapData.d.ts +1 -0
  2. package/internal-do-not-import-from-here/shared/models/Tokens.d.ts +1 -0
  3. package/internal-do-not-import-from-here/shared/models/theming/BlueprintDefinition.d.ts +6 -1
  4. package/internal-do-not-import-from-here/shared/models/theming/ChromeDefinition.d.ts +7 -5
  5. package/internal-do-not-import-from-here/ux/blueprintpickers/chromepicker/ChromePicker.css.d.ts +3 -5
  6. package/internal-do-not-import-from-here/ux/blueprintpickers/chromepicker/ChromePicker.d.ts +132 -97
  7. package/internal-do-not-import-from-here/ux/blueprintpickers/chromepicker/{ChromePreview.d.ts → ChromeViewer.d.ts} +35 -18
  8. package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaPicker.css.d.ts +1 -0
  9. package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaPicker.d.ts +90 -90
  10. package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.css.d.ts +31 -31
  11. package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +9 -9
  12. package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview2.d.ts +496 -0
  13. package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/chrome/store/ChromeEditorStore.d.ts +10 -2
  14. package/internal-do-not-import-from-here/ux/theming-v2/designkits/core/DefinitionsChrome.d.ts +156 -0
  15. package/internal-do-not-import-from-here/ux/theming-v2/designkits/core/index.d.ts +1 -0
  16. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/BlueprintsChrome.d.ts +5 -3
  17. package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/BlueprintsChrome.d.ts +2 -3
  18. package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/BlueprintsChrome.d.ts +5 -3
  19. package/internal-do-not-import-from-here/ux/theming-v2/store/ChromeBlueprintStore.d.ts +23 -24
  20. package/internal-do-not-import-from-here/ux/theming-v2/store/ColorSchemaStore.d.ts +25 -25
  21. package/internal-do-not-import-from-here/ux/theming-v2/store/ComponentBlueprintStore.d.ts +20 -20
  22. package/internal-do-not-import-from-here/ux/theming-v2/store/SpacingBlueprintStore.d.ts +22 -24
  23. package/internal-do-not-import-from-here/ux/theming-v2/store/ThemeContextStore.d.ts +45 -45
  24. package/internal-do-not-import-from-here/ux/theming-v2/store/TypographyBlueprintStore.d.ts +27 -29
  25. package/internal-do-not-import-from-here/ux/theming-v2/styling/UseStyling.d.ts +81 -81
  26. package/internal-do-not-import-from-here/ux/theming-v2/themeprovider/ThemeProvider.d.ts +720 -715
  27. package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +31 -31
  28. package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronColorSchema.d.ts +6 -6
  29. package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +5 -5
  30. package/internal-do-not-import-from-here/wctypings.d.ts +18 -3
  31. package/package.json +2 -2
  32. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/DefinitionsChrome.d.ts +0 -49
  33. package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/DefinitionsChrome.d.ts +0 -49
  34. 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 { FlatChrome, RoundedChrome } from "./DefinitionsChrome";
2
+ import { FilledChrome } from "../../core";
3
3
  export declare class DefaultChromeBlueprint implements ChromeBlueprint {
4
4
  type: "chrome";
5
5
  name: string;
6
- default: FlatChrome;
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 { FlatChrome, RoundedChrome } from "./DefinitionsChrome";
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: FlatChrome;
7
- variant1: RoundedChrome;
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" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
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" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
53
- colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
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" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
56
- complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
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" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
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" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
101
- colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
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" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
104
- complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
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" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
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" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
149
- colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
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" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
152
- complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
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" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => import("@omnia/fx-models").ColorSchema;
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" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => string;
426
- colorDefinition: (colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => import("@omnia/fx-models").ColorDefinition;
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" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => string;
429
- complementaryColorDefinition: (colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => import("@omnia/fx-models").ColorDefinition;
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
- blueprintByType(type: blueprintType): import("@omnia/fx-models").ChromeDefinition;
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" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background";
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" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
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" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
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" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): ColorSchema;
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" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
70
- colorDefinition(colorSchemaType: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): ColorDefinition;
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" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
73
- complementaryColorDefinition(colorSchemaType: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): ColorDefinition;
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" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
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" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): ColorSchema;
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" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
124
- colorDefinition(colorSchemaType: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): ColorDefinition;
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" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
127
- complementaryColorDefinition(colorSchemaType: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): ColorDefinition;
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" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
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" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): ColorSchema;
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" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
178
- colorDefinition(colorSchemaType: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): ColorDefinition;
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" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
181
- complementaryColorDefinition(colorSchemaType: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer"): ColorDefinition;
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" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => ColorSchema;
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" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer") => string;
457
- colorDefinition: (colorSchemaType: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer") => ColorDefinition;
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" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer") => string;
460
- complementaryColorDefinition: (colorSchemaType: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer") => ColorDefinition;
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" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
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" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
55
- colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
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" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
58
- complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
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" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
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" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
103
- colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
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" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
106
- complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
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" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
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" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
151
- colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
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" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
154
- complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
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" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => import("@omnia/fx-models").ColorSchema;
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" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => string;
429
- colorDefinition: (colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => import("@omnia/fx-models").ColorDefinition;
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" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => string;
432
- complementaryColorDefinition: (colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => import("@omnia/fx-models").ColorDefinition;
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
  };