chop-logic-components 3.7.0 → 3.7.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/README.md +3 -0
- package/dist/index.cjs.js +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +22 -1
- package/dist/index.es.js +1720 -1462
- package/dist/index.es.js.map +1 -1
- package/package.json +12 -12
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "git+https://github.com/ChopLogic/chop-logic-components.git"
|
|
6
6
|
},
|
|
7
|
-
"version": "3.7.
|
|
7
|
+
"version": "3.7.2",
|
|
8
8
|
"description": "Reusable React components and hooks for the Chop Logic project",
|
|
9
9
|
"type": "module",
|
|
10
10
|
"main": "dist/index.cjs.js",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"prepare": "npm run build && husky",
|
|
22
22
|
"format": "npm run format:biome && npm run format:prettier",
|
|
23
23
|
"format:biome": "biome format --write",
|
|
24
|
-
"format:prettier": "prettier --write \"**/*.{scss,mdx}\"",
|
|
24
|
+
"format:prettier": "prettier --write \"**/*.{scss,mdx,md}\"",
|
|
25
25
|
"lint": "npm run lint:biome && npm run lint:prettier",
|
|
26
26
|
"lint:biome": "biome check",
|
|
27
|
-
"lint:prettier": "prettier --check \"**/*.{scss,mdx}\"",
|
|
27
|
+
"lint:prettier": "prettier --check \"**/*.{scss,mdx,md}\"",
|
|
28
28
|
"lint:errors": "biome check --diagnostic-level error --max-diagnostics 100",
|
|
29
29
|
"lint:warnings": "biome check --diagnostic-level warn --max-diagnostics 100",
|
|
30
30
|
"lint:fix": "biome check --write",
|
|
@@ -63,29 +63,29 @@
|
|
|
63
63
|
"homepage": "https://choplogic.github.io/chop-logic-components",
|
|
64
64
|
"devDependencies": {
|
|
65
65
|
"@biomejs/biome": "^2.3.11",
|
|
66
|
-
"@commitlint/cli": "^20.3.
|
|
67
|
-
"@commitlint/config-conventional": "^20.3.
|
|
66
|
+
"@commitlint/cli": "^20.3.1",
|
|
67
|
+
"@commitlint/config-conventional": "^20.3.1",
|
|
68
68
|
"@storybook/addon-docs": "^10.1.11",
|
|
69
69
|
"@storybook/react-vite": "^10.1.11",
|
|
70
70
|
"@testing-library/jest-dom": "^6.9.1",
|
|
71
71
|
"@testing-library/react": "^16.3.1",
|
|
72
|
-
"@types/node": "^25.0.
|
|
73
|
-
"@types/react": "^19.2.
|
|
72
|
+
"@types/node": "^25.0.9",
|
|
73
|
+
"@types/react": "^19.2.8",
|
|
74
74
|
"@types/react-dom": "^19.2.3",
|
|
75
|
-
"@vitest/coverage-v8": "^4.0.
|
|
75
|
+
"@vitest/coverage-v8": "^4.0.17",
|
|
76
76
|
"globals": "^17.0.0",
|
|
77
77
|
"husky": "^9.1.7",
|
|
78
78
|
"husky-init": "^8.0.0",
|
|
79
79
|
"jsdom": "^27.4.0",
|
|
80
|
-
"prettier": "^3.
|
|
80
|
+
"prettier": "^3.8.0",
|
|
81
81
|
"remark-gfm": "^4.0.1",
|
|
82
|
-
"sass": "^1.97.
|
|
82
|
+
"sass": "^1.97.2",
|
|
83
83
|
"storybook": "^10.1.11",
|
|
84
84
|
"typescript": "^5.9.3",
|
|
85
|
-
"vite": "^7.3.
|
|
85
|
+
"vite": "^7.3.1",
|
|
86
86
|
"vite-plugin-dts": "^4.5.4",
|
|
87
87
|
"vite-plugin-lib-inject-css": "^2.2.2",
|
|
88
|
-
"vitest": "^4.0.
|
|
88
|
+
"vitest": "^4.0.17"
|
|
89
89
|
},
|
|
90
90
|
"overrides": {
|
|
91
91
|
"storybook": "$storybook"
|