@vuetify/v0 0.0.9 → 0.0.11
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/dist/browser/index.js +1497 -466
- package/dist/components/index.d.mts +4 -0
- package/dist/components/index.mjs +7 -0
- package/dist/components-DFGu8N2g.mjs +947 -0
- package/dist/composables/index.d.mts +4 -0
- package/dist/composables/{index.js → index.mjs} +3 -3
- package/dist/{composables-DTW0WfTC.js → composables-TCjvMHyU.mjs} +590 -162
- package/dist/constants/{index.d.ts → index.d.mts} +1 -1
- package/dist/constants/{index.js → index.mjs} +3 -3
- package/dist/{globals-Cfd1Dr_o.js → globals-y0mJ6Eg7.mjs} +2 -2
- package/dist/{index-DWx3x9vE.d.ts → index-CQjOW_w5.d.mts} +101 -846
- package/dist/{index-DIX3zaZG.d.ts → index-CSdGoUCI.d.mts} +3 -2
- package/dist/index-D-EP6KrS.d.mts +812 -0
- package/dist/index-DbBHGczA.d.mts +815 -0
- package/dist/index.d.mts +7 -0
- package/dist/index.mjs +8 -0
- package/dist/types/{index.d.ts → index.d.mts} +1 -1
- package/dist/utilities/index.d.mts +3 -0
- package/dist/utilities/index.mjs +3 -0
- package/dist/{utilities-rsKHgU2m.js → utilities-C26nB74O.mjs} +5 -1
- package/package.json +15 -15
- package/dist/components/index.d.ts +0 -4
- package/dist/components/index.js +0 -7
- package/dist/components-BfI4Pf1x.js +0 -350
- package/dist/composables/index.d.ts +0 -3
- package/dist/index-TlH7dtTg.d.ts +0 -241
- package/dist/index.d.ts +0 -6
- package/dist/index.js +0 -8
- package/dist/utilities/index.d.ts +0 -3
- package/dist/utilities/index.js +0 -3
- /package/dist/{constants-De5c3_aB.js → constants-Xfszzyok.mjs} +0 -0
- /package/dist/{htmlElements-lF7PGahL.js → htmlElements-BYo-fMlZ.mjs} +0 -0
- /package/dist/{index-BKc0YiL1.d.ts → index-8AIxAM2d.d.mts} +0 -0
- /package/dist/{index-C_lAPFXS.d.ts → index-DY7-T630.d.mts} +0 -0
- /package/dist/types/{index.js → index.mjs} +0 -0
|
@@ -0,0 +1,815 @@
|
|
|
1
|
+
import { i as ID, t as DOMElement } from "./index-DY7-T630.mjs";
|
|
2
|
+
import { a as SelectionContext, c as SelectionTicket, t as ContextKey } from "./index-D-EP6KrS.mjs";
|
|
3
|
+
import * as vue233 from "vue";
|
|
4
|
+
import { MaybeRef, Ref, ShallowRef, TemplateRef } from "vue";
|
|
5
|
+
|
|
6
|
+
//#region src/components/Atom/Atom.vue.d.ts
|
|
7
|
+
/**
|
|
8
|
+
* Props for the Atom component
|
|
9
|
+
*/
|
|
10
|
+
interface AtomProps {
|
|
11
|
+
/**
|
|
12
|
+
* The HTML element to render as, or null for renderless mode
|
|
13
|
+
* @default 'div'
|
|
14
|
+
*/
|
|
15
|
+
as?: DOMElement | null;
|
|
16
|
+
/**
|
|
17
|
+
* When true, renders slot content directly without a wrapper element
|
|
18
|
+
* @default false
|
|
19
|
+
*/
|
|
20
|
+
renderless?: boolean;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Slot types for the Atom component
|
|
24
|
+
* @template T - The type of props passed to the slot
|
|
25
|
+
*/
|
|
26
|
+
interface AtomSlots<T> {
|
|
27
|
+
/**
|
|
28
|
+
* Default slot that receives all forwarded attributes as props
|
|
29
|
+
*/
|
|
30
|
+
default: (props: T) => any;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Values exposed by the Atom component via defineExpose
|
|
34
|
+
*/
|
|
35
|
+
interface AtomExpose {
|
|
36
|
+
/**
|
|
37
|
+
* Template ref to the rendered HTML element (null in renderless mode)
|
|
38
|
+
*/
|
|
39
|
+
element: TemplateRef<HTMLElement | null>;
|
|
40
|
+
}
|
|
41
|
+
interface AtomPrivateProps extends AtomProps {}
|
|
42
|
+
declare const __VLS_export: <T extends Record<string, any> = {}>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
43
|
+
props: __VLS_PrettifyLocal<AtomPrivateProps> & vue233.PublicProps;
|
|
44
|
+
expose: (exposed: vue233.ShallowUnwrapRef<AtomExpose>) => void;
|
|
45
|
+
attrs: any;
|
|
46
|
+
slots: AtomSlots<T>;
|
|
47
|
+
emit: {};
|
|
48
|
+
}>) => vue233.VNode & {
|
|
49
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
50
|
+
};
|
|
51
|
+
declare const _default: typeof __VLS_export;
|
|
52
|
+
type __VLS_PrettifyLocal<T> = { [K in keyof T as K]: T[K] } & {};
|
|
53
|
+
//#endregion
|
|
54
|
+
//#region src/components/Avatar/AvatarFallback.vue.d.ts
|
|
55
|
+
interface AvatarFallbackProps extends AtomProps {
|
|
56
|
+
namespace?: string;
|
|
57
|
+
}
|
|
58
|
+
//#endregion
|
|
59
|
+
//#region src/components/Avatar/AvatarImage.vue.d.ts
|
|
60
|
+
interface AvatarImageProps extends AtomProps {
|
|
61
|
+
src?: string;
|
|
62
|
+
priority?: number;
|
|
63
|
+
namespace?: string;
|
|
64
|
+
}
|
|
65
|
+
interface AvatarImageEmits {
|
|
66
|
+
load: [e: Event];
|
|
67
|
+
error: [e: Event];
|
|
68
|
+
}
|
|
69
|
+
//#endregion
|
|
70
|
+
//#region src/components/Avatar/AvatarRoot.vue.d.ts
|
|
71
|
+
interface AvatarRootProps extends AtomProps {
|
|
72
|
+
namespace?: string;
|
|
73
|
+
}
|
|
74
|
+
interface AvatarTicket extends SelectionTicket {
|
|
75
|
+
type?: 'image' | 'fallback';
|
|
76
|
+
priority?: number;
|
|
77
|
+
}
|
|
78
|
+
interface AvatarContext extends SelectionContext<AvatarTicket> {}
|
|
79
|
+
//#endregion
|
|
80
|
+
//#region src/components/Avatar/index.d.ts
|
|
81
|
+
declare const Avatar: {
|
|
82
|
+
Fallback: {
|
|
83
|
+
new (...args: any[]): vue233.CreateComponentPublicInstanceWithMixins<Readonly<AvatarFallbackProps> & Readonly<{}>, {}, {}, {}, {}, vue233.ComponentOptionsMixin, vue233.ComponentOptionsMixin, {}, vue233.PublicProps, {}, false, {}, {}, vue233.GlobalComponents, vue233.GlobalDirectives, string, {}, any, vue233.ComponentProvideOptions, {
|
|
84
|
+
P: {};
|
|
85
|
+
B: {};
|
|
86
|
+
D: {};
|
|
87
|
+
C: {};
|
|
88
|
+
M: {};
|
|
89
|
+
Defaults: {};
|
|
90
|
+
}, Readonly<AvatarFallbackProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
91
|
+
__isFragment?: never;
|
|
92
|
+
__isTeleport?: never;
|
|
93
|
+
__isSuspense?: never;
|
|
94
|
+
} & vue233.ComponentOptionsBase<Readonly<AvatarFallbackProps> & Readonly<{}>, {}, {}, {}, {}, vue233.ComponentOptionsMixin, vue233.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue233.GlobalComponents, vue233.GlobalDirectives, string, vue233.ComponentProvideOptions> & vue233.VNodeProps & vue233.AllowedComponentProps & vue233.ComponentCustomProps & (new () => {
|
|
95
|
+
$slots: {
|
|
96
|
+
default?: (props: {}) => any;
|
|
97
|
+
};
|
|
98
|
+
});
|
|
99
|
+
Image: {
|
|
100
|
+
new (...args: any[]): vue233.CreateComponentPublicInstanceWithMixins<Readonly<AvatarImageProps> & Readonly<{
|
|
101
|
+
onLoad?: ((e: Event) => any) | undefined;
|
|
102
|
+
onError?: ((e: Event) => any) | undefined;
|
|
103
|
+
}>, {}, {}, {}, {}, vue233.ComponentOptionsMixin, vue233.ComponentOptionsMixin, {
|
|
104
|
+
load: (e: Event) => any;
|
|
105
|
+
error: (e: Event) => any;
|
|
106
|
+
}, vue233.PublicProps, {}, false, {}, {}, vue233.GlobalComponents, vue233.GlobalDirectives, string, {}, any, vue233.ComponentProvideOptions, {
|
|
107
|
+
P: {};
|
|
108
|
+
B: {};
|
|
109
|
+
D: {};
|
|
110
|
+
C: {};
|
|
111
|
+
M: {};
|
|
112
|
+
Defaults: {};
|
|
113
|
+
}, Readonly<AvatarImageProps> & Readonly<{
|
|
114
|
+
onLoad?: ((e: Event) => any) | undefined;
|
|
115
|
+
onError?: ((e: Event) => any) | undefined;
|
|
116
|
+
}>, {}, {}, {}, {}, {}>;
|
|
117
|
+
__isFragment?: never;
|
|
118
|
+
__isTeleport?: never;
|
|
119
|
+
__isSuspense?: never;
|
|
120
|
+
} & vue233.ComponentOptionsBase<Readonly<AvatarImageProps> & Readonly<{
|
|
121
|
+
onLoad?: ((e: Event) => any) | undefined;
|
|
122
|
+
onError?: ((e: Event) => any) | undefined;
|
|
123
|
+
}>, {}, {}, {}, {}, vue233.ComponentOptionsMixin, vue233.ComponentOptionsMixin, {
|
|
124
|
+
load: (e: Event) => any;
|
|
125
|
+
error: (e: Event) => any;
|
|
126
|
+
}, string, {}, {}, string, {}, vue233.GlobalComponents, vue233.GlobalDirectives, string, vue233.ComponentProvideOptions> & vue233.VNodeProps & vue233.AllowedComponentProps & vue233.ComponentCustomProps & (new () => {
|
|
127
|
+
$slots: {
|
|
128
|
+
default: (props: {
|
|
129
|
+
src: string;
|
|
130
|
+
onError: (e: Event) => void;
|
|
131
|
+
onLoad: (e: Event) => void;
|
|
132
|
+
role: string;
|
|
133
|
+
}) => any;
|
|
134
|
+
};
|
|
135
|
+
});
|
|
136
|
+
Root: {
|
|
137
|
+
new (...args: any[]): vue233.CreateComponentPublicInstanceWithMixins<Readonly<AvatarRootProps> & Readonly<{}>, {}, {}, {}, {}, vue233.ComponentOptionsMixin, vue233.ComponentOptionsMixin, {}, vue233.PublicProps, {}, false, {}, {}, vue233.GlobalComponents, vue233.GlobalDirectives, string, {}, any, vue233.ComponentProvideOptions, {
|
|
138
|
+
P: {};
|
|
139
|
+
B: {};
|
|
140
|
+
D: {};
|
|
141
|
+
C: {};
|
|
142
|
+
M: {};
|
|
143
|
+
Defaults: {};
|
|
144
|
+
}, Readonly<AvatarRootProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
145
|
+
__isFragment?: never;
|
|
146
|
+
__isTeleport?: never;
|
|
147
|
+
__isSuspense?: never;
|
|
148
|
+
} & vue233.ComponentOptionsBase<Readonly<AvatarRootProps> & Readonly<{}>, {}, {}, {}, {}, vue233.ComponentOptionsMixin, vue233.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue233.GlobalComponents, vue233.GlobalDirectives, string, vue233.ComponentProvideOptions> & vue233.VNodeProps & vue233.AllowedComponentProps & vue233.ComponentCustomProps & (new () => {
|
|
149
|
+
$slots: {
|
|
150
|
+
default?: (props: {}) => any;
|
|
151
|
+
};
|
|
152
|
+
});
|
|
153
|
+
};
|
|
154
|
+
//#endregion
|
|
155
|
+
//#region src/components/ExpansionPanel/ExpansionPanelRoot.vue.d.ts
|
|
156
|
+
interface ExpansionPanelRootProps extends AtomProps {
|
|
157
|
+
/** Namespace for dependency injection (default: 'v0:expansion-panel') */
|
|
158
|
+
namespace?: string;
|
|
159
|
+
/** Disables the entire expansion panel instance and all items */
|
|
160
|
+
disabled?: boolean;
|
|
161
|
+
/** Auto-expand non-disabled items when registered */
|
|
162
|
+
enroll?: boolean;
|
|
163
|
+
/**
|
|
164
|
+
* Mandatory expansion behavior:
|
|
165
|
+
* - false (default): All panels can be collapsed
|
|
166
|
+
* - true: Prevents collapsing the last expanded panel
|
|
167
|
+
* - 'force': Automatically expands the first non-disabled panel
|
|
168
|
+
*/
|
|
169
|
+
mandatory?: boolean | 'force';
|
|
170
|
+
/**
|
|
171
|
+
* Enable multi-expansion mode
|
|
172
|
+
* - false (default): Single panel expanded at a time (accordion mode)
|
|
173
|
+
* - true: Multiple panels can be expanded simultaneously
|
|
174
|
+
* Note: Changes v-model type from T to T[]
|
|
175
|
+
*/
|
|
176
|
+
multiple?: boolean;
|
|
177
|
+
}
|
|
178
|
+
interface ExpansionPanelRootSlotProps {
|
|
179
|
+
/** Disables the entire expansion panel instance and all registered items */
|
|
180
|
+
disabled: boolean;
|
|
181
|
+
/** Whether multiple panels can be expanded */
|
|
182
|
+
multiple: boolean;
|
|
183
|
+
/** Select a panel by ID */
|
|
184
|
+
select: (id: ID) => void;
|
|
185
|
+
/** Unselect a panel by ID */
|
|
186
|
+
unselect: (id: ID) => void;
|
|
187
|
+
/** Toggle a panel's expansion state by ID */
|
|
188
|
+
toggle: (id: ID) => void;
|
|
189
|
+
/** ARIA multiselectable state */
|
|
190
|
+
ariaMultiselectable: boolean;
|
|
191
|
+
}
|
|
192
|
+
//#endregion
|
|
193
|
+
//#region src/components/ExpansionPanel/ExpansionPanelItem.vue.d.ts
|
|
194
|
+
interface ExpansionPanelItemProps extends AtomProps {
|
|
195
|
+
/** Unique identifier for the panel item (auto-generated if not provided) */
|
|
196
|
+
id?: string;
|
|
197
|
+
/** Value associated with this panel item for v-model binding */
|
|
198
|
+
value?: any;
|
|
199
|
+
/** Disables this specific panel item */
|
|
200
|
+
disabled?: MaybeRef<boolean>;
|
|
201
|
+
/** Namespace to retrieve the parent ExpansionPanelRoot context (default: 'v0:expansion-panel') */
|
|
202
|
+
namespace?: string;
|
|
203
|
+
/** Namespace for providing context to child components (default: 'v0:expansion-panel-item') */
|
|
204
|
+
itemNamespace?: string;
|
|
205
|
+
}
|
|
206
|
+
/**
|
|
207
|
+
* Context provided to child components (ExpansionPanelActivator and ExpansionPanelContent)
|
|
208
|
+
* via dependency injection using the itemNamespace.
|
|
209
|
+
*/
|
|
210
|
+
interface ExpansionPanelItemContext {
|
|
211
|
+
/** Selection ticket from the parent ExpansionPanel registry */
|
|
212
|
+
ticket: SelectionTicket;
|
|
213
|
+
/** Unique ID for the header/activator element (for aria-controls) */
|
|
214
|
+
headerId: Readonly<Ref<string>>;
|
|
215
|
+
/** Unique ID for the content region (for aria-labelledby) */
|
|
216
|
+
contentId: Readonly<Ref<string>>;
|
|
217
|
+
/** Combined disabled state from item and parent */
|
|
218
|
+
isDisabled: Readonly<Ref<boolean>>;
|
|
219
|
+
}
|
|
220
|
+
//#endregion
|
|
221
|
+
//#region src/components/ExpansionPanel/ExpansionPanelActivator.vue.d.ts
|
|
222
|
+
interface ExpansionPanelActivatorProps extends AtomProps {
|
|
223
|
+
/** Namespace for retrieving the parent ExpansionPanelItem context (default: 'v0:expansion-panel-item') */
|
|
224
|
+
itemNamespace?: string;
|
|
225
|
+
}
|
|
226
|
+
interface ExpansionPanelActivatorSlotProps {
|
|
227
|
+
/** Unique ID for the header/activator element */
|
|
228
|
+
'id': string;
|
|
229
|
+
/** ARIA role for accessibility */
|
|
230
|
+
'role': 'button';
|
|
231
|
+
/** Tab index for keyboard navigation */
|
|
232
|
+
'tabindex': number;
|
|
233
|
+
/** ARIA expanded state */
|
|
234
|
+
'aria-expanded': boolean;
|
|
235
|
+
/** ARIA controls attribute pointing to content region */
|
|
236
|
+
'aria-controls': string;
|
|
237
|
+
/** ARIA disabled state */
|
|
238
|
+
'aria-disabled': boolean;
|
|
239
|
+
/** Whether this panel is currently selected/expanded */
|
|
240
|
+
'isSelected': boolean;
|
|
241
|
+
/** Toggle the panel's expansion state */
|
|
242
|
+
'toggle': () => void;
|
|
243
|
+
/** Click handler to toggle panel */
|
|
244
|
+
'onClick': () => void;
|
|
245
|
+
/** Keyboard handler for Enter and Space keys */
|
|
246
|
+
'onKeydown': (e: KeyboardEvent) => void;
|
|
247
|
+
}
|
|
248
|
+
//#endregion
|
|
249
|
+
//#region src/components/ExpansionPanel/ExpansionPanelContent.vue.d.ts
|
|
250
|
+
interface ExpansionPanelContentProps extends AtomProps {
|
|
251
|
+
/** Namespace for retrieving the parent ExpansionPanelItem context (default: 'v0:expansion-panel-item') */
|
|
252
|
+
itemNamespace?: string;
|
|
253
|
+
}
|
|
254
|
+
interface ExpansionPanelContentSlotProps {
|
|
255
|
+
/** Unique ID for the content region */
|
|
256
|
+
'id': string;
|
|
257
|
+
/** ARIA role for accessibility */
|
|
258
|
+
'role': 'region';
|
|
259
|
+
/** ARIA labelledby attribute pointing to header element */
|
|
260
|
+
'aria-labelledby': string;
|
|
261
|
+
/** Whether this panel is currently selected/expanded */
|
|
262
|
+
'isSelected': boolean;
|
|
263
|
+
}
|
|
264
|
+
//#endregion
|
|
265
|
+
//#region src/components/ExpansionPanel/index.d.ts
|
|
266
|
+
declare const ExpansionPanel: {
|
|
267
|
+
Root: <T = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: {
|
|
268
|
+
attrs: any;
|
|
269
|
+
emit: ((evt: "update:model-value", ...args: T | T[]) => void) & ((evt: "update:modelValue", value: T | T[] | undefined) => void);
|
|
270
|
+
slots: {
|
|
271
|
+
default: (props: ExpansionPanelRootSlotProps) => any;
|
|
272
|
+
};
|
|
273
|
+
}, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
274
|
+
props: {
|
|
275
|
+
[x: `on${Capitalize<string>}`]: ((...args: any) => any) | undefined;
|
|
276
|
+
namespace?: string | undefined;
|
|
277
|
+
disabled?: boolean | undefined;
|
|
278
|
+
enroll?: boolean | undefined;
|
|
279
|
+
mandatory?: boolean | "force" | undefined;
|
|
280
|
+
multiple?: boolean | undefined;
|
|
281
|
+
as?: (DOMElement | null) | undefined;
|
|
282
|
+
renderless?: boolean | undefined;
|
|
283
|
+
modelValue?: (T | T[]) | undefined;
|
|
284
|
+
} & vue233.PublicProps;
|
|
285
|
+
expose: (exposed: {}) => void;
|
|
286
|
+
attrs: any;
|
|
287
|
+
slots: {
|
|
288
|
+
default: (props: ExpansionPanelRootSlotProps) => any;
|
|
289
|
+
};
|
|
290
|
+
emit: ((evt: "update:model-value", ...args: T | T[]) => void) & ((evt: "update:modelValue", value: T | T[] | undefined) => void);
|
|
291
|
+
}>) => vue233.VNode & {
|
|
292
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
293
|
+
};
|
|
294
|
+
Item: {
|
|
295
|
+
new (...args: any[]): vue233.CreateComponentPublicInstanceWithMixins<Readonly<ExpansionPanelItemProps> & Readonly<{}>, {}, {}, {}, {}, vue233.ComponentOptionsMixin, vue233.ComponentOptionsMixin, {}, vue233.PublicProps, {}, false, {}, {}, vue233.GlobalComponents, vue233.GlobalDirectives, string, {}, any, vue233.ComponentProvideOptions, {
|
|
296
|
+
P: {};
|
|
297
|
+
B: {};
|
|
298
|
+
D: {};
|
|
299
|
+
C: {};
|
|
300
|
+
M: {};
|
|
301
|
+
Defaults: {};
|
|
302
|
+
}, Readonly<ExpansionPanelItemProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
303
|
+
__isFragment?: never;
|
|
304
|
+
__isTeleport?: never;
|
|
305
|
+
__isSuspense?: never;
|
|
306
|
+
} & vue233.ComponentOptionsBase<Readonly<ExpansionPanelItemProps> & Readonly<{}>, {}, {}, {}, {}, vue233.ComponentOptionsMixin, vue233.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue233.GlobalComponents, vue233.GlobalDirectives, string, vue233.ComponentProvideOptions> & vue233.VNodeProps & vue233.AllowedComponentProps & vue233.ComponentCustomProps & (new () => {
|
|
307
|
+
$slots: {
|
|
308
|
+
default: () => any;
|
|
309
|
+
};
|
|
310
|
+
});
|
|
311
|
+
Activator: {
|
|
312
|
+
new (...args: any[]): vue233.CreateComponentPublicInstanceWithMixins<Readonly<ExpansionPanelActivatorProps> & Readonly<{}>, {}, {}, {}, {}, vue233.ComponentOptionsMixin, vue233.ComponentOptionsMixin, {}, vue233.PublicProps, {}, false, {}, {}, vue233.GlobalComponents, vue233.GlobalDirectives, string, {}, any, vue233.ComponentProvideOptions, {
|
|
313
|
+
P: {};
|
|
314
|
+
B: {};
|
|
315
|
+
D: {};
|
|
316
|
+
C: {};
|
|
317
|
+
M: {};
|
|
318
|
+
Defaults: {};
|
|
319
|
+
}, Readonly<ExpansionPanelActivatorProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
320
|
+
__isFragment?: never;
|
|
321
|
+
__isTeleport?: never;
|
|
322
|
+
__isSuspense?: never;
|
|
323
|
+
} & vue233.ComponentOptionsBase<Readonly<ExpansionPanelActivatorProps> & Readonly<{}>, {}, {}, {}, {}, vue233.ComponentOptionsMixin, vue233.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue233.GlobalComponents, vue233.GlobalDirectives, string, vue233.ComponentProvideOptions> & vue233.VNodeProps & vue233.AllowedComponentProps & vue233.ComponentCustomProps & (new () => {
|
|
324
|
+
$slots: {
|
|
325
|
+
default: (props: ExpansionPanelActivatorSlotProps) => any;
|
|
326
|
+
};
|
|
327
|
+
});
|
|
328
|
+
Content: {
|
|
329
|
+
new (...args: any[]): vue233.CreateComponentPublicInstanceWithMixins<Readonly<ExpansionPanelContentProps> & Readonly<{}>, {}, {}, {}, {}, vue233.ComponentOptionsMixin, vue233.ComponentOptionsMixin, {}, vue233.PublicProps, {}, false, {}, {}, vue233.GlobalComponents, vue233.GlobalDirectives, string, {}, any, vue233.ComponentProvideOptions, {
|
|
330
|
+
P: {};
|
|
331
|
+
B: {};
|
|
332
|
+
D: {};
|
|
333
|
+
C: {};
|
|
334
|
+
M: {};
|
|
335
|
+
Defaults: {};
|
|
336
|
+
}, Readonly<ExpansionPanelContentProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
337
|
+
__isFragment?: never;
|
|
338
|
+
__isTeleport?: never;
|
|
339
|
+
__isSuspense?: never;
|
|
340
|
+
} & vue233.ComponentOptionsBase<Readonly<ExpansionPanelContentProps> & Readonly<{}>, {}, {}, {}, {}, vue233.ComponentOptionsMixin, vue233.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue233.GlobalComponents, vue233.GlobalDirectives, string, vue233.ComponentProvideOptions> & vue233.VNodeProps & vue233.AllowedComponentProps & vue233.ComponentCustomProps & (new () => {
|
|
341
|
+
$slots: {
|
|
342
|
+
default: (props: ExpansionPanelContentSlotProps) => any;
|
|
343
|
+
};
|
|
344
|
+
});
|
|
345
|
+
};
|
|
346
|
+
//#endregion
|
|
347
|
+
//#region src/components/Group/index.d.ts
|
|
348
|
+
declare const Group: {
|
|
349
|
+
Root: <T = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: {
|
|
350
|
+
attrs: any;
|
|
351
|
+
emit: (evt: "update:modelValue", value: T | T[] | undefined) => void;
|
|
352
|
+
slots: {
|
|
353
|
+
default: (props: {
|
|
354
|
+
disabled: boolean;
|
|
355
|
+
select: (id: ID | ID[]) => void;
|
|
356
|
+
unselect: (id: ID | ID[]) => void;
|
|
357
|
+
toggle: (id: ID | ID[]) => void;
|
|
358
|
+
ariaMultiselectable: boolean;
|
|
359
|
+
}) => any;
|
|
360
|
+
};
|
|
361
|
+
}, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
362
|
+
props: {
|
|
363
|
+
namespace?: string | undefined;
|
|
364
|
+
disabled?: boolean | undefined;
|
|
365
|
+
enroll?: boolean | undefined;
|
|
366
|
+
mandatory?: boolean | "force" | undefined;
|
|
367
|
+
modelValue?: (T | T[]) | undefined;
|
|
368
|
+
"onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
|
|
369
|
+
} & vue233.PublicProps;
|
|
370
|
+
expose: (exposed: {}) => void;
|
|
371
|
+
attrs: any;
|
|
372
|
+
slots: {
|
|
373
|
+
default: (props: {
|
|
374
|
+
disabled: boolean;
|
|
375
|
+
select: (id: ID | ID[]) => void;
|
|
376
|
+
unselect: (id: ID | ID[]) => void;
|
|
377
|
+
toggle: (id: ID | ID[]) => void;
|
|
378
|
+
ariaMultiselectable: boolean;
|
|
379
|
+
}) => any;
|
|
380
|
+
};
|
|
381
|
+
emit: (evt: "update:modelValue", value: T | T[] | undefined) => void;
|
|
382
|
+
}>) => vue233.VNode & {
|
|
383
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
384
|
+
};
|
|
385
|
+
Item: {
|
|
386
|
+
new (...args: any[]): vue233.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
387
|
+
label?: string;
|
|
388
|
+
id?: string;
|
|
389
|
+
disabled?: vue233.MaybeRef<boolean>;
|
|
390
|
+
value?: any;
|
|
391
|
+
namespace?: string;
|
|
392
|
+
}> & Readonly<{}>, {}, {}, {}, {}, vue233.ComponentOptionsMixin, vue233.ComponentOptionsMixin, {}, vue233.PublicProps, {}, false, {}, {}, vue233.GlobalComponents, vue233.GlobalDirectives, string, {}, any, vue233.ComponentProvideOptions, {
|
|
393
|
+
P: {};
|
|
394
|
+
B: {};
|
|
395
|
+
D: {};
|
|
396
|
+
C: {};
|
|
397
|
+
M: {};
|
|
398
|
+
Defaults: {};
|
|
399
|
+
}, Readonly<{
|
|
400
|
+
label?: string;
|
|
401
|
+
id?: string;
|
|
402
|
+
disabled?: vue233.MaybeRef<boolean>;
|
|
403
|
+
value?: any;
|
|
404
|
+
namespace?: string;
|
|
405
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
406
|
+
__isFragment?: never;
|
|
407
|
+
__isTeleport?: never;
|
|
408
|
+
__isSuspense?: never;
|
|
409
|
+
} & vue233.ComponentOptionsBase<Readonly<{
|
|
410
|
+
label?: string;
|
|
411
|
+
id?: string;
|
|
412
|
+
disabled?: vue233.MaybeRef<boolean>;
|
|
413
|
+
value?: any;
|
|
414
|
+
namespace?: string;
|
|
415
|
+
}> & Readonly<{}>, {}, {}, {}, {}, vue233.ComponentOptionsMixin, vue233.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue233.GlobalComponents, vue233.GlobalDirectives, string, vue233.ComponentProvideOptions> & vue233.VNodeProps & vue233.AllowedComponentProps & vue233.ComponentCustomProps & (new () => {
|
|
416
|
+
$slots: {
|
|
417
|
+
default: (props: {
|
|
418
|
+
id: string;
|
|
419
|
+
label?: string;
|
|
420
|
+
value: any;
|
|
421
|
+
isSelected: boolean;
|
|
422
|
+
disabled: boolean;
|
|
423
|
+
ariaSelected: boolean;
|
|
424
|
+
ariaDisabled: boolean;
|
|
425
|
+
select: () => void;
|
|
426
|
+
unselect: () => void;
|
|
427
|
+
toggle: () => void;
|
|
428
|
+
}) => any;
|
|
429
|
+
};
|
|
430
|
+
});
|
|
431
|
+
};
|
|
432
|
+
//#endregion
|
|
433
|
+
//#region src/components/Popover/PopoverRoot.vue.d.ts
|
|
434
|
+
interface PopoverContext {
|
|
435
|
+
isSelected: ShallowRef<boolean>;
|
|
436
|
+
id: string;
|
|
437
|
+
toggle: () => void;
|
|
438
|
+
}
|
|
439
|
+
interface PopoverRootProps extends AtomProps {
|
|
440
|
+
id?: string;
|
|
441
|
+
}
|
|
442
|
+
declare const usePopoverContext: (key?: ContextKey<PopoverContext>) => PopoverContext, providePopoverContext: (context: PopoverContext, app?: vue233.App) => PopoverContext;
|
|
443
|
+
//#endregion
|
|
444
|
+
//#region src/components/Popover/PopoverAnchor.vue.d.ts
|
|
445
|
+
interface PopoverAnchorProps extends AtomProps {
|
|
446
|
+
target?: string;
|
|
447
|
+
}
|
|
448
|
+
//#endregion
|
|
449
|
+
//#region src/components/Popover/PopoverContent.vue.d.ts
|
|
450
|
+
interface PopoverContentProps extends AtomProps {
|
|
451
|
+
id?: string;
|
|
452
|
+
positionArea?: string;
|
|
453
|
+
positionTry?: string;
|
|
454
|
+
}
|
|
455
|
+
interface PopoverContentEmits {
|
|
456
|
+
beforetoggle: [e: ToggleEvent];
|
|
457
|
+
}
|
|
458
|
+
//#endregion
|
|
459
|
+
//#region src/components/Popover/index.d.ts
|
|
460
|
+
declare const Popover: {
|
|
461
|
+
Root: {
|
|
462
|
+
new (...args: any[]): vue233.CreateComponentPublicInstanceWithMixins<Readonly<PopoverRootProps & {
|
|
463
|
+
modelValue?: boolean;
|
|
464
|
+
}> & Readonly<{
|
|
465
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
466
|
+
}>, {}, {}, {}, {}, vue233.ComponentOptionsMixin, vue233.ComponentOptionsMixin, {
|
|
467
|
+
"update:modelValue": (value: boolean) => any;
|
|
468
|
+
}, vue233.PublicProps, {}, false, {}, {}, vue233.GlobalComponents, vue233.GlobalDirectives, string, {}, any, vue233.ComponentProvideOptions, {
|
|
469
|
+
P: {};
|
|
470
|
+
B: {};
|
|
471
|
+
D: {};
|
|
472
|
+
C: {};
|
|
473
|
+
M: {};
|
|
474
|
+
Defaults: {};
|
|
475
|
+
}, Readonly<PopoverRootProps & {
|
|
476
|
+
modelValue?: boolean;
|
|
477
|
+
}> & Readonly<{
|
|
478
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
479
|
+
}>, {}, {}, {}, {}, {}>;
|
|
480
|
+
__isFragment?: never;
|
|
481
|
+
__isTeleport?: never;
|
|
482
|
+
__isSuspense?: never;
|
|
483
|
+
} & vue233.ComponentOptionsBase<Readonly<PopoverRootProps & {
|
|
484
|
+
modelValue?: boolean;
|
|
485
|
+
}> & Readonly<{
|
|
486
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
487
|
+
}>, {}, {}, {}, {}, vue233.ComponentOptionsMixin, vue233.ComponentOptionsMixin, {
|
|
488
|
+
"update:modelValue": (value: boolean) => any;
|
|
489
|
+
}, string, {}, {}, string, {}, vue233.GlobalComponents, vue233.GlobalDirectives, string, vue233.ComponentProvideOptions> & vue233.VNodeProps & vue233.AllowedComponentProps & vue233.ComponentCustomProps & (new () => {
|
|
490
|
+
$slots: {
|
|
491
|
+
default: (props: {
|
|
492
|
+
id: Readonly<vue233.Ref<string, string>>;
|
|
493
|
+
isSelected: vue233.ModelRef<boolean, string, boolean, boolean>;
|
|
494
|
+
toggle: () => void;
|
|
495
|
+
}) => any;
|
|
496
|
+
};
|
|
497
|
+
});
|
|
498
|
+
Anchor: {
|
|
499
|
+
new (...args: any[]): vue233.CreateComponentPublicInstanceWithMixins<Readonly<PopoverAnchorProps> & Readonly<{}>, {}, {}, {}, {}, vue233.ComponentOptionsMixin, vue233.ComponentOptionsMixin, {}, vue233.PublicProps, {}, false, {}, {}, vue233.GlobalComponents, vue233.GlobalDirectives, string, {}, any, vue233.ComponentProvideOptions, {
|
|
500
|
+
P: {};
|
|
501
|
+
B: {};
|
|
502
|
+
D: {};
|
|
503
|
+
C: {};
|
|
504
|
+
M: {};
|
|
505
|
+
Defaults: {};
|
|
506
|
+
}, Readonly<PopoverAnchorProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
507
|
+
__isFragment?: never;
|
|
508
|
+
__isTeleport?: never;
|
|
509
|
+
__isSuspense?: never;
|
|
510
|
+
} & vue233.ComponentOptionsBase<Readonly<PopoverAnchorProps> & Readonly<{}>, {}, {}, {}, {}, vue233.ComponentOptionsMixin, vue233.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue233.GlobalComponents, vue233.GlobalDirectives, string, vue233.ComponentProvideOptions> & vue233.VNodeProps & vue233.AllowedComponentProps & vue233.ComponentCustomProps & (new () => {
|
|
511
|
+
$slots: {
|
|
512
|
+
default?: (props: {}) => any;
|
|
513
|
+
};
|
|
514
|
+
});
|
|
515
|
+
Content: {
|
|
516
|
+
new (...args: any[]): vue233.CreateComponentPublicInstanceWithMixins<Readonly<PopoverContentProps> & Readonly<{
|
|
517
|
+
onBeforetoggle?: ((e: ToggleEvent) => any) | undefined;
|
|
518
|
+
}>, {}, {}, {}, {}, vue233.ComponentOptionsMixin, vue233.ComponentOptionsMixin, {
|
|
519
|
+
beforetoggle: (e: ToggleEvent) => any;
|
|
520
|
+
}, vue233.PublicProps, {}, false, {}, {}, vue233.GlobalComponents, vue233.GlobalDirectives, string, {}, any, vue233.ComponentProvideOptions, {
|
|
521
|
+
P: {};
|
|
522
|
+
B: {};
|
|
523
|
+
D: {};
|
|
524
|
+
C: {};
|
|
525
|
+
M: {};
|
|
526
|
+
Defaults: {};
|
|
527
|
+
}, Readonly<PopoverContentProps> & Readonly<{
|
|
528
|
+
onBeforetoggle?: ((e: ToggleEvent) => any) | undefined;
|
|
529
|
+
}>, {}, {}, {}, {}, {}>;
|
|
530
|
+
__isFragment?: never;
|
|
531
|
+
__isTeleport?: never;
|
|
532
|
+
__isSuspense?: never;
|
|
533
|
+
} & vue233.ComponentOptionsBase<Readonly<PopoverContentProps> & Readonly<{
|
|
534
|
+
onBeforetoggle?: ((e: ToggleEvent) => any) | undefined;
|
|
535
|
+
}>, {}, {}, {}, {}, vue233.ComponentOptionsMixin, vue233.ComponentOptionsMixin, {
|
|
536
|
+
beforetoggle: (e: ToggleEvent) => any;
|
|
537
|
+
}, string, {}, {}, string, {}, vue233.GlobalComponents, vue233.GlobalDirectives, string, vue233.ComponentProvideOptions> & vue233.VNodeProps & vue233.AllowedComponentProps & vue233.ComponentCustomProps & (new () => {
|
|
538
|
+
$slots: {
|
|
539
|
+
default?: (props: {}) => any;
|
|
540
|
+
};
|
|
541
|
+
});
|
|
542
|
+
};
|
|
543
|
+
//#endregion
|
|
544
|
+
//#region src/components/Selection/index.d.ts
|
|
545
|
+
declare const Selection: {
|
|
546
|
+
Root: <T = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: {
|
|
547
|
+
attrs: any;
|
|
548
|
+
emit: (evt: "update:modelValue", value: T | T[] | undefined) => void;
|
|
549
|
+
slots: {
|
|
550
|
+
default: (props: {
|
|
551
|
+
disabled: boolean;
|
|
552
|
+
multiple: boolean;
|
|
553
|
+
select: (id: ID) => void;
|
|
554
|
+
unselect: (id: ID) => void;
|
|
555
|
+
toggle: (id: ID) => void;
|
|
556
|
+
ariaMultiselectable: boolean;
|
|
557
|
+
}) => any;
|
|
558
|
+
};
|
|
559
|
+
}, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
560
|
+
props: {
|
|
561
|
+
namespace?: string | undefined;
|
|
562
|
+
disabled?: boolean | undefined;
|
|
563
|
+
enroll?: boolean | undefined;
|
|
564
|
+
mandatory?: boolean | "force" | undefined;
|
|
565
|
+
multiple?: boolean | undefined;
|
|
566
|
+
modelValue?: (T | T[]) | undefined;
|
|
567
|
+
"onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
|
|
568
|
+
} & vue233.PublicProps;
|
|
569
|
+
expose: (exposed: {}) => void;
|
|
570
|
+
attrs: any;
|
|
571
|
+
slots: {
|
|
572
|
+
default: (props: {
|
|
573
|
+
disabled: boolean;
|
|
574
|
+
multiple: boolean;
|
|
575
|
+
select: (id: ID) => void;
|
|
576
|
+
unselect: (id: ID) => void;
|
|
577
|
+
toggle: (id: ID) => void;
|
|
578
|
+
ariaMultiselectable: boolean;
|
|
579
|
+
}) => any;
|
|
580
|
+
};
|
|
581
|
+
emit: (evt: "update:modelValue", value: T | T[] | undefined) => void;
|
|
582
|
+
}>) => vue233.VNode & {
|
|
583
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
584
|
+
};
|
|
585
|
+
Item: {
|
|
586
|
+
new (...args: any[]): vue233.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
587
|
+
label?: string;
|
|
588
|
+
id?: string;
|
|
589
|
+
disabled?: vue233.MaybeRef<boolean>;
|
|
590
|
+
value?: any;
|
|
591
|
+
namespace?: string;
|
|
592
|
+
}> & Readonly<{}>, {}, {}, {}, {}, vue233.ComponentOptionsMixin, vue233.ComponentOptionsMixin, {}, vue233.PublicProps, {}, false, {}, {}, vue233.GlobalComponents, vue233.GlobalDirectives, string, {}, any, vue233.ComponentProvideOptions, {
|
|
593
|
+
P: {};
|
|
594
|
+
B: {};
|
|
595
|
+
D: {};
|
|
596
|
+
C: {};
|
|
597
|
+
M: {};
|
|
598
|
+
Defaults: {};
|
|
599
|
+
}, Readonly<{
|
|
600
|
+
label?: string;
|
|
601
|
+
id?: string;
|
|
602
|
+
disabled?: vue233.MaybeRef<boolean>;
|
|
603
|
+
value?: any;
|
|
604
|
+
namespace?: string;
|
|
605
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
606
|
+
__isFragment?: never;
|
|
607
|
+
__isTeleport?: never;
|
|
608
|
+
__isSuspense?: never;
|
|
609
|
+
} & vue233.ComponentOptionsBase<Readonly<{
|
|
610
|
+
label?: string;
|
|
611
|
+
id?: string;
|
|
612
|
+
disabled?: vue233.MaybeRef<boolean>;
|
|
613
|
+
value?: any;
|
|
614
|
+
namespace?: string;
|
|
615
|
+
}> & Readonly<{}>, {}, {}, {}, {}, vue233.ComponentOptionsMixin, vue233.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue233.GlobalComponents, vue233.GlobalDirectives, string, vue233.ComponentProvideOptions> & vue233.VNodeProps & vue233.AllowedComponentProps & vue233.ComponentCustomProps & (new () => {
|
|
616
|
+
$slots: {
|
|
617
|
+
default: (props: {
|
|
618
|
+
id: string;
|
|
619
|
+
label?: string;
|
|
620
|
+
value: any;
|
|
621
|
+
isSelected: boolean;
|
|
622
|
+
disabled: boolean;
|
|
623
|
+
ariaSelected: boolean;
|
|
624
|
+
ariaDisabled: boolean;
|
|
625
|
+
select: () => void;
|
|
626
|
+
unselect: () => void;
|
|
627
|
+
toggle: () => void;
|
|
628
|
+
}) => any;
|
|
629
|
+
};
|
|
630
|
+
});
|
|
631
|
+
};
|
|
632
|
+
//#endregion
|
|
633
|
+
//#region src/components/Single/index.d.ts
|
|
634
|
+
declare const Single: {
|
|
635
|
+
Root: <T = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: {
|
|
636
|
+
attrs: any;
|
|
637
|
+
emit: (evt: "update:modelValue", value: T | T[] | undefined) => void;
|
|
638
|
+
slots: {
|
|
639
|
+
default: (props: {
|
|
640
|
+
disabled: boolean;
|
|
641
|
+
select: (id: ID) => void;
|
|
642
|
+
unselect: (id: ID) => void;
|
|
643
|
+
toggle: (id: ID) => void;
|
|
644
|
+
ariaMultiselectable: boolean;
|
|
645
|
+
}) => any;
|
|
646
|
+
};
|
|
647
|
+
}, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
648
|
+
props: {
|
|
649
|
+
namespace?: string | undefined;
|
|
650
|
+
disabled?: boolean | undefined;
|
|
651
|
+
enroll?: boolean | undefined;
|
|
652
|
+
mandatory?: boolean | "force" | undefined;
|
|
653
|
+
modelValue?: (T | T[]) | undefined;
|
|
654
|
+
"onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
|
|
655
|
+
} & vue233.PublicProps;
|
|
656
|
+
expose: (exposed: {}) => void;
|
|
657
|
+
attrs: any;
|
|
658
|
+
slots: {
|
|
659
|
+
default: (props: {
|
|
660
|
+
disabled: boolean;
|
|
661
|
+
select: (id: ID) => void;
|
|
662
|
+
unselect: (id: ID) => void;
|
|
663
|
+
toggle: (id: ID) => void;
|
|
664
|
+
ariaMultiselectable: boolean;
|
|
665
|
+
}) => any;
|
|
666
|
+
};
|
|
667
|
+
emit: (evt: "update:modelValue", value: T | T[] | undefined) => void;
|
|
668
|
+
}>) => vue233.VNode & {
|
|
669
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
670
|
+
};
|
|
671
|
+
Item: {
|
|
672
|
+
new (...args: any[]): vue233.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
673
|
+
label?: string;
|
|
674
|
+
id?: string;
|
|
675
|
+
disabled?: vue233.MaybeRef<boolean>;
|
|
676
|
+
value?: any;
|
|
677
|
+
namespace?: string;
|
|
678
|
+
}> & Readonly<{}>, {}, {}, {}, {}, vue233.ComponentOptionsMixin, vue233.ComponentOptionsMixin, {}, vue233.PublicProps, {}, false, {}, {}, vue233.GlobalComponents, vue233.GlobalDirectives, string, {}, any, vue233.ComponentProvideOptions, {
|
|
679
|
+
P: {};
|
|
680
|
+
B: {};
|
|
681
|
+
D: {};
|
|
682
|
+
C: {};
|
|
683
|
+
M: {};
|
|
684
|
+
Defaults: {};
|
|
685
|
+
}, Readonly<{
|
|
686
|
+
label?: string;
|
|
687
|
+
id?: string;
|
|
688
|
+
disabled?: vue233.MaybeRef<boolean>;
|
|
689
|
+
value?: any;
|
|
690
|
+
namespace?: string;
|
|
691
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
692
|
+
__isFragment?: never;
|
|
693
|
+
__isTeleport?: never;
|
|
694
|
+
__isSuspense?: never;
|
|
695
|
+
} & vue233.ComponentOptionsBase<Readonly<{
|
|
696
|
+
label?: string;
|
|
697
|
+
id?: string;
|
|
698
|
+
disabled?: vue233.MaybeRef<boolean>;
|
|
699
|
+
value?: any;
|
|
700
|
+
namespace?: string;
|
|
701
|
+
}> & Readonly<{}>, {}, {}, {}, {}, vue233.ComponentOptionsMixin, vue233.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue233.GlobalComponents, vue233.GlobalDirectives, string, vue233.ComponentProvideOptions> & vue233.VNodeProps & vue233.AllowedComponentProps & vue233.ComponentCustomProps & (new () => {
|
|
702
|
+
$slots: {
|
|
703
|
+
default: (props: {
|
|
704
|
+
id: string;
|
|
705
|
+
label?: string;
|
|
706
|
+
value: any;
|
|
707
|
+
isSelected: boolean;
|
|
708
|
+
disabled: boolean;
|
|
709
|
+
ariaSelected: boolean;
|
|
710
|
+
ariaDisabled: boolean;
|
|
711
|
+
select: () => void;
|
|
712
|
+
unselect: () => void;
|
|
713
|
+
toggle: () => void;
|
|
714
|
+
}) => any;
|
|
715
|
+
};
|
|
716
|
+
});
|
|
717
|
+
};
|
|
718
|
+
//#endregion
|
|
719
|
+
//#region src/components/Step/index.d.ts
|
|
720
|
+
declare const Step: {
|
|
721
|
+
Root: <T = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: {
|
|
722
|
+
attrs: any;
|
|
723
|
+
emit: (evt: "update:modelValue", value: T | T[] | undefined) => void;
|
|
724
|
+
slots: {
|
|
725
|
+
default: (props: {
|
|
726
|
+
disabled: boolean;
|
|
727
|
+
ariaMultiselectable: boolean;
|
|
728
|
+
first: () => void;
|
|
729
|
+
last: () => void;
|
|
730
|
+
next: () => void;
|
|
731
|
+
prev: () => void;
|
|
732
|
+
step: (count: number) => void;
|
|
733
|
+
select: (id: ID) => void;
|
|
734
|
+
unselect: (id: ID) => void;
|
|
735
|
+
toggle: (id: ID) => void;
|
|
736
|
+
}) => any;
|
|
737
|
+
};
|
|
738
|
+
}, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
739
|
+
props: {
|
|
740
|
+
namespace?: string | undefined;
|
|
741
|
+
disabled?: boolean | undefined;
|
|
742
|
+
enroll?: boolean | undefined;
|
|
743
|
+
mandatory?: boolean | "force" | undefined;
|
|
744
|
+
modelValue?: (T | T[]) | undefined;
|
|
745
|
+
"onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
|
|
746
|
+
} & vue233.PublicProps;
|
|
747
|
+
expose: (exposed: {}) => void;
|
|
748
|
+
attrs: any;
|
|
749
|
+
slots: {
|
|
750
|
+
default: (props: {
|
|
751
|
+
disabled: boolean;
|
|
752
|
+
ariaMultiselectable: boolean;
|
|
753
|
+
first: () => void;
|
|
754
|
+
last: () => void;
|
|
755
|
+
next: () => void;
|
|
756
|
+
prev: () => void;
|
|
757
|
+
step: (count: number) => void;
|
|
758
|
+
select: (id: ID) => void;
|
|
759
|
+
unselect: (id: ID) => void;
|
|
760
|
+
toggle: (id: ID) => void;
|
|
761
|
+
}) => any;
|
|
762
|
+
};
|
|
763
|
+
emit: (evt: "update:modelValue", value: T | T[] | undefined) => void;
|
|
764
|
+
}>) => vue233.VNode & {
|
|
765
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
766
|
+
};
|
|
767
|
+
Item: {
|
|
768
|
+
new (...args: any[]): vue233.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
769
|
+
label?: string;
|
|
770
|
+
id?: string;
|
|
771
|
+
disabled?: vue233.MaybeRef<boolean>;
|
|
772
|
+
value?: any;
|
|
773
|
+
namespace?: string;
|
|
774
|
+
}> & Readonly<{}>, {}, {}, {}, {}, vue233.ComponentOptionsMixin, vue233.ComponentOptionsMixin, {}, vue233.PublicProps, {}, false, {}, {}, vue233.GlobalComponents, vue233.GlobalDirectives, string, {}, any, vue233.ComponentProvideOptions, {
|
|
775
|
+
P: {};
|
|
776
|
+
B: {};
|
|
777
|
+
D: {};
|
|
778
|
+
C: {};
|
|
779
|
+
M: {};
|
|
780
|
+
Defaults: {};
|
|
781
|
+
}, Readonly<{
|
|
782
|
+
label?: string;
|
|
783
|
+
id?: string;
|
|
784
|
+
disabled?: vue233.MaybeRef<boolean>;
|
|
785
|
+
value?: any;
|
|
786
|
+
namespace?: string;
|
|
787
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
788
|
+
__isFragment?: never;
|
|
789
|
+
__isTeleport?: never;
|
|
790
|
+
__isSuspense?: never;
|
|
791
|
+
} & vue233.ComponentOptionsBase<Readonly<{
|
|
792
|
+
label?: string;
|
|
793
|
+
id?: string;
|
|
794
|
+
disabled?: vue233.MaybeRef<boolean>;
|
|
795
|
+
value?: any;
|
|
796
|
+
namespace?: string;
|
|
797
|
+
}> & Readonly<{}>, {}, {}, {}, {}, vue233.ComponentOptionsMixin, vue233.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue233.GlobalComponents, vue233.GlobalDirectives, string, vue233.ComponentProvideOptions> & vue233.VNodeProps & vue233.AllowedComponentProps & vue233.ComponentCustomProps & (new () => {
|
|
798
|
+
$slots: {
|
|
799
|
+
default: (props: {
|
|
800
|
+
id: string;
|
|
801
|
+
label?: string;
|
|
802
|
+
value: any;
|
|
803
|
+
isSelected: boolean;
|
|
804
|
+
disabled: boolean;
|
|
805
|
+
ariaSelected: boolean;
|
|
806
|
+
ariaDisabled: boolean;
|
|
807
|
+
select: () => void;
|
|
808
|
+
unselect: () => void;
|
|
809
|
+
toggle: () => void;
|
|
810
|
+
}) => any;
|
|
811
|
+
};
|
|
812
|
+
});
|
|
813
|
+
};
|
|
814
|
+
//#endregion
|
|
815
|
+
export { AtomSlots as A, AvatarContext as C, AvatarFallbackProps as D, AvatarImageProps as E, AtomExpose as O, Avatar as S, AvatarImageEmits as T, ExpansionPanelActivatorSlotProps as _, PopoverContentEmits as a, ExpansionPanelRootProps as b, PopoverContext as c, usePopoverContext as d, Group as f, ExpansionPanelActivatorProps as g, ExpansionPanelContentSlotProps as h, Popover as i, _default as j, AtomProps as k, PopoverRootProps as l, ExpansionPanelContentProps as m, Single as n, PopoverContentProps as o, ExpansionPanel as p, Selection as r, PopoverAnchorProps as s, Step as t, providePopoverContext as u, ExpansionPanelItemContext as v, AvatarRootProps as w, ExpansionPanelRootSlotProps as x, ExpansionPanelItemProps as y };
|