@vuetify/v0 0.1.2 → 0.1.3

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 (31) hide show
  1. package/README.md +20 -3
  2. package/dist/browser/index.js +5645 -3968
  3. package/dist/components/index.d.mts +7 -4
  4. package/dist/components/index.mjs +5 -5
  5. package/dist/{components-z56rRlS4.mjs → components-C0zEvP7w.mjs} +580 -89
  6. package/dist/composables/index.d.mts +4 -5
  7. package/dist/composables/index.mjs +4 -4
  8. package/dist/constants/index.d.mts +1 -1
  9. package/dist/constants/index.mjs +1 -1
  10. package/dist/date/index.d.mts +1 -1
  11. package/dist/date/index.mjs +19 -15
  12. package/dist/{globals-VwjZ5i4B.mjs → globals-BwYsH-rt.mjs} +1 -1
  13. package/dist/{index-CLKfXGEQ.d.mts → index-2wh69fk5.d.mts} +2781 -459
  14. package/dist/{index-DlxrzbvZ.d.mts → index-BLK67J_-.d.mts} +41 -1
  15. package/dist/{index-CoO8LW8o.d.mts → index-DBZTizq2.d.mts} +1 -1
  16. package/dist/{index-PuLeBGZ3.d.mts → index-DFM5iBqh.d.mts} +899 -335
  17. package/dist/index.d.mts +7 -8
  18. package/dist/index.mjs +5 -5
  19. package/dist/json/attributes.json +140 -0
  20. package/dist/json/importMap.json +36 -0
  21. package/dist/json/tags.json +75 -0
  22. package/dist/json/web-types.json +440 -1
  23. package/dist/types/index.d.mts +2 -2
  24. package/dist/{useClickOutside-Dp1MHIjr.mjs → useClickOutside-DrkNYxDe.mjs} +4252 -3066
  25. package/dist/utilities/index.d.mts +2 -2
  26. package/dist/utilities/index.mjs +2 -1
  27. package/dist/{utilities-B58TiS_S.mjs → utilities-BbKjbXTx.mjs} +9 -0
  28. package/package.json +4 -3
  29. package/dist/index-qSuLpob3.d.mts +0 -1544
  30. /package/dist/{adapter-L4Php1_S.d.mts → adapter-D95FHAtt.d.mts} +0 -0
  31. /package/dist/{index-cPmI99rd.d.mts → index-Bmem4l8m.d.mts} +0 -0
@@ -1,3 +1,3 @@
1
- import "../index-DlxrzbvZ.mjs";
2
- import { _ as mergeDeep, a as isArray, c as isNaN, d as isNumber, f as isObject, g as isUndefined, h as isSymbol, i as debounce, l as isNull, m as isString, n as instanceName, o as isBoolean, p as isPrimitive, r as clamp, s as isFunction, t as instanceExists, u as isNullOrUndefined, v as range, y as useId } from "../index-CoO8LW8o.mjs";
1
+ import "../index-BLK67J_-.mjs";
2
+ import { _ as mergeDeep, a as isArray, c as isNaN, d as isNumber, f as isObject, g as isUndefined, h as isSymbol, i as debounce, l as isNull, m as isString, n as instanceName, o as isBoolean, p as isPrimitive, r as clamp, s as isFunction, t as instanceExists, u as isNullOrUndefined, v as range, y as useId } from "../index-DBZTizq2.mjs";
3
3
  export { clamp, debounce, instanceExists, instanceName, isArray, isBoolean, isFunction, isNaN, isNull, isNullOrUndefined, isNumber, isObject, isPrimitive, isString, isSymbol, isUndefined, mergeDeep, range, useId };
@@ -1,3 +1,4 @@
1
- import { _ as useId, a as isFunction, c as isNullOrUndefined, d as isPrimitive, f as isString, g as range, h as mergeDeep, i as isBoolean, l as isNumber, m as isUndefined, n as debounce, o as isNaN, p as isSymbol, r as isArray, s as isNull, t as clamp, u as isObject, v as instanceExists, y as instanceName } from "../utilities-B58TiS_S.mjs";
1
+ import "../globals-BwYsH-rt.mjs";
2
+ import { _ as useId, a as isFunction, c as isNullOrUndefined, d as isPrimitive, f as isString, g as range, h as mergeDeep, i as isBoolean, l as isNumber, m as isUndefined, n as debounce, o as isNaN, p as isSymbol, r as isArray, s as isNull, t as clamp, u as isObject, v as instanceExists, y as instanceName } from "../utilities-BbKjbXTx.mjs";
2
3
 
3
4
  export { clamp, debounce, instanceExists, instanceName, isArray, isBoolean, isFunction, isNaN, isNull, isNullOrUndefined, isNumber, isObject, isPrimitive, isString, isSymbol, isUndefined, mergeDeep, range, useId };
@@ -1,3 +1,4 @@
1
+ import { t as IN_BROWSER } from "./globals-BwYsH-rt.mjs";
1
2
  import * as Vue from "vue";
2
3
  import { useId } from "vue";
3
4
 
@@ -28,6 +29,13 @@ function instanceName() {
28
29
  //#endregion
29
30
  //#region src/utilities/helpers.ts
30
31
  /**
32
+ * @module utilities/helpers
33
+ *
34
+ * @remarks
35
+ * Collection of utility functions for type checking, object manipulation,
36
+ * and common transformations. All exports are tree-shakeable.
37
+ */
38
+ /**
31
39
  * Checks if a value is a function
32
40
  *
33
41
  * @param item The value to check
@@ -328,6 +336,7 @@ let idCounter = 0;
328
336
  /* @__NO_SIDE_EFFECTS__ */
329
337
  function useId$1() {
330
338
  if (instanceExists()) return useId();
339
+ if (process.env.NODE_ENV !== "production" && !IN_BROWSER) console.warn("[v0 warn] useId() called outside component context during SSR. Provide explicit ID to avoid hydration mismatch.");
331
340
  return `v0-${idCounter++}`;
332
341
  }
333
342
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vuetify/v0",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Vuetify0",
5
5
  "license": "MIT",
6
6
  "main": "./dist/index.mjs",
@@ -8,7 +8,8 @@
8
8
  "types": "./dist/index.d.mts",
9
9
  "type": "module",
10
10
  "files": [
11
- "dist"
11
+ "dist",
12
+ "SKILL.md"
12
13
  ],
13
14
  "repository": {
14
15
  "type": "git",
@@ -38,7 +39,7 @@
38
39
  "launchdarkly-js-client-sdk": "^3.9.0",
39
40
  "posthog-js": "^1.310.1",
40
41
  "tsdown": "^0.16.8",
41
- "tsx": "^4.21.0",
42
+ "tsx": "4.21.0",
42
43
  "typescript": "5.9.3",
43
44
  "unplugin-vue": "^7.1.0",
44
45
  "vue": "3.5.24",