@dereekb/dbx-web 9.23.18 → 9.23.19
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/package.json +2 -2
- package/esm2020/lib/layout/text/address.component.mjs +6 -5
- package/esm2020/lib/router/layout/anchor/anchor.component.mjs +15 -3
- package/esm2020/mapbox/lib/index.mjs +4 -1
- package/esm2020/mapbox/lib/mapbox.injection.component.mjs +32 -0
- package/esm2020/mapbox/lib/mapbox.injection.store.mjs +39 -0
- package/esm2020/mapbox/lib/mapbox.injection.store.provide.mjs +52 -0
- package/esm2020/mapbox/lib/mapbox.marker.component.mjs +5 -5
- package/esm2020/mapbox/lib/mapbox.marker.mjs +1 -1
- package/esm2020/mapbox/lib/mapbox.module.mjs +5 -1
- package/fesm2015/dereekb-dbx-web-mapbox.mjs +121 -8
- package/fesm2015/dereekb-dbx-web-mapbox.mjs.map +1 -1
- package/fesm2015/dereekb-dbx-web.mjs +20 -5
- package/fesm2015/dereekb-dbx-web.mjs.map +1 -1
- package/fesm2020/dereekb-dbx-web-mapbox.mjs +117 -7
- package/fesm2020/dereekb-dbx-web-mapbox.mjs.map +1 -1
- package/fesm2020/dereekb-dbx-web.mjs +18 -5
- package/fesm2020/dereekb-dbx-web.mjs.map +1 -1
- package/lib/router/layout/anchor/anchor.component.d.ts +2 -0
- package/mapbox/esm2020/lib/index.mjs +4 -1
- package/mapbox/esm2020/lib/mapbox.injection.component.mjs +32 -0
- package/mapbox/esm2020/lib/mapbox.injection.store.mjs +39 -0
- package/mapbox/esm2020/lib/mapbox.injection.store.provide.mjs +52 -0
- package/mapbox/esm2020/lib/mapbox.marker.component.mjs +5 -5
- package/mapbox/esm2020/lib/mapbox.marker.mjs +1 -1
- package/mapbox/esm2020/lib/mapbox.module.mjs +5 -1
- package/mapbox/fesm2015/dereekb-dbx-web-mapbox.mjs +121 -8
- package/mapbox/fesm2015/dereekb-dbx-web-mapbox.mjs.map +1 -1
- package/mapbox/fesm2020/dereekb-dbx-web-mapbox.mjs +117 -7
- package/mapbox/fesm2020/dereekb-dbx-web-mapbox.mjs.map +1 -1
- package/mapbox/lib/index.d.ts +3 -0
- package/mapbox/lib/mapbox.injection.component.d.ts +16 -0
- package/mapbox/lib/mapbox.injection.store.d.ts +45 -0
- package/mapbox/lib/mapbox.injection.store.provide.d.ts +24 -0
- package/mapbox/lib/mapbox.marker.component.d.ts +3 -2
- package/mapbox/lib/mapbox.marker.d.ts +3 -2
- package/mapbox/lib/mapbox.module.d.ts +14 -13
- package/mapbox/package.json +3 -3
- package/package.json +3 -3
- package/table/package.json +3 -3
|
@@ -2316,9 +2316,15 @@ class DbxAnchorComponent extends AbstractDbxAnchorDirective {
|
|
|
2316
2316
|
clickAnchor(event) {
|
|
2317
2317
|
this.anchor?.onClick?.(event);
|
|
2318
2318
|
}
|
|
2319
|
+
onMouseEnter(event) {
|
|
2320
|
+
this.anchor?.onMouse?.('enter', event);
|
|
2321
|
+
}
|
|
2322
|
+
onMouseLeave(event) {
|
|
2323
|
+
this.anchor?.onMouse?.('leave', event);
|
|
2324
|
+
}
|
|
2319
2325
|
}
|
|
2320
2326
|
DbxAnchorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxAnchorComponent, deps: [{ token: DbxRouterWebProviderConfig }], target: i0.ɵɵFactoryTarget.Component });
|
|
2321
|
-
DbxAnchorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxAnchorComponent, selector: "dbx-anchor, [dbx-anchor]", inputs: { block: "block" }, host: { attributes: { "dbx-anchor-block": "block" }, classAttribute: "d-inline dbx-anchor" }, viewQueries: [{ propertyName: "templateRef", first: true, predicate: ["content"], descendants: true, read: TemplateRef }], usesInheritance: true, ngImport: i0, template: "<ng-container [ngSwitch]=\"type$ | async\">\n <!-- Plain -->\n <ng-container *ngSwitchCase=\"0\">\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </ng-container>\n <!-- Click -->\n <a class=\"dbx-anchor-a dbx-anchor-click\" [ngClass]=\"(selectedClass$ | async) || ''\" (click)=\"clickAnchor()\" *ngSwitchCase=\"1\">\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </a>\n <!-- Router -->\n <dbx-injection [config]=\"srefAnchorConfig\" *ngSwitchCase=\"2\">\n <!-- Injected in child. -->\n </dbx-injection>\n <!-- Href -->\n <a class=\"dbx-anchor-a dbx-anchor-href\" [href]=\"url$ | async\" [attr.target]=\"target$ | async\" *ngSwitchCase=\"3\">\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </a>\n <!-- Disabled or None -->\n <a class=\"dbx-anchor-a dbx-anchor-disabled\" *ngSwitchDefault>\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </a>\n</ng-container>\n<!-- Template content -->\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i1.NgSwitchDefault, selector: "[ngSwitchDefault]" }, { kind: "component", type: i1$2.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }] });
|
|
2327
|
+
DbxAnchorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxAnchorComponent, selector: "dbx-anchor, [dbx-anchor]", inputs: { block: "block" }, host: { attributes: { "dbx-anchor-block": "block" }, listeners: { "mouseenter": "onMouseEnter()", "mouseleave": "onMouseLeave()" }, classAttribute: "d-inline dbx-anchor" }, viewQueries: [{ propertyName: "templateRef", first: true, predicate: ["content"], descendants: true, read: TemplateRef }], usesInheritance: true, ngImport: i0, template: "<ng-container [ngSwitch]=\"type$ | async\">\n <!-- Plain -->\n <ng-container *ngSwitchCase=\"0\">\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </ng-container>\n <!-- Click -->\n <a class=\"dbx-anchor-a dbx-anchor-click\" [ngClass]=\"(selectedClass$ | async) || ''\" (click)=\"clickAnchor()\" *ngSwitchCase=\"1\">\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </a>\n <!-- Router -->\n <dbx-injection [config]=\"srefAnchorConfig\" *ngSwitchCase=\"2\">\n <!-- Injected in child. -->\n </dbx-injection>\n <!-- Href -->\n <a class=\"dbx-anchor-a dbx-anchor-href\" [href]=\"url$ | async\" [attr.target]=\"target$ | async\" *ngSwitchCase=\"3\">\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </a>\n <!-- Disabled or None -->\n <a class=\"dbx-anchor-a dbx-anchor-disabled\" *ngSwitchDefault>\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </a>\n</ng-container>\n<!-- Template content -->\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i1.NgSwitchDefault, selector: "[ngSwitchDefault]" }, { kind: "component", type: i1$2.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }] });
|
|
2322
2328
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxAnchorComponent, decorators: [{
|
|
2323
2329
|
type: Component,
|
|
2324
2330
|
args: [{ selector: 'dbx-anchor, [dbx-anchor]', host: {
|
|
@@ -2330,6 +2336,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
2330
2336
|
}], templateRef: [{
|
|
2331
2337
|
type: ViewChild,
|
|
2332
2338
|
args: ['content', { read: TemplateRef }]
|
|
2339
|
+
}], onMouseEnter: [{
|
|
2340
|
+
type: HostListener,
|
|
2341
|
+
args: ['mouseenter']
|
|
2342
|
+
}], onMouseLeave: [{
|
|
2343
|
+
type: HostListener,
|
|
2344
|
+
args: ['mouseleave']
|
|
2333
2345
|
}] } });
|
|
2334
2346
|
|
|
2335
2347
|
/**
|
|
@@ -5717,6 +5729,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
5717
5729
|
args: ['dbxLoadingError']
|
|
5718
5730
|
}] } });
|
|
5719
5731
|
|
|
5732
|
+
// prettier-ignore
|
|
5720
5733
|
class DbxUnitedStatesAddressComponent {
|
|
5721
5734
|
}
|
|
5722
5735
|
DbxUnitedStatesAddressComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxUnitedStatesAddressComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -5728,8 +5741,8 @@ DbxUnitedStatesAddressComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
|
|
|
5728
5741
|
<div *ngIf="address.line2" class="addr-line2">{{ address.line2 }}</div>
|
|
5729
5742
|
<div class="city-state-zip">
|
|
5730
5743
|
<span class="addr-city">{{ address.city }}</span>
|
|
5731
|
-
<span *ngIf="address.state || address.zip"
|
|
5732
|
-
<span class="addr-state">{{ address.state }}</span>
|
|
5744
|
+
<span *ngIf="address.state || address.zip">, </span>
|
|
5745
|
+
<span class="addr-state">{{ address.state }} </span>
|
|
5733
5746
|
<span class="addr-zip">{{ address.zip }}</span>
|
|
5734
5747
|
</div>
|
|
5735
5748
|
</ng-container>
|
|
@@ -5746,8 +5759,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
5746
5759
|
<div *ngIf="address.line2" class="addr-line2">{{ address.line2 }}</div>
|
|
5747
5760
|
<div class="city-state-zip">
|
|
5748
5761
|
<span class="addr-city">{{ address.city }}</span>
|
|
5749
|
-
<span *ngIf="address.state || address.zip"
|
|
5750
|
-
<span class="addr-state">{{ address.state }}</span>
|
|
5762
|
+
<span *ngIf="address.state || address.zip">, </span>
|
|
5763
|
+
<span class="addr-state">{{ address.state }} </span>
|
|
5751
5764
|
<span class="addr-zip">{{ address.zip }}</span>
|
|
5752
5765
|
</div>
|
|
5753
5766
|
</ng-container>
|