presenter 0.6.2 → 0.6.3
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/dist/animations/FadeIn.d.ts +3 -0
- package/dist/animations/FadeOut.d.ts +3 -0
- package/dist/animations/Hide.d.ts +3 -0
- package/dist/animations/Show.d.ts +3 -0
- package/dist/export.js +1 -1
- package/dist/index.d.ts +6 -1
- package/dist/{constructors → objects}/Grid.d.ts +1 -1
- package/dist/objects/Group.d.ts +1 -0
- package/dist/objects/Line.d.ts +1 -0
- package/dist/objects/Path.d.ts +2 -0
- package/dist/presenter.js +1 -1
- package/dist/renderer/browser-canvas/utils/drawStroke.d.ts +2 -1
- package/dist/types/Animate.d.ts +2 -2
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { FadeIn } from "./animations/FadeIn";
|
|
2
|
+
export { FadeOut } from "./animations/FadeOut";
|
|
3
|
+
export { Hide } from "./animations/Hide";
|
|
4
|
+
export { Show } from "./animations/Show";
|
|
2
5
|
export { IFrame } from "./extras/IFrame";
|
|
3
6
|
export { ScreenCapture } from "./extras/ScreenCapture";
|
|
4
7
|
export { Arrow } from "./objects/Arrow";
|
|
5
8
|
export { Circle } from "./objects/Circle";
|
|
9
|
+
export { Grid } from "./objects/Grid";
|
|
6
10
|
export { Group } from "./objects/Group";
|
|
7
11
|
export { Image } from "./objects/Image";
|
|
8
12
|
export { Line } from "./objects/Line";
|
|
@@ -31,6 +35,7 @@ export { Presentation } from "./types/Presentation";
|
|
|
31
35
|
export { Resources } from "./types/Resources";
|
|
32
36
|
export { Size } from "./types/Size";
|
|
33
37
|
export { Slide } from "./types/Slide";
|
|
38
|
+
export { SlideAnimation, UnitSlideAnimation } from "./types/SlideAnimation";
|
|
34
39
|
export { SlideObject } from "./types/SlideObject";
|
|
35
40
|
export { SlideWebExtra } from "./types/SlideWebExtra";
|
|
36
41
|
export { TextContent } from "./types/TextContent";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Group } from "../objects/Group";
|
|
2
1
|
import { Anchor } from "../types/Anchor";
|
|
3
2
|
import { SlideObject } from "../types/SlideObject";
|
|
3
|
+
import { Group } from "./Group";
|
|
4
4
|
export interface GridProps {
|
|
5
5
|
readonly anchor: Anchor;
|
|
6
6
|
/** Number of columns in the grid. */
|
package/dist/objects/Group.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export interface Group extends SlideObject {
|
|
|
6
6
|
readonly anchor: Anchor;
|
|
7
7
|
readonly height: number;
|
|
8
8
|
readonly objects: SlideObject[];
|
|
9
|
+
readonly rotateOriginPreviewSize: number;
|
|
9
10
|
readonly rotateOriginX: number;
|
|
10
11
|
readonly rotateOriginY: number;
|
|
11
12
|
readonly rotation: number;
|
package/dist/objects/Line.d.ts
CHANGED
package/dist/objects/Path.d.ts
CHANGED
|
@@ -12,6 +12,8 @@ export interface Path extends SlideObject {
|
|
|
12
12
|
readonly path: string;
|
|
13
13
|
readonly pathLength: number;
|
|
14
14
|
readonly strokeWidth: number;
|
|
15
|
+
readonly viewboxHeight: number;
|
|
16
|
+
readonly viewboxWidth: number;
|
|
15
17
|
readonly width: number;
|
|
16
18
|
readonly x: number;
|
|
17
19
|
readonly y: number;
|