@quenty/counter 7.21.4-canary.7b02662.0 → 7.21.4

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