@ai-matrx/design-system 0.12.0 → 0.13.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/CHANGELOG.md +52 -0
- package/README.md +16 -1
- package/dist/index.cjs +209 -153
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +58 -1
- package/dist/index.d.ts +58 -1
- package/dist/index.js +209 -153
- package/dist/index.js.map +1 -1
- package/dist/styles.css +16 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -886,3 +886,19 @@
|
|
|
886
886
|
.matrx-mobile-sheet .h-7:not([class*="w-7"]) {
|
|
887
887
|
min-height: 2.25rem;
|
|
888
888
|
}
|
|
889
|
+
|
|
890
|
+
/* Portaled action footers escape host touch-target subtrees. Own the floor
|
|
891
|
+
here for every footer primitive, unlayered so host h-6/h-9 utilities cannot
|
|
892
|
+
shrink it. Fine-pointer desktop density remains unchanged. State controls
|
|
893
|
+
keep their visual size; explicit exemptions carry a call-site reason. */
|
|
894
|
+
@media (pointer: coarse), (max-width: 1023px) {
|
|
895
|
+
:is([data-slot="dialog-footer"], [data-slot="alert-dialog-footer"], [data-slot="drawer-footer"], [data-slot="sheet-footer"], [data-slot="bottom-sheet-footer"])
|
|
896
|
+
:is(button, [role="button"], a[data-tap-target]):not([data-touch-exempt]):not([role="checkbox"]):not([role="radio"]):not([role="switch"]) {
|
|
897
|
+
min-height: 2.75rem;
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
:is([data-slot="dialog-footer"], [data-slot="alert-dialog-footer"], [data-slot="drawer-footer"], [data-slot="sheet-footer"], [data-slot="bottom-sheet-footer"])
|
|
901
|
+
:is(button, [role="button"], a[data-tap-target]):is([aria-label], [title]):not([data-touch-exempt]):not([role="checkbox"]):not([role="radio"]):not([role="switch"]) {
|
|
902
|
+
min-width: 2.75rem;
|
|
903
|
+
}
|
|
904
|
+
}
|
package/package.json
CHANGED