@ethlete/cdk 4.49.2 → 4.49.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/CHANGELOG.md +6 -0
- package/fesm2022/ethlete-cdk.mjs +769 -769
- package/package.json +1 -1
- package/src/lib/styles/cdk.css +6 -1
package/package.json
CHANGED
package/src/lib/styles/cdk.css
CHANGED
|
@@ -2,7 +2,12 @@
|
|
|
2
2
|
@import '@angular/cdk/overlay-prebuilt.css';
|
|
3
3
|
@import '@angular/cdk/text-field-prebuilt.css';
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
/*
|
|
6
|
+
Since Angular 19, the cdk styles have a higher priority.
|
|
7
|
+
This results in the cdk-overlay-pane being displayed as a flex container.
|
|
8
|
+
To fix this, we need to override the styles.
|
|
9
|
+
*/
|
|
10
|
+
.cdk-overlay-pane.cdk-overlay-pane {
|
|
6
11
|
display: grid;
|
|
7
12
|
grid-template-rows: minmax(0, 1fr);
|
|
8
13
|
grid-template-columns: minmax(0, 1fr);
|