@influenzanet/case-web-app-core 2.7.4-staging → 2.7.4-staging.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/build/index.es.js +5 -3
- package/build/index.es.js.map +1 -1
- package/build/index.js +5 -3
- package/build/index.js.map +1 -1
- package/package.json +2 -2
package/build/index.es.js
CHANGED
|
@@ -16013,6 +16013,8 @@ class ModalManager {
|
|
|
16013
16013
|
|
|
16014
16014
|
}
|
|
16015
16015
|
|
|
16016
|
+
var ModalManager$1 = ModalManager;
|
|
16017
|
+
|
|
16016
16018
|
const resolveContainerRef = (ref, document) => {
|
|
16017
16019
|
if (!canUseDOM) return null;
|
|
16018
16020
|
if (ref == null) return (document || ownerDocument()).body;
|
|
@@ -16051,7 +16053,7 @@ function _objectWithoutPropertiesLoose$4(source, excluded) { if (source == null)
|
|
|
16051
16053
|
let manager;
|
|
16052
16054
|
|
|
16053
16055
|
function getManager(window) {
|
|
16054
|
-
if (!manager) manager = new ModalManager({
|
|
16056
|
+
if (!manager) manager = new ModalManager$1({
|
|
16055
16057
|
ownerDocument: window == null ? void 0 : window.document
|
|
16056
16058
|
});
|
|
16057
16059
|
return manager;
|
|
@@ -16284,7 +16286,7 @@ const Modal = /*#__PURE__*/forwardRef$2((_ref, ref) => {
|
|
|
16284
16286
|
});
|
|
16285
16287
|
Modal.displayName = 'Modal';
|
|
16286
16288
|
var BaseModal = Object.assign(Modal, {
|
|
16287
|
-
Manager: ModalManager
|
|
16289
|
+
Manager: ModalManager$1
|
|
16288
16290
|
});
|
|
16289
16291
|
|
|
16290
16292
|
/**
|
|
@@ -16335,7 +16337,7 @@ const Selector = {
|
|
|
16335
16337
|
STICKY_CONTENT: '.sticky-top',
|
|
16336
16338
|
NAVBAR_TOGGLER: '.navbar-toggler'
|
|
16337
16339
|
};
|
|
16338
|
-
class BootstrapModalManager extends ModalManager {
|
|
16340
|
+
class BootstrapModalManager extends ModalManager$1 {
|
|
16339
16341
|
adjustAndStore(prop, element, adjust) {
|
|
16340
16342
|
const actual = element.style[prop];
|
|
16341
16343
|
// TODO: DOMStringMap and CSSStyleDeclaration aren't strictly compatible
|