@praxisui/core 9.0.65 → 9.0.67
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/README.md +173 -0
- package/ai/component-registry.json +22 -21
- package/fesm2022/praxisui-core.mjs +1877 -292
- package/package.json +1 -1
- package/theme-bridge.css +9 -0
- package/types/praxisui-core.d.ts +312 -15
package/package.json
CHANGED
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);
|