ordering-ui-external 1.1.0 → 1.1.1
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/package.json +15 -15
- package/src/index.js +28 -2
package/package.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ordering-ui-external",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Ordering UI Components",
|
|
5
|
-
"main": "./
|
|
5
|
+
"main": "./src/index.js",
|
|
6
6
|
"exports": {
|
|
7
|
-
".": "./
|
|
8
|
-
"./theme_two": "./
|
|
9
|
-
"./theme_three": "./
|
|
10
|
-
"./theme_four": "./
|
|
11
|
-
"./theme_five": "./
|
|
12
|
-
"./theme_six": "./
|
|
13
|
-
"./theme_seven": "./
|
|
14
|
-
"./theme_eight": "./
|
|
15
|
-
"./theme_wow": "./
|
|
16
|
-
"./theme_pwa": "./
|
|
17
|
-
"./order_and_pay": "./
|
|
18
|
-
"./theme_franchise": "./
|
|
19
|
-
"./callcenter_original": "./
|
|
7
|
+
".": "./src/index.js",
|
|
8
|
+
"./theme_two": "./src/themes/two/index.js",
|
|
9
|
+
"./theme_three": "./src/themes/three/index.js",
|
|
10
|
+
"./theme_four": "./src/themes/four/index.js",
|
|
11
|
+
"./theme_five": "./src/themes/five/index.js",
|
|
12
|
+
"./theme_six": "./src/themes/six/index.js",
|
|
13
|
+
"./theme_seven": "./src/themes/seven/index.js",
|
|
14
|
+
"./theme_eight": "./src/themes/eight/index.js",
|
|
15
|
+
"./theme_wow": "./src/themes/wow/index.js",
|
|
16
|
+
"./theme_pwa": "./src/themes/pwa/index.js",
|
|
17
|
+
"./order_and_pay": "./src/themes/orderAndPay/index.js",
|
|
18
|
+
"./theme_franchise": "./src/themes/franchise/index.js",
|
|
19
|
+
"./callcenter_original": "./src/themes/callcenterOriginal/index.js"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
22
|
"clean": "shx rm -rf _bundles _modules",
|
package/src/index.js
CHANGED
|
@@ -112,7 +112,20 @@ import {
|
|
|
112
112
|
scrollTo,
|
|
113
113
|
bytesConverter,
|
|
114
114
|
formatSeconds,
|
|
115
|
-
verifyDecimals
|
|
115
|
+
verifyDecimals,
|
|
116
|
+
getDistance,
|
|
117
|
+
checkSiteUrl,
|
|
118
|
+
convertToRadian,
|
|
119
|
+
fieldsToSort,
|
|
120
|
+
flatArray,
|
|
121
|
+
formatUrlVideo,
|
|
122
|
+
getGoogleMapImage,
|
|
123
|
+
getHourMin,
|
|
124
|
+
getIconCard,
|
|
125
|
+
getTraduction,
|
|
126
|
+
priceList,
|
|
127
|
+
reviewCommentList,
|
|
128
|
+
shape
|
|
116
129
|
} from './utils'
|
|
117
130
|
|
|
118
131
|
export {
|
|
@@ -244,5 +257,18 @@ export {
|
|
|
244
257
|
scrollTo,
|
|
245
258
|
bytesConverter,
|
|
246
259
|
formatSeconds,
|
|
247
|
-
verifyDecimals
|
|
260
|
+
verifyDecimals,
|
|
261
|
+
getDistance,
|
|
262
|
+
checkSiteUrl,
|
|
263
|
+
convertToRadian,
|
|
264
|
+
fieldsToSort,
|
|
265
|
+
flatArray,
|
|
266
|
+
formatUrlVideo,
|
|
267
|
+
getGoogleMapImage,
|
|
268
|
+
getHourMin,
|
|
269
|
+
getIconCard,
|
|
270
|
+
getTraduction,
|
|
271
|
+
priceList,
|
|
272
|
+
reviewCommentList,
|
|
273
|
+
shape
|
|
248
274
|
}
|