react-base-client 1.0.152 → 1.1.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-base-client",
3
- "version": "1.0.152",
3
+ "version": "1.1.1",
4
4
  "author": "yyc <000000@163.com>",
5
5
  "main": "src/index.ts",
6
6
  "files": [
@@ -0,0 +1,9 @@
1
+ // @ts-nocheck
2
+ // This file is generated by Umi automatically
3
+ // DO NOT CHANGE IT MANUALLY!
4
+ import React from 'react';
5
+ import { Outlet, useOutletContext } from 'umi';
6
+ export default function EmptyRoute() {
7
+ const context = useOutletContext();
8
+ return <Outlet context={context} />;
9
+ }
@@ -0,0 +1,18 @@
1
+ // @ts-nocheck
2
+ // This file is generated by Umi automatically
3
+ // DO NOT CHANGE IT MANUALLY!
4
+ import type { IRuntimeConfig as Plugin0 } from 'H:/af_code/af-react-mobile-base-client/src/.umi/plugin-initialState/runtimeConfig.d'
5
+ import type { IRuntimeConfig as Plugin1 } from 'H:/af_code/af-react-mobile-base-client/src/.umi/plugin-request/runtimeConfig.d'
6
+ interface IDefaultRuntimeConfig {
7
+ onRouteChange?: (props: { routes: any, clientRoutes: any, location: any, action:any }) => void;
8
+ patchRoutes?: (props: { routes: any }) => void;
9
+ patchClientRoutes?: (props: { routes: any }) => void;
10
+ render?: (oldRender: () => void) => void;
11
+ rootContainer?: (lastRootContainer: JSX.Element, args?: any) => void;
12
+ [key: string]: any;
13
+ }
14
+ export type RuntimeConfig = IDefaultRuntimeConfig & Plugin0 & Plugin1
15
+
16
+ export function defineApp(config: RuntimeConfig): RuntimeConfig {
17
+ return config;
18
+ }
@@ -0,0 +1,64 @@
1
+ // @ts-nocheck
2
+ // This file is generated by Umi automatically
3
+ // DO NOT CHANGE IT MANUALLY!
4
+ import { createHashHistory, createMemoryHistory, createBrowserHistory, History } from 'H:/af_code/af-react-mobile-base-client/node_modules/@umijs/renderer-react';
5
+
6
+ let history: History;
7
+ let basename: string = '/';
8
+ export function createHistory(opts: any) {
9
+ let h;
10
+ if (opts.type === 'hash') {
11
+ h = createHashHistory();
12
+ } else if (opts.type === 'memory') {
13
+ h = createMemoryHistory(opts);
14
+ } else {
15
+ h = createBrowserHistory();
16
+ }
17
+ if (opts.basename) {
18
+ basename = opts.basename;
19
+ }
20
+
21
+ history = {
22
+ ...h,
23
+ push(to, state) {
24
+ h.push(patchTo(to, h), state);
25
+ },
26
+ replace(to, state) {
27
+ h.replace(patchTo(to, h), state);
28
+ },
29
+ get location() {
30
+ return h.location;
31
+ },
32
+ get action() {
33
+ return h.action;
34
+ }
35
+ }
36
+
37
+ return h;
38
+ }
39
+
40
+ // Patch `to` to support basename
41
+ // Refs:
42
+ // https://github.com/remix-run/history/blob/3e9dab4/packages/history/index.ts#L484
43
+ // https://github.com/remix-run/history/blob/dev/docs/api-reference.md#to
44
+ function patchTo(to: any, h: History) {
45
+ if (typeof to === 'string') {
46
+ return `${stripLastSlash(basename)}${to}`;
47
+ } else if (typeof to === 'object') {
48
+
49
+ const currentPathname = h.location.pathname;
50
+
51
+ return {
52
+ ...to,
53
+ pathname: to.pathname? `${stripLastSlash(basename)}${to.pathname}` : currentPathname,
54
+ };
55
+ } else {
56
+ throw new Error(`Unexpected to: ${to}`);
57
+ }
58
+ }
59
+
60
+ function stripLastSlash(path) {
61
+ return path.slice(-1) === '/' ? path.slice(0, -1) : path;
62
+ }
63
+
64
+ export { history };
@@ -0,0 +1,52 @@
1
+ // @ts-nocheck
2
+ // This file is generated by Umi automatically
3
+ // DO NOT CHANGE IT MANUALLY!
4
+ import * as Plugin_0 from 'H:/af_code/af-react-mobile-base-client/src/app.ts';
5
+ import * as Plugin_1 from 'H:/af_code/af-react-mobile-base-client/src/.umi/plugin-access/runtime.tsx';
6
+ import * as Plugin_2 from 'H:/af_code/af-react-mobile-base-client/src/.umi/plugin-initialState/runtime.tsx';
7
+ import * as Plugin_3 from 'H:/af_code/af-react-mobile-base-client/src/.umi/plugin-model/runtime.tsx';
8
+ import { PluginManager } from 'umi';
9
+
10
+ function __defaultExport (obj) {
11
+ if (obj.default) {
12
+ return typeof obj.default === 'function' ? obj.default() : obj.default
13
+ }
14
+ return obj;
15
+ }
16
+ export function getPlugins() {
17
+ return [
18
+ {
19
+ apply: __defaultExport(Plugin_0),
20
+ path: process.env.NODE_ENV === 'production' ? void 0 : 'H:/af_code/af-react-mobile-base-client/src/app.ts',
21
+ },
22
+ {
23
+ apply: Plugin_1,
24
+ path: process.env.NODE_ENV === 'production' ? void 0 : 'H:/af_code/af-react-mobile-base-client/src/.umi/plugin-access/runtime.tsx',
25
+ },
26
+ {
27
+ apply: Plugin_2,
28
+ path: process.env.NODE_ENV === 'production' ? void 0 : 'H:/af_code/af-react-mobile-base-client/src/.umi/plugin-initialState/runtime.tsx',
29
+ },
30
+ {
31
+ apply: Plugin_3,
32
+ path: process.env.NODE_ENV === 'production' ? void 0 : 'H:/af_code/af-react-mobile-base-client/src/.umi/plugin-model/runtime.tsx',
33
+ },
34
+ ];
35
+ }
36
+
37
+ export function getValidKeys() {
38
+ return ['patchRoutes','patchClientRoutes','modifyContextOpts','modifyClientRenderOpts','rootContainer','innerProvider','i18nProvider','accessProvider','dataflowProvider','outerProvider','render','onRouteChange','getInitialState','qiankun','request',];
39
+ }
40
+
41
+ let pluginManager = null;
42
+ export function createPluginManager() {
43
+ pluginManager = PluginManager.create({
44
+ plugins: getPlugins(),
45
+ validKeys: getValidKeys(),
46
+ });
47
+ return pluginManager;
48
+ }
49
+
50
+ export function getPluginManager() {
51
+ return pluginManager;
52
+ }
@@ -0,0 +1,327 @@
1
+ // This file is generated by Umi automatically
2
+ // DO NOT CHANGE IT MANUALLY!
3
+ // Created by Umi Plugin
4
+
5
+ export interface IConfigFromPlugins {
6
+ clientLoader?: {
7
+
8
+ }
9
+ codeSplitting?: {
10
+ jsStrategy?: ("bigVendors" | "depPerChunk" | "granularChunks")
11
+ jsStrategyOptions?: {
12
+
13
+ }
14
+ cssStrategy?: "mergeAll"
15
+ cssStrategyOptions?: {
16
+
17
+ }
18
+ }
19
+ title?: string
20
+ styles?: unknown[]
21
+ scripts?: unknown[]
22
+ routes?: {
23
+
24
+ }[]
25
+ reactRouter5Compat?: {
26
+
27
+ }
28
+ presets?: string[]
29
+ plugins?: string[]
30
+ npmClient?: ("pnpm" | "tnpm" | "cnpm" | "yarn" | "npm")
31
+ mountElementId?: string
32
+ metas?: unknown[]
33
+ links?: unknown[]
34
+ historyWithQuery?: {
35
+
36
+ }
37
+ history?: {
38
+ type?: ("browser" | "hash" | "memory")
39
+ }
40
+ headScripts?: unknown[]
41
+ conventionRoutes?: {
42
+ base?: string
43
+ exclude?: unknown[]
44
+ }
45
+ base?: string
46
+ analyze?: {
47
+
48
+ }
49
+ writeToDisk?: boolean
50
+ theme?: {
51
+
52
+ }
53
+ targets?: {
54
+
55
+ }
56
+ svgr?: {
57
+
58
+ }
59
+ svgo?: ({
60
+
61
+ } | boolean)
62
+ styleLoader?: {
63
+
64
+ }
65
+ srcTranspiler?: ("babel" | "esbuild" | "swc" | "none")
66
+ sassLoader?: {
67
+
68
+ }
69
+ runtimePublicPath?: {
70
+
71
+ }
72
+ purgeCSS?: {
73
+
74
+ }
75
+ publicPath?: string
76
+ proxy?: ({
77
+
78
+ } | unknown[])
79
+ postcssLoader?: {
80
+
81
+ }
82
+ outputPath?: string
83
+ mfsu?: ({
84
+ cacheDirectory?: string
85
+ chainWebpack?: (() => any)
86
+ esbuild?: boolean
87
+ exclude?: unknown[]
88
+ include?: string[]
89
+ mfName?: string
90
+ remoteAliases?: string[]
91
+ remoteName?: string
92
+ runtimePublicPath?: boolean
93
+ shared?: {
94
+
95
+ }
96
+ strategy?: ("eager" | "normal")
97
+ } | boolean)
98
+ mdx?: {
99
+ loader?: string
100
+ loaderOptions?: {
101
+
102
+ }
103
+ }
104
+ manifest?: {
105
+
106
+ }
107
+ lessLoader?: {
108
+
109
+ }
110
+ jsMinifierOptions?: {
111
+
112
+ }
113
+ jsMinifier?: ("esbuild" | "swc" | "terser" | "uglifyJs" | "none")
114
+ inlineLimit?: number
115
+ ignoreMomentLocale?: boolean
116
+ https?: {
117
+
118
+ }
119
+ hash?: boolean
120
+ forkTSChecker?: {
121
+
122
+ }
123
+ fastRefresh?: boolean
124
+ extraPostCSSPlugins?: unknown[]
125
+ extraBabelPresets?: unknown[]
126
+ extraBabelPlugins?: unknown[]
127
+ extraBabelIncludes?: unknown[]
128
+ externals?: ({
129
+
130
+ } | string | (() => any))
131
+ esm?: {
132
+
133
+ }
134
+ devtool?: (string | boolean)
135
+ depTranspiler?: ("babel" | "esbuild" | "swc" | "none")
136
+ define?: {
137
+
138
+ }
139
+ deadCode?: {
140
+
141
+ }
142
+ cssMinifierOptions?: {
143
+
144
+ }
145
+ cssMinifier?: ("cssnano" | "esbuild" | "parcelCSS" | "none")
146
+ cssLoaderModules?: {
147
+
148
+ }
149
+ cssLoader?: {
150
+
151
+ }
152
+ copy?: unknown[]
153
+ cacheDirectoryPath?: string
154
+ babelLoaderCustomize?: string
155
+ autoprefixer?: {
156
+
157
+ }
158
+ autoCSSModules?: boolean
159
+ alias?: {
160
+
161
+ }
162
+ crossorigin?: (boolean | {
163
+ includes?: {
164
+
165
+ }[]
166
+ })
167
+ esmi?: {
168
+ cdnOrigin?: string
169
+ shimUrl?: string
170
+ }
171
+ exportStatic?: {
172
+ extraRoutePaths?: ((() => any) | string[])
173
+ }
174
+ favicons?: string[]
175
+ mock?: {
176
+ exclude?: string[]
177
+ include?: string[]
178
+ }
179
+ mpa?: {
180
+ template?: string
181
+ layout?: string
182
+ getConfigFromEntryFile?: boolean
183
+ entry?: {
184
+
185
+ }
186
+ }
187
+ polyfill?: {
188
+ imports?: string[]
189
+ }
190
+ routePrefetch?: {
191
+
192
+ }
193
+ ssr?: {
194
+ serverBuildPath?: string
195
+ platform?: string
196
+ builder?: ("esbuild" | "webpack")
197
+ }
198
+ terminal?: {
199
+
200
+ }
201
+ tmpFiles?: boolean
202
+ lowImport?: {
203
+ libs?: unknown[]
204
+ css?: string
205
+ }
206
+ vite?: {
207
+
208
+ }
209
+ apiRoute?: {
210
+ platform?: string
211
+ }
212
+ monorepoRedirect?: (boolean | {
213
+ srcDir?: string[]
214
+ exclude?: {
215
+
216
+ }[]
217
+ })
218
+ test?: {
219
+
220
+ }
221
+ clickToComponent?: {
222
+ editor?: string
223
+ }
224
+ legacy?: {
225
+ buildOnly?: boolean
226
+ nodeModulesTransform?: boolean
227
+ }
228
+ classPropertiesLoose?: {
229
+
230
+ }
231
+ verifyCommit?: {
232
+ scope?: string[]
233
+ allowEmoji?: boolean
234
+ }
235
+ run?: {
236
+ globals?: string[]
237
+ }
238
+ access?: ({
239
+
240
+ } | boolean)
241
+ analytics?: ({
242
+ baidu?: string
243
+ ga?: string
244
+ ga_v2?: string
245
+ } | boolean)
246
+ antd?: ({
247
+ configProvider?: {
248
+
249
+ }
250
+ dark?: boolean
251
+ compact?: boolean
252
+ import?: boolean
253
+ style?: ("less" | "css")
254
+ theme?: {
255
+
256
+ }
257
+ } | boolean)
258
+ dva?: ({
259
+ extraModels?: string[]
260
+ immer?: {
261
+
262
+ }
263
+ skipModelValidate?: boolean
264
+ } | boolean)
265
+ initialState?: ({
266
+ loading?: string
267
+ } | boolean)
268
+ layout?: ({
269
+
270
+ } | boolean)
271
+ locale?: ({
272
+ default?: string
273
+ useLocalStorage?: boolean
274
+ baseNavigator?: boolean
275
+ title?: boolean
276
+ antd?: boolean
277
+ baseSeparator?: string
278
+ } | boolean)
279
+ mf?: {
280
+ name?: string
281
+ remotes?: {
282
+ aliasName?: string
283
+ name?: string
284
+ entry?: string
285
+ entries?: {
286
+
287
+ }
288
+ keyResolver?: string
289
+ }[]
290
+ shared?: {
291
+
292
+ }
293
+ library?: {
294
+
295
+ }
296
+ }
297
+ model?: ({
298
+ extraModels?: string[]
299
+ } | boolean)
300
+ moment2dayjs?: ({
301
+ preset?: string
302
+ plugins?: unknown[]
303
+ } | boolean)
304
+ qiankun?: ({
305
+ slave?: {
306
+
307
+ }
308
+ master?: {
309
+
310
+ }
311
+ externalQiankun?: boolean
312
+ } | boolean)
313
+ request?: ({
314
+ dataField?: ""
315
+ } | boolean)
316
+ styledComponents?: {
317
+ babelPlugin?: {
318
+
319
+ }
320
+ }
321
+ tailwindcss?: ({
322
+
323
+ } | boolean)
324
+ valtio?: {
325
+
326
+ }
327
+ }
@@ -0,0 +1,163 @@
1
+ // @ts-nocheck
2
+ // This file is generated by Umi automatically
3
+ // DO NOT CHANGE IT MANUALLY!
4
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/es.error.cause.js";
5
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/es.aggregate-error.cause.js";
6
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/es.array.at.js";
7
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/es.object.has-own.js";
8
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/es.regexp.flags.js";
9
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/es.string.at-alternative.js";
10
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/es.typed-array.at.js";
11
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/es.typed-array.set.js";
12
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.array.from-async.js";
13
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.array.filter-out.js";
14
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.array.filter-reject.js";
15
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.array.find-last.js";
16
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.array.find-last-index.js";
17
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.array.group-by.js";
18
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.array.group-by-to-map.js";
19
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.array.is-template-object.js";
20
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.array.last-index.js";
21
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.array.last-item.js";
22
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.array.to-reversed.js";
23
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.array.to-sorted.js";
24
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.array.to-spliced.js";
25
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.array.unique-by.js";
26
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.array.with.js";
27
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.async-iterator.constructor.js";
28
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.async-iterator.as-indexed-pairs.js";
29
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.async-iterator.drop.js";
30
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.async-iterator.every.js";
31
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.async-iterator.filter.js";
32
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.async-iterator.find.js";
33
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.async-iterator.flat-map.js";
34
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.async-iterator.for-each.js";
35
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.async-iterator.from.js";
36
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.async-iterator.map.js";
37
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.async-iterator.reduce.js";
38
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.async-iterator.some.js";
39
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.async-iterator.take.js";
40
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.async-iterator.to-array.js";
41
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.bigint.range.js";
42
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.composite-key.js";
43
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.composite-symbol.js";
44
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.function.is-callable.js";
45
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.function.is-constructor.js";
46
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.function.un-this.js";
47
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.iterator.constructor.js";
48
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.iterator.as-indexed-pairs.js";
49
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.iterator.drop.js";
50
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.iterator.every.js";
51
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.iterator.filter.js";
52
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.iterator.find.js";
53
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.iterator.flat-map.js";
54
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.iterator.for-each.js";
55
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.iterator.from.js";
56
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.iterator.map.js";
57
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.iterator.reduce.js";
58
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.iterator.some.js";
59
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.iterator.take.js";
60
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.iterator.to-array.js";
61
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.iterator.to-async.js";
62
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.map.delete-all.js";
63
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.map.emplace.js";
64
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.map.every.js";
65
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.map.filter.js";
66
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.map.find.js";
67
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.map.find-key.js";
68
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.map.from.js";
69
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.map.group-by.js";
70
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.map.includes.js";
71
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.map.key-by.js";
72
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.map.key-of.js";
73
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.map.map-keys.js";
74
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.map.map-values.js";
75
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.map.merge.js";
76
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.map.of.js";
77
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.map.reduce.js";
78
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.map.some.js";
79
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.map.update.js";
80
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.map.update-or-insert.js";
81
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.map.upsert.js";
82
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.math.clamp.js";
83
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.math.deg-per-rad.js";
84
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.math.degrees.js";
85
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.math.fscale.js";
86
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.math.iaddh.js";
87
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.math.imulh.js";
88
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.math.isubh.js";
89
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.math.rad-per-deg.js";
90
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.math.radians.js";
91
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.math.scale.js";
92
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.math.seeded-prng.js";
93
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.math.signbit.js";
94
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.math.umulh.js";
95
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.number.from-string.js";
96
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.number.range.js";
97
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.object.iterate-entries.js";
98
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.object.iterate-keys.js";
99
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.object.iterate-values.js";
100
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.observable.js";
101
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.promise.try.js";
102
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.reflect.define-metadata.js";
103
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.reflect.delete-metadata.js";
104
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.reflect.get-metadata.js";
105
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.reflect.get-metadata-keys.js";
106
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.reflect.get-own-metadata.js";
107
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.reflect.get-own-metadata-keys.js";
108
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.reflect.has-metadata.js";
109
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.reflect.has-own-metadata.js";
110
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.reflect.metadata.js";
111
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.set.add-all.js";
112
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.set.delete-all.js";
113
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.set.difference.js";
114
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.set.every.js";
115
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.set.filter.js";
116
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.set.find.js";
117
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.set.from.js";
118
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.set.intersection.js";
119
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.set.is-disjoint-from.js";
120
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.set.is-subset-of.js";
121
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.set.is-superset-of.js";
122
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.set.join.js";
123
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.set.map.js";
124
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.set.of.js";
125
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.set.reduce.js";
126
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.set.some.js";
127
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.set.symmetric-difference.js";
128
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.set.union.js";
129
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.string.at.js";
130
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.string.cooked.js";
131
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.string.code-points.js";
132
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.symbol.async-dispose.js";
133
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.symbol.dispose.js";
134
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.symbol.matcher.js";
135
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.symbol.metadata.js";
136
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.symbol.observable.js";
137
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.symbol.pattern-match.js";
138
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.symbol.replace-all.js";
139
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.typed-array.from-async.js";
140
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.typed-array.filter-out.js";
141
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.typed-array.filter-reject.js";
142
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.typed-array.find-last.js";
143
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.typed-array.find-last-index.js";
144
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.typed-array.group-by.js";
145
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.typed-array.to-reversed.js";
146
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.typed-array.to-sorted.js";
147
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.typed-array.to-spliced.js";
148
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.typed-array.unique-by.js";
149
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.typed-array.with.js";
150
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.weak-map.delete-all.js";
151
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.weak-map.from.js";
152
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.weak-map.of.js";
153
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.weak-map.emplace.js";
154
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.weak-map.upsert.js";
155
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.weak-set.add-all.js";
156
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.weak-set.delete-all.js";
157
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.weak-set.from.js";
158
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/esnext.weak-set.of.js";
159
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/web.dom-exception.stack.js";
160
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/web.immediate.js";
161
+ import "H:/af_code/af-react-mobile-base-client/node_modules/core-js/modules/web.structured-clone.js";
162
+ import 'H:/af_code/af-react-mobile-base-client/node_modules/@umijs/preset-umi/node_modules/regenerator-runtime/runtime.js';
163
+ export {};
@@ -0,0 +1,13 @@
1
+ // @ts-nocheck
2
+ // This file is generated by Umi automatically
3
+ // DO NOT CHANGE IT MANUALLY!
4
+ import React from 'react';
5
+
6
+ export async function getRoutes() {
7
+ return {
8
+ routes: {},
9
+ routeComponents: {
10
+
11
+ },
12
+ };
13
+ }