@dereekb/dbx-web 9.24.5 → 9.24.6
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/interaction/filter/filter.popover.button.component.mjs +7 -5
- package/fesm2015/dereekb-dbx-web.mjs +6 -4
- package/fesm2015/dereekb-dbx-web.mjs.map +1 -1
- package/fesm2020/dereekb-dbx-web.mjs +6 -4
- package/fesm2020/dereekb-dbx-web.mjs.map +1 -1
- package/lib/interaction/filter/filter.popover.button.component.d.ts +2 -1
- package/mapbox/package.json +3 -3
- package/package.json +3 -3
- package/table/package.json +3 -3
|
@@ -2099,19 +2099,21 @@ class DbxFilterPopoverButtonComponent extends AbstractFilterPopoverButtonDirecti
|
|
|
2099
2099
|
}
|
|
2100
2100
|
}
|
|
2101
2101
|
DbxFilterPopoverButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxFilterPopoverButtonComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2102
|
-
DbxFilterPopoverButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxFilterPopoverButtonComponent, selector: "dbx-filter-popover-button", inputs: { buttonDisplay: "buttonDisplay" }, viewQueries: [{ propertyName: "buttonElement", first: true, predicate: ["button"], descendants: true, read: ElementRef }], usesInheritance: true, ngImport: i0, template: `
|
|
2103
|
-
<dbx-icon-button #button (buttonClick)="showFilterPopover()" [buttonDisplay]="buttonDisplay"></dbx-icon-button>
|
|
2102
|
+
DbxFilterPopoverButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxFilterPopoverButtonComponent, selector: "dbx-filter-popover-button", inputs: { disabled: "disabled", buttonDisplay: "buttonDisplay" }, viewQueries: [{ propertyName: "buttonElement", first: true, predicate: ["button"], descendants: true, read: ElementRef }], usesInheritance: true, ngImport: i0, template: `
|
|
2103
|
+
<dbx-icon-button #button (buttonClick)="showFilterPopover()" [buttonDisplay]="buttonDisplay" [disabled]="disabled"></dbx-icon-button>
|
|
2104
2104
|
`, isInline: true, dependencies: [{ kind: "component", type: DbxIconButtonComponent, selector: "dbx-icon-button" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2105
2105
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxFilterPopoverButtonComponent, decorators: [{
|
|
2106
2106
|
type: Component,
|
|
2107
2107
|
args: [{
|
|
2108
2108
|
selector: 'dbx-filter-popover-button',
|
|
2109
2109
|
template: `
|
|
2110
|
-
<dbx-icon-button #button (buttonClick)="showFilterPopover()" [buttonDisplay]="buttonDisplay"></dbx-icon-button>
|
|
2110
|
+
<dbx-icon-button #button (buttonClick)="showFilterPopover()" [buttonDisplay]="buttonDisplay" [disabled]="disabled"></dbx-icon-button>
|
|
2111
2111
|
`,
|
|
2112
2112
|
changeDetection: ChangeDetectionStrategy.OnPush
|
|
2113
2113
|
}]
|
|
2114
|
-
}], propDecorators: {
|
|
2114
|
+
}], propDecorators: { disabled: [{
|
|
2115
|
+
type: Input
|
|
2116
|
+
}], buttonDisplay: [{
|
|
2115
2117
|
type: Input
|
|
2116
2118
|
}], buttonElement: [{
|
|
2117
2119
|
type: ViewChild,
|