@omnia/fx 8.0.40-vnext → 8.0.42-vnext
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/core/services/ServiceManifestProvider.d.ts +1 -1
- package/internal-do-not-import-from-here/core/services/ServiceManifestProviderInternal.d.ts +1 -1
- package/internal-do-not-import-from-here/index.d.ts +3 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
- package/internal-do-not-import-from-here/services/LocalizationService.d.ts +0 -1
- package/internal-do-not-import-from-here/stores/DefineStore.d.ts +2 -1
- package/internal-do-not-import-from-here/stores/LocalizationStore.d.ts +0 -18
- package/internal-do-not-import-from-here/stores/oxide/ComponentHostStore.d.ts +23 -10
- package/internal-do-not-import-from-here/ux/alignmentpicker/AlignmentPicker.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/app/management/components/TabsManagement.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/compositiontests/OptionsBlockCurrent.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyChipItem.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/image/scalingsettings/ScalingSettings.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.d.ts +7 -29
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyMenu.d.ts +156 -0
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyV2.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyV2.d.ts +20 -4
- package/internal-do-not-import-from-here/ux/journey/v2/docs/ExampleComponentsMenu.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/journey/v2/docs/SampleButtons.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/journey/v2/docs/SampleComponentMenu.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/journey/v2/docs/SampleVariants.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/journey/v2/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/journey/v2/models/BladeInstance.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/journey/v2/models/Constants.d.ts +7 -1
- package/internal-do-not-import-from-here/ux/journey/v2/stores/JourneyMenuStore.d.ts +23 -0
- package/internal-do-not-import-from-here/ux/journey/v2/stores/JourneyStore.d.ts +74 -24
- package/internal-do-not-import-from-here/ux/journey/v2/stores/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/ColorSettings.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/markdown/MarkdownEditor.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/monaco/MonacoEditor.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/btngroup/ButtonGroup.d.ts +13 -13
- package/internal-do-not-import-from-here/ux/oxide/card/Card.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/checkbox/Checkbox.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +15 -15
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +26 -15
- package/internal-do-not-import-from-here/ux/oxide/dialog/docs/DialogWithAppNavigation.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/dialog/docs/DialogWithFixedContent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/dialog/docs/DialogWithLeftBar.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/dialog/docs/DialogWithNavigation.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/dialog/docs/SampleDialog.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.d.ts +2 -13
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanels.d.ts +13 -2
- package/internal-do-not-import-from-here/ux/oxide/hostprovider/HostProvider.d.ts +18 -18
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +0 -11
- package/internal-do-not-import-from-here/ux/oxide/list/List.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/main/Main.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/oxide/panel/Panel.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/oxide/radio/RadioGroup.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +8 -8
- package/internal-do-not-import-from-here/ux/oxide/slider/Slider.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/snackbar/Snackbar.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/stepper/Stepper.d.ts +11 -11
- package/internal-do-not-import-from-here/ux/oxide/switch/Switch.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/tab/Tab.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.d.ts +18 -18
- package/internal-do-not-import-from-here/ux/oxide/text/Text.d.ts +17 -0
- package/internal-do-not-import-from-here/ux/oxide/textarea/TextArea.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/settings/SettingsPane.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/spacingpicker/SpacingPicker2.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming/components/ThemeDefinitionEditor.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/blueprintpicker/BlueprintPicker.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/colorschemadefinitionpicker/ColorSchemaDefinitionPicker.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/theming-v2/colorschemapicker/ColorSchemaPicker.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseTypographyStyling.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/themedefinitionpicker/ThemeDefinitionPicker.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/ThemeEditor.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/use/UseIcon.d.ts +14 -3
- package/internal-do-not-import-from-here/ux/velcron/components/properties/VelcronProperties.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditor.d.ts +6 -6
- package/internal-do-not-import-from-here/vue/VueApp.d.ts +4 -2
- package/internal-do-not-import-from-here/wctypings.d.ts +2 -0
- package/package.json +2 -2
@@ -52,12 +52,12 @@ declare const _default: {
|
|
52
52
|
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
53
53
|
[key: string]: any;
|
54
54
|
}>) => void)[];
|
55
|
-
readonly
|
55
|
+
readonly toned?: boolean;
|
56
56
|
readonly "v-model"?: number;
|
57
57
|
readonly modelValue?: number;
|
58
|
-
readonly
|
58
|
+
readonly "onUpdate:modelValue"?: (value: number) => any;
|
59
|
+
readonly variant?: "default" | "navigation" | "settings";
|
59
60
|
readonly stacked?: boolean;
|
60
|
-
readonly toned?: boolean;
|
61
61
|
readonly scrolling?: string;
|
62
62
|
};
|
63
63
|
$attrs: {
|
@@ -83,15 +83,12 @@ declare const _default: {
|
|
83
83
|
type: import("vue").PropType<boolean>;
|
84
84
|
};
|
85
85
|
variant: {
|
86
|
-
type: import("vue").PropType<"default" | "
|
86
|
+
type: import("vue").PropType<"default" | "navigation" | "settings">;
|
87
87
|
};
|
88
88
|
stacked: {
|
89
89
|
type: import("vue").PropType<boolean>;
|
90
90
|
required: false;
|
91
91
|
};
|
92
|
-
"onUpdate:modelValue": {
|
93
|
-
type: import("vue").PropType<(value: number) => any>;
|
94
|
-
};
|
95
92
|
"v-model": {
|
96
93
|
type: import("vue").PropType<number>;
|
97
94
|
required: false;
|
@@ -100,6 +97,9 @@ declare const _default: {
|
|
100
97
|
type: import("vue").PropType<number>;
|
101
98
|
required: false;
|
102
99
|
};
|
100
|
+
"onUpdate:modelValue": {
|
101
|
+
type: import("vue").PropType<(value: number) => any>;
|
102
|
+
};
|
103
103
|
class: {
|
104
104
|
type: import("vue").PropType<String | String[]>;
|
105
105
|
required: boolean;
|
@@ -145,15 +145,12 @@ declare const _default: {
|
|
145
145
|
type: import("vue").PropType<boolean>;
|
146
146
|
};
|
147
147
|
variant: {
|
148
|
-
type: import("vue").PropType<"default" | "
|
148
|
+
type: import("vue").PropType<"default" | "navigation" | "settings">;
|
149
149
|
};
|
150
150
|
stacked: {
|
151
151
|
type: import("vue").PropType<boolean>;
|
152
152
|
required: false;
|
153
153
|
};
|
154
|
-
"onUpdate:modelValue": {
|
155
|
-
type: import("vue").PropType<(value: number) => any>;
|
156
|
-
};
|
157
154
|
"v-model": {
|
158
155
|
type: import("vue").PropType<number>;
|
159
156
|
required: false;
|
@@ -162,6 +159,9 @@ declare const _default: {
|
|
162
159
|
type: import("vue").PropType<number>;
|
163
160
|
required: false;
|
164
161
|
};
|
162
|
+
"onUpdate:modelValue": {
|
163
|
+
type: import("vue").PropType<(value: number) => any>;
|
164
|
+
};
|
165
165
|
class: {
|
166
166
|
type: import("vue").PropType<String | String[]>;
|
167
167
|
required: boolean;
|
@@ -185,15 +185,12 @@ declare const _default: {
|
|
185
185
|
type: import("vue").PropType<boolean>;
|
186
186
|
};
|
187
187
|
variant: {
|
188
|
-
type: import("vue").PropType<"default" | "
|
188
|
+
type: import("vue").PropType<"default" | "navigation" | "settings">;
|
189
189
|
};
|
190
190
|
stacked: {
|
191
191
|
type: import("vue").PropType<boolean>;
|
192
192
|
required: false;
|
193
193
|
};
|
194
|
-
"onUpdate:modelValue": {
|
195
|
-
type: import("vue").PropType<(value: number) => any>;
|
196
|
-
};
|
197
194
|
"v-model": {
|
198
195
|
type: import("vue").PropType<number>;
|
199
196
|
required: false;
|
@@ -202,6 +199,9 @@ declare const _default: {
|
|
202
199
|
type: import("vue").PropType<number>;
|
203
200
|
required: false;
|
204
201
|
};
|
202
|
+
"onUpdate:modelValue": {
|
203
|
+
type: import("vue").PropType<(value: number) => any>;
|
204
|
+
};
|
205
205
|
class: {
|
206
206
|
type: import("vue").PropType<String | String[]>;
|
207
207
|
required: boolean;
|
@@ -226,12 +226,12 @@ declare const _default: {
|
|
226
226
|
colors?: any;
|
227
227
|
} & {
|
228
228
|
class?: String | String[];
|
229
|
-
|
229
|
+
toned?: boolean;
|
230
230
|
"v-model"?: number;
|
231
231
|
modelValue?: number;
|
232
|
-
|
232
|
+
"onUpdate:modelValue"?: (value: number) => any;
|
233
|
+
variant?: "default" | "navigation" | "settings";
|
233
234
|
stacked?: boolean;
|
234
|
-
toned?: boolean;
|
235
235
|
scrolling?: string;
|
236
236
|
}>, never>;
|
237
237
|
};
|
@@ -13,6 +13,7 @@ declare const _default: {
|
|
13
13
|
style?: unknown;
|
14
14
|
class?: String | String[];
|
15
15
|
key?: string | number | symbol;
|
16
|
+
readonly options?: any;
|
16
17
|
ref?: import("vue").VNodeRef;
|
17
18
|
ref_for?: boolean;
|
18
19
|
ref_key?: string;
|
@@ -72,6 +73,11 @@ declare const _default: {
|
|
72
73
|
$emit: (event: string, ...args: any[]) => void;
|
73
74
|
$el: any;
|
74
75
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
76
|
+
options: {
|
77
|
+
type: import("vue").PropType<any>;
|
78
|
+
} & {
|
79
|
+
type: import("vue").PropType<any>;
|
80
|
+
};
|
75
81
|
truncateLines: {
|
76
82
|
type: import("vue").PropType<number>;
|
77
83
|
};
|
@@ -122,6 +128,11 @@ declare const _default: {
|
|
122
128
|
$nextTick: typeof import("vue").nextTick;
|
123
129
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
124
130
|
} & Readonly<import("vue").ExtractPropTypes<{
|
131
|
+
options: {
|
132
|
+
type: import("vue").PropType<any>;
|
133
|
+
} & {
|
134
|
+
type: import("vue").PropType<any>;
|
135
|
+
};
|
125
136
|
truncateLines: {
|
126
137
|
type: import("vue").PropType<number>;
|
127
138
|
};
|
@@ -150,6 +161,11 @@ declare const _default: {
|
|
150
161
|
__isTeleport?: never;
|
151
162
|
__isSuspense?: never;
|
152
163
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
164
|
+
options: {
|
165
|
+
type: import("vue").PropType<any>;
|
166
|
+
} & {
|
167
|
+
type: import("vue").PropType<any>;
|
168
|
+
};
|
153
169
|
truncateLines: {
|
154
170
|
type: import("vue").PropType<number>;
|
155
171
|
};
|
@@ -189,6 +205,7 @@ declare const _default: {
|
|
189
205
|
} & {
|
190
206
|
typography?: TypographyType | TypographyTypes;
|
191
207
|
class?: String | String[];
|
208
|
+
options?: any;
|
192
209
|
toned?: boolean;
|
193
210
|
colorType?: ColorType | ColorTypes;
|
194
211
|
truncateLines?: number;
|
@@ -53,9 +53,9 @@ declare const _default: {
|
|
53
53
|
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
54
54
|
[key: string]: any;
|
55
55
|
}>) => void)[];
|
56
|
-
"onUpdate:modelValue"?: ((value: string) => any) & ((value: string) => any);
|
57
56
|
readonly "v-model"?: string;
|
58
57
|
readonly modelValue?: string;
|
58
|
+
"onUpdate:modelValue"?: ((value: string) => any) & ((value: string) => any);
|
59
59
|
readonly clearable?: boolean;
|
60
60
|
"onClick:button"?: () => any;
|
61
61
|
};
|
@@ -214,9 +214,9 @@ declare const _default: {
|
|
214
214
|
} & {
|
215
215
|
label?: string;
|
216
216
|
class?: String | String[];
|
217
|
-
"onUpdate:modelValue"?: (value: string) => any;
|
218
217
|
"v-model"?: string;
|
219
218
|
modelValue?: string;
|
219
|
+
"onUpdate:modelValue"?: (value: string) => any;
|
220
220
|
clearable?: boolean;
|
221
221
|
}>, "onUpdate:modelValue" | "onClick:button"> & {
|
222
222
|
"onUpdate:modelValue"?: (value: string) => any;
|
@@ -54,11 +54,11 @@ declare const _default: {
|
|
54
54
|
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
55
55
|
[key: string]: any;
|
56
56
|
}>) => void)[];
|
57
|
-
|
57
|
+
readonly toned?: Boolean;
|
58
58
|
readonly "v-model"?: string;
|
59
59
|
readonly modelValue?: string;
|
60
|
+
"onUpdate:modelValue"?: ((value: string) => any) & ((value: string) => any);
|
60
61
|
readonly variant?: "search" | "link" | "default" | "media" | "find-slim" | "numberselector" | "numberselector-prepend";
|
61
|
-
readonly toned?: Boolean;
|
62
62
|
readonly clearable?: boolean;
|
63
63
|
"onClick:button"?: () => any;
|
64
64
|
};
|
@@ -251,11 +251,11 @@ declare const _default: {
|
|
251
251
|
label?: string;
|
252
252
|
class?: String | String[];
|
253
253
|
type?: "number";
|
254
|
-
|
254
|
+
toned?: Boolean;
|
255
255
|
"v-model"?: string;
|
256
256
|
modelValue?: string;
|
257
|
+
"onUpdate:modelValue"?: (value: string) => any;
|
257
258
|
variant?: "search" | "link" | "default" | "media" | "find-slim" | "numberselector" | "numberselector-prepend";
|
258
|
-
toned?: Boolean;
|
259
259
|
clearable?: boolean;
|
260
260
|
}>, "onUpdate:modelValue" | "onClick:button"> & {
|
261
261
|
"onUpdate:modelValue"?: (value: string) => any;
|
@@ -58,14 +58,14 @@ declare const _default: {
|
|
58
58
|
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
59
59
|
[key: string]: any;
|
60
60
|
}>) => void)[];
|
61
|
-
readonly "onUpdate:modelValue"?: (value: TreeViewItem<any>[]) => any;
|
62
|
-
readonly "v-model"?: TreeViewItem<any>[];
|
63
|
-
readonly modelValue?: TreeViewItem<any>[];
|
64
61
|
readonly "v-slots"?: {
|
65
62
|
default?: import("@omnia/fx-models").Func<[VNodeChild]>;
|
66
63
|
} & {
|
67
64
|
itemAction?: (item: TreeViewItem, index: Number) => VNodeChild;
|
68
65
|
};
|
66
|
+
readonly "v-model"?: TreeViewItem<any>[];
|
67
|
+
readonly modelValue?: TreeViewItem<any>[];
|
68
|
+
readonly "onUpdate:modelValue"?: (value: TreeViewItem<any>[]) => any;
|
69
69
|
readonly items?: TreeViewItem<any>[];
|
70
70
|
readonly expandOnSelection?: boolean;
|
71
71
|
"onUpdate:active"?: (items: any[]) => any;
|
@@ -231,14 +231,14 @@ declare const _default: {
|
|
231
231
|
colors?: any;
|
232
232
|
} & {
|
233
233
|
multiple?: boolean;
|
234
|
-
"onUpdate:modelValue"?: (value: TreeViewItem<any>[]) => any;
|
235
|
-
"v-model"?: TreeViewItem<any>[];
|
236
|
-
modelValue?: TreeViewItem<any>[];
|
237
234
|
"v-slots"?: {
|
238
235
|
default?: import("@omnia/fx-models").Func<[VNodeChild]>;
|
239
236
|
} & {
|
240
237
|
itemAction?: (item: TreeViewItem, index: Number) => VNodeChild;
|
241
238
|
};
|
239
|
+
"v-model"?: TreeViewItem<any>[];
|
240
|
+
modelValue?: TreeViewItem<any>[];
|
241
|
+
"onUpdate:modelValue"?: (value: TreeViewItem<any>[]) => any;
|
242
242
|
items?: TreeViewItem<any>[];
|
243
243
|
expandOnSelection?: boolean;
|
244
244
|
}>, "onUpdate:active"> & {
|
@@ -50,9 +50,9 @@ declare const _default: {
|
|
50
50
|
[key: string]: any;
|
51
51
|
}>) => void)[];
|
52
52
|
readonly description?: string;
|
53
|
-
readonly "onUpdate:modelValue"?: (value: boolean) => any;
|
54
53
|
readonly "v-model"?: boolean;
|
55
54
|
readonly modelValue?: boolean;
|
55
|
+
readonly "onUpdate:modelValue"?: (value: boolean) => any;
|
56
56
|
readonly headerClass?: string;
|
57
57
|
readonly contentClass?: string;
|
58
58
|
readonly "content-class"?: string;
|
@@ -314,9 +314,9 @@ declare const _default: {
|
|
314
314
|
title?: string;
|
315
315
|
width?: string | number;
|
316
316
|
description?: string;
|
317
|
-
"onUpdate:modelValue"?: (value: boolean) => any;
|
318
317
|
"v-model"?: boolean;
|
319
318
|
modelValue?: boolean;
|
319
|
+
"onUpdate:modelValue"?: (value: boolean) => any;
|
320
320
|
headerClass?: string;
|
321
321
|
contentClass?: string;
|
322
322
|
"content-class"?: string;
|
@@ -114,9 +114,9 @@ declare const _default: {
|
|
114
114
|
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
115
115
|
[key: string]: any;
|
116
116
|
}>) => void)[];
|
117
|
-
"onUpdate:modelValue"?: ((value: SpacingSettings) => any) & ((value: SpacingSettings) => any);
|
118
117
|
readonly "v-model"?: SpacingSettings;
|
119
118
|
readonly modelValue?: SpacingSettings;
|
119
|
+
"onUpdate:modelValue"?: ((value: SpacingSettings) => any) & ((value: SpacingSettings) => any);
|
120
120
|
readonly individualSelection?: boolean;
|
121
121
|
readonly "individual-selection"?: boolean;
|
122
122
|
readonly disableTop?: boolean;
|
@@ -575,9 +575,9 @@ declare const _default: {
|
|
575
575
|
};
|
576
576
|
}>;
|
577
577
|
};
|
578
|
-
"onUpdate:modelValue"?: (value: SpacingSettings) => any;
|
579
578
|
"v-model"?: SpacingSettings;
|
580
579
|
modelValue?: SpacingSettings;
|
580
|
+
"onUpdate:modelValue"?: (value: SpacingSettings) => any;
|
581
581
|
individualSelection?: boolean;
|
582
582
|
"individual-selection"?: boolean;
|
583
583
|
disableTop?: boolean;
|
@@ -109,9 +109,9 @@ declare const _default: {
|
|
109
109
|
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
110
110
|
[key: string]: any;
|
111
111
|
}>) => void)[];
|
112
|
-
"onUpdate:modelValue"?: ((value: ThemeDefinition) => any) & ((value: ThemeDefinition) => any);
|
113
112
|
readonly "v-model"?: ThemeDefinition;
|
114
113
|
readonly modelValue?: ThemeDefinition;
|
114
|
+
"onUpdate:modelValue"?: ((value: ThemeDefinition) => any) & ((value: ThemeDefinition) => any);
|
115
115
|
readonly attachedToParent?: boolean;
|
116
116
|
readonly hideBodySettings?: boolean;
|
117
117
|
readonly "hide-body-settings"?: boolean;
|
@@ -504,9 +504,9 @@ declare const _default: {
|
|
504
504
|
};
|
505
505
|
}>;
|
506
506
|
};
|
507
|
-
"onUpdate:modelValue"?: (value: ThemeDefinition) => any;
|
508
507
|
"v-model"?: ThemeDefinition;
|
509
508
|
modelValue?: ThemeDefinition;
|
509
|
+
"onUpdate:modelValue"?: (value: ThemeDefinition) => any;
|
510
510
|
attachedToParent?: boolean;
|
511
511
|
hideBodySettings?: boolean;
|
512
512
|
"hide-body-settings"?: boolean;
|
@@ -110,9 +110,9 @@ declare const _default: {
|
|
110
110
|
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
111
111
|
[key: string]: any;
|
112
112
|
}>) => void)[];
|
113
|
-
"onUpdate:modelValue"?: ((value: BlueprintType | BlueprintTypes) => any) & ((value: BlueprintTypes) => any);
|
114
113
|
readonly "v-model"?: BlueprintType | BlueprintTypes;
|
115
114
|
readonly modelValue?: BlueprintType | BlueprintTypes;
|
115
|
+
"onUpdate:modelValue"?: ((value: BlueprintType | BlueprintTypes) => any) & ((value: BlueprintTypes) => any);
|
116
116
|
};
|
117
117
|
$attrs: {
|
118
118
|
[x: string]: unknown;
|
@@ -441,9 +441,9 @@ declare const _default: {
|
|
441
441
|
};
|
442
442
|
}>;
|
443
443
|
};
|
444
|
-
"onUpdate:modelValue"?: (value: BlueprintType | BlueprintTypes) => any;
|
445
444
|
"v-model"?: BlueprintType | BlueprintTypes;
|
446
445
|
modelValue?: BlueprintType | BlueprintTypes;
|
446
|
+
"onUpdate:modelValue"?: (value: BlueprintType | BlueprintTypes) => any;
|
447
447
|
}>, "onUpdate:modelValue"> & {
|
448
448
|
"onUpdate:modelValue"?: (value: BlueprintTypes) => any;
|
449
449
|
};
|
@@ -115,14 +115,14 @@ declare const _default: {
|
|
115
115
|
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
116
116
|
[key: string]: any;
|
117
117
|
}>) => void)[];
|
118
|
-
"onUpdate:modelValue"?: ((value: unknown) => any) & ((colorSchema: ColorSchema) => any);
|
119
|
-
readonly "v-model"?: unknown;
|
120
|
-
readonly modelValue?: unknown;
|
121
118
|
readonly "v-slots"?: {
|
122
119
|
default?: import("@omnia/fx-models").Func<[VNodeChild]>;
|
123
120
|
} & {
|
124
121
|
activator?: () => VNodeChild;
|
125
122
|
};
|
123
|
+
readonly "v-model"?: unknown;
|
124
|
+
readonly modelValue?: unknown;
|
125
|
+
"onUpdate:modelValue"?: ((value: unknown) => any) & ((colorSchema: ColorSchema) => any);
|
126
126
|
};
|
127
127
|
$attrs: {
|
128
128
|
[x: string]: unknown;
|
@@ -483,14 +483,14 @@ declare const _default: {
|
|
483
483
|
};
|
484
484
|
}>;
|
485
485
|
};
|
486
|
-
"onUpdate:modelValue"?: (value: unknown) => any;
|
487
|
-
"v-model"?: unknown;
|
488
|
-
modelValue?: unknown;
|
489
486
|
"v-slots"?: {
|
490
487
|
default?: import("@omnia/fx-models").Func<[VNodeChild]>;
|
491
488
|
} & {
|
492
489
|
activator?: () => VNodeChild;
|
493
490
|
};
|
491
|
+
"v-model"?: unknown;
|
492
|
+
modelValue?: unknown;
|
493
|
+
"onUpdate:modelValue"?: (value: unknown) => any;
|
494
494
|
}>, "onUpdate:modelValue"> & {
|
495
495
|
"onUpdate:modelValue"?: (colorSchema: ColorSchema) => any;
|
496
496
|
};
|
package/internal-do-not-import-from-here/ux/theming-v2/colorschemapicker/ColorSchemaPicker.d.ts
CHANGED
@@ -112,9 +112,9 @@ declare const _default: {
|
|
112
112
|
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
113
113
|
[key: string]: any;
|
114
114
|
}>) => void)[];
|
115
|
-
"onUpdate:modelValue"?: ((value: ColorSchemaTypes | ColorSchemaType) => any) & ((value: ColorSchemaTypes) => any);
|
116
115
|
readonly "v-model"?: ColorSchemaTypes | ColorSchemaType;
|
117
116
|
readonly modelValue?: ColorSchemaTypes | ColorSchemaType;
|
117
|
+
"onUpdate:modelValue"?: ((value: ColorSchemaTypes | ColorSchemaType) => any) & ((value: ColorSchemaTypes) => any);
|
118
118
|
};
|
119
119
|
$attrs: {
|
120
120
|
[x: string]: unknown;
|
@@ -463,9 +463,9 @@ declare const _default: {
|
|
463
463
|
};
|
464
464
|
themeDefinition?: ThemeDefinitionV2;
|
465
465
|
"theme-definition"?: ThemeDefinitionV2;
|
466
|
-
"onUpdate:modelValue"?: (value: ColorSchemaTypes | ColorSchemaType) => any;
|
467
466
|
"v-model"?: ColorSchemaTypes | ColorSchemaType;
|
468
467
|
modelValue?: ColorSchemaTypes | ColorSchemaType;
|
468
|
+
"onUpdate:modelValue"?: (value: ColorSchemaTypes | ColorSchemaType) => any;
|
469
469
|
}>, "onUpdate:modelValue"> & {
|
470
470
|
"onUpdate:modelValue"?: (value: ColorSchemaTypes) => any;
|
471
471
|
};
|
@@ -10,7 +10,7 @@ export interface TypographyTypesResult {
|
|
10
10
|
text: string;
|
11
11
|
typographyType: (typographyType: string) => string;
|
12
12
|
}
|
13
|
-
export declare
|
13
|
+
export declare function useTypographyTypeStyling(typographyType: TypographyTypes, blueprint: TypographyBlueprint): {
|
14
14
|
baseStyles: {
|
15
15
|
fontSize: string;
|
16
16
|
fontWeight: number;
|
@@ -22,4 +22,4 @@ export declare const useTypographyTypeStyling: (typographyType: TypographyTypes,
|
|
22
22
|
queryOnSmallScreen: MediaQuery;
|
23
23
|
queryOnMediumScreen: MediaQuery;
|
24
24
|
};
|
25
|
-
export declare
|
25
|
+
export declare function useTypographyStyling(blueprints: ReturnType<typeof useBlueprintStore>): TypographyTypesResult;
|
@@ -114,10 +114,10 @@ declare const _default: {
|
|
114
114
|
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
115
115
|
[key: string]: any;
|
116
116
|
}>) => void)[];
|
117
|
-
|
117
|
+
readonly toned?: string;
|
118
118
|
readonly "v-model"?: Guid;
|
119
119
|
readonly modelValue?: Guid;
|
120
|
-
|
120
|
+
"onUpdate:modelValue"?: ((value: Guid) => any) & ((theme: ThemeDefinitionV2) => any);
|
121
121
|
};
|
122
122
|
$attrs: {
|
123
123
|
[x: string]: unknown;
|
@@ -478,10 +478,10 @@ declare const _default: {
|
|
478
478
|
};
|
479
479
|
}>;
|
480
480
|
};
|
481
|
-
|
481
|
+
toned?: string;
|
482
482
|
"v-model"?: Guid;
|
483
483
|
modelValue?: Guid;
|
484
|
-
|
484
|
+
"onUpdate:modelValue"?: (value: Guid) => any;
|
485
485
|
}>, "onUpdate:modelValue"> & {
|
486
486
|
"onUpdate:modelValue"?: (theme: ThemeDefinitionV2) => any;
|
487
487
|
};
|
@@ -51,12 +51,12 @@ declare const _default: {
|
|
51
51
|
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
52
52
|
[key: string]: any;
|
53
53
|
}>) => void)[];
|
54
|
-
"onUpdate:modelValue"?: (themeDefinition: ThemeDefinitionV2) => any;
|
55
54
|
readonly "v-slots"?: {
|
56
55
|
default?: import("@omnia/fx-models").Func<[VNodeChild]>;
|
57
56
|
} & {
|
58
57
|
activator?: () => VNodeChild;
|
59
58
|
};
|
59
|
+
"onUpdate:modelValue"?: (themeDefinition: ThemeDefinitionV2) => any;
|
60
60
|
readonly themeStoreRegistrationHook?: RegisterThemeStore;
|
61
61
|
readonly "theme-store-registration-hook"?: RegisterThemeStore;
|
62
62
|
};
|
@@ -1,10 +1,21 @@
|
|
1
|
-
import { CustomIcon, FabricIcon, FlagIcon, FontAwesomeIcon, IIcon, MaterialIcon, SvgIcon } from "@omnia/fx-models";
|
2
|
-
export declare
|
3
|
-
export declare
|
1
|
+
import { CustomIcon, FabricIcon, FlagIcon, FontAwesomeIcon, IIcon, MaterialIcon, OIconSizes, SvgIcon, ThemeableComponentProps } from "@omnia/fx-models";
|
2
|
+
export declare function useIconClass(icon: IIcon): any;
|
3
|
+
export declare function useIcons(): {
|
4
4
|
faIcon: (name: string) => FontAwesomeIcon;
|
5
5
|
mdIcon: (name: string) => MaterialIcon;
|
6
6
|
flagIcon: (name: string) => FlagIcon;
|
7
7
|
fbIcon: (name: string) => FabricIcon;
|
8
8
|
svgIcon: (name: string) => SvgIcon;
|
9
9
|
customIcon: (name: string) => CustomIcon;
|
10
|
+
presets: {
|
11
|
+
add: (size?: OIconSizes, toned?: boolean, theming?: ThemeableComponentProps) => JSX.Element;
|
12
|
+
edit: (size?: OIconSizes, toned?: boolean, theming?: ThemeableComponentProps) => JSX.Element;
|
13
|
+
del: (size?: OIconSizes, toned?: boolean, theming?: ThemeableComponentProps) => JSX.Element;
|
14
|
+
drag: (size?: OIconSizes, toned?: boolean, theming?: ThemeableComponentProps) => JSX.Element;
|
15
|
+
copy: (size?: OIconSizes, toned?: boolean, theming?: ThemeableComponentProps) => JSX.Element;
|
16
|
+
code: (size?: OIconSizes, toned?: boolean, theming?: ThemeableComponentProps) => JSX.Element;
|
17
|
+
expand: (size?: OIconSizes, toned?: boolean, theming?: ThemeableComponentProps) => JSX.Element;
|
18
|
+
remove: (size?: OIconSizes, toned?: boolean, theming?: ThemeableComponentProps) => JSX.Element;
|
19
|
+
info: (size?: OIconSizes, toned?: boolean, theming?: ThemeableComponentProps) => JSX.Element;
|
20
|
+
};
|
10
21
|
};
|
package/internal-do-not-import-from-here/ux/velcron/components/properties/VelcronProperties.d.ts
CHANGED
@@ -111,9 +111,9 @@ declare const _default: {
|
|
111
111
|
[key: string]: any;
|
112
112
|
}>) => void)[];
|
113
113
|
readonly properties: VelcronDefinitionEditableProperty[];
|
114
|
-
"onUpdate:modelValue"?: ((value: VelcronAppDefinition<object>) => any) & ((value: VelcronAppDefinition<object>) => any);
|
115
114
|
readonly "v-model"?: VelcronAppDefinition<object>;
|
116
115
|
readonly modelValue?: VelcronAppDefinition<object>;
|
116
|
+
"onUpdate:modelValue"?: ((value: VelcronAppDefinition<object>) => any) & ((value: VelcronAppDefinition<object>) => any);
|
117
117
|
};
|
118
118
|
$attrs: {
|
119
119
|
[x: string]: unknown;
|
@@ -440,9 +440,9 @@ declare const _default: {
|
|
440
440
|
};
|
441
441
|
}>;
|
442
442
|
};
|
443
|
-
"onUpdate:modelValue"?: (value: VelcronAppDefinition<object>) => any;
|
444
443
|
"v-model"?: VelcronAppDefinition<object>;
|
445
444
|
modelValue?: VelcronAppDefinition<object>;
|
445
|
+
"onUpdate:modelValue"?: (value: VelcronAppDefinition<object>) => any;
|
446
446
|
}>, "onUpdate:modelValue"> & {
|
447
447
|
"onUpdate:modelValue"?: (value: VelcronAppDefinition<object>) => any;
|
448
448
|
};
|
@@ -112,14 +112,14 @@ declare const _default: {
|
|
112
112
|
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
113
113
|
[key: string]: any;
|
114
114
|
}>) => void)[];
|
115
|
-
readonly "onUpdate:modelValue"?: (value: boolean) => any;
|
116
|
-
readonly "v-model"?: boolean;
|
117
|
-
readonly modelValue?: boolean;
|
118
115
|
readonly "v-slots"?: {
|
119
116
|
default?: import("@omnia/fx-models").Func<[VNodeChild]>;
|
120
117
|
} & {
|
121
118
|
activator?: () => VNodeChild;
|
122
119
|
};
|
120
|
+
readonly "v-model"?: boolean;
|
121
|
+
readonly modelValue?: boolean;
|
122
|
+
readonly "onUpdate:modelValue"?: (value: boolean) => any;
|
123
123
|
onSave?: (appDefinition: VelcronAppDefinition<object>) => any;
|
124
124
|
};
|
125
125
|
$attrs: {
|
@@ -638,14 +638,14 @@ declare const _default: {
|
|
638
638
|
}>;
|
639
639
|
};
|
640
640
|
definition?: VelcronAppDefinition<object>;
|
641
|
-
"onUpdate:modelValue"?: (value: boolean) => any;
|
642
|
-
"v-model"?: boolean;
|
643
|
-
modelValue?: boolean;
|
644
641
|
"v-slots"?: {
|
645
642
|
default?: import("@omnia/fx-models").Func<[VNodeChild]>;
|
646
643
|
} & {
|
647
644
|
activator?: () => VNodeChild;
|
648
645
|
};
|
646
|
+
"v-model"?: boolean;
|
647
|
+
modelValue?: boolean;
|
648
|
+
"onUpdate:modelValue"?: (value: boolean) => any;
|
649
649
|
}>, "onSave"> & {
|
650
650
|
onSave?: (appDefinition: VelcronAppDefinition<object>) => any;
|
651
651
|
};
|
@@ -1,2 +1,4 @@
|
|
1
|
-
import {
|
2
|
-
export declare
|
1
|
+
import { App } from "vue";
|
2
|
+
export declare function getVueApps(): Set<App<Element>>;
|
3
|
+
export declare function destroyVueApp(app: App<Element>): void;
|
4
|
+
export declare function createVueApp(rootComponent: any, rootProps?: any): App<Element>;
|
@@ -83,6 +83,7 @@ import wc2f4b3c8e5d6a4f7bbc9d1e0a2b3c4d5e from './ux/image/scalingsettings/Scali
|
|
83
83
|
import wc2252e1bd3ac44ef9b92c68e5b1e41a49 from './ux/journey/testbench/JourneyTest';
|
84
84
|
import wcc0ba9c7ccef54093bcb0be49e7cf79df from './ux/journey/v2/JourneyV2';
|
85
85
|
import wcd308de8efcff4754826523a0f06df130 from './ux/journey/v2/JourneyBlade';
|
86
|
+
import wc828a4c20542945858e792ec584148a5c from './ux/journey/v2/JourneyMenu';
|
86
87
|
import wc8e03e2f7fb024945bc51138b77d06088 from './ux/layoutcanvas/editor/LayoutEditorCanvas';
|
87
88
|
import wc0b2ee63495854227a082987161a9e641 from './ux/layoutcanvas/renderer/LayoutBlockRendererHelper';
|
88
89
|
import wcf346db89a53b404690b1795429fb0162 from './ux/layoutcanvas/renderer/LayoutRendererCanvas';
|
@@ -323,6 +324,7 @@ declare global {
|
|
323
324
|
"omfx-journey-testbench": typeof wc2252e1bd3ac44ef9b92c68e5b1e41a49.propsDefinition & VueComponentBaseProps;
|
324
325
|
"omfx-journey": typeof wcc0ba9c7ccef54093bcb0be49e7cf79df.propsDefinition & VueComponentBaseProps;
|
325
326
|
"omfx-journey-blade": typeof wcd308de8efcff4754826523a0f06df130.propsDefinition & VueComponentBaseProps;
|
327
|
+
"omfx-journey-menu": typeof wc828a4c20542945858e792ec584148a5c.propsDefinition & VueComponentBaseProps;
|
326
328
|
"omfx-layout-editor-canvas": typeof wc8e03e2f7fb024945bc51138b77d06088.propsDefinition & VueComponentBaseProps;
|
327
329
|
"omfx-layout-block-renderer-helper": typeof wc0b2ee63495854227a082987161a9e641.propsDefinition & VueComponentBaseProps;
|
328
330
|
"omfx-layout-renderer-canvas": typeof wcf346db89a53b404690b1795429fb0162.propsDefinition & VueComponentBaseProps;
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.42-vnext",
|
5
5
|
"description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
],
|
21
21
|
"author": "Precio Fishbone",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.42-vnext",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|