@versini/ui-panel 10.1.0 → 10.1.2
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.js +4 -4
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-panel v10.1.
|
|
2
|
+
@versini/ui-panel v10.1.2
|
|
3
3
|
© 2026 gizmette.com
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -233,9 +233,9 @@ const getPanelClassName = ({ className, kind, borderMode, animation, maxWidth =
|
|
|
233
233
|
/**
|
|
234
234
|
* Heights and max heights for Panel
|
|
235
235
|
* Mobile: full height, Desktop: clamp between min and max to allow flexible sizing
|
|
236
|
-
*/ "min-h-40 max-h-full sm:max-h-[
|
|
237
|
-
"min-h-40 max-h-full sm:max-h-[
|
|
238
|
-
"min-h-40 max-h-full sm:max-h-[
|
|
236
|
+
*/ "min-h-40 max-h-full sm:max-h-[40dvh]": kind === /* inlined export .TYPE_PANEL */ ("panel") && effectiveMaxHeight === /* inlined export .SMALL */ ("small"),
|
|
237
|
+
"min-h-40 max-h-full sm:max-h-[60dvh]": kind === /* inlined export .TYPE_PANEL */ ("panel") && effectiveMaxHeight === /* inlined export .MEDIUM */ ("medium"),
|
|
238
|
+
"min-h-40 max-h-full sm:max-h-[95dvh]": kind === /* inlined export .TYPE_PANEL */ ("panel") && effectiveMaxHeight === /* inlined export .LARGE */ ("large"),
|
|
239
239
|
/**
|
|
240
240
|
* Panel border colors
|
|
241
241
|
*/ "sm:border-border-dark": borderMode === "dark" && kind === /* inlined export .TYPE_PANEL */ ("panel"),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versini/ui-panel",
|
|
3
|
-
"version": "10.1.
|
|
3
|
+
"version": "10.1.2",
|
|
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.
|
|
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": "
|
|
61
|
+
"gitHead": "d6fd5519970ce6952fa83f584ce852a493cfdb85"
|
|
62
62
|
}
|