@quenty/blend 2.1.0-canary.241.a4e8214.0 → 2.1.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 +7 -2
- package/package.json +17 -17
- package/src/Shared/Blend/Blend.lua +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,12 +3,17 @@
|
|
|
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
|
-
# [2.1.0
|
|
6
|
+
# [2.1.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/blend@2.0.2...@quenty/blend@2.1.0) (2022-01-03)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Blend.Single specification was wrong ([749b6b3](https://github.com/Quenty/NevermoreEngine/commit/749b6b3cff05f4c80b85bf2f82e6c06186e81c2b))
|
|
7
12
|
|
|
8
13
|
|
|
9
14
|
### Features
|
|
10
15
|
|
|
11
|
-
* Blend now supports a more stable contract for adding children. ([
|
|
16
|
+
* Blend now supports a more stable contract for adding children. ([1dc1846](https://github.com/Quenty/NevermoreEngine/commit/1dc18465f22d23bfe9dca9b0c85bdbb733fa6809))
|
|
12
17
|
|
|
13
18
|
|
|
14
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/blend",
|
|
3
|
-
"version": "2.1.0
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "Declarative UI system.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -27,23 +27,23 @@
|
|
|
27
27
|
"access": "public"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@quenty/acceltween": "2.0.1",
|
|
31
|
-
"@quenty/brio": "3.6.0
|
|
32
|
-
"@quenty/instanceutils": "3.6.0
|
|
33
|
-
"@quenty/loader": "3.2.0
|
|
34
|
-
"@quenty/maid": "2.0.2",
|
|
35
|
-
"@quenty/promise": "3.4.0
|
|
36
|
-
"@quenty/rx": "3.6.0
|
|
37
|
-
"@quenty/signal": "2.1.0
|
|
38
|
-
"@quenty/spring": "3.1.0
|
|
39
|
-
"@quenty/steputils": "3.0.1",
|
|
40
|
-
"@quenty/string": "2.2.1",
|
|
41
|
-
"@quenty/valuebaseutils": "3.6.0
|
|
42
|
-
"@quenty/valueobject": "3.6.0
|
|
30
|
+
"@quenty/acceltween": "^2.0.1",
|
|
31
|
+
"@quenty/brio": "^3.6.0",
|
|
32
|
+
"@quenty/instanceutils": "^3.6.0",
|
|
33
|
+
"@quenty/loader": "^3.2.0",
|
|
34
|
+
"@quenty/maid": "^2.0.2",
|
|
35
|
+
"@quenty/promise": "^3.4.0",
|
|
36
|
+
"@quenty/rx": "^3.6.0",
|
|
37
|
+
"@quenty/signal": "^2.1.0",
|
|
38
|
+
"@quenty/spring": "^3.1.0",
|
|
39
|
+
"@quenty/steputils": "^3.0.1",
|
|
40
|
+
"@quenty/string": "^2.2.1",
|
|
41
|
+
"@quenty/valuebaseutils": "^3.6.0",
|
|
42
|
+
"@quenty/valueobject": "^3.6.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@quenty/contentproviderutils": "3.4.0
|
|
46
|
-
"@quenty/playerthumbnailutils": "3.5.0
|
|
45
|
+
"@quenty/contentproviderutils": "^3.4.0",
|
|
46
|
+
"@quenty/playerthumbnailutils": "^3.5.0"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "d910da8f5c7e9a55a8bf76d8efbe5632713dd0fe"
|
|
49
49
|
}
|
|
@@ -22,6 +22,7 @@ local ValueBaseUtils = require("ValueBaseUtils")
|
|
|
22
22
|
local ValueObject = require("ValueObject")
|
|
23
23
|
local ValueObjectUtils = require("ValueObjectUtils")
|
|
24
24
|
local MaidTaskUtils = require("MaidTaskUtils")
|
|
25
|
+
local RxBrioUtils = require("RxBrioUtils")
|
|
25
26
|
|
|
26
27
|
local Blend = {}
|
|
27
28
|
|
|
@@ -547,7 +548,7 @@ end
|
|
|
547
548
|
@return Observable<Brio<Instance>>
|
|
548
549
|
@within Blend
|
|
549
550
|
]=]
|
|
550
|
-
Blend.Single =
|
|
551
|
+
Blend.Single = RxBrioUtils.switchToBrio
|
|
551
552
|
|
|
552
553
|
--[=[
|
|
553
554
|
Observes children and ensures that the value is cleaned up
|