rx-hotkeys 2.6.0 → 2.6.1

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -111,7 +111,7 @@ Global shortcuts (those without a `context` property) have two behaviors:
111
111
 
112
112
  ```typescript
113
113
  // This help shortcut for "?" will ONLY fire when no other context is active.
114
- keyManager.addCombination({ id: 'strictHelp', keys: Keys.QuestionMark, callback: openHelpModal }, true);
114
+ keyManager.addCombination({ id: 'strictHelp', keys: Keys.QuestionMark, callback: openHelpModal, strict: true });
115
115
  ```
116
116
 
117
117
  ### 5. Clean Up
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rx-hotkeys",
3
- "version": "2.6.0",
3
+ "version": "2.6.1",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": "tsc",