@quenty/undostack 7.31.0 → 7.31.1
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 +4 -0
- package/package.json +7 -7
- package/src/Shared/UndoStackEntry.lua +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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
|
+
## [7.31.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/undostack@7.31.0...@quenty/undostack@7.31.1) (2026-05-30)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/undostack
|
|
9
|
+
|
|
6
10
|
# [7.31.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/undostack@7.30.2...@quenty/undostack@7.31.0) (2026-05-29)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @quenty/undostack
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/undostack",
|
|
3
|
-
"version": "7.31.
|
|
3
|
+
"version": "7.31.1",
|
|
4
4
|
"description": "Generalized undo stack for Roblox",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -30,16 +30,16 @@
|
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@quenty/baseobject": "10.13.0",
|
|
32
32
|
"@quenty/ducktype": "5.11.0",
|
|
33
|
-
"@quenty/instanceutils": "13.30.
|
|
33
|
+
"@quenty/instanceutils": "13.30.1",
|
|
34
34
|
"@quenty/loader": "10.11.0",
|
|
35
35
|
"@quenty/maid": "3.9.0",
|
|
36
|
-
"@quenty/promise": "10.18.
|
|
37
|
-
"@quenty/rx": "13.28.
|
|
38
|
-
"@quenty/signal": "7.13.
|
|
39
|
-
"@quenty/valueobject": "13.31.
|
|
36
|
+
"@quenty/promise": "10.18.1",
|
|
37
|
+
"@quenty/rx": "13.28.3",
|
|
38
|
+
"@quenty/signal": "7.13.1",
|
|
39
|
+
"@quenty/valueobject": "13.31.1"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "598b2b62b36bdcbdbbd56f7db10c399831cc6eba"
|
|
45
45
|
}
|
|
@@ -31,7 +31,7 @@ export type UndoStackEntry =
|
|
|
31
31
|
& BaseObject.BaseObject
|
|
32
32
|
|
|
33
33
|
--[=[
|
|
34
|
-
Constructs a new undo
|
|
34
|
+
Constructs a new undo stack entry. See [UndoStack] for usage.
|
|
35
35
|
|
|
36
36
|
@return UndoStackEntry
|
|
37
37
|
]=]
|
|
@@ -48,7 +48,7 @@ function UndoStackEntry.new(): UndoStackEntry
|
|
|
48
48
|
end
|
|
49
49
|
|
|
50
50
|
--[=[
|
|
51
|
-
Returns true if the
|
|
51
|
+
Returns true if the value is an undo stack entry
|
|
52
52
|
|
|
53
53
|
@param value any
|
|
54
54
|
@return boolean
|