@quenty/settings-inputkeymap 10.36.3 → 10.36.4-canary.ba2274e.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,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
+ ## [10.36.4-canary.ba2274e.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/settings-inputkeymap@10.36.3...@quenty/settings-inputkeymap@10.36.4-canary.ba2274e.0) (2026-01-02)
7
+
8
+ **Note:** Version bump only for package @quenty/settings-inputkeymap
9
+
10
+
11
+
12
+
13
+
6
14
  ## [10.36.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/settings-inputkeymap@10.36.2...@quenty/settings-inputkeymap@10.36.3) (2025-12-31)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/settings-inputkeymap
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/settings-inputkeymap",
3
- "version": "10.36.3",
3
+ "version": "10.36.4-canary.ba2274e.0",
4
4
  "description": "Input key map setting saving for players",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -28,17 +28,17 @@
28
28
  "access": "public"
29
29
  },
30
30
  "dependencies": {
31
- "@quenty/baseobject": "^10.9.0",
32
- "@quenty/enumutils": "^3.4.2",
33
- "@quenty/inputkeymaputils": "^14.28.7",
34
- "@quenty/inputmode": "^13.23.7",
35
- "@quenty/jsonutils": "^10.12.3",
36
- "@quenty/loader": "^10.9.0",
37
- "@quenty/maid": "^3.5.0",
38
- "@quenty/servicebag": "^11.13.3",
39
- "@quenty/settings": "^11.34.3",
40
- "@quenty/string": "^3.3.3",
41
- "@quenty/table": "^3.8.0"
31
+ "@quenty/baseobject": "10.9.0",
32
+ "@quenty/enumutils": "3.4.2",
33
+ "@quenty/inputkeymaputils": "14.28.8-canary.ba2274e.0",
34
+ "@quenty/inputmode": "13.23.7",
35
+ "@quenty/jsonutils": "10.12.3",
36
+ "@quenty/loader": "10.9.0",
37
+ "@quenty/maid": "3.5.0",
38
+ "@quenty/servicebag": "11.13.3",
39
+ "@quenty/settings": "11.34.4-canary.ba2274e.0",
40
+ "@quenty/string": "3.3.3",
41
+ "@quenty/table": "3.8.0"
42
42
  },
43
- "gitHead": "ed3284dd547d8f9922043ca68ed16bf3769806bb"
43
+ "gitHead": "ba2274ec070356518a157d80f912b05de9f74451"
44
44
  }
@@ -7,13 +7,14 @@ local require = require(script.Parent.loader).load(script)
7
7
  local BaseObject = require("BaseObject")
8
8
  local InputKeyMapSettingConstants = require("InputKeyMapSettingConstants")
9
9
  local InputKeyMapSettingUtils = require("InputKeyMapSettingUtils")
10
+ local ServiceBag = require("ServiceBag")
10
11
  local SettingsServiceClient = require("SettingsServiceClient")
11
12
 
12
13
  local InputKeyMapSettingClient = setmetatable({}, BaseObject)
13
14
  InputKeyMapSettingClient.ClassName = "InputKeyMapSettingClient"
14
15
  InputKeyMapSettingClient.__index = InputKeyMapSettingClient
15
16
 
16
- function InputKeyMapSettingClient.new(serviceBag, inputKeyMapList)
17
+ function InputKeyMapSettingClient.new(serviceBag: ServiceBag.ServiceBag, inputKeyMapList)
17
18
  local self = setmetatable(BaseObject.new(), InputKeyMapSettingClient)
18
19
 
19
20
  self._serviceBag = assert(serviceBag, "No serviceBag")
@@ -8,6 +8,7 @@ local require = require(script.Parent.loader).load(script)
8
8
  local BaseObject = require("BaseObject")
9
9
  local InputKeyMapSettingConstants = require("InputKeyMapSettingConstants")
10
10
  local InputKeyMapSettingUtils = require("InputKeyMapSettingUtils")
11
+ local ServiceBag = require("ServiceBag")
11
12
  local SettingDefinition = require("SettingDefinition")
12
13
  local SettingsDataService = require("SettingsDataService")
13
14
 
@@ -15,7 +16,7 @@ local InputKeyMapSetting = setmetatable({}, BaseObject)
15
16
  InputKeyMapSetting.ClassName = "InputKeyMapSetting"
16
17
  InputKeyMapSetting.__index = InputKeyMapSetting
17
18
 
18
- function InputKeyMapSetting.new(serviceBag, inputKeyMapList)
19
+ function InputKeyMapSetting.new(serviceBag: ServiceBag.ServiceBag, inputKeyMapList)
19
20
  local self = setmetatable(BaseObject.new(), InputKeyMapSetting)
20
21
 
21
22
  self._serviceBag = assert(serviceBag, "No serviceBag")