@quenty/settings-inputkeymap 10.36.3 → 10.36.4-canary.90de6eb.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.90de6eb.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/settings-inputkeymap@10.36.3...@quenty/settings-inputkeymap@10.36.4-canary.90de6eb.0) (2026-01-03)
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.90de6eb.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.1-canary.90de6eb.0",
32
+ "@quenty/enumutils": "3.4.3-canary.90de6eb.0",
33
+ "@quenty/inputkeymaputils": "14.28.8-canary.90de6eb.0",
34
+ "@quenty/inputmode": "13.23.8-canary.90de6eb.0",
35
+ "@quenty/jsonutils": "10.12.4-canary.90de6eb.0",
36
+ "@quenty/loader": "10.9.1-canary.90de6eb.0",
37
+ "@quenty/maid": "3.5.1-canary.90de6eb.0",
38
+ "@quenty/servicebag": "11.13.4-canary.90de6eb.0",
39
+ "@quenty/settings": "11.34.4-canary.90de6eb.0",
40
+ "@quenty/string": "3.3.4-canary.90de6eb.0",
41
+ "@quenty/table": "3.8.0"
42
42
  },
43
- "gitHead": "ed3284dd547d8f9922043ca68ed16bf3769806bb"
43
+ "gitHead": "90de6ebb6e0cb5e6798e08b312cb1864c1d3354c"
44
44
  }
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  @class InputKeyMapSettingClient
3
4
  ]=]
@@ -7,13 +8,14 @@ local require = require(script.Parent.loader).load(script)
7
8
  local BaseObject = require("BaseObject")
8
9
  local InputKeyMapSettingConstants = require("InputKeyMapSettingConstants")
9
10
  local InputKeyMapSettingUtils = require("InputKeyMapSettingUtils")
11
+ local ServiceBag = require("ServiceBag")
10
12
  local SettingsServiceClient = require("SettingsServiceClient")
11
13
 
12
14
  local InputKeyMapSettingClient = setmetatable({}, BaseObject)
13
15
  InputKeyMapSettingClient.ClassName = "InputKeyMapSettingClient"
14
16
  InputKeyMapSettingClient.__index = InputKeyMapSettingClient
15
17
 
16
- function InputKeyMapSettingClient.new(serviceBag, inputKeyMapList)
18
+ function InputKeyMapSettingClient.new(serviceBag: ServiceBag.ServiceBag, inputKeyMapList)
17
19
  local self = setmetatable(BaseObject.new(), InputKeyMapSettingClient)
18
20
 
19
21
  self._serviceBag = assert(serviceBag, "No serviceBag")
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  @class SettingsInputKeyMapServiceClient
3
4
  ]=]
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  Registers the settings automatically so we can validate on the server.
3
4
  @class InputKeyMapSetting
@@ -8,6 +9,7 @@ local require = require(script.Parent.loader).load(script)
8
9
  local BaseObject = require("BaseObject")
9
10
  local InputKeyMapSettingConstants = require("InputKeyMapSettingConstants")
10
11
  local InputKeyMapSettingUtils = require("InputKeyMapSettingUtils")
12
+ local ServiceBag = require("ServiceBag")
11
13
  local SettingDefinition = require("SettingDefinition")
12
14
  local SettingsDataService = require("SettingsDataService")
13
15
 
@@ -15,7 +17,7 @@ local InputKeyMapSetting = setmetatable({}, BaseObject)
15
17
  InputKeyMapSetting.ClassName = "InputKeyMapSetting"
16
18
  InputKeyMapSetting.__index = InputKeyMapSetting
17
19
 
18
- function InputKeyMapSetting.new(serviceBag, inputKeyMapList)
20
+ function InputKeyMapSetting.new(serviceBag: ServiceBag.ServiceBag, inputKeyMapList)
19
21
  local self = setmetatable(BaseObject.new(), InputKeyMapSetting)
20
22
 
21
23
  self._serviceBag = assert(serviceBag, "No serviceBag")
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  @class SettingsInputKeyMapService
3
4
  ]=]
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  @class InputKeyMapSettingConstants
3
4
  ]=]
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  Helper methods for encoding and decoding input lists into network storage
3
4
  @class InputKeyMapSettingUtils
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[[
2
3
  @class ClientMain
3
4
  ]]
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[[
2
3
  @class ServerMain
3
4
  ]]