@quenty/highlight 10.25.3 → 10.26.0-canary.882056f.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,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
|
+
# [10.26.0-canary.882056f.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/highlight@10.25.3...@quenty/highlight@10.26.0-canary.882056f.0) (2025-12-28)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* Update declarations and README.md ([882056f](https://github.com/Quenty/NevermoreEngine/commit/882056f4c012f9855a0581750968993fb18241ed))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [10.25.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/highlight@10.25.2...@quenty/highlight@10.25.3) (2025-12-28)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/highlight
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/highlight",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.26.0-canary.882056f.0",
|
|
4
4
|
"description": "Animated highlight system for the Roblox highlight object",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -26,25 +26,25 @@
|
|
|
26
26
|
"Quenty"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@quenty/baseobject": "
|
|
30
|
-
"@quenty/basicpane": "
|
|
31
|
-
"@quenty/blend": "
|
|
32
|
-
"@quenty/ducktype": "
|
|
33
|
-
"@quenty/enumutils": "
|
|
34
|
-
"@quenty/instanceutils": "
|
|
35
|
-
"@quenty/loader": "
|
|
36
|
-
"@quenty/maid": "
|
|
37
|
-
"@quenty/math": "
|
|
38
|
-
"@quenty/observablecollection": "
|
|
39
|
-
"@quenty/rx": "
|
|
40
|
-
"@quenty/selectionutils": "
|
|
41
|
-
"@quenty/signal": "
|
|
42
|
-
"@quenty/statestack": "
|
|
43
|
-
"@quenty/table": "
|
|
44
|
-
"@quenty/valueobject": "
|
|
29
|
+
"@quenty/baseobject": "10.9.0",
|
|
30
|
+
"@quenty/basicpane": "13.21.3",
|
|
31
|
+
"@quenty/blend": "12.22.3",
|
|
32
|
+
"@quenty/ducktype": "5.9.0",
|
|
33
|
+
"@quenty/enumutils": "3.4.2",
|
|
34
|
+
"@quenty/instanceutils": "13.20.2",
|
|
35
|
+
"@quenty/loader": "10.9.0",
|
|
36
|
+
"@quenty/maid": "3.5.0",
|
|
37
|
+
"@quenty/math": "2.7.3",
|
|
38
|
+
"@quenty/observablecollection": "12.24.3",
|
|
39
|
+
"@quenty/rx": "13.20.0",
|
|
40
|
+
"@quenty/selectionutils": "8.21.3",
|
|
41
|
+
"@quenty/signal": "7.11.1",
|
|
42
|
+
"@quenty/statestack": "14.22.3",
|
|
43
|
+
"@quenty/table": "3.8.0",
|
|
44
|
+
"@quenty/valueobject": "13.21.3"
|
|
45
45
|
},
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "882056f4c012f9855a0581750968993fb18241ed"
|
|
50
50
|
}
|
|
@@ -133,7 +133,7 @@ function AnimatedHighlightGroup:_setDefaultValues(highlight, doNotAnimate: boole
|
|
|
133
133
|
highlight:SetOutlineColor(self._defaultValues.OutlineColor.Value)
|
|
134
134
|
end
|
|
135
135
|
|
|
136
|
-
function AnimatedHighlightGroup:_getOrCreateHighlightStackHandle(adornee, observeScore)
|
|
136
|
+
function AnimatedHighlightGroup:_getOrCreateHighlightStackHandle(adornee: Instance, observeScore)
|
|
137
137
|
assert(observeScore, "Bad observeScore")
|
|
138
138
|
|
|
139
139
|
local foundHighlightStack = self._highlightStacks[adornee]
|
|
@@ -196,7 +196,7 @@ function AnimatedHighlightGroup:_removeHighlightStack(highlightStack)
|
|
|
196
196
|
self._maid[highlightStack] = nil
|
|
197
197
|
end
|
|
198
198
|
|
|
199
|
-
function AnimatedHighlightGroup:_findHighlightAdornee(adornee)
|
|
199
|
+
function AnimatedHighlightGroup:_findHighlightAdornee(adornee: Instance)
|
|
200
200
|
return self._highlightStacks[adornee]
|
|
201
201
|
end
|
|
202
202
|
|
|
@@ -44,7 +44,7 @@ end
|
|
|
44
44
|
@param observeScore Observable<number> | number?
|
|
45
45
|
@return AnimatedHighlightModel
|
|
46
46
|
]=]
|
|
47
|
-
function HighlightServiceClient:Highlight(adornee, observeScore)
|
|
47
|
+
function HighlightServiceClient:Highlight(adornee: Instance, observeScore)
|
|
48
48
|
assert(typeof(adornee) == "Instance", "Bad adornee")
|
|
49
49
|
|
|
50
50
|
return self._group:Highlight(adornee, observeScore)
|