@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
@@ -44,6 +44,49 @@ export declare const useSpacingBlueprintStore: () => {
|
|
44
44
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
45
45
|
};
|
46
46
|
get: {
|
47
|
+
componentBlueprintStore(): {
|
48
|
+
state: {
|
49
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
50
|
+
};
|
51
|
+
events: {
|
52
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
53
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
54
|
+
actions: {
|
55
|
+
onDispatching: {
|
56
|
+
setBlueprint: {
|
57
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
58
|
+
};
|
59
|
+
setBluePrints: {
|
60
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
61
|
+
};
|
62
|
+
};
|
63
|
+
onDispatched: {
|
64
|
+
setBlueprint: {
|
65
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
66
|
+
};
|
67
|
+
setBluePrints: {
|
68
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
69
|
+
};
|
70
|
+
};
|
71
|
+
onFailure: {
|
72
|
+
setBlueprint: {
|
73
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
74
|
+
};
|
75
|
+
setBluePrints: {
|
76
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
77
|
+
};
|
78
|
+
};
|
79
|
+
} & {
|
80
|
+
setBlueprint(type: "default"): void;
|
81
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
82
|
+
};
|
83
|
+
get: {
|
84
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
85
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
86
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
87
|
+
};
|
88
|
+
deactivated(): void;
|
89
|
+
};
|
47
90
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
48
91
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
49
92
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -90,6 +133,49 @@ export declare const useSpacingBlueprintStore: () => {
|
|
90
133
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
91
134
|
};
|
92
135
|
get: {
|
136
|
+
componentBlueprintStore(): {
|
137
|
+
state: {
|
138
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
139
|
+
};
|
140
|
+
events: {
|
141
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
142
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
143
|
+
actions: {
|
144
|
+
onDispatching: {
|
145
|
+
setBlueprint: {
|
146
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
147
|
+
};
|
148
|
+
setBluePrints: {
|
149
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
150
|
+
};
|
151
|
+
};
|
152
|
+
onDispatched: {
|
153
|
+
setBlueprint: {
|
154
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
155
|
+
};
|
156
|
+
setBluePrints: {
|
157
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
158
|
+
};
|
159
|
+
};
|
160
|
+
onFailure: {
|
161
|
+
setBlueprint: {
|
162
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
163
|
+
};
|
164
|
+
setBluePrints: {
|
165
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
166
|
+
};
|
167
|
+
};
|
168
|
+
} & {
|
169
|
+
setBlueprint(type: "default"): void;
|
170
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
171
|
+
};
|
172
|
+
get: {
|
173
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
174
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
175
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
176
|
+
};
|
177
|
+
deactivated(): void;
|
178
|
+
};
|
93
179
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
94
180
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
95
181
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -136,6 +222,49 @@ export declare const useSpacingBlueprintStore: () => {
|
|
136
222
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
137
223
|
};
|
138
224
|
get: {
|
225
|
+
componentBlueprintStore(): {
|
226
|
+
state: {
|
227
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
228
|
+
};
|
229
|
+
events: {
|
230
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
231
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
232
|
+
actions: {
|
233
|
+
onDispatching: {
|
234
|
+
setBlueprint: {
|
235
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
236
|
+
};
|
237
|
+
setBluePrints: {
|
238
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
239
|
+
};
|
240
|
+
};
|
241
|
+
onDispatched: {
|
242
|
+
setBlueprint: {
|
243
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
244
|
+
};
|
245
|
+
setBluePrints: {
|
246
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
247
|
+
};
|
248
|
+
};
|
249
|
+
onFailure: {
|
250
|
+
setBlueprint: {
|
251
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
252
|
+
};
|
253
|
+
setBluePrints: {
|
254
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
255
|
+
};
|
256
|
+
};
|
257
|
+
} & {
|
258
|
+
setBlueprint(type: "default"): void;
|
259
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
260
|
+
};
|
261
|
+
get: {
|
262
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
263
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
264
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
265
|
+
};
|
266
|
+
deactivated(): void;
|
267
|
+
};
|
139
268
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
140
269
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
141
270
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -4098,7 +4227,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
4098
4227
|
events?: {
|
4099
4228
|
onLoaded?: string[];
|
4100
4229
|
onEditMode?: string[];
|
4101
|
-
|
4230
|
+
onSaving?: string[];
|
4102
4231
|
};
|
4103
4232
|
actions?: {
|
4104
4233
|
[name: string]: string[];
|
@@ -4299,7 +4428,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
4299
4428
|
events?: {
|
4300
4429
|
onLoaded?: string[];
|
4301
4430
|
onEditMode?: string[];
|
4302
|
-
|
4431
|
+
onSaving?: string[];
|
4303
4432
|
};
|
4304
4433
|
actions?: {
|
4305
4434
|
[name: string]: string[];
|
@@ -4500,7 +4629,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
4500
4629
|
events?: {
|
4501
4630
|
onLoaded?: string[];
|
4502
4631
|
onEditMode?: string[];
|
4503
|
-
|
4632
|
+
onSaving?: string[];
|
4504
4633
|
};
|
4505
4634
|
actions?: {
|
4506
4635
|
[name: string]: string[];
|
@@ -4701,7 +4830,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
4701
4830
|
events?: {
|
4702
4831
|
onLoaded?: string[];
|
4703
4832
|
onEditMode?: string[];
|
4704
|
-
|
4833
|
+
onSaving?: string[];
|
4705
4834
|
};
|
4706
4835
|
actions?: {
|
4707
4836
|
[name: string]: string[];
|
@@ -4909,6 +5038,49 @@ export declare const useSpacingBlueprintStore: () => {
|
|
4909
5038
|
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
4910
5039
|
};
|
4911
5040
|
get: {
|
5041
|
+
componentBlueprintStore: () => {
|
5042
|
+
state: {
|
5043
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5044
|
+
};
|
5045
|
+
events: {
|
5046
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
5047
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
5048
|
+
actions: {
|
5049
|
+
onDispatching: {
|
5050
|
+
setBlueprint: {
|
5051
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5052
|
+
};
|
5053
|
+
setBluePrints: {
|
5054
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5055
|
+
};
|
5056
|
+
};
|
5057
|
+
onDispatched: {
|
5058
|
+
setBlueprint: {
|
5059
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5060
|
+
};
|
5061
|
+
setBluePrints: {
|
5062
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5063
|
+
};
|
5064
|
+
};
|
5065
|
+
onFailure: {
|
5066
|
+
setBlueprint: {
|
5067
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5068
|
+
};
|
5069
|
+
setBluePrints: {
|
5070
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5071
|
+
};
|
5072
|
+
};
|
5073
|
+
} & {
|
5074
|
+
setBlueprint(type: "default"): void;
|
5075
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
5076
|
+
};
|
5077
|
+
get: {
|
5078
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
5079
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5080
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
5081
|
+
};
|
5082
|
+
deactivated(): void;
|
5083
|
+
};
|
4912
5084
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic") => import("@omnia/fx-models").ColorSchema;
|
4913
5085
|
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
4914
5086
|
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|