diff --git a/projects/demo/src/app/app.component.html b/projects/demo/src/app/app.component.html index b15f8cf..d6837ef 100644 --- a/projects/demo/src/app/app.component.html +++ b/projects/demo/src/app/app.component.html @@ -1,7 +1,7 @@
- + diff --git a/projects/klippa/ngx-enhancy-forms/package.json b/projects/klippa/ngx-enhancy-forms/package.json index 8b11265..823c401 100644 --- a/projects/klippa/ngx-enhancy-forms/package.json +++ b/projects/klippa/ngx-enhancy-forms/package.json @@ -1,6 +1,6 @@ { "name": "@klippa/ngx-enhancy-forms", - "version": "14.4.0", + "version": "14.5.0", "publishConfig": { "access": "public" }, diff --git a/projects/klippa/ngx-enhancy-forms/src/lib/elements/text-input/text-input.component.html b/projects/klippa/ngx-enhancy-forms/src/lib/elements/text-input/text-input.component.html index 41bf4bf..ad8aa3e 100644 --- a/projects/klippa/ngx-enhancy-forms/src/lib/elements/text-input/text-input.component.html +++ b/projects/klippa/ngx-enhancy-forms/src/lib/elements/text-input/text-input.component.html @@ -5,7 +5,7 @@ { @Input() type: 'text' | 'password' = 'text'; @Input() clearable = false; @Input() icon: 'search'; - @Input() hasBorder = true; + @Input() hasBorderLeft = true; + @Input() hasBorderRight = true; @Output() onBlur = new EventEmitter(); }