Skip to content

Commit

Permalink
Updated: for v3.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gitbrent committed Sep 29, 2021
1 parent 504e8be commit 5de0604
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Notes]

## [3.8.0] - 2021-09-27
## [3.8.0] - 2021-09-28

### Added

Expand Down
12 changes: 6 additions & 6 deletions types/index.d.ts
@@ -1,4 +1,4 @@
// Type definitions for pptxgenjs 3.7.2
// Type definitions for pptxgenjs 3.8.0
// Project: https://gitbrent.github.io/PptxGenJS/
// Definitions by: Brent Ely <https://github.com/gitbrent/>
// Michael Beaumont <https://github.com/michaelbeaumont>
Expand Down Expand Up @@ -1392,8 +1392,8 @@ declare namespace PptxGenJS {
points?: Array<
| { x: Coord; y: Coord; moveTo?: boolean }
| { x: Coord; y: Coord; curve: { type: 'arc'; hR: Coord; wR: Coord; stAng: number; swAng: number } }
| { x: Coord; y: Coord; curve: { type: 'quadratic'; x1: Coord; y1: Coord } }
| { x: Coord; y: Coord; curve: { type: 'cubic'; x1: Coord; y1: Coord; x2: Coord; y2: Coord } }
| { x: Coord; y: Coord; curve: { type: 'quadratic'; x1: Coord; y1: Coord } }
| { close: true }
>
/**
Expand Down Expand Up @@ -1558,7 +1558,7 @@ declare namespace PptxGenJS {
*/
fill?: ShapeFillProps
/**
* Cell margin
* Cell margin (inches)
* @default 0
*/
margin?: Margin
Expand Down Expand Up @@ -1621,7 +1621,7 @@ declare namespace PptxGenJS {
*/
border?: BorderProps | [BorderProps, BorderProps, BorderProps, BorderProps]
/**
* Width of table columns
* Width of table columns (inches)
* - single value is applied to every column equally based upon `w`
* - array of values in applied to each column in order
* @default columns of equal width based upon `w`
Expand All @@ -1635,12 +1635,12 @@ declare namespace PptxGenJS {
*/
fill?: ShapeFillProps
/**
* Cell margin
* Cell margin (inches)
* - affects all table cells, is superceded by cell options
*/
margin?: Margin
/**
* Height of table rows
* Height of table rows (inches)
* - single value is applied to every row equally based upon `h`
* - array of values in applied to each row in order
* @default rows of equal height based upon `h`
Expand Down

0 comments on commit 5de0604

Please sign in to comment.