@angular/cdk 16.2.1 → 16.2.3
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/a11y/index.d.ts +1 -1
- package/esm2022/a11y/interactivity-checker/interactivity-checker.mjs +2 -2
- package/esm2022/drag-drop/drag-ref.mjs +12 -4
- package/esm2022/menu/menu-trigger.mjs +5 -2
- package/esm2022/table/table.mjs +2 -1
- package/esm2022/version.mjs +1 -1
- package/fesm2022/a11y.mjs +1 -1
- package/fesm2022/a11y.mjs.map +1 -1
- package/fesm2022/cdk.mjs +1 -1
- package/fesm2022/cdk.mjs.map +1 -1
- package/fesm2022/drag-drop.mjs +11 -3
- package/fesm2022/drag-drop.mjs.map +1 -1
- package/fesm2022/menu.mjs +4 -1
- package/fesm2022/menu.mjs.map +1 -1
- package/fesm2022/table.mjs +1 -0
- package/fesm2022/table.mjs.map +1 -1
- package/menu/index.d.ts +1 -0
- package/package.json +1 -1
- package/schematics/ng-add/index.js +1 -1
- package/schematics/ng-add/index.mjs +1 -1
package/fesm2022/table.mjs
CHANGED
|
@@ -1937,6 +1937,7 @@ class CdkTable {
|
|
|
1937
1937
|
container.clear();
|
|
1938
1938
|
}
|
|
1939
1939
|
this._isShowingNoDataRow = shouldShow;
|
|
1940
|
+
this._changeDetectorRef.markForCheck();
|
|
1940
1941
|
}
|
|
1941
1942
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.1", ngImport: i0, type: CdkTable, deps: [{ token: i0.IterableDiffers }, { token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: 'role', attribute: true }, { token: i1.Directionality, optional: true }, { token: DOCUMENT }, { token: i2.Platform }, { token: _VIEW_REPEATER_STRATEGY }, { token: _COALESCED_STYLE_SCHEDULER }, { token: i3.ViewportRuler }, { token: STICKY_POSITIONING_LISTENER, optional: true, skipSelf: true }, { token: i0.NgZone, optional: true }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1942
1943
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.1", type: CdkTable, selector: "cdk-table, table[cdk-table]", inputs: { trackBy: "trackBy", dataSource: "dataSource", multiTemplateDataRows: "multiTemplateDataRows", fixedLayout: "fixedLayout" }, outputs: { contentChanged: "contentChanged" }, host: { attributes: { "ngSkipHydration": "" }, properties: { "class.cdk-table-fixed-layout": "fixedLayout" }, classAttribute: "cdk-table" }, providers: [
|