@mittwald/flow-remote-core 0.2.0-alpha.782 → 0.2.0-alpha.784
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/js/core/src/file.mjs +12 -10
- package/dist/js/core/src/file.mjs.map +1 -1
- package/dist/js/index-node.mjs +16 -15
- package/dist/js/index-node.mjs.map +1 -0
- package/dist/js/index.mjs +15 -17
- package/dist/js/index.mjs.map +1 -0
- package/dist/js/remote-core/src/connection/connectHostRenderRoot.mjs +55 -45
- package/dist/js/remote-core/src/connection/connectHostRenderRoot.mjs.map +1 -1
- package/dist/js/remote-core/src/connection/connectRemoteIframe.mjs +62 -47
- package/dist/js/remote-core/src/connection/connectRemoteIframe.mjs.map +1 -1
- package/dist/js/remote-core/src/connection/types.mjs +9 -11
- package/dist/js/remote-core/src/connection/types.mjs.map +1 -1
- package/dist/js/remote-core/src/error.mjs +8 -10
- package/dist/js/remote-core/src/error.mjs.map +1 -1
- package/dist/js/remote-core/src/ext-bridge/implementation.mjs +12 -8
- package/dist/js/remote-core/src/ext-bridge/implementation.mjs.map +1 -1
- package/dist/js/remote-core/src/serialization/FlowThreadSerialization.mjs +59 -47
- package/dist/js/remote-core/src/serialization/FlowThreadSerialization.mjs.map +1 -1
- package/dist/js/remote-core/src/serialization/Serializer.mjs +35 -33
- package/dist/js/remote-core/src/serialization/Serializer.mjs.map +1 -1
- package/dist/js/remote-core/src/serialization/serializers/dataTransferText.mjs +21 -20
- package/dist/js/remote-core/src/serialization/serializers/dataTransferText.mjs.map +1 -1
- package/dist/js/remote-core/src/serialization/serializers/date.mjs +14 -13
- package/dist/js/remote-core/src/serialization/serializers/date.mjs.map +1 -1
- package/dist/js/remote-core/src/serialization/serializers/file.mjs +29 -29
- package/dist/js/remote-core/src/serialization/serializers/file.mjs.map +1 -1
- package/dist/js/remote-core/src/serialization/serializers/fileList.mjs +22 -20
- package/dist/js/remote-core/src/serialization/serializers/fileList.mjs.map +1 -1
- package/dist/js/remote-core/src/serialization/serializers/formData.mjs +34 -27
- package/dist/js/remote-core/src/serialization/serializers/formData.mjs.map +1 -1
- package/dist/js/remote-core/src/serialization/serializers/index.mjs +7 -23
- package/dist/js/remote-core/src/serialization/serializers/index.mjs.map +1 -1
- package/dist/js/remote-core/src/serialization/serializers/passwordPolicy.mjs +14 -13
- package/dist/js/remote-core/src/serialization/serializers/passwordPolicy.mjs.map +1 -1
- package/dist/js/remote-core/src/shim.mjs +12 -11
- package/dist/js/remote-core/src/shim.mjs.map +1 -1
- package/package.json +8 -8
- package/dist/js/_virtual/_rolldown/runtime.mjs +0 -13
- package/dist/js/core/src/index.mjs +0 -1
- package/dist/js/remote-core/src/connection/index.mjs +0 -3
- package/dist/js/remote-core/src/serialization/index.mjs +0 -9
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import "./Serializer.mjs";
|
|
2
|
-
import "./serializers/date.mjs";
|
|
3
|
-
import "./serializers/file.mjs";
|
|
4
|
-
import "./serializers/fileList.mjs";
|
|
5
|
-
import "./serializers/dataTransferText.mjs";
|
|
6
|
-
import "./serializers/formData.mjs";
|
|
7
|
-
import "./serializers/passwordPolicy.mjs";
|
|
8
|
-
import "./serializers/index.mjs";
|
|
9
|
-
import "./FlowThreadSerialization.mjs";
|