@micromag/screen-gallery 0.4.97 → 0.4.100
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 +1 -1
- package/package.json +28 -25
package/es/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { FormattedMessage, defineMessage } from 'react-intl';
|
|
2
2
|
import { c } from 'react/compiler-runtime';
|
|
3
3
|
import classNames from 'classnames';
|
|
4
|
-
import isPlainObject from 'lodash/isPlainObject';
|
|
4
|
+
import isPlainObject from 'lodash-es/isPlainObject';
|
|
5
5
|
import { useState, useRef, useEffect } from 'react';
|
|
6
6
|
import { ScreenElement } from '@micromag/core/components';
|
|
7
7
|
import { useScreenSize, useViewerContext, useViewerWebView, usePlaybackContext, usePlaybackMediaRef, useScreenRenderContext } from '@micromag/core/contexts';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@micromag/screen-gallery",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.100",
|
|
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,35 @@
|
|
|
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.100",
|
|
62
|
+
"@micromag/element-background": "^0.4.100",
|
|
63
|
+
"@micromag/element-container": "^0.4.100",
|
|
64
|
+
"@micromag/element-footer": "^0.4.100",
|
|
65
|
+
"@micromag/element-grid": "^0.4.100",
|
|
66
|
+
"@micromag/element-header": "^0.4.100",
|
|
67
|
+
"@micromag/element-layout": "^0.4.100",
|
|
68
|
+
"@micromag/element-text": "^0.4.100",
|
|
69
|
+
"@micromag/element-visual": "^0.4.100",
|
|
70
|
+
"@micromag/transforms": "^0.4.100",
|
|
71
|
+
"classnames": "^2.2.6",
|
|
72
|
+
"lodash-es": "^4.17.23",
|
|
73
|
+
"react-intl": "^8.1.3 || ^10.0.0",
|
|
74
|
+
"uuid": "^9.0.0"
|
|
54
75
|
},
|
|
55
76
|
"devDependencies": {
|
|
56
77
|
"react": "^19.0.0",
|
|
@@ -60,27 +81,9 @@
|
|
|
60
81
|
"react": "^19.0.0",
|
|
61
82
|
"react-dom": "^19.0.0"
|
|
62
83
|
},
|
|
63
|
-
"dependencies": {
|
|
64
|
-
"@babel/runtime": "^7.28.6",
|
|
65
|
-
"@micromag/core": "^0.4.97",
|
|
66
|
-
"@micromag/element-background": "^0.4.97",
|
|
67
|
-
"@micromag/element-container": "^0.4.97",
|
|
68
|
-
"@micromag/element-footer": "^0.4.97",
|
|
69
|
-
"@micromag/element-grid": "^0.4.97",
|
|
70
|
-
"@micromag/element-header": "^0.4.97",
|
|
71
|
-
"@micromag/element-layout": "^0.4.97",
|
|
72
|
-
"@micromag/element-text": "^0.4.97",
|
|
73
|
-
"@micromag/element-visual": "^0.4.97",
|
|
74
|
-
"@micromag/transforms": "^0.4.97",
|
|
75
|
-
"classnames": "^2.2.6",
|
|
76
|
-
"lodash": "^4.17.23",
|
|
77
|
-
"react-intl": "^8.1.3 || ^10.0.0",
|
|
78
|
-
"uuid": "^9.0.0"
|
|
79
|
-
},
|
|
80
84
|
"publishConfig": {
|
|
81
85
|
"access": "public",
|
|
82
86
|
"registry": "https://registry.npmjs.org/"
|
|
83
87
|
},
|
|
84
|
-
"gitHead": "
|
|
85
|
-
"types": "es/index.d.ts"
|
|
88
|
+
"gitHead": "724328f428f29f4950850cf34adb68ef5f46669a"
|
|
86
89
|
}
|