@panneau/element-modal 2.0.59 → 2.0.65
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/es/index.js +2 -1
- package/lib/index.js +2 -1
- package/package.json +2 -2
package/es/index.js
CHANGED
|
@@ -84,7 +84,8 @@ var Modal = function Modal(_ref) {
|
|
|
84
84
|
}, /*#__PURE__*/React.createElement("div", {
|
|
85
85
|
className: classNames([styles.modal, _defineProperty({}, styles[position], position !== null)])
|
|
86
86
|
}, /*#__PURE__*/React.createElement("div", {
|
|
87
|
-
className: styles.inner
|
|
87
|
+
className: classNames(['modal', 'fade', 'show', 'd-block', styles.inner]),
|
|
88
|
+
tabIndex: "-1"
|
|
88
89
|
}, children)));
|
|
89
90
|
};
|
|
90
91
|
Modal.propTypes = propTypes$1;
|
package/lib/index.js
CHANGED
|
@@ -96,7 +96,8 @@ var Modal = function Modal(_ref) {
|
|
|
96
96
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
97
97
|
className: classNames__default["default"]([styles.modal, _defineProperty__default["default"]({}, styles[position], position !== null)])
|
|
98
98
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
99
|
-
className: styles.inner
|
|
99
|
+
className: classNames__default["default"](['modal', 'fade', 'show', 'd-block', styles.inner]),
|
|
100
|
+
tabIndex: "-1"
|
|
100
101
|
}, children)));
|
|
101
102
|
};
|
|
102
103
|
Modal.propTypes = propTypes$1;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@panneau/element-modal",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.65",
|
|
4
4
|
"description": "Modal element",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"javascript"
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"publishConfig": {
|
|
57
57
|
"access": "public"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "296e9ef82abdc2af9ffd2910a65e2630a630bfd4"
|
|
60
60
|
}
|