@pathscale/ui 1.2.11 → 1.3.1
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/README.md +102 -25
- package/dist/components/language-switcher/createI18n.d.ts +2 -1
- package/dist/purge-manifest.json +16333 -16333
- package/package.json +19 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pathscale/ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"author": "pathscale",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -11,10 +11,21 @@
|
|
|
11
11
|
"files": [
|
|
12
12
|
"dist"
|
|
13
13
|
],
|
|
14
|
-
"homepage": "https://
|
|
14
|
+
"homepage": "https://js.software",
|
|
15
15
|
"keywords": [
|
|
16
16
|
"solid",
|
|
17
|
-
"solidjs"
|
|
17
|
+
"solidjs",
|
|
18
|
+
"solid-js",
|
|
19
|
+
"component-library",
|
|
20
|
+
"ui",
|
|
21
|
+
"ui-components",
|
|
22
|
+
"design-system",
|
|
23
|
+
"tailwind",
|
|
24
|
+
"tailwindcss",
|
|
25
|
+
"daisyui",
|
|
26
|
+
"headless-ui",
|
|
27
|
+
"accessible",
|
|
28
|
+
"typescript"
|
|
18
29
|
],
|
|
19
30
|
"bugs": {
|
|
20
31
|
"url": "https://github.com/pathscale/ui/issues"
|
|
@@ -39,10 +50,6 @@
|
|
|
39
50
|
"types": "./dist/hooks/*/index.d.ts",
|
|
40
51
|
"import": "./dist/hooks/*/index.js"
|
|
41
52
|
},
|
|
42
|
-
"./stores": {
|
|
43
|
-
"types": "./dist/stores/index.d.ts",
|
|
44
|
-
"import": "./dist/stores/index.js"
|
|
45
|
-
},
|
|
46
53
|
"./motion": {
|
|
47
54
|
"types": "./dist/motion/index.d.ts",
|
|
48
55
|
"import": "./dist/motion/index.js"
|
|
@@ -82,14 +89,14 @@
|
|
|
82
89
|
"postcss-selector-parser": "^7.1.1",
|
|
83
90
|
"solid-js": "^1.9.13",
|
|
84
91
|
"svgo": "^3.3.3",
|
|
85
|
-
"tailwind-merge": "^3.6.0",
|
|
86
92
|
"typescript": "^6.0.3"
|
|
87
93
|
},
|
|
88
94
|
"dependencies": {
|
|
89
95
|
"@iconify/tailwind4": "^1.2.3",
|
|
90
96
|
"@pathscale/rsbuild-plugin-iconify": "^1.0.4",
|
|
91
97
|
"@pathscale/ui": "^1.2.10",
|
|
92
|
-
"@tanstack/solid-virtual": "^3.13.27"
|
|
98
|
+
"@tanstack/solid-virtual": "^3.13.27",
|
|
99
|
+
"tailwind-merge": "^3.6.0"
|
|
93
100
|
},
|
|
94
101
|
"peerDependencies": {
|
|
95
102
|
"@solid-primitives/event-listener": "^2.3.0",
|
|
@@ -126,6 +133,9 @@
|
|
|
126
133
|
"format": "bun biome format --write",
|
|
127
134
|
"lint": "bun biome lint --write",
|
|
128
135
|
"check": "bun run scripts/check-contracts.ts",
|
|
136
|
+
"check:package": "bun run scripts/check-package.ts",
|
|
137
|
+
"next-version": "bun run scripts/next-version.ts",
|
|
138
|
+
"smoke": "bun run scripts/smoke-consumer.ts",
|
|
129
139
|
"playground:dev": "cd playground && bun run dev",
|
|
130
140
|
"playground:build": "cd playground && bun run build",
|
|
131
141
|
"playground:preview": "cd playground && bun run preview"
|