@praxisui/core 9.0.66 → 9.0.68-rc.0

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/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "@praxisui/core",
3
- "version": "9.0.66",
3
+ "version": "9.0.68-rc.0",
4
4
  "description": "Core library for Praxis UI Workspace: types, tokens, services and utilities shared across @praxisui/* packages.",
5
5
  "peerDependencies": {
6
+ "@angular/cdk": "^21.0.0",
6
7
  "@angular/common": "^21.0.0",
7
8
  "@angular/core": "^21.0.0",
8
9
  "@angular/forms": "^21.0.0",
package/theme-bridge.css CHANGED
@@ -143,6 +143,15 @@ mat-icon.material-symbols-sharp {
143
143
  color: var(--md-sys-color-inverse-on-surface, #eff1f0);
144
144
  }
145
145
 
146
+ /* Tooltips are descriptive overlays and must never block the control beneath
147
+ them. Angular Material 21 renders them inside a native popover bounding box,
148
+ so both the tooltip and that wrapper need to remain click-through. */
149
+ .cdk-overlay-container .mat-mdc-tooltip,
150
+ .cdk-overlay-container .cdk-overlay-pane:has(.mat-mdc-tooltip-surface),
151
+ .cdk-overlay-container .cdk-overlay-popover:has(.mat-mdc-tooltip-surface) {
152
+ pointer-events: none;
153
+ }
154
+
146
155
  .mat-mdc-form-field {
147
156
  --mdc-filled-text-field-container-color: var(--md-sys-color-surface-container-low);
148
157
  --mdc-filled-text-field-input-text-color: var(--pdx-material-on-surface);