@quenty/blend 12.35.0 → 12.36.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 +8 -0
- package/package.json +13 -13
- package/src/Shared/Blend/Blend.lua +5 -9
- package/src/Shared/Blend/SpringObject.lua +3 -3
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
|
+
## [12.36.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/blend@12.36.0...@quenty/blend@12.36.1) (2026-05-30)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/blend
|
|
9
|
+
|
|
10
|
+
# [12.36.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/blend@12.35.0...@quenty/blend@12.36.0) (2026-05-29)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @quenty/blend
|
|
13
|
+
|
|
6
14
|
# [12.35.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/blend@12.34.2...@quenty/blend@12.35.0) (2026-05-18)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @quenty/blend
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/blend",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.36.1",
|
|
4
4
|
"description": "Declarative UI system.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -31,26 +31,26 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@quenty/acceltween": "2.7.0",
|
|
34
|
-
"@quenty/brio": "14.
|
|
34
|
+
"@quenty/brio": "14.30.1",
|
|
35
35
|
"@quenty/ducktype": "5.11.0",
|
|
36
|
-
"@quenty/instanceutils": "13.
|
|
36
|
+
"@quenty/instanceutils": "13.30.1",
|
|
37
37
|
"@quenty/loader": "10.11.0",
|
|
38
38
|
"@quenty/maid": "3.9.0",
|
|
39
39
|
"@quenty/nevermore-test-runner": "1.4.0",
|
|
40
|
-
"@quenty/promise": "10.18.
|
|
41
|
-
"@quenty/rx": "13.28.
|
|
42
|
-
"@quenty/signal": "7.13.
|
|
40
|
+
"@quenty/promise": "10.18.1",
|
|
41
|
+
"@quenty/rx": "13.28.3",
|
|
42
|
+
"@quenty/signal": "7.13.1",
|
|
43
43
|
"@quenty/spring": "10.12.0",
|
|
44
44
|
"@quenty/steputils": "3.6.3",
|
|
45
|
-
"@quenty/string": "3.3.
|
|
46
|
-
"@quenty/uiobjectutils": "6.
|
|
47
|
-
"@quenty/valuebaseutils": "13.
|
|
48
|
-
"@quenty/valueobject": "13.
|
|
45
|
+
"@quenty/string": "3.3.7",
|
|
46
|
+
"@quenty/uiobjectutils": "6.29.1",
|
|
47
|
+
"@quenty/valuebaseutils": "13.30.1",
|
|
48
|
+
"@quenty/valueobject": "13.31.1",
|
|
49
49
|
"@quentystudios/jest-lua": "3.10.0-quenty.2"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@quenty/contentproviderutils": "12.
|
|
53
|
-
"@quenty/playerthumbnailutils": "10.18.
|
|
52
|
+
"@quenty/contentproviderutils": "12.31.1",
|
|
53
|
+
"@quenty/playerthumbnailutils": "10.18.1"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "598b2b62b36bdcbdbbd56f7db10c399831cc6eba"
|
|
56
56
|
}
|
|
@@ -49,7 +49,7 @@ export type BlendProps = { [any]: any }
|
|
|
49
49
|
```
|
|
50
50
|
|
|
51
51
|
@param className string
|
|
52
|
-
@return (props: { [string]: any
|
|
52
|
+
@return (props: { [string]: any }) -> Observable<Instance>
|
|
53
53
|
]=]
|
|
54
54
|
function Blend.New(className: string): (props: BlendProps) -> Observable.Observable<Instance>
|
|
55
55
|
assert(type(className) == "string", "Bad className")
|
|
@@ -287,7 +287,7 @@ function Blend.Attached(constructor)
|
|
|
287
287
|
end
|
|
288
288
|
|
|
289
289
|
--[=[
|
|
290
|
-
|
|
290
|
+
Similar to Fusion's ComputedPairs, where the changes are cached, and the lifetime limited.
|
|
291
291
|
@param source Observable<T> | any
|
|
292
292
|
@param compute (key: any, value: any, innerMaid: Maid) -> Instance | Observable<Instance>
|
|
293
293
|
@return Observable<Brio<Instance>>
|
|
@@ -669,10 +669,6 @@ end
|
|
|
669
669
|
}))
|
|
670
670
|
```
|
|
671
671
|
|
|
672
|
-
:::tip
|
|
673
|
-
|
|
674
|
-
:::
|
|
675
|
-
|
|
676
672
|
@param className string
|
|
677
673
|
@return function
|
|
678
674
|
]=]
|
|
@@ -817,10 +813,10 @@ end
|
|
|
817
813
|
of multiple. Used in conjunction with [Blend.Children] and [Blend.Computed].
|
|
818
814
|
|
|
819
815
|
:::warning
|
|
820
|
-
In general,
|
|
816
|
+
In general, constructing new instances like this is a bad idea, so it's recommended against it.
|
|
821
817
|
:::
|
|
822
818
|
|
|
823
|
-
```
|
|
819
|
+
```lua
|
|
824
820
|
local render = Blend.New "ScreenGui" {
|
|
825
821
|
Parent = game.Players.LocalPlayer.PlayerGui;
|
|
826
822
|
[Blend.Children] = {
|
|
@@ -832,7 +828,7 @@ end
|
|
|
832
828
|
Size = UDim2.fromScale(1, 1);
|
|
833
829
|
BackgroundTransparency = 0.5;
|
|
834
830
|
};
|
|
835
|
-
end)
|
|
831
|
+
end))
|
|
836
832
|
};
|
|
837
833
|
};
|
|
838
834
|
|
|
@@ -134,7 +134,7 @@ function SpringObject:ObserveRenderStepped()
|
|
|
134
134
|
end
|
|
135
135
|
|
|
136
136
|
--[=[
|
|
137
|
-
Alias for [ObserveRenderStepped]
|
|
137
|
+
Alias for [SpringObject:ObserveRenderStepped]
|
|
138
138
|
|
|
139
139
|
@return Observable<T>
|
|
140
140
|
]=]
|
|
@@ -176,7 +176,7 @@ function SpringObject:ObserveVelocityOnRenderStepped()
|
|
|
176
176
|
end
|
|
177
177
|
|
|
178
178
|
--[=[
|
|
179
|
-
Promises that the spring is done, based upon the animating property
|
|
179
|
+
Promises that the spring is done, based upon the animating property.
|
|
180
180
|
Relatively expensive.
|
|
181
181
|
|
|
182
182
|
@param signal RBXScriptSignal | nil
|
|
@@ -437,7 +437,7 @@ function SpringObject:_applyDamper(unconverted: number)
|
|
|
437
437
|
end
|
|
438
438
|
|
|
439
439
|
--[=[
|
|
440
|
-
Sets the
|
|
440
|
+
Sets the speed for the spring
|
|
441
441
|
|
|
442
442
|
@param speed number | Observable<number>
|
|
443
443
|
]=]
|