@douyinfe/semi-foundation 2.68.4 → 2.69.0
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.
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
import {
|
|
4
|
-
|
|
1
|
+
import { ResizableHandlerFoundation, ResizableFoundation } from './single';
|
|
2
|
+
import { ResizeGroupFoundation, ResizeItemFoundation, ResizeHandlerFoundation } from './group';
|
|
3
|
+
import type { ResizableHandlerAdapter, ResizableAdapter } from './single';
|
|
4
|
+
import type { ResizeGroupAdapter, ResizeItemAdapter, ResizeHandlerAdapter } from './group';
|
|
5
|
+
export { ResizableHandlerAdapter, ResizableHandlerFoundation, ResizableFoundation, ResizableAdapter, ResizeGroupAdapter, ResizeItemAdapter, ResizeHandlerAdapter, ResizeGroupFoundation, ResizeItemFoundation, ResizeHandlerFoundation };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
import {
|
|
4
|
-
|
|
1
|
+
import { ResizableHandlerFoundation, ResizableFoundation } from './single';
|
|
2
|
+
import { ResizeGroupFoundation, ResizeItemFoundation, ResizeHandlerFoundation } from './group';
|
|
3
|
+
import type { ResizableHandlerAdapter, ResizableAdapter } from './single';
|
|
4
|
+
import type { ResizeGroupAdapter, ResizeItemAdapter, ResizeHandlerAdapter } from './group';
|
|
5
|
+
export { ResizableHandlerAdapter, ResizableHandlerFoundation, ResizableFoundation, ResizableAdapter, ResizeGroupAdapter, ResizeItemAdapter, ResizeHandlerAdapter, ResizeGroupFoundation, ResizeItemFoundation, ResizeHandlerFoundation };
|
|
@@ -1,4 +1,3 @@
|
|
|
1
1
|
import { ResizableHandlerFoundation, ResizableFoundation } from './single';
|
|
2
|
-
export { ResizableHandlerFoundation, ResizableFoundation };
|
|
3
2
|
import { ResizeGroupFoundation, ResizeItemFoundation, ResizeHandlerFoundation } from './group';
|
|
4
|
-
export { ResizeGroupFoundation, ResizeItemFoundation, ResizeHandlerFoundation };
|
|
3
|
+
export { ResizableHandlerFoundation, ResizableFoundation, ResizeGroupFoundation, ResizeItemFoundation, ResizeHandlerFoundation };
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@douyinfe/semi-foundation",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.69.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build:lib": "node ./scripts/compileLib.js",
|
|
7
7
|
"prepublishOnly": "npm run build:lib"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@douyinfe/semi-animation": "2.
|
|
10
|
+
"@douyinfe/semi-animation": "2.69.0",
|
|
11
11
|
"@mdx-js/mdx": "^3.0.1",
|
|
12
12
|
"async-validator": "^3.5.0",
|
|
13
13
|
"classnames": "^2.2.6",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"*.scss",
|
|
29
29
|
"*.css"
|
|
30
30
|
],
|
|
31
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "e5c98a0dcec045fd50521e951f968923ebaa128e",
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@babel/plugin-transform-runtime": "^7.15.8",
|
|
34
34
|
"@babel/preset-env": "^7.15.8",
|
package/resizable/foundation.ts
CHANGED
|
@@ -1,31 +1,26 @@
|
|
|
1
1
|
import {
|
|
2
|
-
ResizableHandlerAdapter,
|
|
3
2
|
ResizableHandlerFoundation,
|
|
4
3
|
ResizableFoundation,
|
|
5
|
-
|
|
6
|
-
from './single';
|
|
7
|
-
|
|
8
|
-
export {
|
|
9
|
-
ResizableHandlerAdapter,
|
|
10
|
-
ResizableHandlerFoundation,
|
|
11
|
-
ResizableFoundation,
|
|
12
|
-
ResizableAdapter
|
|
13
|
-
};
|
|
4
|
+
} from './single';
|
|
14
5
|
|
|
15
6
|
import {
|
|
16
|
-
ResizeGroupAdapter,
|
|
17
|
-
ResizeItemAdapter,
|
|
18
|
-
ResizeHandlerAdapter,
|
|
19
7
|
ResizeGroupFoundation,
|
|
20
8
|
ResizeItemFoundation,
|
|
21
9
|
ResizeHandlerFoundation
|
|
22
10
|
} from './group';
|
|
23
11
|
|
|
24
|
-
|
|
12
|
+
import type { ResizableHandlerAdapter, ResizableAdapter } from './single';
|
|
13
|
+
import type { ResizeGroupAdapter, ResizeItemAdapter, ResizeHandlerAdapter } from './group';
|
|
14
|
+
|
|
15
|
+
export {
|
|
16
|
+
ResizableHandlerAdapter,
|
|
17
|
+
ResizableHandlerFoundation,
|
|
18
|
+
ResizableFoundation,
|
|
19
|
+
ResizableAdapter,
|
|
25
20
|
ResizeGroupAdapter,
|
|
26
21
|
ResizeItemAdapter,
|
|
27
22
|
ResizeHandlerAdapter,
|
|
28
23
|
ResizeGroupFoundation,
|
|
29
24
|
ResizeItemFoundation,
|
|
30
25
|
ResizeHandlerFoundation
|
|
31
|
-
};
|
|
26
|
+
};
|