@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,23 @@
|
|
1
1
|
export declare const useThemeContextStore: () => {
|
2
|
+
actions: {
|
3
|
+
onDispatching: {
|
4
|
+
saveTheme: {
|
5
|
+
subscribe(fn: (variant: "default" | "preview" | "admin") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
6
|
+
};
|
7
|
+
};
|
8
|
+
onDispatched: {
|
9
|
+
saveTheme: {
|
10
|
+
subscribe(fn: (result: void, variant: "default" | "preview" | "admin") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
11
|
+
};
|
12
|
+
};
|
13
|
+
onFailure: {
|
14
|
+
saveTheme: {
|
15
|
+
subscribe(fn: (failureReason: any, variant: "default" | "preview" | "admin") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
16
|
+
};
|
17
|
+
};
|
18
|
+
} & {
|
19
|
+
saveTheme(variant: "admin" | "default" | "preview"): void;
|
20
|
+
};
|
2
21
|
state: {
|
3
22
|
defaultTheme: {
|
4
23
|
state: {
|
@@ -27,6 +46,49 @@ export declare const useThemeContextStore: () => {
|
|
27
46
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
28
47
|
};
|
29
48
|
get: {
|
49
|
+
componentBlueprintStore(): {
|
50
|
+
state: {
|
51
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
52
|
+
};
|
53
|
+
events: {
|
54
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
55
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
56
|
+
actions: {
|
57
|
+
onDispatching: {
|
58
|
+
setBlueprint: {
|
59
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
60
|
+
};
|
61
|
+
setBluePrints: {
|
62
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
63
|
+
};
|
64
|
+
};
|
65
|
+
onDispatched: {
|
66
|
+
setBlueprint: {
|
67
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
68
|
+
};
|
69
|
+
setBluePrints: {
|
70
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
71
|
+
};
|
72
|
+
};
|
73
|
+
onFailure: {
|
74
|
+
setBlueprint: {
|
75
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
76
|
+
};
|
77
|
+
setBluePrints: {
|
78
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
79
|
+
};
|
80
|
+
};
|
81
|
+
} & {
|
82
|
+
setBlueprint(type: "default"): void;
|
83
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
84
|
+
};
|
85
|
+
get: {
|
86
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
87
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
88
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
89
|
+
};
|
90
|
+
deactivated(): void;
|
91
|
+
};
|
30
92
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
31
93
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
32
94
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -66,6 +128,49 @@ export declare const useThemeContextStore: () => {
|
|
66
128
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
67
129
|
};
|
68
130
|
get: {
|
131
|
+
componentBlueprintStore(): {
|
132
|
+
state: {
|
133
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
134
|
+
};
|
135
|
+
events: {
|
136
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
137
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
138
|
+
actions: {
|
139
|
+
onDispatching: {
|
140
|
+
setBlueprint: {
|
141
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
142
|
+
};
|
143
|
+
setBluePrints: {
|
144
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
145
|
+
};
|
146
|
+
};
|
147
|
+
onDispatched: {
|
148
|
+
setBlueprint: {
|
149
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
150
|
+
};
|
151
|
+
setBluePrints: {
|
152
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
153
|
+
};
|
154
|
+
};
|
155
|
+
onFailure: {
|
156
|
+
setBlueprint: {
|
157
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
158
|
+
};
|
159
|
+
setBluePrints: {
|
160
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
161
|
+
};
|
162
|
+
};
|
163
|
+
} & {
|
164
|
+
setBlueprint(type: "default"): void;
|
165
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
166
|
+
};
|
167
|
+
get: {
|
168
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
169
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
170
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
171
|
+
};
|
172
|
+
deactivated(): void;
|
173
|
+
};
|
69
174
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
70
175
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
71
176
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -105,6 +210,49 @@ export declare const useThemeContextStore: () => {
|
|
105
210
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
106
211
|
};
|
107
212
|
get: {
|
213
|
+
componentBlueprintStore(): {
|
214
|
+
state: {
|
215
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
216
|
+
};
|
217
|
+
events: {
|
218
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
219
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
220
|
+
actions: {
|
221
|
+
onDispatching: {
|
222
|
+
setBlueprint: {
|
223
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
224
|
+
};
|
225
|
+
setBluePrints: {
|
226
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
227
|
+
};
|
228
|
+
};
|
229
|
+
onDispatched: {
|
230
|
+
setBlueprint: {
|
231
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
232
|
+
};
|
233
|
+
setBluePrints: {
|
234
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
235
|
+
};
|
236
|
+
};
|
237
|
+
onFailure: {
|
238
|
+
setBlueprint: {
|
239
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
240
|
+
};
|
241
|
+
setBluePrints: {
|
242
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
243
|
+
};
|
244
|
+
};
|
245
|
+
} & {
|
246
|
+
setBlueprint(type: "default"): void;
|
247
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
248
|
+
};
|
249
|
+
get: {
|
250
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
251
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
252
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
253
|
+
};
|
254
|
+
deactivated(): void;
|
255
|
+
};
|
108
256
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
109
257
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
110
258
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -146,6 +294,49 @@ export declare const useThemeContextStore: () => {
|
|
146
294
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
147
295
|
};
|
148
296
|
get: {
|
297
|
+
componentBlueprintStore(): {
|
298
|
+
state: {
|
299
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
300
|
+
};
|
301
|
+
events: {
|
302
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
303
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
304
|
+
actions: {
|
305
|
+
onDispatching: {
|
306
|
+
setBlueprint: {
|
307
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
308
|
+
};
|
309
|
+
setBluePrints: {
|
310
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
311
|
+
};
|
312
|
+
};
|
313
|
+
onDispatched: {
|
314
|
+
setBlueprint: {
|
315
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
316
|
+
};
|
317
|
+
setBluePrints: {
|
318
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
319
|
+
};
|
320
|
+
};
|
321
|
+
onFailure: {
|
322
|
+
setBlueprint: {
|
323
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
324
|
+
};
|
325
|
+
setBluePrints: {
|
326
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
327
|
+
};
|
328
|
+
};
|
329
|
+
} & {
|
330
|
+
setBlueprint(type: "default"): void;
|
331
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
332
|
+
};
|
333
|
+
get: {
|
334
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
335
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
336
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
337
|
+
};
|
338
|
+
deactivated(): void;
|
339
|
+
};
|
149
340
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
150
341
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
151
342
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -185,6 +376,49 @@ export declare const useThemeContextStore: () => {
|
|
185
376
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
186
377
|
};
|
187
378
|
get: {
|
379
|
+
componentBlueprintStore(): {
|
380
|
+
state: {
|
381
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
382
|
+
};
|
383
|
+
events: {
|
384
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
385
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
386
|
+
actions: {
|
387
|
+
onDispatching: {
|
388
|
+
setBlueprint: {
|
389
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
390
|
+
};
|
391
|
+
setBluePrints: {
|
392
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
393
|
+
};
|
394
|
+
};
|
395
|
+
onDispatched: {
|
396
|
+
setBlueprint: {
|
397
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
398
|
+
};
|
399
|
+
setBluePrints: {
|
400
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
401
|
+
};
|
402
|
+
};
|
403
|
+
onFailure: {
|
404
|
+
setBlueprint: {
|
405
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
406
|
+
};
|
407
|
+
setBluePrints: {
|
408
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
409
|
+
};
|
410
|
+
};
|
411
|
+
} & {
|
412
|
+
setBlueprint(type: "default"): void;
|
413
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
414
|
+
};
|
415
|
+
get: {
|
416
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
417
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
418
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
419
|
+
};
|
420
|
+
deactivated(): void;
|
421
|
+
};
|
188
422
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
189
423
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
190
424
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -224,6 +458,49 @@ export declare const useThemeContextStore: () => {
|
|
224
458
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
225
459
|
};
|
226
460
|
get: {
|
461
|
+
componentBlueprintStore(): {
|
462
|
+
state: {
|
463
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
464
|
+
};
|
465
|
+
events: {
|
466
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
467
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
468
|
+
actions: {
|
469
|
+
onDispatching: {
|
470
|
+
setBlueprint: {
|
471
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
472
|
+
};
|
473
|
+
setBluePrints: {
|
474
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
475
|
+
};
|
476
|
+
};
|
477
|
+
onDispatched: {
|
478
|
+
setBlueprint: {
|
479
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
480
|
+
};
|
481
|
+
setBluePrints: {
|
482
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
483
|
+
};
|
484
|
+
};
|
485
|
+
onFailure: {
|
486
|
+
setBlueprint: {
|
487
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
488
|
+
};
|
489
|
+
setBluePrints: {
|
490
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
491
|
+
};
|
492
|
+
};
|
493
|
+
} & {
|
494
|
+
setBlueprint(type: "default"): void;
|
495
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
496
|
+
};
|
497
|
+
get: {
|
498
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
499
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
500
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
501
|
+
};
|
502
|
+
deactivated(): void;
|
503
|
+
};
|
227
504
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
228
505
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
229
506
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -265,6 +542,49 @@ export declare const useThemeContextStore: () => {
|
|
265
542
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
266
543
|
};
|
267
544
|
get: {
|
545
|
+
componentBlueprintStore(): {
|
546
|
+
state: {
|
547
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
548
|
+
};
|
549
|
+
events: {
|
550
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
551
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
552
|
+
actions: {
|
553
|
+
onDispatching: {
|
554
|
+
setBlueprint: {
|
555
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
556
|
+
};
|
557
|
+
setBluePrints: {
|
558
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
559
|
+
};
|
560
|
+
};
|
561
|
+
onDispatched: {
|
562
|
+
setBlueprint: {
|
563
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
564
|
+
};
|
565
|
+
setBluePrints: {
|
566
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
567
|
+
};
|
568
|
+
};
|
569
|
+
onFailure: {
|
570
|
+
setBlueprint: {
|
571
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
572
|
+
};
|
573
|
+
setBluePrints: {
|
574
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
575
|
+
};
|
576
|
+
};
|
577
|
+
} & {
|
578
|
+
setBlueprint(type: "default"): void;
|
579
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
580
|
+
};
|
581
|
+
get: {
|
582
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
583
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
584
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
585
|
+
};
|
586
|
+
deactivated(): void;
|
587
|
+
};
|
268
588
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
269
589
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
270
590
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -304,6 +624,49 @@ export declare const useThemeContextStore: () => {
|
|
304
624
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
305
625
|
};
|
306
626
|
get: {
|
627
|
+
componentBlueprintStore(): {
|
628
|
+
state: {
|
629
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
630
|
+
};
|
631
|
+
events: {
|
632
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
633
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
634
|
+
actions: {
|
635
|
+
onDispatching: {
|
636
|
+
setBlueprint: {
|
637
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
638
|
+
};
|
639
|
+
setBluePrints: {
|
640
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
641
|
+
};
|
642
|
+
};
|
643
|
+
onDispatched: {
|
644
|
+
setBlueprint: {
|
645
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
646
|
+
};
|
647
|
+
setBluePrints: {
|
648
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
649
|
+
};
|
650
|
+
};
|
651
|
+
onFailure: {
|
652
|
+
setBlueprint: {
|
653
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
654
|
+
};
|
655
|
+
setBluePrints: {
|
656
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
657
|
+
};
|
658
|
+
};
|
659
|
+
} & {
|
660
|
+
setBlueprint(type: "default"): void;
|
661
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
662
|
+
};
|
663
|
+
get: {
|
664
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
665
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
666
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
667
|
+
};
|
668
|
+
deactivated(): void;
|
669
|
+
};
|
307
670
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
308
671
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
309
672
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -343,6 +706,49 @@ export declare const useThemeContextStore: () => {
|
|
343
706
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
344
707
|
};
|
345
708
|
get: {
|
709
|
+
componentBlueprintStore(): {
|
710
|
+
state: {
|
711
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
712
|
+
};
|
713
|
+
events: {
|
714
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
715
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
716
|
+
actions: {
|
717
|
+
onDispatching: {
|
718
|
+
setBlueprint: {
|
719
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
720
|
+
};
|
721
|
+
setBluePrints: {
|
722
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
723
|
+
};
|
724
|
+
};
|
725
|
+
onDispatched: {
|
726
|
+
setBlueprint: {
|
727
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
728
|
+
};
|
729
|
+
setBluePrints: {
|
730
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
731
|
+
};
|
732
|
+
};
|
733
|
+
onFailure: {
|
734
|
+
setBlueprint: {
|
735
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
736
|
+
};
|
737
|
+
setBluePrints: {
|
738
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
739
|
+
};
|
740
|
+
};
|
741
|
+
} & {
|
742
|
+
setBlueprint(type: "default"): void;
|
743
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
744
|
+
};
|
745
|
+
get: {
|
746
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
747
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
748
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
749
|
+
};
|
750
|
+
deactivated(): void;
|
751
|
+
};
|
346
752
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
347
753
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
348
754
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -25,7 +25,7 @@ export declare const useThemeDefinitionStore: () => {
|
|
25
25
|
subscribe(fn: (result: unknown) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
26
26
|
};
|
27
27
|
upsertDefinition: {
|
28
|
-
subscribe(fn: (result:
|
28
|
+
subscribe(fn: (result: void, definition: ITemplateRegistration<ThemeDefinitionV2>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
29
29
|
};
|
30
30
|
deleteDefinition: {
|
31
31
|
subscribe(fn: (result: boolean, registrationId: Guid) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -44,7 +44,7 @@ export declare const useThemeDefinitionStore: () => {
|
|
44
44
|
};
|
45
45
|
} & {
|
46
46
|
load(): Promise<unknown>;
|
47
|
-
upsertDefinition(definition: ITemplateRegistration<ThemeDefinitionV2>): Promise<
|
47
|
+
upsertDefinition(definition: ITemplateRegistration<ThemeDefinitionV2>): Promise<void>;
|
48
48
|
deleteDefinition(registrationId: Guid): Promise<boolean>;
|
49
49
|
};
|
50
50
|
get: {
|
@@ -26,6 +26,49 @@ export declare const useThemeStoreV2: () => {
|
|
26
26
|
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
27
27
|
};
|
28
28
|
get: {
|
29
|
+
componentBlueprintStore(): {
|
30
|
+
state: {
|
31
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
32
|
+
};
|
33
|
+
events: {
|
34
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
35
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
36
|
+
actions: {
|
37
|
+
onDispatching: {
|
38
|
+
setBlueprint: {
|
39
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
40
|
+
};
|
41
|
+
setBluePrints: {
|
42
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
43
|
+
};
|
44
|
+
};
|
45
|
+
onDispatched: {
|
46
|
+
setBlueprint: {
|
47
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
48
|
+
};
|
49
|
+
setBluePrints: {
|
50
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
51
|
+
};
|
52
|
+
};
|
53
|
+
onFailure: {
|
54
|
+
setBlueprint: {
|
55
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
56
|
+
};
|
57
|
+
setBluePrints: {
|
58
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
59
|
+
};
|
60
|
+
};
|
61
|
+
} & {
|
62
|
+
setBlueprint(type: "default"): void;
|
63
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
64
|
+
};
|
65
|
+
get: {
|
66
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
67
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
68
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
69
|
+
};
|
70
|
+
deactivated(): void;
|
71
|
+
};
|
29
72
|
colorSchema(colorSchemaType: ColorSchemaTypes | ColorSchemaType): import("@omnia/fx-models").ColorSchema;
|
30
73
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
31
74
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|