@leafer-ui/external 1.0.0-rc.12 → 1.0.0-rc.17

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