@konstructio/ui 0.1.2-alpha.22 → 0.1.2-alpha.24
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/components/Dropdown/Dropdown.js +37 -31
- package/dist/components/Dropdown/components/List/List.js +128 -66
- package/dist/components/Dropdown/components/Wrapper.js +136 -135
- package/dist/components/Dropdown/constants/index.js +4 -0
- package/dist/components/Dropdown/constants/pagination.js +4 -0
- package/dist/components/Dropdown/contexts/dropdown.context.js +16 -0
- package/dist/components/Dropdown/contexts/dropdown.provider.js +43 -20
- package/dist/components/Dropdown/hooks/useDropdown.js +72 -31
- package/dist/components/Dropdown/hooks/useNavigationList.js +28 -40
- package/dist/components/VirtualizedTable/VirtualizedTable.js +20 -19
- package/dist/components/VirtualizedTable/components/Body/Body.js +33 -25
- package/dist/components/VirtualizedTable/components/Pagination/Pagination.js +20 -19
- package/dist/components/VirtualizedTable/components/Skeleton/Skeleton.js +46 -31
- package/dist/index.d.ts +18 -2
- package/dist/package.json +17 -17
- package/dist/styles.css +1 -1
- package/dist/utils/index.js +534 -501
- package/package.json +17 -17
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@konstructio/ui",
|
|
3
3
|
"description": "A set of reusable and customizable React components built for konstruct.io",
|
|
4
4
|
"private": false,
|
|
5
|
-
"version": "0.1.2-alpha.
|
|
5
|
+
"version": "0.1.2-alpha.24",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"main": "dist/index.js",
|
|
@@ -72,13 +72,13 @@
|
|
|
72
72
|
"cmdk": "^1.1.1",
|
|
73
73
|
"countries-and-timezones": "^3.8.0",
|
|
74
74
|
"js-cookie": "^3.0.5",
|
|
75
|
-
"lucide-react": "^0.
|
|
75
|
+
"lucide-react": "^0.554.0",
|
|
76
76
|
"react-chartjs-2": "^5.3.1",
|
|
77
77
|
"react-day-picker": "^9.11.1",
|
|
78
78
|
"react-feather": "^2.0.10",
|
|
79
79
|
"react-focus-lock": "^2.13.6",
|
|
80
80
|
"react-remove-scroll": "^2.7.1",
|
|
81
|
-
"tailwind-merge": "^3.
|
|
81
|
+
"tailwind-merge": "^3.4.0"
|
|
82
82
|
},
|
|
83
83
|
"peerDependencies": {
|
|
84
84
|
"@tanstack/react-query": "^5.90",
|
|
@@ -115,43 +115,43 @@
|
|
|
115
115
|
"devDependencies": {
|
|
116
116
|
"@faker-js/faker": "^10.1.0",
|
|
117
117
|
"@rollup/plugin-alias": "^6.0.0",
|
|
118
|
-
"@storybook/addon-docs": "^10.0.
|
|
119
|
-
"@storybook/addon-links": "^10.0.
|
|
120
|
-
"@storybook/react-vite": "^10.0.
|
|
118
|
+
"@storybook/addon-docs": "^10.0.8",
|
|
119
|
+
"@storybook/addon-links": "^10.0.8",
|
|
120
|
+
"@storybook/react-vite": "^10.0.8",
|
|
121
121
|
"@tailwindcss/vite": "^4.1.17",
|
|
122
|
-
"@tanstack/react-query": "^5.90.
|
|
122
|
+
"@tanstack/react-query": "^5.90.10",
|
|
123
123
|
"@testing-library/jest-dom": "^6.9.1",
|
|
124
124
|
"@testing-library/react": "^16.3.0",
|
|
125
125
|
"@testing-library/user-event": "^14.6.1",
|
|
126
126
|
"@types/jest-axe": "^3.5.9",
|
|
127
127
|
"@types/js-cookie": "^3.0.6",
|
|
128
128
|
"@types/lodash": "^4.17.20",
|
|
129
|
-
"@types/react": "^19.2.
|
|
130
|
-
"@types/react-dom": "^19.2.
|
|
131
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
132
|
-
"@typescript-eslint/parser": "^8.
|
|
133
|
-
"@vitejs/plugin-react": "^5.1.
|
|
129
|
+
"@types/react": "^19.2.6",
|
|
130
|
+
"@types/react-dom": "^19.2.3",
|
|
131
|
+
"@typescript-eslint/eslint-plugin": "^8.47.0",
|
|
132
|
+
"@typescript-eslint/parser": "^8.47.0",
|
|
133
|
+
"@vitejs/plugin-react": "^5.1.1",
|
|
134
134
|
"@vitest/coverage-v8": "^3.2.4",
|
|
135
|
-
"autoprefixer": "^10.4.
|
|
135
|
+
"autoprefixer": "^10.4.22",
|
|
136
136
|
"eslint": "^9.39.1",
|
|
137
137
|
"eslint-plugin-react": "^7.37.5",
|
|
138
138
|
"eslint-plugin-react-hooks": "^6.1.1",
|
|
139
139
|
"eslint-plugin-react-refresh": "^0.4.23",
|
|
140
140
|
"eslint-plugin-storybook": "^9.1.13",
|
|
141
141
|
"eslint-plugin-vitest": "^0.5.4",
|
|
142
|
-
"glob": "^
|
|
142
|
+
"glob": "^12.0.0",
|
|
143
143
|
"husky": "^9.1.7",
|
|
144
144
|
"jest-axe": "^10.0.0",
|
|
145
|
-
"jsdom": "^27.
|
|
145
|
+
"jsdom": "^27.2.0",
|
|
146
146
|
"lodash": "^4.17.21",
|
|
147
147
|
"postcss": "^8.5.6",
|
|
148
148
|
"prettier": "^3.6.2",
|
|
149
149
|
"rimraf": "^6.1.0",
|
|
150
|
-
"storybook": "^10.0.
|
|
150
|
+
"storybook": "^10.0.8",
|
|
151
151
|
"tailwindcss": "^4.1.17",
|
|
152
152
|
"ts-node": "^10.9.2",
|
|
153
153
|
"typescript": "^5.9.3",
|
|
154
|
-
"vite": "^7.2.
|
|
154
|
+
"vite": "^7.2.2",
|
|
155
155
|
"vite-plugin-dts": "^4.5.4",
|
|
156
156
|
"vite-plugin-lib-inject-css": "^2.2.2",
|
|
157
157
|
"vite-plugin-svgr": "^4.5.0",
|