@nulogy/components 8.1.5 → 8.1.7
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/main.js +57 -38
- package/dist/main.module.js +57 -38
- package/dist/src/Modal/Modal.d.ts +24 -2
- package/dist/src/Modal/Modal.story.d.ts +6 -0
- package/package.json +3 -3
package/dist/main.js
CHANGED
|
@@ -23679,7 +23679,7 @@
|
|
|
23679
23679
|
* http://api.jqueryui.com/category/ui-core/
|
|
23680
23680
|
*/
|
|
23681
23681
|
|
|
23682
|
-
var tabbableNode = /input|select|textarea|button|object/;
|
|
23682
|
+
var tabbableNode = /input|select|textarea|button|object|iframe/;
|
|
23683
23683
|
|
|
23684
23684
|
function hidesContents(element) {
|
|
23685
23685
|
var zeroSize = element.offsetWidth <= 0 && element.offsetHeight <= 0;
|
|
@@ -23702,8 +23702,13 @@
|
|
|
23702
23702
|
|
|
23703
23703
|
function visible(element) {
|
|
23704
23704
|
var parentElement = element;
|
|
23705
|
+
var rootNode = element.getRootNode && element.getRootNode();
|
|
23705
23706
|
while (parentElement) {
|
|
23706
23707
|
if (parentElement === document.body) break;
|
|
23708
|
+
|
|
23709
|
+
// if we are not hidden yet, skip to checking outside the Web Component
|
|
23710
|
+
if (rootNode && parentElement === rootNode) parentElement = rootNode.host.parentNode;
|
|
23711
|
+
|
|
23707
23712
|
if (hidesContents(parentElement)) return false;
|
|
23708
23713
|
parentElement = parentElement.parentNode;
|
|
23709
23714
|
}
|
|
@@ -23724,7 +23729,10 @@
|
|
|
23724
23729
|
}
|
|
23725
23730
|
|
|
23726
23731
|
function findTabbableDescendants(element) {
|
|
23727
|
-
|
|
23732
|
+
var descendants = [].slice.call(element.querySelectorAll("*"), 0).reduce(function (finished, el) {
|
|
23733
|
+
return finished.concat(!el.shadowRoot ? [el] : findTabbableDescendants(el.shadowRoot));
|
|
23734
|
+
}, []);
|
|
23735
|
+
return descendants.filter(tabbable);
|
|
23728
23736
|
}
|
|
23729
23737
|
module.exports = exports["default"];
|
|
23730
23738
|
});
|
|
@@ -23764,13 +23772,14 @@
|
|
|
23764
23772
|
|
|
23765
23773
|
/* istanbul ignore next */
|
|
23766
23774
|
function log() {
|
|
23767
|
-
if (process.env.NODE_ENV
|
|
23768
|
-
|
|
23769
|
-
|
|
23770
|
-
|
|
23771
|
-
|
|
23772
|
-
|
|
23773
|
-
|
|
23775
|
+
if (process.env.NODE_ENV !== "production") {
|
|
23776
|
+
console.log("focusManager ----------");
|
|
23777
|
+
focusLaterElements.forEach(function (f) {
|
|
23778
|
+
var check = f || {};
|
|
23779
|
+
console.log(check.nodeName, check.className, check.id);
|
|
23780
|
+
});
|
|
23781
|
+
console.log("end focusManager ----------");
|
|
23782
|
+
}
|
|
23774
23783
|
}
|
|
23775
23784
|
/* eslint-enable no-console */
|
|
23776
23785
|
|
|
@@ -23873,6 +23882,12 @@
|
|
|
23873
23882
|
|
|
23874
23883
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
23875
23884
|
|
|
23885
|
+
function getActiveElement() {
|
|
23886
|
+
var el = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : document;
|
|
23887
|
+
|
|
23888
|
+
return el.activeElement.shadowRoot ? getActiveElement(el.activeElement.shadowRoot) : el.activeElement;
|
|
23889
|
+
}
|
|
23890
|
+
|
|
23876
23891
|
function scopeTab(node, event) {
|
|
23877
23892
|
var tabbable = (0, _tabbable2.default)(node);
|
|
23878
23893
|
|
|
@@ -23887,19 +23902,20 @@
|
|
|
23887
23902
|
var shiftKey = event.shiftKey;
|
|
23888
23903
|
var head = tabbable[0];
|
|
23889
23904
|
var tail = tabbable[tabbable.length - 1];
|
|
23905
|
+
var activeElement = getActiveElement();
|
|
23890
23906
|
|
|
23891
23907
|
// proceed with default browser behavior on tab.
|
|
23892
23908
|
// Focus on last element on shift + tab.
|
|
23893
|
-
if (node ===
|
|
23909
|
+
if (node === activeElement) {
|
|
23894
23910
|
if (!shiftKey) return;
|
|
23895
23911
|
target = tail;
|
|
23896
23912
|
}
|
|
23897
23913
|
|
|
23898
|
-
if (tail ===
|
|
23914
|
+
if (tail === activeElement && !shiftKey) {
|
|
23899
23915
|
target = head;
|
|
23900
23916
|
}
|
|
23901
23917
|
|
|
23902
|
-
if (head ===
|
|
23918
|
+
if (head === activeElement && shiftKey) {
|
|
23903
23919
|
target = tail;
|
|
23904
23920
|
}
|
|
23905
23921
|
|
|
@@ -23927,7 +23943,7 @@
|
|
|
23927
23943
|
// the focus
|
|
23928
23944
|
if (!isSafariDesktop) return;
|
|
23929
23945
|
|
|
23930
|
-
var x = tabbable.indexOf(
|
|
23946
|
+
var x = tabbable.indexOf(activeElement);
|
|
23931
23947
|
|
|
23932
23948
|
if (x > -1) {
|
|
23933
23949
|
x += shiftKey ? -1 : 1;
|
|
@@ -24029,11 +24045,12 @@
|
|
|
24029
24045
|
|
|
24030
24046
|
/* istanbul ignore next */
|
|
24031
24047
|
function log() {
|
|
24032
|
-
if (process.env.NODE_ENV
|
|
24033
|
-
|
|
24034
|
-
|
|
24035
|
-
|
|
24036
|
-
|
|
24048
|
+
if (process.env.NODE_ENV !== "production") {
|
|
24049
|
+
var check = globalElement || {};
|
|
24050
|
+
console.log("ariaAppHider ----------");
|
|
24051
|
+
console.log(check.nodeName, check.className, check.id);
|
|
24052
|
+
console.log("end ariaAppHider ----------");
|
|
24053
|
+
}
|
|
24037
24054
|
}
|
|
24038
24055
|
/* eslint-enable no-console */
|
|
24039
24056
|
|
|
@@ -24168,26 +24185,26 @@
|
|
|
24168
24185
|
|
|
24169
24186
|
/* istanbul ignore next */
|
|
24170
24187
|
function log() {
|
|
24171
|
-
if (process.env.NODE_ENV
|
|
24172
|
-
|
|
24173
|
-
|
|
24174
|
-
var buffer = "Show tracked classes:\n\n";
|
|
24188
|
+
if (process.env.NODE_ENV !== "production") {
|
|
24189
|
+
var classes = document.getElementsByTagName("html")[0].className;
|
|
24190
|
+
var buffer = "Show tracked classes:\n\n";
|
|
24175
24191
|
|
|
24176
|
-
|
|
24177
|
-
|
|
24178
|
-
|
|
24179
|
-
|
|
24192
|
+
buffer += "<html /> (" + classes + "):\n ";
|
|
24193
|
+
for (var x in htmlClassList) {
|
|
24194
|
+
buffer += " " + x + " " + htmlClassList[x] + "\n ";
|
|
24195
|
+
}
|
|
24180
24196
|
|
|
24181
|
-
|
|
24197
|
+
classes = document.body.className;
|
|
24182
24198
|
|
|
24183
|
-
|
|
24184
|
-
|
|
24185
|
-
|
|
24186
|
-
|
|
24199
|
+
buffer += "\n\ndoc.body (" + classes + "):\n ";
|
|
24200
|
+
for (var _x in docBodyClassList) {
|
|
24201
|
+
buffer += " " + _x + " " + docBodyClassList[_x] + "\n ";
|
|
24202
|
+
}
|
|
24187
24203
|
|
|
24188
|
-
|
|
24204
|
+
buffer += "\n";
|
|
24189
24205
|
|
|
24190
|
-
|
|
24206
|
+
console.log(buffer);
|
|
24207
|
+
}
|
|
24191
24208
|
}
|
|
24192
24209
|
/* eslint-enable no-console */
|
|
24193
24210
|
|
|
@@ -25529,7 +25546,8 @@
|
|
|
25529
25546
|
appElement = _ref4.appElement,
|
|
25530
25547
|
ariaHideApp = _ref4.ariaHideApp,
|
|
25531
25548
|
footerContent = _ref4.footerContent,
|
|
25532
|
-
closeAriaLabel = _ref4.closeAriaLabel
|
|
25549
|
+
closeAriaLabel = _ref4.closeAriaLabel,
|
|
25550
|
+
parentSelector = _ref4.parentSelector;
|
|
25533
25551
|
var modalHasHeader = onRequestClose || title;
|
|
25534
25552
|
var themeContext = React.useContext(styled.ThemeContext);
|
|
25535
25553
|
return /*#__PURE__*/React__default['default'].createElement(StyledReactModal, {
|
|
@@ -25554,9 +25572,10 @@
|
|
|
25554
25572
|
overlay: overlayStyle(themeContext)
|
|
25555
25573
|
},
|
|
25556
25574
|
appElement: appElement,
|
|
25557
|
-
ariaHideApp: ariaHideApp
|
|
25575
|
+
ariaHideApp: ariaHideApp,
|
|
25576
|
+
parentSelector: parentSelector
|
|
25558
25577
|
}, /*#__PURE__*/React__default['default'].createElement(PreventBodyElementScrolling, null, modalHasHeader && /*#__PURE__*/React__default['default'].createElement(ModalHeader, {
|
|
25559
|
-
hasCloseButton: onRequestClose
|
|
25578
|
+
hasCloseButton: Boolean(onRequestClose)
|
|
25560
25579
|
}, title ? /*#__PURE__*/React__default['default'].createElement(Heading2, {
|
|
25561
25580
|
id: "modal-title",
|
|
25562
25581
|
mb: "none"
|
|
@@ -25576,7 +25595,6 @@
|
|
|
25576
25595
|
isOpen: true,
|
|
25577
25596
|
title: undefined,
|
|
25578
25597
|
ariaLabel: undefined,
|
|
25579
|
-
children: undefined,
|
|
25580
25598
|
onRequestClose: undefined,
|
|
25581
25599
|
closeAriaLabel: undefined,
|
|
25582
25600
|
onAfterOpen: undefined,
|
|
@@ -25590,7 +25608,8 @@
|
|
|
25590
25608
|
id: undefined,
|
|
25591
25609
|
appElement: undefined,
|
|
25592
25610
|
ariaHideApp: true,
|
|
25593
|
-
footerContent: undefined
|
|
25611
|
+
footerContent: undefined,
|
|
25612
|
+
parentSelector: undefined
|
|
25594
25613
|
};
|
|
25595
25614
|
Modal.setAppElement = ReactModal.setAppElement;
|
|
25596
25615
|
|
package/dist/main.module.js
CHANGED
|
@@ -23653,7 +23653,7 @@ exports.default = findTabbableDescendants;
|
|
|
23653
23653
|
* http://api.jqueryui.com/category/ui-core/
|
|
23654
23654
|
*/
|
|
23655
23655
|
|
|
23656
|
-
var tabbableNode = /input|select|textarea|button|object/;
|
|
23656
|
+
var tabbableNode = /input|select|textarea|button|object|iframe/;
|
|
23657
23657
|
|
|
23658
23658
|
function hidesContents(element) {
|
|
23659
23659
|
var zeroSize = element.offsetWidth <= 0 && element.offsetHeight <= 0;
|
|
@@ -23676,8 +23676,13 @@ function hidesContents(element) {
|
|
|
23676
23676
|
|
|
23677
23677
|
function visible(element) {
|
|
23678
23678
|
var parentElement = element;
|
|
23679
|
+
var rootNode = element.getRootNode && element.getRootNode();
|
|
23679
23680
|
while (parentElement) {
|
|
23680
23681
|
if (parentElement === document.body) break;
|
|
23682
|
+
|
|
23683
|
+
// if we are not hidden yet, skip to checking outside the Web Component
|
|
23684
|
+
if (rootNode && parentElement === rootNode) parentElement = rootNode.host.parentNode;
|
|
23685
|
+
|
|
23681
23686
|
if (hidesContents(parentElement)) return false;
|
|
23682
23687
|
parentElement = parentElement.parentNode;
|
|
23683
23688
|
}
|
|
@@ -23698,7 +23703,10 @@ function tabbable(element) {
|
|
|
23698
23703
|
}
|
|
23699
23704
|
|
|
23700
23705
|
function findTabbableDescendants(element) {
|
|
23701
|
-
|
|
23706
|
+
var descendants = [].slice.call(element.querySelectorAll("*"), 0).reduce(function (finished, el) {
|
|
23707
|
+
return finished.concat(!el.shadowRoot ? [el] : findTabbableDescendants(el.shadowRoot));
|
|
23708
|
+
}, []);
|
|
23709
|
+
return descendants.filter(tabbable);
|
|
23702
23710
|
}
|
|
23703
23711
|
module.exports = exports["default"];
|
|
23704
23712
|
});
|
|
@@ -23738,13 +23746,14 @@ function resetState() {
|
|
|
23738
23746
|
|
|
23739
23747
|
/* istanbul ignore next */
|
|
23740
23748
|
function log() {
|
|
23741
|
-
if (process.env.NODE_ENV
|
|
23742
|
-
|
|
23743
|
-
|
|
23744
|
-
|
|
23745
|
-
|
|
23746
|
-
|
|
23747
|
-
|
|
23749
|
+
if (process.env.NODE_ENV !== "production") {
|
|
23750
|
+
console.log("focusManager ----------");
|
|
23751
|
+
focusLaterElements.forEach(function (f) {
|
|
23752
|
+
var check = f || {};
|
|
23753
|
+
console.log(check.nodeName, check.className, check.id);
|
|
23754
|
+
});
|
|
23755
|
+
console.log("end focusManager ----------");
|
|
23756
|
+
}
|
|
23748
23757
|
}
|
|
23749
23758
|
/* eslint-enable no-console */
|
|
23750
23759
|
|
|
@@ -23847,6 +23856,12 @@ var _tabbable2 = _interopRequireDefault(tabbable_1);
|
|
|
23847
23856
|
|
|
23848
23857
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
23849
23858
|
|
|
23859
|
+
function getActiveElement() {
|
|
23860
|
+
var el = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : document;
|
|
23861
|
+
|
|
23862
|
+
return el.activeElement.shadowRoot ? getActiveElement(el.activeElement.shadowRoot) : el.activeElement;
|
|
23863
|
+
}
|
|
23864
|
+
|
|
23850
23865
|
function scopeTab(node, event) {
|
|
23851
23866
|
var tabbable = (0, _tabbable2.default)(node);
|
|
23852
23867
|
|
|
@@ -23861,19 +23876,20 @@ function scopeTab(node, event) {
|
|
|
23861
23876
|
var shiftKey = event.shiftKey;
|
|
23862
23877
|
var head = tabbable[0];
|
|
23863
23878
|
var tail = tabbable[tabbable.length - 1];
|
|
23879
|
+
var activeElement = getActiveElement();
|
|
23864
23880
|
|
|
23865
23881
|
// proceed with default browser behavior on tab.
|
|
23866
23882
|
// Focus on last element on shift + tab.
|
|
23867
|
-
if (node ===
|
|
23883
|
+
if (node === activeElement) {
|
|
23868
23884
|
if (!shiftKey) return;
|
|
23869
23885
|
target = tail;
|
|
23870
23886
|
}
|
|
23871
23887
|
|
|
23872
|
-
if (tail ===
|
|
23888
|
+
if (tail === activeElement && !shiftKey) {
|
|
23873
23889
|
target = head;
|
|
23874
23890
|
}
|
|
23875
23891
|
|
|
23876
|
-
if (head ===
|
|
23892
|
+
if (head === activeElement && shiftKey) {
|
|
23877
23893
|
target = tail;
|
|
23878
23894
|
}
|
|
23879
23895
|
|
|
@@ -23901,7 +23917,7 @@ function scopeTab(node, event) {
|
|
|
23901
23917
|
// the focus
|
|
23902
23918
|
if (!isSafariDesktop) return;
|
|
23903
23919
|
|
|
23904
|
-
var x = tabbable.indexOf(
|
|
23920
|
+
var x = tabbable.indexOf(activeElement);
|
|
23905
23921
|
|
|
23906
23922
|
if (x > -1) {
|
|
23907
23923
|
x += shiftKey ? -1 : 1;
|
|
@@ -24003,11 +24019,12 @@ function resetState() {
|
|
|
24003
24019
|
|
|
24004
24020
|
/* istanbul ignore next */
|
|
24005
24021
|
function log() {
|
|
24006
|
-
if (process.env.NODE_ENV
|
|
24007
|
-
|
|
24008
|
-
|
|
24009
|
-
|
|
24010
|
-
|
|
24022
|
+
if (process.env.NODE_ENV !== "production") {
|
|
24023
|
+
var check = globalElement || {};
|
|
24024
|
+
console.log("ariaAppHider ----------");
|
|
24025
|
+
console.log(check.nodeName, check.className, check.id);
|
|
24026
|
+
console.log("end ariaAppHider ----------");
|
|
24027
|
+
}
|
|
24011
24028
|
}
|
|
24012
24029
|
/* eslint-enable no-console */
|
|
24013
24030
|
|
|
@@ -24142,26 +24159,26 @@ function resetState() {
|
|
|
24142
24159
|
|
|
24143
24160
|
/* istanbul ignore next */
|
|
24144
24161
|
function log() {
|
|
24145
|
-
if (process.env.NODE_ENV
|
|
24146
|
-
|
|
24147
|
-
|
|
24148
|
-
var buffer = "Show tracked classes:\n\n";
|
|
24162
|
+
if (process.env.NODE_ENV !== "production") {
|
|
24163
|
+
var classes = document.getElementsByTagName("html")[0].className;
|
|
24164
|
+
var buffer = "Show tracked classes:\n\n";
|
|
24149
24165
|
|
|
24150
|
-
|
|
24151
|
-
|
|
24152
|
-
|
|
24153
|
-
|
|
24166
|
+
buffer += "<html /> (" + classes + "):\n ";
|
|
24167
|
+
for (var x in htmlClassList) {
|
|
24168
|
+
buffer += " " + x + " " + htmlClassList[x] + "\n ";
|
|
24169
|
+
}
|
|
24154
24170
|
|
|
24155
|
-
|
|
24171
|
+
classes = document.body.className;
|
|
24156
24172
|
|
|
24157
|
-
|
|
24158
|
-
|
|
24159
|
-
|
|
24160
|
-
|
|
24173
|
+
buffer += "\n\ndoc.body (" + classes + "):\n ";
|
|
24174
|
+
for (var _x in docBodyClassList) {
|
|
24175
|
+
buffer += " " + _x + " " + docBodyClassList[_x] + "\n ";
|
|
24176
|
+
}
|
|
24161
24177
|
|
|
24162
|
-
|
|
24178
|
+
buffer += "\n";
|
|
24163
24179
|
|
|
24164
|
-
|
|
24180
|
+
console.log(buffer);
|
|
24181
|
+
}
|
|
24165
24182
|
}
|
|
24166
24183
|
/* eslint-enable no-console */
|
|
24167
24184
|
|
|
@@ -25503,7 +25520,8 @@ var Modal = function Modal(_ref4) {
|
|
|
25503
25520
|
appElement = _ref4.appElement,
|
|
25504
25521
|
ariaHideApp = _ref4.ariaHideApp,
|
|
25505
25522
|
footerContent = _ref4.footerContent,
|
|
25506
|
-
closeAriaLabel = _ref4.closeAriaLabel
|
|
25523
|
+
closeAriaLabel = _ref4.closeAriaLabel,
|
|
25524
|
+
parentSelector = _ref4.parentSelector;
|
|
25507
25525
|
var modalHasHeader = onRequestClose || title;
|
|
25508
25526
|
var themeContext = useContext(ThemeContext$1);
|
|
25509
25527
|
return /*#__PURE__*/React__default.createElement(StyledReactModal, {
|
|
@@ -25528,9 +25546,10 @@ var Modal = function Modal(_ref4) {
|
|
|
25528
25546
|
overlay: overlayStyle(themeContext)
|
|
25529
25547
|
},
|
|
25530
25548
|
appElement: appElement,
|
|
25531
|
-
ariaHideApp: ariaHideApp
|
|
25549
|
+
ariaHideApp: ariaHideApp,
|
|
25550
|
+
parentSelector: parentSelector
|
|
25532
25551
|
}, /*#__PURE__*/React__default.createElement(PreventBodyElementScrolling, null, modalHasHeader && /*#__PURE__*/React__default.createElement(ModalHeader, {
|
|
25533
|
-
hasCloseButton: onRequestClose
|
|
25552
|
+
hasCloseButton: Boolean(onRequestClose)
|
|
25534
25553
|
}, title ? /*#__PURE__*/React__default.createElement(Heading2, {
|
|
25535
25554
|
id: "modal-title",
|
|
25536
25555
|
mb: "none"
|
|
@@ -25550,7 +25569,6 @@ Modal.defaultProps = {
|
|
|
25550
25569
|
isOpen: true,
|
|
25551
25570
|
title: undefined,
|
|
25552
25571
|
ariaLabel: undefined,
|
|
25553
|
-
children: undefined,
|
|
25554
25572
|
onRequestClose: undefined,
|
|
25555
25573
|
closeAriaLabel: undefined,
|
|
25556
25574
|
onAfterOpen: undefined,
|
|
@@ -25564,7 +25582,8 @@ Modal.defaultProps = {
|
|
|
25564
25582
|
id: undefined,
|
|
25565
25583
|
appElement: undefined,
|
|
25566
25584
|
ariaHideApp: true,
|
|
25567
|
-
footerContent: undefined
|
|
25585
|
+
footerContent: undefined,
|
|
25586
|
+
parentSelector: undefined
|
|
25568
25587
|
};
|
|
25569
25588
|
Modal.setAppElement = ReactModal.setAppElement;
|
|
25570
25589
|
|
|
@@ -1,3 +1,25 @@
|
|
|
1
|
-
import
|
|
2
|
-
declare
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare type ModalProps = {
|
|
3
|
+
isOpen?: boolean;
|
|
4
|
+
title?: string;
|
|
5
|
+
ariaLabel?: string;
|
|
6
|
+
onRequestClose?: (...args: any[]) => any;
|
|
7
|
+
closeAriaLabel?: string;
|
|
8
|
+
onAfterOpen?: (...args: any[]) => any;
|
|
9
|
+
shouldFocusAfterRender?: boolean;
|
|
10
|
+
shouldReturnFocusAfterClose?: boolean;
|
|
11
|
+
ariaDescribedBy?: string;
|
|
12
|
+
maxWidth?: string;
|
|
13
|
+
portalClassName?: string;
|
|
14
|
+
overlayClassName?: string;
|
|
15
|
+
className?: string;
|
|
16
|
+
id?: string;
|
|
17
|
+
appElement?: JSX.Element;
|
|
18
|
+
ariaHideApp?: boolean;
|
|
19
|
+
footerContent?: React.ReactNode;
|
|
20
|
+
parentSelector?: (...args: any) => HTMLElement;
|
|
21
|
+
};
|
|
22
|
+
declare const Modal: React.FC<ModalProps> & {
|
|
23
|
+
setAppElement: (element: string | HTMLElement) => void;
|
|
24
|
+
};
|
|
3
25
|
export default Modal;
|
|
@@ -52,6 +52,12 @@ export declare const WithSelectAndScrollingContent: {
|
|
|
52
52
|
name: string;
|
|
53
53
|
};
|
|
54
54
|
};
|
|
55
|
+
export declare const WithParentSelector: {
|
|
56
|
+
(): JSX.Element;
|
|
57
|
+
story: {
|
|
58
|
+
name: string;
|
|
59
|
+
};
|
|
60
|
+
};
|
|
55
61
|
export declare const ExampleControlledModal: {
|
|
56
62
|
(): JSX.Element;
|
|
57
63
|
story: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nulogy/components",
|
|
3
|
-
"version": "8.1.
|
|
3
|
+
"version": "8.1.7",
|
|
4
4
|
"description": "Component library for the Nulogy Design System - http://nulogy.design",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
@@ -154,9 +154,9 @@
|
|
|
154
154
|
"react-fast-compare": "^3.2.0",
|
|
155
155
|
"react-i18next": "^11.14.2",
|
|
156
156
|
"react-input-autosize": "^2.2.2",
|
|
157
|
-
"react-modal": "^3.
|
|
157
|
+
"react-modal": "^3.14.4",
|
|
158
158
|
"react-popper": "1.3.7",
|
|
159
|
-
"react-popper-
|
|
159
|
+
"react-popper-2": "npm:react-popper@2.2.4",
|
|
160
160
|
"react-resize-detector": "^7.1.2",
|
|
161
161
|
"react-windowed-select": "2.0.2",
|
|
162
162
|
"smoothscroll-polyfill": "^0.4.4",
|