monkey-style-guide 2.0.115 → 2.0.116

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.
@@ -7405,6 +7405,7 @@ class MonkeyTableComponent {
7405
7405
  this.elRef = elRef;
7406
7406
  this.loading = false;
7407
7407
  this.selectable = false;
7408
+ this.showSelectAll = true;
7408
7409
  this.callbackValidation = null;
7409
7410
  this.callbackValidationAll = null;
7410
7411
  this.selectedList = null;
@@ -7502,13 +7503,13 @@ class MonkeyTableComponent {
7502
7503
  }
7503
7504
  }
7504
7505
  MonkeyTableComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.0", ngImport: i0, type: MonkeyTableComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
7505
- MonkeyTableComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.0", type: MonkeyTableComponent, selector: "monkey-table", inputs: { headers: "headers", dataSource: "dataSource", loading: "loading", rowTemplate: "rowTemplate", selectable: "selectable", callbackValidation: "callbackValidation", callbackValidationAll: "callbackValidationAll", selectedList: "selectedList", functionId: "functionId" }, outputs: { selection: "selection", selected: "selected" }, usesOnChanges: true, ngImport: i0, template: `
7506
+ MonkeyTableComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.0", type: MonkeyTableComponent, selector: "monkey-table", inputs: { headers: "headers", dataSource: "dataSource", loading: "loading", rowTemplate: "rowTemplate", selectable: "selectable", showSelectAll: "showSelectAll", callbackValidation: "callbackValidation", callbackValidationAll: "callbackValidationAll", selectedList: "selectedList", functionId: "functionId" }, outputs: { selection: "selection", selected: "selected" }, usesOnChanges: true, ngImport: i0, template: `
7506
7507
  <mecx-monkey-table>
7507
7508
  <mecx-monkey-table-header>
7508
7509
  <monkey-checkbox
7509
7510
  [value]="onHandleSelectedAll()"
7510
7511
  (click)="onHandleSelectAll($event)"
7511
- *ngIf="selectable"
7512
+ *ngIf="selectable && showSelectAll"
7512
7513
  ></monkey-checkbox>
7513
7514
  <span *ngFor="let header of headers" [style.width]="_maxWidth + '%'">
7514
7515
  {{ header }}
@@ -7544,7 +7545,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.0", ngImpor
7544
7545
  <monkey-checkbox
7545
7546
  [value]="onHandleSelectedAll()"
7546
7547
  (click)="onHandleSelectAll($event)"
7547
- *ngIf="selectable"
7548
+ *ngIf="selectable && showSelectAll"
7548
7549
  ></monkey-checkbox>
7549
7550
  <span *ngFor="let header of headers" [style.width]="_maxWidth + '%'">
7550
7551
  {{ header }}
@@ -7582,6 +7583,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.0", ngImpor
7582
7583
  type: Input
7583
7584
  }], selectable: [{
7584
7585
  type: Input
7586
+ }], showSelectAll: [{
7587
+ type: Input
7585
7588
  }], callbackValidation: [{
7586
7589
  type: Input
7587
7590
  }], callbackValidationAll: [{