@quenty/genericscreenguiprovider 13.25.6 → 13.25.7

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,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.25.7](https://github.com/Quenty/NevermoreEngine/compare/@quenty/genericscreenguiprovider@13.25.6...@quenty/genericscreenguiprovider@13.25.7) (2026-01-03)
7
+
8
+ **Note:** Version bump only for package @quenty/genericscreenguiprovider
9
+
10
+
11
+
12
+
13
+
6
14
  ## [13.25.6](https://github.com/Quenty/NevermoreEngine/compare/@quenty/genericscreenguiprovider@13.25.5...@quenty/genericscreenguiprovider@13.25.6) (2025-12-31)
7
15
 
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/genericscreenguiprovider",
3
- "version": "13.25.6",
3
+ "version": "13.25.7",
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.22.6",
28
- "@quenty/loader": "^10.9.0",
29
- "@quenty/maid": "^3.5.0",
30
- "@quenty/rx": "^13.20.3",
31
- "@quenty/servicebag": "^11.13.3",
32
- "@quenty/string": "^3.3.3",
33
- "@quenty/uiobjectutils": "^6.19.5",
34
- "@quenty/valueobject": "^13.21.6"
27
+ "@quenty/blend": "^12.22.7",
28
+ "@quenty/loader": "^10.9.1",
29
+ "@quenty/maid": "^3.5.1",
30
+ "@quenty/rx": "^13.20.4",
31
+ "@quenty/servicebag": "^11.13.4",
32
+ "@quenty/string": "^3.3.4",
33
+ "@quenty/uiobjectutils": "^6.19.6",
34
+ "@quenty/valueobject": "^13.21.7"
35
35
  },
36
36
  "publishConfig": {
37
37
  "access": "public"
38
38
  },
39
- "gitHead": "ed3284dd547d8f9922043ca68ed16bf3769806bb"
39
+ "gitHead": "44e41814ddc3c14c3879320a10ed2d8e88103a4c"
40
40
  }
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  Providers screenGuis with a given display order for easy use.
3
4
 
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  Centralized provider so Hoarcekat stories can bootstrap in a fake PlayerGui
3
4
 
@@ -36,7 +37,7 @@ end
36
37
 
37
38
  return ScreenGui?
38
39
  ]=]
39
- function ScreenGuiService:GetGuiParent()
40
+ function ScreenGuiService:GetGuiParent(): Instance?
40
41
  self:_ensureInit()
41
42
 
42
43
  return self._guiParent.Value
@@ -48,7 +49,7 @@ end
48
49
  @param playerGui PlayerGui | Instance
49
50
  return MaidTask
50
51
  ]=]
51
- function ScreenGuiService:SetGuiParent(playerGui)
52
+ function ScreenGuiService:SetGuiParent(playerGui: Instance?)
52
53
  self:_ensureInit()
53
54
 
54
55
  self._guiParent.Value = playerGui