@dereekb/dbx-web 13.0.1 → 13.0.4
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/fesm2022/dereekb-dbx-web-mapbox.mjs +9 -11
- package/fesm2022/dereekb-dbx-web-mapbox.mjs.map +1 -1
- package/fesm2022/dereekb-dbx-web.mjs +171 -44
- package/fesm2022/dereekb-dbx-web.mjs.map +1 -1
- package/lib/button/_button.scss +4 -4
- package/lib/layout/text/_text.scss +4 -0
- package/lib/router/layout/anchorlist/_anchorlist.scss +7 -6
- package/package.json +7 -7
- package/types/dereekb-dbx-web.d.ts +129 -11
|
@@ -8,7 +8,7 @@ import MapboxGl from 'mapbox-gl';
|
|
|
8
8
|
import { bounds } from '@placemarkio/geo-viewport';
|
|
9
9
|
import { DbxInjectionArrayComponent, DbxInjectionComponent, cleanSubscription, clean } from '@dereekb/dbx-core';
|
|
10
10
|
import { toSignal, toObservable } from '@angular/core/rxjs-interop';
|
|
11
|
-
import { MapService, MapComponent, MarkerComponent, provideMapboxGL } from 'ngx-mapbox-gl';
|
|
11
|
+
import { MapService, MapComponent, MAP_COMPONENT_INITIALIZATION_OPTIONS, MarkerComponent, provideMapboxGL } from 'ngx-mapbox-gl';
|
|
12
12
|
import { DbxResizedDirective, DbxColorDirective, disableRightClickInCdkBackdrop, DbxAnchorComponent } from '@dereekb/dbx-web';
|
|
13
13
|
import { MatDrawerContainer, MatDrawer, MatDrawerContent } from '@angular/material/sidenav';
|
|
14
14
|
import { NgClass, NgStyle } from '@angular/common';
|
|
@@ -794,12 +794,11 @@ class DbxMapboxMapDirective {
|
|
|
794
794
|
}
|
|
795
795
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: DbxMapboxMapDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
796
796
|
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.0", type: DbxMapboxMapDirective, isStandalone: true, selector: "[dbxMapboxMap]", providers: [
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
797
|
+
{
|
|
798
|
+
provide: MAP_COMPONENT_INITIALIZATION_OPTIONS,
|
|
799
|
+
useFactory: (dbxMapboxService) => dbxMapboxService.initializationOptions(),
|
|
800
|
+
deps: [DbxMapboxService]
|
|
801
801
|
}
|
|
802
|
-
*/
|
|
803
802
|
], ngImport: i0 });
|
|
804
803
|
}
|
|
805
804
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: DbxMapboxMapDirective, decorators: [{
|
|
@@ -807,12 +806,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImpor
|
|
|
807
806
|
args: [{
|
|
808
807
|
selector: '[dbxMapboxMap]',
|
|
809
808
|
providers: [
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
809
|
+
{
|
|
810
|
+
provide: MAP_COMPONENT_INITIALIZATION_OPTIONS,
|
|
811
|
+
useFactory: (dbxMapboxService) => dbxMapboxService.initializationOptions(),
|
|
812
|
+
deps: [DbxMapboxService]
|
|
814
813
|
}
|
|
815
|
-
*/
|
|
816
814
|
],
|
|
817
815
|
standalone: true
|
|
818
816
|
}]
|