@longraf/mdesign 0.0.2 → 0.0.3
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/bundle/bundle.umd.js +1 -1
- package/bundle/bundle.umd.min.js +1 -1
- package/lib/ui-kit/Calculator/Calculator.fixture.d.ts +5 -0
- package/lib/ui-kit/Calculator/Calculator.fixture.mobile.d.ts +5 -0
- package/mobile/bundle/bundle.umd.js +1 -1
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/package.json +7 -14
- package/src/ui-kit/Calculator/Calculator.fixture.mobile.tsx +7 -0
- package/src/ui-kit/Calculator/Calculator.fixture.tsx +7 -0
package/package.json
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
{
|
2
2
|
"name": "@longraf/mdesign",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.3",
|
4
4
|
"private": false,
|
5
5
|
"license": "MIT",
|
6
6
|
"author": "ЦК",
|
7
|
-
"description": "",
|
7
|
+
"description": "Инструмент для просмотра UI Kit",
|
8
8
|
"type": "module",
|
9
9
|
"bin": {
|
10
10
|
"wcms-migrate": "./bin/migrate.js"
|
@@ -110,22 +110,10 @@
|
|
110
110
|
"clean:build": "rimraf ./build || exit 0"
|
111
111
|
},
|
112
112
|
"peerDependencies": {
|
113
|
-
"cypress": "^13.13.0",
|
114
|
-
"cypress-visual-regression": "5.0.0",
|
115
|
-
"cypress-wait-until": "^3.0.1",
|
116
113
|
"react": ">=18.3.1",
|
117
114
|
"react-dom": ">=18.3.1"
|
118
115
|
},
|
119
116
|
"peerDependenciesMeta": {
|
120
|
-
"cypress": {
|
121
|
-
"optional": true
|
122
|
-
},
|
123
|
-
"cypress-visual-regression": {
|
124
|
-
"optional": true
|
125
|
-
},
|
126
|
-
"cypress-wait-until": {
|
127
|
-
"optional": true
|
128
|
-
},
|
129
117
|
"react": {
|
130
118
|
"optional": true
|
131
119
|
},
|
@@ -250,5 +238,10 @@
|
|
250
238
|
"Infinity"
|
251
239
|
]
|
252
240
|
}
|
241
|
+
},
|
242
|
+
"optionalDependencies": {
|
243
|
+
"cypress": "^13.13.0",
|
244
|
+
"cypress-visual-regression": "5.0.0",
|
245
|
+
"cypress-wait-until": "^3.0.1"
|
253
246
|
}
|
254
247
|
}
|