@sumaris-net/ngx-components 18.23.50 → 18.23.52
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/esm2022/src/app/admin/users/users.mjs +3 -3
- package/esm2022/src/app/core/account/new-token.form.mjs +3 -3
- package/esm2022/src/app/core/account/token.table.mjs +3 -3
- package/esm2022/src/app/core/form/array/testing/form-array.test.mjs +3 -3
- package/esm2022/src/app/core/form/buttons/form-buttons-bar.component.mjs +3 -3
- package/esm2022/src/app/core/form/list/list.form.mjs +3 -3
- package/esm2022/src/app/core/form/properties/properties.form.mjs +3 -3
- package/esm2022/src/app/core/form/properties/properties.table.mjs +3 -3
- package/esm2022/src/app/core/form/text-popover/text-popover.component.mjs +3 -3
- package/esm2022/src/app/core/home/home.mjs +3 -3
- package/esm2022/src/app/core/menu/menu.component.mjs +3 -3
- package/esm2022/src/app/core/settings/settings.page.mjs +3 -3
- package/esm2022/src/app/core/table/column/actions-column.component.mjs +3 -3
- package/esm2022/src/app/core/table/column/nav-actions-column.component.mjs +3 -3
- package/esm2022/src/app/core/table/testing/table.testing.mjs +3 -3
- package/esm2022/src/app/core/table/testing/table2.testing.mjs +3 -3
- package/esm2022/src/app/shared/constants.mjs +2 -2
- package/esm2022/src/app/shared/image/gallery/image-gallery.component.mjs +3 -3
- package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.mjs +3 -3
- package/esm2022/src/app/shared/material/boolean/material.boolean.mjs +3 -3
- package/esm2022/src/app/shared/material/chips/material.chips.mjs +3 -3
- package/esm2022/src/app/shared/named-filter/named-filter-selector.component.mjs +3 -3
- package/esm2022/src/app/shared/storage/storage-explorer.component.mjs +3 -3
- package/esm2022/src/app/social/feed/feed.component.mjs +3 -3
- package/esm2022/src/app/social/job/progression/job-progression.icon.mjs +3 -3
- package/esm2022/src/app/social/job/progression/job-progression.list.mjs +3 -3
- package/esm2022/src/app/social/user-event/notification/user-event-notification.icon.mjs +3 -3
- package/esm2022/src/app/social/user-event/notification/user-event-notification.list.mjs +3 -3
- package/esm2022/src/app/social/user-event/notification/user-event-notification.modal.mjs +3 -3
- package/fesm2022/sumaris-net.ngx-components.mjs +30 -30
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/form/text-popover/text-popover.component.d.ts +1 -1
- package/src/app/shared/constants.d.ts +1 -1
- package/src/assets/manifest.json +1 -1
|
@@ -243,7 +243,7 @@ const KEYBOARD_HIDE_DELAY_MS = 250; // 1s
|
|
|
243
243
|
// Separator to join properties (see `joinPropertiesPath()` or `referentialToString()` )
|
|
244
244
|
const DEFAULT_JOIN_PROPERTIES_SEPARATOR = ' - ';
|
|
245
245
|
const DEFAULT_JOIN_ARRAY_VALUES_SEPARATOR = ', ';
|
|
246
|
-
const
|
|
246
|
+
const APP_SHOW_TOOLTIP = new InjectionToken('Use Material Tooltip or not');
|
|
247
247
|
|
|
248
248
|
class RegExpUtils {
|
|
249
249
|
static _cachedSearchRegexps = {};
|
|
@@ -7409,7 +7409,7 @@ class MatBooleanField {
|
|
|
7409
7409
|
focused = new EventEmitter();
|
|
7410
7410
|
// eslint-disable-next-line @angular-eslint/no-output-on-prefix
|
|
7411
7411
|
blurred = new EventEmitter();
|
|
7412
|
-
showTooltip = inject(
|
|
7412
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
7413
7413
|
constructor(cd, formGroupDir) {
|
|
7414
7414
|
this.cd = cd;
|
|
7415
7415
|
this.formGroupDir = formGroupDir;
|
|
@@ -9235,7 +9235,7 @@ class MatAutocompleteField {
|
|
|
9235
9235
|
matInputText;
|
|
9236
9236
|
autocomplete;
|
|
9237
9237
|
autocompleteTrigger;
|
|
9238
|
-
showTooltip = inject(
|
|
9238
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
9239
9239
|
constructor(injector, el, cd, modalController, renderer, formGroupDir) {
|
|
9240
9240
|
this.injector = injector;
|
|
9241
9241
|
this.el = el;
|
|
@@ -12752,7 +12752,7 @@ class MatChipsField {
|
|
|
12752
12752
|
matInputText;
|
|
12753
12753
|
autocomplete;
|
|
12754
12754
|
autocompleteTrigger;
|
|
12755
|
-
showTooltip = inject(
|
|
12755
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
12756
12756
|
constructor(cd, formGroupDir, defaultOptions) {
|
|
12757
12757
|
this.cd = cd;
|
|
12758
12758
|
this.formGroupDir = formGroupDir;
|
|
@@ -19526,7 +19526,7 @@ class TextPopover {
|
|
|
19526
19526
|
get value() {
|
|
19527
19527
|
return this.form?.value.text;
|
|
19528
19528
|
}
|
|
19529
|
-
showTooltip = inject(
|
|
19529
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
19530
19530
|
constructor(popoverController, translate) {
|
|
19531
19531
|
this.popoverController = popoverController;
|
|
19532
19532
|
this.translate = translate;
|
|
@@ -26839,7 +26839,7 @@ class NamedFilterSelector extends AppForm {
|
|
|
26839
26839
|
filterDeleted = new EventEmitter();
|
|
26840
26840
|
filterCleared = new EventEmitter();
|
|
26841
26841
|
autocompleteField;
|
|
26842
|
-
showTooltip = inject(
|
|
26842
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
26843
26843
|
constructor(injector, formBuilder, cd, toastController, popoverController, dataService) {
|
|
26844
26844
|
super(injector, formBuilder.group({ namedFilter: [null] }));
|
|
26845
26845
|
this.injector = injector;
|
|
@@ -28052,7 +28052,7 @@ class AppImageGalleryComponent {
|
|
|
28052
28052
|
onAfterAddRows = new EventEmitter();
|
|
28053
28053
|
onAfterEditRow = new EventEmitter();
|
|
28054
28054
|
click = new EventEmitter();
|
|
28055
|
-
showTooltip = inject(
|
|
28055
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
28056
28056
|
constructor(imageService, platform, alterCtrl, translate, cd, environment) {
|
|
28057
28057
|
this.imageService = imageService;
|
|
28058
28058
|
this.platform = platform;
|
|
@@ -28543,7 +28543,7 @@ class StorageExplorerComponent {
|
|
|
28543
28543
|
showSendButton;
|
|
28544
28544
|
sendDataModal;
|
|
28545
28545
|
viewDataModal;
|
|
28546
|
-
showTooltip = inject(
|
|
28546
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
28547
28547
|
constructor(platform, toastController, alertCtrl, translate, dateAdapter, cd, storage, environment, debugDataService, _protectedKeys) {
|
|
28548
28548
|
this.platform = platform;
|
|
28549
28549
|
this.toastController = toastController;
|
|
@@ -32533,7 +32533,7 @@ class MenuComponent {
|
|
|
32533
32533
|
defaultAvatarImage;
|
|
32534
32534
|
_debug;
|
|
32535
32535
|
_subscription = new Subscription();
|
|
32536
|
-
showTooltip = inject(
|
|
32536
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
32537
32537
|
constructor(accountService, navController, menu, modalCtrl, translate, cd, menuService, router, environment, appBaseHref, route // Modal editor give 'null'
|
|
32538
32538
|
) {
|
|
32539
32539
|
this.accountService = accountService;
|
|
@@ -34831,7 +34831,7 @@ class UserEventNotificationList {
|
|
|
34831
34831
|
get canFetchMore() {
|
|
34832
34832
|
return this.enableInfiniteScroll && !!this._fetchMoreFn;
|
|
34833
34833
|
}
|
|
34834
|
-
showTooltip = inject(
|
|
34834
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
34835
34835
|
constructor(cd, popoverController, settings, userEventService, infiniteScrollThresholdFromToken) {
|
|
34836
34836
|
this.cd = cd;
|
|
34837
34837
|
this.popoverController = popoverController;
|
|
@@ -35060,7 +35060,7 @@ class UserEventNotificationModal {
|
|
|
35060
35060
|
mobile;
|
|
35061
35061
|
debug = false;
|
|
35062
35062
|
list;
|
|
35063
|
-
showTooltip = inject(
|
|
35063
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
35064
35064
|
constructor(cd, settings, modalController, userEventService) {
|
|
35065
35065
|
this.cd = cd;
|
|
35066
35066
|
this.settings = settings;
|
|
@@ -35142,7 +35142,7 @@ class UserEventNotificationIcon {
|
|
|
35142
35142
|
listStyle;
|
|
35143
35143
|
debug = false;
|
|
35144
35144
|
onShowList = new EventEmitter();
|
|
35145
|
-
showTooltip = inject(
|
|
35145
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
35146
35146
|
constructor(userEventService, accountService, popoverController, modalController, settings, cd) {
|
|
35147
35147
|
this.userEventService = userEventService;
|
|
35148
35148
|
this.accountService = accountService;
|
|
@@ -36608,7 +36608,7 @@ class FeedsComponent {
|
|
|
36608
36608
|
return classes.filter((cls) => cls).join(' ');
|
|
36609
36609
|
}
|
|
36610
36610
|
modal;
|
|
36611
|
-
showTooltip = inject(
|
|
36611
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
36612
36612
|
constructor(settings, environment, feedService, accountService, alertCtrl) {
|
|
36613
36613
|
this.environment = environment;
|
|
36614
36614
|
this.feedService = feedService;
|
|
@@ -36927,7 +36927,7 @@ class HomePage extends RxState {
|
|
|
36927
36927
|
return this.showLegalInformation ? 8 : 12;
|
|
36928
36928
|
}
|
|
36929
36929
|
content;
|
|
36930
|
-
showTooltip = inject(
|
|
36930
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
36931
36931
|
constructor(accountService, modalCtrl, translate, toastController, configService, platform, cd, network, settings, environment, locales, buttons, config) {
|
|
36932
36932
|
super();
|
|
36933
36933
|
this.accountService = accountService;
|
|
@@ -37651,7 +37651,7 @@ class FormButtonsBarComponent {
|
|
|
37651
37651
|
onBack = new EventEmitter();
|
|
37652
37652
|
onSaveAndClose = new EventEmitter();
|
|
37653
37653
|
onSaveAndNext = new EventEmitter();
|
|
37654
|
-
showTooltip = inject(
|
|
37654
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
37655
37655
|
constructor(hotkeys, menu) {
|
|
37656
37656
|
this.menu = menu;
|
|
37657
37657
|
// Ctrl+S
|
|
@@ -37924,7 +37924,7 @@ class AppPropertiesForm extends AppForm {
|
|
|
37924
37924
|
get importPolicy() {
|
|
37925
37925
|
return this._propertiesFileService?.importPolicy || 'insert-update';
|
|
37926
37926
|
}
|
|
37927
|
-
showTooltip = inject(
|
|
37927
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
37928
37928
|
constructor(injector, formBuilder, dateAdapter, cd, validator, formGroupDir) {
|
|
37929
37929
|
super(injector, null);
|
|
37930
37930
|
this.injector = injector;
|
|
@@ -38248,7 +38248,7 @@ class SettingsPage extends AppForm {
|
|
|
38248
38248
|
this.form.controls['darkMode'].setValue(value);
|
|
38249
38249
|
}
|
|
38250
38250
|
propertiesForm;
|
|
38251
|
-
showTooltip = inject(
|
|
38251
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
38252
38252
|
constructor(injector, platform, navController, validatorService, alertCtrl, translate, formBuilder, accountService, settings, cd, network, locales, menuItems) {
|
|
38253
38253
|
super(injector, validatorService.getFormGroup());
|
|
38254
38254
|
this.platform = platform;
|
|
@@ -41063,7 +41063,7 @@ class ActionsColumnComponent {
|
|
|
41063
41063
|
confirmAndAddClick = new EventEmitter();
|
|
41064
41064
|
backward = new EventEmitter();
|
|
41065
41065
|
forward = new EventEmitter();
|
|
41066
|
-
showTooltip = inject(
|
|
41066
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
41067
41067
|
constructor(table, cd) {
|
|
41068
41068
|
this.table = table;
|
|
41069
41069
|
this.cd = cd;
|
|
@@ -41341,7 +41341,7 @@ class AppPropertiesTable extends AppInMemoryTable {
|
|
|
41341
41341
|
filterForm;
|
|
41342
41342
|
filterCriteriaCount = 0;
|
|
41343
41343
|
filterPanelFloating = true;
|
|
41344
|
-
showTooltip = inject(
|
|
41344
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
41345
41345
|
constructor(injector, formBuilder, validatorService, environment) {
|
|
41346
41346
|
super(injector, [...RESERVED_START_COLUMNS, 'definition', 'value', ...RESERVED_END_COLUMNS], PropertyEntity, new InMemoryEntitiesService(PropertyEntity, PropertyEntityFilter, {
|
|
41347
41347
|
sortByReplacement: { definition: 'definition.label' },
|
|
@@ -43840,7 +43840,7 @@ class NavActionsColumnComponent {
|
|
|
43840
43840
|
cellTemplate;
|
|
43841
43841
|
throttleTime = 250;
|
|
43842
43842
|
optionsClick = new EventEmitter();
|
|
43843
|
-
showTooltip = inject(
|
|
43843
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
43844
43844
|
constructor(matTable, cd, appTable, appAsyncTable) {
|
|
43845
43845
|
this.matTable = matTable;
|
|
43846
43846
|
this.cd = cd;
|
|
@@ -44108,7 +44108,7 @@ class AppListForm extends AppForm {
|
|
|
44108
44108
|
if (!opts || opts.emitEvent !== false)
|
|
44109
44109
|
this.markForCheck();
|
|
44110
44110
|
}
|
|
44111
|
-
showTooltip = inject(
|
|
44111
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
44112
44112
|
constructor(injector, formBuilder, dateAdapter, settings, cd, formGroupDir) {
|
|
44113
44113
|
super(injector, null);
|
|
44114
44114
|
this.injector = injector;
|
|
@@ -45685,7 +45685,7 @@ class NewTokenForm extends AppForm {
|
|
|
45685
45685
|
existingNames;
|
|
45686
45686
|
mobile;
|
|
45687
45687
|
platform;
|
|
45688
|
-
showTooltip = inject(
|
|
45688
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
45689
45689
|
constructor(injector, validator, accountService, cd) {
|
|
45690
45690
|
super(injector, validator.getFormGroup());
|
|
45691
45691
|
this.validator = validator;
|
|
@@ -45821,7 +45821,7 @@ class UserTokenTable extends AppInMemoryTable {
|
|
|
45821
45821
|
showScopes = false;
|
|
45822
45822
|
defaultScope;
|
|
45823
45823
|
tokenScopes;
|
|
45824
|
-
showTooltip = inject(
|
|
45824
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
45825
45825
|
constructor(injector, validatorService, configService, environment, tokenScopes) {
|
|
45826
45826
|
super(injector, [...RESERVED_START_COLUMNS, 'name', 'scopes', 'lastUsedDate', 'expirationDate', 'creationDate', ...RESERVED_END_COLUMNS], UserToken, new InMemoryEntitiesService(UserToken, undefined, {
|
|
45827
45827
|
filterFnFactory: () => () => true,
|
|
@@ -47658,7 +47658,7 @@ class JobProgressionList {
|
|
|
47658
47658
|
titleI18n;
|
|
47659
47659
|
headerActions;
|
|
47660
47660
|
jobProgressions;
|
|
47661
|
-
showTooltip = inject(
|
|
47661
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
47662
47662
|
constructor(popoverController) {
|
|
47663
47663
|
this.popoverController = popoverController;
|
|
47664
47664
|
}
|
|
@@ -47717,7 +47717,7 @@ class JobProgressionIcon extends RxState {
|
|
|
47717
47717
|
autoHide;
|
|
47718
47718
|
headerActions;
|
|
47719
47719
|
jobFinished = new EventEmitter();
|
|
47720
|
-
showTooltip = inject(
|
|
47720
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
47721
47721
|
constructor(jobProgressionService, popoverController, cd) {
|
|
47722
47722
|
super();
|
|
47723
47723
|
this.jobProgressionService = jobProgressionService;
|
|
@@ -48013,7 +48013,7 @@ class UsersPage extends AppTable {
|
|
|
48013
48013
|
showFooter = true;
|
|
48014
48014
|
showToolbar = true;
|
|
48015
48015
|
showPaginator = true;
|
|
48016
|
-
showTooltip = inject(
|
|
48016
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
48017
48017
|
constructor(injector, formBuilder, accountService, validatorService, configService, dataService, messageService, menuService, environment) {
|
|
48018
48018
|
super(injector, RESERVED_START_COLUMNS.concat(['avatar', 'lastName', 'firstName', 'email', 'profile', 'status', 'username', 'usernameExtranet', 'pubkey'])
|
|
48019
48019
|
.concat(accountService.additionalFields.filter((field) => AccountUtils.isFieldVisibleFor(field, 'users')).map((field) => field.key))
|
|
@@ -51361,7 +51361,7 @@ class Table2TestPage extends AppAsyncTable {
|
|
|
51361
51361
|
get dataService() {
|
|
51362
51362
|
return this._dataSource.dataService;
|
|
51363
51363
|
}
|
|
51364
|
-
showTooltip = inject(
|
|
51364
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
51365
51365
|
constructor(injector, validatorService, formBuilder) {
|
|
51366
51366
|
super(injector, [
|
|
51367
51367
|
...RESERVED_START_COLUMNS,
|
|
@@ -51630,7 +51630,7 @@ class TableTestPage extends AppTable {
|
|
|
51630
51630
|
get dataService() {
|
|
51631
51631
|
return this._dataSource.dataService;
|
|
51632
51632
|
}
|
|
51633
|
-
showTooltip = inject(
|
|
51633
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
51634
51634
|
constructor(injector, validatorService, formBuilder) {
|
|
51635
51635
|
super(injector, [
|
|
51636
51636
|
...RESERVED_START_COLUMNS,
|
|
@@ -52120,7 +52120,7 @@ class ArrayFormTestPage extends AppForm {
|
|
|
52120
52120
|
get valueToAddControl() {
|
|
52121
52121
|
return this.form?.get('valueToAdd');
|
|
52122
52122
|
}
|
|
52123
|
-
showTooltip = inject(
|
|
52123
|
+
showTooltip = inject(APP_SHOW_TOOLTIP, { optional: true });
|
|
52124
52124
|
constructor(formBuilder, platform, injection, cd) {
|
|
52125
52125
|
super(injection, formBuilder.group({
|
|
52126
52126
|
default: new AppFormArray((value) => this.formBuilder.control(value), (v1, v2) => v1 === v2, (value) => isNilOrBlank(value)),
|
|
@@ -53057,5 +53057,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
53057
53057
|
* Generated bundle index. Do not edit.
|
|
53058
53058
|
*/
|
|
53059
53059
|
|
|
53060
|
-
export { APP_ABOUT_DEVELOPERS, APP_ABOUT_PARTNERS, APP_ACCOUNT_SERVICE, APP_ACCOUNT_SERVICE_OPTIONS, APP_CELL_SELECTION_SERVICE_CONFIG_TOKEN, APP_CELL_SELECTION_SERVICE_TOKEN, APP_CONFIG_OPTIONS, APP_DEBUG_DATA_SERVICE, APP_FEED_SERVICE, APP_FORM_ERROR_I18N_KEYS, APP_GRAPHQL_FRAGMENTS, APP_GRAPHQL_TYPE_POLICIES, APP_HOME_BUTTONS, APP_HOME_CONFIG, APP_HOTKEYS_CONFIG, 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_PERSON_SERVICE, APP_PERSON_SERVICE_OPTIONS, 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, AbstractPersonService, AbstractSelectionModelPipe, AbstractTableSelectionPipe, AbstractUserEventService, Account, AccountPage, AccountService, AccountToStringPipe, AccountUtils, ActionsColumnComponent, AdminModule, AdminRoutingModule, AdminUsersModule, Alerts, AndroidOsEnvironment, AppAboutModalModule, AppAccountModule, AppAsyncTable, AppAuthForm, AppAuthModal, AppAuthModule, AppChangePasswordModule, AppChangePasswordPage, AppEditor, AppEditorOptions, AppEntityEditor, AppEntityEditorModal, AppEntityEditorModalOptions, AppEntityFormModule, AppForm, AppFormArray, AppFormButtonsBarModule, AppFormContainer, AppFormField, AppFormModule, AppFormProvider, AppFormUtils, AppGestureConfig, AppGraphQLModule, AppHomePageModule, AppIconComponent, AppIconModule, AppImageGalleryComponent, AppInMemoryTable, AppInstallUpgradeCard, AppInstallUpgradeCardModule, AppListForm, AppListFormModule, AppLoadingSpinner, AppMarkdownContent, AppMarkdownModal, AppMenuModule, AppNullForm, AppPropertiesForm, AppPropertiesFormModule, AppPropertiesTable, AppPropertiesUtils, AppPropertyUtils, AppRegisterModule, AppResetPasswordModal, AppRowField, AppSelectPeerModule, AppSelectUsersModal, AppSettingsPageModule, AppTabEditor, AppTabEditorOptions, AppTable, AppTableModule, AppTableUtils, AppTextFormModule, AppTextPopoverModule, AppUpdateOfflineModeCard, AppUpdateOfflineModeCardModule, AppValidatorService, AppendQueryParamsPipePipe, ArrayDistinctPipe, ArrayFilterPipe, ArrayFindByPropertyPipe, ArrayFirstPipe, ArrayFormTestPage, ArrayIncludesPipe, ArrayJoinPipe, ArrayLastPipe, ArrayLengthPipe, ArrayMapPipe, ArrayPluckPipe, ArraySlicePipe, ArraySortPipe, AsAnyPipe, AsArrayPipe, AsBooleanPipe, AsFloatLabelTypePipe, AsObservablePipe, AudioProvider, AudioTestingModule, AudioTestingPage, AuthGuardService, AutoResizeDirective, AutoTitleDirective, AutoTooltipDirective, AutocompleteTestPage, AutofocusDirective, BadgeDirective, BadgeNumberPipe, Base58, BaseEntityService, BaseGraphqlService, BaseGraphqlServiceOptions, BaseReferential, Beans, BooleanFormatPipe, BooleanTestPage, CORE_CONFIG_OPTIONS, CORE_TESTING_PAGES, CapitalizePipe, CellIdentifierDirective, CellSelectionDirective, CellSelectionService, CellValueChangeListener, ChangePasswordForm, 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_JOIN_ARRAY_VALUES_SEPARATOR, DEFAULT_JOIN_PROPERTIES_SEPARATOR, DEFAULT_MENU_SHOW_WHEN, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZE_OPTIONS, DEFAULT_PLACEHOLDER_CHAR, DEFAULT_REQUIRED_COLUMNS, DateDiffDurationPipe, DateFormatPipe, DateFormatService, DateFromNowPipe, DateFromPipe, DateShortTestPage, DateTestPage, DateTimeTestPage, DateUtils, DebugComponent, Department, DepartmentToStringPipe, DisplayWithPipe, DragAndDropDirective, DurationPipe, DurationTestPage, ED25519_SEED_LENGTH, EMPTY_PLACEHOLDER_CHAR, EMPTY_PLACEHOLDER_CHAR_REGEXP_GLOBAL, ENTITIES_STORAGE_KEY_PREFIX, ENVIRONMENT, EmptyArrayPipe, EntitiesAsyncTableDataSource, EntitiesStorage, EntitiesTableDataSource, Entity, EntityClass, EntityClasses, EntityFilter, EntityFilterUtils, EntityMetadataComponent, EntityStore, EntityUtils, Environment, EnvironmentHttpLoader, EnvironmentLoader, ErrorCodes, EvenPipe, FeedDirective, FeedModule, FeedPage, FeedService, FeedsComponent, FileResponse, FileService, FileSizePipe, FilesUtils, FirstFalsePipe, FirstPipe, FirstTruePipe, FormArrayHelper, FormArrayTestModule, FormButtonsBarComponent, FormButtonsBarToken, FormErrorPipe, FormErrorTranslatePipe, FormErrorTranslator, FormFieldDefinitionUtils, 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, IsValidDatePipe, JobModule, JobProgression, JobProgressionComponent, JobProgressionIcon, JobProgressionList, JobProgressionService, JobProgressionTestService, JobProgressionTestingPage, JobTestingModule, JobUtils, JsonFeedUtils, JsonUtils, KEYBOARD_HIDE_DELAY_MS, LAT_LONG_PATTERNS, LAT_LONG_PATTERN_MAX_DECIMALS, LAT_LONG_VALUE_MAX_DECIMALS, LatLongFormatPipe, LatLongTestPage, LatitudeFormatPipe, LocalSettingsService, LogLevel, LogUtils, Logger, LoggingService, LoggingServiceModule, LongitudeFormatPipe, MASKS, MASK_RANGES, 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, MapPipe, MapToPipe, MapValuesPipe, MarkdownDirective, MarkdownService, MarkdownTestPage, MarkdownTestingModule, MarkdownUtils, MaskitoPlaceholderPipe, MaskitoTestPage, MatAutocompleteConfigHolder, MatAutocompleteField, MatAutocompleteFieldUtils, MatBadgeTestPage, MatBooleanField, MatChipsField, MatColorPipe, MatCommonTestPage, MatDate, MatDateShort, MatDateTime, MatDuration, MatLatLongField, MatLatLongFieldInput, 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, NamedFilterSelectorTestingModule, NamedFilterSelectorTestingPage, NavActionsColumnComponent, NetworkService, NetworkUtils, NewTokenForm, NewTokenModal, NgInitDirective, NgVarDirective, NoHtmlPipe, NotEmptyArrayPipe, NumberFormatPipe, ObservableTestPage, OddPipe, OtherMenuTestingPage, PEER_URL_REGEXP, PLUS_PLACEHOLDER_CHAR_REGEXP_GLOBAL, PRINT_ID_QUERY_PARAM, PRINT_LOADING_STORAGE_KEY_PREFIX, PRIORITIZED_AUTHORITIES, PUBKEY_REGEXP, Peer, Person, PersonFilter, PersonFilterAdditionalFields, PersonFragments, PersonService, PersonToStringPipe, PersonUtils, PersonValidatorService, PlatformService, PrintService, ProgressBarService, ProgressInterceptor, PropertiesFormTestPage, PropertiesFormTestingModule, PropertyEntity, PropertyEntityFilter, PropertyEntityValidator, PropertyFormatPipe, PropertyGetPipe, RESERVED_END_COLUMNS, RESERVED_START_COLUMNS, Referential, ReferentialFilter, ReferentialRef, ReferentialToStringPipe, ReferentialUtils, ReferentialValidatorService, ReferentialsToStringPipe, RegExpUtils, RegisterConfirmPage, RegisterForm, RegisterModal, ResizableComponent, ResizableDirective, ResizableModule, RoundPipe, RxStateComputed, RxStateModule, RxStateOutput, RxStateProperty, RxStateRegister, RxStateSelect, SCRYPT_PARAMS, SETTINGS_COMPACT_ROWS, 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, SHOW_TOOLTIP, SOCIAL_CONFIG_OPTIONS, SOCIAL_TESTING_PAGES, SPACE_PLACEHOLDER_CHAR, SPACE_PLACEHOLDER_CHAR_REGEXP_GLOBAL, SafeHtmlPipe, SafeStylePipe, SelectPeerModal, SelectionLengthPipe, ServerErrorCodes, SettingsPage, SharedAsyncValidators, SharedBadgeModule, SharedDebugModule, SharedDirectivesModule, SharedFormArrayValidators, SharedFormGroupValidators, SharedHotkeysModule, SharedMarkdownModule, SharedMatAutocompleteModule, SharedMatBooleanModule, SharedMatChipsModule, SharedMatDateTimeModule, SharedMatDurationModule, SharedMatLatLongModule, SharedMatSwipeModule, SharedMaterialModule, SharedModule, SharedNamedFilterModule, SharedPipesModule, SharedRoutingModule, SharedTestingModule, SharedTestsPage, SharedToolbarModule, SharedValidators, SocialErrorCodes, SocialModule, SocialModuleOptionsToken, SocialTestingModule, Software, SplitArrayInChunksPipe, StartableService, StatusById, StatusIds, StatusList, StorageDrivers, StorageExplorerComponent, StorageExplorerModule, StorageExplorerTestingModule, StorageExplorerTestingRoutingModule, StorageService, StrIncludesPipe, StrLengthPipe, StrReplacePipe, SubMenuTabDirective, SwipeTestPage, TABLE_SETTINGS_ENUM, TOOLBAR_HEADER_ID, Table2TestPage, TableSelectColumnsComponent, TableTestPage, TableTestingModule, TableValidatorService, TextForm, TextFormTestingModule, TextFormTestingPage, TextPopover, TextPopoverTestingModule, TextPopoverTestingPage, ThrottledClickDirective, ToStringPipe, ToastTestingModule, ToastTestingPage, Toasts, TokenScope, ToolbarComponent, ToolbarToken, TranslatablePipe, TranslateContextPipe, TranslateContextService, TreeItemEntityUtils, TruncHtmlPipe, TruncTextPipe, TruncateHtmlPipe, UploadFile, UploadFileComponent, UploadFilePopover, UploadFileTestingModule, UploadFileTestingPage, UriUtils, UrlUtils, UserEventModule, UserEventNotificationIcon, UserEventNotificationList, UserEventNotificationModal, UserEventTestService, UserEventTestingModule, UserEventTestingPage, UserSettings, UserToken, UserTokenTable, UsersPage, UsersUtils, ValueFormatPipe, VersionUtils, accountToString, adaptValueToControl, addValueInArray, arrayDistinct, arrayResize, arraySize, asInputElement, assignSkipUndefined, base64ArrayBuffer, booleanToString, canHaveFocus, capitalizeFirstLetter, chainPromises, changeCaseToUnderscore, clearValueInArray, collectByProperty, collectByPropertyPath, compareValues, compareValuesDesc, compareVersionNumbers, composeComparators, computeDecimalDegrees, computeDecimalPart, copyEntity2Form, createPromiseEvent, createPromiseEventEmitter, decorateWithTakeUntil, departmentToString, departmentsToString, disableAndClearControl, disableAndClearControls, disableControl, disableControls, emitPromiseEvent, enableControl, enableControls, enableRxStateProdMode, entityToString, equals, equalsOrNil, escapeRegExp, expansionAnimation, fadeInAnimation, fadeInOutAnimation, fadeInSlowAnimation, filterFalse, filterFormErrors, filterFormErrorsByPath, filterFormErrorsByPrefix, filterNotNil, filterNumberInput, filterTrue, findParentWithClass, firstArrayValue, firstFalse, firstFalsePromise, firstNotNil, firstNotNilPromise, firstPromise, firstTrue, firstTruePromise, focusInput, focusNextInput, focusPreviousInput, formatLatLong, formatLatitude, formatLongitude, fromDateISOString, fromScrollEndEvent, fromUnixMsTimestamp, fromUnixTimestamp, getCaretPosition, getColorContrast, getColorLuminance, getColorShade, getColorTint, getControlFromPath, getFocusableInputElements, getFormErrors, getFormValueFromEntity, getInputRangeFromCaretIndex, getInputSelectionRangesFromMask, getProperty, getPropertyByPath, getPropertyByPathAsString, getRandomImage, getRandomImageWithCredit, getUserAgent, hexToRgb, hexToRgbArray, initArrayControlsFromValues, interpolateString, intersectArrays, isAndroid, isBlankString, isCapacitor, isChrome, isControlHasInput, isEdge, isEmptyArray, isEntityService, isFirefox, isFocusableElement, isIOS, isInputElement, isInstanceOf, isInt, isIpad, isLightColor, isMacOS, isMobile, isNil, isNilOrBlank, isNilOrNaN, isNotEmptyArray, isNotNil, isNotNilBoolean, isNotNilObject, isNotNilOrBlank, isNotNilOrNaN, isNotNilString, isNumber, isNumberRange, isOnFieldMode, isPrint, isProgressEvent, isPromise, isResponseEvent, isSafari, isSameVersion, isStartableService, isTouchUi, isVersionCompatible, isWindows, joinProperties, joinPropertiesPath, lastArrayValue, logFormErrors, markAllAsTouched, markAsUntouched, markControlAsTouched, markFormGroupAsTouched, maskitoAutoSelectByMaskPattern, maskitoPrefixPlugin, matchMedia, matchUpperCase, mergeLoadResult, mergeObjectsWithoutUndefined, mixHex, moveInputCaretToSeparator, newArray, noHtml, noTrailingSlash, notNilOrDefault, nullIfNilOrBlank, nullIfUndefined, numberOrNilAttribute, numberToString, parseLatitudeOrLongitude, propertiesPathComparator, propertyComparator, propertyPathComparator, provideAccountService, providePersonService, referentialToString, referentialsToString, remove, removeAll, removeDiacritics, removeDuplicatesFromArray, removeEnd, removeValueInArray, replaceAll, resetCalculatedValue, resizeArray, rgbArrayToHex, rgbToHex, round, scrollFactory, selectInputContent, selectInputContentFromEvent, selectInputRange, setCalculatedValue, setControlEnabled, setControlRequired, setControlsEnabled, setFormErrors, setPropertyByPath, setTabIndex, sleep, slideDownAnimation, slideInAnimation, slideInOutAnimation, slideUpDownAnimation, sort, splitArrayInChunks, splitById, splitByProperty, splitDegreesToDDArray, splitDegreesToDDMMArray, splitDegreesToDDMMSSArray, startsWithUpperCase, suggestFromArray, suggestFromStringArray, tabindexComparator, testUserAgent, toBoolean, toDateISOString, toDuration, toFloat, toInt, toLoadData, toLoadResult, toNotNil, toNumber, trimEmptyToNull, truncateHtml, uncapitalizeFirstLetter, undefinedIfNull, underscoreToChangeCase, updateValueAndValidity, waitFor, waitForFalse, waitForTrue, waitIdle, waitWhilePending };
|
|
53060
|
+
export { APP_ABOUT_DEVELOPERS, APP_ABOUT_PARTNERS, APP_ACCOUNT_SERVICE, APP_ACCOUNT_SERVICE_OPTIONS, APP_CELL_SELECTION_SERVICE_CONFIG_TOKEN, APP_CELL_SELECTION_SERVICE_TOKEN, APP_CONFIG_OPTIONS, APP_DEBUG_DATA_SERVICE, APP_FEED_SERVICE, APP_FORM_ERROR_I18N_KEYS, APP_GRAPHQL_FRAGMENTS, APP_GRAPHQL_TYPE_POLICIES, APP_HOME_BUTTONS, APP_HOME_CONFIG, APP_HOTKEYS_CONFIG, 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_PERSON_SERVICE, APP_PERSON_SERVICE_OPTIONS, APP_PROGRESS_BAR_SERVICE, APP_SETTINGS_MENU_ITEMS, APP_SHOW_TOOLTIP, 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, AbstractPersonService, AbstractSelectionModelPipe, AbstractTableSelectionPipe, AbstractUserEventService, Account, AccountPage, AccountService, AccountToStringPipe, AccountUtils, ActionsColumnComponent, AdminModule, AdminRoutingModule, AdminUsersModule, Alerts, AndroidOsEnvironment, AppAboutModalModule, AppAccountModule, AppAsyncTable, AppAuthForm, AppAuthModal, AppAuthModule, AppChangePasswordModule, AppChangePasswordPage, AppEditor, AppEditorOptions, AppEntityEditor, AppEntityEditorModal, AppEntityEditorModalOptions, AppEntityFormModule, AppForm, AppFormArray, AppFormButtonsBarModule, AppFormContainer, AppFormField, AppFormModule, AppFormProvider, AppFormUtils, AppGestureConfig, AppGraphQLModule, AppHomePageModule, AppIconComponent, AppIconModule, AppImageGalleryComponent, AppInMemoryTable, AppInstallUpgradeCard, AppInstallUpgradeCardModule, AppListForm, AppListFormModule, AppLoadingSpinner, AppMarkdownContent, AppMarkdownModal, AppMenuModule, AppNullForm, AppPropertiesForm, AppPropertiesFormModule, AppPropertiesTable, AppPropertiesUtils, AppPropertyUtils, AppRegisterModule, AppResetPasswordModal, AppRowField, AppSelectPeerModule, AppSelectUsersModal, AppSettingsPageModule, AppTabEditor, AppTabEditorOptions, AppTable, AppTableModule, AppTableUtils, AppTextFormModule, AppTextPopoverModule, AppUpdateOfflineModeCard, AppUpdateOfflineModeCardModule, AppValidatorService, AppendQueryParamsPipePipe, ArrayDistinctPipe, ArrayFilterPipe, ArrayFindByPropertyPipe, ArrayFirstPipe, ArrayFormTestPage, ArrayIncludesPipe, ArrayJoinPipe, ArrayLastPipe, ArrayLengthPipe, ArrayMapPipe, ArrayPluckPipe, ArraySlicePipe, ArraySortPipe, AsAnyPipe, AsArrayPipe, AsBooleanPipe, AsFloatLabelTypePipe, AsObservablePipe, AudioProvider, AudioTestingModule, AudioTestingPage, AuthGuardService, AutoResizeDirective, AutoTitleDirective, AutoTooltipDirective, AutocompleteTestPage, AutofocusDirective, BadgeDirective, BadgeNumberPipe, Base58, BaseEntityService, BaseGraphqlService, BaseGraphqlServiceOptions, BaseReferential, Beans, BooleanFormatPipe, BooleanTestPage, CORE_CONFIG_OPTIONS, CORE_TESTING_PAGES, CapitalizePipe, CellIdentifierDirective, CellSelectionDirective, CellSelectionService, CellValueChangeListener, ChangePasswordForm, 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_JOIN_ARRAY_VALUES_SEPARATOR, DEFAULT_JOIN_PROPERTIES_SEPARATOR, DEFAULT_MENU_SHOW_WHEN, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZE_OPTIONS, DEFAULT_PLACEHOLDER_CHAR, DEFAULT_REQUIRED_COLUMNS, DateDiffDurationPipe, DateFormatPipe, DateFormatService, DateFromNowPipe, DateFromPipe, DateShortTestPage, DateTestPage, DateTimeTestPage, DateUtils, DebugComponent, Department, DepartmentToStringPipe, DisplayWithPipe, DragAndDropDirective, DurationPipe, DurationTestPage, ED25519_SEED_LENGTH, EMPTY_PLACEHOLDER_CHAR, EMPTY_PLACEHOLDER_CHAR_REGEXP_GLOBAL, ENTITIES_STORAGE_KEY_PREFIX, ENVIRONMENT, EmptyArrayPipe, EntitiesAsyncTableDataSource, EntitiesStorage, EntitiesTableDataSource, Entity, EntityClass, EntityClasses, EntityFilter, EntityFilterUtils, EntityMetadataComponent, EntityStore, EntityUtils, Environment, EnvironmentHttpLoader, EnvironmentLoader, ErrorCodes, EvenPipe, FeedDirective, FeedModule, FeedPage, FeedService, FeedsComponent, FileResponse, FileService, FileSizePipe, FilesUtils, FirstFalsePipe, FirstPipe, FirstTruePipe, FormArrayHelper, FormArrayTestModule, FormButtonsBarComponent, FormButtonsBarToken, FormErrorPipe, FormErrorTranslatePipe, FormErrorTranslator, FormFieldDefinitionUtils, 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, IsValidDatePipe, JobModule, JobProgression, JobProgressionComponent, JobProgressionIcon, JobProgressionList, JobProgressionService, JobProgressionTestService, JobProgressionTestingPage, JobTestingModule, JobUtils, JsonFeedUtils, JsonUtils, KEYBOARD_HIDE_DELAY_MS, LAT_LONG_PATTERNS, LAT_LONG_PATTERN_MAX_DECIMALS, LAT_LONG_VALUE_MAX_DECIMALS, LatLongFormatPipe, LatLongTestPage, LatitudeFormatPipe, LocalSettingsService, LogLevel, LogUtils, Logger, LoggingService, LoggingServiceModule, LongitudeFormatPipe, MASKS, MASK_RANGES, 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, MapPipe, MapToPipe, MapValuesPipe, MarkdownDirective, MarkdownService, MarkdownTestPage, MarkdownTestingModule, MarkdownUtils, MaskitoPlaceholderPipe, MaskitoTestPage, MatAutocompleteConfigHolder, MatAutocompleteField, MatAutocompleteFieldUtils, MatBadgeTestPage, MatBooleanField, MatChipsField, MatColorPipe, MatCommonTestPage, MatDate, MatDateShort, MatDateTime, MatDuration, MatLatLongField, MatLatLongFieldInput, 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, NamedFilterSelectorTestingModule, NamedFilterSelectorTestingPage, NavActionsColumnComponent, NetworkService, NetworkUtils, NewTokenForm, NewTokenModal, NgInitDirective, NgVarDirective, NoHtmlPipe, NotEmptyArrayPipe, NumberFormatPipe, ObservableTestPage, OddPipe, OtherMenuTestingPage, PEER_URL_REGEXP, PLUS_PLACEHOLDER_CHAR_REGEXP_GLOBAL, PRINT_ID_QUERY_PARAM, PRINT_LOADING_STORAGE_KEY_PREFIX, PRIORITIZED_AUTHORITIES, PUBKEY_REGEXP, Peer, Person, PersonFilter, PersonFilterAdditionalFields, PersonFragments, PersonService, PersonToStringPipe, PersonUtils, PersonValidatorService, PlatformService, PrintService, ProgressBarService, ProgressInterceptor, PropertiesFormTestPage, PropertiesFormTestingModule, PropertyEntity, PropertyEntityFilter, PropertyEntityValidator, PropertyFormatPipe, PropertyGetPipe, RESERVED_END_COLUMNS, RESERVED_START_COLUMNS, Referential, ReferentialFilter, ReferentialRef, ReferentialToStringPipe, ReferentialUtils, ReferentialValidatorService, ReferentialsToStringPipe, RegExpUtils, RegisterConfirmPage, RegisterForm, RegisterModal, ResizableComponent, ResizableDirective, ResizableModule, RoundPipe, RxStateComputed, RxStateModule, RxStateOutput, RxStateProperty, RxStateRegister, RxStateSelect, SCRYPT_PARAMS, SETTINGS_COMPACT_ROWS, 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_CONFIG_OPTIONS, SOCIAL_TESTING_PAGES, SPACE_PLACEHOLDER_CHAR, SPACE_PLACEHOLDER_CHAR_REGEXP_GLOBAL, SafeHtmlPipe, SafeStylePipe, SelectPeerModal, SelectionLengthPipe, ServerErrorCodes, SettingsPage, SharedAsyncValidators, SharedBadgeModule, SharedDebugModule, SharedDirectivesModule, SharedFormArrayValidators, SharedFormGroupValidators, SharedHotkeysModule, SharedMarkdownModule, SharedMatAutocompleteModule, SharedMatBooleanModule, SharedMatChipsModule, SharedMatDateTimeModule, SharedMatDurationModule, SharedMatLatLongModule, SharedMatSwipeModule, SharedMaterialModule, SharedModule, SharedNamedFilterModule, SharedPipesModule, SharedRoutingModule, SharedTestingModule, SharedTestsPage, SharedToolbarModule, SharedValidators, SocialErrorCodes, SocialModule, SocialModuleOptionsToken, SocialTestingModule, Software, SplitArrayInChunksPipe, StartableService, StatusById, StatusIds, StatusList, StorageDrivers, StorageExplorerComponent, StorageExplorerModule, StorageExplorerTestingModule, StorageExplorerTestingRoutingModule, StorageService, StrIncludesPipe, StrLengthPipe, StrReplacePipe, SubMenuTabDirective, SwipeTestPage, TABLE_SETTINGS_ENUM, TOOLBAR_HEADER_ID, Table2TestPage, TableSelectColumnsComponent, TableTestPage, TableTestingModule, TableValidatorService, TextForm, TextFormTestingModule, TextFormTestingPage, TextPopover, TextPopoverTestingModule, TextPopoverTestingPage, ThrottledClickDirective, ToStringPipe, ToastTestingModule, ToastTestingPage, Toasts, TokenScope, ToolbarComponent, ToolbarToken, TranslatablePipe, TranslateContextPipe, TranslateContextService, TreeItemEntityUtils, TruncHtmlPipe, TruncTextPipe, TruncateHtmlPipe, UploadFile, UploadFileComponent, UploadFilePopover, UploadFileTestingModule, UploadFileTestingPage, UriUtils, UrlUtils, UserEventModule, UserEventNotificationIcon, UserEventNotificationList, UserEventNotificationModal, UserEventTestService, UserEventTestingModule, UserEventTestingPage, UserSettings, UserToken, UserTokenTable, UsersPage, UsersUtils, ValueFormatPipe, VersionUtils, accountToString, adaptValueToControl, addValueInArray, arrayDistinct, arrayResize, arraySize, asInputElement, assignSkipUndefined, base64ArrayBuffer, booleanToString, canHaveFocus, capitalizeFirstLetter, chainPromises, changeCaseToUnderscore, clearValueInArray, collectByProperty, collectByPropertyPath, compareValues, compareValuesDesc, compareVersionNumbers, composeComparators, computeDecimalDegrees, computeDecimalPart, copyEntity2Form, createPromiseEvent, createPromiseEventEmitter, decorateWithTakeUntil, departmentToString, departmentsToString, disableAndClearControl, disableAndClearControls, disableControl, disableControls, emitPromiseEvent, enableControl, enableControls, enableRxStateProdMode, entityToString, equals, equalsOrNil, escapeRegExp, expansionAnimation, fadeInAnimation, fadeInOutAnimation, fadeInSlowAnimation, filterFalse, filterFormErrors, filterFormErrorsByPath, filterFormErrorsByPrefix, filterNotNil, filterNumberInput, filterTrue, findParentWithClass, firstArrayValue, firstFalse, firstFalsePromise, firstNotNil, firstNotNilPromise, firstPromise, firstTrue, firstTruePromise, focusInput, focusNextInput, focusPreviousInput, formatLatLong, formatLatitude, formatLongitude, fromDateISOString, fromScrollEndEvent, fromUnixMsTimestamp, fromUnixTimestamp, getCaretPosition, getColorContrast, getColorLuminance, getColorShade, getColorTint, getControlFromPath, getFocusableInputElements, getFormErrors, getFormValueFromEntity, getInputRangeFromCaretIndex, getInputSelectionRangesFromMask, getProperty, getPropertyByPath, getPropertyByPathAsString, getRandomImage, getRandomImageWithCredit, getUserAgent, hexToRgb, hexToRgbArray, initArrayControlsFromValues, interpolateString, intersectArrays, isAndroid, isBlankString, isCapacitor, isChrome, isControlHasInput, isEdge, isEmptyArray, isEntityService, isFirefox, isFocusableElement, isIOS, isInputElement, isInstanceOf, isInt, isIpad, isLightColor, isMacOS, isMobile, isNil, isNilOrBlank, isNilOrNaN, isNotEmptyArray, isNotNil, isNotNilBoolean, isNotNilObject, isNotNilOrBlank, isNotNilOrNaN, isNotNilString, isNumber, isNumberRange, isOnFieldMode, isPrint, isProgressEvent, isPromise, isResponseEvent, isSafari, isSameVersion, isStartableService, isTouchUi, isVersionCompatible, isWindows, joinProperties, joinPropertiesPath, lastArrayValue, logFormErrors, markAllAsTouched, markAsUntouched, markControlAsTouched, markFormGroupAsTouched, maskitoAutoSelectByMaskPattern, maskitoPrefixPlugin, matchMedia, matchUpperCase, mergeLoadResult, mergeObjectsWithoutUndefined, mixHex, moveInputCaretToSeparator, newArray, noHtml, noTrailingSlash, notNilOrDefault, nullIfNilOrBlank, nullIfUndefined, numberOrNilAttribute, numberToString, parseLatitudeOrLongitude, propertiesPathComparator, propertyComparator, propertyPathComparator, provideAccountService, providePersonService, referentialToString, referentialsToString, remove, removeAll, removeDiacritics, removeDuplicatesFromArray, removeEnd, removeValueInArray, replaceAll, resetCalculatedValue, resizeArray, rgbArrayToHex, rgbToHex, round, scrollFactory, selectInputContent, selectInputContentFromEvent, selectInputRange, setCalculatedValue, setControlEnabled, setControlRequired, setControlsEnabled, setFormErrors, setPropertyByPath, setTabIndex, sleep, slideDownAnimation, slideInAnimation, slideInOutAnimation, slideUpDownAnimation, sort, splitArrayInChunks, splitById, splitByProperty, splitDegreesToDDArray, splitDegreesToDDMMArray, splitDegreesToDDMMSSArray, startsWithUpperCase, suggestFromArray, suggestFromStringArray, tabindexComparator, testUserAgent, toBoolean, toDateISOString, toDuration, toFloat, toInt, toLoadData, toLoadResult, toNotNil, toNumber, trimEmptyToNull, truncateHtml, uncapitalizeFirstLetter, undefinedIfNull, underscoreToChangeCase, updateValueAndValidity, waitFor, waitForFalse, waitForTrue, waitIdle, waitWhilePending };
|
|
53061
53061
|
//# sourceMappingURL=sumaris-net.ngx-components.mjs.map
|