@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.
Files changed (35) hide show
  1. package/dist/browser/index.js +1497 -466
  2. package/dist/components/index.d.mts +4 -0
  3. package/dist/components/index.mjs +7 -0
  4. package/dist/components-DFGu8N2g.mjs +947 -0
  5. package/dist/composables/index.d.mts +4 -0
  6. package/dist/composables/{index.js → index.mjs} +3 -3
  7. package/dist/{composables-DTW0WfTC.js → composables-TCjvMHyU.mjs} +590 -162
  8. package/dist/constants/{index.d.ts → index.d.mts} +1 -1
  9. package/dist/constants/{index.js → index.mjs} +3 -3
  10. package/dist/{globals-Cfd1Dr_o.js → globals-y0mJ6Eg7.mjs} +2 -2
  11. package/dist/{index-DWx3x9vE.d.ts → index-CQjOW_w5.d.mts} +101 -846
  12. package/dist/{index-DIX3zaZG.d.ts → index-CSdGoUCI.d.mts} +3 -2
  13. package/dist/index-D-EP6KrS.d.mts +812 -0
  14. package/dist/index-DbBHGczA.d.mts +815 -0
  15. package/dist/index.d.mts +7 -0
  16. package/dist/index.mjs +8 -0
  17. package/dist/types/{index.d.ts → index.d.mts} +1 -1
  18. package/dist/utilities/index.d.mts +3 -0
  19. package/dist/utilities/index.mjs +3 -0
  20. package/dist/{utilities-rsKHgU2m.js → utilities-C26nB74O.mjs} +5 -1
  21. package/package.json +15 -15
  22. package/dist/components/index.d.ts +0 -4
  23. package/dist/components/index.js +0 -7
  24. package/dist/components-BfI4Pf1x.js +0 -350
  25. package/dist/composables/index.d.ts +0 -3
  26. package/dist/index-TlH7dtTg.d.ts +0 -241
  27. package/dist/index.d.ts +0 -6
  28. package/dist/index.js +0 -8
  29. package/dist/utilities/index.d.ts +0 -3
  30. package/dist/utilities/index.js +0 -3
  31. /package/dist/{constants-De5c3_aB.js → constants-Xfszzyok.mjs} +0 -0
  32. /package/dist/{htmlElements-lF7PGahL.js → htmlElements-BYo-fMlZ.mjs} +0 -0
  33. /package/dist/{index-BKc0YiL1.d.ts → index-8AIxAM2d.d.mts} +0 -0
  34. /package/dist/{index-C_lAPFXS.d.ts → index-DY7-T630.d.mts} +0 -0
  35. /package/dist/types/{index.js → index.mjs} +0 -0
@@ -1,4 +1,4 @@
1
- import { n as DeepPartial } from "./index-C_lAPFXS.js";
1
+ import { n as DeepPartial } from "./index-DY7-T630.mjs";
2
2
 
3
3
  //#region src/utilities/helpers.d.ts
4
4
  declare function isFunction(item: unknown): item is Function;
@@ -7,10 +7,11 @@ declare function isNumber(item: unknown): item is number;
7
7
  declare function isBoolean(item: unknown): item is boolean;
8
8
  declare function isObject(item: unknown): item is Record<string, unknown>;
9
9
  declare function isArray(item: unknown): item is unknown[];
10
+ declare function isNull(item: unknown): item is null;
10
11
  declare function isNullOrUndefined(item: unknown): item is null;
11
12
  declare function isUndefined(item: unknown): item is undefined;
12
13
  declare function isPrimitive(item: unknown): item is string | number | boolean;
13
14
  declare function mergeDeep<T extends object>(target: T, ...sources: DeepPartial<T>[]): T;
14
15
  declare function genId(): string;
15
16
  //#endregion
16
- export { isNullOrUndefined as a, isPrimitive as c, mergeDeep as d, isFunction as i, isString as l, isArray as n, isNumber as o, isBoolean as r, isObject as s, genId as t, isUndefined as u };
17
+ export { isNull as a, isObject as c, isUndefined as d, mergeDeep as f, isFunction as i, isPrimitive as l, isArray as n, isNullOrUndefined as o, isBoolean as r, isNumber as s, genId as t, isString as u };