diff --git a/.gitignore b/.gitignore index d50a446..5883b72 100644 --- a/.gitignore +++ b/.gitignore @@ -9,9 +9,6 @@ src/*.d.ts typings typings.json -# yarn -yarn.lock - # VS Code .vscode/* diff --git a/package.json b/package.json index 9780461..5b66636 100644 --- a/package.json +++ b/package.json @@ -48,17 +48,17 @@ }, "dependencies": {}, "peerDependencies": { - "@angular/common": "^4.0.2", - "@angular/core": "^4.0.2", - "@angular/forms": "^4.0.2" + "@angular/common": "^4.0.0", + "@angular/core": "^4.0.0", + "@angular/forms": "^4.0.0" }, "devDependencies": { - "@angular/common": "^4.0.2", - "@angular/compiler": "^4.0.2", - "@angular/core": "^4.0.2", - "@angular/forms": "^4.0.2", + "@angular/common": "^4.1.3", + "@angular/compiler": "^4.1.3", + "@angular/core": "^4.1.3", + "@angular/forms": "^4.1.3", "@types/del": "^2.2.32", - "@types/gulp": "^3.8.32", + "@types/gulp": "^4.0.3", "@types/gulp-changed": "^0.0.31", "@types/gulp-rename": "^0.0.32", "@types/jasmine": "^2.5.47", @@ -98,7 +98,7 @@ "ts-loader": "^2.0.3", "ts-node": "~2.0.0", "tslint": "^5.1.0", - "typescript": "~2.2.2", + "typescript": "~2.3.3", "zone.js": "^0.8.5" }, "engines": { diff --git a/src/configs.ts b/src/configs.ts new file mode 100644 index 0000000..1bbdff8 --- /dev/null +++ b/src/configs.ts @@ -0,0 +1,8 @@ +export { + InputConfig, + InputBaseConfig, + InputTextConfig, + InputNumberConfig, + InputSelectConfig, + InputTextareaConfig, +} from "./types/input-configs"; diff --git a/src/inline-editor.component.html b/src/inline-editor.component.html index 9d99506..ab42a05 100644 --- a/src/inline-editor.component.html +++ b/src/inline-editor.component.html @@ -1,13 +1,15 @@