@vuetify/v0 0.0.20 → 0.0.22
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 +4 -1
- package/dist/browser/index.js +6043 -4758
- package/dist/components/index.d.mts +4 -4
- package/dist/components/index.mjs +5 -5
- package/dist/{components-D590hSY0.mjs → components-mxRTI3xB.mjs} +336 -26
- package/dist/composables/index.d.mts +4 -4
- package/dist/composables/index.mjs +4 -5
- package/dist/constants/index.d.mts +1 -1
- package/dist/constants/index.mjs +2 -2
- package/dist/{globals-exvZ8fiO.mjs → globals-B0yp-n-D.mjs} +2 -1
- package/dist/{index-Gr6XPRWt.d.mts → index-Bby5ljat.d.mts} +57 -57
- package/dist/{index-CjzlIAtF.d.mts → index-D3xuqKI0.d.mts} +6 -28
- package/dist/{index-DahjxaTj.d.mts → index-DF1O-1ZO.d.mts} +614 -164
- package/dist/{index-BYyEPh1S.d.mts → index-Dr-ge3ZA.d.mts} +182 -55
- package/dist/index.d.mts +7 -7
- package/dist/index.mjs +6 -7
- package/dist/types/index.d.mts +1 -1
- package/dist/useClickOutside-bbFXLr1p.mjs +6750 -0
- package/dist/utilities/index.d.mts +3 -3
- package/dist/utilities/index.mjs +2 -2
- package/dist/{utilities-BrFKLHFS.mjs → utilities-CKvM4p7S.mjs} +28 -9
- package/package.json +1 -19
- package/dist/composables-FE6B8JUW.mjs +0 -2832
- package/dist/useStep-Dw7XloDM.mjs +0 -2968
- /package/dist/{constants-DypzAkYp.mjs → constants-3l8TGg5J.mjs} +0 -0
- /package/dist/{index-B9mKi4pr.d.mts → index-DMQJJUrv.d.mts} +0 -0
- /package/dist/{index-4jSy8KIt.d.mts → index-DYSwiS9k.d.mts} +0 -0
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import { i as ID, t as DOMElement } from "./index-
|
|
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-
|
|
3
|
-
import * as
|
|
1
|
+
import { i as ID, t as DOMElement } from "./index-DYSwiS9k.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-Bby5ljat.mjs";
|
|
3
|
+
import * as vue379 from "vue";
|
|
4
4
|
import { MaybeRef, Ref, ShallowRef, TemplateRef } from "vue";
|
|
5
5
|
|
|
6
6
|
//#region src/components/Atom/Atom.vue.d.ts
|
|
7
|
-
|
|
8
7
|
/**
|
|
9
8
|
* Props for the Atom component
|
|
10
9
|
*/
|
|
@@ -40,16 +39,16 @@ interface AtomExpose {
|
|
|
40
39
|
element: TemplateRef<HTMLElement | null>;
|
|
41
40
|
}
|
|
42
41
|
interface AtomPrivateProps extends AtomProps {}
|
|
43
|
-
declare const _default$
|
|
44
|
-
declare const __VLS_export$
|
|
45
|
-
props: __VLS_PrettifyLocal$11<AtomPrivateProps> &
|
|
42
|
+
declare const _default$33: typeof __VLS_export$33;
|
|
43
|
+
declare const __VLS_export$33: <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<{
|
|
44
|
+
props: __VLS_PrettifyLocal$11<AtomPrivateProps> & vue379.PublicProps & (typeof globalThis extends {
|
|
46
45
|
__VLS_PROPS_FALLBACK: infer P;
|
|
47
46
|
} ? P : {});
|
|
48
|
-
expose: (exposed:
|
|
47
|
+
expose: (exposed: vue379.ShallowUnwrapRef<AtomExpose>) => void;
|
|
49
48
|
attrs: any;
|
|
50
49
|
slots: AtomSlots<T>;
|
|
51
50
|
emit: {};
|
|
52
|
-
}>) =>
|
|
51
|
+
}>) => vue379.VNode & {
|
|
53
52
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
54
53
|
};
|
|
55
54
|
type __VLS_PrettifyLocal$11<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {};
|
|
@@ -64,12 +63,12 @@ interface AvatarTicket extends SelectionTicket {
|
|
|
64
63
|
priority?: number;
|
|
65
64
|
}
|
|
66
65
|
interface AvatarContext extends SelectionContext<AvatarTicket> {}
|
|
67
|
-
declare const useAvatarRoot: (key: string, defaultValue?: AvatarContext | undefined) => AvatarContext, provideAvatarContext: (key: string, context: AvatarContext, app?:
|
|
68
|
-
declare const _default$
|
|
69
|
-
declare const __VLS_export$
|
|
66
|
+
declare const useAvatarRoot: (key: string, defaultValue?: AvatarContext | undefined) => AvatarContext, provideAvatarContext: (key: string, context: AvatarContext, app?: vue379.App) => AvatarContext;
|
|
67
|
+
declare const _default$32: typeof __VLS_export$32;
|
|
68
|
+
declare const __VLS_export$32: __VLS_WithSlots$21<vue379.DefineComponent<AvatarRootProps, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, vue379.PublicProps, Readonly<AvatarRootProps> & Readonly<{}>, {}, {}, {}, {}, string, vue379.ComponentProvideOptions, false, {}, any>, {
|
|
70
69
|
default?: (props: {}) => any;
|
|
71
70
|
}>;
|
|
72
|
-
type __VLS_WithSlots$
|
|
71
|
+
type __VLS_WithSlots$21<T, S> = T & {
|
|
73
72
|
new (): {
|
|
74
73
|
$slots: S;
|
|
75
74
|
};
|
|
@@ -99,17 +98,17 @@ interface AvatarImageSlotProps {
|
|
|
99
98
|
onError: (e: Event) => void;
|
|
100
99
|
};
|
|
101
100
|
}
|
|
102
|
-
declare const _default$
|
|
103
|
-
declare const __VLS_export$
|
|
104
|
-
error: (e: Event) => any;
|
|
101
|
+
declare const _default$31: typeof __VLS_export$31;
|
|
102
|
+
declare const __VLS_export$31: __VLS_WithSlots$20<vue379.DefineComponent<AvatarImageProps, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {
|
|
105
103
|
load: (e: Event) => any;
|
|
106
|
-
|
|
107
|
-
|
|
104
|
+
error: (e: Event) => any;
|
|
105
|
+
}, string, vue379.PublicProps, Readonly<AvatarImageProps> & Readonly<{
|
|
108
106
|
onLoad?: ((e: Event) => any) | undefined;
|
|
109
|
-
|
|
107
|
+
onError?: ((e: Event) => any) | undefined;
|
|
108
|
+
}>, {}, {}, {}, {}, string, vue379.ComponentProvideOptions, false, {}, any>, {
|
|
110
109
|
default: (props: AvatarImageSlotProps) => any;
|
|
111
110
|
}>;
|
|
112
|
-
type __VLS_WithSlots$
|
|
111
|
+
type __VLS_WithSlots$20<T, S> = T & {
|
|
113
112
|
new (): {
|
|
114
113
|
$slots: S;
|
|
115
114
|
};
|
|
@@ -124,11 +123,11 @@ interface AvatarFallbackSlotProps {
|
|
|
124
123
|
/** Whether this fallback is currently visible */
|
|
125
124
|
isSelected: boolean;
|
|
126
125
|
}
|
|
127
|
-
declare const _default$
|
|
128
|
-
declare const __VLS_export$
|
|
126
|
+
declare const _default$30: typeof __VLS_export$30;
|
|
127
|
+
declare const __VLS_export$30: __VLS_WithSlots$19<vue379.DefineComponent<AvatarFallbackProps, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, vue379.PublicProps, Readonly<AvatarFallbackProps> & Readonly<{}>, {}, {}, {}, {}, string, vue379.ComponentProvideOptions, false, {}, any>, {
|
|
129
128
|
default: (props: AvatarFallbackSlotProps) => any;
|
|
130
129
|
}>;
|
|
131
|
-
type __VLS_WithSlots$
|
|
130
|
+
type __VLS_WithSlots$19<T, S> = T & {
|
|
132
131
|
new (): {
|
|
133
132
|
$slots: S;
|
|
134
133
|
};
|
|
@@ -162,7 +161,7 @@ declare const Avatar: {
|
|
|
162
161
|
* ```
|
|
163
162
|
*/
|
|
164
163
|
Root: {
|
|
165
|
-
new (...args: any[]):
|
|
164
|
+
new (...args: any[]): vue379.CreateComponentPublicInstanceWithMixins<Readonly<AvatarRootProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, vue379.PublicProps, {}, false, {}, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, {}, any, vue379.ComponentProvideOptions, {
|
|
166
165
|
P: {};
|
|
167
166
|
B: {};
|
|
168
167
|
D: {};
|
|
@@ -173,7 +172,7 @@ declare const Avatar: {
|
|
|
173
172
|
__isFragment?: never;
|
|
174
173
|
__isTeleport?: never;
|
|
175
174
|
__isSuspense?: never;
|
|
176
|
-
} &
|
|
175
|
+
} & vue379.ComponentOptionsBase<Readonly<AvatarRootProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, vue379.ComponentProvideOptions> & vue379.VNodeProps & vue379.AllowedComponentProps & vue379.ComponentCustomProps & (new () => {
|
|
177
176
|
$slots: {
|
|
178
177
|
default?: (props: {}) => any;
|
|
179
178
|
};
|
|
@@ -195,13 +194,13 @@ declare const Avatar: {
|
|
|
195
194
|
* ```
|
|
196
195
|
*/
|
|
197
196
|
Image: {
|
|
198
|
-
new (...args: any[]):
|
|
199
|
-
onError?: ((e: Event) => any) | undefined;
|
|
197
|
+
new (...args: any[]): vue379.CreateComponentPublicInstanceWithMixins<Readonly<AvatarImageProps> & Readonly<{
|
|
200
198
|
onLoad?: ((e: Event) => any) | undefined;
|
|
201
|
-
|
|
202
|
-
|
|
199
|
+
onError?: ((e: Event) => any) | undefined;
|
|
200
|
+
}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {
|
|
203
201
|
load: (e: Event) => any;
|
|
204
|
-
|
|
202
|
+
error: (e: Event) => any;
|
|
203
|
+
}, vue379.PublicProps, {}, false, {}, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, {}, any, vue379.ComponentProvideOptions, {
|
|
205
204
|
P: {};
|
|
206
205
|
B: {};
|
|
207
206
|
D: {};
|
|
@@ -209,19 +208,19 @@ declare const Avatar: {
|
|
|
209
208
|
M: {};
|
|
210
209
|
Defaults: {};
|
|
211
210
|
}, Readonly<AvatarImageProps> & Readonly<{
|
|
212
|
-
onError?: ((e: Event) => any) | undefined;
|
|
213
211
|
onLoad?: ((e: Event) => any) | undefined;
|
|
212
|
+
onError?: ((e: Event) => any) | undefined;
|
|
214
213
|
}>, {}, {}, {}, {}, {}>;
|
|
215
214
|
__isFragment?: never;
|
|
216
215
|
__isTeleport?: never;
|
|
217
216
|
__isSuspense?: never;
|
|
218
|
-
} &
|
|
219
|
-
onError?: ((e: Event) => any) | undefined;
|
|
217
|
+
} & vue379.ComponentOptionsBase<Readonly<AvatarImageProps> & Readonly<{
|
|
220
218
|
onLoad?: ((e: Event) => any) | undefined;
|
|
221
|
-
|
|
222
|
-
|
|
219
|
+
onError?: ((e: Event) => any) | undefined;
|
|
220
|
+
}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {
|
|
223
221
|
load: (e: Event) => any;
|
|
224
|
-
|
|
222
|
+
error: (e: Event) => any;
|
|
223
|
+
}, string, {}, {}, string, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, vue379.ComponentProvideOptions> & vue379.VNodeProps & vue379.AllowedComponentProps & vue379.ComponentCustomProps & (new () => {
|
|
225
224
|
$slots: {
|
|
226
225
|
default: (props: AvatarImageSlotProps) => any;
|
|
227
226
|
};
|
|
@@ -245,7 +244,7 @@ declare const Avatar: {
|
|
|
245
244
|
* ```
|
|
246
245
|
*/
|
|
247
246
|
Fallback: {
|
|
248
|
-
new (...args: any[]):
|
|
247
|
+
new (...args: any[]): vue379.CreateComponentPublicInstanceWithMixins<Readonly<AvatarFallbackProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, vue379.PublicProps, {}, false, {}, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, {}, any, vue379.ComponentProvideOptions, {
|
|
249
248
|
P: {};
|
|
250
249
|
B: {};
|
|
251
250
|
D: {};
|
|
@@ -256,13 +255,464 @@ declare const Avatar: {
|
|
|
256
255
|
__isFragment?: never;
|
|
257
256
|
__isTeleport?: never;
|
|
258
257
|
__isSuspense?: never;
|
|
259
|
-
} &
|
|
258
|
+
} & vue379.ComponentOptionsBase<Readonly<AvatarFallbackProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, vue379.ComponentProvideOptions> & vue379.VNodeProps & vue379.AllowedComponentProps & vue379.ComponentCustomProps & (new () => {
|
|
260
259
|
$slots: {
|
|
261
260
|
default: (props: AvatarFallbackSlotProps) => any;
|
|
262
261
|
};
|
|
263
262
|
});
|
|
264
263
|
};
|
|
265
264
|
//#endregion
|
|
265
|
+
//#region src/components/Dialog/DialogRoot.vue.d.ts
|
|
266
|
+
interface DialogContext {
|
|
267
|
+
isOpen: ShallowRef<boolean>;
|
|
268
|
+
id: string;
|
|
269
|
+
titleId: string;
|
|
270
|
+
descriptionId: string;
|
|
271
|
+
open: () => void;
|
|
272
|
+
close: () => void;
|
|
273
|
+
}
|
|
274
|
+
interface DialogRootProps extends AtomProps {
|
|
275
|
+
/** Namespace for dependency injection */
|
|
276
|
+
namespace?: string;
|
|
277
|
+
/** Unique identifier for the dialog (auto-generated if not provided) */
|
|
278
|
+
id?: string;
|
|
279
|
+
}
|
|
280
|
+
interface DialogRootSlotProps {
|
|
281
|
+
/** Unique identifier */
|
|
282
|
+
id: string;
|
|
283
|
+
/** Whether the dialog is currently open */
|
|
284
|
+
isOpen: boolean;
|
|
285
|
+
/** Open the dialog */
|
|
286
|
+
open: () => void;
|
|
287
|
+
/** Close the dialog */
|
|
288
|
+
close: () => void;
|
|
289
|
+
}
|
|
290
|
+
declare const useDialogContext: (key: string, defaultValue?: DialogContext | undefined) => DialogContext, provideDialogContext: (key: string, context: DialogContext, app?: vue379.App) => DialogContext;
|
|
291
|
+
declare const _default$27: typeof __VLS_export$29;
|
|
292
|
+
declare const __VLS_export$29: __VLS_WithSlots$18<vue379.DefineComponent<DialogRootProps & {
|
|
293
|
+
modelValue?: boolean;
|
|
294
|
+
}, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {
|
|
295
|
+
"update:modelValue": (...args: unknown[]) => any;
|
|
296
|
+
}, string, vue379.PublicProps, Readonly<DialogRootProps & {
|
|
297
|
+
modelValue?: boolean;
|
|
298
|
+
}> & Readonly<{
|
|
299
|
+
"onUpdate:modelValue"?: ((...args: unknown[]) => any) | undefined;
|
|
300
|
+
}>, {}, {}, {}, {}, string, vue379.ComponentProvideOptions, false, {}, any>, {
|
|
301
|
+
default: (props: DialogRootSlotProps) => any;
|
|
302
|
+
}>;
|
|
303
|
+
type __VLS_WithSlots$18<T, S> = T & {
|
|
304
|
+
new (): {
|
|
305
|
+
$slots: S;
|
|
306
|
+
};
|
|
307
|
+
};
|
|
308
|
+
//#endregion
|
|
309
|
+
//#region src/components/Dialog/DialogActivator.vue.d.ts
|
|
310
|
+
interface DialogActivatorProps extends AtomProps {
|
|
311
|
+
/** Namespace for dependency injection */
|
|
312
|
+
namespace?: string;
|
|
313
|
+
}
|
|
314
|
+
interface DialogActivatorSlotProps {
|
|
315
|
+
/** Whether the dialog is currently open */
|
|
316
|
+
isOpen: boolean;
|
|
317
|
+
/** Attributes to bind to the trigger element */
|
|
318
|
+
attrs: {
|
|
319
|
+
'type': 'button' | undefined;
|
|
320
|
+
'aria-haspopup': 'dialog';
|
|
321
|
+
'aria-expanded': boolean;
|
|
322
|
+
'data-dialog-open': '' | undefined;
|
|
323
|
+
};
|
|
324
|
+
}
|
|
325
|
+
declare const _default$29: typeof __VLS_export$28;
|
|
326
|
+
declare const __VLS_export$28: __VLS_WithSlots$17<vue379.DefineComponent<DialogActivatorProps, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, vue379.PublicProps, Readonly<DialogActivatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue379.ComponentProvideOptions, false, {}, any>, {
|
|
327
|
+
default: (props: DialogActivatorSlotProps) => any;
|
|
328
|
+
}>;
|
|
329
|
+
type __VLS_WithSlots$17<T, S> = T & {
|
|
330
|
+
new (): {
|
|
331
|
+
$slots: S;
|
|
332
|
+
};
|
|
333
|
+
};
|
|
334
|
+
//#endregion
|
|
335
|
+
//#region src/components/Dialog/DialogContent.vue.d.ts
|
|
336
|
+
interface DialogContentProps extends AtomProps {
|
|
337
|
+
/** Namespace for dependency injection */
|
|
338
|
+
namespace?: string;
|
|
339
|
+
/** Close dialog when clicking outside content @default true */
|
|
340
|
+
closeOnClickOutside?: boolean;
|
|
341
|
+
}
|
|
342
|
+
interface DialogContentEmits {
|
|
343
|
+
cancel: [e: Event];
|
|
344
|
+
close: [e: Event];
|
|
345
|
+
}
|
|
346
|
+
interface DialogContentSlotProps {
|
|
347
|
+
/** Whether the dialog is currently open */
|
|
348
|
+
isOpen: boolean;
|
|
349
|
+
/** Attributes to bind to the dialog element */
|
|
350
|
+
attrs: {
|
|
351
|
+
'id': string;
|
|
352
|
+
'role': 'dialog';
|
|
353
|
+
'aria-modal': 'true';
|
|
354
|
+
'aria-labelledby': string;
|
|
355
|
+
'aria-describedby': string;
|
|
356
|
+
};
|
|
357
|
+
}
|
|
358
|
+
declare const _default$25: typeof __VLS_export$27;
|
|
359
|
+
declare const __VLS_export$27: __VLS_WithSlots$16<vue379.DefineComponent<DialogContentProps, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {
|
|
360
|
+
cancel: (e: Event) => any;
|
|
361
|
+
close: (e: Event) => any;
|
|
362
|
+
}, string, vue379.PublicProps, Readonly<DialogContentProps> & Readonly<{
|
|
363
|
+
onCancel?: ((e: Event) => any) | undefined;
|
|
364
|
+
onClose?: ((e: Event) => any) | undefined;
|
|
365
|
+
}>, {}, {}, {}, {}, string, vue379.ComponentProvideOptions, false, {}, any>, {
|
|
366
|
+
default: (props: DialogContentSlotProps) => any;
|
|
367
|
+
}>;
|
|
368
|
+
type __VLS_WithSlots$16<T, S> = T & {
|
|
369
|
+
new (): {
|
|
370
|
+
$slots: S;
|
|
371
|
+
};
|
|
372
|
+
};
|
|
373
|
+
//#endregion
|
|
374
|
+
//#region src/components/Dialog/DialogTitle.vue.d.ts
|
|
375
|
+
interface DialogTitleProps extends AtomProps {
|
|
376
|
+
/** Namespace for dependency injection */
|
|
377
|
+
namespace?: string;
|
|
378
|
+
}
|
|
379
|
+
interface DialogTitleSlotProps {
|
|
380
|
+
/** Attributes to bind to the title element */
|
|
381
|
+
attrs: {
|
|
382
|
+
id: string;
|
|
383
|
+
};
|
|
384
|
+
}
|
|
385
|
+
declare const _default$28: typeof __VLS_export$26;
|
|
386
|
+
declare const __VLS_export$26: __VLS_WithSlots$15<vue379.DefineComponent<DialogTitleProps, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, vue379.PublicProps, Readonly<DialogTitleProps> & Readonly<{}>, {}, {}, {}, {}, string, vue379.ComponentProvideOptions, false, {}, any>, {
|
|
387
|
+
default: (props: DialogTitleSlotProps) => any;
|
|
388
|
+
}>;
|
|
389
|
+
type __VLS_WithSlots$15<T, S> = T & {
|
|
390
|
+
new (): {
|
|
391
|
+
$slots: S;
|
|
392
|
+
};
|
|
393
|
+
};
|
|
394
|
+
//#endregion
|
|
395
|
+
//#region src/components/Dialog/DialogDescription.vue.d.ts
|
|
396
|
+
interface DialogDescriptionProps extends AtomProps {
|
|
397
|
+
/** Namespace for dependency injection */
|
|
398
|
+
namespace?: string;
|
|
399
|
+
}
|
|
400
|
+
interface DialogDescriptionSlotProps {
|
|
401
|
+
/** Attributes to bind to the description element */
|
|
402
|
+
attrs: {
|
|
403
|
+
id: string;
|
|
404
|
+
};
|
|
405
|
+
}
|
|
406
|
+
declare const _default$26: typeof __VLS_export$25;
|
|
407
|
+
declare const __VLS_export$25: __VLS_WithSlots$14<vue379.DefineComponent<DialogDescriptionProps, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, vue379.PublicProps, Readonly<DialogDescriptionProps> & Readonly<{}>, {}, {}, {}, {}, string, vue379.ComponentProvideOptions, false, {}, any>, {
|
|
408
|
+
default: (props: DialogDescriptionSlotProps) => any;
|
|
409
|
+
}>;
|
|
410
|
+
type __VLS_WithSlots$14<T, S> = T & {
|
|
411
|
+
new (): {
|
|
412
|
+
$slots: S;
|
|
413
|
+
};
|
|
414
|
+
};
|
|
415
|
+
//#endregion
|
|
416
|
+
//#region src/components/Dialog/DialogClose.vue.d.ts
|
|
417
|
+
interface DialogCloseProps extends AtomProps {
|
|
418
|
+
/** Namespace for dependency injection */
|
|
419
|
+
namespace?: string;
|
|
420
|
+
}
|
|
421
|
+
interface DialogCloseSlotProps {
|
|
422
|
+
/** Whether the dialog is currently open */
|
|
423
|
+
isOpen: boolean;
|
|
424
|
+
/** Attributes to bind to the close button element */
|
|
425
|
+
attrs: {
|
|
426
|
+
'type': 'button' | undefined;
|
|
427
|
+
'aria-label': 'Close';
|
|
428
|
+
};
|
|
429
|
+
}
|
|
430
|
+
declare const _default$24: typeof __VLS_export$24;
|
|
431
|
+
declare const __VLS_export$24: __VLS_WithSlots$13<vue379.DefineComponent<DialogCloseProps, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, vue379.PublicProps, Readonly<DialogCloseProps> & Readonly<{}>, {}, {}, {}, {}, string, vue379.ComponentProvideOptions, false, {}, any>, {
|
|
432
|
+
default: (props: DialogCloseSlotProps) => any;
|
|
433
|
+
}>;
|
|
434
|
+
type __VLS_WithSlots$13<T, S> = T & {
|
|
435
|
+
new (): {
|
|
436
|
+
$slots: S;
|
|
437
|
+
};
|
|
438
|
+
};
|
|
439
|
+
//#endregion
|
|
440
|
+
//#region src/components/Dialog/index.d.ts
|
|
441
|
+
/**
|
|
442
|
+
* Dialog component with sub-components for building modal dialogs.
|
|
443
|
+
*
|
|
444
|
+
* @see https://0.vuetifyjs.com/components/dialog
|
|
445
|
+
*
|
|
446
|
+
* @example
|
|
447
|
+
* ```vue
|
|
448
|
+
* <script lang="ts" setup>
|
|
449
|
+
* import { Dialog } from '@vuetify/v0'
|
|
450
|
+
* </script>
|
|
451
|
+
*
|
|
452
|
+
* <template>
|
|
453
|
+
* <Dialog.Root>
|
|
454
|
+
* <Dialog.Activator>
|
|
455
|
+
* Open Dialog
|
|
456
|
+
* </Dialog.Activator>
|
|
457
|
+
*
|
|
458
|
+
* <Dialog.Content>
|
|
459
|
+
* <Dialog.Title>Dialog Title</Dialog.Title>
|
|
460
|
+
* <Dialog.Description>Dialog description text.</Dialog.Description>
|
|
461
|
+
*
|
|
462
|
+
* <p>Dialog content goes here.</p>
|
|
463
|
+
*
|
|
464
|
+
* <Dialog.Close>Close</Dialog.Close>
|
|
465
|
+
* </Dialog.Content>
|
|
466
|
+
* </Dialog.Root>
|
|
467
|
+
* </template>
|
|
468
|
+
* ```
|
|
469
|
+
*/
|
|
470
|
+
declare const Dialog: {
|
|
471
|
+
/**
|
|
472
|
+
* Root component for dialogs.
|
|
473
|
+
*
|
|
474
|
+
* @see https://0.vuetifyjs.com/components/dialog
|
|
475
|
+
*
|
|
476
|
+
* @example
|
|
477
|
+
* ```vue
|
|
478
|
+
* <script lang="ts" setup>
|
|
479
|
+
* import { Dialog } from '@vuetify/v0'
|
|
480
|
+
* </script>
|
|
481
|
+
*
|
|
482
|
+
* <template>
|
|
483
|
+
* <Dialog.Root>
|
|
484
|
+
* <Dialog.Activator>Open</Dialog.Activator>
|
|
485
|
+
* <Dialog.Content>
|
|
486
|
+
* <Dialog.Title>Title</Dialog.Title>
|
|
487
|
+
* <Dialog.Close>Close</Dialog.Close>
|
|
488
|
+
* </Dialog.Content>
|
|
489
|
+
* </Dialog.Root>
|
|
490
|
+
* </template>
|
|
491
|
+
* ```
|
|
492
|
+
*/
|
|
493
|
+
Root: {
|
|
494
|
+
new (...args: any[]): vue379.CreateComponentPublicInstanceWithMixins<Readonly<DialogRootProps & {
|
|
495
|
+
modelValue?: boolean;
|
|
496
|
+
}> & Readonly<{
|
|
497
|
+
"onUpdate:modelValue"?: ((...args: unknown[]) => any) | undefined;
|
|
498
|
+
}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {
|
|
499
|
+
"update:modelValue": (...args: unknown[]) => any;
|
|
500
|
+
}, vue379.PublicProps, {}, false, {}, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, {}, any, vue379.ComponentProvideOptions, {
|
|
501
|
+
P: {};
|
|
502
|
+
B: {};
|
|
503
|
+
D: {};
|
|
504
|
+
C: {};
|
|
505
|
+
M: {};
|
|
506
|
+
Defaults: {};
|
|
507
|
+
}, Readonly<DialogRootProps & {
|
|
508
|
+
modelValue?: boolean;
|
|
509
|
+
}> & Readonly<{
|
|
510
|
+
"onUpdate:modelValue"?: ((...args: unknown[]) => any) | undefined;
|
|
511
|
+
}>, {}, {}, {}, {}, {}>;
|
|
512
|
+
__isFragment?: never;
|
|
513
|
+
__isTeleport?: never;
|
|
514
|
+
__isSuspense?: never;
|
|
515
|
+
} & vue379.ComponentOptionsBase<Readonly<DialogRootProps & {
|
|
516
|
+
modelValue?: boolean;
|
|
517
|
+
}> & Readonly<{
|
|
518
|
+
"onUpdate:modelValue"?: ((...args: unknown[]) => any) | undefined;
|
|
519
|
+
}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {
|
|
520
|
+
"update:modelValue": (...args: unknown[]) => any;
|
|
521
|
+
}, string, {}, {}, string, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, vue379.ComponentProvideOptions> & vue379.VNodeProps & vue379.AllowedComponentProps & vue379.ComponentCustomProps & (new () => {
|
|
522
|
+
$slots: {
|
|
523
|
+
default: (props: DialogRootSlotProps) => any;
|
|
524
|
+
};
|
|
525
|
+
});
|
|
526
|
+
/**
|
|
527
|
+
* Activator component that opens the dialog.
|
|
528
|
+
*
|
|
529
|
+
* @see https://0.vuetifyjs.com/components/dialog#dialogactivator
|
|
530
|
+
*
|
|
531
|
+
* @example
|
|
532
|
+
* ```vue
|
|
533
|
+
* <script lang="ts" setup>
|
|
534
|
+
* import { Dialog } from '@vuetify/v0'
|
|
535
|
+
* </script>
|
|
536
|
+
*
|
|
537
|
+
* <template>
|
|
538
|
+
* <Dialog.Activator>
|
|
539
|
+
* Open Dialog
|
|
540
|
+
* </Dialog.Activator>
|
|
541
|
+
* </template>
|
|
542
|
+
* ```
|
|
543
|
+
*/
|
|
544
|
+
Activator: {
|
|
545
|
+
new (...args: any[]): vue379.CreateComponentPublicInstanceWithMixins<Readonly<DialogActivatorProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, vue379.PublicProps, {}, false, {}, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, {}, any, vue379.ComponentProvideOptions, {
|
|
546
|
+
P: {};
|
|
547
|
+
B: {};
|
|
548
|
+
D: {};
|
|
549
|
+
C: {};
|
|
550
|
+
M: {};
|
|
551
|
+
Defaults: {};
|
|
552
|
+
}, Readonly<DialogActivatorProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
553
|
+
__isFragment?: never;
|
|
554
|
+
__isTeleport?: never;
|
|
555
|
+
__isSuspense?: never;
|
|
556
|
+
} & vue379.ComponentOptionsBase<Readonly<DialogActivatorProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, vue379.ComponentProvideOptions> & vue379.VNodeProps & vue379.AllowedComponentProps & vue379.ComponentCustomProps & (new () => {
|
|
557
|
+
$slots: {
|
|
558
|
+
default: (props: DialogActivatorSlotProps) => any;
|
|
559
|
+
};
|
|
560
|
+
});
|
|
561
|
+
/**
|
|
562
|
+
* Content container for the dialog using native `<dialog>` element.
|
|
563
|
+
*
|
|
564
|
+
* @see https://0.vuetifyjs.com/components/dialog#dialogcontent
|
|
565
|
+
*
|
|
566
|
+
* @example
|
|
567
|
+
* ```vue
|
|
568
|
+
* <script lang="ts" setup>
|
|
569
|
+
* import { Dialog } from '@vuetify/v0'
|
|
570
|
+
* </script>
|
|
571
|
+
*
|
|
572
|
+
* <template>
|
|
573
|
+
* <Dialog.Content>
|
|
574
|
+
* <Dialog.Title>Title</Dialog.Title>
|
|
575
|
+
* <p>Content goes here.</p>
|
|
576
|
+
* <Dialog.Close>Close</Dialog.Close>
|
|
577
|
+
* </Dialog.Content>
|
|
578
|
+
* </template>
|
|
579
|
+
* ```
|
|
580
|
+
*/
|
|
581
|
+
Content: {
|
|
582
|
+
new (...args: any[]): vue379.CreateComponentPublicInstanceWithMixins<Readonly<DialogContentProps> & Readonly<{
|
|
583
|
+
onCancel?: ((e: Event) => any) | undefined;
|
|
584
|
+
onClose?: ((e: Event) => any) | undefined;
|
|
585
|
+
}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {
|
|
586
|
+
cancel: (e: Event) => any;
|
|
587
|
+
close: (e: Event) => any;
|
|
588
|
+
}, vue379.PublicProps, {}, false, {}, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, {}, any, vue379.ComponentProvideOptions, {
|
|
589
|
+
P: {};
|
|
590
|
+
B: {};
|
|
591
|
+
D: {};
|
|
592
|
+
C: {};
|
|
593
|
+
M: {};
|
|
594
|
+
Defaults: {};
|
|
595
|
+
}, Readonly<DialogContentProps> & Readonly<{
|
|
596
|
+
onCancel?: ((e: Event) => any) | undefined;
|
|
597
|
+
onClose?: ((e: Event) => any) | undefined;
|
|
598
|
+
}>, {}, {}, {}, {}, {}>;
|
|
599
|
+
__isFragment?: never;
|
|
600
|
+
__isTeleport?: never;
|
|
601
|
+
__isSuspense?: never;
|
|
602
|
+
} & vue379.ComponentOptionsBase<Readonly<DialogContentProps> & Readonly<{
|
|
603
|
+
onCancel?: ((e: Event) => any) | undefined;
|
|
604
|
+
onClose?: ((e: Event) => any) | undefined;
|
|
605
|
+
}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {
|
|
606
|
+
cancel: (e: Event) => any;
|
|
607
|
+
close: (e: Event) => any;
|
|
608
|
+
}, string, {}, {}, string, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, vue379.ComponentProvideOptions> & vue379.VNodeProps & vue379.AllowedComponentProps & vue379.ComponentCustomProps & (new () => {
|
|
609
|
+
$slots: {
|
|
610
|
+
default: (props: DialogContentSlotProps) => any;
|
|
611
|
+
};
|
|
612
|
+
});
|
|
613
|
+
/**
|
|
614
|
+
* Title component for accessible dialog labeling.
|
|
615
|
+
*
|
|
616
|
+
* @see https://0.vuetifyjs.com/components/dialog#dialogtitle
|
|
617
|
+
*
|
|
618
|
+
* @example
|
|
619
|
+
* ```vue
|
|
620
|
+
* <script lang="ts" setup>
|
|
621
|
+
* import { Dialog } from '@vuetify/v0'
|
|
622
|
+
* </script>
|
|
623
|
+
*
|
|
624
|
+
* <template>
|
|
625
|
+
* <Dialog.Title>Dialog Title</Dialog.Title>
|
|
626
|
+
* </template>
|
|
627
|
+
* ```
|
|
628
|
+
*/
|
|
629
|
+
Title: {
|
|
630
|
+
new (...args: any[]): vue379.CreateComponentPublicInstanceWithMixins<Readonly<DialogTitleProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, vue379.PublicProps, {}, false, {}, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, {}, any, vue379.ComponentProvideOptions, {
|
|
631
|
+
P: {};
|
|
632
|
+
B: {};
|
|
633
|
+
D: {};
|
|
634
|
+
C: {};
|
|
635
|
+
M: {};
|
|
636
|
+
Defaults: {};
|
|
637
|
+
}, Readonly<DialogTitleProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
638
|
+
__isFragment?: never;
|
|
639
|
+
__isTeleport?: never;
|
|
640
|
+
__isSuspense?: never;
|
|
641
|
+
} & vue379.ComponentOptionsBase<Readonly<DialogTitleProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, vue379.ComponentProvideOptions> & vue379.VNodeProps & vue379.AllowedComponentProps & vue379.ComponentCustomProps & (new () => {
|
|
642
|
+
$slots: {
|
|
643
|
+
default: (props: DialogTitleSlotProps) => any;
|
|
644
|
+
};
|
|
645
|
+
});
|
|
646
|
+
/**
|
|
647
|
+
* Description component for accessible dialog description.
|
|
648
|
+
*
|
|
649
|
+
* @see https://0.vuetifyjs.com/components/dialog#dialogdescription
|
|
650
|
+
*
|
|
651
|
+
* @example
|
|
652
|
+
* ```vue
|
|
653
|
+
* <script lang="ts" setup>
|
|
654
|
+
* import { Dialog } from '@vuetify/v0'
|
|
655
|
+
* </script>
|
|
656
|
+
*
|
|
657
|
+
* <template>
|
|
658
|
+
* <Dialog.Description>
|
|
659
|
+
* This dialog allows you to configure settings.
|
|
660
|
+
* </Dialog.Description>
|
|
661
|
+
* </template>
|
|
662
|
+
* ```
|
|
663
|
+
*/
|
|
664
|
+
Description: {
|
|
665
|
+
new (...args: any[]): vue379.CreateComponentPublicInstanceWithMixins<Readonly<DialogDescriptionProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, vue379.PublicProps, {}, false, {}, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, {}, any, vue379.ComponentProvideOptions, {
|
|
666
|
+
P: {};
|
|
667
|
+
B: {};
|
|
668
|
+
D: {};
|
|
669
|
+
C: {};
|
|
670
|
+
M: {};
|
|
671
|
+
Defaults: {};
|
|
672
|
+
}, Readonly<DialogDescriptionProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
673
|
+
__isFragment?: never;
|
|
674
|
+
__isTeleport?: never;
|
|
675
|
+
__isSuspense?: never;
|
|
676
|
+
} & vue379.ComponentOptionsBase<Readonly<DialogDescriptionProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, vue379.ComponentProvideOptions> & vue379.VNodeProps & vue379.AllowedComponentProps & vue379.ComponentCustomProps & (new () => {
|
|
677
|
+
$slots: {
|
|
678
|
+
default: (props: DialogDescriptionSlotProps) => any;
|
|
679
|
+
};
|
|
680
|
+
});
|
|
681
|
+
/**
|
|
682
|
+
* Close button component for closing the dialog.
|
|
683
|
+
*
|
|
684
|
+
* @see https://0.vuetifyjs.com/components/dialog#dialogclose
|
|
685
|
+
*
|
|
686
|
+
* @example
|
|
687
|
+
* ```vue
|
|
688
|
+
* <script lang="ts" setup>
|
|
689
|
+
* import { Dialog } from '@vuetify/v0'
|
|
690
|
+
* </script>
|
|
691
|
+
*
|
|
692
|
+
* <template>
|
|
693
|
+
* <Dialog.Close>Close</Dialog.Close>
|
|
694
|
+
* </template>
|
|
695
|
+
* ```
|
|
696
|
+
*/
|
|
697
|
+
Close: {
|
|
698
|
+
new (...args: any[]): vue379.CreateComponentPublicInstanceWithMixins<Readonly<DialogCloseProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, vue379.PublicProps, {}, false, {}, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, {}, any, vue379.ComponentProvideOptions, {
|
|
699
|
+
P: {};
|
|
700
|
+
B: {};
|
|
701
|
+
D: {};
|
|
702
|
+
C: {};
|
|
703
|
+
M: {};
|
|
704
|
+
Defaults: {};
|
|
705
|
+
}, Readonly<DialogCloseProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
706
|
+
__isFragment?: never;
|
|
707
|
+
__isTeleport?: never;
|
|
708
|
+
__isSuspense?: never;
|
|
709
|
+
} & vue379.ComponentOptionsBase<Readonly<DialogCloseProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, vue379.ComponentProvideOptions> & vue379.VNodeProps & vue379.AllowedComponentProps & vue379.ComponentCustomProps & (new () => {
|
|
710
|
+
$slots: {
|
|
711
|
+
default: (props: DialogCloseSlotProps) => any;
|
|
712
|
+
};
|
|
713
|
+
});
|
|
714
|
+
};
|
|
715
|
+
//#endregion
|
|
266
716
|
//#region src/components/ExpansionPanel/ExpansionPanelRoot.vue.d.ts
|
|
267
717
|
interface ExpansionPanelOptionsContext {
|
|
268
718
|
/** Disabled state of the entire expansion panel */
|
|
@@ -300,14 +750,14 @@ interface ExpansionPanelRootSlotProps {
|
|
|
300
750
|
/** Toggle a panel's expansion state by ID */
|
|
301
751
|
toggle: (id: ID) => void;
|
|
302
752
|
}
|
|
303
|
-
declare const useExpansionPanelRoot: (key: string, defaultValue?: SelectionContext<SelectionTicket<unknown>> | undefined) => SelectionContext<SelectionTicket<unknown>>, provideExpansionPanelSelection: (key: string, context: SelectionContext<SelectionTicket<unknown>>, app?:
|
|
753
|
+
declare const useExpansionPanelRoot: (key: string, defaultValue?: SelectionContext<SelectionTicket<unknown>> | undefined) => SelectionContext<SelectionTicket<unknown>>, provideExpansionPanelSelection: (key: string, context: SelectionContext<SelectionTicket<unknown>>, app?: vue379.App) => SelectionContext<SelectionTicket<unknown>>;
|
|
304
754
|
declare const _default$23: typeof __VLS_export$23;
|
|
305
755
|
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<{
|
|
306
756
|
props: __VLS_PrettifyLocal$10<(ExpansionPanelRootProps & {
|
|
307
757
|
modelValue?: T | T[];
|
|
308
758
|
}) & {
|
|
309
759
|
[x: `on${Capitalize<string>}`]: ((...args: any) => any) | undefined;
|
|
310
|
-
}> &
|
|
760
|
+
}> & vue379.PublicProps & (typeof globalThis extends {
|
|
311
761
|
__VLS_PROPS_FALLBACK: infer P;
|
|
312
762
|
} ? P : {});
|
|
313
763
|
expose: (exposed: {}) => void;
|
|
@@ -316,7 +766,7 @@ declare const __VLS_export$23: <T = unknown>(__VLS_props: NonNullable<Awaited<ty
|
|
|
316
766
|
default: (props: ExpansionPanelRootSlotProps) => any;
|
|
317
767
|
};
|
|
318
768
|
emit: ((evt: "update:model-value", ...args: T | T[]) => void) & ((evt: "update:modelValue", value: T | T[] | undefined) => void);
|
|
319
|
-
}>) =>
|
|
769
|
+
}>) => vue379.VNode & {
|
|
320
770
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
321
771
|
};
|
|
322
772
|
type __VLS_PrettifyLocal$10<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {};
|
|
@@ -360,10 +810,10 @@ interface ExpansionPanelItemSlotProps {
|
|
|
360
810
|
'data-selected': true | undefined;
|
|
361
811
|
};
|
|
362
812
|
}
|
|
363
|
-
declare const useExpansionPanelItem: (key: string, defaultValue?: ExpansionPanelItemContext | undefined) => ExpansionPanelItemContext, provideExpansionPanelItem: (key: string, context: ExpansionPanelItemContext, app?:
|
|
813
|
+
declare const useExpansionPanelItem: (key: string, defaultValue?: ExpansionPanelItemContext | undefined) => ExpansionPanelItemContext, provideExpansionPanelItem: (key: string, context: ExpansionPanelItemContext, app?: vue379.App) => ExpansionPanelItemContext;
|
|
364
814
|
declare const _default$22: typeof __VLS_export$22;
|
|
365
815
|
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>> &
|
|
816
|
+
props: __VLS_PrettifyLocal$9<ExpansionPanelItemProps<V>> & vue379.PublicProps & (typeof globalThis extends {
|
|
367
817
|
__VLS_PROPS_FALLBACK: infer P;
|
|
368
818
|
} ? P : {});
|
|
369
819
|
expose: (exposed: {}) => void;
|
|
@@ -372,7 +822,7 @@ declare const __VLS_export$22: <V = unknown>(__VLS_props: NonNullable<Awaited<ty
|
|
|
372
822
|
default: (props: ExpansionPanelItemSlotProps) => any;
|
|
373
823
|
};
|
|
374
824
|
emit: {};
|
|
375
|
-
}>) =>
|
|
825
|
+
}>) => vue379.VNode & {
|
|
376
826
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
377
827
|
};
|
|
378
828
|
type __VLS_PrettifyLocal$9<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {};
|
|
@@ -392,7 +842,7 @@ interface ExpansionPanelHeaderSlotProps {
|
|
|
392
842
|
};
|
|
393
843
|
}
|
|
394
844
|
declare const _default$21: typeof __VLS_export$21;
|
|
395
|
-
declare const __VLS_export$21: __VLS_WithSlots$12<
|
|
845
|
+
declare const __VLS_export$21: __VLS_WithSlots$12<vue379.DefineComponent<ExpansionPanelHeaderProps, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, vue379.PublicProps, Readonly<ExpansionPanelHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, vue379.ComponentProvideOptions, false, {}, any>, {
|
|
396
846
|
default: (props: ExpansionPanelHeaderSlotProps) => any;
|
|
397
847
|
}>;
|
|
398
848
|
type __VLS_WithSlots$12<T, S> = T & {
|
|
@@ -441,7 +891,7 @@ interface ExpansionPanelActivatorSlotProps {
|
|
|
441
891
|
};
|
|
442
892
|
}
|
|
443
893
|
declare const _default$19: typeof __VLS_export$20;
|
|
444
|
-
declare const __VLS_export$20: __VLS_WithSlots$11<
|
|
894
|
+
declare const __VLS_export$20: __VLS_WithSlots$11<vue379.DefineComponent<ExpansionPanelActivatorProps, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, vue379.PublicProps, Readonly<ExpansionPanelActivatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue379.ComponentProvideOptions, false, {}, any>, {
|
|
445
895
|
default: (props: ExpansionPanelActivatorSlotProps) => any;
|
|
446
896
|
}>;
|
|
447
897
|
type __VLS_WithSlots$11<T, S> = T & {
|
|
@@ -472,7 +922,7 @@ interface ExpansionPanelContentSlotProps {
|
|
|
472
922
|
};
|
|
473
923
|
}
|
|
474
924
|
declare const _default$20: typeof __VLS_export$19;
|
|
475
|
-
declare const __VLS_export$19: __VLS_WithSlots$10<
|
|
925
|
+
declare const __VLS_export$19: __VLS_WithSlots$10<vue379.DefineComponent<ExpansionPanelContentProps, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, vue379.PublicProps, Readonly<ExpansionPanelContentProps> & Readonly<{}>, {}, {}, {}, {}, string, vue379.ComponentProvideOptions, false, {}, any>, {
|
|
476
926
|
default: (props: ExpansionPanelContentSlotProps) => any;
|
|
477
927
|
}>;
|
|
478
928
|
type __VLS_WithSlots$10<T, S> = T & {
|
|
@@ -533,7 +983,7 @@ declare const ExpansionPanel: {
|
|
|
533
983
|
as?: (DOMElement | null) | undefined;
|
|
534
984
|
renderless?: boolean | undefined;
|
|
535
985
|
modelValue?: (T | T[]) | undefined;
|
|
536
|
-
} &
|
|
986
|
+
} & vue379.PublicProps & (typeof globalThis extends {
|
|
537
987
|
__VLS_PROPS_FALLBACK: infer P;
|
|
538
988
|
} ? P : {});
|
|
539
989
|
expose: (exposed: {}) => void;
|
|
@@ -542,7 +992,7 @@ declare const ExpansionPanel: {
|
|
|
542
992
|
default: (props: ExpansionPanelRootSlotProps) => any;
|
|
543
993
|
};
|
|
544
994
|
emit: ((evt: "update:model-value", ...args: T | T[]) => void) & ((evt: "update:modelValue", value: T | T[] | undefined) => void);
|
|
545
|
-
}>) =>
|
|
995
|
+
}>) => vue379.VNode & {
|
|
546
996
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
547
997
|
};
|
|
548
998
|
/**
|
|
@@ -581,11 +1031,11 @@ declare const ExpansionPanel: {
|
|
|
581
1031
|
props: {
|
|
582
1032
|
id?: string | undefined;
|
|
583
1033
|
value?: V | undefined;
|
|
584
|
-
disabled?:
|
|
1034
|
+
disabled?: vue379.MaybeRef<boolean> | undefined;
|
|
585
1035
|
namespace?: string | undefined;
|
|
586
1036
|
as?: (DOMElement | null) | undefined;
|
|
587
1037
|
renderless?: boolean | undefined;
|
|
588
|
-
} &
|
|
1038
|
+
} & vue379.PublicProps & (typeof globalThis extends {
|
|
589
1039
|
__VLS_PROPS_FALLBACK: infer P;
|
|
590
1040
|
} ? P : {});
|
|
591
1041
|
expose: (exposed: {}) => void;
|
|
@@ -594,7 +1044,7 @@ declare const ExpansionPanel: {
|
|
|
594
1044
|
default: (props: ExpansionPanelItemSlotProps) => any;
|
|
595
1045
|
};
|
|
596
1046
|
emit: {};
|
|
597
|
-
}>) =>
|
|
1047
|
+
}>) => vue379.VNode & {
|
|
598
1048
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
599
1049
|
};
|
|
600
1050
|
/**
|
|
@@ -618,7 +1068,7 @@ declare const ExpansionPanel: {
|
|
|
618
1068
|
* ```
|
|
619
1069
|
*/
|
|
620
1070
|
Header: {
|
|
621
|
-
new (...args: any[]):
|
|
1071
|
+
new (...args: any[]): vue379.CreateComponentPublicInstanceWithMixins<Readonly<ExpansionPanelHeaderProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, vue379.PublicProps, {}, false, {}, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, {}, any, vue379.ComponentProvideOptions, {
|
|
622
1072
|
P: {};
|
|
623
1073
|
B: {};
|
|
624
1074
|
D: {};
|
|
@@ -629,7 +1079,7 @@ declare const ExpansionPanel: {
|
|
|
629
1079
|
__isFragment?: never;
|
|
630
1080
|
__isTeleport?: never;
|
|
631
1081
|
__isSuspense?: never;
|
|
632
|
-
} &
|
|
1082
|
+
} & vue379.ComponentOptionsBase<Readonly<ExpansionPanelHeaderProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, vue379.ComponentProvideOptions> & vue379.VNodeProps & vue379.AllowedComponentProps & vue379.ComponentCustomProps & (new () => {
|
|
633
1083
|
$slots: {
|
|
634
1084
|
default: (props: ExpansionPanelHeaderSlotProps) => any;
|
|
635
1085
|
};
|
|
@@ -653,7 +1103,7 @@ declare const ExpansionPanel: {
|
|
|
653
1103
|
* ```
|
|
654
1104
|
*/
|
|
655
1105
|
Activator: {
|
|
656
|
-
new (...args: any[]):
|
|
1106
|
+
new (...args: any[]): vue379.CreateComponentPublicInstanceWithMixins<Readonly<ExpansionPanelActivatorProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, vue379.PublicProps, {}, false, {}, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, {}, any, vue379.ComponentProvideOptions, {
|
|
657
1107
|
P: {};
|
|
658
1108
|
B: {};
|
|
659
1109
|
D: {};
|
|
@@ -664,7 +1114,7 @@ declare const ExpansionPanel: {
|
|
|
664
1114
|
__isFragment?: never;
|
|
665
1115
|
__isTeleport?: never;
|
|
666
1116
|
__isSuspense?: never;
|
|
667
|
-
} &
|
|
1117
|
+
} & vue379.ComponentOptionsBase<Readonly<ExpansionPanelActivatorProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, vue379.ComponentProvideOptions> & vue379.VNodeProps & vue379.AllowedComponentProps & vue379.ComponentCustomProps & (new () => {
|
|
668
1118
|
$slots: {
|
|
669
1119
|
default: (props: ExpansionPanelActivatorSlotProps) => any;
|
|
670
1120
|
};
|
|
@@ -688,7 +1138,7 @@ declare const ExpansionPanel: {
|
|
|
688
1138
|
* ```
|
|
689
1139
|
*/
|
|
690
1140
|
Content: {
|
|
691
|
-
new (...args: any[]):
|
|
1141
|
+
new (...args: any[]): vue379.CreateComponentPublicInstanceWithMixins<Readonly<ExpansionPanelContentProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, vue379.PublicProps, {}, false, {}, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, {}, any, vue379.ComponentProvideOptions, {
|
|
692
1142
|
P: {};
|
|
693
1143
|
B: {};
|
|
694
1144
|
D: {};
|
|
@@ -699,7 +1149,7 @@ declare const ExpansionPanel: {
|
|
|
699
1149
|
__isFragment?: never;
|
|
700
1150
|
__isTeleport?: never;
|
|
701
1151
|
__isSuspense?: never;
|
|
702
|
-
} &
|
|
1152
|
+
} & vue379.ComponentOptionsBase<Readonly<ExpansionPanelContentProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, vue379.ComponentProvideOptions> & vue379.VNodeProps & vue379.AllowedComponentProps & vue379.ComponentCustomProps & (new () => {
|
|
703
1153
|
$slots: {
|
|
704
1154
|
default: (props: ExpansionPanelContentSlotProps) => any;
|
|
705
1155
|
};
|
|
@@ -748,7 +1198,7 @@ interface GroupRootSlotProps {
|
|
|
748
1198
|
'aria-multiselectable': true;
|
|
749
1199
|
};
|
|
750
1200
|
}
|
|
751
|
-
declare const useGroupRoot: (key: string, defaultValue?: GroupContext<GroupTicket<unknown>> | undefined) => GroupContext<GroupTicket<unknown>>, provideGroupRoot: (key: string, context: GroupContext<GroupTicket<unknown>>, app?:
|
|
1201
|
+
declare const useGroupRoot: (key: string, defaultValue?: GroupContext<GroupTicket<unknown>> | undefined) => GroupContext<GroupTicket<unknown>>, provideGroupRoot: (key: string, context: GroupContext<GroupTicket<unknown>>, app?: vue379.App) => GroupContext<GroupTicket<unknown>>;
|
|
752
1202
|
declare const _default$18: typeof __VLS_export$18;
|
|
753
1203
|
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<{
|
|
754
1204
|
props: __VLS_PrettifyLocal$8<(GroupRootProps & {
|
|
@@ -756,7 +1206,7 @@ declare const __VLS_export$18: <T = unknown>(__VLS_props: NonNullable<Awaited<ty
|
|
|
756
1206
|
}) & {
|
|
757
1207
|
"onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
|
|
758
1208
|
"onUpdate:model-value"?: ((value: T | T[]) => any) | undefined;
|
|
759
|
-
}> &
|
|
1209
|
+
}> & vue379.PublicProps & (typeof globalThis extends {
|
|
760
1210
|
__VLS_PROPS_FALLBACK: infer P;
|
|
761
1211
|
} ? P : {});
|
|
762
1212
|
expose: (exposed: {}) => void;
|
|
@@ -765,7 +1215,7 @@ declare const __VLS_export$18: <T = unknown>(__VLS_props: NonNullable<Awaited<ty
|
|
|
765
1215
|
default: (props: GroupRootSlotProps) => any;
|
|
766
1216
|
};
|
|
767
1217
|
emit: ((evt: "update:model-value", value: T | T[]) => void) & ((evt: "update:modelValue", value: T | T[] | undefined) => void);
|
|
768
|
-
}>) =>
|
|
1218
|
+
}>) => vue379.VNode & {
|
|
769
1219
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
770
1220
|
};
|
|
771
1221
|
type __VLS_PrettifyLocal$8<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {};
|
|
@@ -820,7 +1270,7 @@ interface GroupItemSlotProps<V = unknown> {
|
|
|
820
1270
|
}
|
|
821
1271
|
declare const _default$17: typeof __VLS_export$17;
|
|
822
1272
|
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>> &
|
|
1273
|
+
props: __VLS_PrettifyLocal$7<GroupItemProps<V>> & vue379.PublicProps & (typeof globalThis extends {
|
|
824
1274
|
__VLS_PROPS_FALLBACK: infer P;
|
|
825
1275
|
} ? P : {});
|
|
826
1276
|
expose: (exposed: {}) => void;
|
|
@@ -829,7 +1279,7 @@ declare const __VLS_export$17: <V = unknown>(__VLS_props: NonNullable<Awaited<ty
|
|
|
829
1279
|
default: (props: GroupItemSlotProps<V>) => unknown;
|
|
830
1280
|
};
|
|
831
1281
|
emit: {};
|
|
832
|
-
}>) =>
|
|
1282
|
+
}>) => vue379.VNode & {
|
|
833
1283
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
834
1284
|
};
|
|
835
1285
|
type __VLS_PrettifyLocal$7<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {};
|
|
@@ -876,7 +1326,7 @@ declare const Group: {
|
|
|
876
1326
|
modelValue?: (T | T[]) | undefined;
|
|
877
1327
|
"onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
|
|
878
1328
|
"onUpdate:model-value"?: ((value: T | T[]) => any) | undefined;
|
|
879
|
-
} &
|
|
1329
|
+
} & vue379.PublicProps & (typeof globalThis extends {
|
|
880
1330
|
__VLS_PROPS_FALLBACK: infer P;
|
|
881
1331
|
} ? P : {});
|
|
882
1332
|
expose: (exposed: {}) => void;
|
|
@@ -885,7 +1335,7 @@ declare const Group: {
|
|
|
885
1335
|
default: (props: GroupRootSlotProps) => any;
|
|
886
1336
|
};
|
|
887
1337
|
emit: ((evt: "update:model-value", value: T | T[]) => void) & ((evt: "update:modelValue", value: T | T[] | undefined) => void);
|
|
888
|
-
}>) =>
|
|
1338
|
+
}>) => vue379.VNode & {
|
|
889
1339
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
890
1340
|
};
|
|
891
1341
|
/**
|
|
@@ -917,10 +1367,10 @@ declare const Group: {
|
|
|
917
1367
|
id?: string | undefined;
|
|
918
1368
|
label?: string | undefined;
|
|
919
1369
|
value?: V | undefined;
|
|
920
|
-
disabled?:
|
|
921
|
-
indeterminate?:
|
|
1370
|
+
disabled?: vue379.MaybeRef<boolean> | undefined;
|
|
1371
|
+
indeterminate?: vue379.MaybeRef<boolean> | undefined;
|
|
922
1372
|
namespace?: string | undefined;
|
|
923
|
-
} &
|
|
1373
|
+
} & vue379.PublicProps & (typeof globalThis extends {
|
|
924
1374
|
__VLS_PROPS_FALLBACK: infer P;
|
|
925
1375
|
} ? P : {});
|
|
926
1376
|
expose: (exposed: {}) => void;
|
|
@@ -929,15 +1379,15 @@ declare const Group: {
|
|
|
929
1379
|
default: (props: GroupItemSlotProps<V>) => unknown;
|
|
930
1380
|
};
|
|
931
1381
|
emit: {};
|
|
932
|
-
}>) =>
|
|
1382
|
+
}>) => vue379.VNode & {
|
|
933
1383
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
934
1384
|
};
|
|
935
1385
|
};
|
|
936
1386
|
//#endregion
|
|
937
1387
|
//#region src/components/Pagination/PaginationRoot.vue.d.ts
|
|
938
|
-
declare const usePaginationRoot: (key: string, defaultValue?: PaginationContext | undefined) => PaginationContext, providePaginationRoot: (key: string, context: PaginationContext, app?:
|
|
939
|
-
declare const usePaginationControls: (key: string, defaultValue?: RegistryContext<RegistryTicket<unknown>> | undefined) => RegistryContext<RegistryTicket<unknown>>, providePaginationControls: (key: string, context: RegistryContext<RegistryTicket<unknown>>, app?:
|
|
940
|
-
declare const usePaginationItems: (key: string, defaultValue?: RegistryContext<RegistryTicket<unknown>> | undefined) => RegistryContext<RegistryTicket<unknown>>, providePaginationItems: (key: string, context: RegistryContext<RegistryTicket<unknown>>, app?:
|
|
1388
|
+
declare const usePaginationRoot: (key: string, defaultValue?: PaginationContext | undefined) => PaginationContext, providePaginationRoot: (key: string, context: PaginationContext, app?: vue379.App) => PaginationContext;
|
|
1389
|
+
declare const usePaginationControls: (key: string, defaultValue?: RegistryContext<RegistryTicket<unknown>> | undefined) => RegistryContext<RegistryTicket<unknown>>, providePaginationControls: (key: string, context: RegistryContext<RegistryTicket<unknown>>, app?: vue379.App) => RegistryContext<RegistryTicket<unknown>>;
|
|
1390
|
+
declare const usePaginationItems: (key: string, defaultValue?: RegistryContext<RegistryTicket<unknown>> | undefined) => RegistryContext<RegistryTicket<unknown>>, providePaginationItems: (key: string, context: RegistryContext<RegistryTicket<unknown>>, app?: vue379.App) => RegistryContext<RegistryTicket<unknown>>;
|
|
941
1391
|
interface PaginationRootProps extends AtomProps {
|
|
942
1392
|
/** Namespace for dependency injection */
|
|
943
1393
|
namespace?: string;
|
|
@@ -994,7 +1444,7 @@ declare const __VLS_export$16: <T = unknown>(__VLS_props: NonNullable<Awaited<ty
|
|
|
994
1444
|
modelValue?: number;
|
|
995
1445
|
}) & {
|
|
996
1446
|
[x: `on${Capitalize<string>}`]: ((...args: any) => any) | undefined;
|
|
997
|
-
}> &
|
|
1447
|
+
}> & vue379.PublicProps & (typeof globalThis extends {
|
|
998
1448
|
__VLS_PROPS_FALLBACK: infer P;
|
|
999
1449
|
} ? P : {});
|
|
1000
1450
|
expose: (exposed: {}) => void;
|
|
@@ -1003,7 +1453,7 @@ declare const __VLS_export$16: <T = unknown>(__VLS_props: NonNullable<Awaited<ty
|
|
|
1003
1453
|
default: (props: PaginationRootSlotProps) => any;
|
|
1004
1454
|
};
|
|
1005
1455
|
emit: ((evt: "update:model-value", ...args: T | T[]) => void) & ((evt: "update:modelValue", value: number) => void);
|
|
1006
|
-
}>) =>
|
|
1456
|
+
}>) => vue379.VNode & {
|
|
1007
1457
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
1008
1458
|
};
|
|
1009
1459
|
type __VLS_PrettifyLocal$6<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {};
|
|
@@ -1042,7 +1492,7 @@ interface PaginationItemSlotProps {
|
|
|
1042
1492
|
};
|
|
1043
1493
|
}
|
|
1044
1494
|
declare const _default$11: typeof __VLS_export$15;
|
|
1045
|
-
declare const __VLS_export$15: __VLS_WithSlots$9<
|
|
1495
|
+
declare const __VLS_export$15: __VLS_WithSlots$9<vue379.DefineComponent<PaginationItemProps, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, vue379.PublicProps, Readonly<PaginationItemProps> & Readonly<{}>, {}, {}, {}, {}, string, vue379.ComponentProvideOptions, false, {}, any>, {
|
|
1046
1496
|
default: (props: PaginationItemSlotProps) => any;
|
|
1047
1497
|
}>;
|
|
1048
1498
|
type __VLS_WithSlots$9<T, S> = T & {
|
|
@@ -1077,7 +1527,7 @@ interface PaginationFirstSlotProps {
|
|
|
1077
1527
|
};
|
|
1078
1528
|
}
|
|
1079
1529
|
declare const _default$10: typeof __VLS_export$14;
|
|
1080
|
-
declare const __VLS_export$14: __VLS_WithSlots$8<
|
|
1530
|
+
declare const __VLS_export$14: __VLS_WithSlots$8<vue379.DefineComponent<PaginationFirstProps, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, vue379.PublicProps, Readonly<PaginationFirstProps> & Readonly<{}>, {}, {}, {}, {}, string, vue379.ComponentProvideOptions, false, {}, any>, {
|
|
1081
1531
|
default: (props: PaginationFirstSlotProps) => any;
|
|
1082
1532
|
}>;
|
|
1083
1533
|
type __VLS_WithSlots$8<T, S> = T & {
|
|
@@ -1112,7 +1562,7 @@ interface PaginationPrevSlotProps {
|
|
|
1112
1562
|
};
|
|
1113
1563
|
}
|
|
1114
1564
|
declare const _default$14: typeof __VLS_export$13;
|
|
1115
|
-
declare const __VLS_export$13: __VLS_WithSlots$7<
|
|
1565
|
+
declare const __VLS_export$13: __VLS_WithSlots$7<vue379.DefineComponent<PaginationPrevProps, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, vue379.PublicProps, Readonly<PaginationPrevProps> & Readonly<{}>, {}, {}, {}, {}, string, vue379.ComponentProvideOptions, false, {}, any>, {
|
|
1116
1566
|
default: (props: PaginationPrevSlotProps) => any;
|
|
1117
1567
|
}>;
|
|
1118
1568
|
type __VLS_WithSlots$7<T, S> = T & {
|
|
@@ -1139,7 +1589,7 @@ interface PaginationEllipsisSlotProps {
|
|
|
1139
1589
|
};
|
|
1140
1590
|
}
|
|
1141
1591
|
declare const _default$9: typeof __VLS_export$12;
|
|
1142
|
-
declare const __VLS_export$12: __VLS_WithSlots$6<
|
|
1592
|
+
declare const __VLS_export$12: __VLS_WithSlots$6<vue379.DefineComponent<PaginationEllipsisProps, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, vue379.PublicProps, Readonly<PaginationEllipsisProps> & Readonly<{}>, {}, {}, {}, {}, string, vue379.ComponentProvideOptions, false, {}, any>, {
|
|
1143
1593
|
default: (props: PaginationEllipsisSlotProps) => any;
|
|
1144
1594
|
}>;
|
|
1145
1595
|
type __VLS_WithSlots$6<T, S> = T & {
|
|
@@ -1174,7 +1624,7 @@ interface PaginationNextSlotProps {
|
|
|
1174
1624
|
};
|
|
1175
1625
|
}
|
|
1176
1626
|
declare const _default$13: typeof __VLS_export$11;
|
|
1177
|
-
declare const __VLS_export$11: __VLS_WithSlots$5<
|
|
1627
|
+
declare const __VLS_export$11: __VLS_WithSlots$5<vue379.DefineComponent<PaginationNextProps, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, vue379.PublicProps, Readonly<PaginationNextProps> & Readonly<{}>, {}, {}, {}, {}, string, vue379.ComponentProvideOptions, false, {}, any>, {
|
|
1178
1628
|
default: (props: PaginationNextSlotProps) => any;
|
|
1179
1629
|
}>;
|
|
1180
1630
|
type __VLS_WithSlots$5<T, S> = T & {
|
|
@@ -1209,7 +1659,7 @@ interface PaginationLastSlotProps {
|
|
|
1209
1659
|
};
|
|
1210
1660
|
}
|
|
1211
1661
|
declare const _default$12: typeof __VLS_export$10;
|
|
1212
|
-
declare const __VLS_export$10: __VLS_WithSlots$4<
|
|
1662
|
+
declare const __VLS_export$10: __VLS_WithSlots$4<vue379.DefineComponent<PaginationLastProps, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, vue379.PublicProps, Readonly<PaginationLastProps> & Readonly<{}>, {}, {}, {}, {}, string, vue379.ComponentProvideOptions, false, {}, any>, {
|
|
1213
1663
|
default: (props: PaginationLastSlotProps) => any;
|
|
1214
1664
|
}>;
|
|
1215
1665
|
type __VLS_WithSlots$4<T, S> = T & {
|
|
@@ -1238,7 +1688,7 @@ interface PaginationStatusSlotProps {
|
|
|
1238
1688
|
};
|
|
1239
1689
|
}
|
|
1240
1690
|
declare const _default$16: typeof __VLS_export$9;
|
|
1241
|
-
declare const __VLS_export$9: __VLS_WithSlots$3<
|
|
1691
|
+
declare const __VLS_export$9: __VLS_WithSlots$3<vue379.DefineComponent<PaginationStatusProps, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, vue379.PublicProps, Readonly<PaginationStatusProps> & Readonly<{}>, {}, {}, {}, {}, string, vue379.ComponentProvideOptions, false, {}, any>, {
|
|
1242
1692
|
default: (props: PaginationStatusSlotProps) => any;
|
|
1243
1693
|
}>;
|
|
1244
1694
|
type __VLS_WithSlots$3<T, S> = T & {
|
|
@@ -1301,7 +1751,7 @@ declare const Pagination: {
|
|
|
1301
1751
|
as?: (DOMElement | null) | undefined;
|
|
1302
1752
|
renderless?: boolean | undefined;
|
|
1303
1753
|
modelValue?: number | undefined;
|
|
1304
|
-
} &
|
|
1754
|
+
} & vue379.PublicProps & (typeof globalThis extends {
|
|
1305
1755
|
__VLS_PROPS_FALLBACK: infer P;
|
|
1306
1756
|
} ? P : {});
|
|
1307
1757
|
expose: (exposed: {}) => void;
|
|
@@ -1310,7 +1760,7 @@ declare const Pagination: {
|
|
|
1310
1760
|
default: (props: PaginationRootSlotProps) => any;
|
|
1311
1761
|
};
|
|
1312
1762
|
emit: ((evt: "update:model-value", ...args: T | T[]) => void) & ((evt: "update:modelValue", value: number) => void);
|
|
1313
|
-
}>) =>
|
|
1763
|
+
}>) => vue379.VNode & {
|
|
1314
1764
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
1315
1765
|
};
|
|
1316
1766
|
/**
|
|
@@ -1335,7 +1785,7 @@ declare const Pagination: {
|
|
|
1335
1785
|
* ```
|
|
1336
1786
|
*/
|
|
1337
1787
|
Item: {
|
|
1338
|
-
new (...args: any[]):
|
|
1788
|
+
new (...args: any[]): vue379.CreateComponentPublicInstanceWithMixins<Readonly<PaginationItemProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, vue379.PublicProps, {}, false, {}, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, {}, any, vue379.ComponentProvideOptions, {
|
|
1339
1789
|
P: {};
|
|
1340
1790
|
B: {};
|
|
1341
1791
|
D: {};
|
|
@@ -1346,7 +1796,7 @@ declare const Pagination: {
|
|
|
1346
1796
|
__isFragment?: never;
|
|
1347
1797
|
__isTeleport?: never;
|
|
1348
1798
|
__isSuspense?: never;
|
|
1349
|
-
} &
|
|
1799
|
+
} & vue379.ComponentOptionsBase<Readonly<PaginationItemProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, vue379.ComponentProvideOptions> & vue379.VNodeProps & vue379.AllowedComponentProps & vue379.ComponentCustomProps & (new () => {
|
|
1350
1800
|
$slots: {
|
|
1351
1801
|
default: (props: PaginationItemSlotProps) => any;
|
|
1352
1802
|
};
|
|
@@ -1379,7 +1829,7 @@ declare const Pagination: {
|
|
|
1379
1829
|
* ```
|
|
1380
1830
|
*/
|
|
1381
1831
|
First: {
|
|
1382
|
-
new (...args: any[]):
|
|
1832
|
+
new (...args: any[]): vue379.CreateComponentPublicInstanceWithMixins<Readonly<PaginationFirstProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, vue379.PublicProps, {}, false, {}, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, {}, any, vue379.ComponentProvideOptions, {
|
|
1383
1833
|
P: {};
|
|
1384
1834
|
B: {};
|
|
1385
1835
|
D: {};
|
|
@@ -1390,7 +1840,7 @@ declare const Pagination: {
|
|
|
1390
1840
|
__isFragment?: never;
|
|
1391
1841
|
__isTeleport?: never;
|
|
1392
1842
|
__isSuspense?: never;
|
|
1393
|
-
} &
|
|
1843
|
+
} & vue379.ComponentOptionsBase<Readonly<PaginationFirstProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, vue379.ComponentProvideOptions> & vue379.VNodeProps & vue379.AllowedComponentProps & vue379.ComponentCustomProps & (new () => {
|
|
1394
1844
|
$slots: {
|
|
1395
1845
|
default: (props: PaginationFirstSlotProps) => any;
|
|
1396
1846
|
};
|
|
@@ -1423,7 +1873,7 @@ declare const Pagination: {
|
|
|
1423
1873
|
* ```
|
|
1424
1874
|
*/
|
|
1425
1875
|
Prev: {
|
|
1426
|
-
new (...args: any[]):
|
|
1876
|
+
new (...args: any[]): vue379.CreateComponentPublicInstanceWithMixins<Readonly<PaginationPrevProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, vue379.PublicProps, {}, false, {}, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, {}, any, vue379.ComponentProvideOptions, {
|
|
1427
1877
|
P: {};
|
|
1428
1878
|
B: {};
|
|
1429
1879
|
D: {};
|
|
@@ -1434,7 +1884,7 @@ declare const Pagination: {
|
|
|
1434
1884
|
__isFragment?: never;
|
|
1435
1885
|
__isTeleport?: never;
|
|
1436
1886
|
__isSuspense?: never;
|
|
1437
|
-
} &
|
|
1887
|
+
} & vue379.ComponentOptionsBase<Readonly<PaginationPrevProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, vue379.ComponentProvideOptions> & vue379.VNodeProps & vue379.AllowedComponentProps & vue379.ComponentCustomProps & (new () => {
|
|
1438
1888
|
$slots: {
|
|
1439
1889
|
default: (props: PaginationPrevSlotProps) => any;
|
|
1440
1890
|
};
|
|
@@ -1462,7 +1912,7 @@ declare const Pagination: {
|
|
|
1462
1912
|
* ```
|
|
1463
1913
|
*/
|
|
1464
1914
|
Ellipsis: {
|
|
1465
|
-
new (...args: any[]):
|
|
1915
|
+
new (...args: any[]): vue379.CreateComponentPublicInstanceWithMixins<Readonly<PaginationEllipsisProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, vue379.PublicProps, {}, false, {}, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, {}, any, vue379.ComponentProvideOptions, {
|
|
1466
1916
|
P: {};
|
|
1467
1917
|
B: {};
|
|
1468
1918
|
D: {};
|
|
@@ -1473,7 +1923,7 @@ declare const Pagination: {
|
|
|
1473
1923
|
__isFragment?: never;
|
|
1474
1924
|
__isTeleport?: never;
|
|
1475
1925
|
__isSuspense?: never;
|
|
1476
|
-
} &
|
|
1926
|
+
} & vue379.ComponentOptionsBase<Readonly<PaginationEllipsisProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, vue379.ComponentProvideOptions> & vue379.VNodeProps & vue379.AllowedComponentProps & vue379.ComponentCustomProps & (new () => {
|
|
1477
1927
|
$slots: {
|
|
1478
1928
|
default: (props: PaginationEllipsisSlotProps) => any;
|
|
1479
1929
|
};
|
|
@@ -1506,7 +1956,7 @@ declare const Pagination: {
|
|
|
1506
1956
|
* ```
|
|
1507
1957
|
*/
|
|
1508
1958
|
Next: {
|
|
1509
|
-
new (...args: any[]):
|
|
1959
|
+
new (...args: any[]): vue379.CreateComponentPublicInstanceWithMixins<Readonly<PaginationNextProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, vue379.PublicProps, {}, false, {}, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, {}, any, vue379.ComponentProvideOptions, {
|
|
1510
1960
|
P: {};
|
|
1511
1961
|
B: {};
|
|
1512
1962
|
D: {};
|
|
@@ -1517,7 +1967,7 @@ declare const Pagination: {
|
|
|
1517
1967
|
__isFragment?: never;
|
|
1518
1968
|
__isTeleport?: never;
|
|
1519
1969
|
__isSuspense?: never;
|
|
1520
|
-
} &
|
|
1970
|
+
} & vue379.ComponentOptionsBase<Readonly<PaginationNextProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, vue379.ComponentProvideOptions> & vue379.VNodeProps & vue379.AllowedComponentProps & vue379.ComponentCustomProps & (new () => {
|
|
1521
1971
|
$slots: {
|
|
1522
1972
|
default: (props: PaginationNextSlotProps) => any;
|
|
1523
1973
|
};
|
|
@@ -1550,7 +2000,7 @@ declare const Pagination: {
|
|
|
1550
2000
|
* ```
|
|
1551
2001
|
*/
|
|
1552
2002
|
Last: {
|
|
1553
|
-
new (...args: any[]):
|
|
2003
|
+
new (...args: any[]): vue379.CreateComponentPublicInstanceWithMixins<Readonly<PaginationLastProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, vue379.PublicProps, {}, false, {}, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, {}, any, vue379.ComponentProvideOptions, {
|
|
1554
2004
|
P: {};
|
|
1555
2005
|
B: {};
|
|
1556
2006
|
D: {};
|
|
@@ -1561,7 +2011,7 @@ declare const Pagination: {
|
|
|
1561
2011
|
__isFragment?: never;
|
|
1562
2012
|
__isTeleport?: never;
|
|
1563
2013
|
__isSuspense?: never;
|
|
1564
|
-
} &
|
|
2014
|
+
} & vue379.ComponentOptionsBase<Readonly<PaginationLastProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, vue379.ComponentProvideOptions> & vue379.VNodeProps & vue379.AllowedComponentProps & vue379.ComponentCustomProps & (new () => {
|
|
1565
2015
|
$slots: {
|
|
1566
2016
|
default: (props: PaginationLastSlotProps) => any;
|
|
1567
2017
|
};
|
|
@@ -1587,7 +2037,7 @@ declare const Pagination: {
|
|
|
1587
2037
|
* ```
|
|
1588
2038
|
*/
|
|
1589
2039
|
Status: {
|
|
1590
|
-
new (...args: any[]):
|
|
2040
|
+
new (...args: any[]): vue379.CreateComponentPublicInstanceWithMixins<Readonly<PaginationStatusProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, vue379.PublicProps, {}, false, {}, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, {}, any, vue379.ComponentProvideOptions, {
|
|
1591
2041
|
P: {};
|
|
1592
2042
|
B: {};
|
|
1593
2043
|
D: {};
|
|
@@ -1598,7 +2048,7 @@ declare const Pagination: {
|
|
|
1598
2048
|
__isFragment?: never;
|
|
1599
2049
|
__isTeleport?: never;
|
|
1600
2050
|
__isSuspense?: never;
|
|
1601
|
-
} &
|
|
2051
|
+
} & vue379.ComponentOptionsBase<Readonly<PaginationStatusProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, vue379.ComponentProvideOptions> & vue379.VNodeProps & vue379.AllowedComponentProps & vue379.ComponentCustomProps & (new () => {
|
|
1602
2052
|
$slots: {
|
|
1603
2053
|
default: (props: PaginationStatusSlotProps) => any;
|
|
1604
2054
|
};
|
|
@@ -1623,17 +2073,17 @@ interface PopoverRootSlotProps {
|
|
|
1623
2073
|
/** Toggle the popover open/closed state */
|
|
1624
2074
|
toggle: () => void;
|
|
1625
2075
|
}
|
|
1626
|
-
declare const usePopoverContext: () => PopoverContext, providePopoverContext: (context: PopoverContext, app?:
|
|
2076
|
+
declare const usePopoverContext: () => PopoverContext, providePopoverContext: (context: PopoverContext, app?: vue379.App) => PopoverContext;
|
|
1627
2077
|
declare const _default$8: typeof __VLS_export$8;
|
|
1628
|
-
declare const __VLS_export$8: __VLS_WithSlots$2<
|
|
2078
|
+
declare const __VLS_export$8: __VLS_WithSlots$2<vue379.DefineComponent<PopoverRootProps & {
|
|
1629
2079
|
modelValue?: boolean;
|
|
1630
|
-
}, {}, {}, {}, {},
|
|
2080
|
+
}, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {
|
|
1631
2081
|
"update:modelValue": (value: boolean) => any;
|
|
1632
|
-
}, string,
|
|
2082
|
+
}, string, vue379.PublicProps, Readonly<PopoverRootProps & {
|
|
1633
2083
|
modelValue?: boolean;
|
|
1634
2084
|
}> & Readonly<{
|
|
1635
2085
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1636
|
-
}>, {}, {}, {}, {}, string,
|
|
2086
|
+
}>, {}, {}, {}, {}, string, vue379.ComponentProvideOptions, false, {}, any>, {
|
|
1637
2087
|
default: (props: PopoverRootSlotProps) => any;
|
|
1638
2088
|
}>;
|
|
1639
2089
|
type __VLS_WithSlots$2<T, S> = T & {
|
|
@@ -1642,12 +2092,12 @@ type __VLS_WithSlots$2<T, S> = T & {
|
|
|
1642
2092
|
};
|
|
1643
2093
|
};
|
|
1644
2094
|
//#endregion
|
|
1645
|
-
//#region src/components/Popover/
|
|
1646
|
-
interface
|
|
2095
|
+
//#region src/components/Popover/PopoverActivator.vue.d.ts
|
|
2096
|
+
interface PopoverActivatorProps extends AtomProps {
|
|
1647
2097
|
/** Target popover ID (defaults to parent PopoverRoot id) */
|
|
1648
2098
|
target?: string;
|
|
1649
2099
|
}
|
|
1650
|
-
interface
|
|
2100
|
+
interface PopoverActivatorSlotProps {
|
|
1651
2101
|
/** Whether the popover is currently open */
|
|
1652
2102
|
isOpen: boolean;
|
|
1653
2103
|
/** Attributes to bind to the anchor element */
|
|
@@ -1658,8 +2108,8 @@ interface PopoverAnchorSlotProps {
|
|
|
1658
2108
|
};
|
|
1659
2109
|
}
|
|
1660
2110
|
declare const _default$6: typeof __VLS_export$7;
|
|
1661
|
-
declare const __VLS_export$7: __VLS_WithSlots$1<
|
|
1662
|
-
default: (props:
|
|
2111
|
+
declare const __VLS_export$7: __VLS_WithSlots$1<vue379.DefineComponent<PopoverActivatorProps, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, vue379.PublicProps, Readonly<PopoverActivatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue379.ComponentProvideOptions, false, {}, any>, {
|
|
2112
|
+
default: (props: PopoverActivatorSlotProps) => any;
|
|
1663
2113
|
}>;
|
|
1664
2114
|
type __VLS_WithSlots$1<T, S> = T & {
|
|
1665
2115
|
new (): {
|
|
@@ -1689,11 +2139,11 @@ interface PopoverContentSlotProps {
|
|
|
1689
2139
|
};
|
|
1690
2140
|
}
|
|
1691
2141
|
declare const _default$7: typeof __VLS_export$6;
|
|
1692
|
-
declare const __VLS_export$6: __VLS_WithSlots<
|
|
2142
|
+
declare const __VLS_export$6: __VLS_WithSlots<vue379.DefineComponent<PopoverContentProps, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {
|
|
1693
2143
|
beforetoggle: (e: ToggleEvent) => any;
|
|
1694
|
-
}, string,
|
|
2144
|
+
}, string, vue379.PublicProps, Readonly<PopoverContentProps> & Readonly<{
|
|
1695
2145
|
onBeforetoggle?: ((e: ToggleEvent) => any) | undefined;
|
|
1696
|
-
}>, {}, {}, {}, {}, string,
|
|
2146
|
+
}>, {}, {}, {}, {}, string, vue379.ComponentProvideOptions, false, {}, any>, {
|
|
1697
2147
|
default: (props: PopoverContentSlotProps) => any;
|
|
1698
2148
|
}>;
|
|
1699
2149
|
type __VLS_WithSlots<T, S> = T & {
|
|
@@ -1722,9 +2172,9 @@ declare const Popover: {
|
|
|
1722
2172
|
*
|
|
1723
2173
|
* <template>
|
|
1724
2174
|
* <Popover.Root>
|
|
1725
|
-
* <Popover.
|
|
2175
|
+
* <Popover.Activator>
|
|
1726
2176
|
* Click to toggle
|
|
1727
|
-
* </Popover.
|
|
2177
|
+
* </Popover.Activator>
|
|
1728
2178
|
*
|
|
1729
2179
|
* <Popover.Content>
|
|
1730
2180
|
* Popover content goes here.
|
|
@@ -1734,13 +2184,13 @@ declare const Popover: {
|
|
|
1734
2184
|
* ```
|
|
1735
2185
|
*/
|
|
1736
2186
|
Root: {
|
|
1737
|
-
new (...args: any[]):
|
|
2187
|
+
new (...args: any[]): vue379.CreateComponentPublicInstanceWithMixins<Readonly<PopoverRootProps & {
|
|
1738
2188
|
modelValue?: boolean;
|
|
1739
2189
|
}> & Readonly<{
|
|
1740
2190
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1741
|
-
}>, {}, {}, {}, {},
|
|
2191
|
+
}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {
|
|
1742
2192
|
"update:modelValue": (value: boolean) => any;
|
|
1743
|
-
},
|
|
2193
|
+
}, vue379.PublicProps, {}, false, {}, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, {}, any, vue379.ComponentProvideOptions, {
|
|
1744
2194
|
P: {};
|
|
1745
2195
|
B: {};
|
|
1746
2196
|
D: {};
|
|
@@ -1755,21 +2205,21 @@ declare const Popover: {
|
|
|
1755
2205
|
__isFragment?: never;
|
|
1756
2206
|
__isTeleport?: never;
|
|
1757
2207
|
__isSuspense?: never;
|
|
1758
|
-
} &
|
|
2208
|
+
} & vue379.ComponentOptionsBase<Readonly<PopoverRootProps & {
|
|
1759
2209
|
modelValue?: boolean;
|
|
1760
2210
|
}> & Readonly<{
|
|
1761
2211
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1762
|
-
}>, {}, {}, {}, {},
|
|
2212
|
+
}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {
|
|
1763
2213
|
"update:modelValue": (value: boolean) => any;
|
|
1764
|
-
}, string, {}, {}, string, {},
|
|
2214
|
+
}, string, {}, {}, string, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, vue379.ComponentProvideOptions> & vue379.VNodeProps & vue379.AllowedComponentProps & vue379.ComponentCustomProps & (new () => {
|
|
1765
2215
|
$slots: {
|
|
1766
2216
|
default: (props: PopoverRootSlotProps) => any;
|
|
1767
2217
|
};
|
|
1768
2218
|
});
|
|
1769
2219
|
/**
|
|
1770
|
-
*
|
|
2220
|
+
* Activator component that opens the popover.
|
|
1771
2221
|
*
|
|
1772
|
-
* @see https://0.vuetifyjs.com/components/popover#
|
|
2222
|
+
* @see https://0.vuetifyjs.com/components/popover#popoveractivator
|
|
1773
2223
|
*
|
|
1774
2224
|
* @example
|
|
1775
2225
|
* ```vue
|
|
@@ -1778,27 +2228,27 @@ declare const Popover: {
|
|
|
1778
2228
|
* </script>
|
|
1779
2229
|
*
|
|
1780
2230
|
* <template>
|
|
1781
|
-
* <Popover.
|
|
2231
|
+
* <Popover.Activator>
|
|
1782
2232
|
* Click to toggle
|
|
1783
|
-
* </Popover.
|
|
2233
|
+
* </Popover.Activator>
|
|
1784
2234
|
* </template>
|
|
1785
2235
|
* ```
|
|
1786
2236
|
*/
|
|
1787
|
-
|
|
1788
|
-
new (...args: any[]):
|
|
2237
|
+
Activator: {
|
|
2238
|
+
new (...args: any[]): vue379.CreateComponentPublicInstanceWithMixins<Readonly<PopoverActivatorProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, vue379.PublicProps, {}, false, {}, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, {}, any, vue379.ComponentProvideOptions, {
|
|
1789
2239
|
P: {};
|
|
1790
2240
|
B: {};
|
|
1791
2241
|
D: {};
|
|
1792
2242
|
C: {};
|
|
1793
2243
|
M: {};
|
|
1794
2244
|
Defaults: {};
|
|
1795
|
-
}, Readonly<
|
|
2245
|
+
}, Readonly<PopoverActivatorProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
1796
2246
|
__isFragment?: never;
|
|
1797
2247
|
__isTeleport?: never;
|
|
1798
2248
|
__isSuspense?: never;
|
|
1799
|
-
} &
|
|
2249
|
+
} & vue379.ComponentOptionsBase<Readonly<PopoverActivatorProps> & Readonly<{}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, vue379.ComponentProvideOptions> & vue379.VNodeProps & vue379.AllowedComponentProps & vue379.ComponentCustomProps & (new () => {
|
|
1800
2250
|
$slots: {
|
|
1801
|
-
default: (props:
|
|
2251
|
+
default: (props: PopoverActivatorSlotProps) => any;
|
|
1802
2252
|
};
|
|
1803
2253
|
});
|
|
1804
2254
|
/**
|
|
@@ -1820,11 +2270,11 @@ declare const Popover: {
|
|
|
1820
2270
|
* ```
|
|
1821
2271
|
*/
|
|
1822
2272
|
Content: {
|
|
1823
|
-
new (...args: any[]):
|
|
2273
|
+
new (...args: any[]): vue379.CreateComponentPublicInstanceWithMixins<Readonly<PopoverContentProps> & Readonly<{
|
|
1824
2274
|
onBeforetoggle?: ((e: ToggleEvent) => any) | undefined;
|
|
1825
|
-
}>, {}, {}, {}, {},
|
|
2275
|
+
}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {
|
|
1826
2276
|
beforetoggle: (e: ToggleEvent) => any;
|
|
1827
|
-
},
|
|
2277
|
+
}, vue379.PublicProps, {}, false, {}, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, {}, any, vue379.ComponentProvideOptions, {
|
|
1828
2278
|
P: {};
|
|
1829
2279
|
B: {};
|
|
1830
2280
|
D: {};
|
|
@@ -1837,11 +2287,11 @@ declare const Popover: {
|
|
|
1837
2287
|
__isFragment?: never;
|
|
1838
2288
|
__isTeleport?: never;
|
|
1839
2289
|
__isSuspense?: never;
|
|
1840
|
-
} &
|
|
2290
|
+
} & vue379.ComponentOptionsBase<Readonly<PopoverContentProps> & Readonly<{
|
|
1841
2291
|
onBeforetoggle?: ((e: ToggleEvent) => any) | undefined;
|
|
1842
|
-
}>, {}, {}, {}, {},
|
|
2292
|
+
}>, {}, {}, {}, {}, vue379.ComponentOptionsMixin, vue379.ComponentOptionsMixin, {
|
|
1843
2293
|
beforetoggle: (e: ToggleEvent) => any;
|
|
1844
|
-
}, string, {}, {}, string, {},
|
|
2294
|
+
}, string, {}, {}, string, {}, vue379.GlobalComponents, vue379.GlobalDirectives, string, vue379.ComponentProvideOptions> & vue379.VNodeProps & vue379.AllowedComponentProps & vue379.ComponentCustomProps & (new () => {
|
|
1845
2295
|
$slots: {
|
|
1846
2296
|
default: (props: PopoverContentSlotProps) => any;
|
|
1847
2297
|
};
|
|
@@ -1882,7 +2332,7 @@ interface SelectionRootSlotProps {
|
|
|
1882
2332
|
'aria-multiselectable': boolean;
|
|
1883
2333
|
};
|
|
1884
2334
|
}
|
|
1885
|
-
declare const useSelectionRoot: (key: string, defaultValue?: SelectionContext<SelectionTicket<unknown>> | undefined) => SelectionContext<SelectionTicket<unknown>>, provideSelectionRoot: (key: string, context: SelectionContext<SelectionTicket<unknown>>, app?:
|
|
2335
|
+
declare const useSelectionRoot: (key: string, defaultValue?: SelectionContext<SelectionTicket<unknown>> | undefined) => SelectionContext<SelectionTicket<unknown>>, provideSelectionRoot: (key: string, context: SelectionContext<SelectionTicket<unknown>>, app?: vue379.App) => SelectionContext<SelectionTicket<unknown>>;
|
|
1886
2336
|
declare const _default$5: typeof __VLS_export$5;
|
|
1887
2337
|
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<{
|
|
1888
2338
|
props: __VLS_PrettifyLocal$5<(SelectionRootProps & {
|
|
@@ -1890,7 +2340,7 @@ declare const __VLS_export$5: <T = unknown>(__VLS_props: NonNullable<Awaited<typ
|
|
|
1890
2340
|
}) & {
|
|
1891
2341
|
"onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
|
|
1892
2342
|
"onUpdate:model-value"?: ((value: T | T[]) => any) | undefined;
|
|
1893
|
-
}> &
|
|
2343
|
+
}> & vue379.PublicProps & (typeof globalThis extends {
|
|
1894
2344
|
__VLS_PROPS_FALLBACK: infer P;
|
|
1895
2345
|
} ? P : {});
|
|
1896
2346
|
expose: (exposed: {}) => void;
|
|
@@ -1899,7 +2349,7 @@ declare const __VLS_export$5: <T = unknown>(__VLS_props: NonNullable<Awaited<typ
|
|
|
1899
2349
|
default: (props: SelectionRootSlotProps) => any;
|
|
1900
2350
|
};
|
|
1901
2351
|
emit: ((evt: "update:model-value", value: T | T[]) => void) & ((evt: "update:modelValue", value: T | T[] | undefined) => void);
|
|
1902
|
-
}>) =>
|
|
2352
|
+
}>) => vue379.VNode & {
|
|
1903
2353
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
1904
2354
|
};
|
|
1905
2355
|
type __VLS_PrettifyLocal$5<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {};
|
|
@@ -1944,7 +2394,7 @@ interface SelectionItemSlotProps<V = unknown> {
|
|
|
1944
2394
|
}
|
|
1945
2395
|
declare const _default$4: typeof __VLS_export$4;
|
|
1946
2396
|
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>> &
|
|
2397
|
+
props: __VLS_PrettifyLocal$4<SelectionItemProps<V>> & vue379.PublicProps & (typeof globalThis extends {
|
|
1948
2398
|
__VLS_PROPS_FALLBACK: infer P;
|
|
1949
2399
|
} ? P : {});
|
|
1950
2400
|
expose: (exposed: {}) => void;
|
|
@@ -1953,7 +2403,7 @@ declare const __VLS_export$4: <V = unknown>(__VLS_props: NonNullable<Awaited<typ
|
|
|
1953
2403
|
default: (props: SelectionItemSlotProps<V>) => unknown;
|
|
1954
2404
|
};
|
|
1955
2405
|
emit: {};
|
|
1956
|
-
}>) =>
|
|
2406
|
+
}>) => vue379.VNode & {
|
|
1957
2407
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
1958
2408
|
};
|
|
1959
2409
|
type __VLS_PrettifyLocal$4<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {};
|
|
@@ -2005,7 +2455,7 @@ declare const Selection: {
|
|
|
2005
2455
|
modelValue?: (T | T[]) | undefined;
|
|
2006
2456
|
"onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
|
|
2007
2457
|
"onUpdate:model-value"?: ((value: T | T[]) => any) | undefined;
|
|
2008
|
-
} &
|
|
2458
|
+
} & vue379.PublicProps & (typeof globalThis extends {
|
|
2009
2459
|
__VLS_PROPS_FALLBACK: infer P;
|
|
2010
2460
|
} ? P : {});
|
|
2011
2461
|
expose: (exposed: {}) => void;
|
|
@@ -2014,7 +2464,7 @@ declare const Selection: {
|
|
|
2014
2464
|
default: (props: SelectionRootSlotProps) => any;
|
|
2015
2465
|
};
|
|
2016
2466
|
emit: ((evt: "update:model-value", value: T | T[]) => void) & ((evt: "update:modelValue", value: T | T[] | undefined) => void);
|
|
2017
|
-
}>) =>
|
|
2467
|
+
}>) => vue379.VNode & {
|
|
2018
2468
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2019
2469
|
};
|
|
2020
2470
|
/**
|
|
@@ -2046,9 +2496,9 @@ declare const Selection: {
|
|
|
2046
2496
|
id?: string | undefined;
|
|
2047
2497
|
label?: string | undefined;
|
|
2048
2498
|
value?: V | undefined;
|
|
2049
|
-
disabled?:
|
|
2499
|
+
disabled?: vue379.MaybeRef<boolean> | undefined;
|
|
2050
2500
|
namespace?: string | undefined;
|
|
2051
|
-
} &
|
|
2501
|
+
} & vue379.PublicProps & (typeof globalThis extends {
|
|
2052
2502
|
__VLS_PROPS_FALLBACK: infer P;
|
|
2053
2503
|
} ? P : {});
|
|
2054
2504
|
expose: (exposed: {}) => void;
|
|
@@ -2057,7 +2507,7 @@ declare const Selection: {
|
|
|
2057
2507
|
default: (props: SelectionItemSlotProps<V>) => unknown;
|
|
2058
2508
|
};
|
|
2059
2509
|
emit: {};
|
|
2060
|
-
}>) =>
|
|
2510
|
+
}>) => vue379.VNode & {
|
|
2061
2511
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2062
2512
|
};
|
|
2063
2513
|
};
|
|
@@ -2092,14 +2542,14 @@ interface SingleRootSlotProps {
|
|
|
2092
2542
|
'aria-multiselectable': false;
|
|
2093
2543
|
};
|
|
2094
2544
|
}
|
|
2095
|
-
declare const useSingleRoot: (key: string, defaultValue?: SingleContext<SingleTicket<unknown>> | undefined) => SingleContext<SingleTicket<unknown>>, provideSingleRoot: (key: string, context: SingleContext<SingleTicket<unknown>>, app?:
|
|
2545
|
+
declare const useSingleRoot: (key: string, defaultValue?: SingleContext<SingleTicket<unknown>> | undefined) => SingleContext<SingleTicket<unknown>>, provideSingleRoot: (key: string, context: SingleContext<SingleTicket<unknown>>, app?: vue379.App) => SingleContext<SingleTicket<unknown>>;
|
|
2096
2546
|
declare const _default$3: typeof __VLS_export$3;
|
|
2097
2547
|
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<{
|
|
2098
2548
|
props: __VLS_PrettifyLocal$3<(SingleRootProps & {
|
|
2099
2549
|
modelValue?: T | T[];
|
|
2100
2550
|
}) & {
|
|
2101
2551
|
"onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
|
|
2102
|
-
}> &
|
|
2552
|
+
}> & vue379.PublicProps & (typeof globalThis extends {
|
|
2103
2553
|
__VLS_PROPS_FALLBACK: infer P;
|
|
2104
2554
|
} ? P : {});
|
|
2105
2555
|
expose: (exposed: {}) => void;
|
|
@@ -2108,7 +2558,7 @@ declare const __VLS_export$3: <T = unknown>(__VLS_props: NonNullable<Awaited<typ
|
|
|
2108
2558
|
default: (props: SingleRootSlotProps) => any;
|
|
2109
2559
|
};
|
|
2110
2560
|
emit: (evt: "update:modelValue", value: T | T[] | undefined) => void;
|
|
2111
|
-
}>) =>
|
|
2561
|
+
}>) => vue379.VNode & {
|
|
2112
2562
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2113
2563
|
};
|
|
2114
2564
|
type __VLS_PrettifyLocal$3<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {};
|
|
@@ -2153,7 +2603,7 @@ interface SingleItemSlotProps<V = unknown> {
|
|
|
2153
2603
|
}
|
|
2154
2604
|
declare const _default$2: typeof __VLS_export$2;
|
|
2155
2605
|
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>> &
|
|
2606
|
+
props: __VLS_PrettifyLocal$2<SingleItemProps<V>> & vue379.PublicProps & (typeof globalThis extends {
|
|
2157
2607
|
__VLS_PROPS_FALLBACK: infer P;
|
|
2158
2608
|
} ? P : {});
|
|
2159
2609
|
expose: (exposed: {}) => void;
|
|
@@ -2162,7 +2612,7 @@ declare const __VLS_export$2: <V = unknown>(__VLS_props: NonNullable<Awaited<typ
|
|
|
2162
2612
|
default: (props: SingleItemSlotProps<V>) => unknown;
|
|
2163
2613
|
};
|
|
2164
2614
|
emit: {};
|
|
2165
|
-
}>) =>
|
|
2615
|
+
}>) => vue379.VNode & {
|
|
2166
2616
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2167
2617
|
};
|
|
2168
2618
|
type __VLS_PrettifyLocal$2<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {};
|
|
@@ -2212,7 +2662,7 @@ declare const Single: {
|
|
|
2212
2662
|
mandatory?: boolean | "force" | undefined;
|
|
2213
2663
|
modelValue?: (T | T[]) | undefined;
|
|
2214
2664
|
"onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
|
|
2215
|
-
} &
|
|
2665
|
+
} & vue379.PublicProps & (typeof globalThis extends {
|
|
2216
2666
|
__VLS_PROPS_FALLBACK: infer P;
|
|
2217
2667
|
} ? P : {});
|
|
2218
2668
|
expose: (exposed: {}) => void;
|
|
@@ -2221,7 +2671,7 @@ declare const Single: {
|
|
|
2221
2671
|
default: (props: SingleRootSlotProps) => any;
|
|
2222
2672
|
};
|
|
2223
2673
|
emit: (evt: "update:modelValue", value: T | T[] | undefined) => void;
|
|
2224
|
-
}>) =>
|
|
2674
|
+
}>) => vue379.VNode & {
|
|
2225
2675
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2226
2676
|
};
|
|
2227
2677
|
/**
|
|
@@ -2255,9 +2705,9 @@ declare const Single: {
|
|
|
2255
2705
|
id?: string | undefined;
|
|
2256
2706
|
label?: string | undefined;
|
|
2257
2707
|
value?: V | undefined;
|
|
2258
|
-
disabled?:
|
|
2708
|
+
disabled?: vue379.MaybeRef<boolean> | undefined;
|
|
2259
2709
|
namespace?: string | undefined;
|
|
2260
|
-
} &
|
|
2710
|
+
} & vue379.PublicProps & (typeof globalThis extends {
|
|
2261
2711
|
__VLS_PROPS_FALLBACK: infer P;
|
|
2262
2712
|
} ? P : {});
|
|
2263
2713
|
expose: (exposed: {}) => void;
|
|
@@ -2266,7 +2716,7 @@ declare const Single: {
|
|
|
2266
2716
|
default: (props: SingleItemSlotProps<V>) => unknown;
|
|
2267
2717
|
};
|
|
2268
2718
|
emit: {};
|
|
2269
|
-
}>) =>
|
|
2719
|
+
}>) => vue379.VNode & {
|
|
2270
2720
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2271
2721
|
};
|
|
2272
2722
|
};
|
|
@@ -2311,14 +2761,14 @@ interface StepRootSlotProps {
|
|
|
2311
2761
|
'aria-multiselectable': false;
|
|
2312
2762
|
};
|
|
2313
2763
|
}
|
|
2314
|
-
declare const useStepRoot: (key: string, defaultValue?: StepContext<StepTicket<unknown>> | undefined) => StepContext<StepTicket<unknown>>, provideStepRoot: (key: string, context: StepContext<StepTicket<unknown>>, app?:
|
|
2764
|
+
declare const useStepRoot: (key: string, defaultValue?: StepContext<StepTicket<unknown>> | undefined) => StepContext<StepTicket<unknown>>, provideStepRoot: (key: string, context: StepContext<StepTicket<unknown>>, app?: vue379.App) => StepContext<StepTicket<unknown>>;
|
|
2315
2765
|
declare const _default$1: typeof __VLS_export$1;
|
|
2316
2766
|
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<{
|
|
2317
2767
|
props: __VLS_PrettifyLocal$1<(StepRootProps & {
|
|
2318
2768
|
modelValue?: T | T[];
|
|
2319
2769
|
}) & {
|
|
2320
2770
|
"onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
|
|
2321
|
-
}> &
|
|
2771
|
+
}> & vue379.PublicProps & (typeof globalThis extends {
|
|
2322
2772
|
__VLS_PROPS_FALLBACK: infer P;
|
|
2323
2773
|
} ? P : {});
|
|
2324
2774
|
expose: (exposed: {}) => void;
|
|
@@ -2327,7 +2777,7 @@ declare const __VLS_export$1: <T = unknown>(__VLS_props: NonNullable<Awaited<typ
|
|
|
2327
2777
|
default: (props: StepRootSlotProps) => any;
|
|
2328
2778
|
};
|
|
2329
2779
|
emit: (evt: "update:modelValue", value: T | T[] | undefined) => void;
|
|
2330
|
-
}>) =>
|
|
2780
|
+
}>) => vue379.VNode & {
|
|
2331
2781
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2332
2782
|
};
|
|
2333
2783
|
type __VLS_PrettifyLocal$1<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {};
|
|
@@ -2372,7 +2822,7 @@ interface StepItemSlotProps<V = unknown> {
|
|
|
2372
2822
|
}
|
|
2373
2823
|
declare const _default: typeof __VLS_export;
|
|
2374
2824
|
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>> &
|
|
2825
|
+
props: __VLS_PrettifyLocal<StepItemProps<V>> & vue379.PublicProps & (typeof globalThis extends {
|
|
2376
2826
|
__VLS_PROPS_FALLBACK: infer P;
|
|
2377
2827
|
} ? P : {});
|
|
2378
2828
|
expose: (exposed: {}) => void;
|
|
@@ -2381,7 +2831,7 @@ declare const __VLS_export: <V = unknown>(__VLS_props: NonNullable<Awaited<typeo
|
|
|
2381
2831
|
default: (props: StepItemSlotProps<V>) => unknown;
|
|
2382
2832
|
};
|
|
2383
2833
|
emit: {};
|
|
2384
|
-
}>) =>
|
|
2834
|
+
}>) => vue379.VNode & {
|
|
2385
2835
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2386
2836
|
};
|
|
2387
2837
|
type __VLS_PrettifyLocal<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {};
|
|
@@ -2429,7 +2879,7 @@ declare const Step: {
|
|
|
2429
2879
|
mandatory?: boolean | "force" | undefined;
|
|
2430
2880
|
modelValue?: (T | T[]) | undefined;
|
|
2431
2881
|
"onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
|
|
2432
|
-
} &
|
|
2882
|
+
} & vue379.PublicProps & (typeof globalThis extends {
|
|
2433
2883
|
__VLS_PROPS_FALLBACK: infer P;
|
|
2434
2884
|
} ? P : {});
|
|
2435
2885
|
expose: (exposed: {}) => void;
|
|
@@ -2438,7 +2888,7 @@ declare const Step: {
|
|
|
2438
2888
|
default: (props: StepRootSlotProps) => any;
|
|
2439
2889
|
};
|
|
2440
2890
|
emit: (evt: "update:modelValue", value: T | T[] | undefined) => void;
|
|
2441
|
-
}>) =>
|
|
2891
|
+
}>) => vue379.VNode & {
|
|
2442
2892
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2443
2893
|
};
|
|
2444
2894
|
/**
|
|
@@ -2470,9 +2920,9 @@ declare const Step: {
|
|
|
2470
2920
|
id?: string | undefined;
|
|
2471
2921
|
label?: string | undefined;
|
|
2472
2922
|
value?: V | undefined;
|
|
2473
|
-
disabled?:
|
|
2923
|
+
disabled?: vue379.MaybeRef<boolean> | undefined;
|
|
2474
2924
|
namespace?: string | undefined;
|
|
2475
|
-
} &
|
|
2925
|
+
} & vue379.PublicProps & (typeof globalThis extends {
|
|
2476
2926
|
__VLS_PROPS_FALLBACK: infer P;
|
|
2477
2927
|
} ? P : {});
|
|
2478
2928
|
expose: (exposed: {}) => void;
|
|
@@ -2481,9 +2931,9 @@ declare const Step: {
|
|
|
2481
2931
|
default: (props: StepItemSlotProps<V>) => unknown;
|
|
2482
2932
|
};
|
|
2483
2933
|
emit: {};
|
|
2484
|
-
}>) =>
|
|
2934
|
+
}>) => vue379.VNode & {
|
|
2485
2935
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2486
2936
|
};
|
|
2487
2937
|
};
|
|
2488
2938
|
//#endregion
|
|
2489
|
-
export { PaginationEllipsisSlotProps as $, _default$24 as $t, PopoverContentProps as A, ExpansionPanelContentSlotProps as At, providePopoverContext as B, ExpansionPanelItemSlotProps as Bt, SelectionRootProps as C, GroupRootProps as Ct, useSelectionRoot as D, useGroupRoot as Dt, provideSelectionRoot as E, provideGroupRoot as Et, _default$6 as F, ExpansionPanelHeaderProps as Ft, _default$16 as G, ExpansionPanelRootProps as Gt, Pagination as H, provideExpansionPanelItem as Ht, PopoverContext as I, ExpansionPanelHeaderSlotProps as It, _default$12 as J, provideExpansionPanelSelection as Jt, PaginationLastProps as K, ExpansionPanelRootSlotProps as Kt, PopoverRootProps as L, _default$21 as Lt, _default$7 as M, ExpansionPanelActivatorProps as Mt,
|
|
2939
|
+
export { PaginationEllipsisSlotProps as $, _default$24 as $t, PopoverContentProps as A, _default$32 as An, ExpansionPanelContentSlotProps as At, providePopoverContext as B, ExpansionPanelItemSlotProps as Bt, SelectionRootProps as C, AvatarImageEmits as Cn, GroupRootProps as Ct, useSelectionRoot as D, AvatarContext as Dn, useGroupRoot as Dt, provideSelectionRoot as E, _default$31 as En, provideGroupRoot as Et, _default$6 as F, AtomSlots as Fn, ExpansionPanelHeaderProps as Ft, _default$16 as G, ExpansionPanelRootProps as Gt, Pagination as H, provideExpansionPanelItem as Ht, PopoverContext as I, _default$33 as In, ExpansionPanelHeaderSlotProps as It, _default$12 as J, provideExpansionPanelSelection as Jt, PaginationLastProps as K, ExpansionPanelRootSlotProps as Kt, PopoverRootProps as L, _default$21 as Lt, _default$7 as M, useAvatarRoot as Mn, ExpansionPanelActivatorProps as Mt, PopoverActivatorProps as N, AtomExpose as Nn, ExpansionPanelActivatorSlotProps as Nt, Popover as O, AvatarRootProps as On, ExpansionPanel as Ot, PopoverActivatorSlotProps as P, AtomProps as Pn, _default$19 as Pt, PaginationEllipsisProps as Q, DialogCloseSlotProps as Qt, PopoverRootSlotProps as R, ExpansionPanelItemContext as Rt, _default$4 as S, _default$30 as Sn, _default$17 as St, _default$5 as T, AvatarImageSlotProps as Tn, _default$18 as Tt, PaginationStatusProps as U, useExpansionPanelItem as Ut, usePopoverContext as V, _default$22 as Vt, PaginationStatusSlotProps as W, ExpansionPanelOptionsContext as Wt, PaginationNextSlotProps as X, Dialog as Xt, PaginationNextProps as Y, useExpansionPanelRoot as Yt, _default$13 as Z, DialogCloseProps as Zt, provideSingleRoot as _, provideDialogContext as _n, usePaginationItems as _t, StepRootProps as a, _default$28 as an, PaginationFirstSlotProps as at, SelectionItemProps as b, AvatarFallbackProps as bn, GroupItemProps as bt, provideStepRoot as c, DialogContentSlotProps as cn, PaginationItemSlotProps as ct, SingleItemProps as d, DialogActivatorSlotProps as dn, PaginationRootSlotProps as dt, DialogDescriptionProps as en, _default$9 as et, SingleItemSlotProps as f, _default$29 as fn, _default$15 as ft, _default$3 as g, _default$27 as gn, usePaginationControls as gt, SingleRootSlotProps as h, DialogRootSlotProps as hn, providePaginationRoot as ht, _default as i, DialogTitleSlotProps as in, PaginationFirstProps as it, PopoverContentSlotProps as j, provideAvatarContext as jn, _default$20 as jt, PopoverContentEmits as k, AvatarTicket as kn, ExpansionPanelContentProps as kt, useStepRoot as l, _default$25 as ln, _default$11 as lt, SingleRootProps as m, DialogRootProps as mn, providePaginationItems as mt, StepItemProps as n, _default$26 as nn, PaginationPrevSlotProps as nt, StepRootSlotProps as o, DialogContentEmits as on, _default$10 as ot, _default$2 as p, DialogContext as pn, providePaginationControls as pt, PaginationLastSlotProps as q, _default$23 as qt, StepItemSlotProps as r, DialogTitleProps as rn, _default$14 as rt, _default$1 as s, DialogContentProps as sn, PaginationItemProps as st, Step as t, DialogDescriptionSlotProps as tn, PaginationPrevProps as tt, Single as u, DialogActivatorProps as un, PaginationRootProps as ut, useSingleRoot as v, useDialogContext as vn, usePaginationRoot as vt, SelectionRootSlotProps as w, AvatarImageProps as wn, GroupRootSlotProps as wt, SelectionItemSlotProps as x, AvatarFallbackSlotProps as xn, GroupItemSlotProps as xt, Selection as y, Avatar as yn, Group as yt, _default$8 as z, ExpansionPanelItemProps as zt };
|