Skip to content

Commit

Permalink
# 3.0.0 (April 09th 2021)
Browse files Browse the repository at this point in the history
  • Loading branch information
LCluber committed May 23, 2021
1 parent 303a0b8 commit 130121a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 3.0.1 (May 23th 2021)

- Fix scope option typing for TypeScript users.

# 3.0.0 (April 09th 2021)

- Shorter methods name (addCmd, setCmd )
Expand Down
12 changes: 6 additions & 6 deletions dist/ctrltab.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
/*
MIT License
Copyright (c) 2015 DWTechs
Expand All @@ -20,10 +20,10 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
https://github.com/DWTechs/CtrlTab.js
*/

https://github.com/DWTechs/CtrlTab.js
*/


export declare class Command {
name: string;
Expand Down Expand Up @@ -89,7 +89,7 @@ export interface CtrlKeys {
export interface Options {
preventDefault?: boolean;
groupName?: string;
scope?: this;
scope?: any;
repeat?: boolean;
[key: string]: string | boolean | this | undefined;
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dwtechs/ctrltab",
"version": "3.0.0",
"version": "3.0.1",
"description": "Shortcut key bindings library with multiple keystroke detection.",
"keywords": [
"key binding",
Expand Down
2 changes: 1 addition & 1 deletion src/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export interface CtrlKeys {
export interface Options {
preventDefault?: boolean;
groupName?: string;
scope?: this;
scope?: any;
repeat?: boolean;
[key: string]: string | boolean | this | undefined;
}
Expand Down

0 comments on commit 130121a

Please sign in to comment.