@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
@@ -74,6 +74,49 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
74
74
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
75
75
|
};
|
76
76
|
get: {
|
77
|
+
componentBlueprintStore(): {
|
78
|
+
state: {
|
79
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
80
|
+
};
|
81
|
+
events: {
|
82
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
83
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
84
|
+
actions: {
|
85
|
+
onDispatching: {
|
86
|
+
setBlueprint: {
|
87
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
88
|
+
};
|
89
|
+
setBluePrints: {
|
90
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
91
|
+
};
|
92
|
+
};
|
93
|
+
onDispatched: {
|
94
|
+
setBlueprint: {
|
95
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
96
|
+
};
|
97
|
+
setBluePrints: {
|
98
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
99
|
+
};
|
100
|
+
};
|
101
|
+
onFailure: {
|
102
|
+
setBlueprint: {
|
103
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
104
|
+
};
|
105
|
+
setBluePrints: {
|
106
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
107
|
+
};
|
108
|
+
};
|
109
|
+
} & {
|
110
|
+
setBlueprint(type: "default"): void;
|
111
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
112
|
+
};
|
113
|
+
get: {
|
114
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
115
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
116
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
117
|
+
};
|
118
|
+
deactivated(): void;
|
119
|
+
};
|
77
120
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
78
121
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
79
122
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -126,6 +169,49 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
126
169
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
127
170
|
};
|
128
171
|
get: {
|
172
|
+
componentBlueprintStore(): {
|
173
|
+
state: {
|
174
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
175
|
+
};
|
176
|
+
events: {
|
177
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
178
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
179
|
+
actions: {
|
180
|
+
onDispatching: {
|
181
|
+
setBlueprint: {
|
182
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
183
|
+
};
|
184
|
+
setBluePrints: {
|
185
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
186
|
+
};
|
187
|
+
};
|
188
|
+
onDispatched: {
|
189
|
+
setBlueprint: {
|
190
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
191
|
+
};
|
192
|
+
setBluePrints: {
|
193
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
194
|
+
};
|
195
|
+
};
|
196
|
+
onFailure: {
|
197
|
+
setBlueprint: {
|
198
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
199
|
+
};
|
200
|
+
setBluePrints: {
|
201
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
202
|
+
};
|
203
|
+
};
|
204
|
+
} & {
|
205
|
+
setBlueprint(type: "default"): void;
|
206
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
207
|
+
};
|
208
|
+
get: {
|
209
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
210
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
211
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
212
|
+
};
|
213
|
+
deactivated(): void;
|
214
|
+
};
|
129
215
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
130
216
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
131
217
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -178,6 +264,49 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
178
264
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
179
265
|
};
|
180
266
|
get: {
|
267
|
+
componentBlueprintStore(): {
|
268
|
+
state: {
|
269
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
270
|
+
};
|
271
|
+
events: {
|
272
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
273
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
274
|
+
actions: {
|
275
|
+
onDispatching: {
|
276
|
+
setBlueprint: {
|
277
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
278
|
+
};
|
279
|
+
setBluePrints: {
|
280
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
281
|
+
};
|
282
|
+
};
|
283
|
+
onDispatched: {
|
284
|
+
setBlueprint: {
|
285
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
286
|
+
};
|
287
|
+
setBluePrints: {
|
288
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
289
|
+
};
|
290
|
+
};
|
291
|
+
onFailure: {
|
292
|
+
setBlueprint: {
|
293
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
294
|
+
};
|
295
|
+
setBluePrints: {
|
296
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
297
|
+
};
|
298
|
+
};
|
299
|
+
} & {
|
300
|
+
setBlueprint(type: "default"): void;
|
301
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
302
|
+
};
|
303
|
+
get: {
|
304
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
305
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
306
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
307
|
+
};
|
308
|
+
deactivated(): void;
|
309
|
+
};
|
181
310
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
182
311
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
183
312
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -223,6 +352,49 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
223
352
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
224
353
|
};
|
225
354
|
get: {
|
355
|
+
componentBlueprintStore(): {
|
356
|
+
state: {
|
357
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
358
|
+
};
|
359
|
+
events: {
|
360
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
361
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
362
|
+
actions: {
|
363
|
+
onDispatching: {
|
364
|
+
setBlueprint: {
|
365
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
366
|
+
};
|
367
|
+
setBluePrints: {
|
368
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
369
|
+
};
|
370
|
+
};
|
371
|
+
onDispatched: {
|
372
|
+
setBlueprint: {
|
373
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
374
|
+
};
|
375
|
+
setBluePrints: {
|
376
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
377
|
+
};
|
378
|
+
};
|
379
|
+
onFailure: {
|
380
|
+
setBlueprint: {
|
381
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
382
|
+
};
|
383
|
+
setBluePrints: {
|
384
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
385
|
+
};
|
386
|
+
};
|
387
|
+
} & {
|
388
|
+
setBlueprint(type: "default"): void;
|
389
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
390
|
+
};
|
391
|
+
get: {
|
392
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
393
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
394
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
395
|
+
};
|
396
|
+
deactivated(): void;
|
397
|
+
};
|
226
398
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
227
399
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
228
400
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -4180,7 +4352,7 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
4180
4352
|
events?: {
|
4181
4353
|
onLoaded?: string[];
|
4182
4354
|
onEditMode?: string[];
|
4183
|
-
|
4355
|
+
onSaving?: string[];
|
4184
4356
|
};
|
4185
4357
|
actions?: {
|
4186
4358
|
[name: string]: string[];
|
@@ -4381,7 +4553,7 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
4381
4553
|
events?: {
|
4382
4554
|
onLoaded?: string[];
|
4383
4555
|
onEditMode?: string[];
|
4384
|
-
|
4556
|
+
onSaving?: string[];
|
4385
4557
|
};
|
4386
4558
|
actions?: {
|
4387
4559
|
[name: string]: string[];
|
@@ -4582,7 +4754,7 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
4582
4754
|
events?: {
|
4583
4755
|
onLoaded?: string[];
|
4584
4756
|
onEditMode?: string[];
|
4585
|
-
|
4757
|
+
onSaving?: string[];
|
4586
4758
|
};
|
4587
4759
|
actions?: {
|
4588
4760
|
[name: string]: string[];
|
@@ -4783,7 +4955,7 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
4783
4955
|
events?: {
|
4784
4956
|
onLoaded?: string[];
|
4785
4957
|
onEditMode?: string[];
|
4786
|
-
|
4958
|
+
onSaving?: string[];
|
4787
4959
|
};
|
4788
4960
|
actions?: {
|
4789
4961
|
[name: string]: string[];
|
@@ -4991,6 +5163,49 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
4991
5163
|
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
4992
5164
|
};
|
4993
5165
|
get: {
|
5166
|
+
componentBlueprintStore: () => {
|
5167
|
+
state: {
|
5168
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5169
|
+
};
|
5170
|
+
events: {
|
5171
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
5172
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
5173
|
+
actions: {
|
5174
|
+
onDispatching: {
|
5175
|
+
setBlueprint: {
|
5176
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5177
|
+
};
|
5178
|
+
setBluePrints: {
|
5179
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5180
|
+
};
|
5181
|
+
};
|
5182
|
+
onDispatched: {
|
5183
|
+
setBlueprint: {
|
5184
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5185
|
+
};
|
5186
|
+
setBluePrints: {
|
5187
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5188
|
+
};
|
5189
|
+
};
|
5190
|
+
onFailure: {
|
5191
|
+
setBlueprint: {
|
5192
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5193
|
+
};
|
5194
|
+
setBluePrints: {
|
5195
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5196
|
+
};
|
5197
|
+
};
|
5198
|
+
} & {
|
5199
|
+
setBlueprint(type: "default"): void;
|
5200
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
5201
|
+
};
|
5202
|
+
get: {
|
5203
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
5204
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5205
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
5206
|
+
};
|
5207
|
+
deactivated(): void;
|
5208
|
+
};
|
4994
5209
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic") => import("@omnia/fx-models").ColorSchema;
|
4995
5210
|
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
4996
5211
|
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
@@ -5177,6 +5392,49 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
5177
5392
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
5178
5393
|
};
|
5179
5394
|
get: {
|
5395
|
+
componentBlueprintStore(): {
|
5396
|
+
state: {
|
5397
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5398
|
+
};
|
5399
|
+
events: {
|
5400
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
5401
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
5402
|
+
actions: {
|
5403
|
+
onDispatching: {
|
5404
|
+
setBlueprint: {
|
5405
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5406
|
+
};
|
5407
|
+
setBluePrints: {
|
5408
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5409
|
+
};
|
5410
|
+
};
|
5411
|
+
onDispatched: {
|
5412
|
+
setBlueprint: {
|
5413
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5414
|
+
};
|
5415
|
+
setBluePrints: {
|
5416
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5417
|
+
};
|
5418
|
+
};
|
5419
|
+
onFailure: {
|
5420
|
+
setBlueprint: {
|
5421
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5422
|
+
};
|
5423
|
+
setBluePrints: {
|
5424
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5425
|
+
};
|
5426
|
+
};
|
5427
|
+
} & {
|
5428
|
+
setBlueprint(type: "default"): void;
|
5429
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
5430
|
+
};
|
5431
|
+
get: {
|
5432
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
5433
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5434
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
5435
|
+
};
|
5436
|
+
deactivated(): void;
|
5437
|
+
};
|
5180
5438
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
5181
5439
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
5182
5440
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -5229,6 +5487,49 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
5229
5487
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
5230
5488
|
};
|
5231
5489
|
get: {
|
5490
|
+
componentBlueprintStore(): {
|
5491
|
+
state: {
|
5492
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5493
|
+
};
|
5494
|
+
events: {
|
5495
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
5496
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
5497
|
+
actions: {
|
5498
|
+
onDispatching: {
|
5499
|
+
setBlueprint: {
|
5500
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5501
|
+
};
|
5502
|
+
setBluePrints: {
|
5503
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5504
|
+
};
|
5505
|
+
};
|
5506
|
+
onDispatched: {
|
5507
|
+
setBlueprint: {
|
5508
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5509
|
+
};
|
5510
|
+
setBluePrints: {
|
5511
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5512
|
+
};
|
5513
|
+
};
|
5514
|
+
onFailure: {
|
5515
|
+
setBlueprint: {
|
5516
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5517
|
+
};
|
5518
|
+
setBluePrints: {
|
5519
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5520
|
+
};
|
5521
|
+
};
|
5522
|
+
} & {
|
5523
|
+
setBlueprint(type: "default"): void;
|
5524
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
5525
|
+
};
|
5526
|
+
get: {
|
5527
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
5528
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5529
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
5530
|
+
};
|
5531
|
+
deactivated(): void;
|
5532
|
+
};
|
5232
5533
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
5233
5534
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
5234
5535
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -5281,6 +5582,49 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
5281
5582
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
5282
5583
|
};
|
5283
5584
|
get: {
|
5585
|
+
componentBlueprintStore(): {
|
5586
|
+
state: {
|
5587
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5588
|
+
};
|
5589
|
+
events: {
|
5590
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
5591
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
5592
|
+
actions: {
|
5593
|
+
onDispatching: {
|
5594
|
+
setBlueprint: {
|
5595
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5596
|
+
};
|
5597
|
+
setBluePrints: {
|
5598
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5599
|
+
};
|
5600
|
+
};
|
5601
|
+
onDispatched: {
|
5602
|
+
setBlueprint: {
|
5603
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5604
|
+
};
|
5605
|
+
setBluePrints: {
|
5606
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5607
|
+
};
|
5608
|
+
};
|
5609
|
+
onFailure: {
|
5610
|
+
setBlueprint: {
|
5611
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5612
|
+
};
|
5613
|
+
setBluePrints: {
|
5614
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5615
|
+
};
|
5616
|
+
};
|
5617
|
+
} & {
|
5618
|
+
setBlueprint(type: "default"): void;
|
5619
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
5620
|
+
};
|
5621
|
+
get: {
|
5622
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
5623
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5624
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
5625
|
+
};
|
5626
|
+
deactivated(): void;
|
5627
|
+
};
|
5284
5628
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
5285
5629
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
5286
5630
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -5326,6 +5670,49 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
5326
5670
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
5327
5671
|
};
|
5328
5672
|
get: {
|
5673
|
+
componentBlueprintStore(): {
|
5674
|
+
state: {
|
5675
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5676
|
+
};
|
5677
|
+
events: {
|
5678
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
5679
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
5680
|
+
actions: {
|
5681
|
+
onDispatching: {
|
5682
|
+
setBlueprint: {
|
5683
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5684
|
+
};
|
5685
|
+
setBluePrints: {
|
5686
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5687
|
+
};
|
5688
|
+
};
|
5689
|
+
onDispatched: {
|
5690
|
+
setBlueprint: {
|
5691
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5692
|
+
};
|
5693
|
+
setBluePrints: {
|
5694
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5695
|
+
};
|
5696
|
+
};
|
5697
|
+
onFailure: {
|
5698
|
+
setBlueprint: {
|
5699
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5700
|
+
};
|
5701
|
+
setBluePrints: {
|
5702
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5703
|
+
};
|
5704
|
+
};
|
5705
|
+
} & {
|
5706
|
+
setBlueprint(type: "default"): void;
|
5707
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
5708
|
+
};
|
5709
|
+
get: {
|
5710
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
5711
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5712
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
5713
|
+
};
|
5714
|
+
deactivated(): void;
|
5715
|
+
};
|
5329
5716
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
5330
5717
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
5331
5718
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -9283,7 +9670,7 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
9283
9670
|
events?: {
|
9284
9671
|
onLoaded?: string[];
|
9285
9672
|
onEditMode?: string[];
|
9286
|
-
|
9673
|
+
onSaving?: string[];
|
9287
9674
|
};
|
9288
9675
|
actions?: {
|
9289
9676
|
[name: string]: string[];
|
@@ -9484,7 +9871,7 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
9484
9871
|
events?: {
|
9485
9872
|
onLoaded?: string[];
|
9486
9873
|
onEditMode?: string[];
|
9487
|
-
|
9874
|
+
onSaving?: string[];
|
9488
9875
|
};
|
9489
9876
|
actions?: {
|
9490
9877
|
[name: string]: string[];
|
@@ -9685,7 +10072,7 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
9685
10072
|
events?: {
|
9686
10073
|
onLoaded?: string[];
|
9687
10074
|
onEditMode?: string[];
|
9688
|
-
|
10075
|
+
onSaving?: string[];
|
9689
10076
|
};
|
9690
10077
|
actions?: {
|
9691
10078
|
[name: string]: string[];
|
@@ -9886,7 +10273,7 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
9886
10273
|
events?: {
|
9887
10274
|
onLoaded?: string[];
|
9888
10275
|
onEditMode?: string[];
|
9889
|
-
|
10276
|
+
onSaving?: string[];
|
9890
10277
|
};
|
9891
10278
|
actions?: {
|
9892
10279
|
[name: string]: string[];
|
@@ -10094,6 +10481,49 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
10094
10481
|
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
10095
10482
|
};
|
10096
10483
|
get: {
|
10484
|
+
componentBlueprintStore: () => {
|
10485
|
+
state: {
|
10486
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
10487
|
+
};
|
10488
|
+
events: {
|
10489
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
10490
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
10491
|
+
actions: {
|
10492
|
+
onDispatching: {
|
10493
|
+
setBlueprint: {
|
10494
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
10495
|
+
};
|
10496
|
+
setBluePrints: {
|
10497
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
10498
|
+
};
|
10499
|
+
};
|
10500
|
+
onDispatched: {
|
10501
|
+
setBlueprint: {
|
10502
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
10503
|
+
};
|
10504
|
+
setBluePrints: {
|
10505
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
10506
|
+
};
|
10507
|
+
};
|
10508
|
+
onFailure: {
|
10509
|
+
setBlueprint: {
|
10510
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
10511
|
+
};
|
10512
|
+
setBluePrints: {
|
10513
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
10514
|
+
};
|
10515
|
+
};
|
10516
|
+
} & {
|
10517
|
+
setBlueprint(type: "default"): void;
|
10518
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
10519
|
+
};
|
10520
|
+
get: {
|
10521
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
10522
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
10523
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
10524
|
+
};
|
10525
|
+
deactivated(): void;
|
10526
|
+
};
|
10097
10527
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic") => import("@omnia/fx-models").ColorSchema;
|
10098
10528
|
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
10099
10529
|
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
@@ -37,7 +37,7 @@ export declare const useThemeEditorStore: () => {
|
|
37
37
|
subscribe(fn: (result: void, definition: ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
38
38
|
};
|
39
39
|
save: {
|
40
|
-
subscribe(fn: (result:
|
40
|
+
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
41
41
|
};
|
42
42
|
delete: {
|
43
43
|
subscribe(fn: (result: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -64,7 +64,7 @@ export declare const useThemeEditorStore: () => {
|
|
64
64
|
addThemeDefinition(): void;
|
65
65
|
editThemeDefinition(definition: ITemplateRegistration<ThemeDefinitionV2>): void;
|
66
66
|
copyDefinition(definition: ThemeDefinitionV2): void;
|
67
|
-
save(): Promise<
|
67
|
+
save(): Promise<void>;
|
68
68
|
delete(): Promise<boolean>;
|
69
69
|
};
|
70
70
|
get: {};
|