@micromag/screen-slideshow 0.3.480 → 0.3.485
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 +3 -2
- package/lib/index.js +3 -2
- package/package.json +14 -12
package/es/index.js
CHANGED
|
@@ -237,6 +237,7 @@ var SlideshowScreen = function SlideshowScreen(_ref) {
|
|
|
237
237
|
};
|
|
238
238
|
SlideshowScreen.propTypes = propTypes;
|
|
239
239
|
SlideshowScreen.defaultProps = defaultProps;
|
|
240
|
+
var SlideshowScreen$1 = SlideshowScreen;
|
|
240
241
|
|
|
241
242
|
// import * as transforms from './transforms/index';
|
|
242
243
|
|
|
@@ -260,7 +261,7 @@ var definition = [{
|
|
|
260
261
|
"value": "Slideshow"
|
|
261
262
|
}]
|
|
262
263
|
}),
|
|
263
|
-
component: SlideshowScreen,
|
|
264
|
+
component: SlideshowScreen$1,
|
|
264
265
|
fields: [{
|
|
265
266
|
name: 'slides',
|
|
266
267
|
type: 'visuals-with-caption',
|
|
@@ -332,4 +333,4 @@ var definition = [{
|
|
|
332
333
|
}]
|
|
333
334
|
}];
|
|
334
335
|
|
|
335
|
-
export { SlideshowScreen, definition as default };
|
|
336
|
+
export { SlideshowScreen$1 as SlideshowScreen, definition as default };
|
package/lib/index.js
CHANGED
|
@@ -241,6 +241,7 @@ var SlideshowScreen = function SlideshowScreen(_ref) {
|
|
|
241
241
|
};
|
|
242
242
|
SlideshowScreen.propTypes = propTypes;
|
|
243
243
|
SlideshowScreen.defaultProps = defaultProps;
|
|
244
|
+
var SlideshowScreen$1 = SlideshowScreen;
|
|
244
245
|
|
|
245
246
|
// import * as transforms from './transforms/index';
|
|
246
247
|
|
|
@@ -264,7 +265,7 @@ var definition = [{
|
|
|
264
265
|
"value": "Slideshow"
|
|
265
266
|
}]
|
|
266
267
|
}),
|
|
267
|
-
component: SlideshowScreen,
|
|
268
|
+
component: SlideshowScreen$1,
|
|
268
269
|
fields: [{
|
|
269
270
|
name: 'slides',
|
|
270
271
|
type: 'visuals-with-caption',
|
|
@@ -336,5 +337,5 @@ var definition = [{
|
|
|
336
337
|
}]
|
|
337
338
|
}];
|
|
338
339
|
|
|
339
|
-
exports.SlideshowScreen = SlideshowScreen;
|
|
340
|
+
exports.SlideshowScreen = SlideshowScreen$1;
|
|
340
341
|
exports.default = definition;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@micromag/screen-slideshow",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.485",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "",
|
|
6
6
|
"keywords": [
|
|
@@ -47,7 +47,9 @@
|
|
|
47
47
|
"assets"
|
|
48
48
|
],
|
|
49
49
|
"scripts": {
|
|
50
|
-
"
|
|
50
|
+
"clean": "rm -rf es && rm -rf lib && rm -rf assets",
|
|
51
|
+
"prepublishOnly": "npm run build",
|
|
52
|
+
"build": "../../scripts/prepare-package.sh"
|
|
51
53
|
},
|
|
52
54
|
"devDependencies": {
|
|
53
55
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
@@ -59,15 +61,15 @@
|
|
|
59
61
|
},
|
|
60
62
|
"dependencies": {
|
|
61
63
|
"@babel/runtime": "^7.13.10",
|
|
62
|
-
"@micromag/core": "^0.3.
|
|
63
|
-
"@micromag/element-background": "^0.3.
|
|
64
|
-
"@micromag/element-container": "^0.3.
|
|
65
|
-
"@micromag/element-footer": "^0.3.
|
|
66
|
-
"@micromag/element-header": "^0.3.
|
|
67
|
-
"@micromag/element-layout": "^0.3.
|
|
68
|
-
"@micromag/element-text": "^0.3.
|
|
69
|
-
"@micromag/element-visual": "^0.3.
|
|
70
|
-
"@micromag/transforms": "^0.3.
|
|
64
|
+
"@micromag/core": "^0.3.485",
|
|
65
|
+
"@micromag/element-background": "^0.3.485",
|
|
66
|
+
"@micromag/element-container": "^0.3.485",
|
|
67
|
+
"@micromag/element-footer": "^0.3.485",
|
|
68
|
+
"@micromag/element-header": "^0.3.485",
|
|
69
|
+
"@micromag/element-layout": "^0.3.485",
|
|
70
|
+
"@micromag/element-text": "^0.3.485",
|
|
71
|
+
"@micromag/element-visual": "^0.3.485",
|
|
72
|
+
"@micromag/transforms": "^0.3.485",
|
|
71
73
|
"classnames": "^2.2.6",
|
|
72
74
|
"lodash": "^4.17.21",
|
|
73
75
|
"prop-types": "^15.7.2",
|
|
@@ -78,5 +80,5 @@
|
|
|
78
80
|
"access": "public",
|
|
79
81
|
"registry": "https://registry.npmjs.org/"
|
|
80
82
|
},
|
|
81
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "7af4c126bdc155c5ea821e894957023b201c2b79"
|
|
82
84
|
}
|