@quenty/basicpane 13.4.0 → 13.5.1-canary.497.25c8512.0

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 CHANGED
@@ -3,6 +3,22 @@
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.5.1-canary.497.25c8512.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/basicpane@13.5.0...@quenty/basicpane@13.5.1-canary.497.25c8512.0) (2024-09-20)
7
+
8
+ **Note:** Version bump only for package @quenty/basicpane
9
+
10
+
11
+
12
+
13
+
14
+ # [13.5.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/basicpane@13.4.0...@quenty/basicpane@13.5.0) (2024-09-12)
15
+
16
+ **Note:** Version bump only for package @quenty/basicpane
17
+
18
+
19
+
20
+
21
+
6
22
  # [13.4.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/basicpane@13.3.0...@quenty/basicpane@13.4.0) (2024-08-09)
7
23
 
8
24
  **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.4.0",
3
+ "version": "13.5.1-canary.497.25c8512.0",
4
4
  "description": "Base UI object with visibility and a maid",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,16 +25,16 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/brio": "^14.4.0",
29
- "@quenty/ducktype": "^5.3.0",
30
- "@quenty/loader": "^10.3.0",
31
- "@quenty/maid": "^3.2.0",
32
- "@quenty/rx": "^13.4.0",
33
- "@quenty/signal": "^7.3.0",
34
- "@quenty/valueobject": "^13.4.0"
28
+ "@quenty/brio": "14.5.1-canary.497.25c8512.0",
29
+ "@quenty/ducktype": "5.4.1-canary.497.25c8512.0",
30
+ "@quenty/loader": "10.4.1-canary.497.25c8512.0",
31
+ "@quenty/maid": "3.3.0",
32
+ "@quenty/rx": "13.5.1-canary.497.25c8512.0",
33
+ "@quenty/signal": "7.4.1-canary.497.25c8512.0",
34
+ "@quenty/valueobject": "13.5.1-canary.497.25c8512.0"
35
35
  },
36
36
  "publishConfig": {
37
37
  "access": "public"
38
38
  },
39
- "gitHead": "ba466bdbc05c42fb607cf5e228c16339201d21d7"
39
+ "gitHead": "25c85124769eb0c92ad4d4c51bc950d9c319c994"
40
40
  }
@@ -110,8 +110,8 @@ end
110
110
  @return Observable<Brio<boolean>>
111
111
  ]=]
112
112
  function BasicPane:ObserveVisibleBrio(predicate)
113
- return self._visible:ObserveBrio(predicate or function(value)
114
- return value
113
+ return self._visible:ObserveBrio(predicate or function(isVisible)
114
+ return isVisible
115
115
  end)
116
116
  end
117
117