antd-management-fast-framework 2.11.172 → 2.11.177
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/es/components/DataPreviewDrawer/index.d.ts +0 -1
- package/es/components/MobileContainor/MobileHtmlPreviewBox/index.d.ts +0 -1
- package/es/components/MobileContainor/MobilePreviewArea/index.d.ts +20 -3
- package/es/framework/AuthorizationWrapper/index.d.ts +0 -3
- package/es/framework/Common/InternalFlow/index.d.ts +10 -1
- package/es/framework/Core/index.d.ts +59 -4
- package/es/framework/CustomWrapper/Supplement/index.d.ts +5 -4
- package/es/framework/DataDrawer/Base/index.d.ts +1 -3
- package/es/framework/DataDrawer/BaseAddDrawer/index.d.ts +6 -0
- package/es/framework/DataDrawer/BaseFormDrawer/index.d.ts +1 -1
- package/es/framework/DataDrawer/BaseLoadDrawer/index.d.ts +14 -0
- package/es/framework/DataDrawer/BaseNeedlessLoadDrawer/index.d.ts +14 -1
- package/es/framework/DataDrawer/BaseSaveDrawer/index.d.ts +14 -0
- package/es/framework/DataDrawer/BaseUpdateDrawer/index.d.ts +6 -0
- package/es/framework/DataForm/BaseAddForm/index.d.ts +6 -2
- package/es/framework/DataForm/BaseUpdateForm/index.d.ts +0 -1
- package/es/framework/DataForm/BaseUpdateFormMenu/index.d.ts +0 -1
- package/es/framework/DataForm/BaseUpdateFormTab/index.d.ts +0 -1
- package/es/framework/DataListView/Base/index.d.ts +59 -16
- package/es/framework/DataMenuContainer/index.d.ts +6 -2
- package/es/framework/DataModal/Base/index.d.ts +4 -5
- package/es/framework/DataModal/BaseAddModal/index.d.ts +14 -0
- package/es/framework/DataModal/BaseDisplayModal/index.d.ts +14 -0
- package/es/framework/DataModal/BaseFormModal/index.d.ts +1 -1
- package/es/framework/DataModal/BaseImageSortModal/index.d.ts +14 -0
- package/es/framework/DataModal/BaseNeedlessLoadModal/index.d.ts +0 -1
- package/es/framework/DataModal/BaseSelectModal/index.d.ts +4 -1
- package/es/framework/DataModal/BaseUpdateTransferModal/index.d.ts +14 -0
- package/es/framework/DataMultiPageView/InnerMultiPage/index.d.ts +0 -1
- package/es/framework/DataMultiPageView/MultiPage/index.d.ts +12 -12
- package/es/framework/DataMultiPageView/MultiPageDrawer/index.d.ts +35 -4
- package/es/framework/DataMultiPageView/MultiPageModal/index.d.ts +33 -4
- package/es/framework/DataMultiPageView/MultiPageSelectDrawer/index.d.ts +4 -0
- package/es/framework/DataMultiPageView/MultiPageSelectModal/index.d.ts +4 -0
- package/es/framework/DataOperation/Base/index.d.ts +0 -1
- package/es/framework/DataOperation/BaseWindow/index.d.ts +4 -3
- package/es/framework/DataSinglePageView/InnerSinglePage/index.d.ts +0 -1
- package/es/framework/DataSinglePageView/SinglePage/index.d.ts +18 -6
- package/es/framework/DataSinglePageView/SinglePageDrawer/index.d.ts +35 -4
- package/es/framework/DataSinglePageView/SinglePageModal/index.d.ts +33 -4
- package/es/framework/DataSinglePageView/SinglePageSelectDrawer/index.d.ts +4 -0
- package/es/framework/DataSinglePageView/SinglePageSelectModal/index.d.ts +4 -0
- package/es/framework/DataSingleView/DataCore/index.d.ts +35 -6
- package/es/framework/DataSingleView/DataLoad/index.d.ts +6 -0
- package/es/framework/DataTabContainer/index.d.ts +6 -0
- package/es/framework/Wrapper/index.d.ts +1 -0
- package/es/index.js +2 -2
- package/es/utils/applicationListDataCacheAssist.d.ts +2 -7
- package/es/utils/interfaceSettingCacheAssist.d.ts +1 -3
- package/es/utils/interfaceSettingLocalAssist.d.ts +1 -1
- package/es/utils/reloadAnimalPromptControlAssist.d.ts +2 -2
- package/es/utils/shortcutControlAssist.d.ts +2 -2
- package/es/utils/switchControlAssist.d.ts +2 -2
- package/package.json +7 -6
|
@@ -1,18 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* 获取 applicationListData 缓存
|
|
3
|
-
*
|
|
4
|
-
* @param {*} fn
|
|
5
3
|
*/
|
|
6
4
|
export function getApplicationListDataCache(): any;
|
|
7
5
|
/**
|
|
8
6
|
* 设置 applicationListData 缓存
|
|
9
|
-
*
|
|
10
|
-
* @param {o} metaData数据
|
|
7
|
+
* @param {Object} o metaData数据
|
|
11
8
|
*/
|
|
12
|
-
export function setApplicationListDataCache(o:
|
|
9
|
+
export function setApplicationListDataCache(o: Object): void;
|
|
13
10
|
/**
|
|
14
11
|
* 移除信息
|
|
15
|
-
*
|
|
16
|
-
* @param {*} fn
|
|
17
12
|
*/
|
|
18
13
|
export function removeApplicationListDataCache(): void;
|
|
@@ -4,12 +4,10 @@
|
|
|
4
4
|
export function getInterfaceSetting(): any;
|
|
5
5
|
/**
|
|
6
6
|
* Set interfaceSetting catch
|
|
7
|
-
* @param {
|
|
7
|
+
* @param {string} value
|
|
8
8
|
*/
|
|
9
9
|
export function setInterfaceSetting(value: string): void;
|
|
10
10
|
/**
|
|
11
11
|
* Remove interfaceSetting catch
|
|
12
|
-
*
|
|
13
|
-
* @param {*} fn
|
|
14
12
|
*/
|
|
15
13
|
export function removeInterfaceSetting(): void;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export namespace reloadAnimalPromptControlAssist {
|
|
2
2
|
/**
|
|
3
3
|
* check
|
|
4
|
-
* @param {
|
|
4
|
+
* @param {Object} reloadAnimalPromptControl model
|
|
5
5
|
* @param {string} flag switch flag
|
|
6
6
|
*/
|
|
7
|
-
function check(reloadAnimalPromptControl:
|
|
7
|
+
function check(reloadAnimalPromptControl: Object, flag: string): boolean;
|
|
8
8
|
/**
|
|
9
9
|
* show
|
|
10
10
|
* @param {Array} message switch flag
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export namespace switchControlAssist {
|
|
2
2
|
/**
|
|
3
3
|
* check switch
|
|
4
|
-
* @param {
|
|
4
|
+
* @param {Object} switchControl switch model
|
|
5
5
|
* @param {string} flag switch flag
|
|
6
6
|
*/
|
|
7
|
-
function check(switchControl:
|
|
7
|
+
function check(switchControl: Object, flag: string): boolean;
|
|
8
8
|
/**
|
|
9
9
|
* open switch
|
|
10
10
|
* @param {string} flag switch flag
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "antd-management-fast-framework",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.177",
|
|
4
4
|
"description": "antd-management-fast-framework",
|
|
5
5
|
"homepage": "https://github.com/kityandhero/antd-management-fast-framework#readme",
|
|
6
6
|
"license": "ISC",
|
|
@@ -20,7 +20,8 @@
|
|
|
20
20
|
"dev:rollup": "rollup --config rollup.config.skipCompression.js --bundleConfigAsCjs --watch --watch.onBundleEnd=\"npm run z:tsc:build\"",
|
|
21
21
|
"precommit": "npm run z:lint:staged:quiet",
|
|
22
22
|
"z:auto:adjust:file": "echo can exec some file adjust command with here",
|
|
23
|
-
"
|
|
23
|
+
"z:documentation:clear": "npx easy-soft-develop rimraf --path ./docs",
|
|
24
|
+
"prez:documentation:generate": "npm run z:documentation:clear && npm run z:documentation:lint",
|
|
24
25
|
"z:documentation:generate": "npx documentation build src/** -f html --github -o docs",
|
|
25
26
|
"z:documentation:lint": "npx documentation lint src/**",
|
|
26
27
|
"z:lint:file:all": "npm run z:lint:script:all && npm run z:lint:style:all",
|
|
@@ -58,8 +59,8 @@
|
|
|
58
59
|
"axios": "^1.7.2",
|
|
59
60
|
"classnames": "^2.5.1",
|
|
60
61
|
"dayjs": "^1.11.11",
|
|
61
|
-
"easy-soft-dva": "^3.10.
|
|
62
|
-
"easy-soft-utility": "^2.8.
|
|
62
|
+
"easy-soft-dva": "^3.10.45",
|
|
63
|
+
"easy-soft-utility": "^2.8.48",
|
|
63
64
|
"html-react-parser": "^5.1.10",
|
|
64
65
|
"rc-animate": "^3.1.1",
|
|
65
66
|
"rc-queue-anim": "^2.0.0",
|
|
@@ -112,9 +113,9 @@
|
|
|
112
113
|
"conventional-changelog-conventionalcommits": "^8.0.0",
|
|
113
114
|
"cross-env": "^7.0.3",
|
|
114
115
|
"cssnano": "^7.0.1",
|
|
115
|
-
"cz-git": "^1.9.
|
|
116
|
+
"cz-git": "^1.9.2",
|
|
116
117
|
"documentation": "^14.0.3",
|
|
117
|
-
"easy-soft-develop": "^2.1.
|
|
118
|
+
"easy-soft-develop": "^2.1.174",
|
|
118
119
|
"eslint": "^8.57.0",
|
|
119
120
|
"eslint-config-airbnb": "^19.0.4",
|
|
120
121
|
"eslint-config-airbnb-typescript": "^18.0.0",
|