@micromag/core 0.3.523 → 0.3.531
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/assets/css/styles.css +1 -1
- package/assets/css/vendor.css +1 -1
- package/es/components.js +3 -3
- package/lib/components.js +3 -3
- package/package.json +2 -2
package/es/components.js
CHANGED
|
@@ -1756,8 +1756,6 @@ ModalsContainer.propTypes = propTypes$u;
|
|
|
1756
1756
|
ModalsContainer.defaultProps = defaultProps$u;
|
|
1757
1757
|
var Modals = withModals(ModalsContainer);
|
|
1758
1758
|
|
|
1759
|
-
var styles$m = {"container":"micromag-core-modals-modal-container","center":"micromag-core-modals-modal-center","inner":"micromag-core-modals-modal-inner","top":"micromag-core-modals-modal-top"};
|
|
1760
|
-
|
|
1761
1759
|
/* eslint-disable react/no-array-index-key, react/jsx-props-no-spreading */
|
|
1762
1760
|
var propTypes$t = {
|
|
1763
1761
|
id: PropTypes$1.string,
|
|
@@ -1837,6 +1835,8 @@ ModalPortal.propTypes = propTypes$s;
|
|
|
1837
1835
|
ModalPortal.defaultProps = defaultProps$s;
|
|
1838
1836
|
var Portal$1 = ModalPortal;
|
|
1839
1837
|
|
|
1838
|
+
var styles$m = {"container":"micromag-core-modals-modal-container","center":"micromag-core-modals-modal-center","inner":"micromag-core-modals-modal-inner","top":"micromag-core-modals-modal-top"};
|
|
1839
|
+
|
|
1840
1840
|
var propTypes$r = {
|
|
1841
1841
|
id: PropTypes$1.string,
|
|
1842
1842
|
title: PropTypes$1.string,
|
|
@@ -1868,7 +1868,7 @@ var Modal = function Modal(_ref) {
|
|
|
1868
1868
|
}, /*#__PURE__*/React.createElement("div", {
|
|
1869
1869
|
className: classNames([styles$m.container, _defineProperty({}, styles$m[position], position !== null)])
|
|
1870
1870
|
}, /*#__PURE__*/React.createElement("div", {
|
|
1871
|
-
className: classNames([styles$m.inner, 'bg-dark'])
|
|
1871
|
+
className: classNames([styles$m.inner, 'bg-dark', 'rounded'])
|
|
1872
1872
|
}, children)));
|
|
1873
1873
|
};
|
|
1874
1874
|
Modal.propTypes = propTypes$r;
|
package/lib/components.js
CHANGED
|
@@ -2611,8 +2611,6 @@ ModalsContainer.propTypes = propTypes$u;
|
|
|
2611
2611
|
ModalsContainer.defaultProps = defaultProps$u;
|
|
2612
2612
|
var Modals = contexts.withModals(ModalsContainer);
|
|
2613
2613
|
|
|
2614
|
-
var styles$m = {"container":"micromag-core-modals-modal-container","center":"micromag-core-modals-modal-center","inner":"micromag-core-modals-modal-inner","top":"micromag-core-modals-modal-top"};
|
|
2615
|
-
|
|
2616
2614
|
/* eslint-disable react/no-array-index-key, react/jsx-props-no-spreading */
|
|
2617
2615
|
var propTypes$t = {
|
|
2618
2616
|
id: PropTypes.string,
|
|
@@ -2692,6 +2690,8 @@ ModalPortal.propTypes = propTypes$s;
|
|
|
2692
2690
|
ModalPortal.defaultProps = defaultProps$s;
|
|
2693
2691
|
var Portal$1 = ModalPortal;
|
|
2694
2692
|
|
|
2693
|
+
var styles$m = {"container":"micromag-core-modals-modal-container","center":"micromag-core-modals-modal-center","inner":"micromag-core-modals-modal-inner","top":"micromag-core-modals-modal-top"};
|
|
2694
|
+
|
|
2695
2695
|
var propTypes$r = {
|
|
2696
2696
|
id: PropTypes.string,
|
|
2697
2697
|
title: PropTypes.string,
|
|
@@ -2723,7 +2723,7 @@ var Modal = function Modal(_ref) {
|
|
|
2723
2723
|
}, /*#__PURE__*/React.createElement("div", {
|
|
2724
2724
|
className: classNames([styles$m.container, _defineProperty({}, styles$m[position], position !== null)])
|
|
2725
2725
|
}, /*#__PURE__*/React.createElement("div", {
|
|
2726
|
-
className: classNames([styles$m.inner, 'bg-dark'])
|
|
2726
|
+
className: classNames([styles$m.inner, 'bg-dark', 'rounded'])
|
|
2727
2727
|
}, children)));
|
|
2728
2728
|
};
|
|
2729
2729
|
Modal.propTypes = propTypes$r;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@micromag/core",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.531",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "",
|
|
6
6
|
"keywords": [
|
|
@@ -145,5 +145,5 @@
|
|
|
145
145
|
"access": "public",
|
|
146
146
|
"registry": "https://registry.npmjs.org/"
|
|
147
147
|
},
|
|
148
|
-
"gitHead": "
|
|
148
|
+
"gitHead": "e3a59c467ad33528b38eb4badd78b6ed0e38a3a6"
|
|
149
149
|
}
|