@omnia/fx 8.0.18-vnext → 8.0.19-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/Inject.d.ts +2 -2
- package/internal-do-not-import-from-here/core/ServiceContainer.d.ts +2 -2
- package/internal-do-not-import-from-here/index.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/Exposes.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/InternalDefineWebComponent.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/compositiontests/OptionsBlockCurrent.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/image/scalingsettings/ScalingSettings.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/image/scalingsettings/ScalingSettings.d.ts +201 -0
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.css.d.ts +2 -4
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/btntoggle/ButtonToggle.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/card/Card.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/checkbox/Checkbox.css.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/oxide/checkbox/Checkbox.d.ts +189 -0
- package/internal-do-not-import-from-here/ux/oxide/column/Column.css.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/oxide/column/Column.d.ts +44 -1
- 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 +80 -38
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanels.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/list/ListItem.d.ts +94 -6
- 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.css.d.ts +3 -5
- package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.d.ts +56 -18
- package/internal-do-not-import-from-here/ux/oxide/panel/Panel.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/panel/Panel.d.ts +37 -0
- package/internal-do-not-import-from-here/ux/oxide/radio/RadioGroup.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/select/Select.css.d.ts +1 -11
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +46 -2
- package/internal-do-not-import-from-here/ux/oxide/slider/Slider.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/snackbar/Snackbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/switch/Switch.d.ts +10 -10
- package/internal-do-not-import-from-here/ux/oxide/tab/Tab.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.css.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.d.ts +75 -1
- package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +84 -6
- package/internal-do-not-import-from-here/ux/spacingpicker/SpacingPicker2.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/statusmessageoverlay/LayoutEngineTest.d.ts +47 -0
- package/internal-do-not-import-from-here/ux/statusmessageoverlay/StatusMessageOverlay.d.ts +205 -25
- package/internal-do-not-import-from-here/ux/theming-v2/colorschemapicker/ColorSchemaPicker.css.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/theming-v2/colorschemapicker/ColorSchemaPicker.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/theming-v2/themedefinitionpicker/ThemeDefinitionPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/ThemeEditor.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/use/Types.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/use/UseEventListener.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/use/UseModel.d.ts +11 -0
- package/internal-do-not-import-from-here/ux/use/index.d.ts +1 -0
- package/internal-do-not-import-from-here/wcdefinitions.json +1 -1
- package/internal-do-not-import-from-here/wctypings.d.ts +6 -0
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/statusmessageoverlay/IStatusMessageOverlay.d.ts +0 -19
- package/internal-do-not-import-from-here/ux/statusmessageoverlay/index.d.ts +0 -1
@@ -1,8 +1,8 @@
|
|
1
|
-
import {
|
2
|
-
import { IIcon } from "@omnia/fx/models";
|
1
|
+
import { Func, IIcon } from "@omnia/fx/models";
|
3
2
|
import { VNodeChild } from "vue";
|
4
3
|
type DialogSize = "small" | "medium" | "large" | "full";
|
5
|
-
type
|
4
|
+
type ContentHeight = "dynamic" | "static";
|
5
|
+
type DialogType = "save-cancel" | "confirm" | "ok-cancel" | "default";
|
6
6
|
declare const _default: {
|
7
7
|
new (...args: any[]): {
|
8
8
|
$: import("vue").ComponentInternalInstance;
|
@@ -12,12 +12,12 @@ declare const _default: {
|
|
12
12
|
colorSchemaType?: any;
|
13
13
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
14
14
|
"v-slots": import("vue").Prop<{
|
15
|
-
default?:
|
15
|
+
default?: Func<[VNodeChild]>;
|
16
16
|
} & {
|
17
|
-
fixedContent?:
|
18
|
-
activator?:
|
19
|
-
headerButtons?:
|
20
|
-
actions?:
|
17
|
+
fixedContent?: Func<[VNodeChild]>;
|
18
|
+
activator?: Func<[VNodeChild]>;
|
19
|
+
headerButtons?: Func<[VNodeChild]>;
|
20
|
+
actions?: Func<[VNodeChild]>;
|
21
21
|
}>;
|
22
22
|
"custom-scrolling": {
|
23
23
|
type: import("vue").PropType<boolean>;
|
@@ -29,6 +29,16 @@ declare const _default: {
|
|
29
29
|
required: boolean;
|
30
30
|
default?: boolean;
|
31
31
|
};
|
32
|
+
"content-height": {
|
33
|
+
type: import("vue").PropType<ContentHeight>;
|
34
|
+
required: boolean;
|
35
|
+
default?: ContentHeight;
|
36
|
+
};
|
37
|
+
contentHeight: {
|
38
|
+
type: import("vue").PropType<ContentHeight>;
|
39
|
+
required: boolean;
|
40
|
+
default?: ContentHeight;
|
41
|
+
};
|
32
42
|
variant: {
|
33
43
|
type: import("vue").PropType<DialogType>;
|
34
44
|
required: boolean;
|
@@ -75,8 +85,8 @@ declare const _default: {
|
|
75
85
|
required: boolean;
|
76
86
|
default?: string;
|
77
87
|
};
|
78
|
-
"v-model": import("vue").PropType<
|
79
|
-
modelValue: import("vue").PropType<
|
88
|
+
"v-model": import("vue").PropType<boolean>;
|
89
|
+
modelValue: import("vue").PropType<boolean>;
|
80
90
|
class: {
|
81
91
|
type: import("vue").PropType<String | String[]>;
|
82
92
|
required: boolean;
|
@@ -103,12 +113,12 @@ declare const _default: {
|
|
103
113
|
$el: any;
|
104
114
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
105
115
|
"v-slots": import("vue").Prop<{
|
106
|
-
default?:
|
116
|
+
default?: Func<[VNodeChild]>;
|
107
117
|
} & {
|
108
|
-
fixedContent?:
|
109
|
-
activator?:
|
110
|
-
headerButtons?:
|
111
|
-
actions?:
|
118
|
+
fixedContent?: Func<[VNodeChild]>;
|
119
|
+
activator?: Func<[VNodeChild]>;
|
120
|
+
headerButtons?: Func<[VNodeChild]>;
|
121
|
+
actions?: Func<[VNodeChild]>;
|
112
122
|
}>;
|
113
123
|
"custom-scrolling": {
|
114
124
|
type: import("vue").PropType<boolean>;
|
@@ -120,6 +130,16 @@ declare const _default: {
|
|
120
130
|
required: boolean;
|
121
131
|
default?: boolean;
|
122
132
|
};
|
133
|
+
"content-height": {
|
134
|
+
type: import("vue").PropType<ContentHeight>;
|
135
|
+
required: boolean;
|
136
|
+
default?: ContentHeight;
|
137
|
+
};
|
138
|
+
contentHeight: {
|
139
|
+
type: import("vue").PropType<ContentHeight>;
|
140
|
+
required: boolean;
|
141
|
+
default?: ContentHeight;
|
142
|
+
};
|
123
143
|
variant: {
|
124
144
|
type: import("vue").PropType<DialogType>;
|
125
145
|
required: boolean;
|
@@ -166,8 +186,8 @@ declare const _default: {
|
|
166
186
|
required: boolean;
|
167
187
|
default?: string;
|
168
188
|
};
|
169
|
-
"v-model": import("vue").PropType<
|
170
|
-
modelValue: import("vue").PropType<
|
189
|
+
"v-model": import("vue").PropType<boolean>;
|
190
|
+
modelValue: import("vue").PropType<boolean>;
|
171
191
|
class: {
|
172
192
|
type: import("vue").PropType<String | String[]>;
|
173
193
|
required: boolean;
|
@@ -207,12 +227,12 @@ declare const _default: {
|
|
207
227
|
$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;
|
208
228
|
} & Readonly<import("vue").ExtractPropTypes<{
|
209
229
|
"v-slots": import("vue").Prop<{
|
210
|
-
default?:
|
230
|
+
default?: Func<[VNodeChild]>;
|
211
231
|
} & {
|
212
|
-
fixedContent?:
|
213
|
-
activator?:
|
214
|
-
headerButtons?:
|
215
|
-
actions?:
|
232
|
+
fixedContent?: Func<[VNodeChild]>;
|
233
|
+
activator?: Func<[VNodeChild]>;
|
234
|
+
headerButtons?: Func<[VNodeChild]>;
|
235
|
+
actions?: Func<[VNodeChild]>;
|
216
236
|
}>;
|
217
237
|
"custom-scrolling": {
|
218
238
|
type: import("vue").PropType<boolean>;
|
@@ -224,6 +244,16 @@ declare const _default: {
|
|
224
244
|
required: boolean;
|
225
245
|
default?: boolean;
|
226
246
|
};
|
247
|
+
"content-height": {
|
248
|
+
type: import("vue").PropType<ContentHeight>;
|
249
|
+
required: boolean;
|
250
|
+
default?: ContentHeight;
|
251
|
+
};
|
252
|
+
contentHeight: {
|
253
|
+
type: import("vue").PropType<ContentHeight>;
|
254
|
+
required: boolean;
|
255
|
+
default?: ContentHeight;
|
256
|
+
};
|
227
257
|
variant: {
|
228
258
|
type: import("vue").PropType<DialogType>;
|
229
259
|
required: boolean;
|
@@ -270,8 +300,8 @@ declare const _default: {
|
|
270
300
|
required: boolean;
|
271
301
|
default?: string;
|
272
302
|
};
|
273
|
-
"v-model": import("vue").PropType<
|
274
|
-
modelValue: import("vue").PropType<
|
303
|
+
"v-model": import("vue").PropType<boolean>;
|
304
|
+
modelValue: import("vue").PropType<boolean>;
|
275
305
|
class: {
|
276
306
|
type: import("vue").PropType<String | String[]>;
|
277
307
|
required: boolean;
|
@@ -288,12 +318,12 @@ declare const _default: {
|
|
288
318
|
__isSuspense?: never;
|
289
319
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
290
320
|
"v-slots": import("vue").Prop<{
|
291
|
-
default?:
|
321
|
+
default?: Func<[VNodeChild]>;
|
292
322
|
} & {
|
293
|
-
fixedContent?:
|
294
|
-
activator?:
|
295
|
-
headerButtons?:
|
296
|
-
actions?:
|
323
|
+
fixedContent?: Func<[VNodeChild]>;
|
324
|
+
activator?: Func<[VNodeChild]>;
|
325
|
+
headerButtons?: Func<[VNodeChild]>;
|
326
|
+
actions?: Func<[VNodeChild]>;
|
297
327
|
}>;
|
298
328
|
"custom-scrolling": {
|
299
329
|
type: import("vue").PropType<boolean>;
|
@@ -305,6 +335,16 @@ declare const _default: {
|
|
305
335
|
required: boolean;
|
306
336
|
default?: boolean;
|
307
337
|
};
|
338
|
+
"content-height": {
|
339
|
+
type: import("vue").PropType<ContentHeight>;
|
340
|
+
required: boolean;
|
341
|
+
default?: ContentHeight;
|
342
|
+
};
|
343
|
+
contentHeight: {
|
344
|
+
type: import("vue").PropType<ContentHeight>;
|
345
|
+
required: boolean;
|
346
|
+
default?: ContentHeight;
|
347
|
+
};
|
308
348
|
variant: {
|
309
349
|
type: import("vue").PropType<DialogType>;
|
310
350
|
required: boolean;
|
@@ -351,8 +391,8 @@ declare const _default: {
|
|
351
391
|
required: boolean;
|
352
392
|
default?: string;
|
353
393
|
};
|
354
|
-
"v-model": import("vue").PropType<
|
355
|
-
modelValue: import("vue").PropType<
|
394
|
+
"v-model": import("vue").PropType<boolean>;
|
395
|
+
modelValue: import("vue").PropType<boolean>;
|
356
396
|
class: {
|
357
397
|
type: import("vue").PropType<String | String[]>;
|
358
398
|
required: boolean;
|
@@ -379,19 +419,21 @@ declare const _default: {
|
|
379
419
|
class?: String | String[];
|
380
420
|
size?: DialogSize;
|
381
421
|
icon?: IIcon;
|
422
|
+
modelValue?: boolean;
|
382
423
|
"v-slots"?: {
|
383
|
-
default?:
|
424
|
+
default?: Func<[VNodeChild]>;
|
384
425
|
} & {
|
385
|
-
fixedContent?:
|
386
|
-
activator?:
|
387
|
-
headerButtons?:
|
388
|
-
actions?:
|
426
|
+
fixedContent?: Func<[VNodeChild]>;
|
427
|
+
activator?: Func<[VNodeChild]>;
|
428
|
+
headerButtons?: Func<[VNodeChild]>;
|
429
|
+
actions?: Func<[VNodeChild]>;
|
389
430
|
};
|
390
|
-
"v-model"?:
|
391
|
-
modelValue?: MaybeComputedRef<boolean>;
|
431
|
+
"v-model"?: boolean;
|
392
432
|
variant?: DialogType;
|
393
433
|
hiddenCloseButton?: boolean;
|
394
434
|
"hidden-close-button"?: boolean;
|
435
|
+
contentHeight?: ContentHeight;
|
436
|
+
"content-height"?: ContentHeight;
|
395
437
|
customScrolling?: boolean;
|
396
438
|
"custom-scrolling"?: boolean;
|
397
439
|
}> & {
|
@@ -7,6 +7,24 @@ declare const _default: {
|
|
7
7
|
container?: any;
|
8
8
|
colorSchemaType?: any;
|
9
9
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
10
|
+
variant: {
|
11
|
+
type: import("vue").PropType<"delete">;
|
12
|
+
required: boolean;
|
13
|
+
default?: "delete";
|
14
|
+
} & {
|
15
|
+
type: import("vue").PropType<"delete">;
|
16
|
+
required: boolean;
|
17
|
+
default?: "delete";
|
18
|
+
};
|
19
|
+
disabled: {
|
20
|
+
type: import("vue").PropType<boolean>;
|
21
|
+
required: boolean;
|
22
|
+
default?: boolean;
|
23
|
+
} & {
|
24
|
+
type: import("vue").PropType<boolean>;
|
25
|
+
required: boolean;
|
26
|
+
default?: boolean;
|
27
|
+
};
|
10
28
|
active: {
|
11
29
|
type: import("vue").PropType<boolean>;
|
12
30
|
required: boolean;
|
@@ -40,7 +58,9 @@ declare const _default: {
|
|
40
58
|
};
|
41
59
|
colorSchemaType?: any;
|
42
60
|
container?: any;
|
43
|
-
}>> &
|
61
|
+
}>> & {
|
62
|
+
"onClick:delete"?: () => any;
|
63
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "container" | "colorSchemaType">;
|
44
64
|
$attrs: {
|
45
65
|
[x: string]: unknown;
|
46
66
|
};
|
@@ -52,9 +72,27 @@ declare const _default: {
|
|
52
72
|
}>;
|
53
73
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
54
74
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
55
|
-
$emit: (event:
|
75
|
+
$emit: (event: "click:delete") => void;
|
56
76
|
$el: any;
|
57
77
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
78
|
+
variant: {
|
79
|
+
type: import("vue").PropType<"delete">;
|
80
|
+
required: boolean;
|
81
|
+
default?: "delete";
|
82
|
+
} & {
|
83
|
+
type: import("vue").PropType<"delete">;
|
84
|
+
required: boolean;
|
85
|
+
default?: "delete";
|
86
|
+
};
|
87
|
+
disabled: {
|
88
|
+
type: import("vue").PropType<boolean>;
|
89
|
+
required: boolean;
|
90
|
+
default?: boolean;
|
91
|
+
} & {
|
92
|
+
type: import("vue").PropType<boolean>;
|
93
|
+
required: boolean;
|
94
|
+
default?: boolean;
|
95
|
+
};
|
58
96
|
active: {
|
59
97
|
type: import("vue").PropType<boolean>;
|
60
98
|
required: boolean;
|
@@ -88,7 +126,11 @@ declare const _default: {
|
|
88
126
|
};
|
89
127
|
colorSchemaType?: any;
|
90
128
|
container?: any;
|
91
|
-
}
|
129
|
+
}>> & {
|
130
|
+
"onClick:delete"?: () => any;
|
131
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
132
|
+
"click:delete": () => boolean;
|
133
|
+
}, string, {
|
92
134
|
container?: any;
|
93
135
|
colorSchemaType?: any;
|
94
136
|
}, {}, string> & {
|
@@ -112,6 +154,24 @@ declare const _default: {
|
|
112
154
|
$nextTick: typeof import("vue").nextTick;
|
113
155
|
$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;
|
114
156
|
} & Readonly<import("vue").ExtractPropTypes<{
|
157
|
+
variant: {
|
158
|
+
type: import("vue").PropType<"delete">;
|
159
|
+
required: boolean;
|
160
|
+
default?: "delete";
|
161
|
+
} & {
|
162
|
+
type: import("vue").PropType<"delete">;
|
163
|
+
required: boolean;
|
164
|
+
default?: "delete";
|
165
|
+
};
|
166
|
+
disabled: {
|
167
|
+
type: import("vue").PropType<boolean>;
|
168
|
+
required: boolean;
|
169
|
+
default?: boolean;
|
170
|
+
} & {
|
171
|
+
type: import("vue").PropType<boolean>;
|
172
|
+
required: boolean;
|
173
|
+
default?: boolean;
|
174
|
+
};
|
115
175
|
active: {
|
116
176
|
type: import("vue").PropType<boolean>;
|
117
177
|
required: boolean;
|
@@ -145,11 +205,31 @@ declare const _default: {
|
|
145
205
|
};
|
146
206
|
colorSchemaType?: any;
|
147
207
|
container?: any;
|
148
|
-
}>> &
|
208
|
+
}>> & {
|
209
|
+
"onClick:delete"?: () => any;
|
210
|
+
} & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
149
211
|
__isFragment?: never;
|
150
212
|
__isTeleport?: never;
|
151
213
|
__isSuspense?: never;
|
152
214
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
215
|
+
variant: {
|
216
|
+
type: import("vue").PropType<"delete">;
|
217
|
+
required: boolean;
|
218
|
+
default?: "delete";
|
219
|
+
} & {
|
220
|
+
type: import("vue").PropType<"delete">;
|
221
|
+
required: boolean;
|
222
|
+
default?: "delete";
|
223
|
+
};
|
224
|
+
disabled: {
|
225
|
+
type: import("vue").PropType<boolean>;
|
226
|
+
required: boolean;
|
227
|
+
default?: boolean;
|
228
|
+
} & {
|
229
|
+
type: import("vue").PropType<boolean>;
|
230
|
+
required: boolean;
|
231
|
+
default?: boolean;
|
232
|
+
};
|
153
233
|
active: {
|
154
234
|
type: import("vue").PropType<boolean>;
|
155
235
|
required: boolean;
|
@@ -183,7 +263,11 @@ declare const _default: {
|
|
183
263
|
};
|
184
264
|
colorSchemaType?: any;
|
185
265
|
container?: any;
|
186
|
-
}
|
266
|
+
}>> & {
|
267
|
+
"onClick:delete"?: () => any;
|
268
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
269
|
+
"click:delete": () => boolean;
|
270
|
+
}, string, {
|
187
271
|
container?: any;
|
188
272
|
colorSchemaType?: any;
|
189
273
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
@@ -195,6 +279,10 @@ declare const _default: {
|
|
195
279
|
class?: String | String[];
|
196
280
|
icon?: ButtonIconOptions;
|
197
281
|
active?: boolean;
|
198
|
-
|
282
|
+
disabled?: boolean;
|
283
|
+
variant?: "delete";
|
284
|
+
}> & {
|
285
|
+
"onClick:delete"?: () => any;
|
286
|
+
};
|
199
287
|
};
|
200
288
|
export default _default;
|
@@ -8,7 +8,7 @@ declare const _default: {
|
|
8
8
|
colorSchemaType?: any;
|
9
9
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
10
10
|
"v-slots": import("vue").Prop<{
|
11
|
-
default?: ()
|
11
|
+
default?: import("@omnia/fx-models").Func<[VNodeChild]>;
|
12
12
|
} & {
|
13
13
|
activator?: () => VNodeChild;
|
14
14
|
}>;
|
@@ -36,7 +36,7 @@ declare const _default: {
|
|
36
36
|
$el: any;
|
37
37
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
38
38
|
"v-slots": import("vue").Prop<{
|
39
|
-
default?: ()
|
39
|
+
default?: import("@omnia/fx-models").Func<[VNodeChild]>;
|
40
40
|
} & {
|
41
41
|
activator?: () => VNodeChild;
|
42
42
|
}>;
|
@@ -73,7 +73,7 @@ declare const _default: {
|
|
73
73
|
$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;
|
74
74
|
} & Readonly<import("vue").ExtractPropTypes<{
|
75
75
|
"v-slots": import("vue").Prop<{
|
76
|
-
default?: ()
|
76
|
+
default?: import("@omnia/fx-models").Func<[VNodeChild]>;
|
77
77
|
} & {
|
78
78
|
activator?: () => VNodeChild;
|
79
79
|
}>;
|
@@ -91,7 +91,7 @@ declare const _default: {
|
|
91
91
|
__isSuspense?: never;
|
92
92
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
93
93
|
"v-slots": import("vue").Prop<{
|
94
|
-
default?: ()
|
94
|
+
default?: import("@omnia/fx-models").Func<[VNodeChild]>;
|
95
95
|
} & {
|
96
96
|
activator?: () => VNodeChild;
|
97
97
|
}>;
|
@@ -112,13 +112,13 @@ declare const _default: {
|
|
112
112
|
colorSchemaType?: any;
|
113
113
|
} & {
|
114
114
|
class?: String | String[];
|
115
|
+
modelValue?: boolean;
|
115
116
|
"v-slots"?: {
|
116
|
-
default?: ()
|
117
|
+
default?: import("@omnia/fx-models").Func<[VNodeChild]>;
|
117
118
|
} & {
|
118
119
|
activator?: () => VNodeChild;
|
119
120
|
};
|
120
121
|
"v-model"?: boolean;
|
121
|
-
modelValue?: boolean;
|
122
122
|
}>;
|
123
123
|
};
|
124
124
|
export default _default;
|
package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.css.d.ts
CHANGED
@@ -1,6 +1,4 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
export declare const buttonStyles: {
|
5
|
-
wrapper: (background: string, text: string, iconColor: string) => string;
|
1
|
+
export type DrawerVariant = "editor" | "dialog";
|
2
|
+
export declare const NavigatonDrawerStyles: {
|
3
|
+
wrapper: (variant: DrawerVariant) => string;
|
6
4
|
};
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import { DrawerVariant } from "./NavigationDrawer.css";
|
1
2
|
type locationType = "top" | "left" | "right" | "bottom" | "end" | "start";
|
2
3
|
declare const _default: {
|
3
4
|
new (...args: any[]): {
|
@@ -8,13 +9,13 @@ declare const _default: {
|
|
8
9
|
colorSchemaType?: any;
|
9
10
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
10
11
|
variant: {
|
11
|
-
type: import("vue").PropType<
|
12
|
+
type: import("vue").PropType<DrawerVariant>;
|
12
13
|
required: boolean;
|
13
|
-
default?:
|
14
|
+
default?: DrawerVariant;
|
14
15
|
} & {
|
15
|
-
type: import("vue").PropType<
|
16
|
+
type: import("vue").PropType<DrawerVariant>;
|
16
17
|
required: boolean;
|
17
|
-
default?:
|
18
|
+
default?: DrawerVariant;
|
18
19
|
};
|
19
20
|
overrides: {
|
20
21
|
type: import("vue").PropType<object>;
|
@@ -25,6 +26,15 @@ declare const _default: {
|
|
25
26
|
required: boolean;
|
26
27
|
default?: object;
|
27
28
|
};
|
29
|
+
toned: {
|
30
|
+
type: import("vue").PropType<boolean>;
|
31
|
+
required: boolean;
|
32
|
+
default?: boolean;
|
33
|
+
} & {
|
34
|
+
type: import("vue").PropType<boolean>;
|
35
|
+
required: boolean;
|
36
|
+
default?: boolean;
|
37
|
+
};
|
28
38
|
location: {
|
29
39
|
type: import("vue").PropType<locationType>;
|
30
40
|
required: boolean;
|
@@ -58,13 +68,13 @@ declare const _default: {
|
|
58
68
|
$el: any;
|
59
69
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
60
70
|
variant: {
|
61
|
-
type: import("vue").PropType<
|
71
|
+
type: import("vue").PropType<DrawerVariant>;
|
62
72
|
required: boolean;
|
63
|
-
default?:
|
73
|
+
default?: DrawerVariant;
|
64
74
|
} & {
|
65
|
-
type: import("vue").PropType<
|
75
|
+
type: import("vue").PropType<DrawerVariant>;
|
66
76
|
required: boolean;
|
67
|
-
default?:
|
77
|
+
default?: DrawerVariant;
|
68
78
|
};
|
69
79
|
overrides: {
|
70
80
|
type: import("vue").PropType<object>;
|
@@ -75,6 +85,15 @@ declare const _default: {
|
|
75
85
|
required: boolean;
|
76
86
|
default?: object;
|
77
87
|
};
|
88
|
+
toned: {
|
89
|
+
type: import("vue").PropType<boolean>;
|
90
|
+
required: boolean;
|
91
|
+
default?: boolean;
|
92
|
+
} & {
|
93
|
+
type: import("vue").PropType<boolean>;
|
94
|
+
required: boolean;
|
95
|
+
default?: boolean;
|
96
|
+
};
|
78
97
|
location: {
|
79
98
|
type: import("vue").PropType<locationType>;
|
80
99
|
required: boolean;
|
@@ -117,13 +136,13 @@ declare const _default: {
|
|
117
136
|
$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;
|
118
137
|
} & Readonly<import("vue").ExtractPropTypes<{
|
119
138
|
variant: {
|
120
|
-
type: import("vue").PropType<
|
139
|
+
type: import("vue").PropType<DrawerVariant>;
|
121
140
|
required: boolean;
|
122
|
-
default?:
|
141
|
+
default?: DrawerVariant;
|
123
142
|
} & {
|
124
|
-
type: import("vue").PropType<
|
143
|
+
type: import("vue").PropType<DrawerVariant>;
|
125
144
|
required: boolean;
|
126
|
-
default?:
|
145
|
+
default?: DrawerVariant;
|
127
146
|
};
|
128
147
|
overrides: {
|
129
148
|
type: import("vue").PropType<object>;
|
@@ -134,6 +153,15 @@ declare const _default: {
|
|
134
153
|
required: boolean;
|
135
154
|
default?: object;
|
136
155
|
};
|
156
|
+
toned: {
|
157
|
+
type: import("vue").PropType<boolean>;
|
158
|
+
required: boolean;
|
159
|
+
default?: boolean;
|
160
|
+
} & {
|
161
|
+
type: import("vue").PropType<boolean>;
|
162
|
+
required: boolean;
|
163
|
+
default?: boolean;
|
164
|
+
};
|
137
165
|
location: {
|
138
166
|
type: import("vue").PropType<locationType>;
|
139
167
|
required: boolean;
|
@@ -157,13 +185,13 @@ declare const _default: {
|
|
157
185
|
__isSuspense?: never;
|
158
186
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
159
187
|
variant: {
|
160
|
-
type: import("vue").PropType<
|
188
|
+
type: import("vue").PropType<DrawerVariant>;
|
161
189
|
required: boolean;
|
162
|
-
default?:
|
190
|
+
default?: DrawerVariant;
|
163
191
|
} & {
|
164
|
-
type: import("vue").PropType<
|
192
|
+
type: import("vue").PropType<DrawerVariant>;
|
165
193
|
required: boolean;
|
166
|
-
default?:
|
194
|
+
default?: DrawerVariant;
|
167
195
|
};
|
168
196
|
overrides: {
|
169
197
|
type: import("vue").PropType<object>;
|
@@ -174,6 +202,15 @@ declare const _default: {
|
|
174
202
|
required: boolean;
|
175
203
|
default?: object;
|
176
204
|
};
|
205
|
+
toned: {
|
206
|
+
type: import("vue").PropType<boolean>;
|
207
|
+
required: boolean;
|
208
|
+
default?: boolean;
|
209
|
+
} & {
|
210
|
+
type: import("vue").PropType<boolean>;
|
211
|
+
required: boolean;
|
212
|
+
default?: boolean;
|
213
|
+
};
|
177
214
|
location: {
|
178
215
|
type: import("vue").PropType<locationType>;
|
179
216
|
required: boolean;
|
@@ -200,11 +237,12 @@ declare const _default: {
|
|
200
237
|
colorSchemaType?: any;
|
201
238
|
} & {
|
202
239
|
class?: String | String[];
|
203
|
-
"v-model"?: boolean;
|
204
240
|
modelValue?: boolean;
|
205
|
-
|
241
|
+
"v-model"?: boolean;
|
242
|
+
variant?: DrawerVariant;
|
206
243
|
location?: locationType;
|
207
244
|
overrides?: object;
|
245
|
+
toned?: boolean;
|
208
246
|
}>;
|
209
247
|
};
|
210
248
|
export default _default;
|
@@ -5,6 +5,6 @@ export type VerticalAlignment = "top" | "center" | "bottom";
|
|
5
5
|
export declare const PanelStyles: {
|
6
6
|
templateTitle: string;
|
7
7
|
panelHoverBackground: (dark: boolean) => string;
|
8
|
-
panelWrapper: (hide: boolean, variant: PanelVariant) => string;
|
8
|
+
panelWrapper: (hide: boolean, variant: PanelVariant, grow: boolean) => string;
|
9
9
|
contentWrapper: (flexDirection: PanelDirection, wrap: boolean, alignX: HorizontalAlignment, alignY: VerticalAlignment) => string;
|
10
10
|
};
|