@krosoft/react 0.0.69 → 0.0.70
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/{KpiCards-jWYPbprR.js → KpiCards-D4Cy8CLT.js} +7 -6
- package/dist/{SearchInput-C2mFWiBb.js → SearchInput-LIey3bo9.js} +9 -8
- package/dist/Topbar-CtXJ337W.js +2314 -0
- package/dist/{badge-EcCaGyMI.js → badge-Cj2EQgcL.js} +3 -3
- package/dist/components/core/cards/index.js +1 -1
- package/dist/components/core/index.d.ts +1 -0
- package/dist/components/core/index.d.ts.map +1 -1
- package/dist/components/core/index.js +6 -3
- package/dist/components/core/inputs/index.js +1 -1
- package/dist/components/core/navbar/Sidebar.d.ts +32 -0
- package/dist/components/core/navbar/Sidebar.d.ts.map +1 -0
- package/dist/components/core/navbar/SidebarNavItem.d.ts +9 -0
- package/dist/components/core/navbar/SidebarNavItem.d.ts.map +1 -0
- package/dist/components/core/navbar/Topbar.d.ts +10 -0
- package/dist/components/core/navbar/Topbar.d.ts.map +1 -0
- package/dist/components/core/navbar/index.d.ts +3 -0
- package/dist/components/core/navbar/index.d.ts.map +1 -0
- package/dist/components/core/navbar/index.js +5 -0
- package/dist/components/index.js +33 -29
- package/dist/components/ui/index.js +18 -17
- package/dist/components/ui/separator.d.ts +5 -0
- package/dist/components/ui/separator.d.ts.map +1 -0
- package/dist/components/ui/sheet.d.ts +26 -0
- package/dist/components/ui/sheet.d.ts.map +1 -0
- package/dist/components/ui/skeleton.d.ts +3 -0
- package/dist/components/ui/skeleton.d.ts.map +1 -0
- package/dist/components/ui/tooltip.d.ts +8 -0
- package/dist/components/ui/tooltip.d.ts.map +1 -0
- package/dist/hooks/index.js +3 -1
- package/dist/hooks/ui/useMobile.d.ts.map +1 -1
- package/dist/index-BNCR478R.js +272 -0
- package/dist/toast-B6CC_ory.js +856 -0
- package/package.json +8 -5
- package/dist/toast-B6sBreHk.js +0 -1107
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@krosoft/react",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.70",
|
|
4
4
|
"description": "Krosoft shared React package",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -35,8 +35,11 @@
|
|
|
35
35
|
"react-i18next": ">=17.0.8"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
39
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
38
40
|
"@radix-ui/react-popover": "^1.1.15",
|
|
39
41
|
"@radix-ui/react-toast": "^1.2.15",
|
|
42
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
40
43
|
"class-variance-authority": "^0.7.1",
|
|
41
44
|
"clsx": "^2.1.1",
|
|
42
45
|
"lucide-react": "^1.16.0",
|
|
@@ -44,24 +47,24 @@
|
|
|
44
47
|
},
|
|
45
48
|
"devDependencies": {
|
|
46
49
|
"@krosoft/core": "^0.0.35",
|
|
47
|
-
"@krosoft/tooling-eslint-react": "^0.0.
|
|
50
|
+
"@krosoft/tooling-eslint-react": "^0.0.18",
|
|
48
51
|
"@krosoft/tooling-prettier": "^0.0.14",
|
|
49
52
|
"@krosoft/tooling-tsconfig-react": "^0.0.10",
|
|
50
53
|
"@storybook/addon-essentials": "^8.6.18",
|
|
51
54
|
"@storybook/react": "^8.6.18",
|
|
52
55
|
"@storybook/react-vite": "^8.6.18",
|
|
53
56
|
"@types/node": "^25.9.1",
|
|
54
|
-
"@types/react": "^18.3.
|
|
57
|
+
"@types/react": "^18.3.29",
|
|
58
|
+
"autoprefixer": "^10.5.0",
|
|
55
59
|
"jsdom": "^26.1.0",
|
|
56
60
|
"prettier": "^3.8.3",
|
|
57
61
|
"react": "^18.3.1",
|
|
58
62
|
"react-dom": "^18.3.1",
|
|
59
63
|
"react-i18next": "^17.0.8",
|
|
60
64
|
"storybook": "^8.6.18",
|
|
61
|
-
"autoprefixer": "^10.5.0",
|
|
62
65
|
"tailwindcss": "^3.4.19",
|
|
63
66
|
"typescript": "^5.9.3",
|
|
64
67
|
"vite": "^6.4.2",
|
|
65
|
-
"vitest": "^4.1.
|
|
68
|
+
"vitest": "^4.1.7"
|
|
66
69
|
}
|
|
67
70
|
}
|