@versini/ui-dialog 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 +3 -3
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-dialog v10.1.
|
|
2
|
+
@versini/ui-dialog v10.1.2
|
|
3
3
|
© 2026 gizmette.com
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -122,7 +122,7 @@ const getDialogClassName = ({ className, kind, borderMode, animation, maxWidth =
|
|
|
122
122
|
}),
|
|
123
123
|
title: "mb-0 pt-2 pl-4 pr-2 pb-2",
|
|
124
124
|
closeWrapper: "pr-[18px]",
|
|
125
|
-
closeButton: clsx("flex items-center justify-center", "size-
|
|
125
|
+
closeButton: clsx("flex items-center justify-center", "size-4", "rounded-full", "cursor-pointer", "border border-border-danger-dark", "bg-[radial-gradient(circle_at_35%_25%,_#ff9d98_0%,_#ff6055_45%,_#e0352e_100%)]", "shadow-[0_1px_2px_rgba(0,0,0,0.35),inset_0_1px_1px_rgba(255,255,255,0.35),inset_0_-1px_1px_rgba(0,0,0,0.15)]", "text-transparent", "hover:text-copy-dark", "focus:text-copy-dark", "focus:outline-1", "focus:outline-offset-2", "focus:outline-focus-light", "active:bg-[radial-gradient(circle_at_35%_25%,_#d08580_0%,_#ba504a_45%,_#8a2a25_100%)]", "active:shadow-[inset_0_1px_3px_rgba(0,0,0,0.3)]", // Extended touch target using pseudo-element
|
|
126
126
|
"relative", "before:content-['']", "before:absolute", "before:-top-4", "before:-right-4", "before:-bottom-4", "before:-left-4"),
|
|
127
127
|
content: "p-4 rounded-3xl"
|
|
128
128
|
};
|
|
@@ -318,7 +318,7 @@ const Dialog = ({ open, onOpenChange, title, children, footer, borderMode = "lig
|
|
|
318
318
|
onClick: handleClose,
|
|
319
319
|
children: /*#__PURE__*/ jsx("svg", {
|
|
320
320
|
xmlns: "http://www.w3.org/2000/svg",
|
|
321
|
-
className: "size-
|
|
321
|
+
className: "size-3",
|
|
322
322
|
viewBox: "0 0 384 512",
|
|
323
323
|
fill: "currentColor",
|
|
324
324
|
role: "img",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versini/ui-dialog",
|
|
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": "12.0.
|
|
46
|
+
"@versini/ui-button": "12.0.4",
|
|
47
47
|
"@versini/ui-system": "6.0.4",
|
|
48
48
|
"@versini/ui-types": "8.3.0"
|
|
49
49
|
},
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"sideEffects": [
|
|
55
55
|
"**/*.css"
|
|
56
56
|
],
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "6b50d466dbc1261a8539f469016ab438e4e8e51c"
|
|
58
58
|
}
|