@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 +1 -1
- package/dist/index.js +4 -2
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-panel v10.
|
|
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.
|
|
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.
|
|
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": "95f2bef12f132245b2f2a09fc23d6500467a7251"
|
|
62
62
|
}
|