@sumaris-net/ngx-components 1.23.42 → 1.23.44
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 +36 -86
- 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/graphql/graphql.utils.js +2 -3
- package/esm2015/src/app/shared/file/file.service.js +2 -3
- package/esm2015/src/app/shared/graph/graph-colors.js +15 -66
- package/esm2015/src/app/shared/services/memory-entity-service.class.js +2 -2
- package/esm2015/src/app/vendor.js +6 -1
- package/fesm2015/sumaris-net.ngx-components.js +35 -86
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/shared/graph/graph-colors.d.ts +7 -8
- package/src/app/vendor.d.ts +2 -0
- package/sumaris-net.ngx-components.metadata.json +1 -1
|
@@ -56,10 +56,14 @@ import { AudioManagement } from '@ionic-native/audio-management/ngx';
|
|
|
56
56
|
import { NativeAudio } from '@ionic-native/native-audio/ngx/index';
|
|
57
57
|
import { Vibration } from '@ionic-native/vibration/ngx/index';
|
|
58
58
|
import { AudioManagement as AudioManagement$1 } from '@ionic-native/audio-management/ngx/index';
|
|
59
|
+
import { sign, box, hash, verify } from 'tweetnacl';
|
|
60
|
+
import 'tweetnacl-util';
|
|
61
|
+
import 'scrypt-async';
|
|
62
|
+
import 'hammerjs';
|
|
63
|
+
import * as momentTZImported from 'moment-timezone';
|
|
59
64
|
import * as uuidv4Imported from 'uuid/v4';
|
|
60
65
|
import { DragDropModule } from '@angular/cdk/drag-drop';
|
|
61
66
|
import { MarkdownModule } from 'ngx-markdown';
|
|
62
|
-
import { sign, box, hash, verify } from 'tweetnacl';
|
|
63
67
|
import { Storage, IonicStorageModule } from '@ionic/storage';
|
|
64
68
|
import 'zone.js/dist/zone-error';
|
|
65
69
|
import { SplashScreen as SplashScreen$1 } from '@ionic-native/splash-screen/ngx';
|
|
@@ -90,10 +94,6 @@ import { CdkTextareaAutosize } from '@angular/cdk/text-field';
|
|
|
90
94
|
import { ValidatorService, TableDataSource } from '@e-is/ngx-material-table';
|
|
91
95
|
import { SelectionModel } from '@angular/cdk/collections';
|
|
92
96
|
import { NgxJdenticonModule } from 'ngx-jdenticon';
|
|
93
|
-
import 'tweetnacl-util';
|
|
94
|
-
import 'scrypt-async';
|
|
95
|
-
import 'hammerjs';
|
|
96
|
-
import * as momentTZImported from 'moment-timezone';
|
|
97
97
|
|
|
98
98
|
const ENVIRONMENT = new InjectionToken('ENV');
|
|
99
99
|
class Environment {
|
|
@@ -9707,7 +9707,10 @@ class ImagesUtils {
|
|
|
9707
9707
|
}
|
|
9708
9708
|
}
|
|
9709
9709
|
|
|
9710
|
+
const moment$3 = momentImported;
|
|
9711
|
+
const tz = momentTZImported;
|
|
9710
9712
|
const uuidv4 = uuidv4Imported;
|
|
9713
|
+
|
|
9711
9714
|
class FileService {
|
|
9712
9715
|
constructor(platform,
|
|
9713
9716
|
//private transfer: FileTransfer,
|
|
@@ -10845,7 +10848,7 @@ SelectPeerModal.propDecorators = {
|
|
|
10845
10848
|
onRefresh: [{ type: Input }]
|
|
10846
10849
|
};
|
|
10847
10850
|
|
|
10848
|
-
const moment$
|
|
10851
|
+
const moment$4 = momentImported;
|
|
10849
10852
|
const SETTINGS_STORAGE_KEY = 'settings';
|
|
10850
10853
|
const SETTINGS_TRANSIENT_PROPERTIES = ['mobile', 'touchUi' /*deprecated*/];
|
|
10851
10854
|
// fixme: this constant points to static environment
|
|
@@ -11088,11 +11091,11 @@ class LocalSettingsService extends StartableService {
|
|
|
11088
11091
|
if (!feature) {
|
|
11089
11092
|
feature = {
|
|
11090
11093
|
name: featureName.toLowerCase(),
|
|
11091
|
-
lastSyncDate: moment$
|
|
11094
|
+
lastSyncDate: moment$4().toISOString()
|
|
11092
11095
|
};
|
|
11093
11096
|
}
|
|
11094
11097
|
else {
|
|
11095
|
-
feature.lastSyncDate = moment$
|
|
11098
|
+
feature.lastSyncDate = moment$4().toISOString();
|
|
11096
11099
|
}
|
|
11097
11100
|
this.saveOfflineFeature(feature);
|
|
11098
11101
|
}
|
|
@@ -11253,7 +11256,7 @@ class LocalSettingsService extends StartableService {
|
|
|
11253
11256
|
if (!page || !page.title || !page.path)
|
|
11254
11257
|
throw Error('Missing required argument \'page\', \'page.path\' or \'page.title\'');
|
|
11255
11258
|
// Set time
|
|
11256
|
-
page.time = page.time || moment$
|
|
11259
|
+
page.time = page.time || moment$4();
|
|
11257
11260
|
// Clean the title (remove <small> tags)
|
|
11258
11261
|
if (!opts || opts.removeTitleSmallTag !== false) {
|
|
11259
11262
|
const tagIndex = page.title.indexOf('</small>');
|
|
@@ -13459,7 +13462,6 @@ function accountToString(data) {
|
|
|
13459
13462
|
(data.lastName || '')) || '';
|
|
13460
13463
|
}
|
|
13461
13464
|
|
|
13462
|
-
const uuidv4$1 = uuidv4Imported;
|
|
13463
13465
|
const _global = typeof global !== 'undefined' ? global : (typeof window !== 'undefined' ? window : {});
|
|
13464
13466
|
const NativeWebSocket = _global.WebSocket || _global.MozWebSocket;
|
|
13465
13467
|
/**
|
|
@@ -13503,7 +13505,7 @@ function createTrackerLink(opts) {
|
|
|
13503
13505
|
// Skip if not tracked
|
|
13504
13506
|
if (!context || !context.tracked)
|
|
13505
13507
|
return forward(operation);
|
|
13506
|
-
const id = context.serializationKey || uuidv4
|
|
13508
|
+
const id = context.serializationKey || uuidv4();
|
|
13507
13509
|
console.debug(`[apollo-tracker-link] Watching tracked query {${operation.operationName}#${id}}`);
|
|
13508
13510
|
// Clean context, before calling JSON.stringify (remove unused attributes)
|
|
13509
13511
|
const cleanContext = Object.assign(Object.assign({}, context), { optimisticResponse: null, cache: null });
|
|
@@ -16433,7 +16435,7 @@ class UriUtils {
|
|
|
16433
16435
|
}
|
|
16434
16436
|
}
|
|
16435
16437
|
|
|
16436
|
-
const moment$
|
|
16438
|
+
const moment$5 = momentImported;
|
|
16437
16439
|
const AndroidOsEnvironment = Object.freeze({
|
|
16438
16440
|
DIRECTORY_DOWNLOADS: 'Download',
|
|
16439
16441
|
DIRECTORY_DOWNLOADS_OLD: 'Downloads',
|
|
@@ -16696,16 +16698,16 @@ class PlatformService extends StartableService {
|
|
|
16696
16698
|
}
|
|
16697
16699
|
// config moment lib
|
|
16698
16700
|
try {
|
|
16699
|
-
moment$
|
|
16701
|
+
moment$5.locale(event.lang);
|
|
16700
16702
|
console.debug('[platform] Use locale {' + event.lang + '}');
|
|
16701
16703
|
}
|
|
16702
16704
|
// If error, fallback to en
|
|
16703
16705
|
catch (err) {
|
|
16704
|
-
moment$
|
|
16706
|
+
moment$5.locale('en');
|
|
16705
16707
|
console.warn('[platform] Unknown local for moment lib. Using default [en]');
|
|
16706
16708
|
}
|
|
16707
16709
|
// Config date adapter
|
|
16708
|
-
this.dateAdapter.setLocale(moment$
|
|
16710
|
+
this.dateAdapter.setLocale(moment$5.locale());
|
|
16709
16711
|
}
|
|
16710
16712
|
});
|
|
16711
16713
|
this.settings.onChange.subscribe(data => {
|
|
@@ -18504,7 +18506,7 @@ class InMemoryEntitiesService extends StartableObservableService {
|
|
|
18504
18506
|
data = data.slice();
|
|
18505
18507
|
}
|
|
18506
18508
|
const res = { data, total };
|
|
18507
|
-
const nextOffset = (offset || 0) + size;
|
|
18509
|
+
const nextOffset = size > 0 ? (offset || 0) + size : total;
|
|
18508
18510
|
if (nextOffset < total) {
|
|
18509
18511
|
res.fetchMore = () => this.loadAll(nextOffset, size, sortBy, sortDirection, filter, opts)
|
|
18510
18512
|
.then(res => {
|
|
@@ -18916,14 +18918,13 @@ Color.transparent = function () {
|
|
|
18916
18918
|
// @dynamic
|
|
18917
18919
|
class ColorScale {
|
|
18918
18920
|
constructor(colorArray, options) {
|
|
18919
|
-
this.colorArray = colorArray;
|
|
18920
18921
|
options = options || {};
|
|
18921
18922
|
// reserved last colors for value > max
|
|
18922
18923
|
const nbIntervalBeforeUpper = !options.upperMax ? colorArray.length : (colorArray.length - 1);
|
|
18923
18924
|
this._min = options.min || 0;
|
|
18924
18925
|
this._max = options.max || nbIntervalBeforeUpper;
|
|
18925
18926
|
this._rangeSize = Math.round((this._max - this._min) / nbIntervalBeforeUpper);
|
|
18926
|
-
this._legendItems = this.
|
|
18927
|
+
this._legendItems = this.computeLegendItems(colorArray);
|
|
18927
18928
|
}
|
|
18928
18929
|
static default() {
|
|
18929
18930
|
return ColorScale.custom(25);
|
|
@@ -18946,16 +18947,19 @@ class ColorScale {
|
|
|
18946
18947
|
items: this._legendItems
|
|
18947
18948
|
};
|
|
18948
18949
|
}
|
|
18949
|
-
|
|
18950
|
-
const index = Math.floor(value * (this.
|
|
18951
|
-
return this.
|
|
18950
|
+
getLegendForValue(value) {
|
|
18951
|
+
const index = Math.floor(value * (this._legendItems.length - 1) / this._max);
|
|
18952
|
+
return this._legendItems[index];
|
|
18952
18953
|
}
|
|
18953
|
-
|
|
18954
|
-
return this.
|
|
18954
|
+
getLegendAtIndex(index) {
|
|
18955
|
+
return this._legendItems[index];
|
|
18956
|
+
}
|
|
18957
|
+
computeLegendItems(colorArray) {
|
|
18958
|
+
return colorArray.map((color, index) => {
|
|
18955
18959
|
const start = index * this._rangeSize;
|
|
18956
18960
|
const end = start + this._rangeSize;
|
|
18957
18961
|
return {
|
|
18958
|
-
color,
|
|
18962
|
+
color: new Color(color),
|
|
18959
18963
|
label: (end < this._max) ? `${start.toLocaleString()} - ${end.toLocaleString()}` : ` >= ${start}`
|
|
18960
18964
|
};
|
|
18961
18965
|
});
|
|
@@ -18964,12 +18968,10 @@ class ColorScale {
|
|
|
18964
18968
|
ColorScale.custom = (count, options) => {
|
|
18965
18969
|
options = options || {};
|
|
18966
18970
|
return new ColorScale(linearColorGradientWithIntermediate(count, {
|
|
18967
|
-
opacity: options.opacity,
|
|
18968
18971
|
startColor: options.startColor || undefined,
|
|
18969
18972
|
mainColor: options.mainColor || undefined,
|
|
18970
18973
|
mainColorIndex: isNotNil(options.mainColorIndex) ? options.mainColorIndex : undefined,
|
|
18971
|
-
endColor: options.endColor || undefined
|
|
18972
|
-
format: options.format
|
|
18974
|
+
endColor: options.endColor || undefined
|
|
18973
18975
|
}), options);
|
|
18974
18976
|
};
|
|
18975
18977
|
// Fill colorsMap
|
|
@@ -18977,29 +18979,6 @@ Object.getOwnPropertyNames(rgbArrayMap)
|
|
|
18977
18979
|
.forEach((key) => {
|
|
18978
18980
|
colorsMap[key] = new Color(rgbArrayMap[key], 1, key);
|
|
18979
18981
|
});
|
|
18980
|
-
// Internal function
|
|
18981
|
-
function state2side(state) {
|
|
18982
|
-
switch (state) {
|
|
18983
|
-
case 0:
|
|
18984
|
-
return 0;
|
|
18985
|
-
case 1:
|
|
18986
|
-
return -1;
|
|
18987
|
-
case 2:
|
|
18988
|
-
return 0;
|
|
18989
|
-
case 3:
|
|
18990
|
-
return 1;
|
|
18991
|
-
}
|
|
18992
|
-
}
|
|
18993
|
-
const ɵ0$b = (defaultStateSize) => [
|
|
18994
|
-
Math.round((rgbArrayMap.red[0] - 50) / defaultStateSize),
|
|
18995
|
-
Math.round((255 - rgbArrayMap.red[1]) / defaultStateSize),
|
|
18996
|
-
Math.round((255 - rgbArrayMap.red[2]) / defaultStateSize)
|
|
18997
|
-
];
|
|
18998
|
-
const SCALE_OPTIONS_DEFAULT = {
|
|
18999
|
-
startColor: rgbArrayMap.red,
|
|
19000
|
-
startStates: [0, 2, 3],
|
|
19001
|
-
startStepsFn: ɵ0$b
|
|
19002
|
-
};
|
|
19003
18982
|
/**
|
|
19004
18983
|
* Internal function, that create a colors scale, using iteration
|
|
19005
18984
|
*
|
|
@@ -19012,34 +18991,26 @@ const SCALE_OPTIONS_DEFAULT = {
|
|
|
19012
18991
|
function linearColorGradientWithIntermediate(count, options) {
|
|
19013
18992
|
options = options || {};
|
|
19014
18993
|
// From [0,1]
|
|
19015
|
-
options.opacity = (options.opacity > 0 && options.opacity < 1) ? options.opacity : 1;
|
|
19016
18994
|
options.startColor = options.startColor || [255, 255, 190]; // default start = creme
|
|
19017
18995
|
options.mainColorIndex = options.mainColorIndex && options.mainColorIndex < count - 1 ? options.mainColorIndex : count - 1;
|
|
19018
18996
|
options.endColor = options.endColor || [255, 0, 0]; // default main = red
|
|
19019
|
-
options.format = options.format || 'rgb';
|
|
19020
18997
|
if (!options.mainColor) {
|
|
19021
18998
|
return linearColorGradient(count, {
|
|
19022
|
-
opacity: options.opacity,
|
|
19023
18999
|
startColor: options.startColor,
|
|
19024
|
-
endColor: options.endColor
|
|
19025
|
-
format: options.format
|
|
19000
|
+
endColor: options.endColor
|
|
19026
19001
|
});
|
|
19027
19002
|
}
|
|
19028
19003
|
else {
|
|
19029
19004
|
// Step 1: startColor -> mainColor
|
|
19030
19005
|
const result = linearColorGradient(options.mainColorIndex + 1, {
|
|
19031
|
-
opacity: options.opacity,
|
|
19032
19006
|
startColor: options.startColor,
|
|
19033
|
-
endColor: options.mainColor
|
|
19034
|
-
format: options.format
|
|
19007
|
+
endColor: options.mainColor
|
|
19035
19008
|
});
|
|
19036
19009
|
// Step 2: mainColor -> endColor
|
|
19037
19010
|
if (options.mainColorIndex < count - 1) {
|
|
19038
19011
|
return result.concat(linearColorGradient(count - options.mainColorIndex, {
|
|
19039
|
-
opacity: options.opacity,
|
|
19040
19012
|
startColor: options.mainColor,
|
|
19041
|
-
endColor: options.endColor
|
|
19042
|
-
format: options.format
|
|
19013
|
+
endColor: options.endColor
|
|
19043
19014
|
}));
|
|
19044
19015
|
}
|
|
19045
19016
|
else {
|
|
@@ -19050,10 +19021,8 @@ function linearColorGradientWithIntermediate(count, options) {
|
|
|
19050
19021
|
function linearColorGradient(count, options) {
|
|
19051
19022
|
options = options || {};
|
|
19052
19023
|
// From [0,1]
|
|
19053
|
-
options.opacity = (options.opacity > 0 && options.opacity < 1) ? options.opacity : 1;
|
|
19054
19024
|
options.startColor = options.startColor || [255, 255, 255]; // default start = white
|
|
19055
19025
|
options.endColor = options.endColor || [255, 0, 0]; // default end = red
|
|
19056
|
-
options.format = options.format || 'rgb';
|
|
19057
19026
|
const result = [];
|
|
19058
19027
|
const color = options.startColor.slice(); // copy the start color
|
|
19059
19028
|
const delta = [
|
|
@@ -19070,23 +19039,6 @@ function linearColorGradient(count, options) {
|
|
|
19070
19039
|
// Force last color = end color
|
|
19071
19040
|
result.push(options.endColor.slice());
|
|
19072
19041
|
// Output as array
|
|
19073
|
-
if (options.format === 'array') {
|
|
19074
|
-
return result;
|
|
19075
|
-
}
|
|
19076
|
-
// Output as rgb(r,g,b) string
|
|
19077
|
-
if (options.format === 'rgb') {
|
|
19078
|
-
if (options.opacity >= 1) {
|
|
19079
|
-
return result.map(color => 'rgb(' + color.join(',') + ')');
|
|
19080
|
-
}
|
|
19081
|
-
else {
|
|
19082
|
-
return result.map(color => 'rgba(' + color.concat(options.opacity).join(',') + ')');
|
|
19083
|
-
}
|
|
19084
|
-
}
|
|
19085
|
-
// Output as hex
|
|
19086
|
-
// TODO
|
|
19087
|
-
// return result.map(color => {
|
|
19088
|
-
// return "rgb(" + color.join(',') + ")";
|
|
19089
|
-
// });
|
|
19090
19042
|
return result;
|
|
19091
19043
|
}
|
|
19092
19044
|
|
|
@@ -22083,9 +22035,6 @@ CoreModule.decorators = [
|
|
|
22083
22035
|
},] }
|
|
22084
22036
|
];
|
|
22085
22037
|
|
|
22086
|
-
const moment$5 = momentImported;
|
|
22087
|
-
const tz = momentTZImported;
|
|
22088
|
-
|
|
22089
22038
|
class AuthGuardService {
|
|
22090
22039
|
constructor(accountService, modalCtrl, router, environment) {
|
|
22091
22040
|
this.accountService = accountService;
|
|
@@ -28359,7 +28308,7 @@ AdminModule.decorators = [
|
|
|
28359
28308
|
];
|
|
28360
28309
|
AdminModule.ctorParameters = () => [];
|
|
28361
28310
|
|
|
28362
|
-
const ɵ0$
|
|
28311
|
+
const ɵ0$b = {
|
|
28363
28312
|
profile: 'ADMIN'
|
|
28364
28313
|
};
|
|
28365
28314
|
const routes = [
|
|
@@ -28369,7 +28318,7 @@ const routes = [
|
|
|
28369
28318
|
component: UsersPage,
|
|
28370
28319
|
canActivate: [AuthGuardService],
|
|
28371
28320
|
canDeactivate: [ComponentDirtyGuard],
|
|
28372
|
-
data: ɵ0$
|
|
28321
|
+
data: ɵ0$b
|
|
28373
28322
|
}
|
|
28374
28323
|
];
|
|
28375
28324
|
class AdminRoutingModule {
|
|
@@ -30344,5 +30293,5 @@ JobProgressionTestService.decorators = [
|
|
|
30344
30293
|
* Generated bundle index. Do not edit.
|
|
30345
30294
|
*/
|
|
30346
30295
|
|
|
30347
|
-
export { APP_ABOUT_DEVELOPERS, APP_ABOUT_PARTNERS, APP_CONFIG_OPTIONS, APP_FORM_ERROR_I18N_KEYS, APP_GRAPHQL_TYPE_POLICIES, APP_HOME_BUTTONS, APP_JOB_PROGRESSION_SERVICE, APP_LOCALES, APP_LOCAL_SETTINGS, APP_LOCAL_SETTINGS_OPTIONS, APP_LOCAL_STORAGE_TYPE_POLICIES, APP_MENU_ITEMS, APP_MENU_OPTIONS, APP_TESTING_PAGES, APP_USER_EVENT_SERVICE, AboutModal, AbstractUserEventService, Account, AccountPage, AccountService, AccountToStringPipe, ActionsColumnComponent, AdminModule, AdminRoutingModule, Alerts, AndroidOsEnvironment, AnimationState, AppEditor, AppEditorOptions, AppEntityEditor, AppEntityEditorModal, AppEntityEditorModalOptions, AppForm, AppFormField, AppFormProvider, AppFormUtils, AppGestureConfig, AppGraphQLModule, AppHelpModal, AppIconComponent, AppIconModule, AppInMemoryTable, AppInstallUpgradeCard, AppListForm, AppLoadingSpinner, AppMenuModule, AppNullForm, AppPropertiesForm, AppTabEditor, AppTabEditorOptions, AppTable, AppTableUtils, AppValidatorService, AppendToInputDirective, ArrayFilterPipe, ArrayFirstPipe, ArrayIncludesPipe, ArrayJoinPipe, ArrayLengthPipe, ArrayPluckPipe, AudioProvider, AuthForm, AuthGuardService, AuthModal, AutoTitleDirective, AutocompleteTestPage, AutofocusDirective, Base58, BaseEntityService, BaseGraphqlService, BaseGraphqlServiceOptions, BaseReferential, Beans, CORE_CONFIG_OPTIONS, CORE_TESTING_PAGES, CellValueChangeListener, ChipsTestPage, Color, ColorScale, ComponentDirtyGuard, ConfigService, Configuration, CoreModule, CoreTestingModule, CryptoService, CsvUtils, DATE_ISO_PATTERN, DATE_PATTERN, DATE_UNIX_MS_TIMESTAMP, DATE_UNIX_TIMESTAMP, DEFAULT_MENU_SHOW_WHEN, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZE_OPTIONS, DEFAULT_PLACEHOLDER_CHAR, DEFAULT_REQUIRED_COLUMNS, DateDiffDurationPipe, DateFormatPipe, DateFromNowPipe, DateTimeTestPage, DateUtils, Department, DepartmentToStringPipe, DragAndDropDirective, DurationPipe, ENTITIES_STORAGE_KEY_PREFIX, ENVIRONMENT, EmptyArrayPipe, EntitiesStorage, EntitiesTableDataSource, Entity, EntityClass, EntityClasses, EntityFilter, EntityFilterUtils, EntityMetadataComponent, EntityStore, EntityUtils, Environment, ErrorCodes, EvenPipe, FileResponse, FileService, FileSizePipe, FilesUtils, FormArrayHelper, FormButtonsBarComponent, FormButtonsBarToken, FormErrorTranslatePipe, FormErrorTranslator, FormFieldValuesHolder, FormGetArrayPipe, FormGetControlPipe, FormGetGroupPipe, FormGetPipe, FormGetValuePipe, Fragments$1 as Fragments, GraphqlService, HAMMER_PRESS_TIME, HAMMER_TAP_TIME, HighlightPipe, HomePage, Hotkeys, HotkeysDialogComponent, IMAGE_DEFAULTS, ImagesUtils, InMemoryEntitiesService, IsLoginAccountPipe, IsNilOrBlankPipe, IsNotNilOrBlankPipe, IsNotOnFieldModePipe, IsOnFieldModePipe, Job, JobModule, JobProgression, JobProgressionIcon, JobProgressionList, JobProgressionService, JobProgressionTestService, JobProgressionTestingPage, JobTestingModule, 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, MOMENT_NO_TIME_PROPERTY, MapGetPipe, MapKeysPipe, MapValuesPipe, MatAutocompleteConfigHolder, MatAutocompleteField, MatBadgeIconDirective, MatBooleanField, MatChipsField, MatDate, MatDateShort, MatDateTime, MatDuration, MatLatLongField, MatNumpadComponent, MatNumpadContainerComponent, MatNumpadContent, MatPaginatorI18n, MatStepperI18n, MatSwipeField, MaterialTestingModule, MathAbsPipe, MenuComponent, MenuItems, MenuOptions, MenuService, Message, MessageFilter, MessageForm, MessageModal, MessageModule, MessageService, MessageTypeList, MessageTypes, MimeTypes, ModalToolbarComponent, NetworkService, NgInitDirective, NgVarDirective, NotEmptyArrayPipe, NumberFormatPipe, NumpadDirective, OddPipe, PRIORITIZED_AUTHORITIES, PUBKEY_REGEXP, Peer, Person, PersonFilter, PersonFragments, PersonService, PersonToStringPipe, PersonUtils, PersonValidatorService, PlatformService, ProgressBarService, ProgressInterceptor, PropertyFormatPipe, PropertyGetPipe, RESERVED_END_COLUMNS, RESERVED_START_COLUMNS, Referential, ReferentialFilter, ReferentialRef, ReferentialUtils, ReferentialValidatorService, RegisterConfirmPage, ResizableComponent, ResizableDirective, ResizableModule, SETTINGS_DISPLAY_COLUMNS, SETTINGS_FILTER, SETTINGS_PAGE_SIZE, SETTINGS_SORTED_COLUMN, SETTINGS_STORAGE_KEY, SETTINGS_TRANSIENT_PROPERTIES, SHARED_MATERIAL_TESTING_PAGES, SHARED_TESTING_PAGES, SOCIAL_TESTING_PAGES, SPACE_PLACEHOLDER_CHAR, SelectPeerModal, ServerErrorCodes, SettingsPage, SharedAsyncValidators, SharedDirectivesModule, SharedFormArrayValidators, SharedFormGroupValidators, SharedHotkeysModule, SharedMatAutocompleteModule, SharedMatBadgeIconModule, SharedMatBooleanModule, SharedMatChipsModule, SharedMatDateTimeModule, SharedMatDurationModule, SharedMatLatLongModule, SharedMatNumpadModule, SharedMatSwipeModule, SharedMaterialModule, SharedModule, SharedPipesModule, SharedRoutingModule, SharedTestingModule, SharedTestsPage, SharedValidators, SocialErrorCodes, SocialModule, SocialModuleOptionsToken, SocialTestingModule, Software, StartableService, StatusById, StatusIds, StatusList, StrIncludesPipe, StrLengthPipe, SwipeTestPage, TableSelectColumnsComponent, TableTestPage, TableTestingModule, TextForm, TextPopover, TextPopoverTestingModule, TextPopoverTestingPage, ToStringPipe, Toasts, ToolbarComponent, ToolbarToken, TranslatablePipe, TranslateContextPipe, TranslateContextService, UploadFile, UploadFileComponent, UploadFilePopover, UploadFileTestingModule, UploadFileTestingPage, UriUtils, UserEventModule, UserEventNotificationIcon, UserEventTestService, UserEventTestingModule, UserEventTestingPage, UserSettings, UsersPage, accountToString, adaptValueToControl, arrayDistinct, arrayGroupBy, arraySize, asInputElement, canHaveFocus, capitalizeFirstLetter, chainPromises, changeCaseToUnderscore, clearValueInArray, copyEntity2Form, createPromiseEvent, createPromiseEventEmitter, departmentToString, departmentsToString, disableControls, emitPromiseEvent, entityToString, equals, equalsOrNil, escapeRegExp, 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, isBlankString, isControlHasInput, isCordova, isEmptyArray, isIOS, isInputElement, isInstanceOf, isInt, isMobile, isNil, isNilOrBlank, isNilOrNaN, isNotEmptyArray, isNotNil, isNotNilBoolean, isNotNilOrBlank, isNotNilOrNaN, isNotNilString, isNumber, isNumberRange, isProgressEvent, isResponseEvent, isTouchUi, isWindows, joinProperties, joinPropertiesPath, logFormErrors, markAllAsTouched, markAsUntouched, markControlAsTouched, markFormGroupAsTouched, matchMedia, matchUpperCase, mergeLoadResult, mixHex, moment$
|
|
30296
|
+
export { APP_ABOUT_DEVELOPERS, APP_ABOUT_PARTNERS, APP_CONFIG_OPTIONS, APP_FORM_ERROR_I18N_KEYS, APP_GRAPHQL_TYPE_POLICIES, APP_HOME_BUTTONS, APP_JOB_PROGRESSION_SERVICE, APP_LOCALES, APP_LOCAL_SETTINGS, APP_LOCAL_SETTINGS_OPTIONS, APP_LOCAL_STORAGE_TYPE_POLICIES, APP_MENU_ITEMS, APP_MENU_OPTIONS, APP_TESTING_PAGES, APP_USER_EVENT_SERVICE, AboutModal, AbstractUserEventService, Account, AccountPage, AccountService, AccountToStringPipe, ActionsColumnComponent, AdminModule, AdminRoutingModule, Alerts, AndroidOsEnvironment, AnimationState, AppEditor, AppEditorOptions, AppEntityEditor, AppEntityEditorModal, AppEntityEditorModalOptions, AppForm, AppFormField, AppFormProvider, AppFormUtils, AppGestureConfig, AppGraphQLModule, AppHelpModal, AppIconComponent, AppIconModule, AppInMemoryTable, AppInstallUpgradeCard, AppListForm, AppLoadingSpinner, AppMenuModule, AppNullForm, AppPropertiesForm, AppTabEditor, AppTabEditorOptions, AppTable, AppTableUtils, AppValidatorService, AppendToInputDirective, ArrayFilterPipe, ArrayFirstPipe, ArrayIncludesPipe, ArrayJoinPipe, ArrayLengthPipe, ArrayPluckPipe, AudioProvider, AuthForm, AuthGuardService, AuthModal, AutoTitleDirective, AutocompleteTestPage, AutofocusDirective, Base58, BaseEntityService, BaseGraphqlService, BaseGraphqlServiceOptions, BaseReferential, Beans, CORE_CONFIG_OPTIONS, CORE_TESTING_PAGES, CellValueChangeListener, ChipsTestPage, Color, ColorScale, ComponentDirtyGuard, ConfigService, Configuration, CoreModule, CoreTestingModule, CryptoService, CsvUtils, DATE_ISO_PATTERN, DATE_PATTERN, DATE_UNIX_MS_TIMESTAMP, DATE_UNIX_TIMESTAMP, DEFAULT_MENU_SHOW_WHEN, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZE_OPTIONS, DEFAULT_PLACEHOLDER_CHAR, DEFAULT_REQUIRED_COLUMNS, DateDiffDurationPipe, DateFormatPipe, DateFromNowPipe, DateTimeTestPage, DateUtils, Department, DepartmentToStringPipe, DragAndDropDirective, DurationPipe, ENTITIES_STORAGE_KEY_PREFIX, ENVIRONMENT, EmptyArrayPipe, EntitiesStorage, EntitiesTableDataSource, Entity, EntityClass, EntityClasses, EntityFilter, EntityFilterUtils, EntityMetadataComponent, EntityStore, EntityUtils, Environment, ErrorCodes, EvenPipe, FileResponse, FileService, FileSizePipe, FilesUtils, FormArrayHelper, FormButtonsBarComponent, FormButtonsBarToken, FormErrorTranslatePipe, FormErrorTranslator, FormFieldValuesHolder, FormGetArrayPipe, FormGetControlPipe, FormGetGroupPipe, FormGetPipe, FormGetValuePipe, Fragments$1 as Fragments, GraphqlService, HAMMER_PRESS_TIME, HAMMER_TAP_TIME, HighlightPipe, HomePage, Hotkeys, HotkeysDialogComponent, IMAGE_DEFAULTS, ImagesUtils, InMemoryEntitiesService, IsLoginAccountPipe, IsNilOrBlankPipe, IsNotNilOrBlankPipe, IsNotOnFieldModePipe, IsOnFieldModePipe, Job, JobModule, JobProgression, JobProgressionIcon, JobProgressionList, JobProgressionService, JobProgressionTestService, JobProgressionTestingPage, JobTestingModule, 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, MOMENT_NO_TIME_PROPERTY, MapGetPipe, MapKeysPipe, MapValuesPipe, MatAutocompleteConfigHolder, MatAutocompleteField, MatBadgeIconDirective, MatBooleanField, MatChipsField, MatDate, MatDateShort, MatDateTime, MatDuration, MatLatLongField, MatNumpadComponent, MatNumpadContainerComponent, MatNumpadContent, MatPaginatorI18n, MatStepperI18n, MatSwipeField, MaterialTestingModule, MathAbsPipe, MenuComponent, MenuItems, MenuOptions, MenuService, Message, MessageFilter, MessageForm, MessageModal, MessageModule, MessageService, MessageTypeList, MessageTypes, MimeTypes, ModalToolbarComponent, NetworkService, NgInitDirective, NgVarDirective, NotEmptyArrayPipe, NumberFormatPipe, NumpadDirective, OddPipe, PRIORITIZED_AUTHORITIES, PUBKEY_REGEXP, Peer, Person, PersonFilter, PersonFragments, PersonService, PersonToStringPipe, PersonUtils, PersonValidatorService, PlatformService, ProgressBarService, ProgressInterceptor, PropertyFormatPipe, PropertyGetPipe, RESERVED_END_COLUMNS, RESERVED_START_COLUMNS, Referential, ReferentialFilter, ReferentialRef, ReferentialUtils, ReferentialValidatorService, RegisterConfirmPage, ResizableComponent, ResizableDirective, ResizableModule, SETTINGS_DISPLAY_COLUMNS, SETTINGS_FILTER, SETTINGS_PAGE_SIZE, SETTINGS_SORTED_COLUMN, SETTINGS_STORAGE_KEY, SETTINGS_TRANSIENT_PROPERTIES, SHARED_MATERIAL_TESTING_PAGES, SHARED_TESTING_PAGES, SOCIAL_TESTING_PAGES, SPACE_PLACEHOLDER_CHAR, SelectPeerModal, ServerErrorCodes, SettingsPage, SharedAsyncValidators, SharedDirectivesModule, SharedFormArrayValidators, SharedFormGroupValidators, SharedHotkeysModule, SharedMatAutocompleteModule, SharedMatBadgeIconModule, SharedMatBooleanModule, SharedMatChipsModule, SharedMatDateTimeModule, SharedMatDurationModule, SharedMatLatLongModule, SharedMatNumpadModule, SharedMatSwipeModule, SharedMaterialModule, SharedModule, SharedPipesModule, SharedRoutingModule, SharedTestingModule, SharedTestsPage, SharedValidators, SocialErrorCodes, SocialModule, SocialModuleOptionsToken, SocialTestingModule, Software, StartableService, StatusById, StatusIds, StatusList, StrIncludesPipe, StrLengthPipe, SwipeTestPage, TableSelectColumnsComponent, TableTestPage, TableTestingModule, TextForm, TextPopover, TextPopoverTestingModule, TextPopoverTestingPage, ToStringPipe, Toasts, ToolbarComponent, ToolbarToken, TranslatablePipe, TranslateContextPipe, TranslateContextService, UploadFile, UploadFileComponent, UploadFilePopover, UploadFileTestingModule, UploadFileTestingPage, UriUtils, UserEventModule, UserEventNotificationIcon, UserEventTestService, UserEventTestingModule, UserEventTestingPage, UserSettings, UsersPage, accountToString, adaptValueToControl, arrayDistinct, arrayGroupBy, arraySize, asInputElement, canHaveFocus, capitalizeFirstLetter, chainPromises, changeCaseToUnderscore, clearValueInArray, copyEntity2Form, createPromiseEvent, createPromiseEventEmitter, departmentToString, departmentsToString, disableControls, emitPromiseEvent, entityToString, equals, equalsOrNil, escapeRegExp, 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, isBlankString, isControlHasInput, isCordova, isEmptyArray, isIOS, isInputElement, isInstanceOf, isInt, isMobile, isNil, isNilOrBlank, isNilOrNaN, isNotEmptyArray, isNotNil, isNotNilBoolean, isNotNilOrBlank, isNotNilOrNaN, isNotNilString, isNumber, isNumberRange, isProgressEvent, isResponseEvent, isTouchUi, isWindows, joinProperties, joinPropertiesPath, logFormErrors, markAllAsTouched, markAsUntouched, markControlAsTouched, markFormGroupAsTouched, matchMedia, matchUpperCase, mergeLoadResult, mixHex, moment$3 as moment, moveInputCaretToSeparator, noTrailingSlash, notNilOrDefault, nullIfUndefined, parseLatitudeOrLongitude, patchValueInArray, propertiesPathComparator, propertyComparator, propertyPathComparator, pushValueInArray, 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, tz, uncapitalizeFirstLetter, updateValueAndValidity, uuidv4, waitFor, waitForFalse, waitForTrue, waitIdle, waitWhilePending, ɵ0, CustomReuseStrategy as ɵa, MatNumpadDomService as ɵb, StartableObservableService as ɵc, isFocusableElement as ɵd, RegisterForm as ɵe, AccountValidatorService as ɵf, RegisterModal as ɵg, UserSettingsValidatorService as ɵh, LocalSettingsValidatorService as ɵi, AppUpdateOfflineModeCard as ɵj, UserEventNotificationList as ɵk, DateTestPage as ɵl, NumpadTestPage as ɵm, MatBadgeIconTestPage as ɵn, ToastTestingModule as ɵo, ToastTestingPage as ɵp };
|
|
30348
30297
|
//# sourceMappingURL=sumaris-net.ngx-components.js.map
|