@boxcustodia/library 2.0.0-alpha.10 → 2.0.0-alpha.11
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/components.css +2 -0
- package/dist/index.cjs.js +70 -70
- package/dist/index.css +2 -0
- package/dist/index.d.ts +420 -272
- package/dist/index.es.js +34448 -27816
- package/dist/theme.css +1 -1
- package/package.json +10 -6
package/dist/theme.css
CHANGED
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@boxcustodia/library",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.11",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.es.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
|
+
"style": "dist/index.css",
|
|
8
9
|
"sideEffects": false,
|
|
9
10
|
"files": [
|
|
10
11
|
"/dist"
|
|
@@ -15,9 +16,10 @@
|
|
|
15
16
|
},
|
|
16
17
|
"scripts": {
|
|
17
18
|
"format": "biome format --write .",
|
|
18
|
-
"lint": "biome check --write .",
|
|
19
|
-
"build": "tsc && vite build && npm run copy:theme",
|
|
20
|
-
"copy:theme": "node -e \"require('fs').copyFileSync('./src/styles/theme.css',
|
|
19
|
+
"lint": "biome check --write --unsafe .",
|
|
20
|
+
"build": "tsc && vite build && npm run copy:theme && npm run build:css",
|
|
21
|
+
"copy:theme": "node -e \"const fs=require('fs'); fs.copyFileSync('./src/styles/theme.css','./dist/theme.css'); fs.copyFileSync('./src/styles/library.css','./dist/index.css');\"",
|
|
22
|
+
"build:css": "tailwindcss -i src/styles/components.css -o dist/components.css --minify",
|
|
21
23
|
"test": "vitest run",
|
|
22
24
|
"test-watch": "vitest",
|
|
23
25
|
"test:ui": "vitest --ui",
|
|
@@ -42,7 +44,7 @@
|
|
|
42
44
|
},
|
|
43
45
|
"lint-staged": {
|
|
44
46
|
"*": [
|
|
45
|
-
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
|
|
47
|
+
"biome check --write --unsafe --no-errors-on-unmatched --files-ignore-unknown=true"
|
|
46
48
|
]
|
|
47
49
|
},
|
|
48
50
|
"keywords": [],
|
|
@@ -51,6 +53,7 @@
|
|
|
51
53
|
"description": "",
|
|
52
54
|
"dependencies": {
|
|
53
55
|
"@base-ui/react": "^1.4.0",
|
|
56
|
+
"tw-animate-css": "^1.2.9",
|
|
54
57
|
"@biomejs/biome": "^2.3.8",
|
|
55
58
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
56
59
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
@@ -61,6 +64,7 @@
|
|
|
61
64
|
"@radix-ui/react-tooltip": "1.2.8",
|
|
62
65
|
"@radix-ui/react-use-controllable-state": "^1.2.2",
|
|
63
66
|
"react-aria-components": "^1.13.0",
|
|
67
|
+
"react-day-picker": "^9.14.0",
|
|
64
68
|
"vite-tsconfig-paths": "^6.0.1"
|
|
65
69
|
},
|
|
66
70
|
"devDependencies": {
|
|
@@ -72,6 +76,7 @@
|
|
|
72
76
|
"@storybook/addon-mcp": "^0.6.0",
|
|
73
77
|
"@storybook/addon-onboarding": "10.3.5",
|
|
74
78
|
"@storybook/react-vite": "10.3.5",
|
|
79
|
+
"@tailwindcss/cli": "^4.1.18",
|
|
75
80
|
"@tailwindcss/vite": "^4.1.18",
|
|
76
81
|
"@testing-library/jest-dom": "^6.9.1",
|
|
77
82
|
"@testing-library/react": "16.3.0",
|
|
@@ -105,7 +110,6 @@
|
|
|
105
110
|
"tailwind-merge": "^3.4.0",
|
|
106
111
|
"tailwind-variants": "^3.2.2",
|
|
107
112
|
"tailwindcss": "^4.1.18",
|
|
108
|
-
"tailwindcss-animate": "^1.0.7",
|
|
109
113
|
"typescript": "^5.9.3",
|
|
110
114
|
"vite": "^7.3.0",
|
|
111
115
|
"vite-plugin-dts": "^4.5.4",
|