Signal drop!
Relay (operand.online) is unreachable.
Usually, a dropped signal means an upgrade is happening. Hold on!
Sorry, no connección.
Hang in there while we get back on track
gram: docs
> ./packages/i18n/CHANGELOG.md
# @eigenpal/docx-editor-i18n
## 1.6.0
## 1.5.0
## 1.4.0
## 1.3.3
## 1.3.2
## 1.3.1
## 1.3.0
## 1.2.1
## 1.2.0
## 1.1.0
### Minor Changes
- a7f9ac5: Add French locale
- 42ea72d: Track structural edits as OOXML revisions in suggesting mode. Paragraph-break insert/delete, paragraph-property changes, and table row/cell insert/delete/merge are now recorded, round-tripped through DOCX, and shown in the tracked-changes sidebar (React and Vue, localized). Adds `acceptChangeById(id)` / `rejectChangeById(id)`, and `acceptAllChanges` / `rejectAllChanges` now resolve every revision type rather than inline marks only. Fixes #614.
### Patch Changes
- 14fe4f2: add Hindi (hi) community-maintained locale
## 1.0.3
## 1.0.2
## 1.0.1
### Patch Changes
- fe4cb94: Add per-locale subpath imports to `@eigenpal/docx-editor-i18n` so dynamic
locale loading can code-split a single locale instead of bundling the whole
set:
```ts
// Static — bundler ships only this locale's strings
import pl from '@eigenpal/docx-editor-i18n/pl';
// Dynamic — splits into its own chunk, loaded on demand
const pl = (await import('@eigenpal/docx-editor-i18n/pl')).default;
Subpaths ship for every locale: /en, /de, /he, /pl, /pt-BR, /tr,
/zh-CN. The named exports on the package root still work — pick the
ergonomic path for static lists, the subpath for runtime locale switching.
Also re-export createEmptyDocument, createDocumentWithText, and
CreateEmptyDocumentOptions from @eigenpal/docx-editor-react and
@eigenpal/docx-editor-vue so the common "spawn a blank editor"
affordance no longer requires installing -core alongside the adapter.
Surface Comment, CommentRangeStart, CommentRangeEnd,
TrackedChangeInfo, TrackedRunChange, Insertion, Deletion,
MoveFrom, MoveTo, and ParagraphContent from the main
@eigenpal/docx-editor-core entry. They were already public via
@eigenpal/docx-editor-core/headless; the main entry just hadn't been
re-exporting them.
1.0.0
Major Changes
-
6272b32: # 1.0.0
First multi-package, multi-framework release. The monolithic
@eigenpal/docx-js-editoris split into a framework-agnostic core and per-framework adapters, Vue 3 ships as a first-class adapter alongside React, and the license moves to Apache 2.0 across all packages.Package restructure (breaking)
Old import New import @eigenpal/docx-js-editor@eigenpal/docx-editor-react@eigenpal/docx-js-editor/react@eigenpal/docx-editor-react@eigenpal/docx-editor-react/core@eigenpal/docx-editor-core@eigenpal/docx-editor-react/headless@eigenpal/docx-editor-core/headless@eigenpal/docx-editor-react/core-plugins@eigenpal/docx-editor-core/core-plugins@eigenpal/docx-editor-react/mcp@eigenpal/docx-editor-agents/mcp@eigenpal/docx-editor-react/i18n/*.json@eigenpal/docx-editor-i18n/*.jsonThe old
@eigenpal/docx-js-editorpackage stays on 0.x for legacy maintenance — no 1.x compatibility shim ships. Framework-agnostic utilities (e.g.createEmptyDocument) move to core:- import { DocxEditor, createEmptyDocument } from '@eigenpal/docx-js-editor';+ import { DocxEditor } from '@eigenpal/docx-editor-react';+ import { createEmptyDocument } from '@eigenpal/docx-editor-core';Vue 3 adapter (
@eigenpal/docx-editor-vue)The Vue package becomes a real adapter (previously a stub). Public API mirrors React:
<DocxEditor>with matching prop surfaceuseDocxEditorcomposable +renderAsyncfor the Node.js path/ui,/composables,/dialogs,/plugin-api,/stylessubpaths
Parity gates cover insert-table, find/replace, page-setup, context menus, image overlay (resize/move/rotate/aspect-locked corners, dimension tooltip), advanced cell/row options (margins, height rule, text direction, no-wrap), menu-bar icons + shortcuts + carets, toolbar pickers, and the agent UI surface.
Shared i18n package (
@eigenpal/docx-editor-i18n)Locale strings move out of
@eigenpal/docx-editor-reactinto a dedicated package consumed by both adapters from a single source.- import de from '@eigenpal/docx-editor-react/i18n/de.json';+ import de from '@eigenpal/docx-editor-i18n/de.json';The
defaultLocalevalue (English) is still re-exported from the adapter packages, unchanged.Agent UI relocation (breaking)
AgentPanel,AgentChatLog,AgentComposer,AgentSuggestionChip,AgentTimelineno longer ship from@eigenpal/docx-editor-react. They live at:@eigenpal/docx-editor-agents/react— React components +useAgentChat@eigenpal/docx-editor-agents/vue— Vue 3 twins, plusAIContextMenuandAIResponsePreview@eigenpal/docx-editor-agents/ai-sdk/react//ai-sdk/vue—@ai-sdk/*adapters@eigenpal/docx-editor-agents/bridge— React-freecreateEditorBridge,agentTools,executeToolCall,getToolSchemas,createReviewerBridge. Safe for headless / Vue / Node.
- import { AgentPanel, AgentChatLog } from '@eigenpal/docx-editor-react';+ import { AgentPanel, AgentChatLog } from '@eigenpal/docx-editor-agents/react';The agent components no longer call
useTranslationdirectly — pass localized*Labelprops instead.<DocxEditor>'s built-in agent panel slot still forwards localized strings automatically.Accessibility polish on the agent surface: keyboard-operable resize handle, Escape-dismissable context menu, live-region chat log, WCAG AA contrast on response previews.
Toolbar naming unified (breaking)
The standalone formatting bar is
Toolbaron both adapters. The old "classic" single-rowToolbar(with File/Format/Insert menus baked in) is removed — composeEditorToolbar.MenuBar+EditorToolbar.Toolbarfor that layout.Old (React) New (React + Vue) FormattingBarToolbarClassic Toolbar(with menus)EditorToolbarEditorToolbar.FormattingBarEditorToolbar.ToolbarVue:
BasicToolbar/FormattingBaraliases removed;EditorToolbar'sformatting-barslot is nowtoolbar. Vue's table border-color and cell-fill pickers now use the advanced color picker matching React. VueMenuDropdown'sshowChevrondefault flips fromtruetofalse— pass:show-chevron="true"explicitly to keep the caret.showPrintButtonprop removed (breaking)Removed from
<DocxEditor>and<Toolbar>on both adapters; the Vue<Toolbar>printevent is gone with it.onPrintcallback stays.- <DocxEditor showPrintButton onPrint={handlePrint} />+ <DocxEditor onPrint={handlePrint} />To hide File > Print, omit
onPrint. Programmatic print still works viaref.current.print()/editorRef.value.print().License moves to Apache 2.0
All published packages relicense to Apache 2.0. Notably:
@eigenpal/docx-editor-agentswas AGPL-3.0-or-later — the relicense lifts copyleft obligations on agent embedders.
Patch Changes
- 6b8f1fb: Fill in the last 26 untranslated keys in
de,he,pl,pt-BR,tr, andzh-CN. All six community locales now reach 100% coverage againsten.json.