@quenty/highlight 10.21.4-canary.559.339cfa7.0 → 10.22.0-canary.0a5db80.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,25 +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.21.4-canary.559.339cfa7.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/highlight@10.21.3...@quenty/highlight@10.21.4-canary.559.339cfa7.0) (2025-05-10)
6
+ # [10.22.0-canary.0a5db80.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/highlight@10.21.2...@quenty/highlight@10.22.0-canary.0a5db80.0) (2025-05-10)
7
7
 
8
8
 
9
9
  ### Bug Fixes
10
10
 
11
- * Additional type checking updates ([05ba29a](https://github.com/Quenty/NevermoreEngine/commit/05ba29a03efc9f3feed74b34f1d9dfb237496214))
11
+ * Additional type checking updates ([7e008c5](https://github.com/Quenty/NevermoreEngine/commit/7e008c58547bd00b5904e56541454a38c8d72ccc))
12
12
 
13
13
 
14
14
  ### Features
15
15
 
16
- * Add even more types ([b31717d](https://github.com/Quenty/NevermoreEngine/commit/b31717d8c9f7620c457f5018a2affa760a65334a))
17
-
18
-
19
-
20
-
21
-
22
- ## [10.21.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/highlight@10.21.2...@quenty/highlight@10.21.3) (2025-04-10)
23
-
24
- **Note:** Version bump only for package @quenty/highlight
16
+ * Add even more types ([0a5db80](https://github.com/Quenty/NevermoreEngine/commit/0a5db8004684dc3e76fd5944599a22602d48cfa9))
25
17
 
26
18
 
27
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/highlight",
3
- "version": "10.21.4-canary.559.339cfa7.0",
3
+ "version": "10.22.0-canary.0a5db80.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.4-canary.559.339cfa7.0",
30
- "@quenty/basicpane": "13.17.4-canary.559.339cfa7.0",
31
- "@quenty/blend": "12.18.4-canary.559.339cfa7.0",
32
- "@quenty/ducktype": "5.8.5-canary.559.339cfa7.0",
29
+ "@quenty/baseobject": "10.9.0-canary.0a5db80.0",
30
+ "@quenty/basicpane": "13.18.0-canary.0a5db80.0",
31
+ "@quenty/blend": "12.19.0-canary.0a5db80.0",
32
+ "@quenty/ducktype": "5.9.0-canary.0a5db80.0",
33
33
  "@quenty/enumutils": "3.4.2",
34
- "@quenty/instanceutils": "13.17.4-canary.559.339cfa7.0",
35
- "@quenty/loader": "10.8.4-canary.559.339cfa7.0",
36
- "@quenty/maid": "3.4.4-canary.559.339cfa7.0",
34
+ "@quenty/instanceutils": "13.18.0-canary.0a5db80.0",
35
+ "@quenty/loader": "10.9.0-canary.0a5db80.0",
36
+ "@quenty/maid": "3.5.0-canary.0a5db80.0",
37
37
  "@quenty/math": "2.7.3",
38
- "@quenty/observablecollection": "12.20.4-canary.559.339cfa7.0",
39
- "@quenty/rx": "13.17.4-canary.559.339cfa7.0",
40
- "@quenty/selectionutils": "8.17.4-canary.559.339cfa7.0",
41
- "@quenty/signal": "7.10.4-canary.559.339cfa7.0",
42
- "@quenty/statestack": "14.18.4-canary.559.339cfa7.0",
43
- "@quenty/table": "3.7.5-canary.559.339cfa7.0",
44
- "@quenty/valueobject": "13.17.4-canary.559.339cfa7.0"
38
+ "@quenty/observablecollection": "12.21.0-canary.0a5db80.0",
39
+ "@quenty/rx": "13.18.0-canary.0a5db80.0",
40
+ "@quenty/selectionutils": "8.18.0-canary.0a5db80.0",
41
+ "@quenty/signal": "7.11.0-canary.0a5db80.0",
42
+ "@quenty/statestack": "14.19.0-canary.0a5db80.0",
43
+ "@quenty/table": "3.8.0-canary.0a5db80.0",
44
+ "@quenty/valueobject": "13.18.0-canary.0a5db80.0"
45
45
  },
46
46
  "publishConfig": {
47
47
  "access": "public"
48
48
  },
49
- "gitHead": "339cfa778736f08768ed7305041f6221faa35bfc"
49
+ "gitHead": "0a5db8004684dc3e76fd5944599a22602d48cfa9"
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 DuckTypeUtils = require("DuckTypeUtils")
11
+ local SpringObject = require("SpringObject")
12
+ local Math = require("Math")
13
+ local ValueObject = require("ValueObject")
12
14
  local EnumUtils = require("EnumUtils")
13
15
  local Maid = require("Maid")
14
- local Math = require("Math")
15
- local Observable = require("Observable")
16
16
  local Signal = require("Signal")
17
- local SpringObject = require("SpringObject")
18
- local ValueObject = require("ValueObject")
17
+ local DuckTypeUtils = require("DuckTypeUtils")
18
+ local Observable = require("Observable")
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,11 +2,10 @@
2
2
  @class AnimatedHighlight.story
3
3
  ]]
4
4
 
5
- local require =
6
- require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
5
+ local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
7
6
 
8
- local AnimatedHighlight = require("AnimatedHighlight")
9
7
  local Maid = require("Maid")
8
+ local AnimatedHighlight = require("AnimatedHighlight")
10
9
  local RxSelectionUtils = require("RxSelectionUtils")
11
10
 
12
11
  return function(_target)
@@ -36,4 +35,4 @@ return function(_target)
36
35
  return function()
37
36
  maid:DoCleaning()
38
37
  end
39
- end
38
+ end
@@ -6,11 +6,11 @@
6
6
 
7
7
  local require = require(script.Parent.loader).load(script)
8
8
 
9
- local AnimatedHighlightModel = require("AnimatedHighlightModel")
10
- local AnimatedHighlightStack = require("AnimatedHighlightStack")
11
9
  local BaseObject = require("BaseObject")
12
- local EnumUtils = require("EnumUtils")
10
+ local AnimatedHighlightStack = require("AnimatedHighlightStack")
13
11
  local Maid = require("Maid")
12
+ local EnumUtils = require("EnumUtils")
13
+ local AnimatedHighlightModel = require("AnimatedHighlightModel")
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,11 +2,10 @@
2
2
  @class AnimatedHighlight.story
3
3
  ]]
4
4
 
5
- local require =
6
- require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
5
+ local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
7
6
 
8
- local AnimatedHighlightGroup = require("AnimatedHighlightGroup")
9
7
  local Maid = require("Maid")
8
+ local AnimatedHighlightGroup = require("AnimatedHighlightGroup")
10
9
  local RxSelectionUtils = require("RxSelectionUtils")
11
10
 
12
11
  return function(_target)
@@ -39,4 +38,4 @@ return function(_target)
39
38
  return function()
40
39
  maid:DoCleaning()
41
40
  end
42
- end
41
+ 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 DuckTypeUtils = require("DuckTypeUtils")
9
+ local ValueObject = require("ValueObject")
10
10
  local EnumUtils = require("EnumUtils")
11
11
  local Signal = require("Signal")
12
- local ValueObject = require("ValueObject")
12
+ local DuckTypeUtils = require("DuckTypeUtils")
13
13
 
14
14
  local AnimatedHighlightModel = setmetatable({}, BaseObject)
15
15
  AnimatedHighlightModel.ClassName = "AnimatedHighlightModel"
@@ -180,4 +180,5 @@ function AnimatedHighlightModel:SetFillTransparency(fillTransparency: number?, d
180
180
  self.FillTransparency:SetValue(fillTransparency, doNotAnimate)
181
181
  end
182
182
 
183
- return AnimatedHighlightModel
183
+
184
+ return AnimatedHighlightModel