@silurus/ooxml 0.74.3 → 0.74.4
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/README.md +17 -5
- package/dist/{docx-Dmx7JPe8.js → docx-Dv8sdixm.js} +1966 -1903
- package/dist/docx.mjs +1 -1
- package/dist/docx_parser_bg.wasm +0 -0
- package/dist/index.mjs +2 -2
- package/dist/{pptx-9C5JKbFv.js → pptx-DkKbei1w.js} +444 -311
- package/dist/pptx.mjs +1 -1
- package/dist/{render-worker-host-GGVmi0tj.js → render-worker-host-C523QxVw.js} +1 -1
- package/dist/types/docx.d.ts +27 -3
- package/dist/types/index.d.ts +94 -6
- package/dist/types/pptx.d.ts +67 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -204,6 +204,12 @@ width to the container width and re-fits on resize; a `0`-width container defers
|
|
|
204
204
|
layout until it has width. Call `destroy()` to tear down (a self-loaded engine is
|
|
205
205
|
destroyed with it; an injected one is not — see below).
|
|
206
206
|
|
|
207
|
+
Pass `refitOnResize: false` when the viewport must not determine the document's
|
|
208
|
+
physical display size. An explicit pre-load `setScale(1)` then keeps the same
|
|
209
|
+
authored font size at roughly the same on-screen size for portrait pages,
|
|
210
|
+
landscape pages, and slides; users can still zoom or call `fitWidth()` /
|
|
211
|
+
`fitPage()` explicitly.
|
|
212
|
+
|
|
207
213
|
**Desk appearance.** The viewer paints each page/slide on its own white canvas
|
|
208
214
|
with a soft drop shadow, over a transparent "desk". Style the desk and the sheet
|
|
209
215
|
gaps without any wrapper CSS:
|
|
@@ -227,11 +233,12 @@ CSS preview and settles into a crisp re-render when it pauses. Bounds are the
|
|
|
227
233
|
absolute scale factors `zoomMin` / `zoomMax` (default `0.1` / `4`), and
|
|
228
234
|
`setScale(scale)` sets it programmatically. Pass `enableZoom: false` to disable.
|
|
229
235
|
|
|
230
|
-
**Text selection
|
|
231
|
-
|
|
232
|
-
`mode: '
|
|
233
|
-
|
|
234
|
-
|
|
236
|
+
**Text selection and find.** Pass `enableTextSelection: true` to overlay a
|
|
237
|
+
transparent, selectable text layer per page/slide for native copy. It works in
|
|
238
|
+
both `mode: 'main'` and `mode: 'worker'`; worker rendering returns the retained
|
|
239
|
+
text-run geometry beside each bitmap. `findText()`, `findNext()`, `findPrev()`,
|
|
240
|
+
and `clearFind()` search the complete document, including virtualized pages or
|
|
241
|
+
slides outside the mounted window.
|
|
235
242
|
|
|
236
243
|
**Hyperlinks.** For DOCX/PPTX the link hit regions live on the text-selection
|
|
237
244
|
overlay, so hyperlink interaction requires `enableTextSelection: true`; when that
|
|
@@ -266,6 +273,11 @@ doc.destroy(); // release it yourself when every pane is gone
|
|
|
266
273
|
`PptxScrollViewer` takes the same shape with `{ presentation: pres }`
|
|
267
274
|
(`await PptxPresentation.load(...)`).
|
|
268
275
|
|
|
276
|
+
For presentations, `enableMediaPlayback: true` makes embedded audio and video
|
|
277
|
+
interactive inside the real viewport plus `mediaOverscan` slides. Other mounted
|
|
278
|
+
slides remain static and selectable, avoiding offscreen media blobs and
|
|
279
|
+
animation loops.
|
|
280
|
+
|
|
269
281
|
Both viewers also expose `relayout()` (force a re-fit when the container resizes
|
|
270
282
|
in a way a `ResizeObserver` cannot see — e.g. a late web-font load),
|
|
271
283
|
`onVisiblePageChange` / `onVisibleSlideChange` (fires when the top-most visible
|