@facter/ds-core 1.5.0 → 1.5.2
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/dist/index.d.mts +76 -1
- package/dist/index.d.ts +76 -1
- package/dist/index.js +496 -290
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +459 -268
- package/dist/index.mjs.map +1 -1
- package/package.json +11 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@facter/ds-core",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"description": "Facter Design System - Core components (Button, Input, Badge, Spinner, Loader)",
|
|
5
5
|
"author": "Facter",
|
|
6
6
|
"license": "MIT",
|
|
@@ -60,14 +60,6 @@
|
|
|
60
60
|
"url": "https://github.com/tamicaires/facter-design-system/issues"
|
|
61
61
|
},
|
|
62
62
|
"homepage": "https://github.com/tamicaires/facter-design-system#readme",
|
|
63
|
-
"scripts": {
|
|
64
|
-
"build": "tsup",
|
|
65
|
-
"dev": "tsup --watch",
|
|
66
|
-
"lint": "eslint src",
|
|
67
|
-
"test": "vitest",
|
|
68
|
-
"test:coverage": "vitest --coverage",
|
|
69
|
-
"clean": "rm -rf dist"
|
|
70
|
-
},
|
|
71
63
|
"peerDependencies": {
|
|
72
64
|
"react": "^18.0.0 || ^19.0.0",
|
|
73
65
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
@@ -110,6 +102,7 @@
|
|
|
110
102
|
"@radix-ui/react-slot": "^1.2.3",
|
|
111
103
|
"@radix-ui/react-switch": "^1.2.6",
|
|
112
104
|
"@radix-ui/react-tabs": "^1.1.13",
|
|
105
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
113
106
|
"@tanstack/react-table": "^8.21.3",
|
|
114
107
|
"class-variance-authority": "^0.7.0",
|
|
115
108
|
"clsx": "^2.1.0",
|
|
@@ -117,5 +110,13 @@
|
|
|
117
110
|
"lucide-react": "^0.553.0",
|
|
118
111
|
"sonner": "^2.0.7",
|
|
119
112
|
"tailwind-merge": "^2.2.0"
|
|
113
|
+
},
|
|
114
|
+
"scripts": {
|
|
115
|
+
"build": "tsup",
|
|
116
|
+
"dev": "tsup --watch",
|
|
117
|
+
"lint": "eslint src",
|
|
118
|
+
"test": "vitest",
|
|
119
|
+
"test:coverage": "vitest --coverage",
|
|
120
|
+
"clean": "rm -rf dist"
|
|
120
121
|
}
|
|
121
|
-
}
|
|
122
|
+
}
|