@ecodev/natural 48.0.3 → 49.0.0
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/esm2020/lib/classes/abstract-list.mjs +16 -5
- package/esm2020/lib/modules/columns-picker/columns-picker.component.mjs +53 -42
- package/esm2020/lib/modules/columns-picker/columns-picker.module.mjs +5 -6
- package/esm2020/lib/modules/columns-picker/public-api.mjs +1 -2
- package/esm2020/lib/modules/columns-picker/types.mjs +2 -0
- package/fesm2015/ecodev-natural.mjs +70 -98
- package/fesm2015/ecodev-natural.mjs.map +1 -1
- package/fesm2020/ecodev-natural.mjs +72 -94
- package/fesm2020/ecodev-natural.mjs.map +1 -1
- package/lib/classes/abstract-list.d.ts +11 -3
- package/lib/modules/columns-picker/columns-picker.component.d.ts +13 -14
- package/lib/modules/columns-picker/columns-picker.module.d.ts +10 -11
- package/lib/modules/columns-picker/public-api.d.ts +1 -1
- package/lib/modules/columns-picker/types.d.ts +30 -0
- package/package.json +1 -1
- package/esm2020/lib/modules/columns-picker/columns-picker-column.directive.mjs +0 -47
- package/lib/modules/columns-picker/columns-picker-column.directive.d.ts +0 -27
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import '@angular/localize/init';
|
|
2
2
|
import * as i0 from '@angular/core';
|
|
3
|
-
import { Directive, Component, Inject, Injectable, HostBinding, HostListener, InjectionToken, TemplateRef, ViewEncapsulation, ViewChild, Injector, Optional, Input, NgModule, Host, Self, EventEmitter,
|
|
3
|
+
import { Directive, Component, Inject, Injectable, HostBinding, HostListener, InjectionToken, TemplateRef, ViewEncapsulation, ViewChild, Injector, Optional, Input, NgModule, Host, Self, EventEmitter, Output, Pipe, ContentChild, createEnvironmentInjector, createComponent, PLATFORM_ID, ErrorHandler } from '@angular/core';
|
|
4
4
|
import { Subject, BehaviorSubject, of, timer, switchMap as switchMap$1, endWith, last, EMPTY, merge as merge$1, Observable, first as first$1, combineLatest, catchError, ReplaySubject, debounceTime as debounceTime$1, raceWith, take as take$1, mergeMap, shareReplay as shareReplay$1, forkJoin, map as map$1, tap as tap$1, asyncScheduler, takeUntil as takeUntil$1 } from 'rxjs';
|
|
5
5
|
import * as i3 from '@angular/forms';
|
|
6
6
|
import { FormGroup, FormArray, Validators, UntypedFormGroup, UntypedFormArray, FormControl, UntypedFormControl, FormsModule, FormControlDirective, FormControlName, ReactiveFormsModule } from '@angular/forms';
|
|
@@ -3576,11 +3576,15 @@ class NaturalAbstractList extends NaturalAbstractPanel {
|
|
|
3576
3576
|
*/
|
|
3577
3577
|
this.persistSearch = true;
|
|
3578
3578
|
/**
|
|
3579
|
-
*
|
|
3579
|
+
* List of columns that are available to the end-user to select from, via `<natural-columns-picker>`
|
|
3580
|
+
*/
|
|
3581
|
+
this.availableColumns = [];
|
|
3582
|
+
/**
|
|
3583
|
+
* Columns list after interaction with `<natural-columns-picker>`
|
|
3580
3584
|
*/
|
|
3581
3585
|
this.columnsForTable = [];
|
|
3582
3586
|
/**
|
|
3583
|
-
* The default column selection that automatically happened after
|
|
3587
|
+
* The default column selection that automatically happened after `<natural-columns-picker>` initialization
|
|
3584
3588
|
*/
|
|
3585
3589
|
this.defaultSelectedColumns = null;
|
|
3586
3590
|
/**
|
|
@@ -3834,6 +3838,7 @@ class NaturalAbstractList extends NaturalAbstractPanel {
|
|
|
3834
3838
|
* Uses data provided by router such as:
|
|
3835
3839
|
*
|
|
3836
3840
|
* - `route.data.forcedVariables`
|
|
3841
|
+
* - `route.data.availableColumns`
|
|
3837
3842
|
* - `route.data.selectedColumns`
|
|
3838
3843
|
*/
|
|
3839
3844
|
initFromRoute() {
|
|
@@ -3841,6 +3846,10 @@ class NaturalAbstractList extends NaturalAbstractPanel {
|
|
|
3841
3846
|
if (this.route.snapshot.data.forcedVariables) {
|
|
3842
3847
|
this.applyForcedVariables(this.route.snapshot.data.forcedVariables);
|
|
3843
3848
|
}
|
|
3849
|
+
// Available columns
|
|
3850
|
+
if (this.route.snapshot.data.availableColumns) {
|
|
3851
|
+
this.availableColumns = this.route.snapshot.data.availableColumns;
|
|
3852
|
+
}
|
|
3844
3853
|
// Columns
|
|
3845
3854
|
if (this.route.snapshot.data.selectedColumns) {
|
|
3846
3855
|
this.selectedColumns = this.route.snapshot.data.selectedColumns;
|
|
@@ -3934,7 +3943,7 @@ class NaturalAbstractList extends NaturalAbstractPanel {
|
|
|
3934
3943
|
if (!this.persistSearch || this.isPanel) {
|
|
3935
3944
|
return;
|
|
3936
3945
|
}
|
|
3937
|
-
// The first selection we receive is the default one made by
|
|
3946
|
+
// The first selection we receive is the default one made by `<natural-columns-picker>`
|
|
3938
3947
|
if (!this.defaultSelectedColumns) {
|
|
3939
3948
|
this.defaultSelectedColumns = columns;
|
|
3940
3949
|
}
|
|
@@ -3946,11 +3955,13 @@ class NaturalAbstractList extends NaturalAbstractPanel {
|
|
|
3946
3955
|
}
|
|
3947
3956
|
}
|
|
3948
3957
|
NaturalAbstractList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: NaturalAbstractList, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive });
|
|
3949
|
-
NaturalAbstractList.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", type: NaturalAbstractList, inputs: { persistSearch: "persistSearch", selectedColumns: "selectedColumns", forcedVariables: "forcedVariables" }, usesInheritance: true, ngImport: i0 });
|
|
3958
|
+
NaturalAbstractList.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", type: NaturalAbstractList, inputs: { persistSearch: "persistSearch", availableColumns: "availableColumns", selectedColumns: "selectedColumns", forcedVariables: "forcedVariables" }, usesInheritance: true, ngImport: i0 });
|
|
3950
3959
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: NaturalAbstractList, decorators: [{
|
|
3951
3960
|
type: Directive
|
|
3952
3961
|
}], ctorParameters: function () { return [{ type: undefined }, { type: i0.Injector }]; }, propDecorators: { persistSearch: [{
|
|
3953
3962
|
type: Input
|
|
3963
|
+
}], availableColumns: [{
|
|
3964
|
+
type: Input
|
|
3954
3965
|
}], selectedColumns: [{
|
|
3955
3966
|
type: Input
|
|
3956
3967
|
}], forcedVariables: [{
|
|
@@ -5048,51 +5059,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImpor
|
|
|
5048
5059
|
* Public API Surface of natural
|
|
5049
5060
|
*/
|
|
5050
5061
|
|
|
5051
|
-
class NaturalColumnsPickerColumnDirective {
|
|
5052
|
-
constructor(elementRef) {
|
|
5053
|
-
this.elementRef = elementRef;
|
|
5054
|
-
/**
|
|
5055
|
-
* Initial checked state
|
|
5056
|
-
*/
|
|
5057
|
-
this.checked = true;
|
|
5058
|
-
/**
|
|
5059
|
-
* Initial visibility state
|
|
5060
|
-
*/
|
|
5061
|
-
this.hidden = false;
|
|
5062
|
-
/**
|
|
5063
|
-
* Localized label of column, if absent default to key
|
|
5064
|
-
*/
|
|
5065
|
-
this.label = '';
|
|
5066
|
-
}
|
|
5067
|
-
/**
|
|
5068
|
-
* This must be the column key as defined in matColumnDef
|
|
5069
|
-
*/
|
|
5070
|
-
set naturalColumnsPickerColumn(value) {
|
|
5071
|
-
this.key = value;
|
|
5072
|
-
}
|
|
5073
|
-
ngOnInit() {
|
|
5074
|
-
// Default label to key before real label is accessible
|
|
5075
|
-
this.label = this.key;
|
|
5076
|
-
}
|
|
5077
|
-
ngAfterViewInit() {
|
|
5078
|
-
this.label = this.elementRef.nativeElement.textContent ?? '';
|
|
5079
|
-
}
|
|
5080
|
-
}
|
|
5081
|
-
NaturalColumnsPickerColumnDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: NaturalColumnsPickerColumnDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5082
|
-
NaturalColumnsPickerColumnDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", type: NaturalColumnsPickerColumnDirective, selector: "[naturalColumnsPickerColumn]", inputs: { checked: "checked", hidden: "hidden", naturalColumnsPickerColumn: "naturalColumnsPickerColumn" }, ngImport: i0 });
|
|
5083
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: NaturalColumnsPickerColumnDirective, decorators: [{
|
|
5084
|
-
type: Directive,
|
|
5085
|
-
args: [{
|
|
5086
|
-
selector: '[naturalColumnsPickerColumn]',
|
|
5087
|
-
}]
|
|
5088
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { checked: [{
|
|
5089
|
-
type: Input
|
|
5090
|
-
}], hidden: [{
|
|
5091
|
-
type: Input
|
|
5092
|
-
}], naturalColumnsPickerColumn: [{
|
|
5093
|
-
type: Input
|
|
5094
|
-
}] } });
|
|
5095
|
-
|
|
5096
5062
|
const NATURAL_ICONS_CONFIG = new InjectionToken('Configuration for Natural Icons');
|
|
5097
5063
|
const naturalRegistered = Symbol('Natural icon registered');
|
|
5098
5064
|
/**
|
|
@@ -5190,8 +5156,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImpor
|
|
|
5190
5156
|
}] } });
|
|
5191
5157
|
|
|
5192
5158
|
class NaturalColumnsPickerComponent {
|
|
5159
|
+
constructor() {
|
|
5160
|
+
this._availableColumns = [];
|
|
5161
|
+
/**
|
|
5162
|
+
* Emit a list of valid and selected column keys whenever the selection changes
|
|
5163
|
+
*/
|
|
5164
|
+
this.selectionChange = new EventEmitter();
|
|
5165
|
+
/**
|
|
5166
|
+
* Displayed options in the dropdown menu
|
|
5167
|
+
*/
|
|
5168
|
+
this.displayedColumns = [];
|
|
5169
|
+
this.ngUnsubscribe = new Subject();
|
|
5170
|
+
}
|
|
5171
|
+
/**
|
|
5172
|
+
* Set all the columns that are available.
|
|
5173
|
+
*/
|
|
5174
|
+
set availableColumns(columns) {
|
|
5175
|
+
this._availableColumns =
|
|
5176
|
+
columns?.map(column => {
|
|
5177
|
+
return {
|
|
5178
|
+
checked: true,
|
|
5179
|
+
hidden: false,
|
|
5180
|
+
...column,
|
|
5181
|
+
};
|
|
5182
|
+
}) ?? [];
|
|
5183
|
+
}
|
|
5193
5184
|
/**
|
|
5194
|
-
* Set the columns that
|
|
5185
|
+
* Set the columns that we would like to select but might be unavailable.
|
|
5195
5186
|
*
|
|
5196
5187
|
* If a column is unavailable it will be ignored silently. To know what columns were actually applied
|
|
5197
5188
|
* you should use `selectionChange`.
|
|
@@ -5200,65 +5191,52 @@ class NaturalColumnsPickerComponent {
|
|
|
5200
5191
|
*/
|
|
5201
5192
|
set selections(columns) {
|
|
5202
5193
|
this._selections = columns;
|
|
5203
|
-
if (!columns || !this.
|
|
5194
|
+
if (!columns || !this._availableColumns.length) {
|
|
5204
5195
|
return;
|
|
5205
5196
|
}
|
|
5206
|
-
this.
|
|
5207
|
-
col.checked = columns.includes(col.
|
|
5208
|
-
});
|
|
5209
|
-
this.updateColumns();
|
|
5210
|
-
}
|
|
5211
|
-
constructor(changeDetectorRef) {
|
|
5212
|
-
this.changeDetectorRef = changeDetectorRef;
|
|
5213
|
-
/**
|
|
5214
|
-
* Emit a list of valid and selected column keys whenever the selection changes
|
|
5215
|
-
*/
|
|
5216
|
-
this.selectionChange = new EventEmitter();
|
|
5217
|
-
/**
|
|
5218
|
-
* Available columns are defined by options in the template
|
|
5219
|
-
*/
|
|
5220
|
-
this.availableColumns = null;
|
|
5221
|
-
/**
|
|
5222
|
-
* Displayed options in the dropdown menu
|
|
5223
|
-
*/
|
|
5224
|
-
this.displayedColumns = [];
|
|
5225
|
-
this.ngUnsubscribe = new Subject();
|
|
5226
|
-
}
|
|
5227
|
-
ngAfterViewInit() {
|
|
5228
|
-
cancellableTimeout(this.ngUnsubscribe).subscribe(() => {
|
|
5229
|
-
this.initColumns();
|
|
5230
|
-
this.updateColumns();
|
|
5231
|
-
this.changeDetectorRef.detectChanges();
|
|
5197
|
+
this._availableColumns.forEach(col => {
|
|
5198
|
+
col.checked = columns.includes(col.id);
|
|
5232
5199
|
});
|
|
5233
5200
|
}
|
|
5234
5201
|
initColumns() {
|
|
5235
|
-
this.
|
|
5236
|
-
col.checked = this._selections?.length ? this._selections.includes(col.
|
|
5202
|
+
this._availableColumns?.forEach(col => {
|
|
5203
|
+
col.checked = this._selections?.length ? this._selections.includes(col.id) : col.checked;
|
|
5237
5204
|
});
|
|
5238
5205
|
// Show options only for columns that are not hidden
|
|
5239
|
-
this.displayedColumns = this.
|
|
5206
|
+
this.displayedColumns = this._availableColumns.filter(col => !col.hidden) ?? [];
|
|
5240
5207
|
}
|
|
5241
5208
|
updateColumns() {
|
|
5242
|
-
const selectedColumns = this.
|
|
5209
|
+
const selectedColumns = this._availableColumns.filter(col => col.checked).map(col => col.id);
|
|
5243
5210
|
this.selectionChange.emit(selectedColumns);
|
|
5244
5211
|
}
|
|
5245
5212
|
ngOnDestroy() {
|
|
5246
5213
|
this.ngUnsubscribe.next(); // unsubscribe everybody
|
|
5247
5214
|
this.ngUnsubscribe.complete(); // complete the stream, because we will never emit again
|
|
5248
5215
|
}
|
|
5216
|
+
ngOnChanges(changes) {
|
|
5217
|
+
// Unfortunately need a timeout to avoid an ExpressionChangedAfterItHasBeenCheckedError on /state/4989/process
|
|
5218
|
+
cancellableTimeout(this.ngUnsubscribe).subscribe(() => {
|
|
5219
|
+
if (changes.availableColumns) {
|
|
5220
|
+
this.initColumns();
|
|
5221
|
+
this.updateColumns();
|
|
5222
|
+
}
|
|
5223
|
+
else if (changes.selections) {
|
|
5224
|
+
this.updateColumns();
|
|
5225
|
+
}
|
|
5226
|
+
});
|
|
5227
|
+
}
|
|
5249
5228
|
}
|
|
5250
|
-
NaturalColumnsPickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: NaturalColumnsPickerComponent, deps: [
|
|
5251
|
-
NaturalColumnsPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.2", type: NaturalColumnsPickerComponent, selector: "natural-columns-picker", inputs: { selections: "selections" }, outputs: { selectionChange: "selectionChange" },
|
|
5229
|
+
NaturalColumnsPickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: NaturalColumnsPickerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5230
|
+
NaturalColumnsPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.2", type: NaturalColumnsPickerComponent, selector: "natural-columns-picker", inputs: { availableColumns: "availableColumns", selections: "selections" }, outputs: { selectionChange: "selectionChange" }, usesOnChanges: true, ngImport: i0, template: "<div>\n <mat-menu #naturalMenu=\"matMenu\">\n <div\n (click)=\"$event.stopPropagation(); column.checked = !column.checked; updateColumns()\"\n *ngFor=\"let column of displayedColumns\"\n mat-menu-item\n >\n <mat-checkbox (click)=\"$event.stopPropagation()\" (change)=\"updateColumns()\" [(ngModel)]=\"column.checked\">{{\n column.label\n }}</mat-checkbox>\n </div>\n </mat-menu>\n <button [matMenuTriggerFor]=\"naturalMenu\" mat-icon-button i18n-matTooltip matTooltip=\"S\u00E9lectionner les colonnes\">\n <mat-icon naturalIcon=\"view_column\"></mat-icon>\n </button>\n</div>\n", dependencies: [{ kind: "directive", type: i1$2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i3$1.MatMenu, selector: "mat-menu", exportAs: ["matMenu"] }, { kind: "component", type: i3$1.MatMenuItem, selector: "[mat-menu-item]", inputs: ["disabled", "disableRipple", "role"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i3$1.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", exportAs: ["matMenuTrigger"] }, { kind: "component", type: i4.MatIconButton, selector: "button[mat-icon-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "component", type: i6.MatCheckbox, selector: "mat-checkbox", inputs: ["disableRipple", "color", "tabIndex"], exportAs: ["matCheckbox"] }, { kind: "directive", type: NaturalIconDirective, selector: "mat-icon[naturalIcon]", inputs: ["naturalIcon", "size"] }, { kind: "directive", type: i7$1.MatTooltip, selector: "[matTooltip]", exportAs: ["matTooltip"] }, { kind: "component", type: i1$6.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] });
|
|
5252
5231
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: NaturalColumnsPickerComponent, decorators: [{
|
|
5253
5232
|
type: Component,
|
|
5254
|
-
args: [{ selector: 'natural-columns-picker',
|
|
5255
|
-
}],
|
|
5233
|
+
args: [{ selector: 'natural-columns-picker', template: "<div>\n <mat-menu #naturalMenu=\"matMenu\">\n <div\n (click)=\"$event.stopPropagation(); column.checked = !column.checked; updateColumns()\"\n *ngFor=\"let column of displayedColumns\"\n mat-menu-item\n >\n <mat-checkbox (click)=\"$event.stopPropagation()\" (change)=\"updateColumns()\" [(ngModel)]=\"column.checked\">{{\n column.label\n }}</mat-checkbox>\n </div>\n </mat-menu>\n <button [matMenuTriggerFor]=\"naturalMenu\" mat-icon-button i18n-matTooltip matTooltip=\"S\u00E9lectionner les colonnes\">\n <mat-icon naturalIcon=\"view_column\"></mat-icon>\n </button>\n</div>\n" }]
|
|
5234
|
+
}], propDecorators: { availableColumns: [{
|
|
5235
|
+
type: Input
|
|
5236
|
+
}], selections: [{
|
|
5256
5237
|
type: Input
|
|
5257
5238
|
}], selectionChange: [{
|
|
5258
5239
|
type: Output
|
|
5259
|
-
}], availableColumns: [{
|
|
5260
|
-
type: ContentChildren,
|
|
5261
|
-
args: [NaturalColumnsPickerColumnDirective]
|
|
5262
5240
|
}] } });
|
|
5263
5241
|
|
|
5264
5242
|
class NaturalIconModule {
|
|
@@ -5289,14 +5267,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImpor
|
|
|
5289
5267
|
class NaturalColumnsPickerModule {
|
|
5290
5268
|
}
|
|
5291
5269
|
NaturalColumnsPickerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: NaturalColumnsPickerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
5292
|
-
NaturalColumnsPickerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: NaturalColumnsPickerModule, declarations: [
|
|
5270
|
+
NaturalColumnsPickerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: NaturalColumnsPickerModule, declarations: [NaturalColumnsPickerComponent], imports: [CommonModule,
|
|
5293
5271
|
FormsModule,
|
|
5294
5272
|
MatMenuModule,
|
|
5295
5273
|
MatButtonModule,
|
|
5296
5274
|
MatCheckboxModule,
|
|
5297
5275
|
NaturalIconModule,
|
|
5298
5276
|
MatTooltipModule,
|
|
5299
|
-
MatIconModule], exports: [
|
|
5277
|
+
MatIconModule], exports: [NaturalColumnsPickerComponent] });
|
|
5300
5278
|
NaturalColumnsPickerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: NaturalColumnsPickerModule, imports: [CommonModule,
|
|
5301
5279
|
FormsModule,
|
|
5302
5280
|
MatMenuModule,
|
|
@@ -5308,7 +5286,7 @@ NaturalColumnsPickerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.
|
|
|
5308
5286
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: NaturalColumnsPickerModule, decorators: [{
|
|
5309
5287
|
type: NgModule,
|
|
5310
5288
|
args: [{
|
|
5311
|
-
declarations: [
|
|
5289
|
+
declarations: [NaturalColumnsPickerComponent],
|
|
5312
5290
|
imports: [
|
|
5313
5291
|
CommonModule,
|
|
5314
5292
|
FormsModule,
|
|
@@ -5319,7 +5297,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImpor
|
|
|
5319
5297
|
MatTooltipModule,
|
|
5320
5298
|
MatIconModule,
|
|
5321
5299
|
],
|
|
5322
|
-
exports: [
|
|
5300
|
+
exports: [NaturalColumnsPickerComponent],
|
|
5323
5301
|
}]
|
|
5324
5302
|
}] });
|
|
5325
5303
|
|
|
@@ -11344,5 +11322,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImpor
|
|
|
11344
11322
|
* Generated bundle index. Do not edit.
|
|
11345
11323
|
*/
|
|
11346
11324
|
|
|
11347
|
-
export { AvatarComponent, AvatarService, FileComponent, LOCAL_STORAGE, NATURAL_DROPDOWN_DATA, NATURAL_ICONS_CONFIG, NATURAL_PERSISTENCE_VALIDATOR, NATURAL_SEO_CONFIG, NaturalAbstractController, NaturalAbstractDetail, NaturalAbstractEditableList, NaturalAbstractList, NaturalAbstractModelService, NaturalAbstractNavigableList, NaturalAbstractPanel, NaturalAlertModule, NaturalAlertService, NaturalAvatarModule, NaturalCapitalizePipe,
|
|
11325
|
+
export { AvatarComponent, AvatarService, FileComponent, LOCAL_STORAGE, NATURAL_DROPDOWN_DATA, NATURAL_ICONS_CONFIG, NATURAL_PERSISTENCE_VALIDATOR, NATURAL_SEO_CONFIG, NaturalAbstractController, NaturalAbstractDetail, NaturalAbstractEditableList, NaturalAbstractList, NaturalAbstractModelService, NaturalAbstractNavigableList, NaturalAbstractPanel, NaturalAlertModule, NaturalAlertService, NaturalAvatarModule, NaturalCapitalizePipe, NaturalColumnsPickerComponent, NaturalColumnsPickerModule, NaturalCommonModule, NaturalConfirmComponent, NaturalDataSource, NaturalDebounceService, NaturalDetailHeaderComponent, NaturalDetailHeaderModule, NaturalDialogTriggerComponent, NaturalDialogTriggerModule, NaturalDropdownComponentsModule, NaturalDropdownRef, NaturalEllipsisPipe, NaturalEnumPipe, NaturalEnumService, NaturalErrorHandler, NaturalErrorModule, NaturalFileDropDirective, NaturalFileModule, NaturalFileSelectDirective, NaturalFileService, NaturalFixedButtonComponent, NaturalFixedButtonDetailComponent, NaturalFixedButtonDetailModule, NaturalFixedButtonModule, NaturalHierarchicSelectorComponent, NaturalHierarchicSelectorDialogComponent, NaturalHierarchicSelectorDialogService, NaturalHierarchicSelectorModule, NaturalHierarchicSelectorService, NaturalHttpPrefixDirective, NaturalIconDirective, NaturalIconModule, NaturalLinkMutationService, NaturalLinkableTabDirective, NaturalLoggerConfigExtra, NaturalLoggerConfigUrl, NaturalMatomoModule, NaturalMatomoService, NaturalMemoryStorage, NaturalPanelsComponent, NaturalPanelsModule, NaturalPanelsService, NaturalPersistenceService, NaturalQueryVariablesManager, NaturalRelationsComponent, NaturalRelationsModule, NaturalSearchComponent, NaturalSearchModule, NaturalSelectComponent, NaturalSelectEnumComponent, NaturalSelectHierarchicComponent, NaturalSelectModule, NaturalSeoService, NaturalSidenavComponent, NaturalSidenavContainerComponent, NaturalSidenavContentComponent, NaturalSidenavModule, NaturalSidenavService, NaturalSidenavStackService, NaturalSrcDensityDirective, NaturalStampComponent, NaturalStampModule, NaturalSwissDatePipe, NaturalSwissParsingDateAdapter, NaturalTableButtonComponent, NaturalTableButtonModule, NaturalTimeAgoPipe, PanelsHooksConfig, SESSION_STORAGE, SortingOrder, TypeDateComponent, TypeDateRangeComponent, TypeHierarchicSelectorComponent, TypeNaturalSelectComponent, TypeNumberComponent, TypeSelectComponent, TypeTextComponent, available, cancellableTimeout, cleanSameValues, collectErrors, copyToClipboard, debug, decimal, deepFreeze, deliverableEmail, ensureHttpPrefix, fallbackIfNoOpenedPanels, formatIsoDate, formatIsoDateTime, fromUrl, getForegroundColor, hasFilesAndProcessDate, ifValid, integer, localStorageFactory, localStorageProvider, lowerCaseFirstLetter, makePlural, memoryLocalStorageProvider, memorySessionStorageProvider, mergeOverrideArray, money, naturalPanelsUrlMatcher, relationsToIds, replaceObjectKeepingReference, replaceOperatorByField, replaceOperatorByName, sessionStorageFactory, sessionStorageProvider, toGraphQLDoctrineFilter, toNavigationParameters, toUrl, unique, upperCaseFirstLetter, urlValidator, validTlds, validateAllFormControls, wrapLike };
|
|
11348
11326
|
//# sourceMappingURL=ecodev-natural.mjs.map
|