Skip to content

Commit

Permalink
new build
Browse files Browse the repository at this point in the history
  • Loading branch information
gitbrent committed Nov 30, 2019
1 parent eed5e57 commit cad015d
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 16 deletions.
4 changes: 2 additions & 2 deletions dist/pptxgen.bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/pptxgen.bundle.js.map

Large diffs are not rendered by default.

21 changes: 16 additions & 5 deletions dist/pptxgen.cjs.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* PptxGenJS 3.0.0-beta.6 @ 2019-11-20T03:21:26.747Z */
/* PptxGenJS 3.0.0-beta.7 @ 2019-11-30T17:07:05.793Z */
'use strict';

var JSZip = require('jszip');
Expand Down Expand Up @@ -1521,7 +1521,7 @@ var PowerPointShapes = Object.freeze({
});

/**
* PptxGenJS Utils
* PptxGenJS: Utility Methods
*/
/**
* Convert string percentages to number relative to slide size
Expand Down Expand Up @@ -4777,6 +4777,17 @@ var Slide = /** @class */ (function () {
enumerable: true,
configurable: true
});
Object.defineProperty(Slide.prototype, "hidden", {
get: function () {
return this._hidden;
},
// TODO: add comments (also add to index.d.ts)
set: function (value) {
this._hidden = value;
},
enumerable: true,
configurable: true
});
Object.defineProperty(Slide.prototype, "slideNumber", {
get: function () {
return this._slideNumber;
Expand Down Expand Up @@ -6780,14 +6791,14 @@ function createSvgPngPreview(rel) {
}

/*\
|*| :: pptxgen.js ::
|*| :: pptxgen.ts ::
|*|
|*| JavaScript framework that creates PowerPoint (pptx) presentations
|*| https://github.com/gitbrent/PptxGenJS
|*|
|*| This framework is released under the MIT Public License (MIT)
|*|
|*| PptxGenJS (C) 2015-2019 Brent Ely -- https://github.com/gitbrent
|*| PptxGenJS (C) 2015-2020 Brent Ely -- https://github.com/gitbrent
|*|
|*| Some code derived from the OfficeGen project:
|*| github.com/Ziv-Barber/officegen/ (Copyright 2013 Ziv Barber)
Expand Down Expand Up @@ -6816,7 +6827,7 @@ var PptxGenJS = /** @class */ (function () {
/**
* Library Version
*/
this._version = '3.0.0-beta.6';
this._version = '3.0.0-beta.7';
// Global props
this._charts = CHART_TYPES;
this._colors = SCHEME_COLOR_NAMES;
Expand Down
21 changes: 16 additions & 5 deletions dist/pptxgen.es.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* PptxGenJS 3.0.0-beta.6 @ 2019-11-20T03:21:26.753Z */
/* PptxGenJS 3.0.0-beta.7 @ 2019-11-30T17:07:05.798Z */
import * as JSZip from 'jszip';

/**
Expand Down Expand Up @@ -1519,7 +1519,7 @@ var PowerPointShapes = Object.freeze({
});

/**
* PptxGenJS Utils
* PptxGenJS: Utility Methods
*/
/**
* Convert string percentages to number relative to slide size
Expand Down Expand Up @@ -4775,6 +4775,17 @@ var Slide = /** @class */ (function () {
enumerable: true,
configurable: true
});
Object.defineProperty(Slide.prototype, "hidden", {
get: function () {
return this._hidden;
},
// TODO: add comments (also add to index.d.ts)
set: function (value) {
this._hidden = value;
},
enumerable: true,
configurable: true
});
Object.defineProperty(Slide.prototype, "slideNumber", {
get: function () {
return this._slideNumber;
Expand Down Expand Up @@ -6778,14 +6789,14 @@ function createSvgPngPreview(rel) {
}

/*\
|*| :: pptxgen.js ::
|*| :: pptxgen.ts ::
|*|
|*| JavaScript framework that creates PowerPoint (pptx) presentations
|*| https://github.com/gitbrent/PptxGenJS
|*|
|*| This framework is released under the MIT Public License (MIT)
|*|
|*| PptxGenJS (C) 2015-2019 Brent Ely -- https://github.com/gitbrent
|*| PptxGenJS (C) 2015-2020 Brent Ely -- https://github.com/gitbrent
|*|
|*| Some code derived from the OfficeGen project:
|*| github.com/Ziv-Barber/officegen/ (Copyright 2013 Ziv Barber)
Expand Down Expand Up @@ -6814,7 +6825,7 @@ var PptxGenJS = /** @class */ (function () {
/**
* Library Version
*/
this._version = '3.0.0-beta.6';
this._version = '3.0.0-beta.7';
// Global props
this._charts = CHART_TYPES;
this._colors = SCHEME_COLOR_NAMES;
Expand Down
4 changes: 2 additions & 2 deletions dist/pptxgen.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/pptxgen.min.js.map

Large diffs are not rendered by default.

0 comments on commit cad015d

Please sign in to comment.