@quenty/basicpane 13.7.0 → 13.8.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 +8 -0
- package/package.json +9 -9
- package/src/Shared/BasicPane.lua +10 -11
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.8.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/basicpane@13.7.0...@quenty/basicpane@13.8.0) (2024-10-04)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/basicpane
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [13.7.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/basicpane@13.6.0...@quenty/basicpane@13.7.0) (2024-09-25)
|
|
7
15
|
|
|
8
16
|
**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.
|
|
3
|
+
"version": "13.8.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.
|
|
29
|
-
"@quenty/ducktype": "^5.
|
|
30
|
-
"@quenty/loader": "^10.
|
|
31
|
-
"@quenty/maid": "^3.
|
|
32
|
-
"@quenty/rx": "^13.
|
|
33
|
-
"@quenty/signal": "^7.
|
|
34
|
-
"@quenty/valueobject": "^13.
|
|
28
|
+
"@quenty/brio": "^14.8.0",
|
|
29
|
+
"@quenty/ducktype": "^5.6.0",
|
|
30
|
+
"@quenty/loader": "^10.6.0",
|
|
31
|
+
"@quenty/maid": "^3.4.0",
|
|
32
|
+
"@quenty/rx": "^13.8.0",
|
|
33
|
+
"@quenty/signal": "^7.7.0",
|
|
34
|
+
"@quenty/valueobject": "^13.8.0"
|
|
35
35
|
},
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "035abfa088c854a73e1c65b350267eaa17669646"
|
|
40
40
|
}
|
package/src/Shared/BasicPane.lua
CHANGED
|
@@ -27,18 +27,8 @@ local DuckTypeUtils = require("DuckTypeUtils")
|
|
|
27
27
|
local ValueObject = require("ValueObject")
|
|
28
28
|
|
|
29
29
|
local BasicPane = {}
|
|
30
|
-
BasicPane.__index = BasicPane
|
|
31
30
|
BasicPane.ClassName = "BasicPane"
|
|
32
|
-
|
|
33
|
-
--[=[
|
|
34
|
-
Returns whether the value is a basic pane
|
|
35
|
-
@param value any
|
|
36
|
-
@return boolean
|
|
37
|
-
]=]
|
|
38
|
-
function BasicPane.isBasicPane(value)
|
|
39
|
-
return DuckTypeUtils.isImplementation(BasicPane, value)
|
|
40
|
-
end
|
|
41
|
-
|
|
31
|
+
BasicPane.__index = BasicPane
|
|
42
32
|
|
|
43
33
|
--[=[
|
|
44
34
|
Constructs a new BasicPane with the .Gui property set.
|
|
@@ -82,6 +72,15 @@ function BasicPane.new(gui)
|
|
|
82
72
|
return self
|
|
83
73
|
end
|
|
84
74
|
|
|
75
|
+
--[=[
|
|
76
|
+
Returns whether the value is a basic pane
|
|
77
|
+
@param value any
|
|
78
|
+
@return boolean
|
|
79
|
+
]=]
|
|
80
|
+
function BasicPane.isBasicPane(value)
|
|
81
|
+
return DuckTypeUtils.isImplementation(BasicPane, value)
|
|
82
|
+
end
|
|
83
|
+
|
|
85
84
|
--[=[
|
|
86
85
|
Sets the BasicPane to be visible
|
|
87
86
|
|