@sumaris-net/ngx-components 21.0.0-rc15 → 21.0.0-rc16

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.
@@ -120,6 +120,7 @@ import { Downloader, DownloadRequest } from '@awesome-cordova-plugins/downloader
120
120
  import { OpenOptions } from '@capacitor/browser';
121
121
  import { Clipboard } from '@angular/cdk/clipboard';
122
122
  import { WriteOptions } from '@capacitor/clipboard/dist/esm/definitions';
123
+ import { DeviceInfo } from '@capacitor/device';
123
124
  import { Unmasked as Unmasked$1 } from '@apollo/client/masking';
124
125
  import * as i3$3 from 'ngx-jdenticon';
125
126
  import * as _angular_animations from '@angular/animations';
@@ -1852,6 +1853,13 @@ declare class UploadFile<T> extends File {
1852
1853
  error?: string;
1853
1854
  response?: FileResponse<T> | HttpResponse<T>;
1854
1855
  }
1856
+ type FileCheckEnabledFn = () => boolean;
1857
+ type FileHasErrorFn = (file: UploadFile<any>) => boolean;
1858
+ interface FileCheck {
1859
+ isEnabled: FileCheckEnabledFn;
1860
+ hasError: FileHasErrorFn;
1861
+ error: string;
1862
+ }
1855
1863
  type FileUploadFn<T> = (file: File) => Observable<FileEvent<T> | HttpEvent<T>>;
1856
1864
  type FileDeleteFn<T> = (file: UploadFile<T>) => Promise<boolean>;
1857
1865
  interface FileProgressEvent {
@@ -1880,14 +1888,17 @@ declare class UploadFileComponent {
1880
1888
  protected translate: TranslateService;
1881
1889
  fileDropEl: ElementRef;
1882
1890
  fileExtension: string;
1891
+ fileExtensionsExcluded: string[];
1883
1892
  uniqueFile: boolean;
1884
1893
  instantUpload: boolean;
1885
1894
  uploadFn: FileUploadFn<any>;
1886
1895
  deleteFn: FileDeleteFn<any>;
1887
1896
  maxParallelUpload: number;
1897
+ maxFileSizeMb: number;
1888
1898
  autoHideDropArea: boolean;
1889
1899
  files: UploadFile<any>[];
1890
1900
  uploading: boolean;
1901
+ checks: FileCheck[];
1891
1902
  get processingFiles(): UploadFile<any>[];
1892
1903
  get processedFiles(): UploadFile<any>[];
1893
1904
  get processingFilesCount(): number;
@@ -1912,13 +1923,14 @@ declare class UploadFileComponent {
1912
1923
  * @param files (Files List)
1913
1924
  */
1914
1925
  prepareFilesList(files: FileList | File[]): void;
1926
+ checkFiles(): void;
1915
1927
  /**
1916
1928
  * Execute upload
1917
1929
  */
1918
1930
  uploadFiles(files?: File[]): Promise<UploadFile<any>[]>;
1919
1931
  waitIdle(opts?: WaitForOptions): Promise<void>;
1920
1932
  static ɵfac: i0.ɵɵFactoryDeclaration<UploadFileComponent, never>;
1921
- static ɵcmp: i0.ɵɵComponentDeclaration<UploadFileComponent, "app-upload-file", never, { "fileExtension": { "alias": "fileExtension"; "required": false; }; "uniqueFile": { "alias": "uniqueFile"; "required": false; }; "instantUpload": { "alias": "instantUpload"; "required": false; }; "uploadFn": { "alias": "uploadFn"; "required": false; }; "deleteFn": { "alias": "deleteFn"; "required": false; }; "maxParallelUpload": { "alias": "maxParallelUpload"; "required": false; }; "autoHideDropArea": { "alias": "autoHideDropArea"; "required": false; }; }, {}, never, never, false, never>;
1933
+ static ɵcmp: i0.ɵɵComponentDeclaration<UploadFileComponent, "app-upload-file", never, { "fileExtension": { "alias": "fileExtension"; "required": false; }; "fileExtensionsExcluded": { "alias": "fileExtensionsExcluded"; "required": false; }; "uniqueFile": { "alias": "uniqueFile"; "required": false; }; "instantUpload": { "alias": "instantUpload"; "required": false; }; "uploadFn": { "alias": "uploadFn"; "required": false; }; "deleteFn": { "alias": "deleteFn"; "required": false; }; "maxParallelUpload": { "alias": "maxParallelUpload"; "required": false; }; "maxFileSizeMb": { "alias": "maxFileSizeMb"; "required": false; }; "autoHideDropArea": { "alias": "autoHideDropArea"; "required": false; }; }, {}, never, never, false, never>;
1922
1934
  }
1923
1935
 
1924
1936
  interface UploadFilePopoverOptions<T> {
@@ -1928,7 +1940,9 @@ interface UploadFilePopoverOptions<T> {
1928
1940
  instantUpload?: boolean;
1929
1941
  uniqueFile?: boolean;
1930
1942
  fileExtension?: string;
1943
+ fileExtensionsExcluded?: string[];
1931
1944
  maxParallelUpload?: number;
1945
+ maxFileSizeMb?: number;
1932
1946
  autoHideDropArea?: boolean;
1933
1947
  importButtonText?: string;
1934
1948
  cancelButtonText?: string;
@@ -1943,12 +1957,14 @@ declare class UploadFilePopover implements UploadFilePopoverOptions<any> {
1943
1957
  protected cd: ChangeDetectorRef;
1944
1958
  uploader: UploadFileComponent;
1945
1959
  fileExtension: string;
1960
+ fileExtensionsExcluded: string[];
1946
1961
  title: string;
1947
1962
  uniqueFile: boolean;
1948
1963
  instantUpload: boolean;
1949
1964
  uploadFn: FileUploadFn<any>;
1950
1965
  deleteFn: FileDeleteFn<any>;
1951
1966
  maxParallelUpload: number;
1967
+ maxFileSizeMb: number;
1952
1968
  autoHideDropArea: boolean;
1953
1969
  okButtonText: string;
1954
1970
  cancelButtonText: string;
@@ -1962,7 +1978,7 @@ declare class UploadFilePopover implements UploadFilePopoverOptions<any> {
1962
1978
  cancel(): Promise<boolean>;
1963
1979
  protected resetError(): void;
1964
1980
  static ɵfac: i0.ɵɵFactoryDeclaration<UploadFilePopover, never>;
1965
- static ɵcmp: i0.ɵɵComponentDeclaration<UploadFilePopover, "app-upload-file-popover", never, { "fileExtension": { "alias": "fileExtension"; "required": false; }; "title": { "alias": "title"; "required": false; }; "uniqueFile": { "alias": "uniqueFile"; "required": false; }; "instantUpload": { "alias": "instantUpload"; "required": false; }; "uploadFn": { "alias": "uploadFn"; "required": false; }; "deleteFn": { "alias": "deleteFn"; "required": false; }; "maxParallelUpload": { "alias": "maxParallelUpload"; "required": false; }; "autoHideDropArea": { "alias": "autoHideDropArea"; "required": false; }; "okButtonText": { "alias": "okButtonText"; "required": false; }; "cancelButtonText": { "alias": "cancelButtonText"; "required": false; }; }, {}, never, never, false, never>;
1981
+ static ɵcmp: i0.ɵɵComponentDeclaration<UploadFilePopover, "app-upload-file-popover", never, { "fileExtension": { "alias": "fileExtension"; "required": false; }; "fileExtensionsExcluded": { "alias": "fileExtensionsExcluded"; "required": false; }; "title": { "alias": "title"; "required": false; }; "uniqueFile": { "alias": "uniqueFile"; "required": false; }; "instantUpload": { "alias": "instantUpload"; "required": false; }; "uploadFn": { "alias": "uploadFn"; "required": false; }; "deleteFn": { "alias": "deleteFn"; "required": false; }; "maxParallelUpload": { "alias": "maxParallelUpload"; "required": false; }; "maxFileSizeMb": { "alias": "maxFileSizeMb"; "required": false; }; "autoHideDropArea": { "alias": "autoHideDropArea"; "required": false; }; "okButtonText": { "alias": "okButtonText"; "required": false; }; "cancelButtonText": { "alias": "cancelButtonText"; "required": false; }; }, {}, never, never, false, never>;
1966
1982
  }
1967
1983
 
1968
1984
  declare interface TestingPage {
@@ -2040,32 +2056,37 @@ declare class MapToPipe implements PipeTransform {
2040
2056
  static ɵpipe: i0.ɵɵPipeDeclaration<MapToPipe, "mapTo", false>;
2041
2057
  }
2042
2058
 
2043
- declare abstract class AbstractDateFormat {
2044
- protected dateAdapter: MomentDateAdapter;
2045
- protected translate: TranslateService;
2046
- private datePattern;
2047
- private dateTimePattern;
2048
- private dateTimeSecondsPattern;
2049
- protected constructor(dateAdapter: MomentDateAdapter, translate: TranslateService);
2059
+ declare class DateFormatPipe implements PipeTransform {
2060
+ private service;
2050
2061
  transform(value: string | Moment | Date, args?: {
2051
2062
  pattern?: string;
2052
2063
  time?: boolean;
2053
2064
  seconds?: boolean;
2054
2065
  }): string;
2055
- protected _updateTranslations(translations: any): void;
2056
- protected _getTranslationValue(translations: any, key: string, defaultValue: string): string;
2057
- }
2058
- declare class DateFormatPipe extends AbstractDateFormat implements PipeTransform {
2059
- constructor(dateAdapter: MomentDateAdapter, translate: TranslateService);
2060
2066
  static ɵfac: i0.ɵɵFactoryDeclaration<DateFormatPipe, never>;
2061
2067
  static ɵpipe: i0.ɵɵPipeDeclaration<DateFormatPipe, "dateFormat", false>;
2062
2068
  }
2063
- declare class DateFormatService extends AbstractDateFormat implements OnDestroy {
2069
+ declare class DateFormatService implements OnDestroy {
2070
+ private dateAdapter;
2071
+ private translate;
2072
+ private _datePattern;
2073
+ private _dateTimePattern;
2074
+ private _dateTimeSecondsPattern;
2064
2075
  private _subscription;
2076
+ get datePattern(): string;
2077
+ get dateTimePattern(): string;
2078
+ get dateTimeSecondsPattern(): string;
2065
2079
  constructor(dateAdapter: MomentDateAdapter, translate: TranslateService);
2066
2080
  ngOnDestroy(): void;
2067
- format(date: Moment, pattern: any): string;
2068
- parse(value: string, parseFormat: any): Moment;
2081
+ transform(value: string | Moment | Date, args?: {
2082
+ pattern?: string;
2083
+ time?: boolean;
2084
+ seconds?: boolean;
2085
+ }): string;
2086
+ format(date: Moment, displayFormat: any): string;
2087
+ parse(value: string, parseFormat?: string | string[]): Moment;
2088
+ protected _updateTranslations(translations: any): void;
2089
+ protected _getTranslationValue(translations: any, key: string, defaultValue: string): string;
2069
2090
  static ɵfac: i0.ɵɵFactoryDeclaration<DateFormatService, never>;
2070
2091
  static ɵprov: i0.ɵɵInjectableDeclaration<DateFormatService>;
2071
2092
  }
@@ -2132,6 +2153,16 @@ declare class DateFromNowPipe implements PipeTransform {
2132
2153
  static ɵprov: i0.ɵɵInjectableDeclaration<DateFromNowPipe>;
2133
2154
  }
2134
2155
 
2156
+ declare class TimeFormatPipe implements PipeTransform {
2157
+ private dateAdapter;
2158
+ transform(value: string | Moment | Date, args?: {
2159
+ pattern?: string;
2160
+ seconds?: boolean;
2161
+ }): string;
2162
+ static ɵfac: i0.ɵɵFactoryDeclaration<TimeFormatPipe, never>;
2163
+ static ɵpipe: i0.ɵɵPipeDeclaration<TimeFormatPipe, "timeFormat", false>;
2164
+ }
2165
+
2135
2166
  type LatLongType = 'latitude' | 'longitude';
2136
2167
  type LatLongPattern = 'DDMMSS' | 'DDMM' | 'DD';
2137
2168
  declare const LAT_LONG_PATTERNS: LatLongPattern[];
@@ -3014,7 +3045,7 @@ declare class MapPipe implements PipeTransform {
3014
3045
 
3015
3046
  declare class SharedPipesModule {
3016
3047
  static ɵfac: i0.ɵɵFactoryDeclaration<SharedPipesModule, never>;
3017
- static ɵmod: i0.ɵɵNgModuleDeclaration<SharedPipesModule, [typeof PropertyGetPipe, typeof PropertyFormatPipe, typeof ValueFormatPipe, typeof DateFormatPipe, typeof DateDiffDurationPipe, typeof DurationPipe, typeof DateFromPipe, typeof DateFromNowPipe, typeof LatLongFormatPipe, typeof LatitudeFormatPipe, typeof LongitudeFormatPipe, typeof HighlightPipe, typeof NumberFormatPipe, typeof FileSizePipe, typeof MathAbsPipe, typeof OddPipe, typeof EvenPipe, typeof RoundPipe, typeof NotEmptyArrayPipe, typeof EmptyArrayPipe, typeof ArrayLengthPipe, typeof ArrayFirstPipe, typeof ArrayLastPipe, typeof ArrayPluckPipe, typeof ArrayIncludesPipe, typeof ArrayFilterPipe, typeof ArrayJoinPipe, typeof ArrayDistinctPipe, typeof ArraySortPipe, typeof ArrayFindByPropertyPipe, typeof SplitArrayInChunksPipe, typeof ArrayMapPipe, typeof ArraySlicePipe, typeof MapGetPipe, typeof MapKeysPipe, typeof MapValuesPipe, typeof IsNilOrBlankPipe, typeof IsNotNilOrBlankPipe, typeof IsNilOrNaNPipe, typeof IsNotNilOrNaNPipe, typeof IsNotNilPipe, typeof IsNilPipe, typeof IsValidDatePipe, typeof ToStringPipe, typeof CapitalizePipe, typeof ChangeCaseToUnderscorePipe, typeof StrLengthPipe, typeof StrIncludesPipe, typeof StrReplacePipe, typeof TruncHtmlPipe, typeof TruncTextPipe, typeof AppendQueryParamsPipePipe, typeof BooleanFormatPipe, typeof MapToPipe, typeof TranslateContextPipe, typeof TranslatablePipe, typeof NgInitDirective, typeof FormErrorPipe, typeof FormErrorTranslatePipe, typeof FormGetPipe, typeof FormGetControlPipe, typeof FormGetArrayPipe, typeof FormArrayAtControlPipe, typeof FormGetGroupPipe, typeof FormArrayAtGroupPipe, typeof FormGetNamePipe, typeof FormGetValuePipe, typeof MatColorPipe, typeof AsAnyPipe, typeof AsArrayPipe, typeof AsObservablePipe, typeof AsFloatLabelTypePipe, typeof MaskitoPlaceholderPipe, typeof IsSelectedPipe, typeof IsNotEmptySelectionPipe, typeof IsEmptySelectionPipe, typeof SelectionLengthPipe, typeof IsMultipleSelectionPipe, typeof IsSingleSelectionPipe, typeof BadgeNumberPipe, typeof AsBooleanPipe, typeof SafeHtmlPipe, typeof SafeStylePipe, typeof NoHtmlPipe, typeof TruncateHtmlPipe, typeof DisplayWithPipe, typeof FirstTruePipe, typeof FirstFalsePipe, typeof FirstPipe, typeof MapPipe], [typeof i2$1.CommonModule, typeof i3$1.IonicModule, typeof i4$1.TranslatePipe], [typeof PropertyGetPipe, typeof PropertyFormatPipe, typeof ValueFormatPipe, typeof DateFormatPipe, typeof DateDiffDurationPipe, typeof DurationPipe, typeof DateFromPipe, typeof DateFromNowPipe, typeof LatLongFormatPipe, typeof LatitudeFormatPipe, typeof LongitudeFormatPipe, typeof HighlightPipe, typeof NumberFormatPipe, typeof FileSizePipe, typeof MathAbsPipe, typeof OddPipe, typeof EvenPipe, typeof RoundPipe, typeof NotEmptyArrayPipe, typeof EmptyArrayPipe, typeof ArrayLengthPipe, typeof ArrayFirstPipe, typeof ArrayLastPipe, typeof ArrayPluckPipe, typeof ArrayIncludesPipe, typeof ArrayFilterPipe, typeof ArrayJoinPipe, typeof ArrayDistinctPipe, typeof ArraySortPipe, typeof ArrayFindByPropertyPipe, typeof SplitArrayInChunksPipe, typeof ArrayMapPipe, typeof ArraySlicePipe, typeof MapGetPipe, typeof MapKeysPipe, typeof MapValuesPipe, typeof IsNilOrBlankPipe, typeof IsNotNilOrBlankPipe, typeof IsNilOrNaNPipe, typeof IsNotNilOrNaNPipe, typeof IsNotNilPipe, typeof IsNilPipe, typeof IsValidDatePipe, typeof ToStringPipe, typeof CapitalizePipe, typeof ChangeCaseToUnderscorePipe, typeof StrLengthPipe, typeof StrIncludesPipe, typeof StrReplacePipe, typeof TruncHtmlPipe, typeof TruncTextPipe, typeof AppendQueryParamsPipePipe, typeof BooleanFormatPipe, typeof MapToPipe, typeof TranslateContextPipe, typeof TranslatablePipe, typeof NgInitDirective, typeof FormErrorPipe, typeof FormErrorTranslatePipe, typeof FormGetPipe, typeof FormGetControlPipe, typeof FormGetArrayPipe, typeof FormArrayAtControlPipe, typeof FormGetGroupPipe, typeof FormArrayAtGroupPipe, typeof FormGetNamePipe, typeof FormGetValuePipe, typeof MatColorPipe, typeof AsAnyPipe, typeof AsArrayPipe, typeof AsObservablePipe, typeof AsFloatLabelTypePipe, typeof MaskitoPlaceholderPipe, typeof IsSelectedPipe, typeof IsNotEmptySelectionPipe, typeof IsEmptySelectionPipe, typeof SelectionLengthPipe, typeof IsMultipleSelectionPipe, typeof IsSingleSelectionPipe, typeof BadgeNumberPipe, typeof AsBooleanPipe, typeof SafeHtmlPipe, typeof SafeStylePipe, typeof NoHtmlPipe, typeof TruncateHtmlPipe, typeof DisplayWithPipe, typeof FirstTruePipe, typeof FirstFalsePipe, typeof FirstPipe, typeof MapPipe, typeof i4$1.TranslatePipe]>;
3048
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SharedPipesModule, [typeof PropertyGetPipe, typeof PropertyFormatPipe, typeof ValueFormatPipe, typeof DateFormatPipe, typeof DateDiffDurationPipe, typeof DurationPipe, typeof DateFromPipe, typeof DateFromNowPipe, typeof TimeFormatPipe, typeof LatLongFormatPipe, typeof LatitudeFormatPipe, typeof LongitudeFormatPipe, typeof HighlightPipe, typeof NumberFormatPipe, typeof FileSizePipe, typeof MathAbsPipe, typeof OddPipe, typeof EvenPipe, typeof RoundPipe, typeof NotEmptyArrayPipe, typeof EmptyArrayPipe, typeof ArrayLengthPipe, typeof ArrayFirstPipe, typeof ArrayLastPipe, typeof ArrayPluckPipe, typeof ArrayIncludesPipe, typeof ArrayFilterPipe, typeof ArrayJoinPipe, typeof ArrayDistinctPipe, typeof ArraySortPipe, typeof ArrayFindByPropertyPipe, typeof SplitArrayInChunksPipe, typeof ArrayMapPipe, typeof ArraySlicePipe, typeof MapGetPipe, typeof MapKeysPipe, typeof MapValuesPipe, typeof IsNilOrBlankPipe, typeof IsNotNilOrBlankPipe, typeof IsNilOrNaNPipe, typeof IsNotNilOrNaNPipe, typeof IsNotNilPipe, typeof IsNilPipe, typeof IsValidDatePipe, typeof ToStringPipe, typeof CapitalizePipe, typeof ChangeCaseToUnderscorePipe, typeof StrLengthPipe, typeof StrIncludesPipe, typeof StrReplacePipe, typeof TruncHtmlPipe, typeof TruncTextPipe, typeof AppendQueryParamsPipePipe, typeof BooleanFormatPipe, typeof MapToPipe, typeof TranslateContextPipe, typeof TranslatablePipe, typeof NgInitDirective, typeof FormErrorPipe, typeof FormErrorTranslatePipe, typeof FormGetPipe, typeof FormGetControlPipe, typeof FormGetArrayPipe, typeof FormArrayAtControlPipe, typeof FormGetGroupPipe, typeof FormArrayAtGroupPipe, typeof FormGetNamePipe, typeof FormGetValuePipe, typeof MatColorPipe, typeof AsAnyPipe, typeof AsArrayPipe, typeof AsObservablePipe, typeof AsFloatLabelTypePipe, typeof MaskitoPlaceholderPipe, typeof IsSelectedPipe, typeof IsNotEmptySelectionPipe, typeof IsEmptySelectionPipe, typeof SelectionLengthPipe, typeof IsMultipleSelectionPipe, typeof IsSingleSelectionPipe, typeof BadgeNumberPipe, typeof AsBooleanPipe, typeof SafeHtmlPipe, typeof SafeStylePipe, typeof NoHtmlPipe, typeof TruncateHtmlPipe, typeof DisplayWithPipe, typeof FirstTruePipe, typeof FirstFalsePipe, typeof FirstPipe, typeof MapPipe], [typeof i2$1.CommonModule, typeof i3$1.IonicModule, typeof i4$1.TranslatePipe], [typeof PropertyGetPipe, typeof PropertyFormatPipe, typeof ValueFormatPipe, typeof DateFormatPipe, typeof DateDiffDurationPipe, typeof DurationPipe, typeof DateFromPipe, typeof DateFromNowPipe, typeof TimeFormatPipe, typeof LatLongFormatPipe, typeof LatitudeFormatPipe, typeof LongitudeFormatPipe, typeof HighlightPipe, typeof NumberFormatPipe, typeof FileSizePipe, typeof MathAbsPipe, typeof OddPipe, typeof EvenPipe, typeof RoundPipe, typeof NotEmptyArrayPipe, typeof EmptyArrayPipe, typeof ArrayLengthPipe, typeof ArrayFirstPipe, typeof ArrayLastPipe, typeof ArrayPluckPipe, typeof ArrayIncludesPipe, typeof ArrayFilterPipe, typeof ArrayJoinPipe, typeof ArrayDistinctPipe, typeof ArraySortPipe, typeof ArrayFindByPropertyPipe, typeof SplitArrayInChunksPipe, typeof ArrayMapPipe, typeof ArraySlicePipe, typeof MapGetPipe, typeof MapKeysPipe, typeof MapValuesPipe, typeof IsNilOrBlankPipe, typeof IsNotNilOrBlankPipe, typeof IsNilOrNaNPipe, typeof IsNotNilOrNaNPipe, typeof IsNotNilPipe, typeof IsNilPipe, typeof IsValidDatePipe, typeof ToStringPipe, typeof CapitalizePipe, typeof ChangeCaseToUnderscorePipe, typeof StrLengthPipe, typeof StrIncludesPipe, typeof StrReplacePipe, typeof TruncHtmlPipe, typeof TruncTextPipe, typeof AppendQueryParamsPipePipe, typeof BooleanFormatPipe, typeof MapToPipe, typeof TranslateContextPipe, typeof TranslatablePipe, typeof NgInitDirective, typeof FormErrorPipe, typeof FormErrorTranslatePipe, typeof FormGetPipe, typeof FormGetControlPipe, typeof FormGetArrayPipe, typeof FormArrayAtControlPipe, typeof FormGetGroupPipe, typeof FormArrayAtGroupPipe, typeof FormGetNamePipe, typeof FormGetValuePipe, typeof MatColorPipe, typeof AsAnyPipe, typeof AsArrayPipe, typeof AsObservablePipe, typeof AsFloatLabelTypePipe, typeof MaskitoPlaceholderPipe, typeof IsSelectedPipe, typeof IsNotEmptySelectionPipe, typeof IsEmptySelectionPipe, typeof SelectionLengthPipe, typeof IsMultipleSelectionPipe, typeof IsSingleSelectionPipe, typeof BadgeNumberPipe, typeof AsBooleanPipe, typeof SafeHtmlPipe, typeof SafeStylePipe, typeof NoHtmlPipe, typeof TruncateHtmlPipe, typeof DisplayWithPipe, typeof FirstTruePipe, typeof FirstFalsePipe, typeof FirstPipe, typeof MapPipe, typeof i4$1.TranslatePipe]>;
3018
3049
  static ɵinj: i0.ɵɵInjectorDeclaration<SharedPipesModule>;
3019
3050
  }
3020
3051
 
@@ -3480,6 +3511,12 @@ declare class MatDateTime implements OnInit, AfterViewInit, OnDestroy, ControlVa
3480
3511
  setDisabledState(isDisabled: boolean): void;
3481
3512
  openDatePicker(event?: Event, datePicker?: MatDatepicker<any>): void;
3482
3513
  openTimePicker(event?: Event, timePicker?: NgxTimePicker): void;
3514
+ /**
3515
+ * Watches for the ngx-mat-timepicker overlay pane being attached to the DOM, so its position can
3516
+ * be fixed (see `fixTimePickerPosition()`) before the browser paints it - otherwise the popover
3517
+ * would briefly flash at its (wrong) initial position before jumping to the corrected one.
3518
+ */
3519
+ private _watchTimePickerOverlay;
3483
3520
  private fixTimePickerPosition;
3484
3521
  focus(): void;
3485
3522
  clear(event?: Event): void;
@@ -6608,6 +6645,7 @@ declare class PlatformService extends StartableService {
6608
6645
  }) => void): Promise<Subscription>;
6609
6646
  showToast(opts: ShowToastOptions): Promise<HTMLIonToastElement>;
6610
6647
  closeToast(id?: string): Promise<boolean>;
6648
+ getDeviceInfo(): Promise<DeviceInfo>;
6611
6649
  protected configureTheme(mobile: boolean, win?: any): Promise<void>;
6612
6650
  protected configureCapacitorPlugins(): Promise<void>;
6613
6651
  protected configureTranslate(): void;
@@ -6987,6 +7025,7 @@ declare class AppImageGallerySlideshowComponent<T extends Image = Image> impleme
6987
7025
  protected cd: ChangeDetectorRef;
6988
7026
  protected activeSlideIndex: number;
6989
7027
  protected swiperModules: ((opts: any) => void)[];
7028
+ get activeIndex(): number;
6990
7029
  protected _swiper: Swiper;
6991
7030
  protected _zoomState: {
6992
7031
  scale: number;
@@ -7310,6 +7349,10 @@ declare class AppImageGalleryComponent<T extends Image> implements OnInit, OnDes
7310
7349
  */
7311
7350
  fetchMore: EventEmitter<PromiseEvent<boolean, void>>;
7312
7351
  showTooltip: boolean;
7352
+ slideshowOpened: EventEmitter<boolean>;
7353
+ slideshowClosed: EventEmitter<void>;
7354
+ get activeIndex(): number;
7355
+ inlineSlideshow: AppImageGallerySlideshowComponent;
7313
7356
  constructor(imageService: ImageService, platform: Platform, alterCtrl: AlertController, translate: TranslateService, cd: ChangeDetectorRef, environment?: Environment);
7314
7357
  ngOnInit(): void;
7315
7358
  ngAfterContentChecked(): void;
@@ -7323,6 +7366,8 @@ declare class AppImageGalleryComponent<T extends Image> implements OnInit, OnDes
7323
7366
  } & Omit<ImageOptions, 'resultType'>): Promise<void>;
7324
7367
  delete(event: Event, row: TableElement<T>, opts?: {
7325
7368
  interactive?: boolean;
7369
+ backdropDismiss?: boolean;
7370
+ keyboardClose?: boolean;
7326
7371
  }): Promise<boolean>;
7327
7372
  toggleViewMode(_?: Event): void;
7328
7373
  setViewMode(mode: GalleryMode): void;
@@ -7350,13 +7395,15 @@ declare class AppImageGalleryComponent<T extends Image> implements OnInit, OnDes
7350
7395
  }>): Promise<void>;
7351
7396
  protected canDeleteRows(rows: TableElement<T>[], opts?: {
7352
7397
  interactive?: boolean;
7398
+ backdropDismiss?: boolean;
7399
+ keyboardClose?: boolean;
7353
7400
  }): Promise<boolean>;
7354
7401
  protected getImageSizeQueryParams(mode?: GalleryMode | 'modal'): {
7355
7402
  [key: string]: any;
7356
7403
  };
7357
7404
  protected markForCheck(): void;
7358
7405
  static ɵfac: i0.ɵɵFactoryDeclaration<AppImageGalleryComponent<any>, [null, null, null, null, null, { optional: true; }]>;
7359
- static ɵcmp: i0.ɵɵComponentDeclaration<AppImageGalleryComponent<any>, "app-image-gallery", never, { "cardColor": { "alias": "cardColor"; "required": false; }; "debug": { "alias": "debug"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "mobile": { "alias": "mobile"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "confirmBeforeDelete": { "alias": "confirmBeforeDelete"; "required": false; }; "showToolbar": { "alias": "showToolbar"; "required": false; }; "showFabButton": { "alias": "showFabButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; "showAddToolbarButton": { "alias": "showAddToolbarButton"; "required": false; }; "showAddTextButton": { "alias": "showAddTextButton"; "required": false; }; "showAddCardButton": { "alias": "showAddCardButton"; "required": false; }; "showCardToolbar": { "alias": "showCardToolbar"; "required": false; }; "addButtonColor": { "alias": "addButtonColor"; "required": false; }; "addButtonText": { "alias": "addButtonText"; "required": false; }; "cardTemplate": { "alias": "cardTemplate"; "required": false; }; "imageSizes": { "alias": "imageSizes"; "required": false; }; "imageSizeQueryParam": { "alias": "imageSizeQueryParam"; "required": false; }; "enableMouseZoom": { "alias": "enableMouseZoom"; "required": false; }; "wheelZoomStep": { "alias": "wheelZoomStep"; "required": false; }; "maxZoomRatio": { "alias": "maxZoomRatio"; "required": false; }; "enableRotate": { "alias": "enableRotate"; "required": false; }; "enableCrop": { "alias": "enableCrop"; "required": false; }; "editionFormat": { "alias": "editionFormat"; "required": false; }; "editionQuality": { "alias": "editionQuality"; "required": false; }; "slideshowMode": { "alias": "slideshowMode"; "required": false; }; "inlineZoomHeight": { "alias": "inlineZoomHeight"; "required": false; }; "enableSlideshowLoop": { "alias": "enableSlideshowLoop"; "required": false; }; "canFetchMore": { "alias": "canFetchMore"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; }, { "onBeforeDeleteRows": "onBeforeDeleteRows"; "onAfterAddRows": "onAfterAddRows"; "onAfterEditRow": "onAfterEditRow"; "onAfterEditImage": "onAfterEditImage"; "click": "click"; "previousSlide": "previousSlide"; "nextSlide": "nextSlide"; "fetchMore": "fetchMore"; }, never, ["ion-buttons[slot=start]", "ion-buttons[slot=end]"], false, never>;
7406
+ static ɵcmp: i0.ɵɵComponentDeclaration<AppImageGalleryComponent<any>, "app-image-gallery", never, { "cardColor": { "alias": "cardColor"; "required": false; }; "debug": { "alias": "debug"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "mobile": { "alias": "mobile"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "confirmBeforeDelete": { "alias": "confirmBeforeDelete"; "required": false; }; "showToolbar": { "alias": "showToolbar"; "required": false; }; "showFabButton": { "alias": "showFabButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; "showAddToolbarButton": { "alias": "showAddToolbarButton"; "required": false; }; "showAddTextButton": { "alias": "showAddTextButton"; "required": false; }; "showAddCardButton": { "alias": "showAddCardButton"; "required": false; }; "showCardToolbar": { "alias": "showCardToolbar"; "required": false; }; "addButtonColor": { "alias": "addButtonColor"; "required": false; }; "addButtonText": { "alias": "addButtonText"; "required": false; }; "cardTemplate": { "alias": "cardTemplate"; "required": false; }; "imageSizes": { "alias": "imageSizes"; "required": false; }; "imageSizeQueryParam": { "alias": "imageSizeQueryParam"; "required": false; }; "enableMouseZoom": { "alias": "enableMouseZoom"; "required": false; }; "wheelZoomStep": { "alias": "wheelZoomStep"; "required": false; }; "maxZoomRatio": { "alias": "maxZoomRatio"; "required": false; }; "enableRotate": { "alias": "enableRotate"; "required": false; }; "enableCrop": { "alias": "enableCrop"; "required": false; }; "editionFormat": { "alias": "editionFormat"; "required": false; }; "editionQuality": { "alias": "editionQuality"; "required": false; }; "slideshowMode": { "alias": "slideshowMode"; "required": false; }; "inlineZoomHeight": { "alias": "inlineZoomHeight"; "required": false; }; "enableSlideshowLoop": { "alias": "enableSlideshowLoop"; "required": false; }; "canFetchMore": { "alias": "canFetchMore"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; }, { "onBeforeDeleteRows": "onBeforeDeleteRows"; "onAfterAddRows": "onAfterAddRows"; "onAfterEditRow": "onAfterEditRow"; "onAfterEditImage": "onAfterEditImage"; "click": "click"; "previousSlide": "previousSlide"; "nextSlide": "nextSlide"; "fetchMore": "fetchMore"; "slideshowOpened": "slideshowOpened"; "slideshowClosed": "slideshowClosed"; }, never, ["ion-buttons[slot=start]", "ion-buttons[slot=end]"], false, never>;
7360
7407
  static ngAcceptInputType_debug: unknown;
7361
7408
  static ngAcceptInputType_disabled: unknown;
7362
7409
  static ngAcceptInputType_readOnly: unknown;
@@ -7842,8 +7889,14 @@ declare class Alerts {
7842
7889
  * @param alertCtrl
7843
7890
  * @param translate
7844
7891
  * @param event
7892
+ * @param opts
7893
+ * @param opts.backdropDismiss Whether the alert can be dismissed by clicking the backdrop (default: false)
7894
+ * @param opts.keyboardClose Whether the alert can be dismissed by pressing the back button (default: true)
7845
7895
  */
7846
- static askSaveBeforeLeave(alertCtrl: AlertController, translate: TranslateService, event?: Event): Promise<boolean | undefined>;
7896
+ static askSaveBeforeLeave(alertCtrl: AlertController, translate: TranslateService, event?: Event, opts?: {
7897
+ backdropDismiss?: boolean;
7898
+ keyboardClose?: boolean;
7899
+ }): Promise<boolean | undefined>;
7847
7900
  /**
7848
7901
  * Ask the user to conform an action. If return undefined: user has cancelled
7849
7902
  *
@@ -7852,8 +7905,14 @@ declare class Alerts {
7852
7905
  * @param immediate is action has an immediate effect ?
7853
7906
  * @param event
7854
7907
  * @param interpolateParams
7908
+ * @param opts
7909
+ * @param opts.backdropDismiss Whether the alert can be dismissed by clicking the backdrop (default: false)
7855
7910
  */
7856
- static askActionConfirmation(alertCtrl: AlertController, translate: TranslateService, immediate?: boolean, event?: Event, interpolateParams?: any): Promise<boolean | undefined>;
7911
+ static askActionConfirmation(alertCtrl: AlertController, translate: TranslateService, immediate?: boolean, event?: Event, opts?: {
7912
+ backdropDismiss?: boolean;
7913
+ keyboardClose?: boolean;
7914
+ [key: string]: any;
7915
+ }, interpolateParams?: any): Promise<boolean | undefined>;
7857
7916
  /**
7858
7917
  * Ask the user to confirm. If return undefined: user has cancelled
7859
7918
  *
@@ -7863,8 +7922,14 @@ declare class Alerts {
7863
7922
  * @param translate
7864
7923
  * @param event
7865
7924
  * @param interpolateParams
7925
+ * @param opts
7926
+ * @param opts.backdropDismiss Whether the alert can be dismissed by clicking the backdrop (default: false)
7866
7927
  */
7867
- static askConfirmation(messageKey: string, alertCtrl: AlertController, translate: TranslateService, event?: Event, interpolateParams?: any): Promise<boolean | undefined>;
7928
+ static askConfirmation(messageKey: string, alertCtrl: AlertController, translate: TranslateService, event?: Event, opts?: {
7929
+ backdropDismiss?: boolean;
7930
+ keyboardClose?: boolean;
7931
+ [key: string]: any;
7932
+ }, interpolateParams?: any): Promise<boolean | undefined>;
7868
7933
  /**
7869
7934
  * Ask the user to save before leaving. If return undefined: user has cancelled
7870
7935
  *
@@ -7872,18 +7937,28 @@ declare class Alerts {
7872
7937
  * @param translate
7873
7938
  * @param event
7874
7939
  * @param interpolateParams
7940
+ * @param opts
7941
+ * @param opts.backdropDismiss Whether the alert can be dismissed by clicking the backdrop (default: false)
7875
7942
  */
7876
- static askDeleteConfirmation(alertCtrl: AlertController, translate: TranslateService, event?: Event, interpolateParams?: any): Promise<boolean | undefined>;
7943
+ static askDeleteConfirmation(alertCtrl: AlertController, translate: TranslateService, event?: Event, opts?: {
7944
+ backdropDismiss?: boolean;
7945
+ keyboardClose?: boolean;
7946
+ [key: string]: any;
7947
+ }, interpolateParams?: any): Promise<boolean | undefined>;
7877
7948
  static askSaveBeforeAction(alertCtrl: AlertController, translate: TranslateService, opts?: {
7878
7949
  valid?: boolean;
7879
7950
  validMessageI18n?: string;
7880
7951
  invalidMessageI18n?: string;
7952
+ backdropDismiss?: boolean;
7953
+ keyboardClose?: boolean;
7881
7954
  }, interpolateParams?: any): Promise<{
7882
7955
  confirmed: boolean;
7883
7956
  save: boolean;
7884
7957
  } | undefined>;
7885
7958
  static showError(messageKey: string, alertCtrl: AlertController, translate: TranslateService, opts?: {
7886
7959
  titleKey?: string;
7960
+ backdropDismiss?: boolean;
7961
+ keyboardClose?: boolean;
7887
7962
  }, interpolateParams?: any): Promise<void>;
7888
7963
  }
7889
7964
 
@@ -7903,6 +7978,7 @@ declare function isAndroid(win: Window): boolean;
7903
7978
  declare function isCapacitor(win: any): boolean;
7904
7979
  declare function isMobile(win: Window): any;
7905
7980
  declare function isPrint(win?: Window): boolean;
7981
+ declare function isWebAnimationsSupported(): boolean;
7906
7982
 
7907
7983
  /**
7908
7984
  * Removes all HTML tags from a given string.
@@ -8703,11 +8779,118 @@ declare class MarkdownUtils {
8703
8779
  static resolveRelativeUrl(baseUrl: string, relativePath: string, opts?: {
8704
8780
  absoluteByDefault: boolean;
8705
8781
  }): string;
8706
- static isGitlabUrl(url: string): boolean;
8707
- static fixGitlabUrlToRaw(url: string): string;
8708
8782
  static getRootUrl(url: string): string;
8709
8783
  }
8710
8784
 
8785
+ interface IGitlabRelease {
8786
+ name: string;
8787
+ tag_name: string;
8788
+ description: string;
8789
+ }
8790
+ declare class GitlabUtils {
8791
+ static API_V4_PATH: string;
8792
+ static API_V4_PROJECTS_PATH: string;
8793
+ /**
8794
+ * Checks whether a URL points to a Gitlab instance.
8795
+ *
8796
+ * A URL is considered a Gitlab URL either when its host starts with 'gitlab.'
8797
+ * (e.g. 'https://gitlab.ifremer.fr/...'), or when it is a repository file URL
8798
+ * (see {@link isRepoFileUrl}) - in which case the host is NOT checked, since
8799
+ * a self-hosted Gitlab instance may use a custom domain name.
8800
+ *
8801
+ * @example
8802
+ * GitlabUtils.isGitlabUrl('https://gitlab.ifremer.fr/sih-public/sumaris/sumaris-app'); // true
8803
+ * GitlabUtils.isGitlabUrl('https://my-custom-domain.com/foo/-/raw/master/README.md'); // true (repo file URL)
8804
+ * GitlabUtils.isGitlabUrl('https://github.com/foo/bar'); // false
8805
+ */
8806
+ static isGitlabUrl(url: string): boolean;
8807
+ /**
8808
+ * Checks whether a URL is a Gitlab repository file URL, i.e. a URL used to
8809
+ * view a single file in a repository ('/-/blob/') or to download its raw
8810
+ * content ('/-/raw/').
8811
+ *
8812
+ * @example
8813
+ * GitlabUtils.isRepoFileUrl('https://gitlab.ifremer.fr/a/b/-/raw/master/README.md'); // true
8814
+ * GitlabUtils.isRepoFileUrl('https://gitlab.ifremer.fr/a/b/-/blob/master/README.md'); // true
8815
+ * GitlabUtils.isRepoFileUrl('https://gitlab.ifremer.fr/api/v4/projects/a%2Fb'); // false
8816
+ */
8817
+ static isRepoFileUrl(url: string): boolean;
8818
+ /**
8819
+ * Converts a repository file URL into its 'raw content' equivalent, by
8820
+ * replacing the '/-/blob/' (file viewer) or '/-/tree/' (directory viewer)
8821
+ * segment with '/-/raw/'.
8822
+ *
8823
+ * If the URL is not a repository file URL (see {@link isRepoFileUrl}), it is
8824
+ * returned unchanged.
8825
+ *
8826
+ * @example
8827
+ * GitlabUtils.getRawRepoFileUrl('https://gitlab.ifremer.fr/a/b/-/blob/master/README.md');
8828
+ * // 'https://gitlab.ifremer.fr/a/b/-/raw/master/README.md'
8829
+ */
8830
+ static getRawRepoFileUrl(url: string): string;
8831
+ /**
8832
+ * Checks whether a URL targets the Gitlab REST API (any endpoint under
8833
+ * '/api/v4/'). Repository file URLs (see {@link isRepoFileUrl}) are always
8834
+ * excluded, even if they happen to contain '/api/v4/' somewhere in their path.
8835
+ */
8836
+ static isApiUrl(url: string): boolean;
8837
+ /**
8838
+ * Checks whether a URL targets the Gitlab 'projects' REST API (any endpoint
8839
+ * under '/api/v4/projects/'), e.g. project releases, branches, etc.
8840
+ */
8841
+ static isApiProjectsUrl(url: string): boolean;
8842
+ /**
8843
+ * Checks whether a URL targets the Gitlab project releases REST API, e.g.
8844
+ * 'https://gitlab.ifremer.fr/api/v4/projects/{id}/releases' (all releases)
8845
+ * or 'https://gitlab.ifremer.fr/api/v4/projects/{id}/releases/{tag_name}'
8846
+ * (a single release).
8847
+ */
8848
+ static isProjectReleasesApiUrl(url: string): boolean;
8849
+ /**
8850
+ * Fetches releases from the Gitlab project releases REST API.
8851
+ *
8852
+ * The given URL can either target the collection endpoint
8853
+ * ('.../releases', returning all releases), or a single release endpoint
8854
+ * ('.../releases/{tag_name}', returning one release, wrapped into an array).
8855
+ *
8856
+ * @return the list of releases, an empty array if the API call failed for a
8857
+ * single release, or `null` if the URL is not a project releases API URL.
8858
+ */
8859
+ static getProjectReleases(http: HttpClient, url: string): Promise<IGitlabRelease[]>;
8860
+ /**
8861
+ * Extracts the URL-encoded project path (e.g. 'group%2Fsubgroup%2Fproject')
8862
+ * from a Gitlab 'projects' API URL. The returned value is NOT decoded, so it
8863
+ * still contains '%2F' in place of '/'.
8864
+ *
8865
+ * @example
8866
+ * GitlabUtils.getProjectNameFromApiUrl('https://gitlab.ifremer.fr/api/v4/projects/sih-public%2Fsumaris%2Fsumaris-app/releases');
8867
+ * // 'sih-public%2Fsumaris%2Fsumaris-app'
8868
+ */
8869
+ static getProjectNameFromApiUrl(url: string): string;
8870
+ /**
8871
+ * Resolves the Gitlab web page associated to a URL:
8872
+ * - for an API 'projects' URL (see {@link isApiUrl}), this is the project's
8873
+ * home page, e.g. 'https://gitlab.ifremer.fr/sih-public/sumaris/sumaris-app';
8874
+ * - for a repository file URL (see {@link isRepoFileUrl}), this is the
8875
+ * project's raw content base path (e.g. '.../my-project/-/raw/'), since
8876
+ * the project path cannot be reliably distinguished from the file path
8877
+ * once slashes are un-encoded.
8878
+ *
8879
+ * @return `null` if the project page cannot be resolved from the given URL.
8880
+ */
8881
+ static getProjectPage(url: string): string;
8882
+ /**
8883
+ * Builds the URL of the Gitlab web page listing a project's releases (e.g.
8884
+ * 'https://gitlab.ifremer.fr/sih-public/sumaris/sumaris-app/-/releases'),
8885
+ * optionally anchored on a specific version/tag.
8886
+ *
8887
+ * @param url any URL from which the project page can be resolved (see {@link getProjectPage})
8888
+ * @param version optional tag name (e.g. '2.16.2') appended to the releases page
8889
+ * @return `null` if the project page cannot be resolved from the given URL.
8890
+ */
8891
+ static getProjectReleasePage(url: string, version?: string): string;
8892
+ }
8893
+
8711
8894
  interface IMenuItem extends IconRef {
8712
8895
  id?: number;
8713
8896
  parent?: IMenuItem;
@@ -9613,9 +9796,17 @@ declare abstract class AppTable<T extends IEntity<T, ID>, F = any, ID = number>
9613
9796
  protected detectChanges(): void;
9614
9797
  protected askDeleteConfirmation(event?: Event, rows?: TableElement<T>[], opts?: {
9615
9798
  messageKey?: string;
9799
+ backdropDismiss?: boolean;
9800
+ keyboardClose?: boolean;
9801
+ }): Promise<boolean>;
9802
+ protected askCancelConfirmation(event?: Event, rows?: TableElement<T>[], opts?: {
9803
+ backdropDismiss?: boolean;
9804
+ keyboardClose?: boolean;
9805
+ }): Promise<boolean>;
9806
+ protected askRestoreConfirmation(event?: Event, opts?: {
9807
+ backdropDismiss?: boolean;
9808
+ keyboardClose?: boolean;
9616
9809
  }): Promise<boolean>;
9617
- protected askCancelConfirmation(event?: Event, rows?: TableElement<T>[]): Promise<boolean>;
9618
- protected askRestoreConfirmation(event?: Event): Promise<boolean>;
9619
9810
  protected showToast(opts: ShowToastOptions): Promise<_ionic_core.OverlayEventDetail<any>>;
9620
9811
  protected resetError(opts?: {
9621
9812
  emitEvent?: boolean;
@@ -10331,6 +10522,8 @@ declare abstract class AppAsyncTable<T extends IEntity<T, ID>, F = any, ID = num
10331
10522
  }): Promise<boolean>;
10332
10523
  protected canCancelRows(rows?: AsyncTableElement<T>[], opts?: {
10333
10524
  interactive?: boolean;
10525
+ backdropDismiss?: boolean;
10526
+ keyboardClose?: boolean;
10334
10527
  }): Promise<boolean>;
10335
10528
  protected saveBeforeAction(saveAction: SaveActionType): Promise<boolean>;
10336
10529
  /**
@@ -10373,9 +10566,17 @@ declare abstract class AppAsyncTable<T extends IEntity<T, ID>, F = any, ID = num
10373
10566
  protected detectChanges(): void;
10374
10567
  protected askDeleteConfirmation(event?: Event, rows?: AsyncTableElement<T>[], opts?: {
10375
10568
  messageKey?: string;
10569
+ backdropDismiss?: boolean;
10570
+ keyboardClose?: boolean;
10571
+ }): Promise<boolean>;
10572
+ protected askCancelConfirmation(event?: Event, rows?: AsyncTableElement<T>[], opts?: {
10573
+ backdropDismiss?: boolean;
10574
+ keyboardClose?: boolean;
10575
+ }): Promise<boolean>;
10576
+ protected askRestoreConfirmation(event?: Event, opts?: {
10577
+ backdropDismiss?: boolean;
10578
+ keyboardClose?: boolean;
10376
10579
  }): Promise<boolean>;
10377
- protected askCancelConfirmation(event?: Event, rows?: AsyncTableElement<T>[]): Promise<boolean>;
10378
- protected askRestoreConfirmation(event?: Event): Promise<boolean>;
10379
10580
  protected showToast(opts: ShowToastOptions): Promise<_ionic_core.OverlayEventDetail<any>>;
10380
10581
  protected resetError(opts?: {
10381
10582
  emitEvent?: boolean;
@@ -12407,6 +12608,8 @@ declare class AboutModal implements OnInit, OnDestroy {
12407
12608
  protected modalController: ModalController;
12408
12609
  protected configService: ConfigService;
12409
12610
  protected networkService: NetworkService;
12611
+ protected platformService: PlatformService;
12612
+ protected http: HttpClient;
12410
12613
  protected cd: ChangeDetectorRef;
12411
12614
  protected environment: any;
12412
12615
  developers: Partial<Department>[];
@@ -12425,15 +12628,16 @@ declare class AboutModal implements OnInit, OnDestroy {
12425
12628
  protected nodeInfo: NodeInfo;
12426
12629
  protected buildDate: string;
12427
12630
  protected get allowVersionDetails(): boolean;
12428
- constructor(translate: TranslateService, modalController: ModalController, configService: ConfigService, networkService: NetworkService, cd: ChangeDetectorRef, environment: any, developers: Partial<Department>[], partners: Partial<Department>[]);
12631
+ constructor(translate: TranslateService, modalController: ModalController, configService: ConfigService, networkService: NetworkService, platformService: PlatformService, http: HttpClient, cd: ChangeDetectorRef, environment: any, developers: Partial<Department>[], partners: Partial<Department>[]);
12429
12632
  ngOnInit(): void;
12430
12633
  ngOnDestroy(): void;
12431
12634
  close(): Promise<void>;
12432
12635
  protected setConfig(config?: Configuration): void;
12433
- protected openChangelog(event: Event): Promise<void>;
12636
+ protected getChangelogUrl(config?: Configuration): any;
12637
+ protected openChangelog(event: Event): Promise<void | _ionic_core.OverlayEventDetail<any>>;
12434
12638
  protected loadNodeInfo(): Promise<void>;
12435
12639
  protected getNodeInfo(): Promise<NodeInfo>;
12436
- static ɵfac: i0.ɵɵFactoryDeclaration<AboutModal, [null, null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }]>;
12640
+ static ɵfac: i0.ɵɵFactoryDeclaration<AboutModal, [null, null, null, null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }]>;
12437
12641
  static ɵcmp: i0.ɵɵComponentDeclaration<AboutModal, "app-about-modal", never, {}, {}, never, never, false, never>;
12438
12642
  }
12439
12643
 
@@ -12493,7 +12697,7 @@ declare class SettingsPage extends AppForm<LocalSettings> implements OnInit, OnD
12493
12697
  setAccountInheritance(enable: boolean, opts?: {
12494
12698
  emitEvent?: boolean;
12495
12699
  }): void;
12496
- showSelectPeerModal(opts?: Partial<ISelectPeerModalOptions>): Promise<void>;
12700
+ showSelectPeerModal(event?: Event, opts?: Partial<ISelectPeerModalOptions>): Promise<void>;
12497
12701
  protected setForceOffline(value: boolean): void;
12498
12702
  cancel(event?: Event): Promise<void>;
12499
12703
  close(_?: Event): Promise<boolean>;
@@ -13005,7 +13209,10 @@ declare abstract class AppEntityEditor<T extends Entity<T, ID>, S extends IEntit
13005
13209
  * Save data (if dirty and valid), and return it. Otherwise, return nil value.
13006
13210
  */
13007
13211
  saveAndGetDataIfValid(): Promise<T | undefined>;
13008
- delete(event?: Event, opts?: DO): Promise<boolean>;
13212
+ delete(event?: Event, opts?: DO & {
13213
+ backdropDismiss?: boolean;
13214
+ keyboardClose?: boolean;
13215
+ }): Promise<boolean>;
13009
13216
  reload(): Promise<void>;
13010
13217
  unload(opts?: {
13011
13218
  emitEvent?: boolean;
@@ -14558,5 +14765,5 @@ declare class TableValidatorService extends ReferentialValidatorService {
14558
14765
  static ɵprov: i0.ɵɵInjectableDeclaration<TableValidatorService>;
14559
14766
  }
14560
14767
 
14561
- 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_SERVICE, APP_GRAPHQL_TYPE_POLICIES, APP_HOME_BUTTONS, APP_HOME_CONFIG, APP_HOME_TOOLBAR_BUTTONS, 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, AppHomePageModule, AppIconComponent, AppIconModule, AppIconSelectorField, AppIconSelectorModal, AppIconSelectorModule, AppImageGalleryComponent, AppImageGallerySlideshowComponent, 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, AppWebSocket, 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, ChangeCaseToUnderscorePipe, ChangePasswordForm, ChipsTestPage, Color, ColorScale, ComponentDirtyGuard, ConfigFragments, ConfigService, Configuration, CoreModule, CorePipesModule, CoreTestingModule, CryptoService, CsvUtils, DATE_ISO_PATTERN, DATE_ISO_PATTERNS, 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, EmptyMissingTranslationHandler, 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, FormArrayAtControlPipe, FormArrayAtGroupPipe, FormArrayHelper, FormArrayTestModule, FormButtonsBarComponent, FormButtonsBarToken, FormErrorPipe, FormErrorTranslatePipe, FormErrorTranslator, FormFieldDefinitionUtils, FormFieldValuesHolder, FormGetArrayPipe, FormGetControlPipe, FormGetGroupPipe, FormGetNamePipe, FormGetPipe, FormGetValuePipe, GalleryTestPage, GeolocationUtils, GraphqlService, HAMMER_PRESS_TIME, HAMMER_TAP_TIME, HighlightPipe, HomePage, Hotkeys, HotkeysDialogComponent, IMAGE_DEFAULTS, IPosition, IconSelectorTestPage, IconSelectorTestingModule, ImageAttachment$1 as ImageAttachment, ImageAttachmentFilter$1 as 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, LatLongFormatOptions, 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, MaterialAutocompleteFooterDirective, MaterialAutocompleteHeaderDirective, 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, NativeWebSocket, NavActionsColumnComponent, NestedTableTestPage, 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, STARTUP_DATA_STORAGE_KEY, 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, StartupService, StatusById, StatusIds, StatusList, StorageDrivers, StorageExplorerComponent, StorageExplorerModule, StorageExplorerTestingModule, StorageExplorerTestingRoutingModule, StorageService, StorageServiceWrapper, StrIncludesPipe, StrLengthPipe, StrReplacePipe, SubMenuTabDirective, SwipeTestPage, TABLE_SETTINGS_ENUM, TOOLBAR_HEADER_ID, TRACKED_QUERIES_STORAGE_KEY, 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, UserController, UserEventModule, UserEventNotificationIcon, UserEventNotificationList, UserEventNotificationModal, UserEventTestService, UserEventTestingModule, UserEventTestingPage, UserSettings, UserToken, UserTokenTable, UsersPage, 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, createApolloClientOptions, createAppStartupInitializer, createPromiseEvent, createPromiseEventEmitter, createTrackerLink, 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, initializeSharedModule, interpolateString, intersectArrays, isAndroid, isBlankString, isCapacitor, isChrome, isControlHasInput, isEdge, isEmptyArray, isEntityService, isFirefox, isFocusableElement, isIOS, isInputElement, isInstanceOf, isInt, isIpad, isLightColor, isMacOS, isMobile, isMutationOperation, isNil, isNilOrBlank, isNilOrNaN, isNotEmptyArray, isNotNil, isNotNilBoolean, isNotNilObject, isNotNilOrBlank, isNotNilOrNaN, isNotNilString, isNumber, isNumberRange, isOnFieldMode, isPrint, isProgressEvent, isPromise, isResponseEvent, isSafari, isSameVersion, isStartableService, isSubscriptionOperation, isTouchUi, isVersionCompatible, isWindows, joinProperties, joinPropertiesPath, lastArrayValue, logFormErrors, loggerLink, 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, restoreTrackedQueries, 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 };
14562
- export type { AbstractPersonServiceOptions, AccountDetails, AccountServiceGraphqlMutations, AccountServiceGraphqlQueries, AccountServiceGraphqlSubscriptions, AccountServiceOptions, AccountViewName, AccountWatchOptions, AddToPageHistoryOptions, AppColors, AppError, AppErrorWithDetails, AppFloatLabelType, AppFormArrayOptions, AppListFormOptions, AppManifest, AppMarkdownModalOptions, AppMarkdownOptions, AppPropertiesFormState, AppSelectUsersModalOptions, AppTableRowCountProperty, AudioType, AuthData, AuthTokenType, BaseEntityGraphqlMutations, BaseEntityGraphqlQueries, BaseEntityGraphqlSubscriptions, BaseEntityServiceOptions, BiFunction, CallableWithProgressionFn, CallableWithProgressionOptions, CanGainFocusOptions, CanLeave, CanSave, CellSelectionEvent, CellSelectionServiceConfig, ChangePasswordData, Cloneable, ColorGradientOptions, ColorName, ColorScaleLegend, ColorScaleLegendItem, ColorScaleOptions, ColumnItem, CompareFn, CompletableEvent, ConnectionParams, Constructor, DisplayFn, EmptyObject, EntitiesAsyncTableDataSourceConfig, EntitiesServiceDeleteOptions, EntitiesServiceLoadOptions, EntitiesServiceSaveOptions, EntitiesServiceWatchOptions, EntitiesStorageTypePolicies, EntitiesTableDataSourceConfig, EntityAsObjectOptions, EntitySaveOptions, EntityServiceDeleteOptions, EntityServiceListenChangesOptions, EntityServiceLoadOptions, EntityServiceRefetchQueriesOptions, EntityServiceSaveOptions, EntityServiceWatchOptions, EntityStorageLoadOptions, EntityStoreTypePolicy, EntityStoreTypePolicyMode, EqualsFn, EventLevel, FeedLoadOptions, FeedServiceState, FeedState, FeedsLoadOptions, FeedsWatchOptions, FetchMoreFn, FileDeleteFn, FileEvent, FileProgressEvent, FileUploadFn, FilterFn, FilterFnFactory, FilterItemFunction, FindMutableWatchQueriesOptions, FirstOptions, FocusableElement, FormArrayHelperOptions, FormErrorTranslateOptions, FormErrors, FormFieldDefinition, FormFieldDefinitionMap, FormFieldType, Function$1 as Function, GalleryMode, GetFocusableInputOptions, HammerSwipeAction, HammerSwipeEvent, HammerTapEvent, HistoryPageReference, HomePageState, HotKeysConfig, IAppEditor, IAppEntityEditor, IAppForm, IAppFormContainer, IAppFormGetter, IAppTabEditor, ICellId, IDebugDataService, IEntitiesService, IEntitiesTableDataSource, IEntity, IEntityEditorModalOptions, IEntityFilter, IEntityFullService, IEntityService, IFeedService, IFormPathTranslator, IFormPathTranslatorOptions, IHomePageConfig, IJobProgressionService, ILatLongData, ILogger, ILoggingAppender, ILoggingService, IMenuItem, IModalDetailOptions, INamedFilter, INamedFilterFilter, INamedFilterService, INewTokenOptions, IPersonService, IProgressBarService, IReferentialRef, ISelectPeerModalOptions, ISelectPeerModalState, IStartableService, IStatus, IStorage, ITreeItemEntity, IUserEvent, IUserEventAction, IUserEventFilter, IUserEventListener, IUserEventMutations, IUserEventQueries, IUserEventService, IUserEventSubscriptions, IconRef, Image, ImageEditEvent, ImageEditFormat, ImageGallerySizes, ImageGallerySlideChangeEvent, ImageGallerySlideshowMode, ImageResizeOptions, ImageSize, InMemoryEntitiesServiceOptions, InputElement, InstallAppLink, IsEmailExistsVariables, ItemButton, JobProgressionIconState, JobProgressionListOptions, JobProgressionOptions, JobProgressionState, JoinOptions, JsonFeed, JsonFeedAuthor, JsonFeedItem, KeyType, KeyValueType, KeysEnum, LatLongPattern, LatLongSign, LatLongSignValue, LatLongType, LoadResult, LoadResultByPageFn, LocalSettings, LocalSettingsOptions, LocaleConfig, Log, LoggingServiceConfig, MaskitoPlaceholderPipeOptions, MatAutocompleteFieldAddOptions, MatAutocompleteFieldConfig, MatAutocompleteFieldSelectChange, MatAutocompleteFieldToggleFavorite, MatBadgeFill, MenuPathParam, MessageModalOptions, MutableWatchQueriesUpdatePolicy, MutableWatchQueryDescription, MutableWatchQueryOptions, MutateQueryOptions, MutateQueryWithCacheUpdateOptions, NamedFilterLoadOptions, NamedFilterSelectorButtonsPosition, NamedFilterWatchOptions, NetworkEventType, NodeInfo, ObjectMap, ObjectMapEntry, ObservablePropertyDecorator, ObservableValidatorFn, Observed, OfflineFeature, OmitFunctions, OnReady, Page, PersonServiceOptions, PersonValidatorOptions, PrintOptions, ProgressMode, PromiseEvent, PromiseEventPayload, PromiseValidatorFn, PropertiesArray, PropertiesMap, Property, PropertyMap, QueryVariables, ReferentialAsObjectOptions, RegisterData, SaveActionType, ServiceError, SharedModuleConfig, ShowToastOptions, SimpleFunction, SocialModuleOptions, Sound, SplitPaneShowWhen, StartupData, StartupMethod, StatePropertyDecorator, Statefull, SuggestFn, SuggestService, SynchronizationHistory, TestingPage, TextPopoverButton, TextPopoverOptions, TrackableMutationContext, TrackedQuery, UploadFilePopoverOptions, UsageMode, UserEventAction, UserEventLoadOptions, UserEventNotificationListOptions, UserEventNotificationModalOptions, UserEventServiceOptions, UserEventWatchOptions, UserProfileLabel, UserSettingsOptions, WaitForOptions, WatchQueryOptions };
14768
+ 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_SERVICE, APP_GRAPHQL_TYPE_POLICIES, APP_HOME_BUTTONS, APP_HOME_CONFIG, APP_HOME_TOOLBAR_BUTTONS, 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, AppHomePageModule, AppIconComponent, AppIconModule, AppIconSelectorField, AppIconSelectorModal, AppIconSelectorModule, AppImageGalleryComponent, AppImageGallerySlideshowComponent, 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, AppWebSocket, 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, ChangeCaseToUnderscorePipe, ChangePasswordForm, ChipsTestPage, Color, ColorScale, ComponentDirtyGuard, ConfigFragments, ConfigService, Configuration, CoreModule, CorePipesModule, CoreTestingModule, CryptoService, CsvUtils, DATE_ISO_PATTERN, DATE_ISO_PATTERNS, 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, EmptyMissingTranslationHandler, 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, FormArrayAtControlPipe, FormArrayAtGroupPipe, FormArrayHelper, FormArrayTestModule, FormButtonsBarComponent, FormButtonsBarToken, FormErrorPipe, FormErrorTranslatePipe, FormErrorTranslator, FormFieldDefinitionUtils, FormFieldValuesHolder, FormGetArrayPipe, FormGetControlPipe, FormGetGroupPipe, FormGetNamePipe, FormGetPipe, FormGetValuePipe, GalleryTestPage, GeolocationUtils, GitlabUtils, GraphqlService, HAMMER_PRESS_TIME, HAMMER_TAP_TIME, HighlightPipe, HomePage, Hotkeys, HotkeysDialogComponent, IMAGE_DEFAULTS, IPosition, IconSelectorTestPage, IconSelectorTestingModule, ImageAttachment$1 as ImageAttachment, ImageAttachmentFilter$1 as 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, LatLongFormatOptions, 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, MaterialAutocompleteFooterDirective, MaterialAutocompleteHeaderDirective, 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, NativeWebSocket, NavActionsColumnComponent, NestedTableTestPage, 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, STARTUP_DATA_STORAGE_KEY, 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, StartupService, StatusById, StatusIds, StatusList, StorageDrivers, StorageExplorerComponent, StorageExplorerModule, StorageExplorerTestingModule, StorageExplorerTestingRoutingModule, StorageService, StorageServiceWrapper, StrIncludesPipe, StrLengthPipe, StrReplacePipe, SubMenuTabDirective, SwipeTestPage, TABLE_SETTINGS_ENUM, TOOLBAR_HEADER_ID, TRACKED_QUERIES_STORAGE_KEY, Table2TestPage, TableSelectColumnsComponent, TableTestPage, TableTestingModule, TableValidatorService, TextForm, TextFormTestingModule, TextFormTestingPage, TextPopover, TextPopoverTestingModule, TextPopoverTestingPage, ThrottledClickDirective, TimeFormatPipe, ToStringPipe, ToastTestingModule, ToastTestingPage, Toasts, TokenScope, ToolbarComponent, ToolbarToken, TranslatablePipe, TranslateContextPipe, TranslateContextService, TreeItemEntityUtils, TruncHtmlPipe, TruncTextPipe, TruncateHtmlPipe, UploadFile, UploadFileComponent, UploadFilePopover, UploadFileTestingModule, UploadFileTestingPage, UriUtils, UrlUtils, UserController, UserEventModule, UserEventNotificationIcon, UserEventNotificationList, UserEventNotificationModal, UserEventTestService, UserEventTestingModule, UserEventTestingPage, UserSettings, UserToken, UserTokenTable, UsersPage, 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, createApolloClientOptions, createAppStartupInitializer, createPromiseEvent, createPromiseEventEmitter, createTrackerLink, 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, initializeSharedModule, interpolateString, intersectArrays, isAndroid, isBlankString, isCapacitor, isChrome, isControlHasInput, isEdge, isEmptyArray, isEntityService, isFirefox, isFocusableElement, isIOS, isInputElement, isInstanceOf, isInt, isIpad, isLightColor, isMacOS, isMobile, isMutationOperation, isNil, isNilOrBlank, isNilOrNaN, isNotEmptyArray, isNotNil, isNotNilBoolean, isNotNilObject, isNotNilOrBlank, isNotNilOrNaN, isNotNilString, isNumber, isNumberRange, isOnFieldMode, isPrint, isProgressEvent, isPromise, isResponseEvent, isSafari, isSameVersion, isStartableService, isSubscriptionOperation, isTouchUi, isVersionCompatible, isWebAnimationsSupported, isWindows, joinProperties, joinPropertiesPath, lastArrayValue, logFormErrors, loggerLink, 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, restoreTrackedQueries, 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 };
14769
+ export type { AbstractPersonServiceOptions, AccountDetails, AccountServiceGraphqlMutations, AccountServiceGraphqlQueries, AccountServiceGraphqlSubscriptions, AccountServiceOptions, AccountViewName, AccountWatchOptions, AddToPageHistoryOptions, AppColors, AppError, AppErrorWithDetails, AppFloatLabelType, AppFormArrayOptions, AppListFormOptions, AppManifest, AppMarkdownModalOptions, AppMarkdownOptions, AppPropertiesFormState, AppSelectUsersModalOptions, AppTableRowCountProperty, AudioType, AuthData, AuthTokenType, BaseEntityGraphqlMutations, BaseEntityGraphqlQueries, BaseEntityGraphqlSubscriptions, BaseEntityServiceOptions, BiFunction, CallableWithProgressionFn, CallableWithProgressionOptions, CanGainFocusOptions, CanLeave, CanSave, CellSelectionEvent, CellSelectionServiceConfig, ChangePasswordData, Cloneable, ColorGradientOptions, ColorName, ColorScaleLegend, ColorScaleLegendItem, ColorScaleOptions, ColumnItem, CompareFn, CompletableEvent, ConnectionParams, Constructor, DisplayFn, EmptyObject, EntitiesAsyncTableDataSourceConfig, EntitiesServiceDeleteOptions, EntitiesServiceLoadOptions, EntitiesServiceSaveOptions, EntitiesServiceWatchOptions, EntitiesStorageTypePolicies, EntitiesTableDataSourceConfig, EntityAsObjectOptions, EntitySaveOptions, EntityServiceDeleteOptions, EntityServiceListenChangesOptions, EntityServiceLoadOptions, EntityServiceRefetchQueriesOptions, EntityServiceSaveOptions, EntityServiceWatchOptions, EntityStorageLoadOptions, EntityStoreTypePolicy, EntityStoreTypePolicyMode, EqualsFn, EventLevel, FeedLoadOptions, FeedServiceState, FeedState, FeedsLoadOptions, FeedsWatchOptions, FetchMoreFn, FileCheck, FileCheckEnabledFn, FileDeleteFn, FileEvent, FileHasErrorFn, FileProgressEvent, FileUploadFn, FilterFn, FilterFnFactory, FilterItemFunction, FindMutableWatchQueriesOptions, FirstOptions, FocusableElement, FormArrayHelperOptions, FormErrorTranslateOptions, FormErrors, FormFieldDefinition, FormFieldDefinitionMap, FormFieldType, Function$1 as Function, GalleryMode, GetFocusableInputOptions, HammerSwipeAction, HammerSwipeEvent, HammerTapEvent, HistoryPageReference, HomePageState, HotKeysConfig, IAppEditor, IAppEntityEditor, IAppForm, IAppFormContainer, IAppFormGetter, IAppTabEditor, ICellId, IDebugDataService, IEntitiesService, IEntitiesTableDataSource, IEntity, IEntityEditorModalOptions, IEntityFilter, IEntityFullService, IEntityService, IFeedService, IFormPathTranslator, IFormPathTranslatorOptions, IGitlabRelease, IHomePageConfig, IJobProgressionService, ILatLongData, ILogger, ILoggingAppender, ILoggingService, IMenuItem, IModalDetailOptions, INamedFilter, INamedFilterFilter, INamedFilterService, INewTokenOptions, IPersonService, IProgressBarService, IReferentialRef, ISelectPeerModalOptions, ISelectPeerModalState, IStartableService, IStatus, IStorage, ITreeItemEntity, IUserEvent, IUserEventAction, IUserEventFilter, IUserEventListener, IUserEventMutations, IUserEventQueries, IUserEventService, IUserEventSubscriptions, IconRef, Image, ImageEditEvent, ImageEditFormat, ImageGallerySizes, ImageGallerySlideChangeEvent, ImageGallerySlideshowMode, ImageResizeOptions, ImageSize, InMemoryEntitiesServiceOptions, InputElement, InstallAppLink, IsEmailExistsVariables, ItemButton, JobProgressionIconState, JobProgressionListOptions, JobProgressionOptions, JobProgressionState, JoinOptions, JsonFeed, JsonFeedAuthor, JsonFeedItem, KeyType, KeyValueType, KeysEnum, LatLongPattern, LatLongSign, LatLongSignValue, LatLongType, LoadResult, LoadResultByPageFn, LocalSettings, LocalSettingsOptions, LocaleConfig, Log, LoggingServiceConfig, MaskitoPlaceholderPipeOptions, MatAutocompleteFieldAddOptions, MatAutocompleteFieldConfig, MatAutocompleteFieldSelectChange, MatAutocompleteFieldToggleFavorite, MatBadgeFill, MenuPathParam, MessageModalOptions, MutableWatchQueriesUpdatePolicy, MutableWatchQueryDescription, MutableWatchQueryOptions, MutateQueryOptions, MutateQueryWithCacheUpdateOptions, NamedFilterLoadOptions, NamedFilterSelectorButtonsPosition, NamedFilterWatchOptions, NetworkEventType, NodeInfo, ObjectMap, ObjectMapEntry, ObservablePropertyDecorator, ObservableValidatorFn, Observed, OfflineFeature, OmitFunctions, OnReady, Page, PersonServiceOptions, PersonValidatorOptions, PrintOptions, ProgressMode, PromiseEvent, PromiseEventPayload, PromiseValidatorFn, PropertiesArray, PropertiesMap, Property, PropertyMap, QueryVariables, ReferentialAsObjectOptions, RegisterData, SaveActionType, ServiceError, SharedModuleConfig, ShowToastOptions, SimpleFunction, SocialModuleOptions, Sound, SplitPaneShowWhen, StartupData, StartupMethod, StatePropertyDecorator, Statefull, SuggestFn, SuggestService, SynchronizationHistory, TestingPage, TextPopoverButton, TextPopoverOptions, TrackableMutationContext, TrackedQuery, UploadFilePopoverOptions, UsageMode, UserEventAction, UserEventLoadOptions, UserEventNotificationListOptions, UserEventNotificationModalOptions, UserEventServiceOptions, UserEventWatchOptions, UserProfileLabel, UserSettingsOptions, WaitForOptions, WatchQueryOptions };