@cclr/trans 0.1.44 → 0.1.47
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/type/index.d.ts +4 -4
- package/package.json +8 -10
package/lib/type/index.d.ts
CHANGED
|
@@ -81,15 +81,15 @@ declare abstract class DataEvent {
|
|
|
81
81
|
};
|
|
82
82
|
/** 获取基础信息 */
|
|
83
83
|
getBaseData: () => {
|
|
84
|
+
status: TStatus;
|
|
85
|
+
users: string[];
|
|
86
|
+
position: TMovePos;
|
|
84
87
|
level: {
|
|
85
88
|
types: number[];
|
|
86
89
|
ids: (string | undefined | null)[];
|
|
87
90
|
datas: (string | undefined | null)[];
|
|
88
91
|
};
|
|
89
92
|
eventType: "free" | "down" | "drag" | "tap";
|
|
90
|
-
status: TStatus;
|
|
91
|
-
users: string[];
|
|
92
|
-
position: TMovePos;
|
|
93
93
|
};
|
|
94
94
|
/** 重设 */
|
|
95
95
|
reset: () => void;
|
|
@@ -345,7 +345,7 @@ declare const useResizeCore: () => {
|
|
|
345
345
|
setBaseInfo: (info: TResizeBase) => void;
|
|
346
346
|
};
|
|
347
347
|
|
|
348
|
-
declare const useResizeInfo: () =>
|
|
348
|
+
declare const useResizeInfo: () => TResizeBase;
|
|
349
349
|
|
|
350
350
|
interface IProps$1 {
|
|
351
351
|
pure?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cclr/trans",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.47",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "cclr <18843152354@163.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -27,16 +27,14 @@
|
|
|
27
27
|
"g:test": "vitest run",
|
|
28
28
|
"g:build": "drr build"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "7e698eb3b9c3e4498659709be4d0b960230e3c62",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@cclr/emitter": "
|
|
33
|
-
"@cclr/front": "
|
|
34
|
-
"@cclr/lang": "
|
|
35
|
-
"@cclr/
|
|
36
|
-
"@cclr/
|
|
37
|
-
"@cclr/
|
|
38
|
-
"@cclr/trigger": "^0.1.44",
|
|
39
|
-
"@cclr/utils": "^0.1.44"
|
|
32
|
+
"@cclr/emitter": "0.1.47",
|
|
33
|
+
"@cclr/front": "0.1.47",
|
|
34
|
+
"@cclr/lang": "0.1.47",
|
|
35
|
+
"@cclr/react": "0.1.47",
|
|
36
|
+
"@cclr/trigger": "0.1.47",
|
|
37
|
+
"@cclr/utils": "0.1.47"
|
|
40
38
|
},
|
|
41
39
|
"devDependencies": {
|
|
42
40
|
"@types/react": "^18.3.27",
|