@micromag/screen-keypad 0.4.71 → 0.4.76
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 -2
- package/es/index.js +1572 -753
- package/package.json +24 -23
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@micromag/screen-keypad",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.76",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "",
|
|
6
6
|
"keywords": [
|
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
"exports": {
|
|
41
41
|
".": {
|
|
42
42
|
"types": "./es/index.d.ts",
|
|
43
|
+
"style": "./assets/css/styles.css",
|
|
43
44
|
"import": "./es/index.js"
|
|
44
45
|
},
|
|
45
46
|
"./assets/css/styles": "./assets/css/styles.css",
|
|
@@ -54,34 +55,34 @@
|
|
|
54
55
|
"clean": "rm -rf es && rm -rf lib && rm -rf assets && rm -rf styles",
|
|
55
56
|
"prepublishOnly": "npm run build",
|
|
56
57
|
"build": "../../scripts/prepare-package.sh --types",
|
|
57
|
-
"rollup": "../../node_modules/.bin/rollup --config ../../rollup.config.
|
|
58
|
+
"rollup": "../../node_modules/.bin/rollup --bundleConfigAsCjs --config ../../rollup.config.js"
|
|
58
59
|
},
|
|
59
60
|
"devDependencies": {
|
|
60
|
-
"react": "^
|
|
61
|
-
"react-dom": "^
|
|
61
|
+
"react": "^19.0.0",
|
|
62
|
+
"react-dom": "^19.0.0"
|
|
62
63
|
},
|
|
63
64
|
"peerDependencies": {
|
|
64
|
-
"react": "^
|
|
65
|
-
"react-dom": "^
|
|
65
|
+
"react": "^19.0.0",
|
|
66
|
+
"react-dom": "^19.0.0"
|
|
66
67
|
},
|
|
67
68
|
"dependencies": {
|
|
68
69
|
"@babel/runtime": "^7.28.6",
|
|
69
|
-
"@micromag/core": "^0.4.
|
|
70
|
-
"@micromag/element-background": "^0.4.
|
|
71
|
-
"@micromag/element-button": "^0.4.
|
|
72
|
-
"@micromag/element-call-to-action": "^0.4.
|
|
73
|
-
"@micromag/element-container": "^0.4.
|
|
74
|
-
"@micromag/element-footer": "^0.4.
|
|
75
|
-
"@micromag/element-grid": "^0.4.
|
|
76
|
-
"@micromag/element-header": "^0.4.
|
|
77
|
-
"@micromag/element-heading": "^0.4.
|
|
78
|
-
"@micromag/element-keypad": "^0.4.
|
|
79
|
-
"@micromag/element-layout": "^0.4.
|
|
80
|
-
"@micromag/element-scroll": "^0.4.
|
|
81
|
-
"@micromag/element-text": "^0.4.
|
|
82
|
-
"@micromag/element-urbania-author": "^0.4.
|
|
83
|
-
"@micromag/element-visual": "^0.4.
|
|
84
|
-
"@micromag/transforms": "^0.4.
|
|
70
|
+
"@micromag/core": "^0.4.74",
|
|
71
|
+
"@micromag/element-background": "^0.4.76",
|
|
72
|
+
"@micromag/element-button": "^0.4.76",
|
|
73
|
+
"@micromag/element-call-to-action": "^0.4.76",
|
|
74
|
+
"@micromag/element-container": "^0.4.74",
|
|
75
|
+
"@micromag/element-footer": "^0.4.76",
|
|
76
|
+
"@micromag/element-grid": "^0.4.74",
|
|
77
|
+
"@micromag/element-header": "^0.4.74",
|
|
78
|
+
"@micromag/element-heading": "^0.4.74",
|
|
79
|
+
"@micromag/element-keypad": "^0.4.74",
|
|
80
|
+
"@micromag/element-layout": "^0.4.74",
|
|
81
|
+
"@micromag/element-scroll": "^0.4.74",
|
|
82
|
+
"@micromag/element-text": "^0.4.74",
|
|
83
|
+
"@micromag/element-urbania-author": "^0.4.76",
|
|
84
|
+
"@micromag/element-visual": "^0.4.76",
|
|
85
|
+
"@micromag/transforms": "^0.4.74",
|
|
85
86
|
"@react-spring/core": "^10.0.3",
|
|
86
87
|
"@react-spring/web": "^10.0.3",
|
|
87
88
|
"@use-gesture/react": "^10.3.0",
|
|
@@ -94,6 +95,6 @@
|
|
|
94
95
|
"access": "public",
|
|
95
96
|
"registry": "https://registry.npmjs.org/"
|
|
96
97
|
},
|
|
97
|
-
"gitHead": "
|
|
98
|
+
"gitHead": "42a24f578994b23090271013f136b7f78956b632",
|
|
98
99
|
"types": "es/index.d.ts"
|
|
99
100
|
}
|