@acontplus/ng-components 2.1.6 → 2.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3602,7 +3602,7 @@ class DateRangePicker {
3602
3602
  @if (showCheckbox() && checkboxPosition() === 'prefix') {
3603
3603
  <mat-checkbox
3604
3604
  matPrefix
3605
- [checked]="checkboxChecked()"
3605
+ [(ngModel)]="checkboxChecked"
3606
3606
  [disabled]="checkboxReadonly()"
3607
3607
  [aria-label]="checkboxAriaLabel()"
3608
3608
  (change)="onCheckboxToggle($event)"
@@ -3623,7 +3623,7 @@ class DateRangePicker {
3623
3623
  @if (showCheckbox() && checkboxPosition() === 'suffix') {
3624
3624
  <mat-checkbox
3625
3625
  matSuffix
3626
- [checked]="checkboxChecked()"
3626
+ [(ngModel)]="checkboxChecked"
3627
3627
  [disabled]="checkboxReadonly()"
3628
3628
  [aria-label]="checkboxAriaLabel()"
3629
3629
  (change)="onCheckboxToggle($event)"
@@ -3639,11 +3639,18 @@ class DateRangePicker {
3639
3639
  <mat-error>{{ errorMessage() }}</mat-error>
3640
3640
  }
3641
3641
  </mat-form-field>
3642
- `, isInline: true, styles: [".full-width{width:100%}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$5.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$5.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1$5.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1$5.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "directive", type: i1$5.MatPrefix, selector: "[matPrefix], [matIconPrefix], [matTextPrefix]", inputs: ["matTextPrefix"] }, { kind: "directive", type: i1$5.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2$3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "ngmodule", type: MatIconModule }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i3$2.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }] });
3642
+ `, isInline: true, styles: [".full-width{width:100%}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$5.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$5.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1$5.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1$5.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "directive", type: i1$5.MatPrefix, selector: "[matPrefix], [matIconPrefix], [matTextPrefix]", inputs: ["matTextPrefix"] }, { kind: "directive", type: i1$5.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2$3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "ngmodule", type: MatIconModule }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i3$2.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
3643
3643
  }
3644
3644
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: DateRangePicker, decorators: [{
3645
3645
  type: Component,
3646
- args: [{ selector: 'acp-date-range-picker', standalone: true, imports: [MatFormFieldModule, MatInputModule, MatButtonModule, MatIconModule, MatCheckboxModule], providers: [
3646
+ args: [{ selector: 'acp-date-range-picker', standalone: true, imports: [
3647
+ MatFormFieldModule,
3648
+ MatInputModule,
3649
+ MatButtonModule,
3650
+ MatIconModule,
3651
+ MatCheckboxModule,
3652
+ FormsModule,
3653
+ ], providers: [
3647
3654
  {
3648
3655
  provide: NG_VALUE_ACCESSOR,
3649
3656
  useExisting: forwardRef(() => DateRangePicker),
@@ -3666,7 +3673,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImpor
3666
3673
  @if (showCheckbox() && checkboxPosition() === 'prefix') {
3667
3674
  <mat-checkbox
3668
3675
  matPrefix
3669
- [checked]="checkboxChecked()"
3676
+ [(ngModel)]="checkboxChecked"
3670
3677
  [disabled]="checkboxReadonly()"
3671
3678
  [aria-label]="checkboxAriaLabel()"
3672
3679
  (change)="onCheckboxToggle($event)"
@@ -3687,7 +3694,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImpor
3687
3694
  @if (showCheckbox() && checkboxPosition() === 'suffix') {
3688
3695
  <mat-checkbox
3689
3696
  matSuffix
3690
- [checked]="checkboxChecked()"
3697
+ [(ngModel)]="checkboxChecked"
3691
3698
  [disabled]="checkboxReadonly()"
3692
3699
  [aria-label]="checkboxAriaLabel()"
3693
3700
  (change)="onCheckboxToggle($event)"