@rbxts/app-forge 0.7.2-prototype.10 → 0.7.2-prototype.11

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.d.ts CHANGED
@@ -10,7 +10,7 @@ export default class AppForge extends Renders {
10
10
  private innerMount?;
11
11
  constructor();
12
12
  private createSource;
13
- getSource(name: AppNames, group?: AppGroups): Vide.Source<boolean> | undefined;
13
+ getSource(name: AppNames, group?: AppGroups): Vide.Source<boolean>;
14
14
  bind(name: AppNames, group: AppGroups | undefined, value: Vide.Source<boolean>): void;
15
15
  set(name: AppNames, group: AppGroups | undefined, value: boolean, rules?: boolean): void;
16
16
  open(name: AppNames, group?: AppGroups, rules?: boolean): void;
@@ -10,7 +10,7 @@ local function ExclusiveGroupRule(forge, name, group)
10
10
  if not entry then
11
11
  forge.logger:log("ERROR", `Failed to find app entry for "ExclusiveGroupRule" name {name} group {group} `)
12
12
  end
13
- local entryVisible = forge:getSource(name)()
13
+ local entryVisible = forge:getSource(name, group)()
14
14
  if not entryVisible then
15
15
  return nil
16
16
  end
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/app-forge",
3
- "version": "0.7.2-prototype.10",
3
+ "version": "0.7.2-prototype.11",
4
4
  "description": "An App Manager for Vide",
5
5
  "main": "out/init.lua",
6
6
  "types": "out/index.d.ts",