@codetectonics/mantle 2.0.6 → 2.0.8

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/index.d.ts CHANGED
@@ -1,33 +1,35 @@
1
1
  import * as i0 from '@angular/core';
2
- import { PipeTransform, TemplateRef, EventEmitter, OnDestroy, OnChanges, SimpleChanges, AfterViewChecked, ChangeDetectorRef, OnInit, ElementRef, Injector, AfterViewInit, QueryList, InjectionToken } from '@angular/core';
2
+ import { PipeTransform, TemplateRef, EventEmitter, OnDestroy, OnChanges, SimpleChanges, AfterViewInit, AfterViewChecked, ChangeDetectorRef, OnInit, ElementRef, Injector, QueryList, InjectionToken } from '@angular/core';
3
3
  import * as rxjs from 'rxjs';
4
4
  import { Observable, BehaviorSubject } from 'rxjs';
5
- import * as i120 from '@angular/common/http';
5
+ import * as i121 from '@angular/common/http';
6
6
  import { HttpClient, HttpParams } from '@angular/common/http';
7
7
  import { AngularTokenService, SignInData, UpdatePasswordData, ResetPasswordData } from '@citizenobserver/angular-token';
8
- import * as i126 from '@angular/forms';
8
+ import * as i127 from '@angular/forms';
9
9
  import { FormGroup, ControlValueAccessor, Validator, AbstractControl, ValidationErrors, FormArray } from '@angular/forms';
10
- import * as i121 from '@angular/cdk/layout';
10
+ import * as i122 from '@angular/cdk/layout';
11
11
  import { BreakpointObserver } from '@angular/cdk/layout';
12
12
  import * as i8 from '@angular/material/dialog';
13
13
  import { MatDialog, MatDialogRef, MatDialogConfig } from '@angular/material/dialog';
14
+ import * as i120 from '@angular/router';
15
+ import { ActivatedRoute, Router, CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot, CanActivateChild } from '@angular/router';
14
16
  import * as quill_table_better_dist_types_keyboard from 'quill-table-better/dist/types/keyboard';
15
17
  import Quill from 'quill';
18
+ import * as i135 from '@angular/google-maps';
19
+ import { GoogleMap, MapInfoWindow, MapAdvancedMarker } from '@angular/google-maps';
16
20
  import * as i25 from '@angular/material/snack-bar';
17
21
  import { MatSnackBar, MatSnackBarRef } from '@angular/material/snack-bar';
18
22
  import * as i6 from '@angular/material/chips';
19
23
  import { MatChipInputEvent } from '@angular/material/chips';
20
24
  import { Moment } from 'moment';
21
- import * as i124 from '@angular/platform-browser';
25
+ import * as i125 from '@angular/platform-browser';
22
26
  import { DomSanitizer } from '@angular/platform-browser';
23
- import * as i134 from 'ngx-image-cropper';
27
+ import * as i136 from 'ngx-image-cropper';
24
28
  import { ImageCroppedEvent } from 'ngx-image-cropper';
25
- import * as i132 from '@ngx-translate/core';
29
+ import * as i133 from '@ngx-translate/core';
26
30
  import { TranslateService } from '@ngx-translate/core';
27
- import * as i123 from '@angular/cdk/drag-drop';
31
+ import * as i124 from '@angular/cdk/drag-drop';
28
32
  import { CdkDragDrop } from '@angular/cdk/drag-drop';
29
- import * as i119 from '@angular/router';
30
- import { ActivatedRoute, Router, CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot, CanActivateChild } from '@angular/router';
31
33
  import * as i22 from '@angular/material/paginator';
32
34
  import { MatPaginator } from '@angular/material/paginator';
33
35
  import * as i23 from '@angular/material/sort';
@@ -35,7 +37,7 @@ import { MatSort } from '@angular/material/sort';
35
37
  import * as i21 from '@angular/material/table';
36
38
  import { MatTable } from '@angular/material/table';
37
39
  import { DataSource } from '@angular/cdk/collections';
38
- import * as i127 from 'gridstack/dist/angular';
40
+ import * as i128 from 'gridstack/dist/angular';
39
41
  import { NgGridStackOptions, nodesCB } from 'gridstack/dist/angular';
40
42
  import * as i26 from '@angular/material/tree';
41
43
  import { MatTreeFlattener, MatTreeFlatDataSource } from '@angular/material/tree';
@@ -44,12 +46,12 @@ import Highcharts$1 from 'highcharts';
44
46
  import * as i14 from '@angular/material/menu';
45
47
  import { MatMenuTrigger } from '@angular/material/menu';
46
48
  import * as i1 from '@angular/common';
47
- import * as i122 from '@angular/flex-layout';
48
- import * as i125 from '@angular/platform-browser/animations';
49
- import * as i128 from 'highcharts-angular';
50
- import * as i129 from 'ngx-markdown';
51
- import * as i130 from 'ng-qrcode';
52
- import * as i131 from 'ngx-quill';
49
+ import * as i123 from '@angular/flex-layout';
50
+ import * as i126 from '@angular/platform-browser/animations';
51
+ import * as i129 from 'highcharts-angular';
52
+ import * as i130 from 'ngx-markdown';
53
+ import * as i131 from 'ng-qrcode';
54
+ import * as i132 from 'ngx-quill';
53
55
  import * as i2 from '@angular/material/badge';
54
56
  import * as i3 from '@angular/material/button';
55
57
  import * as i4 from '@angular/material/card';
@@ -601,16 +603,73 @@ declare class ArrayService {
601
603
  static ɵprov: i0.ɵɵInjectableDeclaration<ArrayService>;
602
604
  }
603
605
 
606
+ interface ListPageColumn {
607
+ header: string;
608
+ attr: string;
609
+ type: string;
610
+ options?: any;
611
+ sortAttr?: string;
612
+ disableSort?: boolean;
613
+ enableCollapse?: boolean;
614
+ }
615
+ interface ListPageExportOption {
616
+ label: string;
617
+ export(params: any): Observable<any>;
618
+ }
619
+ interface ListPageBulkExportOption {
620
+ label: string;
621
+ export(selectedIds: string[]): void;
622
+ }
623
+ interface ListPageButton {
624
+ label: string;
625
+ color?: 'primary' | 'accent' | 'warn';
626
+ show: () => boolean;
627
+ disabled: boolean;
628
+ forCheckedRows: boolean;
629
+ isInProgress: () => boolean;
630
+ onClick: (ids: string[]) => void;
631
+ }
632
+ interface ListPageService {
633
+ withCheckableRows?: boolean;
634
+ withClickableRows: boolean;
635
+ withCollapsibleColumns?: boolean;
636
+ showAddButton: boolean;
637
+ showBackToParentButton?: boolean;
638
+ webRtcEvents: EventEmitter<any>;
639
+ subContentChangeEvents: EventEmitter<any>;
640
+ defaultOrder?: {
641
+ attr: string;
642
+ direction: 'asc' | 'desc';
643
+ };
644
+ isCommitInProgress: boolean;
645
+ customAddButtonLabel?: string;
646
+ prepare(route: ActivatedRoute): void;
647
+ noun(): string;
648
+ listColumns(): ListPageColumn[];
649
+ searchFields(): DynamicFormField[];
650
+ onListContentLoaded(content: any[]): void;
651
+ listPageExportOptions(): ListPageExportOption[];
652
+ listPageBulkExportOptions(): ListPageBulkExportOption[];
653
+ additionalListPageButtons(): ListPageButton[];
654
+ getList(params: WebApiListRequest): Observable<WebApiListResponse>;
655
+ onRecordChecked(record: any): void;
656
+ onRecordUnchecked(record: any): void;
657
+ isRowSelectable(record: any): boolean;
658
+ openParent(): void;
659
+ openRecord(record: any): void;
660
+ openForm(record?: any, initData?: any): void;
661
+ canWrite(): boolean;
662
+ }
663
+
604
664
  declare class DynamicAttributeDisplayComponent {
605
665
  private arrayService;
606
666
  value: any;
607
- field?: DynamicFormField | DynamicTableColumn;
667
+ field?: DynamicFormField | DynamicTableColumn | ListPageColumn;
608
668
  fieldType: string;
609
- options: any;
610
669
  constructor(arrayService: ArrayService);
611
670
  dropdownValueLabel(value: string): string;
612
671
  static ɵfac: i0.ɵɵFactoryDeclaration<DynamicAttributeDisplayComponent, never>;
613
- static ɵcmp: i0.ɵɵComponentDeclaration<DynamicAttributeDisplayComponent, "mantle-dynamic-attribute-display", never, { "value": { "alias": "value"; "required": false; }; "field": { "alias": "field"; "required": false; }; "fieldType": { "alias": "fieldType"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, never, false, never>;
672
+ static ɵcmp: i0.ɵɵComponentDeclaration<DynamicAttributeDisplayComponent, "mantle-dynamic-attribute-display", never, { "value": { "alias": "value"; "required": false; }; "field": { "alias": "field"; "required": false; }; "fieldType": { "alias": "fieldType"; "required": false; }; }, {}, never, never, false, never>;
614
673
  }
615
674
 
616
675
  declare class ActionsAttributeDisplayComponent {
@@ -767,6 +826,32 @@ declare class ReportViewerDisplayComponent implements OnChanges {
767
826
  static ɵcmp: i0.ɵɵComponentDeclaration<ReportViewerDisplayComponent, "mantle-report-viewer-display", never, { "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never>;
768
827
  }
769
828
 
829
+ declare class GoogleMapsLoaderService {
830
+ private environment;
831
+ private loadingPromise?;
832
+ constructor(environment: any);
833
+ load(): Promise<void>;
834
+ static ɵfac: i0.ɵɵFactoryDeclaration<GoogleMapsLoaderService, never>;
835
+ static ɵprov: i0.ɵɵInjectableDeclaration<GoogleMapsLoaderService>;
836
+ }
837
+
838
+ declare class MapDisplayComponent implements AfterViewInit {
839
+ private googleMapsLoader;
840
+ map: GoogleMap;
841
+ infoWindow: MapInfoWindow;
842
+ value: any;
843
+ mapsLoaded: boolean;
844
+ mapOptions: google.maps.MapOptions;
845
+ infoWindowText: string;
846
+ constructor(googleMapsLoader: GoogleMapsLoaderService);
847
+ ngAfterViewInit(): Promise<void>;
848
+ onMapInit(): void;
849
+ getMarkerPosition(mapItem: any): google.maps.LatLngLiteral;
850
+ openInfoWindow(marker: MapAdvancedMarker, mapItem: any): void;
851
+ static ɵfac: i0.ɵɵFactoryDeclaration<MapDisplayComponent, never>;
852
+ static ɵcmp: i0.ɵɵComponentDeclaration<MapDisplayComponent, "mantle-map-display", never, { "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never>;
853
+ }
854
+
770
855
  interface DialogNestedFormParams {
771
856
  title: string;
772
857
  section: DynamicLayoutGridSection;
@@ -1899,63 +1984,6 @@ declare class LayoutEditorPageComponent implements OnInit {
1899
1984
  static ɵcmp: i0.ɵɵComponentDeclaration<LayoutEditorPageComponent, "mantle-layout-editor-page", never, {}, {}, never, never, false, never>;
1900
1985
  }
1901
1986
 
1902
- interface ListPageColumn {
1903
- header: string;
1904
- attr: string;
1905
- type: string;
1906
- options?: any;
1907
- sortAttr?: string;
1908
- disableSort?: boolean;
1909
- enableCollapse?: boolean;
1910
- }
1911
- interface ListPageExportOption {
1912
- label: string;
1913
- export(params: any): Observable<any>;
1914
- }
1915
- interface ListPageBulkExportOption {
1916
- label: string;
1917
- export(selectedIds: string[]): void;
1918
- }
1919
- interface ListPageButton {
1920
- label: string;
1921
- color?: 'primary' | 'accent' | 'warn';
1922
- show: () => boolean;
1923
- disabled: boolean;
1924
- isInProgress: () => boolean;
1925
- onClick: (ids: string[]) => void;
1926
- }
1927
- interface ListPageService {
1928
- withCheckableRows?: boolean;
1929
- withClickableRows: boolean;
1930
- withCollapsibleColumns?: boolean;
1931
- showAddButton: boolean;
1932
- showBackToParentButton?: boolean;
1933
- webRtcEvents: EventEmitter<any>;
1934
- subContentChangeEvents: EventEmitter<any>;
1935
- defaultOrder?: {
1936
- attr: string;
1937
- direction: 'asc' | 'desc';
1938
- };
1939
- isCommitInProgress: boolean;
1940
- customAddButtonLabel?: string;
1941
- prepare(route: ActivatedRoute): void;
1942
- noun(): string;
1943
- listColumns(): ListPageColumn[];
1944
- searchFields(): DynamicFormField[];
1945
- onListContentLoaded(content: any[]): void;
1946
- listPageExportOptions(): ListPageExportOption[];
1947
- listPageBulkExportOptions(): ListPageBulkExportOption[];
1948
- additionalListPageButtons(): ListPageButton[];
1949
- getList(params: WebApiListRequest): Observable<WebApiListResponse>;
1950
- onRecordChecked(record: any): void;
1951
- onRecordUnchecked(record: any): void;
1952
- isRowSelectable(record: any): boolean;
1953
- openParent(): void;
1954
- openRecord(record: any): void;
1955
- openForm(record?: any, initData?: any): void;
1956
- canWrite(): boolean;
1957
- }
1958
-
1959
1987
  declare class SearchPanelComponent implements OnInit {
1960
1988
  private dynamicFormService;
1961
1989
  private objectService;
@@ -2033,6 +2061,7 @@ declare class ListPageComponent implements AfterViewInit {
2033
2061
  onCheckAll(checked: boolean): void;
2034
2062
  onBulkExportClicked(exportOption: ListPageBulkExportOption): void;
2035
2063
  loadAdditionalButtons(): void;
2064
+ isAdditionalButtonDisabled(button: ListPageButton): boolean;
2036
2065
  toggleCollapsibleColumns(): void;
2037
2066
  static ɵfac: i0.ɵɵFactoryDeclaration<ListPageComponent, never>;
2038
2067
  static ɵcmp: i0.ɵɵComponentDeclaration<ListPageComponent, "mantle-list-page", never, {}, {}, never, never, false, never>;
@@ -2949,7 +2978,7 @@ declare class MaterialModule {
2949
2978
 
2950
2979
  declare class MantleModule {
2951
2980
  static ɵfac: i0.ɵɵFactoryDeclaration<MantleModule, never>;
2952
- static ɵmod: i0.ɵɵNgModuleDeclaration<MantleModule, [typeof DynamicPipe, typeof SecureImagePipe, typeof ClickStopPropagationDirective, typeof FieldGridItemDirective, typeof FileDropzoneDirective, typeof DynamicDetailsComponent, typeof BoardDetailsSectionComponent, typeof GridDetailsSectionComponent, typeof TableDetailsSectionComponent, typeof ReportDetailsSectionComponent, typeof RosterShiftListDetailsSectionComponent, typeof DynamicAttributeDisplayComponent, typeof ActionsAttributeDisplayComponent, typeof IconAttributeDisplayComponent, typeof ChipAttributeDisplayComponent, typeof FileAttributeDisplayComponent, typeof ImageAttributeDisplayComponent, typeof MarkdownAttributeDisplayComponent, typeof MultiselectDisplayComponent, typeof RichTextDisplayComponent, typeof ChartViewerDisplayComponent, typeof ReportViewerDisplayComponent, typeof DialogFormComponent, typeof DialogNestedFormComponent, typeof DynamicFormComponent, typeof BoardFormSectionComponent, typeof GridFormSectionComponent, typeof TableFormSectionComponent, typeof RosterShiftListFormSectionComponent, typeof DynamicFormFieldComponent, typeof ChipInputComponent, typeof DatepickerComponent, typeof DatetimepickerComponent, typeof ColorPickerInputComponent, typeof DropdownComponent, typeof FilepickerComponent, typeof ImagepickerComponent, typeof ImageCropperComponent, typeof NumberInputComponent, typeof PasswordInputComponent, typeof TextareaComponent, typeof TextInputComponent, typeof TimeInputComponent, typeof MarkdownInputComponent, typeof MultiselectInputComponent, typeof RichTextInputComponent, typeof ChartConfigInputComponent, typeof ReportConfigInputComponent, typeof AccordionLayoutEditorContainerComponent, typeof DynamicLayoutEditorContainerComponent, typeof PlainLayoutEditorContainerComponent, typeof DynamicLayoutEditorComponent, typeof DynamicLayoutEditorElementComponent, typeof LayoutEditorFieldElementComponent, typeof LayoutEditorTableColumnElementComponent, typeof LayoutEditorWidgetElementComponent, typeof DashboardLayoutEditorSectionComponent, typeof DynamicLayoutEditorSectionComponent, typeof GridLayoutEditorSectionComponent, typeof MarkdownLayoutEditorSectionComponent, typeof TableLayoutEditorSectionComponent, typeof CustomDashboardPageComponent, typeof DashboardPageComponent, typeof LayoutEditorPageComponent, typeof ListPageComponent, typeof FormPageComponent, typeof DetailPageComponent, typeof DocumentsPageComponent, typeof TabbedPageComponent, typeof RosterPageComponent, typeof ExportPageComponent, typeof PageTitleComponent, typeof SectionTitleComponent, typeof DynamicBoardComponent, typeof DynamicBoardWidgetContentComponent, typeof DynamicTableComponent, typeof FieldGridComponent, typeof FilePreviewDialogComponent, typeof DeleteConfirmationDialogComponent, typeof SaveConfirmationDialogComponent, typeof SearchPanelComponent, typeof NavTreeComponent, typeof LoaderComponent, typeof DialogDetailsComponent, typeof DialogNestedDetailsComponent, typeof LinkAttributeDisplayComponent, typeof DashboardSectionComponent, typeof DynamicWidgetDisplayComponent, typeof DynamicChartComponent, typeof DashboardInfoCardComponent, typeof DashboardTableComponent, typeof DashboardCardComponent, typeof DashboardCardSearchMenuComponent, typeof DynamicDashboardComponent, typeof RerouteComponent, typeof SnackbarComponent, typeof ThumbnailDisplayComponent, typeof ContentTitleComponent, typeof MarkdownDetailsSectionComponent, typeof AccordionDetailsContainerComponent, typeof PlainDetailsContainerComponent, typeof DynamicDetailsContainerComponent, typeof DynamicDetailsSectionComponent, typeof DynamicFormContainerComponent, typeof PlainFormContainerComponent, typeof AccordionFormContainerComponent, typeof DynamicFormSectionComponent, typeof DynamicDashboardContainerComponent, typeof PlainDashboardContainerComponent, typeof AutocompleteInputComponent, typeof QrCodeDialogComponent, typeof DraggableTableComponent, typeof TooltipComponent, typeof DynamicCustomDashboardComponent, typeof DynamicCustomDashboardContainerComponent, typeof PlainCustomDashboardContainerComponent, typeof DynamicCustomDashboardSectionComponent], [typeof i1.CommonModule, typeof i119.RouterModule, typeof i120.HttpClientModule, typeof i121.LayoutModule, typeof i122.FlexLayoutModule, typeof i123.DragDropModule, typeof i124.BrowserModule, typeof i125.BrowserAnimationsModule, typeof i126.FormsModule, typeof i126.ReactiveFormsModule, typeof i127.GridstackModule, typeof i128.HighchartsChartModule, typeof i129.MarkdownModule, typeof i130.QrCodeModule, typeof i131.QuillModule, typeof i132.TranslateModule, typeof MaterialModule, typeof i134.ImageCropperComponent], [typeof MaterialModule, typeof DynamicPipe, typeof SecureImagePipe, typeof ClickStopPropagationDirective, typeof FieldGridItemDirective, typeof FileDropzoneDirective, typeof DynamicDetailsComponent, typeof BoardDetailsSectionComponent, typeof GridDetailsSectionComponent, typeof TableDetailsSectionComponent, typeof ReportDetailsSectionComponent, typeof RosterShiftListDetailsSectionComponent, typeof DynamicAttributeDisplayComponent, typeof ActionsAttributeDisplayComponent, typeof IconAttributeDisplayComponent, typeof ChipAttributeDisplayComponent, typeof FileAttributeDisplayComponent, typeof ImageAttributeDisplayComponent, typeof MarkdownAttributeDisplayComponent, typeof MultiselectDisplayComponent, typeof RichTextDisplayComponent, typeof ChartViewerDisplayComponent, typeof ReportViewerDisplayComponent, typeof DialogFormComponent, typeof DialogNestedFormComponent, typeof DynamicFormComponent, typeof BoardFormSectionComponent, typeof GridFormSectionComponent, typeof TableFormSectionComponent, typeof RosterShiftListFormSectionComponent, typeof DynamicFormFieldComponent, typeof ChipInputComponent, typeof DatepickerComponent, typeof DatetimepickerComponent, typeof ColorPickerInputComponent, typeof DropdownComponent, typeof FilepickerComponent, typeof ImagepickerComponent, typeof ImageCropperComponent, typeof NumberInputComponent, typeof PasswordInputComponent, typeof TextareaComponent, typeof TextInputComponent, typeof TimeInputComponent, typeof MarkdownInputComponent, typeof MultiselectInputComponent, typeof RichTextInputComponent, typeof ChartConfigInputComponent, typeof ReportConfigInputComponent, typeof AccordionLayoutEditorContainerComponent, typeof DynamicLayoutEditorContainerComponent, typeof PlainLayoutEditorContainerComponent, typeof DynamicLayoutEditorComponent, typeof DynamicLayoutEditorElementComponent, typeof LayoutEditorFieldElementComponent, typeof LayoutEditorTableColumnElementComponent, typeof LayoutEditorWidgetElementComponent, typeof DashboardLayoutEditorSectionComponent, typeof DynamicLayoutEditorSectionComponent, typeof GridLayoutEditorSectionComponent, typeof MarkdownLayoutEditorSectionComponent, typeof TableLayoutEditorSectionComponent, typeof CustomDashboardPageComponent, typeof DashboardPageComponent, typeof LayoutEditorPageComponent, typeof ListPageComponent, typeof FormPageComponent, typeof DetailPageComponent, typeof DocumentsPageComponent, typeof TabbedPageComponent, typeof RosterPageComponent, typeof ExportPageComponent, typeof PageTitleComponent, typeof SectionTitleComponent, typeof DynamicBoardComponent, typeof DynamicBoardWidgetContentComponent, typeof DynamicTableComponent, typeof FieldGridComponent, typeof FilePreviewDialogComponent, typeof DeleteConfirmationDialogComponent, typeof SaveConfirmationDialogComponent, typeof SearchPanelComponent, typeof NavTreeComponent, typeof LoaderComponent, typeof DialogDetailsComponent, typeof DialogNestedDetailsComponent, typeof LinkAttributeDisplayComponent, typeof DashboardSectionComponent, typeof DynamicWidgetDisplayComponent, typeof DynamicChartComponent, typeof DashboardInfoCardComponent, typeof DashboardTableComponent, typeof DashboardCardComponent, typeof DashboardCardSearchMenuComponent, typeof DynamicDashboardComponent, typeof RerouteComponent, typeof SnackbarComponent, typeof ThumbnailDisplayComponent, typeof ContentTitleComponent, typeof MarkdownDetailsSectionComponent, typeof AccordionDetailsContainerComponent, typeof PlainDetailsContainerComponent, typeof DynamicDetailsContainerComponent, typeof DynamicDetailsSectionComponent, typeof DynamicFormContainerComponent, typeof PlainFormContainerComponent, typeof AccordionFormContainerComponent, typeof DynamicFormSectionComponent, typeof DynamicDashboardContainerComponent, typeof PlainDashboardContainerComponent, typeof AutocompleteInputComponent, typeof DraggableTableComponent, typeof TooltipComponent, typeof DynamicCustomDashboardComponent, typeof DynamicCustomDashboardContainerComponent, typeof PlainCustomDashboardContainerComponent, typeof DynamicCustomDashboardSectionComponent]>;
2981
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MantleModule, [typeof DynamicPipe, typeof SecureImagePipe, typeof ClickStopPropagationDirective, typeof FieldGridItemDirective, typeof FileDropzoneDirective, typeof DynamicDetailsComponent, typeof BoardDetailsSectionComponent, typeof GridDetailsSectionComponent, typeof TableDetailsSectionComponent, typeof ReportDetailsSectionComponent, typeof RosterShiftListDetailsSectionComponent, typeof DynamicAttributeDisplayComponent, typeof ActionsAttributeDisplayComponent, typeof IconAttributeDisplayComponent, typeof ChipAttributeDisplayComponent, typeof FileAttributeDisplayComponent, typeof ImageAttributeDisplayComponent, typeof MarkdownAttributeDisplayComponent, typeof MultiselectDisplayComponent, typeof RichTextDisplayComponent, typeof ChartViewerDisplayComponent, typeof ReportViewerDisplayComponent, typeof MapDisplayComponent, typeof DialogFormComponent, typeof DialogNestedFormComponent, typeof DynamicFormComponent, typeof BoardFormSectionComponent, typeof GridFormSectionComponent, typeof TableFormSectionComponent, typeof RosterShiftListFormSectionComponent, typeof DynamicFormFieldComponent, typeof ChipInputComponent, typeof DatepickerComponent, typeof DatetimepickerComponent, typeof ColorPickerInputComponent, typeof DropdownComponent, typeof FilepickerComponent, typeof ImagepickerComponent, typeof ImageCropperComponent, typeof NumberInputComponent, typeof PasswordInputComponent, typeof TextareaComponent, typeof TextInputComponent, typeof TimeInputComponent, typeof MarkdownInputComponent, typeof MultiselectInputComponent, typeof RichTextInputComponent, typeof ChartConfigInputComponent, typeof ReportConfigInputComponent, typeof AccordionLayoutEditorContainerComponent, typeof DynamicLayoutEditorContainerComponent, typeof PlainLayoutEditorContainerComponent, typeof DynamicLayoutEditorComponent, typeof DynamicLayoutEditorElementComponent, typeof LayoutEditorFieldElementComponent, typeof LayoutEditorTableColumnElementComponent, typeof LayoutEditorWidgetElementComponent, typeof DashboardLayoutEditorSectionComponent, typeof DynamicLayoutEditorSectionComponent, typeof GridLayoutEditorSectionComponent, typeof MarkdownLayoutEditorSectionComponent, typeof TableLayoutEditorSectionComponent, typeof CustomDashboardPageComponent, typeof DashboardPageComponent, typeof LayoutEditorPageComponent, typeof ListPageComponent, typeof FormPageComponent, typeof DetailPageComponent, typeof DocumentsPageComponent, typeof TabbedPageComponent, typeof RosterPageComponent, typeof ExportPageComponent, typeof PageTitleComponent, typeof SectionTitleComponent, typeof DynamicBoardComponent, typeof DynamicBoardWidgetContentComponent, typeof DynamicTableComponent, typeof FieldGridComponent, typeof FilePreviewDialogComponent, typeof DeleteConfirmationDialogComponent, typeof SaveConfirmationDialogComponent, typeof SearchPanelComponent, typeof NavTreeComponent, typeof LoaderComponent, typeof DialogDetailsComponent, typeof DialogNestedDetailsComponent, typeof LinkAttributeDisplayComponent, typeof DashboardSectionComponent, typeof DynamicWidgetDisplayComponent, typeof DynamicChartComponent, typeof DashboardInfoCardComponent, typeof DashboardTableComponent, typeof DashboardCardComponent, typeof DashboardCardSearchMenuComponent, typeof DynamicDashboardComponent, typeof RerouteComponent, typeof SnackbarComponent, typeof ThumbnailDisplayComponent, typeof ContentTitleComponent, typeof MarkdownDetailsSectionComponent, typeof AccordionDetailsContainerComponent, typeof PlainDetailsContainerComponent, typeof DynamicDetailsContainerComponent, typeof DynamicDetailsSectionComponent, typeof DynamicFormContainerComponent, typeof PlainFormContainerComponent, typeof AccordionFormContainerComponent, typeof DynamicFormSectionComponent, typeof DynamicDashboardContainerComponent, typeof PlainDashboardContainerComponent, typeof AutocompleteInputComponent, typeof QrCodeDialogComponent, typeof DraggableTableComponent, typeof TooltipComponent, typeof DynamicCustomDashboardComponent, typeof DynamicCustomDashboardContainerComponent, typeof PlainCustomDashboardContainerComponent, typeof DynamicCustomDashboardSectionComponent], [typeof i1.CommonModule, typeof i120.RouterModule, typeof i121.HttpClientModule, typeof i122.LayoutModule, typeof i123.FlexLayoutModule, typeof i124.DragDropModule, typeof i125.BrowserModule, typeof i126.BrowserAnimationsModule, typeof i127.FormsModule, typeof i127.ReactiveFormsModule, typeof i128.GridstackModule, typeof i129.HighchartsChartModule, typeof i130.MarkdownModule, typeof i131.QrCodeModule, typeof i132.QuillModule, typeof i133.TranslateModule, typeof MaterialModule, typeof i135.GoogleMapsModule, typeof i136.ImageCropperComponent], [typeof MaterialModule, typeof DynamicPipe, typeof SecureImagePipe, typeof ClickStopPropagationDirective, typeof FieldGridItemDirective, typeof FileDropzoneDirective, typeof DynamicDetailsComponent, typeof BoardDetailsSectionComponent, typeof GridDetailsSectionComponent, typeof TableDetailsSectionComponent, typeof ReportDetailsSectionComponent, typeof RosterShiftListDetailsSectionComponent, typeof DynamicAttributeDisplayComponent, typeof ActionsAttributeDisplayComponent, typeof IconAttributeDisplayComponent, typeof ChipAttributeDisplayComponent, typeof FileAttributeDisplayComponent, typeof ImageAttributeDisplayComponent, typeof MarkdownAttributeDisplayComponent, typeof MultiselectDisplayComponent, typeof RichTextDisplayComponent, typeof ChartViewerDisplayComponent, typeof ReportViewerDisplayComponent, typeof MapDisplayComponent, typeof DialogFormComponent, typeof DialogNestedFormComponent, typeof DynamicFormComponent, typeof BoardFormSectionComponent, typeof GridFormSectionComponent, typeof TableFormSectionComponent, typeof RosterShiftListFormSectionComponent, typeof DynamicFormFieldComponent, typeof ChipInputComponent, typeof DatepickerComponent, typeof DatetimepickerComponent, typeof ColorPickerInputComponent, typeof DropdownComponent, typeof FilepickerComponent, typeof ImagepickerComponent, typeof ImageCropperComponent, typeof NumberInputComponent, typeof PasswordInputComponent, typeof TextareaComponent, typeof TextInputComponent, typeof TimeInputComponent, typeof MarkdownInputComponent, typeof MultiselectInputComponent, typeof RichTextInputComponent, typeof ChartConfigInputComponent, typeof ReportConfigInputComponent, typeof AccordionLayoutEditorContainerComponent, typeof DynamicLayoutEditorContainerComponent, typeof PlainLayoutEditorContainerComponent, typeof DynamicLayoutEditorComponent, typeof DynamicLayoutEditorElementComponent, typeof LayoutEditorFieldElementComponent, typeof LayoutEditorTableColumnElementComponent, typeof LayoutEditorWidgetElementComponent, typeof DashboardLayoutEditorSectionComponent, typeof DynamicLayoutEditorSectionComponent, typeof GridLayoutEditorSectionComponent, typeof MarkdownLayoutEditorSectionComponent, typeof TableLayoutEditorSectionComponent, typeof CustomDashboardPageComponent, typeof DashboardPageComponent, typeof LayoutEditorPageComponent, typeof ListPageComponent, typeof FormPageComponent, typeof DetailPageComponent, typeof DocumentsPageComponent, typeof TabbedPageComponent, typeof RosterPageComponent, typeof ExportPageComponent, typeof PageTitleComponent, typeof SectionTitleComponent, typeof DynamicBoardComponent, typeof DynamicBoardWidgetContentComponent, typeof DynamicTableComponent, typeof FieldGridComponent, typeof FilePreviewDialogComponent, typeof DeleteConfirmationDialogComponent, typeof SaveConfirmationDialogComponent, typeof SearchPanelComponent, typeof NavTreeComponent, typeof LoaderComponent, typeof DialogDetailsComponent, typeof DialogNestedDetailsComponent, typeof LinkAttributeDisplayComponent, typeof DashboardSectionComponent, typeof DynamicWidgetDisplayComponent, typeof DynamicChartComponent, typeof DashboardInfoCardComponent, typeof DashboardTableComponent, typeof DashboardCardComponent, typeof DashboardCardSearchMenuComponent, typeof DynamicDashboardComponent, typeof RerouteComponent, typeof SnackbarComponent, typeof ThumbnailDisplayComponent, typeof ContentTitleComponent, typeof MarkdownDetailsSectionComponent, typeof AccordionDetailsContainerComponent, typeof PlainDetailsContainerComponent, typeof DynamicDetailsContainerComponent, typeof DynamicDetailsSectionComponent, typeof DynamicFormContainerComponent, typeof PlainFormContainerComponent, typeof AccordionFormContainerComponent, typeof DynamicFormSectionComponent, typeof DynamicDashboardContainerComponent, typeof PlainDashboardContainerComponent, typeof AutocompleteInputComponent, typeof DraggableTableComponent, typeof TooltipComponent, typeof DynamicCustomDashboardComponent, typeof DynamicCustomDashboardContainerComponent, typeof PlainCustomDashboardContainerComponent, typeof DynamicCustomDashboardSectionComponent]>;
2953
2982
  static ɵinj: i0.ɵɵInjectorDeclaration<MantleModule>;
2954
2983
  }
2955
2984
 
@@ -3615,5 +3644,5 @@ declare class PasswordCheckGuard implements CanActivateChild {
3615
3644
 
3616
3645
  declare const ENVIRONMENT: InjectionToken<any>;
3617
3646
 
3618
- export { AccordionDetailsContainerComponent, AccordionFormContainerComponent, AccordionLayoutEditorContainerComponent, ActionsAttributeDisplayComponent, AnnouncementService, ArrayService, AutocompleteInputComponent, BoardDetailsSectionComponent, BoardFormSectionComponent, COLUMN_CHART, ChartConfigInputComponent, ChartService, ChartViewerDisplayComponent, ChipAttributeDisplayComponent, ChipInputComponent, ClickStopPropagationDirective, ColorPickerInputComponent, ConfirmationService, ContentTitleComponent, CurrentUserService, CustomDashboardPageComponent, DashboardCardComponent, DashboardCardSearchMenuComponent, DashboardInfoCardComponent, DashboardLayoutEditorSectionComponent, DashboardPageComponent, DashboardSectionComponent, DashboardTableComponent, DashboardTableDataSource, DataBroadcastService, DatepickerComponent, DatetimepickerComponent, DeleteConfirmationDialogComponent, DetailPageComponent, DialogDetailsComponent, DialogFormComponent, DialogNestedDetailsComponent, DialogNestedFormComponent, DocumentsPageComponent, DraggableTableComponent, DraggableTableDataSource, DropdownComponent, DynamicAttributeDisplayComponent, DynamicBoardComponent, DynamicBoardWidgetContentComponent, DynamicChartComponent, DynamicCustomDashboardComponent, DynamicCustomDashboardContainerComponent, DynamicCustomDashboardSectionComponent, DynamicDashboardComponent, DynamicDashboardContainerComponent, DynamicDetailsComponent, DynamicDetailsContainerComponent, DynamicDetailsSectionComponent, DynamicFormComponent, DynamicFormContainerComponent, DynamicFormField, DynamicFormFieldComponent, DynamicFormSectionComponent, DynamicFormService, DynamicLayoutEditorComponent, DynamicLayoutEditorContainerComponent, DynamicLayoutEditorElementComponent, DynamicLayoutEditorSectionComponent, DynamicPipe, DynamicTableComponent, DynamicTableDataSource, DynamicWidgetDisplayComponent, ENVIRONMENT, ExportPageComponent, FeatureConfigService, FeatureGuard, FieldGridComponent, FieldGridItemDirective, FileAttributeDisplayComponent, FileDropzoneDirective, FilePreviewDialogComponent, FilepickerComponent, FormPageComponent, GANTT_CHART, GridDetailsSectionComponent, GridFormSectionComponent, GridLayoutEditorSectionComponent, IconAttributeDisplayComponent, ImageAttributeDisplayComponent, ImageCropperComponent, ImagepickerComponent, LayoutEditorFieldElementComponent, LayoutEditorPageComponent, LayoutEditorTableColumnElementComponent, LayoutEditorWidgetElementComponent, LinkAttributeDisplayComponent, ListPageComponent, ListPageDataSource, LoaderComponent, LocaleService, MANTLE_LANG_EN, MANTLE_LANG_MS, MantleModule, MarkdownAttributeDisplayComponent, MarkdownDetailsSectionComponent, MarkdownInputComponent, MarkdownLayoutEditorSectionComponent, MaterialModule, MultiselectDisplayComponent, MultiselectInputComponent, NavTreeComponent, NumberInputComponent, ObjectService, PIE_CHART, PROGRESS_BAR_CHART, PageTitleComponent, PasswordCheckGuard, PasswordCheckService, PasswordInputComponent, PlainCustomDashboardContainerComponent, PlainDashboardContainerComponent, PlainDetailsContainerComponent, PlainFormContainerComponent, PlainLayoutEditorContainerComponent, QrCodeDialogComponent, ReportConfigInputComponent, ReportDetailsSectionComponent, ReportViewerDisplayComponent, RerouteComponent, RichTextDisplayComponent, RichTextInputComponent, RosterPageComponent, RosterShiftListDetailsSectionComponent, RosterShiftListFormSectionComponent, SPLINE_CHART, SaveConfirmationDialogComponent, ScreenSizeMap, ScreenSizeService, SearchPanelComponent, SectionTitleComponent, SecureImagePipe, SessionGuard, SnackbarComponent, TabbedPageComponent, TableDetailsSectionComponent, TableFormSectionComponent, TableLayoutEditorSectionComponent, TextInputComponent, TextareaComponent, ThumbnailDisplayComponent, TimeInputComponent, TooltipComponent, WebApiListRequest, WebApiService, WebsocketService };
3647
+ export { AccordionDetailsContainerComponent, AccordionFormContainerComponent, AccordionLayoutEditorContainerComponent, ActionsAttributeDisplayComponent, AnnouncementService, ArrayService, AutocompleteInputComponent, BoardDetailsSectionComponent, BoardFormSectionComponent, COLUMN_CHART, ChartConfigInputComponent, ChartService, ChartViewerDisplayComponent, ChipAttributeDisplayComponent, ChipInputComponent, ClickStopPropagationDirective, ColorPickerInputComponent, ConfirmationService, ContentTitleComponent, CurrentUserService, CustomDashboardPageComponent, DashboardCardComponent, DashboardCardSearchMenuComponent, DashboardInfoCardComponent, DashboardLayoutEditorSectionComponent, DashboardPageComponent, DashboardSectionComponent, DashboardTableComponent, DashboardTableDataSource, DataBroadcastService, DatepickerComponent, DatetimepickerComponent, DeleteConfirmationDialogComponent, DetailPageComponent, DialogDetailsComponent, DialogFormComponent, DialogNestedDetailsComponent, DialogNestedFormComponent, DocumentsPageComponent, DraggableTableComponent, DraggableTableDataSource, DropdownComponent, DynamicAttributeDisplayComponent, DynamicBoardComponent, DynamicBoardWidgetContentComponent, DynamicChartComponent, DynamicCustomDashboardComponent, DynamicCustomDashboardContainerComponent, DynamicCustomDashboardSectionComponent, DynamicDashboardComponent, DynamicDashboardContainerComponent, DynamicDetailsComponent, DynamicDetailsContainerComponent, DynamicDetailsSectionComponent, DynamicFormComponent, DynamicFormContainerComponent, DynamicFormField, DynamicFormFieldComponent, DynamicFormSectionComponent, DynamicFormService, DynamicLayoutEditorComponent, DynamicLayoutEditorContainerComponent, DynamicLayoutEditorElementComponent, DynamicLayoutEditorSectionComponent, DynamicPipe, DynamicTableComponent, DynamicTableDataSource, DynamicWidgetDisplayComponent, ENVIRONMENT, ExportPageComponent, FeatureConfigService, FeatureGuard, FieldGridComponent, FieldGridItemDirective, FileAttributeDisplayComponent, FileDropzoneDirective, FilePreviewDialogComponent, FilepickerComponent, FormPageComponent, GANTT_CHART, GridDetailsSectionComponent, GridFormSectionComponent, GridLayoutEditorSectionComponent, IconAttributeDisplayComponent, ImageAttributeDisplayComponent, ImageCropperComponent, ImagepickerComponent, LayoutEditorFieldElementComponent, LayoutEditorPageComponent, LayoutEditorTableColumnElementComponent, LayoutEditorWidgetElementComponent, LinkAttributeDisplayComponent, ListPageComponent, ListPageDataSource, LoaderComponent, LocaleService, MANTLE_LANG_EN, MANTLE_LANG_MS, MantleModule, MapDisplayComponent, MarkdownAttributeDisplayComponent, MarkdownDetailsSectionComponent, MarkdownInputComponent, MarkdownLayoutEditorSectionComponent, MaterialModule, MultiselectDisplayComponent, MultiselectInputComponent, NavTreeComponent, NumberInputComponent, ObjectService, PIE_CHART, PROGRESS_BAR_CHART, PageTitleComponent, PasswordCheckGuard, PasswordCheckService, PasswordInputComponent, PlainCustomDashboardContainerComponent, PlainDashboardContainerComponent, PlainDetailsContainerComponent, PlainFormContainerComponent, PlainLayoutEditorContainerComponent, QrCodeDialogComponent, ReportConfigInputComponent, ReportDetailsSectionComponent, ReportViewerDisplayComponent, RerouteComponent, RichTextDisplayComponent, RichTextInputComponent, RosterPageComponent, RosterShiftListDetailsSectionComponent, RosterShiftListFormSectionComponent, SPLINE_CHART, SaveConfirmationDialogComponent, ScreenSizeMap, ScreenSizeService, SearchPanelComponent, SectionTitleComponent, SecureImagePipe, SessionGuard, SnackbarComponent, TabbedPageComponent, TableDetailsSectionComponent, TableFormSectionComponent, TableLayoutEditorSectionComponent, TextInputComponent, TextareaComponent, ThumbnailDisplayComponent, TimeInputComponent, TooltipComponent, WebApiListRequest, WebApiService, WebsocketService };
3619
3648
  export type { AuthorisableFeatureService, BoardItem, BoardItemLayout, Chip, CustomDashboardPageService, DashboardCardSearchMenuContent, DashboardPageSection, DashboardPageService, DashboardTableColumn, DashboardWidgetButton, DashboardWidgetItemConfig, DashboardWidgetService, DeleteConfirmationDialogButton, DeleteConfirmationDialogParams, DetailPageButton, DetailPageExportOption, DetailPageService, DialogDetailParams, DialogFormParams, DialogNestedDetailsParams, DialogNestedFormParams, DynamicBoardWidget, DynamicDashboardContent, DynamicDashboardWidget, DynamicDetailsContent, DynamicFormContent, DynamicLayoutBoardSection, DynamicLayoutContainer, DynamicLayoutDashboardSection, DynamicLayoutEditorContainer, DynamicLayoutEditorContent, DynamicLayoutEditorDashboardWidget, DynamicLayoutEditorFormField, DynamicLayoutEditorMarkdownElement, DynamicLayoutEditorSection, DynamicLayoutEditorTableColumn, DynamicLayoutGridCellDimensions, DynamicLayoutGridDimensions, DynamicLayoutGridSection, DynamicLayoutMarkdownElement, DynamicLayoutMarkdownSection, DynamicLayoutReportSection, DynamicLayoutRosterShiftListSection, DynamicLayoutSection, DynamicLayoutTableSection, DynamicTableColumn, ExportPageService, FileAttachment, FlatTreeNode, FormPageButton, FormPageService, ImageCropperOptions, ImageCropperParams, LayoutEditorPageService, ListPageBulkExportOption, ListPageButton, ListPageColumn, ListPageExportOption, ListPageService, NavTabsService, NavigationNode, RerouteService, RosterPageService, RosterScheduleService, SaveConfirmationDialogParams, ScreenSizeMapEntries, TabbedPageTab, TableSectionConfig, WebApiCrudAdapter, WebApiDeleteResponse, WebApiDetailsResponse, WebApiFormResponse, WebApiListResponse, WebApiSaveResponse, WebsocketAdapter, WidgetExportOption };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codetectonics/mantle",
3
- "version": "2.0.6",
3
+ "version": "2.0.8",
4
4
  "dependencies": {
5
5
  "@angular/animations": "^20",
6
6
  "@angular/cdk": "^20",
@@ -9,6 +9,7 @@
9
9
  "@angular/core": "^20",
10
10
  "@angular/flex-layout": "15.0.0-beta.42",
11
11
  "@angular/forms": "^20",
12
+ "@angular/google-maps": "^20",
12
13
  "@angular/material": "^20",
13
14
  "@angular/material-moment-adapter": "^20",
14
15
  "@angular/platform-browser": "^20",
@@ -31,8 +32,8 @@
31
32
  "ngx-markdown": "^20",
32
33
  "ngx-quill": "^28.0.1",
33
34
  "quill": "^2.0.3",
34
- "quill-table-better": "^1.2.3",
35
35
  "quill-mention": "^6.1.1",
36
+ "quill-table-better": "^1.2.3",
36
37
  "rxjs": "^7.8.0",
37
38
  "svg2pdf.js": "^2.5.0",
38
39
  "tslib": "^2.2.0",