Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions .changeset/initial-office-kit-release.md

This file was deleted.

13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 0.1.0

### Minor Changes

- 3302af3: Initial public release.

`@office-kit/docx` is an OOXML-compliant (ECMA-376) `.docx` generation and
editing library for browsers and Node.js. It ships as a single self-contained
package: the OPC, XML, and WordprocessingML layers are bundled in, not
published separately. `@office-kit/docx-preview` renders any `Docx` value as a
read-only DOM tree by wrapping the OSS `docx-preview` renderer.

The format is loosely based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
and the project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
Each user-visible change is also tracked via [Changesets](https://github.com/changesets/changesets);
Expand All @@ -13,6 +25,7 @@ this file is a hand-curated overview.
standalone functions instead of classes. The motivation is
tree-shaking: classes carry every method along with the prototype,
so a bundler can't drop unused operations once an instance escapes.

- `Docx` is an `interface` (just `{ opc, document, partName, … }`).
- `Docx.create(…)` → `createDocx(…)`. `Docx.open(bytes)` → `openDocx(bytes)`.
`Docx.fromBlob(blob)` → `fromBlob(blob)`.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@office-kit/docx",
"version": "0.0.0",
"version": "0.1.0",
"description": "OOXML-compliant .docx generation for browser and Node.js.",
"keywords": [
"docx",
Expand Down
18 changes: 18 additions & 0 deletions packages/preview/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# @office-kit/docx-preview

## 0.1.0

### Minor Changes

- 3302af3: Initial public release.

`@office-kit/docx` is an OOXML-compliant (ECMA-376) `.docx` generation and
editing library for browsers and Node.js. It ships as a single self-contained
package: the OPC, XML, and WordprocessingML layers are bundled in, not
published separately. `@office-kit/docx-preview` renders any `Docx` value as a
read-only DOM tree by wrapping the OSS `docx-preview` renderer.

### Patch Changes

- Updated dependencies [3302af3]
- @office-kit/docx@0.1.0
2 changes: 1 addition & 1 deletion packages/preview/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@office-kit/docx-preview",
"version": "0.0.0",
"version": "0.1.0",
"description": "Browser preview for word-kit .docx documents.",
"keywords": [
"docx",
Expand Down
9 changes: 9 additions & 0 deletions site/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# word-kit-site

## 0.0.1

### Patch Changes

- Updated dependencies [3302af3]
- @office-kit/docx@0.1.0
- @office-kit/docx-preview@0.1.0
2 changes: 1 addition & 1 deletion site/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "word-kit-site",
"version": "0.0.0",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
Expand Down