@mittwald/flow-remote-react-components 1.0.1 → 1.0.3

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.
@@ -3,7 +3,7 @@
3
3
  import { Version } from "@mittwald/flow-remote-core";
4
4
  //#region src/version.ts
5
5
  var communicationVersion = Version.v5;
6
- var packageVersion = "1.0.0";
6
+ var packageVersion = "1.0.3";
7
7
  var version = communicationVersion;
8
8
  //#endregion
9
9
  export { communicationVersion, packageVersion, version };
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=RemoteSerialization.browser.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RemoteSerialization.browser.test.d.ts","sourceRoot":"","sources":["../../../src/tests/RemoteSerialization.browser.test.tsx"],"names":[],"mappings":""}
@@ -1 +1 @@
1
- {"version":3,"file":"environments.d.ts","sourceRoot":"","sources":["../../../../src/tests/lib/environments.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAW,MAAM,EAAE,MAAM,sBAAsB,CAAC;AAEvD,OAAO,KAAK,EAAE,OAAO,EAAE,wBAAwB,EAAE,MAAM,gBAAgB,CAAC;AACxE,OAAO,KAAK,gBAAgB,MAAM,SAAS,CAAC;AAC5C,OAAO,KAAK,UAAU,MAAM,iCAAiC,CAAC;AAC9D,OAAO,KAAK,uBAAuB,MAAM,4DAA4D,CAAC;AAMtG,QAAA,MAAM,eAAe,EAAE,OAAO,UAAU,GAAG,OAAO,uBAGjD,CAAC;AAeF,eAAO,MAAM,YAAY,EAAE,OAAO,MAKjC,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,OAAO,MAKhC,CAAC;AAwFF,UAAU,eAAe;IACvB,QAAQ,EAAE,MAAM,MAAM,CAAC;IACvB,UAAU,EAAE,OAAO,eAAe,GAAG,OAAO,gBAAgB,CAAC;IAC7D,MAAM,EAAE,OAAO,MAAM,CAAC;IACtB,SAAS,EAAE,OAAO,CAAC;IACnB,cAAc,EAAE,CACd,WAAW,EAAE,MAAM,EACnB,OAAO,CAAC,EAAE,wBAAwB,KAC/B,OAAO,CAAC,IAAI,CAAC,CAAC;CACpB;AAkBD,eAAO,MAAM,gBAAgB,6CAGnB,CAAC;AAEX,MAAM,WAAW,gBAAgB;IAC/B,gEAAgE;IAChE,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,8DAA8D;IAC9D,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;CACpB;AAED;;;;;;GAMG;AACH,eAAO,MAAM,YAAY,GAAI,gBAAgB,gBAAgB,KAAG,OACzD,CAAC"}
1
+ {"version":3,"file":"environments.d.ts","sourceRoot":"","sources":["../../../../src/tests/lib/environments.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAW,MAAM,EAAE,MAAM,sBAAsB,CAAC;AAEvD,OAAO,KAAK,EAAE,OAAO,EAAE,wBAAwB,EAAE,MAAM,gBAAgB,CAAC;AACxE,OAAO,KAAK,gBAAgB,MAAM,SAAS,CAAC;AAC5C,OAAO,KAAK,UAAU,MAAM,iCAAiC,CAAC;AAC9D,OAAO,KAAK,uBAAuB,MAAM,4DAA4D,CAAC;AAOtG,QAAA,MAAM,eAAe,EAAE,OAAO,UAAU,GAAG,OAAO,uBAGjD,CAAC;AA4BF,eAAO,MAAM,YAAY,EAAE,OAAO,MAKjC,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,OAAO,MAKhC,CAAC;AAwFF,UAAU,eAAe;IACvB,QAAQ,EAAE,MAAM,MAAM,CAAC;IACvB,UAAU,EAAE,OAAO,eAAe,GAAG,OAAO,gBAAgB,CAAC;IAC7D,MAAM,EAAE,OAAO,MAAM,CAAC;IACtB,SAAS,EAAE,OAAO,CAAC;IACnB,cAAc,EAAE,CACd,WAAW,EAAE,MAAM,EACnB,OAAO,CAAC,EAAE,wBAAwB,KAC/B,OAAO,CAAC,IAAI,CAAC,CAAC;CACpB;AAkBD,eAAO,MAAM,gBAAgB,6CAGnB,CAAC;AAEX,MAAM,WAAW,gBAAgB;IAC/B,gEAAgE;IAChE,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,8DAA8D;IAC9D,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;CACpB;AAED;;;;;;GAMG;AACH,eAAO,MAAM,YAAY,GAAI,gBAAgB,gBAAgB,KAAG,OACzD,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { RemoteConnection, RemoteReceiver } from '@mittwald/flow-remote-core';
2
+ export declare const createSerializedConnection: (target: RemoteConnection) => RemoteConnection;
3
+ /**
4
+ * A stand-in receiver for <RemoteRoot />, whose connection round-trips through
5
+ * FlowThreadSerialization before reaching `receiver`. <RemoteRenderer /> keeps
6
+ * the real `receiver`; only the remote half is rerouted.
7
+ */
8
+ export declare const createSerializedReceiver: (receiver: RemoteReceiver) => RemoteReceiver;
9
+ //# sourceMappingURL=serializedConnection.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"serializedConnection.d.ts","sourceRoot":"","sources":["../../../../src/tests/lib/serializedConnection.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,gBAAgB,EACrB,KAAK,cAAc,EACpB,MAAM,4BAA4B,CAAC;AAyBpC,eAAO,MAAM,0BAA0B,GACrC,QAAQ,gBAAgB,KACvB,gBAkCF,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,wBAAwB,GACnC,UAAU,cAAc,KACvB,cASmB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/flow-remote-react-components",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "type": "module",
5
5
  "description": "React components that can be used in a remote environment",
6
6
  "homepage": "https://flow.mittwald.de",
@@ -50,19 +50,20 @@
50
50
  "test:visual:update": "vitest run --project=visual --browser.headless --update --browser.fileParallelism=false"
51
51
  },
52
52
  "dependencies": {
53
- "@mittwald/flow-react-components": "1.0.1",
54
- "@mittwald/flow-remote-core": "1.0.1",
55
- "@mittwald/flow-remote-elements": "1.0.1",
53
+ "@mittwald/flow-react-components": "1.0.3",
54
+ "@mittwald/flow-remote-core": "1.0.3",
55
+ "@mittwald/flow-remote-elements": "1.0.3",
56
56
  "@mittwald/remote-dom-react": "1.2.2-mittwald.10",
57
57
  "@types/react": "^19.2",
58
58
  "react-error-boundary": "^6.1.3"
59
59
  },
60
60
  "devDependencies": {
61
61
  "@internationalized/date": "^3.12.3",
62
- "@mittwald/ext-bridge": "1.0.1",
63
- "@mittwald/flow-core": "1.0.1",
64
- "@mittwald/flow-remote-react-renderer": "1.0.1",
65
- "@mittwald/typescript-config": "1.0.1",
62
+ "@mittwald/ext-bridge": "1.0.3",
63
+ "@mittwald/flow-core": "1.0.3",
64
+ "@mittwald/flow-remote-react-renderer": "1.0.3",
65
+ "@mittwald/typescript-config": "1.0.3",
66
+ "@quilted/threads": "^3.3.1",
66
67
  "@types/node": "^25.9.3",
67
68
  "@types/react-dom": "^19.2",
68
69
  "@types/semver": "^7.8.0",
@@ -86,7 +87,7 @@
86
87
  },
87
88
  "peerDependencies": {
88
89
  "@internationalized/date": "^3.12.2",
89
- "@mittwald/ext-bridge": "1.0.1",
90
+ "@mittwald/ext-bridge": "1.0.3",
90
91
  "react": "^19.2.0",
91
92
  "react-hook-form": "^7.65.0"
92
93
  },
@@ -101,5 +102,5 @@
101
102
  "optional": true
102
103
  }
103
104
  },
104
- "gitHead": "293f7e960fe087fa5110a7d1bc63e530492d9316"
105
+ "gitHead": "cb1fd12a44c7d1ac81b044a4ff6d9601aec6aa43"
105
106
  }