@omnia/fx 8.0.135-dev → 8.0.136-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/ux/colorpickerV2/ColorPicker.css.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/colorpickerV2/ColorPicker.d.ts +29 -0
- package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaPicker.d.ts +29 -0
- package/internal-do-not-import-from-here/ux/journey/JourneyPlaceHolder.d.ts +3 -38
- package/internal-do-not-import-from-here/ux/journey/JourneyRouter.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/colorpicker/ColorPicker.d.ts +29 -0
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.css.d.ts +219 -4
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +438 -8
- package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +29 -0
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +438 -8
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/themes/store/ThemeEditorStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/store/BlueprintTemplatesStore.d.ts +11 -1
- package/internal-do-not-import-from-here/ux/theming-v2/store/ChromeBlueprintStore.d.ts +176 -4
- package/internal-do-not-import-from-here/ux/theming-v2/store/ColorSchemaDefinitionStore.d.ts +15 -5
- package/internal-do-not-import-from-here/ux/theming-v2/store/ColorSchemaStore.d.ts +176 -4
- package/internal-do-not-import-from-here/ux/theming-v2/store/ComponentBlueprintStore.d.ts +13 -4897
- package/internal-do-not-import-from-here/ux/theming-v2/store/SpacingBlueprintStore.d.ts +176 -4
- package/internal-do-not-import-from-here/ux/theming-v2/store/ThemeContextStore.d.ts +406 -0
- package/internal-do-not-import-from-here/ux/theming-v2/store/ThemeDefinitionStoreV2.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/store/ThemeStoreV2.d.ts +43 -0
- package/internal-do-not-import-from-here/ux/theming-v2/store/TypographyBlueprintStore.d.ts +176 -4
- package/internal-do-not-import-from-here/ux/theming-v2/themeprovider/ThemeProvider.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +219 -4
- package/internal-do-not-import-from-here/ux/use/UseWebNotification.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/use/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/velcron/core/events/CreateEventHook.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/velcron/core/events/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/core/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/versionedlayout/blade/VersionedLayoutBladeBuilder.d.ts +11 -3
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/use/UseEventHook.d.ts +0 -14
@@ -1,4 +1,4 @@
|
|
1
|
-
import { BorderStylingDefinition, ButtonBlueprint, ChromeBlueprint, ChromeBlueprints, ComponentBlueprints, FillDefinition, Guid, ITemplateRegistration, IThemeRegistrationApiHandler, SpacingBlueprints, SpacingDefinition, TabsBlueprint, TypographyBlueprints } from "@omnia/fx-models";
|
1
|
+
import { BorderStylingDefinition, ButtonBlueprint, ChromeBlueprint, ChromeBlueprints, ComponentBlueprints, FillDefinition, Guid, ITemplateRegistration, IThemeRegistrationApiHandler, SpacingBlueprints, SpacingDefinition, TabsBlueprint, ThemeDefinitionV2, TypographyBlueprints } from "@omnia/fx-models";
|
2
2
|
export declare const useBlueprintTemplatesStore: () => {
|
3
3
|
state: {
|
4
4
|
registrations: IThemeRegistrationApiHandler;
|
@@ -28,6 +28,9 @@ export declare const useBlueprintTemplatesStore: () => {
|
|
28
28
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
29
29
|
actions: {
|
30
30
|
onDispatching: {
|
31
|
+
ensureThemeReferences: {
|
32
|
+
subscribe(fn: (themeDefinition: ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
33
|
+
};
|
31
34
|
upsertSpacingBlueprints: {
|
32
35
|
subscribe(fn: (blueprint: ITemplateRegistration<SpacingBlueprints>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
33
36
|
};
|
@@ -66,6 +69,9 @@ export declare const useBlueprintTemplatesStore: () => {
|
|
66
69
|
};
|
67
70
|
};
|
68
71
|
onDispatched: {
|
72
|
+
ensureThemeReferences: {
|
73
|
+
subscribe(fn: (result: void, themeDefinition: ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
74
|
+
};
|
69
75
|
upsertSpacingBlueprints: {
|
70
76
|
subscribe(fn: (result: boolean, blueprint: ITemplateRegistration<SpacingBlueprints>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
71
77
|
};
|
@@ -104,6 +110,9 @@ export declare const useBlueprintTemplatesStore: () => {
|
|
104
110
|
};
|
105
111
|
};
|
106
112
|
onFailure: {
|
113
|
+
ensureThemeReferences: {
|
114
|
+
subscribe(fn: (failureReason: any, themeDefinition: ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
115
|
+
};
|
107
116
|
upsertSpacingBlueprints: {
|
108
117
|
subscribe(fn: (failureReason: any, blueprint: ITemplateRegistration<SpacingBlueprints>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
109
118
|
};
|
@@ -142,6 +151,7 @@ export declare const useBlueprintTemplatesStore: () => {
|
|
142
151
|
};
|
143
152
|
};
|
144
153
|
} & {
|
154
|
+
ensureThemeReferences(themeDefinition: ThemeDefinitionV2): Promise<void>;
|
145
155
|
upsertSpacingBlueprints(blueprint: ITemplateRegistration<SpacingBlueprints>): Promise<boolean>;
|
146
156
|
deleteSpacingBlueprints(registrationId: Guid): Promise<boolean>;
|
147
157
|
/**Button */
|
@@ -42,6 +42,49 @@ export declare const useChromeBlueprintStore: () => {
|
|
42
42
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
43
43
|
};
|
44
44
|
get: {
|
45
|
+
componentBlueprintStore(): {
|
46
|
+
state: {
|
47
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
48
|
+
};
|
49
|
+
events: {
|
50
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
51
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
52
|
+
actions: {
|
53
|
+
onDispatching: {
|
54
|
+
setBlueprint: {
|
55
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
56
|
+
};
|
57
|
+
setBluePrints: {
|
58
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
59
|
+
};
|
60
|
+
};
|
61
|
+
onDispatched: {
|
62
|
+
setBlueprint: {
|
63
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
64
|
+
};
|
65
|
+
setBluePrints: {
|
66
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
67
|
+
};
|
68
|
+
};
|
69
|
+
onFailure: {
|
70
|
+
setBlueprint: {
|
71
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
72
|
+
};
|
73
|
+
setBluePrints: {
|
74
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
75
|
+
};
|
76
|
+
};
|
77
|
+
} & {
|
78
|
+
setBlueprint(type: "default"): void;
|
79
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
80
|
+
};
|
81
|
+
get: {
|
82
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
83
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
84
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
85
|
+
};
|
86
|
+
deactivated(): void;
|
87
|
+
};
|
45
88
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
46
89
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
47
90
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -88,6 +131,49 @@ export declare const useChromeBlueprintStore: () => {
|
|
88
131
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
89
132
|
};
|
90
133
|
get: {
|
134
|
+
componentBlueprintStore(): {
|
135
|
+
state: {
|
136
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
137
|
+
};
|
138
|
+
events: {
|
139
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
140
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
141
|
+
actions: {
|
142
|
+
onDispatching: {
|
143
|
+
setBlueprint: {
|
144
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
145
|
+
};
|
146
|
+
setBluePrints: {
|
147
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
148
|
+
};
|
149
|
+
};
|
150
|
+
onDispatched: {
|
151
|
+
setBlueprint: {
|
152
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
153
|
+
};
|
154
|
+
setBluePrints: {
|
155
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
156
|
+
};
|
157
|
+
};
|
158
|
+
onFailure: {
|
159
|
+
setBlueprint: {
|
160
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
161
|
+
};
|
162
|
+
setBluePrints: {
|
163
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
164
|
+
};
|
165
|
+
};
|
166
|
+
} & {
|
167
|
+
setBlueprint(type: "default"): void;
|
168
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
169
|
+
};
|
170
|
+
get: {
|
171
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
172
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
173
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
174
|
+
};
|
175
|
+
deactivated(): void;
|
176
|
+
};
|
91
177
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
92
178
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
93
179
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -134,6 +220,49 @@ export declare const useChromeBlueprintStore: () => {
|
|
134
220
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
135
221
|
};
|
136
222
|
get: {
|
223
|
+
componentBlueprintStore(): {
|
224
|
+
state: {
|
225
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
226
|
+
};
|
227
|
+
events: {
|
228
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
229
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
230
|
+
actions: {
|
231
|
+
onDispatching: {
|
232
|
+
setBlueprint: {
|
233
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
234
|
+
};
|
235
|
+
setBluePrints: {
|
236
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
237
|
+
};
|
238
|
+
};
|
239
|
+
onDispatched: {
|
240
|
+
setBlueprint: {
|
241
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
242
|
+
};
|
243
|
+
setBluePrints: {
|
244
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
245
|
+
};
|
246
|
+
};
|
247
|
+
onFailure: {
|
248
|
+
setBlueprint: {
|
249
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
250
|
+
};
|
251
|
+
setBluePrints: {
|
252
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
253
|
+
};
|
254
|
+
};
|
255
|
+
} & {
|
256
|
+
setBlueprint(type: "default"): void;
|
257
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
258
|
+
};
|
259
|
+
get: {
|
260
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
261
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
262
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
263
|
+
};
|
264
|
+
deactivated(): void;
|
265
|
+
};
|
137
266
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
138
267
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
139
268
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -4096,7 +4225,7 @@ export declare const useChromeBlueprintStore: () => {
|
|
4096
4225
|
events?: {
|
4097
4226
|
onLoaded?: string[];
|
4098
4227
|
onEditMode?: string[];
|
4099
|
-
|
4228
|
+
onSaving?: string[];
|
4100
4229
|
};
|
4101
4230
|
actions?: {
|
4102
4231
|
[name: string]: string[];
|
@@ -4297,7 +4426,7 @@ export declare const useChromeBlueprintStore: () => {
|
|
4297
4426
|
events?: {
|
4298
4427
|
onLoaded?: string[];
|
4299
4428
|
onEditMode?: string[];
|
4300
|
-
|
4429
|
+
onSaving?: string[];
|
4301
4430
|
};
|
4302
4431
|
actions?: {
|
4303
4432
|
[name: string]: string[];
|
@@ -4498,7 +4627,7 @@ export declare const useChromeBlueprintStore: () => {
|
|
4498
4627
|
events?: {
|
4499
4628
|
onLoaded?: string[];
|
4500
4629
|
onEditMode?: string[];
|
4501
|
-
|
4630
|
+
onSaving?: string[];
|
4502
4631
|
};
|
4503
4632
|
actions?: {
|
4504
4633
|
[name: string]: string[];
|
@@ -4699,7 +4828,7 @@ export declare const useChromeBlueprintStore: () => {
|
|
4699
4828
|
events?: {
|
4700
4829
|
onLoaded?: string[];
|
4701
4830
|
onEditMode?: string[];
|
4702
|
-
|
4831
|
+
onSaving?: string[];
|
4703
4832
|
};
|
4704
4833
|
actions?: {
|
4705
4834
|
[name: string]: string[];
|
@@ -4907,6 +5036,49 @@ export declare const useChromeBlueprintStore: () => {
|
|
4907
5036
|
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
4908
5037
|
};
|
4909
5038
|
get: {
|
5039
|
+
componentBlueprintStore: () => {
|
5040
|
+
state: {
|
5041
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5042
|
+
};
|
5043
|
+
events: {
|
5044
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
5045
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
5046
|
+
actions: {
|
5047
|
+
onDispatching: {
|
5048
|
+
setBlueprint: {
|
5049
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5050
|
+
};
|
5051
|
+
setBluePrints: {
|
5052
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5053
|
+
};
|
5054
|
+
};
|
5055
|
+
onDispatched: {
|
5056
|
+
setBlueprint: {
|
5057
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5058
|
+
};
|
5059
|
+
setBluePrints: {
|
5060
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5061
|
+
};
|
5062
|
+
};
|
5063
|
+
onFailure: {
|
5064
|
+
setBlueprint: {
|
5065
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5066
|
+
};
|
5067
|
+
setBluePrints: {
|
5068
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5069
|
+
};
|
5070
|
+
};
|
5071
|
+
} & {
|
5072
|
+
setBlueprint(type: "default"): void;
|
5073
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
5074
|
+
};
|
5075
|
+
get: {
|
5076
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
5077
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5078
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
5079
|
+
};
|
5080
|
+
deactivated(): void;
|
5081
|
+
};
|
4910
5082
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic") => import("@omnia/fx-models").ColorSchema;
|
4911
5083
|
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
4912
5084
|
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
package/internal-do-not-import-from-here/ux/theming-v2/store/ColorSchemaDefinitionStore.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { ColorSchema, Guid, ITemplateRegistration } from "@omnia/fx-models";
|
1
|
+
import { ColorSchema, Guid, ITemplateRegistration, ThemeDefinitionV2 } from "@omnia/fx-models";
|
2
2
|
export declare const useColorSchemaDefinitionStore: () => {
|
3
3
|
state: {
|
4
4
|
schemas: ITemplateRegistration<ColorSchema>[];
|
@@ -8,6 +8,9 @@ export declare const useColorSchemaDefinitionStore: () => {
|
|
8
8
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
9
9
|
actions: {
|
10
10
|
onDispatching: {
|
11
|
+
ensureThemeReferences: {
|
12
|
+
subscribe(fn: (themeDefinition: ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
13
|
+
};
|
11
14
|
upsertColorSchema: {
|
12
15
|
subscribe(fn: (colorSchemaRegistration: ITemplateRegistration<ColorSchema>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
13
16
|
};
|
@@ -16,14 +19,20 @@ export declare const useColorSchemaDefinitionStore: () => {
|
|
16
19
|
};
|
17
20
|
};
|
18
21
|
onDispatched: {
|
22
|
+
ensureThemeReferences: {
|
23
|
+
subscribe(fn: (result: void, themeDefinition: ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
24
|
+
};
|
19
25
|
upsertColorSchema: {
|
20
|
-
subscribe(fn: (result:
|
26
|
+
subscribe(fn: (result: unknown, colorSchemaRegistration: ITemplateRegistration<ColorSchema>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
21
27
|
};
|
22
28
|
deleteColorSchema: {
|
23
|
-
subscribe(fn: (result:
|
29
|
+
subscribe(fn: (result: unknown, registrationId: Guid) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
24
30
|
};
|
25
31
|
};
|
26
32
|
onFailure: {
|
33
|
+
ensureThemeReferences: {
|
34
|
+
subscribe(fn: (failureReason: any, themeDefinition: ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
35
|
+
};
|
27
36
|
upsertColorSchema: {
|
28
37
|
subscribe(fn: (failureReason: any, colorSchemaRegistration: ITemplateRegistration<ColorSchema>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
29
38
|
};
|
@@ -32,8 +41,9 @@ export declare const useColorSchemaDefinitionStore: () => {
|
|
32
41
|
};
|
33
42
|
};
|
34
43
|
} & {
|
35
|
-
|
36
|
-
|
44
|
+
ensureThemeReferences(themeDefinition: ThemeDefinitionV2): Promise<void>;
|
45
|
+
upsertColorSchema(colorSchemaRegistration: ITemplateRegistration<ColorSchema>): Promise<unknown>;
|
46
|
+
deleteColorSchema(registrationId: Guid): Promise<unknown>;
|
37
47
|
};
|
38
48
|
get: {};
|
39
49
|
};
|
@@ -60,6 +60,49 @@ export declare const useColorSchemaStore: () => {
|
|
60
60
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
61
61
|
};
|
62
62
|
get: {
|
63
|
+
componentBlueprintStore(): {
|
64
|
+
state: {
|
65
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
66
|
+
};
|
67
|
+
events: {
|
68
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
69
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
70
|
+
actions: {
|
71
|
+
onDispatching: {
|
72
|
+
setBlueprint: {
|
73
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
74
|
+
};
|
75
|
+
setBluePrints: {
|
76
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
77
|
+
};
|
78
|
+
};
|
79
|
+
onDispatched: {
|
80
|
+
setBlueprint: {
|
81
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
82
|
+
};
|
83
|
+
setBluePrints: {
|
84
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
85
|
+
};
|
86
|
+
};
|
87
|
+
onFailure: {
|
88
|
+
setBlueprint: {
|
89
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
90
|
+
};
|
91
|
+
setBluePrints: {
|
92
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
93
|
+
};
|
94
|
+
};
|
95
|
+
} & {
|
96
|
+
setBlueprint(type: "default"): void;
|
97
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
98
|
+
};
|
99
|
+
get: {
|
100
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
101
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
102
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
103
|
+
};
|
104
|
+
deactivated(): void;
|
105
|
+
};
|
63
106
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): ColorSchema;
|
64
107
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
65
108
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -112,6 +155,49 @@ export declare const useColorSchemaStore: () => {
|
|
112
155
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
113
156
|
};
|
114
157
|
get: {
|
158
|
+
componentBlueprintStore(): {
|
159
|
+
state: {
|
160
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
161
|
+
};
|
162
|
+
events: {
|
163
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
164
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
165
|
+
actions: {
|
166
|
+
onDispatching: {
|
167
|
+
setBlueprint: {
|
168
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
169
|
+
};
|
170
|
+
setBluePrints: {
|
171
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
172
|
+
};
|
173
|
+
};
|
174
|
+
onDispatched: {
|
175
|
+
setBlueprint: {
|
176
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
177
|
+
};
|
178
|
+
setBluePrints: {
|
179
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
180
|
+
};
|
181
|
+
};
|
182
|
+
onFailure: {
|
183
|
+
setBlueprint: {
|
184
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
185
|
+
};
|
186
|
+
setBluePrints: {
|
187
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
188
|
+
};
|
189
|
+
};
|
190
|
+
} & {
|
191
|
+
setBlueprint(type: "default"): void;
|
192
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
193
|
+
};
|
194
|
+
get: {
|
195
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
196
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
197
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
198
|
+
};
|
199
|
+
deactivated(): void;
|
200
|
+
};
|
115
201
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): ColorSchema;
|
116
202
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
117
203
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -164,6 +250,49 @@ export declare const useColorSchemaStore: () => {
|
|
164
250
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
165
251
|
};
|
166
252
|
get: {
|
253
|
+
componentBlueprintStore(): {
|
254
|
+
state: {
|
255
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
256
|
+
};
|
257
|
+
events: {
|
258
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
259
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
260
|
+
actions: {
|
261
|
+
onDispatching: {
|
262
|
+
setBlueprint: {
|
263
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
264
|
+
};
|
265
|
+
setBluePrints: {
|
266
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
267
|
+
};
|
268
|
+
};
|
269
|
+
onDispatched: {
|
270
|
+
setBlueprint: {
|
271
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
272
|
+
};
|
273
|
+
setBluePrints: {
|
274
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
275
|
+
};
|
276
|
+
};
|
277
|
+
onFailure: {
|
278
|
+
setBlueprint: {
|
279
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
280
|
+
};
|
281
|
+
setBluePrints: {
|
282
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
283
|
+
};
|
284
|
+
};
|
285
|
+
} & {
|
286
|
+
setBlueprint(type: "default"): void;
|
287
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
288
|
+
};
|
289
|
+
get: {
|
290
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
291
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
292
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
293
|
+
};
|
294
|
+
deactivated(): void;
|
295
|
+
};
|
167
296
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): ColorSchema;
|
168
297
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
169
298
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -4128,7 +4257,7 @@ export declare const useColorSchemaStore: () => {
|
|
4128
4257
|
events?: {
|
4129
4258
|
onLoaded?: string[];
|
4130
4259
|
onEditMode?: string[];
|
4131
|
-
|
4260
|
+
onSaving?: string[];
|
4132
4261
|
};
|
4133
4262
|
actions?: {
|
4134
4263
|
[name: string]: string[];
|
@@ -4329,7 +4458,7 @@ export declare const useColorSchemaStore: () => {
|
|
4329
4458
|
events?: {
|
4330
4459
|
onLoaded?: string[];
|
4331
4460
|
onEditMode?: string[];
|
4332
|
-
|
4461
|
+
onSaving?: string[];
|
4333
4462
|
};
|
4334
4463
|
actions?: {
|
4335
4464
|
[name: string]: string[];
|
@@ -4530,7 +4659,7 @@ export declare const useColorSchemaStore: () => {
|
|
4530
4659
|
events?: {
|
4531
4660
|
onLoaded?: string[];
|
4532
4661
|
onEditMode?: string[];
|
4533
|
-
|
4662
|
+
onSaving?: string[];
|
4534
4663
|
};
|
4535
4664
|
actions?: {
|
4536
4665
|
[name: string]: string[];
|
@@ -4731,7 +4860,7 @@ export declare const useColorSchemaStore: () => {
|
|
4731
4860
|
events?: {
|
4732
4861
|
onLoaded?: string[];
|
4733
4862
|
onEditMode?: string[];
|
4734
|
-
|
4863
|
+
onSaving?: string[];
|
4735
4864
|
};
|
4736
4865
|
actions?: {
|
4737
4866
|
[name: string]: string[];
|
@@ -4939,6 +5068,49 @@ export declare const useColorSchemaStore: () => {
|
|
4939
5068
|
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
4940
5069
|
};
|
4941
5070
|
get: {
|
5071
|
+
componentBlueprintStore: () => {
|
5072
|
+
state: {
|
5073
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5074
|
+
};
|
5075
|
+
events: {
|
5076
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
5077
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
5078
|
+
actions: {
|
5079
|
+
onDispatching: {
|
5080
|
+
setBlueprint: {
|
5081
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5082
|
+
};
|
5083
|
+
setBluePrints: {
|
5084
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5085
|
+
};
|
5086
|
+
};
|
5087
|
+
onDispatched: {
|
5088
|
+
setBlueprint: {
|
5089
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5090
|
+
};
|
5091
|
+
setBluePrints: {
|
5092
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5093
|
+
};
|
5094
|
+
};
|
5095
|
+
onFailure: {
|
5096
|
+
setBlueprint: {
|
5097
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5098
|
+
};
|
5099
|
+
setBluePrints: {
|
5100
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5101
|
+
};
|
5102
|
+
};
|
5103
|
+
} & {
|
5104
|
+
setBlueprint(type: "default"): void;
|
5105
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
5106
|
+
};
|
5107
|
+
get: {
|
5108
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
5109
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5110
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
5111
|
+
};
|
5112
|
+
deactivated(): void;
|
5113
|
+
};
|
4942
5114
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic") => ColorSchema;
|
4943
5115
|
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
4944
5116
|
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|