@mittwald/flow-remote-core 0.2.0-alpha.45 → 0.2.0-alpha.46

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/index.js CHANGED
@@ -1,32 +1,40 @@
1
- import { ThreadIframe as a, ThreadNestedIframe as m } from "@quilted/threads";
2
1
  import { RemoteElement as j, RemoteEvent as k } from "@remote-dom/core/elements";
3
- import * as o from "remeda";
4
- import { isObjectType as p, isString as d, isNumber as b, isBoolean as l } from "remeda";
5
- const f = (e) => {
6
- const t = new a(e.iframe);
2
+ import { ThreadNestedIframe as a, ThreadIframe as m } from "@quilted/threads";
3
+ import * as n from "remeda";
4
+ import { isObjectType as d, isString as p, isNumber as u, isBoolean as l } from "remeda";
5
+ const R = (e) => new a({
6
+ exports: {
7
+ receiveData: (t) => {
8
+ window.dispatchEvent(
9
+ new CustomEvent("flr-data-received", {
10
+ detail: t
11
+ })
12
+ );
13
+ },
14
+ render: (t) => {
15
+ import("@remote-dom/core/elements").then(
16
+ ({ RemoteMutationObserver: r }) => {
17
+ new r(t).observe(e);
18
+ }
19
+ );
20
+ }
21
+ }
22
+ }), E = (e) => {
23
+ e === null || "__remoteConnectionEstablished" in e || (R(e), Object.assign(e, { __remoteConnectionEstablished: !0 }));
24
+ }, v = (e) => {
25
+ const t = new m(e.iframe);
7
26
  return t.imports.render(e.connection), t;
8
- }, v = (e) => (t) => {
9
- t && !("__remoteConnectionEstablished" in t) && (Object.assign(t, { __remoteConnectionEstablished: !0 }), f({
27
+ }, w = (e) => (t) => {
28
+ if ("__remoteConnection" in t)
29
+ return t.__remoteConnection;
30
+ const r = v({
10
31
  iframe: t,
11
32
  connection: e
12
- }));
13
- }, u = (e) => {
14
- new m({
15
- exports: {
16
- render: (t) => {
17
- import("@remote-dom/core/elements").then(
18
- ({ RemoteMutationObserver: r }) => {
19
- new r(t).observe(e);
20
- }
21
- );
22
- }
23
- }
24
33
  });
25
- }, I = (e) => {
26
- e && !("__remoteConnectionEstablished" in e) && (Object.assign(e, { __remoteConnectionEstablished: !0 }), u(e));
27
- }, s = (e) => d(e) || b(e) || l(e) || o.isArray(e) && e.every(s), i = (e) => o.isArray(e) ? e.map(i) : p(e) ? o.pickBy(e, s) : e, y = (...e) => (t) => o.pick(t, e), E = i, C = (e, t, r = {}) => (n) => {
28
- const c = r[t] ?? E;
29
- return e(c(n));
34
+ return Object.assign(t, { __remoteConnection: r.imports }), r.imports;
35
+ }, s = (e) => p(e) || u(e) || l(e) || n.isArray(e) && e.every(s), i = (e) => n.isArray(e) ? e.map(i) : d(e) ? n.pickBy(e, s) : e, C = (...e) => (t) => n.pick(t, e), _ = i, y = (e, t, r = {}) => (o) => {
36
+ const c = r[t] ?? _;
37
+ return e(c(o));
30
38
  };
31
39
  class h extends CustomEvent {
32
40
  constructor(t, r) {
@@ -39,12 +47,12 @@ export {
39
47
  h as FlowRemoteEvent,
40
48
  j as RemoteElement,
41
49
  k as RemoteEvent,
42
- u as connectHostIframe,
43
- I as connectHostIframeRef,
44
- f as connectRemoteIframe,
45
- v as connectRemoteIframeRef,
46
- C as mapEventHandler,
47
- y as pick,
50
+ R as connectHostRenderRoot,
51
+ E as connectHostRenderRootRef,
52
+ v as connectRemoteIframe,
53
+ w as connectRemoteIframeRef,
54
+ y as mapEventHandler,
55
+ C as pick,
48
56
  i as primitiveFlat,
49
- E as standard
57
+ _ as standard
50
58
  };
@@ -0,0 +1,8 @@
1
+ import { ThreadNestedIframe } from '@quilted/threads';
2
+ import { RemoteConnection } from '@remote-dom/core/elements';
3
+ export declare const connectHostRenderRoot: (div: HTMLDivElement) => ThreadNestedIframe<Record<string, never>, {
4
+ receiveData: (data: unknown) => void;
5
+ render: (connection: RemoteConnection) => void;
6
+ }>;
7
+ export declare const connectHostRenderRootRef: (ref: HTMLDivElement | null) => void;
8
+ //# sourceMappingURL=connectHostRenderRoot.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"connectHostRenderRoot.d.ts","sourceRoot":"","sources":["../../../src/connection/connectHostRenderRoot.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAElE,eAAO,MAAM,qBAAqB,QAAS,cAAc;wBAG/B,OAAO;yBAON,gBAAgB;EAU1C,CAAC;AAEF,eAAO,MAAM,wBAAwB,QAAS,cAAc,GAAG,IAAI,SAMlE,CAAC"}
@@ -6,8 +6,9 @@ interface Opts {
6
6
  }
7
7
  interface ThreadIframeTarget {
8
8
  render: (connection: RemoteConnection) => AsyncIterator<unknown>;
9
+ receiveData: (data: unknown) => void;
9
10
  }
10
11
  export declare const connectRemoteIframe: (opts: Opts) => ThreadIframe<ThreadIframeTarget, Record<string, never>>;
11
- export declare const connectRemoteIframeRef: (connection: RemoteConnection) => (ref: HTMLIFrameElement | null) => void;
12
+ export declare const connectRemoteIframeRef: (connection: RemoteConnection) => (ref: HTMLIFrameElement) => ThreadIframeTarget;
12
13
  export {};
13
14
  //# sourceMappingURL=connectRemoteIframe.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"connectRemoteIframe.d.ts","sourceRoot":"","sources":["../../../src/connection/connectRemoteIframe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAChD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAElE,UAAU,IAAI;IACZ,UAAU,EAAE,gBAAgB,CAAC;IAC7B,MAAM,EAAE,iBAAiB,CAAC;CAC3B;AAED,UAAU,kBAAkB;IAC1B,MAAM,EAAE,CAAC,UAAU,EAAE,gBAAgB,KAAK,aAAa,CAAC,OAAO,CAAC,CAAC;CAClE;AAED,eAAO,MAAM,mBAAmB,SAAU,IAAI,4DAI7C,CAAC;AAEF,eAAO,MAAM,sBAAsB,eACpB,gBAAgB,WAAW,iBAAiB,GAAG,IAAI,SAQ/D,CAAC"}
1
+ {"version":3,"file":"connectRemoteIframe.d.ts","sourceRoot":"","sources":["../../../src/connection/connectRemoteIframe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAChD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAElE,UAAU,IAAI;IACZ,UAAU,EAAE,gBAAgB,CAAC;IAC7B,MAAM,EAAE,iBAAiB,CAAC;CAC3B;AAED,UAAU,kBAAkB;IAC1B,MAAM,EAAE,CAAC,UAAU,EAAE,gBAAgB,KAAK,aAAa,CAAC,OAAO,CAAC,CAAC;IACjE,WAAW,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAC;CACtC;AAED,eAAO,MAAM,mBAAmB,SAAU,IAAI,4DAI7C,CAAC;AAEF,eAAO,MAAM,sBAAsB,eACpB,gBAAgB,WACvB,iBAAiB,KAAG,kBAYzB,CAAC"}
@@ -1,7 +1,7 @@
1
+ export { RemoteElement, RemoteEvent, type RemoteElementConstructor, } from '@remote-dom/core/elements';
2
+ export * from './connection/connectHostRenderRoot';
1
3
  export * from './connection/connectRemoteIframe';
2
- export * from './connection/connectHostIframe';
3
4
  export * from './events';
4
5
  export * from './events/FlowRemoteEvent';
5
6
  export * from './events/serializers';
6
- export { RemoteElement, RemoteEvent, type RemoteElementConstructor, } from '@remote-dom/core/elements';
7
7
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,kCAAkC,CAAC;AACjD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,UAAU,CAAC;AACzB,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,OAAO,EACL,aAAa,EACb,WAAW,EACX,KAAK,wBAAwB,GAC9B,MAAM,2BAA2B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EACb,WAAW,EACX,KAAK,wBAAwB,GAC9B,MAAM,2BAA2B,CAAC;AACnC,cAAc,oCAAoC,CAAC;AACnD,cAAc,kCAAkC,CAAC;AACjD,cAAc,UAAU,CAAC;AACzB,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/flow-remote-core",
3
- "version": "0.2.0-alpha.45",
3
+ "version": "0.2.0-alpha.46",
4
4
  "type": "module",
5
5
  "description": "Core functionality to setup a remote/host environment",
6
6
  "homepage": "https://mittwald.github.io/flow",
@@ -24,22 +24,22 @@
24
24
  "test:compile": "tsc --noEmit"
25
25
  },
26
26
  "dependencies": {
27
- "@quilted/threads": "^3.1.2",
27
+ "@quilted/threads": "^3.1.3",
28
28
  "@remote-dom/core": "1.5.1",
29
29
  "remeda": "^2.20.2"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@mittwald/typescript-config": "workspace:*",
33
33
  "@types/node": "^22.13.4",
34
- "nx": "^20.4.4",
34
+ "nx": "^20.4.5",
35
35
  "prettier": "^3.5.1",
36
36
  "rimraf": "^6.0.1",
37
37
  "rollup-preserve-directives": "^1.1.3",
38
38
  "typescript": "^5.7.3",
39
- "vite": "^6.1.0",
39
+ "vite": "^6.1.1",
40
40
  "vite-plugin-checker": "^0.8.0",
41
41
  "vite-plugin-dts": "^4.5.0",
42
42
  "vite-plugin-externalize-deps": "^0.9.0"
43
43
  },
44
- "gitHead": "ec17c69f6103b6f015eab5aa833145fda68ea058"
44
+ "gitHead": "ef82ec9b2b1c6a47574ef2e1ec0ecc76a39aad54"
45
45
  }
@@ -1,3 +0,0 @@
1
- export declare const connectHostIframe: (iframe: HTMLIFrameElement) => void;
2
- export declare const connectHostIframeRef: (ref: HTMLIFrameElement | null) => void;
3
- //# sourceMappingURL=connectHostIframe.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"connectHostIframe.d.ts","sourceRoot":"","sources":["../../../src/connection/connectHostIframe.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,iBAAiB,WAAY,iBAAiB,SAa1D,CAAC;AAEF,eAAO,MAAM,oBAAoB,QAAS,iBAAiB,GAAG,IAAI,SAKjE,CAAC"}