@plastic-js/tsumiki 0.1.74 → 0.1.76
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.
|
@@ -130,7 +130,7 @@ var footerClass = css({
|
|
|
130
130
|
padding: "var(--tsu-container-padding-lg)",
|
|
131
131
|
flexShrink: 0
|
|
132
132
|
});
|
|
133
|
-
var footerSheetClass = css({ paddingBottom: "
|
|
133
|
+
var footerSheetClass = css({ paddingBottom: "var(--tsu-container-padding-lg)" });
|
|
134
134
|
var footerBtnClass = css({
|
|
135
135
|
display: "flex",
|
|
136
136
|
gap: "20px",
|
|
@@ -279,7 +279,8 @@ var Dialog$1 = (props) => {
|
|
|
279
279
|
get closeOnInteractOutside() {
|
|
280
280
|
return local.closeOnInteractOutside;
|
|
281
281
|
},
|
|
282
|
-
modal: true
|
|
282
|
+
modal: true,
|
|
283
|
+
preventScroll: isSheet ? false : void 0
|
|
283
284
|
}, rest, { children: jsx(DialogPortal, mergeProps({ children: [jsx(Dialog.Backdrop, mergeProps({ className: isSheet ? backdropSheetClass : backdropModalClass })), jsx(Dialog.Positioner, mergeProps({
|
|
284
285
|
className: isSheet ? positionerSheetClass : positionerModalClass,
|
|
285
286
|
children: jsx(Dialog.Content, mergeProps({
|