Update dependencies

This commit is contained in:
József Farkas
2017-04-23 21:26:40 +02:00
parent 3ec31e9eda
commit a48b99ea05
5 changed files with 28 additions and 28 deletions

View File

@@ -33,12 +33,12 @@ const MAX_PAYLOAD_SIZE = 64;
enum Command {
UploadConfig = 8,
ApplyConfig = 9
};
}
interface SenderMessage {
buffer: Buffer;
observer: Observer<any>;
};
}
@Injectable()
export class UhkDeviceService implements OnDestroy {

View File

@@ -15,56 +15,56 @@
"@ngrx/store-devtools": "3.2.4",
"@ngrx/store-log-monitor": "3.0.2",
"@types/core-js": "0.9.35",
"@types/electron": "^1.4.34",
"@types/electron": "^1.4.37",
"@types/file-saver": "0.0.0",
"@types/jquery": "^2.0.40",
"@types/node": "^6.0.65",
"@types/usb": "^1.1.2",
"@types/node": "^6.0.70",
"@types/usb": "^1.1.3",
"angular2-template-loader": "0.6.2",
"copy-webpack-plugin": "^4.0.1",
"electron": "1.6.2",
"electron": "1.6.5",
"electron-rebuild": "^1.5.7",
"expose-loader": "^0.7.1",
"html-loader": "0.4.5",
"node-sass": "^4.5.1",
"node-sass": "^4.5.2",
"npm-run-all": "4.0.2",
"path": "^0.12.7",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.3",
"stylelint": "^7.8.0",
"stylelint": "^7.10.1",
"ts-loader": "^2.0.3",
"tslint": "~4.5.1",
"webpack": "^2.3.1",
"webpack-dev-server": "^2.4.2",
"tslint": "~5.1.0",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.4",
"webpack-svgstore-plugin": "4.0.0"
},
"dependencies": {
"@angular/animations": "4.0.0",
"@angular/common": "4.0.0",
"@angular/compiler": "4.0.0",
"@angular/core": "4.0.0",
"@angular/forms": "4.0.0",
"@angular/platform-browser": "4.0.0",
"@angular/platform-browser-dynamic": "4.0.0",
"@angular/router": "4.0.0",
"@angular/animations": "4.0.3",
"@angular/common": "4.0.3",
"@angular/compiler": "4.0.3",
"@angular/core": "4.0.3",
"@angular/forms": "4.0.3",
"@angular/platform-browser": "4.0.3",
"@angular/platform-browser-dynamic": "4.0.3",
"@angular/router": "4.0.3",
"@ngrx/core": "1.2.0",
"@ngrx/effects": "2.0.2",
"@ngrx/store": "2.2.1",
"@ngrx/effects": "2.0.3",
"@ngrx/store": "2.2.2",
"bootstrap": "^3.3.7",
"browser-stdout": "^1.3.0",
"buffer": "^5.0.3",
"buffer": "^5.0.6",
"core-js": "2.4.1",
"dragula": "^3.7.2",
"filesaver.js": "^0.2.0",
"font-awesome": "^4.6.3",
"jquery": "3.2.1",
"json-loader": "^0.5.4",
"ng2-dragula": "1.3.0",
"ng2-dragula": "1.3.1",
"ng2-select2": "1.0.0-beta.10",
"rxjs": "5.2.0",
"rxjs": "5.3.0",
"select2": "^4.0.3",
"sudo-prompt": "^7.0.0",
"typescript": "2.2.1",
"typescript": "2.2.2",
"usb": "git+https://github.com/aktary/node-usb.git",
"xml-loader": "1.2.1",
"zone.js": "0.8.5"

View File

@@ -13,7 +13,7 @@ enum TabName {
Text,
Mouse,
Delay
};
}
@Component({
selector: 'macro-action-editor',

View File

@@ -10,4 +10,4 @@ export enum LongPressAction {
mod,
fn,
mouse
};
}

View File

@@ -6,7 +6,7 @@ export enum MouseButtons {
Left = 1 << 0,
Middle = 1 << 1,
Right = 1 << 2
};
}
interface JsObjectMouseButtonMacroAction {
macroActionType: string;