novo-elements 7.8.0 → 7.9.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.
- package/elements/data-table/data-table.component.scss +1 -1
- package/esm2020/src/elements/data-table/cell-headers/data-table-header-cell-filter-header.component.mjs +69 -0
- package/esm2020/src/elements/data-table/cell-headers/data-table-header-cell.component.mjs +205 -216
- package/esm2020/src/elements/data-table/cell-headers/index.mjs +2 -1
- package/esm2020/src/elements/data-table/data-table.component.mjs +3 -3
- package/esm2020/src/elements/data-table/data-table.module.mjs +6 -1
- package/esm2020/src/elements/data-table/interfaces.mjs +1 -1
- package/esm2020/src/elements/quick-note/QuickNote.mjs +2 -2
- package/fesm2015/novo-elements.mjs +260 -207
- package/fesm2015/novo-elements.mjs.map +1 -1
- package/fesm2020/novo-elements.mjs +260 -207
- package/fesm2020/novo-elements.mjs.map +1 -1
- package/package.json +1 -1
- package/src/elements/data-table/cell-headers/data-table-header-cell-filter-header.component.d.ts +16 -0
- package/src/elements/data-table/cell-headers/data-table-header-cell.component.d.ts +2 -1
- package/src/elements/data-table/cell-headers/index.d.ts +1 -0
- package/src/elements/data-table/data-table.module.d.ts +32 -31
- package/src/elements/data-table/interfaces.d.ts +3 -1
|
@@ -37749,6 +37749,66 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
37749
37749
|
}]
|
|
37750
37750
|
}], ctorParameters: function () { return [{ type: DataTableState }]; } });
|
|
37751
37751
|
|
|
37752
|
+
class NovoDataTableCellFilterHeader {
|
|
37753
|
+
constructor(changeDetectorRef, labels) {
|
|
37754
|
+
this.changeDetectorRef = changeDetectorRef;
|
|
37755
|
+
this.labels = labels;
|
|
37756
|
+
this.hasFilter = false;
|
|
37757
|
+
this.clearFilter = new EventEmitter();
|
|
37758
|
+
}
|
|
37759
|
+
set filter(filter) {
|
|
37760
|
+
this._filter = filter;
|
|
37761
|
+
this.hasFilter = !Helpers.isEmpty(filter);
|
|
37762
|
+
}
|
|
37763
|
+
get filter() {
|
|
37764
|
+
return this._filter;
|
|
37765
|
+
}
|
|
37766
|
+
}
|
|
37767
|
+
NovoDataTableCellFilterHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoDataTableCellFilterHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: NovoLabelService }], target: i0.ɵɵFactoryTarget.Component });
|
|
37768
|
+
NovoDataTableCellFilterHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: NovoDataTableCellFilterHeader, selector: "novo-data-table-cell-filter-header", inputs: { label: "label", filter: "filter" }, outputs: { clearFilter: "clearFilter" }, ngImport: i0, template: `
|
|
37769
|
+
<div class="header">
|
|
37770
|
+
<novo-label>{{ label || labels.filters }}</novo-label>
|
|
37771
|
+
<novo-button
|
|
37772
|
+
theme="dialogue"
|
|
37773
|
+
color="negative"
|
|
37774
|
+
size="small"
|
|
37775
|
+
icon="times"
|
|
37776
|
+
(click)="clearFilter.emit()"
|
|
37777
|
+
*ngIf="hasFilter"
|
|
37778
|
+
data-automation-id="novo-data-table-filter-clear">
|
|
37779
|
+
{{ labels.clear }}
|
|
37780
|
+
</novo-button>
|
|
37781
|
+
</div>
|
|
37782
|
+
`, isInline: true, components: [{ type: NovoLabel, selector: "novo-label,[novo-label]" }, { type: NovoButtonElement, selector: "novo-button,button[theme]", inputs: ["color", "side", "size", "theme", "loading", "icon", "disabled"] }], directives: [{ type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: ThemeColorDirective, selector: "[theme]", inputs: ["theme"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
37783
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoDataTableCellFilterHeader, decorators: [{
|
|
37784
|
+
type: Component,
|
|
37785
|
+
args: [{
|
|
37786
|
+
selector: 'novo-data-table-cell-filter-header',
|
|
37787
|
+
template: `
|
|
37788
|
+
<div class="header">
|
|
37789
|
+
<novo-label>{{ label || labels.filters }}</novo-label>
|
|
37790
|
+
<novo-button
|
|
37791
|
+
theme="dialogue"
|
|
37792
|
+
color="negative"
|
|
37793
|
+
size="small"
|
|
37794
|
+
icon="times"
|
|
37795
|
+
(click)="clearFilter.emit()"
|
|
37796
|
+
*ngIf="hasFilter"
|
|
37797
|
+
data-automation-id="novo-data-table-filter-clear">
|
|
37798
|
+
{{ labels.clear }}
|
|
37799
|
+
</novo-button>
|
|
37800
|
+
</div>
|
|
37801
|
+
`,
|
|
37802
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
37803
|
+
}]
|
|
37804
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: NovoLabelService }]; }, propDecorators: { label: [{
|
|
37805
|
+
type: Input
|
|
37806
|
+
}], filter: [{
|
|
37807
|
+
type: Input
|
|
37808
|
+
}], clearFilter: [{
|
|
37809
|
+
type: Output
|
|
37810
|
+
}] } });
|
|
37811
|
+
|
|
37752
37812
|
// NG2
|
|
37753
37813
|
class NovoFlexElement {
|
|
37754
37814
|
constructor() {
|
|
@@ -38312,6 +38372,9 @@ class NovoDataTableCellHeader {
|
|
|
38312
38372
|
}
|
|
38313
38373
|
this.config.transforms = transforms;
|
|
38314
38374
|
}
|
|
38375
|
+
get column() {
|
|
38376
|
+
return this._column;
|
|
38377
|
+
}
|
|
38315
38378
|
ngOnInit() {
|
|
38316
38379
|
if (this._cdkColumnDef) {
|
|
38317
38380
|
this.id = this._cdkColumnDef.name;
|
|
@@ -38596,16 +38659,14 @@ NovoDataTableCellHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
38596
38659
|
[tooltip]="labels.sort"
|
|
38597
38660
|
[attr.data-feature-id]="'novo-data-table-sort-' + this.id"
|
|
38598
38661
|
(sortChange)="sort()"
|
|
38599
|
-
[value]="sortValue"
|
|
38600
|
-
></novo-sort-button>
|
|
38662
|
+
[value]="sortValue"></novo-sort-button>
|
|
38601
38663
|
<novo-dropdown
|
|
38602
38664
|
*ngIf="config.filterable"
|
|
38603
38665
|
side="right"
|
|
38604
38666
|
parentScrollSelector=".novo-data-table-container"
|
|
38605
38667
|
containerClass="data-table-dropdown"
|
|
38606
38668
|
data-automation-id="novo-data-table-filter"
|
|
38607
|
-
[multiple]="multiSelect"
|
|
38608
|
-
>
|
|
38669
|
+
[multiple]="multiSelect">
|
|
38609
38670
|
<novo-icon
|
|
38610
38671
|
dropdownTrigger
|
|
38611
38672
|
class="filter-button"
|
|
@@ -38613,73 +38674,64 @@ NovoDataTableCellHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
38613
38674
|
[tooltip]="labels.filters"
|
|
38614
38675
|
tooltipPosition="right"
|
|
38615
38676
|
[attr.data-feature-id]="'novo-data-table-filter-' + this.id"
|
|
38616
|
-
(click)="focusInput()"
|
|
38617
|
-
|
|
38618
|
-
|
|
38619
|
-
|
|
38620
|
-
|
|
38621
|
-
|
|
38622
|
-
|
|
38623
|
-
|
|
38624
|
-
|
|
38625
|
-
|
|
38626
|
-
|
|
38627
|
-
|
|
38628
|
-
|
|
38629
|
-
|
|
38630
|
-
|
|
38631
|
-
|
|
38632
|
-
</div>
|
|
38633
|
-
<div class="optgroup-container">
|
|
38634
|
-
<ng-container [ngSwitch]="config.filterConfig.type">
|
|
38635
|
-
<novo-optgroup *ngSwitchCase="'date'" (keydown.escape)="handleEscapeKeydown($event)">
|
|
38636
|
-
<ng-container *ngIf="!showCustomRange">
|
|
38677
|
+
(click)="focusInput()">filter</novo-icon>
|
|
38678
|
+
<ng-container [ngSwitch]="config.filterConfig.type">
|
|
38679
|
+
<ng-container *ngSwitchCase="'date'" (keydown.escape)="handleEscapeKeydown($event)">
|
|
38680
|
+
<novo-data-table-cell-filter-header [filter]="filter" (clearFilter)="clearFilter()"></novo-data-table-cell-filter-header>
|
|
38681
|
+
<div class="optgroup-container">
|
|
38682
|
+
<novo-optgroup>
|
|
38683
|
+
<ng-container *ngIf="!showCustomRange">
|
|
38684
|
+
<novo-option
|
|
38685
|
+
[class.active]="activeDateFilter === option.label"
|
|
38686
|
+
*ngFor="let option of config.filterConfig.options"
|
|
38687
|
+
(click)="filterData(option)"
|
|
38688
|
+
[attr.data-automation-id]="'novo-data-table-filter-' + option.label">
|
|
38689
|
+
<span>{{ option.label }}</span>
|
|
38690
|
+
<novo-icon novoSuffix color="positive" *ngIf="activeDateFilter === option.label">check</novo-icon>
|
|
38691
|
+
</novo-option>
|
|
38692
|
+
</ng-container>
|
|
38637
38693
|
<novo-option
|
|
38638
|
-
[class.active]="
|
|
38694
|
+
[class.active]="labels.customDateRange === activeDateFilter"
|
|
38695
|
+
(click)="toggleCustomRange($event, true)"
|
|
38696
|
+
*ngIf="config.filterConfig.allowCustomRange && !showCustomRange">
|
|
38697
|
+
<span>{{ labels.customDateRange }}</span>
|
|
38698
|
+
<novo-icon novoSuffix color="positive" *ngIf="labels.customDateRange === activeDateFilter">check</novo-icon>
|
|
38699
|
+
</novo-option>
|
|
38700
|
+
<novo-option class="calendar-container" *ngIf="showCustomRange" keepOpen>
|
|
38701
|
+
<novo-stack>
|
|
38702
|
+
<div class="back-link" (click)="toggleCustomRange($event, false)">
|
|
38703
|
+
<i class="bhi-previous"></i>
|
|
38704
|
+
{{ labels.backToPresetFilters }}
|
|
38705
|
+
</div>
|
|
38706
|
+
<novo-date-picker
|
|
38707
|
+
(onSelect)="filterData($event)"
|
|
38708
|
+
[(ngModel)]="filter"
|
|
38709
|
+
range="true"
|
|
38710
|
+
(keydown.escape)="handleEscapeKeydown($event)"></novo-date-picker>
|
|
38711
|
+
</novo-stack>
|
|
38712
|
+
</novo-option>
|
|
38713
|
+
</novo-optgroup>
|
|
38714
|
+
</div>
|
|
38715
|
+
</ng-container>
|
|
38716
|
+
<ng-container *ngSwitchCase="'select'">
|
|
38717
|
+
<novo-data-table-cell-filter-header [filter]="filter" (clearFilter)="clearFilter()"></novo-data-table-cell-filter-header>
|
|
38718
|
+
<div class="optgroup-container">
|
|
38719
|
+
<novo-optgroup>
|
|
38720
|
+
<novo-option
|
|
38721
|
+
[class.active]="filter === option"
|
|
38639
38722
|
*ngFor="let option of config.filterConfig.options"
|
|
38640
38723
|
(click)="filterData(option)"
|
|
38641
|
-
[attr.data-automation-id]="'novo-data-table-filter-' + option
|
|
38642
|
-
|
|
38643
|
-
<
|
|
38644
|
-
|
|
38724
|
+
[attr.data-automation-id]="'novo-data-table-filter-' + (option?.label || option)">
|
|
38725
|
+
<span>{{ option?.label || option }}</span>
|
|
38726
|
+
<novo-icon novoSuffix color="positive" *ngIf="option.hasOwnProperty('value') ? filter === option.value : filter === option">
|
|
38727
|
+
check</novo-icon>
|
|
38645
38728
|
</novo-option>
|
|
38646
|
-
</
|
|
38647
|
-
|
|
38648
|
-
|
|
38649
|
-
|
|
38650
|
-
|
|
38651
|
-
|
|
38652
|
-
<span>{{ labels.customDateRange }}</span>
|
|
38653
|
-
<novo-icon novoSuffix color="positive" *ngIf="labels.customDateRange === activeDateFilter">check</novo-icon>
|
|
38654
|
-
</novo-option>
|
|
38655
|
-
<novo-option class="calendar-container" *ngIf="showCustomRange" keepOpen>
|
|
38656
|
-
<novo-stack>
|
|
38657
|
-
<div class="back-link" (click)="toggleCustomRange($event, false)">
|
|
38658
|
-
<i class="bhi-previous"></i>{{ labels.backToPresetFilters }}
|
|
38659
|
-
</div>
|
|
38660
|
-
<novo-date-picker
|
|
38661
|
-
(onSelect)="filterData($event)"
|
|
38662
|
-
[(ngModel)]="filter"
|
|
38663
|
-
range="true"
|
|
38664
|
-
(keydown.escape)="handleEscapeKeydown($event)"
|
|
38665
|
-
></novo-date-picker>
|
|
38666
|
-
</novo-stack>
|
|
38667
|
-
</novo-option>
|
|
38668
|
-
</novo-optgroup>
|
|
38669
|
-
<novo-optgroup *ngSwitchCase="'select'">
|
|
38670
|
-
<novo-option
|
|
38671
|
-
[class.active]="filter === option"
|
|
38672
|
-
*ngFor="let option of config.filterConfig.options"
|
|
38673
|
-
(click)="filterData(option)"
|
|
38674
|
-
[attr.data-automation-id]="'novo-data-table-filter-' + (option?.label || option)"
|
|
38675
|
-
>
|
|
38676
|
-
<span>{{ option?.label || option }}</span>
|
|
38677
|
-
<novo-icon novoSuffix color="positive" *ngIf="option.hasOwnProperty('value') ? filter === option.value : filter === option"
|
|
38678
|
-
>check</novo-icon
|
|
38679
|
-
>
|
|
38680
|
-
</novo-option>
|
|
38681
|
-
</novo-optgroup>
|
|
38682
|
-
<ng-container *ngSwitchCase="'multi-select'">
|
|
38729
|
+
</novo-optgroup>
|
|
38730
|
+
</div>
|
|
38731
|
+
</ng-container>
|
|
38732
|
+
<ng-container *ngSwitchCase="'multi-select'">
|
|
38733
|
+
<novo-data-table-cell-filter-header [filter]="filter" (clearFilter)="clearFilter()"></novo-data-table-cell-filter-header>
|
|
38734
|
+
<div class="optgroup-container">
|
|
38683
38735
|
<novo-optgroup class="dropdown-list-filter" (keydown)="multiSelectOptionFilterHandleKeydown($event)">
|
|
38684
38736
|
<novo-option class="filter-search" novoInert>
|
|
38685
38737
|
<novo-field flex>
|
|
@@ -38689,12 +38741,11 @@ NovoDataTableCellHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
38689
38741
|
(ngModelChange)="multiSelectOptionFilter($event)"
|
|
38690
38742
|
#optionFilterInput
|
|
38691
38743
|
data-automation-id="novo-data-table-multi-select-option-filter-input"
|
|
38692
|
-
(keydown.enter)="multiSelectOptionFilterHandleKeydown($event)"
|
|
38693
|
-
/>
|
|
38744
|
+
(keydown.enter)="multiSelectOptionFilterHandleKeydown($event)" />
|
|
38694
38745
|
<novo-icon novoSuffix>search</novo-icon>
|
|
38695
|
-
<novo-error class="error-text" [hidden]="!error || !multiSelectHasVisibleOptions()">
|
|
38696
|
-
labels.selectFilterOptions
|
|
38697
|
-
|
|
38746
|
+
<novo-error class="error-text" [hidden]="!error || !multiSelectHasVisibleOptions()">
|
|
38747
|
+
{{ labels.selectFilterOptions }}
|
|
38748
|
+
</novo-error>
|
|
38698
38749
|
</novo-field>
|
|
38699
38750
|
</novo-option>
|
|
38700
38751
|
</novo-optgroup>
|
|
@@ -38703,39 +38754,45 @@ NovoDataTableCellHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
38703
38754
|
*ngFor="let option of config.filterConfig.options"
|
|
38704
38755
|
[hidden]="multiSelectOptionIsHidden(option)"
|
|
38705
38756
|
(click)="toggleSelection(option)"
|
|
38706
|
-
[attr.data-automation-id]="'novo-data-table-filter-' + (option?.label || option)"
|
|
38707
|
-
>
|
|
38757
|
+
[attr.data-automation-id]="'novo-data-table-filter-' + (option?.label || option)">
|
|
38708
38758
|
<span>{{ option?.label || option }}</span>
|
|
38709
|
-
<novo-icon novoSuffix color="positive">
|
|
38710
|
-
isSelected(option, multiSelectedOptions) ? 'checkbox-filled' : 'checkbox-empty'
|
|
38711
|
-
|
|
38759
|
+
<novo-icon novoSuffix color="positive">
|
|
38760
|
+
{{ isSelected(option, multiSelectedOptions) ? 'checkbox-filled' : 'checkbox-empty' }}
|
|
38761
|
+
</novo-icon>
|
|
38712
38762
|
</novo-option>
|
|
38713
38763
|
</novo-optgroup>
|
|
38714
38764
|
<novo-option class="filter-null-results" [hidden]="multiSelectHasVisibleOptions()">{{ labels.pickerEmpty }}</novo-option>
|
|
38765
|
+
</div>
|
|
38766
|
+
</ng-container>
|
|
38767
|
+
<ng-container *ngSwitchCase="'custom'">
|
|
38768
|
+
<ng-container *ngIf="dropdown">
|
|
38769
|
+
<novo-data-table-cell-filter-header *ngIf="!config.filterConfig?.useCustomHeader" [filter]="filter" (clearFilter)="clearFilter()"></novo-data-table-cell-filter-header>
|
|
38770
|
+
<div class="optgroup-container">
|
|
38771
|
+
<ng-container *ngTemplateOutlet="filterTemplate; context: { $implicit: config, column, dropdown, filter }"></ng-container>
|
|
38772
|
+
</div>
|
|
38715
38773
|
</ng-container>
|
|
38716
|
-
<novo-optgroup *ngSwitchCase="'custom'">
|
|
38717
|
-
<novo-option class="filter-search" novoInert>
|
|
38718
|
-
<ng-container *ngTemplateOutlet="filterTemplate; context: { $implicit: config }"></ng-container>
|
|
38719
|
-
</novo-option>
|
|
38720
|
-
</novo-optgroup>
|
|
38721
|
-
<novo-optgroup *ngSwitchDefault (keydown.escape)="handleEscapeKeydown($event)">
|
|
38722
|
-
<novo-option class="filter-search" novoInert>
|
|
38723
|
-
<novo-field flex fullWidth>
|
|
38724
|
-
<input
|
|
38725
|
-
novoInput
|
|
38726
|
-
[type]="config.filterConfig.type"
|
|
38727
|
-
[(ngModel)]="filter"
|
|
38728
|
-
(ngModelChange)="filterData($event)"
|
|
38729
|
-
#filterInput
|
|
38730
|
-
data-automation-id="novo-data-table-filter-input"
|
|
38731
|
-
(keydown.escape)="handleEscapeKeydown($event)"
|
|
38732
|
-
/>
|
|
38733
|
-
<novo-icon novoSuffix>search</novo-icon>
|
|
38734
|
-
</novo-field>
|
|
38735
|
-
</novo-option>
|
|
38736
|
-
</novo-optgroup>
|
|
38737
38774
|
</ng-container>
|
|
38738
|
-
|
|
38775
|
+
<ng-container *ngSwitchDefault (keydown.escape)="handleEscapeKeydown($event)">
|
|
38776
|
+
<novo-data-table-cell-filter-header [filter]="filter" (clearFilter)="clearFilter()"></novo-data-table-cell-filter-header>
|
|
38777
|
+
<div class="optgroup-container">
|
|
38778
|
+
<novo-optgroup>
|
|
38779
|
+
<novo-option class="filter-search" novoInert>
|
|
38780
|
+
<novo-field flex fullWidth>
|
|
38781
|
+
<input
|
|
38782
|
+
novoInput
|
|
38783
|
+
[type]="config.filterConfig.type"
|
|
38784
|
+
[(ngModel)]="filter"
|
|
38785
|
+
(ngModelChange)="filterData($event)"
|
|
38786
|
+
#filterInput
|
|
38787
|
+
data-automation-id="novo-data-table-filter-input"
|
|
38788
|
+
(keydown.escape)="handleEscapeKeydown($event)" />
|
|
38789
|
+
<novo-icon novoSuffix>search</novo-icon>
|
|
38790
|
+
</novo-field>
|
|
38791
|
+
</novo-option>
|
|
38792
|
+
</novo-optgroup>
|
|
38793
|
+
</div>
|
|
38794
|
+
</ng-container>
|
|
38795
|
+
</ng-container>
|
|
38739
38796
|
<div class="footer" *ngIf="multiSelect">
|
|
38740
38797
|
<novo-button theme="dialogue" color="dark" (click)="cancel()" data-automation-id="novo-data-table-multi-select-cancel">
|
|
38741
38798
|
{{ labels.cancel }}
|
|
@@ -38744,8 +38801,7 @@ NovoDataTableCellHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
38744
38801
|
theme="dialogue"
|
|
38745
38802
|
color="positive"
|
|
38746
38803
|
(click)="filterMultiSelect()"
|
|
38747
|
-
data-automation-id="novo-data-table-multi-select-filter"
|
|
38748
|
-
>
|
|
38804
|
+
data-automation-id="novo-data-table-multi-select-filter">
|
|
38749
38805
|
{{ labels.filters }}
|
|
38750
38806
|
</novo-button>
|
|
38751
38807
|
</div>
|
|
@@ -38753,7 +38809,7 @@ NovoDataTableCellHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
38753
38809
|
</div>
|
|
38754
38810
|
<div class="spacer"></div>
|
|
38755
38811
|
<div class="data-table-header-resizable" *ngIf="config.resizable"><span (mousedown)="startResize($event)"> </span></div>
|
|
38756
|
-
`, isInline: true, components: [{ type: NovoDataTableSortButton, selector: "novo-sort-button", inputs: ["value"], outputs: ["sortChange"] }, { type: NovoDropdownElement, selector: "novo-dropdown", inputs: ["parentScrollSelector", "parentScrollAction", "containerClass", "side", "scrollStrategy", "keepOpen", "height", "width", "appendToBody", "multiple"], outputs: ["toggled"] }, { type: NovoIconComponent, selector: "novo-icon", inputs: ["raised", "theme", "shape", "color", "size", "smaller", "larger", "alt", "name"] }, { type:
|
|
38812
|
+
`, isInline: true, components: [{ type: NovoDataTableSortButton, selector: "novo-sort-button", inputs: ["value"], outputs: ["sortChange"] }, { type: NovoDropdownElement, selector: "novo-dropdown", inputs: ["parentScrollSelector", "parentScrollAction", "containerClass", "side", "scrollStrategy", "keepOpen", "height", "width", "appendToBody", "multiple"], outputs: ["toggled"] }, { type: NovoIconComponent, selector: "novo-icon", inputs: ["raised", "theme", "shape", "color", "size", "smaller", "larger", "alt", "name"] }, { type: NovoDataTableCellFilterHeader, selector: "novo-data-table-cell-filter-header", inputs: ["label", "filter"], outputs: ["clearFilter"] }, { type: NovoOptgroup, selector: "novo-optgroup", inputs: ["disabled", "label"], exportAs: ["novoOptgroup"] }, { type: NovoOption, selector: "novo-option", inputs: ["selected", "keepOpen", "novoInert", "value", "disabled"], exportAs: ["novoOption"] }, { type: NovoStackElement, selector: "novo-stack,novo-column", inputs: ["direction", "align"] }, { type: NovoDatePickerElement, selector: "novo-date-picker", inputs: ["minYear", "maxYear", "start", "end", "inline", "weekStart", "preselected", "hideOverflowDays", "hideFooter", "disabledDateMessage", "numberOfMonths", "mode", "range", "weekRangeSelect"], outputs: ["onSelect"] }, { type: NovoFieldElement, selector: "novo-field", inputs: ["layout", "appearance", "width"], outputs: ["valueChanges", "stateChanges"] }, { type: NovoErrorElement, selector: "novo-error" }, { type: NovoButtonElement, selector: "novo-button,button[theme]", inputs: ["color", "side", "size", "theme", "loading", "icon", "disabled"] }], directives: [{ type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: TooltipDirective, selector: "[tooltip]", inputs: ["tooltip", "tooltipPosition", "tooltipType", "tooltipSize", "tooltipBounce", "tooltipNoAnimate", "tooltipRounded", "tooltipAlways", "tooltipActive", "tooltipPreline", "removeTooltipArrow", "tooltipAutoPosition", "tooltipIsHTML"] }, { type: NovoDropDownTrigger, selector: "[dropdownTrigger]" }, { type: i1$1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { type: i1$1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { type: i1$1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: NovoFieldSuffixDirective, selector: "[novoSuffix]" }, { type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { type: FlexDirective, selector: "[flex]", inputs: ["flex"] }, { type: NovoInput, selector: "input[novoInput], textarea[novoInput], select[novoInput]", inputs: ["disabled", "id", "placeholder", "required", "type", "value", "readonly"] }, { type: i4.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i1$1.NgSwitchDefault, selector: "[ngSwitchDefault]" }, { type: ThemeColorDirective, selector: "[theme]", inputs: ["theme"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
38757
38813
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoDataTableCellHeader, decorators: [{
|
|
38758
38814
|
type: Component,
|
|
38759
38815
|
args: [{
|
|
@@ -38769,16 +38825,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
38769
38825
|
[tooltip]="labels.sort"
|
|
38770
38826
|
[attr.data-feature-id]="'novo-data-table-sort-' + this.id"
|
|
38771
38827
|
(sortChange)="sort()"
|
|
38772
|
-
[value]="sortValue"
|
|
38773
|
-
></novo-sort-button>
|
|
38828
|
+
[value]="sortValue"></novo-sort-button>
|
|
38774
38829
|
<novo-dropdown
|
|
38775
38830
|
*ngIf="config.filterable"
|
|
38776
38831
|
side="right"
|
|
38777
38832
|
parentScrollSelector=".novo-data-table-container"
|
|
38778
38833
|
containerClass="data-table-dropdown"
|
|
38779
38834
|
data-automation-id="novo-data-table-filter"
|
|
38780
|
-
[multiple]="multiSelect"
|
|
38781
|
-
>
|
|
38835
|
+
[multiple]="multiSelect">
|
|
38782
38836
|
<novo-icon
|
|
38783
38837
|
dropdownTrigger
|
|
38784
38838
|
class="filter-button"
|
|
@@ -38786,73 +38840,64 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
38786
38840
|
[tooltip]="labels.filters"
|
|
38787
38841
|
tooltipPosition="right"
|
|
38788
38842
|
[attr.data-feature-id]="'novo-data-table-filter-' + this.id"
|
|
38789
|
-
(click)="focusInput()"
|
|
38790
|
-
|
|
38791
|
-
|
|
38792
|
-
|
|
38793
|
-
|
|
38794
|
-
|
|
38795
|
-
|
|
38796
|
-
|
|
38797
|
-
|
|
38798
|
-
|
|
38799
|
-
|
|
38800
|
-
|
|
38801
|
-
|
|
38802
|
-
|
|
38803
|
-
|
|
38804
|
-
|
|
38805
|
-
|
|
38806
|
-
|
|
38807
|
-
|
|
38808
|
-
|
|
38809
|
-
|
|
38843
|
+
(click)="focusInput()">filter</novo-icon>
|
|
38844
|
+
<ng-container [ngSwitch]="config.filterConfig.type">
|
|
38845
|
+
<ng-container *ngSwitchCase="'date'" (keydown.escape)="handleEscapeKeydown($event)">
|
|
38846
|
+
<novo-data-table-cell-filter-header [filter]="filter" (clearFilter)="clearFilter()"></novo-data-table-cell-filter-header>
|
|
38847
|
+
<div class="optgroup-container">
|
|
38848
|
+
<novo-optgroup>
|
|
38849
|
+
<ng-container *ngIf="!showCustomRange">
|
|
38850
|
+
<novo-option
|
|
38851
|
+
[class.active]="activeDateFilter === option.label"
|
|
38852
|
+
*ngFor="let option of config.filterConfig.options"
|
|
38853
|
+
(click)="filterData(option)"
|
|
38854
|
+
[attr.data-automation-id]="'novo-data-table-filter-' + option.label">
|
|
38855
|
+
<span>{{ option.label }}</span>
|
|
38856
|
+
<novo-icon novoSuffix color="positive" *ngIf="activeDateFilter === option.label">check</novo-icon>
|
|
38857
|
+
</novo-option>
|
|
38858
|
+
</ng-container>
|
|
38859
|
+
<novo-option
|
|
38860
|
+
[class.active]="labels.customDateRange === activeDateFilter"
|
|
38861
|
+
(click)="toggleCustomRange($event, true)"
|
|
38862
|
+
*ngIf="config.filterConfig.allowCustomRange && !showCustomRange">
|
|
38863
|
+
<span>{{ labels.customDateRange }}</span>
|
|
38864
|
+
<novo-icon novoSuffix color="positive" *ngIf="labels.customDateRange === activeDateFilter">check</novo-icon>
|
|
38865
|
+
</novo-option>
|
|
38866
|
+
<novo-option class="calendar-container" *ngIf="showCustomRange" keepOpen>
|
|
38867
|
+
<novo-stack>
|
|
38868
|
+
<div class="back-link" (click)="toggleCustomRange($event, false)">
|
|
38869
|
+
<i class="bhi-previous"></i>
|
|
38870
|
+
{{ labels.backToPresetFilters }}
|
|
38871
|
+
</div>
|
|
38872
|
+
<novo-date-picker
|
|
38873
|
+
(onSelect)="filterData($event)"
|
|
38874
|
+
[(ngModel)]="filter"
|
|
38875
|
+
range="true"
|
|
38876
|
+
(keydown.escape)="handleEscapeKeydown($event)"></novo-date-picker>
|
|
38877
|
+
</novo-stack>
|
|
38878
|
+
</novo-option>
|
|
38879
|
+
</novo-optgroup>
|
|
38880
|
+
</div>
|
|
38881
|
+
</ng-container>
|
|
38882
|
+
<ng-container *ngSwitchCase="'select'">
|
|
38883
|
+
<novo-data-table-cell-filter-header [filter]="filter" (clearFilter)="clearFilter()"></novo-data-table-cell-filter-header>
|
|
38884
|
+
<div class="optgroup-container">
|
|
38885
|
+
<novo-optgroup>
|
|
38810
38886
|
<novo-option
|
|
38811
|
-
[class.active]="
|
|
38887
|
+
[class.active]="filter === option"
|
|
38812
38888
|
*ngFor="let option of config.filterConfig.options"
|
|
38813
38889
|
(click)="filterData(option)"
|
|
38814
|
-
[attr.data-automation-id]="'novo-data-table-filter-' + option
|
|
38815
|
-
|
|
38816
|
-
<
|
|
38817
|
-
|
|
38890
|
+
[attr.data-automation-id]="'novo-data-table-filter-' + (option?.label || option)">
|
|
38891
|
+
<span>{{ option?.label || option }}</span>
|
|
38892
|
+
<novo-icon novoSuffix color="positive" *ngIf="option.hasOwnProperty('value') ? filter === option.value : filter === option">
|
|
38893
|
+
check</novo-icon>
|
|
38818
38894
|
</novo-option>
|
|
38819
|
-
</
|
|
38820
|
-
|
|
38821
|
-
|
|
38822
|
-
|
|
38823
|
-
|
|
38824
|
-
|
|
38825
|
-
<span>{{ labels.customDateRange }}</span>
|
|
38826
|
-
<novo-icon novoSuffix color="positive" *ngIf="labels.customDateRange === activeDateFilter">check</novo-icon>
|
|
38827
|
-
</novo-option>
|
|
38828
|
-
<novo-option class="calendar-container" *ngIf="showCustomRange" keepOpen>
|
|
38829
|
-
<novo-stack>
|
|
38830
|
-
<div class="back-link" (click)="toggleCustomRange($event, false)">
|
|
38831
|
-
<i class="bhi-previous"></i>{{ labels.backToPresetFilters }}
|
|
38832
|
-
</div>
|
|
38833
|
-
<novo-date-picker
|
|
38834
|
-
(onSelect)="filterData($event)"
|
|
38835
|
-
[(ngModel)]="filter"
|
|
38836
|
-
range="true"
|
|
38837
|
-
(keydown.escape)="handleEscapeKeydown($event)"
|
|
38838
|
-
></novo-date-picker>
|
|
38839
|
-
</novo-stack>
|
|
38840
|
-
</novo-option>
|
|
38841
|
-
</novo-optgroup>
|
|
38842
|
-
<novo-optgroup *ngSwitchCase="'select'">
|
|
38843
|
-
<novo-option
|
|
38844
|
-
[class.active]="filter === option"
|
|
38845
|
-
*ngFor="let option of config.filterConfig.options"
|
|
38846
|
-
(click)="filterData(option)"
|
|
38847
|
-
[attr.data-automation-id]="'novo-data-table-filter-' + (option?.label || option)"
|
|
38848
|
-
>
|
|
38849
|
-
<span>{{ option?.label || option }}</span>
|
|
38850
|
-
<novo-icon novoSuffix color="positive" *ngIf="option.hasOwnProperty('value') ? filter === option.value : filter === option"
|
|
38851
|
-
>check</novo-icon
|
|
38852
|
-
>
|
|
38853
|
-
</novo-option>
|
|
38854
|
-
</novo-optgroup>
|
|
38855
|
-
<ng-container *ngSwitchCase="'multi-select'">
|
|
38895
|
+
</novo-optgroup>
|
|
38896
|
+
</div>
|
|
38897
|
+
</ng-container>
|
|
38898
|
+
<ng-container *ngSwitchCase="'multi-select'">
|
|
38899
|
+
<novo-data-table-cell-filter-header [filter]="filter" (clearFilter)="clearFilter()"></novo-data-table-cell-filter-header>
|
|
38900
|
+
<div class="optgroup-container">
|
|
38856
38901
|
<novo-optgroup class="dropdown-list-filter" (keydown)="multiSelectOptionFilterHandleKeydown($event)">
|
|
38857
38902
|
<novo-option class="filter-search" novoInert>
|
|
38858
38903
|
<novo-field flex>
|
|
@@ -38862,12 +38907,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
38862
38907
|
(ngModelChange)="multiSelectOptionFilter($event)"
|
|
38863
38908
|
#optionFilterInput
|
|
38864
38909
|
data-automation-id="novo-data-table-multi-select-option-filter-input"
|
|
38865
|
-
(keydown.enter)="multiSelectOptionFilterHandleKeydown($event)"
|
|
38866
|
-
/>
|
|
38910
|
+
(keydown.enter)="multiSelectOptionFilterHandleKeydown($event)" />
|
|
38867
38911
|
<novo-icon novoSuffix>search</novo-icon>
|
|
38868
|
-
<novo-error class="error-text" [hidden]="!error || !multiSelectHasVisibleOptions()">
|
|
38869
|
-
labels.selectFilterOptions
|
|
38870
|
-
|
|
38912
|
+
<novo-error class="error-text" [hidden]="!error || !multiSelectHasVisibleOptions()">
|
|
38913
|
+
{{ labels.selectFilterOptions }}
|
|
38914
|
+
</novo-error>
|
|
38871
38915
|
</novo-field>
|
|
38872
38916
|
</novo-option>
|
|
38873
38917
|
</novo-optgroup>
|
|
@@ -38876,39 +38920,45 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
38876
38920
|
*ngFor="let option of config.filterConfig.options"
|
|
38877
38921
|
[hidden]="multiSelectOptionIsHidden(option)"
|
|
38878
38922
|
(click)="toggleSelection(option)"
|
|
38879
|
-
[attr.data-automation-id]="'novo-data-table-filter-' + (option?.label || option)"
|
|
38880
|
-
>
|
|
38923
|
+
[attr.data-automation-id]="'novo-data-table-filter-' + (option?.label || option)">
|
|
38881
38924
|
<span>{{ option?.label || option }}</span>
|
|
38882
|
-
<novo-icon novoSuffix color="positive">
|
|
38883
|
-
isSelected(option, multiSelectedOptions) ? 'checkbox-filled' : 'checkbox-empty'
|
|
38884
|
-
|
|
38925
|
+
<novo-icon novoSuffix color="positive">
|
|
38926
|
+
{{ isSelected(option, multiSelectedOptions) ? 'checkbox-filled' : 'checkbox-empty' }}
|
|
38927
|
+
</novo-icon>
|
|
38885
38928
|
</novo-option>
|
|
38886
38929
|
</novo-optgroup>
|
|
38887
38930
|
<novo-option class="filter-null-results" [hidden]="multiSelectHasVisibleOptions()">{{ labels.pickerEmpty }}</novo-option>
|
|
38931
|
+
</div>
|
|
38932
|
+
</ng-container>
|
|
38933
|
+
<ng-container *ngSwitchCase="'custom'">
|
|
38934
|
+
<ng-container *ngIf="dropdown">
|
|
38935
|
+
<novo-data-table-cell-filter-header *ngIf="!config.filterConfig?.useCustomHeader" [filter]="filter" (clearFilter)="clearFilter()"></novo-data-table-cell-filter-header>
|
|
38936
|
+
<div class="optgroup-container">
|
|
38937
|
+
<ng-container *ngTemplateOutlet="filterTemplate; context: { $implicit: config, column, dropdown, filter }"></ng-container>
|
|
38938
|
+
</div>
|
|
38888
38939
|
</ng-container>
|
|
38889
|
-
<novo-optgroup *ngSwitchCase="'custom'">
|
|
38890
|
-
<novo-option class="filter-search" novoInert>
|
|
38891
|
-
<ng-container *ngTemplateOutlet="filterTemplate; context: { $implicit: config }"></ng-container>
|
|
38892
|
-
</novo-option>
|
|
38893
|
-
</novo-optgroup>
|
|
38894
|
-
<novo-optgroup *ngSwitchDefault (keydown.escape)="handleEscapeKeydown($event)">
|
|
38895
|
-
<novo-option class="filter-search" novoInert>
|
|
38896
|
-
<novo-field flex fullWidth>
|
|
38897
|
-
<input
|
|
38898
|
-
novoInput
|
|
38899
|
-
[type]="config.filterConfig.type"
|
|
38900
|
-
[(ngModel)]="filter"
|
|
38901
|
-
(ngModelChange)="filterData($event)"
|
|
38902
|
-
#filterInput
|
|
38903
|
-
data-automation-id="novo-data-table-filter-input"
|
|
38904
|
-
(keydown.escape)="handleEscapeKeydown($event)"
|
|
38905
|
-
/>
|
|
38906
|
-
<novo-icon novoSuffix>search</novo-icon>
|
|
38907
|
-
</novo-field>
|
|
38908
|
-
</novo-option>
|
|
38909
|
-
</novo-optgroup>
|
|
38910
38940
|
</ng-container>
|
|
38911
|
-
|
|
38941
|
+
<ng-container *ngSwitchDefault (keydown.escape)="handleEscapeKeydown($event)">
|
|
38942
|
+
<novo-data-table-cell-filter-header [filter]="filter" (clearFilter)="clearFilter()"></novo-data-table-cell-filter-header>
|
|
38943
|
+
<div class="optgroup-container">
|
|
38944
|
+
<novo-optgroup>
|
|
38945
|
+
<novo-option class="filter-search" novoInert>
|
|
38946
|
+
<novo-field flex fullWidth>
|
|
38947
|
+
<input
|
|
38948
|
+
novoInput
|
|
38949
|
+
[type]="config.filterConfig.type"
|
|
38950
|
+
[(ngModel)]="filter"
|
|
38951
|
+
(ngModelChange)="filterData($event)"
|
|
38952
|
+
#filterInput
|
|
38953
|
+
data-automation-id="novo-data-table-filter-input"
|
|
38954
|
+
(keydown.escape)="handleEscapeKeydown($event)" />
|
|
38955
|
+
<novo-icon novoSuffix>search</novo-icon>
|
|
38956
|
+
</novo-field>
|
|
38957
|
+
</novo-option>
|
|
38958
|
+
</novo-optgroup>
|
|
38959
|
+
</div>
|
|
38960
|
+
</ng-container>
|
|
38961
|
+
</ng-container>
|
|
38912
38962
|
<div class="footer" *ngIf="multiSelect">
|
|
38913
38963
|
<novo-button theme="dialogue" color="dark" (click)="cancel()" data-automation-id="novo-data-table-multi-select-cancel">
|
|
38914
38964
|
{{ labels.cancel }}
|
|
@@ -38917,8 +38967,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
38917
38967
|
theme="dialogue"
|
|
38918
38968
|
color="positive"
|
|
38919
38969
|
(click)="filterMultiSelect()"
|
|
38920
|
-
data-automation-id="novo-data-table-multi-select-filter"
|
|
38921
|
-
>
|
|
38970
|
+
data-automation-id="novo-data-table-multi-select-filter">
|
|
38922
38971
|
{{ labels.filters }}
|
|
38923
38972
|
</novo-button>
|
|
38924
38973
|
</div>
|
|
@@ -41564,7 +41613,7 @@ NovoDataTable.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
|
|
|
41564
41613
|
<novo-data-table-header-cell
|
|
41565
41614
|
*cdkHeaderCellDef
|
|
41566
41615
|
[column]="column"
|
|
41567
|
-
[filterTemplate]="templates['column-filter-' + column.id]"
|
|
41616
|
+
[filterTemplate]="templates['column-filter-' + (column.filterable?.customTemplate || column.id)]"
|
|
41568
41617
|
[novo-data-table-cell-config]="column"
|
|
41569
41618
|
[resized]="resized"
|
|
41570
41619
|
[defaultSort]="defaultSort"
|
|
@@ -41812,7 +41861,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
41812
41861
|
<novo-data-table-header-cell
|
|
41813
41862
|
*cdkHeaderCellDef
|
|
41814
41863
|
[column]="column"
|
|
41815
|
-
[filterTemplate]="templates['column-filter-' + column.id]"
|
|
41864
|
+
[filterTemplate]="templates['column-filter-' + (column.filterable?.customTemplate || column.id)]"
|
|
41816
41865
|
[novo-data-table-cell-config]="column"
|
|
41817
41866
|
[resized]="resized"
|
|
41818
41867
|
[defaultSort]="defaultSort"
|
|
@@ -44920,6 +44969,7 @@ NovoDataTableModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", ver
|
|
|
44920
44969
|
NovoDataTableCellHeader,
|
|
44921
44970
|
NovoDataTableSortFilter,
|
|
44922
44971
|
NovoDataTableHeaderCell,
|
|
44972
|
+
NovoDataTableCellFilterHeader,
|
|
44923
44973
|
NovoDataTableCell,
|
|
44924
44974
|
NovoDataTableHeaderRow,
|
|
44925
44975
|
NovoDataTableRow,
|
|
@@ -44956,6 +45006,7 @@ NovoDataTableModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", ver
|
|
|
44956
45006
|
DateTableNumberRendererPipe,
|
|
44957
45007
|
DateTableTimeRendererPipe,
|
|
44958
45008
|
DataTableBigDecimalRendererPipe,
|
|
45009
|
+
NovoDataTableCellFilterHeader,
|
|
44959
45010
|
NovoDataTableClearButton,
|
|
44960
45011
|
NovoDataTableSortButton] });
|
|
44961
45012
|
NovoDataTableModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoDataTableModule, providers: [DataTableState], imports: [[
|
|
@@ -45012,6 +45063,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
45012
45063
|
NovoDataTableCellHeader,
|
|
45013
45064
|
NovoDataTableSortFilter,
|
|
45014
45065
|
NovoDataTableHeaderCell,
|
|
45066
|
+
NovoDataTableCellFilterHeader,
|
|
45015
45067
|
NovoDataTableCell,
|
|
45016
45068
|
NovoDataTableHeaderRow,
|
|
45017
45069
|
NovoDataTableRow,
|
|
@@ -45035,6 +45087,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
45035
45087
|
DateTableNumberRendererPipe,
|
|
45036
45088
|
DateTableTimeRendererPipe,
|
|
45037
45089
|
DataTableBigDecimalRendererPipe,
|
|
45090
|
+
NovoDataTableCellFilterHeader,
|
|
45038
45091
|
NovoDataTableClearButton,
|
|
45039
45092
|
NovoDataTableSortButton,
|
|
45040
45093
|
],
|
|
@@ -50673,7 +50726,7 @@ class QuickNoteElement extends OutsideClick {
|
|
|
50673
50726
|
this._placeholderElement = document.createElement('div');
|
|
50674
50727
|
this._placeholderElement.className = 'placeholder';
|
|
50675
50728
|
this._placeholderElement.style.cssText =
|
|
50676
|
-
'margin: 20px; color: #AAAAAA; font-family: sans-serif; font-size: 13px; line-height: 20px; position: absolute; top: 0';
|
|
50729
|
+
'margin: 20px; color: #AAAAAA; font-family: sans-serif; font-size: 13px; line-height: 20px; position: absolute; top: 0; pointer-events: none';
|
|
50677
50730
|
this._placeholderElement.textContent = this.placeholder;
|
|
50678
50731
|
}
|
|
50679
50732
|
return this._placeholderElement;
|
|
@@ -64048,5 +64101,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
64048
64101
|
* Generated bundle index. Do not edit.
|
|
64049
64102
|
*/
|
|
64050
64103
|
|
|
64051
|
-
export { AbstractConditionFieldDef, AccentColorDirective, AceEditorControl, ActivityTableDataSource, ActivityTableRenderers, AddressControl, AppBridge, AppBridgeHandler, AppBridgeService, ArrayCollection, AsideComponent, BackgroundColorDirective, BaseConditionFieldDef, BaseControl, BasePickerResults, BaseRenderer, BooleanInput, BorderDirective, BreadcrumbElement, BreadcrumbItemElement, BreadcrumbService, BrowserGlobalRef, COUNTRIES, CalendarEventResponse, Can, CardActionsElement, CardContentElement, CardElement, CardFooterElement, CardHeaderElement, CheckListControl, CheckboxControl, ChecklistPickerResults, CollectionEvent, ComponentUtils, ConditionBuilderComponent, ConditionInputOutlet, ConditionOperatorOutlet, Conjunction, ControlConfirmModal, ControlFactory, ControlPromptModal, CriteriaBuilderComponent, CustomControl, DATEFORMAT_VALUE_ACCESSOR, DATERANGEFORMAT_VALUE_ACCESSOR, DATETIMEFORMAT_VALUE_ACCESSOR, DATE_FORMATS, DataTableBigDecimalRendererPipe, DataTableInterpolatePipe, DataTableSource, DataTableState, DateCell, DateControl, DateFormatService, DateTableCurrencyRendererPipe, DateTableDateRendererPipe, DateTableDateTimeRendererPipe, DateTableNumberRendererPipe, DateTableTimeRendererPipe, DateTimeControl, DayOfMonthPipe, DecodeURIPipe, DefaultDateSelectionStrategy, DefaultPipe, Deferred, DevAppBridge, DevAppBridgeService, DistributionListPickerResults, EXPANSION_PANEL_ANIMATION_TIMING, EditState, EditorControl, EndOfWeekDisplayPipe, EntityList, EntityPickerResult, EntityPickerResults, ErrorStateMatcher, FieldInteractionApi, FileControl, FillColorDirective, FlexDirective, FormUtils, FormValidators, GapDirective, GlobalRef, GooglePlacesModule, GooglePlacesService, GroupByPipe, GroupedControl, GroupedMultiPickerResults, Helpers, HighlightPipe, HoursPipe, IsoDatePipe, IsoDateRangePipe, IsoTimePipe, IsoTimeRangePipe, KeyCodes, LocalStorageService, MarginDirective, MenuComponent, MenuContentComponent, MenuDirective, MenuItemDirective, MixedMultiPickerResults, MonthDayPipe, MonthPipe, MultiDateSelectionStrategy, NOVO_BREADCRUMB_REF, NOVO_CHIPS_DEFAULT_OPTIONS, NOVO_CONDITION_BUILDER, NOVO_CRITERIA_BUILDER, NOVO_DATA_TABLE_REF, NOVO_DATE_SELECTION_STRATEGY, NOVO_DATE_SELECTION_STRATEGY_PROVIDER, NOVO_DATE_SELECTION_STRATEGY_PROVIDER_FACTORY, NOVO_ELEMENTS_LABELS_PROVIDERS, NOVO_FORM_FIELD, NOVO_INPUT_FORMAT, NOVO_INPUT_VALUE_ACCESSOR, NOVO_LAYOUT_CONTAINER, NOVO_LAYOUT_DEFAULT_AUTOSIZE, NOVO_LAYOUT_DEFAULT_AUTOSIZE_FACTORY, NOVO_OPTGROUP, NOVO_OPTION_PARENT_COMPONENT, NOVO_PROGRESS_CONTAINER, NOVO_QUERY_BUILDER, NOVO_RADIO_GROUP, NOVO_VALUE_THEME, NOVO_VALUE_TYPE, NativeSelectControl, NodeGlobalRef, NonIdealStateElement, NovoAccordion, NovoAceEditor, NovoAceEditorModule, NovoActivityTable, NovoActivityTableActions, NovoActivityTableCustomFilter, NovoActivityTableCustomHeader, NovoActivityTableEmptyMessage, NovoActivityTableNoResultsMessage, NovoActivityTableState, NovoAddressElement, NovoAgendaAllDayEventElement, NovoAgendaDateChangeElement, NovoAgendaDayEventElement, NovoAgendaDayViewElement, NovoAgendaHourSegmentElement, NovoAgendaModule, NovoAgendaMonthDayElement, NovoAgendaMonthHeaderElement, NovoAgendaMonthViewElement, NovoAgendaWeekEventElement, NovoAgendaWeekHeaderElement, NovoAgendaWeekViewElement, NovoAsideModule, NovoAsideRef, NovoAsideService, NovoAutoSize, NovoAutocompleteElement, NovoAvatarElement, NovoAvatarModule, NovoAvatarStackElement, NovoBaseTextElement, NovoBoxElement, NovoBreadcrumbModule, NovoButtonElement, NovoButtonModule, NovoCKEditorElement, NovoCalendarElement, NovoCalendarModule, NovoCaption, NovoCardModule, NovoCategoryDropdownElement, NovoCategoryDropdownModule, NovoCheckListElement, NovoCheckboxChange, NovoCheckboxElement, NovoCheckboxModule, NovoChipAvatar, NovoChipElement, NovoChipInput, NovoChipList, NovoChipListChange, NovoChipRemove, NovoChipSelectionChange, NovoChipsElement, NovoChipsModule, NovoColorInputElement, NovoColorPickerComponent, NovoColorPickerModule, NovoColorSwatchComponent, NovoCommonModule, NovoConditionFieldDef, NovoConditionInputDef, NovoConditionOperatorsDef, NovoControlElement, NovoControlGroup, NovoControlTemplates, NovoDataTable, NovoDataTableCell, NovoDataTableCellHeader, NovoDataTableCheckboxCell, NovoDataTableCheckboxHeaderCell, NovoDataTableClearButton, NovoDataTableExpandCell, NovoDataTableExpandDirective, NovoDataTableExpandHeaderCell, NovoDataTableFilterUtils, NovoDataTableHeaderCell, NovoDataTableHeaderRow, NovoDataTableModule, NovoDataTablePagination, NovoDataTableRow, NovoDataTableSortButton, NovoDataTableSortFilter, NovoDateFormatDirective, NovoDatePickerElement, NovoDatePickerInputElement, NovoDatePickerModule, NovoDateRangeFormatDirective, NovoDateRangeInputElement, NovoDateTimeFormatDirective, NovoDateTimePickerElement, NovoDateTimePickerInputElement, NovoDateTimePickerModule, NovoDefaultAddressConditionDef, NovoDefaultBooleanConditionDef, NovoDefaultDateConditionDef, NovoDefaultDateTimeConditionDef, NovoDefaultIdConditionDef, NovoDefaultNumberConditionDef, NovoDefaultPickerConditionDef, NovoDefaultStringConditionDef, NovoDividerComponent, NovoDividerModule, NovoDragulaElement, NovoDragulaModule, NovoDragulaService, NovoDropDownItemHeaderElement, NovoDropDownTrigger, NovoDropdownCell, NovoDropdownElement, NovoDropdownListElement, NovoDropdownModule, NovoDynamicFormElement, NovoElementProviders, NovoElementsModule, NovoErrorElement, NovoEventTypeLegendElement, NovoExpansionModule, NovoExpansionPanel, NovoExpansionPanelActionRow, NovoExpansionPanelContent, NovoExpansionPanelDescription, NovoExpansionPanelHeader, NovoExpansionPanelTitle, NovoFieldControl, NovoFieldElement, NovoFieldModule, NovoFieldPrefixDirective, NovoFieldSuffixDirective, NovoFieldsElement, NovoFieldsetElement, NovoFieldsetHeaderElement, NovoFile, NovoFileInputElement, NovoFlexElement, NovoFlexModule, NovoFormControl, NovoFormElement, NovoFormExtrasModule, NovoFormGroup, NovoFormModule, NovoGridElement, NovoHeaderComponent, NovoHeaderModule, NovoHeaderSpacer, NovoHintElement, NovoHorizontalStepper, NovoIconComponent, NovoIconModule, NovoInput, NovoIsLoadingDirective, NovoItemAvatarElement, NovoItemContentElement, NovoItemDateElement, NovoItemElement, NovoItemEndElement, NovoItemHeaderElement, NovoItemTitleElement, NovoLabel, NovoLabelService, NovoLayoutContainer, NovoLayoutContent, NovoLayoutModule, NovoLink, NovoListElement, NovoListItemElement, NovoListModule, NovoLoadedDirective, NovoLoadingElement, NovoLoadingModule, NovoMenuModule, NovoMenuService, NovoModalContainerComponent, NovoModalElement, NovoModalModule, NovoModalNotificationElement, NovoModalParams, NovoModalRef, NovoModalService, NovoMonthSelectElement, NovoMonthViewElement, NovoMultiDateInputElement, NovoMultiPickerElement, NovoMultiPickerModule, NovoNavContentElement, NovoNavElement, NovoNavHeaderElement, NovoNavOutletElement, NovoNonIdealStateModule, NovoNovoCKEditorModule, NovoOptgroup, NovoOptgroupBase, NovoOptgroupMixinBase, NovoOption, NovoOptionBase, NovoOptionModule, NovoOptionSelectedEvent, NovoOptionSelectionChange, NovoOverlayModule, NovoOverlayTemplateComponent, NovoPickerDirective, NovoPickerElement, NovoPickerModule, NovoPickerToggleElement, NovoPipesModule, NovoPopOverModule, NovoProgressBarElement, NovoProgressElement, NovoProgressModule, NovoPseudoCheckbox, NovoPseudoCheckboxModule, NovoQueryBuilderModule, NovoQuickNoteModule, NovoRadioElement, NovoRadioGroup, NovoRadioModule, NovoRailComponent, NovoRowChipElement, NovoRowChipsElement, NovoSearchBoxElement, NovoSearchBoxModule, NovoSelectChange, NovoSelectElement, NovoSelectModule, NovoSelectSearchClearDirective, NovoSelectSearchComponent, NovoSelectSearchModule, NovoSelection, NovoSidenavComponent, NovoSimpleActionCell, NovoSimpleCell, NovoSimpleCellDef, NovoSimpleCellHeader, NovoSimpleCheckboxCell, NovoSimpleCheckboxHeaderCell, NovoSimpleColumnDef, NovoSimpleEmptyHeaderCell, NovoSimpleFilterFocus, NovoSimpleHeaderCell, NovoSimpleHeaderCellDef, NovoSimpleHeaderRow, NovoSimpleHeaderRowDef, NovoSimpleRow, NovoSimpleRowDef, NovoSimpleTableModule, NovoSimpleTablePagination, NovoSkeletonDirective, NovoSliderElement, NovoSliderModule, NovoSortFilter, NovoSpinnerElement, NovoStackElement, NovoStep, NovoStepHeader, NovoStepLabel, NovoStepStatus, NovoStepper, NovoStepperModule, NovoStepperNext, NovoStepperPrevious, NovoSwitchElement, NovoSwitchModule, NovoTabButtonElement, NovoTabElement, NovoTabLinkElement, NovoTabModule, NovoTabbedGroupPickerElement, NovoTabbedGroupPickerModule, NovoTable, NovoTableActionsElement, NovoTableElement, NovoTableExtrasModule, NovoTableFooterElement, NovoTableHeaderElement, NovoTableKeepFilterFocus, NovoTableMode, NovoTableModule, NovoTemplate, NovoTemplateService, NovoText, NovoTheme, NovoThemeOptions, NovoTilesElement, NovoTilesModule, NovoTimeFormatDirective, NovoTimePickerElement, NovoTimePickerInputElement, NovoTimePickerModule, NovoTipWellElement, NovoTipWellModule, NovoTitle, NovoToastElement, NovoToastModule, NovoToastService, NovoToolbar, NovoToolbarModule, NovoToolbarRow, NovoTooltip, NovoTooltipModule, NovoUtilActionComponent, NovoUtilsComponent, NovoValueElement, NovoValueModule, NovoVerticalStepper, NovoYearSelectElement, OptionsService, OutsideClick, PaddingDirective, PagedArrayCollection, Pagination, PercentageCell, PickerControl, PickerResults, PlacesListComponent, PluralPipe, PopOverContent, PopOverDirective, ProgressAppearance, QuickNoteControl, QuickNoteElement, QuickNoteResults, REMOVABLE_REF, RadioControl, RangeSelectionStrategy, ReadOnlyControl, RemoteActivityTableService, RemoteDataTableService, RenderPipe, RowDetails, Security, SelectControl, ShowOnDirtyErrorStateMatcher, SkillsSpecialtyPickerResults, SortDirection, StaticActivityTableService, StaticDataTableService, SwitchCasesDirective, SwitchControl, TIMEFORMAT_VALUE_ACCESSOR, TIME_FORMATS, TIME_VALUE_FORMATS, TableCell, TableFilter, TablePickerControl, TextAreaControl, TextBoxControl, TextColorDirective, ThOrderable, ThSortable, ThemeColorDirective, TilesControl, TimeControl, TimezoneControl, TooltipDirective, Unless, UnlessModule, VisibleDirective, WeekSelectionStrategy, WeekdayPipe, WorkersCompCodesPickerResults, YearPipe, _NovoCdkRowDef, _NovoCell, _NovoCellDef, _NovoColumnDef, _NovoHeaderCell, _NovoHeaderCellDef, _NovoHeaderRow, _NovoHeaderRowDef, _NovoRow, _countGroupLabelsBeforeOption, _getOptionScrollPosition, binarySearch, can, findByCountryCode, findByCountryId, findByCountryName, getCountries, getDayView, getDayViewHourGrid, getMonthView, getSpacingToken, getStateObjects, getStates, getWeekView, getWeekViewEventOffset, getWeekViewHeader, interpolateCell, isAlphaNumeric, mixinColor, mixinDisabled, mixinErrorState, mixinOverlay, mixinRequired, mixinSize, mixinTabIndex, notify, novoExpansionAnimations, novoStepperAnimations, slideInOut, throwNovoDuplicatedSidenavError, zoomInOut };
|
|
64104
|
+
export { AbstractConditionFieldDef, AccentColorDirective, AceEditorControl, ActivityTableDataSource, ActivityTableRenderers, AddressControl, AppBridge, AppBridgeHandler, AppBridgeService, ArrayCollection, AsideComponent, BackgroundColorDirective, BaseConditionFieldDef, BaseControl, BasePickerResults, BaseRenderer, BooleanInput, BorderDirective, BreadcrumbElement, BreadcrumbItemElement, BreadcrumbService, BrowserGlobalRef, COUNTRIES, CalendarEventResponse, Can, CardActionsElement, CardContentElement, CardElement, CardFooterElement, CardHeaderElement, CheckListControl, CheckboxControl, ChecklistPickerResults, CollectionEvent, ComponentUtils, ConditionBuilderComponent, ConditionInputOutlet, ConditionOperatorOutlet, Conjunction, ControlConfirmModal, ControlFactory, ControlPromptModal, CriteriaBuilderComponent, CustomControl, DATEFORMAT_VALUE_ACCESSOR, DATERANGEFORMAT_VALUE_ACCESSOR, DATETIMEFORMAT_VALUE_ACCESSOR, DATE_FORMATS, DataTableBigDecimalRendererPipe, DataTableInterpolatePipe, DataTableSource, DataTableState, DateCell, DateControl, DateFormatService, DateTableCurrencyRendererPipe, DateTableDateRendererPipe, DateTableDateTimeRendererPipe, DateTableNumberRendererPipe, DateTableTimeRendererPipe, DateTimeControl, DayOfMonthPipe, DecodeURIPipe, DefaultDateSelectionStrategy, DefaultPipe, Deferred, DevAppBridge, DevAppBridgeService, DistributionListPickerResults, EXPANSION_PANEL_ANIMATION_TIMING, EditState, EditorControl, EndOfWeekDisplayPipe, EntityList, EntityPickerResult, EntityPickerResults, ErrorStateMatcher, FieldInteractionApi, FileControl, FillColorDirective, FlexDirective, FormUtils, FormValidators, GapDirective, GlobalRef, GooglePlacesModule, GooglePlacesService, GroupByPipe, GroupedControl, GroupedMultiPickerResults, Helpers, HighlightPipe, HoursPipe, IsoDatePipe, IsoDateRangePipe, IsoTimePipe, IsoTimeRangePipe, KeyCodes, LocalStorageService, MarginDirective, MenuComponent, MenuContentComponent, MenuDirective, MenuItemDirective, MixedMultiPickerResults, MonthDayPipe, MonthPipe, MultiDateSelectionStrategy, NOVO_BREADCRUMB_REF, NOVO_CHIPS_DEFAULT_OPTIONS, NOVO_CONDITION_BUILDER, NOVO_CRITERIA_BUILDER, NOVO_DATA_TABLE_REF, NOVO_DATE_SELECTION_STRATEGY, NOVO_DATE_SELECTION_STRATEGY_PROVIDER, NOVO_DATE_SELECTION_STRATEGY_PROVIDER_FACTORY, NOVO_ELEMENTS_LABELS_PROVIDERS, NOVO_FORM_FIELD, NOVO_INPUT_FORMAT, NOVO_INPUT_VALUE_ACCESSOR, NOVO_LAYOUT_CONTAINER, NOVO_LAYOUT_DEFAULT_AUTOSIZE, NOVO_LAYOUT_DEFAULT_AUTOSIZE_FACTORY, NOVO_OPTGROUP, NOVO_OPTION_PARENT_COMPONENT, NOVO_PROGRESS_CONTAINER, NOVO_QUERY_BUILDER, NOVO_RADIO_GROUP, NOVO_VALUE_THEME, NOVO_VALUE_TYPE, NativeSelectControl, NodeGlobalRef, NonIdealStateElement, NovoAccordion, NovoAceEditor, NovoAceEditorModule, NovoActivityTable, NovoActivityTableActions, NovoActivityTableCustomFilter, NovoActivityTableCustomHeader, NovoActivityTableEmptyMessage, NovoActivityTableNoResultsMessage, NovoActivityTableState, NovoAddressElement, NovoAgendaAllDayEventElement, NovoAgendaDateChangeElement, NovoAgendaDayEventElement, NovoAgendaDayViewElement, NovoAgendaHourSegmentElement, NovoAgendaModule, NovoAgendaMonthDayElement, NovoAgendaMonthHeaderElement, NovoAgendaMonthViewElement, NovoAgendaWeekEventElement, NovoAgendaWeekHeaderElement, NovoAgendaWeekViewElement, NovoAsideModule, NovoAsideRef, NovoAsideService, NovoAutoSize, NovoAutocompleteElement, NovoAvatarElement, NovoAvatarModule, NovoAvatarStackElement, NovoBaseTextElement, NovoBoxElement, NovoBreadcrumbModule, NovoButtonElement, NovoButtonModule, NovoCKEditorElement, NovoCalendarElement, NovoCalendarModule, NovoCaption, NovoCardModule, NovoCategoryDropdownElement, NovoCategoryDropdownModule, NovoCheckListElement, NovoCheckboxChange, NovoCheckboxElement, NovoCheckboxModule, NovoChipAvatar, NovoChipElement, NovoChipInput, NovoChipList, NovoChipListChange, NovoChipRemove, NovoChipSelectionChange, NovoChipsElement, NovoChipsModule, NovoColorInputElement, NovoColorPickerComponent, NovoColorPickerModule, NovoColorSwatchComponent, NovoCommonModule, NovoConditionFieldDef, NovoConditionInputDef, NovoConditionOperatorsDef, NovoControlElement, NovoControlGroup, NovoControlTemplates, NovoDataTable, NovoDataTableCell, NovoDataTableCellFilterHeader, NovoDataTableCellHeader, NovoDataTableCheckboxCell, NovoDataTableCheckboxHeaderCell, NovoDataTableClearButton, NovoDataTableExpandCell, NovoDataTableExpandDirective, NovoDataTableExpandHeaderCell, NovoDataTableFilterUtils, NovoDataTableHeaderCell, NovoDataTableHeaderRow, NovoDataTableModule, NovoDataTablePagination, NovoDataTableRow, NovoDataTableSortButton, NovoDataTableSortFilter, NovoDateFormatDirective, NovoDatePickerElement, NovoDatePickerInputElement, NovoDatePickerModule, NovoDateRangeFormatDirective, NovoDateRangeInputElement, NovoDateTimeFormatDirective, NovoDateTimePickerElement, NovoDateTimePickerInputElement, NovoDateTimePickerModule, NovoDefaultAddressConditionDef, NovoDefaultBooleanConditionDef, NovoDefaultDateConditionDef, NovoDefaultDateTimeConditionDef, NovoDefaultIdConditionDef, NovoDefaultNumberConditionDef, NovoDefaultPickerConditionDef, NovoDefaultStringConditionDef, NovoDividerComponent, NovoDividerModule, NovoDragulaElement, NovoDragulaModule, NovoDragulaService, NovoDropDownItemHeaderElement, NovoDropDownTrigger, NovoDropdownCell, NovoDropdownElement, NovoDropdownListElement, NovoDropdownModule, NovoDynamicFormElement, NovoElementProviders, NovoElementsModule, NovoErrorElement, NovoEventTypeLegendElement, NovoExpansionModule, NovoExpansionPanel, NovoExpansionPanelActionRow, NovoExpansionPanelContent, NovoExpansionPanelDescription, NovoExpansionPanelHeader, NovoExpansionPanelTitle, NovoFieldControl, NovoFieldElement, NovoFieldModule, NovoFieldPrefixDirective, NovoFieldSuffixDirective, NovoFieldsElement, NovoFieldsetElement, NovoFieldsetHeaderElement, NovoFile, NovoFileInputElement, NovoFlexElement, NovoFlexModule, NovoFormControl, NovoFormElement, NovoFormExtrasModule, NovoFormGroup, NovoFormModule, NovoGridElement, NovoHeaderComponent, NovoHeaderModule, NovoHeaderSpacer, NovoHintElement, NovoHorizontalStepper, NovoIconComponent, NovoIconModule, NovoInput, NovoIsLoadingDirective, NovoItemAvatarElement, NovoItemContentElement, NovoItemDateElement, NovoItemElement, NovoItemEndElement, NovoItemHeaderElement, NovoItemTitleElement, NovoLabel, NovoLabelService, NovoLayoutContainer, NovoLayoutContent, NovoLayoutModule, NovoLink, NovoListElement, NovoListItemElement, NovoListModule, NovoLoadedDirective, NovoLoadingElement, NovoLoadingModule, NovoMenuModule, NovoMenuService, NovoModalContainerComponent, NovoModalElement, NovoModalModule, NovoModalNotificationElement, NovoModalParams, NovoModalRef, NovoModalService, NovoMonthSelectElement, NovoMonthViewElement, NovoMultiDateInputElement, NovoMultiPickerElement, NovoMultiPickerModule, NovoNavContentElement, NovoNavElement, NovoNavHeaderElement, NovoNavOutletElement, NovoNonIdealStateModule, NovoNovoCKEditorModule, NovoOptgroup, NovoOptgroupBase, NovoOptgroupMixinBase, NovoOption, NovoOptionBase, NovoOptionModule, NovoOptionSelectedEvent, NovoOptionSelectionChange, NovoOverlayModule, NovoOverlayTemplateComponent, NovoPickerDirective, NovoPickerElement, NovoPickerModule, NovoPickerToggleElement, NovoPipesModule, NovoPopOverModule, NovoProgressBarElement, NovoProgressElement, NovoProgressModule, NovoPseudoCheckbox, NovoPseudoCheckboxModule, NovoQueryBuilderModule, NovoQuickNoteModule, NovoRadioElement, NovoRadioGroup, NovoRadioModule, NovoRailComponent, NovoRowChipElement, NovoRowChipsElement, NovoSearchBoxElement, NovoSearchBoxModule, NovoSelectChange, NovoSelectElement, NovoSelectModule, NovoSelectSearchClearDirective, NovoSelectSearchComponent, NovoSelectSearchModule, NovoSelection, NovoSidenavComponent, NovoSimpleActionCell, NovoSimpleCell, NovoSimpleCellDef, NovoSimpleCellHeader, NovoSimpleCheckboxCell, NovoSimpleCheckboxHeaderCell, NovoSimpleColumnDef, NovoSimpleEmptyHeaderCell, NovoSimpleFilterFocus, NovoSimpleHeaderCell, NovoSimpleHeaderCellDef, NovoSimpleHeaderRow, NovoSimpleHeaderRowDef, NovoSimpleRow, NovoSimpleRowDef, NovoSimpleTableModule, NovoSimpleTablePagination, NovoSkeletonDirective, NovoSliderElement, NovoSliderModule, NovoSortFilter, NovoSpinnerElement, NovoStackElement, NovoStep, NovoStepHeader, NovoStepLabel, NovoStepStatus, NovoStepper, NovoStepperModule, NovoStepperNext, NovoStepperPrevious, NovoSwitchElement, NovoSwitchModule, NovoTabButtonElement, NovoTabElement, NovoTabLinkElement, NovoTabModule, NovoTabbedGroupPickerElement, NovoTabbedGroupPickerModule, NovoTable, NovoTableActionsElement, NovoTableElement, NovoTableExtrasModule, NovoTableFooterElement, NovoTableHeaderElement, NovoTableKeepFilterFocus, NovoTableMode, NovoTableModule, NovoTemplate, NovoTemplateService, NovoText, NovoTheme, NovoThemeOptions, NovoTilesElement, NovoTilesModule, NovoTimeFormatDirective, NovoTimePickerElement, NovoTimePickerInputElement, NovoTimePickerModule, NovoTipWellElement, NovoTipWellModule, NovoTitle, NovoToastElement, NovoToastModule, NovoToastService, NovoToolbar, NovoToolbarModule, NovoToolbarRow, NovoTooltip, NovoTooltipModule, NovoUtilActionComponent, NovoUtilsComponent, NovoValueElement, NovoValueModule, NovoVerticalStepper, NovoYearSelectElement, OptionsService, OutsideClick, PaddingDirective, PagedArrayCollection, Pagination, PercentageCell, PickerControl, PickerResults, PlacesListComponent, PluralPipe, PopOverContent, PopOverDirective, ProgressAppearance, QuickNoteControl, QuickNoteElement, QuickNoteResults, REMOVABLE_REF, RadioControl, RangeSelectionStrategy, ReadOnlyControl, RemoteActivityTableService, RemoteDataTableService, RenderPipe, RowDetails, Security, SelectControl, ShowOnDirtyErrorStateMatcher, SkillsSpecialtyPickerResults, SortDirection, StaticActivityTableService, StaticDataTableService, SwitchCasesDirective, SwitchControl, TIMEFORMAT_VALUE_ACCESSOR, TIME_FORMATS, TIME_VALUE_FORMATS, TableCell, TableFilter, TablePickerControl, TextAreaControl, TextBoxControl, TextColorDirective, ThOrderable, ThSortable, ThemeColorDirective, TilesControl, TimeControl, TimezoneControl, TooltipDirective, Unless, UnlessModule, VisibleDirective, WeekSelectionStrategy, WeekdayPipe, WorkersCompCodesPickerResults, YearPipe, _NovoCdkRowDef, _NovoCell, _NovoCellDef, _NovoColumnDef, _NovoHeaderCell, _NovoHeaderCellDef, _NovoHeaderRow, _NovoHeaderRowDef, _NovoRow, _countGroupLabelsBeforeOption, _getOptionScrollPosition, binarySearch, can, findByCountryCode, findByCountryId, findByCountryName, getCountries, getDayView, getDayViewHourGrid, getMonthView, getSpacingToken, getStateObjects, getStates, getWeekView, getWeekViewEventOffset, getWeekViewHeader, interpolateCell, isAlphaNumeric, mixinColor, mixinDisabled, mixinErrorState, mixinOverlay, mixinRequired, mixinSize, mixinTabIndex, notify, novoExpansionAnimations, novoStepperAnimations, slideInOut, throwNovoDuplicatedSidenavError, zoomInOut };
|
|
64052
64105
|
//# sourceMappingURL=novo-elements.mjs.map
|