@quenty/adorneeboundingbox 8.24.2 → 8.24.3

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,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
+ ## [8.24.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/adorneeboundingbox@8.24.2...@quenty/adorneeboundingbox@8.24.3) (2025-12-28)
7
+
8
+ **Note:** Version bump only for package @quenty/adorneeboundingbox
9
+
10
+
11
+
12
+
13
+
6
14
  ## [8.24.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/adorneeboundingbox@8.24.1...@quenty/adorneeboundingbox@8.24.2) (2025-11-22)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/adorneeboundingbox
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/adorneeboundingbox",
3
- "version": "8.24.2",
3
+ "version": "8.24.3",
4
4
  "description": "Handles logic for reactive bounding box monitoring",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -31,14 +31,14 @@
31
31
  "@quenty/instanceutils": "^13.20.2",
32
32
  "@quenty/loader": "^10.9.0",
33
33
  "@quenty/maid": "^3.5.0",
34
- "@quenty/observablecollection": "^12.24.2",
34
+ "@quenty/observablecollection": "^12.24.3",
35
35
  "@quenty/rx": "^13.20.0",
36
- "@quenty/selectionutils": "^8.21.2",
36
+ "@quenty/selectionutils": "^8.21.3",
37
37
  "@quenty/signal": "^7.11.1",
38
- "@quenty/valueobject": "^13.21.2"
38
+ "@quenty/valueobject": "^13.21.3"
39
39
  },
40
40
  "publishConfig": {
41
41
  "access": "public"
42
42
  },
43
- "gitHead": "b3a8753cbae8b4312b1ed66fce1577a94015c156"
43
+ "gitHead": "821c9336020dfbcf5cd2f67f2dfe61624233ee06"
44
44
  }
@@ -20,14 +20,16 @@ local AdorneeBoundingBox = setmetatable({}, BaseObject)
20
20
  AdorneeBoundingBox.ClassName = "AdorneeBoundingBox"
21
21
  AdorneeBoundingBox.__index = AdorneeBoundingBox
22
22
 
23
- export type AdorneeBoundingBox = typeof(setmetatable(
24
- {} :: {
25
- _adornee: ValueObject.ValueObject<Instance?>,
26
- _bbCFrame: ValueObject.ValueObject<CFrame?>,
27
- _bbSize: ValueObject.ValueObject<Vector3?>,
28
- },
29
- {} :: typeof({ __index = AdorneeBoundingBox })
30
- )) & BaseObject.BaseObject
23
+ export type AdorneeBoundingBox =
24
+ typeof(setmetatable(
25
+ {} :: {
26
+ _adornee: ValueObject.ValueObject<Instance?>,
27
+ _bbCFrame: ValueObject.ValueObject<CFrame?>,
28
+ _bbSize: ValueObject.ValueObject<Vector3?>,
29
+ },
30
+ {} :: typeof({ __index = AdorneeBoundingBox })
31
+ ))
32
+ & BaseObject.BaseObject
31
33
 
32
34
  function AdorneeBoundingBox.new(initialAdornee: Instance?): AdorneeBoundingBox
33
35
  local self = setmetatable(BaseObject.new() :: any, AdorneeBoundingBox)