@omnia/fx 8.0.187-dev → 8.0.189-dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. package/internal-do-not-import-from-here/stores/mediapicker/ImageTransformerStore.d.ts +5 -5
  2. package/internal-do-not-import-from-here/ux/aurora/components/backgroundstyle/BackgroundStyleEditor.d.ts +1 -1
  3. package/internal-do-not-import-from-here/ux/aurora/components/borderpicker/BorderPicker.d.ts +6 -1
  4. package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/ButtonBlueprintsViewer.d.ts +4 -4
  5. package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/ButtonStyleEditor.d.ts +1 -1
  6. package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/ButtonStylePicker.d.ts +16 -8
  7. package/internal-do-not-import-from-here/ux/aurora/components/fillpicker/FillPicker.d.ts +1 -1
  8. package/internal-do-not-import-from-here/ux/aurora/store/ComponentBlueprintStore.d.ts +2 -2
  9. package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +4 -4
  10. package/internal-do-not-import-from-here/ux/aurora/store/ThemeContextStore.d.ts +12 -12
  11. package/internal-do-not-import-from-here/ux/aurora/store/ThemeStoreV2.d.ts +1 -1
  12. package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +4 -4
  13. package/internal-do-not-import-from-here/ux/journey/DefineBlade.d.ts +10 -147
  14. package/internal-do-not-import-from-here/ux/journey/Journey.css.d.ts +1 -1
  15. package/internal-do-not-import-from-here/ux/journey/JourneyBlade.d.ts +2 -2
  16. package/internal-do-not-import-from-here/ux/journey/models/Constants.d.ts +1 -1
  17. package/internal-do-not-import-from-here/ux/journey/stores/JourneyStore.d.ts +112 -560
  18. package/internal-do-not-import-from-here/ux/journey/use/UseBlade.d.ts +7 -94
  19. package/internal-do-not-import-from-here/ux/layoutcanvas/actionhandler/LayoutEditorAction.d.ts +69 -0
  20. package/internal-do-not-import-from-here/ux/layoutcanvas/actionhandler/LayoutEditorActionSettings.d.ts +56 -0
  21. package/internal-do-not-import-from-here/ux/layoutcanvas/actionhandler/LayoutEditorClickHandler.d.ts +1 -0
  22. package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +8 -91
  23. package/internal-do-not-import-from-here/ux/oxide/datatable/DataTableServer.d.ts +8 -8
  24. package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +21 -0
  25. package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.d.ts +50 -310
  26. package/internal-do-not-import-from-here/ux/oxide/list/ListItem.d.ts +6 -6
  27. package/internal-do-not-import-from-here/ux/oxide/rating/Rating.d.ts +1 -1
  28. package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +1 -1
  29. package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.d.ts +1 -1
  30. package/internal-do-not-import-from-here/ux/profilecard/ProfileCard.d.ts +1 -1
  31. package/internal-do-not-import-from-here/wctypings.d.ts +30 -6
  32. package/package.json +2 -2
@@ -1,319 +1,59 @@
1
- import { DataTableHeader, IDataTableRowRenderer } from "@omnia/fx/ux";
1
+ import { ODraggableVariants } from "@omnia/fx-models";
2
+ import { DataTableHeader, DefineEmit, DefineProp, DefineSlot, DefineVModel, IDataTableRowRenderer } from "@omnia/fx/ux";
2
3
  import { VNodeChild } from "vue";
3
- declare const _default: {
4
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
5
- "v-slots": import("vue").Prop<{
6
- default?: import("../../DefineVueTypings").Slot<any[]>;
7
- } & {
8
- item?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
9
- append?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
10
- }>;
11
- headers: {
12
- type: import("vue").PropType<DataTableHeader[]>;
13
- required: false;
14
- } & {
15
- type: import("vue").PropType<DataTableHeader[]>;
16
- required: false;
17
- };
18
- variant: {
19
- type: import("vue").PropType<"default" | "element" | "list" | "data-table" | "accordion">;
20
- required: false;
21
- } & {
22
- type: import("vue").PropType<"default" | "element" | "list" | "data-table" | "accordion">;
23
- required: false;
24
- };
25
- navigable: {
26
- type: import("vue").PropType<boolean>;
27
- required: false;
28
- } & {
29
- type: import("vue").PropType<boolean>;
30
- required: false;
31
- };
32
- "placeholder-class": {
33
- type: import("vue").PropType<string>;
34
- };
35
- placeholderClass: {
36
- type: import("vue").PropType<string>;
37
- };
38
- "disabled-item": {
39
- type: import("vue").PropType<string>;
40
- };
41
- disabledItem: {
42
- type: import("vue").PropType<string>;
43
- };
44
- "item-value": {
45
- type: import("vue").PropType<string | ((item: any) => string)>;
46
- };
47
- itemValue: {
48
- type: import("vue").PropType<string | ((item: any) => string)>;
49
- };
50
- "item-title": {
51
- type: import("vue").PropType<string | ((item: any) => VNodeChild)>;
52
- };
53
- itemTitle: {
54
- type: import("vue").PropType<string | ((item: any) => VNodeChild)>;
55
- };
56
- "onUpdate:modelValue": {
57
- type: import("vue").PropType<(value: any[]) => any>;
58
- };
59
- "v-model": {
60
- type: import("vue").PropType<any[]>;
61
- required: false;
62
- };
63
- modelValue: {
64
- type: import("vue").PropType<any[]>;
65
- required: false;
66
- };
67
- }>> & {
68
- "onClick:navigate"?: (value: any) => any;
69
- "onSort:start"?: () => any;
70
- "onSort:end"?: () => any;
71
- }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
72
- "sort:end": () => true;
73
- "sort:start": () => true;
74
- "click:navigate": (value: any) => true;
75
- }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
76
- "v-slots": import("vue").Prop<{
77
- default?: import("../../DefineVueTypings").Slot<any[]>;
78
- } & {
79
- item?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
80
- append?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
81
- }>;
82
- headers: {
83
- type: import("vue").PropType<DataTableHeader[]>;
84
- required: false;
85
- } & {
86
- type: import("vue").PropType<DataTableHeader[]>;
87
- required: false;
88
- };
89
- variant: {
90
- type: import("vue").PropType<"default" | "element" | "list" | "data-table" | "accordion">;
91
- required: false;
92
- } & {
93
- type: import("vue").PropType<"default" | "element" | "list" | "data-table" | "accordion">;
94
- required: false;
95
- };
96
- navigable: {
97
- type: import("vue").PropType<boolean>;
98
- required: false;
99
- } & {
100
- type: import("vue").PropType<boolean>;
101
- required: false;
102
- };
103
- "placeholder-class": {
104
- type: import("vue").PropType<string>;
105
- };
106
- placeholderClass: {
107
- type: import("vue").PropType<string>;
108
- };
109
- "disabled-item": {
110
- type: import("vue").PropType<string>;
111
- };
112
- disabledItem: {
113
- type: import("vue").PropType<string>;
114
- };
115
- "item-value": {
116
- type: import("vue").PropType<string | ((item: any) => string)>;
117
- };
118
- itemValue: {
119
- type: import("vue").PropType<string | ((item: any) => string)>;
120
- };
121
- "item-title": {
122
- type: import("vue").PropType<string | ((item: any) => VNodeChild)>;
123
- };
124
- itemTitle: {
125
- type: import("vue").PropType<string | ((item: any) => VNodeChild)>;
126
- };
127
- "onUpdate:modelValue": {
128
- type: import("vue").PropType<(value: any[]) => any>;
129
- };
130
- "v-model": {
131
- type: import("vue").PropType<any[]>;
132
- required: false;
133
- };
134
- modelValue: {
135
- type: import("vue").PropType<any[]>;
136
- required: false;
137
- };
138
- }>> & {
139
- "onClick:navigate"?: (value: any) => any;
140
- "onSort:start"?: () => any;
141
- "onSort:end"?: () => any;
142
- }, {}, true, {}, {}, {
143
- P: {};
144
- B: {};
145
- D: {};
146
- C: {};
147
- M: {};
148
- Defaults: {};
149
- }, Readonly<import("vue").ExtractPropTypes<{
150
- "v-slots": import("vue").Prop<{
151
- default?: import("../../DefineVueTypings").Slot<any[]>;
152
- } & {
153
- item?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
154
- append?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
155
- }>;
156
- headers: {
157
- type: import("vue").PropType<DataTableHeader[]>;
158
- required: false;
159
- } & {
160
- type: import("vue").PropType<DataTableHeader[]>;
161
- required: false;
162
- };
163
- variant: {
164
- type: import("vue").PropType<"default" | "element" | "list" | "data-table" | "accordion">;
165
- required: false;
166
- } & {
167
- type: import("vue").PropType<"default" | "element" | "list" | "data-table" | "accordion">;
168
- required: false;
169
- };
170
- navigable: {
171
- type: import("vue").PropType<boolean>;
172
- required: false;
173
- } & {
174
- type: import("vue").PropType<boolean>;
175
- required: false;
176
- };
177
- "placeholder-class": {
178
- type: import("vue").PropType<string>;
179
- };
180
- placeholderClass: {
181
- type: import("vue").PropType<string>;
182
- };
183
- "disabled-item": {
184
- type: import("vue").PropType<string>;
185
- };
186
- disabledItem: {
187
- type: import("vue").PropType<string>;
188
- };
189
- "item-value": {
190
- type: import("vue").PropType<string | ((item: any) => string)>;
191
- };
192
- itemValue: {
193
- type: import("vue").PropType<string | ((item: any) => string)>;
194
- };
195
- "item-title": {
196
- type: import("vue").PropType<string | ((item: any) => VNodeChild)>;
197
- };
198
- itemTitle: {
199
- type: import("vue").PropType<string | ((item: any) => VNodeChild)>;
200
- };
201
- "onUpdate:modelValue": {
202
- type: import("vue").PropType<(value: any[]) => any>;
203
- };
204
- "v-model": {
205
- type: import("vue").PropType<any[]>;
206
- required: false;
207
- };
208
- modelValue: {
209
- type: import("vue").PropType<any[]>;
210
- required: false;
211
- };
212
- }>> & {
213
- "onClick:navigate"?: (value: any) => any;
214
- "onSort:start"?: () => any;
215
- "onSort:end"?: () => any;
216
- }, () => JSX.Element, {}, {}, {}, {}>;
217
- __isFragment?: never;
218
- __isTeleport?: never;
219
- __isSuspense?: never;
220
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
221
- "v-slots": import("vue").Prop<{
222
- default?: import("../../DefineVueTypings").Slot<any[]>;
223
- } & {
224
- item?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
225
- append?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
4
+ declare const defaultHeadersValue: any[];
5
+ export type DraggableProps = DefineVModel<"", Array<any>, false, null, "The draggable items."> & DefineProp<"itemTitle", string | ((item: any) => VNodeChild), false, null, "Specify title property of an item or provide custom render it."> & DefineProp<"itemValue", string | ((item: any) => string), false, null, "Property on supplied items that contains its value."> & DefineProp<"disabledItem", string, false, null, "Specify a class name for items that are disabled for sortable."> & DefineProp<"placeholderClass", string, false, null, "Custom styles of the placeholder."> & DefineProp<"navigable", boolean, false, false, "Show navigate icon for further navigation."> & DefineProp<"variant", ODraggableVariants, false, "default", "Applies a distinct style to the component."> & DefineProp<"headers", DataTableHeader[], false, typeof defaultHeadersValue, "An array of objects that each describe a header column for data-table variant."> & DefineSlot<"item", ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void), "Define a custom item appearance."> & DefineSlot<"append", ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void), "Provide extra actions to the end of the item. Applicable in structured variants like List, DataTable,..."> & DefineEmit<"click:navigate", (value: any) => true, "Emit a navigate event."> & DefineEmit<"sort:start", () => true, "Emit a sort start event."> & DefineEmit<"sort:end", () => true, "Emit a sort end event.">;
6
+ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<DraggableProps>) => {
7
+ $: import("vue").ComponentInternalInstance;
8
+ $data: {};
9
+ $props: {};
10
+ $attrs: {
11
+ [x: string]: unknown;
12
+ };
13
+ $refs: {
14
+ [x: string]: unknown;
15
+ };
16
+ $slots: Readonly<{
17
+ [name: string]: import("vue").Slot<any>;
226
18
  }>;
227
- headers: {
228
- type: import("vue").PropType<DataTableHeader[]>;
229
- required: false;
230
- } & {
231
- type: import("vue").PropType<DataTableHeader[]>;
232
- required: false;
233
- };
234
- variant: {
235
- type: import("vue").PropType<"default" | "element" | "list" | "data-table" | "accordion">;
236
- required: false;
237
- } & {
238
- type: import("vue").PropType<"default" | "element" | "list" | "data-table" | "accordion">;
239
- required: false;
240
- };
241
- navigable: {
242
- type: import("vue").PropType<boolean>;
243
- required: false;
244
- } & {
245
- type: import("vue").PropType<boolean>;
246
- required: false;
247
- };
248
- "placeholder-class": {
249
- type: import("vue").PropType<string>;
250
- };
251
- placeholderClass: {
252
- type: import("vue").PropType<string>;
253
- };
254
- "disabled-item": {
255
- type: import("vue").PropType<string>;
256
- };
257
- disabledItem: {
258
- type: import("vue").PropType<string>;
259
- };
260
- "item-value": {
261
- type: import("vue").PropType<string | ((item: any) => string)>;
262
- };
263
- itemValue: {
264
- type: import("vue").PropType<string | ((item: any) => string)>;
265
- };
266
- "item-title": {
267
- type: import("vue").PropType<string | ((item: any) => VNodeChild)>;
268
- };
269
- itemTitle: {
270
- type: import("vue").PropType<string | ((item: any) => VNodeChild)>;
271
- };
272
- "onUpdate:modelValue": {
273
- type: import("vue").PropType<(value: any[]) => any>;
274
- };
275
- "v-model": {
276
- type: import("vue").PropType<any[]>;
277
- required: false;
278
- };
279
- modelValue: {
280
- type: import("vue").PropType<any[]>;
281
- required: false;
282
- };
283
- }>> & {
284
- "onClick:navigate"?: (value: any) => any;
285
- "onSort:start"?: () => any;
286
- "onSort:end"?: () => any;
287
- }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
288
- "sort:end": () => true;
289
- "sort:start": () => true;
290
- "click:navigate": (value: any) => true;
291
- }, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
292
- propsDefinition: Omit<Readonly<{} & {
293
- headers?: DataTableHeader[];
294
- "v-model"?: any[];
295
- "onUpdate:modelValue"?: (value: any[]) => any;
296
- modelValue?: any[];
19
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
20
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
21
+ $emit: (event: string, ...args: any[]) => void;
22
+ $el: any;
23
+ $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
24
+ beforeCreate?: (() => void) | (() => void)[];
25
+ created?: (() => void) | (() => void)[];
26
+ beforeMount?: (() => void) | (() => void)[];
27
+ mounted?: (() => void) | (() => void)[];
28
+ beforeUpdate?: (() => void) | (() => void)[];
29
+ updated?: (() => void) | (() => void)[];
30
+ activated?: (() => void) | (() => void)[];
31
+ deactivated?: (() => void) | (() => void)[];
32
+ beforeDestroy?: (() => void) | (() => void)[];
33
+ beforeUnmount?: (() => void) | (() => void)[];
34
+ destroyed?: (() => void) | (() => void)[];
35
+ unmounted?: (() => void) | (() => void)[];
36
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
37
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
38
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
39
+ };
40
+ $forceUpdate: () => void;
41
+ $nextTick: typeof import("vue").nextTick;
42
+ $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;
43
+ } & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
44
+ propsDefinition: import("@omnia/fx/ux").ExtractProps<DraggableProps> & {
297
45
  "v-slots"?: {
298
- default?: import("../../DefineVueTypings").Slot<any[]>;
46
+ default?: import("vue").Slot;
299
47
  } & {
300
- item?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
301
- append?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
48
+ item?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer<any>) => void);
49
+ append?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer<any>) => void);
302
50
  };
303
- variant?: "default" | "element" | "list" | "data-table" | "accordion";
304
- itemTitle?: string | ((item: any) => VNodeChild);
305
- itemValue?: string | ((item: any) => string);
306
- "item-value"?: string | ((item: any) => string);
307
- "item-title"?: string | ((item: any) => VNodeChild);
308
- disabledItem?: string;
309
- "disabled-item"?: string;
310
- placeholderClass?: string;
311
- "placeholder-class"?: string;
312
- navigable?: boolean;
313
- }>, "onClick:navigate" | "onSort:start" | "onSort:end"> & {
51
+ } & {
314
52
  "onClick:navigate"?: (value: any) => any;
315
53
  "onSort:start"?: () => any;
316
54
  "onSort:end"?: () => any;
317
- };
318
- };
55
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "itemValue" | "itemTitle" | "disabledItem" | "placeholderClass" | "navigable">;
56
+ } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
57
+ [key: string]: any;
58
+ }>;
319
59
  export default _default;
@@ -53,8 +53,8 @@ declare const _default: {
53
53
  required: boolean;
54
54
  };
55
55
  }>> & {
56
- "onClick:delete"?: (value: any) => any;
57
56
  "onClick:navigate"?: (value: any) => any;
57
+ "onClick:delete"?: (value: any) => any;
58
58
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
59
59
  "click:navigate": (value: any) => true;
60
60
  "click:delete": (value: any) => true;
@@ -109,8 +109,8 @@ declare const _default: {
109
109
  required: boolean;
110
110
  };
111
111
  }>> & {
112
- "onClick:delete"?: (value: any) => any;
113
112
  "onClick:navigate"?: (value: any) => any;
113
+ "onClick:delete"?: (value: any) => any;
114
114
  }, {
115
115
  container: boolean;
116
116
  }, true, {}, {}, {
@@ -171,8 +171,8 @@ declare const _default: {
171
171
  required: boolean;
172
172
  };
173
173
  }>> & {
174
- "onClick:delete"?: (value: any) => any;
175
174
  "onClick:navigate"?: (value: any) => any;
175
+ "onClick:delete"?: (value: any) => any;
176
176
  }, () => JSX.Element, {}, {}, {}, {
177
177
  container: boolean;
178
178
  }>;
@@ -230,8 +230,8 @@ declare const _default: {
230
230
  required: boolean;
231
231
  };
232
232
  }>> & {
233
- "onClick:delete"?: (value: any) => any;
234
233
  "onClick:navigate"?: (value: any) => any;
234
+ "onClick:delete"?: (value: any) => any;
235
235
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
236
236
  "click:navigate": (value: any) => true;
237
237
  "click:delete": (value: any) => true;
@@ -252,9 +252,9 @@ declare const _default: {
252
252
  } & VListItemSlots;
253
253
  variant?: "navigation" | "default" | "delete" | "content";
254
254
  subtitle?: VNodeChild;
255
- }>, "onClick:delete" | "onClick:navigate"> & {
256
- "onClick:delete"?: (value: any) => any;
255
+ }>, "onClick:navigate" | "onClick:delete"> & {
257
256
  "onClick:navigate"?: (value: any) => any;
257
+ "onClick:delete"?: (value: any) => any;
258
258
  };
259
259
  };
260
260
  export default _default;
@@ -344,9 +344,9 @@ declare const _default: {
344
344
  "v-slots"?: {
345
345
  default?: import("../../DefineVueTypings").Slot<any[]>;
346
346
  } & VRatingSlots;
347
- hover?: boolean;
348
347
  readonly?: boolean;
349
348
  clearable?: boolean;
349
+ hover?: boolean;
350
350
  density?: "default" | "compact" | "comfortable";
351
351
  }>, never>;
352
352
  };
@@ -165,7 +165,7 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
165
165
  "onUpdate:focused"?: (value: boolean) => any;
166
166
  "onClick:button"?: (value: any) => any;
167
167
  "onUpdate:search"?: (value: string) => any;
168
- } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "container" | "class" | "label" | "multiple" | "disabled" | "colorSchemaType" | "toned" | "items" | "colors" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "loading" | "searchable" | "rules" | "hint" | "persistentHint" | "readonly" | "clearable" | "itemTitle" | "itemValue" | "returnObject" | "hideNoData" | "menuIcon" | "hideSelected">;
168
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "container" | "class" | "label" | "multiple" | "disabled" | "colorSchemaType" | "toned" | "items" | "colors" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "loading" | "searchable" | "rules" | "hint" | "persistentHint" | "readonly" | "clearable" | "itemValue" | "returnObject" | "hideNoData" | "itemTitle" | "menuIcon" | "hideSelected">;
169
169
  } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
170
170
  [key: string]: any;
171
171
  }>;
@@ -583,8 +583,8 @@ declare const _default: {
583
583
  };
584
584
  "v-model:expanded"?: any[];
585
585
  "onUpdate:expanded"?: (value: any[]) => any;
586
- itemTitle?: string | ((item: any) => string);
587
586
  itemValue?: string;
587
+ itemTitle?: string | ((item: any) => string);
588
588
  "item-value"?: string;
589
589
  "item-title"?: string | ((item: any) => string);
590
590
  itemChildren?: string;
@@ -233,8 +233,8 @@ declare const _default: {
233
233
  href?: string;
234
234
  contentClass?: string[];
235
235
  user?: UserIdentity;
236
- scopedSlots?: ScopedSlots<IProfileCardScopedSlots>;
237
236
  ripple?: boolean;
237
+ scopedSlots?: ScopedSlots<IProfileCardScopedSlots>;
238
238
  "content-class"?: string[];
239
239
  "scoped-slots"?: ScopedSlots<IProfileCardScopedSlots>;
240
240
  appendToBody?: boolean;
@@ -174,6 +174,8 @@ import wcb4fdf9c1a0314fb7a3d3d0cc6e9569b3 from './ux/hub/feed/HubFeed';
174
174
  import wcbaecc57591074830a5ae2dda9f6b5ed5 from './ux/hub/feed/HubFeedSettings';
175
175
  import wcb11d3955272348cdb3a131cb1bf61374 from './ux/hub/feed/HubFeedChrome';
176
176
  import wc2f4b3c8e5d6a4f7bbc9d1e0a2b3c4d5e from './ux/image/scalingsettings/ScalingSettings';
177
+ import wc800a5cc9e969441ab62989d09642fd91 from './ux/layoutcanvas/actionhandler/LayoutEditorAction';
178
+ import wcf8c97eefe53a4f3eaab4aedd8a53f5a8 from './ux/layoutcanvas/actionhandler/LayoutEditorActionSettings';
177
179
  import wc8e03e2f7fb024945bc51138b77d06088 from './ux/layoutcanvas/editor/LayoutEditorCanvas';
178
180
  import wc0b2ee63495854227a082987161a9e641 from './ux/layoutcanvas/renderer/LayoutBlockRendererHelper';
179
181
  import wcf346db89a53b404690b1795429fb0162 from './ux/layoutcanvas/renderer/LayoutRendererCanvas';
@@ -978,6 +980,12 @@ declare global {
978
980
  "omfx-media-scaling-settings": typeof wc2f4b3c8e5d6a4f7bbc9d1e0a2b3c4d5e extends {
979
981
  propsDefinition: infer TProp;
980
982
  } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc2f4b3c8e5d6a4f7bbc9d1e0a2b3c4d5e extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc2f4b3c8e5d6a4f7bbc9d1e0a2b3c4d5e>, "propsDefinition">> : never;
983
+ "omnia-layout-action": typeof wc800a5cc9e969441ab62989d09642fd91 extends {
984
+ propsDefinition: infer TProp;
985
+ } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc800a5cc9e969441ab62989d09642fd91 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc800a5cc9e969441ab62989d09642fd91>, "propsDefinition">> : never;
986
+ "omnia-layout-action-settings": typeof wcf8c97eefe53a4f3eaab4aedd8a53f5a8 extends {
987
+ propsDefinition: infer TProp;
988
+ } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcf8c97eefe53a4f3eaab4aedd8a53f5a8 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcf8c97eefe53a4f3eaab4aedd8a53f5a8>, "propsDefinition">> : never;
981
989
  "omfx-layout-editor-canvas": typeof wc8e03e2f7fb024945bc51138b77d06088 extends {
982
990
  propsDefinition: infer TProp;
983
991
  } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc8e03e2f7fb024945bc51138b77d06088 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc8e03e2f7fb024945bc51138b77d06088>, "propsDefinition">> : never;
@@ -1887,18 +1895,23 @@ declare global {
1887
1895
  } : typeof wcfc2401c7c3384790ae7ce17d05b0855f;
1888
1896
  };
1889
1897
  };
1890
- "velcron": {
1891
- "editor": {
1892
- "action": typeof wc3147213782724576b53d13e580af67ae extends {
1898
+ "layout": {
1899
+ "action": {
1900
+ "settings": typeof wcf8c97eefe53a4f3eaab4aedd8a53f5a8 extends {
1893
1901
  propsDefinition: infer TProp;
1894
1902
  } ? {
1895
1903
  new (...args: any[]): {
1896
1904
  $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
1897
1905
  };
1898
- } : typeof wc3147213782724576b53d13e580af67ae;
1906
+ } : typeof wcf8c97eefe53a4f3eaab4aedd8a53f5a8;
1899
1907
  };
1900
- };
1901
- "layout": {
1908
+ "action$": typeof wc800a5cc9e969441ab62989d09642fd91 extends {
1909
+ propsDefinition: infer TProp;
1910
+ } ? {
1911
+ new (...args: any[]): {
1912
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
1913
+ };
1914
+ } : typeof wc800a5cc9e969441ab62989d09642fd91;
1902
1915
  "developertools": typeof wc41f1eb15438a488b8b227b1ff31ca66f extends {
1903
1916
  propsDefinition: infer TProp;
1904
1917
  } ? {
@@ -1907,6 +1920,17 @@ declare global {
1907
1920
  };
1908
1921
  } : typeof wc41f1eb15438a488b8b227b1ff31ca66f;
1909
1922
  };
1923
+ "velcron": {
1924
+ "editor": {
1925
+ "action": typeof wc3147213782724576b53d13e580af67ae extends {
1926
+ propsDefinition: infer TProp;
1927
+ } ? {
1928
+ new (...args: any[]): {
1929
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
1930
+ };
1931
+ } : typeof wc3147213782724576b53d13e580af67ae;
1932
+ };
1933
+ };
1910
1934
  };
1911
1935
  "dev": {
1912
1936
  "socket": typeof wce6b88bd8d41949c8af6fed268ae64430 extends {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.187-dev",
4
+ "version": "8.0.189-dev",
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.187-dev",
23
+ "@omnia/fx-models": "8.0.189-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",