@rbxts/app-forge 0.7.2-alpha.22 → 0.7.2-alpha.23
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/main.d.ts +1 -1
- package/out/main.luau +1 -1
- package/package.json +1 -1
package/out/main.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ export default class AppForge extends Renders {
|
|
|
26
26
|
open(name: AppNames, rules?: boolean): void;
|
|
27
27
|
close(name: AppNames, rules?: boolean): void;
|
|
28
28
|
toggle(name: AppNames, rules?: boolean): void;
|
|
29
|
-
story(props: AppProps,
|
|
29
|
+
story(props: AppProps, target: GuiObject, render?: Types.Props.Render): Frame;
|
|
30
30
|
mount(node: Vide.Node, props: Types.Props.Main, target: Instance): Destructor;
|
|
31
31
|
unMount(): void;
|
|
32
32
|
}
|
package/out/main.luau
CHANGED
|
@@ -263,7 +263,7 @@ do
|
|
|
263
263
|
end
|
|
264
264
|
self:set(name, not self:getSource(name)(), rules)
|
|
265
265
|
end
|
|
266
|
-
function AppForge:story(props,
|
|
266
|
+
function AppForge:story(props, target, render)
|
|
267
267
|
self.debug:logTag("lifecycle", "story", "Creating story mount")
|
|
268
268
|
local Container = create("Frame")({
|
|
269
269
|
Name = "Story Container",
|