pptx-react-viewer 1.22.0 → 1.22.2
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.
- package/CHANGELOG.md +12 -0
- package/dist/{chunk-DZUI64SO.mjs → chunk-3MZ7IARF.mjs} +9 -0
- package/dist/chunk-3MZ7IARF.mjs.br +0 -0
- package/dist/{chunk-DZUI64SO.mjs.gz → chunk-3MZ7IARF.mjs.gz} +0 -0
- package/dist/{chunk-A6IFTYB5.js → chunk-JUFGTL2A.js} +405 -395
- package/dist/chunk-JUFGTL2A.js.br +0 -0
- package/dist/chunk-JUFGTL2A.js.gz +0 -0
- package/dist/{chunk-QVQTDWB7.js → chunk-KA7ST7IH.js} +9 -0
- package/dist/chunk-KA7ST7IH.js.br +0 -0
- package/dist/{chunk-QVQTDWB7.js.gz → chunk-KA7ST7IH.js.gz} +0 -0
- package/dist/{chunk-7P7QQGTI.mjs → chunk-OIAKQGMC.mjs} +14 -4
- package/dist/chunk-OIAKQGMC.mjs.br +0 -0
- package/dist/chunk-OIAKQGMC.mjs.gz +0 -0
- package/dist/hooks-unstable.d.ts +3 -0
- package/dist/hooks-unstable.d.ts.map +1 -1
- package/dist/hooks-unstable.js +71 -71
- package/dist/hooks-unstable.js.br +0 -0
- package/dist/hooks-unstable.js.gz +0 -0
- package/dist/hooks-unstable.mjs +1 -1
- package/dist/hooks-unstable.mjs.br +0 -0
- package/dist/hooks-unstable.mjs.gz +0 -0
- package/dist/index.js +7 -7
- package/dist/index.js.br +0 -0
- package/dist/index.js.gz +0 -0
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.br +0 -0
- package/dist/index.mjs.gz +0 -0
- package/dist/pptx-viewer.css +1 -1
- package/dist/pptx-viewer.css.br +0 -0
- package/dist/pptx-viewer.css.gz +0 -0
- package/dist/viewer/index.js +18 -18
- package/dist/viewer/index.js.br +0 -0
- package/dist/viewer/index.js.gz +0 -0
- package/dist/viewer/index.mjs +2 -2
- package/dist/viewer/index.mjs.br +0 -0
- package/dist/viewer/index.mjs.gz +0 -0
- package/package.json +1 -1
- package/dist/chunk-7P7QQGTI.mjs.br +0 -0
- package/dist/chunk-7P7QQGTI.mjs.gz +0 -0
- package/dist/chunk-A6IFTYB5.js.br +0 -0
- package/dist/chunk-A6IFTYB5.js.gz +0 -0
- package/dist/chunk-DZUI64SO.mjs.br +0 -0
- package/dist/chunk-QVQTDWB7.js.br +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@ All notable changes to this project are documented here.
|
|
|
4
4
|
This file is generated from [Conventional Commits](https://www.conventionalcommits.org)
|
|
5
5
|
by [git-cliff](https://git-cliff.org); do not edit it by hand.
|
|
6
6
|
|
|
7
|
+
## [1.22.1](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-react-viewer@1.22.1) - 2026-07-18
|
|
8
|
+
|
|
9
|
+
## [1.22.0](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-react-viewer@1.22.0) - 2026-07-17
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
- **react:** Add theme/language switching and a real Account page (by @ChristopherVR) ([f2b4d8b](https://github.com/ChristopherVR/pptx-viewer/commit/f2b4d8b209a26b21aa71a5e28eb4066d9bbf9500))
|
|
14
|
+
|
|
15
|
+
### Other
|
|
16
|
+
|
|
17
|
+
- Integrate React theme/language switching and Account page (by @ChristopherVR) ([2fb0854](https://github.com/ChristopherVR/pptx-viewer/commit/2fb0854ed4f4505dbb22889aa6c4e5d3c2540094))
|
|
18
|
+
|
|
7
19
|
## [1.21.0](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-react-viewer@1.21.0) - 2026-07-17
|
|
8
20
|
|
|
9
21
|
### Features
|
|
@@ -13658,6 +13658,7 @@ function useExportSaveAs(input) {
|
|
|
13658
13658
|
coreProperties,
|
|
13659
13659
|
appProperties,
|
|
13660
13660
|
customProperties,
|
|
13661
|
+
tagCollections,
|
|
13661
13662
|
notesMaster,
|
|
13662
13663
|
handoutMaster,
|
|
13663
13664
|
guides,
|
|
@@ -13754,6 +13755,7 @@ function useExportSaveAs(input) {
|
|
|
13754
13755
|
coreProperties: coreProperties ?? void 0,
|
|
13755
13756
|
appProperties: appProperties ?? void 0,
|
|
13756
13757
|
customProperties: customProperties.length > 0 ? customProperties : void 0,
|
|
13758
|
+
tags: tagCollections.length > 0 ? tagCollections : void 0,
|
|
13757
13759
|
notesMaster,
|
|
13758
13760
|
handoutMaster,
|
|
13759
13761
|
outputFormat: format
|
|
@@ -13823,6 +13825,7 @@ function useExportHandlers(input) {
|
|
|
13823
13825
|
coreProperties,
|
|
13824
13826
|
appProperties,
|
|
13825
13827
|
customProperties,
|
|
13828
|
+
tagCollections,
|
|
13826
13829
|
notesMaster,
|
|
13827
13830
|
handoutMaster,
|
|
13828
13831
|
guides,
|
|
@@ -13860,6 +13863,7 @@ function useExportHandlers(input) {
|
|
|
13860
13863
|
coreProperties,
|
|
13861
13864
|
appProperties,
|
|
13862
13865
|
customProperties,
|
|
13866
|
+
tagCollections,
|
|
13863
13867
|
notesMaster,
|
|
13864
13868
|
handoutMaster,
|
|
13865
13869
|
guides,
|
|
@@ -15221,6 +15225,7 @@ function useSerialize(input) {
|
|
|
15221
15225
|
coreProperties,
|
|
15222
15226
|
appProperties,
|
|
15223
15227
|
customProperties,
|
|
15228
|
+
tagCollections,
|
|
15224
15229
|
notesMaster,
|
|
15225
15230
|
handoutMaster,
|
|
15226
15231
|
handlerRef,
|
|
@@ -15274,6 +15279,7 @@ function useSerialize(input) {
|
|
|
15274
15279
|
coreProperties,
|
|
15275
15280
|
appProperties,
|
|
15276
15281
|
customProperties: customProperties.length > 0 ? customProperties : void 0,
|
|
15282
|
+
tags: tagCollections.length > 0 ? tagCollections : void 0,
|
|
15277
15283
|
notesMaster,
|
|
15278
15284
|
handoutMaster
|
|
15279
15285
|
};
|
|
@@ -15291,6 +15297,7 @@ function useSerialize(input) {
|
|
|
15291
15297
|
coreProperties,
|
|
15292
15298
|
appProperties,
|
|
15293
15299
|
customProperties,
|
|
15300
|
+
tagCollections,
|
|
15294
15301
|
notesMaster,
|
|
15295
15302
|
handoutMaster,
|
|
15296
15303
|
guides,
|
|
@@ -15738,6 +15745,7 @@ function useIOHandlers(input) {
|
|
|
15738
15745
|
coreProperties: state.coreProperties ?? null,
|
|
15739
15746
|
appProperties: state.appProperties ?? null,
|
|
15740
15747
|
customProperties: state.customProperties,
|
|
15748
|
+
tagCollections: state.tagCollections,
|
|
15741
15749
|
notesMaster: state.notesMaster,
|
|
15742
15750
|
handoutMaster: state.handoutMaster,
|
|
15743
15751
|
guides: state.guides,
|
|
@@ -16001,6 +16009,7 @@ function useContentLifecycle(input) {
|
|
|
16001
16009
|
coreProperties: state.coreProperties,
|
|
16002
16010
|
appProperties: state.appProperties,
|
|
16003
16011
|
customProperties: state.customProperties,
|
|
16012
|
+
tagCollections: state.tagCollections,
|
|
16004
16013
|
notesMaster: state.notesMaster,
|
|
16005
16014
|
handoutMaster: state.handoutMaster,
|
|
16006
16015
|
handlerRef,
|
|
Binary file
|
|
Binary file
|