ordering-ui-admin-external 1.4.1 → 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.
- package/_bundles/{ordering-ui-admin.088f6904a5db809c15da.js → ordering-ui-admin.2acc231ff9717fa8a121.js} +2 -2
- package/_bundles/{ordering-ui-admin.088f6904a5db809c15da.js.LICENSE.txt → ordering-ui-admin.2acc231ff9717fa8a121.js.LICENSE.txt} +0 -0
- package/_modules/components/Orders/index.js +9 -1
- package/_modules/components/Stores/index.js +17 -1
- package/_modules/components/Users/index.js +9 -1
- package/_modules/index.js +48 -0
- package/package.json +1 -1
- package/src/components/Orders/index.js +3 -1
- package/src/components/Stores/index.js +5 -1
- package/src/components/Users/index.js +3 -1
- package/src/index.js +20 -5
|
File without changes
|
|
@@ -189,6 +189,12 @@ Object.defineProperty(exports, "OrderStatusTypeSelector", {
|
|
|
189
189
|
return _OrderStatusTypeSelector.OrderStatusTypeSelector;
|
|
190
190
|
}
|
|
191
191
|
});
|
|
192
|
+
Object.defineProperty(exports, "OrderToPrint", {
|
|
193
|
+
enumerable: true,
|
|
194
|
+
get: function get() {
|
|
195
|
+
return _OrderToPrint.OrderToPrint;
|
|
196
|
+
}
|
|
197
|
+
});
|
|
192
198
|
Object.defineProperty(exports, "OrdersCards", {
|
|
193
199
|
enumerable: true,
|
|
194
200
|
get: function get() {
|
|
@@ -370,4 +376,6 @@ var _OrdersCards = require("./OrdersCards");
|
|
|
370
376
|
|
|
371
377
|
var _ReviewCustomer = require("./ReviewCustomer");
|
|
372
378
|
|
|
373
|
-
var _CountryFilter = require("./CountryFilter");
|
|
379
|
+
var _CountryFilter = require("./CountryFilter");
|
|
380
|
+
|
|
381
|
+
var _OrderToPrint = require("./OrderToPrint");
|
|
@@ -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() {
|
|
@@ -1293,6 +1299,12 @@ Object.defineProperty(exports, "MoreSidebarLayout", {
|
|
|
1293
1299
|
return _Shared.MoreSidebarLayout;
|
|
1294
1300
|
}
|
|
1295
1301
|
});
|
|
1302
|
+
Object.defineProperty(exports, "NotFoundSource", {
|
|
1303
|
+
enumerable: true,
|
|
1304
|
+
get: function get() {
|
|
1305
|
+
return _Shared.NotFoundSource;
|
|
1306
|
+
}
|
|
1307
|
+
});
|
|
1296
1308
|
Object.defineProperty(exports, "NotNetworkConnectivity", {
|
|
1297
1309
|
enumerable: true,
|
|
1298
1310
|
get: function get() {
|
|
@@ -1377,6 +1389,12 @@ Object.defineProperty(exports, "OrderStatusTypeSelector", {
|
|
|
1377
1389
|
return _Orders.OrderStatusTypeSelector;
|
|
1378
1390
|
}
|
|
1379
1391
|
});
|
|
1392
|
+
Object.defineProperty(exports, "OrderToPrint", {
|
|
1393
|
+
enumerable: true,
|
|
1394
|
+
get: function get() {
|
|
1395
|
+
return _Orders.OrderToPrint;
|
|
1396
|
+
}
|
|
1397
|
+
});
|
|
1380
1398
|
Object.defineProperty(exports, "OrderingProductDetails", {
|
|
1381
1399
|
enumerable: true,
|
|
1382
1400
|
get: function get() {
|
|
@@ -1689,6 +1707,18 @@ Object.defineProperty(exports, "ProductTagsList", {
|
|
|
1689
1707
|
return _Stores.ProductTagsList;
|
|
1690
1708
|
}
|
|
1691
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
|
+
});
|
|
1692
1722
|
Object.defineProperty(exports, "ProfessionalListing", {
|
|
1693
1723
|
enumerable: true,
|
|
1694
1724
|
get: function get() {
|
|
@@ -1713,6 +1743,12 @@ Object.defineProperty(exports, "QueryLogin", {
|
|
|
1713
1743
|
return _Login.QueryLogin;
|
|
1714
1744
|
}
|
|
1715
1745
|
});
|
|
1746
|
+
Object.defineProperty(exports, "RangeCalendar", {
|
|
1747
|
+
enumerable: true,
|
|
1748
|
+
get: function get() {
|
|
1749
|
+
return _Shared.RangeCalendar;
|
|
1750
|
+
}
|
|
1751
|
+
});
|
|
1716
1752
|
Object.defineProperty(exports, "RecoveryActionListing", {
|
|
1717
1753
|
enumerable: true,
|
|
1718
1754
|
get: function get() {
|
|
@@ -1917,6 +1953,12 @@ Object.defineProperty(exports, "SeoOptions", {
|
|
|
1917
1953
|
return _Stores.SeoOptions;
|
|
1918
1954
|
}
|
|
1919
1955
|
});
|
|
1956
|
+
Object.defineProperty(exports, "ServiceDetail", {
|
|
1957
|
+
enumerable: true,
|
|
1958
|
+
get: function get() {
|
|
1959
|
+
return _Stores.ServiceDetail;
|
|
1960
|
+
}
|
|
1961
|
+
});
|
|
1920
1962
|
Object.defineProperty(exports, "SettingItemUI", {
|
|
1921
1963
|
enumerable: true,
|
|
1922
1964
|
get: function get() {
|
|
@@ -2211,6 +2253,12 @@ Object.defineProperty(exports, "useWindowSize", {
|
|
|
2211
2253
|
return _useWindowSize.useWindowSize;
|
|
2212
2254
|
}
|
|
2213
2255
|
});
|
|
2256
|
+
Object.defineProperty(exports, "verifyDecimals", {
|
|
2257
|
+
enumerable: true,
|
|
2258
|
+
get: function get() {
|
|
2259
|
+
return _utils.verifyDecimals;
|
|
2260
|
+
}
|
|
2261
|
+
});
|
|
2214
2262
|
|
|
2215
2263
|
var _Messages = require("./components/Messages");
|
|
2216
2264
|
|
package/package.json
CHANGED
|
@@ -45,6 +45,7 @@ import { OrdersTable } from './OrdersTable'
|
|
|
45
45
|
import { OrdersCards } from './OrdersCards'
|
|
46
46
|
import { ReviewCustomer } from './ReviewCustomer'
|
|
47
47
|
import { CountryFilter } from './CountryFilter'
|
|
48
|
+
import { OrderToPrint } from './OrderToPrint'
|
|
48
49
|
|
|
49
50
|
export {
|
|
50
51
|
Appointments,
|
|
@@ -92,5 +93,6 @@ export {
|
|
|
92
93
|
OrdersTable,
|
|
93
94
|
OrdersCards,
|
|
94
95
|
ReviewCustomer,
|
|
95
|
-
CountryFilter
|
|
96
|
+
CountryFilter,
|
|
97
|
+
OrderToPrint
|
|
96
98
|
}
|
|
@@ -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
|
@@ -53,7 +53,8 @@ import {
|
|
|
53
53
|
OrdersListing,
|
|
54
54
|
OrdersTable,
|
|
55
55
|
OrdersCards,
|
|
56
|
-
ReviewCustomer
|
|
56
|
+
ReviewCustomer,
|
|
57
|
+
OrderToPrint
|
|
57
58
|
} from './components/Orders'
|
|
58
59
|
import { Support } from './components/Support'
|
|
59
60
|
import {
|
|
@@ -299,7 +300,9 @@ import {
|
|
|
299
300
|
PaymentOptionSquare,
|
|
300
301
|
BusinessWalletsList,
|
|
301
302
|
PaymentOptionMethods,
|
|
302
|
-
BusinessPublishing
|
|
303
|
+
BusinessPublishing,
|
|
304
|
+
ServiceDetail,
|
|
305
|
+
ProductVideos
|
|
303
306
|
} from './components/Stores'
|
|
304
307
|
import {
|
|
305
308
|
CustomersListing,
|
|
@@ -324,7 +327,8 @@ import {
|
|
|
324
327
|
CustomerCashWalletDetails,
|
|
325
328
|
CustomerWalletEvents,
|
|
326
329
|
UserFormDetailsUI,
|
|
327
|
-
ProfessionalListing
|
|
330
|
+
ProfessionalListing,
|
|
331
|
+
ProfessionalAddForm
|
|
328
332
|
} from './components/Users'
|
|
329
333
|
import {
|
|
330
334
|
RewardsPrograms,
|
|
@@ -355,12 +359,15 @@ import {
|
|
|
355
359
|
CitySelector,
|
|
356
360
|
ColumnAllowSettingPopover,
|
|
357
361
|
Pagination,
|
|
358
|
-
ImageCrop
|
|
362
|
+
ImageCrop,
|
|
363
|
+
NotFoundSource,
|
|
364
|
+
RangeCalendar,
|
|
365
|
+
InputPhoneNumber
|
|
359
366
|
} from './components/Shared'
|
|
360
367
|
import { LogoutButton } from './components/LogoutButton'
|
|
361
368
|
import { LanguageSelector } from './components/LanguageSelector'
|
|
362
369
|
|
|
363
|
-
import { capitalize } from './utils'
|
|
370
|
+
import { capitalize, verifyDecimals } from './utils'
|
|
364
371
|
|
|
365
372
|
// contexts
|
|
366
373
|
import { ThemeContext, ThemeProvider, useTheme } from './contexts/ThemeContext'
|
|
@@ -431,6 +438,7 @@ export {
|
|
|
431
438
|
OrdersTable,
|
|
432
439
|
OrdersCards,
|
|
433
440
|
ReviewCustomer,
|
|
441
|
+
OrderToPrint,
|
|
434
442
|
|
|
435
443
|
BusinessAnalytics,
|
|
436
444
|
DriverAnalytics,
|
|
@@ -510,6 +518,7 @@ export {
|
|
|
510
518
|
DriversGroupAutoassign,
|
|
511
519
|
DriversMarkAsBusy,
|
|
512
520
|
ProfessionalListing,
|
|
521
|
+
ProfessionalAddForm,
|
|
513
522
|
GoogleGpsButton,
|
|
514
523
|
|
|
515
524
|
HomePage,
|
|
@@ -679,6 +688,8 @@ export {
|
|
|
679
688
|
BusinessWalletsList,
|
|
680
689
|
PaymentOptionMethods,
|
|
681
690
|
BusinessPublishing,
|
|
691
|
+
ServiceDetail,
|
|
692
|
+
ProductVideos,
|
|
682
693
|
|
|
683
694
|
LogoutButton,
|
|
684
695
|
LanguageSelector,
|
|
@@ -736,8 +747,12 @@ export {
|
|
|
736
747
|
ColumnAllowSettingPopover,
|
|
737
748
|
Pagination,
|
|
738
749
|
ImageCrop,
|
|
750
|
+
NotFoundSource,
|
|
751
|
+
RangeCalendar,
|
|
752
|
+
InputPhoneNumber,
|
|
739
753
|
|
|
740
754
|
capitalize,
|
|
755
|
+
verifyDecimals,
|
|
741
756
|
|
|
742
757
|
// contexts
|
|
743
758
|
ThemeContext,
|