@rbxts/app-forge 0.2.8 → 0.2.9

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/init.luau +5 -1
  2. package/package.json +1 -1
package/out/init.luau CHANGED
@@ -84,7 +84,11 @@ do
84
84
  _callback(_v, _k, AppRegistry)
85
85
  end
86
86
  -- ▲ ReadonlyMap.forEach ▲
87
- return self:renderApps(props)
87
+ local _self = self
88
+ local _object = table.clone(props)
89
+ setmetatable(_object, nil)
90
+ _object.names = names
91
+ return _self:renderApps(_object)
88
92
  end
89
93
  end
90
94
  exports.Render = TS.import(script, script, "helpers").Render
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/app-forge",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "description": "An App Manager for react",
5
5
  "main": "out/init.lua",
6
6
  "packageManager": "bun@1.3.1",