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.
Files changed (2) hide show
  1. package/package.json +15 -15
  2. 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.0",
3
+ "version": "1.1.1",
4
4
  "description": "Ordering UI Components",
5
- "main": "./_modules/index.js",
5
+ "main": "./src/index.js",
6
6
  "exports": {
7
- ".": "./_modules/index.js",
8
- "./theme_two": "./_modules/themes/two/index.js",
9
- "./theme_three": "./_modules/themes/three/index.js",
10
- "./theme_four": "./_modules/themes/four/index.js",
11
- "./theme_five": "./_modules/themes/five/index.js",
12
- "./theme_six": "./_modules/themes/six/index.js",
13
- "./theme_seven": "./_modules/themes/seven/index.js",
14
- "./theme_eight": "./_modules/themes/eight/index.js",
15
- "./theme_wow": "./_modules/themes/wow/index.js",
16
- "./theme_pwa": "./_modules/themes/pwa/index.js",
17
- "./order_and_pay": "./_modules/themes/orderAndPay/index.js",
18
- "./theme_franchise": "./_modules/themes/franchise/index.js",
19
- "./callcenter_original": "./_modules/themes/callcenterOriginal/index.js"
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
  }