@versini/ui-panel 3.5.0 → 3.5.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.
Files changed (2) hide show
  1. package/dist/index.js +6 -6
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -1,12 +1,12 @@
1
1
  /*!
2
- @versini/ui-panel v3.5.0
2
+ @versini/ui-panel v3.5.1
3
3
  © 2025 gizmette.com
4
4
  */
5
5
  try {
6
6
  if (!window.__VERSINI_UI_PANEL__) {
7
7
  window.__VERSINI_UI_PANEL__ = {
8
- version: "3.5.0",
9
- buildTime: "11/28/2025 11:17 AM EST",
8
+ version: "3.5.1",
9
+ buildTime: "11/28/2025 12:47 PM EST",
10
10
  homepage: "https://github.com/aversini/ui-components",
11
11
  license: "MIT",
12
12
  };
@@ -46,7 +46,7 @@ const PANEL_CLASSNAME = "av-panel";
46
46
  if (!window.__VERSINI_UI_MODAL__) {
47
47
  window.__VERSINI_UI_MODAL__ = {
48
48
  version: "3.1.0",
49
- buildTime: "11/28/2025 11:17 AM EST",
49
+ buildTime: "11/28/2025 12:47 PM EST",
50
50
  homepage: "https://github.com/aversini/ui-components",
51
51
  license: "MIT"
52
52
  };
@@ -235,12 +235,12 @@ const getPanelClassName = ({ className, kind, borderMode, animation, maxWidth =
235
235
  [`${className}`]: !!className
236
236
  }),
237
237
  innerWrapper: "content flex flex-col overflow-y-auto",
238
- footer: clsx("p-2 sticky bottom-0 z-10 rounded-b-md", {
238
+ footer: clsx("p-2 sticky bottom-0 z-10 sm:rounded-b-md", "backdrop-brightness-50", {
239
239
  "backdrop-blur-sm": footerBlurEffect === "light",
240
240
  "backdrop-blur-lg": footerBlurEffect === "heavy",
241
241
  "bg-surface-dark": footerBlurEffect === "none"
242
242
  }),
243
- header: clsx("flex flex-row-reverse items-center justify-between", "sticky top-0 z-10 rounded-t-md", {
243
+ header: clsx("flex flex-row-reverse items-center justify-between", "sticky top-0 z-10 sm:rounded-t-md", "backdrop-brightness-50", {
244
244
  "backdrop-blur-sm": headerBlurEffect === "light",
245
245
  "backdrop-blur-lg": headerBlurEffect === "heavy",
246
246
  "bg-surface-dark": headerBlurEffect === "none"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@versini/ui-panel",
3
- "version": "3.5.0",
3
+ "version": "3.5.1",
4
4
  "license": "MIT",
5
5
  "author": "Arno Versini",
6
6
  "publishConfig": {
@@ -50,5 +50,5 @@
50
50
  "sideEffects": [
51
51
  "**/*.css"
52
52
  ],
53
- "gitHead": "98a9f0ceb3137413647fcc722ed8d30f6a279a80"
53
+ "gitHead": "ca6d7648786a5ed9f6f4880b0edb36beca9439a5"
54
54
  }