adb-shared 6.2.23 → 6.2.26
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/package.json
CHANGED
|
@@ -16,6 +16,7 @@ interface AdbMapConfig {
|
|
|
16
16
|
api: string;
|
|
17
17
|
artfaktaTaxonLists: string;
|
|
18
18
|
observationPage?: string;
|
|
19
|
+
dynamic?: boolean;
|
|
19
20
|
filters?: AdbMapFilterType[];
|
|
20
21
|
log?: boolean;
|
|
21
22
|
}
|
|
@@ -45,6 +46,7 @@ declare class AdbMapConfigService {
|
|
|
45
46
|
readonly taxaListsApi: string;
|
|
46
47
|
readonly filters: VisibleFilters;
|
|
47
48
|
readonly observationPage: string;
|
|
49
|
+
readonly dynamic: boolean;
|
|
48
50
|
constructor(config: AdbMapConfig);
|
|
49
51
|
private hasFilter;
|
|
50
52
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdbMapConfigService, never>;
|
|
@@ -73,6 +75,8 @@ declare class AdbObsMapComponent implements AfterViewInit, OnInit, OnDestroy {
|
|
|
73
75
|
ngAfterViewInit(): void;
|
|
74
76
|
private tryLoad;
|
|
75
77
|
ngOnInit(): void;
|
|
78
|
+
private attachUserListeners;
|
|
79
|
+
private onUserInputRoute;
|
|
76
80
|
private loadFeature;
|
|
77
81
|
private buildMap;
|
|
78
82
|
private getPolygonClassName;
|
package/types/adb-shared.d.ts
CHANGED
|
@@ -586,6 +586,8 @@ declare class AdbRichEditorComponent implements ControlValueAccessor, OnDestroy
|
|
|
586
586
|
hasTaxon: boolean;
|
|
587
587
|
hasReference: boolean;
|
|
588
588
|
rows: number;
|
|
589
|
+
label: string;
|
|
590
|
+
id: string;
|
|
589
591
|
constructor(el: ElementRef);
|
|
590
592
|
private getTextarea;
|
|
591
593
|
onDoubleClick(): void;
|
|
@@ -604,9 +606,10 @@ declare class AdbRichEditorComponent implements ControlValueAccessor, OnDestroy
|
|
|
604
606
|
setDisabledState?(isDisabled: boolean): void;
|
|
605
607
|
onTextChange(): void;
|
|
606
608
|
private updateValue;
|
|
609
|
+
private getId;
|
|
607
610
|
ngOnDestroy(): void;
|
|
608
611
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdbRichEditorComponent, never>;
|
|
609
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AdbRichEditorComponent, "adb-rich-editor", never, { "hasTaxon": { "alias": "hasTaxon"; "required": false; }; "hasReference": { "alias": "hasReference"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; }, {}, never, never, false, never>;
|
|
612
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdbRichEditorComponent, "adb-rich-editor", never, { "hasTaxon": { "alias": "hasTaxon"; "required": false; }; "hasReference": { "alias": "hasReference"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, never, false, never>;
|
|
610
613
|
}
|
|
611
614
|
|
|
612
615
|
interface RichTextPart {
|
|
@@ -628,7 +631,7 @@ declare class RichTextComponent {
|
|
|
628
631
|
declare class AdbRichEditorModule {
|
|
629
632
|
static forRoot(config: RichModuleConfig): ModuleWithProviders<AdbRichEditorModule>;
|
|
630
633
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdbRichEditorModule, never>;
|
|
631
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdbRichEditorModule, [typeof AdbRichEditorComponent, typeof RichTextComponent], [typeof i2.CommonModule, typeof i4$1.FormsModule], [typeof AdbRichEditorComponent, typeof RichTextComponent]>;
|
|
634
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdbRichEditorModule, [typeof AdbRichEditorComponent, typeof RichTextComponent], [typeof i2.CommonModule, typeof i4$1.FormsModule, typeof i4.TranslateModule], [typeof AdbRichEditorComponent, typeof RichTextComponent]>;
|
|
632
635
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdbRichEditorModule>;
|
|
633
636
|
}
|
|
634
637
|
|