@naptics/vue-collection 1.0.0-beta.3 → 1.0.0-beta.5

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.
@@ -1,7 +1,7 @@
1
1
  @reference "tailwindcss";
2
2
 
3
3
  .pagination-item {
4
- @apply h-9 w-9 text-sm inline-flex items-center justify-center border font-medium border-default-300 text-default-500;
4
+ @apply h-9 w-9 text-sm inline-flex items-center justify-center border font-medium border-slate-300 text-slate-500;
5
5
  }
6
6
 
7
7
  .pagination-item.not-small {
@@ -9,7 +9,7 @@
9
9
  }
10
10
 
11
11
  .pagination-item.selectable {
12
- @apply cursor-pointer hover:bg-default-50 focus:outline-hidden focus-visible:border-primary-500 focus-visible:ring-primary-500 focus-visible:ring-1 focus-visible:z-2;
12
+ @apply cursor-pointer hover:bg-slate-50 focus:outline-hidden focus-visible:border-primary-500 focus-visible:ring-primary-500 focus-visible:ring-1 focus-visible:z-2;
13
13
  }
14
14
 
15
15
  .pagination-item.selectable.selected {
@@ -1,5 +1,5 @@
1
1
  @reference "tailwindcss";
2
2
 
3
3
  .table-heading {
4
- @apply text-left text-xs font-medium text-default-500 uppercase tracking-wider;
4
+ @apply text-left text-xs font-medium text-slate-500 uppercase tracking-wider;
5
5
  }
@@ -15,7 +15,7 @@
15
15
  visibility: visible;
16
16
  content: '';
17
17
  transform: rotate(45deg);
18
- @apply bg-white border border-default-200 border-solid;
18
+ @apply bg-white border border-slate-200 border-solid;
19
19
  }
20
20
 
21
21
  .tooltip[data-popper-placement^='top'] > .arrow {
package/package.json CHANGED
@@ -2,8 +2,32 @@
2
2
  "name": "@naptics/vue-collection",
3
3
  "author": "Timo Siegenthaler and Jonas Schoch",
4
4
  "description": "Vue Collection is a collection of styled and fully functional Vue components which can easily be integrated into our projects.",
5
- "version": "1.0.0-beta.3",
5
+ "version": "1.0.0-beta.5",
6
6
  "main": "./lib/index.js",
7
+ "types": "./lib/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./lib/index.d.ts",
11
+ "default": "./lib/index.js"
12
+ },
13
+ "./components/*": {
14
+ "types": "./lib/components/*.d.ts",
15
+ "default": "./lib/components/*.js"
16
+ },
17
+ "./utils/*": {
18
+ "types": "./lib/utils/*.d.ts",
19
+ "default": "./lib/utils/*.js"
20
+ },
21
+ "./i18n": {
22
+ "types": "./lib/i18n/index.d.ts",
23
+ "default": "./lib/i18n/index.js"
24
+ },
25
+ "./i18n/*": {
26
+ "types": "./lib/i18n/*/index.d.ts",
27
+ "default": "./lib/i18n/*/index.js"
28
+ },
29
+ "./package.json": "./package.json"
30
+ },
7
31
  "files": [
8
32
  "lib/"
9
33
  ],
@@ -30,8 +54,9 @@
30
54
  "awesome-phonenumber": "^7.8.0"
31
55
  },
32
56
  "peerDependencies": {
33
- "@heroicons/vue": "^2.0.16",
34
- "vue": "^3.5.0"
57
+ "@heroicons/vue": "^2.2.0",
58
+ "vue": "^3.5.0",
59
+ "vue-router": "^5.0.0"
35
60
  },
36
61
  "devDependencies": {
37
62
  "@babel/cli": "^7.28.6",
@@ -49,20 +74,20 @@
49
74
  "@vue/eslint-config-prettier": "^10.2.0",
50
75
  "@vue/eslint-config-typescript": "^14.7.0",
51
76
  "@vue/test-utils": "^2.4.10",
52
- "@vue/tsconfig": "^0.8.1",
77
+ "@vue/tsconfig": "^0.9.1",
53
78
  "eslint": "^10.4.0",
54
79
  "eslint-plugin-vue": "^10.9.1",
55
80
  "jsdom": "^29.1.1",
56
- "npm-run-all": "^4.1.5",
81
+ "npm-run-all2": "^9.0.1",
57
82
  "postcss": "^8.5.15",
58
83
  "prettier": "^3.8.3",
59
84
  "tailwindcss": "^4.3.0",
60
- "typescript": "~5.8.3",
85
+ "typescript": "~6.0.3",
61
86
  "vite": "^8.0.14",
62
87
  "vitest": "^4.1.7",
63
88
  "vue": "^3.5.34",
64
89
  "vue-i18n": "^11.4.4",
65
90
  "vue-router": "^5.0.7",
66
- "vue-tsc": "^3.3.1"
91
+ "vue-tsc": "^3.3.2"
67
92
  }
68
93
  }