@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
|
@@ -65,7 +65,6 @@ import * as i9 from '@angular/material/paginator';
|
|
|
65
65
|
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
|
-
import { Md5 } from 'ts-md5';
|
|
69
68
|
import * as i1$8 from '@angular/common/http';
|
|
70
69
|
import { HttpHeaders, HttpClientModule } from '@angular/common/http';
|
|
71
70
|
|
|
@@ -377,6 +376,10 @@ function copyToClipboard(document, text) {
|
|
|
377
376
|
document.execCommand('copy');
|
|
378
377
|
document.body.removeChild(input);
|
|
379
378
|
}
|
|
379
|
+
function deepFreeze(o) {
|
|
380
|
+
Object.values(o).forEach(v => Object.isFrozen(v) || deepFreeze(v));
|
|
381
|
+
return Object.freeze(o);
|
|
382
|
+
}
|
|
380
383
|
|
|
381
384
|
// Basic; loosely typed structure for graphql-doctrine filters
|
|
382
385
|
// Logical operator to be used in conditions
|
|
@@ -2899,12 +2902,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImpor
|
|
|
2899
2902
|
args: [SESSION_STORAGE]
|
|
2900
2903
|
}] }]; } });
|
|
2901
2904
|
|
|
2902
|
-
/**
|
|
2903
|
-
* Data source to provide what data should be rendered in the table. The observable provided
|
|
2904
|
-
* in connect should emit exactly the data that should be rendered by the table. If the data is
|
|
2905
|
-
* altered, the observable should emit that new set of data on the stream. In our case here,
|
|
2906
|
-
* we return a stream that contains only one set of data that doesn't change.
|
|
2907
|
-
*/
|
|
2908
2905
|
/**
|
|
2909
2906
|
* A NaturalDataSource will connect immediately, in order to know as soon as possible if
|
|
2910
2907
|
* we need to show a template at all (as seen in my-ichtus)
|
|
@@ -2946,17 +2943,17 @@ class NaturalDataSource extends DataSource {
|
|
|
2946
2943
|
if (!this.data) {
|
|
2947
2944
|
return;
|
|
2948
2945
|
}
|
|
2949
|
-
const fullList = this.data.items;
|
|
2946
|
+
const fullList = [...this.data.items];
|
|
2950
2947
|
fullList.push(item);
|
|
2951
|
-
this.data =
|
|
2948
|
+
this.data = { ...this.data, items: fullList, length: fullList.length };
|
|
2952
2949
|
}
|
|
2953
2950
|
pop() {
|
|
2954
2951
|
if (!this.data) {
|
|
2955
2952
|
return;
|
|
2956
2953
|
}
|
|
2957
|
-
const fullList = this.data.items;
|
|
2954
|
+
const fullList = [...this.data.items];
|
|
2958
2955
|
const removedElement = fullList.pop();
|
|
2959
|
-
this.data =
|
|
2956
|
+
this.data = { ...this.data, items: fullList, length: fullList.length };
|
|
2960
2957
|
return removedElement;
|
|
2961
2958
|
}
|
|
2962
2959
|
remove(item) {
|
|
@@ -2965,9 +2962,9 @@ class NaturalDataSource extends DataSource {
|
|
|
2965
2962
|
}
|
|
2966
2963
|
const index = this.data.items.indexOf(item);
|
|
2967
2964
|
if (index > -1) {
|
|
2968
|
-
this.data.items
|
|
2969
|
-
|
|
2970
|
-
this.data = this.data;
|
|
2965
|
+
const fullList = [...this.data.items];
|
|
2966
|
+
fullList.splice(index, 1);
|
|
2967
|
+
this.data = { ...this.data, items: fullList, length: fullList.length };
|
|
2971
2968
|
}
|
|
2972
2969
|
}
|
|
2973
2970
|
}
|
|
@@ -10060,6 +10057,213 @@ class Source {
|
|
|
10060
10057
|
}
|
|
10061
10058
|
}
|
|
10062
10059
|
|
|
10060
|
+
function md5(string) {
|
|
10061
|
+
const x = convertToWordArray(utf8Encode(string));
|
|
10062
|
+
const S11 = 7;
|
|
10063
|
+
const S12 = 12;
|
|
10064
|
+
const S13 = 17;
|
|
10065
|
+
const S14 = 22;
|
|
10066
|
+
const S21 = 5;
|
|
10067
|
+
const S22 = 9;
|
|
10068
|
+
const S23 = 14;
|
|
10069
|
+
const S24 = 20;
|
|
10070
|
+
const S31 = 4;
|
|
10071
|
+
const S32 = 11;
|
|
10072
|
+
const S33 = 16;
|
|
10073
|
+
const S34 = 23;
|
|
10074
|
+
const S41 = 6;
|
|
10075
|
+
const S42 = 10;
|
|
10076
|
+
const S43 = 15;
|
|
10077
|
+
const S44 = 21;
|
|
10078
|
+
let a = 0x67452301;
|
|
10079
|
+
let b = 0xefcdab89;
|
|
10080
|
+
let c = 0x98badcfe;
|
|
10081
|
+
let d = 0x10325476;
|
|
10082
|
+
for (let k = 0; k < x.length; k += 16) {
|
|
10083
|
+
const AA = a;
|
|
10084
|
+
const BB = b;
|
|
10085
|
+
const CC = c;
|
|
10086
|
+
const DD = d;
|
|
10087
|
+
a = FF(a, b, c, d, x[k], S11, 0xd76aa478);
|
|
10088
|
+
d = FF(d, a, b, c, x[k + 1], S12, 0xe8c7b756);
|
|
10089
|
+
c = FF(c, d, a, b, x[k + 2], S13, 0x242070db);
|
|
10090
|
+
b = FF(b, c, d, a, x[k + 3], S14, 0xc1bdceee);
|
|
10091
|
+
a = FF(a, b, c, d, x[k + 4], S11, 0xf57c0faf);
|
|
10092
|
+
d = FF(d, a, b, c, x[k + 5], S12, 0x4787c62a);
|
|
10093
|
+
c = FF(c, d, a, b, x[k + 6], S13, 0xa8304613);
|
|
10094
|
+
b = FF(b, c, d, a, x[k + 7], S14, 0xfd469501);
|
|
10095
|
+
a = FF(a, b, c, d, x[k + 8], S11, 0x698098d8);
|
|
10096
|
+
d = FF(d, a, b, c, x[k + 9], S12, 0x8b44f7af);
|
|
10097
|
+
c = FF(c, d, a, b, x[k + 10], S13, 0xffff5bb1);
|
|
10098
|
+
b = FF(b, c, d, a, x[k + 11], S14, 0x895cd7be);
|
|
10099
|
+
a = FF(a, b, c, d, x[k + 12], S11, 0x6b901122);
|
|
10100
|
+
d = FF(d, a, b, c, x[k + 13], S12, 0xfd987193);
|
|
10101
|
+
c = FF(c, d, a, b, x[k + 14], S13, 0xa679438e);
|
|
10102
|
+
b = FF(b, c, d, a, x[k + 15], S14, 0x49b40821);
|
|
10103
|
+
a = GG(a, b, c, d, x[k + 1], S21, 0xf61e2562);
|
|
10104
|
+
d = GG(d, a, b, c, x[k + 6], S22, 0xc040b340);
|
|
10105
|
+
c = GG(c, d, a, b, x[k + 11], S23, 0x265e5a51);
|
|
10106
|
+
b = GG(b, c, d, a, x[k], S24, 0xe9b6c7aa);
|
|
10107
|
+
a = GG(a, b, c, d, x[k + 5], S21, 0xd62f105d);
|
|
10108
|
+
d = GG(d, a, b, c, x[k + 10], S22, 0x2441453);
|
|
10109
|
+
c = GG(c, d, a, b, x[k + 15], S23, 0xd8a1e681);
|
|
10110
|
+
b = GG(b, c, d, a, x[k + 4], S24, 0xe7d3fbc8);
|
|
10111
|
+
a = GG(a, b, c, d, x[k + 9], S21, 0x21e1cde6);
|
|
10112
|
+
d = GG(d, a, b, c, x[k + 14], S22, 0xc33707d6);
|
|
10113
|
+
c = GG(c, d, a, b, x[k + 3], S23, 0xf4d50d87);
|
|
10114
|
+
b = GG(b, c, d, a, x[k + 8], S24, 0x455a14ed);
|
|
10115
|
+
a = GG(a, b, c, d, x[k + 13], S21, 0xa9e3e905);
|
|
10116
|
+
d = GG(d, a, b, c, x[k + 2], S22, 0xfcefa3f8);
|
|
10117
|
+
c = GG(c, d, a, b, x[k + 7], S23, 0x676f02d9);
|
|
10118
|
+
b = GG(b, c, d, a, x[k + 12], S24, 0x8d2a4c8a);
|
|
10119
|
+
a = HH(a, b, c, d, x[k + 5], S31, 0xfffa3942);
|
|
10120
|
+
d = HH(d, a, b, c, x[k + 8], S32, 0x8771f681);
|
|
10121
|
+
c = HH(c, d, a, b, x[k + 11], S33, 0x6d9d6122);
|
|
10122
|
+
b = HH(b, c, d, a, x[k + 14], S34, 0xfde5380c);
|
|
10123
|
+
a = HH(a, b, c, d, x[k + 1], S31, 0xa4beea44);
|
|
10124
|
+
d = HH(d, a, b, c, x[k + 4], S32, 0x4bdecfa9);
|
|
10125
|
+
c = HH(c, d, a, b, x[k + 7], S33, 0xf6bb4b60);
|
|
10126
|
+
b = HH(b, c, d, a, x[k + 10], S34, 0xbebfbc70);
|
|
10127
|
+
a = HH(a, b, c, d, x[k + 13], S31, 0x289b7ec6);
|
|
10128
|
+
d = HH(d, a, b, c, x[k], S32, 0xeaa127fa);
|
|
10129
|
+
c = HH(c, d, a, b, x[k + 3], S33, 0xd4ef3085);
|
|
10130
|
+
b = HH(b, c, d, a, x[k + 6], S34, 0x4881d05);
|
|
10131
|
+
a = HH(a, b, c, d, x[k + 9], S31, 0xd9d4d039);
|
|
10132
|
+
d = HH(d, a, b, c, x[k + 12], S32, 0xe6db99e5);
|
|
10133
|
+
c = HH(c, d, a, b, x[k + 15], S33, 0x1fa27cf8);
|
|
10134
|
+
b = HH(b, c, d, a, x[k + 2], S34, 0xc4ac5665);
|
|
10135
|
+
a = II(a, b, c, d, x[k], S41, 0xf4292244);
|
|
10136
|
+
d = II(d, a, b, c, x[k + 7], S42, 0x432aff97);
|
|
10137
|
+
c = II(c, d, a, b, x[k + 14], S43, 0xab9423a7);
|
|
10138
|
+
b = II(b, c, d, a, x[k + 5], S44, 0xfc93a039);
|
|
10139
|
+
a = II(a, b, c, d, x[k + 12], S41, 0x655b59c3);
|
|
10140
|
+
d = II(d, a, b, c, x[k + 3], S42, 0x8f0ccc92);
|
|
10141
|
+
c = II(c, d, a, b, x[k + 10], S43, 0xffeff47d);
|
|
10142
|
+
b = II(b, c, d, a, x[k + 1], S44, 0x85845dd1);
|
|
10143
|
+
a = II(a, b, c, d, x[k + 8], S41, 0x6fa87e4f);
|
|
10144
|
+
d = II(d, a, b, c, x[k + 15], S42, 0xfe2ce6e0);
|
|
10145
|
+
c = II(c, d, a, b, x[k + 6], S43, 0xa3014314);
|
|
10146
|
+
b = II(b, c, d, a, x[k + 13], S44, 0x4e0811a1);
|
|
10147
|
+
a = II(a, b, c, d, x[k + 4], S41, 0xf7537e82);
|
|
10148
|
+
d = II(d, a, b, c, x[k + 11], S42, 0xbd3af235);
|
|
10149
|
+
c = II(c, d, a, b, x[k + 2], S43, 0x2ad7d2bb);
|
|
10150
|
+
b = II(b, c, d, a, x[k + 9], S44, 0xeb86d391);
|
|
10151
|
+
a = addUnsigned(a, AA);
|
|
10152
|
+
b = addUnsigned(b, BB);
|
|
10153
|
+
c = addUnsigned(c, CC);
|
|
10154
|
+
d = addUnsigned(d, DD);
|
|
10155
|
+
}
|
|
10156
|
+
const result = wordToHex(a) + wordToHex(b) + wordToHex(c) + wordToHex(d);
|
|
10157
|
+
return result.toLowerCase();
|
|
10158
|
+
}
|
|
10159
|
+
function addUnsigned(lX, lY) {
|
|
10160
|
+
const lX8 = lX & 0x80000000;
|
|
10161
|
+
const lY8 = lY & 0x80000000;
|
|
10162
|
+
const lX4 = lX & 0x40000000;
|
|
10163
|
+
const lY4 = lY & 0x40000000;
|
|
10164
|
+
const lResult = (lX & 0x3fffffff) + (lY & 0x3fffffff);
|
|
10165
|
+
if (!!(lX4 & lY4)) {
|
|
10166
|
+
return lResult ^ 0x80000000 ^ lX8 ^ lY8;
|
|
10167
|
+
}
|
|
10168
|
+
if (!!(lX4 | lY4)) {
|
|
10169
|
+
if (!!(lResult & 0x40000000)) {
|
|
10170
|
+
return lResult ^ 0xc0000000 ^ lX8 ^ lY8;
|
|
10171
|
+
}
|
|
10172
|
+
else {
|
|
10173
|
+
return lResult ^ 0x40000000 ^ lX8 ^ lY8;
|
|
10174
|
+
}
|
|
10175
|
+
}
|
|
10176
|
+
else {
|
|
10177
|
+
return lResult ^ lX8 ^ lY8;
|
|
10178
|
+
}
|
|
10179
|
+
}
|
|
10180
|
+
function rotateLeft(lValue, iShiftBits) {
|
|
10181
|
+
return (lValue << iShiftBits) | (lValue >>> (32 - iShiftBits));
|
|
10182
|
+
}
|
|
10183
|
+
function F(x, y, z) {
|
|
10184
|
+
return (x & y) | (~x & z);
|
|
10185
|
+
}
|
|
10186
|
+
function G(x, y, z) {
|
|
10187
|
+
return (x & z) | (y & ~z);
|
|
10188
|
+
}
|
|
10189
|
+
function H(x, y, z) {
|
|
10190
|
+
return x ^ y ^ z;
|
|
10191
|
+
}
|
|
10192
|
+
function I(x, y, z) {
|
|
10193
|
+
return y ^ (x | ~z);
|
|
10194
|
+
}
|
|
10195
|
+
function FF(a, b, c, d, x, s, ac) {
|
|
10196
|
+
a = addUnsigned(a, addUnsigned(addUnsigned(F(b, c, d), x), ac));
|
|
10197
|
+
return addUnsigned(rotateLeft(a, s), b);
|
|
10198
|
+
}
|
|
10199
|
+
function GG(a, b, c, d, x, s, ac) {
|
|
10200
|
+
a = addUnsigned(a, addUnsigned(addUnsigned(G(b, c, d), x), ac));
|
|
10201
|
+
return addUnsigned(rotateLeft(a, s), b);
|
|
10202
|
+
}
|
|
10203
|
+
function HH(a, b, c, d, x, s, ac) {
|
|
10204
|
+
a = addUnsigned(a, addUnsigned(addUnsigned(H(b, c, d), x), ac));
|
|
10205
|
+
return addUnsigned(rotateLeft(a, s), b);
|
|
10206
|
+
}
|
|
10207
|
+
function II(a, b, c, d, x, s, ac) {
|
|
10208
|
+
a = addUnsigned(a, addUnsigned(addUnsigned(I(b, c, d), x), ac));
|
|
10209
|
+
return addUnsigned(rotateLeft(a, s), b);
|
|
10210
|
+
}
|
|
10211
|
+
function convertToWordArray(string) {
|
|
10212
|
+
let lWordCount;
|
|
10213
|
+
const lMessageLength = string.length;
|
|
10214
|
+
const lNumberOfWords_temp1 = lMessageLength + 8;
|
|
10215
|
+
const lNumberOfWords_temp2 = (lNumberOfWords_temp1 - (lNumberOfWords_temp1 % 64)) / 64;
|
|
10216
|
+
const lNumberOfWords = (lNumberOfWords_temp2 + 1) * 16;
|
|
10217
|
+
const lWordArray = Array(lNumberOfWords - 1);
|
|
10218
|
+
let lBytePosition = 0;
|
|
10219
|
+
let lByteCount = 0;
|
|
10220
|
+
while (lByteCount < lMessageLength) {
|
|
10221
|
+
lWordCount = (lByteCount - (lByteCount % 4)) / 4;
|
|
10222
|
+
lBytePosition = (lByteCount % 4) * 8;
|
|
10223
|
+
lWordArray[lWordCount] = lWordArray[lWordCount] | (string.charCodeAt(lByteCount) << lBytePosition);
|
|
10224
|
+
lByteCount++;
|
|
10225
|
+
}
|
|
10226
|
+
lWordCount = (lByteCount - (lByteCount % 4)) / 4;
|
|
10227
|
+
lBytePosition = (lByteCount % 4) * 8;
|
|
10228
|
+
lWordArray[lWordCount] = lWordArray[lWordCount] | (0x80 << lBytePosition);
|
|
10229
|
+
lWordArray[lNumberOfWords - 2] = lMessageLength << 3;
|
|
10230
|
+
lWordArray[lNumberOfWords - 1] = lMessageLength >>> 29;
|
|
10231
|
+
return lWordArray;
|
|
10232
|
+
}
|
|
10233
|
+
function wordToHex(lValue) {
|
|
10234
|
+
let WordToHexValue = '';
|
|
10235
|
+
let WordToHexValue_temp = '';
|
|
10236
|
+
let lByte;
|
|
10237
|
+
let lCount;
|
|
10238
|
+
for (lCount = 0; lCount <= 3; lCount++) {
|
|
10239
|
+
lByte = (lValue >>> (lCount * 8)) & 255;
|
|
10240
|
+
WordToHexValue_temp = '0' + lByte.toString(16);
|
|
10241
|
+
WordToHexValue = WordToHexValue + WordToHexValue_temp.substr(WordToHexValue_temp.length - 2, 2);
|
|
10242
|
+
}
|
|
10243
|
+
return WordToHexValue;
|
|
10244
|
+
}
|
|
10245
|
+
function utf8Encode(string) {
|
|
10246
|
+
let utftext = '';
|
|
10247
|
+
let c;
|
|
10248
|
+
string = string.replace(/\r\n/g, '\n');
|
|
10249
|
+
for (let n = 0; n < string.length; n++) {
|
|
10250
|
+
c = string.charCodeAt(n);
|
|
10251
|
+
if (c < 128) {
|
|
10252
|
+
utftext += String.fromCharCode(c);
|
|
10253
|
+
}
|
|
10254
|
+
else if (c > 127 && c < 2048) {
|
|
10255
|
+
utftext += String.fromCharCode((c >> 6) | 192);
|
|
10256
|
+
utftext += String.fromCharCode((c & 63) | 128);
|
|
10257
|
+
}
|
|
10258
|
+
else {
|
|
10259
|
+
utftext += String.fromCharCode((c >> 12) | 224);
|
|
10260
|
+
utftext += String.fromCharCode(((c >> 6) & 63) | 128);
|
|
10261
|
+
utftext += String.fromCharCode((c & 63) | 128);
|
|
10262
|
+
}
|
|
10263
|
+
}
|
|
10264
|
+
return utftext;
|
|
10265
|
+
}
|
|
10266
|
+
|
|
10063
10267
|
function isRetina() {
|
|
10064
10268
|
// We cannot reasonably inject `DOCUMENT` here, but we are extra
|
|
10065
10269
|
// careful about usage of `window` and its possible non-existence in SSR,
|
|
@@ -10078,9 +10282,9 @@ function isRetina() {
|
|
|
10078
10282
|
class Gravatar extends Source {
|
|
10079
10283
|
getAvatar(size) {
|
|
10080
10284
|
const value = this.getValue();
|
|
10081
|
-
const
|
|
10285
|
+
const hash = value.match('^[a-f0-9]{32}$') ? value : md5(value.trim().toLowerCase()).toString();
|
|
10082
10286
|
const avatarSize = isRetina() ? size * 2 : size;
|
|
10083
|
-
return `https://secure.gravatar.com/avatar/${
|
|
10287
|
+
return `https://secure.gravatar.com/avatar/${hash}?s=${avatarSize}&d=404`;
|
|
10084
10288
|
}
|
|
10085
10289
|
isTextual() {
|
|
10086
10290
|
return false;
|
|
@@ -10637,5 +10841,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImpor
|
|
|
10637
10841
|
* Generated bundle index. Do not edit.
|
|
10638
10842
|
*/
|
|
10639
10843
|
|
|
10640
|
-
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 };
|
|
10844
|
+
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 };
|
|
10641
10845
|
//# sourceMappingURL=ecodev-natural.mjs.map
|