@rbxts/app-forge 0.7.2-prototype.15 → 0.7.2-prototype.17

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.
Files changed (2) hide show
  1. package/out/renders.luau +11 -4
  2. package/package.json +1 -1
package/out/renders.luau CHANGED
@@ -74,11 +74,18 @@ do
74
74
  function Renders:getGroupEntries(group)
75
75
  local entries
76
76
  -- ▼ ReadonlyMap.forEach ▼
77
- local _callback = function(regGroupEntries, regGroup)
78
- if group ~= regGroup then
79
- return nil
77
+ local _callback = function(regGroupEntries, _)
78
+ -- ReadonlyMap.forEach
79
+ local _callback_1 = function(regNameEntries, regGroup)
80
+ if group ~= regGroup then
81
+ return nil
82
+ end
83
+ entries = regNameEntries
80
84
  end
81
- entries = regGroupEntries
85
+ for _k, _v in regGroupEntries do
86
+ _callback_1(_v, _k, regGroupEntries)
87
+ end
88
+ -- ▲ ReadonlyMap.forEach ▲
82
89
  end
83
90
  for _k, _v in AppRegistry do
84
91
  _callback(_v, _k, AppRegistry)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/app-forge",
3
- "version": "0.7.2-prototype.15",
3
+ "version": "0.7.2-prototype.17",
4
4
  "description": "An App Manager for Vide",
5
5
  "main": "out/init.lua",
6
6
  "types": "out/index.d.ts",