@das-fed/utils 6.4.0-hot.34 → 6.4.0-hot.35
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/package.json +4 -4
- package/style/math.d.ts +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@das-fed/utils",
|
|
3
|
-
"version": "6.4.0-hot.
|
|
3
|
+
"version": "6.4.0-hot.35",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"license": "ISC",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@antv/x6": "^2.18.1",
|
|
12
|
-
"@das-fed/utils": "6.4.0-hot.
|
|
12
|
+
"@das-fed/utils": "6.4.0-hot.35",
|
|
13
13
|
"@vue/shared": "^3.4.21",
|
|
14
14
|
"@vueuse/core": "^9.6.0",
|
|
15
15
|
"axios": "^1.6.7",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"vue": "^3.4.21"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@das-fed/cli": "6.4.0-hot.
|
|
25
|
-
"@das-fed/web": "6.4.0-hot.
|
|
24
|
+
"@das-fed/cli": "6.4.0-hot.35",
|
|
25
|
+
"@das-fed/web": "6.4.0-hot.35",
|
|
26
26
|
"@types/js-cookie": "^3.0.6",
|
|
27
27
|
"@types/lodash-es": "^4.17.12",
|
|
28
28
|
"@types/qs": "^6.9.15",
|
package/style/math.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/** css中px字符串的数学运算 */
|
|
2
2
|
declare const curringMath: (a: any) => {
|
|
3
|
-
add: (b: any) =>
|
|
4
|
-
subtract: (b: any) =>
|
|
5
|
-
multiply: (b: any) =>
|
|
6
|
-
divide: (b: any) =>
|
|
3
|
+
add: (b: any) => any;
|
|
4
|
+
subtract: (b: any) => any;
|
|
5
|
+
multiply: (b: any) => any;
|
|
6
|
+
divide: (b: any) => any;
|
|
7
7
|
res: () => string;
|
|
8
8
|
};
|
|
9
9
|
export { curringMath };
|