@vuetify/v0 0.0.22 → 0.0.23

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.
@@ -0,0 +1,898 @@
1
+ {
2
+ "atom/as": {
3
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
4
+ "description": "The HTML element to render as, or null for renderless mode"
5
+ },
6
+ "atom/renderless": {
7
+ "type": "boolean | undefined",
8
+ "description": "When true, renders slot content directly without a wrapper element"
9
+ },
10
+ "avatar-fallback/namespace": {
11
+ "type": "string | undefined",
12
+ "description": "Namespace for retrieving avatar context"
13
+ },
14
+ "avatar-fallback/as": {
15
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
16
+ "description": "The HTML element to render as, or null for renderless mode"
17
+ },
18
+ "avatar-fallback/renderless": {
19
+ "type": "boolean | undefined",
20
+ "description": "When true, renders slot content directly without a wrapper element"
21
+ },
22
+ "avatar-image/src": {
23
+ "type": "string | undefined",
24
+ "description": "Image source URL"
25
+ },
26
+ "avatar-image/priority": {
27
+ "type": "number | undefined",
28
+ "description": "Priority for display order (higher = more preferred)"
29
+ },
30
+ "avatar-image/namespace": {
31
+ "type": "string | undefined",
32
+ "description": "Namespace for retrieving avatar context"
33
+ },
34
+ "avatar-image/as": {
35
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
36
+ "description": "The HTML element to render as, or null for renderless mode"
37
+ },
38
+ "avatar-image/renderless": {
39
+ "type": "boolean | undefined",
40
+ "description": "When true, renders slot content directly without a wrapper element"
41
+ },
42
+ "avatar-root/namespace": {
43
+ "type": "string | undefined",
44
+ "description": "Namespace for dependency injection"
45
+ },
46
+ "avatar-root/as": {
47
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
48
+ "description": "The HTML element to render as, or null for renderless mode"
49
+ },
50
+ "avatar-root/renderless": {
51
+ "type": "boolean | undefined",
52
+ "description": "When true, renders slot content directly without a wrapper element"
53
+ },
54
+ "checkbox-group/namespace": {
55
+ "type": "string | undefined",
56
+ "description": "Namespace for dependency injection"
57
+ },
58
+ "checkbox-group/disabled": {
59
+ "type": "boolean | undefined",
60
+ "description": "Disables the entire checkbox group"
61
+ },
62
+ "checkbox-group/enroll": {
63
+ "type": "boolean | undefined",
64
+ "description": "Auto-select non-disabled items on registration"
65
+ },
66
+ "checkbox-group/mandatory": {
67
+ "type": "boolean | \"force\" | undefined",
68
+ "description": "Controls mandatory checkbox behavior:\n- false (default): No mandatory enforcement\n- true: Prevents deselecting the last selected item\n- `force`: Automatically selects the first non-disabled item on registration"
69
+ },
70
+ "checkbox-group/label": {
71
+ "type": "string | undefined",
72
+ "description": "Accessible name for the group"
73
+ },
74
+ "checkbox-group/ariaLabelledby": {
75
+ "type": "string | undefined",
76
+ "description": "ID of element that labels this group"
77
+ },
78
+ "checkbox-group/ariaDescribedby": {
79
+ "type": "string | undefined",
80
+ "description": "ID of element that describes this group"
81
+ },
82
+ "checkbox-group/as": {
83
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
84
+ "description": "The HTML element to render as, or null for renderless mode"
85
+ },
86
+ "checkbox-group/renderless": {
87
+ "type": "boolean | undefined",
88
+ "description": "When true, renders slot content directly without a wrapper element"
89
+ },
90
+ "checkbox-group/modelValue": {
91
+ "type": "T | T[] | undefined",
92
+ "description": ""
93
+ },
94
+ "checkbox-hidden-input/namespace": {
95
+ "type": "string | undefined",
96
+ "description": "Namespace for context injection from parent Checkbox.Root"
97
+ },
98
+ "checkbox-hidden-input/name": {
99
+ "type": "string | undefined",
100
+ "description": "Form field name (defaults to context value)"
101
+ },
102
+ "checkbox-hidden-input/value": {
103
+ "type": "string | undefined",
104
+ "description": "Submitted value when checked (defaults to context value or 'on')"
105
+ },
106
+ "checkbox-hidden-input/form": {
107
+ "type": "string | undefined",
108
+ "description": "Associate with form by ID (defaults to context value)"
109
+ },
110
+ "checkbox-indicator/namespace": {
111
+ "type": "string | undefined",
112
+ "description": "Namespace for context injection from parent Checkbox.Root"
113
+ },
114
+ "checkbox-indicator/as": {
115
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
116
+ "description": "The HTML element to render as, or null for renderless mode"
117
+ },
118
+ "checkbox-indicator/renderless": {
119
+ "type": "boolean | undefined",
120
+ "description": "When true, renders slot content directly without a wrapper element"
121
+ },
122
+ "checkbox-root/id": {
123
+ "type": "ID | undefined",
124
+ "description": "Unique identifier (auto-generated if not provided)"
125
+ },
126
+ "checkbox-root/label": {
127
+ "type": "string | undefined",
128
+ "description": "Optional display label (passed through to slot)"
129
+ },
130
+ "checkbox-root/value": {
131
+ "type": "V | undefined",
132
+ "description": "Value associated with this checkbox (used in group mode and form submission)"
133
+ },
134
+ "checkbox-root/name": {
135
+ "type": "string | undefined",
136
+ "description": "Form field name - triggers auto hidden input when provided"
137
+ },
138
+ "checkbox-root/form": {
139
+ "type": "string | undefined",
140
+ "description": "Associate with form by ID"
141
+ },
142
+ "checkbox-root/disabled": {
143
+ "type": "MaybeRef<boolean> | undefined",
144
+ "description": "Disables this checkbox"
145
+ },
146
+ "checkbox-root/indeterminate": {
147
+ "type": "MaybeRef<boolean> | undefined",
148
+ "description": "Sets the indeterminate state"
149
+ },
150
+ "checkbox-root/namespace": {
151
+ "type": "string | undefined",
152
+ "description": "Namespace for context provision to children (Indicator, HiddenInput)"
153
+ },
154
+ "checkbox-root/groupNamespace": {
155
+ "type": "string | undefined",
156
+ "description": "Namespace for connecting to parent Checkbox.Group"
157
+ },
158
+ "checkbox-root/ariaLabelledby": {
159
+ "type": "string | undefined",
160
+ "description": "ID of element that labels this checkbox"
161
+ },
162
+ "checkbox-root/ariaDescribedby": {
163
+ "type": "string | undefined",
164
+ "description": "ID of element that describes this checkbox"
165
+ },
166
+ "checkbox-root/ariaInvalid": {
167
+ "type": "boolean | undefined",
168
+ "description": "Whether the checkbox has an invalid value"
169
+ },
170
+ "checkbox-root/as": {
171
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
172
+ "description": "The HTML element to render as, or null for renderless mode"
173
+ },
174
+ "checkbox-root/renderless": {
175
+ "type": "boolean | undefined",
176
+ "description": "When true, renders slot content directly without a wrapper element"
177
+ },
178
+ "checkbox-root/modelValue": {
179
+ "type": "boolean | undefined",
180
+ "description": ""
181
+ },
182
+ "checkbox-select-all/label": {
183
+ "type": "string | undefined",
184
+ "description": "Optional display label (passed through to slot and aria-label)"
185
+ },
186
+ "checkbox-select-all/disabled": {
187
+ "type": "boolean | undefined",
188
+ "description": "Disables this checkbox"
189
+ },
190
+ "checkbox-select-all/namespace": {
191
+ "type": "string | undefined",
192
+ "description": "Namespace for context provision to children (Indicator)"
193
+ },
194
+ "checkbox-select-all/groupNamespace": {
195
+ "type": "string | undefined",
196
+ "description": "Namespace for connecting to parent Checkbox.Group"
197
+ },
198
+ "checkbox-select-all/ariaLabelledby": {
199
+ "type": "string | undefined",
200
+ "description": "ID of element that labels this checkbox"
201
+ },
202
+ "checkbox-select-all/ariaDescribedby": {
203
+ "type": "string | undefined",
204
+ "description": "ID of element that describes this checkbox"
205
+ },
206
+ "checkbox-select-all/as": {
207
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
208
+ "description": "The HTML element to render as, or null for renderless mode"
209
+ },
210
+ "checkbox-select-all/renderless": {
211
+ "type": "boolean | undefined",
212
+ "description": "When true, renders slot content directly without a wrapper element"
213
+ },
214
+ "dialog-activator/namespace": {
215
+ "type": "string | undefined",
216
+ "description": "Namespace for dependency injection"
217
+ },
218
+ "dialog-activator/as": {
219
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
220
+ "description": "The HTML element to render as, or null for renderless mode"
221
+ },
222
+ "dialog-activator/renderless": {
223
+ "type": "boolean | undefined",
224
+ "description": "When true, renders slot content directly without a wrapper element"
225
+ },
226
+ "dialog-close/namespace": {
227
+ "type": "string | undefined",
228
+ "description": "Namespace for dependency injection"
229
+ },
230
+ "dialog-close/as": {
231
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
232
+ "description": "The HTML element to render as, or null for renderless mode"
233
+ },
234
+ "dialog-close/renderless": {
235
+ "type": "boolean | undefined",
236
+ "description": "When true, renders slot content directly without a wrapper element"
237
+ },
238
+ "dialog-content/namespace": {
239
+ "type": "string | undefined",
240
+ "description": "Namespace for dependency injection"
241
+ },
242
+ "dialog-content/closeOnClickOutside": {
243
+ "type": "boolean | undefined",
244
+ "description": "Close dialog when clicking outside content"
245
+ },
246
+ "dialog-content/as": {
247
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
248
+ "description": "The HTML element to render as, or null for renderless mode"
249
+ },
250
+ "dialog-content/renderless": {
251
+ "type": "boolean | undefined",
252
+ "description": "When true, renders slot content directly without a wrapper element"
253
+ },
254
+ "dialog-description/namespace": {
255
+ "type": "string | undefined",
256
+ "description": "Namespace for dependency injection"
257
+ },
258
+ "dialog-description/as": {
259
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
260
+ "description": "The HTML element to render as, or null for renderless mode"
261
+ },
262
+ "dialog-description/renderless": {
263
+ "type": "boolean | undefined",
264
+ "description": "When true, renders slot content directly without a wrapper element"
265
+ },
266
+ "dialog-root/namespace": {
267
+ "type": "string | undefined",
268
+ "description": "Namespace for dependency injection"
269
+ },
270
+ "dialog-root/id": {
271
+ "type": "string | undefined",
272
+ "description": "Unique identifier for the dialog (auto-generated if not provided)"
273
+ },
274
+ "dialog-root/as": {
275
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
276
+ "description": "The HTML element to render as, or null for renderless mode"
277
+ },
278
+ "dialog-root/renderless": {
279
+ "type": "boolean | undefined",
280
+ "description": "When true, renders slot content directly without a wrapper element"
281
+ },
282
+ "dialog-root/modelValue": {
283
+ "type": "boolean | undefined",
284
+ "description": ""
285
+ },
286
+ "dialog-title/namespace": {
287
+ "type": "string | undefined",
288
+ "description": "Namespace for dependency injection"
289
+ },
290
+ "dialog-title/as": {
291
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
292
+ "description": "The HTML element to render as, or null for renderless mode"
293
+ },
294
+ "dialog-title/renderless": {
295
+ "type": "boolean | undefined",
296
+ "description": "When true, renders slot content directly without a wrapper element"
297
+ },
298
+ "expansion-panel-activator/namespace": {
299
+ "type": "string | undefined",
300
+ "description": ""
301
+ },
302
+ "expansion-panel-activator/as": {
303
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
304
+ "description": "The HTML element to render as, or null for renderless mode"
305
+ },
306
+ "expansion-panel-activator/renderless": {
307
+ "type": "boolean | undefined",
308
+ "description": "When true, renders slot content directly without a wrapper element"
309
+ },
310
+ "expansion-panel-content/namespace": {
311
+ "type": "string | undefined",
312
+ "description": ""
313
+ },
314
+ "expansion-panel-content/as": {
315
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
316
+ "description": "The HTML element to render as, or null for renderless mode"
317
+ },
318
+ "expansion-panel-content/renderless": {
319
+ "type": "boolean | undefined",
320
+ "description": "When true, renders slot content directly without a wrapper element"
321
+ },
322
+ "expansion-panel-header/namespace": {
323
+ "type": "string | undefined",
324
+ "description": "Namespace for retrieving the parent ExpansionPanelItem context (default: 'v0:expansion-panel')"
325
+ },
326
+ "expansion-panel-header/as": {
327
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
328
+ "description": "The HTML element to render as, or null for renderless mode"
329
+ },
330
+ "expansion-panel-header/renderless": {
331
+ "type": "boolean | undefined",
332
+ "description": "When true, renders slot content directly without a wrapper element"
333
+ },
334
+ "expansion-panel-item/id": {
335
+ "type": "string | undefined",
336
+ "description": "Unique identifier for the panel item (auto-generated if not provided)"
337
+ },
338
+ "expansion-panel-item/value": {
339
+ "type": "V | undefined",
340
+ "description": "Value associated with this panel item for v-model binding"
341
+ },
342
+ "expansion-panel-item/disabled": {
343
+ "type": "MaybeRef<boolean> | undefined",
344
+ "description": "Disables this specific panel item"
345
+ },
346
+ "expansion-panel-item/namespace": {
347
+ "type": "string | undefined",
348
+ "description": "Namespace to retrieve the parent ExpansionPanelRoot context (default: 'v0:expansion-panel')"
349
+ },
350
+ "expansion-panel-item/as": {
351
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
352
+ "description": "The HTML element to render as, or null for renderless mode"
353
+ },
354
+ "expansion-panel-item/renderless": {
355
+ "type": "boolean | undefined",
356
+ "description": "When true, renders slot content directly without a wrapper element"
357
+ },
358
+ "expansion-panel-root/namespace": {
359
+ "type": "string | undefined",
360
+ "description": "Namespace for dependency injection (default: 'v0:expansion-panel')"
361
+ },
362
+ "expansion-panel-root/disabled": {
363
+ "type": "boolean | undefined",
364
+ "description": "Disables the entire expansion panel instance and all items"
365
+ },
366
+ "expansion-panel-root/enroll": {
367
+ "type": "boolean | undefined",
368
+ "description": "Auto-expand non-disabled items when registered"
369
+ },
370
+ "expansion-panel-root/mandatory": {
371
+ "type": "boolean | \"force\" | undefined",
372
+ "description": "Mandatory expansion behavior:\n- false (default): All panels can be collapsed\n- true: Prevents collapsing the last expanded panel\n- 'force': Automatically expands the first non-disabled panel"
373
+ },
374
+ "expansion-panel-root/multiple": {
375
+ "type": "boolean | undefined",
376
+ "description": "Enable multi-expansion mode\n- false (default): Single panel expanded at a time (accordion mode)\n- true: Multiple panels can be expanded simultaneously\nNote: Changes v-model type from T to T[]"
377
+ },
378
+ "expansion-panel-root/as": {
379
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
380
+ "description": "The HTML element to render as, or null for renderless mode"
381
+ },
382
+ "expansion-panel-root/renderless": {
383
+ "type": "boolean | undefined",
384
+ "description": "When true, renders slot content directly without a wrapper element"
385
+ },
386
+ "expansion-panel-root/modelValue": {
387
+ "type": "T | T[] | undefined",
388
+ "description": ""
389
+ },
390
+ "group-item/id": {
391
+ "type": "string | undefined",
392
+ "description": "Unique identifier (auto-generated if not provided)"
393
+ },
394
+ "group-item/label": {
395
+ "type": "string | undefined",
396
+ "description": "Optional display label (passed through to slot, not used in registration)"
397
+ },
398
+ "group-item/value": {
399
+ "type": "V | undefined",
400
+ "description": "Value associated with this item"
401
+ },
402
+ "group-item/disabled": {
403
+ "type": "MaybeRef<boolean> | undefined",
404
+ "description": "Disables this specific item"
405
+ },
406
+ "group-item/indeterminate": {
407
+ "type": "MaybeRef<boolean> | undefined",
408
+ "description": "Sets the indeterminate state (for checkboxes)"
409
+ },
410
+ "group-item/namespace": {
411
+ "type": "string | undefined",
412
+ "description": "Namespace for dependency injection"
413
+ },
414
+ "group-root/namespace": {
415
+ "type": "string | undefined",
416
+ "description": "Namespace for dependency injection (must match GroupItem namespace)"
417
+ },
418
+ "group-root/disabled": {
419
+ "type": "boolean | undefined",
420
+ "description": "Disables the entire group instance"
421
+ },
422
+ "group-root/enroll": {
423
+ "type": "boolean | undefined",
424
+ "description": "Auto-select non-disabled items on registration"
425
+ },
426
+ "group-root/mandatory": {
427
+ "type": "boolean | \"force\" | undefined",
428
+ "description": "Controls mandatory group behavior:\n- false (default): No mandatory group enforcement\n- true: Prevents deselecting the last selected item\n- `force`: Automatically selects the first non-disabled item on registration"
429
+ },
430
+ "group-root/modelValue": {
431
+ "type": "T | T[] | undefined",
432
+ "description": ""
433
+ },
434
+ "pagination-ellipsis/namespace": {
435
+ "type": "string | undefined",
436
+ "description": "Namespace for dependency injection"
437
+ },
438
+ "pagination-ellipsis/ellipsis": {
439
+ "type": "string | undefined",
440
+ "description": "Ellipsis character to display (overrides context)"
441
+ },
442
+ "pagination-ellipsis/id": {
443
+ "type": "string | undefined",
444
+ "description": "Unique identifier for registration"
445
+ },
446
+ "pagination-ellipsis/as": {
447
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
448
+ "description": "The HTML element to render as, or null for renderless mode"
449
+ },
450
+ "pagination-ellipsis/renderless": {
451
+ "type": "boolean | undefined",
452
+ "description": "When true, renders slot content directly without a wrapper element"
453
+ },
454
+ "pagination-first/namespace": {
455
+ "type": "string | undefined",
456
+ "description": "Namespace for dependency injection"
457
+ },
458
+ "pagination-first/disabled": {
459
+ "type": "boolean | undefined",
460
+ "description": "Override disabled state"
461
+ },
462
+ "pagination-first/id": {
463
+ "type": "string | undefined",
464
+ "description": "Unique identifier for registration"
465
+ },
466
+ "pagination-first/as": {
467
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
468
+ "description": "The HTML element to render as, or null for renderless mode"
469
+ },
470
+ "pagination-first/renderless": {
471
+ "type": "boolean | undefined",
472
+ "description": "When true, renders slot content directly without a wrapper element"
473
+ },
474
+ "pagination-item/namespace": {
475
+ "type": "string | undefined",
476
+ "description": "Namespace for dependency injection"
477
+ },
478
+ "pagination-item/value": {
479
+ "type": "number",
480
+ "description": "Page number this item represents"
481
+ },
482
+ "pagination-item/disabled": {
483
+ "type": "boolean | undefined",
484
+ "description": "Override disabled state"
485
+ },
486
+ "pagination-item/id": {
487
+ "type": "string | undefined",
488
+ "description": "Unique identifier for registration"
489
+ },
490
+ "pagination-item/as": {
491
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
492
+ "description": "The HTML element to render as, or null for renderless mode"
493
+ },
494
+ "pagination-item/renderless": {
495
+ "type": "boolean | undefined",
496
+ "description": "When true, renders slot content directly without a wrapper element"
497
+ },
498
+ "pagination-last/namespace": {
499
+ "type": "string | undefined",
500
+ "description": "Namespace for dependency injection"
501
+ },
502
+ "pagination-last/disabled": {
503
+ "type": "boolean | undefined",
504
+ "description": "Override disabled state"
505
+ },
506
+ "pagination-last/id": {
507
+ "type": "string | undefined",
508
+ "description": "Unique identifier for registration"
509
+ },
510
+ "pagination-last/as": {
511
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
512
+ "description": "The HTML element to render as, or null for renderless mode"
513
+ },
514
+ "pagination-last/renderless": {
515
+ "type": "boolean | undefined",
516
+ "description": "When true, renders slot content directly without a wrapper element"
517
+ },
518
+ "pagination-next/namespace": {
519
+ "type": "string | undefined",
520
+ "description": "Namespace for dependency injection"
521
+ },
522
+ "pagination-next/disabled": {
523
+ "type": "boolean | undefined",
524
+ "description": "Override disabled state"
525
+ },
526
+ "pagination-next/id": {
527
+ "type": "string | undefined",
528
+ "description": "Unique identifier for registration"
529
+ },
530
+ "pagination-next/as": {
531
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
532
+ "description": "The HTML element to render as, or null for renderless mode"
533
+ },
534
+ "pagination-next/renderless": {
535
+ "type": "boolean | undefined",
536
+ "description": "When true, renders slot content directly without a wrapper element"
537
+ },
538
+ "pagination-prev/namespace": {
539
+ "type": "string | undefined",
540
+ "description": "Namespace for dependency injection"
541
+ },
542
+ "pagination-prev/disabled": {
543
+ "type": "boolean | undefined",
544
+ "description": "Override disabled state"
545
+ },
546
+ "pagination-prev/id": {
547
+ "type": "string | undefined",
548
+ "description": "Unique identifier for registration"
549
+ },
550
+ "pagination-prev/as": {
551
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
552
+ "description": "The HTML element to render as, or null for renderless mode"
553
+ },
554
+ "pagination-prev/renderless": {
555
+ "type": "boolean | undefined",
556
+ "description": "When true, renders slot content directly without a wrapper element"
557
+ },
558
+ "pagination-root/namespace": {
559
+ "type": "string | undefined",
560
+ "description": "Namespace for dependency injection"
561
+ },
562
+ "pagination-root/size": {
563
+ "type": "number | undefined",
564
+ "description": "Total number of items"
565
+ },
566
+ "pagination-root/totalVisible": {
567
+ "type": "number | undefined",
568
+ "description": "Number of visible page buttons.\nIf undefined, auto-calculates based on container width."
569
+ },
570
+ "pagination-root/itemsPerPage": {
571
+ "type": "number | undefined",
572
+ "description": "Number of items per page"
573
+ },
574
+ "pagination-root/ellipsis": {
575
+ "type": "string | false | undefined",
576
+ "description": "Ellipsis character"
577
+ },
578
+ "pagination-root/as": {
579
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
580
+ "description": "The HTML element to render as, or null for renderless mode"
581
+ },
582
+ "pagination-root/renderless": {
583
+ "type": "boolean | undefined",
584
+ "description": "When true, renders slot content directly without a wrapper element"
585
+ },
586
+ "pagination-root/modelValue": {
587
+ "type": "number | undefined",
588
+ "description": ""
589
+ },
590
+ "pagination-status/namespace": {
591
+ "type": "string | undefined",
592
+ "description": "Namespace for dependency injection"
593
+ },
594
+ "pagination-status/as": {
595
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
596
+ "description": "The HTML element to render as, or null for renderless mode"
597
+ },
598
+ "pagination-status/renderless": {
599
+ "type": "boolean | undefined",
600
+ "description": "When true, renders slot content directly without a wrapper element"
601
+ },
602
+ "popover-activator/target": {
603
+ "type": "string | undefined",
604
+ "description": "Target popover ID (defaults to parent PopoverRoot id)"
605
+ },
606
+ "popover-activator/as": {
607
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
608
+ "description": "The HTML element to render as, or null for renderless mode"
609
+ },
610
+ "popover-activator/renderless": {
611
+ "type": "boolean | undefined",
612
+ "description": "When true, renders slot content directly without a wrapper element"
613
+ },
614
+ "popover-content/id": {
615
+ "type": "string | undefined",
616
+ "description": "Unique identifier (defaults to parent PopoverRoot id)"
617
+ },
618
+ "popover-content/positionArea": {
619
+ "type": "string | undefined",
620
+ "description": "CSS position-area value for anchor positioning"
621
+ },
622
+ "popover-content/positionTry": {
623
+ "type": "string | undefined",
624
+ "description": "CSS position-try value for fallback positioning"
625
+ },
626
+ "popover-content/as": {
627
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
628
+ "description": "The HTML element to render as, or null for renderless mode"
629
+ },
630
+ "popover-content/renderless": {
631
+ "type": "boolean | undefined",
632
+ "description": "When true, renders slot content directly without a wrapper element"
633
+ },
634
+ "popover-root/id": {
635
+ "type": "string | undefined",
636
+ "description": "Unique identifier for the popover (auto-generated if not provided)"
637
+ },
638
+ "popover-root/as": {
639
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
640
+ "description": "The HTML element to render as, or null for renderless mode"
641
+ },
642
+ "popover-root/renderless": {
643
+ "type": "boolean | undefined",
644
+ "description": "When true, renders slot content directly without a wrapper element"
645
+ },
646
+ "popover-root/modelValue": {
647
+ "type": "boolean | undefined",
648
+ "description": ""
649
+ },
650
+ "radio-group/namespace": {
651
+ "type": "string | undefined",
652
+ "description": "Namespace for dependency injection"
653
+ },
654
+ "radio-group/disabled": {
655
+ "type": "boolean | undefined",
656
+ "description": "Disables the entire radio group"
657
+ },
658
+ "radio-group/mandatory": {
659
+ "type": "boolean | \"force\" | undefined",
660
+ "description": "Auto-selects the first non-disabled item on mount.\nRadio groups are inherently mandatory (selection can only be changed, not cleared),\nso `mandatory=\"force\"` is the only meaningful option."
661
+ },
662
+ "radio-group/label": {
663
+ "type": "string | undefined",
664
+ "description": "Accessible name for the group"
665
+ },
666
+ "radio-group/ariaLabelledby": {
667
+ "type": "string | undefined",
668
+ "description": "ID of element that labels this group"
669
+ },
670
+ "radio-group/ariaDescribedby": {
671
+ "type": "string | undefined",
672
+ "description": "ID of element that describes this group"
673
+ },
674
+ "radio-group/ariaRequired": {
675
+ "type": "boolean | undefined",
676
+ "description": "Whether a selection is required before form submission"
677
+ },
678
+ "radio-group/name": {
679
+ "type": "string | undefined",
680
+ "description": "Form field name - enables native form submission for all radios in group"
681
+ },
682
+ "radio-group/as": {
683
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
684
+ "description": "The HTML element to render as, or null for renderless mode"
685
+ },
686
+ "radio-group/renderless": {
687
+ "type": "boolean | undefined",
688
+ "description": "When true, renders slot content directly without a wrapper element"
689
+ },
690
+ "radio-group/modelValue": {
691
+ "type": "T | undefined",
692
+ "description": ""
693
+ },
694
+ "radio-hidden-input/namespace": {
695
+ "type": "string | undefined",
696
+ "description": "Namespace for context injection from parent Radio.Root"
697
+ },
698
+ "radio-hidden-input/name": {
699
+ "type": "string | undefined",
700
+ "description": "Form field name (defaults to context value from Radio.Group)"
701
+ },
702
+ "radio-hidden-input/value": {
703
+ "type": "string | undefined",
704
+ "description": "Submitted value when checked (defaults to context value or 'on').\nUse to override the Radio.Root value for form submission."
705
+ },
706
+ "radio-hidden-input/form": {
707
+ "type": "string | undefined",
708
+ "description": "Associate with form by ID (for inputs outside the form element)"
709
+ },
710
+ "radio-indicator/namespace": {
711
+ "type": "string | undefined",
712
+ "description": "Namespace for context injection from parent Radio.Root"
713
+ },
714
+ "radio-indicator/as": {
715
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
716
+ "description": "The HTML element to render as, or null for renderless mode"
717
+ },
718
+ "radio-indicator/renderless": {
719
+ "type": "boolean | undefined",
720
+ "description": "When true, renders slot content directly without a wrapper element"
721
+ },
722
+ "radio-root/id": {
723
+ "type": "ID | undefined",
724
+ "description": "Unique identifier (auto-generated if not provided)"
725
+ },
726
+ "radio-root/label": {
727
+ "type": "string | undefined",
728
+ "description": "Optional display label (passed through to slot)"
729
+ },
730
+ "radio-root/value": {
731
+ "type": "V | undefined",
732
+ "description": "Value associated with this radio for group selection and form submission"
733
+ },
734
+ "radio-root/name": {
735
+ "type": "string | undefined",
736
+ "description": "Form field name - triggers auto hidden input when provided"
737
+ },
738
+ "radio-root/form": {
739
+ "type": "string | undefined",
740
+ "description": "Associate with a form by ID (for radios outside the form element)"
741
+ },
742
+ "radio-root/disabled": {
743
+ "type": "MaybeRef<boolean> | undefined",
744
+ "description": "Disables this radio (prevents selection and keyboard focus)"
745
+ },
746
+ "radio-root/namespace": {
747
+ "type": "string | undefined",
748
+ "description": "Namespace for context provision to children (Indicator, HiddenInput)"
749
+ },
750
+ "radio-root/groupNamespace": {
751
+ "type": "string | undefined",
752
+ "description": "Namespace for connecting to parent Radio.Group"
753
+ },
754
+ "radio-root/ariaLabelledby": {
755
+ "type": "string | undefined",
756
+ "description": "ID of element that labels this radio"
757
+ },
758
+ "radio-root/ariaDescribedby": {
759
+ "type": "string | undefined",
760
+ "description": "ID of element that describes this radio"
761
+ },
762
+ "radio-root/ariaInvalid": {
763
+ "type": "boolean | undefined",
764
+ "description": "Marks the radio as invalid for form validation"
765
+ },
766
+ "radio-root/as": {
767
+ "type": "string | Component<unknown, any, any, ComputedOptions, MethodOptions, {}, any> | null | undefined",
768
+ "description": "The HTML element to render as, or null for renderless mode"
769
+ },
770
+ "radio-root/renderless": {
771
+ "type": "boolean | undefined",
772
+ "description": "When true, renders slot content directly without a wrapper element"
773
+ },
774
+ "selection-item/id": {
775
+ "type": "string | undefined",
776
+ "description": "Unique identifier (auto-generated if not provided)"
777
+ },
778
+ "selection-item/label": {
779
+ "type": "string | undefined",
780
+ "description": "Optional display label (passed through to slot, not used in registration)"
781
+ },
782
+ "selection-item/value": {
783
+ "type": "V | undefined",
784
+ "description": "Value associated with this item"
785
+ },
786
+ "selection-item/disabled": {
787
+ "type": "MaybeRef<boolean> | undefined",
788
+ "description": "Disables this specific item"
789
+ },
790
+ "selection-item/namespace": {
791
+ "type": "string | undefined",
792
+ "description": "Namespace for dependency injection"
793
+ },
794
+ "selection-root/namespace": {
795
+ "type": "string | undefined",
796
+ "description": "Namespace for dependency injection (must match SelectionItem namespace)"
797
+ },
798
+ "selection-root/disabled": {
799
+ "type": "boolean | undefined",
800
+ "description": "Disables the entire selection instance"
801
+ },
802
+ "selection-root/enroll": {
803
+ "type": "boolean | undefined",
804
+ "description": "Auto-select non-disabled items on registration"
805
+ },
806
+ "selection-root/mandatory": {
807
+ "type": "boolean | \"force\" | undefined",
808
+ "description": "Controls mandatory selection behavior:\n- false (default): No mandatory selection enforcement\n- true: Prevents deselecting the last selected item\n- `force`: Automatically selects the first non-disabled item on registration"
809
+ },
810
+ "selection-root/multiple": {
811
+ "type": "boolean | undefined",
812
+ "description": "Enable multi-selection mode (array v-model)"
813
+ },
814
+ "selection-root/modelValue": {
815
+ "type": "T | T[] | undefined",
816
+ "description": ""
817
+ },
818
+ "single-item/id": {
819
+ "type": "string | undefined",
820
+ "description": "Unique identifier (auto-generated if not provided)"
821
+ },
822
+ "single-item/label": {
823
+ "type": "string | undefined",
824
+ "description": "Optional display label (passed through to slot, not used in registration)"
825
+ },
826
+ "single-item/value": {
827
+ "type": "V | undefined",
828
+ "description": "Value associated with this item"
829
+ },
830
+ "single-item/disabled": {
831
+ "type": "MaybeRef<boolean> | undefined",
832
+ "description": "Disables this specific item"
833
+ },
834
+ "single-item/namespace": {
835
+ "type": "string | undefined",
836
+ "description": "Namespace for dependency injection"
837
+ },
838
+ "single-root/namespace": {
839
+ "type": "string | undefined",
840
+ "description": "Namespace for dependency injection (must match SingleItem namespace)"
841
+ },
842
+ "single-root/disabled": {
843
+ "type": "boolean | undefined",
844
+ "description": "Disables the entire single instance"
845
+ },
846
+ "single-root/enroll": {
847
+ "type": "boolean | undefined",
848
+ "description": "Auto-select non-disabled items on registration"
849
+ },
850
+ "single-root/mandatory": {
851
+ "type": "boolean | \"force\" | undefined",
852
+ "description": "Controls mandatory single behavior:\n- false (default): No mandatory single enforcement\n- true: Prevents deselecting the last selected item\n- `force`: Automatically selects the first non-disabled item on registration"
853
+ },
854
+ "single-root/modelValue": {
855
+ "type": "T | T[] | undefined",
856
+ "description": ""
857
+ },
858
+ "step-item/id": {
859
+ "type": "string | undefined",
860
+ "description": "Unique identifier (auto-generated if not provided)"
861
+ },
862
+ "step-item/label": {
863
+ "type": "string | undefined",
864
+ "description": "Optional display label (passed through to slot, not used in registration)"
865
+ },
866
+ "step-item/value": {
867
+ "type": "V | undefined",
868
+ "description": "Value associated with this item"
869
+ },
870
+ "step-item/disabled": {
871
+ "type": "MaybeRef<boolean> | undefined",
872
+ "description": "Disables this specific item"
873
+ },
874
+ "step-item/namespace": {
875
+ "type": "string | undefined",
876
+ "description": "Namespace for dependency injection"
877
+ },
878
+ "step-root/namespace": {
879
+ "type": "string | undefined",
880
+ "description": "Namespace for dependency injection (must match StepItem namespace)"
881
+ },
882
+ "step-root/disabled": {
883
+ "type": "boolean | undefined",
884
+ "description": "Disables the entire step instance"
885
+ },
886
+ "step-root/enroll": {
887
+ "type": "boolean | undefined",
888
+ "description": "Auto-select non-disabled items on registration"
889
+ },
890
+ "step-root/mandatory": {
891
+ "type": "boolean | \"force\" | undefined",
892
+ "description": "Controls mandatory step behavior:\n- false (default): No mandatory step enforcement\n- true: Prevents deselecting the last selected item\n- `force`: Automatically selects the first non-disabled item on registration"
893
+ },
894
+ "step-root/modelValue": {
895
+ "type": "T | T[] | undefined",
896
+ "description": ""
897
+ }
898
+ }