@micromag/core 0.3.379 → 0.3.390
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/components.js +1 -1
- package/lib/components.js +1 -1
- package/package.json +6 -3
package/es/components.js
CHANGED
|
@@ -3691,7 +3691,7 @@ var ScreenSizer = function ScreenSizer(_ref) {
|
|
|
3691
3691
|
}, [screenWidth, screenHeight, frameScale]);
|
|
3692
3692
|
var hasFrameSize = frameWidth !== null && frameHeight !== null;
|
|
3693
3693
|
return /*#__PURE__*/React.createElement("div", {
|
|
3694
|
-
|
|
3694
|
+
className: classNames([styles$9.container, _defineProperty({}, className, className !== null)]),
|
|
3695
3695
|
ref: !hasSize ? refContainer : null
|
|
3696
3696
|
}, hasFrameSize ? /*#__PURE__*/React.createElement("div", {
|
|
3697
3697
|
className: styles$9.frame,
|
package/lib/components.js
CHANGED
|
@@ -3732,7 +3732,7 @@ var ScreenSizer = function ScreenSizer(_ref) {
|
|
|
3732
3732
|
}, [screenWidth, screenHeight, frameScale]);
|
|
3733
3733
|
var hasFrameSize = frameWidth !== null && frameHeight !== null;
|
|
3734
3734
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
3735
|
-
|
|
3735
|
+
className: classNames__default["default"]([styles$9.container, _defineProperty__default["default"]({}, className, className !== null)]),
|
|
3736
3736
|
ref: !hasSize ? refContainer : null
|
|
3737
3737
|
}, hasFrameSize ? /*#__PURE__*/React__default["default"].createElement("div", {
|
|
3738
3738
|
className: styles$9.frame,
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@micromag/core",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.390",
|
|
4
|
+
"private": false,
|
|
4
5
|
"description": "",
|
|
5
6
|
"keywords": [
|
|
6
7
|
"javascript"
|
|
@@ -31,6 +32,7 @@
|
|
|
31
32
|
"license": "ISC",
|
|
32
33
|
"main": "lib/index.js",
|
|
33
34
|
"module": "es/index.js",
|
|
35
|
+
"style": "assets/css/styles.css",
|
|
34
36
|
"exports": {
|
|
35
37
|
".": "./lib/index.js",
|
|
36
38
|
"./components": "./lib/components.js",
|
|
@@ -131,7 +133,8 @@
|
|
|
131
133
|
"wolfy87-eventemitter": "^5.2.9"
|
|
132
134
|
},
|
|
133
135
|
"publishConfig": {
|
|
134
|
-
"access": "public"
|
|
136
|
+
"access": "public",
|
|
137
|
+
"registry": "https://registry.npmjs.org/"
|
|
135
138
|
},
|
|
136
|
-
"gitHead": "
|
|
139
|
+
"gitHead": "d310ff6071a34b84d9311f0e02a6862fb836abef"
|
|
137
140
|
}
|