@omnia/fx 8.0.67-dev → 8.0.68-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/layoutcanvas/editor/layoutItemselector/LayoutItemSelector.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutBlock.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutColumn.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutPlaceHolder.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSection.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSectionTab.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutTab.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutBlockRenderer.d.ts +19 -113
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutColumnRenderer.d.ts +19 -113
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionRenderer.d.ts +19 -118
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionStepperRenderer.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionTabRenderer.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutStepRenderer.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutTabRenderer.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/column/Column.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/column/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/flex/Row.css.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/oxide/flex/Row.d.ts +14 -1
- package/internal-do-not-import-from-here/ux/oxide/flex/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +21 -1
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/SlidePanel.d.ts +31 -1
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/store/SlidePanelStore.d.ts +41 -1
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/content/Image.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/content/ImageText.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/content/Quote.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/content/Text.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/content/index.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/useDefaultDesignKit.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/pages/definitions/headers/HeaderWithImage.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/useDesignKits.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +28 -11
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronConstants.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/{View.d.ts → Flex.d.ts} +6 -6
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/FlexColumn.d.ts +32 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/FlexRow.d.ts +32 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +7 -0
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/content/Contentblocks.d.ts +0 -1
@@ -1,4 +1,4 @@
|
|
1
|
-
import { OHorizontalAlignments, OPaddingCombination, OVerticalAlignments } from "@omnia/fx-models";
|
1
|
+
import { OHorizontalAlignments, OPaddingCombination, ORowDirections, OVerticalAlignments } from "@omnia/fx-models";
|
2
2
|
export interface stylingSettings {
|
3
3
|
alignX: OHorizontalAlignments;
|
4
4
|
alignY: OVerticalAlignments;
|
@@ -10,6 +10,7 @@ export interface stylingSettings {
|
|
10
10
|
height: string;
|
11
11
|
minHeight: string;
|
12
12
|
wrap: boolean;
|
13
|
+
direction: ORowDirections;
|
13
14
|
}
|
14
15
|
export declare const RowStyles: {
|
15
16
|
wrapper: (settings: stylingSettings) => string;
|
@@ -25,6 +25,9 @@ declare const _default: {
|
|
25
25
|
minWidth: {
|
26
26
|
type: import("vue").PropType<string>;
|
27
27
|
};
|
28
|
+
direction: {
|
29
|
+
type: import("vue").PropType<"row" | "row-reverse">;
|
30
|
+
};
|
28
31
|
width: {
|
29
32
|
type: import("vue").PropType<string>;
|
30
33
|
};
|
@@ -76,6 +79,9 @@ declare const _default: {
|
|
76
79
|
minWidth: {
|
77
80
|
type: import("vue").PropType<string>;
|
78
81
|
};
|
82
|
+
direction: {
|
83
|
+
type: import("vue").PropType<"row" | "row-reverse">;
|
84
|
+
};
|
79
85
|
width: {
|
80
86
|
type: import("vue").PropType<string>;
|
81
87
|
};
|
@@ -140,6 +146,9 @@ declare const _default: {
|
|
140
146
|
minWidth: {
|
141
147
|
type: import("vue").PropType<string>;
|
142
148
|
};
|
149
|
+
direction: {
|
150
|
+
type: import("vue").PropType<"row" | "row-reverse">;
|
151
|
+
};
|
143
152
|
width: {
|
144
153
|
type: import("vue").PropType<string>;
|
145
154
|
};
|
@@ -201,6 +210,9 @@ declare const _default: {
|
|
201
210
|
minWidth: {
|
202
211
|
type: import("vue").PropType<string>;
|
203
212
|
};
|
213
|
+
direction: {
|
214
|
+
type: import("vue").PropType<"row" | "row-reverse">;
|
215
|
+
};
|
204
216
|
width: {
|
205
217
|
type: import("vue").PropType<string>;
|
206
218
|
};
|
@@ -244,17 +256,18 @@ declare const _default: {
|
|
244
256
|
class?: String | String[];
|
245
257
|
width?: string;
|
246
258
|
height?: string;
|
259
|
+
direction?: "row" | "row-reverse";
|
247
260
|
minHeight?: string;
|
248
261
|
minWidth?: string;
|
249
262
|
margin?: SpacingSettings | SpacingType;
|
250
263
|
padding?: SpacingSettings | SpacingType;
|
251
264
|
wrap?: boolean;
|
252
265
|
filled?: boolean;
|
253
|
-
toned?: boolean;
|
254
266
|
gapX?: number | SpacingType;
|
255
267
|
gapY?: number | SpacingType;
|
256
268
|
alignX?: "left" | "center" | "right";
|
257
269
|
alignY?: "center" | "bottom" | "top";
|
270
|
+
toned?: boolean;
|
258
271
|
}>, never>;
|
259
272
|
};
|
260
273
|
export default _default;
|
@@ -12,6 +12,9 @@ declare const _default: {
|
|
12
12
|
"v-slots": import("vue").Prop<{
|
13
13
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
14
14
|
} & OSelectSlots>;
|
15
|
+
search: {
|
16
|
+
type: import("vue").PropType<string>;
|
17
|
+
};
|
15
18
|
hideSelected: {
|
16
19
|
type: import("vue").PropType<boolean>;
|
17
20
|
};
|
@@ -95,13 +98,18 @@ declare const _default: {
|
|
95
98
|
}>> & {
|
96
99
|
"onUpdate:modelValue"?: (value: any) => any;
|
97
100
|
"onClick:button"?: (value: any) => any;
|
101
|
+
"onUpdate:search"?: (value: string) => any;
|
98
102
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
103
|
+
"update:search": (value: string) => void;
|
99
104
|
"click:button": (value: any) => true;
|
100
105
|
"update:modelValue": (value: any) => true;
|
101
106
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
102
107
|
"v-slots": import("vue").Prop<{
|
103
108
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
104
109
|
} & OSelectSlots>;
|
110
|
+
search: {
|
111
|
+
type: import("vue").PropType<string>;
|
112
|
+
};
|
105
113
|
hideSelected: {
|
106
114
|
type: import("vue").PropType<boolean>;
|
107
115
|
};
|
@@ -185,6 +193,7 @@ declare const _default: {
|
|
185
193
|
}>> & {
|
186
194
|
"onUpdate:modelValue"?: (value: any) => any;
|
187
195
|
"onClick:button"?: (value: any) => any;
|
196
|
+
"onUpdate:search"?: (value: string) => any;
|
188
197
|
}, {
|
189
198
|
container?: any;
|
190
199
|
blueprint?: any;
|
@@ -202,6 +211,9 @@ declare const _default: {
|
|
202
211
|
"v-slots": import("vue").Prop<{
|
203
212
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
204
213
|
} & OSelectSlots>;
|
214
|
+
search: {
|
215
|
+
type: import("vue").PropType<string>;
|
216
|
+
};
|
205
217
|
hideSelected: {
|
206
218
|
type: import("vue").PropType<boolean>;
|
207
219
|
};
|
@@ -285,6 +297,7 @@ declare const _default: {
|
|
285
297
|
}>> & {
|
286
298
|
"onUpdate:modelValue"?: (value: any) => any;
|
287
299
|
"onClick:button"?: (value: any) => any;
|
300
|
+
"onUpdate:search"?: (value: string) => any;
|
288
301
|
}, () => JSX.Element, {}, {}, {}, {
|
289
302
|
container?: any;
|
290
303
|
blueprint?: any;
|
@@ -299,6 +312,9 @@ declare const _default: {
|
|
299
312
|
"v-slots": import("vue").Prop<{
|
300
313
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
301
314
|
} & OSelectSlots>;
|
315
|
+
search: {
|
316
|
+
type: import("vue").PropType<string>;
|
317
|
+
};
|
302
318
|
hideSelected: {
|
303
319
|
type: import("vue").PropType<boolean>;
|
304
320
|
};
|
@@ -382,7 +398,9 @@ declare const _default: {
|
|
382
398
|
}>> & {
|
383
399
|
"onUpdate:modelValue"?: (value: any) => any;
|
384
400
|
"onClick:button"?: (value: any) => any;
|
401
|
+
"onUpdate:search"?: (value: string) => any;
|
385
402
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
403
|
+
"update:search": (value: string) => void;
|
386
404
|
"click:button": (value: any) => true;
|
387
405
|
"update:modelValue": (value: any) => true;
|
388
406
|
}, string, {
|
@@ -399,6 +417,7 @@ declare const _default: {
|
|
399
417
|
blueprintType?: any;
|
400
418
|
colors?: any;
|
401
419
|
} & {
|
420
|
+
search?: string;
|
402
421
|
label?: string;
|
403
422
|
class?: String | String[];
|
404
423
|
multiple?: boolean;
|
@@ -423,9 +442,10 @@ declare const _default: {
|
|
423
442
|
itemValue?: any;
|
424
443
|
returnObject?: boolean;
|
425
444
|
hideSelected?: boolean;
|
426
|
-
}>, "onUpdate:modelValue" | "onClick:button"> & {
|
445
|
+
}>, "onUpdate:modelValue" | "onClick:button" | "onUpdate:search"> & {
|
427
446
|
"onUpdate:modelValue"?: (value: any) => any;
|
428
447
|
"onClick:button"?: (value: any) => any;
|
448
|
+
"onUpdate:search"?: (value: string) => any;
|
429
449
|
};
|
430
450
|
};
|
431
451
|
export default _default;
|
@@ -17,6 +17,9 @@ declare const _default: {
|
|
17
17
|
scrollbar: {
|
18
18
|
type: import("vue").PropType<boolean>;
|
19
19
|
};
|
20
|
+
loop: {
|
21
|
+
type: import("vue").PropType<boolean>;
|
22
|
+
};
|
20
23
|
autoplay: {
|
21
24
|
type: import("vue").PropType<boolean>;
|
22
25
|
};
|
@@ -26,6 +29,10 @@ declare const _default: {
|
|
26
29
|
navigation: {
|
27
30
|
type: import("vue").PropType<boolean>;
|
28
31
|
};
|
32
|
+
class: {
|
33
|
+
type: import("vue").PropType<String | String[]>;
|
34
|
+
required: boolean;
|
35
|
+
};
|
29
36
|
colorSchemaType?: any;
|
30
37
|
container?: any;
|
31
38
|
colors?: any;
|
@@ -48,6 +55,9 @@ declare const _default: {
|
|
48
55
|
scrollbar: {
|
49
56
|
type: import("vue").PropType<boolean>;
|
50
57
|
};
|
58
|
+
loop: {
|
59
|
+
type: import("vue").PropType<boolean>;
|
60
|
+
};
|
51
61
|
autoplay: {
|
52
62
|
type: import("vue").PropType<boolean>;
|
53
63
|
};
|
@@ -57,6 +67,10 @@ declare const _default: {
|
|
57
67
|
navigation: {
|
58
68
|
type: import("vue").PropType<boolean>;
|
59
69
|
};
|
70
|
+
class: {
|
71
|
+
type: import("vue").PropType<String | String[]>;
|
72
|
+
required: boolean;
|
73
|
+
};
|
60
74
|
colorSchemaType?: any;
|
61
75
|
container?: any;
|
62
76
|
colors?: any;
|
@@ -92,6 +106,9 @@ declare const _default: {
|
|
92
106
|
scrollbar: {
|
93
107
|
type: import("vue").PropType<boolean>;
|
94
108
|
};
|
109
|
+
loop: {
|
110
|
+
type: import("vue").PropType<boolean>;
|
111
|
+
};
|
95
112
|
autoplay: {
|
96
113
|
type: import("vue").PropType<boolean>;
|
97
114
|
};
|
@@ -101,6 +118,10 @@ declare const _default: {
|
|
101
118
|
navigation: {
|
102
119
|
type: import("vue").PropType<boolean>;
|
103
120
|
};
|
121
|
+
class: {
|
122
|
+
type: import("vue").PropType<String | String[]>;
|
123
|
+
required: boolean;
|
124
|
+
};
|
104
125
|
colorSchemaType?: any;
|
105
126
|
container?: any;
|
106
127
|
colors?: any;
|
@@ -133,6 +154,9 @@ declare const _default: {
|
|
133
154
|
scrollbar: {
|
134
155
|
type: import("vue").PropType<boolean>;
|
135
156
|
};
|
157
|
+
loop: {
|
158
|
+
type: import("vue").PropType<boolean>;
|
159
|
+
};
|
136
160
|
autoplay: {
|
137
161
|
type: import("vue").PropType<boolean>;
|
138
162
|
};
|
@@ -142,6 +166,10 @@ declare const _default: {
|
|
142
166
|
navigation: {
|
143
167
|
type: import("vue").PropType<boolean>;
|
144
168
|
};
|
169
|
+
class: {
|
170
|
+
type: import("vue").PropType<String | String[]>;
|
171
|
+
required: boolean;
|
172
|
+
};
|
145
173
|
colorSchemaType?: any;
|
146
174
|
container?: any;
|
147
175
|
colors?: any;
|
@@ -162,10 +190,12 @@ declare const _default: {
|
|
162
190
|
colors?: any;
|
163
191
|
} & {
|
164
192
|
navigation?: boolean;
|
193
|
+
class?: String | String[];
|
165
194
|
scrollbar?: boolean;
|
166
195
|
storeHook?: (store: ReturnType<typeof useSlidePanelStore>) => void;
|
167
|
-
pagination?: boolean;
|
168
196
|
autoplay?: boolean;
|
197
|
+
pagination?: boolean;
|
198
|
+
loop?: boolean;
|
169
199
|
delay?: number;
|
170
200
|
slidesPerView?: number;
|
171
201
|
slideSpacing?: number;
|
@@ -13,6 +13,15 @@ export declare const useSlidePanelStore: () => {
|
|
13
13
|
prevSlide: {
|
14
14
|
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
15
15
|
};
|
16
|
+
slideTo: {
|
17
|
+
subscribe(fn: (index: number) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
18
|
+
};
|
19
|
+
slideChange: {
|
20
|
+
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
21
|
+
};
|
22
|
+
autoplay: {
|
23
|
+
subscribe(fn: never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
24
|
+
};
|
16
25
|
};
|
17
26
|
onDispatched: {
|
18
27
|
init: {
|
@@ -24,6 +33,15 @@ export declare const useSlidePanelStore: () => {
|
|
24
33
|
prevSlide: {
|
25
34
|
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
26
35
|
};
|
36
|
+
slideTo: {
|
37
|
+
subscribe(fn: (result: void, index: number) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
38
|
+
};
|
39
|
+
slideChange: {
|
40
|
+
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
41
|
+
};
|
42
|
+
autoplay: {
|
43
|
+
subscribe(fn: never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
44
|
+
};
|
27
45
|
};
|
28
46
|
onFailure: {
|
29
47
|
init: {
|
@@ -35,11 +53,33 @@ export declare const useSlidePanelStore: () => {
|
|
35
53
|
prevSlide: {
|
36
54
|
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
37
55
|
};
|
56
|
+
slideTo: {
|
57
|
+
subscribe(fn: (failureReason: any, index: number) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
58
|
+
};
|
59
|
+
slideChange: {
|
60
|
+
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
61
|
+
};
|
62
|
+
autoplay: {
|
63
|
+
subscribe(fn: never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
64
|
+
};
|
38
65
|
};
|
39
66
|
} & {
|
40
67
|
init: (swiperObj: Swiper) => void;
|
41
68
|
nextSlide: () => void;
|
42
69
|
prevSlide: () => void;
|
70
|
+
slideTo: (index: number) => void;
|
71
|
+
slideChange: () => void;
|
72
|
+
autoplay: {
|
73
|
+
start: () => void;
|
74
|
+
stop: () => void;
|
75
|
+
pause: {
|
76
|
+
start: () => void;
|
77
|
+
stop: () => void;
|
78
|
+
};
|
79
|
+
};
|
80
|
+
};
|
81
|
+
get: {
|
82
|
+
activeIndex: () => number;
|
83
|
+
autoplay: () => boolean;
|
43
84
|
};
|
44
|
-
get: {};
|
45
85
|
};
|
package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/useDefaultDesignKit.d.ts
CHANGED
@@ -24,14 +24,6 @@ export declare function useDefaultDesignKit(): {
|
|
24
24
|
large: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
|
25
25
|
};
|
26
26
|
};
|
27
|
-
readonly content: {
|
28
|
-
text: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
|
29
|
-
textQuote: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
|
30
|
-
imageLeft: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
|
31
|
-
imageRight: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
|
32
|
-
imageWithCaption: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
|
33
|
-
todoActions: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
|
34
|
-
};
|
35
27
|
general: {};
|
36
28
|
readonly cards: {
|
37
29
|
banner: {
|
@@ -25,14 +25,6 @@ export declare function useDesignKits(): {
|
|
25
25
|
large: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
|
26
26
|
};
|
27
27
|
};
|
28
|
-
readonly content: {
|
29
|
-
text: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
|
30
|
-
textQuote: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
|
31
|
-
imageLeft: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
|
32
|
-
imageRight: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
|
33
|
-
imageWithCaption: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
|
34
|
-
todoActions: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
|
35
|
-
};
|
36
28
|
general: {};
|
37
29
|
readonly cards: {
|
38
30
|
banner: {
|
@@ -12,7 +12,9 @@ export interface ResolvedComponentRenderer {
|
|
12
12
|
}
|
13
13
|
export interface BuiltInComponentRenderers {
|
14
14
|
"velcron": unknown;
|
15
|
-
"
|
15
|
+
"flex": unknown;
|
16
|
+
"row": unknown;
|
17
|
+
"column": unknown;
|
16
18
|
"card": unknown;
|
17
19
|
"text": unknown;
|
18
20
|
"image": unknown;
|
@@ -201,23 +203,37 @@ export interface VelcronRenderProp {
|
|
201
203
|
defaultValue?: any;
|
202
204
|
}
|
203
205
|
/*** Built-in Components *********************************************************************/
|
204
|
-
export interface
|
205
|
-
type: "
|
206
|
+
export interface VelcronFlexDefinition extends VelcronDefinition, VelcronColorStyling {
|
207
|
+
type: "flex";
|
206
208
|
events?: VelcronOnPressEvent;
|
207
|
-
direction?: VelcronBindableProp<"row" | "column" | "row-reverse" | "column-reverse">;
|
208
|
-
columnStyle?: object;
|
209
|
-
hAlign?: VelcronHorizontalAlignments;
|
210
|
-
vAlign?: VelcronVerticalAlignments;
|
211
|
-
grow?: number | "default";
|
212
|
-
absolute?: VelcronSpacing;
|
213
209
|
border?: VelcronBorder;
|
214
210
|
borderRadius?: VelcronDimensions;
|
211
|
+
}
|
212
|
+
export interface VelcronFlexRowDefinition extends VelcronDefinition, VelcronColorStyling {
|
213
|
+
type: "row";
|
214
|
+
events?: VelcronOnPressEvent;
|
215
|
+
direction?: VelcronBindableProp<"row" | "row-reverse">;
|
216
|
+
absolute?: VelcronSpacing;
|
217
|
+
hideOverflow?: boolean;
|
218
|
+
wrap?: boolean;
|
219
|
+
gapX?: number | string;
|
220
|
+
gapY?: number | string;
|
221
|
+
alignX?: VelcronHorizontalAlignments;
|
222
|
+
alignY?: VelcronVerticalAlignments;
|
223
|
+
grow?: number | "default";
|
215
224
|
width?: number | string;
|
216
|
-
maxWidth?: number | string;
|
217
225
|
minWidth?: number | string;
|
218
226
|
height?: number | string;
|
219
227
|
minHeight?: number | string;
|
220
|
-
|
228
|
+
}
|
229
|
+
export interface VelcronFlexColumnDefinition extends VelcronDefinition, VelcronColorStyling {
|
230
|
+
type: "column";
|
231
|
+
events?: VelcronOnPressEvent;
|
232
|
+
grow?: number;
|
233
|
+
alignY?: VelcronVerticalAlignments;
|
234
|
+
absolute?: VelcronSpacing;
|
235
|
+
width?: number | string;
|
236
|
+
minWidth?: number | string;
|
221
237
|
}
|
222
238
|
export interface VelcronCardDefinition extends VelcronDefinition, VelcronColorStyling {
|
223
239
|
type: "card";
|
@@ -304,6 +320,7 @@ export interface VelcronBorder extends VelcronDimensions {
|
|
304
320
|
colorType?: string;
|
305
321
|
toned?: boolean;
|
306
322
|
opacity?: number;
|
323
|
+
width?: number;
|
307
324
|
}
|
308
325
|
export interface VelcronChipDefinition extends VelcronDefinition {
|
309
326
|
type: "chip";
|
package/internal-do-not-import-from-here/ux/velcron/renderer/components/{View.d.ts → Flex.d.ts}
RENAMED
@@ -1,10 +1,10 @@
|
|
1
|
-
import { VelcronRenderContext,
|
1
|
+
import { VelcronRenderContext, VelcronFlexDefinition } from "../../core";
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
|
-
definition: import("vue").Prop<
|
4
|
+
definition: import("vue").Prop<VelcronFlexDefinition, VelcronFlexDefinition>;
|
5
5
|
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
6
6
|
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
7
|
-
definition: import("vue").Prop<
|
7
|
+
definition: import("vue").Prop<VelcronFlexDefinition, VelcronFlexDefinition>;
|
8
8
|
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
9
9
|
}>>, {}, true, {}, {}, {
|
10
10
|
P: {};
|
@@ -14,18 +14,18 @@ declare const _default: {
|
|
14
14
|
M: {};
|
15
15
|
Defaults: {};
|
16
16
|
}, Readonly<import("vue").ExtractPropTypes<{
|
17
|
-
definition: import("vue").Prop<
|
17
|
+
definition: import("vue").Prop<VelcronFlexDefinition, VelcronFlexDefinition>;
|
18
18
|
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
19
19
|
}>>, {}, {}, {}, {}, {}>;
|
20
20
|
__isFragment?: never;
|
21
21
|
__isTeleport?: never;
|
22
22
|
__isSuspense?: never;
|
23
23
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
24
|
-
definition: import("vue").Prop<
|
24
|
+
definition: import("vue").Prop<VelcronFlexDefinition, VelcronFlexDefinition>;
|
25
25
|
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
26
26
|
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
27
27
|
propsDefinition: Omit<Readonly<{} & {
|
28
|
-
definition?:
|
28
|
+
definition?: VelcronFlexDefinition;
|
29
29
|
renderContext?: VelcronRenderContext;
|
30
30
|
}>, never>;
|
31
31
|
};
|
@@ -0,0 +1,32 @@
|
|
1
|
+
import { VelcronRenderContext, VelcronFlexColumnDefinition } from "../../core";
|
2
|
+
declare const _default: {
|
3
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
|
+
definition: import("vue").Prop<VelcronFlexColumnDefinition, VelcronFlexColumnDefinition>;
|
5
|
+
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
6
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
7
|
+
definition: import("vue").Prop<VelcronFlexColumnDefinition, VelcronFlexColumnDefinition>;
|
8
|
+
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
9
|
+
}>>, {}, true, {}, {}, {
|
10
|
+
P: {};
|
11
|
+
B: {};
|
12
|
+
D: {};
|
13
|
+
C: {};
|
14
|
+
M: {};
|
15
|
+
Defaults: {};
|
16
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
17
|
+
definition: import("vue").Prop<VelcronFlexColumnDefinition, VelcronFlexColumnDefinition>;
|
18
|
+
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
19
|
+
}>>, {}, {}, {}, {}, {}>;
|
20
|
+
__isFragment?: never;
|
21
|
+
__isTeleport?: never;
|
22
|
+
__isSuspense?: never;
|
23
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
24
|
+
definition: import("vue").Prop<VelcronFlexColumnDefinition, VelcronFlexColumnDefinition>;
|
25
|
+
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
26
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
27
|
+
propsDefinition: Omit<Readonly<{} & {
|
28
|
+
definition?: VelcronFlexColumnDefinition;
|
29
|
+
renderContext?: VelcronRenderContext;
|
30
|
+
}>, never>;
|
31
|
+
};
|
32
|
+
export default _default;
|
@@ -0,0 +1,32 @@
|
|
1
|
+
import { VelcronFlexRowDefinition, VelcronRenderContext } from "../../core";
|
2
|
+
declare const _default: {
|
3
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
|
+
definition: import("vue").Prop<VelcronFlexRowDefinition, VelcronFlexRowDefinition>;
|
5
|
+
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
6
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
7
|
+
definition: import("vue").Prop<VelcronFlexRowDefinition, VelcronFlexRowDefinition>;
|
8
|
+
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
9
|
+
}>>, {}, true, {}, {}, {
|
10
|
+
P: {};
|
11
|
+
B: {};
|
12
|
+
D: {};
|
13
|
+
C: {};
|
14
|
+
M: {};
|
15
|
+
Defaults: {};
|
16
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
17
|
+
definition: import("vue").Prop<VelcronFlexRowDefinition, VelcronFlexRowDefinition>;
|
18
|
+
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
19
|
+
}>>, {}, {}, {}, {}, {}>;
|
20
|
+
__isFragment?: never;
|
21
|
+
__isTeleport?: never;
|
22
|
+
__isSuspense?: never;
|
23
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
24
|
+
definition: import("vue").Prop<VelcronFlexRowDefinition, VelcronFlexRowDefinition>;
|
25
|
+
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
26
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
27
|
+
propsDefinition: Omit<Readonly<{} & {
|
28
|
+
definition?: VelcronFlexRowDefinition;
|
29
|
+
renderContext?: VelcronRenderContext;
|
30
|
+
}>, never>;
|
31
|
+
};
|
32
|
+
export default _default;
|
@@ -111,6 +111,7 @@ import wc177046bfd171495bbce70d1cd9242fa1 from './ux/versionedlayout/controller/
|
|
111
111
|
import wcbd6cd82aabef42e7bf60679c7d5fb470 from './ux/wizard/WizardComponent';
|
112
112
|
import wc28d15a1179a04eaa9f2e82abe15f7177 from '../../fx-sp/internal-do-not-import-from-here/ux/filterengine/TaxonomyPropertyRenderer';
|
113
113
|
import wcb1fca92af8524970b426823cf7ef65b5 from '../../fx-sp/internal-do-not-import-from-here/ux/filterengine/SelectionsAreaTaxonomyRenderer';
|
114
|
+
import wc8000658f96504040b6194f7e887665a7 from '../../fx-sp/internal-do-not-import-from-here/ux/queryfilterbuilder/QueryFilterBuilder';
|
114
115
|
import wccff151bfd6e24f2fbacd02bba0fffe1f from '../../fx-sp/internal-do-not-import-from-here/ux/targetingfilter/TargetingFilter';
|
115
116
|
import wceb90230ea21a47af8ba7c2a3a18b8c6b from '../../fx-sp/internal-do-not-import-from-here/ux/termpicker/TermPicker';
|
116
117
|
import wcbc947f375ee34d2a98e2d431f2e45b62 from './ux/admin/chrome/AdminChromeWrapper';
|
@@ -485,6 +486,7 @@ declare global {
|
|
485
486
|
"omfx-wizard": typeof wcbd6cd82aabef42e7bf60679c7d5fb470.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wcbd6cd82aabef42e7bf60679c7d5fb470.propsDefinition>;
|
486
487
|
"omfx-taxonomy-filterengine-renderer": typeof wc28d15a1179a04eaa9f2e82abe15f7177.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc28d15a1179a04eaa9f2e82abe15f7177.propsDefinition>;
|
487
488
|
"omfx-filterengine-selectionsarea-taxonomyproperty": typeof wcb1fca92af8524970b426823cf7ef65b5.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wcb1fca92af8524970b426823cf7ef65b5.propsDefinition>;
|
489
|
+
"omfx-query-filter-builder": typeof wc8000658f96504040b6194f7e887665a7.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc8000658f96504040b6194f7e887665a7.propsDefinition>;
|
488
490
|
"omfx-targeting-filter": typeof wccff151bfd6e24f2fbacd02bba0fffe1f.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wccff151bfd6e24f2fbacd02bba0fffe1f.propsDefinition>;
|
489
491
|
"omfx-term-picker": typeof wceb90230ea21a47af8ba7c2a3a18b8c6b.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wceb90230ea21a47af8ba7c2a3a18b8c6b.propsDefinition>;
|
490
492
|
"omnia-admin": typeof wcbc947f375ee34d2a98e2d431f2e45b62.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wcbc947f375ee34d2a98e2d431f2e45b62.propsDefinition>;
|
@@ -1305,6 +1307,11 @@ declare global {
|
|
1305
1307
|
$props: typeof wcb1fca92af8524970b426823cf7ef65b5.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wcb1fca92af8524970b426823cf7ef65b5.propsDefinition>;
|
1306
1308
|
};
|
1307
1309
|
};
|
1310
|
+
"QueryFilterBuilder": {
|
1311
|
+
new (...args: any[]): {
|
1312
|
+
$props: typeof wc8000658f96504040b6194f7e887665a7.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc8000658f96504040b6194f7e887665a7.propsDefinition>;
|
1313
|
+
};
|
1314
|
+
};
|
1308
1315
|
"TargetingFilter": {
|
1309
1316
|
new (...args: any[]): {
|
1310
1317
|
$props: typeof wccff151bfd6e24f2fbacd02bba0fffe1f.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wccff151bfd6e24f2fbacd02bba0fffe1f.propsDefinition>;
|
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.68-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.
|
23
|
+
"@omnia/fx-models": "8.0.68-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|
@@ -1 +0,0 @@
|
|
1
|
-
export {};
|