forgeframe 0.0.12 → 0.0.13

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.
@@ -1,12 +1,12 @@
1
1
  /**
2
- * Window utilities for ForgeFrame cross-window communication.
2
+ * @packageDocumentation
3
+ * Internal source barrel for ForgeFrame window utilities.
3
4
  *
4
5
  * @remarks
5
- * This module provides utilities for working with browser windows in cross-origin
6
- * contexts. It includes helpers for domain matching, window hierarchy navigation,
7
- * window name payload encoding/decoding, and window reference management.
8
- *
9
- * @packageDocumentation
6
+ * This file groups cross-window helpers, payload parsing, and window reference
7
+ * helpers for internal source organization. The published package does not
8
+ * expose a `forgeframe/window` subpath, so consumers should treat this barrel
9
+ * as internal implementation structure.
10
10
  */
11
11
  export { getDomain, isSameDomain, matchDomain, isWindowClosed, getOpener, getConsumer, getTop, isIframe, isPopup, getAncestor, getDistanceToConsumer, focusWindow, closeWindow, getFrames, } from './helpers';
12
12
  export { buildWindowName, parseWindowName, isForgeFrameWindow, isHostOfComponent, createWindowPayload, updateWindowName, getInitialPayload, } from './name-payload';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forgeframe",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "description": "Modern cross-domain iframe component framework - a TypeScript alternative to zoid",
5
5
  "type": "module",
6
6
  "module": "./dist/forgeframe.js",