@sobree/core 0.1.26 → 0.1.28

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.
@@ -196,6 +196,9 @@ export declare class PaperStack {
196
196
  *
197
197
  * Cheap and idempotent; safe to call after any layout change.
198
198
  */
199
+ /** Body block indices a floating frame is anchored to. A body-empty page
200
+ * holding one of these carries an absolute overlay and must not collapse. */
201
+ private anchoredBlockIndices;
199
202
  private paintAnchorLayers;
200
203
  /**
201
204
  * Walk every paper's content children once and record, for each
@@ -239,4 +242,4 @@ export declare class PaperStack {
239
242
  * a real "last page with just a signature line" still gets its own
240
243
  * page. Idempotent; safe to call on a single-page result.
241
244
  */
242
- export declare function collapseTrailingEmptyPages(pages: readonly HTMLElement[][]): HTMLElement[][];
245
+ export declare function collapseTrailingEmptyPages(pages: readonly HTMLElement[][], anchoredBlockIndices?: ReadonlySet<number>): HTMLElement[][];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sobree/core",
3
- "version": "0.1.26",
3
+ "version": "0.1.28",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },