@quenty/guivisiblemanager 6.2.0 → 6.2.1-canary.281.b720162.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 +11 -0
- package/package.json +6 -6
- package/src/Client/GuiVisibleManager.lua +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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
|
+
## [6.2.1-canary.281.b720162.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/guivisiblemanager@6.2.0...@quenty/guivisiblemanager@6.2.1-canary.281.b720162.0) (2022-08-14)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* Add BasicPaneUtils.whenVisibleBrio(createBasicPane) which allows for guis only while visible. ([05dd547](https://github.com/Quenty/NevermoreEngine/commit/05dd54729f9dd53348d24150e60a4bd5fc9fcea1))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [6.2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/guivisiblemanager@6.1.0...@quenty/guivisiblemanager@6.2.0) (2022-07-31)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/guivisiblemanager
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/guivisiblemanager",
|
|
3
|
-
"version": "6.2.0",
|
|
3
|
+
"version": "6.2.1-canary.281.b720162.0",
|
|
4
4
|
"description": "Help manage the visibility of GUIs while only constructing the Gui while visible",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,13 +25,13 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/baseobject": "
|
|
29
|
-
"@quenty/cancellabledelay": "
|
|
30
|
-
"@quenty/loader": "
|
|
31
|
-
"@quenty/maid": "
|
|
28
|
+
"@quenty/baseobject": "5.1.0",
|
|
29
|
+
"@quenty/cancellabledelay": "3.3.0",
|
|
30
|
+
"@quenty/loader": "5.0.0",
|
|
31
|
+
"@quenty/maid": "2.4.0"
|
|
32
32
|
},
|
|
33
33
|
"publishConfig": {
|
|
34
34
|
"access": "public"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "b720162ac53aede1f77664ccea0982b86127d824"
|
|
37
37
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
--[=[
|
|
2
|
-
Help manage the visibility of
|
|
2
|
+
Help manage the visibility of Guis while only constructing the Gui while visible.
|
|
3
|
+
|
|
4
|
+
See [BasicPaneUtils.whenVisibleBrio] for a version that is written in Rx.
|
|
3
5
|
|
|
4
6
|
@client
|
|
5
7
|
@class GuiVisibleManager
|