@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';
|
|
@@ -3589,11 +3589,15 @@ class NaturalAbstractList extends NaturalAbstractPanel {
|
|
|
3589
3589
|
*/
|
|
3590
3590
|
this.persistSearch = true;
|
|
3591
3591
|
/**
|
|
3592
|
-
*
|
|
3592
|
+
* List of columns that are available to the end-user to select from, via `<natural-columns-picker>`
|
|
3593
|
+
*/
|
|
3594
|
+
this.availableColumns = [];
|
|
3595
|
+
/**
|
|
3596
|
+
* Columns list after interaction with `<natural-columns-picker>`
|
|
3593
3597
|
*/
|
|
3594
3598
|
this.columnsForTable = [];
|
|
3595
3599
|
/**
|
|
3596
|
-
* The default column selection that automatically happened after
|
|
3600
|
+
* The default column selection that automatically happened after `<natural-columns-picker>` initialization
|
|
3597
3601
|
*/
|
|
3598
3602
|
this.defaultSelectedColumns = null;
|
|
3599
3603
|
/**
|
|
@@ -3849,6 +3853,7 @@ class NaturalAbstractList extends NaturalAbstractPanel {
|
|
|
3849
3853
|
* Uses data provided by router such as:
|
|
3850
3854
|
*
|
|
3851
3855
|
* - `route.data.forcedVariables`
|
|
3856
|
+
* - `route.data.availableColumns`
|
|
3852
3857
|
* - `route.data.selectedColumns`
|
|
3853
3858
|
*/
|
|
3854
3859
|
initFromRoute() {
|
|
@@ -3856,6 +3861,10 @@ class NaturalAbstractList extends NaturalAbstractPanel {
|
|
|
3856
3861
|
if (this.route.snapshot.data.forcedVariables) {
|
|
3857
3862
|
this.applyForcedVariables(this.route.snapshot.data.forcedVariables);
|
|
3858
3863
|
}
|
|
3864
|
+
// Available columns
|
|
3865
|
+
if (this.route.snapshot.data.availableColumns) {
|
|
3866
|
+
this.availableColumns = this.route.snapshot.data.availableColumns;
|
|
3867
|
+
}
|
|
3859
3868
|
// Columns
|
|
3860
3869
|
if (this.route.snapshot.data.selectedColumns) {
|
|
3861
3870
|
this.selectedColumns = this.route.snapshot.data.selectedColumns;
|
|
@@ -3949,7 +3958,7 @@ class NaturalAbstractList extends NaturalAbstractPanel {
|
|
|
3949
3958
|
if (!this.persistSearch || this.isPanel) {
|
|
3950
3959
|
return;
|
|
3951
3960
|
}
|
|
3952
|
-
// The first selection we receive is the default one made by
|
|
3961
|
+
// The first selection we receive is the default one made by `<natural-columns-picker>`
|
|
3953
3962
|
if (!this.defaultSelectedColumns) {
|
|
3954
3963
|
this.defaultSelectedColumns = columns;
|
|
3955
3964
|
}
|
|
@@ -3961,11 +3970,13 @@ class NaturalAbstractList extends NaturalAbstractPanel {
|
|
|
3961
3970
|
}
|
|
3962
3971
|
}
|
|
3963
3972
|
NaturalAbstractList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: NaturalAbstractList, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive });
|
|
3964
|
-
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 });
|
|
3973
|
+
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 });
|
|
3965
3974
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: NaturalAbstractList, decorators: [{
|
|
3966
3975
|
type: Directive
|
|
3967
3976
|
}], ctorParameters: function () { return [{ type: undefined }, { type: i0.Injector }]; }, propDecorators: { persistSearch: [{
|
|
3968
3977
|
type: Input
|
|
3978
|
+
}], availableColumns: [{
|
|
3979
|
+
type: Input
|
|
3969
3980
|
}], selectedColumns: [{
|
|
3970
3981
|
type: Input
|
|
3971
3982
|
}], forcedVariables: [{
|
|
@@ -5062,52 +5073,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImpor
|
|
|
5062
5073
|
* Public API Surface of natural
|
|
5063
5074
|
*/
|
|
5064
5075
|
|
|
5065
|
-
class NaturalColumnsPickerColumnDirective {
|
|
5066
|
-
constructor(elementRef) {
|
|
5067
|
-
this.elementRef = elementRef;
|
|
5068
|
-
/**
|
|
5069
|
-
* Initial checked state
|
|
5070
|
-
*/
|
|
5071
|
-
this.checked = true;
|
|
5072
|
-
/**
|
|
5073
|
-
* Initial visibility state
|
|
5074
|
-
*/
|
|
5075
|
-
this.hidden = false;
|
|
5076
|
-
/**
|
|
5077
|
-
* Localized label of column, if absent default to key
|
|
5078
|
-
*/
|
|
5079
|
-
this.label = '';
|
|
5080
|
-
}
|
|
5081
|
-
/**
|
|
5082
|
-
* This must be the column key as defined in matColumnDef
|
|
5083
|
-
*/
|
|
5084
|
-
set naturalColumnsPickerColumn(value) {
|
|
5085
|
-
this.key = value;
|
|
5086
|
-
}
|
|
5087
|
-
ngOnInit() {
|
|
5088
|
-
// Default label to key before real label is accessible
|
|
5089
|
-
this.label = this.key;
|
|
5090
|
-
}
|
|
5091
|
-
ngAfterViewInit() {
|
|
5092
|
-
var _a;
|
|
5093
|
-
this.label = (_a = this.elementRef.nativeElement.textContent) !== null && _a !== void 0 ? _a : '';
|
|
5094
|
-
}
|
|
5095
|
-
}
|
|
5096
|
-
NaturalColumnsPickerColumnDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: NaturalColumnsPickerColumnDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5097
|
-
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 });
|
|
5098
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: NaturalColumnsPickerColumnDirective, decorators: [{
|
|
5099
|
-
type: Directive,
|
|
5100
|
-
args: [{
|
|
5101
|
-
selector: '[naturalColumnsPickerColumn]',
|
|
5102
|
-
}]
|
|
5103
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { checked: [{
|
|
5104
|
-
type: Input
|
|
5105
|
-
}], hidden: [{
|
|
5106
|
-
type: Input
|
|
5107
|
-
}], naturalColumnsPickerColumn: [{
|
|
5108
|
-
type: Input
|
|
5109
|
-
}] } });
|
|
5110
|
-
|
|
5111
5076
|
const NATURAL_ICONS_CONFIG = new InjectionToken('Configuration for Natural Icons');
|
|
5112
5077
|
const naturalRegistered = Symbol('Natural icon registered');
|
|
5113
5078
|
/**
|
|
@@ -5205,8 +5170,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImpor
|
|
|
5205
5170
|
}] } });
|
|
5206
5171
|
|
|
5207
5172
|
class NaturalColumnsPickerComponent {
|
|
5173
|
+
constructor() {
|
|
5174
|
+
this._availableColumns = [];
|
|
5175
|
+
/**
|
|
5176
|
+
* Emit a list of valid and selected column keys whenever the selection changes
|
|
5177
|
+
*/
|
|
5178
|
+
this.selectionChange = new EventEmitter();
|
|
5179
|
+
/**
|
|
5180
|
+
* Displayed options in the dropdown menu
|
|
5181
|
+
*/
|
|
5182
|
+
this.displayedColumns = [];
|
|
5183
|
+
this.ngUnsubscribe = new Subject();
|
|
5184
|
+
}
|
|
5208
5185
|
/**
|
|
5209
|
-
* Set the columns that are
|
|
5186
|
+
* Set all the columns that are available.
|
|
5187
|
+
*/
|
|
5188
|
+
set availableColumns(columns) {
|
|
5189
|
+
var _a;
|
|
5190
|
+
this._availableColumns =
|
|
5191
|
+
(_a = columns === null || columns === void 0 ? void 0 : columns.map(column => {
|
|
5192
|
+
return Object.assign({ checked: true, hidden: false }, column);
|
|
5193
|
+
})) !== null && _a !== void 0 ? _a : [];
|
|
5194
|
+
}
|
|
5195
|
+
/**
|
|
5196
|
+
* Set the columns that we would like to select but might be unavailable.
|
|
5210
5197
|
*
|
|
5211
5198
|
* If a column is unavailable it will be ignored silently. To know what columns were actually applied
|
|
5212
5199
|
* you should use `selectionChange`.
|
|
@@ -5214,70 +5201,55 @@ class NaturalColumnsPickerComponent {
|
|
|
5214
5201
|
* It is often set once on component initialization, but it can also be set again later in the lifespan of the component.
|
|
5215
5202
|
*/
|
|
5216
5203
|
set selections(columns) {
|
|
5217
|
-
var _a;
|
|
5218
5204
|
this._selections = columns;
|
|
5219
|
-
if (!columns || !this.
|
|
5205
|
+
if (!columns || !this._availableColumns.length) {
|
|
5220
5206
|
return;
|
|
5221
5207
|
}
|
|
5222
|
-
|
|
5223
|
-
col.checked = columns.includes(col.
|
|
5224
|
-
});
|
|
5225
|
-
this.updateColumns();
|
|
5226
|
-
}
|
|
5227
|
-
constructor(changeDetectorRef) {
|
|
5228
|
-
this.changeDetectorRef = changeDetectorRef;
|
|
5229
|
-
/**
|
|
5230
|
-
* Emit a list of valid and selected column keys whenever the selection changes
|
|
5231
|
-
*/
|
|
5232
|
-
this.selectionChange = new EventEmitter();
|
|
5233
|
-
/**
|
|
5234
|
-
* Available columns are defined by options in the template
|
|
5235
|
-
*/
|
|
5236
|
-
this.availableColumns = null;
|
|
5237
|
-
/**
|
|
5238
|
-
* Displayed options in the dropdown menu
|
|
5239
|
-
*/
|
|
5240
|
-
this.displayedColumns = [];
|
|
5241
|
-
this.ngUnsubscribe = new Subject();
|
|
5242
|
-
}
|
|
5243
|
-
ngAfterViewInit() {
|
|
5244
|
-
cancellableTimeout(this.ngUnsubscribe).subscribe(() => {
|
|
5245
|
-
this.initColumns();
|
|
5246
|
-
this.updateColumns();
|
|
5247
|
-
this.changeDetectorRef.detectChanges();
|
|
5208
|
+
this._availableColumns.forEach(col => {
|
|
5209
|
+
col.checked = columns.includes(col.id);
|
|
5248
5210
|
});
|
|
5249
5211
|
}
|
|
5250
5212
|
initColumns() {
|
|
5251
|
-
var _a, _b
|
|
5252
|
-
(_a = this.
|
|
5213
|
+
var _a, _b;
|
|
5214
|
+
(_a = this._availableColumns) === null || _a === void 0 ? void 0 : _a.forEach(col => {
|
|
5253
5215
|
var _a;
|
|
5254
|
-
col.checked = ((_a = this._selections) === null || _a === void 0 ? void 0 : _a.length) ? this._selections.includes(col.
|
|
5216
|
+
col.checked = ((_a = this._selections) === null || _a === void 0 ? void 0 : _a.length) ? this._selections.includes(col.id) : col.checked;
|
|
5255
5217
|
});
|
|
5256
5218
|
// Show options only for columns that are not hidden
|
|
5257
|
-
this.displayedColumns = (
|
|
5219
|
+
this.displayedColumns = (_b = this._availableColumns.filter(col => !col.hidden)) !== null && _b !== void 0 ? _b : [];
|
|
5258
5220
|
}
|
|
5259
5221
|
updateColumns() {
|
|
5260
|
-
|
|
5261
|
-
const selectedColumns = (_a = this.availableColumns) === null || _a === void 0 ? void 0 : _a.filter(col => col.checked).map(col => col.key);
|
|
5222
|
+
const selectedColumns = this._availableColumns.filter(col => col.checked).map(col => col.id);
|
|
5262
5223
|
this.selectionChange.emit(selectedColumns);
|
|
5263
5224
|
}
|
|
5264
5225
|
ngOnDestroy() {
|
|
5265
5226
|
this.ngUnsubscribe.next(); // unsubscribe everybody
|
|
5266
5227
|
this.ngUnsubscribe.complete(); // complete the stream, because we will never emit again
|
|
5267
5228
|
}
|
|
5229
|
+
ngOnChanges(changes) {
|
|
5230
|
+
// Unfortunately need a timeout to avoid an ExpressionChangedAfterItHasBeenCheckedError on /state/4989/process
|
|
5231
|
+
cancellableTimeout(this.ngUnsubscribe).subscribe(() => {
|
|
5232
|
+
if (changes.availableColumns) {
|
|
5233
|
+
this.initColumns();
|
|
5234
|
+
this.updateColumns();
|
|
5235
|
+
}
|
|
5236
|
+
else if (changes.selections) {
|
|
5237
|
+
this.updateColumns();
|
|
5238
|
+
}
|
|
5239
|
+
});
|
|
5240
|
+
}
|
|
5268
5241
|
}
|
|
5269
|
-
NaturalColumnsPickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: NaturalColumnsPickerComponent, deps: [
|
|
5270
|
-
NaturalColumnsPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.2", type: NaturalColumnsPickerComponent, selector: "natural-columns-picker", inputs: { selections: "selections" }, outputs: { selectionChange: "selectionChange" },
|
|
5242
|
+
NaturalColumnsPickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: NaturalColumnsPickerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5243
|
+
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"] }] });
|
|
5271
5244
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: NaturalColumnsPickerComponent, decorators: [{
|
|
5272
5245
|
type: Component,
|
|
5273
|
-
args: [{ selector: 'natural-columns-picker',
|
|
5274
|
-
}],
|
|
5246
|
+
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" }]
|
|
5247
|
+
}], propDecorators: { availableColumns: [{
|
|
5248
|
+
type: Input
|
|
5249
|
+
}], selections: [{
|
|
5275
5250
|
type: Input
|
|
5276
5251
|
}], selectionChange: [{
|
|
5277
5252
|
type: Output
|
|
5278
|
-
}], availableColumns: [{
|
|
5279
|
-
type: ContentChildren,
|
|
5280
|
-
args: [NaturalColumnsPickerColumnDirective]
|
|
5281
5253
|
}] } });
|
|
5282
5254
|
|
|
5283
5255
|
class NaturalIconModule {
|
|
@@ -5308,14 +5280,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImpor
|
|
|
5308
5280
|
class NaturalColumnsPickerModule {
|
|
5309
5281
|
}
|
|
5310
5282
|
NaturalColumnsPickerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: NaturalColumnsPickerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
5311
|
-
NaturalColumnsPickerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: NaturalColumnsPickerModule, declarations: [
|
|
5283
|
+
NaturalColumnsPickerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: NaturalColumnsPickerModule, declarations: [NaturalColumnsPickerComponent], imports: [CommonModule,
|
|
5312
5284
|
FormsModule,
|
|
5313
5285
|
MatMenuModule,
|
|
5314
5286
|
MatButtonModule,
|
|
5315
5287
|
MatCheckboxModule,
|
|
5316
5288
|
NaturalIconModule,
|
|
5317
5289
|
MatTooltipModule,
|
|
5318
|
-
MatIconModule], exports: [
|
|
5290
|
+
MatIconModule], exports: [NaturalColumnsPickerComponent] });
|
|
5319
5291
|
NaturalColumnsPickerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: NaturalColumnsPickerModule, imports: [CommonModule,
|
|
5320
5292
|
FormsModule,
|
|
5321
5293
|
MatMenuModule,
|
|
@@ -5327,7 +5299,7 @@ NaturalColumnsPickerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.
|
|
|
5327
5299
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: NaturalColumnsPickerModule, decorators: [{
|
|
5328
5300
|
type: NgModule,
|
|
5329
5301
|
args: [{
|
|
5330
|
-
declarations: [
|
|
5302
|
+
declarations: [NaturalColumnsPickerComponent],
|
|
5331
5303
|
imports: [
|
|
5332
5304
|
CommonModule,
|
|
5333
5305
|
FormsModule,
|
|
@@ -5338,7 +5310,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImpor
|
|
|
5338
5310
|
MatTooltipModule,
|
|
5339
5311
|
MatIconModule,
|
|
5340
5312
|
],
|
|
5341
|
-
exports: [
|
|
5313
|
+
exports: [NaturalColumnsPickerComponent],
|
|
5342
5314
|
}]
|
|
5343
5315
|
}] });
|
|
5344
5316
|
|
|
@@ -11422,5 +11394,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImpor
|
|
|
11422
11394
|
* Generated bundle index. Do not edit.
|
|
11423
11395
|
*/
|
|
11424
11396
|
|
|
11425
|
-
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,
|
|
11397
|
+
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 };
|
|
11426
11398
|
//# sourceMappingURL=ecodev-natural.mjs.map
|