@ecodev/natural 45.1.1 → 45.2.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/modules/common/common-module.mjs +11 -7
- package/esm2020/lib/modules/common/pipes/time-ago.pipe.mjs +138 -0
- package/esm2020/lib/modules/common/public-api.mjs +2 -1
- package/esm2020/lib/modules/hierarchic-selector/classes/model-node.mjs +1 -1
- package/esm2020/lib/modules/stamp/stamp-module.module.mjs +9 -7
- package/esm2020/lib/modules/stamp/stamp.component.mjs +11 -3
- package/esm2020/lib/types/types.mjs +1 -1
- package/fesm2015/ecodev-natural.mjs +168 -18
- package/fesm2015/ecodev-natural.mjs.map +1 -1
- package/fesm2020/ecodev-natural.mjs +164 -18
- package/fesm2020/ecodev-natural.mjs.map +1 -1
- package/lib/modules/common/common-module.d.ts +9 -8
- package/lib/modules/common/pipes/time-ago.pipe.d.ts +19 -0
- package/lib/modules/common/public-api.d.ts +1 -0
- package/lib/modules/hierarchic-selector/classes/model-node.d.ts +0 -1
- package/lib/modules/stamp/stamp-module.module.d.ts +2 -1
- package/lib/modules/stamp/stamp.component.d.ts +1 -0
- package/lib/types/types.d.ts +2 -0
- package/package.json +1 -1
|
@@ -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, Input, NgModule, EventEmitter, ChangeDetectionStrategy, Output, ContentChildren, Pipe, TemplateRef, ViewEncapsulation, ViewChild, Injector,
|
|
3
|
+
import { Directive, Component, Inject, Injectable, HostBinding, HostListener, InjectionToken, Input, NgModule, EventEmitter, ChangeDetectionStrategy, Output, ContentChildren, Pipe, Optional, TemplateRef, ViewEncapsulation, ViewChild, Injector, Self, ContentChild, createEnvironmentInjector, createComponent, PLATFORM_ID, ErrorHandler } from '@angular/core';
|
|
4
4
|
import { Subject, BehaviorSubject, of, timer, switchMap as switchMap$1, endWith, last, EMPTY, Observable, first as first$1, combineLatest, ReplaySubject, debounceTime as debounceTime$1, raceWith, take as take$1, mergeMap, shareReplay as shareReplay$1, catchError, forkJoin, map as map$1, merge as merge$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, UntypedFormControl, FormsModule, FormControl, FormControlDirective, FormControlName, ReactiveFormsModule } from '@angular/forms';
|
|
@@ -4969,14 +4969,154 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImpor
|
|
|
4969
4969
|
type: Input
|
|
4970
4970
|
}] } });
|
|
4971
4971
|
|
|
4972
|
-
|
|
4972
|
+
function isDate(value) {
|
|
4973
|
+
return value instanceof Date && !isNaN(value.valueOf());
|
|
4974
|
+
}
|
|
4975
|
+
/**
|
|
4976
|
+
* Returns a string to approximately describe the date.
|
|
4977
|
+
*
|
|
4978
|
+
* Eg:
|
|
4979
|
+
*
|
|
4980
|
+
* - "il y a quelques minutes"
|
|
4981
|
+
* - "dans 3 jours"
|
|
4982
|
+
* - "dans 3 ans"
|
|
4983
|
+
*/
|
|
4984
|
+
class NaturalTimeAgoPipe {
|
|
4985
|
+
constructor(fakedNow = null) {
|
|
4986
|
+
this.fakedNow = fakedNow;
|
|
4987
|
+
}
|
|
4988
|
+
getNow() {
|
|
4989
|
+
var _a;
|
|
4990
|
+
return (_a = this.fakedNow) !== null && _a !== void 0 ? _a : Date.now();
|
|
4991
|
+
}
|
|
4992
|
+
transform(date) {
|
|
4993
|
+
if (!date) {
|
|
4994
|
+
return '';
|
|
4995
|
+
}
|
|
4996
|
+
const stamp = isDate(date) ? date.getTime() : Date.parse(date);
|
|
4997
|
+
const now = this.getNow();
|
|
4998
|
+
const $seconds = (stamp - now) / 1000;
|
|
4999
|
+
const minutes = $seconds / 60;
|
|
5000
|
+
const hours = minutes / 60;
|
|
5001
|
+
const days = hours / 24;
|
|
5002
|
+
const weeks = days / 7;
|
|
5003
|
+
const months = days / 31;
|
|
5004
|
+
const years = days / 365;
|
|
5005
|
+
// Find out the best unit to use for display
|
|
5006
|
+
if (years <= -2) {
|
|
5007
|
+
const value = Math.round(Math.abs(years));
|
|
5008
|
+
return $localize `il y a ${value} ans`;
|
|
5009
|
+
}
|
|
5010
|
+
else if (years <= -1) {
|
|
5011
|
+
return $localize `il y a un an`;
|
|
5012
|
+
}
|
|
5013
|
+
else if (months <= -2) {
|
|
5014
|
+
const value = Math.round(Math.abs(months));
|
|
5015
|
+
return $localize `il y a ${value} mois`;
|
|
5016
|
+
}
|
|
5017
|
+
else if (months <= -1) {
|
|
5018
|
+
return $localize `il y a un mois`;
|
|
5019
|
+
}
|
|
5020
|
+
else if (weeks <= -2) {
|
|
5021
|
+
const value = Math.round(Math.abs(weeks));
|
|
5022
|
+
return $localize `il y a ${value} semaines`;
|
|
5023
|
+
}
|
|
5024
|
+
else if (weeks <= -1) {
|
|
5025
|
+
return $localize `il y a une semaine`;
|
|
5026
|
+
}
|
|
5027
|
+
else if (days <= -2) {
|
|
5028
|
+
const value = Math.round(Math.abs(days));
|
|
5029
|
+
return $localize `il y a ${value} jours`;
|
|
5030
|
+
}
|
|
5031
|
+
else if (days <= -1) {
|
|
5032
|
+
return $localize `il y a un jour`;
|
|
5033
|
+
}
|
|
5034
|
+
else if (hours <= -2) {
|
|
5035
|
+
const value = Math.round(Math.abs(hours));
|
|
5036
|
+
return $localize `il y a ${value} heures`;
|
|
5037
|
+
}
|
|
5038
|
+
else if (hours <= -1) {
|
|
5039
|
+
return $localize `il y a une heure`;
|
|
5040
|
+
}
|
|
5041
|
+
else if (minutes <= -5) {
|
|
5042
|
+
const value = Math.round(Math.abs(minutes));
|
|
5043
|
+
return $localize `il y a ${value} minutes`;
|
|
5044
|
+
}
|
|
5045
|
+
else if (minutes <= 0) {
|
|
5046
|
+
return $localize `il y a quelques minutes`;
|
|
5047
|
+
}
|
|
5048
|
+
else if (years > 2) {
|
|
5049
|
+
const value = Math.round(years);
|
|
5050
|
+
return $localize `dans ${value} ans`;
|
|
5051
|
+
}
|
|
5052
|
+
else if (years > 1) {
|
|
5053
|
+
return $localize `dans un an`;
|
|
5054
|
+
}
|
|
5055
|
+
else if (months > 2) {
|
|
5056
|
+
const value = Math.round(months);
|
|
5057
|
+
return $localize `dans ${value} mois`;
|
|
5058
|
+
}
|
|
5059
|
+
else if (months > 1) {
|
|
5060
|
+
return $localize `dans un mois`;
|
|
5061
|
+
}
|
|
5062
|
+
else if (weeks > 2) {
|
|
5063
|
+
const value = Math.round(weeks);
|
|
5064
|
+
return $localize `dans ${value} semaines`;
|
|
5065
|
+
}
|
|
5066
|
+
else if (weeks > 1) {
|
|
5067
|
+
return $localize `dans une semaine`;
|
|
5068
|
+
}
|
|
5069
|
+
else if (days > 2) {
|
|
5070
|
+
const value = Math.round(days);
|
|
5071
|
+
return $localize `dans ${value} jours`;
|
|
5072
|
+
}
|
|
5073
|
+
else if (days > 1) {
|
|
5074
|
+
return $localize `dans un jour`;
|
|
5075
|
+
}
|
|
5076
|
+
else if (hours > 2) {
|
|
5077
|
+
const value = Math.round(hours);
|
|
5078
|
+
return $localize `dans ${value} heures`;
|
|
5079
|
+
}
|
|
5080
|
+
else if (hours > 1) {
|
|
5081
|
+
return $localize `dans une heure`;
|
|
5082
|
+
}
|
|
5083
|
+
else if (minutes > 5) {
|
|
5084
|
+
const value = Math.round(minutes);
|
|
5085
|
+
return $localize `dans ${value} minutes`;
|
|
5086
|
+
}
|
|
5087
|
+
else if (minutes > 0) {
|
|
5088
|
+
return $localize `dans quelques minutes`;
|
|
5089
|
+
}
|
|
5090
|
+
else {
|
|
5091
|
+
throw new Error('Time travelling just happened');
|
|
5092
|
+
}
|
|
5093
|
+
}
|
|
5094
|
+
}
|
|
5095
|
+
NaturalTimeAgoPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: NaturalTimeAgoPipe, deps: [{ token: 'SHOULD_NEVER_BE_INJECTED', optional: true }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
5096
|
+
NaturalTimeAgoPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.1", ngImport: i0, type: NaturalTimeAgoPipe, name: "timeAgo" });
|
|
5097
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: NaturalTimeAgoPipe, decorators: [{
|
|
5098
|
+
type: Pipe,
|
|
5099
|
+
args: [{
|
|
5100
|
+
name: 'timeAgo',
|
|
5101
|
+
}]
|
|
5102
|
+
}], ctorParameters: function () {
|
|
5103
|
+
return [{ type: undefined, decorators: [{
|
|
5104
|
+
type: Optional
|
|
5105
|
+
}, {
|
|
5106
|
+
type: Inject,
|
|
5107
|
+
args: ['SHOULD_NEVER_BE_INJECTED']
|
|
5108
|
+
}] }];
|
|
5109
|
+
} });
|
|
5110
|
+
|
|
5111
|
+
const declarationsToExport$1 = [
|
|
4973
5112
|
NaturalCapitalizePipe,
|
|
4974
5113
|
NaturalEllipsisPipe,
|
|
4975
5114
|
NaturalEnumPipe,
|
|
4976
|
-
NaturalSwissDatePipe,
|
|
4977
5115
|
NaturalHttpPrefixDirective,
|
|
4978
|
-
NaturalSrcDensityDirective,
|
|
4979
5116
|
NaturalLinkableTabDirective,
|
|
5117
|
+
NaturalSrcDensityDirective,
|
|
5118
|
+
NaturalSwissDatePipe,
|
|
5119
|
+
NaturalTimeAgoPipe,
|
|
4980
5120
|
];
|
|
4981
5121
|
class NaturalCommonModule {
|
|
4982
5122
|
}
|
|
@@ -4984,23 +5124,25 @@ NaturalCommonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", vers
|
|
|
4984
5124
|
NaturalCommonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.1.1", ngImport: i0, type: NaturalCommonModule, declarations: [NaturalCapitalizePipe,
|
|
4985
5125
|
NaturalEllipsisPipe,
|
|
4986
5126
|
NaturalEnumPipe,
|
|
4987
|
-
NaturalSwissDatePipe,
|
|
4988
5127
|
NaturalHttpPrefixDirective,
|
|
5128
|
+
NaturalLinkableTabDirective,
|
|
4989
5129
|
NaturalSrcDensityDirective,
|
|
4990
|
-
|
|
5130
|
+
NaturalSwissDatePipe,
|
|
5131
|
+
NaturalTimeAgoPipe], imports: [CommonModule, MatFormFieldModule, MatInputModule, MatSelectModule], exports: [NaturalCapitalizePipe,
|
|
4991
5132
|
NaturalEllipsisPipe,
|
|
4992
5133
|
NaturalEnumPipe,
|
|
4993
|
-
NaturalSwissDatePipe,
|
|
4994
5134
|
NaturalHttpPrefixDirective,
|
|
5135
|
+
NaturalLinkableTabDirective,
|
|
4995
5136
|
NaturalSrcDensityDirective,
|
|
4996
|
-
|
|
5137
|
+
NaturalSwissDatePipe,
|
|
5138
|
+
NaturalTimeAgoPipe] });
|
|
4997
5139
|
NaturalCommonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: NaturalCommonModule, providers: [sessionStorageProvider, localStorageProvider], imports: [CommonModule, MatFormFieldModule, MatInputModule, MatSelectModule] });
|
|
4998
5140
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: NaturalCommonModule, decorators: [{
|
|
4999
5141
|
type: NgModule,
|
|
5000
5142
|
args: [{
|
|
5001
|
-
declarations: [...declarationsToExport],
|
|
5143
|
+
declarations: [...declarationsToExport$1],
|
|
5002
5144
|
imports: [CommonModule, MatFormFieldModule, MatInputModule, MatSelectModule],
|
|
5003
|
-
exports: [...declarationsToExport],
|
|
5145
|
+
exports: [...declarationsToExport$1],
|
|
5004
5146
|
providers: [sessionStorageProvider, localStorageProvider],
|
|
5005
5147
|
}]
|
|
5006
5148
|
}] });
|
|
@@ -10049,27 +10191,35 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImpor
|
|
|
10049
10191
|
*/
|
|
10050
10192
|
|
|
10051
10193
|
class NaturalStampComponent {
|
|
10194
|
+
showUpdate() {
|
|
10195
|
+
var _a, _b;
|
|
10196
|
+
const same = ((_a = this.item.updater) === null || _a === void 0 ? void 0 : _a.id) === ((_b = this.item.creator) === null || _b === void 0 ? void 0 : _b.id) &&
|
|
10197
|
+
this.item.updateDate &&
|
|
10198
|
+
this.item.updateDate === this.item.creationDate;
|
|
10199
|
+
return !same && (!!this.item.updateDate || !!this.item.updater);
|
|
10200
|
+
}
|
|
10052
10201
|
}
|
|
10053
10202
|
NaturalStampComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: NaturalStampComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
10054
|
-
NaturalStampComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: NaturalStampComponent, selector: "natural-stamp", inputs: { item: "item" }, ngImport: i0, template: "<ng-container *ngIf=\"item\">\n <div *ngIf=\"item.creationDate || item.creator\">\n <span class=\"mat-body-2\" i18n>Cr\u00E9ation</span>\n :\n <span *ngIf=\"item.creator\">{{ item.creator.fullName || item.creator.name }}</span>\n <span *ngIf=\"item.creator && item.creationDate\">, </span>\n <span *ngIf=\"item.creationDate\"
|
|
10203
|
+
NaturalStampComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: NaturalStampComponent, selector: "natural-stamp", inputs: { item: "item" }, ngImport: i0, template: "<ng-container *ngIf=\"item\">\n <div *ngIf=\"item.creationDate || item.creator\">\n <span class=\"mat-body-2\" i18n>Cr\u00E9ation</span>\n :\n <span *ngIf=\"item.creator\">{{ item.creator.fullName || item.creator.name }}</span>\n <span *ngIf=\"item.creator && item.creationDate\">, </span>\n <span *ngIf=\"item.creationDate\">{{ item.creationDate | swissDate }} ({{ item.creationDate | timeAgo }})</span>\n </div>\n\n <div *ngIf=\"showUpdate()\">\n <span class=\"mat-body-2\" i18n>Modification</span>\n :\n <span *ngIf=\"item.updater\">{{ item.updater.fullName || item.updater.name }}</span>\n <span *ngIf=\"item.updater && item.updateDate\">, </span>\n <span *ngIf=\"item.updateDate\">{{ item.updateDate | swissDate }} ({{ item.updateDate | timeAgo }})</span>\n </div>\n</ng-container>\n", dependencies: [{ kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: NaturalSwissDatePipe, name: "swissDate" }, { kind: "pipe", type: NaturalTimeAgoPipe, name: "timeAgo" }] });
|
|
10055
10204
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: NaturalStampComponent, decorators: [{
|
|
10056
10205
|
type: Component,
|
|
10057
|
-
args: [{ selector: 'natural-stamp', template: "<ng-container *ngIf=\"item\">\n <div *ngIf=\"item.creationDate || item.creator\">\n <span class=\"mat-body-2\" i18n>Cr\u00E9ation</span>\n :\n <span *ngIf=\"item.creator\">{{ item.creator.fullName || item.creator.name }}</span>\n <span *ngIf=\"item.creator && item.creationDate\">, </span>\n <span *ngIf=\"item.creationDate\"
|
|
10206
|
+
args: [{ selector: 'natural-stamp', template: "<ng-container *ngIf=\"item\">\n <div *ngIf=\"item.creationDate || item.creator\">\n <span class=\"mat-body-2\" i18n>Cr\u00E9ation</span>\n :\n <span *ngIf=\"item.creator\">{{ item.creator.fullName || item.creator.name }}</span>\n <span *ngIf=\"item.creator && item.creationDate\">, </span>\n <span *ngIf=\"item.creationDate\">{{ item.creationDate | swissDate }} ({{ item.creationDate | timeAgo }})</span>\n </div>\n\n <div *ngIf=\"showUpdate()\">\n <span class=\"mat-body-2\" i18n>Modification</span>\n :\n <span *ngIf=\"item.updater\">{{ item.updater.fullName || item.updater.name }}</span>\n <span *ngIf=\"item.updater && item.updateDate\">, </span>\n <span *ngIf=\"item.updateDate\">{{ item.updateDate | swissDate }} ({{ item.updateDate | timeAgo }})</span>\n </div>\n</ng-container>\n" }]
|
|
10058
10207
|
}], propDecorators: { item: [{
|
|
10059
10208
|
type: Input
|
|
10060
10209
|
}] } });
|
|
10061
10210
|
|
|
10211
|
+
const declarationsToExport = [NaturalStampComponent];
|
|
10062
10212
|
class NaturalStampModule {
|
|
10063
10213
|
}
|
|
10064
10214
|
NaturalStampModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: NaturalStampModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
10065
|
-
NaturalStampModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.1.1", ngImport: i0, type: NaturalStampModule, declarations: [NaturalStampComponent], imports: [CommonModule], exports: [NaturalStampComponent] });
|
|
10066
|
-
NaturalStampModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: NaturalStampModule, imports: [CommonModule] });
|
|
10215
|
+
NaturalStampModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.1.1", ngImport: i0, type: NaturalStampModule, declarations: [NaturalStampComponent], imports: [CommonModule, NaturalCommonModule], exports: [NaturalStampComponent] });
|
|
10216
|
+
NaturalStampModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: NaturalStampModule, imports: [CommonModule, NaturalCommonModule] });
|
|
10067
10217
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: NaturalStampModule, decorators: [{
|
|
10068
10218
|
type: NgModule,
|
|
10069
10219
|
args: [{
|
|
10070
|
-
declarations: [
|
|
10071
|
-
imports: [CommonModule],
|
|
10072
|
-
exports: [
|
|
10220
|
+
declarations: [...declarationsToExport],
|
|
10221
|
+
imports: [CommonModule, NaturalCommonModule],
|
|
10222
|
+
exports: [...declarationsToExport],
|
|
10073
10223
|
}]
|
|
10074
10224
|
}] });
|
|
10075
10225
|
|
|
@@ -11036,5 +11186,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImpor
|
|
|
11036
11186
|
* Generated bundle index. Do not edit.
|
|
11037
11187
|
*/
|
|
11038
11188
|
|
|
11039
|
-
export { AvatarComponent, AvatarService, FileComponent, IconsConfigService, LOCAL_STORAGE, NATURAL_DROPDOWN_DATA, NATURAL_SEO_CONFIG, NaturalAbstractController, NaturalAbstractDetail, NaturalAbstractEditableList, NaturalAbstractList, NaturalAbstractModelService, NaturalAbstractNavigableList, NaturalAbstractPanel, NaturalAlertModule, NaturalAlertService, NaturalAvatarModule, NaturalCapitalizePipe, NaturalColumnsPickerColumnDirective, 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, NaturalIconComponent, 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, 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 };
|
|
11189
|
+
export { AvatarComponent, AvatarService, FileComponent, IconsConfigService, LOCAL_STORAGE, NATURAL_DROPDOWN_DATA, NATURAL_SEO_CONFIG, NaturalAbstractController, NaturalAbstractDetail, NaturalAbstractEditableList, NaturalAbstractList, NaturalAbstractModelService, NaturalAbstractNavigableList, NaturalAbstractPanel, NaturalAlertModule, NaturalAlertService, NaturalAvatarModule, NaturalCapitalizePipe, NaturalColumnsPickerColumnDirective, 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, NaturalIconComponent, 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 };
|
|
11040
11190
|
//# sourceMappingURL=ecodev-natural.mjs.map
|