@konoma-development/react-components 0.2.1 → 0.2.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/@konoma-development/react-components.js +312 -183
- package/dist/@konoma-development/react-components.js.map +1 -1
- package/dist/components/form/checkbox.d.ts +1 -1
- package/dist/components/form/checkboxList.d.ts +1 -1
- package/dist/components/form/form.d.ts +2 -1
- package/dist/components/form/input.d.ts +1 -1
- package/dist/components/form/phoneInput.d.ts +1 -1
- package/dist/components/form/radiobuttonGroup.d.ts +1 -1
- package/dist/components/form/select.d.ts +1 -1
- package/dist/components/form/tagList.d.ts +1 -1
- package/dist/components/form/textarea.d.ts +1 -1
- package/dist/components/form/types.d.ts +5 -1
- package/dist/components/form/validators.d.ts +2 -2
- package/dist/components/table/pagination.d.ts +2 -1
- package/dist/components/table/table.d.ts +2 -1
- package/dist/components/ui/button.d.ts +3 -1
- package/dist/components/ui/icon.d.ts +2 -1
- package/dist/components/ui/modal.d.ts +2 -1
- package/dist/components/ui/tabs.d.ts +2 -1
- package/dist/components/ui/tag.d.ts +2 -1
- package/dist/eslint.config.d.ts +2 -1174
- package/package.json +8 -8
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@konoma-development/react-components",
|
|
3
3
|
"packageManager": "yarn@4.6.0",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.2",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -29,13 +29,13 @@
|
|
|
29
29
|
"@emotion/styled": "^11.14.1",
|
|
30
30
|
"@eslint/compat": "^1.2.5",
|
|
31
31
|
"@eslint/js": "^9.18.0",
|
|
32
|
-
"@floating-ui/react": "^0.27.
|
|
32
|
+
"@floating-ui/react": "^0.27.16",
|
|
33
33
|
"@heroicons/react": "^2.2.0",
|
|
34
34
|
"@iconify-icon/react": "^2.3.0",
|
|
35
35
|
"@tailwindcss/postcss": "^4.1.10",
|
|
36
36
|
"@types/node": "^22.10.8",
|
|
37
|
-
"@types/react": "^19.
|
|
38
|
-
"@types/react-dom": "^19.
|
|
37
|
+
"@types/react": "^19.2.6",
|
|
38
|
+
"@types/react-dom": "^19.2.3",
|
|
39
39
|
"@typescript-eslint/parser": "^8.21.0",
|
|
40
40
|
"@vitejs/plugin-react": "^4.3.4",
|
|
41
41
|
"dnd-core": "^16.0.1",
|
|
@@ -50,11 +50,11 @@
|
|
|
50
50
|
"prettier": "^3.4.2",
|
|
51
51
|
"prettier-plugin-tailwindcss": "^0.6.12",
|
|
52
52
|
"re-resizable": "^6.10.3",
|
|
53
|
-
"react": "^19.
|
|
53
|
+
"react": "^19.2.0",
|
|
54
54
|
"react-dnd": "^16.0.1",
|
|
55
55
|
"react-dnd-html5-backend": "^16.0.1",
|
|
56
56
|
"react-dnd-touch-backend": "^16.0.1",
|
|
57
|
-
"react-dom": "^19.
|
|
57
|
+
"react-dom": "^19.2.0",
|
|
58
58
|
"react-imask": "^7.6.1",
|
|
59
59
|
"react-select": "^5.9.0",
|
|
60
60
|
"rollup": "^4.31.0",
|
|
@@ -68,11 +68,11 @@
|
|
|
68
68
|
"peerDependencies": {
|
|
69
69
|
"dnd-core": "^16.0.1",
|
|
70
70
|
"re-resizable": "^6.10.3",
|
|
71
|
-
"react": "^19.
|
|
71
|
+
"react": "^19.2.0",
|
|
72
72
|
"react-dnd": "^16.0.1",
|
|
73
73
|
"react-dnd-html5-backend": "^16.0.1",
|
|
74
74
|
"react-dnd-touch-backend": "^16.0.1",
|
|
75
|
-
"react-dom": "^19.
|
|
75
|
+
"react-dom": "^19.2.0",
|
|
76
76
|
"react-imask": "^7.6.1",
|
|
77
77
|
"react-select": "^5.9.0"
|
|
78
78
|
}
|