@hortiview/modulebase 0.0.20436 → 0.0.20524
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/README.md +3 -2
- package/dist/IsRestoringProvider-CBSZo7ur.js +312 -0
- package/dist/ModuleCore-DuJVrj6v.js +11828 -0
- package/dist/QueryClientProvider-DyiNrPkn.js +514 -0
- package/dist/_commonjsHelpers-ByX85dGu.js +33 -0
- package/dist/api-COabZnyn.js +147 -0
- package/dist/assets/ModuleCore.css +1 -1
- package/dist/chunk-LFPYN7LY-D1ls8FXf.js +8643 -0
- package/dist/components/ModuleBase.js +9 -9
- package/dist/components/ModuleCore.js +1 -1
- package/dist/constants.js +2 -3
- package/dist/hooks/useCustom.js +1 -1
- package/dist/hooks/useCustomMutation.js +5 -5
- package/dist/hooks/useEntity.js +30 -30
- package/dist/hooks/useOffline.js +1 -1
- package/dist/hooks/useOption.js +5 -5
- package/dist/hooks/useServiceBus.js +1 -1
- package/dist/hooks/useStores.js +1 -1
- package/dist/{_baseGet-C6jMXSsQ.js → isTypedArray-SkhznY1k.js} +494 -494
- package/dist/lib/constants.d.ts +0 -1
- package/dist/lib/hooks/useCustom.d.ts +4 -2
- package/dist/lib/hooks/useCustomMutation.d.ts +8 -3
- package/dist/lib/hooks/useEntity.d.ts +6 -0
- package/dist/lib/types/Requests.d.ts +0 -17
- package/dist/lib/utils/api.d.ts +6 -13
- package/dist/lib/utils/baseFetches.d.ts +3 -2
- package/dist/main.js +188 -173
- package/dist/module-router.js +2322 -121
- package/dist/{mutation-DSKlaYzY.js → mutation-CmhiEgfA.js} +101 -56
- package/dist/{omit-C9Qe80rl.js → omit-Do6MFRwA.js} +240 -223
- package/dist/provider/SignalR/SignalRProvider.js +2389 -2824
- package/dist/react-c9FSfB30.js +27 -0
- package/dist/stores/BasePropsStore.js +1 -1
- package/dist/stores/EnvironmentStore.js +1 -1
- package/dist/useMutation-Aoachkw_.js +139 -0
- package/dist/useQuery-DEU_AUtf.js +392 -0
- package/dist/utils/api.js +3 -4
- package/dist/utils/baseFetches.js +18 -14
- package/dist/utils/fetches.js +3 -4
- package/dist/utils/helper.js +14 -14
- package/package.json +16 -13
- package/dist/ModuleCore-DpwHP0IU.js +0 -14973
- package/dist/QueryClientProvider-Beog9TR7.js +0 -437
- package/dist/_commonjsHelpers-BkfeUUK-.js +0 -28
- package/dist/api-CogBuK0n.js +0 -473
- package/dist/chunk-IR6S3I6Y-BmDdD3SP.js +0 -8162
- package/dist/isRestoring-CLuxJVSA.js +0 -281
- package/dist/react-QiIgv49H.js +0 -27
- package/dist/useMutation-zu8uxBak.js +0 -97
- package/dist/useQuery-Bj9k9zik.js +0 -395
- package/dist/utils-DxRR_XLb.js +0 -9
package/dist/lib/constants.d.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
type UseCustomParams<T> = {
|
|
2
2
|
endpoint: string;
|
|
3
3
|
queryKey: (string | undefined)[];
|
|
4
4
|
token?: string;
|
|
5
5
|
selector?: (data: unknown) => T;
|
|
6
6
|
enabled?: boolean;
|
|
7
7
|
noAuth?: boolean;
|
|
8
|
-
}
|
|
8
|
+
};
|
|
9
|
+
export declare const useCustom: <T>({ endpoint, queryKey, token, selector, enabled, noAuth, }: UseCustomParams<T>) => import('@tanstack/react-query').UseQueryResult<import('@tanstack/query-core').NoInfer<T>, Error>;
|
|
10
|
+
export {};
|
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
import { UseMutationResult } from '@tanstack/react-query';
|
|
2
2
|
import { BaseResponse, httpMethod } from '../types/Requests';
|
|
3
|
-
export
|
|
3
|
+
export type UseCustomMutationParams = {
|
|
4
4
|
endpoint: string;
|
|
5
|
-
method: Omit<httpMethod,
|
|
5
|
+
method: Omit<httpMethod, 'GET'>;
|
|
6
6
|
token?: string;
|
|
7
7
|
headers?: Headers;
|
|
8
8
|
noAuth?: boolean;
|
|
9
|
-
}
|
|
9
|
+
};
|
|
10
|
+
export type CustomMutationInput<Input> = {
|
|
11
|
+
input: Input;
|
|
12
|
+
replaceEndpointWith?: string;
|
|
13
|
+
};
|
|
14
|
+
export declare const useCustomMutation: <Input, Output>({ endpoint, method, token, headers, noAuth, }: UseCustomMutationParams) => UseMutationResult<BaseResponse<Output>, Error, CustomMutationInput<Input>, unknown>;
|
|
@@ -23,6 +23,7 @@ export declare const useEntity: <K extends HortiviewDataAreaGroup | ModuleDataAr
|
|
|
23
23
|
isPaused: boolean;
|
|
24
24
|
isRefetching: boolean;
|
|
25
25
|
isStale: boolean;
|
|
26
|
+
isEnabled: boolean;
|
|
26
27
|
refetch: (options?: import('@tanstack/query-core').RefetchOptions) => Promise<import('@tanstack/query-core').QueryObserverResult<FarmOrgEntity[] | ModuleEntity[], Error>>;
|
|
27
28
|
fetchStatus: import('@tanstack/query-core').FetchStatus;
|
|
28
29
|
promise: Promise<FarmOrgEntity[] | ModuleEntity[]>;
|
|
@@ -49,6 +50,7 @@ export declare const useEntity: <K extends HortiviewDataAreaGroup | ModuleDataAr
|
|
|
49
50
|
isPaused: boolean;
|
|
50
51
|
isRefetching: boolean;
|
|
51
52
|
isStale: boolean;
|
|
53
|
+
isEnabled: boolean;
|
|
52
54
|
refetch: (options?: import('@tanstack/query-core').RefetchOptions) => Promise<import('@tanstack/query-core').QueryObserverResult<FarmOrgEntity[] | ModuleEntity[], Error>>;
|
|
53
55
|
fetchStatus: import('@tanstack/query-core').FetchStatus;
|
|
54
56
|
promise: Promise<FarmOrgEntity[] | ModuleEntity[]>;
|
|
@@ -75,6 +77,7 @@ export declare const useEntity: <K extends HortiviewDataAreaGroup | ModuleDataAr
|
|
|
75
77
|
isPaused: boolean;
|
|
76
78
|
isRefetching: boolean;
|
|
77
79
|
isStale: boolean;
|
|
80
|
+
isEnabled: boolean;
|
|
78
81
|
refetch: (options?: import('@tanstack/query-core').RefetchOptions) => Promise<import('@tanstack/query-core').QueryObserverResult<FarmOrgEntity[] | ModuleEntity[], Error>>;
|
|
79
82
|
fetchStatus: import('@tanstack/query-core').FetchStatus;
|
|
80
83
|
promise: Promise<FarmOrgEntity[] | ModuleEntity[]>;
|
|
@@ -101,6 +104,7 @@ export declare const useEntity: <K extends HortiviewDataAreaGroup | ModuleDataAr
|
|
|
101
104
|
isPaused: boolean;
|
|
102
105
|
isRefetching: boolean;
|
|
103
106
|
isStale: boolean;
|
|
107
|
+
isEnabled: boolean;
|
|
104
108
|
refetch: (options?: import('@tanstack/query-core').RefetchOptions) => Promise<import('@tanstack/query-core').QueryObserverResult<FarmOrgEntity[] | ModuleEntity[], Error>>;
|
|
105
109
|
fetchStatus: import('@tanstack/query-core').FetchStatus;
|
|
106
110
|
promise: Promise<FarmOrgEntity[] | ModuleEntity[]>;
|
|
@@ -127,6 +131,7 @@ export declare const useEntity: <K extends HortiviewDataAreaGroup | ModuleDataAr
|
|
|
127
131
|
isPaused: boolean;
|
|
128
132
|
isRefetching: boolean;
|
|
129
133
|
isStale: boolean;
|
|
134
|
+
isEnabled: boolean;
|
|
130
135
|
refetch: (options?: import('@tanstack/query-core').RefetchOptions) => Promise<import('@tanstack/query-core').QueryObserverResult<FarmOrgEntity[] | ModuleEntity[], Error>>;
|
|
131
136
|
fetchStatus: import('@tanstack/query-core').FetchStatus;
|
|
132
137
|
promise: Promise<FarmOrgEntity[] | ModuleEntity[]>;
|
|
@@ -153,6 +158,7 @@ export declare const useEntity: <K extends HortiviewDataAreaGroup | ModuleDataAr
|
|
|
153
158
|
isPaused: boolean;
|
|
154
159
|
isRefetching: boolean;
|
|
155
160
|
isStale: boolean;
|
|
161
|
+
isEnabled: boolean;
|
|
156
162
|
refetch: (options?: import('@tanstack/query-core').RefetchOptions) => Promise<import('@tanstack/query-core').QueryObserverResult<FarmOrgEntity[] | ModuleEntity[], Error>>;
|
|
157
163
|
fetchStatus: import('@tanstack/query-core').FetchStatus;
|
|
158
164
|
promise: Promise<FarmOrgEntity[] | ModuleEntity[]>;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { Expand, Filter, Select } from 'odata-query';
|
|
2
1
|
export type RequestConfig = {
|
|
3
2
|
redirect: 'follow';
|
|
4
3
|
credentials: 'omit';
|
|
@@ -20,22 +19,6 @@ export type InternalError = {
|
|
|
20
19
|
detail: string;
|
|
21
20
|
stack?: string;
|
|
22
21
|
};
|
|
23
|
-
export type Query = {
|
|
24
|
-
filter?: Filter<unknown>;
|
|
25
|
-
orderBy?: string[];
|
|
26
|
-
expand?: string | string[] | Expand<unknown>;
|
|
27
|
-
select?: Select<unknown>;
|
|
28
|
-
count?: boolean | Filter<unknown>;
|
|
29
|
-
pagination?: Pagination;
|
|
30
|
-
top?: number;
|
|
31
|
-
skip?: number;
|
|
32
|
-
overwrite?: string;
|
|
33
|
-
};
|
|
34
|
-
export type Pagination = {
|
|
35
|
-
top?: number;
|
|
36
|
-
skip?: number;
|
|
37
|
-
pageSize?: number;
|
|
38
|
-
};
|
|
39
22
|
export type BaseResponse<T> = T | T[] | {
|
|
40
23
|
value: T | T[];
|
|
41
24
|
} | {
|
package/dist/lib/utils/api.d.ts
CHANGED
|
@@ -1,20 +1,13 @@
|
|
|
1
|
-
import { BaseResponse, httpMethod,
|
|
1
|
+
import { BaseResponse, httpMethod, RequestConfig } from '../types/Requests';
|
|
2
2
|
export declare const getConfig: (token?: string, organizationId?: string, languageId?: string, method?: httpMethod, customHeaders?: Headers) => RequestConfig;
|
|
3
3
|
/**
|
|
4
|
-
* a fetch function to handle requests and returns the response. if the response is unauthorized, it tries to refresh the token and retries the request
|
|
4
|
+
* a fetch function to handle requests and returns the response. if the response is unauthorized, it tries to refresh the module permission token and retries the request.
|
|
5
|
+
* During the refresh process, all the incoming requests will be put on hold (sleep) until the process is finished to prevent multiple parallel token refresh calls.
|
|
6
|
+
* if the token refresh fails, all the incoming requests will throw an unauthorized error until a successful token refresh happens.
|
|
5
7
|
* @param url - the complete url build by {@link prependBaseUrl}
|
|
6
8
|
* @param config - the request config including auth headers
|
|
7
|
-
* @param
|
|
8
|
-
* @param withResponseHandling - if the response should be handled by the {@link handleResponse} method or not ("hide" the error)
|
|
9
|
-
* @param tries - the number of retries, default is 1
|
|
9
|
+
* @param isRetryEnabled - if the request should be retried on network errors or specific HTTP status codes
|
|
10
10
|
* @returns
|
|
11
11
|
*/
|
|
12
|
-
export declare const fetchWithErrorHandling: <T>(url: string, config: RequestConfig,
|
|
12
|
+
export declare const fetchWithErrorHandling: <T>(url: string, config: RequestConfig, isRetryEnabled?: boolean) => Promise<BaseResponse<T>>;
|
|
13
13
|
export declare const handleResponse: (response: Response) => Promise<any>;
|
|
14
|
-
/**
|
|
15
|
-
* a helper function to format the query string
|
|
16
|
-
* @param query - the query object to format
|
|
17
|
-
* @param withApiVersion - if the api version should be added to the query string
|
|
18
|
-
* @returns
|
|
19
|
-
*/
|
|
20
|
-
export declare const formatQuery: (query?: Query, withApiVersion?: boolean) => string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseResponse, httpMethod
|
|
1
|
+
import { BaseResponse, httpMethod } from '../types/Requests';
|
|
2
2
|
/**
|
|
3
3
|
* a fetch function to handle CUD requests and returns the response.
|
|
4
4
|
* @param url endpoint to fetch (CUD) data from
|
|
@@ -16,4 +16,5 @@ export declare const baseMutation: <T, R>(url: string, data: T, method: Omit<htt
|
|
|
16
16
|
* @param customToken token to use (default is the modulePermissionToken)
|
|
17
17
|
* @returns Promise<BaseResponse<T>> response from the fetch
|
|
18
18
|
*/
|
|
19
|
-
export declare const baseFetch: <T>(url: string,
|
|
19
|
+
export declare const baseFetch: <T>(url: string, //endpoint to fetch modulApi/getEntities/{moduleId}
|
|
20
|
+
customToken?: string, noAuth?: boolean) => Promise<BaseResponse<T>>;
|
package/dist/main.js
CHANGED
|
@@ -1,42 +1,39 @@
|
|
|
1
|
-
import { ModuleBase as
|
|
2
|
-
import { i as
|
|
3
|
-
import { M as
|
|
4
|
-
import { ActionState as
|
|
1
|
+
import { ModuleBase as _ } from "./components/ModuleBase.js";
|
|
2
|
+
import { i as S, h as f, b as l } from "./ModuleCore-DuJVrj6v.js";
|
|
3
|
+
import { M as U, Q as C } from "./ModuleCore-DuJVrj6v.js";
|
|
4
|
+
import { ActionState as b } from "./enum/ActionStorage.js";
|
|
5
5
|
import { useBreadcrumbTranslation as k } from "./hooks/useBreadcrumbTranslation.js";
|
|
6
|
-
import { useOffline as
|
|
6
|
+
import { useOffline as O } from "./hooks/useOffline.js";
|
|
7
7
|
import { useSignalRMessages as B } from "./hooks/useSignalRMessages.js";
|
|
8
|
-
import { useNavigate as
|
|
9
|
-
import { useBaseProps as
|
|
10
|
-
import { useCustom as
|
|
11
|
-
import { useCustomMutation as
|
|
12
|
-
import { useEntity as
|
|
13
|
-
import { useOption as
|
|
14
|
-
import { useNotification as
|
|
15
|
-
import { mutateOnCustomApi as
|
|
16
|
-
import { arePropsValid as
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import { u as
|
|
20
|
-
import { u as
|
|
21
|
-
import {
|
|
22
|
-
var
|
|
8
|
+
import { ServerRouter as L, UNSAFE_RSCDefaultRootErrorBoundary as Q, UNSAFE_ServerMode as I, UNSAFE_deserializeErrors as T, UNSAFE_getHydrationData as V, createCookie as W, createCookieSessionStorage as K, createMemorySessionStorage as q, createRequestHandler as z, createRoutesStub as G, createSession as j, createSessionStorage as J, href as X, isCookie as Y, isSession as Z, unstable_RSCStaticRouter as $, unstable_routeRSCServerRequest as ee, unstable_setDevServerHooks as ae, useNavigate as te } from "./module-router.js";
|
|
9
|
+
import { useBaseProps as re, useConfig as oe } from "./hooks/useStores.js";
|
|
10
|
+
import { useCustom as ue } from "./hooks/useCustom.js";
|
|
11
|
+
import { useCustomMutation as ce } from "./hooks/useCustomMutation.js";
|
|
12
|
+
import { useEntity as Se } from "./hooks/useEntity.js";
|
|
13
|
+
import { useOption as Ee } from "./hooks/useOption.js";
|
|
14
|
+
import { useNotification as le, useServiceBus as me } from "./hooks/useServiceBus.js";
|
|
15
|
+
import { mutateOnCustomApi as de } from "./utils/fetches.js";
|
|
16
|
+
import { arePropsValid as pe, checkConfig as Pe, checkIfPropExists as ge, checkVersion as Ae, getEnvironmentVariables as xe, getModuleQueryKey as _e, universalSelector as ve } from "./utils/helper.js";
|
|
17
|
+
import { A as Ce, B as ye, F as be, H as Me, I as ke, a as He, b as Oe, L as we, d as Be, M as De, e as Le, N as Qe, f as Ie, g as Te, O as Ve, P as We, h as Ke, i as qe, j as ze, R as Ge, k as je, S as Je, l as Xe, m as Ye, n as Ze, o as $e, D as ea, p as aa, E as ta, q as sa, r as ra, s as oa, t as ia, v as ua, w as na, x as ca, V as ha, W as Sa, y as Ra, z as Ea, C as fa, G as la, J as ma, K as Fa, Q as da, T as Na, U as pa, X as Pa, Y as ga, Z as Aa, _ as xa, $ as _a, a0 as va, a1 as Ua, a2 as Ca, a3 as ya, a4 as ba, a5 as Ma, c as ka, a6 as Ha, a7 as Oa, a8 as wa, a9 as Ba, aa as Da, ab as La, ac as Qa, ad as Ia, ae as Ta, af as Va, ag as Wa, ah as Ka, ai as qa, aj as za, ak as Ga, al as ja, am as Ja, an as Xa, ao as Ya, ap as Za, aq as $a, ar as et, as as at, at as tt, au as st, av as rt, aw as ot, ax as it, ay as ut, az as nt, aA as ct, aB as ht, aC as St, aD as Rt, aE as Et, aF as ft, aG as lt, aH as mt, aI as Ft, aJ as dt, aK as Nt, aL as pt, aM as Pt, aN as gt, aO as At, aP as xt, aQ as _t, aR as vt, aS as Ut, aT as Ct, aU as yt } from "./chunk-LFPYN7LY-D1ls8FXf.js";
|
|
18
|
+
import { Q as m, a as F } from "./useQuery-DEU_AUtf.js";
|
|
19
|
+
import { u as Mt } from "./useQuery-DEU_AUtf.js";
|
|
20
|
+
import { u as Ht } from "./useMutation-Aoachkw_.js";
|
|
21
|
+
import { u as wt } from "./QueryClientProvider-DyiNrPkn.js";
|
|
22
|
+
var d = class extends m {
|
|
23
23
|
constructor(e, a) {
|
|
24
24
|
super(e, a);
|
|
25
25
|
}
|
|
26
26
|
bindMethods() {
|
|
27
27
|
super.bindMethods(), this.fetchNextPage = this.fetchNextPage.bind(this), this.fetchPreviousPage = this.fetchPreviousPage.bind(this);
|
|
28
28
|
}
|
|
29
|
-
setOptions(e
|
|
30
|
-
super.setOptions(
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
},
|
|
35
|
-
a
|
|
36
|
-
);
|
|
29
|
+
setOptions(e) {
|
|
30
|
+
super.setOptions({
|
|
31
|
+
...e,
|
|
32
|
+
behavior: S()
|
|
33
|
+
});
|
|
37
34
|
}
|
|
38
35
|
getOptimisticResult(e) {
|
|
39
|
-
return e.behavior =
|
|
36
|
+
return e.behavior = S(), super.getOptimisticResult(e);
|
|
40
37
|
}
|
|
41
38
|
fetchNextPage(e) {
|
|
42
39
|
return this.fetch({
|
|
@@ -55,166 +52,184 @@ var p = class extends g {
|
|
|
55
52
|
});
|
|
56
53
|
}
|
|
57
54
|
createResult(e, a) {
|
|
58
|
-
const { state:
|
|
55
|
+
const { state: s } = e, r = super.createResult(e, a), { isFetching: o, isRefetching: R, isError: i, isRefetchError: E } = r, t = s.fetchMeta?.fetchMore?.direction, u = i && t === "forward", n = o && t === "forward", c = i && t === "backward", h = o && t === "backward";
|
|
59
56
|
return {
|
|
60
57
|
...r,
|
|
61
58
|
fetchNextPage: this.fetchNextPage,
|
|
62
59
|
fetchPreviousPage: this.fetchPreviousPage,
|
|
63
|
-
hasNextPage:
|
|
64
|
-
hasPreviousPage:
|
|
60
|
+
hasNextPage: l(a, s.data),
|
|
61
|
+
hasPreviousPage: f(a, s.data),
|
|
65
62
|
isFetchNextPageError: u,
|
|
66
63
|
isFetchingNextPage: n,
|
|
67
64
|
isFetchPreviousPageError: c,
|
|
68
65
|
isFetchingPreviousPage: h,
|
|
69
|
-
isRefetchError:
|
|
70
|
-
isRefetching:
|
|
66
|
+
isRefetchError: E && !u && !c,
|
|
67
|
+
isRefetching: R && !n && !h
|
|
71
68
|
};
|
|
72
69
|
}
|
|
73
70
|
};
|
|
74
|
-
function
|
|
75
|
-
return
|
|
71
|
+
function g(e, a) {
|
|
72
|
+
return F(
|
|
76
73
|
e,
|
|
77
|
-
|
|
74
|
+
d,
|
|
78
75
|
a
|
|
79
76
|
);
|
|
80
77
|
}
|
|
81
78
|
export {
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
79
|
+
b as ActionState,
|
|
80
|
+
Ce as Await,
|
|
81
|
+
ye as BrowserRouter,
|
|
82
|
+
be as Form,
|
|
83
|
+
Me as HashRouter,
|
|
84
|
+
ke as IDLE_BLOCKER,
|
|
85
|
+
He as IDLE_FETCHER,
|
|
86
|
+
Oe as IDLE_NAVIGATION,
|
|
87
|
+
we as Link,
|
|
88
|
+
Be as Links,
|
|
89
|
+
De as MemoryRouter,
|
|
90
|
+
Le as Meta,
|
|
91
|
+
_ as ModuleBase,
|
|
92
|
+
U as ModuleCore,
|
|
93
|
+
Qe as NavLink,
|
|
94
|
+
Ie as Navigate,
|
|
95
|
+
Te as NavigationType,
|
|
96
|
+
Ve as Outlet,
|
|
97
|
+
We as PrefetchPageLinks,
|
|
98
|
+
C as QueryClient,
|
|
99
|
+
Ke as Route,
|
|
100
|
+
qe as Router,
|
|
101
|
+
ze as RouterContextProvider,
|
|
102
|
+
Ge as RouterProvider,
|
|
103
|
+
je as Routes,
|
|
104
|
+
Je as Scripts,
|
|
105
|
+
Xe as ScrollRestoration,
|
|
106
|
+
L as ServerRouter,
|
|
107
|
+
Ye as StaticRouter,
|
|
108
|
+
Ze as StaticRouterProvider,
|
|
109
|
+
$e as UNSAFE_AwaitContextProvider,
|
|
110
|
+
ea as UNSAFE_DataRouterContext,
|
|
111
|
+
aa as UNSAFE_DataRouterStateContext,
|
|
112
|
+
ta as UNSAFE_ErrorResponseImpl,
|
|
113
|
+
sa as UNSAFE_FetchersContext,
|
|
114
|
+
ra as UNSAFE_FrameworkContext,
|
|
115
|
+
oa as UNSAFE_LocationContext,
|
|
116
|
+
ia as UNSAFE_NavigationContext,
|
|
117
|
+
Q as UNSAFE_RSCDefaultRootErrorBoundary,
|
|
118
|
+
ua as UNSAFE_RemixErrorBoundary,
|
|
119
|
+
na as UNSAFE_RouteContext,
|
|
120
|
+
I as UNSAFE_ServerMode,
|
|
121
|
+
ca as UNSAFE_SingleFetchRedirectSymbol,
|
|
122
|
+
ha as UNSAFE_ViewTransitionContext,
|
|
123
|
+
Sa as UNSAFE_WithComponentProps,
|
|
124
|
+
Ra as UNSAFE_WithErrorBoundaryProps,
|
|
125
|
+
Ea as UNSAFE_WithHydrateFallbackProps,
|
|
126
|
+
fa as UNSAFE_createBrowserHistory,
|
|
127
|
+
la as UNSAFE_createClientRoutes,
|
|
128
|
+
ma as UNSAFE_createClientRoutesWithHMRRevalidationOptOut,
|
|
129
|
+
Fa as UNSAFE_createHashHistory,
|
|
130
|
+
da as UNSAFE_createMemoryHistory,
|
|
131
|
+
Na as UNSAFE_createRouter,
|
|
132
|
+
pa as UNSAFE_decodeViaTurboStream,
|
|
133
|
+
T as UNSAFE_deserializeErrors,
|
|
134
|
+
V as UNSAFE_getHydrationData,
|
|
135
|
+
Pa as UNSAFE_getPatchRoutesOnNavigationFunction,
|
|
136
|
+
ga as UNSAFE_getTurboStreamSingleFetchDataStrategy,
|
|
137
|
+
Aa as UNSAFE_hydrationRouteProperties,
|
|
138
|
+
xa as UNSAFE_invariant,
|
|
139
|
+
_a as UNSAFE_mapRouteProperties,
|
|
140
|
+
va as UNSAFE_shouldHydrateRouteLoader,
|
|
141
|
+
Ua as UNSAFE_useFogOFWarDiscovery,
|
|
142
|
+
Ca as UNSAFE_useScrollRestoration,
|
|
143
|
+
ya as UNSAFE_withComponentProps,
|
|
144
|
+
ba as UNSAFE_withErrorBoundaryProps,
|
|
145
|
+
Ma as UNSAFE_withHydrateFallbackProps,
|
|
146
|
+
pe as arePropsValid,
|
|
147
|
+
Pe as checkConfig,
|
|
148
|
+
ge as checkIfPropExists,
|
|
149
|
+
Ae as checkVersion,
|
|
150
|
+
ka as createBrowserRouter,
|
|
151
|
+
Ha as createContext,
|
|
152
|
+
W as createCookie,
|
|
153
|
+
K as createCookieSessionStorage,
|
|
154
|
+
Oa as createHashRouter,
|
|
155
|
+
wa as createMemoryRouter,
|
|
156
|
+
q as createMemorySessionStorage,
|
|
157
|
+
Ba as createPath,
|
|
158
|
+
z as createRequestHandler,
|
|
159
|
+
Da as createRoutesFromChildren,
|
|
160
|
+
La as createRoutesFromElements,
|
|
161
|
+
G as createRoutesStub,
|
|
162
|
+
Qa as createSearchParams,
|
|
163
|
+
j as createSession,
|
|
164
|
+
J as createSessionStorage,
|
|
165
|
+
Ia as createStaticHandler,
|
|
166
|
+
Ta as createStaticRouter,
|
|
167
|
+
Va as data,
|
|
168
|
+
Wa as generatePath,
|
|
169
|
+
xe as getEnvironmentVariables,
|
|
170
|
+
_e as getModuleQueryKey,
|
|
171
|
+
X as href,
|
|
172
|
+
Y as isCookie,
|
|
173
|
+
Ka as isRouteErrorResponse,
|
|
174
|
+
Z as isSession,
|
|
175
|
+
qa as matchPath,
|
|
176
|
+
za as matchRoutes,
|
|
177
|
+
de as mutateOnCustomApi,
|
|
178
|
+
Ga as parsePath,
|
|
179
|
+
ja as redirect,
|
|
180
|
+
Ja as redirectDocument,
|
|
181
|
+
Xa as renderMatches,
|
|
182
|
+
Ya as replace,
|
|
183
|
+
Za as resolvePath,
|
|
184
|
+
ve as universalSelector,
|
|
185
|
+
$a as unstable_HistoryRouter,
|
|
186
|
+
$ as unstable_RSCStaticRouter,
|
|
187
|
+
ee as unstable_routeRSCServerRequest,
|
|
188
|
+
ae as unstable_setDevServerHooks,
|
|
189
|
+
et as unstable_usePrompt,
|
|
190
|
+
at as unstable_useRoute,
|
|
191
|
+
tt as useActionData,
|
|
192
|
+
st as useAsyncError,
|
|
193
|
+
rt as useAsyncValue,
|
|
194
|
+
re as useBaseProps,
|
|
195
|
+
ot as useBeforeUnload,
|
|
196
|
+
it as useBlocker,
|
|
182
197
|
k as useBreadcrumbTranslation,
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
198
|
+
oe as useConfig,
|
|
199
|
+
ue as useCustom,
|
|
200
|
+
ce as useCustomMutation,
|
|
201
|
+
Se as useEntity,
|
|
202
|
+
ut as useFetcher,
|
|
203
|
+
nt as useFetchers,
|
|
204
|
+
ct as useFormAction,
|
|
205
|
+
ht as useHref,
|
|
206
|
+
St as useInRouterContext,
|
|
207
|
+
g as useInfiniteQuery,
|
|
208
|
+
Rt as useLinkClickHandler,
|
|
209
|
+
Et as useLoaderData,
|
|
210
|
+
ft as useLocation,
|
|
211
|
+
lt as useMatch,
|
|
212
|
+
mt as useMatches,
|
|
213
|
+
Ht as useMutation,
|
|
214
|
+
te as useNavigate,
|
|
215
|
+
Ft as useNavigation,
|
|
216
|
+
dt as useNavigationType,
|
|
217
|
+
le as useNotification,
|
|
218
|
+
O as useOffline,
|
|
219
|
+
Ee as useOption,
|
|
220
|
+
Nt as useOutlet,
|
|
221
|
+
pt as useOutletContext,
|
|
222
|
+
Pt as useParams,
|
|
223
|
+
Mt as useQuery,
|
|
224
|
+
wt as useQueryClient,
|
|
225
|
+
gt as useResolvedPath,
|
|
226
|
+
At as useRevalidator,
|
|
227
|
+
xt as useRouteError,
|
|
228
|
+
_t as useRouteLoaderData,
|
|
229
|
+
vt as useRoutes,
|
|
230
|
+
Ut as useSearchParams,
|
|
231
|
+
me as useServiceBus,
|
|
217
232
|
B as useSignalRMessages,
|
|
218
|
-
|
|
219
|
-
|
|
233
|
+
Ct as useSubmit,
|
|
234
|
+
yt as useViewTransitionState
|
|
220
235
|
};
|