@quenty/highlight 10.22.0-canary.559.b31717d.0 → 10.22.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,7 +3,7 @@
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.22.0-canary.559.b31717d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/highlight@10.21.3...@quenty/highlight@10.22.0-canary.559.b31717d.0) (2025-05-10)
6
+ # [10.22.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/highlight@10.21.3...@quenty/highlight@10.22.0) (2025-05-10)
7
7
 
8
8
 
9
9
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/highlight",
3
- "version": "10.22.0-canary.559.b31717d.0",
3
+ "version": "10.22.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": "10.8.3",
30
- "@quenty/basicpane": "13.18.0-canary.559.b31717d.0",
31
- "@quenty/blend": "12.19.0-canary.559.b31717d.0",
32
- "@quenty/ducktype": "5.8.4",
33
- "@quenty/enumutils": "3.4.2",
34
- "@quenty/instanceutils": "13.18.0-canary.559.b31717d.0",
35
- "@quenty/loader": "10.8.3",
36
- "@quenty/maid": "3.4.3",
37
- "@quenty/math": "2.7.3",
38
- "@quenty/observablecollection": "12.21.0-canary.559.b31717d.0",
39
- "@quenty/rx": "13.18.0-canary.559.b31717d.0",
40
- "@quenty/selectionutils": "8.18.0-canary.559.b31717d.0",
41
- "@quenty/signal": "7.10.3",
42
- "@quenty/statestack": "14.19.0-canary.559.b31717d.0",
43
- "@quenty/table": "3.7.4",
44
- "@quenty/valueobject": "13.18.0-canary.559.b31717d.0"
29
+ "@quenty/baseobject": "^10.9.0",
30
+ "@quenty/basicpane": "^13.18.0",
31
+ "@quenty/blend": "^12.19.0",
32
+ "@quenty/ducktype": "^5.9.0",
33
+ "@quenty/enumutils": "^3.4.2",
34
+ "@quenty/instanceutils": "^13.18.0",
35
+ "@quenty/loader": "^10.9.0",
36
+ "@quenty/maid": "^3.5.0",
37
+ "@quenty/math": "^2.7.3",
38
+ "@quenty/observablecollection": "^12.21.0",
39
+ "@quenty/rx": "^13.18.0",
40
+ "@quenty/selectionutils": "^8.18.0",
41
+ "@quenty/signal": "^7.11.0",
42
+ "@quenty/statestack": "^14.19.0",
43
+ "@quenty/table": "^3.8.0",
44
+ "@quenty/valueobject": "^13.18.0"
45
45
  },
46
46
  "publishConfig": {
47
47
  "access": "public"
48
48
  },
49
- "gitHead": "b31717d8c9f7620c457f5018a2affa760a65334a"
49
+ "gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
50
50
  }
@@ -8,14 +8,14 @@ local require = require(script.Parent.loader).load(script)
8
8
 
9
9
  local BasicPane = require("BasicPane")
10
10
  local Blend = require("Blend")
11
- local SpringObject = require("SpringObject")
12
- local Math = require("Math")
13
- local ValueObject = require("ValueObject")
11
+ local DuckTypeUtils = require("DuckTypeUtils")
14
12
  local EnumUtils = require("EnumUtils")
15
13
  local Maid = require("Maid")
16
- local Signal = require("Signal")
17
- local DuckTypeUtils = require("DuckTypeUtils")
14
+ local Math = require("Math")
18
15
  local Observable = require("Observable")
16
+ local Signal = require("Signal")
17
+ local SpringObject = require("SpringObject")
18
+ local ValueObject = require("ValueObject")
19
19
 
20
20
  local AnimatedHighlight = setmetatable({}, BasicPane)
21
21
  AnimatedHighlight.ClassName = "AnimatedHighlight"
@@ -279,4 +279,4 @@ function AnimatedHighlight._render(self: AnimatedHighlight): Observable.Observab
279
279
  }) :: any
280
280
  end
281
281
 
282
- return AnimatedHighlight
282
+ return AnimatedHighlight
@@ -2,10 +2,11 @@
2
2
  @class AnimatedHighlight.story
3
3
  ]]
4
4
 
5
- local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
5
+ local require =
6
+ require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
7
 
7
- local Maid = require("Maid")
8
8
  local AnimatedHighlight = require("AnimatedHighlight")
9
+ local Maid = require("Maid")
9
10
  local RxSelectionUtils = require("RxSelectionUtils")
10
11
 
11
12
  return function(_target)
@@ -35,4 +36,4 @@ return function(_target)
35
36
  return function()
36
37
  maid:DoCleaning()
37
38
  end
38
- end
39
+ end
@@ -6,11 +6,11 @@
6
6
 
7
7
  local require = require(script.Parent.loader).load(script)
8
8
 
9
- local BaseObject = require("BaseObject")
9
+ local AnimatedHighlightModel = require("AnimatedHighlightModel")
10
10
  local AnimatedHighlightStack = require("AnimatedHighlightStack")
11
- local Maid = require("Maid")
11
+ local BaseObject = require("BaseObject")
12
12
  local EnumUtils = require("EnumUtils")
13
- local AnimatedHighlightModel = require("AnimatedHighlightModel")
13
+ local Maid = require("Maid")
14
14
  local Rx = require("Rx")
15
15
 
16
16
  local AnimatedHighlightGroup = setmetatable({}, BaseObject)
@@ -194,4 +194,4 @@ function AnimatedHighlightGroup:_findHighlightAdornee(adornee)
194
194
  return self._highlightStacks[adornee]
195
195
  end
196
196
 
197
- return AnimatedHighlightGroup
197
+ return AnimatedHighlightGroup
@@ -2,10 +2,11 @@
2
2
  @class AnimatedHighlight.story
3
3
  ]]
4
4
 
5
- local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
5
+ local require =
6
+ require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
7
 
7
- local Maid = require("Maid")
8
8
  local AnimatedHighlightGroup = require("AnimatedHighlightGroup")
9
+ local Maid = require("Maid")
9
10
  local RxSelectionUtils = require("RxSelectionUtils")
10
11
 
11
12
  return function(_target)
@@ -38,4 +39,4 @@ return function(_target)
38
39
  return function()
39
40
  maid:DoCleaning()
40
41
  end
41
- end
42
+ end
@@ -57,4 +57,4 @@ function HighlightServiceClient:Destroy()
57
57
  self._maid:DoCleaning()
58
58
  end
59
59
 
60
- return HighlightServiceClient
60
+ return HighlightServiceClient
@@ -6,10 +6,10 @@
6
6
  local require = require(script.Parent.loader).load(script)
7
7
 
8
8
  local BaseObject = require("BaseObject")
9
- local ValueObject = require("ValueObject")
9
+ local DuckTypeUtils = require("DuckTypeUtils")
10
10
  local EnumUtils = require("EnumUtils")
11
11
  local Signal = require("Signal")
12
- local DuckTypeUtils = require("DuckTypeUtils")
12
+ local ValueObject = require("ValueObject")
13
13
 
14
14
  local AnimatedHighlightModel = setmetatable({}, BaseObject)
15
15
  AnimatedHighlightModel.ClassName = "AnimatedHighlightModel"
@@ -180,5 +180,4 @@ function AnimatedHighlightModel:SetFillTransparency(fillTransparency: number?, d
180
180
  self.FillTransparency:SetValue(fillTransparency, doNotAnimate)
181
181
  end
182
182
 
183
-
184
- return AnimatedHighlightModel
183
+ return AnimatedHighlightModel