@sumaris-net/ngx-components 0.27.22 → 0.28.2
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/bundles/sumaris-net.ngx-components.umd.js +119 -42
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +2 -2
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/esm2015/src/app/core/form/editor.class.js +10 -2
- package/esm2015/src/app/core/form/entity-editor.class.js +15 -7
- package/esm2015/src/app/core/form/form.class.js +3 -1
- package/esm2015/src/app/shared/dates.js +2 -2
- package/esm2015/src/app/shared/functions.js +55 -1
- package/esm2015/src/app/shared/pipes/translate-context.pipe.js +8 -12
- package/esm2015/src/app/shared/services/translate-context.service.js +3 -6
- package/fesm2015/sumaris-net.ngx-components.js +88 -20
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/core/form/editor.class.d.ts +2 -0
- package/src/app/shared/functions.d.ts +14 -0
- package/src/app/shared/services/translate-context.service.d.ts +0 -1
- package/sumaris-net.ngx-components.metadata.json +1 -1
|
@@ -46,7 +46,6 @@ import * as momentImported from 'moment';
|
|
|
46
46
|
import { isMoment } from 'moment';
|
|
47
47
|
import * as i1 from '@angular/material-moment-adapter';
|
|
48
48
|
import { MomentDateAdapter, MatMomentDateModule } from '@angular/material-moment-adapter';
|
|
49
|
-
import { isDefined, equals } from '@ngx-translate/core/lib/util';
|
|
50
49
|
import { Keyboard } from '@ionic-native/keyboard/ngx';
|
|
51
50
|
import { TextMaskModule } from 'angular2-text-mask';
|
|
52
51
|
import { NgxMaterialTimepickerModule } from 'ngx-material-timepicker';
|
|
@@ -464,6 +463,60 @@ function splitById(array) {
|
|
|
464
463
|
return res;
|
|
465
464
|
}, {});
|
|
466
465
|
}
|
|
466
|
+
/**
|
|
467
|
+
* Determines if two objects or two values are equivalent.
|
|
468
|
+
*
|
|
469
|
+
* Two objects or values are considered equivalent if at least one of the following is true:
|
|
470
|
+
*
|
|
471
|
+
* * Both objects or values pass `===` comparison.
|
|
472
|
+
* * Both objects or values are of the same type and all of their properties are equal by
|
|
473
|
+
* comparing them with `equals`.
|
|
474
|
+
*
|
|
475
|
+
* @param o1 Object or value to compare.
|
|
476
|
+
* @param o2 Object or value to compare.
|
|
477
|
+
* @returns true if arguments are equal.
|
|
478
|
+
*/
|
|
479
|
+
function equals(o1, o2) {
|
|
480
|
+
if (o1 === o2)
|
|
481
|
+
return true;
|
|
482
|
+
if (o1 === null || o2 === null)
|
|
483
|
+
return false;
|
|
484
|
+
if (o1 !== o1 && o2 !== o2)
|
|
485
|
+
return true; // NaN === NaN
|
|
486
|
+
let t1 = typeof o1, t2 = typeof o2, length, key, keySet;
|
|
487
|
+
if (t1 == t2 && t1 == 'object') {
|
|
488
|
+
if (Array.isArray(o1)) {
|
|
489
|
+
if (!Array.isArray(o2))
|
|
490
|
+
return false;
|
|
491
|
+
if ((length = o1.length) == o2.length) {
|
|
492
|
+
for (key = 0; key < length; key++) {
|
|
493
|
+
if (!equals(o1[key], o2[key]))
|
|
494
|
+
return false;
|
|
495
|
+
}
|
|
496
|
+
return true;
|
|
497
|
+
}
|
|
498
|
+
}
|
|
499
|
+
else {
|
|
500
|
+
if (Array.isArray(o2)) {
|
|
501
|
+
return false;
|
|
502
|
+
}
|
|
503
|
+
keySet = Object.create(null);
|
|
504
|
+
for (key in o1) {
|
|
505
|
+
if (!equals(o1[key], o2[key])) {
|
|
506
|
+
return false;
|
|
507
|
+
}
|
|
508
|
+
keySet[key] = true;
|
|
509
|
+
}
|
|
510
|
+
for (key in o2) {
|
|
511
|
+
if (!(key in keySet) && typeof o2[key] !== 'undefined') {
|
|
512
|
+
return false;
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
return true;
|
|
516
|
+
}
|
|
517
|
+
}
|
|
518
|
+
return false;
|
|
519
|
+
}
|
|
467
520
|
class Beans {
|
|
468
521
|
/**
|
|
469
522
|
* Copy a source object, by including only properties of the given dataType.
|
|
@@ -2059,7 +2112,7 @@ class DateUtils {
|
|
|
2059
2112
|
return date1 && date2 && date1.isSameOrBefore(date2) ? date1 : date2;
|
|
2060
2113
|
}
|
|
2061
2114
|
static max(date1, date2) {
|
|
2062
|
-
return date1
|
|
2115
|
+
return !date1 ? date2 : (!date2 || date1.isSameOrAfter(date2) ? date1 : date2);
|
|
2063
2116
|
}
|
|
2064
2117
|
}
|
|
2065
2118
|
function toDateISOString(value) {
|
|
@@ -2376,11 +2429,9 @@ class TranslateContextService {
|
|
|
2376
2429
|
constructor(translate) {
|
|
2377
2430
|
this.translate = translate;
|
|
2378
2431
|
}
|
|
2379
|
-
getParsedResult(translations, key, interpolateParams) {
|
|
2380
|
-
}
|
|
2381
2432
|
get(key, context, interpolateParams) {
|
|
2382
2433
|
// No context: do a normal translate
|
|
2383
|
-
if (!
|
|
2434
|
+
if (!isNil(context))
|
|
2384
2435
|
return this.translate.get(key, interpolateParams);
|
|
2385
2436
|
// Compute a contextual i18n key, using the context as suffix
|
|
2386
2437
|
const contextKey = this.contextualKey(key, context);
|
|
@@ -2438,9 +2489,10 @@ class TranslateContextPipe {
|
|
|
2438
2489
|
if (!query || !query.length) {
|
|
2439
2490
|
return query;
|
|
2440
2491
|
}
|
|
2441
|
-
const suffix =
|
|
2492
|
+
const suffix = params && params.length ? params[0] : '';
|
|
2493
|
+
params = suffix && params.slice(1);
|
|
2442
2494
|
// if we ask another time for the same key, return the last value
|
|
2443
|
-
if (
|
|
2495
|
+
if (equalsOrNil(query, this.lastKey)
|
|
2444
2496
|
&& equals(suffix, this.lastSuffix)
|
|
2445
2497
|
&& equals(params, this.lastParams)) {
|
|
2446
2498
|
return this.value;
|
|
@@ -2456,12 +2508,11 @@ class TranslateContextPipe {
|
|
|
2456
2508
|
return this.value;
|
|
2457
2509
|
}
|
|
2458
2510
|
}
|
|
2459
|
-
TranslateContextPipe.ɵprov = i0.ɵɵdefineInjectable({ factory: function TranslateContextPipe_Factory() { return new TranslateContextPipe(i0.ɵɵinject(TranslateContextService), i0.ɵɵinject(i0.ChangeDetectorRef)); }, token: TranslateContextPipe, providedIn: "root" });
|
|
2460
2511
|
TranslateContextPipe.decorators = [
|
|
2512
|
+
{ type: Injectable },
|
|
2461
2513
|
{ type: Pipe, args: [{
|
|
2462
2514
|
name: 'translateContext'
|
|
2463
|
-
},] }
|
|
2464
|
-
{ type: Injectable, args: [{ providedIn: 'root' },] }
|
|
2515
|
+
},] }
|
|
2465
2516
|
];
|
|
2466
2517
|
TranslateContextPipe.ctorParameters = () => [
|
|
2467
2518
|
{ type: TranslateContextService },
|
|
@@ -2474,12 +2525,11 @@ class TranslatablePipe {
|
|
|
2474
2525
|
return (_a = changeCaseToUnderscore(value)) === null || _a === void 0 ? void 0 : _a.toUpperCase();
|
|
2475
2526
|
}
|
|
2476
2527
|
}
|
|
2477
|
-
TranslatablePipe.ɵprov = i0.ɵɵdefineInjectable({ factory: function TranslatablePipe_Factory() { return new TranslatablePipe(); }, token: TranslatablePipe, providedIn: "root" });
|
|
2478
2528
|
TranslatablePipe.decorators = [
|
|
2479
2529
|
{ type: Pipe, args: [{
|
|
2480
2530
|
name: 'translatable'
|
|
2481
2531
|
},] },
|
|
2482
|
-
{ type: Injectable
|
|
2532
|
+
{ type: Injectable }
|
|
2483
2533
|
];
|
|
2484
2534
|
|
|
2485
2535
|
class PropertyGetPipe {
|
|
@@ -16719,6 +16769,8 @@ class AppForm {
|
|
|
16719
16769
|
console.debug('[form] Updating form (using entity)', data);
|
|
16720
16770
|
// Convert object to json, then apply it to form (e.g. convert 'undefined' into 'null')
|
|
16721
16771
|
AppFormUtils.copyEntity2Form(data, this.form, Object.assign({ emitEvent: false, onlySelf: true }, opts));
|
|
16772
|
+
if (this._loading)
|
|
16773
|
+
this.markAsLoaded(Object.assign({ emitEvent: false, onlySelf: true }, opts));
|
|
16722
16774
|
if (!opts || opts.emitEvent !== true)
|
|
16723
16775
|
this.markForCheck();
|
|
16724
16776
|
}
|
|
@@ -21965,6 +22017,9 @@ class AppEditor {
|
|
|
21965
22017
|
get tables() {
|
|
21966
22018
|
return this._children && this._children.filter(c => c instanceof AppTable);
|
|
21967
22019
|
}
|
|
22020
|
+
get forms() {
|
|
22021
|
+
return this._children && this._children.filter(c => c instanceof AppForm);
|
|
22022
|
+
}
|
|
21968
22023
|
get dirty() {
|
|
21969
22024
|
var _a;
|
|
21970
22025
|
return this._dirty || (((_a = this._children) === null || _a === void 0 ? void 0 : _a.findIndex(c => c.enabled && c.dirty)) !== -1) || false;
|
|
@@ -22085,10 +22140,15 @@ class AppEditor {
|
|
|
22085
22140
|
}
|
|
22086
22141
|
}
|
|
22087
22142
|
markAsLoaded(opts) {
|
|
22143
|
+
var _a;
|
|
22088
22144
|
if (this._loading) {
|
|
22089
22145
|
this._loading = false;
|
|
22090
|
-
if (!opts || opts.emitEvent !== false)
|
|
22146
|
+
if (!opts || opts.emitEvent !== false) {
|
|
22147
|
+
// Emit to children forms
|
|
22148
|
+
// Tables should be changed by parent
|
|
22149
|
+
(_a = this.forms) === null || _a === void 0 ? void 0 : _a.forEach(c => c.markAsLoaded(opts));
|
|
22091
22150
|
this.markForCheck();
|
|
22151
|
+
}
|
|
22092
22152
|
}
|
|
22093
22153
|
}
|
|
22094
22154
|
markAsReady(opts) {
|
|
@@ -22606,12 +22666,20 @@ class AppEntityEditor extends AppTabEditor {
|
|
|
22606
22666
|
this.error = null;
|
|
22607
22667
|
// New data
|
|
22608
22668
|
if (isNil(id)) {
|
|
22609
|
-
|
|
22610
|
-
|
|
22611
|
-
|
|
22612
|
-
|
|
22613
|
-
|
|
22614
|
-
|
|
22669
|
+
try {
|
|
22670
|
+
// Create using default values
|
|
22671
|
+
const data = new this.dataType();
|
|
22672
|
+
this._usageMode = this.computeUsageMode(data);
|
|
22673
|
+
yield this.onNewEntity(data, opts);
|
|
22674
|
+
yield this.updateView(data, Object.assign({ openTabIndex: 0 }, opts));
|
|
22675
|
+
}
|
|
22676
|
+
catch (err) {
|
|
22677
|
+
this.setError(err);
|
|
22678
|
+
this.selectedTabIndex = 0;
|
|
22679
|
+
}
|
|
22680
|
+
finally {
|
|
22681
|
+
this.markAsLoaded();
|
|
22682
|
+
}
|
|
22615
22683
|
}
|
|
22616
22684
|
// Load existing data
|
|
22617
22685
|
else {
|
|
@@ -24182,5 +24250,5 @@ const ErrorCodes = {
|
|
|
24182
24250
|
* Generated bundle index. Do not edit.
|
|
24183
24251
|
*/
|
|
24184
24252
|
|
|
24185
|
-
export { APP_ABOUT_DEVELOPERS, APP_ABOUT_PARTNERS, APP_CONFIG_OPTIONS, APP_FORM_ERROR_I18N_KEYS, APP_GRAPHQL_TYPE_POLICIES, APP_HOME_BUTTONS, APP_LOCALES, APP_LOCAL_SETTINGS, APP_LOCAL_SETTINGS_OPTIONS, APP_LOCAL_STORAGE_TYPE_POLICIES, APP_MENU_ITEMS, APP_TESTING_PAGES, AboutModal, Account, AccountPage, AccountService, AccountToStringPipe, ActionsColumnComponent, AdminModule, AdminRoutingModule, Alerts, AnimationState, AppEditor, AppEditorOptions, AppEntityEditor, AppForm, AppFormField, AppFormProvider, AppFormUtils, AppGestureConfig, AppGraphQLModule, AppHelpModal, AppInMemoryTable, AppInstallUpgradeCard, AppListForm, AppLoadingSpinner, AppMenuModule, AppNullForm, AppPropertiesForm, AppTabEditor, AppTabEditorOptions, AppTable, AppTableDataSourceOptions, AppTableUtils, AppValidatorService, AppendToInputDirective, ArrayFilterPipe, ArrayFirstPipe, ArrayIncludesPipe, ArrayLengthPipe, ArrayPluckPipe, AudioProvider, AuthForm, AuthGuardService, AuthModal, AutocompleteTestPage, AutofocusDirective, Base58, BaseEntityService, BaseGraphqlService, BaseGraphqlServiceOptions, BaseReferential, Beans, CORE_CONFIG_OPTIONS, CellValueChangeListener, ChipsTestPage, Color, ColorScale, ComponentDirtyGuard, ConfigService, Configuration, CoreModule, CryptoService, DATE_ISO_PATTERN, DATE_UNIX_MS_TIMESTAMP, DATE_UNIX_TIMESTAMP, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZE_OPTIONS, DEFAULT_PLACEHOLDER_CHAR, DEFAULT_REQUIRED_COLUMNS, DateDiffDurationPipe, DateFormatPipe, DateFromNowPipe, DateTimeTestPage, DateUtils, Department, DepartmentToStringPipe, DurationPipe, ENTITIES_STORAGE_KEY_PREFIX, ENVIRONMENT, EmptyArrayPipe, EntitiesService, EntitiesStorage, EntitiesTableDataSource, Entity, EntityClass, EntityClasses, EntityFilter, EntityFilterUtils, EntityMetadataComponent, EntityStore, EntityUtils, Environment, ErrorCodes, EvenPipe, FileService, FileSizePipe, FormArrayHelper, FormButtonsBarComponent, FormButtonsBarToken, FormErrorTranslatePipe, FormErrorTranslator, FormFieldValuesHolder, Fragments, GraphqlService, HAMMER_PRESS_TIME, HAMMER_TAP_TIME, HighlightPipe, HomePage, Hotkeys, HotkeysDialogComponent, InMemoryEntitiesService, IsLoginAccountPipe, IsNilOrBlankPipe, IsNotNilOrBlankPipe, IsNotOnFieldModePipe, IsOnFieldModePipe, JobUtils, KEYBOARD_HIDE_DELAY_MS, LAT_LONG_DEFAULT_MAX_DECIMALS, LAT_LONG_PATTERNS, LatLongFormatPipe, LatLongTestPage, LatitudeFormatPipe, LocalSettingsService, LongitudeFormatPipe, MINIFY_ENTITY_FOR_LOCAL_STORAGE, MINIFY_ENTITY_FOR_POD, MapGetPipe, MapKeysPipe, MapValuesPipe, MatAutocompleteConfigHolder, MatAutocompleteField, MatBooleanField, MatChipsField, MatDate, MatDateShort, MatDateTime, MatDuration, MatLatLongField, MatNumpadComponent, MatNumpadContainerComponent, MatNumpadContent, MatPaginatorI18n, MatStepperI18n, MatSwipeField, MaterialChipsModule, MaterialTestingModule, MaterialTestingPage, MathAbsPipe, MenuComponent, MenuItems, MenuService, ModalToolbarComponent, NetworkService, NgInitDirective, NotEmptyArrayPipe, NumberFormatPipe, NumpadDirective, OddPipe, PRIORITIZED_AUTHORITIES, PUBKEY_REGEXP, Peer, Person, PersonFilter, PersonFragments, PersonService, PersonToStringPipe, PersonUtils, PersonValidatorService, PlatformService, ProgressBarService, ProgressInterceptor, PropertyGetPipe, RESERVED_END_COLUMNS, RESERVED_START_COLUMNS, Referential, ReferentialRef, ReferentialUtils, RegisterConfirmPage, SETTINGS_DISPLAY_COLUMNS, SETTINGS_FILTER, SETTINGS_PAGE_SIZE, SETTINGS_SORTED_COLUMN, SETTINGS_STORAGE_KEY, SETTINGS_TRANSIENT_PROPERTIES, SPACE_PLACEHOLDER_CHAR, SelectPeerModal, SettingsPage, SharedDirectivesModule, SharedFormArrayValidators, SharedFormGroupValidators, SharedHotkeysModule, SharedMatAutocompleteModule, SharedMatBooleanModule, SharedMatDateTimeModule, SharedMatDurationModule, SharedMatLatLongModule, SharedMatNumpadModule, SharedMatSwipeModule, SharedMaterialModule, SharedModule, SharedPipesModule, SharedRoutingModule, SharedTestingModule, SharedValidators, SocialModule, Software, StartableService, StatusById, StatusIds, StatusList, StrLengthPipe, SwipeTestPage, TableSelectColumnsComponent, ToStringPipe, Toasts, ToolbarComponent, ToolbarToken, TranslatablePipe, TranslateContextPipe, TranslateContextService, UserEvent, UserEventFilter, UserEventService, UserEventTypes, UserEventsTable, UserSettings, UsersPage, accountToString, adaptValueToControl, addValueInArray, arrayDistinct, arrayGroupBy, arraySize, asInputElement, canHaveFocus, capitalizeFirstLetter, chainPromises, changeCaseToUnderscore, clearValueInArray, copyEntity2Form, createPromiseEvent, createPromiseEventEmitter, departmentToString, departmentsToString, disableControls, emitPromiseEvent, entityToString, equalsOrNil, fadeInAnimation, fadeInOutAnimation, filterFalse, filterNotNil, filterNumberInput, filterTrue, firstArrayValue, firstFalsePromise, firstNotNil, firstNotNilPromise, 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, isControlHasInput, isEmptyArray, isInputElement, isInstanceOf, isInt, isNil, isNilOrBlank, isNilOrNaN, isNotEmptyArray, isNotNil, isNotNilOrBlank, isNotNilOrNaN, isNotNilString, isNumber, isNumberRange, joinProperties, joinPropertiesPath, logFormErrors, markAllAsTouched, markAsUntouched, markControlAsTouched, markFormGroupAsTouched, 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, setTabIndex, sleep, slideInOutAnimation, slideUpDownAnimation, sort, splitById, splitByProperty, startsWithUpperCase, suggestFromArray, suggestFromStringArray, tabindexComparator, toBoolean, toDateISOString, toDuration, toFloat, toInt, toNotNil, toNumber, trimEmptyToNull, uncapitalizeFirstLetter, updateValueAndValidity, waitFor, waitIdle, waitWhilePending, ɵ0$5 as ɵ0, CustomReuseStrategy as ɵa, MatNumpadDomService as ɵb, SharedMatBadgeIconModule as ɵc, MatBadgeIconDirective as ɵd, isFocusableElement as ɵe, MatBadgeIconTestPage as ɵf, RegisterForm as ɵg, AccountValidatorService as ɵh, RegisterModal as ɵi, UserSettingsValidatorService as ɵj, LocalSettingsValidatorService as ɵk, AppIconComponent as ɵl };
|
|
24253
|
+
export { APP_ABOUT_DEVELOPERS, APP_ABOUT_PARTNERS, APP_CONFIG_OPTIONS, APP_FORM_ERROR_I18N_KEYS, APP_GRAPHQL_TYPE_POLICIES, APP_HOME_BUTTONS, APP_LOCALES, APP_LOCAL_SETTINGS, APP_LOCAL_SETTINGS_OPTIONS, APP_LOCAL_STORAGE_TYPE_POLICIES, APP_MENU_ITEMS, APP_TESTING_PAGES, AboutModal, Account, AccountPage, AccountService, AccountToStringPipe, ActionsColumnComponent, AdminModule, AdminRoutingModule, Alerts, AnimationState, AppEditor, AppEditorOptions, AppEntityEditor, AppForm, AppFormField, AppFormProvider, AppFormUtils, AppGestureConfig, AppGraphQLModule, AppHelpModal, AppInMemoryTable, AppInstallUpgradeCard, AppListForm, AppLoadingSpinner, AppMenuModule, AppNullForm, AppPropertiesForm, AppTabEditor, AppTabEditorOptions, AppTable, AppTableDataSourceOptions, AppTableUtils, AppValidatorService, AppendToInputDirective, ArrayFilterPipe, ArrayFirstPipe, ArrayIncludesPipe, ArrayLengthPipe, ArrayPluckPipe, AudioProvider, AuthForm, AuthGuardService, AuthModal, AutocompleteTestPage, AutofocusDirective, Base58, BaseEntityService, BaseGraphqlService, BaseGraphqlServiceOptions, BaseReferential, Beans, CORE_CONFIG_OPTIONS, CellValueChangeListener, ChipsTestPage, Color, ColorScale, ComponentDirtyGuard, ConfigService, Configuration, CoreModule, CryptoService, DATE_ISO_PATTERN, DATE_UNIX_MS_TIMESTAMP, DATE_UNIX_TIMESTAMP, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZE_OPTIONS, DEFAULT_PLACEHOLDER_CHAR, DEFAULT_REQUIRED_COLUMNS, DateDiffDurationPipe, DateFormatPipe, DateFromNowPipe, DateTimeTestPage, DateUtils, Department, DepartmentToStringPipe, DurationPipe, ENTITIES_STORAGE_KEY_PREFIX, ENVIRONMENT, EmptyArrayPipe, EntitiesService, EntitiesStorage, EntitiesTableDataSource, Entity, EntityClass, EntityClasses, EntityFilter, EntityFilterUtils, EntityMetadataComponent, EntityStore, EntityUtils, Environment, ErrorCodes, EvenPipe, FileService, FileSizePipe, FormArrayHelper, FormButtonsBarComponent, FormButtonsBarToken, FormErrorTranslatePipe, FormErrorTranslator, FormFieldValuesHolder, Fragments, GraphqlService, HAMMER_PRESS_TIME, HAMMER_TAP_TIME, HighlightPipe, HomePage, Hotkeys, HotkeysDialogComponent, InMemoryEntitiesService, IsLoginAccountPipe, IsNilOrBlankPipe, IsNotNilOrBlankPipe, IsNotOnFieldModePipe, IsOnFieldModePipe, JobUtils, KEYBOARD_HIDE_DELAY_MS, LAT_LONG_DEFAULT_MAX_DECIMALS, LAT_LONG_PATTERNS, LatLongFormatPipe, LatLongTestPage, LatitudeFormatPipe, LocalSettingsService, LongitudeFormatPipe, MINIFY_ENTITY_FOR_LOCAL_STORAGE, MINIFY_ENTITY_FOR_POD, MapGetPipe, MapKeysPipe, MapValuesPipe, MatAutocompleteConfigHolder, MatAutocompleteField, MatBooleanField, MatChipsField, MatDate, MatDateShort, MatDateTime, MatDuration, MatLatLongField, MatNumpadComponent, MatNumpadContainerComponent, MatNumpadContent, MatPaginatorI18n, MatStepperI18n, MatSwipeField, MaterialChipsModule, MaterialTestingModule, MaterialTestingPage, MathAbsPipe, MenuComponent, MenuItems, MenuService, ModalToolbarComponent, NetworkService, NgInitDirective, NotEmptyArrayPipe, NumberFormatPipe, NumpadDirective, OddPipe, PRIORITIZED_AUTHORITIES, PUBKEY_REGEXP, Peer, Person, PersonFilter, PersonFragments, PersonService, PersonToStringPipe, PersonUtils, PersonValidatorService, PlatformService, ProgressBarService, ProgressInterceptor, PropertyGetPipe, RESERVED_END_COLUMNS, RESERVED_START_COLUMNS, Referential, ReferentialRef, ReferentialUtils, RegisterConfirmPage, SETTINGS_DISPLAY_COLUMNS, SETTINGS_FILTER, SETTINGS_PAGE_SIZE, SETTINGS_SORTED_COLUMN, SETTINGS_STORAGE_KEY, SETTINGS_TRANSIENT_PROPERTIES, SPACE_PLACEHOLDER_CHAR, SelectPeerModal, SettingsPage, SharedDirectivesModule, SharedFormArrayValidators, SharedFormGroupValidators, SharedHotkeysModule, SharedMatAutocompleteModule, SharedMatBooleanModule, SharedMatDateTimeModule, SharedMatDurationModule, SharedMatLatLongModule, SharedMatNumpadModule, SharedMatSwipeModule, SharedMaterialModule, SharedModule, SharedPipesModule, SharedRoutingModule, SharedTestingModule, SharedValidators, SocialModule, Software, StartableService, StatusById, StatusIds, StatusList, StrLengthPipe, SwipeTestPage, TableSelectColumnsComponent, ToStringPipe, Toasts, ToolbarComponent, ToolbarToken, TranslatablePipe, TranslateContextPipe, TranslateContextService, UserEvent, UserEventFilter, UserEventService, UserEventTypes, UserEventsTable, UserSettings, UsersPage, accountToString, adaptValueToControl, addValueInArray, arrayDistinct, arrayGroupBy, arraySize, asInputElement, canHaveFocus, capitalizeFirstLetter, chainPromises, changeCaseToUnderscore, clearValueInArray, copyEntity2Form, createPromiseEvent, createPromiseEventEmitter, departmentToString, departmentsToString, disableControls, emitPromiseEvent, entityToString, equals, equalsOrNil, fadeInAnimation, fadeInOutAnimation, filterFalse, filterNotNil, filterNumberInput, filterTrue, firstArrayValue, firstFalsePromise, firstNotNil, firstNotNilPromise, 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, isControlHasInput, isEmptyArray, isInputElement, isInstanceOf, isInt, isNil, isNilOrBlank, isNilOrNaN, isNotEmptyArray, isNotNil, isNotNilOrBlank, isNotNilOrNaN, isNotNilString, isNumber, isNumberRange, joinProperties, joinPropertiesPath, logFormErrors, markAllAsTouched, markAsUntouched, markControlAsTouched, markFormGroupAsTouched, 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, setTabIndex, sleep, slideInOutAnimation, slideUpDownAnimation, sort, splitById, splitByProperty, startsWithUpperCase, suggestFromArray, suggestFromStringArray, tabindexComparator, toBoolean, toDateISOString, toDuration, toFloat, toInt, toNotNil, toNumber, trimEmptyToNull, uncapitalizeFirstLetter, updateValueAndValidity, waitFor, waitIdle, waitWhilePending, ɵ0$5 as ɵ0, CustomReuseStrategy as ɵa, MatNumpadDomService as ɵb, SharedMatBadgeIconModule as ɵc, MatBadgeIconDirective as ɵd, isFocusableElement as ɵe, MatBadgeIconTestPage as ɵf, RegisterForm as ɵg, AccountValidatorService as ɵh, RegisterModal as ɵi, UserSettingsValidatorService as ɵj, LocalSettingsValidatorService as ɵk, AppIconComponent as ɵl };
|
|
24186
24254
|
//# sourceMappingURL=sumaris-net.ngx-components.js.map
|