@micromag/element-background 0.3.480 → 0.3.482
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 +4 -2
- package/lib/index.js +6 -4
- package/package.json +5 -4
package/es/index.js
CHANGED
|
@@ -164,6 +164,7 @@ var Background = function Background(_ref) {
|
|
|
164
164
|
};
|
|
165
165
|
Background.propTypes = propTypes$1;
|
|
166
166
|
Background.defaultProps = defaultProps$1;
|
|
167
|
+
var Background$1 = Background;
|
|
167
168
|
|
|
168
169
|
var _excluded = ["horizontalAlign", "verticalAlign"];
|
|
169
170
|
var propTypes = {
|
|
@@ -250,7 +251,7 @@ var BackgroundLayers = function BackgroundLayers(_ref) {
|
|
|
250
251
|
style: {
|
|
251
252
|
zIndex: maxZIndex - index
|
|
252
253
|
}
|
|
253
|
-
}, /*#__PURE__*/React.createElement(Background, Object.assign({
|
|
254
|
+
}, /*#__PURE__*/React.createElement(Background$1, Object.assign({
|
|
254
255
|
width: width,
|
|
255
256
|
height: height,
|
|
256
257
|
resolution: resolution,
|
|
@@ -271,5 +272,6 @@ var BackgroundLayers = function BackgroundLayers(_ref) {
|
|
|
271
272
|
};
|
|
272
273
|
BackgroundLayers.propTypes = propTypes;
|
|
273
274
|
BackgroundLayers.defaultProps = defaultProps;
|
|
275
|
+
var BackgroundLayers$1 = BackgroundLayers;
|
|
274
276
|
|
|
275
|
-
export { Background, BackgroundLayers, BackgroundLayers as default };
|
|
277
|
+
export { Background$1 as Background, BackgroundLayers$1 as BackgroundLayers, BackgroundLayers$1 as default };
|
package/lib/index.js
CHANGED
|
@@ -168,6 +168,7 @@ var Background = function Background(_ref) {
|
|
|
168
168
|
};
|
|
169
169
|
Background.propTypes = propTypes$1;
|
|
170
170
|
Background.defaultProps = defaultProps$1;
|
|
171
|
+
var Background$1 = Background;
|
|
171
172
|
|
|
172
173
|
var _excluded = ["horizontalAlign", "verticalAlign"];
|
|
173
174
|
var propTypes = {
|
|
@@ -254,7 +255,7 @@ var BackgroundLayers = function BackgroundLayers(_ref) {
|
|
|
254
255
|
style: {
|
|
255
256
|
zIndex: maxZIndex - index
|
|
256
257
|
}
|
|
257
|
-
}, /*#__PURE__*/React.createElement(Background, Object.assign({
|
|
258
|
+
}, /*#__PURE__*/React.createElement(Background$1, Object.assign({
|
|
258
259
|
width: width,
|
|
259
260
|
height: height,
|
|
260
261
|
resolution: resolution,
|
|
@@ -275,7 +276,8 @@ var BackgroundLayers = function BackgroundLayers(_ref) {
|
|
|
275
276
|
};
|
|
276
277
|
BackgroundLayers.propTypes = propTypes;
|
|
277
278
|
BackgroundLayers.defaultProps = defaultProps;
|
|
279
|
+
var BackgroundLayers$1 = BackgroundLayers;
|
|
278
280
|
|
|
279
|
-
exports.Background = Background;
|
|
280
|
-
exports.BackgroundLayers = BackgroundLayers;
|
|
281
|
-
exports.default = BackgroundLayers;
|
|
281
|
+
exports.Background = Background$1;
|
|
282
|
+
exports.BackgroundLayers = BackgroundLayers$1;
|
|
283
|
+
exports.default = BackgroundLayers$1;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@micromag/element-background",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.482",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "",
|
|
6
6
|
"keywords": [
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
"assets"
|
|
47
47
|
],
|
|
48
48
|
"scripts": {
|
|
49
|
+
"clean": "rm -rf es && rm -rf lib && rm -rf assets",
|
|
49
50
|
"prepare": "../../scripts/prepare-package.sh"
|
|
50
51
|
},
|
|
51
52
|
"devDependencies": {
|
|
@@ -57,8 +58,8 @@
|
|
|
57
58
|
"dependencies": {
|
|
58
59
|
"@babel/runtime": "^7.13.10",
|
|
59
60
|
"@folklore/size": "^0.1.20",
|
|
60
|
-
"@micromag/core": "^0.3.
|
|
61
|
-
"@micromag/element-video": "^0.3.
|
|
61
|
+
"@micromag/core": "^0.3.482",
|
|
62
|
+
"@micromag/element-video": "^0.3.482",
|
|
62
63
|
"classnames": "^2.2.6",
|
|
63
64
|
"lodash": "^4.17.21",
|
|
64
65
|
"prop-types": "^15.7.2",
|
|
@@ -69,5 +70,5 @@
|
|
|
69
70
|
"access": "public",
|
|
70
71
|
"registry": "https://registry.npmjs.org/"
|
|
71
72
|
},
|
|
72
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "931f86bb7dd77a05d196cadda88c8a170e665c3d"
|
|
73
74
|
}
|