@quenty/enabledmixin 11.12.4-canary.559.9f38947.0 → 11.13.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,20 +3,12 @@
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
- ## [11.12.4-canary.559.9f38947.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/enabledmixin@11.12.3...@quenty/enabledmixin@11.12.4-canary.559.9f38947.0) (2025-05-10)
6
+ # [11.13.0-canary.0a5db80.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/enabledmixin@11.12.2...@quenty/enabledmixin@11.13.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))
12
-
13
-
14
-
15
-
16
-
17
- ## [11.12.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/enabledmixin@11.12.2...@quenty/enabledmixin@11.12.3) (2025-04-10)
18
-
19
- **Note:** Version bump only for package @quenty/enabledmixin
11
+ * Additional type checking updates ([7e008c5](https://github.com/Quenty/NevermoreEngine/commit/7e008c58547bd00b5904e56541454a38c8d72ccc))
20
12
 
21
13
 
22
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/enabledmixin",
3
- "version": "11.12.4-canary.559.9f38947.0",
3
+ "version": "11.13.0-canary.0a5db80.0",
4
4
  "description": "Adds Enabled/Disabled state to class",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,14 +25,14 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/loader": "10.8.4-canary.559.9f38947.0",
29
- "@quenty/maid": "3.4.4-canary.559.9f38947.0",
30
- "@quenty/rx": "13.17.4-canary.559.9f38947.0",
31
- "@quenty/signal": "7.10.4-canary.559.9f38947.0",
32
- "@quenty/valueobject": "13.17.4-canary.559.9f38947.0"
28
+ "@quenty/loader": "10.9.0-canary.0a5db80.0",
29
+ "@quenty/maid": "3.5.0-canary.0a5db80.0",
30
+ "@quenty/rx": "13.18.0-canary.0a5db80.0",
31
+ "@quenty/signal": "7.11.0-canary.0a5db80.0",
32
+ "@quenty/valueobject": "13.18.0-canary.0a5db80.0"
33
33
  },
34
34
  "publishConfig": {
35
35
  "access": "public"
36
36
  },
37
- "gitHead": "9f38947767d202411936a5c98898033df5865da0"
37
+ "gitHead": "0a5db8004684dc3e76fd5944599a22602d48cfa9"
38
38
  }
@@ -5,10 +5,10 @@
5
5
 
6
6
  local require = require(script.Parent.loader).load(script)
7
7
 
8
- local Maid = require("Maid")
9
- local Observable = require("Observable")
10
8
  local Signal = require("Signal")
11
9
  local ValueObject = require("ValueObject")
10
+ local Observable = require("Observable")
11
+ local Maid = require("Maid")
12
12
 
13
13
  local EnabledMixin = {}
14
14
 
@@ -68,4 +68,4 @@ function EnabledMixin:SetEnabled(isEnabled: boolean, doNotAnimate: boolean?)
68
68
  self._enabledState:SetValue(isEnabled, doNotAnimate)
69
69
  end
70
70
 
71
- return EnabledMixin
71
+ return EnabledMixin