@leafer-ui/external 1.0.0-rc.2 → 1.0.0-rc.21
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 +2 -2
- package/src/index.ts +15 -7
- package/types/index.d.ts +8 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leafer-ui/external",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.21",
|
|
4
4
|
"description": "@leafer-ui/external",
|
|
5
5
|
"author": "Chao (Leafer) Wan",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
"leaferjs"
|
|
23
23
|
],
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@leafer-ui/interface": "1.0.0-rc.
|
|
25
|
+
"@leafer-ui/interface": "1.0.0-rc.21"
|
|
26
26
|
}
|
|
27
27
|
}
|
package/src/index.ts
CHANGED
|
@@ -1,14 +1,22 @@
|
|
|
1
1
|
// Implemented in partner
|
|
2
|
-
import { IPaintModule, IEffectModule, ITextConvertModule, IExportModule, IColorConvertModule } from "@leafer-ui/interface"
|
|
2
|
+
import { IPaintModule, IPaintImageModule, IPaintGradientModule, IEffectModule, ITextConvertModule, IExportModule, IColorConvertModule, IPathArrowModule, IStateModule } from "@leafer-ui/interface"
|
|
3
3
|
|
|
4
|
-
export const Effect: IEffectModule = {}
|
|
5
4
|
|
|
6
|
-
export const
|
|
5
|
+
export const TextConvert = {} as ITextConvertModule
|
|
7
6
|
|
|
8
|
-
export const
|
|
7
|
+
export const ColorConvert = {} as IColorConvertModule
|
|
9
8
|
|
|
10
|
-
export const
|
|
9
|
+
export const PathArrow = {} as IPathArrowModule
|
|
11
10
|
|
|
12
|
-
export const ColorConvert: IColorConvertModule = {}
|
|
13
11
|
|
|
14
|
-
export const
|
|
12
|
+
export const Paint = {} as IPaintModule
|
|
13
|
+
|
|
14
|
+
export const PaintImage = {} as IPaintImageModule
|
|
15
|
+
|
|
16
|
+
export const PaintGradient = {} as IPaintGradientModule
|
|
17
|
+
|
|
18
|
+
export const Effect = {} as IEffectModule
|
|
19
|
+
|
|
20
|
+
export const Export = {} as IExportModule
|
|
21
|
+
|
|
22
|
+
export const State = {} as IStateModule
|
package/types/index.d.ts
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ITextConvertModule, IColorConvertModule, IPathArrowModule, IPaintModule, IPaintImageModule, IPaintGradientModule, IEffectModule, IExportModule, IStateModule } from '@leafer-ui/interface';
|
|
2
2
|
|
|
3
|
-
declare const Effect: IEffectModule;
|
|
4
|
-
declare const Paint: IPaintModule;
|
|
5
|
-
declare const Animate: {};
|
|
6
3
|
declare const TextConvert: ITextConvertModule;
|
|
7
4
|
declare const ColorConvert: IColorConvertModule;
|
|
5
|
+
declare const PathArrow: IPathArrowModule;
|
|
6
|
+
declare const Paint: IPaintModule;
|
|
7
|
+
declare const PaintImage: IPaintImageModule;
|
|
8
|
+
declare const PaintGradient: IPaintGradientModule;
|
|
9
|
+
declare const Effect: IEffectModule;
|
|
8
10
|
declare const Export: IExportModule;
|
|
11
|
+
declare const State: IStateModule;
|
|
9
12
|
|
|
10
|
-
export {
|
|
13
|
+
export { ColorConvert, Effect, Export, Paint, PaintGradient, PaintImage, PathArrow, State, TextConvert };
|