@vertesia/ui 0.76.0 → 0.77.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertesia/ui",
3
- "version": "0.76.0",
3
+ "version": "0.77.0",
4
4
  "description": "Vertesia UI components and and hooks",
5
5
  "type": "module",
6
6
  "main": "./lib/index.js",
@@ -60,9 +60,9 @@
60
60
  "tailwind-merge": "^3.3.0",
61
61
  "ts-md5": "^1.3.1",
62
62
  "unist-util-visit": "^5.0.0",
63
- "@vertesia/client": "0.76.0",
64
- "@vertesia/json": "0.76.0",
65
- "@vertesia/common": "0.76.0"
63
+ "@vertesia/client": "0.77.0",
64
+ "@vertesia/common": "0.77.0",
65
+ "@vertesia/json": "0.77.0"
66
66
  },
67
67
  "devDependencies": {
68
68
  "@eslint/js": "^9.27.0",
@@ -42,11 +42,11 @@ export function SidePanel({ isOpen, title, onClose, children, panelWidth = 768,
42
42
  return (
43
43
  <AnimatePresence>
44
44
  {isOpen && (
45
- <div className="relative z-10">
45
+ <div className="relative z-20">
46
46
  {/* Backdrop */}
47
47
  {backdrop && (
48
48
  <motion.div
49
- className="fixed inset-0 bg-black bg-opacity-50"
49
+ className="fixed inset-0 bg-black/70"
50
50
  initial={{ opacity: 0 }}
51
51
  animate={{ opacity: 1 }}
52
52
  exit={{ opacity: 0 }}