Skip to content

Commit

Permalink
Merge branch 'main' into main-v16
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Strik committed Aug 8, 2023
2 parents abd32ef + 2aed107 commit 08e1a6f
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 4 deletions.
2 changes: 2 additions & 0 deletions projects/demo/src/app/app.component.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<klp-form [formGroup]="myForm">
<div style="height: 500px; overflow: auto">
<app-deep-input>
</app-deep-input>
<klp-form-element caption="Name" spaceDistribution="34-66">
<klp-form-text-input formControlName="name" [hasBorderLeft]="false" [hasBorderRight]="false">
</klp-form-text-input>
Expand Down
1 change: 1 addition & 0 deletions projects/demo/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export class AppComponent {
isChecked: boolean = undefined;

public myForm = this.fb.group({
deepInput: ['', Validators.required],
name: [''],
emails: [''],
disabledButRendered: ['disabledButRendered'],
Expand Down
2 changes: 2 additions & 0 deletions projects/demo/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import {AppComponent} from './app.component';
import {NgxEnhancyFormsModule} from '@klippa/ngx-enhancy-forms';
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
import {SubFormExampleComponent} from './subForm/sub-form-example.component';
import DeepInputComponent from './deep-input/deep-input.component';

@NgModule({
imports: [
Expand All @@ -18,6 +19,7 @@ import {SubFormExampleComponent} from './subForm/sub-form-example.component';
declarations: [
AppComponent,
SubFormExampleComponent,
DeepInputComponent,
],
providers: [],
bootstrap: [AppComponent]
Expand Down
6 changes: 6 additions & 0 deletions projects/demo/src/app/deep-input/deep-input.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<ng-container [formGroup]="fg.form">
<klp-form-element caption="deep input">
<klp-form-text-input formControlName="deepInput">
</klp-form-text-input>
</klp-form-element>
</ng-container>
10 changes: 10 additions & 0 deletions projects/demo/src/app/deep-input/deep-input.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { Component, inject } from "@angular/core";
import { FormGroupDirective } from "@angular/forms";

@Component({
selector: 'app-deep-input',
templateUrl: './deep-input.component.html',
})
export default class DeepInputComponent {
protected fg = inject(FormGroupDirective);
}
2 changes: 1 addition & 1 deletion projects/klippa/ngx-enhancy-forms/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@klippa/ngx-enhancy-forms",
"version": "16.6.2",
"version": "16.7.0",
"publishConfig": {
"access": "public"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,9 @@ export class FormElementComponent {
private input: ValueAccessorBase<any>;

constructor(
@Host() @Optional() private parent: FormComponent,
@Optional() private parent: FormComponent,
@Inject(FORM_ERROR_MESSAGES) @Optional() private customMessages: CustomErrorMessages,
) {
}
) {}

public shouldShowErrorMessages(): boolean {
return this.parent?.showErrorMessages !== false;
Expand Down

0 comments on commit 08e1a6f

Please sign in to comment.