solid-ctrl-flow 1.0.0 → 1.0.1
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/flow.mjs +4 -1
- package/dist/flow.umd.js +4 -1
- package/package.json +1 -1
package/dist/flow.mjs
CHANGED
|
@@ -88,10 +88,13 @@ function Source(props) {
|
|
|
88
88
|
});
|
|
89
89
|
}
|
|
90
90
|
function Joint(props) {
|
|
91
|
+
const {
|
|
92
|
+
Provider
|
|
93
|
+
} = this;
|
|
91
94
|
const obj = createMutable({
|
|
92
95
|
attached: false
|
|
93
96
|
});
|
|
94
|
-
return createComponent(
|
|
97
|
+
return createComponent(Provider, {
|
|
95
98
|
value: obj,
|
|
96
99
|
get children() {
|
|
97
100
|
return props.children;
|
package/dist/flow.umd.js
CHANGED
|
@@ -90,10 +90,13 @@
|
|
|
90
90
|
});
|
|
91
91
|
}
|
|
92
92
|
function Joint(props) {
|
|
93
|
+
const {
|
|
94
|
+
Provider
|
|
95
|
+
} = this;
|
|
93
96
|
const obj = store.createMutable({
|
|
94
97
|
attached: false
|
|
95
98
|
});
|
|
96
|
-
return solidJs.createComponent(
|
|
99
|
+
return solidJs.createComponent(Provider, {
|
|
97
100
|
value: obj,
|
|
98
101
|
get children() {
|
|
99
102
|
return props.children;
|