@omnia/fx 8.0.114-dev → 8.0.115-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/theming/ComponentDefinitions.d.ts +15 -6
- package/internal-do-not-import-from-here/shared/models/theming/TypographyDefinition.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/ComponentTypings.d.ts +6 -4
- package/internal-do-not-import-from-here/ux/blueprintpickers/buttonstylepicker/ButtonStylePicker.d.ts +66 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/buttonstylepicker/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/buttonstylepicker/docs/SampleComponent.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/buttonstylepicker/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/iconstylepicker/IconStylePicker.d.ts +70 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/iconstylepicker/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/iconstylepicker/docs/SampleComponent.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/iconstylepicker/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/textstylepicker/TextStylePicker.d.ts +66 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/textstylepicker/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/textstylepicker/docs/SampleComponent.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/textstylepicker/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/typographypicker/TypographyPicker.d.ts +64 -409
- package/internal-do-not-import-from-here/ux/borderpicker/BorderPicker.d.ts +63 -150
- package/internal-do-not-import-from-here/ux/enterpriseglossary/EnterpriseGlossaryPicker.d.ts +63 -14
- package/internal-do-not-import-from-here/ux/enterpriseglossary/IEnterpriseGlossaryPicker.d.ts +0 -14
- package/internal-do-not-import-from-here/ux/fillpicker/FillPicker.d.ts +64 -119
- package/internal-do-not-import-from-here/ux/identities/IdentityRenderer.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/journey/JourneyBlade.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/journey/JourneyMenu.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/journey/use/UseBlade.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/jsonexportimport/ExportImport.d.ts +65 -0
- package/internal-do-not-import-from-here/ux/jsonexportimport/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/jsonexportimport/docs/SampleComponent.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/jsonexportimport/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/avatar/Avatar.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +35 -9
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +31 -10
- package/internal-do-not-import-from-here/ux/oxide/notification/Notification.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/radio/Radio.d.ts +18 -0
- package/internal-do-not-import-from-here/ux/oxide/rating/Rating.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/text/Text.d.ts +22 -1
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.css.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/oxide/treeview/docs/ExampleComponentsMenu.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/treeview/docs/SampleButtons.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/oxide/treeview/docs/SampleComponentMenu.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/oxide/treeview/docs/SampleVariants.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/oxide/treeview/docs/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/persona/Persona.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseStyling.d.ts +1049 -15
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Blueprints.d.ts +7 -3
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Typography.d.ts +3 -1
- package/internal-do-not-import-from-here/wctypings.d.ts +69 -0
- package/package.json +2 -2
@@ -41,6 +41,7 @@ export declare function useThemeStyling(): {
|
|
41
41
|
scrollStyling: typeof import("./styles").getScrollStyling;
|
42
42
|
};
|
43
43
|
typography: {
|
44
|
+
valueStyling: (value: import("@omnia/fx-models").TypographyValue, blueprint: import("@omnia/fx-models").TypographyDefinition) => string;
|
44
45
|
typeStyling: (typographyType: import("@omnia/fx-models").TypographyTypes, size: "xs" | "s" | "m" | "l" | "xl", blueprint: import("@omnia/fx-models").TypographyDefinition) => {
|
45
46
|
baseStyles: {
|
46
47
|
fontFamily: string;
|
@@ -1064,21 +1065,37 @@ export declare function useThemeStyling(): {
|
|
1064
1065
|
};
|
1065
1066
|
deactivated(): void;
|
1066
1067
|
}) => string;
|
1067
|
-
icon: (bluePrint
|
1068
|
+
icon: (bluePrint: import("@omnia/fx-models").IconBlueprint, colors: {
|
1068
1069
|
state: {
|
1069
|
-
|
1070
|
-
|
1070
|
+
base: import("@omnia/fx-models").ColorDefinition;
|
1071
|
+
onBase: import("@omnia/fx-models").ColorDefinition;
|
1072
|
+
container: import("@omnia/fx-models").ColorDefinition;
|
1073
|
+
onContainer: import("@omnia/fx-models").ColorDefinition;
|
1074
|
+
isContainer: boolean;
|
1075
|
+
name: string;
|
1076
|
+
colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes;
|
1071
1077
|
id: import("@omnia/fx-models").GuidValue;
|
1072
1078
|
};
|
1073
1079
|
events: {
|
1074
|
-
|
1075
|
-
|
1080
|
+
onMutatedBase: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
1081
|
+
onMutatedOnBase: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
1082
|
+
onMutatedContainer: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
1083
|
+
onMutatedOnContainer: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
1084
|
+
onMutatedIsContainer: import("../../..").MessageBusExposeOnlySubscription<boolean>;
|
1085
|
+
onMutatedName: import("../../..").MessageBusExposeOnlySubscription<string>;
|
1086
|
+
onMutatedColorSchemaType: import("../../..").MessageBusExposeOnlySubscription<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes>;
|
1076
1087
|
onMutatedId: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").GuidValue>;
|
1077
1088
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1078
1089
|
actions: {
|
1079
1090
|
onDispatching: {
|
1080
|
-
|
1081
|
-
subscribe(fn: (
|
1091
|
+
setColorSchema: {
|
1092
|
+
subscribe(fn: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1093
|
+
};
|
1094
|
+
setCustomColorSchema: {
|
1095
|
+
subscribe(fn: (colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1096
|
+
};
|
1097
|
+
setColor: {
|
1098
|
+
subscribe(fn: (colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1082
1099
|
};
|
1083
1100
|
setThemeStore: {
|
1084
1101
|
subscribe(fn: (themeStoreInstance: {
|
@@ -1125,8 +1142,14 @@ export declare function useThemeStyling(): {
|
|
1125
1142
|
};
|
1126
1143
|
};
|
1127
1144
|
onDispatched: {
|
1128
|
-
|
1129
|
-
subscribe(fn: (result: void,
|
1145
|
+
setColorSchema: {
|
1146
|
+
subscribe(fn: (result: void, colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1147
|
+
};
|
1148
|
+
setCustomColorSchema: {
|
1149
|
+
subscribe(fn: (result: void, colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1150
|
+
};
|
1151
|
+
setColor: {
|
1152
|
+
subscribe(fn: (result: void, colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1130
1153
|
};
|
1131
1154
|
setThemeStore: {
|
1132
1155
|
subscribe(fn: (result: void, themeStoreInstance: {
|
@@ -1173,8 +1196,14 @@ export declare function useThemeStyling(): {
|
|
1173
1196
|
};
|
1174
1197
|
};
|
1175
1198
|
onFailure: {
|
1176
|
-
|
1177
|
-
subscribe(fn: (failureReason: any,
|
1199
|
+
setColorSchema: {
|
1200
|
+
subscribe(fn: (failureReason: any, colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1201
|
+
};
|
1202
|
+
setCustomColorSchema: {
|
1203
|
+
subscribe(fn: (failureReason: any, colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1204
|
+
};
|
1205
|
+
setColor: {
|
1206
|
+
subscribe(fn: (failureReason: any, colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1178
1207
|
};
|
1179
1208
|
setThemeStore: {
|
1180
1209
|
subscribe(fn: (failureReason: any, themeStoreInstance: {
|
@@ -1221,7 +1250,9 @@ export declare function useThemeStyling(): {
|
|
1221
1250
|
};
|
1222
1251
|
};
|
1223
1252
|
} & {
|
1224
|
-
|
1253
|
+
setColorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean): void;
|
1254
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
1255
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
1225
1256
|
setThemeStore(themeStoreInstance: {
|
1226
1257
|
state: {
|
1227
1258
|
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
@@ -1265,7 +1296,6 @@ export declare function useThemeStyling(): {
|
|
1265
1296
|
}): void;
|
1266
1297
|
};
|
1267
1298
|
get: {
|
1268
|
-
byType<TType_1 extends import("@omnia/fx-models").BlueprintItemDefinition>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): TType_1;
|
1269
1299
|
readonly themeStore: {
|
1270
1300
|
state: {
|
1271
1301
|
currentTheme: {
|
@@ -1536,10 +1566,22 @@ export declare function useThemeStyling(): {
|
|
1536
1566
|
currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
|
1537
1567
|
};
|
1538
1568
|
};
|
1539
|
-
|
1569
|
+
colorValue(color: import("@omnia/fx-models").ColorValue | import("@omnia/fx-models").ColorGradientValue): string;
|
1570
|
+
readonly colorSchema: import("@omnia/fx-models").ColorSchema;
|
1571
|
+
readonly theme: "light" | "dark";
|
1572
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
1573
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
1574
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
1575
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
1576
|
+
dynamic: (isContainer: boolean) => {
|
1577
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
1578
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
1579
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
1580
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
1581
|
+
};
|
1540
1582
|
};
|
1541
1583
|
deactivated(): void;
|
1542
|
-
}) => string;
|
1584
|
+
}, duoTone: boolean, nested?: boolean) => string;
|
1543
1585
|
fill: (definition: import("@omnia/fx-models").FillDefinition, colors?: {
|
1544
1586
|
state: {
|
1545
1587
|
base: import("@omnia/fx-models").ColorDefinition;
|
@@ -2574,6 +2616,998 @@ export declare function useThemeStyling(): {
|
|
2574
2616
|
};
|
2575
2617
|
deactivated(): void;
|
2576
2618
|
}) => string;
|
2619
|
+
text: (bluePrint: import("@omnia/fx-models").TextBlueprint, colors: {
|
2620
|
+
state: {
|
2621
|
+
base: import("@omnia/fx-models").ColorDefinition;
|
2622
|
+
onBase: import("@omnia/fx-models").ColorDefinition;
|
2623
|
+
container: import("@omnia/fx-models").ColorDefinition;
|
2624
|
+
onContainer: import("@omnia/fx-models").ColorDefinition;
|
2625
|
+
isContainer: boolean;
|
2626
|
+
name: string;
|
2627
|
+
colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes;
|
2628
|
+
id: import("@omnia/fx-models").GuidValue;
|
2629
|
+
};
|
2630
|
+
events: {
|
2631
|
+
onMutatedBase: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
2632
|
+
onMutatedOnBase: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
2633
|
+
onMutatedContainer: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
2634
|
+
onMutatedOnContainer: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
2635
|
+
onMutatedIsContainer: import("../../..").MessageBusExposeOnlySubscription<boolean>;
|
2636
|
+
onMutatedName: import("../../..").MessageBusExposeOnlySubscription<string>;
|
2637
|
+
onMutatedColorSchemaType: import("../../..").MessageBusExposeOnlySubscription<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes>;
|
2638
|
+
onMutatedId: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").GuidValue>;
|
2639
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
2640
|
+
actions: {
|
2641
|
+
onDispatching: {
|
2642
|
+
setColorSchema: {
|
2643
|
+
subscribe(fn: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2644
|
+
};
|
2645
|
+
setCustomColorSchema: {
|
2646
|
+
subscribe(fn: (colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2647
|
+
};
|
2648
|
+
setColor: {
|
2649
|
+
subscribe(fn: (colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2650
|
+
};
|
2651
|
+
setThemeStore: {
|
2652
|
+
subscribe(fn: (themeStoreInstance: {
|
2653
|
+
state: {
|
2654
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
2655
|
+
};
|
2656
|
+
events: {
|
2657
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
2658
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
2659
|
+
actions: {
|
2660
|
+
onDispatching: {
|
2661
|
+
setTheme: {
|
2662
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2663
|
+
};
|
2664
|
+
};
|
2665
|
+
onDispatched: {
|
2666
|
+
setTheme: {
|
2667
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2668
|
+
};
|
2669
|
+
};
|
2670
|
+
onFailure: {
|
2671
|
+
setTheme: {
|
2672
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2673
|
+
};
|
2674
|
+
};
|
2675
|
+
} & {
|
2676
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
2677
|
+
};
|
2678
|
+
get: {
|
2679
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
2680
|
+
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
2681
|
+
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
2682
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
2683
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
2684
|
+
component(): import("@omnia/fx-models").ComponentBlueprint;
|
2685
|
+
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
2686
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
2687
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
2688
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
2689
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
2690
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
2691
|
+
};
|
2692
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2693
|
+
};
|
2694
|
+
};
|
2695
|
+
onDispatched: {
|
2696
|
+
setColorSchema: {
|
2697
|
+
subscribe(fn: (result: void, colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2698
|
+
};
|
2699
|
+
setCustomColorSchema: {
|
2700
|
+
subscribe(fn: (result: void, colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2701
|
+
};
|
2702
|
+
setColor: {
|
2703
|
+
subscribe(fn: (result: void, colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2704
|
+
};
|
2705
|
+
setThemeStore: {
|
2706
|
+
subscribe(fn: (result: void, themeStoreInstance: {
|
2707
|
+
state: {
|
2708
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
2709
|
+
};
|
2710
|
+
events: {
|
2711
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
2712
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
2713
|
+
actions: {
|
2714
|
+
onDispatching: {
|
2715
|
+
setTheme: {
|
2716
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2717
|
+
};
|
2718
|
+
};
|
2719
|
+
onDispatched: {
|
2720
|
+
setTheme: {
|
2721
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2722
|
+
};
|
2723
|
+
};
|
2724
|
+
onFailure: {
|
2725
|
+
setTheme: {
|
2726
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2727
|
+
};
|
2728
|
+
};
|
2729
|
+
} & {
|
2730
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
2731
|
+
};
|
2732
|
+
get: {
|
2733
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
2734
|
+
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
2735
|
+
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
2736
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
2737
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
2738
|
+
component(): import("@omnia/fx-models").ComponentBlueprint;
|
2739
|
+
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
2740
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
2741
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
2742
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
2743
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
2744
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
2745
|
+
};
|
2746
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2747
|
+
};
|
2748
|
+
};
|
2749
|
+
onFailure: {
|
2750
|
+
setColorSchema: {
|
2751
|
+
subscribe(fn: (failureReason: any, colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2752
|
+
};
|
2753
|
+
setCustomColorSchema: {
|
2754
|
+
subscribe(fn: (failureReason: any, colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2755
|
+
};
|
2756
|
+
setColor: {
|
2757
|
+
subscribe(fn: (failureReason: any, colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2758
|
+
};
|
2759
|
+
setThemeStore: {
|
2760
|
+
subscribe(fn: (failureReason: any, themeStoreInstance: {
|
2761
|
+
state: {
|
2762
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
2763
|
+
};
|
2764
|
+
events: {
|
2765
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
2766
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
2767
|
+
actions: {
|
2768
|
+
onDispatching: {
|
2769
|
+
setTheme: {
|
2770
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2771
|
+
};
|
2772
|
+
};
|
2773
|
+
onDispatched: {
|
2774
|
+
setTheme: {
|
2775
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2776
|
+
};
|
2777
|
+
};
|
2778
|
+
onFailure: {
|
2779
|
+
setTheme: {
|
2780
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2781
|
+
};
|
2782
|
+
};
|
2783
|
+
} & {
|
2784
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
2785
|
+
};
|
2786
|
+
get: {
|
2787
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
2788
|
+
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
2789
|
+
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
2790
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
2791
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
2792
|
+
component(): import("@omnia/fx-models").ComponentBlueprint;
|
2793
|
+
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
2794
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
2795
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
2796
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
2797
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
2798
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
2799
|
+
};
|
2800
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2801
|
+
};
|
2802
|
+
};
|
2803
|
+
} & {
|
2804
|
+
setColorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean): void;
|
2805
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
2806
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
2807
|
+
setThemeStore(themeStoreInstance: {
|
2808
|
+
state: {
|
2809
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
2810
|
+
};
|
2811
|
+
events: {
|
2812
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
2813
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
2814
|
+
actions: {
|
2815
|
+
onDispatching: {
|
2816
|
+
setTheme: {
|
2817
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2818
|
+
};
|
2819
|
+
};
|
2820
|
+
onDispatched: {
|
2821
|
+
setTheme: {
|
2822
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2823
|
+
};
|
2824
|
+
};
|
2825
|
+
onFailure: {
|
2826
|
+
setTheme: {
|
2827
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2828
|
+
};
|
2829
|
+
};
|
2830
|
+
} & {
|
2831
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
2832
|
+
};
|
2833
|
+
get: {
|
2834
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
2835
|
+
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
2836
|
+
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
2837
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
2838
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
2839
|
+
component(): import("@omnia/fx-models").ComponentBlueprint;
|
2840
|
+
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
2841
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
2842
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
2843
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
2844
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
2845
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
2846
|
+
};
|
2847
|
+
}): void;
|
2848
|
+
};
|
2849
|
+
get: {
|
2850
|
+
readonly themeStore: {
|
2851
|
+
state: {
|
2852
|
+
currentTheme: {
|
2853
|
+
id: {
|
2854
|
+
equals: {
|
2855
|
+
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
2856
|
+
};
|
2857
|
+
toString: () => string;
|
2858
|
+
toJSON: () => string;
|
2859
|
+
valueOf: () => string;
|
2860
|
+
};
|
2861
|
+
name: string;
|
2862
|
+
dark: boolean;
|
2863
|
+
colors: {
|
2864
|
+
primary: {
|
2865
|
+
name: string;
|
2866
|
+
base: {
|
2867
|
+
dark: boolean;
|
2868
|
+
color: string;
|
2869
|
+
colorToned: string;
|
2870
|
+
};
|
2871
|
+
onBase: {
|
2872
|
+
dark: boolean;
|
2873
|
+
color: string;
|
2874
|
+
colorToned: string;
|
2875
|
+
};
|
2876
|
+
container: {
|
2877
|
+
dark: boolean;
|
2878
|
+
color: string;
|
2879
|
+
colorToned: string;
|
2880
|
+
};
|
2881
|
+
onContainer: {
|
2882
|
+
dark: boolean;
|
2883
|
+
color: string;
|
2884
|
+
colorToned: string;
|
2885
|
+
};
|
2886
|
+
};
|
2887
|
+
secondary: {
|
2888
|
+
name: string;
|
2889
|
+
base: {
|
2890
|
+
dark: boolean;
|
2891
|
+
color: string;
|
2892
|
+
colorToned: string;
|
2893
|
+
};
|
2894
|
+
onBase: {
|
2895
|
+
dark: boolean;
|
2896
|
+
color: string;
|
2897
|
+
colorToned: string;
|
2898
|
+
};
|
2899
|
+
container: {
|
2900
|
+
dark: boolean;
|
2901
|
+
color: string;
|
2902
|
+
colorToned: string;
|
2903
|
+
};
|
2904
|
+
onContainer: {
|
2905
|
+
dark: boolean;
|
2906
|
+
color: string;
|
2907
|
+
colorToned: string;
|
2908
|
+
};
|
2909
|
+
};
|
2910
|
+
accent1: {
|
2911
|
+
name: string;
|
2912
|
+
base: {
|
2913
|
+
dark: boolean;
|
2914
|
+
color: string;
|
2915
|
+
colorToned: string;
|
2916
|
+
};
|
2917
|
+
onBase: {
|
2918
|
+
dark: boolean;
|
2919
|
+
color: string;
|
2920
|
+
colorToned: string;
|
2921
|
+
};
|
2922
|
+
container: {
|
2923
|
+
dark: boolean;
|
2924
|
+
color: string;
|
2925
|
+
colorToned: string;
|
2926
|
+
};
|
2927
|
+
onContainer: {
|
2928
|
+
dark: boolean;
|
2929
|
+
color: string;
|
2930
|
+
colorToned: string;
|
2931
|
+
};
|
2932
|
+
};
|
2933
|
+
accent2: {
|
2934
|
+
name: string;
|
2935
|
+
base: {
|
2936
|
+
dark: boolean;
|
2937
|
+
color: string;
|
2938
|
+
colorToned: string;
|
2939
|
+
};
|
2940
|
+
onBase: {
|
2941
|
+
dark: boolean;
|
2942
|
+
color: string;
|
2943
|
+
colorToned: string;
|
2944
|
+
};
|
2945
|
+
container: {
|
2946
|
+
dark: boolean;
|
2947
|
+
color: string;
|
2948
|
+
colorToned: string;
|
2949
|
+
};
|
2950
|
+
onContainer: {
|
2951
|
+
dark: boolean;
|
2952
|
+
color: string;
|
2953
|
+
colorToned: string;
|
2954
|
+
};
|
2955
|
+
};
|
2956
|
+
accent3: {
|
2957
|
+
name: string;
|
2958
|
+
base: {
|
2959
|
+
dark: boolean;
|
2960
|
+
color: string;
|
2961
|
+
colorToned: string;
|
2962
|
+
};
|
2963
|
+
onBase: {
|
2964
|
+
dark: boolean;
|
2965
|
+
color: string;
|
2966
|
+
colorToned: string;
|
2967
|
+
};
|
2968
|
+
container: {
|
2969
|
+
dark: boolean;
|
2970
|
+
color: string;
|
2971
|
+
colorToned: string;
|
2972
|
+
};
|
2973
|
+
onContainer: {
|
2974
|
+
dark: boolean;
|
2975
|
+
color: string;
|
2976
|
+
colorToned: string;
|
2977
|
+
};
|
2978
|
+
};
|
2979
|
+
neutral: {
|
2980
|
+
name: string;
|
2981
|
+
base: {
|
2982
|
+
dark: boolean;
|
2983
|
+
color: string;
|
2984
|
+
colorToned: string;
|
2985
|
+
};
|
2986
|
+
onBase: {
|
2987
|
+
dark: boolean;
|
2988
|
+
color: string;
|
2989
|
+
colorToned: string;
|
2990
|
+
};
|
2991
|
+
container: {
|
2992
|
+
dark: boolean;
|
2993
|
+
color: string;
|
2994
|
+
colorToned: string;
|
2995
|
+
};
|
2996
|
+
onContainer: {
|
2997
|
+
dark: boolean;
|
2998
|
+
color: string;
|
2999
|
+
colorToned: string;
|
3000
|
+
};
|
3001
|
+
};
|
3002
|
+
background: {
|
3003
|
+
name: string;
|
3004
|
+
base: {
|
3005
|
+
dark: boolean;
|
3006
|
+
color: string;
|
3007
|
+
colorToned: string;
|
3008
|
+
};
|
3009
|
+
onBase: {
|
3010
|
+
dark: boolean;
|
3011
|
+
color: string;
|
3012
|
+
colorToned: string;
|
3013
|
+
};
|
3014
|
+
container: {
|
3015
|
+
dark: boolean;
|
3016
|
+
color: string;
|
3017
|
+
colorToned: string;
|
3018
|
+
};
|
3019
|
+
onContainer: {
|
3020
|
+
dark: boolean;
|
3021
|
+
color: string;
|
3022
|
+
colorToned: string;
|
3023
|
+
};
|
3024
|
+
};
|
3025
|
+
error: {
|
3026
|
+
name: string;
|
3027
|
+
base: {
|
3028
|
+
dark: boolean;
|
3029
|
+
color: string;
|
3030
|
+
colorToned: string;
|
3031
|
+
};
|
3032
|
+
onBase: {
|
3033
|
+
dark: boolean;
|
3034
|
+
color: string;
|
3035
|
+
colorToned: string;
|
3036
|
+
};
|
3037
|
+
container: {
|
3038
|
+
dark: boolean;
|
3039
|
+
color: string;
|
3040
|
+
colorToned: string;
|
3041
|
+
};
|
3042
|
+
onContainer: {
|
3043
|
+
dark: boolean;
|
3044
|
+
color: string;
|
3045
|
+
colorToned: string;
|
3046
|
+
};
|
3047
|
+
};
|
3048
|
+
info: {
|
3049
|
+
name: string;
|
3050
|
+
base: {
|
3051
|
+
dark: boolean;
|
3052
|
+
color: string;
|
3053
|
+
colorToned: string;
|
3054
|
+
};
|
3055
|
+
onBase: {
|
3056
|
+
dark: boolean;
|
3057
|
+
color: string;
|
3058
|
+
colorToned: string;
|
3059
|
+
};
|
3060
|
+
container: {
|
3061
|
+
dark: boolean;
|
3062
|
+
color: string;
|
3063
|
+
colorToned: string;
|
3064
|
+
};
|
3065
|
+
onContainer: {
|
3066
|
+
dark: boolean;
|
3067
|
+
color: string;
|
3068
|
+
colorToned: string;
|
3069
|
+
};
|
3070
|
+
};
|
3071
|
+
};
|
3072
|
+
blueprints: {
|
3073
|
+
type: import("@omnia/fx-models").BlueprintType;
|
3074
|
+
name: string;
|
3075
|
+
}[];
|
3076
|
+
};
|
3077
|
+
};
|
3078
|
+
events: {
|
3079
|
+
[x: string]: {
|
3080
|
+
subscribe: (fn: (obj: any) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3081
|
+
publish: (msg: any) => void;
|
3082
|
+
};
|
3083
|
+
onMutatedCurrentTheme: {
|
3084
|
+
subscribe: (fn: (obj: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3085
|
+
};
|
3086
|
+
};
|
3087
|
+
actions: {
|
3088
|
+
onDispatching: {
|
3089
|
+
setTheme: {
|
3090
|
+
subscribe: (fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3091
|
+
};
|
3092
|
+
};
|
3093
|
+
onDispatched: {
|
3094
|
+
setTheme: {
|
3095
|
+
subscribe: (fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3096
|
+
};
|
3097
|
+
};
|
3098
|
+
onFailure: {
|
3099
|
+
setTheme: {
|
3100
|
+
subscribe: (fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3101
|
+
};
|
3102
|
+
};
|
3103
|
+
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
3104
|
+
};
|
3105
|
+
get: {
|
3106
|
+
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
3107
|
+
blueprint: <TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
3108
|
+
typography: () => import("@omnia/fx-models").TypographyBlueprint;
|
3109
|
+
spacing: () => import("@omnia/fx-models").SpacingBlueprint;
|
3110
|
+
chrome: () => import("@omnia/fx-models").ChromeBlueprint;
|
3111
|
+
component: () => import("@omnia/fx-models").ComponentBlueprint;
|
3112
|
+
color: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => string;
|
3113
|
+
colorDefinition: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorDefinition;
|
3114
|
+
complementaryColorType: (colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorTypes;
|
3115
|
+
complementaryColor: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => string;
|
3116
|
+
complementaryColorDefinition: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorDefinition;
|
3117
|
+
currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
|
3118
|
+
};
|
3119
|
+
};
|
3120
|
+
colorValue(color: import("@omnia/fx-models").ColorValue | import("@omnia/fx-models").ColorGradientValue): string;
|
3121
|
+
readonly colorSchema: import("@omnia/fx-models").ColorSchema;
|
3122
|
+
readonly theme: "light" | "dark";
|
3123
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
3124
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
3125
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
3126
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
3127
|
+
dynamic: (isContainer: boolean) => {
|
3128
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
3129
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
3130
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
3131
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
3132
|
+
};
|
3133
|
+
};
|
3134
|
+
deactivated(): void;
|
3135
|
+
}, blueprints: {
|
3136
|
+
state: {
|
3137
|
+
blueprint: import("@omnia/fx-models").TypographyDefinition;
|
3138
|
+
blueprintType: import("@omnia/fx-models").TypographyBlueprintVariants;
|
3139
|
+
id: import("@omnia/fx-models").GuidValue;
|
3140
|
+
};
|
3141
|
+
events: {
|
3142
|
+
onMutatedBlueprint: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").TypographyDefinition>;
|
3143
|
+
onMutatedBlueprintType: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").TypographyBlueprintVariants>;
|
3144
|
+
onMutatedId: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").GuidValue>;
|
3145
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
3146
|
+
actions: {
|
3147
|
+
onDispatching: {
|
3148
|
+
setBlueprint: {
|
3149
|
+
subscribe(fn: (type: import("@omnia/fx-models").TypographyBlueprintVariants) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3150
|
+
};
|
3151
|
+
setThemeStore: {
|
3152
|
+
subscribe(fn: (themeStoreInstance: {
|
3153
|
+
state: {
|
3154
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
3155
|
+
};
|
3156
|
+
events: {
|
3157
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
3158
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
3159
|
+
actions: {
|
3160
|
+
onDispatching: {
|
3161
|
+
setTheme: {
|
3162
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3163
|
+
};
|
3164
|
+
};
|
3165
|
+
onDispatched: {
|
3166
|
+
setTheme: {
|
3167
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3168
|
+
};
|
3169
|
+
};
|
3170
|
+
onFailure: {
|
3171
|
+
setTheme: {
|
3172
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3173
|
+
};
|
3174
|
+
};
|
3175
|
+
} & {
|
3176
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
3177
|
+
};
|
3178
|
+
get: {
|
3179
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
3180
|
+
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
3181
|
+
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
3182
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
3183
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
3184
|
+
component(): import("@omnia/fx-models").ComponentBlueprint;
|
3185
|
+
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
3186
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
3187
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
3188
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
3189
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
3190
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
3191
|
+
};
|
3192
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3193
|
+
};
|
3194
|
+
};
|
3195
|
+
onDispatched: {
|
3196
|
+
setBlueprint: {
|
3197
|
+
subscribe(fn: (result: void, type: import("@omnia/fx-models").TypographyBlueprintVariants) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3198
|
+
};
|
3199
|
+
setThemeStore: {
|
3200
|
+
subscribe(fn: (result: void, themeStoreInstance: {
|
3201
|
+
state: {
|
3202
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
3203
|
+
};
|
3204
|
+
events: {
|
3205
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
3206
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
3207
|
+
actions: {
|
3208
|
+
onDispatching: {
|
3209
|
+
setTheme: {
|
3210
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3211
|
+
};
|
3212
|
+
};
|
3213
|
+
onDispatched: {
|
3214
|
+
setTheme: {
|
3215
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3216
|
+
};
|
3217
|
+
};
|
3218
|
+
onFailure: {
|
3219
|
+
setTheme: {
|
3220
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3221
|
+
};
|
3222
|
+
};
|
3223
|
+
} & {
|
3224
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
3225
|
+
};
|
3226
|
+
get: {
|
3227
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
3228
|
+
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
3229
|
+
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
3230
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
3231
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
3232
|
+
component(): import("@omnia/fx-models").ComponentBlueprint;
|
3233
|
+
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
3234
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
3235
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
3236
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
3237
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
3238
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
3239
|
+
};
|
3240
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3241
|
+
};
|
3242
|
+
};
|
3243
|
+
onFailure: {
|
3244
|
+
setBlueprint: {
|
3245
|
+
subscribe(fn: (failureReason: any, type: import("@omnia/fx-models").TypographyBlueprintVariants) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3246
|
+
};
|
3247
|
+
setThemeStore: {
|
3248
|
+
subscribe(fn: (failureReason: any, themeStoreInstance: {
|
3249
|
+
state: {
|
3250
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
3251
|
+
};
|
3252
|
+
events: {
|
3253
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
3254
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
3255
|
+
actions: {
|
3256
|
+
onDispatching: {
|
3257
|
+
setTheme: {
|
3258
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3259
|
+
};
|
3260
|
+
};
|
3261
|
+
onDispatched: {
|
3262
|
+
setTheme: {
|
3263
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3264
|
+
};
|
3265
|
+
};
|
3266
|
+
onFailure: {
|
3267
|
+
setTheme: {
|
3268
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3269
|
+
};
|
3270
|
+
};
|
3271
|
+
} & {
|
3272
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
3273
|
+
};
|
3274
|
+
get: {
|
3275
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
3276
|
+
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
3277
|
+
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
3278
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
3279
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
3280
|
+
component(): import("@omnia/fx-models").ComponentBlueprint;
|
3281
|
+
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
3282
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
3283
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
3284
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
3285
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
3286
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
3287
|
+
};
|
3288
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3289
|
+
};
|
3290
|
+
};
|
3291
|
+
} & {
|
3292
|
+
setBlueprint(type: import("@omnia/fx-models").TypographyBlueprintVariants): void;
|
3293
|
+
setThemeStore(themeStoreInstance: {
|
3294
|
+
state: {
|
3295
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
3296
|
+
};
|
3297
|
+
events: {
|
3298
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
3299
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
3300
|
+
actions: {
|
3301
|
+
onDispatching: {
|
3302
|
+
setTheme: {
|
3303
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3304
|
+
};
|
3305
|
+
};
|
3306
|
+
onDispatched: {
|
3307
|
+
setTheme: {
|
3308
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3309
|
+
};
|
3310
|
+
};
|
3311
|
+
onFailure: {
|
3312
|
+
setTheme: {
|
3313
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3314
|
+
};
|
3315
|
+
};
|
3316
|
+
} & {
|
3317
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
3318
|
+
};
|
3319
|
+
get: {
|
3320
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
3321
|
+
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
3322
|
+
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
3323
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
3324
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
3325
|
+
component(): import("@omnia/fx-models").ComponentBlueprint;
|
3326
|
+
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
3327
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
3328
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
3329
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
3330
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
3331
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
3332
|
+
};
|
3333
|
+
}): void;
|
3334
|
+
};
|
3335
|
+
get: {
|
3336
|
+
readonly themeStore: {
|
3337
|
+
state: {
|
3338
|
+
currentTheme: {
|
3339
|
+
id: {
|
3340
|
+
equals: {
|
3341
|
+
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
3342
|
+
};
|
3343
|
+
toString: () => string;
|
3344
|
+
toJSON: () => string;
|
3345
|
+
valueOf: () => string;
|
3346
|
+
};
|
3347
|
+
name: string;
|
3348
|
+
dark: boolean;
|
3349
|
+
colors: {
|
3350
|
+
primary: {
|
3351
|
+
name: string;
|
3352
|
+
base: {
|
3353
|
+
dark: boolean;
|
3354
|
+
color: string;
|
3355
|
+
colorToned: string;
|
3356
|
+
};
|
3357
|
+
onBase: {
|
3358
|
+
dark: boolean;
|
3359
|
+
color: string;
|
3360
|
+
colorToned: string;
|
3361
|
+
};
|
3362
|
+
container: {
|
3363
|
+
dark: boolean;
|
3364
|
+
color: string;
|
3365
|
+
colorToned: string;
|
3366
|
+
};
|
3367
|
+
onContainer: {
|
3368
|
+
dark: boolean;
|
3369
|
+
color: string;
|
3370
|
+
colorToned: string;
|
3371
|
+
};
|
3372
|
+
};
|
3373
|
+
secondary: {
|
3374
|
+
name: string;
|
3375
|
+
base: {
|
3376
|
+
dark: boolean;
|
3377
|
+
color: string;
|
3378
|
+
colorToned: string;
|
3379
|
+
};
|
3380
|
+
onBase: {
|
3381
|
+
dark: boolean;
|
3382
|
+
color: string;
|
3383
|
+
colorToned: string;
|
3384
|
+
};
|
3385
|
+
container: {
|
3386
|
+
dark: boolean;
|
3387
|
+
color: string;
|
3388
|
+
colorToned: string;
|
3389
|
+
};
|
3390
|
+
onContainer: {
|
3391
|
+
dark: boolean;
|
3392
|
+
color: string;
|
3393
|
+
colorToned: string;
|
3394
|
+
};
|
3395
|
+
};
|
3396
|
+
accent1: {
|
3397
|
+
name: string;
|
3398
|
+
base: {
|
3399
|
+
dark: boolean;
|
3400
|
+
color: string;
|
3401
|
+
colorToned: string;
|
3402
|
+
};
|
3403
|
+
onBase: {
|
3404
|
+
dark: boolean;
|
3405
|
+
color: string;
|
3406
|
+
colorToned: string;
|
3407
|
+
};
|
3408
|
+
container: {
|
3409
|
+
dark: boolean;
|
3410
|
+
color: string;
|
3411
|
+
colorToned: string;
|
3412
|
+
};
|
3413
|
+
onContainer: {
|
3414
|
+
dark: boolean;
|
3415
|
+
color: string;
|
3416
|
+
colorToned: string;
|
3417
|
+
};
|
3418
|
+
};
|
3419
|
+
accent2: {
|
3420
|
+
name: string;
|
3421
|
+
base: {
|
3422
|
+
dark: boolean;
|
3423
|
+
color: string;
|
3424
|
+
colorToned: string;
|
3425
|
+
};
|
3426
|
+
onBase: {
|
3427
|
+
dark: boolean;
|
3428
|
+
color: string;
|
3429
|
+
colorToned: string;
|
3430
|
+
};
|
3431
|
+
container: {
|
3432
|
+
dark: boolean;
|
3433
|
+
color: string;
|
3434
|
+
colorToned: string;
|
3435
|
+
};
|
3436
|
+
onContainer: {
|
3437
|
+
dark: boolean;
|
3438
|
+
color: string;
|
3439
|
+
colorToned: string;
|
3440
|
+
};
|
3441
|
+
};
|
3442
|
+
accent3: {
|
3443
|
+
name: string;
|
3444
|
+
base: {
|
3445
|
+
dark: boolean;
|
3446
|
+
color: string;
|
3447
|
+
colorToned: string;
|
3448
|
+
};
|
3449
|
+
onBase: {
|
3450
|
+
dark: boolean;
|
3451
|
+
color: string;
|
3452
|
+
colorToned: string;
|
3453
|
+
};
|
3454
|
+
container: {
|
3455
|
+
dark: boolean;
|
3456
|
+
color: string;
|
3457
|
+
colorToned: string;
|
3458
|
+
};
|
3459
|
+
onContainer: {
|
3460
|
+
dark: boolean;
|
3461
|
+
color: string;
|
3462
|
+
colorToned: string;
|
3463
|
+
};
|
3464
|
+
};
|
3465
|
+
neutral: {
|
3466
|
+
name: string;
|
3467
|
+
base: {
|
3468
|
+
dark: boolean;
|
3469
|
+
color: string;
|
3470
|
+
colorToned: string;
|
3471
|
+
};
|
3472
|
+
onBase: {
|
3473
|
+
dark: boolean;
|
3474
|
+
color: string;
|
3475
|
+
colorToned: string;
|
3476
|
+
};
|
3477
|
+
container: {
|
3478
|
+
dark: boolean;
|
3479
|
+
color: string;
|
3480
|
+
colorToned: string;
|
3481
|
+
};
|
3482
|
+
onContainer: {
|
3483
|
+
dark: boolean;
|
3484
|
+
color: string;
|
3485
|
+
colorToned: string;
|
3486
|
+
};
|
3487
|
+
};
|
3488
|
+
background: {
|
3489
|
+
name: string;
|
3490
|
+
base: {
|
3491
|
+
dark: boolean;
|
3492
|
+
color: string;
|
3493
|
+
colorToned: string;
|
3494
|
+
};
|
3495
|
+
onBase: {
|
3496
|
+
dark: boolean;
|
3497
|
+
color: string;
|
3498
|
+
colorToned: string;
|
3499
|
+
};
|
3500
|
+
container: {
|
3501
|
+
dark: boolean;
|
3502
|
+
color: string;
|
3503
|
+
colorToned: string;
|
3504
|
+
};
|
3505
|
+
onContainer: {
|
3506
|
+
dark: boolean;
|
3507
|
+
color: string;
|
3508
|
+
colorToned: string;
|
3509
|
+
};
|
3510
|
+
};
|
3511
|
+
error: {
|
3512
|
+
name: string;
|
3513
|
+
base: {
|
3514
|
+
dark: boolean;
|
3515
|
+
color: string;
|
3516
|
+
colorToned: string;
|
3517
|
+
};
|
3518
|
+
onBase: {
|
3519
|
+
dark: boolean;
|
3520
|
+
color: string;
|
3521
|
+
colorToned: string;
|
3522
|
+
};
|
3523
|
+
container: {
|
3524
|
+
dark: boolean;
|
3525
|
+
color: string;
|
3526
|
+
colorToned: string;
|
3527
|
+
};
|
3528
|
+
onContainer: {
|
3529
|
+
dark: boolean;
|
3530
|
+
color: string;
|
3531
|
+
colorToned: string;
|
3532
|
+
};
|
3533
|
+
};
|
3534
|
+
info: {
|
3535
|
+
name: string;
|
3536
|
+
base: {
|
3537
|
+
dark: boolean;
|
3538
|
+
color: string;
|
3539
|
+
colorToned: string;
|
3540
|
+
};
|
3541
|
+
onBase: {
|
3542
|
+
dark: boolean;
|
3543
|
+
color: string;
|
3544
|
+
colorToned: string;
|
3545
|
+
};
|
3546
|
+
container: {
|
3547
|
+
dark: boolean;
|
3548
|
+
color: string;
|
3549
|
+
colorToned: string;
|
3550
|
+
};
|
3551
|
+
onContainer: {
|
3552
|
+
dark: boolean;
|
3553
|
+
color: string;
|
3554
|
+
colorToned: string;
|
3555
|
+
};
|
3556
|
+
};
|
3557
|
+
};
|
3558
|
+
blueprints: {
|
3559
|
+
type: import("@omnia/fx-models").BlueprintType;
|
3560
|
+
name: string;
|
3561
|
+
}[];
|
3562
|
+
};
|
3563
|
+
};
|
3564
|
+
events: {
|
3565
|
+
[x: string]: {
|
3566
|
+
subscribe: (fn: (obj: any) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3567
|
+
publish: (msg: any) => void;
|
3568
|
+
};
|
3569
|
+
onMutatedCurrentTheme: {
|
3570
|
+
subscribe: (fn: (obj: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3571
|
+
};
|
3572
|
+
};
|
3573
|
+
actions: {
|
3574
|
+
onDispatching: {
|
3575
|
+
setTheme: {
|
3576
|
+
subscribe: (fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3577
|
+
};
|
3578
|
+
};
|
3579
|
+
onDispatched: {
|
3580
|
+
setTheme: {
|
3581
|
+
subscribe: (fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3582
|
+
};
|
3583
|
+
};
|
3584
|
+
onFailure: {
|
3585
|
+
setTheme: {
|
3586
|
+
subscribe: (fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3587
|
+
};
|
3588
|
+
};
|
3589
|
+
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
3590
|
+
};
|
3591
|
+
get: {
|
3592
|
+
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
3593
|
+
blueprint: <TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
3594
|
+
typography: () => import("@omnia/fx-models").TypographyBlueprint;
|
3595
|
+
spacing: () => import("@omnia/fx-models").SpacingBlueprint;
|
3596
|
+
chrome: () => import("@omnia/fx-models").ChromeBlueprint;
|
3597
|
+
component: () => import("@omnia/fx-models").ComponentBlueprint;
|
3598
|
+
color: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => string;
|
3599
|
+
colorDefinition: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorDefinition;
|
3600
|
+
complementaryColorType: (colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorTypes;
|
3601
|
+
complementaryColor: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => string;
|
3602
|
+
complementaryColorDefinition: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorDefinition;
|
3603
|
+
currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
|
3604
|
+
};
|
3605
|
+
};
|
3606
|
+
readonly blueprint: import("@omnia/fx-models").TypographyDefinition;
|
3607
|
+
typography(typographyType: "title" | "text" | "navigation" | import("@omnia/fx-models").TypographyTypes, size: "xs" | "s" | "m" | "l" | "xl" | import("@omnia/fx-models").TypographySizes): import("@omnia/fx-models").TypographyTypeDefinition;
|
3608
|
+
};
|
3609
|
+
deactivated(): void;
|
3610
|
+
}) => string;
|
2577
3611
|
spacing: {
|
2578
3612
|
innerPaddingStylex: (value: SpacingSettings | SpacingType, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => Readonly<{
|
2579
3613
|
className?: string;
|