@quenty/counter 7.21.4-canary.607f741.0 → 7.21.4-canary.7b02662.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
- ## [7.21.4-canary.607f741.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/counter@7.21.3...@quenty/counter@7.21.4-canary.607f741.0) (2025-12-28)
6
+ ## [7.21.4-canary.7b02662.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/counter@7.21.3...@quenty/counter@7.21.4-canary.7b02662.0) (2025-12-13)
7
7
 
8
8
  **Note:** Version bump only for package @quenty/counter
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/counter",
3
- "version": "7.21.4-canary.607f741.0",
3
+ "version": "7.21.4-canary.7b02662.0",
4
4
  "description": "Helps count a total value",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -30,10 +30,10 @@
30
30
  "@quenty/maid": "3.5.0",
31
31
  "@quenty/rx": "13.20.0",
32
32
  "@quenty/signal": "7.11.1",
33
- "@quenty/valueobject": "13.21.3-canary.607f741.0"
33
+ "@quenty/valueobject": "13.21.2"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "607f7418f46b85cd5843f1c5665911eb2dd7e3fb"
38
+ "gitHead": "7b02662beb4f525456f6e2ee3d13e0b8613939b1"
39
39
  }
@@ -15,22 +15,20 @@ local Counter = setmetatable({}, BaseObject)
15
15
  Counter.ClassName = "Counter"
16
16
  Counter.__index = Counter
17
17
 
18
- export type Counter =
19
- typeof(setmetatable(
20
- {} :: {
21
- _count: ValueObject.ValueObject<number>,
18
+ export type Counter = typeof(setmetatable(
19
+ {} :: {
20
+ _count: ValueObject.ValueObject<number>,
22
21
 
23
- --[=[
22
+ --[=[
24
23
  Fires when the count changes
25
24
  @readonly
26
25
  @prop Changed Signal.Signal<number>
27
26
  @within Counter
28
27
  ]=]
29
- Changed: Signal.Signal<number>,
30
- },
31
- {} :: typeof({ __index = Counter })
32
- ))
33
- & BaseObject.BaseObject
28
+ Changed: Signal.Signal<number>,
29
+ },
30
+ {} :: typeof({ __index = Counter })
31
+ )) & BaseObject.BaseObject
34
32
 
35
33
  --[=[
36
34
  Creates a new counter