@quenty/snackbar 11.26.7 → 11.26.8

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
+ ## [11.26.8](https://github.com/Quenty/NevermoreEngine/compare/@quenty/snackbar@11.26.7...@quenty/snackbar@11.26.8) (2026-01-03)
7
+
8
+ **Note:** Version bump only for package @quenty/snackbar
9
+
10
+
11
+
12
+
13
+
6
14
  ## [11.26.7](https://github.com/Quenty/NevermoreEngine/compare/@quenty/snackbar@11.26.6...@quenty/snackbar@11.26.7) (2025-12-31)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/snackbar
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/snackbar",
3
- "version": "11.26.7",
3
+ "version": "11.26.8",
4
4
  "description": "Snackbars provide lightweight feedback on an operation at the base of the screen. They automatically disappear after a timeout or user interaction. There can only be one on the screen at a time.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,33 +25,33 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/baseobject": "^10.9.0",
29
- "@quenty/basicpane": "^13.21.6",
30
- "@quenty/blend": "^12.22.6",
31
- "@quenty/buttondragmodel": "^1.19.6",
32
- "@quenty/buttonhighlightmodel": "^14.22.7",
33
- "@quenty/ducktype": "^5.9.0",
34
- "@quenty/genericscreenguiprovider": "^13.25.6",
35
- "@quenty/inputobjectutils": "^4.21.4",
36
- "@quenty/lipsum": "^14.22.6",
37
- "@quenty/loader": "^10.9.0",
38
- "@quenty/maid": "^3.5.0",
28
+ "@quenty/baseobject": "^10.9.1",
29
+ "@quenty/basicpane": "^13.21.7",
30
+ "@quenty/blend": "^12.22.7",
31
+ "@quenty/buttondragmodel": "^1.19.7",
32
+ "@quenty/buttonhighlightmodel": "^14.22.8",
33
+ "@quenty/ducktype": "^5.9.1",
34
+ "@quenty/genericscreenguiprovider": "^13.25.7",
35
+ "@quenty/inputobjectutils": "^4.21.5",
36
+ "@quenty/lipsum": "^14.22.7",
37
+ "@quenty/loader": "^10.9.1",
38
+ "@quenty/maid": "^3.5.1",
39
39
  "@quenty/math": "^2.7.3",
40
- "@quenty/promise": "^10.12.3",
41
- "@quenty/promisemaid": "^5.12.3",
42
- "@quenty/promptqueue": "^1.22.6",
43
- "@quenty/qgui": "^2.4.1",
44
- "@quenty/rx": "^13.20.3",
45
- "@quenty/servicebag": "^11.13.3",
40
+ "@quenty/promise": "^10.12.4",
41
+ "@quenty/promisemaid": "^5.12.4",
42
+ "@quenty/promptqueue": "^1.22.7",
43
+ "@quenty/qgui": "^2.4.2",
44
+ "@quenty/rx": "^13.20.4",
45
+ "@quenty/servicebag": "^11.13.4",
46
46
  "@quenty/table": "^3.8.0",
47
- "@quenty/textserviceutils": "^13.22.6",
48
- "@quenty/transitionmodel": "^7.23.6",
47
+ "@quenty/textserviceutils": "^13.22.7",
48
+ "@quenty/transitionmodel": "^7.23.7",
49
49
  "@quenty/utf8": "^2.3.3",
50
- "@quenty/valueobject": "^13.21.6",
50
+ "@quenty/valueobject": "^13.21.7",
51
51
  "@quentystudios/t": "^3.0.0"
52
52
  },
53
53
  "publishConfig": {
54
54
  "access": "public"
55
55
  },
56
- "gitHead": "ed3284dd547d8f9922043ca68ed16bf3769806bb"
56
+ "gitHead": "44e41814ddc3c14c3879320a10ed2d8e88103a4c"
57
57
  }
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  @class SnackbarScreenGuiProvider
3
4
  ]=]
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  Guarantees that only one snackbar is visible at once
3
4
  @class SnackbarServiceClient
@@ -1,9 +1,11 @@
1
+ --!nonstrict
1
2
  --[[
2
3
  @class snackbarServiceClient.story
3
4
  ]]
4
5
 
5
- local require =
6
- require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
+ local require = (require :: any)(
7
+ game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent
8
+ ).bootstrapStory(script) :: typeof(require(script.Parent.loader).load(script))
7
9
 
8
10
  local Blend = require("Blend")
9
11
  local LipsumUtils = require("LipsumUtils")
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  Server-side snackbar service. See [SnackbarServiceClient] for more details.
3
4
 
@@ -1,4 +1,4 @@
1
- --!strict
1
+ --!nonstrict
2
2
  --[=[
3
3
  @class SnackbarOptionUtils
4
4
  ]=]
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[[
2
3
  @class ClientMain
3
4
  ]]
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[[
2
3
  @class ServerMain
3
4
  ]]