forgeframe 0.0.10 → 0.0.12
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/dist/communication/messenger.d.ts +1 -0
- package/dist/core/consumer/transport.d.ts +4 -0
- package/dist/core/host.d.ts +5 -0
- package/dist/forgeframe.js +336 -305
- package/dist/forgeframe.umd.cjs +2 -2
- package/dist/props/clone.d.ts +22 -0
- package/dist/props/index.d.ts +2 -1
- package/dist/props/serialize.d.ts +1 -14
- package/dist/utils/browser.d.ts +6 -0
- package/package.json +1 -1
|
@@ -99,6 +99,10 @@ export declare class ConsumerTransport<P extends Record<string, unknown>, X = un
|
|
|
99
99
|
* Sets up host message handlers.
|
|
100
100
|
*/
|
|
101
101
|
setupMessageHandlers(handlers: ConsumerTransportHandlers<X>): void;
|
|
102
|
+
/**
|
|
103
|
+
* Returns true when a lifecycle/control message came from the opened host window.
|
|
104
|
+
*/
|
|
105
|
+
private isHostControlSource;
|
|
102
106
|
/**
|
|
103
107
|
* Destroys transport resources.
|
|
104
108
|
*/
|
package/dist/core/host.d.ts
CHANGED
|
@@ -224,6 +224,11 @@ export declare class HostComponent<P extends Record<string, unknown>> {
|
|
|
224
224
|
* @internal
|
|
225
225
|
*/
|
|
226
226
|
private setupMessageHandlers;
|
|
227
|
+
/**
|
|
228
|
+
* Returns true when a stateful inbound message came from the resolved consumer window.
|
|
229
|
+
* @internal
|
|
230
|
+
*/
|
|
231
|
+
private isConsumerSource;
|
|
227
232
|
/**
|
|
228
233
|
* Removes stale prop keys that are no longer present in the latest consumer payload.
|
|
229
234
|
* @internal
|