Skip to content

Commit 67884da

Browse files
committed
new build
1 parent 1223de5 commit 67884da

File tree

10 files changed

+20
-20
lines changed

10 files changed

+20
-20
lines changed

demos/browser/js/pptxgen.bundle.js

Lines changed: 3 additions & 3 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: 3 additions & 3 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 4.0.1-beta.1 @ 2025-05-30T01:48:36.016Z */
1+
/* PptxGenJS 4.0.1-beta.1 @ 2025-05-30T14:03:47.731Z */
22
'use strict';
33

44
var JSZip = require('jszip');
@@ -2699,7 +2699,7 @@ function createHyperlinkRels(target, text, options) {
26992699
textObjs = [text];
27002700
textObjs.forEach((text, idx) => {
27012701
// IMPORTANT: `options` are lost due to recursion/copy!
2702-
if (options && options[idx])
2702+
if (options && options[idx] && options[idx].hyperlink)
27032703
text.options = Object.assign(Object.assign({}, text.options), options[idx]);
27042704
// NOTE: `text` can be an array of other `text` objects (table cell word-level formatting), continue parsing using recursion
27052705
if (Array.isArray(text)) {
@@ -6785,7 +6785,7 @@ function makeXmlViewProps() {
67856785
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
67866786
* SOFTWARE.
67876787
*/
6788-
const VERSION = '4.0.1-beta.1';
6788+
const VERSION = '4.0.1-beta.2';
67896789
class PptxGenJS {
67906790
set layout(value) {
67916791
const newLayout = this.LAYOUTS[value];

dist/pptxgen.es.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* PptxGenJS 4.0.1-beta.1 @ 2025-05-30T01:48:36.018Z */
1+
/* PptxGenJS 4.0.1-beta.1 @ 2025-05-30T14:03:47.733Z */
22
import JSZip from 'jszip';
33

44
/******************************************************************************
@@ -2697,7 +2697,7 @@ function createHyperlinkRels(target, text, options) {
26972697
textObjs = [text];
26982698
textObjs.forEach((text, idx) => {
26992699
// IMPORTANT: `options` are lost due to recursion/copy!
2700-
if (options && options[idx])
2700+
if (options && options[idx] && options[idx].hyperlink)
27012701
text.options = Object.assign(Object.assign({}, text.options), options[idx]);
27022702
// NOTE: `text` can be an array of other `text` objects (table cell word-level formatting), continue parsing using recursion
27032703
if (Array.isArray(text)) {
@@ -6783,7 +6783,7 @@ function makeXmlViewProps() {
67836783
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
67846784
* SOFTWARE.
67856785
*/
6786-
const VERSION = '4.0.1-beta.1';
6786+
const VERSION = '4.0.1-beta.2';
67876787
class PptxGenJS {
67886788
set layout(value) {
67896789
const newLayout = this.LAYOUTS[value];

dist/pptxgen.min.js

Lines changed: 3 additions & 3 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.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pptxgenjs",
3-
"version": "4.0.1-beta.1",
3+
"version": "4.0.1-beta.2",
44
"author": {
55
"name": "Brent Ely",
66
"url": "https://github.com/gitbrent/"

src/pptxgen.ts

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

101-
const VERSION = '4.0.1-beta.1'
101+
const VERSION = '4.0.1-beta.2'
102102

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

0 commit comments

Comments
 (0)