@rbxts/app-forge 0.6.0-alpha.42 → 0.6.0-alpha.44
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/decorator.d.ts +1 -1
- package/out/vide/types.d.ts +11 -2
- package/package.json +2 -2
package/out/vide/decorator.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import Vide from "@rbxts/vide";
|
|
2
2
|
import type Types from "./types";
|
|
3
3
|
import type AppForge from ".";
|
|
4
|
-
export declare const AppRegistry: Map<string, Types.
|
|
4
|
+
export declare const AppRegistry: Map<string, Types.AppRegistryAny>;
|
|
5
5
|
export declare function App<N extends AppNames>(props: Types.AppRegistryProps<N>): <T extends new (props: Types.MainProps) => Args>(constructor: T) => T;
|
|
6
6
|
export declare abstract class Args {
|
|
7
7
|
readonly forge: AppForge;
|
package/out/vide/types.d.ts
CHANGED
|
@@ -30,6 +30,15 @@ declare namespace Types {
|
|
|
30
30
|
px: typeof import("@rbxts/loners-pretty-vide-utils").px;
|
|
31
31
|
};
|
|
32
32
|
|
|
33
|
+
type AppRegistryAny = {
|
|
34
|
+
constructor: new (props: Types.MainProps) => Args;
|
|
35
|
+
visible?: boolean;
|
|
36
|
+
rules?: {
|
|
37
|
+
parent?: string;
|
|
38
|
+
exclusiveGroup?: string;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
|
|
33
42
|
type AppRegistry<N extends AppNames = AppNames> = {
|
|
34
43
|
constructor: new (props: MainProps) => Args;
|
|
35
44
|
visible?: boolean;
|
|
@@ -38,8 +47,8 @@ declare namespace Types {
|
|
|
38
47
|
|
|
39
48
|
namespace Rules {
|
|
40
49
|
type All<N extends AppNames> = {
|
|
41
|
-
parent?: Exclude<AppNames, N
|
|
42
|
-
exclusiveGroup?: GroupNames
|
|
50
|
+
parent?: Exclude<AppNames, N>;
|
|
51
|
+
exclusiveGroup?: GroupNames;
|
|
43
52
|
};
|
|
44
53
|
}
|
|
45
54
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rbxts/app-forge",
|
|
3
|
-
"version": "0.6.0-alpha.
|
|
4
|
-
"description": "An App Manager for
|
|
3
|
+
"version": "0.6.0-alpha.44",
|
|
4
|
+
"description": "An App Manager for Vide",
|
|
5
5
|
"main": "out/init.lua",
|
|
6
6
|
"types": "out/index.d.ts",
|
|
7
7
|
"packageManager": "bun@1.3.1",
|