@rbxts/app-forge 0.6.0-alpha.1 → 0.6.0-alpha.10
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/index.d.ts +1 -1
- package/out/react/container.d.ts +3 -4
- package/out/react/decorator.d.ts +1 -1
- package/out/react/helpers.d.ts +2 -17
- package/out/vide/helpers.d.ts +2 -1
- package/package.json +9 -9
package/out/index.d.ts
CHANGED
|
@@ -4,5 +4,5 @@ export { default as CreateReactForge } from "./react";
|
|
|
4
4
|
export { default as CreateVideForge } from "./vide";
|
|
5
5
|
export { Render as RenderReact } from "./react/helpers";
|
|
6
6
|
export { Render as RenderVide } from "./vide/helpers";
|
|
7
|
-
export type { MainProps as ReactProps, ClassProps as ReactClassProps } from "./react/types";
|
|
8
7
|
export type { MainProps as VideProps, ClassProps as VideClassProps } from "./vide/types";
|
|
8
|
+
export type { MainProps as ReactProps, ClassProps as ReactClassProps, NameProps, } from "./react/types";
|
package/out/react/container.d.ts
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
import React from "@rbxts/react";
|
|
2
1
|
import type Types from "./types";
|
|
3
|
-
export declare function AppContainer(props: Types.NameProps & Types.MainProps):
|
|
2
|
+
export declare function AppContainer(props: Types.NameProps & Types.MainProps): import("@rbxts/react").ReactElement<{
|
|
4
3
|
key: string;
|
|
5
4
|
ZIndexBehavior: Enum.ZIndexBehavior.Sibling;
|
|
6
5
|
ResetOnSpawn: boolean;
|
|
7
|
-
}, string |
|
|
6
|
+
}, string | import("@rbxts/react").JSXElementConstructor<any>> | import("@rbxts/react").ReactElement<{
|
|
8
7
|
key: string;
|
|
9
8
|
BackgroundTransparency: number;
|
|
10
9
|
Size: UDim2;
|
|
11
|
-
}, string |
|
|
10
|
+
}, string | import("@rbxts/react").JSXElementConstructor<any>>;
|
package/out/react/decorator.d.ts
CHANGED
package/out/react/helpers.d.ts
CHANGED
|
@@ -1,18 +1,3 @@
|
|
|
1
|
+
import React from "@rbxts/react";
|
|
1
2
|
import Types from "./types";
|
|
2
|
-
export declare function Render(props: Types.NameProps & Types.MainProps):
|
|
3
|
-
key: string;
|
|
4
|
-
ZIndexBehavior: Enum.ZIndexBehavior.Sibling;
|
|
5
|
-
ResetOnSpawn: boolean;
|
|
6
|
-
}, string | import("@rbxts/react").JSXElementConstructor<any>> | import("@rbxts/react").ReactElement<{
|
|
7
|
-
key: string;
|
|
8
|
-
BackgroundTransparency: number;
|
|
9
|
-
Size: UDim2;
|
|
10
|
-
}, string | import("@rbxts/react").JSXElementConstructor<any>> | (import("@rbxts/react").ReactElement<{
|
|
11
|
-
key: string;
|
|
12
|
-
ZIndexBehavior: Enum.ZIndexBehavior.Sibling;
|
|
13
|
-
ResetOnSpawn: boolean;
|
|
14
|
-
}, string | import("@rbxts/react").JSXElementConstructor<any>> | import("@rbxts/react").ReactElement<{
|
|
15
|
-
key: string;
|
|
16
|
-
BackgroundTransparency: number;
|
|
17
|
-
Size: UDim2;
|
|
18
|
-
}, string | import("@rbxts/react").JSXElementConstructor<any>>)[];
|
|
3
|
+
export declare function Render(props: Types.NameProps & Types.MainProps): React.ReactNode;
|
package/out/vide/helpers.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rbxts/app-forge",
|
|
3
|
-
"version": "0.6.0-alpha.
|
|
3
|
+
"version": "0.6.0-alpha.10",
|
|
4
4
|
"description": "An App Manager for react",
|
|
5
|
-
"main": "out/init.
|
|
5
|
+
"main": "out/init.luau",
|
|
6
6
|
"packageManager": "bun@1.3.1",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"build": "rbxtsc",
|
|
@@ -41,14 +41,14 @@
|
|
|
41
41
|
"typescript": "^5.9.3"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@rbxts/
|
|
45
|
-
"@rbxts/services": "^1.6.0"
|
|
44
|
+
"@rbxts/object-utils": "^1.0.4",
|
|
45
|
+
"@rbxts/services": "^1.6.0",
|
|
46
|
+
"@rbxts/set-timeout": "^1.1.2"
|
|
46
47
|
},
|
|
47
48
|
"peerDependencies": {
|
|
48
|
-
"@rbxts/loners-pretty-react-hooks": "
|
|
49
|
-
"@rbxts/loners-pretty-vide-utils": "
|
|
50
|
-
"@rbxts/
|
|
51
|
-
"@rbxts/
|
|
52
|
-
"@rbxts/vide": "*"
|
|
49
|
+
"@rbxts/loners-pretty-react-hooks": "^0.2.9",
|
|
50
|
+
"@rbxts/loners-pretty-vide-utils": "^0.1.4",
|
|
51
|
+
"@rbxts/react": "^17.3.7-ts.1",
|
|
52
|
+
"@rbxts/vide": "^0.5.7"
|
|
53
53
|
}
|
|
54
54
|
}
|