hazo_ui 3.0.1 → 3.1.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/CHANGE_LOG.md +46 -0
- package/dist/index.cjs +483 -511
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +104 -2
- package/dist/index.d.ts +104 -2
- package/dist/index.js +402 -435
- package/dist/index.js.map +1 -1
- package/dist/test-harness/index.cjs +7 -17034
- package/dist/test-harness/index.cjs.map +1 -1
- package/dist/test-harness/index.js +7 -17032
- package/dist/test-harness/index.js.map +1 -1
- package/package.json +6 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hazo_ui",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1.1",
|
|
4
4
|
"description": "Set of UI components for common interaction elements in a SaaS app",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"scripts": {
|
|
36
36
|
"build": "tsup",
|
|
37
37
|
"dev": "tsup --watch",
|
|
38
|
-
"dev:test-app": "cd
|
|
39
|
-
"test:build": "npm run build && cd
|
|
38
|
+
"dev:test-app": "cd test-app && npm run dev",
|
|
39
|
+
"test:build": "npm run build && cd test-app && npm run build",
|
|
40
40
|
"test:dev": "npm run build && npm run dev:test-app",
|
|
41
41
|
"lint": "eslint src --ext ts,tsx",
|
|
42
42
|
"type-check": "tsc --noEmit",
|
|
@@ -44,7 +44,8 @@
|
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"react": "^18.0.0 || ^19.0.0",
|
|
47
|
-
"react-dom": "^18.0.0 || ^19.0.0"
|
|
47
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
48
|
+
"hazo_core": "^1.0.0"
|
|
48
49
|
},
|
|
49
50
|
"dependencies": {
|
|
50
51
|
"@dnd-kit/core": "^6.1.0",
|
|
@@ -110,6 +111,7 @@
|
|
|
110
111
|
"@types/canvas-confetti": "^1.9.0",
|
|
111
112
|
"@types/react": "^18.3.3",
|
|
112
113
|
"@types/react-dom": "^18.3.0",
|
|
114
|
+
"hazo_core": "^1.0.0",
|
|
113
115
|
"postcss": "^8.4.49",
|
|
114
116
|
"react": "^18.3.1",
|
|
115
117
|
"react-dom": "^18.3.1",
|