@rbxts/app-forge 0.6.0-alpha.75 → 0.6.0-alpha.77
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/vide/init.luau +3 -4
- package/package.json +1 -1
package/out/vide/init.luau
CHANGED
|
@@ -134,7 +134,6 @@ do
|
|
|
134
134
|
AnchorPoint = Vector2.new(0.5, 0.5),
|
|
135
135
|
Position = UDim2.fromScale(0.5, 0.5),
|
|
136
136
|
Size = UDim2.fromScale(1, 1),
|
|
137
|
-
Interactable = false,
|
|
138
137
|
})
|
|
139
138
|
apply(Container)({
|
|
140
139
|
[0] = self:renderMount(props),
|
|
@@ -143,10 +142,10 @@ do
|
|
|
143
142
|
end
|
|
144
143
|
function AppForge:mount(callback, props, target)
|
|
145
144
|
local Container = callback()
|
|
146
|
-
apply(Container)({
|
|
147
|
-
[0] = self:renderMount(props),
|
|
148
|
-
})
|
|
149
145
|
self.innerMount = mount(function()
|
|
146
|
+
apply(Container)({
|
|
147
|
+
[0] = self:renderMount(props),
|
|
148
|
+
})
|
|
150
149
|
return Container
|
|
151
150
|
end, target)
|
|
152
151
|
return self.innerMount
|