@nocobase/app 1.6.0-beta.15 → 1.6.0-beta.17
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/client/.umirc.ts +2 -2
- package/client/src/.umi-production/core/helmet.ts +1 -1
- package/client/src/.umi-production/core/history.ts +1 -1
- package/client/src/.umi-production/core/historyIntelli.ts +1 -1
- package/client/src/.umi-production/core/polyfill.ts +233 -233
- package/client/src/.umi-production/exports.ts +3 -3
- package/client/src/.umi-production/testBrowser.tsx +1 -1
- package/client/src/.umi-production/tsconfig.json +1 -1
- package/client/src/.umi-production/umi.ts +2 -2
- package/dist/client/4750.667c5051.async.js +69 -0
- package/dist/client/index.html +3 -3
- package/dist/client/index.html.tpl +3 -3
- package/dist/client/npm._at_ant-design.5ba41bf5.async.js +139 -0
- package/dist/client/npm._at_umijs.7f6c4722.async.js +7 -0
- package/dist/client/{npm.antd.8ecffab2.async.js → npm.antd.483a9a61.async.js} +96 -96
- package/dist/client/{npm.rc-picker.ef8a3e8b.async.js → npm.rc-picker.9e629062.async.js} +1 -1
- package/dist/client/p__index.b29117d8.async.js +1554 -0
- package/dist/client/p__index.b415ed71.chunk.css +1 -0
- package/dist/client/{umi.c1089e7a.js → umi.c4f95824.js} +3 -3
- package/package.json +6 -6
- package/dist/client/9034.8afacb66.async.js +0 -73
- package/dist/client/npm._at_ant-design.1f798181.async.js +0 -117
- package/dist/client/p__index.4324d7a8.async.js +0 -1578
- package/dist/client/p__index.9a8aaa6c.chunk.css +0 -1
|
@@ -7,10 +7,10 @@ export type { RuntimeConfig } from './core/defineApp'
|
|
|
7
7
|
// plugins
|
|
8
8
|
// plugins types.d.ts
|
|
9
9
|
// @umijs/renderer-*
|
|
10
|
-
export { createBrowserHistory, createHashHistory, createMemoryHistory, Helmet, HelmetProvider, createSearchParams, generatePath, matchPath, matchRoutes, Navigate, NavLink, Outlet, resolvePath, useLocation, useMatch, useNavigate, useOutlet, useOutletContext, useParams, useResolvedPath, useRoutes, useSearchParams, useAppData, useClientLoaderData, useRouteProps, useSelectedRoutes, useServerLoaderData, renderClient, __getRoot, Link, useRouteData, __useFetcher, withRouter } from '/
|
|
11
|
-
export type { History } from '/
|
|
10
|
+
export { createBrowserHistory, createHashHistory, createMemoryHistory, Helmet, HelmetProvider, createSearchParams, generatePath, matchPath, matchRoutes, Navigate, NavLink, Outlet, resolvePath, useLocation, useMatch, useNavigate, useOutlet, useOutletContext, useParams, useResolvedPath, useRoutes, useSearchParams, useAppData, useClientLoaderData, useRouteProps, useSelectedRoutes, useServerLoaderData, renderClient, __getRoot, Link, useRouteData, __useFetcher, withRouter } from '/home/runner/work/nocobase/nocobase/node_modules/@umijs/renderer-react';
|
|
11
|
+
export type { History } from '/home/runner/work/nocobase/nocobase/node_modules/@umijs/renderer-react'
|
|
12
12
|
// umi/client/client/plugin
|
|
13
|
-
export { ApplyPluginsType, PluginManager } from '/
|
|
13
|
+
export { ApplyPluginsType, PluginManager } from '/home/runner/work/nocobase/nocobase/node_modules/umi/client/client/plugin.js';
|
|
14
14
|
export { history, createHistory } from './core/history';
|
|
15
15
|
export { terminal } from './core/terminal';
|
|
16
16
|
// react ssr
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// DO NOT CHANGE IT MANUALLY!
|
|
4
4
|
import React, { useEffect, useState } from 'react';
|
|
5
5
|
import { ApplyPluginsType } from 'umi';
|
|
6
|
-
import { renderClient, RenderClientOpts } from '/
|
|
6
|
+
import { renderClient, RenderClientOpts } from '/home/runner/work/nocobase/nocobase/node_modules/@umijs/renderer-react';
|
|
7
7
|
import { createHistory } from './core/history';
|
|
8
8
|
import { createPluginManager } from './core/plugin';
|
|
9
9
|
import { getRoutes } from './core/route';
|
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
// DO NOT CHANGE IT MANUALLY!
|
|
4
4
|
import './core/polyfill';
|
|
5
5
|
|
|
6
|
-
import { renderClient } from '/
|
|
6
|
+
import { renderClient } from '/home/runner/work/nocobase/nocobase/node_modules/@umijs/renderer-react';
|
|
7
7
|
import { getRoutes } from './core/route';
|
|
8
8
|
import { createPluginManager } from './core/plugin';
|
|
9
9
|
import { createHistory } from './core/history';
|
|
10
|
-
import Loading from '/
|
|
10
|
+
import Loading from '/home/runner/work/nocobase/nocobase/packages/core/app/client/src/loading.tsx';
|
|
11
11
|
import { ApplyPluginsType } from 'umi';
|
|
12
12
|
|
|
13
13
|
|