@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-eZknuYwc.js
DELETED
|
@@ -1,1219 +0,0 @@
|
|
|
1
|
-
var le = { exports: {} }, f = {};
|
|
2
|
-
var je;
|
|
3
|
-
function Ie() {
|
|
4
|
-
if (je) return f;
|
|
5
|
-
je = 1;
|
|
6
|
-
var N = Symbol.for("react.transitional.element"), i = Symbol.for("react.portal"), pe = Symbol.for("react.fragment"), de = Symbol.for("react.strict_mode"), z = Symbol.for("react.profiler"), b = Symbol.for("react.consumer"), te = Symbol.for("react.context"), W = Symbol.for("react.forward_ref"), G = Symbol.for("react.suspense"), ne = Symbol.for("react.memo"), M = Symbol.for("react.lazy"), Y = Symbol.for("react.activity"), B = Symbol.iterator;
|
|
7
|
-
function re(t) {
|
|
8
|
-
return t === null || typeof t != "object" ? null : (t = B && t[B] || t["@@iterator"], typeof t == "function" ? t : null);
|
|
9
|
-
}
|
|
10
|
-
var Q = {
|
|
11
|
-
isMounted: function() {
|
|
12
|
-
return !1;
|
|
13
|
-
},
|
|
14
|
-
enqueueForceUpdate: function() {
|
|
15
|
-
},
|
|
16
|
-
enqueueReplaceState: function() {
|
|
17
|
-
},
|
|
18
|
-
enqueueSetState: function() {
|
|
19
|
-
}
|
|
20
|
-
}, K = Object.assign, oe = {};
|
|
21
|
-
function S(t, o, c) {
|
|
22
|
-
this.props = t, this.context = o, this.refs = oe, this.updater = c || Q;
|
|
23
|
-
}
|
|
24
|
-
S.prototype.isReactComponent = {}, S.prototype.setState = function(t, o) {
|
|
25
|
-
if (typeof t != "object" && typeof t != "function" && t != null)
|
|
26
|
-
throw Error(
|
|
27
|
-
"takes an object of state variables to update or a function which returns an object of state variables."
|
|
28
|
-
);
|
|
29
|
-
this.updater.enqueueSetState(this, t, o, "setState");
|
|
30
|
-
}, S.prototype.forceUpdate = function(t) {
|
|
31
|
-
this.updater.enqueueForceUpdate(this, t, "forceUpdate");
|
|
32
|
-
};
|
|
33
|
-
function D() {
|
|
34
|
-
}
|
|
35
|
-
D.prototype = S.prototype;
|
|
36
|
-
function X(t, o, c) {
|
|
37
|
-
this.props = t, this.context = o, this.refs = oe, this.updater = c || Q;
|
|
38
|
-
}
|
|
39
|
-
var H = X.prototype = new D();
|
|
40
|
-
H.constructor = X, K(H, S.prototype), H.isPureReactComponent = !0;
|
|
41
|
-
var A = Array.isArray;
|
|
42
|
-
function Z() {
|
|
43
|
-
}
|
|
44
|
-
var m = { H: null, A: null, T: null, S: null }, ue = Object.prototype.hasOwnProperty;
|
|
45
|
-
function C(t, o, c) {
|
|
46
|
-
var a = c.ref;
|
|
47
|
-
return {
|
|
48
|
-
$$typeof: N,
|
|
49
|
-
type: t,
|
|
50
|
-
key: o,
|
|
51
|
-
ref: a !== void 0 ? a : null,
|
|
52
|
-
props: c
|
|
53
|
-
};
|
|
54
|
-
}
|
|
55
|
-
function I(t, o) {
|
|
56
|
-
return C(t.type, o, t.props);
|
|
57
|
-
}
|
|
58
|
-
function F(t) {
|
|
59
|
-
return typeof t == "object" && t !== null && t.$$typeof === N;
|
|
60
|
-
}
|
|
61
|
-
function g(t) {
|
|
62
|
-
var o = { "=": "=0", ":": "=2" };
|
|
63
|
-
return "$" + t.replace(/[=:]/g, function(c) {
|
|
64
|
-
return o[c];
|
|
65
|
-
});
|
|
66
|
-
}
|
|
67
|
-
var V = /\/+/g;
|
|
68
|
-
function k(t, o) {
|
|
69
|
-
return typeof t == "object" && t !== null && t.key != null ? g("" + t.key) : o.toString(36);
|
|
70
|
-
}
|
|
71
|
-
function $(t) {
|
|
72
|
-
switch (t.status) {
|
|
73
|
-
case "fulfilled":
|
|
74
|
-
return t.value;
|
|
75
|
-
case "rejected":
|
|
76
|
-
throw t.reason;
|
|
77
|
-
default:
|
|
78
|
-
switch (typeof t.status == "string" ? t.then(Z, Z) : (t.status = "pending", t.then(
|
|
79
|
-
function(o) {
|
|
80
|
-
t.status === "pending" && (t.status = "fulfilled", t.value = o);
|
|
81
|
-
},
|
|
82
|
-
function(o) {
|
|
83
|
-
t.status === "pending" && (t.status = "rejected", t.reason = o);
|
|
84
|
-
}
|
|
85
|
-
)), t.status) {
|
|
86
|
-
case "fulfilled":
|
|
87
|
-
return t.value;
|
|
88
|
-
case "rejected":
|
|
89
|
-
throw t.reason;
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
throw t;
|
|
93
|
-
}
|
|
94
|
-
function O(t, o, c, a, y) {
|
|
95
|
-
var v = typeof t;
|
|
96
|
-
(v === "undefined" || v === "boolean") && (t = null);
|
|
97
|
-
var E = !1;
|
|
98
|
-
if (t === null) E = !0;
|
|
99
|
-
else
|
|
100
|
-
switch (v) {
|
|
101
|
-
case "bigint":
|
|
102
|
-
case "string":
|
|
103
|
-
case "number":
|
|
104
|
-
E = !0;
|
|
105
|
-
break;
|
|
106
|
-
case "object":
|
|
107
|
-
switch (t.$$typeof) {
|
|
108
|
-
case N:
|
|
109
|
-
case i:
|
|
110
|
-
E = !0;
|
|
111
|
-
break;
|
|
112
|
-
case M:
|
|
113
|
-
return E = t._init, O(
|
|
114
|
-
E(t._payload),
|
|
115
|
-
o,
|
|
116
|
-
c,
|
|
117
|
-
a,
|
|
118
|
-
y
|
|
119
|
-
);
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
if (E)
|
|
123
|
-
return y = y(t), E = a === "" ? "." + k(t, 0) : a, A(y) ? (c = "", E != null && (c = E.replace(V, "$&/") + "/"), O(y, o, c, "", function(L) {
|
|
124
|
-
return L;
|
|
125
|
-
})) : y != null && (F(y) && (y = I(
|
|
126
|
-
y,
|
|
127
|
-
c + (y.key == null || t && t.key === y.key ? "" : ("" + y.key).replace(
|
|
128
|
-
V,
|
|
129
|
-
"$&/"
|
|
130
|
-
) + "/") + E
|
|
131
|
-
)), o.push(y)), 1;
|
|
132
|
-
E = 0;
|
|
133
|
-
var R = a === "" ? "." : a + ":";
|
|
134
|
-
if (A(t))
|
|
135
|
-
for (var w = 0; w < t.length; w++)
|
|
136
|
-
a = t[w], v = R + k(a, w), E += O(
|
|
137
|
-
a,
|
|
138
|
-
o,
|
|
139
|
-
c,
|
|
140
|
-
v,
|
|
141
|
-
y
|
|
142
|
-
);
|
|
143
|
-
else if (w = re(t), typeof w == "function")
|
|
144
|
-
for (t = w.call(t), w = 0; !(a = t.next()).done; )
|
|
145
|
-
a = a.value, v = R + k(a, w++), E += O(
|
|
146
|
-
a,
|
|
147
|
-
o,
|
|
148
|
-
c,
|
|
149
|
-
v,
|
|
150
|
-
y
|
|
151
|
-
);
|
|
152
|
-
else if (v === "object") {
|
|
153
|
-
if (typeof t.then == "function")
|
|
154
|
-
return O(
|
|
155
|
-
$(t),
|
|
156
|
-
o,
|
|
157
|
-
c,
|
|
158
|
-
a,
|
|
159
|
-
y
|
|
160
|
-
);
|
|
161
|
-
throw o = String(t), Error(
|
|
162
|
-
"Objects are not valid as a React child (found: " + (o === "[object Object]" ? "object with keys {" + Object.keys(t).join(", ") + "}" : o) + "). If you meant to render a collection of children, use an array instead."
|
|
163
|
-
);
|
|
164
|
-
}
|
|
165
|
-
return E;
|
|
166
|
-
}
|
|
167
|
-
function P(t, o, c) {
|
|
168
|
-
if (t == null) return t;
|
|
169
|
-
var a = [], y = 0;
|
|
170
|
-
return O(t, a, "", "", function(v) {
|
|
171
|
-
return o.call(c, v, y++);
|
|
172
|
-
}), a;
|
|
173
|
-
}
|
|
174
|
-
function x(t) {
|
|
175
|
-
if (t._status === -1) {
|
|
176
|
-
var o = t._result;
|
|
177
|
-
o = o(), o.then(
|
|
178
|
-
function(c) {
|
|
179
|
-
(t._status === 0 || t._status === -1) && (t._status = 1, t._result = c);
|
|
180
|
-
},
|
|
181
|
-
function(c) {
|
|
182
|
-
(t._status === 0 || t._status === -1) && (t._status = 2, t._result = c);
|
|
183
|
-
}
|
|
184
|
-
), t._status === -1 && (t._status = 0, t._result = o);
|
|
185
|
-
}
|
|
186
|
-
if (t._status === 1) return t._result.default;
|
|
187
|
-
throw t._result;
|
|
188
|
-
}
|
|
189
|
-
var U = typeof reportError == "function" ? reportError : function(t) {
|
|
190
|
-
if (typeof window == "object" && typeof window.ErrorEvent == "function") {
|
|
191
|
-
var o = new window.ErrorEvent("error", {
|
|
192
|
-
bubbles: !0,
|
|
193
|
-
cancelable: !0,
|
|
194
|
-
message: typeof t == "object" && t !== null && typeof t.message == "string" ? String(t.message) : String(t),
|
|
195
|
-
error: t
|
|
196
|
-
});
|
|
197
|
-
if (!window.dispatchEvent(o)) return;
|
|
198
|
-
} else if (typeof process == "object" && typeof process.emit == "function") {
|
|
199
|
-
process.emit("uncaughtException", t);
|
|
200
|
-
return;
|
|
201
|
-
}
|
|
202
|
-
console.error(t);
|
|
203
|
-
}, se = {
|
|
204
|
-
map: P,
|
|
205
|
-
forEach: function(t, o, c) {
|
|
206
|
-
P(
|
|
207
|
-
t,
|
|
208
|
-
function() {
|
|
209
|
-
o.apply(this, arguments);
|
|
210
|
-
},
|
|
211
|
-
c
|
|
212
|
-
);
|
|
213
|
-
},
|
|
214
|
-
count: function(t) {
|
|
215
|
-
var o = 0;
|
|
216
|
-
return P(t, function() {
|
|
217
|
-
o++;
|
|
218
|
-
}), o;
|
|
219
|
-
},
|
|
220
|
-
toArray: function(t) {
|
|
221
|
-
return P(t, function(o) {
|
|
222
|
-
return o;
|
|
223
|
-
}) || [];
|
|
224
|
-
},
|
|
225
|
-
only: function(t) {
|
|
226
|
-
if (!F(t))
|
|
227
|
-
throw Error(
|
|
228
|
-
"React.Children.only expected to receive a single React element child."
|
|
229
|
-
);
|
|
230
|
-
return t;
|
|
231
|
-
}
|
|
232
|
-
};
|
|
233
|
-
return f.Activity = Y, f.Children = se, f.Component = S, f.Fragment = pe, f.Profiler = z, f.PureComponent = X, f.StrictMode = de, f.Suspense = G, f.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = m, f.__COMPILER_RUNTIME = {
|
|
234
|
-
__proto__: null,
|
|
235
|
-
c: function(t) {
|
|
236
|
-
return m.H.useMemoCache(t);
|
|
237
|
-
}
|
|
238
|
-
}, f.cache = function(t) {
|
|
239
|
-
return function() {
|
|
240
|
-
return t.apply(null, arguments);
|
|
241
|
-
};
|
|
242
|
-
}, f.cacheSignal = function() {
|
|
243
|
-
return null;
|
|
244
|
-
}, f.cloneElement = function(t, o, c) {
|
|
245
|
-
if (t == null)
|
|
246
|
-
throw Error(
|
|
247
|
-
"The argument must be a React element, but you passed " + t + "."
|
|
248
|
-
);
|
|
249
|
-
var a = K({}, t.props), y = t.key;
|
|
250
|
-
if (o != null)
|
|
251
|
-
for (v in o.key !== void 0 && (y = "" + o.key), o)
|
|
252
|
-
!ue.call(o, v) || v === "key" || v === "__self" || v === "__source" || v === "ref" && o.ref === void 0 || (a[v] = o[v]);
|
|
253
|
-
var v = arguments.length - 2;
|
|
254
|
-
if (v === 1) a.children = c;
|
|
255
|
-
else if (1 < v) {
|
|
256
|
-
for (var E = Array(v), R = 0; R < v; R++)
|
|
257
|
-
E[R] = arguments[R + 2];
|
|
258
|
-
a.children = E;
|
|
259
|
-
}
|
|
260
|
-
return C(t.type, y, a);
|
|
261
|
-
}, f.createContext = function(t) {
|
|
262
|
-
return t = {
|
|
263
|
-
$$typeof: te,
|
|
264
|
-
_currentValue: t,
|
|
265
|
-
_currentValue2: t,
|
|
266
|
-
_threadCount: 0,
|
|
267
|
-
Provider: null,
|
|
268
|
-
Consumer: null
|
|
269
|
-
}, t.Provider = t, t.Consumer = {
|
|
270
|
-
$$typeof: b,
|
|
271
|
-
_context: t
|
|
272
|
-
}, t;
|
|
273
|
-
}, f.createElement = function(t, o, c) {
|
|
274
|
-
var a, y = {}, v = null;
|
|
275
|
-
if (o != null)
|
|
276
|
-
for (a in o.key !== void 0 && (v = "" + o.key), o)
|
|
277
|
-
ue.call(o, a) && a !== "key" && a !== "__self" && a !== "__source" && (y[a] = o[a]);
|
|
278
|
-
var E = arguments.length - 2;
|
|
279
|
-
if (E === 1) y.children = c;
|
|
280
|
-
else if (1 < E) {
|
|
281
|
-
for (var R = Array(E), w = 0; w < E; w++)
|
|
282
|
-
R[w] = arguments[w + 2];
|
|
283
|
-
y.children = R;
|
|
284
|
-
}
|
|
285
|
-
if (t && t.defaultProps)
|
|
286
|
-
for (a in E = t.defaultProps, E)
|
|
287
|
-
y[a] === void 0 && (y[a] = E[a]);
|
|
288
|
-
return C(t, v, y);
|
|
289
|
-
}, f.createRef = function() {
|
|
290
|
-
return { current: null };
|
|
291
|
-
}, f.forwardRef = function(t) {
|
|
292
|
-
return { $$typeof: W, render: t };
|
|
293
|
-
}, f.isValidElement = F, f.lazy = function(t) {
|
|
294
|
-
return {
|
|
295
|
-
$$typeof: M,
|
|
296
|
-
_payload: { _status: -1, _result: t },
|
|
297
|
-
_init: x
|
|
298
|
-
};
|
|
299
|
-
}, f.memo = function(t, o) {
|
|
300
|
-
return {
|
|
301
|
-
$$typeof: ne,
|
|
302
|
-
type: t,
|
|
303
|
-
compare: o === void 0 ? null : o
|
|
304
|
-
};
|
|
305
|
-
}, f.startTransition = function(t) {
|
|
306
|
-
var o = m.T, c = {};
|
|
307
|
-
m.T = c;
|
|
308
|
-
try {
|
|
309
|
-
var a = t(), y = m.S;
|
|
310
|
-
y !== null && y(c, a), typeof a == "object" && a !== null && typeof a.then == "function" && a.then(Z, U);
|
|
311
|
-
} catch (v) {
|
|
312
|
-
U(v);
|
|
313
|
-
} finally {
|
|
314
|
-
o !== null && c.types !== null && (o.types = c.types), m.T = o;
|
|
315
|
-
}
|
|
316
|
-
}, f.unstable_useCacheRefresh = function() {
|
|
317
|
-
return m.H.useCacheRefresh();
|
|
318
|
-
}, f.use = function(t) {
|
|
319
|
-
return m.H.use(t);
|
|
320
|
-
}, f.useActionState = function(t, o, c) {
|
|
321
|
-
return m.H.useActionState(t, o, c);
|
|
322
|
-
}, f.useCallback = function(t, o) {
|
|
323
|
-
return m.H.useCallback(t, o);
|
|
324
|
-
}, f.useContext = function(t) {
|
|
325
|
-
return m.H.useContext(t);
|
|
326
|
-
}, f.useDebugValue = function() {
|
|
327
|
-
}, f.useDeferredValue = function(t, o) {
|
|
328
|
-
return m.H.useDeferredValue(t, o);
|
|
329
|
-
}, f.useEffect = function(t, o) {
|
|
330
|
-
return m.H.useEffect(t, o);
|
|
331
|
-
}, f.useEffectEvent = function(t) {
|
|
332
|
-
return m.H.useEffectEvent(t);
|
|
333
|
-
}, f.useId = function() {
|
|
334
|
-
return m.H.useId();
|
|
335
|
-
}, f.useImperativeHandle = function(t, o, c) {
|
|
336
|
-
return m.H.useImperativeHandle(t, o, c);
|
|
337
|
-
}, f.useInsertionEffect = function(t, o) {
|
|
338
|
-
return m.H.useInsertionEffect(t, o);
|
|
339
|
-
}, f.useLayoutEffect = function(t, o) {
|
|
340
|
-
return m.H.useLayoutEffect(t, o);
|
|
341
|
-
}, f.useMemo = function(t, o) {
|
|
342
|
-
return m.H.useMemo(t, o);
|
|
343
|
-
}, f.useOptimistic = function(t, o) {
|
|
344
|
-
return m.H.useOptimistic(t, o);
|
|
345
|
-
}, f.useReducer = function(t, o, c) {
|
|
346
|
-
return m.H.useReducer(t, o, c);
|
|
347
|
-
}, f.useRef = function(t) {
|
|
348
|
-
return m.H.useRef(t);
|
|
349
|
-
}, f.useState = function(t) {
|
|
350
|
-
return m.H.useState(t);
|
|
351
|
-
}, f.useSyncExternalStore = function(t, o, c) {
|
|
352
|
-
return m.H.useSyncExternalStore(
|
|
353
|
-
t,
|
|
354
|
-
o,
|
|
355
|
-
c
|
|
356
|
-
);
|
|
357
|
-
}, f.useTransition = function() {
|
|
358
|
-
return m.H.useTransition();
|
|
359
|
-
}, f.version = "19.2.0", f;
|
|
360
|
-
}
|
|
361
|
-
var ee = { exports: {} };
|
|
362
|
-
ee.exports;
|
|
363
|
-
var Ne;
|
|
364
|
-
function Ue() {
|
|
365
|
-
return Ne || (Ne = 1, (function(N, i) {
|
|
366
|
-
process.env.NODE_ENV !== "production" && (function() {
|
|
367
|
-
function pe(e, n) {
|
|
368
|
-
Object.defineProperty(b.prototype, e, {
|
|
369
|
-
get: function() {
|
|
370
|
-
console.warn(
|
|
371
|
-
"%s(...) is deprecated in plain JavaScript React classes. %s",
|
|
372
|
-
n[0],
|
|
373
|
-
n[1]
|
|
374
|
-
);
|
|
375
|
-
}
|
|
376
|
-
});
|
|
377
|
-
}
|
|
378
|
-
function de(e) {
|
|
379
|
-
return e === null || typeof e != "object" ? null : (e = me && e[me] || e["@@iterator"], typeof e == "function" ? e : null);
|
|
380
|
-
}
|
|
381
|
-
function z(e, n) {
|
|
382
|
-
e = (e = e.constructor) && (e.displayName || e.name) || "ReactClass";
|
|
383
|
-
var r = e + "." + n;
|
|
384
|
-
Ee[r] || (console.error(
|
|
385
|
-
"Can't call %s on a component that is not yet mounted. This is a no-op, but it might indicate a bug in your application. Instead, assign to `this.state` directly or define a `state = {};` class property with the desired state in the %s component.",
|
|
386
|
-
n,
|
|
387
|
-
e
|
|
388
|
-
), Ee[r] = !0);
|
|
389
|
-
}
|
|
390
|
-
function b(e, n, r) {
|
|
391
|
-
this.props = e, this.context = n, this.refs = _e, this.updater = r || he;
|
|
392
|
-
}
|
|
393
|
-
function te() {
|
|
394
|
-
}
|
|
395
|
-
function W(e, n, r) {
|
|
396
|
-
this.props = e, this.context = n, this.refs = _e, this.updater = r || he;
|
|
397
|
-
}
|
|
398
|
-
function G() {
|
|
399
|
-
}
|
|
400
|
-
function ne(e) {
|
|
401
|
-
return "" + e;
|
|
402
|
-
}
|
|
403
|
-
function M(e) {
|
|
404
|
-
try {
|
|
405
|
-
ne(e);
|
|
406
|
-
var n = !1;
|
|
407
|
-
} catch {
|
|
408
|
-
n = !0;
|
|
409
|
-
}
|
|
410
|
-
if (n) {
|
|
411
|
-
n = console;
|
|
412
|
-
var r = n.error, u = typeof Symbol == "function" && Symbol.toStringTag && e[Symbol.toStringTag] || e.constructor.name || "Object";
|
|
413
|
-
return r.call(
|
|
414
|
-
n,
|
|
415
|
-
"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",
|
|
416
|
-
u
|
|
417
|
-
), ne(e);
|
|
418
|
-
}
|
|
419
|
-
}
|
|
420
|
-
function Y(e) {
|
|
421
|
-
if (e == null) return null;
|
|
422
|
-
if (typeof e == "function")
|
|
423
|
-
return e.$$typeof === $e ? null : e.displayName || e.name || null;
|
|
424
|
-
if (typeof e == "string") return e;
|
|
425
|
-
switch (e) {
|
|
426
|
-
case t:
|
|
427
|
-
return "Fragment";
|
|
428
|
-
case c:
|
|
429
|
-
return "Profiler";
|
|
430
|
-
case o:
|
|
431
|
-
return "StrictMode";
|
|
432
|
-
case E:
|
|
433
|
-
return "Suspense";
|
|
434
|
-
case R:
|
|
435
|
-
return "SuspenseList";
|
|
436
|
-
case ve:
|
|
437
|
-
return "Activity";
|
|
438
|
-
}
|
|
439
|
-
if (typeof e == "object")
|
|
440
|
-
switch (typeof e.tag == "number" && console.error(
|
|
441
|
-
"Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."
|
|
442
|
-
), e.$$typeof) {
|
|
443
|
-
case se:
|
|
444
|
-
return "Portal";
|
|
445
|
-
case y:
|
|
446
|
-
return e.displayName || "Context";
|
|
447
|
-
case a:
|
|
448
|
-
return (e._context.displayName || "Context") + ".Consumer";
|
|
449
|
-
case v:
|
|
450
|
-
var n = e.render;
|
|
451
|
-
return e = e.displayName, e || (e = n.displayName || n.name || "", e = e !== "" ? "ForwardRef(" + e + ")" : "ForwardRef"), e;
|
|
452
|
-
case w:
|
|
453
|
-
return n = e.displayName || null, n !== null ? n : Y(e.type) || "Memo";
|
|
454
|
-
case L:
|
|
455
|
-
n = e._payload, e = e._init;
|
|
456
|
-
try {
|
|
457
|
-
return Y(e(n));
|
|
458
|
-
} catch {
|
|
459
|
-
}
|
|
460
|
-
}
|
|
461
|
-
return null;
|
|
462
|
-
}
|
|
463
|
-
function B(e) {
|
|
464
|
-
if (e === t) return "<>";
|
|
465
|
-
if (typeof e == "object" && e !== null && e.$$typeof === L)
|
|
466
|
-
return "<...>";
|
|
467
|
-
try {
|
|
468
|
-
var n = Y(e);
|
|
469
|
-
return n ? "<" + n + ">" : "<...>";
|
|
470
|
-
} catch {
|
|
471
|
-
return "<...>";
|
|
472
|
-
}
|
|
473
|
-
}
|
|
474
|
-
function re() {
|
|
475
|
-
var e = p.A;
|
|
476
|
-
return e === null ? null : e.getOwner();
|
|
477
|
-
}
|
|
478
|
-
function Q() {
|
|
479
|
-
return Error("react-stack-top-frame");
|
|
480
|
-
}
|
|
481
|
-
function K(e) {
|
|
482
|
-
if (ae.call(e, "key")) {
|
|
483
|
-
var n = Object.getOwnPropertyDescriptor(e, "key").get;
|
|
484
|
-
if (n && n.isReactWarning) return !1;
|
|
485
|
-
}
|
|
486
|
-
return e.key !== void 0;
|
|
487
|
-
}
|
|
488
|
-
function oe(e, n) {
|
|
489
|
-
function r() {
|
|
490
|
-
Te || (Te = !0, console.error(
|
|
491
|
-
"%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",
|
|
492
|
-
n
|
|
493
|
-
));
|
|
494
|
-
}
|
|
495
|
-
r.isReactWarning = !0, Object.defineProperty(e, "key", {
|
|
496
|
-
get: r,
|
|
497
|
-
configurable: !0
|
|
498
|
-
});
|
|
499
|
-
}
|
|
500
|
-
function S() {
|
|
501
|
-
var e = Y(this.type);
|
|
502
|
-
return Ce[e] || (Ce[e] = !0, console.error(
|
|
503
|
-
"Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release."
|
|
504
|
-
)), e = this.props.ref, e !== void 0 ? e : null;
|
|
505
|
-
}
|
|
506
|
-
function D(e, n, r, u, s, d) {
|
|
507
|
-
var l = r.ref;
|
|
508
|
-
return e = {
|
|
509
|
-
$$typeof: U,
|
|
510
|
-
type: e,
|
|
511
|
-
key: n,
|
|
512
|
-
props: r,
|
|
513
|
-
_owner: u
|
|
514
|
-
}, (l !== void 0 ? l : null) !== null ? Object.defineProperty(e, "ref", {
|
|
515
|
-
enumerable: !1,
|
|
516
|
-
get: S
|
|
517
|
-
}) : Object.defineProperty(e, "ref", { enumerable: !1, value: null }), e._store = {}, Object.defineProperty(e._store, "validated", {
|
|
518
|
-
configurable: !1,
|
|
519
|
-
enumerable: !1,
|
|
520
|
-
writable: !0,
|
|
521
|
-
value: 0
|
|
522
|
-
}), Object.defineProperty(e, "_debugInfo", {
|
|
523
|
-
configurable: !1,
|
|
524
|
-
enumerable: !1,
|
|
525
|
-
writable: !0,
|
|
526
|
-
value: null
|
|
527
|
-
}), Object.defineProperty(e, "_debugStack", {
|
|
528
|
-
configurable: !1,
|
|
529
|
-
enumerable: !1,
|
|
530
|
-
writable: !0,
|
|
531
|
-
value: s
|
|
532
|
-
}), Object.defineProperty(e, "_debugTask", {
|
|
533
|
-
configurable: !1,
|
|
534
|
-
enumerable: !1,
|
|
535
|
-
writable: !0,
|
|
536
|
-
value: d
|
|
537
|
-
}), Object.freeze && (Object.freeze(e.props), Object.freeze(e)), e;
|
|
538
|
-
}
|
|
539
|
-
function X(e, n) {
|
|
540
|
-
return n = D(
|
|
541
|
-
e.type,
|
|
542
|
-
n,
|
|
543
|
-
e.props,
|
|
544
|
-
e._owner,
|
|
545
|
-
e._debugStack,
|
|
546
|
-
e._debugTask
|
|
547
|
-
), e._store && (n._store.validated = e._store.validated), n;
|
|
548
|
-
}
|
|
549
|
-
function H(e) {
|
|
550
|
-
A(e) ? e._store && (e._store.validated = 1) : typeof e == "object" && e !== null && e.$$typeof === L && (e._payload.status === "fulfilled" ? A(e._payload.value) && e._payload.value._store && (e._payload.value._store.validated = 1) : e._store && (e._store.validated = 1));
|
|
551
|
-
}
|
|
552
|
-
function A(e) {
|
|
553
|
-
return typeof e == "object" && e !== null && e.$$typeof === U;
|
|
554
|
-
}
|
|
555
|
-
function Z(e) {
|
|
556
|
-
var n = { "=": "=0", ":": "=2" };
|
|
557
|
-
return "$" + e.replace(/[=:]/g, function(r) {
|
|
558
|
-
return n[r];
|
|
559
|
-
});
|
|
560
|
-
}
|
|
561
|
-
function m(e, n) {
|
|
562
|
-
return typeof e == "object" && e !== null && e.key != null ? (M(e.key), Z("" + e.key)) : n.toString(36);
|
|
563
|
-
}
|
|
564
|
-
function ue(e) {
|
|
565
|
-
switch (e.status) {
|
|
566
|
-
case "fulfilled":
|
|
567
|
-
return e.value;
|
|
568
|
-
case "rejected":
|
|
569
|
-
throw e.reason;
|
|
570
|
-
default:
|
|
571
|
-
switch (typeof e.status == "string" ? e.then(G, G) : (e.status = "pending", e.then(
|
|
572
|
-
function(n) {
|
|
573
|
-
e.status === "pending" && (e.status = "fulfilled", e.value = n);
|
|
574
|
-
},
|
|
575
|
-
function(n) {
|
|
576
|
-
e.status === "pending" && (e.status = "rejected", e.reason = n);
|
|
577
|
-
}
|
|
578
|
-
)), e.status) {
|
|
579
|
-
case "fulfilled":
|
|
580
|
-
return e.value;
|
|
581
|
-
case "rejected":
|
|
582
|
-
throw e.reason;
|
|
583
|
-
}
|
|
584
|
-
}
|
|
585
|
-
throw e;
|
|
586
|
-
}
|
|
587
|
-
function C(e, n, r, u, s) {
|
|
588
|
-
var d = typeof e;
|
|
589
|
-
(d === "undefined" || d === "boolean") && (e = null);
|
|
590
|
-
var l = !1;
|
|
591
|
-
if (e === null) l = !0;
|
|
592
|
-
else
|
|
593
|
-
switch (d) {
|
|
594
|
-
case "bigint":
|
|
595
|
-
case "string":
|
|
596
|
-
case "number":
|
|
597
|
-
l = !0;
|
|
598
|
-
break;
|
|
599
|
-
case "object":
|
|
600
|
-
switch (e.$$typeof) {
|
|
601
|
-
case U:
|
|
602
|
-
case se:
|
|
603
|
-
l = !0;
|
|
604
|
-
break;
|
|
605
|
-
case L:
|
|
606
|
-
return l = e._init, C(
|
|
607
|
-
l(e._payload),
|
|
608
|
-
n,
|
|
609
|
-
r,
|
|
610
|
-
u,
|
|
611
|
-
s
|
|
612
|
-
);
|
|
613
|
-
}
|
|
614
|
-
}
|
|
615
|
-
if (l) {
|
|
616
|
-
l = e, s = s(l);
|
|
617
|
-
var h = u === "" ? "." + m(l, 0) : u;
|
|
618
|
-
return we(s) ? (r = "", h != null && (r = h.replace(Ae, "$&/") + "/"), C(s, n, r, "", function(j) {
|
|
619
|
-
return j;
|
|
620
|
-
})) : s != null && (A(s) && (s.key != null && (l && l.key === s.key || M(s.key)), r = X(
|
|
621
|
-
s,
|
|
622
|
-
r + (s.key == null || l && l.key === s.key ? "" : ("" + s.key).replace(
|
|
623
|
-
Ae,
|
|
624
|
-
"$&/"
|
|
625
|
-
) + "/") + h
|
|
626
|
-
), u !== "" && l != null && A(l) && l.key == null && l._store && !l._store.validated && (r._store.validated = 2), s = r), n.push(s)), 1;
|
|
627
|
-
}
|
|
628
|
-
if (l = 0, h = u === "" ? "." : u + ":", we(e))
|
|
629
|
-
for (var _ = 0; _ < e.length; _++)
|
|
630
|
-
u = e[_], d = h + m(u, _), l += C(
|
|
631
|
-
u,
|
|
632
|
-
n,
|
|
633
|
-
r,
|
|
634
|
-
d,
|
|
635
|
-
s
|
|
636
|
-
);
|
|
637
|
-
else if (_ = de(e), typeof _ == "function")
|
|
638
|
-
for (_ === e.entries && (be || console.warn(
|
|
639
|
-
"Using Maps as children is not supported. Use an array of keyed ReactElements instead."
|
|
640
|
-
), be = !0), e = _.call(e), _ = 0; !(u = e.next()).done; )
|
|
641
|
-
u = u.value, d = h + m(u, _++), l += C(
|
|
642
|
-
u,
|
|
643
|
-
n,
|
|
644
|
-
r,
|
|
645
|
-
d,
|
|
646
|
-
s
|
|
647
|
-
);
|
|
648
|
-
else if (d === "object") {
|
|
649
|
-
if (typeof e.then == "function")
|
|
650
|
-
return C(
|
|
651
|
-
ue(e),
|
|
652
|
-
n,
|
|
653
|
-
r,
|
|
654
|
-
u,
|
|
655
|
-
s
|
|
656
|
-
);
|
|
657
|
-
throw n = String(e), Error(
|
|
658
|
-
"Objects are not valid as a React child (found: " + (n === "[object Object]" ? "object with keys {" + Object.keys(e).join(", ") + "}" : n) + "). If you meant to render a collection of children, use an array instead."
|
|
659
|
-
);
|
|
660
|
-
}
|
|
661
|
-
return l;
|
|
662
|
-
}
|
|
663
|
-
function I(e, n, r) {
|
|
664
|
-
if (e == null) return e;
|
|
665
|
-
var u = [], s = 0;
|
|
666
|
-
return C(e, u, "", "", function(d) {
|
|
667
|
-
return n.call(r, d, s++);
|
|
668
|
-
}), u;
|
|
669
|
-
}
|
|
670
|
-
function F(e) {
|
|
671
|
-
if (e._status === -1) {
|
|
672
|
-
var n = e._ioInfo;
|
|
673
|
-
n != null && (n.start = n.end = performance.now()), n = e._result;
|
|
674
|
-
var r = n();
|
|
675
|
-
if (r.then(
|
|
676
|
-
function(s) {
|
|
677
|
-
if (e._status === 0 || e._status === -1) {
|
|
678
|
-
e._status = 1, e._result = s;
|
|
679
|
-
var d = e._ioInfo;
|
|
680
|
-
d != null && (d.end = performance.now()), r.status === void 0 && (r.status = "fulfilled", r.value = s);
|
|
681
|
-
}
|
|
682
|
-
},
|
|
683
|
-
function(s) {
|
|
684
|
-
if (e._status === 0 || e._status === -1) {
|
|
685
|
-
e._status = 2, e._result = s;
|
|
686
|
-
var d = e._ioInfo;
|
|
687
|
-
d != null && (d.end = performance.now()), r.status === void 0 && (r.status = "rejected", r.reason = s);
|
|
688
|
-
}
|
|
689
|
-
}
|
|
690
|
-
), n = e._ioInfo, n != null) {
|
|
691
|
-
n.value = r;
|
|
692
|
-
var u = r.displayName;
|
|
693
|
-
typeof u == "string" && (n.name = u);
|
|
694
|
-
}
|
|
695
|
-
e._status === -1 && (e._status = 0, e._result = r);
|
|
696
|
-
}
|
|
697
|
-
if (e._status === 1)
|
|
698
|
-
return n = e._result, n === void 0 && console.error(
|
|
699
|
-
`lazy: Expected the result of a dynamic import() call. Instead received: %s
|
|
700
|
-
|
|
701
|
-
Your code should look like:
|
|
702
|
-
const MyComponent = lazy(() => import('./MyComponent'))
|
|
703
|
-
|
|
704
|
-
Did you accidentally put curly braces around the import?`,
|
|
705
|
-
n
|
|
706
|
-
), "default" in n || console.error(
|
|
707
|
-
`lazy: Expected the result of a dynamic import() call. Instead received: %s
|
|
708
|
-
|
|
709
|
-
Your code should look like:
|
|
710
|
-
const MyComponent = lazy(() => import('./MyComponent'))`,
|
|
711
|
-
n
|
|
712
|
-
), n.default;
|
|
713
|
-
throw e._result;
|
|
714
|
-
}
|
|
715
|
-
function g() {
|
|
716
|
-
var e = p.H;
|
|
717
|
-
return e === null && console.error(
|
|
718
|
-
`Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:
|
|
719
|
-
1. You might have mismatching versions of React and the renderer (such as React DOM)
|
|
720
|
-
2. You might be breaking the Rules of Hooks
|
|
721
|
-
3. You might have more than one copy of React in the same app
|
|
722
|
-
See https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem.`
|
|
723
|
-
), e;
|
|
724
|
-
}
|
|
725
|
-
function V() {
|
|
726
|
-
p.asyncTransitions--;
|
|
727
|
-
}
|
|
728
|
-
function k(e) {
|
|
729
|
-
if (ie === null)
|
|
730
|
-
try {
|
|
731
|
-
var n = ("require" + Math.random()).slice(0, 7);
|
|
732
|
-
ie = (N && N[n]).call(
|
|
733
|
-
N,
|
|
734
|
-
"timers"
|
|
735
|
-
).setImmediate;
|
|
736
|
-
} catch {
|
|
737
|
-
ie = function(u) {
|
|
738
|
-
ke === !1 && (ke = !0, typeof MessageChannel > "u" && console.error(
|
|
739
|
-
"This browser does not have a MessageChannel implementation, so enqueuing tasks via await act(async () => ...) will fail. Please file an issue at https://github.com/facebook/react/issues if you encounter this warning."
|
|
740
|
-
));
|
|
741
|
-
var s = new MessageChannel();
|
|
742
|
-
s.port1.onmessage = u, s.port2.postMessage(void 0);
|
|
743
|
-
};
|
|
744
|
-
}
|
|
745
|
-
return ie(e);
|
|
746
|
-
}
|
|
747
|
-
function $(e) {
|
|
748
|
-
return 1 < e.length && typeof AggregateError == "function" ? new AggregateError(e) : e[0];
|
|
749
|
-
}
|
|
750
|
-
function O(e, n) {
|
|
751
|
-
n !== ce - 1 && console.error(
|
|
752
|
-
"You seem to have overlapping act() calls, this is not supported. Be sure to await previous act() calls before making a new one. "
|
|
753
|
-
), ce = n;
|
|
754
|
-
}
|
|
755
|
-
function P(e, n, r) {
|
|
756
|
-
var u = p.actQueue;
|
|
757
|
-
if (u !== null)
|
|
758
|
-
if (u.length !== 0)
|
|
759
|
-
try {
|
|
760
|
-
x(u), k(function() {
|
|
761
|
-
return P(e, n, r);
|
|
762
|
-
});
|
|
763
|
-
return;
|
|
764
|
-
} catch (s) {
|
|
765
|
-
p.thrownErrors.push(s);
|
|
766
|
-
}
|
|
767
|
-
else p.actQueue = null;
|
|
768
|
-
0 < p.thrownErrors.length ? (u = $(p.thrownErrors), p.thrownErrors.length = 0, r(u)) : n(e);
|
|
769
|
-
}
|
|
770
|
-
function x(e) {
|
|
771
|
-
if (!ye) {
|
|
772
|
-
ye = !0;
|
|
773
|
-
var n = 0;
|
|
774
|
-
try {
|
|
775
|
-
for (; n < e.length; n++) {
|
|
776
|
-
var r = e[n];
|
|
777
|
-
do {
|
|
778
|
-
p.didUsePromise = !1;
|
|
779
|
-
var u = r(!1);
|
|
780
|
-
if (u !== null) {
|
|
781
|
-
if (p.didUsePromise) {
|
|
782
|
-
e[n] = r, e.splice(0, n);
|
|
783
|
-
return;
|
|
784
|
-
}
|
|
785
|
-
r = u;
|
|
786
|
-
} else break;
|
|
787
|
-
} while (!0);
|
|
788
|
-
}
|
|
789
|
-
e.length = 0;
|
|
790
|
-
} catch (s) {
|
|
791
|
-
e.splice(0, n + 1), p.thrownErrors.push(s);
|
|
792
|
-
} finally {
|
|
793
|
-
ye = !1;
|
|
794
|
-
}
|
|
795
|
-
}
|
|
796
|
-
}
|
|
797
|
-
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ < "u" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart == "function" && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());
|
|
798
|
-
var U = Symbol.for("react.transitional.element"), se = Symbol.for("react.portal"), t = Symbol.for("react.fragment"), o = Symbol.for("react.strict_mode"), c = Symbol.for("react.profiler"), a = Symbol.for("react.consumer"), y = Symbol.for("react.context"), v = Symbol.for("react.forward_ref"), E = Symbol.for("react.suspense"), R = Symbol.for("react.suspense_list"), w = Symbol.for("react.memo"), L = Symbol.for("react.lazy"), ve = Symbol.for("react.activity"), me = Symbol.iterator, Ee = {}, he = {
|
|
799
|
-
isMounted: function() {
|
|
800
|
-
return !1;
|
|
801
|
-
},
|
|
802
|
-
enqueueForceUpdate: function(e) {
|
|
803
|
-
z(e, "forceUpdate");
|
|
804
|
-
},
|
|
805
|
-
enqueueReplaceState: function(e) {
|
|
806
|
-
z(e, "replaceState");
|
|
807
|
-
},
|
|
808
|
-
enqueueSetState: function(e) {
|
|
809
|
-
z(e, "setState");
|
|
810
|
-
}
|
|
811
|
-
}, ge = Object.assign, _e = {};
|
|
812
|
-
Object.freeze(_e), b.prototype.isReactComponent = {}, b.prototype.setState = function(e, n) {
|
|
813
|
-
if (typeof e != "object" && typeof e != "function" && e != null)
|
|
814
|
-
throw Error(
|
|
815
|
-
"takes an object of state variables to update or a function which returns an object of state variables."
|
|
816
|
-
);
|
|
817
|
-
this.updater.enqueueSetState(this, e, n, "setState");
|
|
818
|
-
}, b.prototype.forceUpdate = function(e) {
|
|
819
|
-
this.updater.enqueueForceUpdate(this, e, "forceUpdate");
|
|
820
|
-
};
|
|
821
|
-
var T = {
|
|
822
|
-
isMounted: [
|
|
823
|
-
"isMounted",
|
|
824
|
-
"Instead, make sure to clean up subscriptions and pending requests in componentWillUnmount to prevent memory leaks."
|
|
825
|
-
],
|
|
826
|
-
replaceState: [
|
|
827
|
-
"replaceState",
|
|
828
|
-
"Refactor your code to use setState instead (see https://github.com/facebook/react/issues/3236)."
|
|
829
|
-
]
|
|
830
|
-
};
|
|
831
|
-
for (J in T)
|
|
832
|
-
T.hasOwnProperty(J) && pe(J, T[J]);
|
|
833
|
-
te.prototype = b.prototype, T = W.prototype = new te(), T.constructor = W, ge(T, b.prototype), T.isPureReactComponent = !0;
|
|
834
|
-
var we = Array.isArray, $e = Symbol.for("react.client.reference"), p = {
|
|
835
|
-
H: null,
|
|
836
|
-
A: null,
|
|
837
|
-
T: null,
|
|
838
|
-
S: null,
|
|
839
|
-
actQueue: null,
|
|
840
|
-
asyncTransitions: 0,
|
|
841
|
-
isBatchingLegacy: !1,
|
|
842
|
-
didScheduleLegacyUpdate: !1,
|
|
843
|
-
didUsePromise: !1,
|
|
844
|
-
thrownErrors: [],
|
|
845
|
-
getCurrentStack: null,
|
|
846
|
-
recentlyCreatedOwnerStacks: 0
|
|
847
|
-
}, ae = Object.prototype.hasOwnProperty, Re = console.createTask ? console.createTask : function() {
|
|
848
|
-
return null;
|
|
849
|
-
};
|
|
850
|
-
T = {
|
|
851
|
-
react_stack_bottom_frame: function(e) {
|
|
852
|
-
return e();
|
|
853
|
-
}
|
|
854
|
-
};
|
|
855
|
-
var Te, Oe, Ce = {}, Le = T.react_stack_bottom_frame.bind(
|
|
856
|
-
T,
|
|
857
|
-
Q
|
|
858
|
-
)(), Ye = Re(B(Q)), be = !1, Ae = /\/+/g, Se = typeof reportError == "function" ? reportError : function(e) {
|
|
859
|
-
if (typeof window == "object" && typeof window.ErrorEvent == "function") {
|
|
860
|
-
var n = new window.ErrorEvent("error", {
|
|
861
|
-
bubbles: !0,
|
|
862
|
-
cancelable: !0,
|
|
863
|
-
message: typeof e == "object" && e !== null && typeof e.message == "string" ? String(e.message) : String(e),
|
|
864
|
-
error: e
|
|
865
|
-
});
|
|
866
|
-
if (!window.dispatchEvent(n)) return;
|
|
867
|
-
} else if (typeof process == "object" && typeof process.emit == "function") {
|
|
868
|
-
process.emit("uncaughtException", e);
|
|
869
|
-
return;
|
|
870
|
-
}
|
|
871
|
-
console.error(e);
|
|
872
|
-
}, ke = !1, ie = null, ce = 0, fe = !1, ye = !1, Pe = typeof queueMicrotask == "function" ? function(e) {
|
|
873
|
-
queueMicrotask(function() {
|
|
874
|
-
return queueMicrotask(e);
|
|
875
|
-
});
|
|
876
|
-
} : k;
|
|
877
|
-
T = Object.freeze({
|
|
878
|
-
__proto__: null,
|
|
879
|
-
c: function(e) {
|
|
880
|
-
return g().useMemoCache(e);
|
|
881
|
-
}
|
|
882
|
-
});
|
|
883
|
-
var J = {
|
|
884
|
-
map: I,
|
|
885
|
-
forEach: function(e, n, r) {
|
|
886
|
-
I(
|
|
887
|
-
e,
|
|
888
|
-
function() {
|
|
889
|
-
n.apply(this, arguments);
|
|
890
|
-
},
|
|
891
|
-
r
|
|
892
|
-
);
|
|
893
|
-
},
|
|
894
|
-
count: function(e) {
|
|
895
|
-
var n = 0;
|
|
896
|
-
return I(e, function() {
|
|
897
|
-
n++;
|
|
898
|
-
}), n;
|
|
899
|
-
},
|
|
900
|
-
toArray: function(e) {
|
|
901
|
-
return I(e, function(n) {
|
|
902
|
-
return n;
|
|
903
|
-
}) || [];
|
|
904
|
-
},
|
|
905
|
-
only: function(e) {
|
|
906
|
-
if (!A(e))
|
|
907
|
-
throw Error(
|
|
908
|
-
"React.Children.only expected to receive a single React element child."
|
|
909
|
-
);
|
|
910
|
-
return e;
|
|
911
|
-
}
|
|
912
|
-
};
|
|
913
|
-
i.Activity = ve, i.Children = J, i.Component = b, i.Fragment = t, i.Profiler = c, i.PureComponent = W, i.StrictMode = o, i.Suspense = E, i.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = p, i.__COMPILER_RUNTIME = T, i.act = function(e) {
|
|
914
|
-
var n = p.actQueue, r = ce;
|
|
915
|
-
ce++;
|
|
916
|
-
var u = p.actQueue = n !== null ? n : [], s = !1;
|
|
917
|
-
try {
|
|
918
|
-
var d = e();
|
|
919
|
-
} catch (_) {
|
|
920
|
-
p.thrownErrors.push(_);
|
|
921
|
-
}
|
|
922
|
-
if (0 < p.thrownErrors.length)
|
|
923
|
-
throw O(n, r), e = $(p.thrownErrors), p.thrownErrors.length = 0, e;
|
|
924
|
-
if (d !== null && typeof d == "object" && typeof d.then == "function") {
|
|
925
|
-
var l = d;
|
|
926
|
-
return Pe(function() {
|
|
927
|
-
s || fe || (fe = !0, console.error(
|
|
928
|
-
"You called act(async () => ...) without await. This could lead to unexpected testing behaviour, interleaving multiple act calls and mixing their scopes. You should - await act(async () => ...);"
|
|
929
|
-
));
|
|
930
|
-
}), {
|
|
931
|
-
then: function(_, j) {
|
|
932
|
-
s = !0, l.then(
|
|
933
|
-
function(q) {
|
|
934
|
-
if (O(n, r), r === 0) {
|
|
935
|
-
try {
|
|
936
|
-
x(u), k(function() {
|
|
937
|
-
return P(
|
|
938
|
-
q,
|
|
939
|
-
_,
|
|
940
|
-
j
|
|
941
|
-
);
|
|
942
|
-
});
|
|
943
|
-
} catch (He) {
|
|
944
|
-
p.thrownErrors.push(He);
|
|
945
|
-
}
|
|
946
|
-
if (0 < p.thrownErrors.length) {
|
|
947
|
-
var De = $(
|
|
948
|
-
p.thrownErrors
|
|
949
|
-
);
|
|
950
|
-
p.thrownErrors.length = 0, j(De);
|
|
951
|
-
}
|
|
952
|
-
} else _(q);
|
|
953
|
-
},
|
|
954
|
-
function(q) {
|
|
955
|
-
O(n, r), 0 < p.thrownErrors.length && (q = $(
|
|
956
|
-
p.thrownErrors
|
|
957
|
-
), p.thrownErrors.length = 0), j(q);
|
|
958
|
-
}
|
|
959
|
-
);
|
|
960
|
-
}
|
|
961
|
-
};
|
|
962
|
-
}
|
|
963
|
-
var h = d;
|
|
964
|
-
if (O(n, r), r === 0 && (x(u), u.length !== 0 && Pe(function() {
|
|
965
|
-
s || fe || (fe = !0, console.error(
|
|
966
|
-
"A component suspended inside an `act` scope, but the `act` call was not awaited. When testing React components that depend on asynchronous data, you must await the result:\n\nawait act(() => ...)"
|
|
967
|
-
));
|
|
968
|
-
}), p.actQueue = null), 0 < p.thrownErrors.length)
|
|
969
|
-
throw e = $(p.thrownErrors), p.thrownErrors.length = 0, e;
|
|
970
|
-
return {
|
|
971
|
-
then: function(_, j) {
|
|
972
|
-
s = !0, r === 0 ? (p.actQueue = u, k(function() {
|
|
973
|
-
return P(
|
|
974
|
-
h,
|
|
975
|
-
_,
|
|
976
|
-
j
|
|
977
|
-
);
|
|
978
|
-
})) : _(h);
|
|
979
|
-
}
|
|
980
|
-
};
|
|
981
|
-
}, i.cache = function(e) {
|
|
982
|
-
return function() {
|
|
983
|
-
return e.apply(null, arguments);
|
|
984
|
-
};
|
|
985
|
-
}, i.cacheSignal = function() {
|
|
986
|
-
return null;
|
|
987
|
-
}, i.captureOwnerStack = function() {
|
|
988
|
-
var e = p.getCurrentStack;
|
|
989
|
-
return e === null ? null : e();
|
|
990
|
-
}, i.cloneElement = function(e, n, r) {
|
|
991
|
-
if (e == null)
|
|
992
|
-
throw Error(
|
|
993
|
-
"The argument must be a React element, but you passed " + e + "."
|
|
994
|
-
);
|
|
995
|
-
var u = ge({}, e.props), s = e.key, d = e._owner;
|
|
996
|
-
if (n != null) {
|
|
997
|
-
var l;
|
|
998
|
-
e: {
|
|
999
|
-
if (ae.call(n, "ref") && (l = Object.getOwnPropertyDescriptor(
|
|
1000
|
-
n,
|
|
1001
|
-
"ref"
|
|
1002
|
-
).get) && l.isReactWarning) {
|
|
1003
|
-
l = !1;
|
|
1004
|
-
break e;
|
|
1005
|
-
}
|
|
1006
|
-
l = n.ref !== void 0;
|
|
1007
|
-
}
|
|
1008
|
-
l && (d = re()), K(n) && (M(n.key), s = "" + n.key);
|
|
1009
|
-
for (h in n)
|
|
1010
|
-
!ae.call(n, h) || h === "key" || h === "__self" || h === "__source" || h === "ref" && n.ref === void 0 || (u[h] = n[h]);
|
|
1011
|
-
}
|
|
1012
|
-
var h = arguments.length - 2;
|
|
1013
|
-
if (h === 1) u.children = r;
|
|
1014
|
-
else if (1 < h) {
|
|
1015
|
-
l = Array(h);
|
|
1016
|
-
for (var _ = 0; _ < h; _++)
|
|
1017
|
-
l[_] = arguments[_ + 2];
|
|
1018
|
-
u.children = l;
|
|
1019
|
-
}
|
|
1020
|
-
for (u = D(
|
|
1021
|
-
e.type,
|
|
1022
|
-
s,
|
|
1023
|
-
u,
|
|
1024
|
-
d,
|
|
1025
|
-
e._debugStack,
|
|
1026
|
-
e._debugTask
|
|
1027
|
-
), s = 2; s < arguments.length; s++)
|
|
1028
|
-
H(arguments[s]);
|
|
1029
|
-
return u;
|
|
1030
|
-
}, i.createContext = function(e) {
|
|
1031
|
-
return e = {
|
|
1032
|
-
$$typeof: y,
|
|
1033
|
-
_currentValue: e,
|
|
1034
|
-
_currentValue2: e,
|
|
1035
|
-
_threadCount: 0,
|
|
1036
|
-
Provider: null,
|
|
1037
|
-
Consumer: null
|
|
1038
|
-
}, e.Provider = e, e.Consumer = {
|
|
1039
|
-
$$typeof: a,
|
|
1040
|
-
_context: e
|
|
1041
|
-
}, e._currentRenderer = null, e._currentRenderer2 = null, e;
|
|
1042
|
-
}, i.createElement = function(e, n, r) {
|
|
1043
|
-
for (var u = 2; u < arguments.length; u++)
|
|
1044
|
-
H(arguments[u]);
|
|
1045
|
-
u = {};
|
|
1046
|
-
var s = null;
|
|
1047
|
-
if (n != null)
|
|
1048
|
-
for (_ in Oe || !("__self" in n) || "key" in n || (Oe = !0, console.warn(
|
|
1049
|
-
"Your app (or one of its dependencies) is using an outdated JSX transform. Update to the modern JSX transform for faster performance: https://react.dev/link/new-jsx-transform"
|
|
1050
|
-
)), K(n) && (M(n.key), s = "" + n.key), n)
|
|
1051
|
-
ae.call(n, _) && _ !== "key" && _ !== "__self" && _ !== "__source" && (u[_] = n[_]);
|
|
1052
|
-
var d = arguments.length - 2;
|
|
1053
|
-
if (d === 1) u.children = r;
|
|
1054
|
-
else if (1 < d) {
|
|
1055
|
-
for (var l = Array(d), h = 0; h < d; h++)
|
|
1056
|
-
l[h] = arguments[h + 2];
|
|
1057
|
-
Object.freeze && Object.freeze(l), u.children = l;
|
|
1058
|
-
}
|
|
1059
|
-
if (e && e.defaultProps)
|
|
1060
|
-
for (_ in d = e.defaultProps, d)
|
|
1061
|
-
u[_] === void 0 && (u[_] = d[_]);
|
|
1062
|
-
s && oe(
|
|
1063
|
-
u,
|
|
1064
|
-
typeof e == "function" ? e.displayName || e.name || "Unknown" : e
|
|
1065
|
-
);
|
|
1066
|
-
var _ = 1e4 > p.recentlyCreatedOwnerStacks++;
|
|
1067
|
-
return D(
|
|
1068
|
-
e,
|
|
1069
|
-
s,
|
|
1070
|
-
u,
|
|
1071
|
-
re(),
|
|
1072
|
-
_ ? Error("react-stack-top-frame") : Le,
|
|
1073
|
-
_ ? Re(B(e)) : Ye
|
|
1074
|
-
);
|
|
1075
|
-
}, i.createRef = function() {
|
|
1076
|
-
var e = { current: null };
|
|
1077
|
-
return Object.seal(e), e;
|
|
1078
|
-
}, i.forwardRef = function(e) {
|
|
1079
|
-
e != null && e.$$typeof === w ? console.error(
|
|
1080
|
-
"forwardRef requires a render function but received a `memo` component. Instead of forwardRef(memo(...)), use memo(forwardRef(...))."
|
|
1081
|
-
) : typeof e != "function" ? console.error(
|
|
1082
|
-
"forwardRef requires a render function but was given %s.",
|
|
1083
|
-
e === null ? "null" : typeof e
|
|
1084
|
-
) : e.length !== 0 && e.length !== 2 && console.error(
|
|
1085
|
-
"forwardRef render functions accept exactly two parameters: props and ref. %s",
|
|
1086
|
-
e.length === 1 ? "Did you forget to use the ref parameter?" : "Any additional parameter will be undefined."
|
|
1087
|
-
), e != null && e.defaultProps != null && console.error(
|
|
1088
|
-
"forwardRef render functions do not support defaultProps. Did you accidentally pass a React component?"
|
|
1089
|
-
);
|
|
1090
|
-
var n = { $$typeof: v, render: e }, r;
|
|
1091
|
-
return Object.defineProperty(n, "displayName", {
|
|
1092
|
-
enumerable: !1,
|
|
1093
|
-
configurable: !0,
|
|
1094
|
-
get: function() {
|
|
1095
|
-
return r;
|
|
1096
|
-
},
|
|
1097
|
-
set: function(u) {
|
|
1098
|
-
r = u, e.name || e.displayName || (Object.defineProperty(e, "name", { value: u }), e.displayName = u);
|
|
1099
|
-
}
|
|
1100
|
-
}), n;
|
|
1101
|
-
}, i.isValidElement = A, i.lazy = function(e) {
|
|
1102
|
-
e = { _status: -1, _result: e };
|
|
1103
|
-
var n = {
|
|
1104
|
-
$$typeof: L,
|
|
1105
|
-
_payload: e,
|
|
1106
|
-
_init: F
|
|
1107
|
-
}, r = {
|
|
1108
|
-
name: "lazy",
|
|
1109
|
-
start: -1,
|
|
1110
|
-
end: -1,
|
|
1111
|
-
value: null,
|
|
1112
|
-
owner: null,
|
|
1113
|
-
debugStack: Error("react-stack-top-frame"),
|
|
1114
|
-
debugTask: console.createTask ? console.createTask("lazy()") : null
|
|
1115
|
-
};
|
|
1116
|
-
return e._ioInfo = r, n._debugInfo = [{ awaited: r }], n;
|
|
1117
|
-
}, i.memo = function(e, n) {
|
|
1118
|
-
e == null && console.error(
|
|
1119
|
-
"memo: The first argument must be a component. Instead received: %s",
|
|
1120
|
-
e === null ? "null" : typeof e
|
|
1121
|
-
), n = {
|
|
1122
|
-
$$typeof: w,
|
|
1123
|
-
type: e,
|
|
1124
|
-
compare: n === void 0 ? null : n
|
|
1125
|
-
};
|
|
1126
|
-
var r;
|
|
1127
|
-
return Object.defineProperty(n, "displayName", {
|
|
1128
|
-
enumerable: !1,
|
|
1129
|
-
configurable: !0,
|
|
1130
|
-
get: function() {
|
|
1131
|
-
return r;
|
|
1132
|
-
},
|
|
1133
|
-
set: function(u) {
|
|
1134
|
-
r = u, e.name || e.displayName || (Object.defineProperty(e, "name", { value: u }), e.displayName = u);
|
|
1135
|
-
}
|
|
1136
|
-
}), n;
|
|
1137
|
-
}, i.startTransition = function(e) {
|
|
1138
|
-
var n = p.T, r = {};
|
|
1139
|
-
r._updatedFibers = /* @__PURE__ */ new Set(), p.T = r;
|
|
1140
|
-
try {
|
|
1141
|
-
var u = e(), s = p.S;
|
|
1142
|
-
s !== null && s(r, u), typeof u == "object" && u !== null && typeof u.then == "function" && (p.asyncTransitions++, u.then(V, V), u.then(G, Se));
|
|
1143
|
-
} catch (d) {
|
|
1144
|
-
Se(d);
|
|
1145
|
-
} finally {
|
|
1146
|
-
n === null && r._updatedFibers && (e = r._updatedFibers.size, r._updatedFibers.clear(), 10 < e && console.warn(
|
|
1147
|
-
"Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table."
|
|
1148
|
-
)), n !== null && r.types !== null && (n.types !== null && n.types !== r.types && console.error(
|
|
1149
|
-
"We expected inner Transitions to have transferred the outer types set and that you cannot add to the outer Transition while inside the inner.This is a bug in React."
|
|
1150
|
-
), n.types = r.types), p.T = n;
|
|
1151
|
-
}
|
|
1152
|
-
}, i.unstable_useCacheRefresh = function() {
|
|
1153
|
-
return g().useCacheRefresh();
|
|
1154
|
-
}, i.use = function(e) {
|
|
1155
|
-
return g().use(e);
|
|
1156
|
-
}, i.useActionState = function(e, n, r) {
|
|
1157
|
-
return g().useActionState(
|
|
1158
|
-
e,
|
|
1159
|
-
n,
|
|
1160
|
-
r
|
|
1161
|
-
);
|
|
1162
|
-
}, i.useCallback = function(e, n) {
|
|
1163
|
-
return g().useCallback(e, n);
|
|
1164
|
-
}, i.useContext = function(e) {
|
|
1165
|
-
var n = g();
|
|
1166
|
-
return e.$$typeof === a && console.error(
|
|
1167
|
-
"Calling useContext(Context.Consumer) is not supported and will cause bugs. Did you mean to call useContext(Context) instead?"
|
|
1168
|
-
), n.useContext(e);
|
|
1169
|
-
}, i.useDebugValue = function(e, n) {
|
|
1170
|
-
return g().useDebugValue(e, n);
|
|
1171
|
-
}, i.useDeferredValue = function(e, n) {
|
|
1172
|
-
return g().useDeferredValue(e, n);
|
|
1173
|
-
}, i.useEffect = function(e, n) {
|
|
1174
|
-
return e == null && console.warn(
|
|
1175
|
-
"React Hook useEffect requires an effect callback. Did you forget to pass a callback to the hook?"
|
|
1176
|
-
), g().useEffect(e, n);
|
|
1177
|
-
}, i.useEffectEvent = function(e) {
|
|
1178
|
-
return g().useEffectEvent(e);
|
|
1179
|
-
}, i.useId = function() {
|
|
1180
|
-
return g().useId();
|
|
1181
|
-
}, i.useImperativeHandle = function(e, n, r) {
|
|
1182
|
-
return g().useImperativeHandle(e, n, r);
|
|
1183
|
-
}, i.useInsertionEffect = function(e, n) {
|
|
1184
|
-
return e == null && console.warn(
|
|
1185
|
-
"React Hook useInsertionEffect requires an effect callback. Did you forget to pass a callback to the hook?"
|
|
1186
|
-
), g().useInsertionEffect(e, n);
|
|
1187
|
-
}, i.useLayoutEffect = function(e, n) {
|
|
1188
|
-
return e == null && console.warn(
|
|
1189
|
-
"React Hook useLayoutEffect requires an effect callback. Did you forget to pass a callback to the hook?"
|
|
1190
|
-
), g().useLayoutEffect(e, n);
|
|
1191
|
-
}, i.useMemo = function(e, n) {
|
|
1192
|
-
return g().useMemo(e, n);
|
|
1193
|
-
}, i.useOptimistic = function(e, n) {
|
|
1194
|
-
return g().useOptimistic(e, n);
|
|
1195
|
-
}, i.useReducer = function(e, n, r) {
|
|
1196
|
-
return g().useReducer(e, n, r);
|
|
1197
|
-
}, i.useRef = function(e) {
|
|
1198
|
-
return g().useRef(e);
|
|
1199
|
-
}, i.useState = function(e) {
|
|
1200
|
-
return g().useState(e);
|
|
1201
|
-
}, i.useSyncExternalStore = function(e, n, r) {
|
|
1202
|
-
return g().useSyncExternalStore(
|
|
1203
|
-
e,
|
|
1204
|
-
n,
|
|
1205
|
-
r
|
|
1206
|
-
);
|
|
1207
|
-
}, i.useTransition = function() {
|
|
1208
|
-
return g().useTransition();
|
|
1209
|
-
}, i.version = "19.2.0", typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ < "u" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop == "function" && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error());
|
|
1210
|
-
})();
|
|
1211
|
-
})(ee, ee.exports)), ee.exports;
|
|
1212
|
-
}
|
|
1213
|
-
var Me;
|
|
1214
|
-
function qe() {
|
|
1215
|
-
return Me || (Me = 1, process.env.NODE_ENV === "production" ? le.exports = Ie() : le.exports = Ue()), le.exports;
|
|
1216
|
-
}
|
|
1217
|
-
export {
|
|
1218
|
-
qe as r
|
|
1219
|
-
};
|