@vuetify/v0 0.0.18 → 0.0.20
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/README.md +125 -47
- package/dist/browser/index.js +1483 -1499
- package/dist/components/index.d.mts +3 -3
- package/dist/components/index.mjs +4 -4
- package/dist/{components-DRdenC8b.mjs → components-D590hSY0.mjs} +3 -3
- package/dist/composables/index.d.mts +4 -4
- package/dist/composables/index.mjs +5 -5
- package/dist/{composables-DG1MHp-R.mjs → composables-FE6B8JUW.mjs} +240 -274
- package/dist/constants/index.mjs +1 -1
- package/dist/{globals-BGVqrlN7.mjs → globals-exvZ8fiO.mjs} +1 -1
- package/dist/index-4jSy8KIt.d.mts +73 -0
- package/dist/{index-CH7DpIK8.d.mts → index-BYyEPh1S.d.mts} +127 -10
- package/dist/index-CjzlIAtF.d.mts +296 -0
- package/dist/{index-oQuVnpOj.d.mts → index-DahjxaTj.d.mts} +251 -204
- package/dist/{index-DaX9-kmY.d.mts → index-Gr6XPRWt.d.mts} +7 -5
- package/dist/index.d.mts +6 -6
- package/dist/index.mjs +6 -6
- package/dist/types/index.d.mts +1 -1
- package/dist/{useStep-DC_JvZpy.mjs → useStep-Dw7XloDM.mjs} +996 -1202
- package/dist/utilities/index.d.mts +2 -2
- package/dist/utilities/index.mjs +1 -1
- package/dist/utilities-BrFKLHFS.mjs +363 -0
- package/package.json +3 -3
- package/dist/index-B-jVvwsm.d.mts +0 -71
- package/dist/index-C5LQZd3v.d.mts +0 -11
- package/dist/utilities-JxCe-nF2.mjs +0 -139
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { i as ID, t as DOMElement } from "./index-
|
|
2
|
-
import { I as RegistryContext, M as SelectionTicket, S as GroupContext, T as GroupTicket, c as SingleContext, d as SingleTicket, h as PaginationContext, i as StepTicket, k as SelectionContext, t as StepContext, v as PaginationTicket
|
|
3
|
-
import * as
|
|
1
|
+
import { i as ID, t as DOMElement } from "./index-4jSy8KIt.mjs";
|
|
2
|
+
import { B as RegistryTicket, I as RegistryContext, M as SelectionTicket, S as GroupContext, T as GroupTicket, c as SingleContext, d as SingleTicket, h as PaginationContext, i as StepTicket, k as SelectionContext, t as StepContext, v as PaginationTicket } from "./index-Gr6XPRWt.mjs";
|
|
3
|
+
import * as vue370 from "vue";
|
|
4
4
|
import { MaybeRef, Ref, ShallowRef, TemplateRef } from "vue";
|
|
5
5
|
|
|
6
6
|
//#region src/components/Atom/Atom.vue.d.ts
|
|
7
|
+
|
|
7
8
|
/**
|
|
8
9
|
* Props for the Atom component
|
|
9
10
|
*/
|
|
@@ -39,17 +40,19 @@ interface AtomExpose {
|
|
|
39
40
|
element: TemplateRef<HTMLElement | null>;
|
|
40
41
|
}
|
|
41
42
|
interface AtomPrivateProps extends AtomProps {}
|
|
42
|
-
declare const
|
|
43
|
-
|
|
44
|
-
|
|
43
|
+
declare const _default$27: typeof __VLS_export$27;
|
|
44
|
+
declare const __VLS_export$27: <T extends Record<string, any> = {}>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$11<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
45
|
+
props: __VLS_PrettifyLocal$11<AtomPrivateProps> & vue370.PublicProps & (typeof globalThis extends {
|
|
46
|
+
__VLS_PROPS_FALLBACK: infer P;
|
|
47
|
+
} ? P : {});
|
|
48
|
+
expose: (exposed: vue370.ShallowUnwrapRef<AtomExpose>) => void;
|
|
45
49
|
attrs: any;
|
|
46
50
|
slots: AtomSlots<T>;
|
|
47
51
|
emit: {};
|
|
48
|
-
}>) =>
|
|
52
|
+
}>) => vue370.VNode & {
|
|
49
53
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
50
54
|
};
|
|
51
|
-
|
|
52
|
-
type __VLS_PrettifyLocal$11<T> = { [K in keyof T as K]: T[K] } & {};
|
|
55
|
+
type __VLS_PrettifyLocal$11<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {};
|
|
53
56
|
//#endregion
|
|
54
57
|
//#region src/components/Avatar/AvatarRoot.vue.d.ts
|
|
55
58
|
interface AvatarRootProps extends AtomProps {
|
|
@@ -61,11 +64,11 @@ interface AvatarTicket extends SelectionTicket {
|
|
|
61
64
|
priority?: number;
|
|
62
65
|
}
|
|
63
66
|
interface AvatarContext extends SelectionContext<AvatarTicket> {}
|
|
64
|
-
declare const useAvatarRoot: (key: string, defaultValue?: AvatarContext | undefined) => AvatarContext, provideAvatarContext: (key: string, context: AvatarContext, app?:
|
|
65
|
-
declare const
|
|
67
|
+
declare const useAvatarRoot: (key: string, defaultValue?: AvatarContext | undefined) => AvatarContext, provideAvatarContext: (key: string, context: AvatarContext, app?: vue370.App) => AvatarContext;
|
|
68
|
+
declare const _default$26: typeof __VLS_export$26;
|
|
69
|
+
declare const __VLS_export$26: __VLS_WithSlots$15<vue370.DefineComponent<AvatarRootProps, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, string, vue370.PublicProps, Readonly<AvatarRootProps> & Readonly<{}>, {}, {}, {}, {}, string, vue370.ComponentProvideOptions, false, {}, any>, {
|
|
66
70
|
default?: (props: {}) => any;
|
|
67
71
|
}>;
|
|
68
|
-
declare const _default$26: typeof __VLS_export$26;
|
|
69
72
|
type __VLS_WithSlots$15<T, S> = T & {
|
|
70
73
|
new (): {
|
|
71
74
|
$slots: S;
|
|
@@ -96,16 +99,16 @@ interface AvatarImageSlotProps {
|
|
|
96
99
|
onError: (e: Event) => void;
|
|
97
100
|
};
|
|
98
101
|
}
|
|
99
|
-
declare const
|
|
100
|
-
|
|
102
|
+
declare const _default$25: typeof __VLS_export$25;
|
|
103
|
+
declare const __VLS_export$25: __VLS_WithSlots$14<vue370.DefineComponent<AvatarImageProps, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {
|
|
101
104
|
error: (e: Event) => any;
|
|
102
|
-
|
|
103
|
-
|
|
105
|
+
load: (e: Event) => any;
|
|
106
|
+
}, string, vue370.PublicProps, Readonly<AvatarImageProps> & Readonly<{
|
|
104
107
|
onError?: ((e: Event) => any) | undefined;
|
|
105
|
-
|
|
108
|
+
onLoad?: ((e: Event) => any) | undefined;
|
|
109
|
+
}>, {}, {}, {}, {}, string, vue370.ComponentProvideOptions, false, {}, any>, {
|
|
106
110
|
default: (props: AvatarImageSlotProps) => any;
|
|
107
111
|
}>;
|
|
108
|
-
declare const _default$25: typeof __VLS_export$25;
|
|
109
112
|
type __VLS_WithSlots$14<T, S> = T & {
|
|
110
113
|
new (): {
|
|
111
114
|
$slots: S;
|
|
@@ -121,10 +124,10 @@ interface AvatarFallbackSlotProps {
|
|
|
121
124
|
/** Whether this fallback is currently visible */
|
|
122
125
|
isSelected: boolean;
|
|
123
126
|
}
|
|
124
|
-
declare const
|
|
127
|
+
declare const _default$24: typeof __VLS_export$24;
|
|
128
|
+
declare const __VLS_export$24: __VLS_WithSlots$13<vue370.DefineComponent<AvatarFallbackProps, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, string, vue370.PublicProps, Readonly<AvatarFallbackProps> & Readonly<{}>, {}, {}, {}, {}, string, vue370.ComponentProvideOptions, false, {}, any>, {
|
|
125
129
|
default: (props: AvatarFallbackSlotProps) => any;
|
|
126
130
|
}>;
|
|
127
|
-
declare const _default$24: typeof __VLS_export$24;
|
|
128
131
|
type __VLS_WithSlots$13<T, S> = T & {
|
|
129
132
|
new (): {
|
|
130
133
|
$slots: S;
|
|
@@ -159,7 +162,7 @@ declare const Avatar: {
|
|
|
159
162
|
* ```
|
|
160
163
|
*/
|
|
161
164
|
Root: {
|
|
162
|
-
new (...args: any[]):
|
|
165
|
+
new (...args: any[]): vue370.CreateComponentPublicInstanceWithMixins<Readonly<AvatarRootProps> & Readonly<{}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, vue370.PublicProps, {}, false, {}, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, {}, any, vue370.ComponentProvideOptions, {
|
|
163
166
|
P: {};
|
|
164
167
|
B: {};
|
|
165
168
|
D: {};
|
|
@@ -170,7 +173,7 @@ declare const Avatar: {
|
|
|
170
173
|
__isFragment?: never;
|
|
171
174
|
__isTeleport?: never;
|
|
172
175
|
__isSuspense?: never;
|
|
173
|
-
} &
|
|
176
|
+
} & vue370.ComponentOptionsBase<Readonly<AvatarRootProps> & Readonly<{}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, vue370.ComponentProvideOptions> & vue370.VNodeProps & vue370.AllowedComponentProps & vue370.ComponentCustomProps & (new () => {
|
|
174
177
|
$slots: {
|
|
175
178
|
default?: (props: {}) => any;
|
|
176
179
|
};
|
|
@@ -192,13 +195,13 @@ declare const Avatar: {
|
|
|
192
195
|
* ```
|
|
193
196
|
*/
|
|
194
197
|
Image: {
|
|
195
|
-
new (...args: any[]):
|
|
196
|
-
onLoad?: ((e: Event) => any) | undefined;
|
|
198
|
+
new (...args: any[]): vue370.CreateComponentPublicInstanceWithMixins<Readonly<AvatarImageProps> & Readonly<{
|
|
197
199
|
onError?: ((e: Event) => any) | undefined;
|
|
198
|
-
|
|
199
|
-
|
|
200
|
+
onLoad?: ((e: Event) => any) | undefined;
|
|
201
|
+
}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {
|
|
200
202
|
error: (e: Event) => any;
|
|
201
|
-
|
|
203
|
+
load: (e: Event) => any;
|
|
204
|
+
}, vue370.PublicProps, {}, false, {}, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, {}, any, vue370.ComponentProvideOptions, {
|
|
202
205
|
P: {};
|
|
203
206
|
B: {};
|
|
204
207
|
D: {};
|
|
@@ -206,19 +209,19 @@ declare const Avatar: {
|
|
|
206
209
|
M: {};
|
|
207
210
|
Defaults: {};
|
|
208
211
|
}, Readonly<AvatarImageProps> & Readonly<{
|
|
209
|
-
onLoad?: ((e: Event) => any) | undefined;
|
|
210
212
|
onError?: ((e: Event) => any) | undefined;
|
|
213
|
+
onLoad?: ((e: Event) => any) | undefined;
|
|
211
214
|
}>, {}, {}, {}, {}, {}>;
|
|
212
215
|
__isFragment?: never;
|
|
213
216
|
__isTeleport?: never;
|
|
214
217
|
__isSuspense?: never;
|
|
215
|
-
} &
|
|
216
|
-
onLoad?: ((e: Event) => any) | undefined;
|
|
218
|
+
} & vue370.ComponentOptionsBase<Readonly<AvatarImageProps> & Readonly<{
|
|
217
219
|
onError?: ((e: Event) => any) | undefined;
|
|
218
|
-
|
|
219
|
-
|
|
220
|
+
onLoad?: ((e: Event) => any) | undefined;
|
|
221
|
+
}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {
|
|
220
222
|
error: (e: Event) => any;
|
|
221
|
-
|
|
223
|
+
load: (e: Event) => any;
|
|
224
|
+
}, string, {}, {}, string, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, vue370.ComponentProvideOptions> & vue370.VNodeProps & vue370.AllowedComponentProps & vue370.ComponentCustomProps & (new () => {
|
|
222
225
|
$slots: {
|
|
223
226
|
default: (props: AvatarImageSlotProps) => any;
|
|
224
227
|
};
|
|
@@ -242,7 +245,7 @@ declare const Avatar: {
|
|
|
242
245
|
* ```
|
|
243
246
|
*/
|
|
244
247
|
Fallback: {
|
|
245
|
-
new (...args: any[]):
|
|
248
|
+
new (...args: any[]): vue370.CreateComponentPublicInstanceWithMixins<Readonly<AvatarFallbackProps> & Readonly<{}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, vue370.PublicProps, {}, false, {}, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, {}, any, vue370.ComponentProvideOptions, {
|
|
246
249
|
P: {};
|
|
247
250
|
B: {};
|
|
248
251
|
D: {};
|
|
@@ -253,7 +256,7 @@ declare const Avatar: {
|
|
|
253
256
|
__isFragment?: never;
|
|
254
257
|
__isTeleport?: never;
|
|
255
258
|
__isSuspense?: never;
|
|
256
|
-
} &
|
|
259
|
+
} & vue370.ComponentOptionsBase<Readonly<AvatarFallbackProps> & Readonly<{}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, vue370.ComponentProvideOptions> & vue370.VNodeProps & vue370.AllowedComponentProps & vue370.ComponentCustomProps & (new () => {
|
|
257
260
|
$slots: {
|
|
258
261
|
default: (props: AvatarFallbackSlotProps) => any;
|
|
259
262
|
};
|
|
@@ -297,24 +300,26 @@ interface ExpansionPanelRootSlotProps {
|
|
|
297
300
|
/** Toggle a panel's expansion state by ID */
|
|
298
301
|
toggle: (id: ID) => void;
|
|
299
302
|
}
|
|
300
|
-
declare const useExpansionPanelRoot: (key: string, defaultValue?: SelectionContext<SelectionTicket<unknown>> | undefined) => SelectionContext<SelectionTicket<unknown>>, provideExpansionPanelSelection: (key: string, context: SelectionContext<SelectionTicket<unknown>>, app?:
|
|
301
|
-
declare const
|
|
303
|
+
declare const useExpansionPanelRoot: (key: string, defaultValue?: SelectionContext<SelectionTicket<unknown>> | undefined) => SelectionContext<SelectionTicket<unknown>>, provideExpansionPanelSelection: (key: string, context: SelectionContext<SelectionTicket<unknown>>, app?: vue370.App) => SelectionContext<SelectionTicket<unknown>>;
|
|
304
|
+
declare const _default$23: typeof __VLS_export$23;
|
|
305
|
+
declare const __VLS_export$23: <T = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$10<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
302
306
|
props: __VLS_PrettifyLocal$10<(ExpansionPanelRootProps & {
|
|
303
307
|
modelValue?: T | T[];
|
|
304
308
|
}) & {
|
|
305
309
|
[x: `on${Capitalize<string>}`]: ((...args: any) => any) | undefined;
|
|
306
|
-
}> &
|
|
310
|
+
}> & vue370.PublicProps & (typeof globalThis extends {
|
|
311
|
+
__VLS_PROPS_FALLBACK: infer P;
|
|
312
|
+
} ? P : {});
|
|
307
313
|
expose: (exposed: {}) => void;
|
|
308
314
|
attrs: any;
|
|
309
315
|
slots: {
|
|
310
316
|
default: (props: ExpansionPanelRootSlotProps) => any;
|
|
311
317
|
};
|
|
312
318
|
emit: ((evt: "update:model-value", ...args: T | T[]) => void) & ((evt: "update:modelValue", value: T | T[] | undefined) => void);
|
|
313
|
-
}>) =>
|
|
319
|
+
}>) => vue370.VNode & {
|
|
314
320
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
315
321
|
};
|
|
316
|
-
|
|
317
|
-
type __VLS_PrettifyLocal$10<T> = { [K in keyof T as K]: T[K] } & {};
|
|
322
|
+
type __VLS_PrettifyLocal$10<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {};
|
|
318
323
|
//#endregion
|
|
319
324
|
//#region src/components/ExpansionPanel/ExpansionPanelItem.vue.d.ts
|
|
320
325
|
interface ExpansionPanelItemProps<V = unknown> extends AtomProps {
|
|
@@ -355,20 +360,22 @@ interface ExpansionPanelItemSlotProps {
|
|
|
355
360
|
'data-selected': true | undefined;
|
|
356
361
|
};
|
|
357
362
|
}
|
|
358
|
-
declare const useExpansionPanelItem: (key: string, defaultValue?: ExpansionPanelItemContext | undefined) => ExpansionPanelItemContext, provideExpansionPanelItem: (key: string, context: ExpansionPanelItemContext, app?:
|
|
359
|
-
declare const
|
|
360
|
-
|
|
363
|
+
declare const useExpansionPanelItem: (key: string, defaultValue?: ExpansionPanelItemContext | undefined) => ExpansionPanelItemContext, provideExpansionPanelItem: (key: string, context: ExpansionPanelItemContext, app?: vue370.App) => ExpansionPanelItemContext;
|
|
364
|
+
declare const _default$22: typeof __VLS_export$22;
|
|
365
|
+
declare const __VLS_export$22: <V = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$9<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
366
|
+
props: __VLS_PrettifyLocal$9<ExpansionPanelItemProps<V>> & vue370.PublicProps & (typeof globalThis extends {
|
|
367
|
+
__VLS_PROPS_FALLBACK: infer P;
|
|
368
|
+
} ? P : {});
|
|
361
369
|
expose: (exposed: {}) => void;
|
|
362
370
|
attrs: any;
|
|
363
371
|
slots: {
|
|
364
372
|
default: (props: ExpansionPanelItemSlotProps) => any;
|
|
365
373
|
};
|
|
366
374
|
emit: {};
|
|
367
|
-
}>) =>
|
|
375
|
+
}>) => vue370.VNode & {
|
|
368
376
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
369
377
|
};
|
|
370
|
-
|
|
371
|
-
type __VLS_PrettifyLocal$9<T> = { [K in keyof T as K]: T[K] } & {};
|
|
378
|
+
type __VLS_PrettifyLocal$9<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {};
|
|
372
379
|
//#endregion
|
|
373
380
|
//#region src/components/ExpansionPanel/ExpansionPanelHeader.vue.d.ts
|
|
374
381
|
interface ExpansionPanelHeaderProps extends AtomProps {
|
|
@@ -384,10 +391,10 @@ interface ExpansionPanelHeaderSlotProps {
|
|
|
384
391
|
'data-selected': true | undefined;
|
|
385
392
|
};
|
|
386
393
|
}
|
|
387
|
-
declare const
|
|
394
|
+
declare const _default$21: typeof __VLS_export$21;
|
|
395
|
+
declare const __VLS_export$21: __VLS_WithSlots$12<vue370.DefineComponent<ExpansionPanelHeaderProps, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, string, vue370.PublicProps, Readonly<ExpansionPanelHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, vue370.ComponentProvideOptions, false, {}, any>, {
|
|
388
396
|
default: (props: ExpansionPanelHeaderSlotProps) => any;
|
|
389
397
|
}>;
|
|
390
|
-
declare const _default$21: typeof __VLS_export$21;
|
|
391
398
|
type __VLS_WithSlots$12<T, S> = T & {
|
|
392
399
|
new (): {
|
|
393
400
|
$slots: S;
|
|
@@ -433,10 +440,10 @@ interface ExpansionPanelActivatorSlotProps {
|
|
|
433
440
|
'onKeydown': (e: KeyboardEvent) => void;
|
|
434
441
|
};
|
|
435
442
|
}
|
|
436
|
-
declare const
|
|
443
|
+
declare const _default$19: typeof __VLS_export$20;
|
|
444
|
+
declare const __VLS_export$20: __VLS_WithSlots$11<vue370.DefineComponent<ExpansionPanelActivatorProps, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, string, vue370.PublicProps, Readonly<ExpansionPanelActivatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue370.ComponentProvideOptions, false, {}, any>, {
|
|
437
445
|
default: (props: ExpansionPanelActivatorSlotProps) => any;
|
|
438
446
|
}>;
|
|
439
|
-
declare const _default$19: typeof __VLS_export$20;
|
|
440
447
|
type __VLS_WithSlots$11<T, S> = T & {
|
|
441
448
|
new (): {
|
|
442
449
|
$slots: S;
|
|
@@ -464,10 +471,10 @@ interface ExpansionPanelContentSlotProps {
|
|
|
464
471
|
'hidden': boolean;
|
|
465
472
|
};
|
|
466
473
|
}
|
|
467
|
-
declare const
|
|
474
|
+
declare const _default$20: typeof __VLS_export$19;
|
|
475
|
+
declare const __VLS_export$19: __VLS_WithSlots$10<vue370.DefineComponent<ExpansionPanelContentProps, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, string, vue370.PublicProps, Readonly<ExpansionPanelContentProps> & Readonly<{}>, {}, {}, {}, {}, string, vue370.ComponentProvideOptions, false, {}, any>, {
|
|
468
476
|
default: (props: ExpansionPanelContentSlotProps) => any;
|
|
469
477
|
}>;
|
|
470
|
-
declare const _default$20: typeof __VLS_export$19;
|
|
471
478
|
type __VLS_WithSlots$10<T, S> = T & {
|
|
472
479
|
new (): {
|
|
473
480
|
$slots: S;
|
|
@@ -515,7 +522,7 @@ declare const ExpansionPanel: {
|
|
|
515
522
|
slots: {
|
|
516
523
|
default: (props: ExpansionPanelRootSlotProps) => any;
|
|
517
524
|
};
|
|
518
|
-
},
|
|
525
|
+
}, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
519
526
|
props: {
|
|
520
527
|
[x: `on${Capitalize<string>}`]: ((...args: any) => any) | undefined;
|
|
521
528
|
namespace?: string | undefined;
|
|
@@ -526,14 +533,16 @@ declare const ExpansionPanel: {
|
|
|
526
533
|
as?: (DOMElement | null) | undefined;
|
|
527
534
|
renderless?: boolean | undefined;
|
|
528
535
|
modelValue?: (T | T[]) | undefined;
|
|
529
|
-
} &
|
|
536
|
+
} & vue370.PublicProps & (typeof globalThis extends {
|
|
537
|
+
__VLS_PROPS_FALLBACK: infer P;
|
|
538
|
+
} ? P : {});
|
|
530
539
|
expose: (exposed: {}) => void;
|
|
531
540
|
attrs: any;
|
|
532
541
|
slots: {
|
|
533
542
|
default: (props: ExpansionPanelRootSlotProps) => any;
|
|
534
543
|
};
|
|
535
544
|
emit: ((evt: "update:model-value", ...args: T | T[]) => void) & ((evt: "update:modelValue", value: T | T[] | undefined) => void);
|
|
536
|
-
}>) =>
|
|
545
|
+
}>) => vue370.VNode & {
|
|
537
546
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
538
547
|
};
|
|
539
548
|
/**
|
|
@@ -568,22 +577,24 @@ declare const ExpansionPanel: {
|
|
|
568
577
|
slots: {
|
|
569
578
|
default: (props: ExpansionPanelItemSlotProps) => any;
|
|
570
579
|
};
|
|
571
|
-
},
|
|
580
|
+
}, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
572
581
|
props: {
|
|
573
582
|
id?: string | undefined;
|
|
574
583
|
value?: V | undefined;
|
|
575
|
-
disabled?:
|
|
584
|
+
disabled?: vue370.MaybeRef<boolean> | undefined;
|
|
576
585
|
namespace?: string | undefined;
|
|
577
586
|
as?: (DOMElement | null) | undefined;
|
|
578
587
|
renderless?: boolean | undefined;
|
|
579
|
-
} &
|
|
588
|
+
} & vue370.PublicProps & (typeof globalThis extends {
|
|
589
|
+
__VLS_PROPS_FALLBACK: infer P;
|
|
590
|
+
} ? P : {});
|
|
580
591
|
expose: (exposed: {}) => void;
|
|
581
592
|
attrs: any;
|
|
582
593
|
slots: {
|
|
583
594
|
default: (props: ExpansionPanelItemSlotProps) => any;
|
|
584
595
|
};
|
|
585
596
|
emit: {};
|
|
586
|
-
}>) =>
|
|
597
|
+
}>) => vue370.VNode & {
|
|
587
598
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
588
599
|
};
|
|
589
600
|
/**
|
|
@@ -607,7 +618,7 @@ declare const ExpansionPanel: {
|
|
|
607
618
|
* ```
|
|
608
619
|
*/
|
|
609
620
|
Header: {
|
|
610
|
-
new (...args: any[]):
|
|
621
|
+
new (...args: any[]): vue370.CreateComponentPublicInstanceWithMixins<Readonly<ExpansionPanelHeaderProps> & Readonly<{}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, vue370.PublicProps, {}, false, {}, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, {}, any, vue370.ComponentProvideOptions, {
|
|
611
622
|
P: {};
|
|
612
623
|
B: {};
|
|
613
624
|
D: {};
|
|
@@ -618,7 +629,7 @@ declare const ExpansionPanel: {
|
|
|
618
629
|
__isFragment?: never;
|
|
619
630
|
__isTeleport?: never;
|
|
620
631
|
__isSuspense?: never;
|
|
621
|
-
} &
|
|
632
|
+
} & vue370.ComponentOptionsBase<Readonly<ExpansionPanelHeaderProps> & Readonly<{}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, vue370.ComponentProvideOptions> & vue370.VNodeProps & vue370.AllowedComponentProps & vue370.ComponentCustomProps & (new () => {
|
|
622
633
|
$slots: {
|
|
623
634
|
default: (props: ExpansionPanelHeaderSlotProps) => any;
|
|
624
635
|
};
|
|
@@ -642,7 +653,7 @@ declare const ExpansionPanel: {
|
|
|
642
653
|
* ```
|
|
643
654
|
*/
|
|
644
655
|
Activator: {
|
|
645
|
-
new (...args: any[]):
|
|
656
|
+
new (...args: any[]): vue370.CreateComponentPublicInstanceWithMixins<Readonly<ExpansionPanelActivatorProps> & Readonly<{}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, vue370.PublicProps, {}, false, {}, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, {}, any, vue370.ComponentProvideOptions, {
|
|
646
657
|
P: {};
|
|
647
658
|
B: {};
|
|
648
659
|
D: {};
|
|
@@ -653,7 +664,7 @@ declare const ExpansionPanel: {
|
|
|
653
664
|
__isFragment?: never;
|
|
654
665
|
__isTeleport?: never;
|
|
655
666
|
__isSuspense?: never;
|
|
656
|
-
} &
|
|
667
|
+
} & vue370.ComponentOptionsBase<Readonly<ExpansionPanelActivatorProps> & Readonly<{}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, vue370.ComponentProvideOptions> & vue370.VNodeProps & vue370.AllowedComponentProps & vue370.ComponentCustomProps & (new () => {
|
|
657
668
|
$slots: {
|
|
658
669
|
default: (props: ExpansionPanelActivatorSlotProps) => any;
|
|
659
670
|
};
|
|
@@ -677,7 +688,7 @@ declare const ExpansionPanel: {
|
|
|
677
688
|
* ```
|
|
678
689
|
*/
|
|
679
690
|
Content: {
|
|
680
|
-
new (...args: any[]):
|
|
691
|
+
new (...args: any[]): vue370.CreateComponentPublicInstanceWithMixins<Readonly<ExpansionPanelContentProps> & Readonly<{}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, vue370.PublicProps, {}, false, {}, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, {}, any, vue370.ComponentProvideOptions, {
|
|
681
692
|
P: {};
|
|
682
693
|
B: {};
|
|
683
694
|
D: {};
|
|
@@ -688,7 +699,7 @@ declare const ExpansionPanel: {
|
|
|
688
699
|
__isFragment?: never;
|
|
689
700
|
__isTeleport?: never;
|
|
690
701
|
__isSuspense?: never;
|
|
691
|
-
} &
|
|
702
|
+
} & vue370.ComponentOptionsBase<Readonly<ExpansionPanelContentProps> & Readonly<{}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, vue370.ComponentProvideOptions> & vue370.VNodeProps & vue370.AllowedComponentProps & vue370.ComponentCustomProps & (new () => {
|
|
692
703
|
$slots: {
|
|
693
704
|
default: (props: ExpansionPanelContentSlotProps) => any;
|
|
694
705
|
};
|
|
@@ -737,25 +748,27 @@ interface GroupRootSlotProps {
|
|
|
737
748
|
'aria-multiselectable': true;
|
|
738
749
|
};
|
|
739
750
|
}
|
|
740
|
-
declare const useGroupRoot: (key: string, defaultValue?: GroupContext<GroupTicket<unknown>> | undefined) => GroupContext<GroupTicket<unknown>>, provideGroupRoot: (key: string, context: GroupContext<GroupTicket<unknown>>, app?:
|
|
741
|
-
declare const
|
|
751
|
+
declare const useGroupRoot: (key: string, defaultValue?: GroupContext<GroupTicket<unknown>> | undefined) => GroupContext<GroupTicket<unknown>>, provideGroupRoot: (key: string, context: GroupContext<GroupTicket<unknown>>, app?: vue370.App) => GroupContext<GroupTicket<unknown>>;
|
|
752
|
+
declare const _default$18: typeof __VLS_export$18;
|
|
753
|
+
declare const __VLS_export$18: <T = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$8<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
742
754
|
props: __VLS_PrettifyLocal$8<(GroupRootProps & {
|
|
743
755
|
modelValue?: T | T[];
|
|
744
756
|
}) & {
|
|
745
757
|
"onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
|
|
746
758
|
"onUpdate:model-value"?: ((value: T | T[]) => any) | undefined;
|
|
747
|
-
}> &
|
|
759
|
+
}> & vue370.PublicProps & (typeof globalThis extends {
|
|
760
|
+
__VLS_PROPS_FALLBACK: infer P;
|
|
761
|
+
} ? P : {});
|
|
748
762
|
expose: (exposed: {}) => void;
|
|
749
763
|
attrs: any;
|
|
750
764
|
slots: {
|
|
751
765
|
default: (props: GroupRootSlotProps) => any;
|
|
752
766
|
};
|
|
753
767
|
emit: ((evt: "update:model-value", value: T | T[]) => void) & ((evt: "update:modelValue", value: T | T[] | undefined) => void);
|
|
754
|
-
}>) =>
|
|
768
|
+
}>) => vue370.VNode & {
|
|
755
769
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
756
770
|
};
|
|
757
|
-
|
|
758
|
-
type __VLS_PrettifyLocal$8<T> = { [K in keyof T as K]: T[K] } & {};
|
|
771
|
+
type __VLS_PrettifyLocal$8<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {};
|
|
759
772
|
//#endregion
|
|
760
773
|
//#region src/components/Group/GroupItem.vue.d.ts
|
|
761
774
|
interface GroupItemProps<V = unknown> {
|
|
@@ -805,19 +818,21 @@ interface GroupItemSlotProps<V = unknown> {
|
|
|
805
818
|
'data-mixed': true | undefined;
|
|
806
819
|
};
|
|
807
820
|
}
|
|
808
|
-
declare const
|
|
809
|
-
|
|
821
|
+
declare const _default$17: typeof __VLS_export$17;
|
|
822
|
+
declare const __VLS_export$17: <V = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$7<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
823
|
+
props: __VLS_PrettifyLocal$7<GroupItemProps<V>> & vue370.PublicProps & (typeof globalThis extends {
|
|
824
|
+
__VLS_PROPS_FALLBACK: infer P;
|
|
825
|
+
} ? P : {});
|
|
810
826
|
expose: (exposed: {}) => void;
|
|
811
827
|
attrs: any;
|
|
812
828
|
slots: {
|
|
813
829
|
default: (props: GroupItemSlotProps<V>) => unknown;
|
|
814
830
|
};
|
|
815
831
|
emit: {};
|
|
816
|
-
}>) =>
|
|
832
|
+
}>) => vue370.VNode & {
|
|
817
833
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
818
834
|
};
|
|
819
|
-
|
|
820
|
-
type __VLS_PrettifyLocal$7<T> = { [K in keyof T as K]: T[K] } & {};
|
|
835
|
+
type __VLS_PrettifyLocal$7<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {};
|
|
821
836
|
//#endregion
|
|
822
837
|
//#region src/components/Group/index.d.ts
|
|
823
838
|
/**
|
|
@@ -852,7 +867,7 @@ declare const Group: {
|
|
|
852
867
|
slots: {
|
|
853
868
|
default: (props: GroupRootSlotProps) => any;
|
|
854
869
|
};
|
|
855
|
-
},
|
|
870
|
+
}, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
856
871
|
props: {
|
|
857
872
|
namespace?: string | undefined;
|
|
858
873
|
disabled?: boolean | undefined;
|
|
@@ -861,14 +876,16 @@ declare const Group: {
|
|
|
861
876
|
modelValue?: (T | T[]) | undefined;
|
|
862
877
|
"onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
|
|
863
878
|
"onUpdate:model-value"?: ((value: T | T[]) => any) | undefined;
|
|
864
|
-
} &
|
|
879
|
+
} & vue370.PublicProps & (typeof globalThis extends {
|
|
880
|
+
__VLS_PROPS_FALLBACK: infer P;
|
|
881
|
+
} ? P : {});
|
|
865
882
|
expose: (exposed: {}) => void;
|
|
866
883
|
attrs: any;
|
|
867
884
|
slots: {
|
|
868
885
|
default: (props: GroupRootSlotProps) => any;
|
|
869
886
|
};
|
|
870
887
|
emit: ((evt: "update:model-value", value: T | T[]) => void) & ((evt: "update:modelValue", value: T | T[] | undefined) => void);
|
|
871
|
-
}>) =>
|
|
888
|
+
}>) => vue370.VNode & {
|
|
872
889
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
873
890
|
};
|
|
874
891
|
/**
|
|
@@ -895,30 +912,32 @@ declare const Group: {
|
|
|
895
912
|
slots: {
|
|
896
913
|
default: (props: GroupItemSlotProps<V>) => unknown;
|
|
897
914
|
};
|
|
898
|
-
},
|
|
915
|
+
}, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
899
916
|
props: {
|
|
900
917
|
id?: string | undefined;
|
|
901
918
|
label?: string | undefined;
|
|
902
919
|
value?: V | undefined;
|
|
903
|
-
disabled?:
|
|
904
|
-
indeterminate?:
|
|
920
|
+
disabled?: vue370.MaybeRef<boolean> | undefined;
|
|
921
|
+
indeterminate?: vue370.MaybeRef<boolean> | undefined;
|
|
905
922
|
namespace?: string | undefined;
|
|
906
|
-
} &
|
|
923
|
+
} & vue370.PublicProps & (typeof globalThis extends {
|
|
924
|
+
__VLS_PROPS_FALLBACK: infer P;
|
|
925
|
+
} ? P : {});
|
|
907
926
|
expose: (exposed: {}) => void;
|
|
908
927
|
attrs: any;
|
|
909
928
|
slots: {
|
|
910
929
|
default: (props: GroupItemSlotProps<V>) => unknown;
|
|
911
930
|
};
|
|
912
931
|
emit: {};
|
|
913
|
-
}>) =>
|
|
932
|
+
}>) => vue370.VNode & {
|
|
914
933
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
915
934
|
};
|
|
916
935
|
};
|
|
917
936
|
//#endregion
|
|
918
937
|
//#region src/components/Pagination/PaginationRoot.vue.d.ts
|
|
919
|
-
declare const usePaginationRoot: (key: string, defaultValue?: PaginationContext | undefined) => PaginationContext, providePaginationRoot: (key: string, context: PaginationContext, app?:
|
|
920
|
-
declare const usePaginationControls: (key: string, defaultValue?: RegistryContext<RegistryTicket<unknown>> | undefined) => RegistryContext<RegistryTicket<unknown>>, providePaginationControls: (key: string, context: RegistryContext<RegistryTicket<unknown>>, app?:
|
|
921
|
-
declare const usePaginationItems: (key: string, defaultValue?: RegistryContext<RegistryTicket<unknown>> | undefined) => RegistryContext<RegistryTicket<unknown>>, providePaginationItems: (key: string, context: RegistryContext<RegistryTicket<unknown>>, app?:
|
|
938
|
+
declare const usePaginationRoot: (key: string, defaultValue?: PaginationContext | undefined) => PaginationContext, providePaginationRoot: (key: string, context: PaginationContext, app?: vue370.App) => PaginationContext;
|
|
939
|
+
declare const usePaginationControls: (key: string, defaultValue?: RegistryContext<RegistryTicket<unknown>> | undefined) => RegistryContext<RegistryTicket<unknown>>, providePaginationControls: (key: string, context: RegistryContext<RegistryTicket<unknown>>, app?: vue370.App) => RegistryContext<RegistryTicket<unknown>>;
|
|
940
|
+
declare const usePaginationItems: (key: string, defaultValue?: RegistryContext<RegistryTicket<unknown>> | undefined) => RegistryContext<RegistryTicket<unknown>>, providePaginationItems: (key: string, context: RegistryContext<RegistryTicket<unknown>>, app?: vue370.App) => RegistryContext<RegistryTicket<unknown>>;
|
|
922
941
|
interface PaginationRootProps extends AtomProps {
|
|
923
942
|
/** Namespace for dependency injection */
|
|
924
943
|
namespace?: string;
|
|
@@ -969,23 +988,25 @@ interface PaginationRootSlotProps {
|
|
|
969
988
|
'role': 'navigation' | undefined;
|
|
970
989
|
};
|
|
971
990
|
}
|
|
972
|
-
declare const
|
|
991
|
+
declare const _default$15: typeof __VLS_export$16;
|
|
992
|
+
declare const __VLS_export$16: <T = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$6<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
973
993
|
props: __VLS_PrettifyLocal$6<(PaginationRootProps & {
|
|
974
994
|
modelValue?: number;
|
|
975
995
|
}) & {
|
|
976
996
|
[x: `on${Capitalize<string>}`]: ((...args: any) => any) | undefined;
|
|
977
|
-
}> &
|
|
997
|
+
}> & vue370.PublicProps & (typeof globalThis extends {
|
|
998
|
+
__VLS_PROPS_FALLBACK: infer P;
|
|
999
|
+
} ? P : {});
|
|
978
1000
|
expose: (exposed: {}) => void;
|
|
979
1001
|
attrs: any;
|
|
980
1002
|
slots: {
|
|
981
1003
|
default: (props: PaginationRootSlotProps) => any;
|
|
982
1004
|
};
|
|
983
1005
|
emit: ((evt: "update:model-value", ...args: T | T[]) => void) & ((evt: "update:modelValue", value: number) => void);
|
|
984
|
-
}>) =>
|
|
1006
|
+
}>) => vue370.VNode & {
|
|
985
1007
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
986
1008
|
};
|
|
987
|
-
|
|
988
|
-
type __VLS_PrettifyLocal$6<T> = { [K in keyof T as K]: T[K] } & {};
|
|
1009
|
+
type __VLS_PrettifyLocal$6<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {};
|
|
989
1010
|
//#endregion
|
|
990
1011
|
//#region src/components/Pagination/PaginationItem.vue.d.ts
|
|
991
1012
|
interface PaginationItemProps extends AtomProps {
|
|
@@ -1020,10 +1041,10 @@ interface PaginationItemSlotProps {
|
|
|
1020
1041
|
'onClick': () => void;
|
|
1021
1042
|
};
|
|
1022
1043
|
}
|
|
1023
|
-
declare const
|
|
1044
|
+
declare const _default$11: typeof __VLS_export$15;
|
|
1045
|
+
declare const __VLS_export$15: __VLS_WithSlots$9<vue370.DefineComponent<PaginationItemProps, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, string, vue370.PublicProps, Readonly<PaginationItemProps> & Readonly<{}>, {}, {}, {}, {}, string, vue370.ComponentProvideOptions, false, {}, any>, {
|
|
1024
1046
|
default: (props: PaginationItemSlotProps) => any;
|
|
1025
1047
|
}>;
|
|
1026
|
-
declare const _default$11: typeof __VLS_export$15;
|
|
1027
1048
|
type __VLS_WithSlots$9<T, S> = T & {
|
|
1028
1049
|
new (): {
|
|
1029
1050
|
$slots: S;
|
|
@@ -1055,10 +1076,10 @@ interface PaginationFirstSlotProps {
|
|
|
1055
1076
|
'onClick': () => void;
|
|
1056
1077
|
};
|
|
1057
1078
|
}
|
|
1058
|
-
declare const
|
|
1079
|
+
declare const _default$10: typeof __VLS_export$14;
|
|
1080
|
+
declare const __VLS_export$14: __VLS_WithSlots$8<vue370.DefineComponent<PaginationFirstProps, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, string, vue370.PublicProps, Readonly<PaginationFirstProps> & Readonly<{}>, {}, {}, {}, {}, string, vue370.ComponentProvideOptions, false, {}, any>, {
|
|
1059
1081
|
default: (props: PaginationFirstSlotProps) => any;
|
|
1060
1082
|
}>;
|
|
1061
|
-
declare const _default$10: typeof __VLS_export$14;
|
|
1062
1083
|
type __VLS_WithSlots$8<T, S> = T & {
|
|
1063
1084
|
new (): {
|
|
1064
1085
|
$slots: S;
|
|
@@ -1090,10 +1111,10 @@ interface PaginationPrevSlotProps {
|
|
|
1090
1111
|
'onClick': () => void;
|
|
1091
1112
|
};
|
|
1092
1113
|
}
|
|
1093
|
-
declare const
|
|
1114
|
+
declare const _default$14: typeof __VLS_export$13;
|
|
1115
|
+
declare const __VLS_export$13: __VLS_WithSlots$7<vue370.DefineComponent<PaginationPrevProps, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, string, vue370.PublicProps, Readonly<PaginationPrevProps> & Readonly<{}>, {}, {}, {}, {}, string, vue370.ComponentProvideOptions, false, {}, any>, {
|
|
1094
1116
|
default: (props: PaginationPrevSlotProps) => any;
|
|
1095
1117
|
}>;
|
|
1096
|
-
declare const _default$14: typeof __VLS_export$13;
|
|
1097
1118
|
type __VLS_WithSlots$7<T, S> = T & {
|
|
1098
1119
|
new (): {
|
|
1099
1120
|
$slots: S;
|
|
@@ -1117,10 +1138,10 @@ interface PaginationEllipsisSlotProps {
|
|
|
1117
1138
|
'aria-hidden': 'true';
|
|
1118
1139
|
};
|
|
1119
1140
|
}
|
|
1120
|
-
declare const
|
|
1141
|
+
declare const _default$9: typeof __VLS_export$12;
|
|
1142
|
+
declare const __VLS_export$12: __VLS_WithSlots$6<vue370.DefineComponent<PaginationEllipsisProps, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, string, vue370.PublicProps, Readonly<PaginationEllipsisProps> & Readonly<{}>, {}, {}, {}, {}, string, vue370.ComponentProvideOptions, false, {}, any>, {
|
|
1121
1143
|
default: (props: PaginationEllipsisSlotProps) => any;
|
|
1122
1144
|
}>;
|
|
1123
|
-
declare const _default$9: typeof __VLS_export$12;
|
|
1124
1145
|
type __VLS_WithSlots$6<T, S> = T & {
|
|
1125
1146
|
new (): {
|
|
1126
1147
|
$slots: S;
|
|
@@ -1152,10 +1173,10 @@ interface PaginationNextSlotProps {
|
|
|
1152
1173
|
'onClick': () => void;
|
|
1153
1174
|
};
|
|
1154
1175
|
}
|
|
1155
|
-
declare const
|
|
1176
|
+
declare const _default$13: typeof __VLS_export$11;
|
|
1177
|
+
declare const __VLS_export$11: __VLS_WithSlots$5<vue370.DefineComponent<PaginationNextProps, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, string, vue370.PublicProps, Readonly<PaginationNextProps> & Readonly<{}>, {}, {}, {}, {}, string, vue370.ComponentProvideOptions, false, {}, any>, {
|
|
1156
1178
|
default: (props: PaginationNextSlotProps) => any;
|
|
1157
1179
|
}>;
|
|
1158
|
-
declare const _default$13: typeof __VLS_export$11;
|
|
1159
1180
|
type __VLS_WithSlots$5<T, S> = T & {
|
|
1160
1181
|
new (): {
|
|
1161
1182
|
$slots: S;
|
|
@@ -1187,10 +1208,10 @@ interface PaginationLastSlotProps {
|
|
|
1187
1208
|
'onClick': () => void;
|
|
1188
1209
|
};
|
|
1189
1210
|
}
|
|
1190
|
-
declare const
|
|
1211
|
+
declare const _default$12: typeof __VLS_export$10;
|
|
1212
|
+
declare const __VLS_export$10: __VLS_WithSlots$4<vue370.DefineComponent<PaginationLastProps, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, string, vue370.PublicProps, Readonly<PaginationLastProps> & Readonly<{}>, {}, {}, {}, {}, string, vue370.ComponentProvideOptions, false, {}, any>, {
|
|
1191
1213
|
default: (props: PaginationLastSlotProps) => any;
|
|
1192
1214
|
}>;
|
|
1193
|
-
declare const _default$12: typeof __VLS_export$10;
|
|
1194
1215
|
type __VLS_WithSlots$4<T, S> = T & {
|
|
1195
1216
|
new (): {
|
|
1196
1217
|
$slots: S;
|
|
@@ -1216,10 +1237,10 @@ interface PaginationStatusSlotProps {
|
|
|
1216
1237
|
'role': 'status';
|
|
1217
1238
|
};
|
|
1218
1239
|
}
|
|
1219
|
-
declare const
|
|
1240
|
+
declare const _default$16: typeof __VLS_export$9;
|
|
1241
|
+
declare const __VLS_export$9: __VLS_WithSlots$3<vue370.DefineComponent<PaginationStatusProps, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, string, vue370.PublicProps, Readonly<PaginationStatusProps> & Readonly<{}>, {}, {}, {}, {}, string, vue370.ComponentProvideOptions, false, {}, any>, {
|
|
1220
1242
|
default: (props: PaginationStatusSlotProps) => any;
|
|
1221
1243
|
}>;
|
|
1222
|
-
declare const _default$16: typeof __VLS_export$9;
|
|
1223
1244
|
type __VLS_WithSlots$3<T, S> = T & {
|
|
1224
1245
|
new (): {
|
|
1225
1246
|
$slots: S;
|
|
@@ -1269,7 +1290,7 @@ declare const Pagination: {
|
|
|
1269
1290
|
slots: {
|
|
1270
1291
|
default: (props: PaginationRootSlotProps) => any;
|
|
1271
1292
|
};
|
|
1272
|
-
},
|
|
1293
|
+
}, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
1273
1294
|
props: {
|
|
1274
1295
|
[x: `on${Capitalize<string>}`]: ((...args: any) => any) | undefined;
|
|
1275
1296
|
namespace?: string | undefined;
|
|
@@ -1280,14 +1301,16 @@ declare const Pagination: {
|
|
|
1280
1301
|
as?: (DOMElement | null) | undefined;
|
|
1281
1302
|
renderless?: boolean | undefined;
|
|
1282
1303
|
modelValue?: number | undefined;
|
|
1283
|
-
} &
|
|
1304
|
+
} & vue370.PublicProps & (typeof globalThis extends {
|
|
1305
|
+
__VLS_PROPS_FALLBACK: infer P;
|
|
1306
|
+
} ? P : {});
|
|
1284
1307
|
expose: (exposed: {}) => void;
|
|
1285
1308
|
attrs: any;
|
|
1286
1309
|
slots: {
|
|
1287
1310
|
default: (props: PaginationRootSlotProps) => any;
|
|
1288
1311
|
};
|
|
1289
1312
|
emit: ((evt: "update:model-value", ...args: T | T[]) => void) & ((evt: "update:modelValue", value: number) => void);
|
|
1290
|
-
}>) =>
|
|
1313
|
+
}>) => vue370.VNode & {
|
|
1291
1314
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
1292
1315
|
};
|
|
1293
1316
|
/**
|
|
@@ -1312,7 +1335,7 @@ declare const Pagination: {
|
|
|
1312
1335
|
* ```
|
|
1313
1336
|
*/
|
|
1314
1337
|
Item: {
|
|
1315
|
-
new (...args: any[]):
|
|
1338
|
+
new (...args: any[]): vue370.CreateComponentPublicInstanceWithMixins<Readonly<PaginationItemProps> & Readonly<{}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, vue370.PublicProps, {}, false, {}, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, {}, any, vue370.ComponentProvideOptions, {
|
|
1316
1339
|
P: {};
|
|
1317
1340
|
B: {};
|
|
1318
1341
|
D: {};
|
|
@@ -1323,7 +1346,7 @@ declare const Pagination: {
|
|
|
1323
1346
|
__isFragment?: never;
|
|
1324
1347
|
__isTeleport?: never;
|
|
1325
1348
|
__isSuspense?: never;
|
|
1326
|
-
} &
|
|
1349
|
+
} & vue370.ComponentOptionsBase<Readonly<PaginationItemProps> & Readonly<{}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, vue370.ComponentProvideOptions> & vue370.VNodeProps & vue370.AllowedComponentProps & vue370.ComponentCustomProps & (new () => {
|
|
1327
1350
|
$slots: {
|
|
1328
1351
|
default: (props: PaginationItemSlotProps) => any;
|
|
1329
1352
|
};
|
|
@@ -1356,7 +1379,7 @@ declare const Pagination: {
|
|
|
1356
1379
|
* ```
|
|
1357
1380
|
*/
|
|
1358
1381
|
First: {
|
|
1359
|
-
new (...args: any[]):
|
|
1382
|
+
new (...args: any[]): vue370.CreateComponentPublicInstanceWithMixins<Readonly<PaginationFirstProps> & Readonly<{}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, vue370.PublicProps, {}, false, {}, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, {}, any, vue370.ComponentProvideOptions, {
|
|
1360
1383
|
P: {};
|
|
1361
1384
|
B: {};
|
|
1362
1385
|
D: {};
|
|
@@ -1367,7 +1390,7 @@ declare const Pagination: {
|
|
|
1367
1390
|
__isFragment?: never;
|
|
1368
1391
|
__isTeleport?: never;
|
|
1369
1392
|
__isSuspense?: never;
|
|
1370
|
-
} &
|
|
1393
|
+
} & vue370.ComponentOptionsBase<Readonly<PaginationFirstProps> & Readonly<{}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, vue370.ComponentProvideOptions> & vue370.VNodeProps & vue370.AllowedComponentProps & vue370.ComponentCustomProps & (new () => {
|
|
1371
1394
|
$slots: {
|
|
1372
1395
|
default: (props: PaginationFirstSlotProps) => any;
|
|
1373
1396
|
};
|
|
@@ -1400,7 +1423,7 @@ declare const Pagination: {
|
|
|
1400
1423
|
* ```
|
|
1401
1424
|
*/
|
|
1402
1425
|
Prev: {
|
|
1403
|
-
new (...args: any[]):
|
|
1426
|
+
new (...args: any[]): vue370.CreateComponentPublicInstanceWithMixins<Readonly<PaginationPrevProps> & Readonly<{}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, vue370.PublicProps, {}, false, {}, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, {}, any, vue370.ComponentProvideOptions, {
|
|
1404
1427
|
P: {};
|
|
1405
1428
|
B: {};
|
|
1406
1429
|
D: {};
|
|
@@ -1411,7 +1434,7 @@ declare const Pagination: {
|
|
|
1411
1434
|
__isFragment?: never;
|
|
1412
1435
|
__isTeleport?: never;
|
|
1413
1436
|
__isSuspense?: never;
|
|
1414
|
-
} &
|
|
1437
|
+
} & vue370.ComponentOptionsBase<Readonly<PaginationPrevProps> & Readonly<{}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, vue370.ComponentProvideOptions> & vue370.VNodeProps & vue370.AllowedComponentProps & vue370.ComponentCustomProps & (new () => {
|
|
1415
1438
|
$slots: {
|
|
1416
1439
|
default: (props: PaginationPrevSlotProps) => any;
|
|
1417
1440
|
};
|
|
@@ -1439,7 +1462,7 @@ declare const Pagination: {
|
|
|
1439
1462
|
* ```
|
|
1440
1463
|
*/
|
|
1441
1464
|
Ellipsis: {
|
|
1442
|
-
new (...args: any[]):
|
|
1465
|
+
new (...args: any[]): vue370.CreateComponentPublicInstanceWithMixins<Readonly<PaginationEllipsisProps> & Readonly<{}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, vue370.PublicProps, {}, false, {}, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, {}, any, vue370.ComponentProvideOptions, {
|
|
1443
1466
|
P: {};
|
|
1444
1467
|
B: {};
|
|
1445
1468
|
D: {};
|
|
@@ -1450,7 +1473,7 @@ declare const Pagination: {
|
|
|
1450
1473
|
__isFragment?: never;
|
|
1451
1474
|
__isTeleport?: never;
|
|
1452
1475
|
__isSuspense?: never;
|
|
1453
|
-
} &
|
|
1476
|
+
} & vue370.ComponentOptionsBase<Readonly<PaginationEllipsisProps> & Readonly<{}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, vue370.ComponentProvideOptions> & vue370.VNodeProps & vue370.AllowedComponentProps & vue370.ComponentCustomProps & (new () => {
|
|
1454
1477
|
$slots: {
|
|
1455
1478
|
default: (props: PaginationEllipsisSlotProps) => any;
|
|
1456
1479
|
};
|
|
@@ -1483,7 +1506,7 @@ declare const Pagination: {
|
|
|
1483
1506
|
* ```
|
|
1484
1507
|
*/
|
|
1485
1508
|
Next: {
|
|
1486
|
-
new (...args: any[]):
|
|
1509
|
+
new (...args: any[]): vue370.CreateComponentPublicInstanceWithMixins<Readonly<PaginationNextProps> & Readonly<{}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, vue370.PublicProps, {}, false, {}, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, {}, any, vue370.ComponentProvideOptions, {
|
|
1487
1510
|
P: {};
|
|
1488
1511
|
B: {};
|
|
1489
1512
|
D: {};
|
|
@@ -1494,7 +1517,7 @@ declare const Pagination: {
|
|
|
1494
1517
|
__isFragment?: never;
|
|
1495
1518
|
__isTeleport?: never;
|
|
1496
1519
|
__isSuspense?: never;
|
|
1497
|
-
} &
|
|
1520
|
+
} & vue370.ComponentOptionsBase<Readonly<PaginationNextProps> & Readonly<{}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, vue370.ComponentProvideOptions> & vue370.VNodeProps & vue370.AllowedComponentProps & vue370.ComponentCustomProps & (new () => {
|
|
1498
1521
|
$slots: {
|
|
1499
1522
|
default: (props: PaginationNextSlotProps) => any;
|
|
1500
1523
|
};
|
|
@@ -1527,7 +1550,7 @@ declare const Pagination: {
|
|
|
1527
1550
|
* ```
|
|
1528
1551
|
*/
|
|
1529
1552
|
Last: {
|
|
1530
|
-
new (...args: any[]):
|
|
1553
|
+
new (...args: any[]): vue370.CreateComponentPublicInstanceWithMixins<Readonly<PaginationLastProps> & Readonly<{}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, vue370.PublicProps, {}, false, {}, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, {}, any, vue370.ComponentProvideOptions, {
|
|
1531
1554
|
P: {};
|
|
1532
1555
|
B: {};
|
|
1533
1556
|
D: {};
|
|
@@ -1538,7 +1561,7 @@ declare const Pagination: {
|
|
|
1538
1561
|
__isFragment?: never;
|
|
1539
1562
|
__isTeleport?: never;
|
|
1540
1563
|
__isSuspense?: never;
|
|
1541
|
-
} &
|
|
1564
|
+
} & vue370.ComponentOptionsBase<Readonly<PaginationLastProps> & Readonly<{}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, vue370.ComponentProvideOptions> & vue370.VNodeProps & vue370.AllowedComponentProps & vue370.ComponentCustomProps & (new () => {
|
|
1542
1565
|
$slots: {
|
|
1543
1566
|
default: (props: PaginationLastSlotProps) => any;
|
|
1544
1567
|
};
|
|
@@ -1564,7 +1587,7 @@ declare const Pagination: {
|
|
|
1564
1587
|
* ```
|
|
1565
1588
|
*/
|
|
1566
1589
|
Status: {
|
|
1567
|
-
new (...args: any[]):
|
|
1590
|
+
new (...args: any[]): vue370.CreateComponentPublicInstanceWithMixins<Readonly<PaginationStatusProps> & Readonly<{}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, vue370.PublicProps, {}, false, {}, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, {}, any, vue370.ComponentProvideOptions, {
|
|
1568
1591
|
P: {};
|
|
1569
1592
|
B: {};
|
|
1570
1593
|
D: {};
|
|
@@ -1575,7 +1598,7 @@ declare const Pagination: {
|
|
|
1575
1598
|
__isFragment?: never;
|
|
1576
1599
|
__isTeleport?: never;
|
|
1577
1600
|
__isSuspense?: never;
|
|
1578
|
-
} &
|
|
1601
|
+
} & vue370.ComponentOptionsBase<Readonly<PaginationStatusProps> & Readonly<{}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, vue370.ComponentProvideOptions> & vue370.VNodeProps & vue370.AllowedComponentProps & vue370.ComponentCustomProps & (new () => {
|
|
1579
1602
|
$slots: {
|
|
1580
1603
|
default: (props: PaginationStatusSlotProps) => any;
|
|
1581
1604
|
};
|
|
@@ -1600,19 +1623,19 @@ interface PopoverRootSlotProps {
|
|
|
1600
1623
|
/** Toggle the popover open/closed state */
|
|
1601
1624
|
toggle: () => void;
|
|
1602
1625
|
}
|
|
1603
|
-
declare const usePopoverContext: () => PopoverContext, providePopoverContext: (context: PopoverContext, app?:
|
|
1604
|
-
declare const
|
|
1626
|
+
declare const usePopoverContext: () => PopoverContext, providePopoverContext: (context: PopoverContext, app?: vue370.App) => PopoverContext;
|
|
1627
|
+
declare const _default$8: typeof __VLS_export$8;
|
|
1628
|
+
declare const __VLS_export$8: __VLS_WithSlots$2<vue370.DefineComponent<PopoverRootProps & {
|
|
1605
1629
|
modelValue?: boolean;
|
|
1606
|
-
}, {}, {}, {}, {},
|
|
1630
|
+
}, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {
|
|
1607
1631
|
"update:modelValue": (value: boolean) => any;
|
|
1608
|
-
}, string,
|
|
1632
|
+
}, string, vue370.PublicProps, Readonly<PopoverRootProps & {
|
|
1609
1633
|
modelValue?: boolean;
|
|
1610
1634
|
}> & Readonly<{
|
|
1611
1635
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1612
|
-
}>, {}, {}, {}, {}, string,
|
|
1636
|
+
}>, {}, {}, {}, {}, string, vue370.ComponentProvideOptions, false, {}, any>, {
|
|
1613
1637
|
default: (props: PopoverRootSlotProps) => any;
|
|
1614
1638
|
}>;
|
|
1615
|
-
declare const _default$8: typeof __VLS_export$8;
|
|
1616
1639
|
type __VLS_WithSlots$2<T, S> = T & {
|
|
1617
1640
|
new (): {
|
|
1618
1641
|
$slots: S;
|
|
@@ -1634,10 +1657,10 @@ interface PopoverAnchorSlotProps {
|
|
|
1634
1657
|
'data-popover-open': '' | undefined;
|
|
1635
1658
|
};
|
|
1636
1659
|
}
|
|
1637
|
-
declare const
|
|
1660
|
+
declare const _default$6: typeof __VLS_export$7;
|
|
1661
|
+
declare const __VLS_export$7: __VLS_WithSlots$1<vue370.DefineComponent<PopoverAnchorProps, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, string, vue370.PublicProps, Readonly<PopoverAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue370.ComponentProvideOptions, false, {}, any>, {
|
|
1638
1662
|
default: (props: PopoverAnchorSlotProps) => any;
|
|
1639
1663
|
}>;
|
|
1640
|
-
declare const _default$6: typeof __VLS_export$7;
|
|
1641
1664
|
type __VLS_WithSlots$1<T, S> = T & {
|
|
1642
1665
|
new (): {
|
|
1643
1666
|
$slots: S;
|
|
@@ -1665,14 +1688,14 @@ interface PopoverContentSlotProps {
|
|
|
1665
1688
|
popover: '';
|
|
1666
1689
|
};
|
|
1667
1690
|
}
|
|
1668
|
-
declare const
|
|
1691
|
+
declare const _default$7: typeof __VLS_export$6;
|
|
1692
|
+
declare const __VLS_export$6: __VLS_WithSlots<vue370.DefineComponent<PopoverContentProps, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {
|
|
1669
1693
|
beforetoggle: (e: ToggleEvent) => any;
|
|
1670
|
-
}, string,
|
|
1694
|
+
}, string, vue370.PublicProps, Readonly<PopoverContentProps> & Readonly<{
|
|
1671
1695
|
onBeforetoggle?: ((e: ToggleEvent) => any) | undefined;
|
|
1672
|
-
}>, {}, {}, {}, {}, string,
|
|
1696
|
+
}>, {}, {}, {}, {}, string, vue370.ComponentProvideOptions, false, {}, any>, {
|
|
1673
1697
|
default: (props: PopoverContentSlotProps) => any;
|
|
1674
1698
|
}>;
|
|
1675
|
-
declare const _default$7: typeof __VLS_export$6;
|
|
1676
1699
|
type __VLS_WithSlots<T, S> = T & {
|
|
1677
1700
|
new (): {
|
|
1678
1701
|
$slots: S;
|
|
@@ -1711,13 +1734,13 @@ declare const Popover: {
|
|
|
1711
1734
|
* ```
|
|
1712
1735
|
*/
|
|
1713
1736
|
Root: {
|
|
1714
|
-
new (...args: any[]):
|
|
1737
|
+
new (...args: any[]): vue370.CreateComponentPublicInstanceWithMixins<Readonly<PopoverRootProps & {
|
|
1715
1738
|
modelValue?: boolean;
|
|
1716
1739
|
}> & Readonly<{
|
|
1717
1740
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1718
|
-
}>, {}, {}, {}, {},
|
|
1741
|
+
}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {
|
|
1719
1742
|
"update:modelValue": (value: boolean) => any;
|
|
1720
|
-
},
|
|
1743
|
+
}, vue370.PublicProps, {}, false, {}, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, {}, any, vue370.ComponentProvideOptions, {
|
|
1721
1744
|
P: {};
|
|
1722
1745
|
B: {};
|
|
1723
1746
|
D: {};
|
|
@@ -1732,13 +1755,13 @@ declare const Popover: {
|
|
|
1732
1755
|
__isFragment?: never;
|
|
1733
1756
|
__isTeleport?: never;
|
|
1734
1757
|
__isSuspense?: never;
|
|
1735
|
-
} &
|
|
1758
|
+
} & vue370.ComponentOptionsBase<Readonly<PopoverRootProps & {
|
|
1736
1759
|
modelValue?: boolean;
|
|
1737
1760
|
}> & Readonly<{
|
|
1738
1761
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1739
|
-
}>, {}, {}, {}, {},
|
|
1762
|
+
}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {
|
|
1740
1763
|
"update:modelValue": (value: boolean) => any;
|
|
1741
|
-
}, string, {}, {}, string, {},
|
|
1764
|
+
}, string, {}, {}, string, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, vue370.ComponentProvideOptions> & vue370.VNodeProps & vue370.AllowedComponentProps & vue370.ComponentCustomProps & (new () => {
|
|
1742
1765
|
$slots: {
|
|
1743
1766
|
default: (props: PopoverRootSlotProps) => any;
|
|
1744
1767
|
};
|
|
@@ -1762,7 +1785,7 @@ declare const Popover: {
|
|
|
1762
1785
|
* ```
|
|
1763
1786
|
*/
|
|
1764
1787
|
Anchor: {
|
|
1765
|
-
new (...args: any[]):
|
|
1788
|
+
new (...args: any[]): vue370.CreateComponentPublicInstanceWithMixins<Readonly<PopoverAnchorProps> & Readonly<{}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, vue370.PublicProps, {}, false, {}, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, {}, any, vue370.ComponentProvideOptions, {
|
|
1766
1789
|
P: {};
|
|
1767
1790
|
B: {};
|
|
1768
1791
|
D: {};
|
|
@@ -1773,7 +1796,7 @@ declare const Popover: {
|
|
|
1773
1796
|
__isFragment?: never;
|
|
1774
1797
|
__isTeleport?: never;
|
|
1775
1798
|
__isSuspense?: never;
|
|
1776
|
-
} &
|
|
1799
|
+
} & vue370.ComponentOptionsBase<Readonly<PopoverAnchorProps> & Readonly<{}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, vue370.ComponentProvideOptions> & vue370.VNodeProps & vue370.AllowedComponentProps & vue370.ComponentCustomProps & (new () => {
|
|
1777
1800
|
$slots: {
|
|
1778
1801
|
default: (props: PopoverAnchorSlotProps) => any;
|
|
1779
1802
|
};
|
|
@@ -1797,11 +1820,11 @@ declare const Popover: {
|
|
|
1797
1820
|
* ```
|
|
1798
1821
|
*/
|
|
1799
1822
|
Content: {
|
|
1800
|
-
new (...args: any[]):
|
|
1823
|
+
new (...args: any[]): vue370.CreateComponentPublicInstanceWithMixins<Readonly<PopoverContentProps> & Readonly<{
|
|
1801
1824
|
onBeforetoggle?: ((e: ToggleEvent) => any) | undefined;
|
|
1802
|
-
}>, {}, {}, {}, {},
|
|
1825
|
+
}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {
|
|
1803
1826
|
beforetoggle: (e: ToggleEvent) => any;
|
|
1804
|
-
},
|
|
1827
|
+
}, vue370.PublicProps, {}, false, {}, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, {}, any, vue370.ComponentProvideOptions, {
|
|
1805
1828
|
P: {};
|
|
1806
1829
|
B: {};
|
|
1807
1830
|
D: {};
|
|
@@ -1814,11 +1837,11 @@ declare const Popover: {
|
|
|
1814
1837
|
__isFragment?: never;
|
|
1815
1838
|
__isTeleport?: never;
|
|
1816
1839
|
__isSuspense?: never;
|
|
1817
|
-
} &
|
|
1840
|
+
} & vue370.ComponentOptionsBase<Readonly<PopoverContentProps> & Readonly<{
|
|
1818
1841
|
onBeforetoggle?: ((e: ToggleEvent) => any) | undefined;
|
|
1819
|
-
}>, {}, {}, {}, {},
|
|
1842
|
+
}>, {}, {}, {}, {}, vue370.ComponentOptionsMixin, vue370.ComponentOptionsMixin, {
|
|
1820
1843
|
beforetoggle: (e: ToggleEvent) => any;
|
|
1821
|
-
}, string, {}, {}, string, {},
|
|
1844
|
+
}, string, {}, {}, string, {}, vue370.GlobalComponents, vue370.GlobalDirectives, string, vue370.ComponentProvideOptions> & vue370.VNodeProps & vue370.AllowedComponentProps & vue370.ComponentCustomProps & (new () => {
|
|
1822
1845
|
$slots: {
|
|
1823
1846
|
default: (props: PopoverContentSlotProps) => any;
|
|
1824
1847
|
};
|
|
@@ -1859,25 +1882,27 @@ interface SelectionRootSlotProps {
|
|
|
1859
1882
|
'aria-multiselectable': boolean;
|
|
1860
1883
|
};
|
|
1861
1884
|
}
|
|
1862
|
-
declare const useSelectionRoot: (key: string, defaultValue?: SelectionContext<SelectionTicket<unknown>> | undefined) => SelectionContext<SelectionTicket<unknown>>, provideSelectionRoot: (key: string, context: SelectionContext<SelectionTicket<unknown>>, app?:
|
|
1863
|
-
declare const
|
|
1885
|
+
declare const useSelectionRoot: (key: string, defaultValue?: SelectionContext<SelectionTicket<unknown>> | undefined) => SelectionContext<SelectionTicket<unknown>>, provideSelectionRoot: (key: string, context: SelectionContext<SelectionTicket<unknown>>, app?: vue370.App) => SelectionContext<SelectionTicket<unknown>>;
|
|
1886
|
+
declare const _default$5: typeof __VLS_export$5;
|
|
1887
|
+
declare const __VLS_export$5: <T = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$5<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
1864
1888
|
props: __VLS_PrettifyLocal$5<(SelectionRootProps & {
|
|
1865
1889
|
modelValue?: T | T[];
|
|
1866
1890
|
}) & {
|
|
1867
1891
|
"onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
|
|
1868
1892
|
"onUpdate:model-value"?: ((value: T | T[]) => any) | undefined;
|
|
1869
|
-
}> &
|
|
1893
|
+
}> & vue370.PublicProps & (typeof globalThis extends {
|
|
1894
|
+
__VLS_PROPS_FALLBACK: infer P;
|
|
1895
|
+
} ? P : {});
|
|
1870
1896
|
expose: (exposed: {}) => void;
|
|
1871
1897
|
attrs: any;
|
|
1872
1898
|
slots: {
|
|
1873
1899
|
default: (props: SelectionRootSlotProps) => any;
|
|
1874
1900
|
};
|
|
1875
1901
|
emit: ((evt: "update:model-value", value: T | T[]) => void) & ((evt: "update:modelValue", value: T | T[] | undefined) => void);
|
|
1876
|
-
}>) =>
|
|
1902
|
+
}>) => vue370.VNode & {
|
|
1877
1903
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
1878
1904
|
};
|
|
1879
|
-
|
|
1880
|
-
type __VLS_PrettifyLocal$5<T> = { [K in keyof T as K]: T[K] } & {};
|
|
1905
|
+
type __VLS_PrettifyLocal$5<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {};
|
|
1881
1906
|
//#endregion
|
|
1882
1907
|
//#region src/components/Selection/SelectionItem.vue.d.ts
|
|
1883
1908
|
interface SelectionItemProps<V = unknown> {
|
|
@@ -1917,19 +1942,21 @@ interface SelectionItemSlotProps<V = unknown> {
|
|
|
1917
1942
|
'data-disabled': true | undefined;
|
|
1918
1943
|
};
|
|
1919
1944
|
}
|
|
1920
|
-
declare const
|
|
1921
|
-
|
|
1945
|
+
declare const _default$4: typeof __VLS_export$4;
|
|
1946
|
+
declare const __VLS_export$4: <V = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$4<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
1947
|
+
props: __VLS_PrettifyLocal$4<SelectionItemProps<V>> & vue370.PublicProps & (typeof globalThis extends {
|
|
1948
|
+
__VLS_PROPS_FALLBACK: infer P;
|
|
1949
|
+
} ? P : {});
|
|
1922
1950
|
expose: (exposed: {}) => void;
|
|
1923
1951
|
attrs: any;
|
|
1924
1952
|
slots: {
|
|
1925
1953
|
default: (props: SelectionItemSlotProps<V>) => unknown;
|
|
1926
1954
|
};
|
|
1927
1955
|
emit: {};
|
|
1928
|
-
}>) =>
|
|
1956
|
+
}>) => vue370.VNode & {
|
|
1929
1957
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
1930
1958
|
};
|
|
1931
|
-
|
|
1932
|
-
type __VLS_PrettifyLocal$4<T> = { [K in keyof T as K]: T[K] } & {};
|
|
1959
|
+
type __VLS_PrettifyLocal$4<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {};
|
|
1933
1960
|
//#endregion
|
|
1934
1961
|
//#region src/components/Selection/index.d.ts
|
|
1935
1962
|
/**
|
|
@@ -1968,7 +1995,7 @@ declare const Selection: {
|
|
|
1968
1995
|
slots: {
|
|
1969
1996
|
default: (props: SelectionRootSlotProps) => any;
|
|
1970
1997
|
};
|
|
1971
|
-
},
|
|
1998
|
+
}, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
1972
1999
|
props: {
|
|
1973
2000
|
namespace?: string | undefined;
|
|
1974
2001
|
disabled?: boolean | undefined;
|
|
@@ -1978,14 +2005,16 @@ declare const Selection: {
|
|
|
1978
2005
|
modelValue?: (T | T[]) | undefined;
|
|
1979
2006
|
"onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
|
|
1980
2007
|
"onUpdate:model-value"?: ((value: T | T[]) => any) | undefined;
|
|
1981
|
-
} &
|
|
2008
|
+
} & vue370.PublicProps & (typeof globalThis extends {
|
|
2009
|
+
__VLS_PROPS_FALLBACK: infer P;
|
|
2010
|
+
} ? P : {});
|
|
1982
2011
|
expose: (exposed: {}) => void;
|
|
1983
2012
|
attrs: any;
|
|
1984
2013
|
slots: {
|
|
1985
2014
|
default: (props: SelectionRootSlotProps) => any;
|
|
1986
2015
|
};
|
|
1987
2016
|
emit: ((evt: "update:model-value", value: T | T[]) => void) & ((evt: "update:modelValue", value: T | T[] | undefined) => void);
|
|
1988
|
-
}>) =>
|
|
2017
|
+
}>) => vue370.VNode & {
|
|
1989
2018
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
1990
2019
|
};
|
|
1991
2020
|
/**
|
|
@@ -2012,21 +2041,23 @@ declare const Selection: {
|
|
|
2012
2041
|
slots: {
|
|
2013
2042
|
default: (props: SelectionItemSlotProps<V>) => unknown;
|
|
2014
2043
|
};
|
|
2015
|
-
},
|
|
2044
|
+
}, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
2016
2045
|
props: {
|
|
2017
2046
|
id?: string | undefined;
|
|
2018
2047
|
label?: string | undefined;
|
|
2019
2048
|
value?: V | undefined;
|
|
2020
|
-
disabled?:
|
|
2049
|
+
disabled?: vue370.MaybeRef<boolean> | undefined;
|
|
2021
2050
|
namespace?: string | undefined;
|
|
2022
|
-
} &
|
|
2051
|
+
} & vue370.PublicProps & (typeof globalThis extends {
|
|
2052
|
+
__VLS_PROPS_FALLBACK: infer P;
|
|
2053
|
+
} ? P : {});
|
|
2023
2054
|
expose: (exposed: {}) => void;
|
|
2024
2055
|
attrs: any;
|
|
2025
2056
|
slots: {
|
|
2026
2057
|
default: (props: SelectionItemSlotProps<V>) => unknown;
|
|
2027
2058
|
};
|
|
2028
2059
|
emit: {};
|
|
2029
|
-
}>) =>
|
|
2060
|
+
}>) => vue370.VNode & {
|
|
2030
2061
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2031
2062
|
};
|
|
2032
2063
|
};
|
|
@@ -2061,24 +2092,26 @@ interface SingleRootSlotProps {
|
|
|
2061
2092
|
'aria-multiselectable': false;
|
|
2062
2093
|
};
|
|
2063
2094
|
}
|
|
2064
|
-
declare const useSingleRoot: (key: string, defaultValue?: SingleContext<SingleTicket<unknown>> | undefined) => SingleContext<SingleTicket<unknown>>, provideSingleRoot: (key: string, context: SingleContext<SingleTicket<unknown>>, app?:
|
|
2065
|
-
declare const
|
|
2095
|
+
declare const useSingleRoot: (key: string, defaultValue?: SingleContext<SingleTicket<unknown>> | undefined) => SingleContext<SingleTicket<unknown>>, provideSingleRoot: (key: string, context: SingleContext<SingleTicket<unknown>>, app?: vue370.App) => SingleContext<SingleTicket<unknown>>;
|
|
2096
|
+
declare const _default$3: typeof __VLS_export$3;
|
|
2097
|
+
declare const __VLS_export$3: <T = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$3<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
2066
2098
|
props: __VLS_PrettifyLocal$3<(SingleRootProps & {
|
|
2067
2099
|
modelValue?: T | T[];
|
|
2068
2100
|
}) & {
|
|
2069
2101
|
"onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
|
|
2070
|
-
}> &
|
|
2102
|
+
}> & vue370.PublicProps & (typeof globalThis extends {
|
|
2103
|
+
__VLS_PROPS_FALLBACK: infer P;
|
|
2104
|
+
} ? P : {});
|
|
2071
2105
|
expose: (exposed: {}) => void;
|
|
2072
2106
|
attrs: any;
|
|
2073
2107
|
slots: {
|
|
2074
2108
|
default: (props: SingleRootSlotProps) => any;
|
|
2075
2109
|
};
|
|
2076
2110
|
emit: (evt: "update:modelValue", value: T | T[] | undefined) => void;
|
|
2077
|
-
}>) =>
|
|
2111
|
+
}>) => vue370.VNode & {
|
|
2078
2112
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2079
2113
|
};
|
|
2080
|
-
|
|
2081
|
-
type __VLS_PrettifyLocal$3<T> = { [K in keyof T as K]: T[K] } & {};
|
|
2114
|
+
type __VLS_PrettifyLocal$3<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {};
|
|
2082
2115
|
//#endregion
|
|
2083
2116
|
//#region src/components/Single/SingleItem.vue.d.ts
|
|
2084
2117
|
interface SingleItemProps<V = unknown> {
|
|
@@ -2118,19 +2151,21 @@ interface SingleItemSlotProps<V = unknown> {
|
|
|
2118
2151
|
'data-disabled': true | undefined;
|
|
2119
2152
|
};
|
|
2120
2153
|
}
|
|
2121
|
-
declare const
|
|
2122
|
-
|
|
2154
|
+
declare const _default$2: typeof __VLS_export$2;
|
|
2155
|
+
declare const __VLS_export$2: <V = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$2<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
2156
|
+
props: __VLS_PrettifyLocal$2<SingleItemProps<V>> & vue370.PublicProps & (typeof globalThis extends {
|
|
2157
|
+
__VLS_PROPS_FALLBACK: infer P;
|
|
2158
|
+
} ? P : {});
|
|
2123
2159
|
expose: (exposed: {}) => void;
|
|
2124
2160
|
attrs: any;
|
|
2125
2161
|
slots: {
|
|
2126
2162
|
default: (props: SingleItemSlotProps<V>) => unknown;
|
|
2127
2163
|
};
|
|
2128
2164
|
emit: {};
|
|
2129
|
-
}>) =>
|
|
2165
|
+
}>) => vue370.VNode & {
|
|
2130
2166
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2131
2167
|
};
|
|
2132
|
-
|
|
2133
|
-
type __VLS_PrettifyLocal$2<T> = { [K in keyof T as K]: T[K] } & {};
|
|
2168
|
+
type __VLS_PrettifyLocal$2<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {};
|
|
2134
2169
|
//#endregion
|
|
2135
2170
|
//#region src/components/Single/index.d.ts
|
|
2136
2171
|
/**
|
|
@@ -2169,7 +2204,7 @@ declare const Single: {
|
|
|
2169
2204
|
slots: {
|
|
2170
2205
|
default: (props: SingleRootSlotProps) => any;
|
|
2171
2206
|
};
|
|
2172
|
-
},
|
|
2207
|
+
}, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
2173
2208
|
props: {
|
|
2174
2209
|
namespace?: string | undefined;
|
|
2175
2210
|
disabled?: boolean | undefined;
|
|
@@ -2177,14 +2212,16 @@ declare const Single: {
|
|
|
2177
2212
|
mandatory?: boolean | "force" | undefined;
|
|
2178
2213
|
modelValue?: (T | T[]) | undefined;
|
|
2179
2214
|
"onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
|
|
2180
|
-
} &
|
|
2215
|
+
} & vue370.PublicProps & (typeof globalThis extends {
|
|
2216
|
+
__VLS_PROPS_FALLBACK: infer P;
|
|
2217
|
+
} ? P : {});
|
|
2181
2218
|
expose: (exposed: {}) => void;
|
|
2182
2219
|
attrs: any;
|
|
2183
2220
|
slots: {
|
|
2184
2221
|
default: (props: SingleRootSlotProps) => any;
|
|
2185
2222
|
};
|
|
2186
2223
|
emit: (evt: "update:modelValue", value: T | T[] | undefined) => void;
|
|
2187
|
-
}>) =>
|
|
2224
|
+
}>) => vue370.VNode & {
|
|
2188
2225
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2189
2226
|
};
|
|
2190
2227
|
/**
|
|
@@ -2213,21 +2250,23 @@ declare const Single: {
|
|
|
2213
2250
|
slots: {
|
|
2214
2251
|
default: (props: SingleItemSlotProps<V>) => unknown;
|
|
2215
2252
|
};
|
|
2216
|
-
},
|
|
2253
|
+
}, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
2217
2254
|
props: {
|
|
2218
2255
|
id?: string | undefined;
|
|
2219
2256
|
label?: string | undefined;
|
|
2220
2257
|
value?: V | undefined;
|
|
2221
|
-
disabled?:
|
|
2258
|
+
disabled?: vue370.MaybeRef<boolean> | undefined;
|
|
2222
2259
|
namespace?: string | undefined;
|
|
2223
|
-
} &
|
|
2260
|
+
} & vue370.PublicProps & (typeof globalThis extends {
|
|
2261
|
+
__VLS_PROPS_FALLBACK: infer P;
|
|
2262
|
+
} ? P : {});
|
|
2224
2263
|
expose: (exposed: {}) => void;
|
|
2225
2264
|
attrs: any;
|
|
2226
2265
|
slots: {
|
|
2227
2266
|
default: (props: SingleItemSlotProps<V>) => unknown;
|
|
2228
2267
|
};
|
|
2229
2268
|
emit: {};
|
|
2230
|
-
}>) =>
|
|
2269
|
+
}>) => vue370.VNode & {
|
|
2231
2270
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2232
2271
|
};
|
|
2233
2272
|
};
|
|
@@ -2272,24 +2311,26 @@ interface StepRootSlotProps {
|
|
|
2272
2311
|
'aria-multiselectable': false;
|
|
2273
2312
|
};
|
|
2274
2313
|
}
|
|
2275
|
-
declare const useStepRoot: (key: string, defaultValue?: StepContext<StepTicket<unknown>> | undefined) => StepContext<StepTicket<unknown>>, provideStepRoot: (key: string, context: StepContext<StepTicket<unknown>>, app?:
|
|
2276
|
-
declare const
|
|
2314
|
+
declare const useStepRoot: (key: string, defaultValue?: StepContext<StepTicket<unknown>> | undefined) => StepContext<StepTicket<unknown>>, provideStepRoot: (key: string, context: StepContext<StepTicket<unknown>>, app?: vue370.App) => StepContext<StepTicket<unknown>>;
|
|
2315
|
+
declare const _default$1: typeof __VLS_export$1;
|
|
2316
|
+
declare const __VLS_export$1: <T = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$1<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
2277
2317
|
props: __VLS_PrettifyLocal$1<(StepRootProps & {
|
|
2278
2318
|
modelValue?: T | T[];
|
|
2279
2319
|
}) & {
|
|
2280
2320
|
"onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
|
|
2281
|
-
}> &
|
|
2321
|
+
}> & vue370.PublicProps & (typeof globalThis extends {
|
|
2322
|
+
__VLS_PROPS_FALLBACK: infer P;
|
|
2323
|
+
} ? P : {});
|
|
2282
2324
|
expose: (exposed: {}) => void;
|
|
2283
2325
|
attrs: any;
|
|
2284
2326
|
slots: {
|
|
2285
2327
|
default: (props: StepRootSlotProps) => any;
|
|
2286
2328
|
};
|
|
2287
2329
|
emit: (evt: "update:modelValue", value: T | T[] | undefined) => void;
|
|
2288
|
-
}>) =>
|
|
2330
|
+
}>) => vue370.VNode & {
|
|
2289
2331
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2290
2332
|
};
|
|
2291
|
-
|
|
2292
|
-
type __VLS_PrettifyLocal$1<T> = { [K in keyof T as K]: T[K] } & {};
|
|
2333
|
+
type __VLS_PrettifyLocal$1<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {};
|
|
2293
2334
|
//#endregion
|
|
2294
2335
|
//#region src/components/Step/StepItem.vue.d.ts
|
|
2295
2336
|
interface StepItemProps<V = unknown> {
|
|
@@ -2329,19 +2370,21 @@ interface StepItemSlotProps<V = unknown> {
|
|
|
2329
2370
|
'data-disabled': true | undefined;
|
|
2330
2371
|
};
|
|
2331
2372
|
}
|
|
2332
|
-
declare const
|
|
2333
|
-
|
|
2373
|
+
declare const _default: typeof __VLS_export;
|
|
2374
|
+
declare const __VLS_export: <V = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
2375
|
+
props: __VLS_PrettifyLocal<StepItemProps<V>> & vue370.PublicProps & (typeof globalThis extends {
|
|
2376
|
+
__VLS_PROPS_FALLBACK: infer P;
|
|
2377
|
+
} ? P : {});
|
|
2334
2378
|
expose: (exposed: {}) => void;
|
|
2335
2379
|
attrs: any;
|
|
2336
2380
|
slots: {
|
|
2337
2381
|
default: (props: StepItemSlotProps<V>) => unknown;
|
|
2338
2382
|
};
|
|
2339
2383
|
emit: {};
|
|
2340
|
-
}>) =>
|
|
2384
|
+
}>) => vue370.VNode & {
|
|
2341
2385
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2342
2386
|
};
|
|
2343
|
-
|
|
2344
|
-
type __VLS_PrettifyLocal<T> = { [K in keyof T as K]: T[K] } & {};
|
|
2387
|
+
type __VLS_PrettifyLocal<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {};
|
|
2345
2388
|
//#endregion
|
|
2346
2389
|
//#region src/components/Step/index.d.ts
|
|
2347
2390
|
/**
|
|
@@ -2378,7 +2421,7 @@ declare const Step: {
|
|
|
2378
2421
|
slots: {
|
|
2379
2422
|
default: (props: StepRootSlotProps) => any;
|
|
2380
2423
|
};
|
|
2381
|
-
},
|
|
2424
|
+
}, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
2382
2425
|
props: {
|
|
2383
2426
|
namespace?: string | undefined;
|
|
2384
2427
|
disabled?: boolean | undefined;
|
|
@@ -2386,14 +2429,16 @@ declare const Step: {
|
|
|
2386
2429
|
mandatory?: boolean | "force" | undefined;
|
|
2387
2430
|
modelValue?: (T | T[]) | undefined;
|
|
2388
2431
|
"onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
|
|
2389
|
-
} &
|
|
2432
|
+
} & vue370.PublicProps & (typeof globalThis extends {
|
|
2433
|
+
__VLS_PROPS_FALLBACK: infer P;
|
|
2434
|
+
} ? P : {});
|
|
2390
2435
|
expose: (exposed: {}) => void;
|
|
2391
2436
|
attrs: any;
|
|
2392
2437
|
slots: {
|
|
2393
2438
|
default: (props: StepRootSlotProps) => any;
|
|
2394
2439
|
};
|
|
2395
2440
|
emit: (evt: "update:modelValue", value: T | T[] | undefined) => void;
|
|
2396
|
-
}>) =>
|
|
2441
|
+
}>) => vue370.VNode & {
|
|
2397
2442
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2398
2443
|
};
|
|
2399
2444
|
/**
|
|
@@ -2420,21 +2465,23 @@ declare const Step: {
|
|
|
2420
2465
|
slots: {
|
|
2421
2466
|
default: (props: StepItemSlotProps<V>) => unknown;
|
|
2422
2467
|
};
|
|
2423
|
-
},
|
|
2468
|
+
}, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
2424
2469
|
props: {
|
|
2425
2470
|
id?: string | undefined;
|
|
2426
2471
|
label?: string | undefined;
|
|
2427
2472
|
value?: V | undefined;
|
|
2428
|
-
disabled?:
|
|
2473
|
+
disabled?: vue370.MaybeRef<boolean> | undefined;
|
|
2429
2474
|
namespace?: string | undefined;
|
|
2430
|
-
} &
|
|
2475
|
+
} & vue370.PublicProps & (typeof globalThis extends {
|
|
2476
|
+
__VLS_PROPS_FALLBACK: infer P;
|
|
2477
|
+
} ? P : {});
|
|
2431
2478
|
expose: (exposed: {}) => void;
|
|
2432
2479
|
attrs: any;
|
|
2433
2480
|
slots: {
|
|
2434
2481
|
default: (props: StepItemSlotProps<V>) => unknown;
|
|
2435
2482
|
};
|
|
2436
2483
|
emit: {};
|
|
2437
|
-
}>) =>
|
|
2484
|
+
}>) => vue370.VNode & {
|
|
2438
2485
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2439
2486
|
};
|
|
2440
2487
|
};
|