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.
- package/README.md +105 -43
- package/dist/communication/index.d.ts +5 -4
- package/dist/core/consumer/callbacks.d.ts +19 -0
- package/dist/core/consumer/child-refs.d.ts +15 -0
- package/dist/core/consumer/siblings.d.ts +23 -0
- package/dist/core/consumer/transport.d.ts +11 -8
- package/dist/core/consumer.d.ts +0 -73
- package/dist/core/host/auto-init.d.ts +19 -0
- package/dist/core/host/bootstrap.d.ts +15 -0
- package/dist/core/host/component.d.ts +32 -0
- package/dist/core/host/props-runtime.d.ts +31 -0
- package/dist/core/host/security.d.ts +31 -0
- package/dist/core/host/transport.d.ts +44 -0
- package/dist/core/host/types.d.ts +63 -0
- package/dist/core/host.d.ts +6 -276
- package/dist/drivers/index.d.ts +7 -9
- package/dist/drivers/react.d.ts +1 -2
- package/dist/forgeframe.d.ts +202 -0
- package/dist/forgeframe.js +1626 -1786
- package/dist/forgeframe.umd.cjs +2 -2
- package/dist/index.d.ts +2 -202
- package/dist/render/index.d.ts +5 -29
- package/dist/utils/domain-pattern.d.ts +35 -0
- package/dist/window/helpers.d.ts +1 -1
- package/dist/window/index.d.ts +6 -6
- package/package.json +1 -1
package/dist/window/index.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
2
|
+
* @packageDocumentation
|
|
3
|
+
* Internal source barrel for ForgeFrame window utilities.
|
|
3
4
|
*
|
|
4
5
|
* @remarks
|
|
5
|
-
* This
|
|
6
|
-
*
|
|
7
|
-
*
|
|
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';
|