@quenty/snackbar 11.26.4-canary.99eacfd.0 → 11.26.4

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
- ## [11.26.4-canary.99eacfd.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/snackbar@11.26.3...@quenty/snackbar@11.26.4-canary.99eacfd.0) (2025-12-12)
6
+ ## [11.26.4](https://github.com/Quenty/NevermoreEngine/compare/@quenty/snackbar@11.26.3...@quenty/snackbar@11.26.4) (2025-12-28)
7
7
 
8
8
  **Note:** Version bump only for package @quenty/snackbar
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/snackbar",
3
- "version": "11.26.4-canary.99eacfd.0",
3
+ "version": "11.26.4",
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.2",
30
- "@quenty/blend": "12.22.2",
31
- "@quenty/buttondragmodel": "1.19.2",
32
- "@quenty/buttonhighlightmodel": "14.22.4-canary.99eacfd.0",
33
- "@quenty/ducktype": "5.9.0",
34
- "@quenty/genericscreenguiprovider": "13.25.2",
35
- "@quenty/inputobjectutils": "4.21.0",
36
- "@quenty/lipsum": "14.22.2",
37
- "@quenty/loader": "10.9.0",
38
- "@quenty/maid": "3.5.0",
39
- "@quenty/math": "2.7.3",
40
- "@quenty/promise": "10.12.0",
41
- "@quenty/promisemaid": "5.12.0",
42
- "@quenty/promptqueue": "1.22.2",
43
- "@quenty/qgui": "2.4.1",
44
- "@quenty/rx": "13.20.0",
45
- "@quenty/servicebag": "11.13.1",
46
- "@quenty/table": "3.8.0",
47
- "@quenty/textserviceutils": "13.22.2",
48
- "@quenty/transitionmodel": "7.23.2",
49
- "@quenty/utf8": "2.3.3",
50
- "@quenty/valueobject": "13.21.2",
28
+ "@quenty/baseobject": "^10.9.0",
29
+ "@quenty/basicpane": "^13.21.3",
30
+ "@quenty/blend": "^12.22.3",
31
+ "@quenty/buttondragmodel": "^1.19.3",
32
+ "@quenty/buttonhighlightmodel": "^14.22.4",
33
+ "@quenty/ducktype": "^5.9.0",
34
+ "@quenty/genericscreenguiprovider": "^13.25.3",
35
+ "@quenty/inputobjectutils": "^4.21.1",
36
+ "@quenty/lipsum": "^14.22.3",
37
+ "@quenty/loader": "^10.9.0",
38
+ "@quenty/maid": "^3.5.0",
39
+ "@quenty/math": "^2.7.3",
40
+ "@quenty/promise": "^10.12.0",
41
+ "@quenty/promisemaid": "^5.12.0",
42
+ "@quenty/promptqueue": "^1.22.3",
43
+ "@quenty/qgui": "^2.4.1",
44
+ "@quenty/rx": "^13.20.0",
45
+ "@quenty/servicebag": "^11.13.2",
46
+ "@quenty/table": "^3.8.0",
47
+ "@quenty/textserviceutils": "^13.22.3",
48
+ "@quenty/transitionmodel": "^7.23.3",
49
+ "@quenty/utf8": "^2.3.3",
50
+ "@quenty/valueobject": "^13.21.3",
51
51
  "@quentystudios/t": "^3.0.0"
52
52
  },
53
53
  "publishConfig": {
54
54
  "access": "public"
55
55
  },
56
- "gitHead": "99eacfd66c3484684fb82fb4655c76afb85c5f81"
56
+ "gitHead": "821c9336020dfbcf5cd2f67f2dfe61624233ee06"
57
57
  }
@@ -49,23 +49,25 @@ local Snackbar = setmetatable({}, TransitionModel)
49
49
  Snackbar.ClassName = "Snackbar"
50
50
  Snackbar.__index = Snackbar
51
51
 
52
- export type Snackbar = typeof(setmetatable(
53
- {} :: {
54
- Gui: GuiObject,
55
-
56
- _text: ValueObject.ValueObject<string>,
57
- _backgroundColor: ValueObject.ValueObject<Color3>,
58
- _percentVisibleModel: SpringTransitionModel.SpringTransitionModel<number>,
59
- _dragSpring: SpringObject.SpringObject<Vector2>,
60
- _positionSpringModel: SpringTransitionModel.SpringTransitionModel<UDim2>,
61
- _dragModel: ButtonDragModel.ButtonDragModel,
62
- _computedTransparency: Observable.Observable<number>,
63
- _mainButton: GuiButton?,
64
- _callToActionContainer: GuiObject?,
65
- _textLabel: TextLabel?,
66
- },
67
- {} :: typeof({ __index = Snackbar })
68
- )) & TransitionModel.TransitionModel
52
+ export type Snackbar =
53
+ typeof(setmetatable(
54
+ {} :: {
55
+ Gui: GuiObject,
56
+
57
+ _text: ValueObject.ValueObject<string>,
58
+ _backgroundColor: ValueObject.ValueObject<Color3>,
59
+ _percentVisibleModel: SpringTransitionModel.SpringTransitionModel<number>,
60
+ _dragSpring: SpringObject.SpringObject<Vector2>,
61
+ _positionSpringModel: SpringTransitionModel.SpringTransitionModel<UDim2>,
62
+ _dragModel: ButtonDragModel.ButtonDragModel,
63
+ _computedTransparency: Observable.Observable<number>,
64
+ _mainButton: GuiButton?,
65
+ _callToActionContainer: GuiObject?,
66
+ _textLabel: TextLabel?,
67
+ },
68
+ {} :: typeof({ __index = Snackbar })
69
+ ))
70
+ & TransitionModel.TransitionModel
69
71
 
70
72
  function Snackbar.new(text: string, options: SnackbarOptionUtils.SnackbarOptions?): Snackbar
71
73
  assert(SnackbarOptionUtils.isSnackbarOptions(options) or options == nil, "Bad options")