@quenty/settings-inputkeymap 10.37.1 → 10.38.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,17 @@
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.38.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/settings-inputkeymap@10.37.1...@quenty/settings-inputkeymap@10.38.0) (2026-01-06)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Add more typing ([f32615e](https://github.com/Quenty/NevermoreEngine/commit/f32615ec9d846a1a4392a3b21a0f594e8d420b44))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [10.37.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/settings-inputkeymap@10.37.0...@quenty/settings-inputkeymap@10.37.1) (2026-01-05)
7
18
 
8
19
  **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.37.1",
3
+ "version": "10.38.0",
4
4
  "description": "Input key map setting saving for players",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -36,9 +36,9 @@
36
36
  "@quenty/loader": "^10.9.1",
37
37
  "@quenty/maid": "^3.5.1",
38
38
  "@quenty/servicebag": "^11.13.4",
39
- "@quenty/settings": "^11.35.1",
39
+ "@quenty/settings": "^11.36.0",
40
40
  "@quenty/string": "^3.3.4",
41
41
  "@quenty/table": "^3.9.0"
42
42
  },
43
- "gitHead": "5232cd2c58ca0dcdf591dd8ae78995211da2f3e2"
43
+ "gitHead": "540aa2a77acbb6c9c5967fe4417400a903df2c2c"
44
44
  }
@@ -6,6 +6,7 @@
6
6
  local require = require(script.Parent.loader).load(script)
7
7
 
8
8
  local BaseObject = require("BaseObject")
9
+ local InputKeyMapList = require("InputKeyMapList")
9
10
  local InputKeyMapSettingConstants = require("InputKeyMapSettingConstants")
10
11
  local InputKeyMapSettingUtils = require("InputKeyMapSettingUtils")
11
12
  local ServiceBag = require("ServiceBag")
@@ -15,7 +16,10 @@ local InputKeyMapSettingClient = setmetatable({}, BaseObject)
15
16
  InputKeyMapSettingClient.ClassName = "InputKeyMapSettingClient"
16
17
  InputKeyMapSettingClient.__index = InputKeyMapSettingClient
17
18
 
18
- function InputKeyMapSettingClient.new(serviceBag: ServiceBag.ServiceBag, inputKeyMapList)
19
+ function InputKeyMapSettingClient.new(
20
+ serviceBag: ServiceBag.ServiceBag,
21
+ inputKeyMapList: InputKeyMapList.InputKeyMapList
22
+ )
19
23
  local self = setmetatable(BaseObject.new(), InputKeyMapSettingClient)
20
24
 
21
25
  self._serviceBag = assert(serviceBag, "No serviceBag")
@@ -1,4 +1,4 @@
1
- --!nonstrict
1
+ --!strict
2
2
  --[=[
3
3
  @class SettingsInputKeyMapServiceClient
4
4
  ]=]