@remit/web-client 0.0.72 → 0.0.73

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/web-client",
3
- "version": "0.0.72",
3
+ "version": "0.0.73",
4
4
  "type": "module",
5
5
  "description": "Remit web client, published as composable primitives — the app shell, auth shells, and runtime config. A distributor imports what it composes and bundles it.",
6
6
  "exports": {
@@ -236,9 +236,9 @@ const MessageRowComponent = ({
236
236
  isChecked && "bg-accent-soft",
237
237
  // Long-press enters selection mode; without these, Android Chrome opens
238
238
  // the link context menu / starts text selection and iOS Safari fires the
239
- // callout, racing the app's handler. react-aria suppresses
240
- // contextmenu/text-selection but not iOS's callout it fires no
241
- // cancelable event, so CSS is the only lever.
239
+ // callout, racing the app's handler. useLongPress suppresses the
240
+ // touch-fired contextmenu; the callout fires no cancelable event, so
241
+ // `select-none` / `-webkit-touch-callout: none` are the only lever left.
242
242
  !isDesktop && "min-h-11 select-none [-webkit-touch-callout:none]",
243
243
  );
244
244