ordering-ui-admin-external 1.4.2 → 1.4.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.
@@ -555,12 +555,24 @@ Object.defineProperty(exports, "ProductTagsList", {
555
555
  return _ProductTagsList.ProductTagsList;
556
556
  }
557
557
  });
558
+ Object.defineProperty(exports, "ProductVideos", {
559
+ enumerable: true,
560
+ get: function get() {
561
+ return _ProductVideos.ProductVideos;
562
+ }
563
+ });
558
564
  Object.defineProperty(exports, "SeoOptions", {
559
565
  enumerable: true,
560
566
  get: function get() {
561
567
  return _SeoOptions.SeoOptions;
562
568
  }
563
569
  });
570
+ Object.defineProperty(exports, "ServiceDetail", {
571
+ enumerable: true,
572
+ get: function get() {
573
+ return _ServiceDetail.ServiceDetail;
574
+ }
575
+ });
564
576
  Object.defineProperty(exports, "SingleBusiness", {
565
577
  enumerable: true,
566
578
  get: function get() {
@@ -786,4 +798,8 @@ var _BusinessWalletsList = require("./BusinessWalletsList");
786
798
 
787
799
  var _PaymentOptionMethods = require("./PaymentOptionMethods");
788
800
 
789
- var _BusinessPublishing = require("./BusinessPublishing");
801
+ var _BusinessPublishing = require("./BusinessPublishing");
802
+
803
+ var _ServiceDetail = require("./ServiceDetail");
804
+
805
+ var _ProductVideos = require("./ProductVideos");
@@ -45,6 +45,12 @@ Object.defineProperty(exports, "CustomersListing", {
45
45
  return _CustomersListing.CustomersListing;
46
46
  }
47
47
  });
48
+ Object.defineProperty(exports, "ProfessionalAddForm", {
49
+ enumerable: true,
50
+ get: function get() {
51
+ return _ProfessionalAddForm.ProfessionalAddForm;
52
+ }
53
+ });
48
54
  Object.defineProperty(exports, "ProfessionalListing", {
49
55
  enumerable: true,
50
56
  get: function get() {
@@ -186,4 +192,6 @@ var _CustomerCashWalletDetails = require("./CustomerCashWalletDetails");
186
192
 
187
193
  var _CustomerWalletEvents = require("./CustomerWalletEvents");
188
194
 
189
- var _UserFormDetails = require("./UserFormDetails");
195
+ var _UserFormDetails = require("./UserFormDetails");
196
+
197
+ var _ProfessionalAddForm = require("./ProfessionalAddForm");
package/_modules/index.js CHANGED
@@ -1161,6 +1161,12 @@ Object.defineProperty(exports, "InputGroupRight", {
1161
1161
  return _Inputs.InputGroupRight;
1162
1162
  }
1163
1163
  });
1164
+ Object.defineProperty(exports, "InputPhoneNumber", {
1165
+ enumerable: true,
1166
+ get: function get() {
1167
+ return _Shared.InputPhoneNumber;
1168
+ }
1169
+ });
1164
1170
  Object.defineProperty(exports, "InputPrimary", {
1165
1171
  enumerable: true,
1166
1172
  get: function get() {
@@ -1701,6 +1707,18 @@ Object.defineProperty(exports, "ProductTagsList", {
1701
1707
  return _Stores.ProductTagsList;
1702
1708
  }
1703
1709
  });
1710
+ Object.defineProperty(exports, "ProductVideos", {
1711
+ enumerable: true,
1712
+ get: function get() {
1713
+ return _Stores.ProductVideos;
1714
+ }
1715
+ });
1716
+ Object.defineProperty(exports, "ProfessionalAddForm", {
1717
+ enumerable: true,
1718
+ get: function get() {
1719
+ return _Users.ProfessionalAddForm;
1720
+ }
1721
+ });
1704
1722
  Object.defineProperty(exports, "ProfessionalListing", {
1705
1723
  enumerable: true,
1706
1724
  get: function get() {
@@ -1725,6 +1743,12 @@ Object.defineProperty(exports, "QueryLogin", {
1725
1743
  return _Login.QueryLogin;
1726
1744
  }
1727
1745
  });
1746
+ Object.defineProperty(exports, "RangeCalendar", {
1747
+ enumerable: true,
1748
+ get: function get() {
1749
+ return _Shared.RangeCalendar;
1750
+ }
1751
+ });
1728
1752
  Object.defineProperty(exports, "RecoveryActionListing", {
1729
1753
  enumerable: true,
1730
1754
  get: function get() {
@@ -1929,6 +1953,12 @@ Object.defineProperty(exports, "SeoOptions", {
1929
1953
  return _Stores.SeoOptions;
1930
1954
  }
1931
1955
  });
1956
+ Object.defineProperty(exports, "ServiceDetail", {
1957
+ enumerable: true,
1958
+ get: function get() {
1959
+ return _Stores.ServiceDetail;
1960
+ }
1961
+ });
1932
1962
  Object.defineProperty(exports, "SettingItemUI", {
1933
1963
  enumerable: true,
1934
1964
  get: function get() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ordering-ui-admin-external",
3
- "version": "1.4.2",
3
+ "version": "1.4.3",
4
4
  "description": "Ordering UI Admin Components",
5
5
  "main": "./_modules/index.js",
6
6
  "exports": {
@@ -96,6 +96,8 @@ import { PaymentOptionSquare } from './PaymentOptionSquare'
96
96
  import { BusinessWalletsList } from './BusinessWalletsList'
97
97
  import { PaymentOptionMethods } from './PaymentOptionMethods'
98
98
  import { BusinessPublishing } from './BusinessPublishing'
99
+ import { ServiceDetail } from './ServiceDetail'
100
+ import { ProductVideos } from './ProductVideos'
99
101
 
100
102
  export {
101
103
  BusinessBrandListing,
@@ -195,5 +197,7 @@ export {
195
197
  PaymentOptionSquare,
196
198
  BusinessWalletsList,
197
199
  PaymentOptionMethods,
198
- BusinessPublishing
200
+ BusinessPublishing,
201
+ ServiceDetail,
202
+ ProductVideos
199
203
  }
@@ -21,6 +21,7 @@ import { CustomerPointsWallet } from './CustomerPointsWallet'
21
21
  import { CustomerCashWalletDetails } from './CustomerCashWalletDetails'
22
22
  import { CustomerWalletEvents } from './CustomerWalletEvents'
23
23
  import { UserFormDetailsUI } from './UserFormDetails'
24
+ import { ProfessionalAddForm } from './ProfessionalAddForm'
24
25
 
25
26
  export {
26
27
  CustomersListing,
@@ -45,5 +46,6 @@ export {
45
46
  CustomerPointsWallet,
46
47
  CustomerCashWalletDetails,
47
48
  CustomerWalletEvents,
48
- UserFormDetailsUI
49
+ UserFormDetailsUI,
50
+ ProfessionalAddForm
49
51
  }
package/src/index.js CHANGED
@@ -300,7 +300,9 @@ import {
300
300
  PaymentOptionSquare,
301
301
  BusinessWalletsList,
302
302
  PaymentOptionMethods,
303
- BusinessPublishing
303
+ BusinessPublishing,
304
+ ServiceDetail,
305
+ ProductVideos
304
306
  } from './components/Stores'
305
307
  import {
306
308
  CustomersListing,
@@ -325,7 +327,8 @@ import {
325
327
  CustomerCashWalletDetails,
326
328
  CustomerWalletEvents,
327
329
  UserFormDetailsUI,
328
- ProfessionalListing
330
+ ProfessionalListing,
331
+ ProfessionalAddForm
329
332
  } from './components/Users'
330
333
  import {
331
334
  RewardsPrograms,
@@ -357,7 +360,9 @@ import {
357
360
  ColumnAllowSettingPopover,
358
361
  Pagination,
359
362
  ImageCrop,
360
- NotFoundSource
363
+ NotFoundSource,
364
+ RangeCalendar,
365
+ InputPhoneNumber
361
366
  } from './components/Shared'
362
367
  import { LogoutButton } from './components/LogoutButton'
363
368
  import { LanguageSelector } from './components/LanguageSelector'
@@ -513,6 +518,7 @@ export {
513
518
  DriversGroupAutoassign,
514
519
  DriversMarkAsBusy,
515
520
  ProfessionalListing,
521
+ ProfessionalAddForm,
516
522
  GoogleGpsButton,
517
523
 
518
524
  HomePage,
@@ -682,6 +688,8 @@ export {
682
688
  BusinessWalletsList,
683
689
  PaymentOptionMethods,
684
690
  BusinessPublishing,
691
+ ServiceDetail,
692
+ ProductVideos,
685
693
 
686
694
  LogoutButton,
687
695
  LanguageSelector,
@@ -740,6 +748,8 @@ export {
740
748
  Pagination,
741
749
  ImageCrop,
742
750
  NotFoundSource,
751
+ RangeCalendar,
752
+ InputPhoneNumber,
743
753
 
744
754
  capitalize,
745
755
  verifyDecimals,