@versini/ui-panel 10.0.3 → 10.1.1

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/index.d.ts CHANGED
@@ -42,7 +42,7 @@ declare type PanelProps = {
42
42
  /**
43
43
  * The type of Panel border.
44
44
  */
45
- borderMode?: "dark" | "light";
45
+ borderMode?: "dark" | "medium" | "light";
46
46
  /**
47
47
  * The content to render in the footer.
48
48
  */
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- @versini/ui-panel v10.0.3
2
+ @versini/ui-panel v10.1.1
3
3
  © 2026 gizmette.com
4
4
  */
5
5
 
@@ -240,6 +240,7 @@ const getPanelClassName = ({ className, kind, borderMode, animation, maxWidth =
240
240
  * Panel border colors
241
241
  */ "sm:border-border-dark": borderMode === "dark" && kind === /* inlined export .TYPE_PANEL */ ("panel"),
242
242
  "sm:border-border-accent": borderMode === "light" && kind === /* inlined export .TYPE_PANEL */ ("panel"),
243
+ "sm:border-border-medium": borderMode === "medium" && kind === /* inlined export .TYPE_PANEL */ ("panel"),
243
244
  /**
244
245
  * Messagebox styles
245
246
  */ [`${MESSAGEBOX_CLASSNAME} rounded-3xl border`]: kind === TYPE_MESSAGEBOX,
@@ -254,7 +255,8 @@ const getPanelClassName = ({ className, kind, borderMode, animation, maxWidth =
254
255
  /**
255
256
  * Messagebox border colors
256
257
  */ "border-border-dark": borderMode === "dark" && kind === TYPE_MESSAGEBOX,
257
- "border-border-accent": borderMode === "light" && kind === TYPE_MESSAGEBOX
258
+ "border-border-accent": borderMode === "light" && kind === TYPE_MESSAGEBOX,
259
+ "border-border-medium": borderMode === "medium" && kind === TYPE_MESSAGEBOX
258
260
  }, className),
259
261
  innerWrapper: "content flex flex-col rounded-[inherit] relative min-h-full",
260
262
  scrollableContent: clsx("flex-1 overflow-y-auto overflow-x-hidden", "pt-12", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@versini/ui-panel",
3
- "version": "10.0.3",
3
+ "version": "10.1.1",
4
4
  "license": "MIT",
5
5
  "author": "Arno Versini",
6
6
  "publishConfig": {
@@ -43,7 +43,7 @@
43
43
  },
44
44
  "devDependencies": {
45
45
  "@testing-library/jest-dom": "6.9.1",
46
- "@versini/ui-button": "11.3.5",
46
+ "@versini/ui-button": "11.3.6",
47
47
  "@versini/ui-system": "6.0.2",
48
48
  "@versini/ui-types": "8.3.0"
49
49
  },
@@ -58,5 +58,5 @@
58
58
  "sideEffects": [
59
59
  "**/*.css"
60
60
  ],
61
- "gitHead": "e1f66fb685ddf40b22301f1fe766a2c56ddc4388"
61
+ "gitHead": "95f2bef12f132245b2f2a09fc23d6500467a7251"
62
62
  }