@quenty/snackbar 3.1.2 → 3.2.1-canary.7d62582.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,6 +3,28 @@
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
+ ## [3.2.1-canary.7d62582.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/snackbar@3.2.0...@quenty/snackbar@3.2.1-canary.7d62582.0) (2021-12-18)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * use task.delay() instead of delay() ([f3171d4](https://github.com/Quenty/NevermoreEngine/commit/f3171d409226dd38306818fa429136746ad4d213))
12
+
13
+
14
+
15
+
16
+
17
+ # [3.2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/snackbar@3.1.2...@quenty/snackbar@3.2.0) (2021-11-20)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * Support MacOS syncing ([#225](https://github.com/Quenty/NevermoreEngine/issues/225)) ([03f9183](https://github.com/Quenty/NevermoreEngine/commit/03f918392c6a5bdd33f8a17c38de371d1e06c67a))
23
+
24
+
25
+
26
+
27
+
6
28
  ## [3.1.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/snackbar@3.1.1...@quenty/snackbar@3.1.2) (2021-10-30)
7
29
 
8
30
  **Note:** Version bump only for package @quenty/snackbar
package/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2014 Quenty
3
+ Copyright (c) 2014-2021 Quenty
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/snackbar",
3
- "version": "3.1.2",
3
+ "version": "3.2.1-canary.7d62582.0",
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,13 +25,13 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/loader": "^3.1.1",
29
- "@quenty/maid": "^2.0.1",
30
- "@quenty/math": "^2.0.0",
31
- "@quenty/qgui": "^2.0.0"
28
+ "@quenty/loader": "3.1.1",
29
+ "@quenty/maid": "2.0.1",
30
+ "@quenty/math": "2.0.0",
31
+ "@quenty/qgui": "2.0.0"
32
32
  },
33
33
  "publishConfig": {
34
34
  "access": "public"
35
35
  },
36
- "gitHead": "e9cd4223c7fda7c852db9743ef844baa19cacb13"
36
+ "gitHead": "7d625829eb771b307f589dacdc9060ad3ba1d531"
37
37
  }
@@ -89,7 +89,7 @@ function DraggableSnackbar:Show()
89
89
  end))
90
90
 
91
91
  --- Setup hide on dismissal
92
- delay(self.Duration, function()
92
+ task.delay(self.Duration, function()
93
93
  if self.Destroy and self._showId == LocalShowId and self._visible then
94
94
  self:Dismiss()
95
95
  end
@@ -59,7 +59,7 @@ function SnackbarManager:_showSnackbar(snackbar)
59
59
 
60
60
  self._currentSnackbar = snackbar
61
61
  if dismissedSnackbar then
62
- delay(snackbar.FadeTime, function()
62
+ task.delay(snackbar.FadeTime, function()
63
63
  if self._currentSnackbar == snackbar then
64
64
  snackbar:Show()
65
65
  end
@@ -2,6 +2,6 @@
2
2
  "name": "node_modules",
3
3
  "globIgnorePaths": [ "**/.package-lock.json" ],
4
4
  "tree": {
5
- "$path": { "optional": "..\\node_modules" }
5
+ "$path": { "optional": "../node_modules" }
6
6
  }
7
7
  }