novo-elements 7.7.0-next.1 → 7.7.0-next.2

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.
@@ -37617,8 +37617,8 @@ var SortDirection;
37617
37617
  SortDirection["NONE"] = "none";
37618
37618
  })(SortDirection || (SortDirection = {}));
37619
37619
 
37620
- const activeStyle = { opacity: 1, pointerEvents: 'all', top: 0 };
37621
- const inactiveStyle = { opacity: 0, pointerEvents: 'none' };
37620
+ const activeStyle = { opacity: 1, top: 0 };
37621
+ const inactiveStyle = { opacity: 0 };
37622
37622
  /** Animation that moves the sort indicator. */
37623
37623
  const sortAscAnim = trigger('sortAsc', [
37624
37624
  // ...
@@ -37673,10 +37673,10 @@ class NovoDataTableSortButton {
37673
37673
  }
37674
37674
  }
37675
37675
  NovoDataTableSortButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoDataTableSortButton, deps: [{ token: DataTableState }, { token: i0.ChangeDetectorRef }, { token: NovoLabelService }], target: i0.ɵɵFactoryTarget.Component });
37676
- NovoDataTableSortButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: NovoDataTableSortButton, selector: "novo-sort-button", inputs: { value: "value" }, outputs: { sortChange: "sortChange" }, ngImport: i0, template: "<novo-icon\n class=\"novo-sort-asc-icon\"\n [class.sort-active]=\"isActive\"\n [@sortAsc]=\"value\"\n (click)=\"changeSort(SortDirection.DESC)\">arrow-up</novo-icon>\n<novo-icon\n class=\"novo-sort-desc-icon\"\n [class.sort-active]=\"isActive\"\n [@sortDesc]=\"value\"\n (click)=\"changeSort(SortDirection.NONE)\">arrow-down</novo-icon>\n<novo-icon\n class=\"novo-sortable-icon\"\n [class.sort-active]=\"isActive\"\n [@sortNone]=\"value\"\n (click)=\"changeSort(SortDirection.ASC)\">sortable</novo-icon>", styles: [":host{display:inline-flex;position:relative;width:1.6rem;height:1.6rem;cursor:pointer}:host novo-icon{position:absolute;opacity:0;color:var(--text-muted)}:host novo-icon:hover{color:var(--selection)}:host .novo-sort-asc-icon{top:10px;color:var(--selection)}:host .novo-sort-desc-icon{top:-10px;color:var(--selection)}\n"], components: [{ type: NovoIconComponent, selector: "novo-icon", inputs: ["raised", "theme", "shape", "color", "size", "smaller", "larger", "alt", "name"] }], animations: [sortAscAnim, sortDescAnim, sortNoneAnim], changeDetection: i0.ChangeDetectionStrategy.OnPush });
37676
+ NovoDataTableSortButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: NovoDataTableSortButton, selector: "novo-sort-button", inputs: { value: "value" }, outputs: { sortChange: "sortChange" }, ngImport: i0, template: "<novo-icon\n class=\"novo-sort-asc-icon\"\n [class.sort-active]=\"isActive\"\n [class.sort-hidden]=\"value !== SortDirection.ASC\"\n [@sortAsc]=\"value\"\n (click)=\"changeSort(SortDirection.DESC)\">arrow-up</novo-icon>\n<novo-icon\n class=\"novo-sort-desc-icon\"\n [class.sort-active]=\"isActive\"\n [class.sort-hidden]=\"value !== SortDirection.DESC\"\n [@sortDesc]=\"value\"\n (click)=\"changeSort(SortDirection.NONE)\">arrow-down</novo-icon>\n<novo-icon\n class=\"novo-sortable-icon\"\n [class.sort-active]=\"isActive\"\n [class.sort-hidden]=\"value !== SortDirection.NONE\"\n [@sortNone]=\"value\"\n (click)=\"changeSort(SortDirection.ASC)\">sortable</novo-icon>", styles: [":host{display:inline-flex;position:relative;width:1.6rem;height:1.6rem;cursor:pointer}:host novo-icon{position:absolute;opacity:0;color:var(--text-muted)}:host novo-icon:hover{color:var(--selection)}:host novo-icon.sort-hidden{pointer-events:none}:host .novo-sort-asc-icon{top:10px;color:var(--selection)}:host .novo-sort-desc-icon{top:-10px;color:var(--selection)}\n"], components: [{ type: NovoIconComponent, selector: "novo-icon", inputs: ["raised", "theme", "shape", "color", "size", "smaller", "larger", "alt", "name"] }], animations: [sortAscAnim, sortDescAnim, sortNoneAnim], changeDetection: i0.ChangeDetectionStrategy.OnPush });
37677
37677
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoDataTableSortButton, decorators: [{
37678
37678
  type: Component,
37679
- args: [{ selector: 'novo-sort-button', changeDetection: ChangeDetectionStrategy.OnPush, animations: [sortAscAnim, sortDescAnim, sortNoneAnim], template: "<novo-icon\n class=\"novo-sort-asc-icon\"\n [class.sort-active]=\"isActive\"\n [@sortAsc]=\"value\"\n (click)=\"changeSort(SortDirection.DESC)\">arrow-up</novo-icon>\n<novo-icon\n class=\"novo-sort-desc-icon\"\n [class.sort-active]=\"isActive\"\n [@sortDesc]=\"value\"\n (click)=\"changeSort(SortDirection.NONE)\">arrow-down</novo-icon>\n<novo-icon\n class=\"novo-sortable-icon\"\n [class.sort-active]=\"isActive\"\n [@sortNone]=\"value\"\n (click)=\"changeSort(SortDirection.ASC)\">sortable</novo-icon>", styles: [":host{display:inline-flex;position:relative;width:1.6rem;height:1.6rem;cursor:pointer}:host novo-icon{position:absolute;opacity:0;color:var(--text-muted)}:host novo-icon:hover{color:var(--selection)}:host .novo-sort-asc-icon{top:10px;color:var(--selection)}:host .novo-sort-desc-icon{top:-10px;color:var(--selection)}\n"] }]
37679
+ args: [{ selector: 'novo-sort-button', changeDetection: ChangeDetectionStrategy.OnPush, animations: [sortAscAnim, sortDescAnim, sortNoneAnim], template: "<novo-icon\n class=\"novo-sort-asc-icon\"\n [class.sort-active]=\"isActive\"\n [class.sort-hidden]=\"value !== SortDirection.ASC\"\n [@sortAsc]=\"value\"\n (click)=\"changeSort(SortDirection.DESC)\">arrow-up</novo-icon>\n<novo-icon\n class=\"novo-sort-desc-icon\"\n [class.sort-active]=\"isActive\"\n [class.sort-hidden]=\"value !== SortDirection.DESC\"\n [@sortDesc]=\"value\"\n (click)=\"changeSort(SortDirection.NONE)\">arrow-down</novo-icon>\n<novo-icon\n class=\"novo-sortable-icon\"\n [class.sort-active]=\"isActive\"\n [class.sort-hidden]=\"value !== SortDirection.NONE\"\n [@sortNone]=\"value\"\n (click)=\"changeSort(SortDirection.ASC)\">sortable</novo-icon>", styles: [":host{display:inline-flex;position:relative;width:1.6rem;height:1.6rem;cursor:pointer}:host novo-icon{position:absolute;opacity:0;color:var(--text-muted)}:host novo-icon:hover{color:var(--selection)}:host novo-icon.sort-hidden{pointer-events:none}:host .novo-sort-asc-icon{top:10px;color:var(--selection)}:host .novo-sort-desc-icon{top:-10px;color:var(--selection)}\n"] }]
37680
37680
  }], ctorParameters: function () { return [{ type: DataTableState }, { type: i0.ChangeDetectorRef }, { type: NovoLabelService }]; }, propDecorators: { sortChange: [{
37681
37681
  type: Output
37682
37682
  }], value: [{