@leafer-ui/external 1.0.0-rc.16 → 1.0.0-rc.18
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 +4 -2
- package/types/index.d.ts +3 -2
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.18",
|
|
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.18"
|
|
26
26
|
}
|
|
27
27
|
}
|
package/src/index.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// Implemented in partner
|
|
2
|
-
import { IPaintModule, IPaintImageModule, IPaintGradientModule, IEffectModule, ITextConvertModule, IExportModule, IColorConvertModule, IPathArrowModule } from "@leafer-ui/interface"
|
|
2
|
+
import { IPaintModule, IPaintImageModule, IPaintGradientModule, IEffectModule, ITextConvertModule, IExportModule, IColorConvertModule, IPathArrowModule, IStateModule } from "@leafer-ui/interface"
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
export const TextConvert = {} as ITextConvertModule
|
|
@@ -17,4 +17,6 @@ export const PaintGradient = {} as IPaintGradientModule
|
|
|
17
17
|
|
|
18
18
|
export const Effect = {} as IEffectModule
|
|
19
19
|
|
|
20
|
-
export const Export = {} as IExportModule
|
|
20
|
+
export const Export = {} as IExportModule
|
|
21
|
+
|
|
22
|
+
export const State = {} as IStateModule
|
package/types/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ITextConvertModule, IColorConvertModule, IPathArrowModule, IPaintModule, IPaintImageModule, IPaintGradientModule, IEffectModule, IExportModule } from '@leafer-ui/interface';
|
|
1
|
+
import { ITextConvertModule, IColorConvertModule, IPathArrowModule, IPaintModule, IPaintImageModule, IPaintGradientModule, IEffectModule, IExportModule, IStateModule } from '@leafer-ui/interface';
|
|
2
2
|
|
|
3
3
|
declare const TextConvert: ITextConvertModule;
|
|
4
4
|
declare const ColorConvert: IColorConvertModule;
|
|
@@ -8,5 +8,6 @@ declare const PaintImage: IPaintImageModule;
|
|
|
8
8
|
declare const PaintGradient: IPaintGradientModule;
|
|
9
9
|
declare const Effect: IEffectModule;
|
|
10
10
|
declare const Export: IExportModule;
|
|
11
|
+
declare const State: IStateModule;
|
|
11
12
|
|
|
12
|
-
export { ColorConvert, Effect, Export, Paint, PaintGradient, PaintImage, PathArrow, TextConvert };
|
|
13
|
+
export { ColorConvert, Effect, Export, Paint, PaintGradient, PaintImage, PathArrow, State, TextConvert };
|