@jobber/components 6.96.0 → 6.97.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.
@@ -101,6 +101,8 @@ function DataListItem({ item, layout, }) {
101
101
  setShowMenu(true);
102
102
  }
103
103
  function handleHideMenu() {
104
+ if (isContextMenuVisible)
105
+ return;
104
106
  setShowMenu(false);
105
107
  }
106
108
  function handleContextMenu(event) {
@@ -99,6 +99,8 @@ function DataListItem({ item, layout, }) {
99
99
  setShowMenu(true);
100
100
  }
101
101
  function handleHideMenu() {
102
+ if (isContextMenuVisible)
103
+ return;
102
104
  setShowMenu(false);
103
105
  }
104
106
  function handleContextMenu(event) {
@@ -59,7 +59,7 @@ export declare function useInputTextFormField({ id, name, description, inline, h
59
59
  className: string;
60
60
  name: string;
61
61
  disabled: boolean | undefined;
62
- inputMode: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
62
+ inputMode: "none" | "text" | "search" | "email" | "decimal" | "tel" | "url" | "numeric" | undefined;
63
63
  onChange: (event: ChangeEvent<HTMLInputElement | HTMLTextAreaElement>) => void;
64
64
  onBlur: () => void;
65
65
  onFocus: (event: FocusEvent<HTMLInputElement | HTMLTextAreaElement>) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jobber/components",
3
- "version": "6.96.0",
3
+ "version": "6.97.0",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -483,7 +483,7 @@
483
483
  "classnames": "^2.3.2",
484
484
  "color": "^3.1.2",
485
485
  "filesize": "^6.1.0",
486
- "framer-motion": "^11.0.3",
486
+ "framer-motion": "^11.11.12",
487
487
  "lodash": "^4.17.21",
488
488
  "react-aria-components": "^1.11.0",
489
489
  "react-countdown": "^2.3.2",
@@ -529,7 +529,7 @@
529
529
  "classnames": "^2",
530
530
  "color": "^4",
531
531
  "filesize": "^6",
532
- "framer-motion": "^11",
532
+ "framer-motion": "^11.11.12",
533
533
  "lodash": "^4",
534
534
  "react": "^18.2.0",
535
535
  "react-dom": "^18",
@@ -541,5 +541,5 @@
541
541
  "> 1%",
542
542
  "IE 10"
543
543
  ],
544
- "gitHead": "99ad0dd569d2d8d3158db804e7d8e9e2761142e9"
544
+ "gitHead": "97acbc782183d33ebe879429a123169031b7092a"
545
545
  }