@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 useTypographyBlueprintStore: () => {
|
|
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 useTypographyBlueprintStore: () => {
|
|
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 useTypographyBlueprintStore: () => {
|
|
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 useTypographyBlueprintStore: () => {
|
|
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 useTypographyBlueprintStore: () => {
|
|
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 useTypographyBlueprintStore: () => {
|
|
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 useTypographyBlueprintStore: () => {
|
|
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 useTypographyBlueprintStore: () => {
|
|
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;
|
@@ -1,6 +1,5 @@
|
|
1
1
|
import { useThemeStoreV2, useColorSchemaStore, useTypographyBlueprintStore, useSpacingBlueprintStore, useChromeBlueprintStore } from "@omnia/fx/ux";
|
2
2
|
import { ColorSchemaTypes, ThemeDefinitionV2 } from "@omnia/fx-models";
|
3
|
-
import { useComponentBlueprintStore } from "@omnia/fx/ux";
|
4
3
|
type themeType = "default" | "admin" | "preview" | "color-context";
|
5
4
|
declare const _default: {
|
6
5
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
@@ -29,7 +28,6 @@ declare const _default: {
|
|
29
28
|
typography: ReturnType<typeof useTypographyBlueprintStore>;
|
30
29
|
spacing: ReturnType<typeof useSpacingBlueprintStore>;
|
31
30
|
chrome: ReturnType<typeof useChromeBlueprintStore>;
|
32
|
-
components: ReturnType<typeof useComponentBlueprintStore>;
|
33
31
|
}) => any;
|
34
32
|
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
35
33
|
[key: string]: any;
|
@@ -40,7 +38,6 @@ declare const _default: {
|
|
40
38
|
typography: ReturnType<typeof useTypographyBlueprintStore>;
|
41
39
|
spacing: ReturnType<typeof useSpacingBlueprintStore>;
|
42
40
|
chrome: ReturnType<typeof useChromeBlueprintStore>;
|
43
|
-
components: ReturnType<typeof useComponentBlueprintStore>;
|
44
41
|
}) => any;
|
45
42
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
46
43
|
"color-schema-type": {
|
@@ -68,7 +65,6 @@ declare const _default: {
|
|
68
65
|
typography: ReturnType<typeof useTypographyBlueprintStore>;
|
69
66
|
spacing: ReturnType<typeof useSpacingBlueprintStore>;
|
70
67
|
chrome: ReturnType<typeof useChromeBlueprintStore>;
|
71
|
-
components: ReturnType<typeof useComponentBlueprintStore>;
|
72
68
|
}) => any;
|
73
69
|
}, {}, true, {}, {}, {
|
74
70
|
P: {};
|
@@ -103,7 +99,6 @@ declare const _default: {
|
|
103
99
|
typography: ReturnType<typeof useTypographyBlueprintStore>;
|
104
100
|
spacing: ReturnType<typeof useSpacingBlueprintStore>;
|
105
101
|
chrome: ReturnType<typeof useChromeBlueprintStore>;
|
106
|
-
components: ReturnType<typeof useComponentBlueprintStore>;
|
107
102
|
}) => any;
|
108
103
|
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
109
104
|
[key: string]: any;
|
@@ -137,7 +132,6 @@ declare const _default: {
|
|
137
132
|
typography: ReturnType<typeof useTypographyBlueprintStore>;
|
138
133
|
spacing: ReturnType<typeof useSpacingBlueprintStore>;
|
139
134
|
chrome: ReturnType<typeof useChromeBlueprintStore>;
|
140
|
-
components: ReturnType<typeof useComponentBlueprintStore>;
|
141
135
|
}) => any;
|
142
136
|
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
143
137
|
[key: string]: any;
|
@@ -148,7 +142,6 @@ declare const _default: {
|
|
148
142
|
typography: ReturnType<typeof useTypographyBlueprintStore>;
|
149
143
|
spacing: ReturnType<typeof useSpacingBlueprintStore>;
|
150
144
|
chrome: ReturnType<typeof useChromeBlueprintStore>;
|
151
|
-
components: ReturnType<typeof useComponentBlueprintStore>;
|
152
145
|
}) => any;
|
153
146
|
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
154
147
|
propsDefinition: Omit<Readonly<{} & {
|
@@ -165,7 +158,6 @@ declare const _default: {
|
|
165
158
|
typography: ReturnType<typeof useTypographyBlueprintStore>;
|
166
159
|
spacing: ReturnType<typeof useSpacingBlueprintStore>;
|
167
160
|
chrome: ReturnType<typeof useChromeBlueprintStore>;
|
168
|
-
components: ReturnType<typeof useComponentBlueprintStore>;
|
169
161
|
}) => any;
|
170
162
|
};
|
171
163
|
};
|
@@ -58,6 +58,49 @@ export declare function useColorSchemaSetup(props: object): {
|
|
58
58
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
59
59
|
};
|
60
60
|
get: {
|
61
|
+
componentBlueprintStore(): {
|
62
|
+
state: {
|
63
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
64
|
+
};
|
65
|
+
events: {
|
66
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
67
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
68
|
+
actions: {
|
69
|
+
onDispatching: {
|
70
|
+
setBlueprint: {
|
71
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
72
|
+
};
|
73
|
+
setBluePrints: {
|
74
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
75
|
+
};
|
76
|
+
};
|
77
|
+
onDispatched: {
|
78
|
+
setBlueprint: {
|
79
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
80
|
+
};
|
81
|
+
setBluePrints: {
|
82
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
83
|
+
};
|
84
|
+
};
|
85
|
+
onFailure: {
|
86
|
+
setBlueprint: {
|
87
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
88
|
+
};
|
89
|
+
setBluePrints: {
|
90
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
91
|
+
};
|
92
|
+
};
|
93
|
+
} & {
|
94
|
+
setBlueprint(type: "default"): void;
|
95
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
96
|
+
};
|
97
|
+
get: {
|
98
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
99
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
100
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
101
|
+
};
|
102
|
+
deactivated(): void;
|
103
|
+
};
|
61
104
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
62
105
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
63
106
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -110,6 +153,49 @@ export declare function useColorSchemaSetup(props: object): {
|
|
110
153
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
111
154
|
};
|
112
155
|
get: {
|
156
|
+
componentBlueprintStore(): {
|
157
|
+
state: {
|
158
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
159
|
+
};
|
160
|
+
events: {
|
161
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
162
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
163
|
+
actions: {
|
164
|
+
onDispatching: {
|
165
|
+
setBlueprint: {
|
166
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
167
|
+
};
|
168
|
+
setBluePrints: {
|
169
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
170
|
+
};
|
171
|
+
};
|
172
|
+
onDispatched: {
|
173
|
+
setBlueprint: {
|
174
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
175
|
+
};
|
176
|
+
setBluePrints: {
|
177
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
178
|
+
};
|
179
|
+
};
|
180
|
+
onFailure: {
|
181
|
+
setBlueprint: {
|
182
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
183
|
+
};
|
184
|
+
setBluePrints: {
|
185
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
186
|
+
};
|
187
|
+
};
|
188
|
+
} & {
|
189
|
+
setBlueprint(type: "default"): void;
|
190
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
191
|
+
};
|
192
|
+
get: {
|
193
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
194
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
195
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
196
|
+
};
|
197
|
+
deactivated(): void;
|
198
|
+
};
|
113
199
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
114
200
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
115
201
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -162,6 +248,49 @@ export declare function useColorSchemaSetup(props: object): {
|
|
162
248
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
163
249
|
};
|
164
250
|
get: {
|
251
|
+
componentBlueprintStore(): {
|
252
|
+
state: {
|
253
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
254
|
+
};
|
255
|
+
events: {
|
256
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
257
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
258
|
+
actions: {
|
259
|
+
onDispatching: {
|
260
|
+
setBlueprint: {
|
261
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
262
|
+
};
|
263
|
+
setBluePrints: {
|
264
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
265
|
+
};
|
266
|
+
};
|
267
|
+
onDispatched: {
|
268
|
+
setBlueprint: {
|
269
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
270
|
+
};
|
271
|
+
setBluePrints: {
|
272
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
273
|
+
};
|
274
|
+
};
|
275
|
+
onFailure: {
|
276
|
+
setBlueprint: {
|
277
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
278
|
+
};
|
279
|
+
setBluePrints: {
|
280
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
281
|
+
};
|
282
|
+
};
|
283
|
+
} & {
|
284
|
+
setBlueprint(type: "default"): void;
|
285
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
286
|
+
};
|
287
|
+
get: {
|
288
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
289
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
290
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
291
|
+
};
|
292
|
+
deactivated(): void;
|
293
|
+
};
|
165
294
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
166
295
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
167
296
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -207,6 +336,49 @@ export declare function useColorSchemaSetup(props: object): {
|
|
207
336
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
208
337
|
};
|
209
338
|
get: {
|
339
|
+
componentBlueprintStore(): {
|
340
|
+
state: {
|
341
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
342
|
+
};
|
343
|
+
events: {
|
344
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
345
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
346
|
+
actions: {
|
347
|
+
onDispatching: {
|
348
|
+
setBlueprint: {
|
349
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
350
|
+
};
|
351
|
+
setBluePrints: {
|
352
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
353
|
+
};
|
354
|
+
};
|
355
|
+
onDispatched: {
|
356
|
+
setBlueprint: {
|
357
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
358
|
+
};
|
359
|
+
setBluePrints: {
|
360
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
361
|
+
};
|
362
|
+
};
|
363
|
+
onFailure: {
|
364
|
+
setBlueprint: {
|
365
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
366
|
+
};
|
367
|
+
setBluePrints: {
|
368
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
369
|
+
};
|
370
|
+
};
|
371
|
+
} & {
|
372
|
+
setBlueprint(type: "default"): void;
|
373
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
374
|
+
};
|
375
|
+
get: {
|
376
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
377
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
378
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
379
|
+
};
|
380
|
+
deactivated(): void;
|
381
|
+
};
|
210
382
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
211
383
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
212
384
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -4164,7 +4336,7 @@ export declare function useColorSchemaSetup(props: object): {
|
|
4164
4336
|
events?: {
|
4165
4337
|
onLoaded?: string[];
|
4166
4338
|
onEditMode?: string[];
|
4167
|
-
|
4339
|
+
onSaving?: string[];
|
4168
4340
|
};
|
4169
4341
|
actions?: {
|
4170
4342
|
[name: string]: string[];
|
@@ -4365,7 +4537,7 @@ export declare function useColorSchemaSetup(props: object): {
|
|
4365
4537
|
events?: {
|
4366
4538
|
onLoaded?: string[];
|
4367
4539
|
onEditMode?: string[];
|
4368
|
-
|
4540
|
+
onSaving?: string[];
|
4369
4541
|
};
|
4370
4542
|
actions?: {
|
4371
4543
|
[name: string]: string[];
|
@@ -4566,7 +4738,7 @@ export declare function useColorSchemaSetup(props: object): {
|
|
4566
4738
|
events?: {
|
4567
4739
|
onLoaded?: string[];
|
4568
4740
|
onEditMode?: string[];
|
4569
|
-
|
4741
|
+
onSaving?: string[];
|
4570
4742
|
};
|
4571
4743
|
actions?: {
|
4572
4744
|
[name: string]: string[];
|
@@ -4767,7 +4939,7 @@ export declare function useColorSchemaSetup(props: object): {
|
|
4767
4939
|
events?: {
|
4768
4940
|
onLoaded?: string[];
|
4769
4941
|
onEditMode?: string[];
|
4770
|
-
|
4942
|
+
onSaving?: string[];
|
4771
4943
|
};
|
4772
4944
|
actions?: {
|
4773
4945
|
[name: string]: string[];
|
@@ -4975,6 +5147,49 @@ export declare function useColorSchemaSetup(props: object): {
|
|
4975
5147
|
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
4976
5148
|
};
|
4977
5149
|
get: {
|
5150
|
+
componentBlueprintStore: () => {
|
5151
|
+
state: {
|
5152
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5153
|
+
};
|
5154
|
+
events: {
|
5155
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
5156
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
5157
|
+
actions: {
|
5158
|
+
onDispatching: {
|
5159
|
+
setBlueprint: {
|
5160
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5161
|
+
};
|
5162
|
+
setBluePrints: {
|
5163
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5164
|
+
};
|
5165
|
+
};
|
5166
|
+
onDispatched: {
|
5167
|
+
setBlueprint: {
|
5168
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5169
|
+
};
|
5170
|
+
setBluePrints: {
|
5171
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5172
|
+
};
|
5173
|
+
};
|
5174
|
+
onFailure: {
|
5175
|
+
setBlueprint: {
|
5176
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5177
|
+
};
|
5178
|
+
setBluePrints: {
|
5179
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5180
|
+
};
|
5181
|
+
};
|
5182
|
+
} & {
|
5183
|
+
setBlueprint(type: "default"): void;
|
5184
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
5185
|
+
};
|
5186
|
+
get: {
|
5187
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
5188
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5189
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
5190
|
+
};
|
5191
|
+
deactivated(): void;
|
5192
|
+
};
|
4978
5193
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic") => import("@omnia/fx-models").ColorSchema;
|
4979
5194
|
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
4980
5195
|
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
@@ -96,10 +96,10 @@ export declare function useWebNotification(options?: UseWebNotificationOptions):
|
|
96
96
|
permissionGranted: Ref<boolean>;
|
97
97
|
show: (overrides?: WebNotificationOptions) => Promise<Notification>;
|
98
98
|
close: () => void;
|
99
|
-
onClick: import("
|
100
|
-
onShow: import("
|
101
|
-
onError: import("
|
102
|
-
onClose: import("
|
99
|
+
onClick: import("@omnia/fx-models").EventHookOn<any>;
|
100
|
+
onShow: import("@omnia/fx-models").EventHookOn<any>;
|
101
|
+
onError: import("@omnia/fx-models").EventHookOn<any>;
|
102
|
+
onClose: import("@omnia/fx-models").EventHookOn<any>;
|
103
103
|
};
|
104
104
|
export type UseWebNotificationReturn = ReturnType<typeof useWebNotification>;
|
105
105
|
export {};
|
@@ -6,7 +6,6 @@ export * from "./UseConfirm";
|
|
6
6
|
export * from "./UseVueInstance";
|
7
7
|
export * from "./UseJourney";
|
8
8
|
export { createValidator } from "./UseValidation";
|
9
|
-
export * from "./UseEventHook";
|
10
9
|
export * from "./UseClone";
|
11
10
|
export * from "./UseKeyboard";
|
12
11
|
export * from "./UseIndexedDb";
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./CreateEventHook";
|