@angular/cdk 13.3.2 → 13.3.5
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.scss +11 -0
- package/a11y-prebuilt.css +1 -1
- package/esm2020/overlay/overlay-ref.mjs +4 -3
- package/esm2020/portal/dom-portal-outlet.mjs +6 -2
- package/esm2020/table/table.mjs +1 -1
- package/esm2020/version.mjs +1 -1
- package/fesm2015/cdk.mjs +1 -1
- package/fesm2015/cdk.mjs.map +1 -1
- package/fesm2015/overlay.mjs +3 -2
- package/fesm2015/overlay.mjs.map +1 -1
- package/fesm2015/portal.mjs +5 -1
- package/fesm2015/portal.mjs.map +1 -1
- package/fesm2015/table.mjs.map +1 -1
- package/fesm2020/cdk.mjs +1 -1
- package/fesm2020/cdk.mjs.map +1 -1
- package/fesm2020/overlay.mjs +3 -2
- package/fesm2020/overlay.mjs.map +1 -1
- package/fesm2020/portal.mjs +5 -1
- package/fesm2020/portal.mjs.map +1 -1
- package/fesm2020/table.mjs.map +1 -1
- package/package.json +1 -1
- package/schematics/ng-add/index.js +1 -1
- package/schematics/ng-add/index.mjs +1 -1
- package/table/table.d.ts +2 -6
package/fesm2020/cdk.mjs
CHANGED
|
@@ -8,7 +8,7 @@ import { Version } from '@angular/core';
|
|
|
8
8
|
* found in the LICENSE file at https://angular.io/license
|
|
9
9
|
*/
|
|
10
10
|
/** Current version of the Angular Component Development Kit. */
|
|
11
|
-
const VERSION = new Version('13.3.
|
|
11
|
+
const VERSION = new Version('13.3.5');
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* @license
|
package/fesm2020/cdk.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cdk.mjs","sources":["../../../../../../src/cdk/version.ts","../../../../../../src/cdk/public-api.ts","../../../../../../src/cdk/index.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\nimport {Version} from '@angular/core';\n\n/** Current version of the Angular Component Development Kit. */\nexport const VERSION = new Version('13.3.
|
|
1
|
+
{"version":3,"file":"cdk.mjs","sources":["../../../../../../src/cdk/version.ts","../../../../../../src/cdk/public-api.ts","../../../../../../src/cdk/index.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\nimport {Version} from '@angular/core';\n\n/** Current version of the Angular Component Development Kit. */\nexport const VERSION = new Version('13.3.5');\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\nexport * from './version';\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;AAAA;;;;;;AAMG;AAIH;MACa,OAAO,GAAG,IAAI,OAAO,CAAC,mBAAmB;;ACXtD;;;;;;AAMG;;ACNH;;;;;;AAMG;;;;"}
|
package/fesm2020/overlay.mjs
CHANGED
|
@@ -868,11 +868,12 @@ class OverlayRef {
|
|
|
868
868
|
* @returns The portal attachment result.
|
|
869
869
|
*/
|
|
870
870
|
attach(portal) {
|
|
871
|
-
|
|
872
|
-
//
|
|
871
|
+
// Insert the host into the DOM before attaching the portal, otherwise
|
|
872
|
+
// the animations module will skip animations on repeat attachments.
|
|
873
873
|
if (!this._host.parentElement && this._previousHostParent) {
|
|
874
874
|
this._previousHostParent.appendChild(this._host);
|
|
875
875
|
}
|
|
876
|
+
const attachResult = this._portalOutlet.attach(portal);
|
|
876
877
|
if (this._positionStrategy) {
|
|
877
878
|
this._positionStrategy.attach(this);
|
|
878
879
|
}
|