@rbxts/app-forge 0.5.0 → 0.5.1
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/helpers.luau +13 -1
- package/out/types.d.ts +1 -1
- package/package.json +1 -1
package/out/helpers.luau
CHANGED
|
@@ -11,7 +11,19 @@ local function Render(props)
|
|
|
11
11
|
local names = _binding.names
|
|
12
12
|
local forge = _binding.forge
|
|
13
13
|
if not __px then
|
|
14
|
-
local
|
|
14
|
+
local _result = config
|
|
15
|
+
if _result ~= nil then
|
|
16
|
+
_result = _result.px.target
|
|
17
|
+
end
|
|
18
|
+
local _result_1 = config
|
|
19
|
+
if _result_1 ~= nil then
|
|
20
|
+
_result_1 = _result_1.px.resolution
|
|
21
|
+
end
|
|
22
|
+
local _result_2 = config
|
|
23
|
+
if _result_2 ~= nil then
|
|
24
|
+
_result_2 = _result_2.px.minScale
|
|
25
|
+
end
|
|
26
|
+
local _exp = usePx(_result, _result_1, _result_2)
|
|
15
27
|
__px = true
|
|
16
28
|
local _ = __px
|
|
17
29
|
end
|
package/out/types.d.ts
CHANGED