@superblocksteam/library 2.0.76-next.2 → 2.0.77-next.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.
- package/dist/jsx-dev-runtime/index.js +1 -1
- package/dist/{jsx-wrapper-DpoYDtf8.js → jsx-wrapper-B2IuiyUY.js} +53 -11
- package/dist/jsx-wrapper-B2IuiyUY.js.map +1 -0
- package/dist/lib/index.d.ts +178 -5
- package/dist/lib/index.d.ts.map +1 -1
- package/dist/lib/index.js +405 -68
- package/dist/lib/index.js.map +1 -1
- package/package.json +6 -12
- package/dist/jsx-wrapper-DpoYDtf8.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superblocksteam/library",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.77-next.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -48,7 +48,6 @@
|
|
|
48
48
|
"@react-hook/resize-observer": "1.2.6",
|
|
49
49
|
"@superblocksteam/fast-deep-equal": "3.1.4",
|
|
50
50
|
"@superblocksteam/iso-currency": "^3.0.0",
|
|
51
|
-
"@superblocksteam/shared": "0.9549.0",
|
|
52
51
|
"apca-w3": "^0.1.9",
|
|
53
52
|
"clsx": "^2.1.1",
|
|
54
53
|
"copy-to-clipboard": "3.3.3",
|
|
@@ -86,7 +85,8 @@
|
|
|
86
85
|
"tinycolor2": "^1.6.0",
|
|
87
86
|
"use-debounce": "^10.0.4",
|
|
88
87
|
"yaml": "^2.7.0",
|
|
89
|
-
"@superblocksteam/library-shared": "2.0.
|
|
88
|
+
"@superblocksteam/library-shared": "2.0.77-next.0",
|
|
89
|
+
"@superblocksteam/shared": "0.9558.0"
|
|
90
90
|
},
|
|
91
91
|
"devDependencies": {
|
|
92
92
|
"@eslint/js": "^9.39.1",
|
|
@@ -105,6 +105,7 @@
|
|
|
105
105
|
"@types/tinycolor2": "^1.4.6",
|
|
106
106
|
"@vitejs/plugin-react": "^5.0.4",
|
|
107
107
|
"@vitest/browser": "^4.0.0",
|
|
108
|
+
"@vitest/coverage-v8": "^4.0.16",
|
|
108
109
|
"@vitest/eslint-plugin": "^1.5.1",
|
|
109
110
|
"@vitest/ui": "^4.0.0",
|
|
110
111
|
"eslint": "^9.39.1",
|
|
@@ -135,21 +136,14 @@
|
|
|
135
136
|
"sideEffects": [
|
|
136
137
|
"dist*/*.css"
|
|
137
138
|
],
|
|
138
|
-
"lint-staged": {
|
|
139
|
-
"**/*": [
|
|
140
|
-
"prettier --write --ignore-unknown",
|
|
141
|
-
"eslint --fix",
|
|
142
|
-
"vitest related --run"
|
|
143
|
-
]
|
|
144
|
-
},
|
|
145
139
|
"scripts": {
|
|
146
140
|
"build": "MODE=production tsdown",
|
|
147
141
|
"check": "npm run typecheck && npm run lint",
|
|
148
142
|
"clean": "premove dist* tsconfig.tsbuildinfo",
|
|
149
143
|
"dev": "MODE=local-dev tsdown --watch --no-clean",
|
|
150
144
|
"kebabify": "./scripts/kebabify.ts",
|
|
151
|
-
"lint": "eslint --max-warnings 0 --concurrency=
|
|
152
|
-
"lint:fix": "eslint --fix --concurrency=
|
|
145
|
+
"lint": "eslint --max-warnings 0 --concurrency=2",
|
|
146
|
+
"lint:fix": "eslint --fix --concurrency=2",
|
|
153
147
|
"preview": "vite preview",
|
|
154
148
|
"publish-package": "pnpm publish",
|
|
155
149
|
"test": "vitest run",
|