@quenty/basicpane 13.31.0 → 13.31.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/CHANGELOG.md +4 -0
- package/package.json +6 -6
- package/src/Shared/BasicPane.lua +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [13.31.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/basicpane@13.31.0...@quenty/basicpane@13.31.1) (2026-05-30)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/basicpane
|
|
9
|
+
|
|
6
10
|
# [13.31.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/basicpane@13.30.2...@quenty/basicpane@13.31.0) (2026-05-29)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @quenty/basicpane
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/basicpane",
|
|
3
|
-
"version": "13.31.
|
|
3
|
+
"version": "13.31.1",
|
|
4
4
|
"description": "Base UI object with visibility and a maid",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -28,16 +28,16 @@
|
|
|
28
28
|
"Quenty"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@quenty/brio": "14.30.
|
|
31
|
+
"@quenty/brio": "14.30.1",
|
|
32
32
|
"@quenty/ducktype": "5.11.0",
|
|
33
33
|
"@quenty/loader": "10.11.0",
|
|
34
34
|
"@quenty/maid": "3.9.0",
|
|
35
|
-
"@quenty/rx": "13.28.
|
|
36
|
-
"@quenty/signal": "7.13.
|
|
37
|
-
"@quenty/valueobject": "13.31.
|
|
35
|
+
"@quenty/rx": "13.28.3",
|
|
36
|
+
"@quenty/signal": "7.13.1",
|
|
37
|
+
"@quenty/valueobject": "13.31.1"
|
|
38
38
|
},
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "598b2b62b36bdcbdbbd56f7db10c399831cc6eba"
|
|
43
43
|
}
|
package/src/Shared/BasicPane.lua
CHANGED
|
@@ -64,7 +64,7 @@ function BasicPane.new(gui: GuiObject?): BasicPane
|
|
|
64
64
|
self._visible = self._maid:Add(ValueObject.new(false, "boolean"))
|
|
65
65
|
|
|
66
66
|
--[=[
|
|
67
|
-
Fires whenever visibility changes.
|
|
67
|
+
Fires whenever visibility changes. Fires with isVisible, doNotAnimate, and a maid which
|
|
68
68
|
has the lifetime of the visibility.
|
|
69
69
|
|
|
70
70
|
:::info
|
|
@@ -120,7 +120,7 @@ end
|
|
|
120
120
|
--[=[
|
|
121
121
|
Returns an observable that observes visibility
|
|
122
122
|
|
|
123
|
-
@param predicate function | nil -- Optional predicate. If not
|
|
123
|
+
@param predicate function | nil -- Optional predicate. If not included returns the value.
|
|
124
124
|
@return Observable<Brio<boolean>>
|
|
125
125
|
]=]
|
|
126
126
|
function BasicPane.ObserveVisibleBrio(
|