@rbxts/app-forge 0.7.2-alpha.30 → 0.7.2-alpha.32
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/out/mount.luau +0 -3
- package/out/renderManager.luau +4 -2
- package/package.json +1 -1
package/out/mount.luau
CHANGED
package/out/renderManager.luau
CHANGED
|
@@ -4,6 +4,7 @@ local TS = _G[script]
|
|
|
4
4
|
local _vide = TS.import(script, TS.getModule(script, "@rbxts", "vide").src)
|
|
5
5
|
local apply = _vide.apply
|
|
6
6
|
local create = _vide.create
|
|
7
|
+
local mount = _vide.mount
|
|
7
8
|
-- Types
|
|
8
9
|
-- Components
|
|
9
10
|
local AppRegistry = TS.import(script, script.Parent, "appRegistry").AppRegistry
|
|
@@ -139,8 +140,9 @@ do
|
|
|
139
140
|
}
|
|
140
141
|
local childRender = _forge:renderApp(_object, renderedSet, parentContainer)
|
|
141
142
|
table.insert(accumulated, childRender)
|
|
142
|
-
|
|
143
|
-
|
|
143
|
+
mount(function()
|
|
144
|
+
return childRender
|
|
145
|
+
end, parentContainer)
|
|
144
146
|
self:renderChildren(props, childName, forge, renderedSet, accumulated, childRender)
|
|
145
147
|
end
|
|
146
148
|
end
|