@janiscommerce/ui-web 0.26.0 → 0.28.0
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/CHANGELOG.md +21 -0
- package/README.md +8 -0
- package/dist/README.md +8 -0
- package/dist/index.esm.js +70 -7
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +70 -6
- package/dist/index.umd.js.map +1 -1
- package/dist/package.json +6 -2
- package/package.json +8 -2
package/dist/package.json
CHANGED
|
@@ -9,14 +9,18 @@
|
|
|
9
9
|
"type": "git",
|
|
10
10
|
"url": "git+https://github.com/janis-commerce/ui-web.git"
|
|
11
11
|
},
|
|
12
|
-
"version": "0.
|
|
12
|
+
"version": "0.28.0",
|
|
13
13
|
"dependencies": {
|
|
14
|
+
"@mapbox/polyline": "^1.1.1",
|
|
15
|
+
"@react-google-maps/api": "^2.7.0",
|
|
14
16
|
"prop-types": "^15.7.2",
|
|
15
17
|
"qrcode.react": "^3.0.2",
|
|
16
18
|
"react-colorful": "^5.5.1",
|
|
17
|
-
"react-frame-component": "^5.2.3"
|
|
19
|
+
"react-frame-component": "^5.2.3",
|
|
20
|
+
"svgpath": "^2.5.0"
|
|
18
21
|
},
|
|
19
22
|
"peerDependencies": {
|
|
23
|
+
"axios": "^0.27.2",
|
|
20
24
|
"react": ">= 17.x",
|
|
21
25
|
"react-dom": ">= 17.x",
|
|
22
26
|
"styled-components": ">= 5.3.0"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@janiscommerce/ui-web",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.28.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.umd.js",
|
|
6
6
|
"exports": {
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
"private": false,
|
|
12
12
|
"scripts": {
|
|
13
|
+
"preinstall": "node scripts/preinstall-script.js",
|
|
13
14
|
"start": "rollup -c rollup/rollup.config.dev.js -w",
|
|
14
15
|
"build": "rollup -c rollup/rollup.config.prod.js",
|
|
15
16
|
"lint": "eslint src/",
|
|
@@ -49,6 +50,7 @@
|
|
|
49
50
|
"@storybook/node-logger": "^6.2.9",
|
|
50
51
|
"@storybook/react": "^6.2.9",
|
|
51
52
|
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
|
|
53
|
+
"axios": "^0.27.2",
|
|
52
54
|
"babel-jest": "^27.0.6",
|
|
53
55
|
"babel-plugin-styled-components": "^2.0.6",
|
|
54
56
|
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
|
|
@@ -108,6 +110,7 @@
|
|
|
108
110
|
"testEnvironment": "jsdom"
|
|
109
111
|
},
|
|
110
112
|
"peerDependencies": {
|
|
113
|
+
"axios": "^0.27.2",
|
|
111
114
|
"react": ">= 17.x",
|
|
112
115
|
"react-dom": ">= 17.x",
|
|
113
116
|
"styled-components": ">= 5.3.0"
|
|
@@ -122,9 +125,12 @@
|
|
|
122
125
|
"dist"
|
|
123
126
|
],
|
|
124
127
|
"dependencies": {
|
|
128
|
+
"@mapbox/polyline": "^1.1.1",
|
|
129
|
+
"@react-google-maps/api": "^2.7.0",
|
|
125
130
|
"prop-types": "^15.7.2",
|
|
126
131
|
"qrcode.react": "^3.0.2",
|
|
127
132
|
"react-colorful": "^5.5.1",
|
|
128
|
-
"react-frame-component": "^5.2.3"
|
|
133
|
+
"react-frame-component": "^5.2.3",
|
|
134
|
+
"svgpath": "^2.5.0"
|
|
129
135
|
}
|
|
130
136
|
}
|