@syzy/apphost 1.0.1 → 1.0.2
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/dist/App.js +83 -0
- package/dist/AppHostProvider.js +4 -0
- package/dist/AppHostRoutes.js +7 -0
- package/dist/api/image-api.js +45 -0
- package/dist/api/mapping-api.js +427 -0
- package/dist/bookingModule/components/AmenityForm.js +19 -0
- package/dist/bookingModule/components/BillingManagement.js +17 -0
- package/dist/bookingModule/components/CreateRoomForm.js +19 -0
- package/dist/bookingModule/components/ExtraRequirementForm.js +19 -0
- package/dist/bookingModule/components/ReservationForm.js +18 -0
- package/dist/bookingModule/components/RoomCategoryForm.js +19 -0
- package/dist/bookingModule/components/RoomCategoryPriceForm.js +20 -0
- package/dist/bookingModule/components/RoomExtraRequirementCapture.js +18 -0
- package/dist/bookingModule/components/RoomFacilityForm.js +19 -0
- package/dist/bookingModule/components/RoomReservationAction.js +18 -0
- package/dist/components/Home/Home.js +14 -0
- package/dist/components/Loader/Loader.js +5 -0
- package/dist/components/Login/Login.js +149 -0
- package/dist/components/Login/loginSchema.js +41 -0
- package/dist/components/Mappings/BranchMapping/Branch.js +135 -0
- package/dist/components/Mappings/BranchMapping/BranchTableColumns.js +21 -0
- package/dist/components/Mappings/BranchMapping/MappingFormBranchUser.js +150 -0
- package/dist/components/Mappings/BranchMapping/MappingTableColumns.js +29 -0
- package/dist/components/Mappings/BranchMapping/branchSchema.js +34 -0
- package/dist/components/Mappings/ComponentMapping/ComponentRoleMapping.js +98 -0
- package/dist/components/Mappings/ComponentMapping/componentRoleColumns.js +29 -0
- package/dist/components/Mappings/MappingForm/MappingForm.js +142 -0
- package/dist/components/Mappings/MappingForm/mappingSchema.js +32 -0
- package/dist/components/Mappings/RoleMapping/MappingFormUserRole.js +194 -0
- package/dist/components/Mappings/RoleMapping/UserRoleTableColumns.js +33 -0
- package/dist/components/NavBar/Sidebar.js +56 -0
- package/dist/components/ProfileForm/ProfileForm.js +190 -0
- package/dist/components/ProfileForm/ProfileList.js +33 -0
- package/dist/components/ProfileForm/profileColumns.js +67 -0
- package/dist/components/ProfileForm/profileSchema.js +50 -0
- package/dist/components/SettingsPage/SettingsPage.js +240 -0
- package/dist/components/api/settings-api.js +131 -0
- package/dist/components/common/Form/FormActionButtons.js +6 -0
- package/dist/components/common/Form/FormLabel.js +6 -0
- package/dist/components/common/ListTable/ListHeader.js +5 -0
- package/dist/components/common/ListTable/ListTable.js +31 -0
- package/dist/components/common/Modal/Modal.js +6 -0
- package/dist/config/EnvConfig.js +13 -0
- package/dist/config/amplifyConfig.js +45 -0
- package/dist/configureAppHost.js +5 -0
- package/dist/customGraphQL/customMutations.js +53 -0
- package/dist/customGraphQL/customQueries.js +104 -0
- package/dist/domain/input/input-types.js +1 -0
- package/dist/domain/model/BranchDto.js +8 -0
- package/dist/domain/model/ComponentMappingDto.js +19 -0
- package/dist/domain/model/MappingDto.js +16 -0
- package/dist/domain/model/PrefixDescriptionDto.js +13 -0
- package/dist/domain/model/ProfileDto.js +20 -0
- package/dist/domain/model/RoleMappingDto.js +19 -0
- package/dist/domain/model/SettingsDto.js +7 -0
- package/dist/domain/model/UserMappingDto.js +28 -0
- package/dist/domain/model/imageDto.js +1 -0
- package/dist/domain/type/EntityTypes.js +6 -0
- package/dist/domain/type/MappingOptions.js +1 -0
- package/dist/domain/type/MappingTypes.js +7 -0
- package/dist/domain/type/Nullable.js +1 -0
- package/dist/domain/type/ResettingPeriodOptions.js +8 -0
- package/dist/domain/type/RolesEnum.js +7 -0
- package/dist/domain/type/SelectType.js +1 -0
- package/dist/domain/type/StatusEnum.js +6 -0
- package/dist/domain/type/signUpOptions.js +4 -0
- package/dist/domain/type/statusOptions.js +4 -0
- package/dist/graphql/profileQueries.js +89 -0
- package/dist/hoc/withSyzyAuth.js +87 -0
- package/dist/hooks/useCurrentUser.js +6 -0
- package/dist/hooks/useDispatch.js +7 -0
- package/dist/hooks/usePermission.js +7 -0
- package/dist/index.js +3 -15
- package/dist/main.js +60 -0
- package/dist/services/Client.Service.js +96 -0
- package/dist/services/Storage-service.js +26 -0
- package/dist/services/navigationMenu.js +9 -0
- package/dist/static/constants.js +34 -0
- package/dist/store/AppAction.js +5 -0
- package/dist/store/AppContext.js +3 -0
- package/dist/store/AppContextType.js +6 -0
- package/dist/store/AppProvider.js +32 -0
- package/dist/store/HostedInContainerContext.js +11 -0
- package/dist/store/SesssionReducer.js +16 -0
- package/dist/types/App.d.ts +4 -0
- package/dist/types/AppHostProvider.d.ts +6 -0
- package/dist/types/AppHostRoutes.d.ts +1 -0
- package/dist/types/api/image-api.d.ts +8 -0
- package/dist/types/api/mapping-api.d.ts +80 -0
- package/dist/types/bookingModule/components/AmenityForm.d.ts +3 -0
- package/dist/types/bookingModule/components/BillingManagement.d.ts +3 -0
- package/dist/types/bookingModule/components/CreateRoomForm.d.ts +3 -0
- package/dist/types/bookingModule/components/ExtraRequirementForm.d.ts +3 -0
- package/dist/types/bookingModule/components/ReservationForm.d.ts +3 -0
- package/dist/types/bookingModule/components/RoomCategoryForm.d.ts +3 -0
- package/dist/types/bookingModule/components/RoomCategoryPriceForm.d.ts +3 -0
- package/dist/types/bookingModule/components/RoomExtraRequirementCapture.d.ts +3 -0
- package/dist/types/bookingModule/components/RoomFacilityForm.d.ts +3 -0
- package/dist/types/bookingModule/components/RoomReservationAction.d.ts +3 -0
- package/dist/types/components/Home/Home.d.ts +3 -0
- package/dist/types/components/Loader/Loader.d.ts +2 -0
- package/dist/types/components/Login/Login.d.ts +7 -0
- package/dist/types/components/Login/loginSchema.d.ts +27 -0
- package/dist/types/components/Mappings/BranchMapping/Branch.d.ts +5 -0
- package/dist/types/components/Mappings/BranchMapping/BranchTableColumns.d.ts +10 -0
- package/dist/types/components/Mappings/BranchMapping/MappingFormBranchUser.d.ts +3 -0
- package/dist/types/components/Mappings/BranchMapping/MappingTableColumns.d.ts +14 -0
- package/dist/types/components/Mappings/BranchMapping/branchSchema.d.ts +37 -0
- package/dist/types/components/Mappings/ComponentMapping/ComponentRoleMapping.d.ts +3 -0
- package/dist/types/components/Mappings/ComponentMapping/componentRoleColumns.d.ts +3 -0
- package/dist/types/components/Mappings/MappingForm/MappingForm.d.ts +35 -0
- package/dist/types/components/Mappings/MappingForm/mappingSchema.d.ts +23 -0
- package/dist/types/components/Mappings/RoleMapping/MappingFormUserRole.d.ts +5 -0
- package/dist/types/components/Mappings/RoleMapping/UserRoleTableColumns.d.ts +3 -0
- package/dist/types/components/NavBar/Sidebar.d.ts +4 -0
- package/dist/types/components/ProfileForm/ProfileForm.d.ts +3 -0
- package/dist/types/components/ProfileForm/ProfileList.d.ts +3 -0
- package/dist/types/components/ProfileForm/profileColumns.d.ts +3 -0
- package/dist/types/components/ProfileForm/profileSchema.d.ts +52 -0
- package/dist/types/components/SettingsPage/SettingsPage.d.ts +3 -0
- package/dist/types/components/api/settings-api.d.ts +26 -0
- package/dist/types/components/common/Form/FormActionButtons.d.ts +11 -0
- package/dist/types/components/common/Form/FormLabel.d.ts +8 -0
- package/dist/types/components/common/ListTable/ListHeader.d.ts +8 -0
- package/dist/types/components/common/ListTable/ListTable.d.ts +17 -0
- package/dist/types/components/common/Modal/Modal.d.ts +11 -0
- package/dist/types/config/EnvConfig.d.ts +13 -0
- package/dist/types/config/amplifyConfig.d.ts +1 -0
- package/dist/types/configureAppHost.d.ts +6 -0
- package/dist/types/customGraphQL/customMutations.d.ts +3 -0
- package/dist/types/customGraphQL/customQueries.d.ts +7 -0
- package/dist/types/domain/input/input-types.d.ts +47 -0
- package/dist/types/domain/model/BranchDto.d.ts +9 -0
- package/dist/types/domain/model/ComponentMappingDto.d.ts +24 -0
- package/dist/types/domain/model/MappingDto.d.ts +30 -0
- package/dist/types/domain/model/PrefixDescriptionDto.d.ts +16 -0
- package/dist/types/domain/model/ProfileDto.d.ts +21 -0
- package/dist/types/domain/model/RoleMappingDto.d.ts +14 -0
- package/dist/types/domain/model/SettingsDto.d.ts +8 -0
- package/dist/types/domain/model/UserMappingDto.d.ts +14 -0
- package/dist/types/domain/model/imageDto.d.ts +4 -0
- package/dist/types/domain/type/EntityTypes.d.ts +5 -0
- package/dist/types/domain/type/MappingOptions.d.ts +5 -0
- package/dist/types/domain/type/MappingTypes.d.ts +6 -0
- package/dist/types/domain/type/Nullable.d.ts +13 -0
- package/dist/types/domain/type/ResettingPeriodOptions.d.ts +2 -0
- package/dist/types/domain/type/RolesEnum.d.ts +6 -0
- package/dist/types/domain/type/SelectType.d.ts +16 -0
- package/dist/types/domain/type/StatusEnum.d.ts +5 -0
- package/dist/types/domain/type/signUpOptions.d.ts +2 -0
- package/dist/types/domain/type/statusOptions.d.ts +2 -0
- package/dist/types/graphql/profileQueries.d.ts +4 -0
- package/dist/types/hoc/withSyzyAuth.d.ts +2 -0
- package/dist/types/hooks/useCurrentUser.d.ts +3 -0
- package/dist/types/hooks/useDispatch.d.ts +3 -0
- package/dist/types/hooks/usePermission.d.ts +1 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/main.d.ts +4 -0
- package/dist/types/services/Client.Service.d.ts +12 -0
- package/dist/types/services/Storage-service.d.ts +2 -0
- package/dist/types/services/navigationMenu.d.ts +1 -0
- package/dist/types/static/constants.d.ts +34 -0
- package/dist/types/store/AppAction.d.ts +11 -0
- package/dist/types/store/AppContext.d.ts +3 -0
- package/dist/types/store/AppContextType.d.ts +12 -0
- package/dist/types/store/AppProvider.d.ts +7 -0
- package/dist/types/store/HostedInContainerContext.d.ts +5 -0
- package/dist/types/store/SesssionReducer.d.ts +4 -0
- package/dist/types/types.d.ts +26 -0
- package/dist/types/util/AuthUtils.d.ts +1 -0
- package/dist/types/util/LogEnum.d.ts +6 -0
- package/dist/types/util/Logger.d.ts +6 -0
- package/dist/types/util/SyzyDate.d.ts +69 -0
- package/dist/types/util/dateUtils.d.ts +10 -0
- package/dist/types/util/hostedinContainer.d.ts +1 -0
- package/dist/types/util/model-types.d.ts +96 -0
- package/dist/types/util/prefixAndResettingValidation.d.ts +9 -0
- package/dist/types/util/transformToData.d.ts +1 -0
- package/dist/types.js +14 -0
- package/dist/util/AuthUtils.js +10 -0
- package/dist/util/LogEnum.js +7 -0
- package/dist/util/Logger.js +18 -0
- package/dist/util/SyzyDate.js +265 -0
- package/dist/util/dateUtils.js +24 -0
- package/dist/util/hostedinContainer.js +9 -0
- package/dist/util/model-types.js +18 -0
- package/dist/util/prefixAndResettingValidation.js +54 -0
- package/dist/util/transformToData.js +9 -0
- package/package.json +14 -9
- package/dist/__federation_shared_@tanstack/react-query-DHuUsaNz.js +0 -2517
- package/dist/__federation_shared_react-CikWE6qG.js +0 -7
- package/dist/__federation_shared_react-bootstrap-BKlZRvMR.js +0 -7516
- package/dist/__federation_shared_react-dom-vrQ70Ay8.js +0 -372
- package/dist/__federation_shared_react-router-dom-BKminmS4.js +0 -10448
- package/dist/__federation_shared_react-select-B6kehBDI.js +0 -4056
- package/dist/__federation_shared_react-toastify-B0S0UGr3.js +0 -412
- package/dist/_commonjsHelpers-C6fGbg64.js +0 -6
- package/dist/_virtual___federation_fn_import-XZCKozko.js +0 -217
- package/dist/favicon.ico +0 -0
- package/dist/index-DgtWMtjZ.js +0 -184
- package/dist/index-eZknuYwc.js +0 -1219
- package/dist/jsx-runtime-D_t4bG-_.js +0 -264
- package/dist/manifest.webmanifest +0 -1
- package/dist/pwa/Hotel-icon.jpg +0 -0
- package/dist/pwa/apple-touch-icon-180x180.png +0 -0
- package/dist/pwa/favicon.ico +0 -0
- package/dist/pwa/maskable-icon-512x512.png +0 -0
- package/dist/pwa/pwa-192x192.png +0 -0
- package/dist/pwa/pwa-512x512.png +0 -0
- package/dist/pwa/pwa-64x64.png +0 -0
- package/dist/registerSW.js +0 -1
- package/dist/sw.js +0 -1
- package/dist/workbox-1ef09536.js +0 -1
package/dist/index-DgtWMtjZ.js
DELETED
|
@@ -1,184 +0,0 @@
|
|
|
1
|
-
function w() {
|
|
2
|
-
return w = Object.assign ? Object.assign.bind() : function(o) {
|
|
3
|
-
for (var f = 1; f < arguments.length; f++) {
|
|
4
|
-
var c = arguments[f];
|
|
5
|
-
for (var a in c) ({}).hasOwnProperty.call(c, a) && (o[a] = c[a]);
|
|
6
|
-
}
|
|
7
|
-
return o;
|
|
8
|
-
}, w.apply(null, arguments);
|
|
9
|
-
}
|
|
10
|
-
function fe(o, f) {
|
|
11
|
-
if (o == null) return {};
|
|
12
|
-
var c = {};
|
|
13
|
-
for (var a in o) if ({}.hasOwnProperty.call(o, a)) {
|
|
14
|
-
if (f.indexOf(a) !== -1) continue;
|
|
15
|
-
c[a] = o[a];
|
|
16
|
-
}
|
|
17
|
-
return c;
|
|
18
|
-
}
|
|
19
|
-
function I(o, f) {
|
|
20
|
-
return I = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function(c, a) {
|
|
21
|
-
return c.__proto__ = a, c;
|
|
22
|
-
}, I(o, f);
|
|
23
|
-
}
|
|
24
|
-
var P = { exports: {} }, t = {};
|
|
25
|
-
var g;
|
|
26
|
-
function ce() {
|
|
27
|
-
if (g) return t;
|
|
28
|
-
g = 1;
|
|
29
|
-
var o = typeof Symbol == "function" && Symbol.for, f = o ? Symbol.for("react.element") : 60103, c = o ? Symbol.for("react.portal") : 60106, a = o ? Symbol.for("react.fragment") : 60107, u = o ? Symbol.for("react.strict_mode") : 60108, l = o ? Symbol.for("react.profiler") : 60114, m = o ? Symbol.for("react.provider") : 60109, d = o ? Symbol.for("react.context") : 60110, S = o ? Symbol.for("react.async_mode") : 60111, y = o ? Symbol.for("react.concurrent_mode") : 60111, E = o ? Symbol.for("react.forward_ref") : 60112, _ = o ? Symbol.for("react.suspense") : 60113, R = o ? Symbol.for("react.suspense_list") : 60120, p = o ? Symbol.for("react.memo") : 60115, v = o ? Symbol.for("react.lazy") : 60116, T = o ? Symbol.for("react.block") : 60121, x = o ? Symbol.for("react.fundamental") : 60117, $ = o ? Symbol.for("react.responder") : 60118, A = o ? Symbol.for("react.scope") : 60119;
|
|
30
|
-
function i(e) {
|
|
31
|
-
if (typeof e == "object" && e !== null) {
|
|
32
|
-
var b = e.$$typeof;
|
|
33
|
-
switch (b) {
|
|
34
|
-
case f:
|
|
35
|
-
switch (e = e.type, e) {
|
|
36
|
-
case S:
|
|
37
|
-
case y:
|
|
38
|
-
case a:
|
|
39
|
-
case l:
|
|
40
|
-
case u:
|
|
41
|
-
case _:
|
|
42
|
-
return e;
|
|
43
|
-
default:
|
|
44
|
-
switch (e = e && e.$$typeof, e) {
|
|
45
|
-
case d:
|
|
46
|
-
case E:
|
|
47
|
-
case v:
|
|
48
|
-
case p:
|
|
49
|
-
case m:
|
|
50
|
-
return e;
|
|
51
|
-
default:
|
|
52
|
-
return b;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
case c:
|
|
56
|
-
return b;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
function s(e) {
|
|
61
|
-
return i(e) === y;
|
|
62
|
-
}
|
|
63
|
-
return t.AsyncMode = S, t.ConcurrentMode = y, t.ContextConsumer = d, t.ContextProvider = m, t.Element = f, t.ForwardRef = E, t.Fragment = a, t.Lazy = v, t.Memo = p, t.Portal = c, t.Profiler = l, t.StrictMode = u, t.Suspense = _, t.isAsyncMode = function(e) {
|
|
64
|
-
return s(e) || i(e) === S;
|
|
65
|
-
}, t.isConcurrentMode = s, t.isContextConsumer = function(e) {
|
|
66
|
-
return i(e) === d;
|
|
67
|
-
}, t.isContextProvider = function(e) {
|
|
68
|
-
return i(e) === m;
|
|
69
|
-
}, t.isElement = function(e) {
|
|
70
|
-
return typeof e == "object" && e !== null && e.$$typeof === f;
|
|
71
|
-
}, t.isForwardRef = function(e) {
|
|
72
|
-
return i(e) === E;
|
|
73
|
-
}, t.isFragment = function(e) {
|
|
74
|
-
return i(e) === a;
|
|
75
|
-
}, t.isLazy = function(e) {
|
|
76
|
-
return i(e) === v;
|
|
77
|
-
}, t.isMemo = function(e) {
|
|
78
|
-
return i(e) === p;
|
|
79
|
-
}, t.isPortal = function(e) {
|
|
80
|
-
return i(e) === c;
|
|
81
|
-
}, t.isProfiler = function(e) {
|
|
82
|
-
return i(e) === l;
|
|
83
|
-
}, t.isStrictMode = function(e) {
|
|
84
|
-
return i(e) === u;
|
|
85
|
-
}, t.isSuspense = function(e) {
|
|
86
|
-
return i(e) === _;
|
|
87
|
-
}, t.isValidElementType = function(e) {
|
|
88
|
-
return typeof e == "string" || typeof e == "function" || e === a || e === y || e === l || e === u || e === _ || e === R || typeof e == "object" && e !== null && (e.$$typeof === v || e.$$typeof === p || e.$$typeof === m || e.$$typeof === d || e.$$typeof === E || e.$$typeof === x || e.$$typeof === $ || e.$$typeof === A || e.$$typeof === T);
|
|
89
|
-
}, t.typeOf = i, t;
|
|
90
|
-
}
|
|
91
|
-
var n = {};
|
|
92
|
-
var F;
|
|
93
|
-
function se() {
|
|
94
|
-
return F || (F = 1, process.env.NODE_ENV !== "production" && (function() {
|
|
95
|
-
var o = typeof Symbol == "function" && Symbol.for, f = o ? Symbol.for("react.element") : 60103, c = o ? Symbol.for("react.portal") : 60106, a = o ? Symbol.for("react.fragment") : 60107, u = o ? Symbol.for("react.strict_mode") : 60108, l = o ? Symbol.for("react.profiler") : 60114, m = o ? Symbol.for("react.provider") : 60109, d = o ? Symbol.for("react.context") : 60110, S = o ? Symbol.for("react.async_mode") : 60111, y = o ? Symbol.for("react.concurrent_mode") : 60111, E = o ? Symbol.for("react.forward_ref") : 60112, _ = o ? Symbol.for("react.suspense") : 60113, R = o ? Symbol.for("react.suspense_list") : 60120, p = o ? Symbol.for("react.memo") : 60115, v = o ? Symbol.for("react.lazy") : 60116, T = o ? Symbol.for("react.block") : 60121, x = o ? Symbol.for("react.fundamental") : 60117, $ = o ? Symbol.for("react.responder") : 60118, A = o ? Symbol.for("react.scope") : 60119;
|
|
96
|
-
function i(r) {
|
|
97
|
-
return typeof r == "string" || typeof r == "function" || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.
|
|
98
|
-
r === a || r === y || r === l || r === u || r === _ || r === R || typeof r == "object" && r !== null && (r.$$typeof === v || r.$$typeof === p || r.$$typeof === m || r.$$typeof === d || r.$$typeof === E || r.$$typeof === x || r.$$typeof === $ || r.$$typeof === A || r.$$typeof === T);
|
|
99
|
-
}
|
|
100
|
-
function s(r) {
|
|
101
|
-
if (typeof r == "object" && r !== null) {
|
|
102
|
-
var M = r.$$typeof;
|
|
103
|
-
switch (M) {
|
|
104
|
-
case f:
|
|
105
|
-
var C = r.type;
|
|
106
|
-
switch (C) {
|
|
107
|
-
case S:
|
|
108
|
-
case y:
|
|
109
|
-
case a:
|
|
110
|
-
case l:
|
|
111
|
-
case u:
|
|
112
|
-
case _:
|
|
113
|
-
return C;
|
|
114
|
-
default:
|
|
115
|
-
var Y = C && C.$$typeof;
|
|
116
|
-
switch (Y) {
|
|
117
|
-
case d:
|
|
118
|
-
case E:
|
|
119
|
-
case v:
|
|
120
|
-
case p:
|
|
121
|
-
case m:
|
|
122
|
-
return Y;
|
|
123
|
-
default:
|
|
124
|
-
return M;
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
case c:
|
|
128
|
-
return M;
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
var e = S, b = y, L = d, D = m, z = f, q = E, V = a, j = v, U = p, k = c, W = l, B = u, G = _, O = !1;
|
|
133
|
-
function K(r) {
|
|
134
|
-
return O || (O = !0, console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")), h(r) || s(r) === S;
|
|
135
|
-
}
|
|
136
|
-
function h(r) {
|
|
137
|
-
return s(r) === y;
|
|
138
|
-
}
|
|
139
|
-
function X(r) {
|
|
140
|
-
return s(r) === d;
|
|
141
|
-
}
|
|
142
|
-
function Z(r) {
|
|
143
|
-
return s(r) === m;
|
|
144
|
-
}
|
|
145
|
-
function H(r) {
|
|
146
|
-
return typeof r == "object" && r !== null && r.$$typeof === f;
|
|
147
|
-
}
|
|
148
|
-
function J(r) {
|
|
149
|
-
return s(r) === E;
|
|
150
|
-
}
|
|
151
|
-
function Q(r) {
|
|
152
|
-
return s(r) === a;
|
|
153
|
-
}
|
|
154
|
-
function ee(r) {
|
|
155
|
-
return s(r) === v;
|
|
156
|
-
}
|
|
157
|
-
function re(r) {
|
|
158
|
-
return s(r) === p;
|
|
159
|
-
}
|
|
160
|
-
function oe(r) {
|
|
161
|
-
return s(r) === c;
|
|
162
|
-
}
|
|
163
|
-
function te(r) {
|
|
164
|
-
return s(r) === l;
|
|
165
|
-
}
|
|
166
|
-
function ne(r) {
|
|
167
|
-
return s(r) === u;
|
|
168
|
-
}
|
|
169
|
-
function ae(r) {
|
|
170
|
-
return s(r) === _;
|
|
171
|
-
}
|
|
172
|
-
n.AsyncMode = e, n.ConcurrentMode = b, n.ContextConsumer = L, n.ContextProvider = D, n.Element = z, n.ForwardRef = q, n.Fragment = V, n.Lazy = j, n.Memo = U, n.Portal = k, n.Profiler = W, n.StrictMode = B, n.Suspense = G, n.isAsyncMode = K, n.isConcurrentMode = h, n.isContextConsumer = X, n.isContextProvider = Z, n.isElement = H, n.isForwardRef = J, n.isFragment = Q, n.isLazy = ee, n.isMemo = re, n.isPortal = oe, n.isProfiler = te, n.isStrictMode = ne, n.isSuspense = ae, n.isValidElementType = i, n.typeOf = s;
|
|
173
|
-
})()), n;
|
|
174
|
-
}
|
|
175
|
-
var N;
|
|
176
|
-
function ie() {
|
|
177
|
-
return N || (N = 1, process.env.NODE_ENV === "production" ? P.exports = ce() : P.exports = se()), P.exports;
|
|
178
|
-
}
|
|
179
|
-
export {
|
|
180
|
-
fe as _,
|
|
181
|
-
w as a,
|
|
182
|
-
I as b,
|
|
183
|
-
ie as r
|
|
184
|
-
};
|