Skip to content

chore: version packages#96

Open
stella-provenance-updater[bot] wants to merge 1 commit into
mainfrom
changeset-release/main
Open

chore: version packages#96
stella-provenance-updater[bot] wants to merge 1 commit into
mainfrom
changeset-release/main

Conversation

@stella-provenance-updater

@stella-provenance-updater stella-provenance-updater Bot commented Jul 9, 2026

Copy link
Copy Markdown
Contributor

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@stll/folio-agents@0.2.0

Minor Changes

Patch Changes

@stll/folio-core@0.5.0

Minor Changes

  • #132 6d136cf Thanks @jan-kubica! - Add dry-run previews for document operation batches.

  • #140 b90687b Thanks @jan-kubica! - Add range comments and constrained inline formatting operations.

  • #107 7cfef90 Thanks @jan-kubica! - Report supported mutation modes for each document operation type.

  • #123 2eb96d5 Thanks @jan-kubica! - Add serialized block text preconditions to document operations.

  • #152 95aca77 Thanks @jan-kubica! - Add structured diagnostics to document operation results.

  • #143 8f0701e Thanks @jan-kubica! - Hoist the getPageTextFromLayout and AI-edit block-range helpers (resolveFolioAIBlockRange, clampRangeToDocSize) into framework-neutral core modules (@stll/folio-core/paged-layout/pageText, @stll/folio-core/ai-edits/blockRange). Both were previously duplicated verbatim in the React and Vue adapters; they now share one implementation (and one test suite) in core, so the two adapters can never drift on page-text extraction or block-range resolution.

  • #136 750a137 Thanks @jan-kubica! - Add stable text-range handles and exact range replacement operations.

  • #106 0f6f547 Thanks @jan-kubica! - Validate serialized document operation batches before execution.

  • #100 685ee93 Thanks @jan-kubica! - Add versioned document operation batches and capability discovery.

  • #138 502f114 Thanks @jan-kubica! - Port the Insert Symbol dialog to the React adapter, reaching full parity with Vue. The symbol catalog and search now live in a shared framework-neutral @stll/folio-core/symbols module (six categories, filterSymbols); the Vue dialog is refactored onto it so both adapters share one source of truth instead of duplicating the catalog. React gains InsertSymbolDialog (exported from the package root), an "Insert Symbol" toolbar button (onInsertSymbol), and inserts the chosen character at the cursor.

  • #109 dc188a4 Thanks @jan-kubica! - Report unsupported document operation modes separately from unsupported blocks.

  • #156 4de7540 Thanks @jan-kubica! - Expose document version comparison from folio-core while preserving the agents API.

  • #141 0ee5fba Thanks @jan-kubica! - Add typed discovery and reads for document stories.

  • #126 fbaed88 Thanks @jan-kubica! - Unify the reachable zoom range across adapters. A new @stll/folio-core/utils/zoom module exports the canonical ZOOM_MIN (0.25), ZOOM_MAX (4), and ZOOM_STEP (0.1); React and Vue now source their clamp from it. The Vue adapter previously clamped zoom to 0.5-2x and now matches React at 0.25-4x. Each adapter's curated toolbar zoom-level dropdown (50-200%) is unchanged and remains an intentional subset of the reachable range.

  • #130 317fa96 Thanks @jan-kubica! - Add optional atomic document operation batches.

Patch Changes

  • #139 33d2d04 Thanks @jan-kubica! - Honor authored document default tab intervals in paragraph layout and painting.

  • #134 50990a0 Thanks @jan-kubica! - Keep authored body margins independent from header/footer paint bounds and carry keep-with-next chains across empty separators.

  • #139 33d2d04 Thanks @jan-kubica! - Preserve standard list continuation wrapping while matching custom hanging indents.

  • #151 33538c6 Thanks @jan-kubica! - Reduce DOCX parsing time by skipping unused XML callback paths.

  • #117 7bd5dd8 Thanks @jan-kubica! - Honor authored numbering starts when a document begins at a nested list level.

  • #158 bf8e841 Thanks @jan-kubica! - Fix paragraph-style font-size inheritance for directly formatted DOCX runs.

  • #146 58e66c3 Thanks @jan-kubica! - Improve list continuation, tab-stop precision, and justified hanging-list layout.

  • #120 c864d1c Thanks @jan-kubica! - Keep hard page breaks distinct from cached Word pagination hints.

  • #157 7fcb7d7 Thanks @jan-kubica! - Coalesce empty rendered page-break markers after natural paragraph overflow.

  • #124 411f5e4 Thanks @jan-kubica! - Reduce typing latency by coalescing incremental layout on the next animation frame.

  • #126 fbaed88 Thanks @jan-kubica! - Narrow clipboard copy/read failures with an instanceof Error check instead of an unchecked as Error cast, so onError callbacks always receive a real Error even when a non-Error value is thrown.

  • #98 7bdd026 Thanks @jan-kubica! - Suppress empty hidden list paragraphs and their markers during layout.

  • #95 50b61d1 Thanks @jan-kubica! - Improve Word parity for tabbed legal paragraphs and splittable keep-next chains.

  • #97 f0d1cba Thanks @jan-kubica! - Prevent paragraph-mark character spacing from compressing directly formatted text runs.

  • #127 f7de365 Thanks @jan-kubica! - Keep default tab stops anchored to the document text-area grid after paragraph indents.

  • #114 3958226 Thanks @jan-kubica! - Avoid blank pages when Word's cached page-break hint matches natural paragraph overflow.

  • #142 1a278bf Thanks @jan-kubica! - Preserve final-section page geometry and clear overflowing first-page headers.

  • #101 1742abe Thanks @jan-kubica! - Honor Word rendered-page-break hints during pagination without duplicating structural breaks.

  • #135 8d9808c Thanks @jan-kubica! - Match Word contextual paragraph spacing and cached rendered page-break placement.

  • #103 3130e5f Thanks @jan-kubica! - Add optional DOCX parsing and layout-start performance instrumentation.

  • #155 8a3888c Thanks @jan-kubica! - Move oversized keep-with-next chains to a fresh page before paginating them naturally.

  • #133 d736b57 Thanks @jan-kubica! - Reduce DOCX parsing allocations while converting ordered XML trees.

  • #116 476fa19 Thanks @jan-kubica! - Improve Aptos document layout and preserve document-default spacing on empty paragraphs.

  • #113 1f74701 Thanks @jan-kubica! - Keep named paragraph style fonts on unformatted runs when the paragraph mark has separate formatting.

  • #105 9697a47 Thanks @jan-kubica! - Preserve zero-sized Word image dimensions during layout conversion.

  • #148 a5d496f Thanks @jan-kubica! - Ignore source-less shape placeholders when constructing paragraph image runs.

  • #102 c01b5b0 Thanks @jan-kubica! - Render WordprocessingGroup drawings as safe SVG previews while preserving their OOXML.

  • #115 41bc093 Thanks @jan-kubica! - Measure empty paragraphs with their direct paragraph-mark font metrics.

  • #153 174d0ce Thanks @jan-kubica! - Preserve spacing from explicitly selected paragraph styles on empty paragraphs.

  • #119 4377bf0 Thanks @jan-kubica! - Measure collapsed table borders consistently with the table painter.

  • #108 c7690f9 Thanks @jan-kubica! - Preserve paragraph run defaults when runs override individual text properties.

  • #137 1bea7a9 Thanks @jan-kubica! - Match Word's justification of numbered-list continuation lines.

@stll/folio-react@0.7.0

Minor Changes

  • #138 502f114 Thanks @jan-kubica! - Port the Insert Symbol dialog to the React adapter, reaching full parity with Vue. The symbol catalog and search now live in a shared framework-neutral @stll/folio-core/symbols module (six categories, filterSymbols); the Vue dialog is refactored onto it so both adapters share one source of truth instead of duplicating the catalog. React gains InsertSymbolDialog (exported from the package root), an "Insert Symbol" toolbar button (onInsertSymbol), and inserts the chosen character at the cursor.

  • #104 6e95dc2 Thanks @jan-kubica! - Adopt versioned document operation batches across agent and live editor bridges.

Patch Changes

@stll/folio-vue@0.5.0

Minor Changes

  • #126 fbaed88 Thanks @jan-kubica! - Unify the reachable zoom range across adapters. A new @stll/folio-core/utils/zoom module exports the canonical ZOOM_MIN (0.25), ZOOM_MAX (4), and ZOOM_STEP (0.1); React and Vue now source their clamp from it. The Vue adapter previously clamped zoom to 0.5-2x and now matches React at 0.25-4x. Each adapter's curated toolbar zoom-level dropdown (50-200%) is unchanged and remains an intentional subset of the reachable range.

  • #131 a50ac51 Thanks @jan-kubica! - Port applyDocumentOperations to the Vue DocxEditorRef. The Vue adapter now implements the versioned document-operation batch API at full parity with React (delegating to core's applyFolioDocumentOperations, mirroring the existing applyAIEditOperations), and re-exports DocxEditorApplyDocumentOperationsOptions from the package root. Previously this ref method existed only on the React adapter.

Patch Changes

@stll/folio-nuxt@0.3.1

Patch Changes

@stella-provenance-updater stella-provenance-updater Bot force-pushed the changeset-release/main branch 30 times, most recently from 0d57dc0 to e673e2c Compare July 10, 2026 04:23
@stella-provenance-updater stella-provenance-updater Bot force-pushed the changeset-release/main branch 27 times, most recently from 79c1984 to df553ca Compare July 10, 2026 14:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants