Skip to content

Commit 1a1e998

Browse files
committed
New build
1 parent e1f867e commit 1a1e998

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

demos/browser/js/pptxgen.bundle.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demos/browser/js/pptxgen.bundle.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/pptxgen.bundle.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/pptxgen.bundle.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/pptxgen.cjs.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* PptxGenJS 3.9.0-beta @ 2021-10-01T03:13:35.864Z */
1+
/* PptxGenJS 3.9.0-beta @ 2021-10-24T18:38:23.042Z */
22
'use strict';
33

44
var JSZip = require('jszip');
@@ -2708,7 +2708,7 @@ function genXmlTextBody(slideObj) {
27082708
textObj.options.paraSpaceBefore = textObj.options.paraSpaceBefore || opts.paraSpaceBefore;
27092709
textObj.options.paraSpaceAfter = textObj.options.paraSpaceAfter || opts.paraSpaceAfter;
27102710
paragraphPropXml = genXmlParagraphProperties(textObj, false);
2711-
strSlideXml += paragraphPropXml;
2711+
strSlideXml += paragraphPropXml.replace('<a:pPr></a:pPr>', ''); // IMPORTANT: Empty "pPr" blocks will generate needs-repair/corrupt msg
27122712
// C: Inherit any main options (color, fontSize, etc.)
27132713
// NOTE: We only pass the text.options to genXmlTextRun (not the Slide.options),
27142714
// so the run building function cant just fallback to Slide.color, therefore, we need to do that here before passing options below.
@@ -6392,7 +6392,7 @@ function createSvgPngPreview(rel) {
63926392
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
63936393
* SOFTWARE.
63946394
*/
6395-
var VERSION = '3.9.0-beta-20210930-2159';
6395+
var VERSION = '3.9.0-beta-20211024-1302';
63966396
var PptxGenJS = /** @class */ (function () {
63976397
function PptxGenJS() {
63986398
var _this = this;

dist/pptxgen.es.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* PptxGenJS 3.9.0-beta @ 2021-10-01T03:13:35.870Z */
1+
/* PptxGenJS 3.9.0-beta @ 2021-10-24T18:38:23.050Z */
22
import JSZip from 'jszip';
33

44
/*! *****************************************************************************
@@ -2702,7 +2702,7 @@ function genXmlTextBody(slideObj) {
27022702
textObj.options.paraSpaceBefore = textObj.options.paraSpaceBefore || opts.paraSpaceBefore;
27032703
textObj.options.paraSpaceAfter = textObj.options.paraSpaceAfter || opts.paraSpaceAfter;
27042704
paragraphPropXml = genXmlParagraphProperties(textObj, false);
2705-
strSlideXml += paragraphPropXml;
2705+
strSlideXml += paragraphPropXml.replace('<a:pPr></a:pPr>', ''); // IMPORTANT: Empty "pPr" blocks will generate needs-repair/corrupt msg
27062706
// C: Inherit any main options (color, fontSize, etc.)
27072707
// NOTE: We only pass the text.options to genXmlTextRun (not the Slide.options),
27082708
// so the run building function cant just fallback to Slide.color, therefore, we need to do that here before passing options below.
@@ -6386,7 +6386,7 @@ function createSvgPngPreview(rel) {
63866386
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
63876387
* SOFTWARE.
63886388
*/
6389-
var VERSION = '3.9.0-beta-20210930-2159';
6389+
var VERSION = '3.9.0-beta-20211024-1302';
63906390
var PptxGenJS = /** @class */ (function () {
63916391
function PptxGenJS() {
63926392
var _this = this;

dist/pptxgen.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/pptxgen.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/pptxgen.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ import * as genMedia from './gen-media'
9797
import * as genTable from './gen-tables'
9898
import * as genXml from './gen-xml'
9999

100-
const VERSION = '3.9.0-beta-20210930-2159'
100+
const VERSION = '3.9.0-beta-20211024-1302'
101101

102102
export default class PptxGenJS implements IPresentationProps {
103103
// Property getters/setters

0 commit comments

Comments
 (0)