@micromag/screen-slideshow 0.4.98 → 0.4.109
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.d.ts +2 -3
- package/package.json +27 -24
package/es/index.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { ForwardedRef } from 'react';
|
|
1
|
+
import React, { ForwardedRef } from 'react';
|
|
3
2
|
import { ImageMedia, ImageElement, BackgroundElement, Header, Footer, Transitions, MediaElement } from '@micromag/core';
|
|
4
3
|
|
|
5
4
|
interface SlideshowScreenProps {
|
|
@@ -18,7 +17,7 @@ interface SlideshowScreenProps {
|
|
|
18
17
|
mediaRef?: ForwardedRef<MediaElement> | null;
|
|
19
18
|
className?: string | null;
|
|
20
19
|
}
|
|
21
|
-
declare function SlideshowScreen({ slides, withCaptions, background, header, footer, current, active, preload, spacing, transitionDelay, captionMaxLines, transitions, mediaRef: customMediaRef, className, }: SlideshowScreenProps):
|
|
20
|
+
declare function SlideshowScreen({ slides, withCaptions, background, header, footer, current, active, preload, spacing, transitionDelay, captionMaxLines, transitions, mediaRef: customMediaRef, className, }: SlideshowScreenProps): React.JSX.Element;
|
|
22
21
|
|
|
23
22
|
declare const _default: {
|
|
24
23
|
id: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@micromag/screen-slideshow",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.109",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "",
|
|
6
6
|
"keywords": [
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"type": "git",
|
|
12
12
|
"url": "git+https://github.com/urbania-media/micromag-js.git"
|
|
13
13
|
},
|
|
14
|
+
"license": "ISC",
|
|
14
15
|
"author": {
|
|
15
16
|
"name": "Folklore",
|
|
16
17
|
"email": "info@folklore.email"
|
|
@@ -29,10 +30,10 @@
|
|
|
29
30
|
"email": "jc@folklore.email"
|
|
30
31
|
}
|
|
31
32
|
],
|
|
32
|
-
"
|
|
33
|
+
"sideEffects": [
|
|
34
|
+
"**/*.css"
|
|
35
|
+
],
|
|
33
36
|
"type": "module",
|
|
34
|
-
"module": "es/index.js",
|
|
35
|
-
"style": "assets/css/styles.css",
|
|
36
37
|
"exports": {
|
|
37
38
|
".": {
|
|
38
39
|
"types": "./es/index.d.ts",
|
|
@@ -42,15 +43,34 @@
|
|
|
42
43
|
"./assets/css/styles": "./assets/css/styles.css",
|
|
43
44
|
"./assets/css/styles.css": "./assets/css/styles.css"
|
|
44
45
|
},
|
|
46
|
+
"module": "es/index.js",
|
|
47
|
+
"types": "es/index.d.ts",
|
|
48
|
+
"style": "assets/css/styles.css",
|
|
45
49
|
"files": [
|
|
46
50
|
"lib",
|
|
47
51
|
"es",
|
|
48
52
|
"assets"
|
|
49
53
|
],
|
|
50
54
|
"scripts": {
|
|
55
|
+
"build": "../../scripts/prepare-package.sh --types",
|
|
51
56
|
"clean": "rm -rf es && rm -rf lib && rm -rf assets && rm -rf styles",
|
|
52
|
-
"prepublishOnly": "npm run build"
|
|
53
|
-
|
|
57
|
+
"prepublishOnly": "npm run build"
|
|
58
|
+
},
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"@babel/runtime": "^7.28.6",
|
|
61
|
+
"@micromag/core": "^0.4.109",
|
|
62
|
+
"@micromag/element-background": "^0.4.109",
|
|
63
|
+
"@micromag/element-container": "^0.4.109",
|
|
64
|
+
"@micromag/element-footer": "^0.4.109",
|
|
65
|
+
"@micromag/element-header": "^0.4.109",
|
|
66
|
+
"@micromag/element-layout": "^0.4.109",
|
|
67
|
+
"@micromag/element-text": "^0.4.109",
|
|
68
|
+
"@micromag/element-visual": "^0.4.109",
|
|
69
|
+
"@micromag/transforms": "^0.4.109",
|
|
70
|
+
"classnames": "^2.2.6",
|
|
71
|
+
"lodash-es": "^4.17.23",
|
|
72
|
+
"react-intl": "^8.1.3 || ^10.0.0",
|
|
73
|
+
"uuid": "^9.0.0"
|
|
54
74
|
},
|
|
55
75
|
"devDependencies": {
|
|
56
76
|
"react": "^19.0.0",
|
|
@@ -60,26 +80,9 @@
|
|
|
60
80
|
"react": "^19.0.0",
|
|
61
81
|
"react-dom": "^19.0.0"
|
|
62
82
|
},
|
|
63
|
-
"dependencies": {
|
|
64
|
-
"@babel/runtime": "^7.28.6",
|
|
65
|
-
"@micromag/core": "^0.4.98",
|
|
66
|
-
"@micromag/element-background": "^0.4.98",
|
|
67
|
-
"@micromag/element-container": "^0.4.98",
|
|
68
|
-
"@micromag/element-footer": "^0.4.98",
|
|
69
|
-
"@micromag/element-header": "^0.4.98",
|
|
70
|
-
"@micromag/element-layout": "^0.4.98",
|
|
71
|
-
"@micromag/element-text": "^0.4.98",
|
|
72
|
-
"@micromag/element-visual": "^0.4.98",
|
|
73
|
-
"@micromag/transforms": "^0.4.98",
|
|
74
|
-
"classnames": "^2.2.6",
|
|
75
|
-
"lodash": "^4.17.23",
|
|
76
|
-
"react-intl": "^8.1.3 || ^10.0.0",
|
|
77
|
-
"uuid": "^9.0.0"
|
|
78
|
-
},
|
|
79
83
|
"publishConfig": {
|
|
80
84
|
"access": "public",
|
|
81
85
|
"registry": "https://registry.npmjs.org/"
|
|
82
86
|
},
|
|
83
|
-
"gitHead": "
|
|
84
|
-
"types": "es/index.d.ts"
|
|
87
|
+
"gitHead": "0eb452de33304b91642b48c12088758a8f0573a5"
|
|
85
88
|
}
|