@devopness/ui-react 2.178.0 → 2.180.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/src/components/Forms/Autocomplete/Autocomplete.d.ts +32 -0
- package/dist/src/components/Forms/Autocomplete/Autocomplete.styled.d.ts +1 -0
- package/dist/src/components/Forms/Autocomplete/index.d.ts +1 -0
- package/dist/src/components/Forms/RadioSelectCards/RadioSelectCards.d.ts +58 -0
- package/dist/src/components/Forms/RadioSelectCards/RadioSelectCards.styled.d.ts +2 -0
- package/dist/src/components/Forms/RadioSelectCards/index.d.ts +1 -0
- package/dist/src/components/Forms/TextArea/TextArea.d.ts +40 -0
- package/dist/src/components/Forms/TextArea/TextArea.styled.d.ts +9 -0
- package/dist/src/components/Forms/TextArea/index.d.ts +1 -0
- package/dist/src/components/Forms/index.d.ts +3 -0
- package/dist/src/components/Primitives/Popover/Popover.d.ts +33 -0
- package/dist/src/components/Primitives/Popover/Popover.styled.d.ts +10 -0
- package/dist/src/components/Primitives/Popover/index.d.ts +1 -0
- package/dist/src/components/Primitives/SourceAndHash/SourceAndHash.d.ts +59 -0
- package/dist/src/components/Primitives/SourceAndHash/SourceAndHash.styled.d.ts +3 -0
- package/dist/src/components/Primitives/SourceAndHash/index.d.ts +1 -0
- package/dist/src/components/Primitives/index.d.ts +2 -0
- package/dist/ui-react.cjs +528 -315
- package/dist/ui-react.js +10349 -7108
- package/package.json +11 -11
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"name": "@devopness/ui-react",
|
|
5
|
-
"version": "2.
|
|
5
|
+
"version": "2.180.0",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
8
8
|
},
|
|
@@ -70,11 +70,11 @@
|
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
72
|
"@emotion/styled": "^11.14.1",
|
|
73
|
-
"@eslint/js": "^9.
|
|
74
|
-
"@storybook/addon-a11y": "^9.1.
|
|
75
|
-
"@storybook/addon-docs": "9.1.
|
|
73
|
+
"@eslint/js": "^9.36.0",
|
|
74
|
+
"@storybook/addon-a11y": "^9.1.8",
|
|
75
|
+
"@storybook/addon-docs": "9.1.8",
|
|
76
76
|
"@storybook/csf": "^0.1.13",
|
|
77
|
-
"@storybook/react-vite": "9.1.
|
|
77
|
+
"@storybook/react-vite": "9.1.8",
|
|
78
78
|
"@testing-library/react": "^16.3.0",
|
|
79
79
|
"@types/lodash": "^4.17.20",
|
|
80
80
|
"@types/node": "^24.5.2",
|
|
@@ -82,24 +82,24 @@
|
|
|
82
82
|
"@types/react": "^18.3.13",
|
|
83
83
|
"@types/react-dom": "^18.3.0",
|
|
84
84
|
"@vitejs/plugin-react-swc": "^4.1.0",
|
|
85
|
-
"eslint": "^9.
|
|
85
|
+
"eslint": "^9.36.0",
|
|
86
86
|
"eslint-plugin-import": "^2.32.0",
|
|
87
87
|
"eslint-plugin-import-helpers": "^2.0.1",
|
|
88
88
|
"eslint-plugin-prefer-arrow": "^1.2.3",
|
|
89
89
|
"eslint-plugin-react": "^7.37.5",
|
|
90
90
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
91
|
-
"eslint-plugin-react-refresh": "^0.4.
|
|
92
|
-
"eslint-plugin-storybook": "^9.1.
|
|
91
|
+
"eslint-plugin-react-refresh": "^0.4.21",
|
|
92
|
+
"eslint-plugin-storybook": "^9.1.8",
|
|
93
93
|
"globals": "^16.4.0",
|
|
94
94
|
"jsdom": "^27.0.0",
|
|
95
95
|
"prettier": "^3.6.1",
|
|
96
96
|
"prettier-plugin-multiline-arrays": "^4.0.3",
|
|
97
97
|
"react": "^18.3.1",
|
|
98
98
|
"react-dom": "^18.3.1",
|
|
99
|
-
"storybook": "9.1.
|
|
99
|
+
"storybook": "9.1.8",
|
|
100
100
|
"typescript": "^5.9.2",
|
|
101
|
-
"typescript-eslint": "~8.44.
|
|
102
|
-
"vite": "^7.1.
|
|
101
|
+
"typescript-eslint": "~8.44.1",
|
|
102
|
+
"vite": "^7.1.7",
|
|
103
103
|
"vite-plugin-dts": "^4.5.4",
|
|
104
104
|
"vite-tsconfig-paths": "^5.1.4",
|
|
105
105
|
"vitest": "^3.2.4"
|