@ecodev/natural 44.0.1 → 44.0.4
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-editable-list.mjs +1 -1
- package/esm2020/lib/classes/data-source.mjs +8 -14
- package/esm2020/lib/classes/utility.mjs +5 -1
- package/esm2020/lib/modules/avatar/service/md5.mjs +207 -0
- package/esm2020/lib/modules/avatar/sources/gravatar.mjs +4 -4
- package/esm2020/lib/modules/select/select/select.component.mjs +1 -1
- package/fesm2015/ecodev-natural.mjs +221 -17
- package/fesm2015/ecodev-natural.mjs.map +1 -1
- package/fesm2020/ecodev-natural.mjs +221 -17
- package/fesm2020/ecodev-natural.mjs.map +1 -1
- package/lib/classes/abstract-editable-list.d.ts +2 -2
- package/lib/classes/data-source.d.ts +5 -11
- package/lib/classes/utility.d.ts +2 -0
- package/lib/modules/avatar/service/md5.d.ts +1 -0
- package/lib/modules/select/select/select.component.d.ts +1 -1
- package/package.json +8 -2
|
@@ -66,7 +66,6 @@ import { MatPaginatorModule } from '@angular/material/paginator';
|
|
|
66
66
|
import * as i3$3 from '@angular/material/sidenav';
|
|
67
67
|
import { MatSidenavContainer, MatSidenav, MatSidenavModule } from '@angular/material/sidenav';
|
|
68
68
|
import { __rest } from 'tslib';
|
|
69
|
-
import { Md5 } from 'ts-md5';
|
|
70
69
|
import * as i1$8 from '@angular/common/http';
|
|
71
70
|
import { HttpHeaders, HttpClientModule } from '@angular/common/http';
|
|
72
71
|
|
|
@@ -380,6 +379,10 @@ function copyToClipboard(document, text) {
|
|
|
380
379
|
document.execCommand('copy');
|
|
381
380
|
document.body.removeChild(input);
|
|
382
381
|
}
|
|
382
|
+
function deepFreeze(o) {
|
|
383
|
+
Object.values(o).forEach(v => Object.isFrozen(v) || deepFreeze(v));
|
|
384
|
+
return Object.freeze(o);
|
|
385
|
+
}
|
|
383
386
|
|
|
384
387
|
// Basic; loosely typed structure for graphql-doctrine filters
|
|
385
388
|
// Logical operator to be used in conditions
|
|
@@ -2906,12 +2909,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImpor
|
|
|
2906
2909
|
}] }];
|
|
2907
2910
|
} });
|
|
2908
2911
|
|
|
2909
|
-
/**
|
|
2910
|
-
* Data source to provide what data should be rendered in the table. The observable provided
|
|
2911
|
-
* in connect should emit exactly the data that should be rendered by the table. If the data is
|
|
2912
|
-
* altered, the observable should emit that new set of data on the stream. In our case here,
|
|
2913
|
-
* we return a stream that contains only one set of data that doesn't change.
|
|
2914
|
-
*/
|
|
2915
2912
|
/**
|
|
2916
2913
|
* A NaturalDataSource will connect immediately, in order to know as soon as possible if
|
|
2917
2914
|
* we need to show a template at all (as seen in my-ichtus)
|
|
@@ -2953,17 +2950,17 @@ class NaturalDataSource extends DataSource {
|
|
|
2953
2950
|
if (!this.data) {
|
|
2954
2951
|
return;
|
|
2955
2952
|
}
|
|
2956
|
-
const fullList = this.data.items;
|
|
2953
|
+
const fullList = [...this.data.items];
|
|
2957
2954
|
fullList.push(item);
|
|
2958
|
-
this.data = Object.assign(this.data, { items: fullList, length: fullList.length });
|
|
2955
|
+
this.data = Object.assign(Object.assign({}, this.data), { items: fullList, length: fullList.length });
|
|
2959
2956
|
}
|
|
2960
2957
|
pop() {
|
|
2961
2958
|
if (!this.data) {
|
|
2962
2959
|
return;
|
|
2963
2960
|
}
|
|
2964
|
-
const fullList = this.data.items;
|
|
2961
|
+
const fullList = [...this.data.items];
|
|
2965
2962
|
const removedElement = fullList.pop();
|
|
2966
|
-
this.data = Object.assign(this.data, { items: fullList, length: fullList.length });
|
|
2963
|
+
this.data = Object.assign(Object.assign({}, this.data), { items: fullList, length: fullList.length });
|
|
2967
2964
|
return removedElement;
|
|
2968
2965
|
}
|
|
2969
2966
|
remove(item) {
|
|
@@ -2972,9 +2969,9 @@ class NaturalDataSource extends DataSource {
|
|
|
2972
2969
|
}
|
|
2973
2970
|
const index = this.data.items.indexOf(item);
|
|
2974
2971
|
if (index > -1) {
|
|
2975
|
-
this.data.items
|
|
2976
|
-
|
|
2977
|
-
this.data = this.data;
|
|
2972
|
+
const fullList = [...this.data.items];
|
|
2973
|
+
fullList.splice(index, 1);
|
|
2974
|
+
this.data = Object.assign(Object.assign({}, this.data), { items: fullList, length: fullList.length });
|
|
2978
2975
|
}
|
|
2979
2976
|
}
|
|
2980
2977
|
}
|
|
@@ -10128,6 +10125,213 @@ class Source {
|
|
|
10128
10125
|
}
|
|
10129
10126
|
}
|
|
10130
10127
|
|
|
10128
|
+
function md5(string) {
|
|
10129
|
+
const x = convertToWordArray(utf8Encode(string));
|
|
10130
|
+
const S11 = 7;
|
|
10131
|
+
const S12 = 12;
|
|
10132
|
+
const S13 = 17;
|
|
10133
|
+
const S14 = 22;
|
|
10134
|
+
const S21 = 5;
|
|
10135
|
+
const S22 = 9;
|
|
10136
|
+
const S23 = 14;
|
|
10137
|
+
const S24 = 20;
|
|
10138
|
+
const S31 = 4;
|
|
10139
|
+
const S32 = 11;
|
|
10140
|
+
const S33 = 16;
|
|
10141
|
+
const S34 = 23;
|
|
10142
|
+
const S41 = 6;
|
|
10143
|
+
const S42 = 10;
|
|
10144
|
+
const S43 = 15;
|
|
10145
|
+
const S44 = 21;
|
|
10146
|
+
let a = 0x67452301;
|
|
10147
|
+
let b = 0xefcdab89;
|
|
10148
|
+
let c = 0x98badcfe;
|
|
10149
|
+
let d = 0x10325476;
|
|
10150
|
+
for (let k = 0; k < x.length; k += 16) {
|
|
10151
|
+
const AA = a;
|
|
10152
|
+
const BB = b;
|
|
10153
|
+
const CC = c;
|
|
10154
|
+
const DD = d;
|
|
10155
|
+
a = FF(a, b, c, d, x[k], S11, 0xd76aa478);
|
|
10156
|
+
d = FF(d, a, b, c, x[k + 1], S12, 0xe8c7b756);
|
|
10157
|
+
c = FF(c, d, a, b, x[k + 2], S13, 0x242070db);
|
|
10158
|
+
b = FF(b, c, d, a, x[k + 3], S14, 0xc1bdceee);
|
|
10159
|
+
a = FF(a, b, c, d, x[k + 4], S11, 0xf57c0faf);
|
|
10160
|
+
d = FF(d, a, b, c, x[k + 5], S12, 0x4787c62a);
|
|
10161
|
+
c = FF(c, d, a, b, x[k + 6], S13, 0xa8304613);
|
|
10162
|
+
b = FF(b, c, d, a, x[k + 7], S14, 0xfd469501);
|
|
10163
|
+
a = FF(a, b, c, d, x[k + 8], S11, 0x698098d8);
|
|
10164
|
+
d = FF(d, a, b, c, x[k + 9], S12, 0x8b44f7af);
|
|
10165
|
+
c = FF(c, d, a, b, x[k + 10], S13, 0xffff5bb1);
|
|
10166
|
+
b = FF(b, c, d, a, x[k + 11], S14, 0x895cd7be);
|
|
10167
|
+
a = FF(a, b, c, d, x[k + 12], S11, 0x6b901122);
|
|
10168
|
+
d = FF(d, a, b, c, x[k + 13], S12, 0xfd987193);
|
|
10169
|
+
c = FF(c, d, a, b, x[k + 14], S13, 0xa679438e);
|
|
10170
|
+
b = FF(b, c, d, a, x[k + 15], S14, 0x49b40821);
|
|
10171
|
+
a = GG(a, b, c, d, x[k + 1], S21, 0xf61e2562);
|
|
10172
|
+
d = GG(d, a, b, c, x[k + 6], S22, 0xc040b340);
|
|
10173
|
+
c = GG(c, d, a, b, x[k + 11], S23, 0x265e5a51);
|
|
10174
|
+
b = GG(b, c, d, a, x[k], S24, 0xe9b6c7aa);
|
|
10175
|
+
a = GG(a, b, c, d, x[k + 5], S21, 0xd62f105d);
|
|
10176
|
+
d = GG(d, a, b, c, x[k + 10], S22, 0x2441453);
|
|
10177
|
+
c = GG(c, d, a, b, x[k + 15], S23, 0xd8a1e681);
|
|
10178
|
+
b = GG(b, c, d, a, x[k + 4], S24, 0xe7d3fbc8);
|
|
10179
|
+
a = GG(a, b, c, d, x[k + 9], S21, 0x21e1cde6);
|
|
10180
|
+
d = GG(d, a, b, c, x[k + 14], S22, 0xc33707d6);
|
|
10181
|
+
c = GG(c, d, a, b, x[k + 3], S23, 0xf4d50d87);
|
|
10182
|
+
b = GG(b, c, d, a, x[k + 8], S24, 0x455a14ed);
|
|
10183
|
+
a = GG(a, b, c, d, x[k + 13], S21, 0xa9e3e905);
|
|
10184
|
+
d = GG(d, a, b, c, x[k + 2], S22, 0xfcefa3f8);
|
|
10185
|
+
c = GG(c, d, a, b, x[k + 7], S23, 0x676f02d9);
|
|
10186
|
+
b = GG(b, c, d, a, x[k + 12], S24, 0x8d2a4c8a);
|
|
10187
|
+
a = HH(a, b, c, d, x[k + 5], S31, 0xfffa3942);
|
|
10188
|
+
d = HH(d, a, b, c, x[k + 8], S32, 0x8771f681);
|
|
10189
|
+
c = HH(c, d, a, b, x[k + 11], S33, 0x6d9d6122);
|
|
10190
|
+
b = HH(b, c, d, a, x[k + 14], S34, 0xfde5380c);
|
|
10191
|
+
a = HH(a, b, c, d, x[k + 1], S31, 0xa4beea44);
|
|
10192
|
+
d = HH(d, a, b, c, x[k + 4], S32, 0x4bdecfa9);
|
|
10193
|
+
c = HH(c, d, a, b, x[k + 7], S33, 0xf6bb4b60);
|
|
10194
|
+
b = HH(b, c, d, a, x[k + 10], S34, 0xbebfbc70);
|
|
10195
|
+
a = HH(a, b, c, d, x[k + 13], S31, 0x289b7ec6);
|
|
10196
|
+
d = HH(d, a, b, c, x[k], S32, 0xeaa127fa);
|
|
10197
|
+
c = HH(c, d, a, b, x[k + 3], S33, 0xd4ef3085);
|
|
10198
|
+
b = HH(b, c, d, a, x[k + 6], S34, 0x4881d05);
|
|
10199
|
+
a = HH(a, b, c, d, x[k + 9], S31, 0xd9d4d039);
|
|
10200
|
+
d = HH(d, a, b, c, x[k + 12], S32, 0xe6db99e5);
|
|
10201
|
+
c = HH(c, d, a, b, x[k + 15], S33, 0x1fa27cf8);
|
|
10202
|
+
b = HH(b, c, d, a, x[k + 2], S34, 0xc4ac5665);
|
|
10203
|
+
a = II(a, b, c, d, x[k], S41, 0xf4292244);
|
|
10204
|
+
d = II(d, a, b, c, x[k + 7], S42, 0x432aff97);
|
|
10205
|
+
c = II(c, d, a, b, x[k + 14], S43, 0xab9423a7);
|
|
10206
|
+
b = II(b, c, d, a, x[k + 5], S44, 0xfc93a039);
|
|
10207
|
+
a = II(a, b, c, d, x[k + 12], S41, 0x655b59c3);
|
|
10208
|
+
d = II(d, a, b, c, x[k + 3], S42, 0x8f0ccc92);
|
|
10209
|
+
c = II(c, d, a, b, x[k + 10], S43, 0xffeff47d);
|
|
10210
|
+
b = II(b, c, d, a, x[k + 1], S44, 0x85845dd1);
|
|
10211
|
+
a = II(a, b, c, d, x[k + 8], S41, 0x6fa87e4f);
|
|
10212
|
+
d = II(d, a, b, c, x[k + 15], S42, 0xfe2ce6e0);
|
|
10213
|
+
c = II(c, d, a, b, x[k + 6], S43, 0xa3014314);
|
|
10214
|
+
b = II(b, c, d, a, x[k + 13], S44, 0x4e0811a1);
|
|
10215
|
+
a = II(a, b, c, d, x[k + 4], S41, 0xf7537e82);
|
|
10216
|
+
d = II(d, a, b, c, x[k + 11], S42, 0xbd3af235);
|
|
10217
|
+
c = II(c, d, a, b, x[k + 2], S43, 0x2ad7d2bb);
|
|
10218
|
+
b = II(b, c, d, a, x[k + 9], S44, 0xeb86d391);
|
|
10219
|
+
a = addUnsigned(a, AA);
|
|
10220
|
+
b = addUnsigned(b, BB);
|
|
10221
|
+
c = addUnsigned(c, CC);
|
|
10222
|
+
d = addUnsigned(d, DD);
|
|
10223
|
+
}
|
|
10224
|
+
const result = wordToHex(a) + wordToHex(b) + wordToHex(c) + wordToHex(d);
|
|
10225
|
+
return result.toLowerCase();
|
|
10226
|
+
}
|
|
10227
|
+
function addUnsigned(lX, lY) {
|
|
10228
|
+
const lX8 = lX & 0x80000000;
|
|
10229
|
+
const lY8 = lY & 0x80000000;
|
|
10230
|
+
const lX4 = lX & 0x40000000;
|
|
10231
|
+
const lY4 = lY & 0x40000000;
|
|
10232
|
+
const lResult = (lX & 0x3fffffff) + (lY & 0x3fffffff);
|
|
10233
|
+
if (!!(lX4 & lY4)) {
|
|
10234
|
+
return lResult ^ 0x80000000 ^ lX8 ^ lY8;
|
|
10235
|
+
}
|
|
10236
|
+
if (!!(lX4 | lY4)) {
|
|
10237
|
+
if (!!(lResult & 0x40000000)) {
|
|
10238
|
+
return lResult ^ 0xc0000000 ^ lX8 ^ lY8;
|
|
10239
|
+
}
|
|
10240
|
+
else {
|
|
10241
|
+
return lResult ^ 0x40000000 ^ lX8 ^ lY8;
|
|
10242
|
+
}
|
|
10243
|
+
}
|
|
10244
|
+
else {
|
|
10245
|
+
return lResult ^ lX8 ^ lY8;
|
|
10246
|
+
}
|
|
10247
|
+
}
|
|
10248
|
+
function rotateLeft(lValue, iShiftBits) {
|
|
10249
|
+
return (lValue << iShiftBits) | (lValue >>> (32 - iShiftBits));
|
|
10250
|
+
}
|
|
10251
|
+
function F(x, y, z) {
|
|
10252
|
+
return (x & y) | (~x & z);
|
|
10253
|
+
}
|
|
10254
|
+
function G(x, y, z) {
|
|
10255
|
+
return (x & z) | (y & ~z);
|
|
10256
|
+
}
|
|
10257
|
+
function H(x, y, z) {
|
|
10258
|
+
return x ^ y ^ z;
|
|
10259
|
+
}
|
|
10260
|
+
function I(x, y, z) {
|
|
10261
|
+
return y ^ (x | ~z);
|
|
10262
|
+
}
|
|
10263
|
+
function FF(a, b, c, d, x, s, ac) {
|
|
10264
|
+
a = addUnsigned(a, addUnsigned(addUnsigned(F(b, c, d), x), ac));
|
|
10265
|
+
return addUnsigned(rotateLeft(a, s), b);
|
|
10266
|
+
}
|
|
10267
|
+
function GG(a, b, c, d, x, s, ac) {
|
|
10268
|
+
a = addUnsigned(a, addUnsigned(addUnsigned(G(b, c, d), x), ac));
|
|
10269
|
+
return addUnsigned(rotateLeft(a, s), b);
|
|
10270
|
+
}
|
|
10271
|
+
function HH(a, b, c, d, x, s, ac) {
|
|
10272
|
+
a = addUnsigned(a, addUnsigned(addUnsigned(H(b, c, d), x), ac));
|
|
10273
|
+
return addUnsigned(rotateLeft(a, s), b);
|
|
10274
|
+
}
|
|
10275
|
+
function II(a, b, c, d, x, s, ac) {
|
|
10276
|
+
a = addUnsigned(a, addUnsigned(addUnsigned(I(b, c, d), x), ac));
|
|
10277
|
+
return addUnsigned(rotateLeft(a, s), b);
|
|
10278
|
+
}
|
|
10279
|
+
function convertToWordArray(string) {
|
|
10280
|
+
let lWordCount;
|
|
10281
|
+
const lMessageLength = string.length;
|
|
10282
|
+
const lNumberOfWords_temp1 = lMessageLength + 8;
|
|
10283
|
+
const lNumberOfWords_temp2 = (lNumberOfWords_temp1 - (lNumberOfWords_temp1 % 64)) / 64;
|
|
10284
|
+
const lNumberOfWords = (lNumberOfWords_temp2 + 1) * 16;
|
|
10285
|
+
const lWordArray = Array(lNumberOfWords - 1);
|
|
10286
|
+
let lBytePosition = 0;
|
|
10287
|
+
let lByteCount = 0;
|
|
10288
|
+
while (lByteCount < lMessageLength) {
|
|
10289
|
+
lWordCount = (lByteCount - (lByteCount % 4)) / 4;
|
|
10290
|
+
lBytePosition = (lByteCount % 4) * 8;
|
|
10291
|
+
lWordArray[lWordCount] = lWordArray[lWordCount] | (string.charCodeAt(lByteCount) << lBytePosition);
|
|
10292
|
+
lByteCount++;
|
|
10293
|
+
}
|
|
10294
|
+
lWordCount = (lByteCount - (lByteCount % 4)) / 4;
|
|
10295
|
+
lBytePosition = (lByteCount % 4) * 8;
|
|
10296
|
+
lWordArray[lWordCount] = lWordArray[lWordCount] | (0x80 << lBytePosition);
|
|
10297
|
+
lWordArray[lNumberOfWords - 2] = lMessageLength << 3;
|
|
10298
|
+
lWordArray[lNumberOfWords - 1] = lMessageLength >>> 29;
|
|
10299
|
+
return lWordArray;
|
|
10300
|
+
}
|
|
10301
|
+
function wordToHex(lValue) {
|
|
10302
|
+
let WordToHexValue = '';
|
|
10303
|
+
let WordToHexValue_temp = '';
|
|
10304
|
+
let lByte;
|
|
10305
|
+
let lCount;
|
|
10306
|
+
for (lCount = 0; lCount <= 3; lCount++) {
|
|
10307
|
+
lByte = (lValue >>> (lCount * 8)) & 255;
|
|
10308
|
+
WordToHexValue_temp = '0' + lByte.toString(16);
|
|
10309
|
+
WordToHexValue = WordToHexValue + WordToHexValue_temp.substr(WordToHexValue_temp.length - 2, 2);
|
|
10310
|
+
}
|
|
10311
|
+
return WordToHexValue;
|
|
10312
|
+
}
|
|
10313
|
+
function utf8Encode(string) {
|
|
10314
|
+
let utftext = '';
|
|
10315
|
+
let c;
|
|
10316
|
+
string = string.replace(/\r\n/g, '\n');
|
|
10317
|
+
for (let n = 0; n < string.length; n++) {
|
|
10318
|
+
c = string.charCodeAt(n);
|
|
10319
|
+
if (c < 128) {
|
|
10320
|
+
utftext += String.fromCharCode(c);
|
|
10321
|
+
}
|
|
10322
|
+
else if (c > 127 && c < 2048) {
|
|
10323
|
+
utftext += String.fromCharCode((c >> 6) | 192);
|
|
10324
|
+
utftext += String.fromCharCode((c & 63) | 128);
|
|
10325
|
+
}
|
|
10326
|
+
else {
|
|
10327
|
+
utftext += String.fromCharCode((c >> 12) | 224);
|
|
10328
|
+
utftext += String.fromCharCode(((c >> 6) & 63) | 128);
|
|
10329
|
+
utftext += String.fromCharCode((c & 63) | 128);
|
|
10330
|
+
}
|
|
10331
|
+
}
|
|
10332
|
+
return utftext;
|
|
10333
|
+
}
|
|
10334
|
+
|
|
10131
10335
|
function isRetina() {
|
|
10132
10336
|
// We cannot reasonably inject `DOCUMENT` here, but we are extra
|
|
10133
10337
|
// careful about usage of `window` and its possible non-existence in SSR,
|
|
@@ -10146,9 +10350,9 @@ function isRetina() {
|
|
|
10146
10350
|
class Gravatar extends Source {
|
|
10147
10351
|
getAvatar(size) {
|
|
10148
10352
|
const value = this.getValue();
|
|
10149
|
-
const
|
|
10353
|
+
const hash = value.match('^[a-f0-9]{32}$') ? value : md5(value.trim().toLowerCase()).toString();
|
|
10150
10354
|
const avatarSize = isRetina() ? size * 2 : size;
|
|
10151
|
-
return `https://secure.gravatar.com/avatar/${
|
|
10355
|
+
return `https://secure.gravatar.com/avatar/${hash}?s=${avatarSize}&d=404`;
|
|
10152
10356
|
}
|
|
10153
10357
|
isTextual() {
|
|
10154
10358
|
return false;
|
|
@@ -10711,5 +10915,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImpor
|
|
|
10711
10915
|
* Generated bundle index. Do not edit.
|
|
10712
10916
|
*/
|
|
10713
10917
|
|
|
10714
|
-
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, 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, 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 };
|
|
10918
|
+
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, 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 };
|
|
10715
10919
|
//# sourceMappingURL=ecodev-natural.mjs.map
|