antd-management-fast-component 2.6.167 → 2.6.169
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 +42 -0
- package/es/bases/AbstractComponent/index.d.ts +24 -3
- package/es/components/AudioUpload/index.d.ts +4 -4
- package/es/components/CustomGrid/index.d.ts +0 -2
- package/es/components/DescriptionGrid/index.d.ts +0 -2
- package/es/components/DisplayCopyData/index.d.ts +0 -2
- package/es/components/ElasticityButton/index.d.ts +0 -1
- package/es/components/ElasticityDropdown/index.d.ts +0 -1
- package/es/components/ElasticityListViewItemExtra/index.d.ts +0 -2
- package/es/components/ElasticityMenu/index.d.ts +0 -2
- package/es/components/ElasticityMenuHeader/index.d.ts +0 -2
- package/es/components/ElasticityRadioGroup/index.d.ts +0 -2
- package/es/components/ElasticitySelectButton/BaseElasticitySelectButton/index.d.ts +0 -1
- package/es/components/ElasticityTagList/index.d.ts +0 -2
- package/es/components/ElasticityTree/index.d.ts +0 -2
- package/es/components/ElasticityTreeSelect/index.d.ts +0 -2
- package/es/components/FieldExtra/SelectFieldExtra/BaseSelectFieldExtra/index.d.ts +0 -1
- package/es/components/FileUpload/index.d.ts +4 -4
- package/es/components/FlexRadio/index.d.ts +0 -2
- package/es/components/FlexSelect/index.d.ts +0 -2
- package/es/components/HiddenWrapper/index.d.ts +0 -1
- package/es/components/ImageBox/index.d.ts +4 -6
- package/es/components/RowExpandTable/index.d.ts +0 -2
- package/es/components/StandardTable/index.d.ts +4 -4
- package/es/components/SyntaxHighlighter/index.d.ts +0 -2
- package/es/components/TagSelect/index.d.ts +4 -4
- package/es/components/VideoUpload/index.d.ts +4 -4
- package/package.json +42 -42
package/README.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# antd-management-fast-common
|
|
2
|
+
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
## Instruction
|
|
6
|
+
|
|
7
|
+
Github项目README.md模板
|
|
8
|
+
(项目背景/作用介绍)
|
|
9
|
+
|
|
10
|
+
### 示例
|
|
11
|
+
|
|
12
|
+
把使用了该项目的案例放在这里。可以放APK下载链接,或者简单放几张截图, 使用相对路径插入图片。 格式是! 【】 (相对路径)(示例一开始就放出来,方便浏览者一眼就看出是不是想找的东西)
|
|
13
|
+
|
|
14
|
+
### 特性(可选)
|
|
15
|
+
|
|
16
|
+
- 特性A
|
|
17
|
+
|
|
18
|
+
- 特性B
|
|
19
|
+
|
|
20
|
+
### 原理说明(可选)阐述项目是基于什么思路设计的
|
|
21
|
+
|
|
22
|
+
### 下载安装
|
|
23
|
+
|
|
24
|
+
Gradle:
|
|
25
|
+
|
|
26
|
+
```xml
|
|
27
|
+
compile 'xxx'
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
(说明项目的配置方法,android开源库多用Gradle导入)
|
|
31
|
+
|
|
32
|
+
### 使用方法怎么使用,有哪些步骤哪些接口。
|
|
33
|
+
|
|
34
|
+
### 注意事项
|
|
35
|
+
|
|
36
|
+
比如混淆方法等
|
|
37
|
+
|
|
38
|
+
### TODO(可选)接下来的开发/维护计划。
|
|
39
|
+
|
|
40
|
+
## License
|
|
41
|
+
|
|
42
|
+
遵守的协议
|
|
@@ -77,12 +77,28 @@ export class AbstractComponent extends Component<any, any, any> {
|
|
|
77
77
|
doWorkWhenCheckAuthenticationFail: () => void;
|
|
78
78
|
doWorkWhenCheckAuthorizationFail: () => void;
|
|
79
79
|
doOtherCheckComponentUpdate: () => null;
|
|
80
|
+
/**
|
|
81
|
+
* 挂载完成后进行调整,触发 doWorkAdjustDidMount 前执行,默认为空逻辑,可根据需要重载。
|
|
82
|
+
* @function
|
|
83
|
+
*/
|
|
80
84
|
doWorkBeforeAdjustDidMount: () => void;
|
|
85
|
+
/**
|
|
86
|
+
* 挂载完成后进行调整,触发 doWorkBeforeAdjustDidMount 后,触发 doWorkAfterAdjustDidMount 前执行,默认为空逻辑,可根据需要重载。
|
|
87
|
+
* @function
|
|
88
|
+
*/
|
|
81
89
|
doWorkAdjustDidMount: () => void;
|
|
90
|
+
/**
|
|
91
|
+
* 挂载完成后进行调整,触发 doWorkAdjustDidMount 后执行,默认为空逻辑,可根据需要重载。
|
|
92
|
+
* @function
|
|
93
|
+
*/
|
|
82
94
|
doWorkAfterAdjustDidMount: () => void;
|
|
83
95
|
doWorkAfterDidMount: () => void;
|
|
84
96
|
doLoadRemoteRequest: () => void;
|
|
85
97
|
doOtherRemoteRequest: () => void;
|
|
98
|
+
/**
|
|
99
|
+
* 挂载完成后触发执行。
|
|
100
|
+
* @function
|
|
101
|
+
*/
|
|
86
102
|
doOtherWorkAfterDidMount: () => void;
|
|
87
103
|
doWorkBeforeUpdate: (nextProperties: any, nextState: any) => void;
|
|
88
104
|
doWorkWhenDidUpdate: (preProperties: any, preState: any, snapshot: any) => void;
|
|
@@ -130,15 +146,20 @@ export class AbstractComponent extends Component<any, any, any> {
|
|
|
130
146
|
*/
|
|
131
147
|
logCallResult(data: any, ...messages: any[]): void;
|
|
132
148
|
buildOverloadErrorText(...texts: any[]): string;
|
|
133
|
-
|
|
149
|
+
/**
|
|
150
|
+
* 渲染主入口。
|
|
151
|
+
* @function
|
|
152
|
+
* @returns {Object} 渲染结果
|
|
153
|
+
*/
|
|
154
|
+
renderFurther(): Object;
|
|
134
155
|
setPageValue(o: any): void;
|
|
135
156
|
openPreventRender(): void;
|
|
136
157
|
closePreventRender(triggerRender?: boolean): void;
|
|
137
158
|
/**
|
|
138
159
|
* render the practical view
|
|
139
160
|
*/
|
|
140
|
-
renderPracticalView(): null;
|
|
141
|
-
render(): null;
|
|
161
|
+
renderPracticalView(): Object | null;
|
|
162
|
+
render(): Object | null;
|
|
142
163
|
}
|
|
143
164
|
export namespace AbstractComponent {
|
|
144
165
|
namespace defaultProps {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export class AudioUpload extends React.PureComponent<any, any, any> {
|
|
2
2
|
/**
|
|
3
|
-
* get derived state from props
|
|
3
|
+
* get derived state from props。
|
|
4
4
|
* @static
|
|
5
|
-
* @param {Object} nextProperties
|
|
6
|
-
* @param {Object} previousState
|
|
7
|
-
* @returns {Object}
|
|
5
|
+
* @param {Object} nextProperties 即将更改的属性值
|
|
6
|
+
* @param {Object} previousState 之前的 state 值
|
|
7
|
+
* @returns {Object} 更新后的 state 值
|
|
8
8
|
*/
|
|
9
9
|
static getDerivedStateFromProps(nextProperties: Object, previousState: Object): Object;
|
|
10
10
|
constructor(properties: any);
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export class CustomGrid extends BaseComponent {
|
|
2
|
-
renderFurther(): React.JSX.Element | null;
|
|
3
2
|
}
|
|
4
3
|
export namespace CustomGrid {
|
|
5
4
|
namespace defaultProps {
|
|
@@ -8,4 +7,3 @@ export namespace CustomGrid {
|
|
|
8
7
|
}
|
|
9
8
|
}
|
|
10
9
|
import { BaseComponent } from '../../bases';
|
|
11
|
-
import React from 'react';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export class DescriptionGrid extends BaseComponent {
|
|
2
|
-
renderFurther(): React.JSX.Element | null;
|
|
3
2
|
}
|
|
4
3
|
export namespace DescriptionGrid {
|
|
5
4
|
namespace defaultProps {
|
|
@@ -8,4 +7,3 @@ export namespace DescriptionGrid {
|
|
|
8
7
|
}
|
|
9
8
|
}
|
|
10
9
|
import { BaseComponent } from '../../bases';
|
|
11
|
-
import React from 'react';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export class ElasticityListViewItemExtra extends BaseComponent {
|
|
2
|
-
renderFurther(): React.JSX.Element;
|
|
3
2
|
}
|
|
4
3
|
export namespace ElasticityListViewItemExtra {
|
|
5
4
|
namespace defaultProps {
|
|
@@ -10,4 +9,3 @@ export namespace ElasticityListViewItemExtra {
|
|
|
10
9
|
}
|
|
11
10
|
}
|
|
12
11
|
import { BaseComponent } from '../../bases';
|
|
13
|
-
import React from 'react';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export class ElasticityMenu extends BaseComponent {
|
|
2
|
-
renderFurther(): React.JSX.Element;
|
|
3
2
|
}
|
|
4
3
|
export namespace ElasticityMenu {
|
|
5
4
|
namespace defaultProps {
|
|
@@ -9,4 +8,3 @@ export namespace ElasticityMenu {
|
|
|
9
8
|
}
|
|
10
9
|
}
|
|
11
10
|
import { BaseComponent } from '../../bases';
|
|
12
|
-
import React from 'react';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export class ElasticityMenuHeader extends BaseComponent {
|
|
2
|
-
renderFurther(): React.JSX.Element;
|
|
3
2
|
}
|
|
4
3
|
export namespace ElasticityMenuHeader {
|
|
5
4
|
namespace defaultProps {
|
|
@@ -10,4 +9,3 @@ export namespace ElasticityMenuHeader {
|
|
|
10
9
|
}
|
|
11
10
|
}
|
|
12
11
|
import { BaseComponent } from '../../bases';
|
|
13
|
-
import React from 'react';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export class ElasticityRadioGroup extends BaseComponent {
|
|
2
|
-
renderFurther(): React.JSX.Element;
|
|
3
2
|
}
|
|
4
3
|
export namespace ElasticityRadioGroup {
|
|
5
4
|
namespace defaultProps {
|
|
@@ -16,4 +15,3 @@ export namespace ElasticityRadioGroup {
|
|
|
16
15
|
}
|
|
17
16
|
}
|
|
18
17
|
import { BaseComponent } from '../../bases';
|
|
19
|
-
import React from 'react';
|
|
@@ -16,7 +16,6 @@ export class BaseElasticitySelectButton extends BaseComponent {
|
|
|
16
16
|
renderPresetButton: () => React.JSX.Element;
|
|
17
17
|
renderPresetSelector: () => never;
|
|
18
18
|
renderPresetOther: () => never;
|
|
19
|
-
renderFurther(): React.JSX.Element;
|
|
20
19
|
}
|
|
21
20
|
export namespace BaseElasticitySelectButton {
|
|
22
21
|
namespace defaultProps {
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export class ElasticityTagList extends BaseComponent {
|
|
2
|
-
renderFurther(): React.JSX.Element | null;
|
|
3
2
|
}
|
|
4
3
|
export namespace ElasticityTagList {
|
|
5
4
|
namespace defaultProps {
|
|
@@ -7,4 +6,3 @@ export namespace ElasticityTagList {
|
|
|
7
6
|
}
|
|
8
7
|
}
|
|
9
8
|
import { BaseComponent } from '../../bases';
|
|
10
|
-
import React from 'react';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export class ElasticityTree extends BaseComponent {
|
|
2
|
-
renderFurther(): React.JSX.Element;
|
|
3
2
|
}
|
|
4
3
|
export namespace ElasticityTree {
|
|
5
4
|
namespace defaultProps {
|
|
@@ -10,4 +9,3 @@ export namespace ElasticityTree {
|
|
|
10
9
|
}
|
|
11
10
|
}
|
|
12
11
|
import { BaseComponent } from '../../bases';
|
|
13
|
-
import React from 'react';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export class ElasticityTreeSelect extends BaseComponent {
|
|
2
|
-
renderFurther(): React.JSX.Element;
|
|
3
2
|
}
|
|
4
3
|
export namespace ElasticityTreeSelect {
|
|
5
4
|
namespace defaultProps {
|
|
@@ -12,4 +11,3 @@ export namespace ElasticityTreeSelect {
|
|
|
12
11
|
}
|
|
13
12
|
}
|
|
14
13
|
import { BaseComponent } from '../../bases';
|
|
15
|
-
import React from 'react';
|
|
@@ -18,7 +18,6 @@ export class BaseSelectFieldExtra extends BaseComponent {
|
|
|
18
18
|
renderPresetSelector: () => never;
|
|
19
19
|
renderPresetField: () => React.JSX.Element;
|
|
20
20
|
renderPresetOther: () => never;
|
|
21
|
-
renderFurther(): React.JSX.Element;
|
|
22
21
|
}
|
|
23
22
|
export namespace BaseSelectFieldExtra {
|
|
24
23
|
namespace defaultProps {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export class FileUpload extends React.PureComponent<any, any, any> {
|
|
2
2
|
/**
|
|
3
|
-
* get derived state from props
|
|
3
|
+
* get derived state from props。
|
|
4
4
|
* @static
|
|
5
|
-
* @param {Object} nextProperties
|
|
6
|
-
* @param {Object} previousState
|
|
7
|
-
* @returns {Object}
|
|
5
|
+
* @param {Object} nextProperties 即将更改的属性值
|
|
6
|
+
* @param {Object} previousState 之前的 state 值
|
|
7
|
+
* @returns {Object} 更新后的 state 值
|
|
8
8
|
*/
|
|
9
9
|
static getDerivedStateFromProps(nextProperties: Object, previousState: Object): Object;
|
|
10
10
|
constructor(properties: any);
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export class FlexRadio extends BaseComponent {
|
|
2
|
-
renderFurther(): React.JSX.Element;
|
|
3
2
|
}
|
|
4
3
|
export namespace FlexRadio {
|
|
5
4
|
namespace defaultProps {
|
|
@@ -18,4 +17,3 @@ export namespace FlexRadio {
|
|
|
18
17
|
}
|
|
19
18
|
}
|
|
20
19
|
import { BaseComponent } from '../../bases';
|
|
21
|
-
import React from 'react';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export class FlexSelect extends BaseComponent {
|
|
2
|
-
renderFurther(): React.JSX.Element;
|
|
3
2
|
}
|
|
4
3
|
export namespace FlexSelect {
|
|
5
4
|
namespace defaultProps {
|
|
@@ -16,4 +15,3 @@ export namespace FlexSelect {
|
|
|
16
15
|
}
|
|
17
16
|
}
|
|
18
17
|
import { BaseComponent } from '../../bases';
|
|
19
|
-
import React from 'react';
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export class ImageBox extends BaseComponent {
|
|
2
2
|
/**
|
|
3
|
-
* get derived state from props
|
|
3
|
+
* get derived state from props。
|
|
4
4
|
* @static
|
|
5
|
-
* @param {Object} nextProperties
|
|
6
|
-
* @param {Object} previousState
|
|
7
|
-
* @returns {Object}
|
|
5
|
+
* @param {Object} nextProperties 即将更改的属性值
|
|
6
|
+
* @param {Object} previousState 之前的 state 值
|
|
7
|
+
* @returns {Object} 更新后的 state 值
|
|
8
8
|
*/
|
|
9
9
|
static getDerivedStateFromProps(nextProperties: Object, previousState: Object): Object;
|
|
10
10
|
state: {
|
|
@@ -36,7 +36,6 @@ export class ImageBox extends BaseComponent {
|
|
|
36
36
|
onImageLoadSuccess(): void;
|
|
37
37
|
onImageError(): void;
|
|
38
38
|
onImageClick(): void;
|
|
39
|
-
renderFurther(): React.JSX.Element | null;
|
|
40
39
|
}
|
|
41
40
|
export namespace ImageBox {
|
|
42
41
|
namespace defaultProps {
|
|
@@ -46,4 +45,3 @@ export namespace ImageBox {
|
|
|
46
45
|
}
|
|
47
46
|
}
|
|
48
47
|
import { BaseComponent } from '../../bases';
|
|
49
|
-
import React from 'react';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export class RowExpandTable extends BaseComponent {
|
|
2
|
-
renderFurther(): React.JSX.Element;
|
|
3
2
|
}
|
|
4
3
|
export namespace RowExpandTable {
|
|
5
4
|
namespace defaultProps {
|
|
@@ -7,4 +6,3 @@ export namespace RowExpandTable {
|
|
|
7
6
|
}
|
|
8
7
|
}
|
|
9
8
|
import { BaseComponent } from '../../bases';
|
|
10
|
-
import React from 'react';
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export class StandardTable extends React.PureComponent<any, any, any> {
|
|
2
2
|
/**
|
|
3
|
-
* get derived state from props
|
|
3
|
+
* get derived state from props。
|
|
4
4
|
* @static
|
|
5
|
-
* @param {Object} nextProperties
|
|
6
|
-
* @param {Object} previousState
|
|
7
|
-
* @returns {Object}
|
|
5
|
+
* @param {Object} nextProperties 即将更改的属性值
|
|
6
|
+
* @param {Object} previousState 之前的 state 值
|
|
7
|
+
* @returns {Object} 更新后的 state 值
|
|
8
8
|
*/
|
|
9
9
|
static getDerivedStateFromProps(nextProperties: Object): Object;
|
|
10
10
|
constructor(properties: any);
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export class SyntaxHighlighter extends BaseComponent {
|
|
2
|
-
renderFurther(): React.JSX.Element;
|
|
3
2
|
}
|
|
4
3
|
export namespace SyntaxHighlighter {
|
|
5
4
|
namespace defaultProps {
|
|
@@ -10,4 +9,3 @@ export namespace SyntaxHighlighter {
|
|
|
10
9
|
}
|
|
11
10
|
}
|
|
12
11
|
import { BaseComponent } from '../../bases';
|
|
13
|
-
import React from 'react';
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export class TagSelect extends React.Component<any, any, any> {
|
|
2
2
|
/**
|
|
3
|
-
* get derived state from props
|
|
3
|
+
* get derived state from props。
|
|
4
4
|
* @static
|
|
5
|
-
* @param {Object} nextProperties
|
|
6
|
-
* @param {Object} previousState
|
|
7
|
-
* @returns {Object}
|
|
5
|
+
* @param {Object} nextProperties 即将更改的属性值
|
|
6
|
+
* @param {Object} previousState 之前的 state 值
|
|
7
|
+
* @returns {Object} 更新后的 state 值
|
|
8
8
|
*/
|
|
9
9
|
static getDerivedStateFromProps(nextProperties: Object): Object;
|
|
10
10
|
constructor(properties: any);
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export class VideoUpload extends React.PureComponent<any, any, any> {
|
|
2
2
|
/**
|
|
3
|
-
* get derived state from props
|
|
3
|
+
* get derived state from props。
|
|
4
4
|
* @static
|
|
5
|
-
* @param {Object} nextProperties
|
|
6
|
-
* @param {Object} previousState
|
|
7
|
-
* @returns {Object}
|
|
5
|
+
* @param {Object} nextProperties 即将更改的属性值
|
|
6
|
+
* @param {Object} previousState 之前的 state 值
|
|
7
|
+
* @returns {Object} 更新后的 state 值
|
|
8
8
|
*/
|
|
9
9
|
static getDerivedStateFromProps(nextProperties: Object, previousState: Object): Object;
|
|
10
10
|
constructor(properties: any);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "antd-management-fast-component",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.169",
|
|
4
4
|
"description": "antd-management-fast-component",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"antd-management-fast-component"
|
|
@@ -30,10 +30,9 @@
|
|
|
30
30
|
"dev:rollup": "rollup --config rollup.config.skipCompression.js --bundleConfigAsCjs --watch --watch.onBundleEnd=\"npm run z:tsc:build\"",
|
|
31
31
|
"precommit": "npm run z:lint:staged:quiet",
|
|
32
32
|
"z:auto:adjust:file": "echo can exec some file adjust command with here",
|
|
33
|
-
"z:
|
|
34
|
-
"prez:
|
|
35
|
-
"z:
|
|
36
|
-
"z:documentation:lint": "npx documentation lint src/**",
|
|
33
|
+
"z:jsdoc:clear": "npx easy-soft-develop rimraf --path ./docs",
|
|
34
|
+
"prez:jsdoc:generate": "npm run z:jsdoc:clear",
|
|
35
|
+
"z:jsdoc:generate": "npx jsdoc -c .jsdoc.js",
|
|
37
36
|
"z:lint:file:all": "npm run z:lint:script:all && npm run z:lint:style:all",
|
|
38
37
|
"z:lint:file:all:fix": "npm run z:lint:script:all:fix && npm run z:lint:style:all:fix",
|
|
39
38
|
"z:lint:file:change": "npm run z:lint:script:change && npm run z:lint:style:all",
|
|
@@ -60,11 +59,11 @@
|
|
|
60
59
|
},
|
|
61
60
|
"dependencies": {
|
|
62
61
|
"@ant-design/icons": "^5.3.7",
|
|
63
|
-
"@ant-design/pro-components": "^2.7.
|
|
62
|
+
"@ant-design/pro-components": "^2.7.10",
|
|
64
63
|
"@tanem/react-nprogress": "^5.0.51",
|
|
65
|
-
"@tinymce/tinymce-react": "^5.
|
|
66
|
-
"@umijs/max": "^4.2.
|
|
67
|
-
"antd": "^5.
|
|
64
|
+
"@tinymce/tinymce-react": "^5.1.1",
|
|
65
|
+
"@umijs/max": "^4.2.10",
|
|
66
|
+
"antd": "^5.18.1",
|
|
68
67
|
"antd-management-fast-common": "workspace:*",
|
|
69
68
|
"array-move": "^4.0.0",
|
|
70
69
|
"axios": "^1.7.2",
|
|
@@ -72,8 +71,8 @@
|
|
|
72
71
|
"classnames": "^2.5.1",
|
|
73
72
|
"copy-to-clipboard": "^3.3.3",
|
|
74
73
|
"dayjs": "^1.11.11",
|
|
75
|
-
"easy-soft-dva": "^3.10.
|
|
76
|
-
"easy-soft-utility": "^2.8.
|
|
74
|
+
"easy-soft-dva": "^3.10.48",
|
|
75
|
+
"easy-soft-utility": "^2.8.51",
|
|
77
76
|
"html-react-parser": "^5.1.10",
|
|
78
77
|
"lodash.debounce": "^4.0.8",
|
|
79
78
|
"numeral": "^2.0.6",
|
|
@@ -84,61 +83,61 @@
|
|
|
84
83
|
"rc-queue-anim": "^2.0.0",
|
|
85
84
|
"rc-texty": "^0.2.0",
|
|
86
85
|
"rc-tween-one": "^3.0.6",
|
|
87
|
-
"rc-util": "^5.
|
|
86
|
+
"rc-util": "^5.42.1",
|
|
88
87
|
"react": "^18.3.1",
|
|
89
88
|
"react-dom": "^18.3.1",
|
|
90
89
|
"react-json-view": "^1.21.3",
|
|
91
90
|
"react-player": "^2.16.0",
|
|
92
91
|
"react-syntax-highlighter": "^15.5.0",
|
|
93
|
-
"umi": "^4.2.
|
|
92
|
+
"umi": "^4.2.10"
|
|
94
93
|
},
|
|
95
94
|
"devDependencies": {
|
|
96
|
-
"@babel/core": "^7.24.
|
|
97
|
-
"@babel/eslint-parser": "^7.24.
|
|
98
|
-
"@babel/plugin-external-helpers": "^7.24.
|
|
99
|
-
"@babel/plugin-proposal-decorators": "^7.24.
|
|
100
|
-
"@babel/plugin-syntax-jsx": "^7.24.
|
|
101
|
-
"@babel/plugin-transform-class-properties": "^7.24.
|
|
102
|
-
"@babel/plugin-transform-private-methods": "^7.24.
|
|
103
|
-
"@babel/plugin-transform-private-property-in-object": "^7.24.
|
|
104
|
-
"@babel/plugin-transform-runtime": "^7.24.
|
|
105
|
-
"@babel/preset-env": "^7.24.
|
|
106
|
-
"@babel/preset-react": "^7.24.
|
|
107
|
-
"@babel/runtime": "^7.24.
|
|
108
|
-
"@changesets/cli": "^2.27.
|
|
95
|
+
"@babel/core": "^7.24.7",
|
|
96
|
+
"@babel/eslint-parser": "^7.24.7",
|
|
97
|
+
"@babel/plugin-external-helpers": "^7.24.7",
|
|
98
|
+
"@babel/plugin-proposal-decorators": "^7.24.7",
|
|
99
|
+
"@babel/plugin-syntax-jsx": "^7.24.7",
|
|
100
|
+
"@babel/plugin-transform-class-properties": "^7.24.7",
|
|
101
|
+
"@babel/plugin-transform-private-methods": "^7.24.7",
|
|
102
|
+
"@babel/plugin-transform-private-property-in-object": "^7.24.7",
|
|
103
|
+
"@babel/plugin-transform-runtime": "^7.24.7",
|
|
104
|
+
"@babel/preset-env": "^7.24.7",
|
|
105
|
+
"@babel/preset-react": "^7.24.7",
|
|
106
|
+
"@babel/runtime": "^7.24.7",
|
|
107
|
+
"@changesets/cli": "^2.27.5",
|
|
109
108
|
"@commitlint/cli": "^19.3.0",
|
|
110
109
|
"@commitlint/config-conventional": "^19.2.2",
|
|
111
110
|
"@commitlint/config-pnpm-scopes": "^19.1.0",
|
|
112
|
-
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.
|
|
111
|
+
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
|
|
113
112
|
"@rollup/plugin-alias": "^5.1.0",
|
|
114
113
|
"@rollup/plugin-babel": "6.0.4",
|
|
115
114
|
"@rollup/plugin-buble": "^1.0.3",
|
|
116
|
-
"@rollup/plugin-commonjs": "^
|
|
115
|
+
"@rollup/plugin-commonjs": "^26.0.1",
|
|
117
116
|
"@rollup/plugin-json": "^6.1.0",
|
|
118
117
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
119
|
-
"@rollup/plugin-replace": "^5.0.
|
|
118
|
+
"@rollup/plugin-replace": "^5.0.7",
|
|
120
119
|
"@rollup/plugin-terser": "^0.4.4",
|
|
121
120
|
"@rollup/plugin-url": "^8.0.2",
|
|
122
121
|
"@svgr/rollup": "^8.1.0",
|
|
123
122
|
"@types/fs-extra": "^11.0.4",
|
|
124
123
|
"@types/jest": "^29.5.12",
|
|
125
|
-
"@types/lodash": "^4.17.
|
|
124
|
+
"@types/lodash": "^4.17.5",
|
|
126
125
|
"@types/lodash.debounce": "^4.0.9",
|
|
127
126
|
"@types/lodash.isequal": "^4.5.8",
|
|
128
|
-
"@types/node": "^20.
|
|
127
|
+
"@types/node": "^20.14.2",
|
|
129
128
|
"@types/react": "^18.3.3",
|
|
130
129
|
"@types/react-dom": "^18.3.0",
|
|
131
130
|
"@types/shelljs": "^0.8.15",
|
|
132
|
-
"@typescript-eslint/parser": "^7.
|
|
131
|
+
"@typescript-eslint/parser": "^7.13.0",
|
|
133
132
|
"autoprefixer": "^10.4.19",
|
|
134
133
|
"babel-jest": "^29.7.0",
|
|
135
134
|
"commitizen": "^4.3.0",
|
|
136
135
|
"conventional-changelog-conventionalcommits": "^8.0.0",
|
|
137
136
|
"cross-env": "^7.0.3",
|
|
138
|
-
"cssnano": "^7.0.
|
|
139
|
-
"cz-git": "^1.9.
|
|
140
|
-
"
|
|
141
|
-
"easy-soft-develop": "^2.1.
|
|
137
|
+
"cssnano": "^7.0.2",
|
|
138
|
+
"cz-git": "^1.9.3",
|
|
139
|
+
"docdash": "^2.0.2",
|
|
140
|
+
"easy-soft-develop": "^2.1.190",
|
|
142
141
|
"eslint": "^8.57.0",
|
|
143
142
|
"eslint-config-airbnb": "^19.0.4",
|
|
144
143
|
"eslint-config-airbnb-typescript": "^18.0.0",
|
|
@@ -147,19 +146,20 @@
|
|
|
147
146
|
"eslint-import-resolver-typescript": "^3.6.1",
|
|
148
147
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
149
148
|
"eslint-plugin-import": "^2.29.1",
|
|
150
|
-
"eslint-plugin-jest": "^28.
|
|
149
|
+
"eslint-plugin-jest": "^28.6.0",
|
|
151
150
|
"eslint-plugin-jsx-a11y": "^6.8.0",
|
|
152
151
|
"eslint-plugin-prettier": "^5.1.3",
|
|
153
|
-
"eslint-plugin-promise": "^6.
|
|
154
|
-
"eslint-plugin-react": "^7.34.
|
|
152
|
+
"eslint-plugin-promise": "^6.2.0",
|
|
153
|
+
"eslint-plugin-react": "^7.34.2",
|
|
155
154
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
156
155
|
"eslint-plugin-simple-import-sort": "^12.1.0",
|
|
157
156
|
"eslint-plugin-unicorn": "^52.0.0",
|
|
158
157
|
"husky": "^9.0.11",
|
|
159
158
|
"jest": "^29.7.0",
|
|
160
|
-
"
|
|
159
|
+
"jsdoc": "^4.0.3",
|
|
160
|
+
"lint-staged": "^15.2.7",
|
|
161
161
|
"npm-check-updates": "^16.14.20",
|
|
162
|
-
"prettier": "^3.2
|
|
162
|
+
"prettier": "^3.3.2",
|
|
163
163
|
"prettier-plugin-organize-imports": "^3.2.4",
|
|
164
164
|
"prettier-plugin-packagejson": "^2.5.0",
|
|
165
165
|
"prop-types": "^15.8.1",
|
|
@@ -172,7 +172,7 @@
|
|
|
172
172
|
"rollup-plugin-postcss": "^4.0.2",
|
|
173
173
|
"rollup-plugin-serve": "^3.0.0",
|
|
174
174
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
175
|
-
"stylelint": "^16.6.
|
|
175
|
+
"stylelint": "^16.6.1",
|
|
176
176
|
"stylelint-config-css-modules": "^4.4.0",
|
|
177
177
|
"stylelint-config-prettier": "^9.0.5",
|
|
178
178
|
"stylelint-config-standard": "^36.0.0",
|