@krosoft/react 0.0.68 → 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.
Files changed (34) hide show
  1. package/dist/{KpiCards-jWYPbprR.js → KpiCards-D4Cy8CLT.js} +7 -6
  2. package/dist/{SearchInput-C2mFWiBb.js → SearchInput-LIey3bo9.js} +9 -8
  3. package/dist/Topbar-CtXJ337W.js +2314 -0
  4. package/dist/{badge-EcCaGyMI.js → badge-Cj2EQgcL.js} +3 -3
  5. package/dist/components/core/cards/index.js +1 -1
  6. package/dist/components/core/index.d.ts +1 -0
  7. package/dist/components/core/index.d.ts.map +1 -1
  8. package/dist/components/core/index.js +6 -3
  9. package/dist/components/core/inputs/index.js +1 -1
  10. package/dist/components/core/navbar/Sidebar.d.ts +32 -0
  11. package/dist/components/core/navbar/Sidebar.d.ts.map +1 -0
  12. package/dist/components/core/navbar/SidebarNavItem.d.ts +9 -0
  13. package/dist/components/core/navbar/SidebarNavItem.d.ts.map +1 -0
  14. package/dist/components/core/navbar/Topbar.d.ts +10 -0
  15. package/dist/components/core/navbar/Topbar.d.ts.map +1 -0
  16. package/dist/components/core/navbar/index.d.ts +3 -0
  17. package/dist/components/core/navbar/index.d.ts.map +1 -0
  18. package/dist/components/core/navbar/index.js +5 -0
  19. package/dist/components/index.js +33 -29
  20. package/dist/components/ui/index.js +18 -17
  21. package/dist/components/ui/separator.d.ts +5 -0
  22. package/dist/components/ui/separator.d.ts.map +1 -0
  23. package/dist/components/ui/sheet.d.ts +26 -0
  24. package/dist/components/ui/sheet.d.ts.map +1 -0
  25. package/dist/components/ui/skeleton.d.ts +3 -0
  26. package/dist/components/ui/skeleton.d.ts.map +1 -0
  27. package/dist/components/ui/tooltip.d.ts +8 -0
  28. package/dist/components/ui/tooltip.d.ts.map +1 -0
  29. package/dist/hooks/index.js +3 -1
  30. package/dist/hooks/ui/useMobile.d.ts.map +1 -1
  31. package/dist/index-BNCR478R.js +272 -0
  32. package/dist/toast-B6CC_ory.js +856 -0
  33. package/package.json +10 -7
  34. 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.68",
3
+ "version": "0.0.70",
4
4
  "description": "Krosoft shared React package",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -35,33 +35,36 @@
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",
43
46
  "tailwind-merge": "^2.6.1"
44
47
  },
45
48
  "devDependencies": {
46
- "@krosoft/core": "^0.0.34",
47
- "@krosoft/tooling-eslint-react": "^0.0.17",
49
+ "@krosoft/core": "^0.0.35",
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
- "@types/node": "^25.8.0",
54
- "@types/react": "^18.3.28",
56
+ "@types/node": "^25.9.1",
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.6"
68
+ "vitest": "^4.1.7"
66
69
  }
67
70
  }