@doist/reactist 17.1.0 → 17.2.0
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/reactist.cjs.development.js +3 -2
- package/dist/reactist.cjs.development.js.map +1 -1
- package/dist/reactist.cjs.production.min.js +1 -1
- package/dist/reactist.cjs.production.min.js.map +1 -1
- package/es/new-components/modal/modal.js +3 -2
- package/es/new-components/modal/modal.js.map +1 -1
- package/lib/new-components/modal/modal.d.ts +6 -2
- package/lib/new-components/modal/modal.js +1 -1
- package/lib/new-components/modal/modal.js.map +1 -1
- package/package.json +1 -1
|
@@ -2053,7 +2053,7 @@ function Badge(_ref) {
|
|
|
2053
2053
|
|
|
2054
2054
|
var modules_8f59d13b = {"overlay":"_868392ae","fadein":"_63d7ee15","fitContent":"b8548bf2","container":"_31956461","full":"_1007df83","large":"_10c275aa","medium":"_0ac526b4","small":"_30f38fdb","xlarge":"_54868e8b","expand":"c0bc68bc","buttonContainer":"_6527332a","headerContent":"_4750dc1b"};
|
|
2055
2055
|
|
|
2056
|
-
const _excluded$q = ["isOpen", "onDismiss", "height", "width", "exceptionallySetClassName", "autoFocus", "children"],
|
|
2056
|
+
const _excluded$q = ["isOpen", "onDismiss", "height", "width", "exceptionallySetClassName", "exceptionallySetOverlayClassName", "autoFocus", "children"],
|
|
2057
2057
|
_excluded2$1 = ["children", "button", "withDivider", "exceptionallySetClassName"],
|
|
2058
2058
|
_excluded3 = ["exceptionallySetClassName", "children"],
|
|
2059
2059
|
_excluded4 = ["exceptionallySetClassName", "withDivider"],
|
|
@@ -2084,6 +2084,7 @@ function Modal(_ref) {
|
|
|
2084
2084
|
height = 'fitContent',
|
|
2085
2085
|
width = 'medium',
|
|
2086
2086
|
exceptionallySetClassName,
|
|
2087
|
+
exceptionallySetOverlayClassName,
|
|
2087
2088
|
autoFocus = true,
|
|
2088
2089
|
children
|
|
2089
2090
|
} = _ref,
|
|
@@ -2135,7 +2136,7 @@ function Modal(_ref) {
|
|
|
2135
2136
|
}, /*#__PURE__*/React.createElement(Box, {
|
|
2136
2137
|
"data-testid": "modal-overlay",
|
|
2137
2138
|
"data-overlay": true,
|
|
2138
|
-
className: classNames(modules_8f59d13b.overlay, modules_8f59d13b[height], modules_8f59d13b[width]),
|
|
2139
|
+
className: classNames(modules_8f59d13b.overlay, modules_8f59d13b[height], modules_8f59d13b[width], exceptionallySetOverlayClassName),
|
|
2139
2140
|
onClick: handleBackdropClick,
|
|
2140
2141
|
ref: backdropRef
|
|
2141
2142
|
}, /*#__PURE__*/React.createElement(FocusLock, {
|