@sobree/core 0.1.3 → 0.1.5

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.
@@ -56,6 +56,18 @@ export declare class Paper {
56
56
  */
57
57
  private readonly headerAnchors;
58
58
  private readonly footerAnchors;
59
+ /**
60
+ * BEHIND-text layers — one per frame origin (body / header / footer).
61
+ * A `<wp:anchor behindDoc="1">` frame must paint BELOW the body text
62
+ * but above the paper background. The normal overlay layers are
63
+ * `isolation: isolate` stacking contexts ABOVE the content, so a
64
+ * frame's own `z-index: -1` can never escape them — behind-ness must
65
+ * be expressed by WHICH layer hosts the frame. These sit first in the
66
+ * paper's DOM (painting below every later positioned sibling).
67
+ */
68
+ private readonly anchorsBehind;
69
+ private readonly headerAnchorsBehind;
70
+ private readonly footerAnchorsBehind;
59
71
  constructor(container: HTMLElement, setup: PageSetup);
60
72
  applySetup(setup: PageSetup): void;
61
73
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sobree/core",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },