@vuetify/v0 0.0.23 → 0.0.24
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/adapter-L4Php1_S.d.mts +97 -0
- package/dist/browser/index.js +1069 -809
- package/dist/components/index.d.mts +4 -4
- package/dist/components/index.mjs +6 -6
- package/dist/{components-BI9xdoz5.mjs → components-D_yAxHwn.mjs} +433 -113
- package/dist/composables/index.d.mts +5 -4
- package/dist/composables/index.mjs +4 -4
- package/dist/constants/index.d.mts +1 -1
- package/dist/constants/index.mjs +3 -3
- package/dist/date/index.d.mts +124 -0
- package/dist/date/index.mjs +7514 -0
- package/dist/{globals-WKdFmgwy.mjs → globals-BhNI7no7.mjs} +1 -1
- package/dist/{index-Bby5ljat.d.mts → index-DknfL2GU.d.mts} +1 -1
- package/dist/{index-_y91DmIS.d.mts → index-OghXharF.d.mts} +721 -359
- package/dist/{index-DYSwiS9k.d.mts → index-ZW2YLa57.d.mts} +21 -2
- package/dist/{index-rcTqb9U3.d.mts → index-isYKpbs6.d.mts} +426 -266
- package/dist/{index-C8YcMooA.d.mts → index-kvJsAOSg.d.mts} +13 -9
- package/dist/index.d.mts +8 -7
- package/dist/index.mjs +7 -7
- package/dist/json/attributes.json +100 -0
- package/dist/json/importMap.json +64 -0
- package/dist/json/tags.json +45 -0
- package/dist/json/web-types.json +1303 -392
- package/dist/types/index.d.mts +2 -2
- package/dist/{useClickOutside-B47X8X6-.mjs → useClickOutside-w-Y2QxHh.mjs} +591 -657
- package/dist/utilities/index.d.mts +3 -3
- package/dist/utilities/index.mjs +2 -2
- package/dist/{utilities-9i1hJnMd.mjs → utilities-B58TiS_S.mjs} +41 -34
- package/package.json +3 -2
- /package/dist/{constants-3l8TGg5J.mjs → constants-DHKqjdjH.mjs} +0 -0
- /package/dist/{htmlElements-CXObxj0V.mjs → htmlElements-DO9n35bD.mjs} +0 -0
- /package/dist/{index-DMQJJUrv.d.mts → index-cPmI99rd.d.mts} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { h } from "vue";
|
|
1
|
+
import { Ref, ShallowRef, h } from "vue";
|
|
2
2
|
|
|
3
3
|
//#region src/types/index.d.ts
|
|
4
4
|
|
|
@@ -69,5 +69,24 @@ type DeepPartial<T> = T extends object ? { [P in keyof T]?: DeepPartial<T[P]> }
|
|
|
69
69
|
* ```
|
|
70
70
|
*/
|
|
71
71
|
type MaybeArray<T> = T | T[];
|
|
72
|
+
/**
|
|
73
|
+
* Value that may be wrapped in a Vue ref
|
|
74
|
+
*
|
|
75
|
+
* @template T The base value type
|
|
76
|
+
*
|
|
77
|
+
* @remarks
|
|
78
|
+
* Accepts raw values, refs, readonly refs, shallow refs, or getter functions.
|
|
79
|
+
* Used by observer composables for flexible target parameters.
|
|
80
|
+
*
|
|
81
|
+
* @example
|
|
82
|
+
* ```ts
|
|
83
|
+
* function observe(target: MaybeRef<Element>) { ... }
|
|
84
|
+
* observe(element) // raw value
|
|
85
|
+
* observe(ref(element)) // Ref
|
|
86
|
+
* observe(shallowRef(element)) // ShallowRef
|
|
87
|
+
* observe(() => element) // getter function
|
|
88
|
+
* ```
|
|
89
|
+
*/
|
|
90
|
+
type MaybeRef$1<T> = T | Ref<T> | Readonly<Ref<T>> | ShallowRef<T> | Readonly<ShallowRef<T>> | (() => T);
|
|
72
91
|
//#endregion
|
|
73
|
-
export { MaybeArray as a, ID as i, DeepPartial as n,
|
|
92
|
+
export { MaybeArray as a, ID as i, DeepPartial as n, MaybeRef$1 as o, GenericObject as r, UnknownObject as s, DOMElement as t };
|