@quenty/genericscreenguiprovider 13.21.0-canary.ae8d76d.0 → 13.21.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,7 +3,7 @@
|
|
|
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.21.0
|
|
6
|
+
# [13.21.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/genericscreenguiprovider@13.20.3...@quenty/genericscreenguiprovider@13.21.0) (2025-05-10)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/genericscreenguiprovider",
|
|
3
|
-
"version": "13.21.0
|
|
3
|
+
"version": "13.21.0",
|
|
4
4
|
"description": "Providers screenGuis with a given display order for easy use",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -24,17 +24,17 @@
|
|
|
24
24
|
"Quenty"
|
|
25
25
|
],
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@quenty/blend": "12.19.0
|
|
28
|
-
"@quenty/loader": "10.
|
|
29
|
-
"@quenty/maid": "3.
|
|
30
|
-
"@quenty/rx": "13.18.0
|
|
31
|
-
"@quenty/servicebag": "11.12.0
|
|
32
|
-
"@quenty/string": "3.3.3",
|
|
33
|
-
"@quenty/uiobjectutils": "6.17.0
|
|
34
|
-
"@quenty/valueobject": "13.18.0
|
|
27
|
+
"@quenty/blend": "^12.19.0",
|
|
28
|
+
"@quenty/loader": "^10.9.0",
|
|
29
|
+
"@quenty/maid": "^3.5.0",
|
|
30
|
+
"@quenty/rx": "^13.18.0",
|
|
31
|
+
"@quenty/servicebag": "^11.12.0",
|
|
32
|
+
"@quenty/string": "^3.3.3",
|
|
33
|
+
"@quenty/uiobjectutils": "^6.17.0",
|
|
34
|
+
"@quenty/valueobject": "^13.18.0"
|
|
35
35
|
},
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
|
|
40
40
|
}
|
|
@@ -29,11 +29,11 @@ local RunService = game:GetService("RunService")
|
|
|
29
29
|
|
|
30
30
|
local Blend = require("Blend")
|
|
31
31
|
local Maid = require("Maid")
|
|
32
|
+
local Observable = require("Observable")
|
|
32
33
|
local ScreenGuiService = require("ScreenGuiService")
|
|
33
34
|
local ServiceBag = require("ServiceBag")
|
|
34
35
|
local String = require("String")
|
|
35
36
|
local ValueObject = require("ValueObject")
|
|
36
|
-
local Observable = require("Observable")
|
|
37
37
|
|
|
38
38
|
local GenericScreenGuiProvider = {}
|
|
39
39
|
GenericScreenGuiProvider.ClassName = "GenericScreenGuiProvider"
|
|
@@ -206,4 +206,4 @@ function GenericScreenGuiProvider:Destroy()
|
|
|
206
206
|
self._maid:DoCleaning()
|
|
207
207
|
end
|
|
208
208
|
|
|
209
|
-
return GenericScreenGuiProvider
|
|
209
|
+
return GenericScreenGuiProvider
|
|
@@ -10,10 +10,10 @@ local require = require(script.Parent.loader).load(script)
|
|
|
10
10
|
local RunService = game:GetService("RunService")
|
|
11
11
|
|
|
12
12
|
local Maid = require("Maid")
|
|
13
|
-
local ValueObject = require("ValueObject")
|
|
14
|
-
local PlayerGuiUtils = require("PlayerGuiUtils")
|
|
15
13
|
local Observable = require("Observable")
|
|
14
|
+
local PlayerGuiUtils = require("PlayerGuiUtils")
|
|
16
15
|
local ServiceBag = require("ServiceBag")
|
|
16
|
+
local ValueObject = require("ValueObject")
|
|
17
17
|
|
|
18
18
|
local ScreenGuiService = {}
|
|
19
19
|
ScreenGuiService.ServiceName = "ScreenGuiService"
|
|
@@ -96,4 +96,4 @@ function ScreenGuiService:Destroy()
|
|
|
96
96
|
self._maid:DoCleaning()
|
|
97
97
|
end
|
|
98
98
|
|
|
99
|
-
return ScreenGuiService
|
|
99
|
+
return ScreenGuiService
|