@rbxts/app-forge 0.7.2-alpha.6 → 0.7.2-alpha.7
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/init.luau +6 -1
- package/package.json +1 -1
package/out/vide/init.luau
CHANGED
|
@@ -109,8 +109,13 @@ do
|
|
|
109
109
|
local _name = name
|
|
110
110
|
local _value = value
|
|
111
111
|
_sources[_name] = _value
|
|
112
|
+
local prev
|
|
112
113
|
effect(function()
|
|
113
|
-
value()
|
|
114
|
+
prev = value()
|
|
115
|
+
self.debug:logTag("state", name, "Visibility changed", {
|
|
116
|
+
from = prev,
|
|
117
|
+
to = value,
|
|
118
|
+
})
|
|
114
119
|
untrack(function()
|
|
115
120
|
return self:checkRules(name)
|
|
116
121
|
end)
|