@omnia/fx 8.0.76-dev → 8.0.77-dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/internal-do-not-import-from-here/shared/models/OmniaSharedBootstrapData.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/Tokens.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/theming/BlueprintDefinition.d.ts +6 -1
- package/internal-do-not-import-from-here/shared/models/theming/ChromeDefinition.d.ts +7 -5
- package/internal-do-not-import-from-here/ux/blueprintpickers/chromepicker/ChromePicker.css.d.ts +3 -5
- package/internal-do-not-import-from-here/ux/blueprintpickers/chromepicker/ChromePicker.d.ts +132 -97
- package/internal-do-not-import-from-here/ux/blueprintpickers/chromepicker/{ChromePreview.d.ts → ChromeViewer.d.ts} +35 -18
- package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaPicker.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaPicker.d.ts +90 -90
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.css.d.ts +31 -31
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview2.d.ts +496 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/chrome/store/ChromeEditorStore.d.ts +10 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/core/DefinitionsChrome.d.ts +156 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/core/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/BlueprintsChrome.d.ts +5 -3
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/BlueprintsChrome.d.ts +2 -3
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/BlueprintsChrome.d.ts +5 -3
- package/internal-do-not-import-from-here/ux/theming-v2/store/ChromeBlueprintStore.d.ts +23 -24
- package/internal-do-not-import-from-here/ux/theming-v2/store/ColorSchemaStore.d.ts +25 -25
- package/internal-do-not-import-from-here/ux/theming-v2/store/ComponentBlueprintStore.d.ts +20 -20
- package/internal-do-not-import-from-here/ux/theming-v2/store/SpacingBlueprintStore.d.ts +22 -24
- package/internal-do-not-import-from-here/ux/theming-v2/store/ThemeContextStore.d.ts +45 -45
- package/internal-do-not-import-from-here/ux/theming-v2/store/TypographyBlueprintStore.d.ts +27 -29
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseStyling.d.ts +81 -81
- package/internal-do-not-import-from-here/ux/theming-v2/themeprovider/ThemeProvider.d.ts +720 -715
- package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +31 -31
- package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronColorSchema.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +5 -5
- package/internal-do-not-import-from-here/wctypings.d.ts +18 -3
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/DefinitionsChrome.d.ts +0 -49
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/DefinitionsChrome.d.ts +0 -49
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/DefinitionsChrome.d.ts +0 -49
@@ -1,21 +1,20 @@
|
|
1
|
-
import { TypographyBlueprint, TypographySize, TypographySizes, TypographyType, TypographyTypeDefinition, TypographyTypes } from "@omnia/fx-models";
|
1
|
+
import { TypographyBlueprint, TypographyBlueprintVariants, TypographySize, TypographySizes, TypographyType, TypographyTypeDefinition, TypographyTypes } from "@omnia/fx-models";
|
2
2
|
import { useThemeStoreV2 } from "./ThemeStoreV2";
|
3
|
-
type blueprintType = "default" | "variant1";
|
4
3
|
export declare const useTypographyBlueprintStore: () => {
|
5
4
|
state: {
|
6
5
|
blueprint: import("@omnia/fx-models").TypographyDefinition;
|
7
|
-
blueprintType:
|
6
|
+
blueprintType: TypographyBlueprintVariants;
|
8
7
|
id: import("@omnia/fx-models").GuidValue;
|
9
8
|
};
|
10
9
|
events: {
|
11
10
|
onMutatedBlueprint: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").TypographyDefinition>;
|
12
|
-
onMutatedBlueprintType: import("@omnia/fx").MessageBusExposeOnlySubscription<
|
11
|
+
onMutatedBlueprintType: import("@omnia/fx").MessageBusExposeOnlySubscription<TypographyBlueprintVariants>;
|
13
12
|
onMutatedId: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").GuidValue>;
|
14
13
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
15
14
|
actions: {
|
16
15
|
onDispatching: {
|
17
16
|
setBlueprint: {
|
18
|
-
subscribe(fn: (type:
|
17
|
+
subscribe(fn: (type: TypographyBlueprintVariants) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
19
18
|
};
|
20
19
|
setThemeStore: {
|
21
20
|
subscribe(fn: (themeStoreInstance: {
|
@@ -45,17 +44,17 @@ export declare const useTypographyBlueprintStore: () => {
|
|
45
44
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
46
45
|
};
|
47
46
|
get: {
|
48
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
47
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
49
48
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
50
49
|
typography(): TypographyBlueprint;
|
51
50
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
52
51
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
53
52
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
54
|
-
color(colorSchemaType: "info" | "error" |
|
55
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
53
|
+
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;
|
54
|
+
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
55
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
57
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
58
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
56
|
+
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;
|
57
|
+
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
58
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
60
59
|
};
|
61
60
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -63,7 +62,7 @@ export declare const useTypographyBlueprintStore: () => {
|
|
63
62
|
};
|
64
63
|
onDispatched: {
|
65
64
|
setBlueprint: {
|
66
|
-
subscribe(fn: (result: void, type:
|
65
|
+
subscribe(fn: (result: void, type: TypographyBlueprintVariants) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
67
66
|
};
|
68
67
|
setThemeStore: {
|
69
68
|
subscribe(fn: (result: void, themeStoreInstance: {
|
@@ -93,17 +92,17 @@ export declare const useTypographyBlueprintStore: () => {
|
|
93
92
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
94
93
|
};
|
95
94
|
get: {
|
96
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
95
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
97
96
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
98
97
|
typography(): TypographyBlueprint;
|
99
98
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
100
99
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
101
100
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
102
|
-
color(colorSchemaType: "info" | "error" |
|
103
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
101
|
+
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;
|
102
|
+
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
103
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
105
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
106
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
104
|
+
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;
|
105
|
+
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
106
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
108
107
|
};
|
109
108
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -111,7 +110,7 @@ export declare const useTypographyBlueprintStore: () => {
|
|
111
110
|
};
|
112
111
|
onFailure: {
|
113
112
|
setBlueprint: {
|
114
|
-
subscribe(fn: (failureReason: any, type:
|
113
|
+
subscribe(fn: (failureReason: any, type: TypographyBlueprintVariants) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
115
114
|
};
|
116
115
|
setThemeStore: {
|
117
116
|
subscribe(fn: (failureReason: any, themeStoreInstance: {
|
@@ -141,24 +140,24 @@ export declare const useTypographyBlueprintStore: () => {
|
|
141
140
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
142
141
|
};
|
143
142
|
get: {
|
144
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
143
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
145
144
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
146
145
|
typography(): TypographyBlueprint;
|
147
146
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
148
147
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
149
148
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
150
|
-
color(colorSchemaType: "info" | "error" |
|
151
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
149
|
+
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;
|
150
|
+
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
151
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
153
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
154
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
152
|
+
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;
|
153
|
+
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
154
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
156
155
|
};
|
157
156
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
158
157
|
};
|
159
158
|
};
|
160
159
|
} & {
|
161
|
-
setBlueprint(type:
|
160
|
+
setBlueprint(type: TypographyBlueprintVariants): void;
|
162
161
|
setThemeStore(themeStoreInstance: ReturnType<typeof useThemeStoreV2>): void;
|
163
162
|
};
|
164
163
|
get: {
|
@@ -418,17 +417,17 @@ export declare const useTypographyBlueprintStore: () => {
|
|
418
417
|
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
419
418
|
};
|
420
419
|
get: {
|
421
|
-
colorSchema: (colorSchemaType: "info" | "error" |
|
420
|
+
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
422
421
|
blueprint: <TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
423
422
|
typography: () => TypographyBlueprint;
|
424
423
|
spacing: () => import("@omnia/fx-models").SpacingBlueprint;
|
425
424
|
chrome: () => import("@omnia/fx-models").ChromeBlueprint;
|
426
425
|
component: () => import("@omnia/fx-models").ComponentBlueprint;
|
427
|
-
color: (colorSchemaType: "info" | "error" |
|
428
|
-
colorDefinition: (colorSchemaType: "info" | "error" |
|
426
|
+
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;
|
427
|
+
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;
|
429
428
|
complementaryColorType: (colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => import("@omnia/fx-models").ColorTypes;
|
430
|
-
complementaryColor: (colorSchemaType: "info" | "error" |
|
431
|
-
complementaryColorDefinition: (colorSchemaType: "info" | "error" |
|
429
|
+
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;
|
430
|
+
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;
|
432
431
|
currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
|
433
432
|
};
|
434
433
|
};
|
@@ -437,4 +436,3 @@ export declare const useTypographyBlueprintStore: () => {
|
|
437
436
|
};
|
438
437
|
deactivated(): void;
|
439
438
|
};
|
440
|
-
export {};
|