@vuetify/v0 0.0.24 → 0.1.1
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 +2 -2
- package/dist/browser/index.js +165 -66
- package/dist/components/index.d.mts +4 -4
- package/dist/components/index.mjs +3 -3
- package/dist/{components-D_yAxHwn.mjs → components-BOipMGkD.mjs} +11 -6
- package/dist/composables/index.d.mts +4 -4
- package/dist/composables/index.mjs +3 -3
- package/dist/constants/index.mjs +1 -1
- package/dist/date/index.mjs +1 -1
- package/dist/{globals-BhNI7no7.mjs → globals-qE_M6ZhX.mjs} +1 -1
- package/dist/{index-OghXharF.d.mts → index-Bx6Ke-u_.d.mts} +291 -264
- package/dist/{index-kvJsAOSg.d.mts → index-CoO8LW8o.d.mts} +1 -1
- package/dist/{index-ZW2YLa57.d.mts → index-DlxrzbvZ.d.mts} +15 -14
- package/dist/{index-isYKpbs6.d.mts → index-DmNXO254.d.mts} +239 -73
- package/dist/{index-DknfL2GU.d.mts → index-qSuLpob3.d.mts} +226 -45
- package/dist/index.d.mts +6 -6
- package/dist/index.mjs +4 -4
- package/dist/json/attributes.json +5 -1
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +12 -2
- package/dist/types/index.d.mts +2 -2
- package/dist/{useClickOutside-w-Y2QxHh.mjs → useClickOutside-DcrXfUVx.mjs} +156 -62
- package/dist/utilities/index.d.mts +2 -2
- package/package.json +19 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { h } from "vue";
|
|
2
2
|
|
|
3
3
|
//#region src/types/index.d.ts
|
|
4
4
|
|
|
@@ -70,23 +70,24 @@ type DeepPartial<T> = T extends object ? { [P in keyof T]?: DeepPartial<T[P]> }
|
|
|
70
70
|
*/
|
|
71
71
|
type MaybeArray<T> = T | T[];
|
|
72
72
|
/**
|
|
73
|
-
*
|
|
74
|
-
*
|
|
75
|
-
* @template T The base value type
|
|
73
|
+
* Keyboard activation mode for navigable components
|
|
76
74
|
*
|
|
77
75
|
* @remarks
|
|
78
|
-
*
|
|
79
|
-
*
|
|
76
|
+
* Controls when selection occurs during keyboard navigation:
|
|
77
|
+
* - `automatic` (default): Selection follows focus (arrow keys select).
|
|
78
|
+
* This is the WAI-ARIA standard for radio groups.
|
|
79
|
+
* - `manual`: Arrow keys move focus only; Enter/Space required to select.
|
|
80
|
+
* Use for toolbar contexts or when deliberate selection is preferred.
|
|
80
81
|
*
|
|
81
82
|
* @example
|
|
82
|
-
* ```
|
|
83
|
-
*
|
|
84
|
-
*
|
|
85
|
-
*
|
|
86
|
-
*
|
|
87
|
-
*
|
|
83
|
+
* ```vue
|
|
84
|
+
* <template>
|
|
85
|
+
* <Radio.Group v-model="selected" activation="manual">
|
|
86
|
+
* <Radio.Root value="a">Option A</Radio.Root>
|
|
87
|
+
* </Radio.Group>
|
|
88
|
+
* </template>
|
|
88
89
|
* ```
|
|
89
90
|
*/
|
|
90
|
-
type
|
|
91
|
+
type Activation = 'automatic' | 'manual';
|
|
91
92
|
//#endregion
|
|
92
|
-
export {
|
|
93
|
+
export { ID as a, GenericObject as i, DOMElement as n, MaybeArray as o, DeepPartial as r, UnknownObject as s, Activation as t };
|