Skip to content

Commit 30e4a06

Browse files
chore(release): version packages (#78)
Co-authored-by: karthikmudunuri <102793643+karthikmudunuri@users.noreply.github.com>
1 parent 019e000 commit 30e4a06

5 files changed

Lines changed: 30 additions & 22 deletions

File tree

.changeset/potx-template-support.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

packages/slidewise/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# @textcortex/slidewise
22

3+
## 1.17.0
4+
5+
### Minor Changes
6+
7+
- 019e000: feat(pptx): support PowerPoint templates (.potx)
8+
9+
`.potx` and `.pptx` share an identical OOXML package; only the main part's
10+
content type in `[Content_Types].xml` differs. This adds first-class template
11+
support across import and export:
12+
13+
- `parsePptx` already parsed `.potx` transparently (it reads parts by path, not
14+
by content type) — now the rest of the pipeline preserves template-ness.
15+
- New exported `isPptxTemplate(blob)` detects a template by inspecting the
16+
package content type rather than trusting a filename extension (a mis-named
17+
`.pptx` that is really a template is detected correctly).
18+
- `serializeDeck` gains an `asTemplate?: boolean` option. When omitted,
19+
template-ness is inherited from the source archive, so a parsed `.potx`
20+
round-trips back to a `.potx`; pass `true`/`false` to force the output kind.
21+
Templates are emitted with the `…presentationml.template.main+xml` main-part
22+
content type and the `.potx` MIME type.
23+
324
## 1.16.4
425

526
### Patch Changes

packages/slidewise/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@textcortex/slidewise",
3-
"version": "1.16.4",
3+
"version": "1.17.0",
44
"description": "Embeddable React PPTX editor.",
55
"license": "MIT",
66
"type": "module",

website/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# website
22

3+
## 0.0.28
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [019e000]
8+
- @textcortex/slidewise@1.17.0
9+
310
## 0.0.27
411

512
### Patch Changes

website/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "website",
3-
"version": "0.0.27",
3+
"version": "0.0.28",
44
"private": true,
55
"type": "module",
66
"scripts": {

0 commit comments

Comments
 (0)