@jiaozhiye/qm-design-react 1.11.5 → 1.11.7
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/lib/index.esm.js +1 -1
- package/lib/index.full.js +1 -1
- package/lib/index.js +1 -1
- package/lib/pivot-grid/src/grid-layout/Context.d.ts +2 -0
- package/lib/pivot-grid/src/hooks/use-context-menu.d.ts +11 -0
- package/lib/pivot-grid/src/main/Context.d.ts +12 -2
- package/lib/pivot-grid/src/main/index.d.ts +2 -1
- package/lib/pivot-grid/src/top-bar/exportPanel.d.ts +3 -0
- package/lib/pivot-grid/src/utils/index.d.ts +3 -1
- package/lib/pivot-grid/style/grid-layout.less +18 -1
- package/lib/pivot-grid/style/top-bar.less +145 -136
- package/lib/style/index.css +28 -2
- package/lib/style/index.min.css +1 -1
- package/lib/table/src/context/index.d.ts +1 -1
- package/lib/table/src/hooks/useImperativeMethod.d.ts +1 -1
- package/lib/table/src/hooks/useTableCore.d.ts +1 -2
- package/lib/table/src/hooks/useTableRef.d.ts +2 -2
- package/lib/table/src/table/props.d.ts +1 -0
- package/lib/table/src/table/types.d.ts +1 -1
- package/lib/table/src/utils/index.d.ts +2 -0
- package/lib/virtual-list/src/core.d.ts +1 -1
- package/package.json +139 -139
|
@@ -68,7 +68,7 @@ export type ITableContext = {
|
|
|
68
68
|
setSpinning: (value: boolean) => void;
|
|
69
69
|
setFullScreen: (value: boolean) => void;
|
|
70
70
|
setShouldToTop: (value: boolean) => void;
|
|
71
|
-
doFieldValidate: (rules: IRule[], val: unknown, rowKey: IRowKey, columnKey: string) => void;
|
|
71
|
+
doFieldValidate: (rules: IRule[], val: unknown, rowKey: IRowKey, columnKey: string, columnTitle: string) => void;
|
|
72
72
|
createTableData: (list: IRecord[]) => void;
|
|
73
73
|
createGroupData: (records: IRecord[]) => IRecord[];
|
|
74
74
|
findParentRowKeys: (deriveRowKeys: IDerivedRowKey[], key: IRowKey) => IRowKey[];
|
|
@@ -22,7 +22,7 @@ type IExtra = {
|
|
|
22
22
|
calcTableHeight: () => void;
|
|
23
23
|
scrollXToColumn: (dataIndex: string, index?: number) => void;
|
|
24
24
|
scrollYToRecord: (rowKey: IRowKey, index?: number) => void;
|
|
25
|
-
doFieldValidate: (rules: IRule[], val: unknown, rowKey: IRowKey, columnKey: string) => void;
|
|
25
|
+
doFieldValidate: (rules: IRule[], val: unknown, rowKey: IRowKey, columnKey: string, columnTitle: string) => void;
|
|
26
26
|
setTableOriginData: (records: IRecord[]) => void;
|
|
27
27
|
setHandleState: (option: ITableRef['handleState']) => void;
|
|
28
28
|
forceUpdate: () => void;
|
|
@@ -11,7 +11,6 @@ type IExtra = {
|
|
|
11
11
|
$size: ComponentSize;
|
|
12
12
|
tableColumns: IColumn[];
|
|
13
13
|
flattenColumns: IColumn[];
|
|
14
|
-
editableColumns: IColumn[];
|
|
15
14
|
tableFullData: IRecord[];
|
|
16
15
|
pagination: IPagination;
|
|
17
16
|
layout: ITableState['layout'];
|
|
@@ -69,7 +68,7 @@ declare const useTableCore: <T extends ITableProps>(props: T, extra: IExtra) =>
|
|
|
69
68
|
setSelectionKeysEffect: (selectedKeys: IRowKey[]) => void;
|
|
70
69
|
findParentRowKeys: (deriveRowKeyList: IDerivedRowKey[], key: IRowKey) => (string | number)[];
|
|
71
70
|
getAllChildRowKeys: (deriveRowKeyList: IDerivedRowKey[]) => (string | number)[];
|
|
72
|
-
doFieldValidate: (rules: IRule[], val: unknown, rowKey: IRowKey, columnKey: string) => void;
|
|
71
|
+
doFieldValidate: (rules: IRule[], val: unknown, rowKey: IRowKey, columnKey: string, columnTitle: string) => void;
|
|
73
72
|
getTableLog: () => {
|
|
74
73
|
required: IValidItem[];
|
|
75
74
|
validate: IValidItem[];
|
|
@@ -14,8 +14,8 @@ export type ITableRef = {
|
|
|
14
14
|
tableOriginData: IRecord[];
|
|
15
15
|
allTableData: IRecord[];
|
|
16
16
|
allRowKeys: IRowKey[];
|
|
17
|
+
allParentRowKeys: IRowKey[];
|
|
17
18
|
deriveRowKeys: IDerivedRowKey[];
|
|
18
|
-
flattenRowKeys: IRowKey[];
|
|
19
19
|
invalidRowKeys: IRowKey[];
|
|
20
20
|
fieldAuth: Record<string, IFieldAuthItem>;
|
|
21
21
|
columnsDefined: boolean;
|
|
@@ -75,8 +75,8 @@ declare const useTableRef: <T extends ITableProps>(props: T, { getRowKey, $size
|
|
|
75
75
|
tableOriginData: IRecord[];
|
|
76
76
|
allTableData: IRecord[];
|
|
77
77
|
allRowKeys: IRowKey[];
|
|
78
|
+
allParentRowKeys: IRowKey[];
|
|
78
79
|
deriveRowKeys: IDerivedRowKey[];
|
|
79
|
-
flattenRowKeys: IRowKey[];
|
|
80
80
|
invalidRowKeys: IRowKey[];
|
|
81
81
|
fieldAuth: Record<string, IFieldAuthItem>;
|
|
82
82
|
columnsDefined: boolean;
|
|
@@ -182,6 +182,7 @@ export declare const propTypes: {
|
|
|
182
182
|
}>>;
|
|
183
183
|
tableConfig: PropTypes.Requireable<PropTypes.InferProps<{
|
|
184
184
|
virtual: PropTypes.Requireable<boolean>;
|
|
185
|
+
overscan: PropTypes.Requireable<number>;
|
|
185
186
|
doubleXScrollbar: PropTypes.Requireable<boolean>;
|
|
186
187
|
}>>;
|
|
187
188
|
treeConfig: PropTypes.Requireable<PropTypes.InferProps<{
|
|
@@ -208,6 +208,7 @@ export type IRowHighlight = {
|
|
|
208
208
|
};
|
|
209
209
|
export type ITableConfig = {
|
|
210
210
|
virtual?: boolean;
|
|
211
|
+
overscan?: number;
|
|
211
212
|
doubleXScrollbar?: boolean;
|
|
212
213
|
};
|
|
213
214
|
export type ITreeConfig = {
|
|
@@ -328,7 +329,6 @@ export type IDerivedColumn = IColumn & {
|
|
|
328
329
|
export type IDerivedRowKey = {
|
|
329
330
|
level: number;
|
|
330
331
|
rowKey: IRowKey;
|
|
331
|
-
rowKeyPath: string;
|
|
332
332
|
indexPath: string;
|
|
333
333
|
parentRowKey?: IRowKey;
|
|
334
334
|
children?: IDerivedRowKey[];
|
|
@@ -13,6 +13,8 @@ export declare const filterTableColumns: (columns: IColumn[], marks: string[]) =
|
|
|
13
13
|
export declare const deepFindRowKey: (rowKeys: IDerivedRowKey[], mark: IRowKey) => Nullable<IDerivedRowKey>;
|
|
14
14
|
export declare const tableDataFlatMap: (list: IRecord[]) => IRecord[];
|
|
15
15
|
export declare const getAllTableData: (list: IRecord[]) => IRecord[];
|
|
16
|
+
export declare const getAllParentKeys: (tree: IRecord[], fn: (data: IRecord) => IRowKey) => (string | number)[];
|
|
17
|
+
export declare const getChildKeys: (node: IRecord, fn: (data: IRecord) => IRowKey) => (string | number)[];
|
|
16
18
|
export declare const convertToRows: (columns: IColumn[]) => IColumn[][];
|
|
17
19
|
export declare const deepGetTreeRows: (treeData: IRecord[], fn: (row: IRecord) => boolean) => IRecord<any>[];
|
|
18
20
|
export declare const createPreventKeys: (rowKeys: IDerivedRowKeys) => IDerivedRowKeys;
|
|
@@ -121,7 +121,7 @@ export declare class Virtualizer<TScrollElement extends Element | Window, TItemE
|
|
|
121
121
|
getVirtualItems: () => VirtualItem[];
|
|
122
122
|
getVirtualItemForOffset: (offset: number) => VirtualItem | undefined;
|
|
123
123
|
getOffsetForAlignment: (toOffset: number, align: ScrollAlignment) => number;
|
|
124
|
-
getOffsetForIndex: (index: number, align?: ScrollAlignment) => readonly [number, "auto"] | readonly [number, "center" | "
|
|
124
|
+
getOffsetForIndex: (index: number, align?: ScrollAlignment) => readonly [number, "auto"] | readonly [number, "center"] | readonly [number, "end"] | readonly [number, "start"] | undefined;
|
|
125
125
|
private isDynamicMode;
|
|
126
126
|
private cancelScrollToIndex;
|
|
127
127
|
scrollToOffset: (toOffset: number, { align, behavior }?: ScrollToOffsetOptions) => void;
|
package/package.json
CHANGED
|
@@ -1,139 +1,139 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@jiaozhiye/qm-design-react",
|
|
3
|
-
"version": "1.11.
|
|
4
|
-
"description": "A Component Library for React",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"React",
|
|
7
|
-
"components",
|
|
8
|
-
"typescript"
|
|
9
|
-
],
|
|
10
|
-
"author": "jiaozhiye",
|
|
11
|
-
"license": "MIT",
|
|
12
|
-
"scripts": {
|
|
13
|
-
"dev": "cross-env NODE_ENV=development BABEL_ENV=web webpack serve --progress --config build/webpack.src.conf.js",
|
|
14
|
-
"build:lib": "yarn clean:lib && yarn build:umd && yarn build:esm && yarn build:type && yarn build:locale && yarn build:theme",
|
|
15
|
-
"build:umd": "cross-env NODE_ENV=production BABEL_ENV=lib webpack --config ./build/webpack.build.conf.js",
|
|
16
|
-
"build:esm": "cross-env BABEL_ENV=lib rollup --config ./build/build-esm.rollup.js",
|
|
17
|
-
"build:type": "gulp build --gulpfile ./build/build-type.gulp.js && cp-cli lib/packages lib && rimraf lib/packages",
|
|
18
|
-
"build:locale": "cross-env BABEL_ENV=lib babel packages/locale --extensions .ts --out-dir lib/locale",
|
|
19
|
-
"build:theme": "gulp build --gulpfile ./build/build-style.gulp.js",
|
|
20
|
-
"clean:lib": "rimraf lib",
|
|
21
|
-
"lint": "eslint ./packages --ext .js,.ts,.jsx,.tsx",
|
|
22
|
-
"lint-fix": "eslint --fix ./packages --ext .js,.ts,.jsx,.tsx",
|
|
23
|
-
"format": "prettier --write \"./packages/**/*.{js,ts,jsx,tsx}\""
|
|
24
|
-
},
|
|
25
|
-
"husky": {
|
|
26
|
-
"hooks": {
|
|
27
|
-
"pre-commit": "lint-staged"
|
|
28
|
-
}
|
|
29
|
-
},
|
|
30
|
-
"lint-staged": {
|
|
31
|
-
"packages/**/*.{js,ts,jsx,tsx}": [
|
|
32
|
-
"npm run lint-fix",
|
|
33
|
-
"git add"
|
|
34
|
-
],
|
|
35
|
-
"packages/**/*.{less}": "prettier --write"
|
|
36
|
-
},
|
|
37
|
-
"publishConfig": {
|
|
38
|
-
"registry": "https://registry.npmjs.org/"
|
|
39
|
-
},
|
|
40
|
-
"files": [
|
|
41
|
-
"lib"
|
|
42
|
-
],
|
|
43
|
-
"main": "lib/index.js",
|
|
44
|
-
"module": "lib/index.esm.js",
|
|
45
|
-
"unpkg": "lib/index.full.js",
|
|
46
|
-
"types": "lib/index.d.ts",
|
|
47
|
-
"style": "lib/style/index.css",
|
|
48
|
-
"peerDependencies": {
|
|
49
|
-
"react": ">=16.14.0",
|
|
50
|
-
"react-dom": ">=16.14.0"
|
|
51
|
-
},
|
|
52
|
-
"dependencies": {
|
|
53
|
-
"@rc-component/portal": "^1.1.2",
|
|
54
|
-
"@rc-component/trigger": "^2.2.0",
|
|
55
|
-
"add-dom-event-listener": "^1.1.0",
|
|
56
|
-
"antd": "4.24.16",
|
|
57
|
-
"big.js": "^6.2.1",
|
|
58
|
-
"china-area-data": "^5.0.1",
|
|
59
|
-
"classnames": "^2.3.2",
|
|
60
|
-
"copy-to-clipboard": "^3.3.2",
|
|
61
|
-
"cropperjs": "^1.5.12",
|
|
62
|
-
"dayjs": "1.x",
|
|
63
|
-
"exceljs": "^4.4.0",
|
|
64
|
-
"html2canvas": "^1.4.1",
|
|
65
|
-
"localforage": "^1.10.0",
|
|
66
|
-
"lodash-es": "^4.17.21",
|
|
67
|
-
"memoize-one": "^6.0.0",
|
|
68
|
-
"prop-types": "^15.8.1",
|
|
69
|
-
"react-countup": "^6.4.0",
|
|
70
|
-
"react-draggable": "^4.4.6",
|
|
71
|
-
"react-sortablejs": "^6.1.4",
|
|
72
|
-
"resize-observer-polyfill": "^1.5.1",
|
|
73
|
-
"scroll-into-view-if-needed": "^2.2.31",
|
|
74
|
-
"sortablejs": "^1.15.2"
|
|
75
|
-
},
|
|
76
|
-
"devDependencies": {
|
|
77
|
-
"@babel/cli": "^7.24.7",
|
|
78
|
-
"@babel/core": "^7.24.7",
|
|
79
|
-
"@babel/plugin-proposal-decorators": "^7.24.7",
|
|
80
|
-
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
81
|
-
"@babel/plugin-transform-class-properties": "^7.24.7",
|
|
82
|
-
"@babel/plugin-transform-runtime": "^7.24.7",
|
|
83
|
-
"@babel/preset-env": "^7.24.7",
|
|
84
|
-
"@babel/preset-react": "^7.24.7",
|
|
85
|
-
"@babel/preset-typescript": "^7.24.7",
|
|
86
|
-
"@rollup/plugin-babel": "^5.3.0",
|
|
87
|
-
"@rollup/plugin-commonjs": "^22.0.2",
|
|
88
|
-
"@rollup/plugin-json": "^4.1.0",
|
|
89
|
-
"@rollup/plugin-node-resolve": "^14.1.0",
|
|
90
|
-
"@rollup/plugin-replace": "^4.0.0",
|
|
91
|
-
"@rollup/plugin-terser": "^0.4.4",
|
|
92
|
-
"@rollup/plugin-typescript": "^8.5.0",
|
|
93
|
-
"@types/lodash-es": "^4.17.6",
|
|
94
|
-
"@types/react": "^18.3.0",
|
|
95
|
-
"@types/react-dom": "^18.3.0",
|
|
96
|
-
"@typescript-eslint/eslint-plugin": "^5.30.0",
|
|
97
|
-
"@typescript-eslint/parser": "^5.30.0",
|
|
98
|
-
"autoprefixer": "^10.4.14",
|
|
99
|
-
"axios": "^0.27.2",
|
|
100
|
-
"babel-loader": "^9.1.3",
|
|
101
|
-
"core-js": "^3.32.0",
|
|
102
|
-
"cp-cli": "^2.0.0",
|
|
103
|
-
"cross-env": "^7.0.3",
|
|
104
|
-
"css-loader": "^6.11.0",
|
|
105
|
-
"eslint": "^8.40.0",
|
|
106
|
-
"eslint-plugin-prettier": "^4.2.0",
|
|
107
|
-
"eslint-plugin-react": "^7.32.0",
|
|
108
|
-
"eslint-plugin-react-hooks": "^4.6.0",
|
|
109
|
-
"eslint-webpack-plugin": "^3.2.0",
|
|
110
|
-
"gulp": "^4.0.2",
|
|
111
|
-
"gulp-autoprefixer": "^8.0.0",
|
|
112
|
-
"gulp-clean-css": "^4.3.0",
|
|
113
|
-
"gulp-ignore": "^3.0.0",
|
|
114
|
-
"gulp-less": "^5.0.0",
|
|
115
|
-
"gulp-rename": "^2.0.0",
|
|
116
|
-
"gulp-typescript": "^6.0.0-alpha.1",
|
|
117
|
-
"html-webpack-plugin": "^5.6.0",
|
|
118
|
-
"husky": "^4.3.8",
|
|
119
|
-
"less": "^4.2.0",
|
|
120
|
-
"less-loader": "^11.1.4",
|
|
121
|
-
"lint-staged": "^10.5.4",
|
|
122
|
-
"mockjs": "^1.1.0",
|
|
123
|
-
"prettier": "^2.8.8",
|
|
124
|
-
"react": "^17.0.2",
|
|
125
|
-
"react-dom": "^17.0.2",
|
|
126
|
-
"rimraf": "^3.0.2",
|
|
127
|
-
"rollup": "^2.79.1",
|
|
128
|
-
"style-loader": "^3.3.4",
|
|
129
|
-
"ts-loader": "^9.4.4",
|
|
130
|
-
"typescript": "^4.9.5",
|
|
131
|
-
"webpack": "^5.94.0",
|
|
132
|
-
"webpack-cli": "^5.1.4",
|
|
133
|
-
"webpack-dev-server": "^4.15.2",
|
|
134
|
-
"webpack-node-externals": "^3.0.0"
|
|
135
|
-
},
|
|
136
|
-
"engines": {
|
|
137
|
-
"node": ">= 14"
|
|
138
|
-
}
|
|
139
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@jiaozhiye/qm-design-react",
|
|
3
|
+
"version": "1.11.7",
|
|
4
|
+
"description": "A Component Library for React",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"React",
|
|
7
|
+
"components",
|
|
8
|
+
"typescript"
|
|
9
|
+
],
|
|
10
|
+
"author": "jiaozhiye",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"scripts": {
|
|
13
|
+
"dev": "cross-env NODE_ENV=development BABEL_ENV=web webpack serve --progress --config build/webpack.src.conf.js",
|
|
14
|
+
"build:lib": "yarn clean:lib && yarn build:umd && yarn build:esm && yarn build:type && yarn build:locale && yarn build:theme",
|
|
15
|
+
"build:umd": "cross-env NODE_ENV=production BABEL_ENV=lib webpack --config ./build/webpack.build.conf.js",
|
|
16
|
+
"build:esm": "cross-env BABEL_ENV=lib rollup --config ./build/build-esm.rollup.js",
|
|
17
|
+
"build:type": "gulp build --gulpfile ./build/build-type.gulp.js && cp-cli lib/packages lib && rimraf lib/packages",
|
|
18
|
+
"build:locale": "cross-env BABEL_ENV=lib babel packages/locale --extensions .ts --out-dir lib/locale",
|
|
19
|
+
"build:theme": "gulp build --gulpfile ./build/build-style.gulp.js",
|
|
20
|
+
"clean:lib": "rimraf lib",
|
|
21
|
+
"lint": "eslint ./packages --ext .js,.ts,.jsx,.tsx",
|
|
22
|
+
"lint-fix": "eslint --fix ./packages --ext .js,.ts,.jsx,.tsx",
|
|
23
|
+
"format": "prettier --write \"./packages/**/*.{js,ts,jsx,tsx}\""
|
|
24
|
+
},
|
|
25
|
+
"husky": {
|
|
26
|
+
"hooks": {
|
|
27
|
+
"pre-commit": "lint-staged"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"lint-staged": {
|
|
31
|
+
"packages/**/*.{js,ts,jsx,tsx}": [
|
|
32
|
+
"npm run lint-fix",
|
|
33
|
+
"git add"
|
|
34
|
+
],
|
|
35
|
+
"packages/**/*.{less}": "prettier --write"
|
|
36
|
+
},
|
|
37
|
+
"publishConfig": {
|
|
38
|
+
"registry": "https://registry.npmjs.org/"
|
|
39
|
+
},
|
|
40
|
+
"files": [
|
|
41
|
+
"lib"
|
|
42
|
+
],
|
|
43
|
+
"main": "lib/index.js",
|
|
44
|
+
"module": "lib/index.esm.js",
|
|
45
|
+
"unpkg": "lib/index.full.js",
|
|
46
|
+
"types": "lib/index.d.ts",
|
|
47
|
+
"style": "lib/style/index.css",
|
|
48
|
+
"peerDependencies": {
|
|
49
|
+
"react": ">=16.14.0",
|
|
50
|
+
"react-dom": ">=16.14.0"
|
|
51
|
+
},
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"@rc-component/portal": "^1.1.2",
|
|
54
|
+
"@rc-component/trigger": "^2.2.0",
|
|
55
|
+
"add-dom-event-listener": "^1.1.0",
|
|
56
|
+
"antd": "4.24.16",
|
|
57
|
+
"big.js": "^6.2.1",
|
|
58
|
+
"china-area-data": "^5.0.1",
|
|
59
|
+
"classnames": "^2.3.2",
|
|
60
|
+
"copy-to-clipboard": "^3.3.2",
|
|
61
|
+
"cropperjs": "^1.5.12",
|
|
62
|
+
"dayjs": "1.x",
|
|
63
|
+
"exceljs": "^4.4.0",
|
|
64
|
+
"html2canvas": "^1.4.1",
|
|
65
|
+
"localforage": "^1.10.0",
|
|
66
|
+
"lodash-es": "^4.17.21",
|
|
67
|
+
"memoize-one": "^6.0.0",
|
|
68
|
+
"prop-types": "^15.8.1",
|
|
69
|
+
"react-countup": "^6.4.0",
|
|
70
|
+
"react-draggable": "^4.4.6",
|
|
71
|
+
"react-sortablejs": "^6.1.4",
|
|
72
|
+
"resize-observer-polyfill": "^1.5.1",
|
|
73
|
+
"scroll-into-view-if-needed": "^2.2.31",
|
|
74
|
+
"sortablejs": "^1.15.2"
|
|
75
|
+
},
|
|
76
|
+
"devDependencies": {
|
|
77
|
+
"@babel/cli": "^7.24.7",
|
|
78
|
+
"@babel/core": "^7.24.7",
|
|
79
|
+
"@babel/plugin-proposal-decorators": "^7.24.7",
|
|
80
|
+
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
81
|
+
"@babel/plugin-transform-class-properties": "^7.24.7",
|
|
82
|
+
"@babel/plugin-transform-runtime": "^7.24.7",
|
|
83
|
+
"@babel/preset-env": "^7.24.7",
|
|
84
|
+
"@babel/preset-react": "^7.24.7",
|
|
85
|
+
"@babel/preset-typescript": "^7.24.7",
|
|
86
|
+
"@rollup/plugin-babel": "^5.3.0",
|
|
87
|
+
"@rollup/plugin-commonjs": "^22.0.2",
|
|
88
|
+
"@rollup/plugin-json": "^4.1.0",
|
|
89
|
+
"@rollup/plugin-node-resolve": "^14.1.0",
|
|
90
|
+
"@rollup/plugin-replace": "^4.0.0",
|
|
91
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
92
|
+
"@rollup/plugin-typescript": "^8.5.0",
|
|
93
|
+
"@types/lodash-es": "^4.17.6",
|
|
94
|
+
"@types/react": "^18.3.0",
|
|
95
|
+
"@types/react-dom": "^18.3.0",
|
|
96
|
+
"@typescript-eslint/eslint-plugin": "^5.30.0",
|
|
97
|
+
"@typescript-eslint/parser": "^5.30.0",
|
|
98
|
+
"autoprefixer": "^10.4.14",
|
|
99
|
+
"axios": "^0.27.2",
|
|
100
|
+
"babel-loader": "^9.1.3",
|
|
101
|
+
"core-js": "^3.32.0",
|
|
102
|
+
"cp-cli": "^2.0.0",
|
|
103
|
+
"cross-env": "^7.0.3",
|
|
104
|
+
"css-loader": "^6.11.0",
|
|
105
|
+
"eslint": "^8.40.0",
|
|
106
|
+
"eslint-plugin-prettier": "^4.2.0",
|
|
107
|
+
"eslint-plugin-react": "^7.32.0",
|
|
108
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
109
|
+
"eslint-webpack-plugin": "^3.2.0",
|
|
110
|
+
"gulp": "^4.0.2",
|
|
111
|
+
"gulp-autoprefixer": "^8.0.0",
|
|
112
|
+
"gulp-clean-css": "^4.3.0",
|
|
113
|
+
"gulp-ignore": "^3.0.0",
|
|
114
|
+
"gulp-less": "^5.0.0",
|
|
115
|
+
"gulp-rename": "^2.0.0",
|
|
116
|
+
"gulp-typescript": "^6.0.0-alpha.1",
|
|
117
|
+
"html-webpack-plugin": "^5.6.0",
|
|
118
|
+
"husky": "^4.3.8",
|
|
119
|
+
"less": "^4.2.0",
|
|
120
|
+
"less-loader": "^11.1.4",
|
|
121
|
+
"lint-staged": "^10.5.4",
|
|
122
|
+
"mockjs": "^1.1.0",
|
|
123
|
+
"prettier": "^2.8.8",
|
|
124
|
+
"react": "^17.0.2",
|
|
125
|
+
"react-dom": "^17.0.2",
|
|
126
|
+
"rimraf": "^3.0.2",
|
|
127
|
+
"rollup": "^2.79.1",
|
|
128
|
+
"style-loader": "^3.3.4",
|
|
129
|
+
"ts-loader": "^9.4.4",
|
|
130
|
+
"typescript": "^4.9.5",
|
|
131
|
+
"webpack": "^5.94.0",
|
|
132
|
+
"webpack-cli": "^5.1.4",
|
|
133
|
+
"webpack-dev-server": "^4.15.2",
|
|
134
|
+
"webpack-node-externals": "^3.0.0"
|
|
135
|
+
},
|
|
136
|
+
"engines": {
|
|
137
|
+
"node": ">= 14"
|
|
138
|
+
}
|
|
139
|
+
}
|