@dereekb/dbx-web 9.24.20 → 9.24.22
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/calendar/esm2020/lib/calendar.store.mjs +2 -2
- package/calendar/fesm2015/dereekb-dbx-web-calendar.mjs +1 -1
- package/calendar/fesm2015/dereekb-dbx-web-calendar.mjs.map +1 -1
- package/calendar/fesm2020/dereekb-dbx-web-calendar.mjs +1 -1
- package/calendar/fesm2020/dereekb-dbx-web-calendar.mjs.map +1 -1
- package/calendar/package.json +2 -2
- package/esm2020/calendar/lib/calendar.store.mjs +2 -2
- package/esm2020/mapbox/lib/mapbox.layout.component.mjs +31 -15
- package/esm2020/mapbox/lib/mapbox.layout.drawer.component.mjs +2 -2
- package/esm2020/mapbox/lib/mapbox.store.mjs +7 -7
- package/fesm2015/dereekb-dbx-web-calendar.mjs +1 -1
- package/fesm2015/dereekb-dbx-web-calendar.mjs.map +1 -1
- package/fesm2015/dereekb-dbx-web-mapbox.mjs +37 -21
- package/fesm2015/dereekb-dbx-web-mapbox.mjs.map +1 -1
- package/fesm2020/dereekb-dbx-web-calendar.mjs +1 -1
- package/fesm2020/dereekb-dbx-web-calendar.mjs.map +1 -1
- package/fesm2020/dereekb-dbx-web-mapbox.mjs +37 -21
- package/fesm2020/dereekb-dbx-web-mapbox.mjs.map +1 -1
- package/lib/layout/style/_style.scss +13 -10
- package/lib/layout/text/_text.scss +3 -2
- package/mapbox/esm2020/lib/mapbox.layout.component.mjs +31 -15
- package/mapbox/esm2020/lib/mapbox.layout.drawer.component.mjs +2 -2
- package/mapbox/esm2020/lib/mapbox.store.mjs +7 -7
- package/mapbox/fesm2015/dereekb-dbx-web-mapbox.mjs +37 -21
- package/mapbox/fesm2015/dereekb-dbx-web-mapbox.mjs.map +1 -1
- package/mapbox/fesm2020/dereekb-dbx-web-mapbox.mjs +37 -21
- package/mapbox/fesm2020/dereekb-dbx-web-mapbox.mjs.map +1 -1
- package/mapbox/lib/mapbox.layout.component.d.ts +11 -4
- package/mapbox/lib/mapbox.layout.drawer.component.d.ts +1 -1
- package/mapbox/package.json +3 -3
- package/package.json +3 -3
- package/table/package.json +3 -3
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Injectable, Host, Optional, Inject, Component, ChangeDetectionStrategy, SkipSelf, Directive, Injector, ElementRef, ViewChild, Input, NgModule } from '@angular/core';
|
|
2
|
+
import { Injectable, Host, Optional, Inject, Component, ChangeDetectionStrategy, SkipSelf, Directive, Injector, EventEmitter, ElementRef, Output, ViewChild, Input, NgModule } from '@angular/core';
|
|
3
3
|
import * as i2 from '@dereekb/dbx-core';
|
|
4
4
|
import { safeMarkForCheck, safeDetectChanges, AbstractSubscriptionDirective, DbxInjectionComponentModule } from '@dereekb/dbx-core';
|
|
5
5
|
import { asObservable, cleanup, filterMaybe, onTrueToFalse, SubscriptionObject, distinctUntilMapHasDifferentKeys } from '@dereekb/rxjs';
|
|
@@ -437,10 +437,10 @@ class DbxMapboxMapStore extends ComponentStore {
|
|
|
437
437
|
}
|
|
438
438
|
}), shareReplay(1));
|
|
439
439
|
this.whenInitialized$ = this.isInitialized$.pipe(filter((x) => true), shareReplay(1));
|
|
440
|
-
this.isRendering$ = this.whenInitialized$.pipe(switchMap(() => this.lifecycleState$.pipe(map((x) => x === 'render'), distinctUntilChanged(), shareReplay())));
|
|
441
|
-
this.isMoving$ = this.whenInitialized$.pipe(switchMap(() => this.moveState$.pipe(map((x) => x === 'moving'), distinctUntilChanged(), shareReplay())));
|
|
442
|
-
this.isZooming$ = this.whenInitialized$.pipe(switchMap(() => this.zoomState$.pipe(map((x) => x === 'zooming'), distinctUntilChanged(), shareReplay())));
|
|
443
|
-
this.isRotating$ = this.whenInitialized$.pipe(switchMap(() => this.rotateState$.pipe(map((x) => x === 'rotating'), distinctUntilChanged(), shareReplay())));
|
|
440
|
+
this.isRendering$ = this.whenInitialized$.pipe(switchMap(() => this.lifecycleState$.pipe(map((x) => x === 'render'), distinctUntilChanged(), shareReplay(1))));
|
|
441
|
+
this.isMoving$ = this.whenInitialized$.pipe(switchMap(() => this.moveState$.pipe(map((x) => x === 'moving'), distinctUntilChanged(), shareReplay(1))));
|
|
442
|
+
this.isZooming$ = this.whenInitialized$.pipe(switchMap(() => this.zoomState$.pipe(map((x) => x === 'zooming'), distinctUntilChanged(), shareReplay(1))));
|
|
443
|
+
this.isRotating$ = this.whenInitialized$.pipe(switchMap(() => this.rotateState$.pipe(map((x) => x === 'rotating'), distinctUntilChanged(), shareReplay(1))));
|
|
444
444
|
this._movingTimer = this.movingTimer();
|
|
445
445
|
this._renderingTimer = this.lifecycleRenderTimer();
|
|
446
446
|
this.centerNow$ = this.whenInitialized$.pipe(switchMap(() => this.mapInstance$.pipe(switchMap((x) => this._movingTimer.pipe(map(() => this.latLngPoint(x.getCenter())))), shareReplay(1))), shareReplay(1));
|
|
@@ -568,7 +568,7 @@ class DbxMapboxMapStore extends ComponentStore {
|
|
|
568
568
|
else {
|
|
569
569
|
return of(0);
|
|
570
570
|
}
|
|
571
|
-
}), shareReplay());
|
|
571
|
+
}), shareReplay(1));
|
|
572
572
|
}
|
|
573
573
|
lifecycleRenderTimer(period = this.timerRefreshPeriod) {
|
|
574
574
|
return this.lifecycleState$.pipe(switchMap((x) => {
|
|
@@ -578,7 +578,7 @@ class DbxMapboxMapStore extends ComponentStore {
|
|
|
578
578
|
else {
|
|
579
579
|
return of(0);
|
|
580
580
|
}
|
|
581
|
-
}), shareReplay());
|
|
581
|
+
}), shareReplay(1));
|
|
582
582
|
}
|
|
583
583
|
atNextIdle() {
|
|
584
584
|
return this.moveState$.pipe(map((x) => x === 'idle'), first());
|
|
@@ -828,7 +828,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
828
828
|
} });
|
|
829
829
|
|
|
830
830
|
/**
|
|
831
|
-
* Content drawer that connects with DbxMapboxMapStore to
|
|
831
|
+
* Content drawer that connects with DbxMapboxMapStore to show the content.
|
|
832
832
|
*/
|
|
833
833
|
class DbxMapboxLayoutDrawerComponent {
|
|
834
834
|
constructor(dbxMapboxMapStore) {
|
|
@@ -856,33 +856,40 @@ class DbxMapboxLayoutComponent extends SubscriptionObject {
|
|
|
856
856
|
constructor(dbxMapboxMapStore) {
|
|
857
857
|
super();
|
|
858
858
|
this.dbxMapboxMapStore = dbxMapboxMapStore;
|
|
859
|
+
this.openedChange = new EventEmitter();
|
|
859
860
|
this._resized = new Subject();
|
|
860
861
|
this._updateMargins = new Subject();
|
|
861
862
|
this._forceHasContent = new BehaviorSubject(false);
|
|
862
863
|
this._mode = new BehaviorSubject('side');
|
|
863
864
|
this._side = new BehaviorSubject('right');
|
|
864
|
-
this.
|
|
865
|
+
this._isOpen = new BehaviorSubject(true);
|
|
865
866
|
this._color = new BehaviorSubject(undefined);
|
|
866
867
|
this._toggleSub = new SubscriptionObject();
|
|
867
868
|
this.resized$ = this._resized.asObservable();
|
|
868
869
|
this.side$ = this._side.pipe(distinctUntilChanged(), shareReplay(1));
|
|
869
870
|
this.mode$ = this._mode.pipe(distinctUntilChanged(), shareReplay(1));
|
|
870
871
|
this.hasContent$ = combineLatest([this._forceHasContent, this.dbxMapboxMapStore.hasContent$]).pipe(map(([hasContent, forceHasContent]) => hasContent || forceHasContent), distinctUntilChanged(), shareReplay(1));
|
|
871
|
-
this.
|
|
872
|
+
this.isOpen$ = this._isOpen.asObservable();
|
|
873
|
+
this.isOpenAndHasContent$ = combineLatest([this.hasContent$, this._isOpen]).pipe(map(([hasContent, open]) => hasContent && open), distinctUntilChanged(), shareReplay(1));
|
|
872
874
|
this.position$ = this.side$.pipe(map((x) => (x === 'right' ? 'end' : 'start')), distinctUntilChanged(), shareReplay(1));
|
|
873
|
-
this.drawerClasses$ = combineLatest([this.side$, this.dbxMapboxMapStore.hasContent$, this.
|
|
875
|
+
this.drawerClasses$ = combineLatest([this.side$, this.dbxMapboxMapStore.hasContent$, this.isOpenAndHasContent$]).pipe(
|
|
874
876
|
//
|
|
875
877
|
map(([side, hasContent, open]) => (hasContent ? 'has-drawer-content' : 'no-drawer-content') + ` ${side}-drawer ` + (open ? 'open-drawer' : '')), distinctUntilChanged(), shareReplay(1));
|
|
876
878
|
this.drawerButtonClasses$ = combineLatest([this.dbxMapboxMapStore.hasContent$, this._color]).pipe(
|
|
877
879
|
//
|
|
878
880
|
map(([hasContent, color]) => dbxColorBackground(color)), distinctUntilChanged(), shareReplay(1));
|
|
879
|
-
this.buttonIcon$ = combineLatest([this.side$, this.
|
|
881
|
+
this.buttonIcon$ = combineLatest([this.side$, this.isOpenAndHasContent$]).pipe(map(([side, opened]) => {
|
|
880
882
|
let icons = ['chevron_right', 'chevron_left'];
|
|
881
883
|
if (side === 'left') {
|
|
882
884
|
icons = icons.reverse();
|
|
883
885
|
}
|
|
884
886
|
return opened ? icons[0] : icons[1];
|
|
885
887
|
}));
|
|
888
|
+
// MARK: Compat
|
|
889
|
+
/**
|
|
890
|
+
* @deprecated use isOpenAndHasContent$ instead.
|
|
891
|
+
*/
|
|
892
|
+
this.opened$ = this.isOpenAndHasContent$;
|
|
886
893
|
}
|
|
887
894
|
ngOnInit() {
|
|
888
895
|
this.subscription = this.side$.pipe(switchMap(() => this._resized.pipe(throttleTime(100, undefined, { leading: true, trailing: true }), map(() => 'r'), startWith('s')))).subscribe((reason) => {
|
|
@@ -901,7 +908,7 @@ class DbxMapboxLayoutComponent extends SubscriptionObject {
|
|
|
901
908
|
.pipe(switchMap((mode) => {
|
|
902
909
|
let obs;
|
|
903
910
|
if (mode === 'push') {
|
|
904
|
-
obs = combineLatest([this.
|
|
911
|
+
obs = combineLatest([this.isOpenAndHasContent$.pipe(distinctUntilChanged()), this._updateMargins]).pipe(tap(([opened]) => {
|
|
905
912
|
let { right } = this.drawerContainer._contentMargins;
|
|
906
913
|
this.drawerContainer.updateContentMargins();
|
|
907
914
|
setTimeout(() => {
|
|
@@ -929,7 +936,7 @@ class DbxMapboxLayoutComponent extends SubscriptionObject {
|
|
|
929
936
|
}));
|
|
930
937
|
}
|
|
931
938
|
else {
|
|
932
|
-
obs = combineLatest([this.
|
|
939
|
+
obs = combineLatest([this.isOpenAndHasContent$.pipe(distinctUntilChanged()), this._updateMargins]).pipe(switchMap((_) => this.dbxMapboxMapStore.mapInstance$), tap((x) => {
|
|
933
940
|
this.drawerContainer.updateContentMargins();
|
|
934
941
|
x.triggerRepaint();
|
|
935
942
|
}));
|
|
@@ -939,19 +946,20 @@ class DbxMapboxLayoutComponent extends SubscriptionObject {
|
|
|
939
946
|
.subscribe();
|
|
940
947
|
}
|
|
941
948
|
ngOnDestroy() {
|
|
949
|
+
this.openedChange.complete();
|
|
942
950
|
this._resized.complete();
|
|
943
951
|
this._updateMargins.complete();
|
|
944
952
|
this._side.complete();
|
|
945
|
-
this.
|
|
953
|
+
this._isOpen.complete();
|
|
946
954
|
this._color.complete();
|
|
947
955
|
this._toggleSub.destroy();
|
|
948
956
|
this._forceHasContent.complete();
|
|
949
957
|
}
|
|
950
958
|
toggleDrawer(open) {
|
|
951
959
|
if (open == null) {
|
|
952
|
-
open = !this.
|
|
960
|
+
open = !this._isOpen.value;
|
|
953
961
|
}
|
|
954
|
-
this.
|
|
962
|
+
this._isOpen.next(open);
|
|
955
963
|
}
|
|
956
964
|
set side(side) {
|
|
957
965
|
if (side != null) {
|
|
@@ -965,7 +973,7 @@ class DbxMapboxLayoutComponent extends SubscriptionObject {
|
|
|
965
973
|
}
|
|
966
974
|
set opened(opened) {
|
|
967
975
|
if (opened != null) {
|
|
968
|
-
this.
|
|
976
|
+
this._isOpen.next(opened);
|
|
969
977
|
}
|
|
970
978
|
}
|
|
971
979
|
set hasContent(hasContent) {
|
|
@@ -979,13 +987,21 @@ class DbxMapboxLayoutComponent extends SubscriptionObject {
|
|
|
979
987
|
onResized(event) {
|
|
980
988
|
this._resized.next(event);
|
|
981
989
|
}
|
|
990
|
+
onOpened(opened) {
|
|
991
|
+
this.openedChange.next(opened);
|
|
992
|
+
if (this._isOpen.value !== opened) {
|
|
993
|
+
this.openedChange.next(opened);
|
|
994
|
+
}
|
|
995
|
+
}
|
|
982
996
|
}
|
|
983
997
|
DbxMapboxLayoutComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxMapboxLayoutComponent, deps: [{ token: DbxMapboxMapStore }], target: i0.ɵɵFactoryTarget.Component });
|
|
984
|
-
DbxMapboxLayoutComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxMapboxLayoutComponent, selector: "dbx-mapbox-layout", inputs: { side: "side", mode: "mode", opened: "opened", hasContent: "hasContent", drawerColor: "drawerColor" }, viewQueries: [{ propertyName: "containerElement", first: true, predicate: MatDrawerContainer, descendants: true, read: ElementRef }, { propertyName: "drawerContainer", first: true, predicate: MatDrawerContainer, descendants: true }, { propertyName: "content", first: true, predicate: ["content"], descendants: true, read: ElementRef, static: true }], usesInheritance: true, ngImport: i0, template: "<mat-drawer-container #containerElement class=\"dbx-mapbox-layout-container\" [ngClass]=\"(drawerClasses$ | async) || ''\" [hasBackdrop]=\"false\">\n <mat-drawer class=\"dbx-mapbox-layout-drawer\" #drawer [opened]=\"
|
|
998
|
+
DbxMapboxLayoutComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxMapboxLayoutComponent, selector: "dbx-mapbox-layout", inputs: { side: "side", mode: "mode", opened: "opened", hasContent: "hasContent", drawerColor: "drawerColor" }, outputs: { openedChange: "openedChange" }, viewQueries: [{ propertyName: "containerElement", first: true, predicate: MatDrawerContainer, descendants: true, read: ElementRef }, { propertyName: "drawerContainer", first: true, predicate: MatDrawerContainer, descendants: true }, { propertyName: "content", first: true, predicate: ["content"], descendants: true, read: ElementRef, static: true }], usesInheritance: true, ngImport: i0, template: "<mat-drawer-container #containerElement class=\"dbx-mapbox-layout-container\" [ngClass]=\"(drawerClasses$ | async) || ''\" [hasBackdrop]=\"false\">\n <mat-drawer class=\"dbx-mapbox-layout-drawer\" #drawer (openedChange)=\"onOpened($event)\" [opened]=\"isOpenAndHasContent$ | async\" [mode]=\"(mode$ | async) || 'side'\" [position]=\"(position$ | async) || 'end'\">\n <div class=\"dbx-mapbox-layout-drawer-content\" [ngClass]=\"(drawerButtonClasses$ | async) || ''\">\n <ng-content select=\"[drawer]\"></ng-content>\n <dbx-mapbox-layout-drawer></dbx-mapbox-layout-drawer>\n </div>\n </mat-drawer>\n <mat-drawer-content #content class=\"dbx-mapbox-layout-content\" (resized)=\"onResized($event)\">\n <button mat-icon-button (click)=\"toggleDrawer()\" class=\"dbx-mapbox-layout-drawer-button\" [ngClass]=\"(drawerButtonClasses$ | async) || ''\">\n <mat-icon>{{ buttonIcon$ | async }}</mat-icon>\n </button>\n <ng-content></ng-content>\n </mat-drawer-content>\n</mat-drawer-container>\n", styles: [".dbx-mapbox-layout-container{height:100%;max-width:100%}.dbx-mapbox-layout-container .mat-drawer-container{height:100%}.dbx-mapbox-layout-container .dbx-mapbox-layout-drawer{max-width:calc(100% - var(--dbx-mapbox-min-width-var, 60px))}.dbx-mapbox-layout-container .dbx-mapbox-layout-drawer-content{height:100%;width:100%;overflow:hidden}.dbx-mapbox-layout-content>.dbx-mapbox-layout-drawer-button{position:absolute;z-index:2;top:40%;border:none;display:flex;overflow:hidden}.left-drawer .dbx-mapbox-layout-content>.dbx-mapbox-layout-drawer-button{left:0;border-radius:0 20px 20px 0}.right-drawer .dbx-mapbox-layout-content>.dbx-mapbox-layout-drawer-button{right:0;border-radius:20px 0 0 20px}.has-drawer-content .dbx-mapbox-layout-content>.dbx-mapbox-layout-drawer-button{width:35px}.has-drawer-content.open-drawer .dbx-mapbox-layout-content>.dbx-mapbox-layout-drawer-button{width:35px}.no-drawer-content .dbx-mapbox-layout-content>.dbx-mapbox-layout-drawer-button{width:0px}.dbx-mapbox-layout-content>.dbx-mapbox-layout-drawer-button mat-icon{padding-left:8px}\n"], dependencies: [{ kind: "directive", type: i2$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: i3.MatDrawer, selector: "mat-drawer", inputs: ["position", "mode", "disableClose", "autoFocus", "opened"], outputs: ["openedChange", "opened", "openedStart", "closed", "closedStart", "positionChanged"], exportAs: ["matDrawer"] }, { kind: "component", type: i3.MatDrawerContainer, selector: "mat-drawer-container", inputs: ["autosize", "hasBackdrop"], outputs: ["backdropClick"], exportAs: ["matDrawerContainer"] }, { kind: "component", type: i3.MatDrawerContent, selector: "mat-drawer-content" }, { kind: "component", type: i4.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "component", type: i5.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: i6.ResizedDirective, selector: "[resized]", outputs: ["resized"] }, { kind: "component", type: DbxMapboxLayoutDrawerComponent, selector: "dbx-mapbox-layout-drawer" }, { kind: "pipe", type: i2$1.AsyncPipe, name: "async" }] });
|
|
985
999
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxMapboxLayoutComponent, decorators: [{
|
|
986
1000
|
type: Component,
|
|
987
|
-
args: [{ selector: 'dbx-mapbox-layout', template: "<mat-drawer-container #containerElement class=\"dbx-mapbox-layout-container\" [ngClass]=\"(drawerClasses$ | async) || ''\" [hasBackdrop]=\"false\">\n <mat-drawer class=\"dbx-mapbox-layout-drawer\" #drawer [opened]=\"
|
|
988
|
-
}], ctorParameters: function () { return [{ type: DbxMapboxMapStore }]; }, propDecorators: {
|
|
1001
|
+
args: [{ selector: 'dbx-mapbox-layout', template: "<mat-drawer-container #containerElement class=\"dbx-mapbox-layout-container\" [ngClass]=\"(drawerClasses$ | async) || ''\" [hasBackdrop]=\"false\">\n <mat-drawer class=\"dbx-mapbox-layout-drawer\" #drawer (openedChange)=\"onOpened($event)\" [opened]=\"isOpenAndHasContent$ | async\" [mode]=\"(mode$ | async) || 'side'\" [position]=\"(position$ | async) || 'end'\">\n <div class=\"dbx-mapbox-layout-drawer-content\" [ngClass]=\"(drawerButtonClasses$ | async) || ''\">\n <ng-content select=\"[drawer]\"></ng-content>\n <dbx-mapbox-layout-drawer></dbx-mapbox-layout-drawer>\n </div>\n </mat-drawer>\n <mat-drawer-content #content class=\"dbx-mapbox-layout-content\" (resized)=\"onResized($event)\">\n <button mat-icon-button (click)=\"toggleDrawer()\" class=\"dbx-mapbox-layout-drawer-button\" [ngClass]=\"(drawerButtonClasses$ | async) || ''\">\n <mat-icon>{{ buttonIcon$ | async }}</mat-icon>\n </button>\n <ng-content></ng-content>\n </mat-drawer-content>\n</mat-drawer-container>\n", styles: [".dbx-mapbox-layout-container{height:100%;max-width:100%}.dbx-mapbox-layout-container .mat-drawer-container{height:100%}.dbx-mapbox-layout-container .dbx-mapbox-layout-drawer{max-width:calc(100% - var(--dbx-mapbox-min-width-var, 60px))}.dbx-mapbox-layout-container .dbx-mapbox-layout-drawer-content{height:100%;width:100%;overflow:hidden}.dbx-mapbox-layout-content>.dbx-mapbox-layout-drawer-button{position:absolute;z-index:2;top:40%;border:none;display:flex;overflow:hidden}.left-drawer .dbx-mapbox-layout-content>.dbx-mapbox-layout-drawer-button{left:0;border-radius:0 20px 20px 0}.right-drawer .dbx-mapbox-layout-content>.dbx-mapbox-layout-drawer-button{right:0;border-radius:20px 0 0 20px}.has-drawer-content .dbx-mapbox-layout-content>.dbx-mapbox-layout-drawer-button{width:35px}.has-drawer-content.open-drawer .dbx-mapbox-layout-content>.dbx-mapbox-layout-drawer-button{width:35px}.no-drawer-content .dbx-mapbox-layout-content>.dbx-mapbox-layout-drawer-button{width:0px}.dbx-mapbox-layout-content>.dbx-mapbox-layout-drawer-button mat-icon{padding-left:8px}\n"] }]
|
|
1002
|
+
}], ctorParameters: function () { return [{ type: DbxMapboxMapStore }]; }, propDecorators: { openedChange: [{
|
|
1003
|
+
type: Output
|
|
1004
|
+
}], containerElement: [{
|
|
989
1005
|
type: ViewChild,
|
|
990
1006
|
args: [MatDrawerContainer, { read: ElementRef }]
|
|
991
1007
|
}], drawerContainer: [{
|