easy-soft-utility 2.8.73 → 2.8.75
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/utils/colorAssist.d.ts +1 -1
- package/es/utils/common.d.ts +1 -1
- package/es/utils/requestAssist.d.ts +1 -1
- package/package.json +25 -25
package/es/utils/common.d.ts
CHANGED
|
@@ -58,7 +58,7 @@ export function sortCollectionByKey({ operate, item, list, key: sortKey, sortIni
|
|
|
58
58
|
* Transform list data with convert
|
|
59
59
|
*/
|
|
60
60
|
export function transformListData({ list, convert, recursiveKey, }: {
|
|
61
|
-
list?:
|
|
61
|
+
list?: never[] | undefined;
|
|
62
62
|
convert?: null | undefined;
|
|
63
63
|
recursiveKey?: string | undefined;
|
|
64
64
|
}): any[];
|
|
@@ -205,7 +205,7 @@ export namespace requestConfiguration {
|
|
|
205
205
|
url: any;
|
|
206
206
|
method?: string | undefined;
|
|
207
207
|
data?: {} | undefined;
|
|
208
|
-
header?:
|
|
208
|
+
header?: never[] | undefined;
|
|
209
209
|
option?: {} | undefined;
|
|
210
210
|
}): Promise<void>;
|
|
211
211
|
let handleRequestSetComplete: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "easy-soft-utility",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.75",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "easy-soft-utility",
|
|
6
6
|
"keywords": [
|
|
@@ -69,15 +69,15 @@
|
|
|
69
69
|
"react-dom": "^18.3.1"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
|
-
"@babel/core": "^7.25.
|
|
73
|
-
"@babel/eslint-parser": "^7.25.
|
|
74
|
-
"@babel/plugin-external-helpers": "^7.25.
|
|
75
|
-
"@babel/plugin-proposal-decorators": "^7.25.
|
|
76
|
-
"@babel/plugin-transform-class-properties": "^7.25.
|
|
77
|
-
"@babel/plugin-transform-runtime": "^7.25.
|
|
78
|
-
"@babel/preset-env": "^7.25.
|
|
79
|
-
"@babel/preset-react": "^7.25.
|
|
80
|
-
"@babel/runtime": "^7.25.
|
|
72
|
+
"@babel/core": "^7.25.9",
|
|
73
|
+
"@babel/eslint-parser": "^7.25.9",
|
|
74
|
+
"@babel/plugin-external-helpers": "^7.25.9",
|
|
75
|
+
"@babel/plugin-proposal-decorators": "^7.25.9",
|
|
76
|
+
"@babel/plugin-transform-class-properties": "^7.25.9",
|
|
77
|
+
"@babel/plugin-transform-runtime": "^7.25.9",
|
|
78
|
+
"@babel/preset-env": "^7.25.9",
|
|
79
|
+
"@babel/preset-react": "^7.25.9",
|
|
80
|
+
"@babel/runtime": "^7.25.9",
|
|
81
81
|
"@changesets/cli": "^2.27.9",
|
|
82
82
|
"@commitlint/cli": "^19.5.0",
|
|
83
83
|
"@commitlint/config-conventional": "^19.5.0",
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"@rollup/plugin-alias": "^5.1.1",
|
|
87
87
|
"@rollup/plugin-babel": "6.0.4",
|
|
88
88
|
"@rollup/plugin-buble": "^1.0.3",
|
|
89
|
-
"@rollup/plugin-commonjs": "^28.0.
|
|
89
|
+
"@rollup/plugin-commonjs": "^28.0.1",
|
|
90
90
|
"@rollup/plugin-json": "^6.1.0",
|
|
91
91
|
"@rollup/plugin-node-resolve": "^15.3.0",
|
|
92
92
|
"@rollup/plugin-replace": "^6.0.1",
|
|
@@ -94,16 +94,16 @@
|
|
|
94
94
|
"@rollup/plugin-url": "^8.0.2",
|
|
95
95
|
"@svgr/rollup": "^8.1.0",
|
|
96
96
|
"@types/fs-extra": "^11.0.4",
|
|
97
|
-
"@types/jest": "^29.5.
|
|
98
|
-
"@types/lodash": "^4.17.
|
|
99
|
-
"@types/node": "^22.7.
|
|
97
|
+
"@types/jest": "^29.5.14",
|
|
98
|
+
"@types/lodash": "^4.17.12",
|
|
99
|
+
"@types/node": "^22.7.9",
|
|
100
100
|
"@types/object-hash": "^3.0.6",
|
|
101
101
|
"@types/qs": "^6.9.16",
|
|
102
|
-
"@types/react": "^18.3.
|
|
102
|
+
"@types/react": "^18.3.12",
|
|
103
103
|
"@types/shelljs": "^0.8.15",
|
|
104
104
|
"@types/webpack-env": "^1.18.5",
|
|
105
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
106
|
-
"@typescript-eslint/parser": "^8.
|
|
105
|
+
"@typescript-eslint/eslint-plugin": "^8.11.0",
|
|
106
|
+
"@typescript-eslint/parser": "^8.11.0",
|
|
107
107
|
"autoprefixer": "^10.4.20",
|
|
108
108
|
"babel-cli": "^6.26.0",
|
|
109
109
|
"babel-jest": "^29.7.0",
|
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
"cssnano": "^7.0.6",
|
|
116
116
|
"cz-git": "^1.10.1",
|
|
117
117
|
"docdash": "^2.0.2",
|
|
118
|
-
"easy-soft-develop": "^2.1.
|
|
118
|
+
"easy-soft-develop": "^2.1.248",
|
|
119
119
|
"eslint": "^8.57.0",
|
|
120
120
|
"eslint-config-airbnb": "^19.0.4",
|
|
121
121
|
"eslint-config-airbnb-typescript": "^18.0.0",
|
|
@@ -125,25 +125,25 @@
|
|
|
125
125
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
126
126
|
"eslint-plugin-import": "^2.31.0",
|
|
127
127
|
"eslint-plugin-jest": "^28.8.3",
|
|
128
|
-
"eslint-plugin-jsx-a11y": "^6.10.
|
|
128
|
+
"eslint-plugin-jsx-a11y": "^6.10.1",
|
|
129
129
|
"eslint-plugin-prettier": "^5.2.1",
|
|
130
130
|
"eslint-plugin-promise": "^7.1.0",
|
|
131
|
-
"eslint-plugin-react": "^7.37.
|
|
132
|
-
"eslint-plugin-react-hooks": "^
|
|
131
|
+
"eslint-plugin-react": "^7.37.2",
|
|
132
|
+
"eslint-plugin-react-hooks": "^5.0.0",
|
|
133
133
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
134
134
|
"eslint-plugin-unicorn": "^52.0.0",
|
|
135
135
|
"husky": "^9.1.6",
|
|
136
136
|
"jest": "^29.7.0",
|
|
137
|
-
"jsdoc": "^4.0.
|
|
137
|
+
"jsdoc": "^4.0.4",
|
|
138
138
|
"lint-staged": "^15.2.10",
|
|
139
139
|
"mm": "^3.4.0",
|
|
140
|
-
"npm-check-updates": "^17.1.
|
|
140
|
+
"npm-check-updates": "^17.1.4",
|
|
141
141
|
"postcss": "^8.4.47",
|
|
142
142
|
"postcss-less": "^6.0.0",
|
|
143
143
|
"postcss-pxtorem": "^6.1.0",
|
|
144
144
|
"prettier": "^3.3.3",
|
|
145
145
|
"prettier-plugin-organize-imports": "^4.1.0",
|
|
146
|
-
"prettier-plugin-packagejson": "^2.5.
|
|
146
|
+
"prettier-plugin-packagejson": "^2.5.3",
|
|
147
147
|
"react-refresh": "^0.14.2",
|
|
148
148
|
"rimraf": "^6.0.1",
|
|
149
149
|
"rollup": "^4.24.0",
|
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
"rollup-plugin-serve": "^3.0.0",
|
|
154
154
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
155
155
|
"shelljs": "^0.8.5",
|
|
156
|
-
"stylelint": "^16.
|
|
156
|
+
"stylelint": "^16.10.0",
|
|
157
157
|
"stylelint-config-css-modules": "^4.4.0",
|
|
158
158
|
"stylelint-config-standard": "^36.0.1",
|
|
159
159
|
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
|