@quenty/inputkeymaputils 9.0.0 → 10.0.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,58 @@
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.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputkeymaputils@9.0.0...@quenty/inputkeymaputils@10.0.0) (2024-02-13)
7
+
8
+
9
+ ### Features
10
+
11
+ * New loader (breaking changes), fixing loader issues ([#439](https://github.com/Quenty/NevermoreEngine/issues/439)) ([3534345](https://github.com/Quenty/NevermoreEngine/commit/353434522918812953bd9f13fece73e27a4d034d))
12
+
13
+
14
+ ### BREAKING CHANGES
15
+
16
+ * Standard loader
17
+
18
+ Adds new loader version which replicates full structure instead of some partial structure. This allows us to have hot-reloading (in the future), as well as generally do less computation, handle dependencies more carefully, and other changes.
19
+
20
+ This means you'll need to change you how require client-side modules, as we export a simple `loader` module instead of all modules available.
21
+
22
+ Signed-off-by: James Onnen <jonnen0@gmail.com>
23
+
24
+ * fix: Fix missing dependency in ResetService
25
+
26
+ * feat: Add RxPhysicsUtils.observePartMass
27
+
28
+ * fix: Fix package discovery for games
29
+
30
+ * feat: Add UIAlignmentUtils.verticalToHorizontalAlignment(verticalAlignment) and UIAlignmentUtils.horizontalToVerticalAlignment(horizontalAlignment)
31
+
32
+ * feat: AdorneeData:InitAttributes() does not require data as a secondparameter
33
+
34
+ * ci: Upgrade to new rojo 7.4.0
35
+
36
+ * fix: Update loader to handle hoarcekat properly
37
+
38
+ * docs: Fix spacing in Maid
39
+
40
+ * fix: Add new ragdoll constants
41
+
42
+ * fix: Compress influxDB sends
43
+
44
+ * style: Errors use string.format
45
+
46
+ * fix: Handle motor animations
47
+
48
+ * ci: Upgrade rojo version
49
+
50
+ * feat!: Maid no longer is includd in ValueObject.Changed event
51
+
52
+ * docs: Fix docs
53
+
54
+
55
+
56
+
57
+
6
58
  # [9.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputkeymaputils@8.6.0...@quenty/inputkeymaputils@9.0.0) (2024-01-10)
7
59
 
8
60
  **Note:** Version bump only for package @quenty/inputkeymaputils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/inputkeymaputils",
3
- "version": "9.0.0",
3
+ "version": "10.0.0",
4
4
  "description": "System to define rebindable key bindings and inputs for Roblox.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -26,25 +26,26 @@
26
26
  "Quenty"
27
27
  ],
28
28
  "dependencies": {
29
- "@quenty/baseobject": "^7.2.0",
30
- "@quenty/brio": "^10.0.0",
31
- "@quenty/clienttranslator": "^10.0.0",
29
+ "@quenty/baseobject": "^8.0.0",
30
+ "@quenty/brio": "^11.0.0",
31
+ "@quenty/clienttranslator": "^11.0.0",
32
+ "@quenty/ducktype": "^3.0.0",
32
33
  "@quenty/enumutils": "^3.1.0",
33
- "@quenty/inputmode": "^9.0.0",
34
- "@quenty/loader": "^7.3.0",
35
- "@quenty/maid": "^2.6.0",
36
- "@quenty/observablecollection": "^7.0.0",
34
+ "@quenty/inputmode": "^10.0.0",
35
+ "@quenty/loader": "^8.0.0",
36
+ "@quenty/maid": "^3.0.0",
37
+ "@quenty/observablecollection": "^8.0.0",
37
38
  "@quenty/pseudolocalize": "^3.2.0",
38
- "@quenty/rx": "^9.0.0",
39
- "@quenty/servicebag": "^8.0.0",
40
- "@quenty/statestack": "^10.0.0",
39
+ "@quenty/rx": "^10.0.0",
40
+ "@quenty/servicebag": "^9.0.0",
41
+ "@quenty/statestack": "^11.0.0",
41
42
  "@quenty/string": "^3.1.0",
42
43
  "@quenty/table": "^3.4.0",
43
- "@quenty/valuebaseutils": "^9.0.0",
44
- "@quenty/valueobject": "^9.0.0"
44
+ "@quenty/valuebaseutils": "^10.0.0",
45
+ "@quenty/valueobject": "^10.0.0"
45
46
  },
46
47
  "publishConfig": {
47
48
  "access": "public"
48
49
  },
49
- "gitHead": "bf8135721716c976201cb82133e0186ea606b166"
50
+ "gitHead": "5736b108e4d23cd4c9e761bbe4cc9fed6fb32dfa"
50
51
  }
@@ -42,8 +42,11 @@ local require = require(script.Parent.loader).load(script)
42
42
 
43
43
  local BaseObject = require("BaseObject")
44
44
  local Brio = require("Brio")
45
+ local DuckTypeUtils = require("DuckTypeUtils")
46
+ local InputChordUtils = require("InputChordUtils")
45
47
  local InputKeyMap = require("InputKeyMap")
46
48
  local InputModeType = require("InputModeType")
49
+ local InputModeTypes = require("InputModeTypes")
47
50
  local InputTypeUtils = require("InputTypeUtils")
48
51
  local Maid = require("Maid")
49
52
  local ObservableCountingMap = require("ObservableCountingMap")
@@ -53,8 +56,6 @@ local RxBrioUtils = require("RxBrioUtils")
53
56
  local SlottedTouchButtonUtils = require("SlottedTouchButtonUtils")
54
57
  local StateStack = require("StateStack")
55
58
  local String = require("String")
56
- local InputChordUtils = require("InputChordUtils")
57
- local InputModeTypes = require("InputModeTypes")
58
59
 
59
60
  local InputKeyMapList = setmetatable({}, BaseObject)
60
61
  InputKeyMapList.ClassName = "InputKeyMapList"
@@ -131,7 +132,7 @@ end
131
132
  @return boolean
132
133
  ]=]
133
134
  function InputKeyMapList.isInputKeyMapList(value)
134
- return type(value) == "table" and getmetatable(value) == InputKeyMapList
135
+ return DuckTypeUtils.isImplementation(InputKeyMapList, value)
135
136
  end
136
137
 
137
138
  --[=[