presenter 0.7.5 → 0.8.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.
@@ -4,8 +4,8 @@ import { SlideWebExtra } from '../types/SlideWebExtra';
4
4
  export interface IFrame {
5
5
  readonly url: string;
6
6
  readonly backgroundColor: Color;
7
- readonly borderColor: Color;
8
- readonly borderWidth: number;
7
+ readonly strokeColor: Color;
8
+ readonly strokeWidth: number;
9
9
  readonly pointerEvents: string;
10
10
  readonly scale: number;
11
11
  readonly anchor: Anchor;
@@ -5,10 +5,10 @@ import { SlideObject } from '../types/SlideObject';
5
5
  export interface Circle extends SlideObject {
6
6
  readonly objectType: typeof ObjectType.CIRCLE;
7
7
  readonly anchor: Anchor;
8
- readonly borderColor: Color;
9
- readonly borderWidth: number;
8
+ readonly strokeColor: Color;
9
+ readonly strokeWidth: number;
10
10
  readonly drawn: number;
11
- readonly fill: Color;
11
+ readonly fillColor: Color;
12
12
  readonly radius: number;
13
13
  readonly x: number;
14
14
  readonly y: number;
@@ -6,7 +6,7 @@ export interface Image extends SlideObject {
6
6
  readonly anchor: Anchor;
7
7
  readonly height: number;
8
8
  readonly imageId: string;
9
- readonly rounding: number;
9
+ readonly cornerRadius: number;
10
10
  readonly smooth: boolean;
11
11
  readonly width: number;
12
12
  readonly x: number;
@@ -5,9 +5,9 @@ import { SlideObject } from '../types/SlideObject';
5
5
  export interface Path extends SlideObject {
6
6
  readonly objectType: typeof ObjectType.PATH;
7
7
  readonly anchor: Anchor;
8
- readonly color: Color;
8
+ readonly strokeColor: Color;
9
9
  readonly drawn: number;
10
- readonly fill: Color;
10
+ readonly fillColor: Color;
11
11
  readonly height: number;
12
12
  readonly isRounded: boolean;
13
13
  readonly path: string;
@@ -4,10 +4,10 @@ import { Position } from '../types/Position';
4
4
  import { SlideObject } from '../types/SlideObject';
5
5
  export interface Polygon extends SlideObject {
6
6
  readonly objectType: typeof ObjectType.POLYGON;
7
- readonly borderColor: Color;
8
- readonly borderWidth: number;
7
+ readonly strokeColor: Color;
8
+ readonly strokeWidth: number;
9
9
  readonly drawn: number;
10
10
  readonly points: readonly Position[];
11
- readonly fill: Color;
11
+ readonly fillColor: Color;
12
12
  }
13
13
  export declare function Polygon(props?: Partial<Polygon> | null): Polygon;
@@ -5,12 +5,12 @@ import { SlideObject } from '../types/SlideObject';
5
5
  export interface Rectangle extends SlideObject {
6
6
  readonly objectType: typeof ObjectType.RECTANGLE;
7
7
  readonly anchor: Anchor;
8
- readonly borderColor: Color;
9
- readonly borderWidth: number;
8
+ readonly strokeColor: Color;
9
+ readonly strokeWidth: number;
10
10
  readonly drawn: number;
11
- readonly fill: Color;
11
+ readonly fillColor: Color;
12
12
  readonly height: number;
13
- readonly rounding: number;
13
+ readonly cornerRadius: number;
14
14
  readonly width: number;
15
15
  readonly x: number;
16
16
  readonly y: number;