@micromag/elements 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 +1 -2
- package/package.json +47 -44
package/es/index.d.ts
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
1
|
import React from 'react';
|
|
3
2
|
|
|
4
3
|
interface ElementsProviderProps {
|
|
5
4
|
children?: React.ReactNode;
|
|
6
5
|
}
|
|
7
|
-
declare function ElementsProvider({ children: _children, ...props }: ElementsProviderProps):
|
|
6
|
+
declare function ElementsProvider({ children: _children, ...props }: ElementsProviderProps): React.JSX.Element;
|
|
8
7
|
|
|
9
8
|
export { ElementsProvider };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@micromag/elements",
|
|
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",
|
|
@@ -47,10 +48,13 @@
|
|
|
47
48
|
"./assets/css/styles": "./assets/css/styles.css",
|
|
48
49
|
"./assets/css/styles.css": "./assets/css/styles.css"
|
|
49
50
|
},
|
|
51
|
+
"module": "es/index.js",
|
|
50
52
|
"browser": {
|
|
51
53
|
".": "./es/index.js",
|
|
52
54
|
"./all": "./es/all.js"
|
|
53
55
|
},
|
|
56
|
+
"types": "es/index.d.ts",
|
|
57
|
+
"style": "./assets/css/styles.css",
|
|
54
58
|
"files": [
|
|
55
59
|
"lib",
|
|
56
60
|
"es",
|
|
@@ -58,10 +62,45 @@
|
|
|
58
62
|
"all.js"
|
|
59
63
|
],
|
|
60
64
|
"scripts": {
|
|
61
|
-
"clean": "rm -rf es && rm -rf lib && rm -rf assets && rm -rf styles",
|
|
62
65
|
"aggregate-css": "../../scripts/build-packages-styles.js --pattern='@micromag/element-*' ./src/styles.css.ejs ./assets/css/styles.css",
|
|
63
|
-
"
|
|
64
|
-
"
|
|
66
|
+
"build": "../../scripts/prepare-package.sh --types && npm run aggregate-css",
|
|
67
|
+
"clean": "rm -rf es && rm -rf lib && rm -rf assets && rm -rf styles",
|
|
68
|
+
"prepublishOnly": "npm run build"
|
|
69
|
+
},
|
|
70
|
+
"dependencies": {
|
|
71
|
+
"@babel/runtime": "^7.28.6",
|
|
72
|
+
"@micromag/core": "^0.4.109",
|
|
73
|
+
"@micromag/element-audio": "^0.4.109",
|
|
74
|
+
"@micromag/element-author": "^0.4.109",
|
|
75
|
+
"@micromag/element-background": "^0.4.109",
|
|
76
|
+
"@micromag/element-badge": "^0.4.109",
|
|
77
|
+
"@micromag/element-button": "^0.4.109",
|
|
78
|
+
"@micromag/element-call-to-action": "^0.4.109",
|
|
79
|
+
"@micromag/element-checkbox": "^0.4.109",
|
|
80
|
+
"@micromag/element-closed-captions": "^0.4.109",
|
|
81
|
+
"@micromag/element-container": "^0.4.109",
|
|
82
|
+
"@micromag/element-footer": "^0.4.109",
|
|
83
|
+
"@micromag/element-grid": "^0.4.109",
|
|
84
|
+
"@micromag/element-header": "^0.4.109",
|
|
85
|
+
"@micromag/element-heading": "^0.4.109",
|
|
86
|
+
"@micromag/element-image": "^0.4.109",
|
|
87
|
+
"@micromag/element-keypad": "^0.4.109",
|
|
88
|
+
"@micromag/element-layout": "^0.4.109",
|
|
89
|
+
"@micromag/element-link": "^0.4.109",
|
|
90
|
+
"@micromag/element-map": "^0.4.109",
|
|
91
|
+
"@micromag/element-quote": "^0.4.109",
|
|
92
|
+
"@micromag/element-scroll": "^0.4.109",
|
|
93
|
+
"@micromag/element-share-incentive": "^0.4.109",
|
|
94
|
+
"@micromag/element-share-options": "^0.4.109",
|
|
95
|
+
"@micromag/element-stack": "^0.4.109",
|
|
96
|
+
"@micromag/element-text": "^0.4.109",
|
|
97
|
+
"@micromag/element-text-input": "^0.4.109",
|
|
98
|
+
"@micromag/element-urbania-author": "^0.4.109",
|
|
99
|
+
"@micromag/element-video": "^0.4.109",
|
|
100
|
+
"@micromag/element-visual": "^0.4.109",
|
|
101
|
+
"@micromag/element-webview": "^0.4.109",
|
|
102
|
+
"classnames": "^2.2.6",
|
|
103
|
+
"lodash-es": "^4.17.23"
|
|
65
104
|
},
|
|
66
105
|
"devDependencies": {
|
|
67
106
|
"react": "^19.0.0",
|
|
@@ -71,45 +110,9 @@
|
|
|
71
110
|
"react": "^19.0.0",
|
|
72
111
|
"react-dom": "^19.0.0"
|
|
73
112
|
},
|
|
74
|
-
"dependencies": {
|
|
75
|
-
"@babel/runtime": "^7.28.6",
|
|
76
|
-
"@micromag/core": "^0.4.98",
|
|
77
|
-
"@micromag/element-audio": "^0.4.98",
|
|
78
|
-
"@micromag/element-author": "^0.4.98",
|
|
79
|
-
"@micromag/element-background": "^0.4.98",
|
|
80
|
-
"@micromag/element-badge": "^0.4.98",
|
|
81
|
-
"@micromag/element-button": "^0.4.98",
|
|
82
|
-
"@micromag/element-call-to-action": "^0.4.98",
|
|
83
|
-
"@micromag/element-checkbox": "^0.4.98",
|
|
84
|
-
"@micromag/element-closed-captions": "^0.4.98",
|
|
85
|
-
"@micromag/element-container": "^0.4.98",
|
|
86
|
-
"@micromag/element-footer": "^0.4.98",
|
|
87
|
-
"@micromag/element-grid": "^0.4.98",
|
|
88
|
-
"@micromag/element-header": "^0.4.98",
|
|
89
|
-
"@micromag/element-heading": "^0.4.98",
|
|
90
|
-
"@micromag/element-image": "^0.4.98",
|
|
91
|
-
"@micromag/element-keypad": "^0.4.98",
|
|
92
|
-
"@micromag/element-layout": "^0.4.98",
|
|
93
|
-
"@micromag/element-link": "^0.4.98",
|
|
94
|
-
"@micromag/element-map": "^0.4.98",
|
|
95
|
-
"@micromag/element-quote": "^0.4.98",
|
|
96
|
-
"@micromag/element-scroll": "^0.4.98",
|
|
97
|
-
"@micromag/element-share-incentive": "^0.4.98",
|
|
98
|
-
"@micromag/element-share-options": "^0.4.98",
|
|
99
|
-
"@micromag/element-stack": "^0.4.98",
|
|
100
|
-
"@micromag/element-text": "^0.4.98",
|
|
101
|
-
"@micromag/element-text-input": "^0.4.98",
|
|
102
|
-
"@micromag/element-urbania-author": "^0.4.98",
|
|
103
|
-
"@micromag/element-video": "^0.4.98",
|
|
104
|
-
"@micromag/element-visual": "^0.4.98",
|
|
105
|
-
"@micromag/element-webview": "^0.4.98",
|
|
106
|
-
"classnames": "^2.2.6",
|
|
107
|
-
"lodash": "^4.17.23"
|
|
108
|
-
},
|
|
109
113
|
"publishConfig": {
|
|
110
114
|
"access": "public",
|
|
111
115
|
"registry": "https://registry.npmjs.org/"
|
|
112
116
|
},
|
|
113
|
-
"gitHead": "
|
|
114
|
-
"types": "es/index.d.ts"
|
|
117
|
+
"gitHead": "0eb452de33304b91642b48c12088758a8f0573a5"
|
|
115
118
|
}
|