@sumaris-net/ngx-components 2.8.1-beta5 → 2.8.1-beta7
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/doc/changelog.md +3 -0
- package/esm2022/src/app/core/services/config/core.config.mjs +11 -2
- package/esm2022/src/app/shared/functions.mjs +6 -1
- package/esm2022/src/app/shared/pipes/colors.pipe.mjs +4 -2
- package/esm2022/src/app/shared/pipes/pipes.module.mjs +6 -3
- package/esm2022/src/app/shared/pipes/property.pipes.mjs +25 -12
- package/esm2022/src/app/shared/pipes/string.pipes.mjs +1 -1
- package/fesm2022/sumaris-net.ngx-components.mjs +178 -146
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/services/config/core.config.d.ts +2 -0
- package/src/app/shared/functions.d.ts +4 -0
- package/src/app/shared/inputs.d.ts +1 -1
- package/src/app/shared/pipes/pipes.module.d.ts +1 -1
- package/src/app/shared/pipes/property.pipes.d.ts +10 -1
- package/src/assets/manifest.json +1 -1
|
@@ -561,6 +561,11 @@ function uncapitalizeFirstLetter(value) {
|
|
|
561
561
|
return value;
|
|
562
562
|
return value.charAt(0).toLowerCase() + value.substring(1);
|
|
563
563
|
}
|
|
564
|
+
function booleanToString(value, opts = { yesLabel: 'COMMON.YES', noLabel: 'COMMON.NO' }) {
|
|
565
|
+
if (isNil(value))
|
|
566
|
+
return undefined;
|
|
567
|
+
return value === 1 || value === true || value === 'true' ? opts.yesLabel : opts.noLabel;
|
|
568
|
+
}
|
|
564
569
|
function splitByProperty(array, propertyName) {
|
|
565
570
|
return (array || []).reduce((res, value) => {
|
|
566
571
|
const key = value?.[propertyName];
|
|
@@ -1784,139 +1789,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImpor
|
|
|
1784
1789
|
args: [{ providedIn: 'root' }]
|
|
1785
1790
|
}] });
|
|
1786
1791
|
|
|
1787
|
-
class IsNotNilOrBlankPipe {
|
|
1788
|
-
transform(value) {
|
|
1789
|
-
return isNotNilOrBlank(value);
|
|
1790
|
-
}
|
|
1791
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IsNotNilOrBlankPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1792
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: IsNotNilOrBlankPipe, name: "isNotNilOrBlank" });
|
|
1793
|
-
}
|
|
1794
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IsNotNilOrBlankPipe, decorators: [{
|
|
1795
|
-
type: Pipe,
|
|
1796
|
-
args: [{
|
|
1797
|
-
name: 'isNotNilOrBlank',
|
|
1798
|
-
}]
|
|
1799
|
-
}] });
|
|
1800
|
-
class IsNilOrBlankPipe {
|
|
1801
|
-
transform(value) {
|
|
1802
|
-
return isNilOrBlank(value);
|
|
1803
|
-
}
|
|
1804
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IsNilOrBlankPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1805
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: IsNilOrBlankPipe, name: "isNilOrBlank" });
|
|
1806
|
-
}
|
|
1807
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IsNilOrBlankPipe, decorators: [{
|
|
1808
|
-
type: Pipe,
|
|
1809
|
-
args: [{
|
|
1810
|
-
name: 'isNilOrBlank',
|
|
1811
|
-
}]
|
|
1812
|
-
}] });
|
|
1813
|
-
class IsNilOrNaNPipe {
|
|
1814
|
-
transform(value) {
|
|
1815
|
-
return isNilOrNaN(value);
|
|
1816
|
-
}
|
|
1817
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IsNilOrNaNPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1818
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: IsNilOrNaNPipe, name: "isNilOrNaN" });
|
|
1819
|
-
}
|
|
1820
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IsNilOrNaNPipe, decorators: [{
|
|
1821
|
-
type: Pipe,
|
|
1822
|
-
args: [{
|
|
1823
|
-
name: 'isNilOrNaN',
|
|
1824
|
-
}]
|
|
1825
|
-
}] });
|
|
1826
|
-
class IsNotNilOrNaNPipe {
|
|
1827
|
-
transform(value) {
|
|
1828
|
-
return isNotNilOrNaN(value);
|
|
1829
|
-
}
|
|
1830
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IsNotNilOrNaNPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1831
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: IsNotNilOrNaNPipe, name: "isNotNilOrNaN" });
|
|
1832
|
-
}
|
|
1833
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IsNotNilOrNaNPipe, decorators: [{
|
|
1834
|
-
type: Pipe,
|
|
1835
|
-
args: [{
|
|
1836
|
-
name: 'isNotNilOrNaN',
|
|
1837
|
-
}]
|
|
1838
|
-
}] });
|
|
1839
|
-
class IsNotNilPipe {
|
|
1840
|
-
transform(value) {
|
|
1841
|
-
return isNotNil(value);
|
|
1842
|
-
}
|
|
1843
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IsNotNilPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1844
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: IsNotNilPipe, name: "isNotNil" });
|
|
1845
|
-
}
|
|
1846
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IsNotNilPipe, decorators: [{
|
|
1847
|
-
type: Pipe,
|
|
1848
|
-
args: [{
|
|
1849
|
-
name: 'isNotNil',
|
|
1850
|
-
}]
|
|
1851
|
-
}] });
|
|
1852
|
-
class IsNilPipe {
|
|
1853
|
-
transform(value) {
|
|
1854
|
-
return isNil(value);
|
|
1855
|
-
}
|
|
1856
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IsNilPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1857
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: IsNilPipe, name: "isNil" });
|
|
1858
|
-
}
|
|
1859
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IsNilPipe, decorators: [{
|
|
1860
|
-
type: Pipe,
|
|
1861
|
-
args: [{
|
|
1862
|
-
name: 'isNil',
|
|
1863
|
-
}]
|
|
1864
|
-
}] });
|
|
1865
|
-
class ToStringPipe {
|
|
1866
|
-
transform(value, displayWith) {
|
|
1867
|
-
if (displayWith)
|
|
1868
|
-
return displayWith(value);
|
|
1869
|
-
return value !== null && value !== undefined ? value.toString() : '';
|
|
1870
|
-
}
|
|
1871
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: ToStringPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1872
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: ToStringPipe, name: "toString" });
|
|
1873
|
-
}
|
|
1874
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: ToStringPipe, decorators: [{
|
|
1875
|
-
type: Pipe,
|
|
1876
|
-
args: [{
|
|
1877
|
-
name: 'toString',
|
|
1878
|
-
}]
|
|
1879
|
-
}] });
|
|
1880
|
-
class CapitalizePipe {
|
|
1881
|
-
transform(value) {
|
|
1882
|
-
return capitalizeFirstLetter(value);
|
|
1883
|
-
}
|
|
1884
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: CapitalizePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1885
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: CapitalizePipe, name: "capitalize" });
|
|
1886
|
-
}
|
|
1887
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: CapitalizePipe, decorators: [{
|
|
1888
|
-
type: Pipe,
|
|
1889
|
-
args: [{
|
|
1890
|
-
name: 'capitalize',
|
|
1891
|
-
}]
|
|
1892
|
-
}] });
|
|
1893
|
-
class StrLengthPipe {
|
|
1894
|
-
transform(value) {
|
|
1895
|
-
return (value && value.length) || 0;
|
|
1896
|
-
}
|
|
1897
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: StrLengthPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1898
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: StrLengthPipe, name: "strLength" });
|
|
1899
|
-
}
|
|
1900
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: StrLengthPipe, decorators: [{
|
|
1901
|
-
type: Pipe,
|
|
1902
|
-
args: [{
|
|
1903
|
-
name: 'strLength',
|
|
1904
|
-
}]
|
|
1905
|
-
}] });
|
|
1906
|
-
class StrIncludesPipe {
|
|
1907
|
-
transform(value, searchString, position) {
|
|
1908
|
-
return value?.includes(searchString, position) || false;
|
|
1909
|
-
}
|
|
1910
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: StrIncludesPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1911
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: StrIncludesPipe, name: "strIncludes" });
|
|
1912
|
-
}
|
|
1913
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: StrIncludesPipe, decorators: [{
|
|
1914
|
-
type: Pipe,
|
|
1915
|
-
args: [{
|
|
1916
|
-
name: 'strIncludes',
|
|
1917
|
-
}]
|
|
1918
|
-
}] });
|
|
1919
|
-
|
|
1920
1792
|
class TranslateContextService {
|
|
1921
1793
|
translate;
|
|
1922
1794
|
constructor(translate) {
|
|
@@ -4225,7 +4097,7 @@ class AbstractValueFormatPipe {
|
|
|
4225
4097
|
return joinPropertiesPath(value, definition?.autocomplete?.attributes || ['label', 'name']) || undefined;
|
|
4226
4098
|
}
|
|
4227
4099
|
case 'boolean':
|
|
4228
|
-
return value
|
|
4100
|
+
return booleanToString(value, { yesLabel: this.i18nYes, noLabel: this.i18nNo });
|
|
4229
4101
|
case 'integer':
|
|
4230
4102
|
case 'double':
|
|
4231
4103
|
case 'string':
|
|
@@ -4238,17 +4110,12 @@ class PropertyFormatPipe extends AbstractValueFormatPipe {
|
|
|
4238
4110
|
constructor(dateFormat, translate) {
|
|
4239
4111
|
super(dateFormat, translate);
|
|
4240
4112
|
}
|
|
4241
|
-
transform(obj,
|
|
4113
|
+
transform(obj, args) {
|
|
4242
4114
|
if (!obj)
|
|
4243
4115
|
return '';
|
|
4244
|
-
const definition =
|
|
4245
|
-
const
|
|
4246
|
-
|
|
4247
|
-
// Should never occur
|
|
4248
|
-
console.warn("Invalid use of pipe 'formatProperty': missing key or definition");
|
|
4249
|
-
return '';
|
|
4250
|
-
}
|
|
4251
|
-
const value = obj[key];
|
|
4116
|
+
const definition = typeof args === 'object' ? args : undefined;
|
|
4117
|
+
const path = definition ? definition.key : args;
|
|
4118
|
+
const value = getPropertyByPath(obj, path);
|
|
4252
4119
|
return this.valueToString(value, definition);
|
|
4253
4120
|
}
|
|
4254
4121
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: PropertyFormatPipe, deps: [{ token: DateFormatService }, { token: i1$1.TranslateService }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
@@ -4284,18 +4151,38 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImpor
|
|
|
4284
4151
|
type: Injectable,
|
|
4285
4152
|
args: [{ providedIn: 'root' }]
|
|
4286
4153
|
}], ctorParameters: () => [{ type: DateFormatService }, { type: i1$1.TranslateService }] });
|
|
4154
|
+
class BooleanFormatPipe extends AbstractValueFormatPipe {
|
|
4155
|
+
constructor(translate) {
|
|
4156
|
+
super(null, translate);
|
|
4157
|
+
}
|
|
4158
|
+
transform(value, opts) {
|
|
4159
|
+
if (!opts)
|
|
4160
|
+
opts = { yesLabel: this.i18nYes, noLabel: this.i18nNo };
|
|
4161
|
+
return booleanToString(value, opts);
|
|
4162
|
+
}
|
|
4163
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BooleanFormatPipe, deps: [{ token: i1$1.TranslateService }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4164
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: BooleanFormatPipe, name: "booleanFormat" });
|
|
4165
|
+
}
|
|
4166
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BooleanFormatPipe, decorators: [{
|
|
4167
|
+
type: Pipe,
|
|
4168
|
+
args: [{
|
|
4169
|
+
name: 'booleanFormat',
|
|
4170
|
+
}]
|
|
4171
|
+
}], ctorParameters: () => [{ type: i1$1.TranslateService }] });
|
|
4287
4172
|
|
|
4288
4173
|
class MatColorPipe {
|
|
4289
4174
|
transform(color) {
|
|
4290
4175
|
if (!color)
|
|
4291
4176
|
return undefined;
|
|
4292
4177
|
switch (color) {
|
|
4178
|
+
// Redirect 'secondary' and 'tertiary' to primary (not exists in material theme)
|
|
4179
|
+
case 'secondary':
|
|
4293
4180
|
case 'tertiary':
|
|
4294
4181
|
return 'primary';
|
|
4295
4182
|
case 'warning':
|
|
4296
4183
|
return 'warn';
|
|
4297
4184
|
case 'medium':
|
|
4298
|
-
return undefined;
|
|
4185
|
+
return undefined; // Use default
|
|
4299
4186
|
default:
|
|
4300
4187
|
return color;
|
|
4301
4188
|
}
|
|
@@ -4645,6 +4532,139 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImpor
|
|
|
4645
4532
|
}]
|
|
4646
4533
|
}] });
|
|
4647
4534
|
|
|
4535
|
+
class IsNotNilOrBlankPipe {
|
|
4536
|
+
transform(value) {
|
|
4537
|
+
return isNotNilOrBlank(value);
|
|
4538
|
+
}
|
|
4539
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IsNotNilOrBlankPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4540
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: IsNotNilOrBlankPipe, name: "isNotNilOrBlank" });
|
|
4541
|
+
}
|
|
4542
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IsNotNilOrBlankPipe, decorators: [{
|
|
4543
|
+
type: Pipe,
|
|
4544
|
+
args: [{
|
|
4545
|
+
name: 'isNotNilOrBlank',
|
|
4546
|
+
}]
|
|
4547
|
+
}] });
|
|
4548
|
+
class IsNilOrBlankPipe {
|
|
4549
|
+
transform(value) {
|
|
4550
|
+
return isNilOrBlank(value);
|
|
4551
|
+
}
|
|
4552
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IsNilOrBlankPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4553
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: IsNilOrBlankPipe, name: "isNilOrBlank" });
|
|
4554
|
+
}
|
|
4555
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IsNilOrBlankPipe, decorators: [{
|
|
4556
|
+
type: Pipe,
|
|
4557
|
+
args: [{
|
|
4558
|
+
name: 'isNilOrBlank',
|
|
4559
|
+
}]
|
|
4560
|
+
}] });
|
|
4561
|
+
class IsNilOrNaNPipe {
|
|
4562
|
+
transform(value) {
|
|
4563
|
+
return isNilOrNaN(value);
|
|
4564
|
+
}
|
|
4565
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IsNilOrNaNPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4566
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: IsNilOrNaNPipe, name: "isNilOrNaN" });
|
|
4567
|
+
}
|
|
4568
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IsNilOrNaNPipe, decorators: [{
|
|
4569
|
+
type: Pipe,
|
|
4570
|
+
args: [{
|
|
4571
|
+
name: 'isNilOrNaN',
|
|
4572
|
+
}]
|
|
4573
|
+
}] });
|
|
4574
|
+
class IsNotNilOrNaNPipe {
|
|
4575
|
+
transform(value) {
|
|
4576
|
+
return isNotNilOrNaN(value);
|
|
4577
|
+
}
|
|
4578
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IsNotNilOrNaNPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4579
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: IsNotNilOrNaNPipe, name: "isNotNilOrNaN" });
|
|
4580
|
+
}
|
|
4581
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IsNotNilOrNaNPipe, decorators: [{
|
|
4582
|
+
type: Pipe,
|
|
4583
|
+
args: [{
|
|
4584
|
+
name: 'isNotNilOrNaN',
|
|
4585
|
+
}]
|
|
4586
|
+
}] });
|
|
4587
|
+
class IsNotNilPipe {
|
|
4588
|
+
transform(value) {
|
|
4589
|
+
return isNotNil(value);
|
|
4590
|
+
}
|
|
4591
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IsNotNilPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4592
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: IsNotNilPipe, name: "isNotNil" });
|
|
4593
|
+
}
|
|
4594
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IsNotNilPipe, decorators: [{
|
|
4595
|
+
type: Pipe,
|
|
4596
|
+
args: [{
|
|
4597
|
+
name: 'isNotNil',
|
|
4598
|
+
}]
|
|
4599
|
+
}] });
|
|
4600
|
+
class IsNilPipe {
|
|
4601
|
+
transform(value) {
|
|
4602
|
+
return isNil(value);
|
|
4603
|
+
}
|
|
4604
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IsNilPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4605
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: IsNilPipe, name: "isNil" });
|
|
4606
|
+
}
|
|
4607
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IsNilPipe, decorators: [{
|
|
4608
|
+
type: Pipe,
|
|
4609
|
+
args: [{
|
|
4610
|
+
name: 'isNil',
|
|
4611
|
+
}]
|
|
4612
|
+
}] });
|
|
4613
|
+
class ToStringPipe {
|
|
4614
|
+
transform(value, displayWith) {
|
|
4615
|
+
if (displayWith)
|
|
4616
|
+
return displayWith(value);
|
|
4617
|
+
return value !== null && value !== undefined ? value.toString() : '';
|
|
4618
|
+
}
|
|
4619
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: ToStringPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4620
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: ToStringPipe, name: "toString" });
|
|
4621
|
+
}
|
|
4622
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: ToStringPipe, decorators: [{
|
|
4623
|
+
type: Pipe,
|
|
4624
|
+
args: [{
|
|
4625
|
+
name: 'toString',
|
|
4626
|
+
}]
|
|
4627
|
+
}] });
|
|
4628
|
+
class CapitalizePipe {
|
|
4629
|
+
transform(value) {
|
|
4630
|
+
return capitalizeFirstLetter(value);
|
|
4631
|
+
}
|
|
4632
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: CapitalizePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4633
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: CapitalizePipe, name: "capitalize" });
|
|
4634
|
+
}
|
|
4635
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: CapitalizePipe, decorators: [{
|
|
4636
|
+
type: Pipe,
|
|
4637
|
+
args: [{
|
|
4638
|
+
name: 'capitalize',
|
|
4639
|
+
}]
|
|
4640
|
+
}] });
|
|
4641
|
+
class StrLengthPipe {
|
|
4642
|
+
transform(value) {
|
|
4643
|
+
return (value && value.length) || 0;
|
|
4644
|
+
}
|
|
4645
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: StrLengthPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4646
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: StrLengthPipe, name: "strLength" });
|
|
4647
|
+
}
|
|
4648
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: StrLengthPipe, decorators: [{
|
|
4649
|
+
type: Pipe,
|
|
4650
|
+
args: [{
|
|
4651
|
+
name: 'strLength',
|
|
4652
|
+
}]
|
|
4653
|
+
}] });
|
|
4654
|
+
class StrIncludesPipe {
|
|
4655
|
+
transform(value, searchString, position) {
|
|
4656
|
+
return value?.includes(searchString, position) || false;
|
|
4657
|
+
}
|
|
4658
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: StrIncludesPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4659
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: StrIncludesPipe, name: "strIncludes" });
|
|
4660
|
+
}
|
|
4661
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: StrIncludesPipe, decorators: [{
|
|
4662
|
+
type: Pipe,
|
|
4663
|
+
args: [{
|
|
4664
|
+
name: 'strIncludes',
|
|
4665
|
+
}]
|
|
4666
|
+
}] });
|
|
4667
|
+
|
|
4648
4668
|
const components$1 = [
|
|
4649
4669
|
PropertyGetPipe,
|
|
4650
4670
|
PropertyFormatPipe,
|
|
@@ -4683,6 +4703,7 @@ const components$1 = [
|
|
|
4683
4703
|
CapitalizePipe,
|
|
4684
4704
|
StrLengthPipe,
|
|
4685
4705
|
StrIncludesPipe,
|
|
4706
|
+
BooleanFormatPipe,
|
|
4686
4707
|
TranslateContextPipe,
|
|
4687
4708
|
TranslatablePipe,
|
|
4688
4709
|
NgInitDirective,
|
|
@@ -4745,6 +4766,7 @@ class SharedPipesModule {
|
|
|
4745
4766
|
CapitalizePipe,
|
|
4746
4767
|
StrLengthPipe,
|
|
4747
4768
|
StrIncludesPipe,
|
|
4769
|
+
BooleanFormatPipe,
|
|
4748
4770
|
TranslateContextPipe,
|
|
4749
4771
|
TranslatablePipe,
|
|
4750
4772
|
NgInitDirective,
|
|
@@ -4803,6 +4825,7 @@ class SharedPipesModule {
|
|
|
4803
4825
|
CapitalizePipe,
|
|
4804
4826
|
StrLengthPipe,
|
|
4805
4827
|
StrIncludesPipe,
|
|
4828
|
+
BooleanFormatPipe,
|
|
4806
4829
|
TranslateContextPipe,
|
|
4807
4830
|
TranslatablePipe,
|
|
4808
4831
|
NgInitDirective,
|
|
@@ -13704,7 +13727,16 @@ const CORE_CONFIG_OPTIONS = Object.freeze({
|
|
|
13704
13727
|
key: 'sumaris.theme.fieldBackgroundColor',
|
|
13705
13728
|
label: 'CONFIGURATION.OPTIONS.FORM_FIELD_BACKGROUND_COLOR',
|
|
13706
13729
|
type: 'color',
|
|
13707
|
-
|
|
13730
|
+
},
|
|
13731
|
+
FORM_FIELD_FOCUS_BACKGROUND_COLOR: {
|
|
13732
|
+
key: 'sumaris.theme.fieldFocusBackgroundColor',
|
|
13733
|
+
label: 'CONFIGURATION.OPTIONS.FORM_FIELD_FOCUS_BACKGROUND_COLOR',
|
|
13734
|
+
type: 'color',
|
|
13735
|
+
},
|
|
13736
|
+
FORM_FIELD_DISABLED_BACKGROUND_COLOR: {
|
|
13737
|
+
key: 'sumaris.theme.fieldDisabledBackgroundColor',
|
|
13738
|
+
label: 'CONFIGURATION.OPTIONS.FORM_FIELD_DISABLED_BACKGROUND_COLOR',
|
|
13739
|
+
type: 'color',
|
|
13708
13740
|
},
|
|
13709
13741
|
ANDROID_INSTALL_URL: {
|
|
13710
13742
|
key: 'sumaris.android.install.url',
|
|
@@ -41969,5 +42001,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImpor
|
|
|
41969
42001
|
* Generated bundle index. Do not edit.
|
|
41970
42002
|
*/
|
|
41971
42003
|
|
|
41972
|
-
export { APP_ABOUT_DEVELOPERS, APP_ABOUT_PARTNERS, APP_CONFIG_OPTIONS, APP_DEBUG_DATA_SERVICE, APP_FORM_ERROR_I18N_KEYS, APP_GRAPHQL_FRAGMENTS, APP_GRAPHQL_TYPE_POLICIES, APP_HOME_BUTTONS, APP_JOB_PROGRESSION_SERVICE, APP_LOCALES, APP_LOCAL_SETTINGS, APP_LOCAL_SETTINGS_OPTIONS, APP_LOCAL_STORAGE_TYPE_POLICIES, APP_LOGGING_SERVICE, APP_MENU_ITEMS, APP_MENU_OPTIONS, APP_NAMED_FILTER_SERVICE, APP_PROGRESS_BAR_SERVICE, APP_SETTINGS_MENU_ITEMS, APP_STORAGE, APP_STORAGE_EXPLORER_PROTECTED_KEYS, APP_TESTING_PAGES, APP_USER_EVENT_LIST_INFINITE_SCROLL_THRESHOLD, APP_USER_EVENT_SERVICE, APP_USER_SETTINGS_OPTIONS, APP_USER_TOKEN_SCOPES, AboutModal, AbstractNamedFilterService, AbstractSelectionModelPipe, AbstractTableSelectionPipe, AbstractUserEventService, Account, AccountPage, AccountService, AccountToStringPipe, AccountUtils, ActionsColumnComponent, AdminModule, AdminRoutingModule, AdminUsersModule, Alerts, AndroidOsEnvironment, AppAboutModalModule, AppAccountModule, AppAsyncTable, AppAuthForm, AppAuthModal, AppAuthModule, AppEditor, AppEditorOptions, AppEntityEditor, AppEntityEditorModal, AppEntityEditorModalOptions, AppEntityFormModule, AppForm, AppFormArray, AppFormButtonsBarModule, AppFormContainer, AppFormField, AppFormModule, AppFormProvider, AppFormUtils, AppGestureConfig, AppGraphQLModule, AppHelpModal, AppHomePageModule, AppIconComponent, AppIconModule, AppImageGalleryComponent, AppInMemoryTable, AppInstallUpgradeCard, AppInstallUpgradeCardModule, AppListForm, AppListFormModule, AppLoadingSpinner, AppMenuModule, AppNullForm, AppPropertiesForm, AppPropertiesFormModule, AppPropertiesTable, AppRegisterModule, AppRowField, AppSelectPeerModule, AppSettingsPageModule, AppTabEditor, AppTabEditorOptions, AppTable, AppTableModule, AppTableUtils, AppTextPopoverModule, AppUpdateOfflineModeCard, AppUpdateOfflineModeCardModule, AppValidatorService, ArrayFilterPipe, ArrayFirstPipe, ArrayIncludesPipe, ArrayJoinPipe, ArrayLengthPipe, ArrayPluckPipe, AsAnyPipe, AsArrayPipe, AsFloatLabelTypePipe, AsObservablePipe, AudioProvider, AudioTestingModule, AudioTestingPage, AuthGuardService, AutoTitleDirective, AutocompleteTestPage, AutofocusDirective, BadgeDirective, BadgeNumberPipe, Base58, BaseEntityService, BaseGraphqlService, BaseGraphqlServiceOptions, BaseReferential, Beans, BooleanTestPage, CORE_CONFIG_OPTIONS, CORE_TESTING_PAGES, CapitalizePipe, CellValueChangeListener, ChipsTestPage, Color, ColorScale, ComponentDirtyGuard, ConfigFragments, ConfigService, Configuration, CoreModule, CorePipesModule, CoreTestingModule, CryptoService, CsvUtils, DATE_ISO_PATTERN, DATE_MATCH_REGEXP, DATE_PATTERN, DATE_UNIX_MS_TIMESTAMP, DATE_UNIX_TIMESTAMP, DEFAULT_MENU_SHOW_WHEN, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZE_OPTIONS, DEFAULT_PLACEHOLDER_CHAR, DEFAULT_REQUIRED_COLUMNS, DateDiffDurationPipe, DateFormatPipe, DateFormatService, DateFromNowPipe, DateShortTestPage, DateTestPage, DateTimeTestPage, DateUtils, DebugComponent, Department, DepartmentToStringPipe, DragAndDropDirective, DurationPipe, DurationTestPage, ED25519_SEED_LENGTH, EMPTY_PLACEHOLDER_CHAR, ENTITIES_STORAGE_KEY_PREFIX, ENVIRONMENT, EmptyArrayPipe, EntitiesAsyncTableDataSource, EntitiesStorage, EntitiesTableDataSource, Entity, EntityClass, EntityClasses, EntityFilter, EntityFilterUtils, EntityMetadataComponent, EntityStore, EntityUtils, Environment, EnvironmentHttpLoader, EnvironmentLoader, ErrorCodes, EvenPipe, FileResponse, FileService, FileSizePipe, FilesUtils, FormArrayHelper, FormButtonsBarComponent, FormButtonsBarToken, FormErrorTranslatePipe, FormErrorTranslator, FormFieldValuesHolder, FormGetArrayPipe, FormGetControlPipe, FormGetGroupPipe, FormGetPipe, FormGetValuePipe, GalleryTestPage, GeolocationUtils, GraphqlService, HAMMER_PRESS_TIME, HAMMER_TAP_TIME, HighlightPipe, HomePage, Hotkeys, HotkeysDialogComponent, IMAGE_DEFAULTS, IPosition, ImageAttachment, ImageAttachmentFilter, ImageAttachmentService, ImageGalleryModule, ImageGalleryTestingModule, ImageModule, ImageService, ImagesUtils, InMemoryEntitiesService, IsAllSelectedPipe, IsEmptySelectionPipe, IsLoginAccountPipe, IsMultipleSelectionPipe, IsNilOrBlankPipe, IsNilOrNaNPipe, IsNilPipe, IsNotAllSelectedPipe, IsNotEmptySelectionPipe, IsNotNilOrBlankPipe, IsNotNilOrNaNPipe, IsNotNilPipe, IsOnDeskPipe, IsOnFieldPipe, IsSelectedPipe, IsSingleSelectionPipe, JobModule, JobProgression, JobProgressionComponent, JobProgressionIcon, JobProgressionList, JobProgressionService, JobProgressionTestService, JobProgressionTestingPage, JobTestingModule, JobUtils, JsonUtils, KEYBOARD_HIDE_DELAY_MS, LAT_LONG_DEFAULT_MAX_DECIMALS, LAT_LONG_PATTERNS, LatLongFormatPipe, LatLongTestPage, LatitudeFormatPipe, LocalSettingsService, LogLevel, LogUtils, Logger, LoggingService, LoggingServiceModule, LongitudeFormatPipe, MAT_FORM_FIELD_DEFAULT_APPEARANCE, MAT_FORM_FIELD_DEFAULT_SUBSCRIPT_SIZING, MINIFY_ENTITY_FOR_LOCAL_STORAGE, MINIFY_ENTITY_FOR_POD, MOMENT_NO_TIME_PROPERTY, MapGetPipe, MapKeysPipe, MapValuesPipe, MaskitoPlaceholderPipe, MatAutocompleteConfigHolder, MatAutocompleteField, MatAutocompleteFieldUtils, MatBadgeTestPage, MatBooleanField, MatChipsField, MatColorPipe, MatCommonTestPage, MatDate, MatDateShort, MatDateTime, MatDuration, MatLatLongField, MatPaginatorI18n, MatStepperI18n, MatSwipeField, MaterialTestingModule, MathAbsPipe, MenuComponent, MenuItem, MenuItems, MenuOptions, MenuService, MenuTestingModule, MenuTestingPage, Message, MessageFilter, MessageForm, MessageModal, MessageModule, MessageService, MessageTypeList, MessageTypes, MimeTypes, ModalToolbarComponent, NETWORK_DEFAULT_CONNECTION_TIMEOUT, NamedFilter, NamedFilterFilter, NamedFilterSelector, NetworkService, NewTokenModal, NgInitDirective, NgVarDirective, NotEmptyArrayPipe, NumberFormatPipe, ObservableTestPage, OddPipe, OtherMenuTestingPage, PEER_URL_REGEXP, PRIORITIZED_AUTHORITIES, PUBKEY_REGEXP, Peer, Person, PersonFilter, PersonFragments, PersonService, PersonToStringPipe, PersonUtils, PersonValidatorService, PlatformService, ProgressBarService, ProgressInterceptor, PropertiesFormTestPage, PropertiesFormTestingModule, PropertyEntity, PropertyEntityFilter, PropertyEntityValidator, PropertyFormatPipe, PropertyGetPipe, RESERVED_END_COLUMNS, RESERVED_START_COLUMNS, Referential, ReferentialFilter, ReferentialRef, ReferentialToStringPipe, ReferentialUtils, ReferentialValidatorService, RegisterConfirmPage, RegisterForm, RegisterModal, ResizableComponent, ResizableDirective, ResizableModule, RxStateModule, SCRYPT_PARAMS, SETTINGS_DISPLAY_COLUMNS, SETTINGS_FILTER, SETTINGS_PAGE_SIZE, SETTINGS_SORTED_COLUMN, SETTINGS_STORAGE_KEY, SETTINGS_TRANSIENT_PROPERTIES, SHARED_MATERIAL_TESTING_PAGES, SHARED_STORAGE_TESTING_PAGES, SHARED_TESTING_PAGES, SOCIAL_TESTING_PAGES, SPACE_PLACEHOLDER_CHAR, SelectPeerModal, SelectionLengthPipe, ServerErrorCodes, SettingsPage, SharedAsyncValidators, SharedBadgeModule, SharedDebugModule, SharedDirectivesModule, SharedFormArrayValidators, SharedFormGroupValidators, SharedHotkeysModule, SharedMatAutocompleteModule, SharedMatBooleanModule, SharedMatChipsModule, SharedMatDateTimeModule, SharedMatDurationModule, SharedMatLatLongModule, SharedMatSwipeModule, SharedMaterialModule, SharedModule, SharedNamedFilterModule, SharedPipesModule, SharedRoutingModule, SharedTestingModule, SharedTestsPage, SharedTextFormModule, SharedToolbarModule, SharedValidators, SocialErrorCodes, SocialModule, SocialModuleOptionsToken, SocialTestingModule, Software, StartableService, StatusById, StatusIds, StatusList, StorageDrivers, StorageExplorerComponent, StorageExplorerModule, StorageExplorerTestingModule, StorageExplorerTestingRoutingModule, StorageService, StrIncludesPipe, StrLengthPipe, SubMenuTabDirective, SwipeTestPage, Table2TestPage, TableSelectColumnsComponent, TableTestPage, TableTestingModule, TableValidatorService, TextForm, TextFormTestingPage, TextPopover, TextPopoverTestingModule, TextPopoverTestingPage, ToStringPipe, ToastTestingModule, ToastTestingPage, Toasts, TokenScope, ToolbarComponent, ToolbarToken, TranslatablePipe, TranslateContextPipe, TranslateContextService, TreeItemEntityUtils, UploadFile, UploadFileComponent, UploadFilePopover, UploadFileTestingModule, UploadFileTestingPage, UriUtils, UserEventModule, UserEventNotificationIcon, UserEventNotificationList, UserEventTestService, UserEventTestingModule, UserEventTestingPage, UserSettings, UserToken, UserTokenTable, UsersPage, ValueFormatPipe, accountToString, adaptValueToControl, addValueInArray, arrayDistinct, arraySize, asInputElement, canHaveFocus, capitalizeFirstLetter, chainPromises, changeCaseToUnderscore, clearValueInArray, collectByProperty, copyEntity2Form, createPromiseEvent, createPromiseEventEmitter, departmentToString, departmentsToString, disableControls, emitPromiseEvent, entityToString, equals, equalsOrNil, escapeRegExp, fadeInAnimation, fadeInOutAnimation, fadeInSlowAnimation, filterFalse, filterNotNil, filterNumberInput, filterTrue, findParentWithClass, firstArrayValue, firstFalse, firstFalsePromise, firstNotNil, firstNotNilPromise, firstTrue, firstTruePromise, focusInput, focusNextInput, focusPreviousInput, formatLatitude, formatLongitude, fromDateISOString, fromScrollEndEvent, fromUnixMsTimestamp, fromUnixTimestamp, getCaretPosition, getColorContrast, getColorShade, getColorTint, getConnectionType, getControlFromPath, getFocusableInputElements, getFormErrors, getFormValueFromEntity, getProperty, getPropertyByPath, getPropertyByPathAsString, getRandomImage, hexToRgb, hexToRgbArray, initArrayControlsFromValues, isAndroid, isBlankString, isCapacitor, isControlHasInput, isEmptyArray, isIOS, isInputElement, isInstanceOf, isInt, isMobile, isNil, isNilOrBlank, isNilOrNaN, isNotEmptyArray, isNotNil, isNotNilBoolean, isNotNilOrBlank, isNotNilOrNaN, isNotNilString, isNumber, isNumberRange, isOnFieldMode, isProgressEvent, isResponseEvent, isStartableService, isTouchUi, isWindows, joinProperties, joinPropertiesPath, logFormErrors, markAllAsTouched, markAsUntouched, markControlAsTouched, markFormGroupAsTouched, maskitoPrefixPlugin, matchMedia, matchUpperCase, mergeLoadResult, mixHex, moveInputCaretToSeparator, noTrailingSlash, notNilOrDefault, nullIfUndefined, parseLatitudeOrLongitude, propertiesPathComparator, propertyComparator, propertyPathComparator, referentialToString, referentialsToString, remove, removeAll, removeDiacritics, removeDuplicatesFromArray, removeEnd, removeValueInArray, replaceAll, resetCalculatedValue, resizeArray, rgbArrayToHex, rgbToHex, round, scrollFactory, selectInputContent, selectInputRange, setCalculatedValue, setPropertyByPath, setTabIndex, sleep, slideInAnimation, slideInOutAnimation, slideUpDownAnimation, sort, splitById, splitByProperty, startsWithUpperCase, suggestFromArray, suggestFromStringArray, tabindexComparator, testUserAgent, toBoolean, toDateISOString, toDuration, toFloat, toInt, toNotNil, toNumber, trimEmptyToNull, uncapitalizeFirstLetter, undefinedIfNull, underscoreToChangeCase, updateValueAndValidity, waitFor, waitForFalse, waitForTrue, waitIdle, waitWhilePending };
|
|
42004
|
+
export { APP_ABOUT_DEVELOPERS, APP_ABOUT_PARTNERS, APP_CONFIG_OPTIONS, APP_DEBUG_DATA_SERVICE, APP_FORM_ERROR_I18N_KEYS, APP_GRAPHQL_FRAGMENTS, APP_GRAPHQL_TYPE_POLICIES, APP_HOME_BUTTONS, APP_JOB_PROGRESSION_SERVICE, APP_LOCALES, APP_LOCAL_SETTINGS, APP_LOCAL_SETTINGS_OPTIONS, APP_LOCAL_STORAGE_TYPE_POLICIES, APP_LOGGING_SERVICE, APP_MENU_ITEMS, APP_MENU_OPTIONS, APP_NAMED_FILTER_SERVICE, APP_PROGRESS_BAR_SERVICE, APP_SETTINGS_MENU_ITEMS, APP_STORAGE, APP_STORAGE_EXPLORER_PROTECTED_KEYS, APP_TESTING_PAGES, APP_USER_EVENT_LIST_INFINITE_SCROLL_THRESHOLD, APP_USER_EVENT_SERVICE, APP_USER_SETTINGS_OPTIONS, APP_USER_TOKEN_SCOPES, AboutModal, AbstractNamedFilterService, AbstractSelectionModelPipe, AbstractTableSelectionPipe, AbstractUserEventService, Account, AccountPage, AccountService, AccountToStringPipe, AccountUtils, ActionsColumnComponent, AdminModule, AdminRoutingModule, AdminUsersModule, Alerts, AndroidOsEnvironment, AppAboutModalModule, AppAccountModule, AppAsyncTable, AppAuthForm, AppAuthModal, AppAuthModule, AppEditor, AppEditorOptions, AppEntityEditor, AppEntityEditorModal, AppEntityEditorModalOptions, AppEntityFormModule, AppForm, AppFormArray, AppFormButtonsBarModule, AppFormContainer, AppFormField, AppFormModule, AppFormProvider, AppFormUtils, AppGestureConfig, AppGraphQLModule, AppHelpModal, AppHomePageModule, AppIconComponent, AppIconModule, AppImageGalleryComponent, AppInMemoryTable, AppInstallUpgradeCard, AppInstallUpgradeCardModule, AppListForm, AppListFormModule, AppLoadingSpinner, AppMenuModule, AppNullForm, AppPropertiesForm, AppPropertiesFormModule, AppPropertiesTable, AppRegisterModule, AppRowField, AppSelectPeerModule, AppSettingsPageModule, AppTabEditor, AppTabEditorOptions, AppTable, AppTableModule, AppTableUtils, AppTextPopoverModule, AppUpdateOfflineModeCard, AppUpdateOfflineModeCardModule, AppValidatorService, ArrayFilterPipe, ArrayFirstPipe, ArrayIncludesPipe, ArrayJoinPipe, ArrayLengthPipe, ArrayPluckPipe, AsAnyPipe, AsArrayPipe, AsFloatLabelTypePipe, AsObservablePipe, AudioProvider, AudioTestingModule, AudioTestingPage, AuthGuardService, AutoTitleDirective, AutocompleteTestPage, AutofocusDirective, BadgeDirective, BadgeNumberPipe, Base58, BaseEntityService, BaseGraphqlService, BaseGraphqlServiceOptions, BaseReferential, Beans, BooleanFormatPipe, BooleanTestPage, CORE_CONFIG_OPTIONS, CORE_TESTING_PAGES, CapitalizePipe, CellValueChangeListener, ChipsTestPage, Color, ColorScale, ComponentDirtyGuard, ConfigFragments, ConfigService, Configuration, CoreModule, CorePipesModule, CoreTestingModule, CryptoService, CsvUtils, DATE_ISO_PATTERN, DATE_MATCH_REGEXP, DATE_PATTERN, DATE_UNIX_MS_TIMESTAMP, DATE_UNIX_TIMESTAMP, DEFAULT_MENU_SHOW_WHEN, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZE_OPTIONS, DEFAULT_PLACEHOLDER_CHAR, DEFAULT_REQUIRED_COLUMNS, DateDiffDurationPipe, DateFormatPipe, DateFormatService, DateFromNowPipe, DateShortTestPage, DateTestPage, DateTimeTestPage, DateUtils, DebugComponent, Department, DepartmentToStringPipe, DragAndDropDirective, DurationPipe, DurationTestPage, ED25519_SEED_LENGTH, EMPTY_PLACEHOLDER_CHAR, ENTITIES_STORAGE_KEY_PREFIX, ENVIRONMENT, EmptyArrayPipe, EntitiesAsyncTableDataSource, EntitiesStorage, EntitiesTableDataSource, Entity, EntityClass, EntityClasses, EntityFilter, EntityFilterUtils, EntityMetadataComponent, EntityStore, EntityUtils, Environment, EnvironmentHttpLoader, EnvironmentLoader, ErrorCodes, EvenPipe, FileResponse, FileService, FileSizePipe, FilesUtils, FormArrayHelper, FormButtonsBarComponent, FormButtonsBarToken, FormErrorTranslatePipe, FormErrorTranslator, FormFieldValuesHolder, FormGetArrayPipe, FormGetControlPipe, FormGetGroupPipe, FormGetPipe, FormGetValuePipe, GalleryTestPage, GeolocationUtils, GraphqlService, HAMMER_PRESS_TIME, HAMMER_TAP_TIME, HighlightPipe, HomePage, Hotkeys, HotkeysDialogComponent, IMAGE_DEFAULTS, IPosition, ImageAttachment, ImageAttachmentFilter, ImageAttachmentService, ImageGalleryModule, ImageGalleryTestingModule, ImageModule, ImageService, ImagesUtils, InMemoryEntitiesService, IsAllSelectedPipe, IsEmptySelectionPipe, IsLoginAccountPipe, IsMultipleSelectionPipe, IsNilOrBlankPipe, IsNilOrNaNPipe, IsNilPipe, IsNotAllSelectedPipe, IsNotEmptySelectionPipe, IsNotNilOrBlankPipe, IsNotNilOrNaNPipe, IsNotNilPipe, IsOnDeskPipe, IsOnFieldPipe, IsSelectedPipe, IsSingleSelectionPipe, JobModule, JobProgression, JobProgressionComponent, JobProgressionIcon, JobProgressionList, JobProgressionService, JobProgressionTestService, JobProgressionTestingPage, JobTestingModule, JobUtils, JsonUtils, KEYBOARD_HIDE_DELAY_MS, LAT_LONG_DEFAULT_MAX_DECIMALS, LAT_LONG_PATTERNS, LatLongFormatPipe, LatLongTestPage, LatitudeFormatPipe, LocalSettingsService, LogLevel, LogUtils, Logger, LoggingService, LoggingServiceModule, LongitudeFormatPipe, MAT_FORM_FIELD_DEFAULT_APPEARANCE, MAT_FORM_FIELD_DEFAULT_SUBSCRIPT_SIZING, MINIFY_ENTITY_FOR_LOCAL_STORAGE, MINIFY_ENTITY_FOR_POD, MOMENT_NO_TIME_PROPERTY, MapGetPipe, MapKeysPipe, MapValuesPipe, MaskitoPlaceholderPipe, MatAutocompleteConfigHolder, MatAutocompleteField, MatAutocompleteFieldUtils, MatBadgeTestPage, MatBooleanField, MatChipsField, MatColorPipe, MatCommonTestPage, MatDate, MatDateShort, MatDateTime, MatDuration, MatLatLongField, MatPaginatorI18n, MatStepperI18n, MatSwipeField, MaterialTestingModule, MathAbsPipe, MenuComponent, MenuItem, MenuItems, MenuOptions, MenuService, MenuTestingModule, MenuTestingPage, Message, MessageFilter, MessageForm, MessageModal, MessageModule, MessageService, MessageTypeList, MessageTypes, MimeTypes, ModalToolbarComponent, NETWORK_DEFAULT_CONNECTION_TIMEOUT, NamedFilter, NamedFilterFilter, NamedFilterSelector, NetworkService, NewTokenModal, NgInitDirective, NgVarDirective, NotEmptyArrayPipe, NumberFormatPipe, ObservableTestPage, OddPipe, OtherMenuTestingPage, PEER_URL_REGEXP, PRIORITIZED_AUTHORITIES, PUBKEY_REGEXP, Peer, Person, PersonFilter, PersonFragments, PersonService, PersonToStringPipe, PersonUtils, PersonValidatorService, PlatformService, ProgressBarService, ProgressInterceptor, PropertiesFormTestPage, PropertiesFormTestingModule, PropertyEntity, PropertyEntityFilter, PropertyEntityValidator, PropertyFormatPipe, PropertyGetPipe, RESERVED_END_COLUMNS, RESERVED_START_COLUMNS, Referential, ReferentialFilter, ReferentialRef, ReferentialToStringPipe, ReferentialUtils, ReferentialValidatorService, RegisterConfirmPage, RegisterForm, RegisterModal, ResizableComponent, ResizableDirective, ResizableModule, RxStateModule, SCRYPT_PARAMS, SETTINGS_DISPLAY_COLUMNS, SETTINGS_FILTER, SETTINGS_PAGE_SIZE, SETTINGS_SORTED_COLUMN, SETTINGS_STORAGE_KEY, SETTINGS_TRANSIENT_PROPERTIES, SHARED_MATERIAL_TESTING_PAGES, SHARED_STORAGE_TESTING_PAGES, SHARED_TESTING_PAGES, SOCIAL_TESTING_PAGES, SPACE_PLACEHOLDER_CHAR, SelectPeerModal, SelectionLengthPipe, ServerErrorCodes, SettingsPage, SharedAsyncValidators, SharedBadgeModule, SharedDebugModule, SharedDirectivesModule, SharedFormArrayValidators, SharedFormGroupValidators, SharedHotkeysModule, SharedMatAutocompleteModule, SharedMatBooleanModule, SharedMatChipsModule, SharedMatDateTimeModule, SharedMatDurationModule, SharedMatLatLongModule, SharedMatSwipeModule, SharedMaterialModule, SharedModule, SharedNamedFilterModule, SharedPipesModule, SharedRoutingModule, SharedTestingModule, SharedTestsPage, SharedTextFormModule, SharedToolbarModule, SharedValidators, SocialErrorCodes, SocialModule, SocialModuleOptionsToken, SocialTestingModule, Software, StartableService, StatusById, StatusIds, StatusList, StorageDrivers, StorageExplorerComponent, StorageExplorerModule, StorageExplorerTestingModule, StorageExplorerTestingRoutingModule, StorageService, StrIncludesPipe, StrLengthPipe, SubMenuTabDirective, SwipeTestPage, Table2TestPage, TableSelectColumnsComponent, TableTestPage, TableTestingModule, TableValidatorService, TextForm, TextFormTestingPage, TextPopover, TextPopoverTestingModule, TextPopoverTestingPage, ToStringPipe, ToastTestingModule, ToastTestingPage, Toasts, TokenScope, ToolbarComponent, ToolbarToken, TranslatablePipe, TranslateContextPipe, TranslateContextService, TreeItemEntityUtils, UploadFile, UploadFileComponent, UploadFilePopover, UploadFileTestingModule, UploadFileTestingPage, UriUtils, UserEventModule, UserEventNotificationIcon, UserEventNotificationList, UserEventTestService, UserEventTestingModule, UserEventTestingPage, UserSettings, UserToken, UserTokenTable, UsersPage, ValueFormatPipe, accountToString, adaptValueToControl, addValueInArray, arrayDistinct, arraySize, asInputElement, booleanToString, canHaveFocus, capitalizeFirstLetter, chainPromises, changeCaseToUnderscore, clearValueInArray, collectByProperty, copyEntity2Form, createPromiseEvent, createPromiseEventEmitter, departmentToString, departmentsToString, disableControls, emitPromiseEvent, entityToString, equals, equalsOrNil, escapeRegExp, fadeInAnimation, fadeInOutAnimation, fadeInSlowAnimation, filterFalse, filterNotNil, filterNumberInput, filterTrue, findParentWithClass, firstArrayValue, firstFalse, firstFalsePromise, firstNotNil, firstNotNilPromise, firstTrue, firstTruePromise, focusInput, focusNextInput, focusPreviousInput, formatLatitude, formatLongitude, fromDateISOString, fromScrollEndEvent, fromUnixMsTimestamp, fromUnixTimestamp, getCaretPosition, getColorContrast, getColorShade, getColorTint, getConnectionType, getControlFromPath, getFocusableInputElements, getFormErrors, getFormValueFromEntity, getProperty, getPropertyByPath, getPropertyByPathAsString, getRandomImage, hexToRgb, hexToRgbArray, initArrayControlsFromValues, isAndroid, isBlankString, isCapacitor, isControlHasInput, isEmptyArray, isIOS, isInputElement, isInstanceOf, isInt, isMobile, isNil, isNilOrBlank, isNilOrNaN, isNotEmptyArray, isNotNil, isNotNilBoolean, isNotNilOrBlank, isNotNilOrNaN, isNotNilString, isNumber, isNumberRange, isOnFieldMode, isProgressEvent, isResponseEvent, isStartableService, isTouchUi, isWindows, joinProperties, joinPropertiesPath, logFormErrors, markAllAsTouched, markAsUntouched, markControlAsTouched, markFormGroupAsTouched, maskitoPrefixPlugin, matchMedia, matchUpperCase, mergeLoadResult, mixHex, moveInputCaretToSeparator, noTrailingSlash, notNilOrDefault, nullIfUndefined, parseLatitudeOrLongitude, propertiesPathComparator, propertyComparator, propertyPathComparator, referentialToString, referentialsToString, remove, removeAll, removeDiacritics, removeDuplicatesFromArray, removeEnd, removeValueInArray, replaceAll, resetCalculatedValue, resizeArray, rgbArrayToHex, rgbToHex, round, scrollFactory, selectInputContent, selectInputRange, setCalculatedValue, setPropertyByPath, setTabIndex, sleep, slideInAnimation, slideInOutAnimation, slideUpDownAnimation, sort, splitById, splitByProperty, startsWithUpperCase, suggestFromArray, suggestFromStringArray, tabindexComparator, testUserAgent, toBoolean, toDateISOString, toDuration, toFloat, toInt, toNotNil, toNumber, trimEmptyToNull, uncapitalizeFirstLetter, undefinedIfNull, underscoreToChangeCase, updateValueAndValidity, waitFor, waitForFalse, waitForTrue, waitIdle, waitWhilePending };
|
|
41973
42005
|
//# sourceMappingURL=sumaris-net.ngx-components.mjs.map
|