@sumaris-net/ngx-components 1.9.7 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/sumaris-net.ngx-components.umd.js +100 -20
- 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/public_api.js +2 -2
- package/esm2015/src/app/core/form/editor.class.js +2 -2
- package/esm2015/src/app/core/graphql/graphql.service.js +4 -4
- package/esm2015/src/app/core/home/home.js +2 -2
- package/esm2015/src/app/core/install/install-upgrade-card.component.js +2 -2
- package/esm2015/src/app/core/services/account.service.js +8 -4
- package/esm2015/src/app/core/services/config.service.js +2 -2
- package/esm2015/src/app/core/services/network.service.js +5 -5
- package/esm2015/src/app/core/services/platform.service.js +3 -4
- package/esm2015/src/app/core/services/testing/referential-filter.model.js +23 -0
- package/esm2015/src/app/core/services/testing/referential.validator.js +44 -0
- package/esm2015/src/app/core/table/table.class.js +2 -2
- package/esm2015/src/app/shared/services/startable-service.class.js +4 -1
- package/esm2015/src/app/shared/shared.testing.module.js +9 -3
- package/esm2015/src/app/shared/toast/toast.testing.js +39 -0
- package/esm2015/src/app/shared/toast/toast.testing.module.js +33 -0
- package/esm2015/src/app/shared/toast/toasts.js +119 -0
- package/esm2015/src/app/social/services/user-event.service.js +2 -2
- package/esm2015/sumaris-net.ngx-components.js +9 -7
- package/fesm2015/sumaris-net.ngx-components.js +88 -15
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/public_api.d.ts +1 -1
- package/src/app/core/form/editor.class.d.ts +1 -1
- package/src/app/core/home/home.d.ts +1 -1
- package/src/app/core/services/account.service.d.ts +4 -2
- package/src/app/core/services/config.service.d.ts +1 -1
- package/src/app/core/services/network.service.d.ts +1 -1
- package/src/app/core/services/platform.service.d.ts +1 -1
- package/src/app/core/services/testing/referential-filter.model.d.ts +9 -0
- package/src/app/core/services/testing/referential.validator.d.ts +19 -0
- package/src/app/core/table/table.class.d.ts +1 -1
- package/src/app/shared/services/startable-service.class.d.ts +1 -0
- package/src/app/shared/shared.testing.module.d.ts +2 -0
- package/src/app/shared/toast/toast.testing.d.ts +14 -0
- package/src/app/shared/toast/toast.testing.module.d.ts +2 -0
- package/src/app/shared/{toasts.d.ts → toast/toasts.d.ts} +0 -0
- package/src/app/social/services/user-event.service.d.ts +1 -1
- package/src/assets/i18n/en-US.json +4 -1
- package/src/assets/i18n/en.json +4 -1
- package/src/assets/i18n/fr.json +4 -1
- package/sumaris-net.ngx-components.d.ts +8 -6
- package/sumaris-net.ngx-components.metadata.json +1 -1
- package/esm2015/src/app/shared/toasts.js +0 -119
|
@@ -8394,6 +8394,9 @@ class StartableService {
|
|
|
8394
8394
|
this._subscription = this._subscription || new Subscription();
|
|
8395
8395
|
return this._subscription.add(sub);
|
|
8396
8396
|
}
|
|
8397
|
+
unregisterSubscription(sub) {
|
|
8398
|
+
this._subscription.remove(sub);
|
|
8399
|
+
}
|
|
8397
8400
|
ngOnStop() {
|
|
8398
8401
|
return __awaiter(this, void 0, void 0, function* () {
|
|
8399
8402
|
// Can be override by subclasses
|
|
@@ -10839,7 +10842,7 @@ class NetworkService extends StartableService {
|
|
|
10839
10842
|
this.onNetworkStatusChanges.next(currentConnectionType);
|
|
10840
10843
|
// Offline mode: alert the user
|
|
10841
10844
|
if (currentConnectionType === 'none' && (!opts || opts.showToast !== false)) {
|
|
10842
|
-
this.showToast({ message: 'NETWORK.INFO.OFFLINE_HELP' });
|
|
10845
|
+
this.showToast({ message: 'NETWORK.INFO.OFFLINE_HELP', type: 'warning' });
|
|
10843
10846
|
}
|
|
10844
10847
|
}
|
|
10845
10848
|
}
|
|
@@ -11039,11 +11042,11 @@ class NetworkService extends StartableService {
|
|
|
11039
11042
|
// Force offline mode
|
|
11040
11043
|
this._forceOffline = true;
|
|
11041
11044
|
// Alert the user
|
|
11042
|
-
this.showToast({ message: 'NETWORK.INFO.OFFLINE_HELP' });
|
|
11045
|
+
this.showToast({ message: 'NETWORK.INFO.OFFLINE_HELP', type: 'warning' });
|
|
11043
11046
|
}
|
|
11044
11047
|
else {
|
|
11045
11048
|
// Alert the user
|
|
11046
|
-
this.showToast({ message: 'NETWORK.INFO.OFFLINE' });
|
|
11049
|
+
this.showToast({ message: 'NETWORK.INFO.OFFLINE', type: 'warning' });
|
|
11047
11050
|
}
|
|
11048
11051
|
// Stop the network service
|
|
11049
11052
|
this.stop();
|
|
@@ -12976,12 +12979,12 @@ class GraphqlService extends StartableService {
|
|
|
12976
12979
|
return __awaiter(this, void 0, void 0, function* () {
|
|
12977
12980
|
client = (client || this.client);
|
|
12978
12981
|
if (client) {
|
|
12979
|
-
console.info('[graphql]
|
|
12982
|
+
console.info('[graphql] Cleaning cache... ');
|
|
12980
12983
|
const now = this._debug && Date.now();
|
|
12981
12984
|
// Clearing the cache
|
|
12982
12985
|
yield client.cache.reset();
|
|
12983
12986
|
if (this._debug)
|
|
12984
|
-
console.debug(`[graphql]
|
|
12987
|
+
console.debug(`[graphql] Cleaning cache [OK] in ${Date.now() - now}ms`);
|
|
12985
12988
|
}
|
|
12986
12989
|
});
|
|
12987
12990
|
}
|
|
@@ -13143,7 +13146,7 @@ class GraphqlService extends StartableService {
|
|
|
13143
13146
|
client = (client || this.apollo.client);
|
|
13144
13147
|
if (!client)
|
|
13145
13148
|
return;
|
|
13146
|
-
console.info('[graphql] Resetting
|
|
13149
|
+
console.info('[graphql] Resetting Apollo client...');
|
|
13147
13150
|
client.stop();
|
|
13148
13151
|
yield Promise.all([
|
|
13149
13152
|
client.clearStore(),
|
|
@@ -13928,7 +13931,7 @@ class AccountService extends BaseGraphqlService {
|
|
|
13928
13931
|
return this._data;
|
|
13929
13932
|
});
|
|
13930
13933
|
}
|
|
13931
|
-
reload() {
|
|
13934
|
+
reload(opts) {
|
|
13932
13935
|
return __awaiter(this, void 0, void 0, function* () {
|
|
13933
13936
|
if (!this._cache.pubkey)
|
|
13934
13937
|
throw new Error('User not logged');
|
|
@@ -13944,6 +13947,10 @@ class AccountService extends BaseGraphqlService {
|
|
|
13944
13947
|
// Emit login event to subscribers
|
|
13945
13948
|
this.onLogin.next(this._data);
|
|
13946
13949
|
this.onChange.next(this._data);
|
|
13950
|
+
// Display toast (without await, because not need to wait toast close event)
|
|
13951
|
+
if (!opts || opts.showToast !== false) {
|
|
13952
|
+
this.showToast({ message: 'ACCOUNT.INFO.RELOADED', type: 'info' });
|
|
13953
|
+
}
|
|
13947
13954
|
return this._data;
|
|
13948
13955
|
}
|
|
13949
13956
|
catch (error) {
|
|
@@ -14548,7 +14555,7 @@ class AccountService extends BaseGraphqlService {
|
|
|
14548
14555
|
variables,
|
|
14549
14556
|
error: {
|
|
14550
14557
|
code: ErrorCodes$2.SUBSCRIBE_ACCOUNT_ERROR,
|
|
14551
|
-
message: 'ERROR.ACCOUNT.
|
|
14558
|
+
message: 'ERROR.ACCOUNT.SUBSCRIBE_ERROR'
|
|
14552
14559
|
}
|
|
14553
14560
|
}).pipe(map(({ data }) => data),
|
|
14554
14561
|
// Keep only if newer
|
|
@@ -15466,8 +15473,7 @@ class PlatformService extends StartableService {
|
|
|
15466
15473
|
else {
|
|
15467
15474
|
const now = Date.now();
|
|
15468
15475
|
console.info(`[platform] Starting storage migration...`);
|
|
15469
|
-
const toast = yield this.showToast({ message: 'INFO.DATA_MIGRATION_STARTED',
|
|
15470
|
-
duration: 30000 });
|
|
15476
|
+
const toast = yield this.showToast({ message: 'INFO.DATA_MIGRATION_STARTED', type: 'info', duration: 30000 });
|
|
15471
15477
|
try {
|
|
15472
15478
|
yield StorageUtils.copy(oldForage, storage, { keys, deleteAfterCopy: false });
|
|
15473
15479
|
const duration = Date.now() - now;
|
|
@@ -17281,7 +17287,7 @@ MatBadgeIconTestPage.decorators = [
|
|
|
17281
17287
|
},] }
|
|
17282
17288
|
];
|
|
17283
17289
|
|
|
17284
|
-
const routes$
|
|
17290
|
+
const routes$2 = [
|
|
17285
17291
|
{
|
|
17286
17292
|
path: '',
|
|
17287
17293
|
pathMatch: 'full',
|
|
@@ -17333,7 +17339,7 @@ MaterialTestingModule.decorators = [
|
|
|
17333
17339
|
ReactiveFormsModule,
|
|
17334
17340
|
SharedMaterialModule,
|
|
17335
17341
|
TranslateModule.forChild(),
|
|
17336
|
-
RouterModule.forChild(routes$
|
|
17342
|
+
RouterModule.forChild(routes$2)
|
|
17337
17343
|
],
|
|
17338
17344
|
declarations: [
|
|
17339
17345
|
MaterialTestingPage,
|
|
@@ -17359,6 +17365,71 @@ MaterialTestingModule.decorators = [
|
|
|
17359
17365
|
},] }
|
|
17360
17366
|
];
|
|
17361
17367
|
|
|
17368
|
+
class ToastTestingPage {
|
|
17369
|
+
constructor(toastController, translate) {
|
|
17370
|
+
this.toastController = toastController;
|
|
17371
|
+
this.translate = translate;
|
|
17372
|
+
this.defaultOptions = {
|
|
17373
|
+
showCloseButton: false
|
|
17374
|
+
};
|
|
17375
|
+
}
|
|
17376
|
+
showToast(opts) {
|
|
17377
|
+
return Toasts.show(this.toastController, this.translate, Object.assign(Object.assign(Object.assign({}, this.defaultOptions), { message: 'This is a message' }), opts));
|
|
17378
|
+
}
|
|
17379
|
+
showInfo(opts) {
|
|
17380
|
+
return this.showToast(Object.assign({ type: 'info', message: 'This is a info text !' }, opts));
|
|
17381
|
+
}
|
|
17382
|
+
showWarning(opts) {
|
|
17383
|
+
return this.showToast(Object.assign({ type: 'warning', message: 'This is a warning text !' }, opts));
|
|
17384
|
+
}
|
|
17385
|
+
showError(opts) {
|
|
17386
|
+
return this.showToast(Object.assign({ type: 'error', message: 'This is a error text !' }, opts));
|
|
17387
|
+
}
|
|
17388
|
+
toggleCloseButton() {
|
|
17389
|
+
this.defaultOptions.showCloseButton = !this.defaultOptions.showCloseButton;
|
|
17390
|
+
}
|
|
17391
|
+
}
|
|
17392
|
+
ToastTestingPage.decorators = [
|
|
17393
|
+
{ type: Component, args: [{
|
|
17394
|
+
selector: 'toast-testing',
|
|
17395
|
+
template: "<ion-toolbar color=\"primary\">\n <ion-title>Toasts</ion-title>\n</ion-toolbar>\n\n<ion-content class=\"ion-padding\">\n\n <p>Toast examples:</p>\n\n <ion-button (click)=\"showToast()\" color=\"dark\">\n default\n </ion-button>\n\n <ion-button (click)=\"showInfo({duration: 100000})\" color=\"secondary\">\n info\n </ion-button>\n\n <ion-button (click)=\"showWarning()\" color=\"accent\">\n warning\n </ion-button>\n\n <ion-button (click)=\"showError()\" color=\"danger\">\n error\n </ion-button>\n\n <br/>\n\n\n <ion-list>\n\n\n <ion-item>\n <ion-checkbox slot=\"start\" [value]=\"defaultOptions.showCloseButton\" (ionChange)=\"toggleCloseButton()\"></ion-checkbox>\n <ion-label>Close button ?</ion-label>\n </ion-item>\n </ion-list>\n\n\n</ion-content>\n"
|
|
17396
|
+
},] }
|
|
17397
|
+
];
|
|
17398
|
+
ToastTestingPage.ctorParameters = () => [
|
|
17399
|
+
{ type: ToastController },
|
|
17400
|
+
{ type: TranslateService }
|
|
17401
|
+
];
|
|
17402
|
+
|
|
17403
|
+
const routes$1 = [
|
|
17404
|
+
{
|
|
17405
|
+
path: 'toast',
|
|
17406
|
+
pathMatch: 'full',
|
|
17407
|
+
component: ToastTestingPage
|
|
17408
|
+
}
|
|
17409
|
+
];
|
|
17410
|
+
class ToastTestingModule {
|
|
17411
|
+
}
|
|
17412
|
+
ToastTestingModule.decorators = [
|
|
17413
|
+
{ type: NgModule, args: [{
|
|
17414
|
+
imports: [
|
|
17415
|
+
CommonModule,
|
|
17416
|
+
IonicModule,
|
|
17417
|
+
TranslateModule.forChild(),
|
|
17418
|
+
RouterModule.forChild(routes$1)
|
|
17419
|
+
],
|
|
17420
|
+
declarations: [
|
|
17421
|
+
ToastTestingPage
|
|
17422
|
+
],
|
|
17423
|
+
exports: [
|
|
17424
|
+
RouterModule,
|
|
17425
|
+
ToastTestingPage
|
|
17426
|
+
]
|
|
17427
|
+
},] }
|
|
17428
|
+
];
|
|
17429
|
+
|
|
17430
|
+
const SHARED_TESTING_PAGES = [
|
|
17431
|
+
{ label: 'Toast', page: '/testing/shared/toast' }
|
|
17432
|
+
];
|
|
17362
17433
|
class SharedTestingModule {
|
|
17363
17434
|
}
|
|
17364
17435
|
SharedTestingModule.decorators = [
|
|
@@ -17366,10 +17437,12 @@ SharedTestingModule.decorators = [
|
|
|
17366
17437
|
imports: [
|
|
17367
17438
|
CommonModule,
|
|
17368
17439
|
TranslateModule.forChild(),
|
|
17369
|
-
MaterialTestingModule
|
|
17440
|
+
MaterialTestingModule,
|
|
17441
|
+
ToastTestingModule
|
|
17370
17442
|
],
|
|
17371
17443
|
exports: [
|
|
17372
|
-
MaterialTestingModule
|
|
17444
|
+
MaterialTestingModule,
|
|
17445
|
+
ToastTestingModule
|
|
17373
17446
|
]
|
|
17374
17447
|
},] }
|
|
17375
17448
|
];
|
|
@@ -25220,5 +25293,5 @@ const ErrorCodes = {
|
|
|
25220
25293
|
* Generated bundle index. Do not edit.
|
|
25221
25294
|
*/
|
|
25222
25295
|
|
|
25223
|
-
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, NgVarDirective, 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, 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, isAndroid, isControlHasInput, isCordova, isDesktop, isEmptyArray, isIOS, isInputElement, isInstanceOf, isInt, isMobile, isNil, isNilOrBlank, isNilOrNaN, isNotEmptyArray, isNotNil, isNotNilOrBlank, isNotNilOrNaN, isNotNilString, isNumber, isNumberRange, isTouchUi, isWindow, joinProperties, joinPropertiesPath, logFormErrors, markAllAsTouched, markAsUntouched, markControlAsTouched, markFormGroupAsTouched, 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, setTabIndex, sleep, slideInOutAnimation, slideUpDownAnimation, sort, splitById, splitByProperty, startsWithUpperCase, suggestFromArray, suggestFromStringArray, tabindexComparator, testUserAgent, toBoolean, toDateISOString, toDuration, toFloat, toInt, toNotNil, toNumber, trimEmptyToNull, uncapitalizeFirstLetter, updateValueAndValidity, waitFor, waitForTrue, waitIdle, waitWhilePending, ɵ0$b as ɵ0, CustomReuseStrategy as ɵa, MatNumpadDomService as ɵb, SharedMatBadgeIconModule as ɵc, MatBadgeIconDirective as ɵd, isFocusableElement as ɵe, MatBadgeIconTestPage as ɵf,
|
|
25296
|
+
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, NgVarDirective, 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, SHARED_TESTING_PAGES, 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, 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, isAndroid, isControlHasInput, isCordova, isDesktop, isEmptyArray, isIOS, isInputElement, isInstanceOf, isInt, isMobile, isNil, isNilOrBlank, isNilOrNaN, isNotEmptyArray, isNotNil, isNotNilOrBlank, isNotNilOrNaN, isNotNilString, isNumber, isNumberRange, isTouchUi, isWindow, joinProperties, joinPropertiesPath, logFormErrors, markAllAsTouched, markAsUntouched, markControlAsTouched, markFormGroupAsTouched, 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, setTabIndex, sleep, slideInOutAnimation, slideUpDownAnimation, sort, splitById, splitByProperty, startsWithUpperCase, suggestFromArray, suggestFromStringArray, tabindexComparator, testUserAgent, toBoolean, toDateISOString, toDuration, toFloat, toInt, toNotNil, toNumber, trimEmptyToNull, uncapitalizeFirstLetter, updateValueAndValidity, waitFor, waitForTrue, waitIdle, waitWhilePending, ɵ0$b as ɵ0, CustomReuseStrategy as ɵa, MatNumpadDomService as ɵb, SharedMatBadgeIconModule as ɵc, MatBadgeIconDirective as ɵd, isFocusableElement as ɵe, MatBadgeIconTestPage as ɵf, ToastTestingModule as ɵg, ToastTestingPage as ɵh, RegisterForm as ɵi, AccountValidatorService as ɵj, RegisterModal as ɵk, UserSettingsValidatorService as ɵl, LocalSettingsValidatorService as ɵm, AppIconComponent as ɵn };
|
|
25224
25297
|
//# sourceMappingURL=sumaris-net.ngx-components.js.map
|