@codemonster-ru/vueforge-core 1.0.0 → 1.1.0

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 (36) hide show
  1. package/README.md +39 -1
  2. package/dist/breakpoints-hxAiWC8U.js +11 -0
  3. package/dist/components/dialog/VfDialog.vue.d.ts.map +1 -1
  4. package/dist/foundation/breakpoints.d.ts +13 -0
  5. package/dist/foundation/breakpoints.d.ts.map +1 -0
  6. package/dist/foundation/breakpoints.json.d.ts +11 -0
  7. package/dist/foundation/index.d.ts +10 -0
  8. package/dist/foundation/index.d.ts.map +1 -0
  9. package/dist/foundation/useBreakpoint.d.ts +7 -0
  10. package/dist/foundation/useBreakpoint.d.ts.map +1 -0
  11. package/dist/foundation/useBreakpointValue.d.ts +7 -0
  12. package/dist/foundation/useBreakpointValue.d.ts.map +1 -0
  13. package/dist/foundation/useBreakpoints.d.ts +4 -0
  14. package/dist/foundation/useBreakpoints.d.ts.map +1 -0
  15. package/dist/foundation/useScrollLock.d.ts +8 -0
  16. package/dist/foundation/useScrollLock.d.ts.map +1 -0
  17. package/dist/foundation-api.d.ts +2 -0
  18. package/dist/foundation-api.js +10 -0
  19. package/dist/foundation.css +2 -0
  20. package/dist/generated-breakpoints.css +9 -0
  21. package/dist/index.d.ts +3 -1
  22. package/dist/index.d.ts.map +1 -1
  23. package/dist/public-D2viaiWv.js +202 -0
  24. package/dist/styles.css +1 -1
  25. package/dist/theme/default-preset.d.ts.map +1 -1
  26. package/dist/theme/public.d.ts +2 -0
  27. package/dist/theme/public.d.ts.map +1 -0
  28. package/dist/theme-api.d.ts +2 -0
  29. package/dist/theme-api.js +5 -0
  30. package/dist/theme.css +29 -0
  31. package/dist/tokens.css +97 -0
  32. package/dist/types/theme.d.ts +6 -0
  33. package/dist/types/theme.d.ts.map +1 -1
  34. package/dist/useScrollLock-B7pq1ybb.js +96 -0
  35. package/dist/vueforge-core.js +675 -852
  36. package/package.json +35 -3
package/package.json CHANGED
@@ -1,9 +1,28 @@
1
1
  {
2
2
  "name": "@codemonster-ru/vueforge-core",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "Foundation layer for the VueForge design system.",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
+ "homepage": "https://github.com/codemonster-ru/vueforge-core#readme",
8
+ "bugs": {
9
+ "url": "https://github.com/codemonster-ru/vueforge-core/issues"
10
+ },
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/codemonster-ru/vueforge-core.git"
14
+ },
15
+ "keywords": [
16
+ "vue",
17
+ "vue3",
18
+ "typescript",
19
+ "ui",
20
+ "components",
21
+ "design-system",
22
+ "theme",
23
+ "library",
24
+ "vueforge"
25
+ ],
7
26
  "publishConfig": {
8
27
  "access": "public"
9
28
  },
@@ -20,13 +39,26 @@
20
39
  "types": "./dist/index.d.ts",
21
40
  "import": "./dist/vueforge-core.js"
22
41
  },
23
- "./styles.css": "./dist/styles.css"
42
+ "./styles.css": "./dist/styles.css",
43
+ "./tokens.css": "./dist/tokens.css",
44
+ "./foundation.css": "./dist/foundation.css",
45
+ "./foundation": {
46
+ "types": "./dist/foundation-api.d.ts",
47
+ "import": "./dist/foundation-api.js"
48
+ },
49
+ "./theme": {
50
+ "types": "./dist/theme-api.d.ts",
51
+ "import": "./dist/theme-api.js"
52
+ }
24
53
  },
25
54
  "scripts": {
26
- "build": "vue-tsc --noEmit && vite build",
55
+ "build": "npm run sync:breakpoints && vue-tsc --noEmit && vite build && node scripts/copy-css-entries.mjs",
56
+ "check": "npm run lint && npm run test && npm run build",
27
57
  "dev": "vite",
28
58
  "format": "prettier --write .",
29
59
  "lint": "eslint .",
60
+ "prepack": "npm run build",
61
+ "sync:breakpoints": "node scripts/sync-breakpoint-css.mjs",
30
62
  "test": "vitest run",
31
63
  "test:watch": "vitest",
32
64
  "typecheck": "vue-tsc --noEmit"