@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
@@ -64,6 +64,49 @@ declare const _default: <T extends unknown>(props: {
|
|
64
64
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
65
65
|
};
|
66
66
|
get: {
|
67
|
+
componentBlueprintStore(): {
|
68
|
+
state: {
|
69
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
70
|
+
};
|
71
|
+
events: {
|
72
|
+
onMutatedBlueprints: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
73
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
74
|
+
actions: {
|
75
|
+
onDispatching: {
|
76
|
+
setBlueprint: {
|
77
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
78
|
+
};
|
79
|
+
setBluePrints: {
|
80
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
81
|
+
};
|
82
|
+
};
|
83
|
+
onDispatched: {
|
84
|
+
setBlueprint: {
|
85
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
86
|
+
};
|
87
|
+
setBluePrints: {
|
88
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
89
|
+
};
|
90
|
+
};
|
91
|
+
onFailure: {
|
92
|
+
setBlueprint: {
|
93
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
94
|
+
};
|
95
|
+
setBluePrints: {
|
96
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
97
|
+
};
|
98
|
+
};
|
99
|
+
} & {
|
100
|
+
setBlueprint(type: "default"): void;
|
101
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
102
|
+
};
|
103
|
+
get: {
|
104
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
105
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
106
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
107
|
+
};
|
108
|
+
deactivated(): void;
|
109
|
+
};
|
67
110
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
68
111
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
69
112
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -116,6 +159,49 @@ declare const _default: <T extends unknown>(props: {
|
|
116
159
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
117
160
|
};
|
118
161
|
get: {
|
162
|
+
componentBlueprintStore(): {
|
163
|
+
state: {
|
164
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
165
|
+
};
|
166
|
+
events: {
|
167
|
+
onMutatedBlueprints: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
168
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
169
|
+
actions: {
|
170
|
+
onDispatching: {
|
171
|
+
setBlueprint: {
|
172
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
173
|
+
};
|
174
|
+
setBluePrints: {
|
175
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
176
|
+
};
|
177
|
+
};
|
178
|
+
onDispatched: {
|
179
|
+
setBlueprint: {
|
180
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
181
|
+
};
|
182
|
+
setBluePrints: {
|
183
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
184
|
+
};
|
185
|
+
};
|
186
|
+
onFailure: {
|
187
|
+
setBlueprint: {
|
188
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
189
|
+
};
|
190
|
+
setBluePrints: {
|
191
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
192
|
+
};
|
193
|
+
};
|
194
|
+
} & {
|
195
|
+
setBlueprint(type: "default"): void;
|
196
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
197
|
+
};
|
198
|
+
get: {
|
199
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
200
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
201
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
202
|
+
};
|
203
|
+
deactivated(): void;
|
204
|
+
};
|
119
205
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
120
206
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
121
207
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -168,6 +254,49 @@ declare const _default: <T extends unknown>(props: {
|
|
168
254
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
169
255
|
};
|
170
256
|
get: {
|
257
|
+
componentBlueprintStore(): {
|
258
|
+
state: {
|
259
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
260
|
+
};
|
261
|
+
events: {
|
262
|
+
onMutatedBlueprints: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
263
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
264
|
+
actions: {
|
265
|
+
onDispatching: {
|
266
|
+
setBlueprint: {
|
267
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
268
|
+
};
|
269
|
+
setBluePrints: {
|
270
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
271
|
+
};
|
272
|
+
};
|
273
|
+
onDispatched: {
|
274
|
+
setBlueprint: {
|
275
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
276
|
+
};
|
277
|
+
setBluePrints: {
|
278
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
279
|
+
};
|
280
|
+
};
|
281
|
+
onFailure: {
|
282
|
+
setBlueprint: {
|
283
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
284
|
+
};
|
285
|
+
setBluePrints: {
|
286
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
287
|
+
};
|
288
|
+
};
|
289
|
+
} & {
|
290
|
+
setBlueprint(type: "default"): void;
|
291
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
292
|
+
};
|
293
|
+
get: {
|
294
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
295
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
296
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
297
|
+
};
|
298
|
+
deactivated(): void;
|
299
|
+
};
|
171
300
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
172
301
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
173
302
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -213,6 +342,49 @@ declare const _default: <T extends unknown>(props: {
|
|
213
342
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
214
343
|
};
|
215
344
|
get: {
|
345
|
+
componentBlueprintStore(): {
|
346
|
+
state: {
|
347
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
348
|
+
};
|
349
|
+
events: {
|
350
|
+
onMutatedBlueprints: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
351
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
352
|
+
actions: {
|
353
|
+
onDispatching: {
|
354
|
+
setBlueprint: {
|
355
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
356
|
+
};
|
357
|
+
setBluePrints: {
|
358
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
359
|
+
};
|
360
|
+
};
|
361
|
+
onDispatched: {
|
362
|
+
setBlueprint: {
|
363
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
364
|
+
};
|
365
|
+
setBluePrints: {
|
366
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
367
|
+
};
|
368
|
+
};
|
369
|
+
onFailure: {
|
370
|
+
setBlueprint: {
|
371
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
372
|
+
};
|
373
|
+
setBluePrints: {
|
374
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
375
|
+
};
|
376
|
+
};
|
377
|
+
} & {
|
378
|
+
setBlueprint(type: "default"): void;
|
379
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
380
|
+
};
|
381
|
+
get: {
|
382
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
383
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
384
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
385
|
+
};
|
386
|
+
deactivated(): void;
|
387
|
+
};
|
216
388
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
217
389
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
218
390
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -4170,7 +4342,7 @@ declare const _default: <T extends unknown>(props: {
|
|
4170
4342
|
events?: {
|
4171
4343
|
onLoaded?: string[];
|
4172
4344
|
onEditMode?: string[];
|
4173
|
-
|
4345
|
+
onSaving?: string[];
|
4174
4346
|
};
|
4175
4347
|
actions?: {
|
4176
4348
|
[name: string]: string[];
|
@@ -4371,7 +4543,7 @@ declare const _default: <T extends unknown>(props: {
|
|
4371
4543
|
events?: {
|
4372
4544
|
onLoaded?: string[];
|
4373
4545
|
onEditMode?: string[];
|
4374
|
-
|
4546
|
+
onSaving?: string[];
|
4375
4547
|
};
|
4376
4548
|
actions?: {
|
4377
4549
|
[name: string]: string[];
|
@@ -4572,7 +4744,7 @@ declare const _default: <T extends unknown>(props: {
|
|
4572
4744
|
events?: {
|
4573
4745
|
onLoaded?: string[];
|
4574
4746
|
onEditMode?: string[];
|
4575
|
-
|
4747
|
+
onSaving?: string[];
|
4576
4748
|
};
|
4577
4749
|
actions?: {
|
4578
4750
|
[name: string]: string[];
|
@@ -4773,7 +4945,7 @@ declare const _default: <T extends unknown>(props: {
|
|
4773
4945
|
events?: {
|
4774
4946
|
onLoaded?: string[];
|
4775
4947
|
onEditMode?: string[];
|
4776
|
-
|
4948
|
+
onSaving?: string[];
|
4777
4949
|
};
|
4778
4950
|
actions?: {
|
4779
4951
|
[name: string]: string[];
|
@@ -4981,6 +5153,49 @@ declare const _default: <T extends unknown>(props: {
|
|
4981
5153
|
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
4982
5154
|
};
|
4983
5155
|
get: {
|
5156
|
+
componentBlueprintStore: () => {
|
5157
|
+
state: {
|
5158
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5159
|
+
};
|
5160
|
+
events: {
|
5161
|
+
onMutatedBlueprints: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
5162
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
5163
|
+
actions: {
|
5164
|
+
onDispatching: {
|
5165
|
+
setBlueprint: {
|
5166
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5167
|
+
};
|
5168
|
+
setBluePrints: {
|
5169
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5170
|
+
};
|
5171
|
+
};
|
5172
|
+
onDispatched: {
|
5173
|
+
setBlueprint: {
|
5174
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5175
|
+
};
|
5176
|
+
setBluePrints: {
|
5177
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5178
|
+
};
|
5179
|
+
};
|
5180
|
+
onFailure: {
|
5181
|
+
setBlueprint: {
|
5182
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5183
|
+
};
|
5184
|
+
setBluePrints: {
|
5185
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5186
|
+
};
|
5187
|
+
};
|
5188
|
+
} & {
|
5189
|
+
setBlueprint(type: "default"): void;
|
5190
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
5191
|
+
};
|
5192
|
+
get: {
|
5193
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
5194
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5195
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
5196
|
+
};
|
5197
|
+
deactivated(): void;
|
5198
|
+
};
|
4984
5199
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic") => import("@omnia/fx-models").ColorSchema;
|
4985
5200
|
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
4986
5201
|
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
@@ -5151,6 +5366,49 @@ declare const _default: <T extends unknown>(props: {
|
|
5151
5366
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
5152
5367
|
};
|
5153
5368
|
get: {
|
5369
|
+
componentBlueprintStore(): {
|
5370
|
+
state: {
|
5371
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5372
|
+
};
|
5373
|
+
events: {
|
5374
|
+
onMutatedBlueprints: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
5375
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
5376
|
+
actions: {
|
5377
|
+
onDispatching: {
|
5378
|
+
setBlueprint: {
|
5379
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5380
|
+
};
|
5381
|
+
setBluePrints: {
|
5382
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5383
|
+
};
|
5384
|
+
};
|
5385
|
+
onDispatched: {
|
5386
|
+
setBlueprint: {
|
5387
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5388
|
+
};
|
5389
|
+
setBluePrints: {
|
5390
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5391
|
+
};
|
5392
|
+
};
|
5393
|
+
onFailure: {
|
5394
|
+
setBlueprint: {
|
5395
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5396
|
+
};
|
5397
|
+
setBluePrints: {
|
5398
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5399
|
+
};
|
5400
|
+
};
|
5401
|
+
} & {
|
5402
|
+
setBlueprint(type: "default"): void;
|
5403
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
5404
|
+
};
|
5405
|
+
get: {
|
5406
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
5407
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5408
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
5409
|
+
};
|
5410
|
+
deactivated(): void;
|
5411
|
+
};
|
5154
5412
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
5155
5413
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
5156
5414
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -5203,6 +5461,49 @@ declare const _default: <T extends unknown>(props: {
|
|
5203
5461
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
5204
5462
|
};
|
5205
5463
|
get: {
|
5464
|
+
componentBlueprintStore(): {
|
5465
|
+
state: {
|
5466
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5467
|
+
};
|
5468
|
+
events: {
|
5469
|
+
onMutatedBlueprints: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
5470
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
5471
|
+
actions: {
|
5472
|
+
onDispatching: {
|
5473
|
+
setBlueprint: {
|
5474
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5475
|
+
};
|
5476
|
+
setBluePrints: {
|
5477
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5478
|
+
};
|
5479
|
+
};
|
5480
|
+
onDispatched: {
|
5481
|
+
setBlueprint: {
|
5482
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5483
|
+
};
|
5484
|
+
setBluePrints: {
|
5485
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5486
|
+
};
|
5487
|
+
};
|
5488
|
+
onFailure: {
|
5489
|
+
setBlueprint: {
|
5490
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5491
|
+
};
|
5492
|
+
setBluePrints: {
|
5493
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5494
|
+
};
|
5495
|
+
};
|
5496
|
+
} & {
|
5497
|
+
setBlueprint(type: "default"): void;
|
5498
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
5499
|
+
};
|
5500
|
+
get: {
|
5501
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
5502
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5503
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
5504
|
+
};
|
5505
|
+
deactivated(): void;
|
5506
|
+
};
|
5206
5507
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
5207
5508
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
5208
5509
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -5255,6 +5556,49 @@ declare const _default: <T extends unknown>(props: {
|
|
5255
5556
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
5256
5557
|
};
|
5257
5558
|
get: {
|
5559
|
+
componentBlueprintStore(): {
|
5560
|
+
state: {
|
5561
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5562
|
+
};
|
5563
|
+
events: {
|
5564
|
+
onMutatedBlueprints: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
5565
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
5566
|
+
actions: {
|
5567
|
+
onDispatching: {
|
5568
|
+
setBlueprint: {
|
5569
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5570
|
+
};
|
5571
|
+
setBluePrints: {
|
5572
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5573
|
+
};
|
5574
|
+
};
|
5575
|
+
onDispatched: {
|
5576
|
+
setBlueprint: {
|
5577
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5578
|
+
};
|
5579
|
+
setBluePrints: {
|
5580
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5581
|
+
};
|
5582
|
+
};
|
5583
|
+
onFailure: {
|
5584
|
+
setBlueprint: {
|
5585
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5586
|
+
};
|
5587
|
+
setBluePrints: {
|
5588
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5589
|
+
};
|
5590
|
+
};
|
5591
|
+
} & {
|
5592
|
+
setBlueprint(type: "default"): void;
|
5593
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
5594
|
+
};
|
5595
|
+
get: {
|
5596
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
5597
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5598
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
5599
|
+
};
|
5600
|
+
deactivated(): void;
|
5601
|
+
};
|
5258
5602
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
5259
5603
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
5260
5604
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -5300,6 +5644,49 @@ declare const _default: <T extends unknown>(props: {
|
|
5300
5644
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
5301
5645
|
};
|
5302
5646
|
get: {
|
5647
|
+
componentBlueprintStore(): {
|
5648
|
+
state: {
|
5649
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5650
|
+
};
|
5651
|
+
events: {
|
5652
|
+
onMutatedBlueprints: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
5653
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
5654
|
+
actions: {
|
5655
|
+
onDispatching: {
|
5656
|
+
setBlueprint: {
|
5657
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5658
|
+
};
|
5659
|
+
setBluePrints: {
|
5660
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5661
|
+
};
|
5662
|
+
};
|
5663
|
+
onDispatched: {
|
5664
|
+
setBlueprint: {
|
5665
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5666
|
+
};
|
5667
|
+
setBluePrints: {
|
5668
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5669
|
+
};
|
5670
|
+
};
|
5671
|
+
onFailure: {
|
5672
|
+
setBlueprint: {
|
5673
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5674
|
+
};
|
5675
|
+
setBluePrints: {
|
5676
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5677
|
+
};
|
5678
|
+
};
|
5679
|
+
} & {
|
5680
|
+
setBlueprint(type: "default"): void;
|
5681
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
5682
|
+
};
|
5683
|
+
get: {
|
5684
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
5685
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5686
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
5687
|
+
};
|
5688
|
+
deactivated(): void;
|
5689
|
+
};
|
5303
5690
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
5304
5691
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
5305
5692
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -9257,7 +9644,7 @@ declare const _default: <T extends unknown>(props: {
|
|
9257
9644
|
events?: {
|
9258
9645
|
onLoaded?: string[];
|
9259
9646
|
onEditMode?: string[];
|
9260
|
-
|
9647
|
+
onSaving?: string[];
|
9261
9648
|
};
|
9262
9649
|
actions?: {
|
9263
9650
|
[name: string]: string[];
|
@@ -9458,7 +9845,7 @@ declare const _default: <T extends unknown>(props: {
|
|
9458
9845
|
events?: {
|
9459
9846
|
onLoaded?: string[];
|
9460
9847
|
onEditMode?: string[];
|
9461
|
-
|
9848
|
+
onSaving?: string[];
|
9462
9849
|
};
|
9463
9850
|
actions?: {
|
9464
9851
|
[name: string]: string[];
|
@@ -9659,7 +10046,7 @@ declare const _default: <T extends unknown>(props: {
|
|
9659
10046
|
events?: {
|
9660
10047
|
onLoaded?: string[];
|
9661
10048
|
onEditMode?: string[];
|
9662
|
-
|
10049
|
+
onSaving?: string[];
|
9663
10050
|
};
|
9664
10051
|
actions?: {
|
9665
10052
|
[name: string]: string[];
|
@@ -9860,7 +10247,7 @@ declare const _default: <T extends unknown>(props: {
|
|
9860
10247
|
events?: {
|
9861
10248
|
onLoaded?: string[];
|
9862
10249
|
onEditMode?: string[];
|
9863
|
-
|
10250
|
+
onSaving?: string[];
|
9864
10251
|
};
|
9865
10252
|
actions?: {
|
9866
10253
|
[name: string]: string[];
|
@@ -10068,6 +10455,49 @@ declare const _default: <T extends unknown>(props: {
|
|
10068
10455
|
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
10069
10456
|
};
|
10070
10457
|
get: {
|
10458
|
+
componentBlueprintStore: () => {
|
10459
|
+
state: {
|
10460
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
10461
|
+
};
|
10462
|
+
events: {
|
10463
|
+
onMutatedBlueprints: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
10464
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
10465
|
+
actions: {
|
10466
|
+
onDispatching: {
|
10467
|
+
setBlueprint: {
|
10468
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
10469
|
+
};
|
10470
|
+
setBluePrints: {
|
10471
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
10472
|
+
};
|
10473
|
+
};
|
10474
|
+
onDispatched: {
|
10475
|
+
setBlueprint: {
|
10476
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
10477
|
+
};
|
10478
|
+
setBluePrints: {
|
10479
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
10480
|
+
};
|
10481
|
+
};
|
10482
|
+
onFailure: {
|
10483
|
+
setBlueprint: {
|
10484
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
10485
|
+
};
|
10486
|
+
setBluePrints: {
|
10487
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
10488
|
+
};
|
10489
|
+
};
|
10490
|
+
} & {
|
10491
|
+
setBlueprint(type: "default"): void;
|
10492
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
10493
|
+
};
|
10494
|
+
get: {
|
10495
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
10496
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
10497
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
10498
|
+
};
|
10499
|
+
deactivated(): void;
|
10500
|
+
};
|
10071
10501
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic") => import("@omnia/fx-models").ColorSchema;
|
10072
10502
|
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
10073
10503
|
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|