@omnia/fx 8.0.61-dev → 8.0.62-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/core/utils/index.d.ts +0 -1
- package/internal-do-not-import-from-here/index.d.ts +0 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.core.manifest.json +1 -1
- package/internal-do-not-import-from-here/stores/oxide/ComponentHostStore.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/app/appinstance/renderer/MainRenderer.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/Template.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/datatable/Datatable.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/docs/chrome/DocsChrome.css.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/docs/omfx/directives/docs/ClickInSide.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/governancedashboard/BarChartIndicator.d.ts +420 -34
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitle.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/column/Column.css.d.ts +10 -2
- package/internal-do-not-import-from-here/ux/oxide/column/Column.d.ts +89 -84
- package/internal-do-not-import-from-here/ux/oxide/column/ColumnGrid.css.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/oxide/{flex/Col.d.ts → column/ColumnGrid.d.ts} +100 -40
- package/internal-do-not-import-from-here/ux/oxide/flex/Row.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/oxide/hostprovider/HostProvider.d.ts +12 -12
- package/internal-do-not-import-from-here/ux/oxide/panel/Panel.css.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/oxide/panel/Panel.d.ts +4 -74
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/ScrollContainer.d.ts +2 -3
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/store/ScrollContainerStore.d.ts +12 -4
- package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.d.ts +6 -6
- package/internal-do-not-import-from-here/wctypings.d.ts +18 -18
- package/package.json +2 -2
- package/internal-do-not-import-from-here/core/utils/ScrollPagingUtils.d.ts +0 -7
- package/internal-do-not-import-from-here/ux/docs/omfx/directives/docs/ClickOutSide.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/governancedashboard/IBarChartIndicator.d.ts +0 -26
- package/internal-do-not-import-from-here/ux/oxide/flex/Col.css.d.ts +0 -11
- package/internal-do-not-import-from-here/ux/oxide/flex/Flex.css.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/oxide/flex/Flex.d.ts +0 -347
- package/internal-do-not-import-from-here/ux/oxide/panel/docs/Scrolling.d.ts +0 -46
- /package/internal-do-not-import-from-here/ux/{oxide/panel/docs/PanelAlignment.d.ts → docs/omfx/directives/docs/UseClickInSide.d.ts} +0 -0
@@ -1,347 +0,0 @@
|
|
1
|
-
import { OPaddingCombination } from "@omnia/fx/models";
|
2
|
-
export * from "./Flex.css";
|
3
|
-
declare const _default: {
|
4
|
-
new (...args: any[]): {
|
5
|
-
$: import("vue").ComponentInternalInstance;
|
6
|
-
$data: {};
|
7
|
-
$props: Partial<{
|
8
|
-
container?: any;
|
9
|
-
blueprint?: any;
|
10
|
-
colorSchemaType?: any;
|
11
|
-
blueprintType?: any;
|
12
|
-
colors?: any;
|
13
|
-
}> & Omit<{
|
14
|
-
readonly container?: any;
|
15
|
-
readonly blueprint?: any;
|
16
|
-
readonly colorSchemaType?: any;
|
17
|
-
readonly blueprintType?: any;
|
18
|
-
readonly colors?: any;
|
19
|
-
readonly class?: String | String[];
|
20
|
-
readonly width?: string;
|
21
|
-
readonly height?: string;
|
22
|
-
readonly direction?: "column" | "row";
|
23
|
-
readonly maxHeight?: string;
|
24
|
-
readonly maxWidth?: string;
|
25
|
-
readonly minHeight?: string;
|
26
|
-
readonly minWidth?: string;
|
27
|
-
readonly padding?: OPaddingCombination;
|
28
|
-
readonly wrap?: boolean;
|
29
|
-
readonly filled?: boolean;
|
30
|
-
readonly grow?: number;
|
31
|
-
readonly variant?: "default" | "grid";
|
32
|
-
readonly alignY?: "center" | "bottom" | "top";
|
33
|
-
readonly toned?: boolean;
|
34
|
-
readonly alignX?: "left" | "center" | "right";
|
35
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
36
|
-
alignX: {
|
37
|
-
type: import("vue").PropType<"left" | "center" | "right">;
|
38
|
-
};
|
39
|
-
padding: {
|
40
|
-
type: import("vue").PropType<OPaddingCombination>;
|
41
|
-
};
|
42
|
-
minHeight: {
|
43
|
-
type: import("vue").PropType<string>;
|
44
|
-
};
|
45
|
-
maxHeight: {
|
46
|
-
type: import("vue").PropType<string>;
|
47
|
-
};
|
48
|
-
height: {
|
49
|
-
type: import("vue").PropType<string>;
|
50
|
-
};
|
51
|
-
minWidth: {
|
52
|
-
type: import("vue").PropType<string>;
|
53
|
-
};
|
54
|
-
maxWidth: {
|
55
|
-
type: import("vue").PropType<string>;
|
56
|
-
};
|
57
|
-
width: {
|
58
|
-
type: import("vue").PropType<string>;
|
59
|
-
};
|
60
|
-
toned: {
|
61
|
-
type: import("vue").PropType<boolean>;
|
62
|
-
} & {
|
63
|
-
type: import("vue").PropType<boolean>;
|
64
|
-
};
|
65
|
-
grow: {
|
66
|
-
type: import("vue").PropType<number>;
|
67
|
-
};
|
68
|
-
filled: {
|
69
|
-
type: import("vue").PropType<boolean>;
|
70
|
-
};
|
71
|
-
wrap: {
|
72
|
-
type: import("vue").PropType<boolean>;
|
73
|
-
};
|
74
|
-
direction: {
|
75
|
-
type: import("vue").PropType<"column" | "row">;
|
76
|
-
required: false;
|
77
|
-
};
|
78
|
-
alignY: {
|
79
|
-
type: import("vue").PropType<"center" | "bottom" | "top">;
|
80
|
-
};
|
81
|
-
variant: {
|
82
|
-
type: import("vue").PropType<"default" | "grid">;
|
83
|
-
required: false;
|
84
|
-
};
|
85
|
-
class: {
|
86
|
-
type: import("vue").PropType<String | String[]>;
|
87
|
-
required: boolean;
|
88
|
-
};
|
89
|
-
colorSchemaType?: any;
|
90
|
-
container?: any;
|
91
|
-
colors?: any;
|
92
|
-
blueprintType?: any;
|
93
|
-
blueprint?: any;
|
94
|
-
}>>, "container" | "blueprint" | "colorSchemaType" | "blueprintType" | "colors">;
|
95
|
-
$attrs: {
|
96
|
-
[x: string]: unknown;
|
97
|
-
};
|
98
|
-
$refs: {
|
99
|
-
[x: string]: unknown;
|
100
|
-
};
|
101
|
-
$slots: Readonly<{
|
102
|
-
[name: string]: import("vue").Slot<any>;
|
103
|
-
}>;
|
104
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
105
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
106
|
-
$emit: (event: string, ...args: any[]) => void;
|
107
|
-
$el: any;
|
108
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
109
|
-
alignX: {
|
110
|
-
type: import("vue").PropType<"left" | "center" | "right">;
|
111
|
-
};
|
112
|
-
padding: {
|
113
|
-
type: import("vue").PropType<OPaddingCombination>;
|
114
|
-
};
|
115
|
-
minHeight: {
|
116
|
-
type: import("vue").PropType<string>;
|
117
|
-
};
|
118
|
-
maxHeight: {
|
119
|
-
type: import("vue").PropType<string>;
|
120
|
-
};
|
121
|
-
height: {
|
122
|
-
type: import("vue").PropType<string>;
|
123
|
-
};
|
124
|
-
minWidth: {
|
125
|
-
type: import("vue").PropType<string>;
|
126
|
-
};
|
127
|
-
maxWidth: {
|
128
|
-
type: import("vue").PropType<string>;
|
129
|
-
};
|
130
|
-
width: {
|
131
|
-
type: import("vue").PropType<string>;
|
132
|
-
};
|
133
|
-
toned: {
|
134
|
-
type: import("vue").PropType<boolean>;
|
135
|
-
} & {
|
136
|
-
type: import("vue").PropType<boolean>;
|
137
|
-
};
|
138
|
-
grow: {
|
139
|
-
type: import("vue").PropType<number>;
|
140
|
-
};
|
141
|
-
filled: {
|
142
|
-
type: import("vue").PropType<boolean>;
|
143
|
-
};
|
144
|
-
wrap: {
|
145
|
-
type: import("vue").PropType<boolean>;
|
146
|
-
};
|
147
|
-
direction: {
|
148
|
-
type: import("vue").PropType<"column" | "row">;
|
149
|
-
required: false;
|
150
|
-
};
|
151
|
-
alignY: {
|
152
|
-
type: import("vue").PropType<"center" | "bottom" | "top">;
|
153
|
-
};
|
154
|
-
variant: {
|
155
|
-
type: import("vue").PropType<"default" | "grid">;
|
156
|
-
required: false;
|
157
|
-
};
|
158
|
-
class: {
|
159
|
-
type: import("vue").PropType<String | String[]>;
|
160
|
-
required: boolean;
|
161
|
-
};
|
162
|
-
colorSchemaType?: any;
|
163
|
-
container?: any;
|
164
|
-
colors?: any;
|
165
|
-
blueprintType?: any;
|
166
|
-
blueprint?: any;
|
167
|
-
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
168
|
-
container?: any;
|
169
|
-
blueprint?: any;
|
170
|
-
colorSchemaType?: any;
|
171
|
-
blueprintType?: any;
|
172
|
-
colors?: any;
|
173
|
-
}, {}, string, {}> & {
|
174
|
-
beforeCreate?: (() => void) | (() => void)[];
|
175
|
-
created?: (() => void) | (() => void)[];
|
176
|
-
beforeMount?: (() => void) | (() => void)[];
|
177
|
-
mounted?: (() => void) | (() => void)[];
|
178
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
179
|
-
updated?: (() => void) | (() => void)[];
|
180
|
-
activated?: (() => void) | (() => void)[];
|
181
|
-
deactivated?: (() => void) | (() => void)[];
|
182
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
183
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
184
|
-
destroyed?: (() => void) | (() => void)[];
|
185
|
-
unmounted?: (() => void) | (() => void)[];
|
186
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
187
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
188
|
-
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)[];
|
189
|
-
};
|
190
|
-
$forceUpdate: () => void;
|
191
|
-
$nextTick: typeof import("vue").nextTick;
|
192
|
-
$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;
|
193
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
194
|
-
alignX: {
|
195
|
-
type: import("vue").PropType<"left" | "center" | "right">;
|
196
|
-
};
|
197
|
-
padding: {
|
198
|
-
type: import("vue").PropType<OPaddingCombination>;
|
199
|
-
};
|
200
|
-
minHeight: {
|
201
|
-
type: import("vue").PropType<string>;
|
202
|
-
};
|
203
|
-
maxHeight: {
|
204
|
-
type: import("vue").PropType<string>;
|
205
|
-
};
|
206
|
-
height: {
|
207
|
-
type: import("vue").PropType<string>;
|
208
|
-
};
|
209
|
-
minWidth: {
|
210
|
-
type: import("vue").PropType<string>;
|
211
|
-
};
|
212
|
-
maxWidth: {
|
213
|
-
type: import("vue").PropType<string>;
|
214
|
-
};
|
215
|
-
width: {
|
216
|
-
type: import("vue").PropType<string>;
|
217
|
-
};
|
218
|
-
toned: {
|
219
|
-
type: import("vue").PropType<boolean>;
|
220
|
-
} & {
|
221
|
-
type: import("vue").PropType<boolean>;
|
222
|
-
};
|
223
|
-
grow: {
|
224
|
-
type: import("vue").PropType<number>;
|
225
|
-
};
|
226
|
-
filled: {
|
227
|
-
type: import("vue").PropType<boolean>;
|
228
|
-
};
|
229
|
-
wrap: {
|
230
|
-
type: import("vue").PropType<boolean>;
|
231
|
-
};
|
232
|
-
direction: {
|
233
|
-
type: import("vue").PropType<"column" | "row">;
|
234
|
-
required: false;
|
235
|
-
};
|
236
|
-
alignY: {
|
237
|
-
type: import("vue").PropType<"center" | "bottom" | "top">;
|
238
|
-
};
|
239
|
-
variant: {
|
240
|
-
type: import("vue").PropType<"default" | "grid">;
|
241
|
-
required: false;
|
242
|
-
};
|
243
|
-
class: {
|
244
|
-
type: import("vue").PropType<String | String[]>;
|
245
|
-
required: boolean;
|
246
|
-
};
|
247
|
-
colorSchemaType?: any;
|
248
|
-
container?: any;
|
249
|
-
colors?: any;
|
250
|
-
blueprintType?: any;
|
251
|
-
blueprint?: any;
|
252
|
-
}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
253
|
-
__isFragment?: never;
|
254
|
-
__isTeleport?: never;
|
255
|
-
__isSuspense?: never;
|
256
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
257
|
-
alignX: {
|
258
|
-
type: import("vue").PropType<"left" | "center" | "right">;
|
259
|
-
};
|
260
|
-
padding: {
|
261
|
-
type: import("vue").PropType<OPaddingCombination>;
|
262
|
-
};
|
263
|
-
minHeight: {
|
264
|
-
type: import("vue").PropType<string>;
|
265
|
-
};
|
266
|
-
maxHeight: {
|
267
|
-
type: import("vue").PropType<string>;
|
268
|
-
};
|
269
|
-
height: {
|
270
|
-
type: import("vue").PropType<string>;
|
271
|
-
};
|
272
|
-
minWidth: {
|
273
|
-
type: import("vue").PropType<string>;
|
274
|
-
};
|
275
|
-
maxWidth: {
|
276
|
-
type: import("vue").PropType<string>;
|
277
|
-
};
|
278
|
-
width: {
|
279
|
-
type: import("vue").PropType<string>;
|
280
|
-
};
|
281
|
-
toned: {
|
282
|
-
type: import("vue").PropType<boolean>;
|
283
|
-
} & {
|
284
|
-
type: import("vue").PropType<boolean>;
|
285
|
-
};
|
286
|
-
grow: {
|
287
|
-
type: import("vue").PropType<number>;
|
288
|
-
};
|
289
|
-
filled: {
|
290
|
-
type: import("vue").PropType<boolean>;
|
291
|
-
};
|
292
|
-
wrap: {
|
293
|
-
type: import("vue").PropType<boolean>;
|
294
|
-
};
|
295
|
-
direction: {
|
296
|
-
type: import("vue").PropType<"column" | "row">;
|
297
|
-
required: false;
|
298
|
-
};
|
299
|
-
alignY: {
|
300
|
-
type: import("vue").PropType<"center" | "bottom" | "top">;
|
301
|
-
};
|
302
|
-
variant: {
|
303
|
-
type: import("vue").PropType<"default" | "grid">;
|
304
|
-
required: false;
|
305
|
-
};
|
306
|
-
class: {
|
307
|
-
type: import("vue").PropType<String | String[]>;
|
308
|
-
required: boolean;
|
309
|
-
};
|
310
|
-
colorSchemaType?: any;
|
311
|
-
container?: any;
|
312
|
-
colors?: any;
|
313
|
-
blueprintType?: any;
|
314
|
-
blueprint?: any;
|
315
|
-
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
316
|
-
container?: any;
|
317
|
-
blueprint?: any;
|
318
|
-
colorSchemaType?: any;
|
319
|
-
blueprintType?: any;
|
320
|
-
colors?: any;
|
321
|
-
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
322
|
-
propsDefinition: Omit<Readonly<{
|
323
|
-
container?: any;
|
324
|
-
blueprint?: any;
|
325
|
-
colorSchemaType?: any;
|
326
|
-
blueprintType?: any;
|
327
|
-
colors?: any;
|
328
|
-
} & {
|
329
|
-
class?: String | String[];
|
330
|
-
width?: string;
|
331
|
-
height?: string;
|
332
|
-
direction?: "column" | "row";
|
333
|
-
maxHeight?: string;
|
334
|
-
maxWidth?: string;
|
335
|
-
minHeight?: string;
|
336
|
-
minWidth?: string;
|
337
|
-
padding?: OPaddingCombination;
|
338
|
-
wrap?: boolean;
|
339
|
-
filled?: boolean;
|
340
|
-
grow?: number;
|
341
|
-
variant?: "default" | "grid";
|
342
|
-
alignY?: "center" | "bottom" | "top";
|
343
|
-
toned?: boolean;
|
344
|
-
alignX?: "left" | "center" | "right";
|
345
|
-
}>, never>;
|
346
|
-
};
|
347
|
-
export default _default;
|
@@ -1,46 +0,0 @@
|
|
1
|
-
declare const _default: {
|
2
|
-
new (...args: any[]): {
|
3
|
-
$: import("vue").ComponentInternalInstance;
|
4
|
-
$data: {};
|
5
|
-
$props: Partial<{}> & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, never>;
|
6
|
-
$attrs: {
|
7
|
-
[x: string]: unknown;
|
8
|
-
};
|
9
|
-
$refs: {
|
10
|
-
[x: string]: unknown;
|
11
|
-
};
|
12
|
-
$slots: Readonly<{
|
13
|
-
[name: string]: import("vue").Slot<any>;
|
14
|
-
}>;
|
15
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
16
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
17
|
-
$emit: (event: string, ...args: any[]) => void;
|
18
|
-
$el: any;
|
19
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
20
|
-
beforeCreate?: (() => void) | (() => void)[];
|
21
|
-
created?: (() => void) | (() => void)[];
|
22
|
-
beforeMount?: (() => void) | (() => void)[];
|
23
|
-
mounted?: (() => void) | (() => void)[];
|
24
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
25
|
-
updated?: (() => void) | (() => void)[];
|
26
|
-
activated?: (() => void) | (() => void)[];
|
27
|
-
deactivated?: (() => void) | (() => void)[];
|
28
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
29
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
30
|
-
destroyed?: (() => void) | (() => void)[];
|
31
|
-
unmounted?: (() => void) | (() => void)[];
|
32
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
33
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
34
|
-
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)[];
|
35
|
-
};
|
36
|
-
$forceUpdate: () => void;
|
37
|
-
$nextTick: typeof import("vue").nextTick;
|
38
|
-
$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;
|
39
|
-
} & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
40
|
-
__isFragment?: never;
|
41
|
-
__isTeleport?: never;
|
42
|
-
__isSuspense?: never;
|
43
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
44
|
-
propsDefinition: Omit<Readonly<{} & {}>, never>;
|
45
|
-
};
|
46
|
-
export default _default;
|