@omnia/fx 8.0.135-dev → 8.0.136-dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/internal-do-not-import-from-here/ux/colorpickerV2/ColorPicker.css.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/colorpickerV2/ColorPicker.d.ts +29 -0
- package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaPicker.d.ts +29 -0
- package/internal-do-not-import-from-here/ux/journey/JourneyPlaceHolder.d.ts +3 -38
- package/internal-do-not-import-from-here/ux/journey/JourneyRouter.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/colorpicker/ColorPicker.d.ts +29 -0
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.css.d.ts +219 -4
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +438 -8
- package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +29 -0
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +438 -8
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/themes/store/ThemeEditorStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/store/BlueprintTemplatesStore.d.ts +11 -1
- package/internal-do-not-import-from-here/ux/theming-v2/store/ChromeBlueprintStore.d.ts +176 -4
- package/internal-do-not-import-from-here/ux/theming-v2/store/ColorSchemaDefinitionStore.d.ts +15 -5
- package/internal-do-not-import-from-here/ux/theming-v2/store/ColorSchemaStore.d.ts +176 -4
- package/internal-do-not-import-from-here/ux/theming-v2/store/ComponentBlueprintStore.d.ts +13 -4897
- package/internal-do-not-import-from-here/ux/theming-v2/store/SpacingBlueprintStore.d.ts +176 -4
- package/internal-do-not-import-from-here/ux/theming-v2/store/ThemeContextStore.d.ts +406 -0
- package/internal-do-not-import-from-here/ux/theming-v2/store/ThemeDefinitionStoreV2.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/store/ThemeStoreV2.d.ts +43 -0
- package/internal-do-not-import-from-here/ux/theming-v2/store/TypographyBlueprintStore.d.ts +176 -4
- package/internal-do-not-import-from-here/ux/theming-v2/themeprovider/ThemeProvider.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +219 -4
- package/internal-do-not-import-from-here/ux/use/UseWebNotification.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/use/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/velcron/core/events/CreateEventHook.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/velcron/core/events/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/core/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/versionedlayout/blade/VersionedLayoutBladeBuilder.d.ts +11 -3
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/use/UseEventHook.d.ts +0 -14
@@ -1,5 +1,6 @@
|
|
1
1
|
export declare const ColorPickerStyles: {
|
2
2
|
separator: (dark: boolean) => string;
|
3
|
-
colorPreview: (color: string, border: string, selected: boolean) => string;
|
3
|
+
colorPreview: (color: string, border: string, selected: boolean, disabled: boolean) => string;
|
4
|
+
disabled: (disabled: boolean) => string;
|
4
5
|
selected: (color: string) => string;
|
5
6
|
};
|
@@ -2,6 +2,13 @@ import { ColorValue } from "@omnia/fx-models";
|
|
2
2
|
export type ColorPickerType = "default" | "base" | "onBase";
|
3
3
|
declare const _default: {
|
4
4
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
5
|
+
disabled: {
|
6
|
+
type: import("vue").PropType<boolean>;
|
7
|
+
required: false;
|
8
|
+
} & {
|
9
|
+
type: import("vue").PropType<boolean>;
|
10
|
+
required: false;
|
11
|
+
};
|
5
12
|
label: {
|
6
13
|
type: import("vue").PropType<string>;
|
7
14
|
} & {
|
@@ -115,6 +122,13 @@ declare const _default: {
|
|
115
122
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
116
123
|
"update:modelValue": (value: ColorValue) => any;
|
117
124
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
125
|
+
disabled: {
|
126
|
+
type: import("vue").PropType<boolean>;
|
127
|
+
required: false;
|
128
|
+
} & {
|
129
|
+
type: import("vue").PropType<boolean>;
|
130
|
+
required: false;
|
131
|
+
};
|
118
132
|
label: {
|
119
133
|
type: import("vue").PropType<string>;
|
120
134
|
} & {
|
@@ -237,6 +251,13 @@ declare const _default: {
|
|
237
251
|
M: {};
|
238
252
|
Defaults: {};
|
239
253
|
}, Readonly<import("vue").ExtractPropTypes<{
|
254
|
+
disabled: {
|
255
|
+
type: import("vue").PropType<boolean>;
|
256
|
+
required: false;
|
257
|
+
} & {
|
258
|
+
type: import("vue").PropType<boolean>;
|
259
|
+
required: false;
|
260
|
+
};
|
240
261
|
label: {
|
241
262
|
type: import("vue").PropType<string>;
|
242
263
|
} & {
|
@@ -356,6 +377,13 @@ declare const _default: {
|
|
356
377
|
__isTeleport?: never;
|
357
378
|
__isSuspense?: never;
|
358
379
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
380
|
+
disabled: {
|
381
|
+
type: import("vue").PropType<boolean>;
|
382
|
+
required: false;
|
383
|
+
} & {
|
384
|
+
type: import("vue").PropType<boolean>;
|
385
|
+
required: false;
|
386
|
+
};
|
359
387
|
label: {
|
360
388
|
type: import("vue").PropType<string>;
|
361
389
|
} & {
|
@@ -541,6 +569,7 @@ declare const _default: {
|
|
541
569
|
}>;
|
542
570
|
};
|
543
571
|
label?: string;
|
572
|
+
disabled?: boolean;
|
544
573
|
toned?: boolean;
|
545
574
|
"v-model"?: ColorValue;
|
546
575
|
"onUpdate:modelValue"?: (value: ColorValue) => any;
|
@@ -8,6 +8,13 @@ declare const _default: {
|
|
8
8
|
} & {
|
9
9
|
activator?: () => VNodeChild;
|
10
10
|
}>;
|
11
|
+
disabled: {
|
12
|
+
type: import("vue").PropType<boolean>;
|
13
|
+
required: false;
|
14
|
+
} & {
|
15
|
+
type: import("vue").PropType<boolean>;
|
16
|
+
required: false;
|
17
|
+
};
|
11
18
|
title: {
|
12
19
|
type: import("vue").PropType<string>;
|
13
20
|
} & {
|
@@ -134,6 +141,13 @@ declare const _default: {
|
|
134
141
|
} & {
|
135
142
|
activator?: () => VNodeChild;
|
136
143
|
}>;
|
144
|
+
disabled: {
|
145
|
+
type: import("vue").PropType<boolean>;
|
146
|
+
required: false;
|
147
|
+
} & {
|
148
|
+
type: import("vue").PropType<boolean>;
|
149
|
+
required: false;
|
150
|
+
};
|
137
151
|
title: {
|
138
152
|
type: import("vue").PropType<string>;
|
139
153
|
} & {
|
@@ -267,6 +281,13 @@ declare const _default: {
|
|
267
281
|
} & {
|
268
282
|
activator?: () => VNodeChild;
|
269
283
|
}>;
|
284
|
+
disabled: {
|
285
|
+
type: import("vue").PropType<boolean>;
|
286
|
+
required: false;
|
287
|
+
} & {
|
288
|
+
type: import("vue").PropType<boolean>;
|
289
|
+
required: false;
|
290
|
+
};
|
270
291
|
title: {
|
271
292
|
type: import("vue").PropType<string>;
|
272
293
|
} & {
|
@@ -397,6 +418,13 @@ declare const _default: {
|
|
397
418
|
} & {
|
398
419
|
activator?: () => VNodeChild;
|
399
420
|
}>;
|
421
|
+
disabled: {
|
422
|
+
type: import("vue").PropType<boolean>;
|
423
|
+
required: false;
|
424
|
+
} & {
|
425
|
+
type: import("vue").PropType<boolean>;
|
426
|
+
required: false;
|
427
|
+
};
|
400
428
|
title: {
|
401
429
|
type: import("vue").PropType<string>;
|
402
430
|
} & {
|
@@ -591,6 +619,7 @@ declare const _default: {
|
|
591
619
|
};
|
592
620
|
class?: String | String[];
|
593
621
|
label?: string;
|
622
|
+
disabled?: boolean;
|
594
623
|
themeDefinition?: ThemeDefinitionV2;
|
595
624
|
"v-model"?: "info" | "error" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic" | ColorSchema;
|
596
625
|
"onUpdate:modelValue"?: (value: "info" | "error" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic" | ColorSchema) => any;
|
@@ -11,28 +11,12 @@ export interface DisabledButtonTooltips {
|
|
11
11
|
}
|
12
12
|
declare const _default: {
|
13
13
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
14
|
-
size: {
|
15
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
16
|
-
required: false;
|
17
|
-
} & {
|
18
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
19
|
-
required: false;
|
20
|
-
};
|
21
14
|
id: {
|
22
15
|
type: import("vue").PropType<GuidValue>;
|
23
16
|
} & {
|
24
17
|
type: import("vue").PropType<GuidValue>;
|
25
18
|
};
|
26
|
-
}>>, () => import("vue").
|
27
|
-
[key: string]: any;
|
28
|
-
}>[], unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
29
|
-
size: {
|
30
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
31
|
-
required: false;
|
32
|
-
} & {
|
33
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
34
|
-
required: false;
|
35
|
-
};
|
19
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
36
20
|
id: {
|
37
21
|
type: import("vue").PropType<GuidValue>;
|
38
22
|
} & {
|
@@ -46,43 +30,24 @@ declare const _default: {
|
|
46
30
|
M: {};
|
47
31
|
Defaults: {};
|
48
32
|
}, Readonly<import("vue").ExtractPropTypes<{
|
49
|
-
size: {
|
50
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
51
|
-
required: false;
|
52
|
-
} & {
|
53
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
54
|
-
required: false;
|
55
|
-
};
|
56
33
|
id: {
|
57
34
|
type: import("vue").PropType<GuidValue>;
|
58
35
|
} & {
|
59
36
|
type: import("vue").PropType<GuidValue>;
|
60
37
|
};
|
61
|
-
}>>, () =>
|
62
|
-
[key: string]: any;
|
63
|
-
}>[], {}, {}, {}, {}>;
|
38
|
+
}>>, () => JSX.Element, {}, {}, {}, {}>;
|
64
39
|
__isFragment?: never;
|
65
40
|
__isTeleport?: never;
|
66
41
|
__isSuspense?: never;
|
67
42
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
68
|
-
size: {
|
69
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
70
|
-
required: false;
|
71
|
-
} & {
|
72
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
73
|
-
required: false;
|
74
|
-
};
|
75
43
|
id: {
|
76
44
|
type: import("vue").PropType<GuidValue>;
|
77
45
|
} & {
|
78
46
|
type: import("vue").PropType<GuidValue>;
|
79
47
|
};
|
80
|
-
}>>, () => import("vue").
|
81
|
-
[key: string]: any;
|
82
|
-
}>[], unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
48
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
83
49
|
propsDefinition: Omit<Readonly<{} & {
|
84
50
|
id?: GuidValue;
|
85
|
-
size?: "small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space";
|
86
51
|
}>, never>;
|
87
52
|
};
|
88
53
|
export default _default;
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { GuidValue } from "@omnia/fx-models";
|
2
|
+
export type JourneyBladeRouterState = {
|
3
|
+
[name: string]: string | boolean | number | GuidValue;
|
4
|
+
};
|
5
|
+
export declare const journeyRouter: () => {
|
6
|
+
getBladeState: (bladeId: GuidValue) => JourneyBladeRouterState;
|
7
|
+
addOrUpdateBladeState: (bladeId: GuidValue, state: JourneyBladeRouterState) => void;
|
8
|
+
};
|
@@ -37,9 +37,9 @@ declare const _default: {
|
|
37
37
|
type: import("vue").PropType<boolean>;
|
38
38
|
};
|
39
39
|
variant: {
|
40
|
-
type: import("vue").PropType<"default" | "
|
40
|
+
type: import("vue").PropType<"default" | "chrome" | "app">;
|
41
41
|
} & {
|
42
|
-
type: import("vue").PropType<"default" | "
|
42
|
+
type: import("vue").PropType<"default" | "chrome" | "app">;
|
43
43
|
};
|
44
44
|
absolute: {
|
45
45
|
type: import("vue").PropType<boolean>;
|
@@ -100,9 +100,9 @@ declare const _default: {
|
|
100
100
|
type: import("vue").PropType<boolean>;
|
101
101
|
};
|
102
102
|
variant: {
|
103
|
-
type: import("vue").PropType<"default" | "
|
103
|
+
type: import("vue").PropType<"default" | "chrome" | "app">;
|
104
104
|
} & {
|
105
|
-
type: import("vue").PropType<"default" | "
|
105
|
+
type: import("vue").PropType<"default" | "chrome" | "app">;
|
106
106
|
};
|
107
107
|
absolute: {
|
108
108
|
type: import("vue").PropType<boolean>;
|
@@ -171,9 +171,9 @@ declare const _default: {
|
|
171
171
|
type: import("vue").PropType<boolean>;
|
172
172
|
};
|
173
173
|
variant: {
|
174
|
-
type: import("vue").PropType<"default" | "
|
174
|
+
type: import("vue").PropType<"default" | "chrome" | "app">;
|
175
175
|
} & {
|
176
|
-
type: import("vue").PropType<"default" | "
|
176
|
+
type: import("vue").PropType<"default" | "chrome" | "app">;
|
177
177
|
};
|
178
178
|
absolute: {
|
179
179
|
type: import("vue").PropType<boolean>;
|
@@ -239,9 +239,9 @@ declare const _default: {
|
|
239
239
|
type: import("vue").PropType<boolean>;
|
240
240
|
};
|
241
241
|
variant: {
|
242
|
-
type: import("vue").PropType<"default" | "
|
242
|
+
type: import("vue").PropType<"default" | "chrome" | "app">;
|
243
243
|
} & {
|
244
|
-
type: import("vue").PropType<"default" | "
|
244
|
+
type: import("vue").PropType<"default" | "chrome" | "app">;
|
245
245
|
};
|
246
246
|
absolute: {
|
247
247
|
type: import("vue").PropType<boolean>;
|
@@ -286,7 +286,7 @@ declare const _default: {
|
|
286
286
|
} & {
|
287
287
|
actionButtons?: Func<[VNodeChild]>;
|
288
288
|
};
|
289
|
-
variant?: "default" | "
|
289
|
+
variant?: "default" | "chrome" | "app";
|
290
290
|
subTitle?: string;
|
291
291
|
"sub-title"?: string;
|
292
292
|
navigationExpanded?: boolean;
|
@@ -13,6 +13,13 @@ declare const _default: {
|
|
13
13
|
} & {
|
14
14
|
activator?: Func<[VNodeChild]>;
|
15
15
|
}>;
|
16
|
+
disabled: {
|
17
|
+
type: import("vue").PropType<boolean>;
|
18
|
+
required: false;
|
19
|
+
} & {
|
20
|
+
type: import("vue").PropType<boolean>;
|
21
|
+
required: false;
|
22
|
+
};
|
16
23
|
"onUpdate:modelValue": {
|
17
24
|
type: import("vue").PropType<(value: string) => any>;
|
18
25
|
};
|
@@ -58,6 +65,13 @@ declare const _default: {
|
|
58
65
|
} & {
|
59
66
|
activator?: Func<[VNodeChild]>;
|
60
67
|
}>;
|
68
|
+
disabled: {
|
69
|
+
type: import("vue").PropType<boolean>;
|
70
|
+
required: false;
|
71
|
+
} & {
|
72
|
+
type: import("vue").PropType<boolean>;
|
73
|
+
required: false;
|
74
|
+
};
|
61
75
|
"onUpdate:modelValue": {
|
62
76
|
type: import("vue").PropType<(value: string) => any>;
|
63
77
|
};
|
@@ -112,6 +126,13 @@ declare const _default: {
|
|
112
126
|
} & {
|
113
127
|
activator?: Func<[VNodeChild]>;
|
114
128
|
}>;
|
129
|
+
disabled: {
|
130
|
+
type: import("vue").PropType<boolean>;
|
131
|
+
required: false;
|
132
|
+
} & {
|
133
|
+
type: import("vue").PropType<boolean>;
|
134
|
+
required: false;
|
135
|
+
};
|
115
136
|
"onUpdate:modelValue": {
|
116
137
|
type: import("vue").PropType<(value: string) => any>;
|
117
138
|
};
|
@@ -163,6 +184,13 @@ declare const _default: {
|
|
163
184
|
} & {
|
164
185
|
activator?: Func<[VNodeChild]>;
|
165
186
|
}>;
|
187
|
+
disabled: {
|
188
|
+
type: import("vue").PropType<boolean>;
|
189
|
+
required: false;
|
190
|
+
} & {
|
191
|
+
type: import("vue").PropType<boolean>;
|
192
|
+
required: false;
|
193
|
+
};
|
166
194
|
"onUpdate:modelValue": {
|
167
195
|
type: import("vue").PropType<(value: string) => any>;
|
168
196
|
};
|
@@ -214,6 +242,7 @@ declare const _default: {
|
|
214
242
|
} & {
|
215
243
|
class?: String | String[];
|
216
244
|
label?: string;
|
245
|
+
disabled?: boolean;
|
217
246
|
"v-model"?: string;
|
218
247
|
"onUpdate:modelValue"?: (value: string) => any;
|
219
248
|
modelValue?: string;
|
@@ -62,6 +62,49 @@ declare const _default: {
|
|
62
62
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
63
63
|
};
|
64
64
|
get: {
|
65
|
+
componentBlueprintStore(): {
|
66
|
+
state: {
|
67
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
68
|
+
};
|
69
|
+
events: {
|
70
|
+
onMutatedBlueprints: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
71
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
72
|
+
actions: {
|
73
|
+
onDispatching: {
|
74
|
+
setBlueprint: {
|
75
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
76
|
+
};
|
77
|
+
setBluePrints: {
|
78
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
79
|
+
};
|
80
|
+
};
|
81
|
+
onDispatched: {
|
82
|
+
setBlueprint: {
|
83
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
84
|
+
};
|
85
|
+
setBluePrints: {
|
86
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
87
|
+
};
|
88
|
+
};
|
89
|
+
onFailure: {
|
90
|
+
setBlueprint: {
|
91
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
92
|
+
};
|
93
|
+
setBluePrints: {
|
94
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
95
|
+
};
|
96
|
+
};
|
97
|
+
} & {
|
98
|
+
setBlueprint(type: "default"): void;
|
99
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
100
|
+
};
|
101
|
+
get: {
|
102
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
103
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
104
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
105
|
+
};
|
106
|
+
deactivated(): void;
|
107
|
+
};
|
65
108
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
66
109
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
67
110
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -114,6 +157,49 @@ declare const _default: {
|
|
114
157
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
115
158
|
};
|
116
159
|
get: {
|
160
|
+
componentBlueprintStore(): {
|
161
|
+
state: {
|
162
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
163
|
+
};
|
164
|
+
events: {
|
165
|
+
onMutatedBlueprints: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
166
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
167
|
+
actions: {
|
168
|
+
onDispatching: {
|
169
|
+
setBlueprint: {
|
170
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
171
|
+
};
|
172
|
+
setBluePrints: {
|
173
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
174
|
+
};
|
175
|
+
};
|
176
|
+
onDispatched: {
|
177
|
+
setBlueprint: {
|
178
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
179
|
+
};
|
180
|
+
setBluePrints: {
|
181
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
182
|
+
};
|
183
|
+
};
|
184
|
+
onFailure: {
|
185
|
+
setBlueprint: {
|
186
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
187
|
+
};
|
188
|
+
setBluePrints: {
|
189
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
190
|
+
};
|
191
|
+
};
|
192
|
+
} & {
|
193
|
+
setBlueprint(type: "default"): void;
|
194
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
195
|
+
};
|
196
|
+
get: {
|
197
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
198
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
199
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
200
|
+
};
|
201
|
+
deactivated(): void;
|
202
|
+
};
|
117
203
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
118
204
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
119
205
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -166,6 +252,49 @@ declare const _default: {
|
|
166
252
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
167
253
|
};
|
168
254
|
get: {
|
255
|
+
componentBlueprintStore(): {
|
256
|
+
state: {
|
257
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
258
|
+
};
|
259
|
+
events: {
|
260
|
+
onMutatedBlueprints: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
261
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
262
|
+
actions: {
|
263
|
+
onDispatching: {
|
264
|
+
setBlueprint: {
|
265
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
266
|
+
};
|
267
|
+
setBluePrints: {
|
268
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
269
|
+
};
|
270
|
+
};
|
271
|
+
onDispatched: {
|
272
|
+
setBlueprint: {
|
273
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
274
|
+
};
|
275
|
+
setBluePrints: {
|
276
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
277
|
+
};
|
278
|
+
};
|
279
|
+
onFailure: {
|
280
|
+
setBlueprint: {
|
281
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
282
|
+
};
|
283
|
+
setBluePrints: {
|
284
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
285
|
+
};
|
286
|
+
};
|
287
|
+
} & {
|
288
|
+
setBlueprint(type: "default"): void;
|
289
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
290
|
+
};
|
291
|
+
get: {
|
292
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
293
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
294
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
295
|
+
};
|
296
|
+
deactivated(): void;
|
297
|
+
};
|
169
298
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
170
299
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
171
300
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -211,6 +340,49 @@ declare const _default: {
|
|
211
340
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
212
341
|
};
|
213
342
|
get: {
|
343
|
+
componentBlueprintStore(): {
|
344
|
+
state: {
|
345
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
346
|
+
};
|
347
|
+
events: {
|
348
|
+
onMutatedBlueprints: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
349
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
350
|
+
actions: {
|
351
|
+
onDispatching: {
|
352
|
+
setBlueprint: {
|
353
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
354
|
+
};
|
355
|
+
setBluePrints: {
|
356
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
357
|
+
};
|
358
|
+
};
|
359
|
+
onDispatched: {
|
360
|
+
setBlueprint: {
|
361
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
362
|
+
};
|
363
|
+
setBluePrints: {
|
364
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
365
|
+
};
|
366
|
+
};
|
367
|
+
onFailure: {
|
368
|
+
setBlueprint: {
|
369
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
370
|
+
};
|
371
|
+
setBluePrints: {
|
372
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
373
|
+
};
|
374
|
+
};
|
375
|
+
} & {
|
376
|
+
setBlueprint(type: "default"): void;
|
377
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
378
|
+
};
|
379
|
+
get: {
|
380
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
381
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
382
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
383
|
+
};
|
384
|
+
deactivated(): void;
|
385
|
+
};
|
214
386
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
215
387
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
216
388
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -4168,7 +4340,7 @@ declare const _default: {
|
|
4168
4340
|
events?: {
|
4169
4341
|
onLoaded?: string[];
|
4170
4342
|
onEditMode?: string[];
|
4171
|
-
|
4343
|
+
onSaving?: string[];
|
4172
4344
|
};
|
4173
4345
|
actions?: {
|
4174
4346
|
[name: string]: string[];
|
@@ -4369,7 +4541,7 @@ declare const _default: {
|
|
4369
4541
|
events?: {
|
4370
4542
|
onLoaded?: string[];
|
4371
4543
|
onEditMode?: string[];
|
4372
|
-
|
4544
|
+
onSaving?: string[];
|
4373
4545
|
};
|
4374
4546
|
actions?: {
|
4375
4547
|
[name: string]: string[];
|
@@ -4570,7 +4742,7 @@ declare const _default: {
|
|
4570
4742
|
events?: {
|
4571
4743
|
onLoaded?: string[];
|
4572
4744
|
onEditMode?: string[];
|
4573
|
-
|
4745
|
+
onSaving?: string[];
|
4574
4746
|
};
|
4575
4747
|
actions?: {
|
4576
4748
|
[name: string]: string[];
|
@@ -4771,7 +4943,7 @@ declare const _default: {
|
|
4771
4943
|
events?: {
|
4772
4944
|
onLoaded?: string[];
|
4773
4945
|
onEditMode?: string[];
|
4774
|
-
|
4946
|
+
onSaving?: string[];
|
4775
4947
|
};
|
4776
4948
|
actions?: {
|
4777
4949
|
[name: string]: string[];
|
@@ -4979,6 +5151,49 @@ declare const _default: {
|
|
4979
5151
|
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
4980
5152
|
};
|
4981
5153
|
get: {
|
5154
|
+
componentBlueprintStore: () => {
|
5155
|
+
state: {
|
5156
|
+
blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5157
|
+
};
|
5158
|
+
events: {
|
5159
|
+
onMutatedBlueprints: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ComponentBlueprints>;
|
5160
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
5161
|
+
actions: {
|
5162
|
+
onDispatching: {
|
5163
|
+
setBlueprint: {
|
5164
|
+
subscribe(fn: (type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5165
|
+
};
|
5166
|
+
setBluePrints: {
|
5167
|
+
subscribe(fn: (componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5168
|
+
};
|
5169
|
+
};
|
5170
|
+
onDispatched: {
|
5171
|
+
setBlueprint: {
|
5172
|
+
subscribe(fn: (result: void, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5173
|
+
};
|
5174
|
+
setBluePrints: {
|
5175
|
+
subscribe(fn: (result: void, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5176
|
+
};
|
5177
|
+
};
|
5178
|
+
onFailure: {
|
5179
|
+
setBlueprint: {
|
5180
|
+
subscribe(fn: (failureReason: any, type: "default") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5181
|
+
};
|
5182
|
+
setBluePrints: {
|
5183
|
+
subscribe(fn: (failureReason: any, componentBlueprints: import("@omnia/fx-models").ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
5184
|
+
};
|
5185
|
+
};
|
5186
|
+
} & {
|
5187
|
+
setBlueprint(type: "default"): void;
|
5188
|
+
setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
|
5189
|
+
};
|
5190
|
+
get: {
|
5191
|
+
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
5192
|
+
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
5193
|
+
buttonBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
|
5194
|
+
};
|
5195
|
+
deactivated(): void;
|
5196
|
+
};
|
4982
5197
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic") => import("@omnia/fx-models").ColorSchema;
|
4983
5198
|
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
4984
5199
|
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|