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
|
@@ -37819,6 +37819,66 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
37819
37819
|
}]
|
|
37820
37820
|
}], ctorParameters: function () { return [{ type: DataTableState }]; } });
|
|
37821
37821
|
|
|
37822
|
+
class NovoDataTableCellFilterHeader {
|
|
37823
|
+
constructor(changeDetectorRef, labels) {
|
|
37824
|
+
this.changeDetectorRef = changeDetectorRef;
|
|
37825
|
+
this.labels = labels;
|
|
37826
|
+
this.hasFilter = false;
|
|
37827
|
+
this.clearFilter = new EventEmitter();
|
|
37828
|
+
}
|
|
37829
|
+
set filter(filter) {
|
|
37830
|
+
this._filter = filter;
|
|
37831
|
+
this.hasFilter = !Helpers.isEmpty(filter);
|
|
37832
|
+
}
|
|
37833
|
+
get filter() {
|
|
37834
|
+
return this._filter;
|
|
37835
|
+
}
|
|
37836
|
+
}
|
|
37837
|
+
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 });
|
|
37838
|
+
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: `
|
|
37839
|
+
<div class="header">
|
|
37840
|
+
<novo-label>{{ label || labels.filters }}</novo-label>
|
|
37841
|
+
<novo-button
|
|
37842
|
+
theme="dialogue"
|
|
37843
|
+
color="negative"
|
|
37844
|
+
size="small"
|
|
37845
|
+
icon="times"
|
|
37846
|
+
(click)="clearFilter.emit()"
|
|
37847
|
+
*ngIf="hasFilter"
|
|
37848
|
+
data-automation-id="novo-data-table-filter-clear">
|
|
37849
|
+
{{ labels.clear }}
|
|
37850
|
+
</novo-button>
|
|
37851
|
+
</div>
|
|
37852
|
+
`, 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 });
|
|
37853
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoDataTableCellFilterHeader, decorators: [{
|
|
37854
|
+
type: Component,
|
|
37855
|
+
args: [{
|
|
37856
|
+
selector: 'novo-data-table-cell-filter-header',
|
|
37857
|
+
template: `
|
|
37858
|
+
<div class="header">
|
|
37859
|
+
<novo-label>{{ label || labels.filters }}</novo-label>
|
|
37860
|
+
<novo-button
|
|
37861
|
+
theme="dialogue"
|
|
37862
|
+
color="negative"
|
|
37863
|
+
size="small"
|
|
37864
|
+
icon="times"
|
|
37865
|
+
(click)="clearFilter.emit()"
|
|
37866
|
+
*ngIf="hasFilter"
|
|
37867
|
+
data-automation-id="novo-data-table-filter-clear">
|
|
37868
|
+
{{ labels.clear }}
|
|
37869
|
+
</novo-button>
|
|
37870
|
+
</div>
|
|
37871
|
+
`,
|
|
37872
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
37873
|
+
}]
|
|
37874
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: NovoLabelService }]; }, propDecorators: { label: [{
|
|
37875
|
+
type: Input
|
|
37876
|
+
}], filter: [{
|
|
37877
|
+
type: Input
|
|
37878
|
+
}], clearFilter: [{
|
|
37879
|
+
type: Output
|
|
37880
|
+
}] } });
|
|
37881
|
+
|
|
37822
37882
|
// NG2
|
|
37823
37883
|
class NovoFlexElement {
|
|
37824
37884
|
constructor() {
|
|
@@ -38383,6 +38443,9 @@ class NovoDataTableCellHeader {
|
|
|
38383
38443
|
}
|
|
38384
38444
|
this.config.transforms = transforms;
|
|
38385
38445
|
}
|
|
38446
|
+
get column() {
|
|
38447
|
+
return this._column;
|
|
38448
|
+
}
|
|
38386
38449
|
ngOnInit() {
|
|
38387
38450
|
if (this._cdkColumnDef) {
|
|
38388
38451
|
this.id = this._cdkColumnDef.name;
|
|
@@ -38667,16 +38730,14 @@ NovoDataTableCellHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
38667
38730
|
[tooltip]="labels.sort"
|
|
38668
38731
|
[attr.data-feature-id]="'novo-data-table-sort-' + this.id"
|
|
38669
38732
|
(sortChange)="sort()"
|
|
38670
|
-
[value]="sortValue"
|
|
38671
|
-
></novo-sort-button>
|
|
38733
|
+
[value]="sortValue"></novo-sort-button>
|
|
38672
38734
|
<novo-dropdown
|
|
38673
38735
|
*ngIf="config.filterable"
|
|
38674
38736
|
side="right"
|
|
38675
38737
|
parentScrollSelector=".novo-data-table-container"
|
|
38676
38738
|
containerClass="data-table-dropdown"
|
|
38677
38739
|
data-automation-id="novo-data-table-filter"
|
|
38678
|
-
[multiple]="multiSelect"
|
|
38679
|
-
>
|
|
38740
|
+
[multiple]="multiSelect">
|
|
38680
38741
|
<novo-icon
|
|
38681
38742
|
dropdownTrigger
|
|
38682
38743
|
class="filter-button"
|
|
@@ -38684,73 +38745,64 @@ NovoDataTableCellHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
38684
38745
|
[tooltip]="labels.filters"
|
|
38685
38746
|
tooltipPosition="right"
|
|
38686
38747
|
[attr.data-feature-id]="'novo-data-table-filter-' + this.id"
|
|
38687
|
-
(click)="focusInput()"
|
|
38688
|
-
|
|
38689
|
-
|
|
38690
|
-
|
|
38691
|
-
|
|
38692
|
-
|
|
38693
|
-
|
|
38694
|
-
|
|
38695
|
-
|
|
38696
|
-
|
|
38697
|
-
|
|
38698
|
-
|
|
38699
|
-
|
|
38700
|
-
|
|
38701
|
-
|
|
38702
|
-
|
|
38703
|
-
</div>
|
|
38704
|
-
<div class="optgroup-container">
|
|
38705
|
-
<ng-container [ngSwitch]="config.filterConfig.type">
|
|
38706
|
-
<novo-optgroup *ngSwitchCase="'date'" (keydown.escape)="handleEscapeKeydown($event)">
|
|
38707
|
-
<ng-container *ngIf="!showCustomRange">
|
|
38748
|
+
(click)="focusInput()">filter</novo-icon>
|
|
38749
|
+
<ng-container [ngSwitch]="config.filterConfig.type">
|
|
38750
|
+
<ng-container *ngSwitchCase="'date'" (keydown.escape)="handleEscapeKeydown($event)">
|
|
38751
|
+
<novo-data-table-cell-filter-header [filter]="filter" (clearFilter)="clearFilter()"></novo-data-table-cell-filter-header>
|
|
38752
|
+
<div class="optgroup-container">
|
|
38753
|
+
<novo-optgroup>
|
|
38754
|
+
<ng-container *ngIf="!showCustomRange">
|
|
38755
|
+
<novo-option
|
|
38756
|
+
[class.active]="activeDateFilter === option.label"
|
|
38757
|
+
*ngFor="let option of config.filterConfig.options"
|
|
38758
|
+
(click)="filterData(option)"
|
|
38759
|
+
[attr.data-automation-id]="'novo-data-table-filter-' + option.label">
|
|
38760
|
+
<span>{{ option.label }}</span>
|
|
38761
|
+
<novo-icon novoSuffix color="positive" *ngIf="activeDateFilter === option.label">check</novo-icon>
|
|
38762
|
+
</novo-option>
|
|
38763
|
+
</ng-container>
|
|
38708
38764
|
<novo-option
|
|
38709
|
-
[class.active]="
|
|
38765
|
+
[class.active]="labels.customDateRange === activeDateFilter"
|
|
38766
|
+
(click)="toggleCustomRange($event, true)"
|
|
38767
|
+
*ngIf="config.filterConfig.allowCustomRange && !showCustomRange">
|
|
38768
|
+
<span>{{ labels.customDateRange }}</span>
|
|
38769
|
+
<novo-icon novoSuffix color="positive" *ngIf="labels.customDateRange === activeDateFilter">check</novo-icon>
|
|
38770
|
+
</novo-option>
|
|
38771
|
+
<novo-option class="calendar-container" *ngIf="showCustomRange" keepOpen>
|
|
38772
|
+
<novo-stack>
|
|
38773
|
+
<div class="back-link" (click)="toggleCustomRange($event, false)">
|
|
38774
|
+
<i class="bhi-previous"></i>
|
|
38775
|
+
{{ labels.backToPresetFilters }}
|
|
38776
|
+
</div>
|
|
38777
|
+
<novo-date-picker
|
|
38778
|
+
(onSelect)="filterData($event)"
|
|
38779
|
+
[(ngModel)]="filter"
|
|
38780
|
+
range="true"
|
|
38781
|
+
(keydown.escape)="handleEscapeKeydown($event)"></novo-date-picker>
|
|
38782
|
+
</novo-stack>
|
|
38783
|
+
</novo-option>
|
|
38784
|
+
</novo-optgroup>
|
|
38785
|
+
</div>
|
|
38786
|
+
</ng-container>
|
|
38787
|
+
<ng-container *ngSwitchCase="'select'">
|
|
38788
|
+
<novo-data-table-cell-filter-header [filter]="filter" (clearFilter)="clearFilter()"></novo-data-table-cell-filter-header>
|
|
38789
|
+
<div class="optgroup-container">
|
|
38790
|
+
<novo-optgroup>
|
|
38791
|
+
<novo-option
|
|
38792
|
+
[class.active]="filter === option"
|
|
38710
38793
|
*ngFor="let option of config.filterConfig.options"
|
|
38711
38794
|
(click)="filterData(option)"
|
|
38712
|
-
[attr.data-automation-id]="'novo-data-table-filter-' + option
|
|
38713
|
-
|
|
38714
|
-
<
|
|
38715
|
-
|
|
38795
|
+
[attr.data-automation-id]="'novo-data-table-filter-' + (option?.label || option)">
|
|
38796
|
+
<span>{{ option?.label || option }}</span>
|
|
38797
|
+
<novo-icon novoSuffix color="positive" *ngIf="option.hasOwnProperty('value') ? filter === option.value : filter === option">
|
|
38798
|
+
check</novo-icon>
|
|
38716
38799
|
</novo-option>
|
|
38717
|
-
</
|
|
38718
|
-
|
|
38719
|
-
|
|
38720
|
-
|
|
38721
|
-
|
|
38722
|
-
|
|
38723
|
-
<span>{{ labels.customDateRange }}</span>
|
|
38724
|
-
<novo-icon novoSuffix color="positive" *ngIf="labels.customDateRange === activeDateFilter">check</novo-icon>
|
|
38725
|
-
</novo-option>
|
|
38726
|
-
<novo-option class="calendar-container" *ngIf="showCustomRange" keepOpen>
|
|
38727
|
-
<novo-stack>
|
|
38728
|
-
<div class="back-link" (click)="toggleCustomRange($event, false)">
|
|
38729
|
-
<i class="bhi-previous"></i>{{ labels.backToPresetFilters }}
|
|
38730
|
-
</div>
|
|
38731
|
-
<novo-date-picker
|
|
38732
|
-
(onSelect)="filterData($event)"
|
|
38733
|
-
[(ngModel)]="filter"
|
|
38734
|
-
range="true"
|
|
38735
|
-
(keydown.escape)="handleEscapeKeydown($event)"
|
|
38736
|
-
></novo-date-picker>
|
|
38737
|
-
</novo-stack>
|
|
38738
|
-
</novo-option>
|
|
38739
|
-
</novo-optgroup>
|
|
38740
|
-
<novo-optgroup *ngSwitchCase="'select'">
|
|
38741
|
-
<novo-option
|
|
38742
|
-
[class.active]="filter === option"
|
|
38743
|
-
*ngFor="let option of config.filterConfig.options"
|
|
38744
|
-
(click)="filterData(option)"
|
|
38745
|
-
[attr.data-automation-id]="'novo-data-table-filter-' + (option?.label || option)"
|
|
38746
|
-
>
|
|
38747
|
-
<span>{{ option?.label || option }}</span>
|
|
38748
|
-
<novo-icon novoSuffix color="positive" *ngIf="option.hasOwnProperty('value') ? filter === option.value : filter === option"
|
|
38749
|
-
>check</novo-icon
|
|
38750
|
-
>
|
|
38751
|
-
</novo-option>
|
|
38752
|
-
</novo-optgroup>
|
|
38753
|
-
<ng-container *ngSwitchCase="'multi-select'">
|
|
38800
|
+
</novo-optgroup>
|
|
38801
|
+
</div>
|
|
38802
|
+
</ng-container>
|
|
38803
|
+
<ng-container *ngSwitchCase="'multi-select'">
|
|
38804
|
+
<novo-data-table-cell-filter-header [filter]="filter" (clearFilter)="clearFilter()"></novo-data-table-cell-filter-header>
|
|
38805
|
+
<div class="optgroup-container">
|
|
38754
38806
|
<novo-optgroup class="dropdown-list-filter" (keydown)="multiSelectOptionFilterHandleKeydown($event)">
|
|
38755
38807
|
<novo-option class="filter-search" novoInert>
|
|
38756
38808
|
<novo-field flex>
|
|
@@ -38760,12 +38812,11 @@ NovoDataTableCellHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
38760
38812
|
(ngModelChange)="multiSelectOptionFilter($event)"
|
|
38761
38813
|
#optionFilterInput
|
|
38762
38814
|
data-automation-id="novo-data-table-multi-select-option-filter-input"
|
|
38763
|
-
(keydown.enter)="multiSelectOptionFilterHandleKeydown($event)"
|
|
38764
|
-
/>
|
|
38815
|
+
(keydown.enter)="multiSelectOptionFilterHandleKeydown($event)" />
|
|
38765
38816
|
<novo-icon novoSuffix>search</novo-icon>
|
|
38766
|
-
<novo-error class="error-text" [hidden]="!error || !multiSelectHasVisibleOptions()">
|
|
38767
|
-
labels.selectFilterOptions
|
|
38768
|
-
|
|
38817
|
+
<novo-error class="error-text" [hidden]="!error || !multiSelectHasVisibleOptions()">
|
|
38818
|
+
{{ labels.selectFilterOptions }}
|
|
38819
|
+
</novo-error>
|
|
38769
38820
|
</novo-field>
|
|
38770
38821
|
</novo-option>
|
|
38771
38822
|
</novo-optgroup>
|
|
@@ -38774,39 +38825,45 @@ NovoDataTableCellHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
38774
38825
|
*ngFor="let option of config.filterConfig.options"
|
|
38775
38826
|
[hidden]="multiSelectOptionIsHidden(option)"
|
|
38776
38827
|
(click)="toggleSelection(option)"
|
|
38777
|
-
[attr.data-automation-id]="'novo-data-table-filter-' + (option?.label || option)"
|
|
38778
|
-
>
|
|
38828
|
+
[attr.data-automation-id]="'novo-data-table-filter-' + (option?.label || option)">
|
|
38779
38829
|
<span>{{ option?.label || option }}</span>
|
|
38780
|
-
<novo-icon novoSuffix color="positive">
|
|
38781
|
-
isSelected(option, multiSelectedOptions) ? 'checkbox-filled' : 'checkbox-empty'
|
|
38782
|
-
|
|
38830
|
+
<novo-icon novoSuffix color="positive">
|
|
38831
|
+
{{ isSelected(option, multiSelectedOptions) ? 'checkbox-filled' : 'checkbox-empty' }}
|
|
38832
|
+
</novo-icon>
|
|
38783
38833
|
</novo-option>
|
|
38784
38834
|
</novo-optgroup>
|
|
38785
38835
|
<novo-option class="filter-null-results" [hidden]="multiSelectHasVisibleOptions()">{{ labels.pickerEmpty }}</novo-option>
|
|
38836
|
+
</div>
|
|
38837
|
+
</ng-container>
|
|
38838
|
+
<ng-container *ngSwitchCase="'custom'">
|
|
38839
|
+
<ng-container *ngIf="dropdown">
|
|
38840
|
+
<novo-data-table-cell-filter-header *ngIf="!config.filterConfig?.useCustomHeader" [filter]="filter" (clearFilter)="clearFilter()"></novo-data-table-cell-filter-header>
|
|
38841
|
+
<div class="optgroup-container">
|
|
38842
|
+
<ng-container *ngTemplateOutlet="filterTemplate; context: { $implicit: config, column, dropdown, filter }"></ng-container>
|
|
38843
|
+
</div>
|
|
38786
38844
|
</ng-container>
|
|
38787
|
-
<novo-optgroup *ngSwitchCase="'custom'">
|
|
38788
|
-
<novo-option class="filter-search" novoInert>
|
|
38789
|
-
<ng-container *ngTemplateOutlet="filterTemplate; context: { $implicit: config }"></ng-container>
|
|
38790
|
-
</novo-option>
|
|
38791
|
-
</novo-optgroup>
|
|
38792
|
-
<novo-optgroup *ngSwitchDefault (keydown.escape)="handleEscapeKeydown($event)">
|
|
38793
|
-
<novo-option class="filter-search" novoInert>
|
|
38794
|
-
<novo-field flex fullWidth>
|
|
38795
|
-
<input
|
|
38796
|
-
novoInput
|
|
38797
|
-
[type]="config.filterConfig.type"
|
|
38798
|
-
[(ngModel)]="filter"
|
|
38799
|
-
(ngModelChange)="filterData($event)"
|
|
38800
|
-
#filterInput
|
|
38801
|
-
data-automation-id="novo-data-table-filter-input"
|
|
38802
|
-
(keydown.escape)="handleEscapeKeydown($event)"
|
|
38803
|
-
/>
|
|
38804
|
-
<novo-icon novoSuffix>search</novo-icon>
|
|
38805
|
-
</novo-field>
|
|
38806
|
-
</novo-option>
|
|
38807
|
-
</novo-optgroup>
|
|
38808
38845
|
</ng-container>
|
|
38809
|
-
|
|
38846
|
+
<ng-container *ngSwitchDefault (keydown.escape)="handleEscapeKeydown($event)">
|
|
38847
|
+
<novo-data-table-cell-filter-header [filter]="filter" (clearFilter)="clearFilter()"></novo-data-table-cell-filter-header>
|
|
38848
|
+
<div class="optgroup-container">
|
|
38849
|
+
<novo-optgroup>
|
|
38850
|
+
<novo-option class="filter-search" novoInert>
|
|
38851
|
+
<novo-field flex fullWidth>
|
|
38852
|
+
<input
|
|
38853
|
+
novoInput
|
|
38854
|
+
[type]="config.filterConfig.type"
|
|
38855
|
+
[(ngModel)]="filter"
|
|
38856
|
+
(ngModelChange)="filterData($event)"
|
|
38857
|
+
#filterInput
|
|
38858
|
+
data-automation-id="novo-data-table-filter-input"
|
|
38859
|
+
(keydown.escape)="handleEscapeKeydown($event)" />
|
|
38860
|
+
<novo-icon novoSuffix>search</novo-icon>
|
|
38861
|
+
</novo-field>
|
|
38862
|
+
</novo-option>
|
|
38863
|
+
</novo-optgroup>
|
|
38864
|
+
</div>
|
|
38865
|
+
</ng-container>
|
|
38866
|
+
</ng-container>
|
|
38810
38867
|
<div class="footer" *ngIf="multiSelect">
|
|
38811
38868
|
<novo-button theme="dialogue" color="dark" (click)="cancel()" data-automation-id="novo-data-table-multi-select-cancel">
|
|
38812
38869
|
{{ labels.cancel }}
|
|
@@ -38815,8 +38872,7 @@ NovoDataTableCellHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
38815
38872
|
theme="dialogue"
|
|
38816
38873
|
color="positive"
|
|
38817
38874
|
(click)="filterMultiSelect()"
|
|
38818
|
-
data-automation-id="novo-data-table-multi-select-filter"
|
|
38819
|
-
>
|
|
38875
|
+
data-automation-id="novo-data-table-multi-select-filter">
|
|
38820
38876
|
{{ labels.filters }}
|
|
38821
38877
|
</novo-button>
|
|
38822
38878
|
</div>
|
|
@@ -38824,7 +38880,7 @@ NovoDataTableCellHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
38824
38880
|
</div>
|
|
38825
38881
|
<div class="spacer"></div>
|
|
38826
38882
|
<div class="data-table-header-resizable" *ngIf="config.resizable"><span (mousedown)="startResize($event)"> </span></div>
|
|
38827
|
-
`, 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:
|
|
38883
|
+
`, 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 });
|
|
38828
38884
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoDataTableCellHeader, decorators: [{
|
|
38829
38885
|
type: Component,
|
|
38830
38886
|
args: [{
|
|
@@ -38840,16 +38896,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
38840
38896
|
[tooltip]="labels.sort"
|
|
38841
38897
|
[attr.data-feature-id]="'novo-data-table-sort-' + this.id"
|
|
38842
38898
|
(sortChange)="sort()"
|
|
38843
|
-
[value]="sortValue"
|
|
38844
|
-
></novo-sort-button>
|
|
38899
|
+
[value]="sortValue"></novo-sort-button>
|
|
38845
38900
|
<novo-dropdown
|
|
38846
38901
|
*ngIf="config.filterable"
|
|
38847
38902
|
side="right"
|
|
38848
38903
|
parentScrollSelector=".novo-data-table-container"
|
|
38849
38904
|
containerClass="data-table-dropdown"
|
|
38850
38905
|
data-automation-id="novo-data-table-filter"
|
|
38851
|
-
[multiple]="multiSelect"
|
|
38852
|
-
>
|
|
38906
|
+
[multiple]="multiSelect">
|
|
38853
38907
|
<novo-icon
|
|
38854
38908
|
dropdownTrigger
|
|
38855
38909
|
class="filter-button"
|
|
@@ -38857,73 +38911,64 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
38857
38911
|
[tooltip]="labels.filters"
|
|
38858
38912
|
tooltipPosition="right"
|
|
38859
38913
|
[attr.data-feature-id]="'novo-data-table-filter-' + this.id"
|
|
38860
|
-
(click)="focusInput()"
|
|
38861
|
-
|
|
38862
|
-
|
|
38863
|
-
|
|
38864
|
-
|
|
38865
|
-
|
|
38866
|
-
|
|
38867
|
-
|
|
38868
|
-
|
|
38869
|
-
|
|
38870
|
-
|
|
38871
|
-
|
|
38872
|
-
|
|
38873
|
-
|
|
38874
|
-
|
|
38875
|
-
|
|
38876
|
-
|
|
38877
|
-
|
|
38878
|
-
|
|
38879
|
-
|
|
38880
|
-
|
|
38914
|
+
(click)="focusInput()">filter</novo-icon>
|
|
38915
|
+
<ng-container [ngSwitch]="config.filterConfig.type">
|
|
38916
|
+
<ng-container *ngSwitchCase="'date'" (keydown.escape)="handleEscapeKeydown($event)">
|
|
38917
|
+
<novo-data-table-cell-filter-header [filter]="filter" (clearFilter)="clearFilter()"></novo-data-table-cell-filter-header>
|
|
38918
|
+
<div class="optgroup-container">
|
|
38919
|
+
<novo-optgroup>
|
|
38920
|
+
<ng-container *ngIf="!showCustomRange">
|
|
38921
|
+
<novo-option
|
|
38922
|
+
[class.active]="activeDateFilter === option.label"
|
|
38923
|
+
*ngFor="let option of config.filterConfig.options"
|
|
38924
|
+
(click)="filterData(option)"
|
|
38925
|
+
[attr.data-automation-id]="'novo-data-table-filter-' + option.label">
|
|
38926
|
+
<span>{{ option.label }}</span>
|
|
38927
|
+
<novo-icon novoSuffix color="positive" *ngIf="activeDateFilter === option.label">check</novo-icon>
|
|
38928
|
+
</novo-option>
|
|
38929
|
+
</ng-container>
|
|
38930
|
+
<novo-option
|
|
38931
|
+
[class.active]="labels.customDateRange === activeDateFilter"
|
|
38932
|
+
(click)="toggleCustomRange($event, true)"
|
|
38933
|
+
*ngIf="config.filterConfig.allowCustomRange && !showCustomRange">
|
|
38934
|
+
<span>{{ labels.customDateRange }}</span>
|
|
38935
|
+
<novo-icon novoSuffix color="positive" *ngIf="labels.customDateRange === activeDateFilter">check</novo-icon>
|
|
38936
|
+
</novo-option>
|
|
38937
|
+
<novo-option class="calendar-container" *ngIf="showCustomRange" keepOpen>
|
|
38938
|
+
<novo-stack>
|
|
38939
|
+
<div class="back-link" (click)="toggleCustomRange($event, false)">
|
|
38940
|
+
<i class="bhi-previous"></i>
|
|
38941
|
+
{{ labels.backToPresetFilters }}
|
|
38942
|
+
</div>
|
|
38943
|
+
<novo-date-picker
|
|
38944
|
+
(onSelect)="filterData($event)"
|
|
38945
|
+
[(ngModel)]="filter"
|
|
38946
|
+
range="true"
|
|
38947
|
+
(keydown.escape)="handleEscapeKeydown($event)"></novo-date-picker>
|
|
38948
|
+
</novo-stack>
|
|
38949
|
+
</novo-option>
|
|
38950
|
+
</novo-optgroup>
|
|
38951
|
+
</div>
|
|
38952
|
+
</ng-container>
|
|
38953
|
+
<ng-container *ngSwitchCase="'select'">
|
|
38954
|
+
<novo-data-table-cell-filter-header [filter]="filter" (clearFilter)="clearFilter()"></novo-data-table-cell-filter-header>
|
|
38955
|
+
<div class="optgroup-container">
|
|
38956
|
+
<novo-optgroup>
|
|
38881
38957
|
<novo-option
|
|
38882
|
-
[class.active]="
|
|
38958
|
+
[class.active]="filter === option"
|
|
38883
38959
|
*ngFor="let option of config.filterConfig.options"
|
|
38884
38960
|
(click)="filterData(option)"
|
|
38885
|
-
[attr.data-automation-id]="'novo-data-table-filter-' + option
|
|
38886
|
-
|
|
38887
|
-
<
|
|
38888
|
-
|
|
38961
|
+
[attr.data-automation-id]="'novo-data-table-filter-' + (option?.label || option)">
|
|
38962
|
+
<span>{{ option?.label || option }}</span>
|
|
38963
|
+
<novo-icon novoSuffix color="positive" *ngIf="option.hasOwnProperty('value') ? filter === option.value : filter === option">
|
|
38964
|
+
check</novo-icon>
|
|
38889
38965
|
</novo-option>
|
|
38890
|
-
</
|
|
38891
|
-
|
|
38892
|
-
|
|
38893
|
-
|
|
38894
|
-
|
|
38895
|
-
|
|
38896
|
-
<span>{{ labels.customDateRange }}</span>
|
|
38897
|
-
<novo-icon novoSuffix color="positive" *ngIf="labels.customDateRange === activeDateFilter">check</novo-icon>
|
|
38898
|
-
</novo-option>
|
|
38899
|
-
<novo-option class="calendar-container" *ngIf="showCustomRange" keepOpen>
|
|
38900
|
-
<novo-stack>
|
|
38901
|
-
<div class="back-link" (click)="toggleCustomRange($event, false)">
|
|
38902
|
-
<i class="bhi-previous"></i>{{ labels.backToPresetFilters }}
|
|
38903
|
-
</div>
|
|
38904
|
-
<novo-date-picker
|
|
38905
|
-
(onSelect)="filterData($event)"
|
|
38906
|
-
[(ngModel)]="filter"
|
|
38907
|
-
range="true"
|
|
38908
|
-
(keydown.escape)="handleEscapeKeydown($event)"
|
|
38909
|
-
></novo-date-picker>
|
|
38910
|
-
</novo-stack>
|
|
38911
|
-
</novo-option>
|
|
38912
|
-
</novo-optgroup>
|
|
38913
|
-
<novo-optgroup *ngSwitchCase="'select'">
|
|
38914
|
-
<novo-option
|
|
38915
|
-
[class.active]="filter === option"
|
|
38916
|
-
*ngFor="let option of config.filterConfig.options"
|
|
38917
|
-
(click)="filterData(option)"
|
|
38918
|
-
[attr.data-automation-id]="'novo-data-table-filter-' + (option?.label || option)"
|
|
38919
|
-
>
|
|
38920
|
-
<span>{{ option?.label || option }}</span>
|
|
38921
|
-
<novo-icon novoSuffix color="positive" *ngIf="option.hasOwnProperty('value') ? filter === option.value : filter === option"
|
|
38922
|
-
>check</novo-icon
|
|
38923
|
-
>
|
|
38924
|
-
</novo-option>
|
|
38925
|
-
</novo-optgroup>
|
|
38926
|
-
<ng-container *ngSwitchCase="'multi-select'">
|
|
38966
|
+
</novo-optgroup>
|
|
38967
|
+
</div>
|
|
38968
|
+
</ng-container>
|
|
38969
|
+
<ng-container *ngSwitchCase="'multi-select'">
|
|
38970
|
+
<novo-data-table-cell-filter-header [filter]="filter" (clearFilter)="clearFilter()"></novo-data-table-cell-filter-header>
|
|
38971
|
+
<div class="optgroup-container">
|
|
38927
38972
|
<novo-optgroup class="dropdown-list-filter" (keydown)="multiSelectOptionFilterHandleKeydown($event)">
|
|
38928
38973
|
<novo-option class="filter-search" novoInert>
|
|
38929
38974
|
<novo-field flex>
|
|
@@ -38933,12 +38978,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
38933
38978
|
(ngModelChange)="multiSelectOptionFilter($event)"
|
|
38934
38979
|
#optionFilterInput
|
|
38935
38980
|
data-automation-id="novo-data-table-multi-select-option-filter-input"
|
|
38936
|
-
(keydown.enter)="multiSelectOptionFilterHandleKeydown($event)"
|
|
38937
|
-
/>
|
|
38981
|
+
(keydown.enter)="multiSelectOptionFilterHandleKeydown($event)" />
|
|
38938
38982
|
<novo-icon novoSuffix>search</novo-icon>
|
|
38939
|
-
<novo-error class="error-text" [hidden]="!error || !multiSelectHasVisibleOptions()">
|
|
38940
|
-
labels.selectFilterOptions
|
|
38941
|
-
|
|
38983
|
+
<novo-error class="error-text" [hidden]="!error || !multiSelectHasVisibleOptions()">
|
|
38984
|
+
{{ labels.selectFilterOptions }}
|
|
38985
|
+
</novo-error>
|
|
38942
38986
|
</novo-field>
|
|
38943
38987
|
</novo-option>
|
|
38944
38988
|
</novo-optgroup>
|
|
@@ -38947,39 +38991,45 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
38947
38991
|
*ngFor="let option of config.filterConfig.options"
|
|
38948
38992
|
[hidden]="multiSelectOptionIsHidden(option)"
|
|
38949
38993
|
(click)="toggleSelection(option)"
|
|
38950
|
-
[attr.data-automation-id]="'novo-data-table-filter-' + (option?.label || option)"
|
|
38951
|
-
>
|
|
38994
|
+
[attr.data-automation-id]="'novo-data-table-filter-' + (option?.label || option)">
|
|
38952
38995
|
<span>{{ option?.label || option }}</span>
|
|
38953
|
-
<novo-icon novoSuffix color="positive">
|
|
38954
|
-
isSelected(option, multiSelectedOptions) ? 'checkbox-filled' : 'checkbox-empty'
|
|
38955
|
-
|
|
38996
|
+
<novo-icon novoSuffix color="positive">
|
|
38997
|
+
{{ isSelected(option, multiSelectedOptions) ? 'checkbox-filled' : 'checkbox-empty' }}
|
|
38998
|
+
</novo-icon>
|
|
38956
38999
|
</novo-option>
|
|
38957
39000
|
</novo-optgroup>
|
|
38958
39001
|
<novo-option class="filter-null-results" [hidden]="multiSelectHasVisibleOptions()">{{ labels.pickerEmpty }}</novo-option>
|
|
39002
|
+
</div>
|
|
39003
|
+
</ng-container>
|
|
39004
|
+
<ng-container *ngSwitchCase="'custom'">
|
|
39005
|
+
<ng-container *ngIf="dropdown">
|
|
39006
|
+
<novo-data-table-cell-filter-header *ngIf="!config.filterConfig?.useCustomHeader" [filter]="filter" (clearFilter)="clearFilter()"></novo-data-table-cell-filter-header>
|
|
39007
|
+
<div class="optgroup-container">
|
|
39008
|
+
<ng-container *ngTemplateOutlet="filterTemplate; context: { $implicit: config, column, dropdown, filter }"></ng-container>
|
|
39009
|
+
</div>
|
|
38959
39010
|
</ng-container>
|
|
38960
|
-
<novo-optgroup *ngSwitchCase="'custom'">
|
|
38961
|
-
<novo-option class="filter-search" novoInert>
|
|
38962
|
-
<ng-container *ngTemplateOutlet="filterTemplate; context: { $implicit: config }"></ng-container>
|
|
38963
|
-
</novo-option>
|
|
38964
|
-
</novo-optgroup>
|
|
38965
|
-
<novo-optgroup *ngSwitchDefault (keydown.escape)="handleEscapeKeydown($event)">
|
|
38966
|
-
<novo-option class="filter-search" novoInert>
|
|
38967
|
-
<novo-field flex fullWidth>
|
|
38968
|
-
<input
|
|
38969
|
-
novoInput
|
|
38970
|
-
[type]="config.filterConfig.type"
|
|
38971
|
-
[(ngModel)]="filter"
|
|
38972
|
-
(ngModelChange)="filterData($event)"
|
|
38973
|
-
#filterInput
|
|
38974
|
-
data-automation-id="novo-data-table-filter-input"
|
|
38975
|
-
(keydown.escape)="handleEscapeKeydown($event)"
|
|
38976
|
-
/>
|
|
38977
|
-
<novo-icon novoSuffix>search</novo-icon>
|
|
38978
|
-
</novo-field>
|
|
38979
|
-
</novo-option>
|
|
38980
|
-
</novo-optgroup>
|
|
38981
39011
|
</ng-container>
|
|
38982
|
-
|
|
39012
|
+
<ng-container *ngSwitchDefault (keydown.escape)="handleEscapeKeydown($event)">
|
|
39013
|
+
<novo-data-table-cell-filter-header [filter]="filter" (clearFilter)="clearFilter()"></novo-data-table-cell-filter-header>
|
|
39014
|
+
<div class="optgroup-container">
|
|
39015
|
+
<novo-optgroup>
|
|
39016
|
+
<novo-option class="filter-search" novoInert>
|
|
39017
|
+
<novo-field flex fullWidth>
|
|
39018
|
+
<input
|
|
39019
|
+
novoInput
|
|
39020
|
+
[type]="config.filterConfig.type"
|
|
39021
|
+
[(ngModel)]="filter"
|
|
39022
|
+
(ngModelChange)="filterData($event)"
|
|
39023
|
+
#filterInput
|
|
39024
|
+
data-automation-id="novo-data-table-filter-input"
|
|
39025
|
+
(keydown.escape)="handleEscapeKeydown($event)" />
|
|
39026
|
+
<novo-icon novoSuffix>search</novo-icon>
|
|
39027
|
+
</novo-field>
|
|
39028
|
+
</novo-option>
|
|
39029
|
+
</novo-optgroup>
|
|
39030
|
+
</div>
|
|
39031
|
+
</ng-container>
|
|
39032
|
+
</ng-container>
|
|
38983
39033
|
<div class="footer" *ngIf="multiSelect">
|
|
38984
39034
|
<novo-button theme="dialogue" color="dark" (click)="cancel()" data-automation-id="novo-data-table-multi-select-cancel">
|
|
38985
39035
|
{{ labels.cancel }}
|
|
@@ -38988,8 +39038,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
38988
39038
|
theme="dialogue"
|
|
38989
39039
|
color="positive"
|
|
38990
39040
|
(click)="filterMultiSelect()"
|
|
38991
|
-
data-automation-id="novo-data-table-multi-select-filter"
|
|
38992
|
-
>
|
|
39041
|
+
data-automation-id="novo-data-table-multi-select-filter">
|
|
38993
39042
|
{{ labels.filters }}
|
|
38994
39043
|
</novo-button>
|
|
38995
39044
|
</div>
|
|
@@ -41644,7 +41693,7 @@ NovoDataTable.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
|
|
|
41644
41693
|
<novo-data-table-header-cell
|
|
41645
41694
|
*cdkHeaderCellDef
|
|
41646
41695
|
[column]="column"
|
|
41647
|
-
[filterTemplate]="templates['column-filter-' + column.id]"
|
|
41696
|
+
[filterTemplate]="templates['column-filter-' + (column.filterable?.customTemplate || column.id)]"
|
|
41648
41697
|
[novo-data-table-cell-config]="column"
|
|
41649
41698
|
[resized]="resized"
|
|
41650
41699
|
[defaultSort]="defaultSort"
|
|
@@ -41892,7 +41941,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
41892
41941
|
<novo-data-table-header-cell
|
|
41893
41942
|
*cdkHeaderCellDef
|
|
41894
41943
|
[column]="column"
|
|
41895
|
-
[filterTemplate]="templates['column-filter-' + column.id]"
|
|
41944
|
+
[filterTemplate]="templates['column-filter-' + (column.filterable?.customTemplate || column.id)]"
|
|
41896
41945
|
[novo-data-table-cell-config]="column"
|
|
41897
41946
|
[resized]="resized"
|
|
41898
41947
|
[defaultSort]="defaultSort"
|
|
@@ -44999,6 +45048,7 @@ NovoDataTableModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", ver
|
|
|
44999
45048
|
NovoDataTableCellHeader,
|
|
45000
45049
|
NovoDataTableSortFilter,
|
|
45001
45050
|
NovoDataTableHeaderCell,
|
|
45051
|
+
NovoDataTableCellFilterHeader,
|
|
45002
45052
|
NovoDataTableCell,
|
|
45003
45053
|
NovoDataTableHeaderRow,
|
|
45004
45054
|
NovoDataTableRow,
|
|
@@ -45035,6 +45085,7 @@ NovoDataTableModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", ver
|
|
|
45035
45085
|
DateTableNumberRendererPipe,
|
|
45036
45086
|
DateTableTimeRendererPipe,
|
|
45037
45087
|
DataTableBigDecimalRendererPipe,
|
|
45088
|
+
NovoDataTableCellFilterHeader,
|
|
45038
45089
|
NovoDataTableClearButton,
|
|
45039
45090
|
NovoDataTableSortButton] });
|
|
45040
45091
|
NovoDataTableModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoDataTableModule, providers: [DataTableState], imports: [[
|
|
@@ -45091,6 +45142,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
45091
45142
|
NovoDataTableCellHeader,
|
|
45092
45143
|
NovoDataTableSortFilter,
|
|
45093
45144
|
NovoDataTableHeaderCell,
|
|
45145
|
+
NovoDataTableCellFilterHeader,
|
|
45094
45146
|
NovoDataTableCell,
|
|
45095
45147
|
NovoDataTableHeaderRow,
|
|
45096
45148
|
NovoDataTableRow,
|
|
@@ -45114,6 +45166,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
45114
45166
|
DateTableNumberRendererPipe,
|
|
45115
45167
|
DateTableTimeRendererPipe,
|
|
45116
45168
|
DataTableBigDecimalRendererPipe,
|
|
45169
|
+
NovoDataTableCellFilterHeader,
|
|
45117
45170
|
NovoDataTableClearButton,
|
|
45118
45171
|
NovoDataTableSortButton,
|
|
45119
45172
|
],
|
|
@@ -50744,7 +50797,7 @@ class QuickNoteElement extends OutsideClick {
|
|
|
50744
50797
|
this._placeholderElement = document.createElement('div');
|
|
50745
50798
|
this._placeholderElement.className = 'placeholder';
|
|
50746
50799
|
this._placeholderElement.style.cssText =
|
|
50747
|
-
'margin: 20px; color: #AAAAAA; font-family: sans-serif; font-size: 13px; line-height: 20px; position: absolute; top: 0';
|
|
50800
|
+
'margin: 20px; color: #AAAAAA; font-family: sans-serif; font-size: 13px; line-height: 20px; position: absolute; top: 0; pointer-events: none';
|
|
50748
50801
|
this._placeholderElement.textContent = this.placeholder;
|
|
50749
50802
|
}
|
|
50750
50803
|
return this._placeholderElement;
|
|
@@ -64149,5 +64202,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
64149
64202
|
* Generated bundle index. Do not edit.
|
|
64150
64203
|
*/
|
|
64151
64204
|
|
|
64152
|
-
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 };
|
|
64205
|
+
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 };
|
|
64153
64206
|
//# sourceMappingURL=novo-elements.mjs.map
|