@react-spectrum/menu 3.11.1-nightly.3871 → 3.11.1-nightly.3884
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/dist/import.mjs +11 -4
- package/dist/main.js +10 -3
- package/dist/main.js.map +1 -1
- package/dist/module.js +11 -4
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +29 -29
- package/src/MenuDialogTrigger.tsx +3 -0
- package/src/MenuItem.tsx +4 -2
package/dist/import.mjs
CHANGED
|
@@ -7,7 +7,7 @@ import $9SHwR$react, {useRef as $9SHwR$useRef, Fragment as $9SHwR$Fragment, forw
|
|
|
7
7
|
import {useMenuTrigger as $9SHwR$useMenuTrigger, useMenu as $9SHwR$useMenu, useMenuItem as $9SHwR$useMenuItem, useMenuSection as $9SHwR$useMenuSection} from "@react-aria/menu";
|
|
8
8
|
import {useMenuTriggerState as $9SHwR$useMenuTriggerState} from "@react-stately/menu";
|
|
9
9
|
import {FocusScope as $9SHwR$FocusScope, FocusRing as $9SHwR$FocusRing} from "@react-aria/focus";
|
|
10
|
-
import {mergeProps as $9SHwR$mergeProps, useSyncRef as $9SHwR$useSyncRef,
|
|
10
|
+
import {mergeProps as $9SHwR$mergeProps, useSyncRef as $9SHwR$useSyncRef, filterDOMProps as $9SHwR$filterDOMProps, useSlotId as $9SHwR$useSlotId} from "@react-aria/utils";
|
|
11
11
|
import {useTreeState as $9SHwR$useTreeState} from "@react-stately/tree";
|
|
12
12
|
import $9SHwR$spectrumiconsuiCheckmarkMedium from "@spectrum-icons/ui/CheckmarkMedium";
|
|
13
13
|
import {Grid as $9SHwR$Grid} from "@react-spectrum/layout";
|
|
@@ -17,6 +17,7 @@ import {useLocalizedStringFormatter as $9SHwR$useLocalizedStringFormatter} from
|
|
|
17
17
|
import {useSeparator as $9SHwR$useSeparator} from "@react-aria/separator";
|
|
18
18
|
import {ActionButton as $9SHwR$ActionButton} from "@react-spectrum/button";
|
|
19
19
|
import $9SHwR$spectrumiconsworkflowMore from "@spectrum-icons/workflow/More";
|
|
20
|
+
import {DismissButton as $9SHwR$DismissButton} from "@react-aria/overlays";
|
|
20
21
|
import {useOverlayTriggerState as $9SHwR$useOverlayTriggerState} from "@react-stately/overlays";
|
|
21
22
|
|
|
22
23
|
function $parcel$interopDefault(a) {
|
|
@@ -254,6 +255,7 @@ function $aa0b855f135b86e3$var$MenuTrigger(props, ref) {
|
|
|
254
255
|
|
|
255
256
|
|
|
256
257
|
|
|
258
|
+
|
|
257
259
|
var $d01b612f05eb8a1a$exports = {};
|
|
258
260
|
var $9c47fa309a7d4d43$exports = {};
|
|
259
261
|
$9c47fa309a7d4d43$exports = {
|
|
@@ -505,7 +507,6 @@ $d01b612f05eb8a1a$exports = {
|
|
|
505
507
|
|
|
506
508
|
|
|
507
509
|
|
|
508
|
-
|
|
509
510
|
function $48fb8f5e1202c980$export$2ce376c2cc3355c8(props) {
|
|
510
511
|
let { item: item , state: state , isVirtualized: isVirtualized , onAction: onAction } = props;
|
|
511
512
|
let stringFormatter = (0, $9SHwR$useLocalizedStringFormatter)((0, (/*@__PURE__*/$parcel$interopDefault($d01b612f05eb8a1a$exports))));
|
|
@@ -514,6 +515,7 @@ function $48fb8f5e1202c980$export$2ce376c2cc3355c8(props) {
|
|
|
514
515
|
let isMenuDialogTrigger = !!menuDialogContext;
|
|
515
516
|
let isUnavailable = false;
|
|
516
517
|
if (isMenuDialogTrigger) isUnavailable = menuDialogContext.isUnavailable;
|
|
518
|
+
let domProps = (0, $9SHwR$filterDOMProps)(item.props);
|
|
517
519
|
let { onClose: onClose , closeOnSelect: closeOnSelect } = (0, $d94604d52c3e3feb$export$21c7ab35b39f78ec)();
|
|
518
520
|
let { rendered: rendered , key: key } = item;
|
|
519
521
|
let isSelected = state.selectionManager.isSelected(key);
|
|
@@ -541,7 +543,7 @@ function $48fb8f5e1202c980$export$2ce376c2cc3355c8(props) {
|
|
|
541
543
|
return /*#__PURE__*/ (0, $9SHwR$react).createElement((0, $9SHwR$FocusRing), {
|
|
542
544
|
focusRingClass: (0, $9SHwR$classNames)((0, (/*@__PURE__*/$parcel$interopDefault($286d1cb34bb7dc84$exports))), "focus-ring")
|
|
543
545
|
}, /*#__PURE__*/ (0, $9SHwR$react).createElement("li", {
|
|
544
|
-
...(0, $9SHwR$mergeProps)(menuItemProps),
|
|
546
|
+
...(0, $9SHwR$mergeProps)(menuItemProps, domProps),
|
|
545
547
|
ref: ref,
|
|
546
548
|
className: (0, $9SHwR$classNames)((0, (/*@__PURE__*/$parcel$interopDefault($286d1cb34bb7dc84$exports))), "spectrum-Menu-item", {
|
|
547
549
|
"is-disabled": isDisabled,
|
|
@@ -748,6 +750,7 @@ function $43fa9949e6af393d$var$ActionMenu(props, ref) {
|
|
|
748
750
|
* OF ANY KIND, either express or implied. See the License for the specific language
|
|
749
751
|
* governing permissions and limitations under the License.
|
|
750
752
|
*/
|
|
753
|
+
|
|
751
754
|
var $c487b1d738ebeac2$exports = {};
|
|
752
755
|
|
|
753
756
|
$parcel$export($c487b1d738ebeac2$exports, "react-spectrum-ContextualHelp-button", () => $c487b1d738ebeac2$export$20d9583c9f1529c1, (v) => $c487b1d738ebeac2$export$20d9583c9f1529c1 = v);
|
|
@@ -805,7 +808,11 @@ function $81987f5f2bef0e97$var$MenuDialogTrigger(props) {
|
|
|
805
808
|
}, isMobile ? /*#__PURE__*/ (0, $9SHwR$react).createElement((0, $9SHwR$Modal), {
|
|
806
809
|
state: state,
|
|
807
810
|
isDismissable: true
|
|
808
|
-
},
|
|
811
|
+
}, /*#__PURE__*/ (0, $9SHwR$react).createElement((0, $9SHwR$DismissButton), {
|
|
812
|
+
onDismiss: state.close
|
|
813
|
+
}), content, /*#__PURE__*/ (0, $9SHwR$react).createElement((0, $9SHwR$DismissButton), {
|
|
814
|
+
onDismiss: state.close
|
|
815
|
+
})) : /*#__PURE__*/ (0, $9SHwR$react).createElement((0, $9SHwR$Popover), {
|
|
809
816
|
state: state,
|
|
810
817
|
triggerRef: triggerRef,
|
|
811
818
|
placement: "end top",
|
package/dist/main.js
CHANGED
|
@@ -17,6 +17,7 @@ var $3ThwF$reactariai18n = require("@react-aria/i18n");
|
|
|
17
17
|
var $3ThwF$reactariaseparator = require("@react-aria/separator");
|
|
18
18
|
var $3ThwF$reactspectrumbutton = require("@react-spectrum/button");
|
|
19
19
|
var $3ThwF$spectrumiconsworkflowMore = require("@spectrum-icons/workflow/More");
|
|
20
|
+
var $3ThwF$reactariaoverlays = require("@react-aria/overlays");
|
|
20
21
|
var $3ThwF$reactstatelyoverlays = require("@react-stately/overlays");
|
|
21
22
|
|
|
22
23
|
function $parcel$export(e, n, v, s) {
|
|
@@ -261,6 +262,7 @@ function $e56311f7204399c7$var$MenuTrigger(props, ref) {
|
|
|
261
262
|
|
|
262
263
|
|
|
263
264
|
|
|
265
|
+
|
|
264
266
|
var $cfd196bf3743d29c$exports = {};
|
|
265
267
|
var $517603d8c7b8e5e5$exports = {};
|
|
266
268
|
$517603d8c7b8e5e5$exports = {
|
|
@@ -512,7 +514,6 @@ $cfd196bf3743d29c$exports = {
|
|
|
512
514
|
|
|
513
515
|
|
|
514
516
|
|
|
515
|
-
|
|
516
517
|
function $1d718563708db5b5$export$2ce376c2cc3355c8(props) {
|
|
517
518
|
let { item: item , state: state , isVirtualized: isVirtualized , onAction: onAction } = props;
|
|
518
519
|
let stringFormatter = (0, $3ThwF$reactariai18n.useLocalizedStringFormatter)((0, (/*@__PURE__*/$parcel$interopDefault($cfd196bf3743d29c$exports))));
|
|
@@ -521,6 +522,7 @@ function $1d718563708db5b5$export$2ce376c2cc3355c8(props) {
|
|
|
521
522
|
let isMenuDialogTrigger = !!menuDialogContext;
|
|
522
523
|
let isUnavailable = false;
|
|
523
524
|
if (isMenuDialogTrigger) isUnavailable = menuDialogContext.isUnavailable;
|
|
525
|
+
let domProps = (0, $3ThwF$reactariautils.filterDOMProps)(item.props);
|
|
524
526
|
let { onClose: onClose , closeOnSelect: closeOnSelect } = (0, $cac834c4bc0a51d3$export$21c7ab35b39f78ec)();
|
|
525
527
|
let { rendered: rendered , key: key } = item;
|
|
526
528
|
let isSelected = state.selectionManager.isSelected(key);
|
|
@@ -548,7 +550,7 @@ function $1d718563708db5b5$export$2ce376c2cc3355c8(props) {
|
|
|
548
550
|
return /*#__PURE__*/ (0, ($parcel$interopDefault($3ThwF$react))).createElement((0, $3ThwF$reactariafocus.FocusRing), {
|
|
549
551
|
focusRingClass: (0, $3ThwF$reactspectrumutils.classNames)((0, (/*@__PURE__*/$parcel$interopDefault($3deee0fd2b46e64f$exports))), "focus-ring")
|
|
550
552
|
}, /*#__PURE__*/ (0, ($parcel$interopDefault($3ThwF$react))).createElement("li", {
|
|
551
|
-
...(0, $3ThwF$reactariautils.mergeProps)(menuItemProps),
|
|
553
|
+
...(0, $3ThwF$reactariautils.mergeProps)(menuItemProps, domProps),
|
|
552
554
|
ref: ref,
|
|
553
555
|
className: (0, $3ThwF$reactspectrumutils.classNames)((0, (/*@__PURE__*/$parcel$interopDefault($3deee0fd2b46e64f$exports))), "spectrum-Menu-item", {
|
|
554
556
|
"is-disabled": isDisabled,
|
|
@@ -755,6 +757,7 @@ function $53a2f2636c97a561$var$ActionMenu(props, ref) {
|
|
|
755
757
|
* OF ANY KIND, either express or implied. See the License for the specific language
|
|
756
758
|
* governing permissions and limitations under the License.
|
|
757
759
|
*/
|
|
760
|
+
|
|
758
761
|
var $a10e565ec42bcf96$exports = {};
|
|
759
762
|
|
|
760
763
|
$parcel$export($a10e565ec42bcf96$exports, "react-spectrum-ContextualHelp-button", () => $a10e565ec42bcf96$export$20d9583c9f1529c1, (v) => $a10e565ec42bcf96$export$20d9583c9f1529c1 = v);
|
|
@@ -812,7 +815,11 @@ function $febd30f9f4b51dd6$var$MenuDialogTrigger(props) {
|
|
|
812
815
|
}, isMobile ? /*#__PURE__*/ (0, ($parcel$interopDefault($3ThwF$react))).createElement((0, $3ThwF$reactspectrumoverlays.Modal), {
|
|
813
816
|
state: state,
|
|
814
817
|
isDismissable: true
|
|
815
|
-
},
|
|
818
|
+
}, /*#__PURE__*/ (0, ($parcel$interopDefault($3ThwF$react))).createElement((0, $3ThwF$reactariaoverlays.DismissButton), {
|
|
819
|
+
onDismiss: state.close
|
|
820
|
+
}), content, /*#__PURE__*/ (0, ($parcel$interopDefault($3ThwF$react))).createElement((0, $3ThwF$reactariaoverlays.DismissButton), {
|
|
821
|
+
onDismiss: state.close
|
|
822
|
+
})) : /*#__PURE__*/ (0, ($parcel$interopDefault($3ThwF$react))).createElement((0, $3ThwF$reactspectrumoverlays.Popover), {
|
|
816
823
|
state: state,
|
|
817
824
|
triggerRef: triggerRef,
|
|
818
825
|
placement: "end top",
|
package/dist/main.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"mappings":"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","sources":["packages/@react-spectrum/menu/src/index.ts","packages/@react-spectrum/menu/src/MenuTrigger.tsx","packages/@react-spectrum/menu/src/context.ts","packages/@adobe/spectrum-css-temp/components/menu/vars.css","packages/@react-spectrum/menu/src/Menu.tsx","packages/@react-spectrum/menu/src/MenuItem.tsx","packages/@react-spectrum/menu/intl/*.js","packages/@react-spectrum/menu/intl/ar-AE.json","packages/@react-spectrum/menu/intl/bg-BG.json","packages/@react-spectrum/menu/intl/cs-CZ.json","packages/@react-spectrum/menu/intl/da-DK.json","packages/@react-spectrum/menu/intl/de-DE.json","packages/@react-spectrum/menu/intl/el-GR.json","packages/@react-spectrum/menu/intl/en-US.json","packages/@react-spectrum/menu/intl/es-ES.json","packages/@react-spectrum/menu/intl/et-EE.json","packages/@react-spectrum/menu/intl/fi-FI.json","packages/@react-spectrum/menu/intl/fr-FR.json","packages/@react-spectrum/menu/intl/he-IL.json","packages/@react-spectrum/menu/intl/hr-HR.json","packages/@react-spectrum/menu/intl/hu-HU.json","packages/@react-spectrum/menu/intl/it-IT.json","packages/@react-spectrum/menu/intl/ja-JP.json","packages/@react-spectrum/menu/intl/ko-KR.json","packages/@react-spectrum/menu/intl/lt-LT.json","packages/@react-spectrum/menu/intl/lv-LV.json","packages/@react-spectrum/menu/intl/nb-NO.json","packages/@react-spectrum/menu/intl/nl-NL.json","packages/@react-spectrum/menu/intl/pl-PL.json","packages/@react-spectrum/menu/intl/pt-BR.json","packages/@react-spectrum/menu/intl/pt-PT.json","packages/@react-spectrum/menu/intl/ro-RO.json","packages/@react-spectrum/menu/intl/ru-RU.json","packages/@react-spectrum/menu/intl/sk-SK.json","packages/@react-spectrum/menu/intl/sl-SI.json","packages/@react-spectrum/menu/intl/sr-SP.json","packages/@react-spectrum/menu/intl/sv-SE.json","packages/@react-spectrum/menu/intl/tr-TR.json","packages/@react-spectrum/menu/intl/uk-UA.json","packages/@react-spectrum/menu/intl/zh-CN.json","packages/@react-spectrum/menu/intl/zh-TW.json","packages/@react-spectrum/menu/src/MenuSection.tsx","packages/@react-spectrum/menu/src/ActionMenu.tsx","packages/@react-spectrum/menu/src/MenuDialogTrigger.tsx","packages/@adobe/spectrum-css-temp/components/contextualhelp/vars.css"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\n/// <reference types=\"css-module-types\" />\n\nexport {MenuTrigger} from './MenuTrigger';\nexport {Menu} from './Menu';\nexport {ActionMenu} from './ActionMenu';\nexport {MenuDialogTrigger} from './MenuDialogTrigger';\nexport {Item, Section} from '@react-stately/collections';\nexport type {SpectrumMenuTriggerProps} from '@react-types/menu';\nexport type {SpectrumActionMenuProps, SpectrumMenuProps} from '@react-types/menu';\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {classNames, SlotProvider, useDOMRef, useIsMobileDevice} from '@react-spectrum/utils';\nimport {DOMRef} from '@react-types/shared';\nimport {MenuContext} from './context';\nimport {Placement} from '@react-types/overlays';\nimport {Popover, Tray} from '@react-spectrum/overlays';\nimport {PressResponder} from '@react-aria/interactions';\nimport React, {forwardRef, Fragment, useRef} from 'react';\nimport {SpectrumMenuTriggerProps} from '@react-types/menu';\nimport styles from '@adobe/spectrum-css-temp/components/menu/vars.css';\nimport {useMenuTrigger} from '@react-aria/menu';\nimport {useMenuTriggerState} from '@react-stately/menu';\n\nfunction MenuTrigger(props: SpectrumMenuTriggerProps, ref: DOMRef<HTMLElement>) {\n let triggerRef = useRef<HTMLElement>();\n let domRef = useDOMRef(ref);\n let menuTriggerRef = domRef || triggerRef;\n let menuRef = useRef<HTMLUListElement>();\n let {\n children,\n align = 'start',\n shouldFlip = true,\n direction = 'bottom',\n closeOnSelect,\n trigger = 'press'\n } = props;\n\n let [menuTrigger, menu] = React.Children.toArray(children);\n let state = useMenuTriggerState(props);\n\n let {menuTriggerProps, menuProps} = useMenuTrigger({trigger}, state, menuTriggerRef);\n\n let initialPlacement: Placement;\n switch (direction) {\n case 'left':\n case 'right':\n case 'start':\n case 'end':\n initialPlacement = `${direction} ${align === 'end' ? 'bottom' : 'top'}` as Placement;\n break;\n case 'bottom':\n case 'top':\n default:\n initialPlacement = `${direction} ${align}` as Placement;\n }\n\n let isMobile = useIsMobileDevice();\n let menuContext = {\n ...menuProps,\n state,\n ref: menuRef,\n onClose: state.close,\n closeOnSelect,\n autoFocus: state.focusStrategy || true,\n UNSAFE_style: isMobile ? {\n width: '100%',\n maxHeight: 'inherit'\n } : undefined,\n UNSAFE_className: classNames(styles, {'spectrum-Menu-popover': !isMobile})\n };\n\n // On small screen devices, the menu is rendered in a tray, otherwise a popover.\n let overlay;\n if (isMobile) {\n overlay = (\n <Tray state={state}>\n {menu}\n </Tray>\n );\n } else {\n overlay = (\n <Popover\n state={state}\n triggerRef={menuTriggerRef}\n scrollRef={menuRef}\n placement={initialPlacement}\n hideArrow\n shouldFlip={shouldFlip}>\n {menu}\n </Popover>\n );\n }\n\n return (\n <Fragment>\n <SlotProvider slots={{actionButton: {holdAffordance: trigger === 'longPress'}}}>\n <PressResponder {...menuTriggerProps} ref={menuTriggerRef} isPressed={state.isOpen}>\n {menuTrigger}\n </PressResponder>\n </SlotProvider>\n <MenuContext.Provider value={menuContext}>\n {overlay}\n </MenuContext.Provider>\n </Fragment>\n );\n}\n\n/**\n * The MenuTrigger serves as a wrapper around a Menu and its associated trigger,\n * linking the Menu's open state with the trigger's press state.\n */\nlet _MenuTrigger = forwardRef(MenuTrigger);\nexport {_MenuTrigger as MenuTrigger};\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {FocusStrategy} from '@react-types/shared';\nimport {MenuTriggerState} from '@react-stately/menu';\nimport React, {HTMLAttributes, MutableRefObject, useContext} from 'react';\nimport {TreeState} from '@react-stately/tree';\n\nexport interface MenuContextValue extends HTMLAttributes<HTMLElement> {\n onClose?: () => void,\n closeOnSelect?: boolean,\n shouldFocusWrap?: boolean,\n autoFocus?: boolean | FocusStrategy,\n ref?: MutableRefObject<HTMLUListElement>,\n state?: MenuTriggerState\n}\n\nexport const MenuContext = React.createContext<MenuContextValue>({});\n\nexport function useMenuContext(): MenuContextValue {\n return useContext(MenuContext);\n}\n\nexport interface MenuDialogContextValue {\n isUnavailable?: boolean,\n triggerRef?: MutableRefObject<HTMLLIElement>\n}\n\nexport const MenuDialogContext = React.createContext<MenuDialogContextValue | undefined>(undefined);\n\nexport function useMenuDialogContext(): MenuDialogContextValue {\n return useContext(MenuDialogContext);\n}\n\nexport interface MenuStateContextValue<T> {\n state?: TreeState<T>\n}\n\nexport const MenuStateContext = React.createContext<MenuStateContextValue<any>>({});\n\nexport function useMenuStateContext<T>(): MenuStateContextValue<T> {\n return useContext(MenuStateContext);\n}\n\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\n@import './index.css';\n@import './skin.css';\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {classNames, useDOMRef, useStyleProps} from '@react-spectrum/utils';\nimport {DOMRef} from '@react-types/shared';\nimport {FocusScope} from '@react-aria/focus';\nimport {MenuContext, MenuStateContext} from './context';\nimport {MenuItem} from './MenuItem';\nimport {MenuSection} from './MenuSection';\nimport {mergeProps, useSyncRef} from '@react-aria/utils';\nimport React, {ReactElement, useContext} from 'react';\nimport {SpectrumMenuProps} from '@react-types/menu';\nimport styles from '@adobe/spectrum-css-temp/components/menu/vars.css';\nimport {useMenu} from '@react-aria/menu';\nimport {useTreeState} from '@react-stately/tree';\n\nfunction Menu<T extends object>(props: SpectrumMenuProps<T>, ref: DOMRef<HTMLUListElement>) {\n let contextProps = useContext(MenuContext);\n let completeProps = {\n ...mergeProps(contextProps, props)\n };\n\n let domRef = useDOMRef(ref);\n let state = useTreeState(completeProps);\n let {menuProps} = useMenu(completeProps, state, domRef);\n let {styleProps} = useStyleProps(completeProps);\n useSyncRef(contextProps, domRef);\n\n return (\n <MenuStateContext.Provider value={{state}}>\n <FocusScope contain={state.expandedKeys.size > 0}>\n <ul\n {...menuProps}\n {...styleProps}\n ref={domRef}\n className={\n classNames(\n styles,\n 'spectrum-Menu',\n styleProps.className\n )\n }>\n {[...state.collection].map(item => {\n if (item.type === 'section') {\n return (\n <MenuSection\n key={item.key}\n item={item}\n state={state}\n onAction={completeProps.onAction} />\n );\n }\n\n let menuItem = (\n <MenuItem\n key={item.key}\n item={item}\n state={state}\n onAction={completeProps.onAction} />\n );\n\n if (item.wrapper) {\n menuItem = item.wrapper(menuItem);\n }\n\n return menuItem;\n })}\n </ul>\n </FocusScope>\n </MenuStateContext.Provider>\n );\n}\n\n/**\n * Menus display a list of actions or options that a user can choose.\n */\n// forwardRef doesn't support generic parameters, so cast the result to the correct type\n// https://stackoverflow.com/questions/58469229/react-with-typescript-generics-while-using-react-forwardref\nconst _Menu = React.forwardRef(Menu) as <T>(props: SpectrumMenuProps<T> & {ref?: DOMRef<HTMLUListElement>}) => ReactElement;\nexport {_Menu as Menu};\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport CheckmarkMedium from '@spectrum-icons/ui/CheckmarkMedium';\nimport {classNames, ClearSlots, SlotProvider} from '@react-spectrum/utils';\nimport {DOMAttributes, Node} from '@react-types/shared';\nimport {FocusRing} from '@react-aria/focus';\nimport {Grid} from '@react-spectrum/layout';\nimport InfoOutline from '@spectrum-icons/workflow/InfoOutline';\n// @ts-ignore\nimport intlMessages from '../intl/*.json';\nimport {mergeProps, useSlotId} from '@react-aria/utils';\nimport React, {Key, useRef} from 'react';\nimport styles from '@adobe/spectrum-css-temp/components/menu/vars.css';\nimport {Text} from '@react-spectrum/text';\nimport {TreeState} from '@react-stately/tree';\nimport {useLocalizedStringFormatter} from '@react-aria/i18n';\nimport {useMenuContext, useMenuDialogContext} from './context';\nimport {useMenuItem} from '@react-aria/menu';\n\ninterface MenuItemProps<T> {\n item: Node<T>,\n state: TreeState<T>,\n isVirtualized?: boolean,\n onAction?: (key: Key) => void\n}\n\n/** @private */\nexport function MenuItem<T>(props: MenuItemProps<T>) {\n let {\n item,\n state,\n isVirtualized,\n onAction\n } = props;\n let stringFormatter = useLocalizedStringFormatter(intlMessages);\n let menuDialogContext = useMenuDialogContext();\n let {triggerRef} = menuDialogContext || {};\n let isMenuDialogTrigger = !!menuDialogContext;\n let isUnavailable = false;\n\n if (isMenuDialogTrigger) {\n isUnavailable = menuDialogContext.isUnavailable;\n }\n\n let {\n onClose,\n closeOnSelect\n } = useMenuContext();\n\n let {\n rendered,\n key\n } = item;\n\n let isSelected = state.selectionManager.isSelected(key);\n let isDisabled = state.disabledKeys.has(key);\n\n let ref = useRef<HTMLLIElement>(null);\n if (triggerRef) {\n ref = triggerRef;\n }\n\n let {\n menuItemProps,\n labelProps,\n descriptionProps,\n keyboardShortcutProps\n } = useMenuItem(\n {\n isSelected,\n isDisabled,\n 'aria-label': item['aria-label'],\n key,\n onClose,\n closeOnSelect,\n isVirtualized,\n onAction,\n 'aria-haspopup': isMenuDialogTrigger ? 'dialog' : undefined\n },\n state,\n ref\n );\n let endId = useSlotId();\n let endProps: DOMAttributes = {};\n if (endId) {\n endProps.id = endId;\n menuItemProps['aria-describedby'] = menuItemProps['aria-describedby'] + ' ' + endId;\n }\n\n let contents = typeof rendered === 'string'\n ? <Text>{rendered}</Text>\n : rendered;\n\n return (\n <FocusRing focusRingClass={classNames(styles, 'focus-ring')}>\n <li\n {...mergeProps(menuItemProps)}\n ref={ref}\n className={classNames(\n styles,\n 'spectrum-Menu-item',\n {\n 'is-disabled': isDisabled,\n 'is-selected': isSelected,\n 'is-selectable': state.selectionManager.selectionMode !== 'none',\n 'is-open': state.expandedKeys.has(key)\n }\n )}>\n <Grid\n UNSAFE_className={\n classNames(\n styles,\n 'spectrum-Menu-itemGrid'\n )\n }>\n <ClearSlots>\n <SlotProvider\n slots={{\n text: {UNSAFE_className: styles['spectrum-Menu-itemLabel'], ...labelProps},\n end: {UNSAFE_className: styles['spectrum-Menu-end'], ...endProps},\n icon: {UNSAFE_className: styles['spectrum-Menu-icon'], size: 'S'},\n description: {UNSAFE_className: styles['spectrum-Menu-description'], ...descriptionProps},\n keyboard: {UNSAFE_className: styles['spectrum-Menu-keyboard'], ...keyboardShortcutProps}\n }}>\n {contents}\n {isSelected &&\n <CheckmarkMedium\n slot=\"checkmark\"\n UNSAFE_className={\n classNames(\n styles,\n 'spectrum-Menu-checkmark'\n )\n } />\n }\n {\n isUnavailable && <InfoOutline slot=\"end\" size=\"XS\" alignSelf=\"center\" aria-label={stringFormatter.format('unavailable')} />\n }\n </SlotProvider>\n </ClearSlots>\n </Grid>\n </li>\n </FocusRing>\n );\n}\n","const _temp0 = require(\"./ar-AE.json\");\nconst _temp1 = require(\"./bg-BG.json\");\nconst _temp2 = require(\"./cs-CZ.json\");\nconst _temp3 = require(\"./da-DK.json\");\nconst _temp4 = require(\"./de-DE.json\");\nconst _temp5 = require(\"./el-GR.json\");\nconst _temp6 = require(\"./en-US.json\");\nconst _temp7 = require(\"./es-ES.json\");\nconst _temp8 = require(\"./et-EE.json\");\nconst _temp9 = require(\"./fi-FI.json\");\nconst _temp10 = require(\"./fr-FR.json\");\nconst _temp11 = require(\"./he-IL.json\");\nconst _temp12 = require(\"./hr-HR.json\");\nconst _temp13 = require(\"./hu-HU.json\");\nconst _temp14 = require(\"./it-IT.json\");\nconst _temp15 = require(\"./ja-JP.json\");\nconst _temp16 = require(\"./ko-KR.json\");\nconst _temp17 = require(\"./lt-LT.json\");\nconst _temp18 = require(\"./lv-LV.json\");\nconst _temp19 = require(\"./nb-NO.json\");\nconst _temp20 = require(\"./nl-NL.json\");\nconst _temp21 = require(\"./pl-PL.json\");\nconst _temp22 = require(\"./pt-BR.json\");\nconst _temp23 = require(\"./pt-PT.json\");\nconst _temp24 = require(\"./ro-RO.json\");\nconst _temp25 = require(\"./ru-RU.json\");\nconst _temp26 = require(\"./sk-SK.json\");\nconst _temp27 = require(\"./sl-SI.json\");\nconst _temp28 = require(\"./sr-SP.json\");\nconst _temp29 = require(\"./sv-SE.json\");\nconst _temp30 = require(\"./tr-TR.json\");\nconst _temp31 = require(\"./uk-UA.json\");\nconst _temp32 = require(\"./zh-CN.json\");\nconst _temp33 = require(\"./zh-TW.json\");\nmodule.exports = {\n \"ar-AE\": _temp0,\n \"bg-BG\": _temp1,\n \"cs-CZ\": _temp2,\n \"da-DK\": _temp3,\n \"de-DE\": _temp4,\n \"el-GR\": _temp5,\n \"en-US\": _temp6,\n \"es-ES\": _temp7,\n \"et-EE\": _temp8,\n \"fi-FI\": _temp9,\n \"fr-FR\": _temp10,\n \"he-IL\": _temp11,\n \"hr-HR\": _temp12,\n \"hu-HU\": _temp13,\n \"it-IT\": _temp14,\n \"ja-JP\": _temp15,\n \"ko-KR\": _temp16,\n \"lt-LT\": _temp17,\n \"lv-LV\": _temp18,\n \"nb-NO\": _temp19,\n \"nl-NL\": _temp20,\n \"pl-PL\": _temp21,\n \"pt-BR\": _temp22,\n \"pt-PT\": _temp23,\n \"ro-RO\": _temp24,\n \"ru-RU\": _temp25,\n \"sk-SK\": _temp26,\n \"sl-SI\": _temp27,\n \"sr-SP\": _temp28,\n \"sv-SE\": _temp29,\n \"tr-TR\": _temp30,\n \"uk-UA\": _temp31,\n \"zh-CN\": _temp32,\n \"zh-TW\": _temp33\n}","{\n \"moreActions\": \"المزيد من الإجراءات\",\n \"unavailable\": \"Unavailable\"\n}\n","{\n \"moreActions\": \"Повече действия\"\n}\n","{\n \"moreActions\": \"Další akce\"\n}\n","{\n \"moreActions\": \"Flere handlinger\"\n}\n","{\n \"moreActions\": \"Mehr Aktionen\"\n}\n","{\n \"moreActions\": \"Περισσότερες ενέργειες\"\n}\n","{\n \"moreActions\": \"More actions\",\n \"unavailable\": \"Unavailable\"\n}\n","{\n \"moreActions\": \"Más acciones\"\n}\n","{\n \"moreActions\": \"Veel toiminguid\"\n}\n","{\n \"moreActions\": \"Lisää toimintoja\"\n}\n","{\n \"moreActions\": \"Autres actions\"\n}\n","{\n \"moreActions\": \"פעולות נוספות\"\n}\n","{\n \"moreActions\": \"Dodatne radnje\"\n}\n","{\n \"moreActions\": \"További lehetőségek\"\n}\n","{\n \"moreActions\": \"Altre azioni\"\n}\n","{\n \"moreActions\": \"その他のアクション\"\n}\n","{\n \"moreActions\": \"기타 액션\"\n}\n","{\n \"moreActions\": \"Daugiau veiksmų\"\n}\n","{\n \"moreActions\": \"Citas darbības\"\n}\n","{\n \"moreActions\": \"Flere handlinger\"\n}\n","{\n \"moreActions\": \"Meer handelingen\"\n}\n","{\n \"moreActions\": \"Więcej akcji\"\n}\n","{\n \"moreActions\": \"Mais ações\"\n}\n","{\n \"moreActions\": \"Mais ações\"\n}\n","{\n \"moreActions\": \"Mai multe acțiuni\"\n}\n","{\n \"moreActions\": \"Дополнительные действия\"\n}\n","{\n \"moreActions\": \"Ďalšie akcie\"\n}\n","{\n \"moreActions\": \"Več možnosti\"\n}\n","{\n \"moreActions\": \"Dodatne radnje\"\n}\n","{\n \"moreActions\": \"Fler åtgärder\"\n}\n","{\n \"moreActions\": \"Daha fazla eylem\"\n}\n","{\n \"moreActions\": \"Більше дій\"\n}\n","{\n \"moreActions\": \"更多操作\"\n}\n","{\n \"moreActions\": \"更多動作\"\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {classNames} from '@react-spectrum/utils';\nimport {getChildNodes} from '@react-stately/collections';\nimport {MenuItem} from './MenuItem';\nimport {Node} from '@react-types/shared';\nimport React, {Fragment, Key} from 'react';\nimport styles from '@adobe/spectrum-css-temp/components/menu/vars.css';\nimport {TreeState} from '@react-stately/tree';\nimport {useMenuSection} from '@react-aria/menu';\nimport {useSeparator} from '@react-aria/separator';\n\ninterface MenuSectionProps<T> {\n item: Node<T>,\n state: TreeState<T>,\n onAction?: (key: Key) => void\n}\n\n/** @private */\nexport function MenuSection<T>(props: MenuSectionProps<T>) {\n let {item, state, onAction} = props;\n let {itemProps, headingProps, groupProps} = useMenuSection({\n heading: item.rendered,\n 'aria-label': item['aria-label']\n });\n\n let {separatorProps} = useSeparator({\n elementType: 'li'\n });\n\n return (\n <Fragment>\n {item.key !== state.collection.getFirstKey() &&\n <li\n {...separatorProps}\n className={classNames(\n styles,\n 'spectrum-Menu-divider'\n )} />\n }\n <li {...itemProps}>\n {item.rendered &&\n <span\n {...headingProps}\n className={\n classNames(\n styles,\n 'spectrum-Menu-sectionHeading'\n )\n }>\n {item.rendered}\n </span>\n }\n <ul\n {...groupProps}\n className={\n classNames(\n styles,\n 'spectrum-Menu'\n )\n }>\n {[...getChildNodes(item, state.collection)].map(node => {\n let item = (\n <MenuItem\n key={node.key}\n item={node}\n state={state}\n onAction={onAction} />\n );\n\n if (node.wrapper) {\n item = node.wrapper(item);\n }\n\n return item;\n })}\n </ul>\n </li>\n </Fragment>\n );\n}\n","/*\n * Copyright 2021 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {ActionButton} from '@react-spectrum/button';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {FocusableRef} from '@react-types/shared';\n// @ts-ignore\nimport intlMessages from '../intl/*.json';\nimport {Menu} from './Menu';\nimport {MenuTrigger} from './MenuTrigger';\nimport More from '@spectrum-icons/workflow/More';\nimport React, {forwardRef, ReactElement} from 'react';\nimport {SpectrumActionMenuProps} from '@react-types/menu';\nimport {useLocalizedStringFormatter} from '@react-aria/i18n';\nimport {useSlotProps} from '@react-spectrum/utils';\n\nfunction ActionMenu<T extends object>(props: SpectrumActionMenuProps<T>, ref: FocusableRef<HTMLButtonElement>) {\n props = useSlotProps(props, 'actionMenu');\n let stringFormatter = useLocalizedStringFormatter(intlMessages);\n let buttonProps = filterDOMProps(props, {labelable: true});\n if (buttonProps['aria-label'] === undefined) {\n buttonProps['aria-label'] = stringFormatter.format('moreActions');\n }\n\n return (\n <MenuTrigger\n isOpen={props.isOpen}\n defaultOpen={props.defaultOpen}\n onOpenChange={props.onOpenChange}\n align={props.align}\n direction={props.direction}\n shouldFlip={props.shouldFlip}>\n <ActionButton\n ref={ref}\n {...props}\n {...buttonProps}>\n <More />\n </ActionButton>\n <Menu\n children={props.children}\n items={props.items}\n disabledKeys={props.disabledKeys}\n onAction={props.onAction} />\n </MenuTrigger>\n );\n}\n\n/**\n * ActionMenu combines an ActionButton with a Menu for simple \"more actions\" use cases.\n */\nconst _ActionMenu = forwardRef(ActionMenu) as <T>(props: SpectrumActionMenuProps<T> & {ref?: FocusableRef<HTMLButtonElement>}) => ReactElement;\nexport {_ActionMenu as ActionMenu};\n","/*\n * Copyright 2023 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {classNames, SlotProvider, useIsMobileDevice} from '@react-spectrum/utils';\nimport helpStyles from '@adobe/spectrum-css-temp/components/contextualhelp/vars.css';\nimport {ItemProps} from '@react-types/shared';\nimport {MenuDialogContext, useMenuStateContext} from './context';\nimport {Modal, Popover} from '@react-spectrum/overlays';\nimport React, {Key, ReactElement, useRef} from 'react';\nimport {useOverlayTriggerState} from '@react-stately/overlays';\n\nfunction MenuDialogTrigger<T>(props: ItemProps<T> & {isUnavailable?: boolean, targetKey: Key}): ReactElement {\n let {isUnavailable} = props;\n\n let {state: menuState} = useMenuStateContext();\n let state = useOverlayTriggerState({isOpen: menuState.expandedKeys.has(props.targetKey), onOpenChange: (val) => {\n if (!val) {\n if (menuState.expandedKeys.has(props.targetKey)) {\n menuState.toggleKey(props.targetKey);\n }\n }\n }});\n let slots = {};\n if (isUnavailable) {\n slots = {\n dialog: {UNSAFE_className: classNames(helpStyles, 'react-spectrum-ContextualHelp-dialog')},\n content: {UNSAFE_className: helpStyles['react-spectrum-ContextualHelp-content']},\n footer: {UNSAFE_className: helpStyles['react-spectrum-ContextualHelp-footer']}\n };\n }\n let [trigger] = React.Children.toArray(props.children);\n let [, content] = props.children as [ReactElement, ReactElement];\n\n let isMobile = useIsMobileDevice();\n let triggerRef = useRef<HTMLLIElement>(null);\n return (\n <>\n <MenuDialogContext.Provider value={{isUnavailable, triggerRef}}>{trigger}</MenuDialogContext.Provider>\n <SlotProvider slots={slots}>\n {\n isMobile ? (\n <Modal state={state} isDismissable>\n {content}\n </Modal>\n ) : (\n <Popover state={state} triggerRef={triggerRef} placement=\"end top\" hideArrow offset={-10} isNonModal shouldContainFocus={false}>{content}</Popover>\n )\n }\n </SlotProvider>\n </>\n );\n}\n\nMenuDialogTrigger.getCollectionNode = function* getCollectionNode<T>(props: ItemProps<T>) {\n let [trigger] = React.Children.toArray(props.children) as ReactElement[];\n let [, content] = props.children as [ReactElement, ReactElement];\n\n yield {\n element: React.cloneElement(trigger, {...trigger.props, hasChildItems: true}),\n wrapper: (element) => (\n <MenuDialogTrigger key={element.key} targetKey={element.key} {...props}>\n {element}\n {content}\n </MenuDialogTrigger>\n )\n };\n};\n\nlet _Item = MenuDialogTrigger as <T>(props: ItemProps<T> & {isUnavailable?: boolean}) => JSX.Element;\nexport {_Item as MenuDialogTrigger};\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\n@import './index.css';\n@import './skin.css';\n"],"names":[],"version":3,"file":"main.js.map"}
|
|
1
|
+
{"mappings":"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","sources":["packages/@react-spectrum/menu/src/index.ts","packages/@react-spectrum/menu/src/MenuTrigger.tsx","packages/@react-spectrum/menu/src/context.ts","packages/@adobe/spectrum-css-temp/components/menu/vars.css","packages/@react-spectrum/menu/src/Menu.tsx","packages/@react-spectrum/menu/src/MenuItem.tsx","packages/@react-spectrum/menu/intl/*.js","packages/@react-spectrum/menu/intl/ar-AE.json","packages/@react-spectrum/menu/intl/bg-BG.json","packages/@react-spectrum/menu/intl/cs-CZ.json","packages/@react-spectrum/menu/intl/da-DK.json","packages/@react-spectrum/menu/intl/de-DE.json","packages/@react-spectrum/menu/intl/el-GR.json","packages/@react-spectrum/menu/intl/en-US.json","packages/@react-spectrum/menu/intl/es-ES.json","packages/@react-spectrum/menu/intl/et-EE.json","packages/@react-spectrum/menu/intl/fi-FI.json","packages/@react-spectrum/menu/intl/fr-FR.json","packages/@react-spectrum/menu/intl/he-IL.json","packages/@react-spectrum/menu/intl/hr-HR.json","packages/@react-spectrum/menu/intl/hu-HU.json","packages/@react-spectrum/menu/intl/it-IT.json","packages/@react-spectrum/menu/intl/ja-JP.json","packages/@react-spectrum/menu/intl/ko-KR.json","packages/@react-spectrum/menu/intl/lt-LT.json","packages/@react-spectrum/menu/intl/lv-LV.json","packages/@react-spectrum/menu/intl/nb-NO.json","packages/@react-spectrum/menu/intl/nl-NL.json","packages/@react-spectrum/menu/intl/pl-PL.json","packages/@react-spectrum/menu/intl/pt-BR.json","packages/@react-spectrum/menu/intl/pt-PT.json","packages/@react-spectrum/menu/intl/ro-RO.json","packages/@react-spectrum/menu/intl/ru-RU.json","packages/@react-spectrum/menu/intl/sk-SK.json","packages/@react-spectrum/menu/intl/sl-SI.json","packages/@react-spectrum/menu/intl/sr-SP.json","packages/@react-spectrum/menu/intl/sv-SE.json","packages/@react-spectrum/menu/intl/tr-TR.json","packages/@react-spectrum/menu/intl/uk-UA.json","packages/@react-spectrum/menu/intl/zh-CN.json","packages/@react-spectrum/menu/intl/zh-TW.json","packages/@react-spectrum/menu/src/MenuSection.tsx","packages/@react-spectrum/menu/src/ActionMenu.tsx","packages/@react-spectrum/menu/src/MenuDialogTrigger.tsx","packages/@adobe/spectrum-css-temp/components/contextualhelp/vars.css"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\n/// <reference types=\"css-module-types\" />\n\nexport {MenuTrigger} from './MenuTrigger';\nexport {Menu} from './Menu';\nexport {ActionMenu} from './ActionMenu';\nexport {MenuDialogTrigger} from './MenuDialogTrigger';\nexport {Item, Section} from '@react-stately/collections';\nexport type {SpectrumMenuTriggerProps} from '@react-types/menu';\nexport type {SpectrumActionMenuProps, SpectrumMenuProps} from '@react-types/menu';\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {classNames, SlotProvider, useDOMRef, useIsMobileDevice} from '@react-spectrum/utils';\nimport {DOMRef} from '@react-types/shared';\nimport {MenuContext} from './context';\nimport {Placement} from '@react-types/overlays';\nimport {Popover, Tray} from '@react-spectrum/overlays';\nimport {PressResponder} from '@react-aria/interactions';\nimport React, {forwardRef, Fragment, useRef} from 'react';\nimport {SpectrumMenuTriggerProps} from '@react-types/menu';\nimport styles from '@adobe/spectrum-css-temp/components/menu/vars.css';\nimport {useMenuTrigger} from '@react-aria/menu';\nimport {useMenuTriggerState} from '@react-stately/menu';\n\nfunction MenuTrigger(props: SpectrumMenuTriggerProps, ref: DOMRef<HTMLElement>) {\n let triggerRef = useRef<HTMLElement>();\n let domRef = useDOMRef(ref);\n let menuTriggerRef = domRef || triggerRef;\n let menuRef = useRef<HTMLUListElement>();\n let {\n children,\n align = 'start',\n shouldFlip = true,\n direction = 'bottom',\n closeOnSelect,\n trigger = 'press'\n } = props;\n\n let [menuTrigger, menu] = React.Children.toArray(children);\n let state = useMenuTriggerState(props);\n\n let {menuTriggerProps, menuProps} = useMenuTrigger({trigger}, state, menuTriggerRef);\n\n let initialPlacement: Placement;\n switch (direction) {\n case 'left':\n case 'right':\n case 'start':\n case 'end':\n initialPlacement = `${direction} ${align === 'end' ? 'bottom' : 'top'}` as Placement;\n break;\n case 'bottom':\n case 'top':\n default:\n initialPlacement = `${direction} ${align}` as Placement;\n }\n\n let isMobile = useIsMobileDevice();\n let menuContext = {\n ...menuProps,\n state,\n ref: menuRef,\n onClose: state.close,\n closeOnSelect,\n autoFocus: state.focusStrategy || true,\n UNSAFE_style: isMobile ? {\n width: '100%',\n maxHeight: 'inherit'\n } : undefined,\n UNSAFE_className: classNames(styles, {'spectrum-Menu-popover': !isMobile})\n };\n\n // On small screen devices, the menu is rendered in a tray, otherwise a popover.\n let overlay;\n if (isMobile) {\n overlay = (\n <Tray state={state}>\n {menu}\n </Tray>\n );\n } else {\n overlay = (\n <Popover\n state={state}\n triggerRef={menuTriggerRef}\n scrollRef={menuRef}\n placement={initialPlacement}\n hideArrow\n shouldFlip={shouldFlip}>\n {menu}\n </Popover>\n );\n }\n\n return (\n <Fragment>\n <SlotProvider slots={{actionButton: {holdAffordance: trigger === 'longPress'}}}>\n <PressResponder {...menuTriggerProps} ref={menuTriggerRef} isPressed={state.isOpen}>\n {menuTrigger}\n </PressResponder>\n </SlotProvider>\n <MenuContext.Provider value={menuContext}>\n {overlay}\n </MenuContext.Provider>\n </Fragment>\n );\n}\n\n/**\n * The MenuTrigger serves as a wrapper around a Menu and its associated trigger,\n * linking the Menu's open state with the trigger's press state.\n */\nlet _MenuTrigger = forwardRef(MenuTrigger);\nexport {_MenuTrigger as MenuTrigger};\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {FocusStrategy} from '@react-types/shared';\nimport {MenuTriggerState} from '@react-stately/menu';\nimport React, {HTMLAttributes, MutableRefObject, useContext} from 'react';\nimport {TreeState} from '@react-stately/tree';\n\nexport interface MenuContextValue extends HTMLAttributes<HTMLElement> {\n onClose?: () => void,\n closeOnSelect?: boolean,\n shouldFocusWrap?: boolean,\n autoFocus?: boolean | FocusStrategy,\n ref?: MutableRefObject<HTMLUListElement>,\n state?: MenuTriggerState\n}\n\nexport const MenuContext = React.createContext<MenuContextValue>({});\n\nexport function useMenuContext(): MenuContextValue {\n return useContext(MenuContext);\n}\n\nexport interface MenuDialogContextValue {\n isUnavailable?: boolean,\n triggerRef?: MutableRefObject<HTMLLIElement>\n}\n\nexport const MenuDialogContext = React.createContext<MenuDialogContextValue | undefined>(undefined);\n\nexport function useMenuDialogContext(): MenuDialogContextValue {\n return useContext(MenuDialogContext);\n}\n\nexport interface MenuStateContextValue<T> {\n state?: TreeState<T>\n}\n\nexport const MenuStateContext = React.createContext<MenuStateContextValue<any>>({});\n\nexport function useMenuStateContext<T>(): MenuStateContextValue<T> {\n return useContext(MenuStateContext);\n}\n\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\n@import './index.css';\n@import './skin.css';\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {classNames, useDOMRef, useStyleProps} from '@react-spectrum/utils';\nimport {DOMRef} from '@react-types/shared';\nimport {FocusScope} from '@react-aria/focus';\nimport {MenuContext, MenuStateContext} from './context';\nimport {MenuItem} from './MenuItem';\nimport {MenuSection} from './MenuSection';\nimport {mergeProps, useSyncRef} from '@react-aria/utils';\nimport React, {ReactElement, useContext} from 'react';\nimport {SpectrumMenuProps} from '@react-types/menu';\nimport styles from '@adobe/spectrum-css-temp/components/menu/vars.css';\nimport {useMenu} from '@react-aria/menu';\nimport {useTreeState} from '@react-stately/tree';\n\nfunction Menu<T extends object>(props: SpectrumMenuProps<T>, ref: DOMRef<HTMLUListElement>) {\n let contextProps = useContext(MenuContext);\n let completeProps = {\n ...mergeProps(contextProps, props)\n };\n\n let domRef = useDOMRef(ref);\n let state = useTreeState(completeProps);\n let {menuProps} = useMenu(completeProps, state, domRef);\n let {styleProps} = useStyleProps(completeProps);\n useSyncRef(contextProps, domRef);\n\n return (\n <MenuStateContext.Provider value={{state}}>\n <FocusScope contain={state.expandedKeys.size > 0}>\n <ul\n {...menuProps}\n {...styleProps}\n ref={domRef}\n className={\n classNames(\n styles,\n 'spectrum-Menu',\n styleProps.className\n )\n }>\n {[...state.collection].map(item => {\n if (item.type === 'section') {\n return (\n <MenuSection\n key={item.key}\n item={item}\n state={state}\n onAction={completeProps.onAction} />\n );\n }\n\n let menuItem = (\n <MenuItem\n key={item.key}\n item={item}\n state={state}\n onAction={completeProps.onAction} />\n );\n\n if (item.wrapper) {\n menuItem = item.wrapper(menuItem);\n }\n\n return menuItem;\n })}\n </ul>\n </FocusScope>\n </MenuStateContext.Provider>\n );\n}\n\n/**\n * Menus display a list of actions or options that a user can choose.\n */\n// forwardRef doesn't support generic parameters, so cast the result to the correct type\n// https://stackoverflow.com/questions/58469229/react-with-typescript-generics-while-using-react-forwardref\nconst _Menu = React.forwardRef(Menu) as <T>(props: SpectrumMenuProps<T> & {ref?: DOMRef<HTMLUListElement>}) => ReactElement;\nexport {_Menu as Menu};\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport CheckmarkMedium from '@spectrum-icons/ui/CheckmarkMedium';\nimport {classNames, ClearSlots, SlotProvider} from '@react-spectrum/utils';\nimport {DOMAttributes, Node} from '@react-types/shared';\nimport {filterDOMProps, mergeProps, useSlotId} from '@react-aria/utils';\nimport {FocusRing} from '@react-aria/focus';\nimport {Grid} from '@react-spectrum/layout';\nimport InfoOutline from '@spectrum-icons/workflow/InfoOutline';\n// @ts-ignore\nimport intlMessages from '../intl/*.json';\nimport React, {Key, useRef} from 'react';\nimport styles from '@adobe/spectrum-css-temp/components/menu/vars.css';\nimport {Text} from '@react-spectrum/text';\nimport {TreeState} from '@react-stately/tree';\nimport {useLocalizedStringFormatter} from '@react-aria/i18n';\nimport {useMenuContext, useMenuDialogContext} from './context';\nimport {useMenuItem} from '@react-aria/menu';\n\ninterface MenuItemProps<T> {\n item: Node<T>,\n state: TreeState<T>,\n isVirtualized?: boolean,\n onAction?: (key: Key) => void\n}\n\n/** @private */\nexport function MenuItem<T>(props: MenuItemProps<T>) {\n let {\n item,\n state,\n isVirtualized,\n onAction\n } = props;\n let stringFormatter = useLocalizedStringFormatter(intlMessages);\n let menuDialogContext = useMenuDialogContext();\n let {triggerRef} = menuDialogContext || {};\n let isMenuDialogTrigger = !!menuDialogContext;\n let isUnavailable = false;\n\n if (isMenuDialogTrigger) {\n isUnavailable = menuDialogContext.isUnavailable;\n }\n \n let domProps = filterDOMProps(item.props);\n\n let {\n onClose,\n closeOnSelect\n } = useMenuContext();\n\n let {\n rendered,\n key\n } = item;\n\n let isSelected = state.selectionManager.isSelected(key);\n let isDisabled = state.disabledKeys.has(key);\n\n let ref = useRef<HTMLLIElement>(null);\n if (triggerRef) {\n ref = triggerRef;\n }\n\n let {\n menuItemProps,\n labelProps,\n descriptionProps,\n keyboardShortcutProps\n } = useMenuItem(\n {\n isSelected,\n isDisabled,\n 'aria-label': item['aria-label'],\n key,\n onClose,\n closeOnSelect,\n isVirtualized,\n onAction,\n 'aria-haspopup': isMenuDialogTrigger ? 'dialog' : undefined\n },\n state,\n ref\n );\n let endId = useSlotId();\n let endProps: DOMAttributes = {};\n if (endId) {\n endProps.id = endId;\n menuItemProps['aria-describedby'] = menuItemProps['aria-describedby'] + ' ' + endId;\n }\n\n let contents = typeof rendered === 'string'\n ? <Text>{rendered}</Text>\n : rendered;\n\n return (\n <FocusRing focusRingClass={classNames(styles, 'focus-ring')}>\n <li\n {...mergeProps(menuItemProps, domProps)}\n ref={ref}\n className={classNames(\n styles,\n 'spectrum-Menu-item',\n {\n 'is-disabled': isDisabled,\n 'is-selected': isSelected,\n 'is-selectable': state.selectionManager.selectionMode !== 'none',\n 'is-open': state.expandedKeys.has(key)\n }\n )}>\n <Grid\n UNSAFE_className={\n classNames(\n styles,\n 'spectrum-Menu-itemGrid'\n )\n }>\n <ClearSlots>\n <SlotProvider\n slots={{\n text: {UNSAFE_className: styles['spectrum-Menu-itemLabel'], ...labelProps},\n end: {UNSAFE_className: styles['spectrum-Menu-end'], ...endProps},\n icon: {UNSAFE_className: styles['spectrum-Menu-icon'], size: 'S'},\n description: {UNSAFE_className: styles['spectrum-Menu-description'], ...descriptionProps},\n keyboard: {UNSAFE_className: styles['spectrum-Menu-keyboard'], ...keyboardShortcutProps}\n }}>\n {contents}\n {isSelected &&\n <CheckmarkMedium\n slot=\"checkmark\"\n UNSAFE_className={\n classNames(\n styles,\n 'spectrum-Menu-checkmark'\n )\n } />\n }\n {\n isUnavailable && <InfoOutline slot=\"end\" size=\"XS\" alignSelf=\"center\" aria-label={stringFormatter.format('unavailable')} />\n }\n </SlotProvider>\n </ClearSlots>\n </Grid>\n </li>\n </FocusRing>\n );\n}\n","const _temp0 = require(\"./ar-AE.json\");\nconst _temp1 = require(\"./bg-BG.json\");\nconst _temp2 = require(\"./cs-CZ.json\");\nconst _temp3 = require(\"./da-DK.json\");\nconst _temp4 = require(\"./de-DE.json\");\nconst _temp5 = require(\"./el-GR.json\");\nconst _temp6 = require(\"./en-US.json\");\nconst _temp7 = require(\"./es-ES.json\");\nconst _temp8 = require(\"./et-EE.json\");\nconst _temp9 = require(\"./fi-FI.json\");\nconst _temp10 = require(\"./fr-FR.json\");\nconst _temp11 = require(\"./he-IL.json\");\nconst _temp12 = require(\"./hr-HR.json\");\nconst _temp13 = require(\"./hu-HU.json\");\nconst _temp14 = require(\"./it-IT.json\");\nconst _temp15 = require(\"./ja-JP.json\");\nconst _temp16 = require(\"./ko-KR.json\");\nconst _temp17 = require(\"./lt-LT.json\");\nconst _temp18 = require(\"./lv-LV.json\");\nconst _temp19 = require(\"./nb-NO.json\");\nconst _temp20 = require(\"./nl-NL.json\");\nconst _temp21 = require(\"./pl-PL.json\");\nconst _temp22 = require(\"./pt-BR.json\");\nconst _temp23 = require(\"./pt-PT.json\");\nconst _temp24 = require(\"./ro-RO.json\");\nconst _temp25 = require(\"./ru-RU.json\");\nconst _temp26 = require(\"./sk-SK.json\");\nconst _temp27 = require(\"./sl-SI.json\");\nconst _temp28 = require(\"./sr-SP.json\");\nconst _temp29 = require(\"./sv-SE.json\");\nconst _temp30 = require(\"./tr-TR.json\");\nconst _temp31 = require(\"./uk-UA.json\");\nconst _temp32 = require(\"./zh-CN.json\");\nconst _temp33 = require(\"./zh-TW.json\");\nmodule.exports = {\n \"ar-AE\": _temp0,\n \"bg-BG\": _temp1,\n \"cs-CZ\": _temp2,\n \"da-DK\": _temp3,\n \"de-DE\": _temp4,\n \"el-GR\": _temp5,\n \"en-US\": _temp6,\n \"es-ES\": _temp7,\n \"et-EE\": _temp8,\n \"fi-FI\": _temp9,\n \"fr-FR\": _temp10,\n \"he-IL\": _temp11,\n \"hr-HR\": _temp12,\n \"hu-HU\": _temp13,\n \"it-IT\": _temp14,\n \"ja-JP\": _temp15,\n \"ko-KR\": _temp16,\n \"lt-LT\": _temp17,\n \"lv-LV\": _temp18,\n \"nb-NO\": _temp19,\n \"nl-NL\": _temp20,\n \"pl-PL\": _temp21,\n \"pt-BR\": _temp22,\n \"pt-PT\": _temp23,\n \"ro-RO\": _temp24,\n \"ru-RU\": _temp25,\n \"sk-SK\": _temp26,\n \"sl-SI\": _temp27,\n \"sr-SP\": _temp28,\n \"sv-SE\": _temp29,\n \"tr-TR\": _temp30,\n \"uk-UA\": _temp31,\n \"zh-CN\": _temp32,\n \"zh-TW\": _temp33\n}","{\n \"moreActions\": \"المزيد من الإجراءات\",\n \"unavailable\": \"Unavailable\"\n}\n","{\n \"moreActions\": \"Повече действия\"\n}\n","{\n \"moreActions\": \"Další akce\"\n}\n","{\n \"moreActions\": \"Flere handlinger\"\n}\n","{\n \"moreActions\": \"Mehr Aktionen\"\n}\n","{\n \"moreActions\": \"Περισσότερες ενέργειες\"\n}\n","{\n \"moreActions\": \"More actions\",\n \"unavailable\": \"Unavailable\"\n}\n","{\n \"moreActions\": \"Más acciones\"\n}\n","{\n \"moreActions\": \"Veel toiminguid\"\n}\n","{\n \"moreActions\": \"Lisää toimintoja\"\n}\n","{\n \"moreActions\": \"Autres actions\"\n}\n","{\n \"moreActions\": \"פעולות נוספות\"\n}\n","{\n \"moreActions\": \"Dodatne radnje\"\n}\n","{\n \"moreActions\": \"További lehetőségek\"\n}\n","{\n \"moreActions\": \"Altre azioni\"\n}\n","{\n \"moreActions\": \"その他のアクション\"\n}\n","{\n \"moreActions\": \"기타 액션\"\n}\n","{\n \"moreActions\": \"Daugiau veiksmų\"\n}\n","{\n \"moreActions\": \"Citas darbības\"\n}\n","{\n \"moreActions\": \"Flere handlinger\"\n}\n","{\n \"moreActions\": \"Meer handelingen\"\n}\n","{\n \"moreActions\": \"Więcej akcji\"\n}\n","{\n \"moreActions\": \"Mais ações\"\n}\n","{\n \"moreActions\": \"Mais ações\"\n}\n","{\n \"moreActions\": \"Mai multe acțiuni\"\n}\n","{\n \"moreActions\": \"Дополнительные действия\"\n}\n","{\n \"moreActions\": \"Ďalšie akcie\"\n}\n","{\n \"moreActions\": \"Več možnosti\"\n}\n","{\n \"moreActions\": \"Dodatne radnje\"\n}\n","{\n \"moreActions\": \"Fler åtgärder\"\n}\n","{\n \"moreActions\": \"Daha fazla eylem\"\n}\n","{\n \"moreActions\": \"Більше дій\"\n}\n","{\n \"moreActions\": \"更多操作\"\n}\n","{\n \"moreActions\": \"更多動作\"\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {classNames} from '@react-spectrum/utils';\nimport {getChildNodes} from '@react-stately/collections';\nimport {MenuItem} from './MenuItem';\nimport {Node} from '@react-types/shared';\nimport React, {Fragment, Key} from 'react';\nimport styles from '@adobe/spectrum-css-temp/components/menu/vars.css';\nimport {TreeState} from '@react-stately/tree';\nimport {useMenuSection} from '@react-aria/menu';\nimport {useSeparator} from '@react-aria/separator';\n\ninterface MenuSectionProps<T> {\n item: Node<T>,\n state: TreeState<T>,\n onAction?: (key: Key) => void\n}\n\n/** @private */\nexport function MenuSection<T>(props: MenuSectionProps<T>) {\n let {item, state, onAction} = props;\n let {itemProps, headingProps, groupProps} = useMenuSection({\n heading: item.rendered,\n 'aria-label': item['aria-label']\n });\n\n let {separatorProps} = useSeparator({\n elementType: 'li'\n });\n\n return (\n <Fragment>\n {item.key !== state.collection.getFirstKey() &&\n <li\n {...separatorProps}\n className={classNames(\n styles,\n 'spectrum-Menu-divider'\n )} />\n }\n <li {...itemProps}>\n {item.rendered &&\n <span\n {...headingProps}\n className={\n classNames(\n styles,\n 'spectrum-Menu-sectionHeading'\n )\n }>\n {item.rendered}\n </span>\n }\n <ul\n {...groupProps}\n className={\n classNames(\n styles,\n 'spectrum-Menu'\n )\n }>\n {[...getChildNodes(item, state.collection)].map(node => {\n let item = (\n <MenuItem\n key={node.key}\n item={node}\n state={state}\n onAction={onAction} />\n );\n\n if (node.wrapper) {\n item = node.wrapper(item);\n }\n\n return item;\n })}\n </ul>\n </li>\n </Fragment>\n );\n}\n","/*\n * Copyright 2021 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {ActionButton} from '@react-spectrum/button';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {FocusableRef} from '@react-types/shared';\n// @ts-ignore\nimport intlMessages from '../intl/*.json';\nimport {Menu} from './Menu';\nimport {MenuTrigger} from './MenuTrigger';\nimport More from '@spectrum-icons/workflow/More';\nimport React, {forwardRef, ReactElement} from 'react';\nimport {SpectrumActionMenuProps} from '@react-types/menu';\nimport {useLocalizedStringFormatter} from '@react-aria/i18n';\nimport {useSlotProps} from '@react-spectrum/utils';\n\nfunction ActionMenu<T extends object>(props: SpectrumActionMenuProps<T>, ref: FocusableRef<HTMLButtonElement>) {\n props = useSlotProps(props, 'actionMenu');\n let stringFormatter = useLocalizedStringFormatter(intlMessages);\n let buttonProps = filterDOMProps(props, {labelable: true});\n if (buttonProps['aria-label'] === undefined) {\n buttonProps['aria-label'] = stringFormatter.format('moreActions');\n }\n\n return (\n <MenuTrigger\n isOpen={props.isOpen}\n defaultOpen={props.defaultOpen}\n onOpenChange={props.onOpenChange}\n align={props.align}\n direction={props.direction}\n shouldFlip={props.shouldFlip}>\n <ActionButton\n ref={ref}\n {...props}\n {...buttonProps}>\n <More />\n </ActionButton>\n <Menu\n children={props.children}\n items={props.items}\n disabledKeys={props.disabledKeys}\n onAction={props.onAction} />\n </MenuTrigger>\n );\n}\n\n/**\n * ActionMenu combines an ActionButton with a Menu for simple \"more actions\" use cases.\n */\nconst _ActionMenu = forwardRef(ActionMenu) as <T>(props: SpectrumActionMenuProps<T> & {ref?: FocusableRef<HTMLButtonElement>}) => ReactElement;\nexport {_ActionMenu as ActionMenu};\n","/*\n * Copyright 2023 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {classNames, SlotProvider, useIsMobileDevice} from '@react-spectrum/utils';\nimport {DismissButton} from '@react-aria/overlays';\nimport helpStyles from '@adobe/spectrum-css-temp/components/contextualhelp/vars.css';\nimport {ItemProps} from '@react-types/shared';\nimport {MenuDialogContext, useMenuStateContext} from './context';\nimport {Modal, Popover} from '@react-spectrum/overlays';\nimport React, {Key, ReactElement, useRef} from 'react';\nimport {useOverlayTriggerState} from '@react-stately/overlays';\n\nfunction MenuDialogTrigger<T>(props: ItemProps<T> & {isUnavailable?: boolean, targetKey: Key}): ReactElement {\n let {isUnavailable} = props;\n\n let {state: menuState} = useMenuStateContext();\n let state = useOverlayTriggerState({isOpen: menuState.expandedKeys.has(props.targetKey), onOpenChange: (val) => {\n if (!val) {\n if (menuState.expandedKeys.has(props.targetKey)) {\n menuState.toggleKey(props.targetKey);\n }\n }\n }});\n let slots = {};\n if (isUnavailable) {\n slots = {\n dialog: {UNSAFE_className: classNames(helpStyles, 'react-spectrum-ContextualHelp-dialog')},\n content: {UNSAFE_className: helpStyles['react-spectrum-ContextualHelp-content']},\n footer: {UNSAFE_className: helpStyles['react-spectrum-ContextualHelp-footer']}\n };\n }\n let [trigger] = React.Children.toArray(props.children);\n let [, content] = props.children as [ReactElement, ReactElement];\n\n let isMobile = useIsMobileDevice();\n let triggerRef = useRef<HTMLLIElement>(null);\n return (\n <>\n <MenuDialogContext.Provider value={{isUnavailable, triggerRef}}>{trigger}</MenuDialogContext.Provider>\n <SlotProvider slots={slots}>\n {\n isMobile ? (\n <Modal state={state} isDismissable>\n <DismissButton onDismiss={state.close} />\n {content}\n <DismissButton onDismiss={state.close} />\n </Modal>\n ) : (\n <Popover state={state} triggerRef={triggerRef} placement=\"end top\" hideArrow offset={-10} isNonModal shouldContainFocus={false}>{content}</Popover>\n )\n }\n </SlotProvider>\n </>\n );\n}\n\nMenuDialogTrigger.getCollectionNode = function* getCollectionNode<T>(props: ItemProps<T>) {\n let [trigger] = React.Children.toArray(props.children) as ReactElement[];\n let [, content] = props.children as [ReactElement, ReactElement];\n\n yield {\n element: React.cloneElement(trigger, {...trigger.props, hasChildItems: true}),\n wrapper: (element) => (\n <MenuDialogTrigger key={element.key} targetKey={element.key} {...props}>\n {element}\n {content}\n </MenuDialogTrigger>\n )\n };\n};\n\nlet _Item = MenuDialogTrigger as <T>(props: ItemProps<T> & {isUnavailable?: boolean}) => JSX.Element;\nexport {_Item as MenuDialogTrigger};\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\n@import './index.css';\n@import './skin.css';\n"],"names":[],"version":3,"file":"main.js.map"}
|
package/dist/module.js
CHANGED
|
@@ -7,7 +7,7 @@ import $9SHwR$react, {useRef as $9SHwR$useRef, Fragment as $9SHwR$Fragment, forw
|
|
|
7
7
|
import {useMenuTrigger as $9SHwR$useMenuTrigger, useMenu as $9SHwR$useMenu, useMenuItem as $9SHwR$useMenuItem, useMenuSection as $9SHwR$useMenuSection} from "@react-aria/menu";
|
|
8
8
|
import {useMenuTriggerState as $9SHwR$useMenuTriggerState} from "@react-stately/menu";
|
|
9
9
|
import {FocusScope as $9SHwR$FocusScope, FocusRing as $9SHwR$FocusRing} from "@react-aria/focus";
|
|
10
|
-
import {mergeProps as $9SHwR$mergeProps, useSyncRef as $9SHwR$useSyncRef,
|
|
10
|
+
import {mergeProps as $9SHwR$mergeProps, useSyncRef as $9SHwR$useSyncRef, filterDOMProps as $9SHwR$filterDOMProps, useSlotId as $9SHwR$useSlotId} from "@react-aria/utils";
|
|
11
11
|
import {useTreeState as $9SHwR$useTreeState} from "@react-stately/tree";
|
|
12
12
|
import $9SHwR$spectrumiconsuiCheckmarkMedium from "@spectrum-icons/ui/CheckmarkMedium";
|
|
13
13
|
import {Grid as $9SHwR$Grid} from "@react-spectrum/layout";
|
|
@@ -17,6 +17,7 @@ import {useLocalizedStringFormatter as $9SHwR$useLocalizedStringFormatter} from
|
|
|
17
17
|
import {useSeparator as $9SHwR$useSeparator} from "@react-aria/separator";
|
|
18
18
|
import {ActionButton as $9SHwR$ActionButton} from "@react-spectrum/button";
|
|
19
19
|
import $9SHwR$spectrumiconsworkflowMore from "@spectrum-icons/workflow/More";
|
|
20
|
+
import {DismissButton as $9SHwR$DismissButton} from "@react-aria/overlays";
|
|
20
21
|
import {useOverlayTriggerState as $9SHwR$useOverlayTriggerState} from "@react-stately/overlays";
|
|
21
22
|
|
|
22
23
|
function $parcel$interopDefault(a) {
|
|
@@ -254,6 +255,7 @@ function $aa0b855f135b86e3$var$MenuTrigger(props, ref) {
|
|
|
254
255
|
|
|
255
256
|
|
|
256
257
|
|
|
258
|
+
|
|
257
259
|
var $d01b612f05eb8a1a$exports = {};
|
|
258
260
|
var $9c47fa309a7d4d43$exports = {};
|
|
259
261
|
$9c47fa309a7d4d43$exports = {
|
|
@@ -505,7 +507,6 @@ $d01b612f05eb8a1a$exports = {
|
|
|
505
507
|
|
|
506
508
|
|
|
507
509
|
|
|
508
|
-
|
|
509
510
|
function $48fb8f5e1202c980$export$2ce376c2cc3355c8(props) {
|
|
510
511
|
let { item: item , state: state , isVirtualized: isVirtualized , onAction: onAction } = props;
|
|
511
512
|
let stringFormatter = (0, $9SHwR$useLocalizedStringFormatter)((0, (/*@__PURE__*/$parcel$interopDefault($d01b612f05eb8a1a$exports))));
|
|
@@ -514,6 +515,7 @@ function $48fb8f5e1202c980$export$2ce376c2cc3355c8(props) {
|
|
|
514
515
|
let isMenuDialogTrigger = !!menuDialogContext;
|
|
515
516
|
let isUnavailable = false;
|
|
516
517
|
if (isMenuDialogTrigger) isUnavailable = menuDialogContext.isUnavailable;
|
|
518
|
+
let domProps = (0, $9SHwR$filterDOMProps)(item.props);
|
|
517
519
|
let { onClose: onClose , closeOnSelect: closeOnSelect } = (0, $d94604d52c3e3feb$export$21c7ab35b39f78ec)();
|
|
518
520
|
let { rendered: rendered , key: key } = item;
|
|
519
521
|
let isSelected = state.selectionManager.isSelected(key);
|
|
@@ -541,7 +543,7 @@ function $48fb8f5e1202c980$export$2ce376c2cc3355c8(props) {
|
|
|
541
543
|
return /*#__PURE__*/ (0, $9SHwR$react).createElement((0, $9SHwR$FocusRing), {
|
|
542
544
|
focusRingClass: (0, $9SHwR$classNames)((0, (/*@__PURE__*/$parcel$interopDefault($286d1cb34bb7dc84$exports))), "focus-ring")
|
|
543
545
|
}, /*#__PURE__*/ (0, $9SHwR$react).createElement("li", {
|
|
544
|
-
...(0, $9SHwR$mergeProps)(menuItemProps),
|
|
546
|
+
...(0, $9SHwR$mergeProps)(menuItemProps, domProps),
|
|
545
547
|
ref: ref,
|
|
546
548
|
className: (0, $9SHwR$classNames)((0, (/*@__PURE__*/$parcel$interopDefault($286d1cb34bb7dc84$exports))), "spectrum-Menu-item", {
|
|
547
549
|
"is-disabled": isDisabled,
|
|
@@ -748,6 +750,7 @@ function $43fa9949e6af393d$var$ActionMenu(props, ref) {
|
|
|
748
750
|
* OF ANY KIND, either express or implied. See the License for the specific language
|
|
749
751
|
* governing permissions and limitations under the License.
|
|
750
752
|
*/
|
|
753
|
+
|
|
751
754
|
var $c487b1d738ebeac2$exports = {};
|
|
752
755
|
|
|
753
756
|
$parcel$export($c487b1d738ebeac2$exports, "react-spectrum-ContextualHelp-button", () => $c487b1d738ebeac2$export$20d9583c9f1529c1, (v) => $c487b1d738ebeac2$export$20d9583c9f1529c1 = v);
|
|
@@ -805,7 +808,11 @@ function $81987f5f2bef0e97$var$MenuDialogTrigger(props) {
|
|
|
805
808
|
}, isMobile ? /*#__PURE__*/ (0, $9SHwR$react).createElement((0, $9SHwR$Modal), {
|
|
806
809
|
state: state,
|
|
807
810
|
isDismissable: true
|
|
808
|
-
},
|
|
811
|
+
}, /*#__PURE__*/ (0, $9SHwR$react).createElement((0, $9SHwR$DismissButton), {
|
|
812
|
+
onDismiss: state.close
|
|
813
|
+
}), content, /*#__PURE__*/ (0, $9SHwR$react).createElement((0, $9SHwR$DismissButton), {
|
|
814
|
+
onDismiss: state.close
|
|
815
|
+
})) : /*#__PURE__*/ (0, $9SHwR$react).createElement((0, $9SHwR$Popover), {
|
|
809
816
|
state: state,
|
|
810
817
|
triggerRef: triggerRef,
|
|
811
818
|
placement: "end top",
|
package/dist/module.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"mappings":"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","sources":["packages/@react-spectrum/menu/src/index.ts","packages/@react-spectrum/menu/src/MenuTrigger.tsx","packages/@react-spectrum/menu/src/context.ts","packages/@adobe/spectrum-css-temp/components/menu/vars.css","packages/@react-spectrum/menu/src/Menu.tsx","packages/@react-spectrum/menu/src/MenuItem.tsx","packages/@react-spectrum/menu/intl/*.js","packages/@react-spectrum/menu/intl/ar-AE.json","packages/@react-spectrum/menu/intl/bg-BG.json","packages/@react-spectrum/menu/intl/cs-CZ.json","packages/@react-spectrum/menu/intl/da-DK.json","packages/@react-spectrum/menu/intl/de-DE.json","packages/@react-spectrum/menu/intl/el-GR.json","packages/@react-spectrum/menu/intl/en-US.json","packages/@react-spectrum/menu/intl/es-ES.json","packages/@react-spectrum/menu/intl/et-EE.json","packages/@react-spectrum/menu/intl/fi-FI.json","packages/@react-spectrum/menu/intl/fr-FR.json","packages/@react-spectrum/menu/intl/he-IL.json","packages/@react-spectrum/menu/intl/hr-HR.json","packages/@react-spectrum/menu/intl/hu-HU.json","packages/@react-spectrum/menu/intl/it-IT.json","packages/@react-spectrum/menu/intl/ja-JP.json","packages/@react-spectrum/menu/intl/ko-KR.json","packages/@react-spectrum/menu/intl/lt-LT.json","packages/@react-spectrum/menu/intl/lv-LV.json","packages/@react-spectrum/menu/intl/nb-NO.json","packages/@react-spectrum/menu/intl/nl-NL.json","packages/@react-spectrum/menu/intl/pl-PL.json","packages/@react-spectrum/menu/intl/pt-BR.json","packages/@react-spectrum/menu/intl/pt-PT.json","packages/@react-spectrum/menu/intl/ro-RO.json","packages/@react-spectrum/menu/intl/ru-RU.json","packages/@react-spectrum/menu/intl/sk-SK.json","packages/@react-spectrum/menu/intl/sl-SI.json","packages/@react-spectrum/menu/intl/sr-SP.json","packages/@react-spectrum/menu/intl/sv-SE.json","packages/@react-spectrum/menu/intl/tr-TR.json","packages/@react-spectrum/menu/intl/uk-UA.json","packages/@react-spectrum/menu/intl/zh-CN.json","packages/@react-spectrum/menu/intl/zh-TW.json","packages/@react-spectrum/menu/src/MenuSection.tsx","packages/@react-spectrum/menu/src/ActionMenu.tsx","packages/@react-spectrum/menu/src/MenuDialogTrigger.tsx","packages/@adobe/spectrum-css-temp/components/contextualhelp/vars.css"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\n/// <reference types=\"css-module-types\" />\n\nexport {MenuTrigger} from './MenuTrigger';\nexport {Menu} from './Menu';\nexport {ActionMenu} from './ActionMenu';\nexport {MenuDialogTrigger} from './MenuDialogTrigger';\nexport {Item, Section} from '@react-stately/collections';\nexport type {SpectrumMenuTriggerProps} from '@react-types/menu';\nexport type {SpectrumActionMenuProps, SpectrumMenuProps} from '@react-types/menu';\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {classNames, SlotProvider, useDOMRef, useIsMobileDevice} from '@react-spectrum/utils';\nimport {DOMRef} from '@react-types/shared';\nimport {MenuContext} from './context';\nimport {Placement} from '@react-types/overlays';\nimport {Popover, Tray} from '@react-spectrum/overlays';\nimport {PressResponder} from '@react-aria/interactions';\nimport React, {forwardRef, Fragment, useRef} from 'react';\nimport {SpectrumMenuTriggerProps} from '@react-types/menu';\nimport styles from '@adobe/spectrum-css-temp/components/menu/vars.css';\nimport {useMenuTrigger} from '@react-aria/menu';\nimport {useMenuTriggerState} from '@react-stately/menu';\n\nfunction MenuTrigger(props: SpectrumMenuTriggerProps, ref: DOMRef<HTMLElement>) {\n let triggerRef = useRef<HTMLElement>();\n let domRef = useDOMRef(ref);\n let menuTriggerRef = domRef || triggerRef;\n let menuRef = useRef<HTMLUListElement>();\n let {\n children,\n align = 'start',\n shouldFlip = true,\n direction = 'bottom',\n closeOnSelect,\n trigger = 'press'\n } = props;\n\n let [menuTrigger, menu] = React.Children.toArray(children);\n let state = useMenuTriggerState(props);\n\n let {menuTriggerProps, menuProps} = useMenuTrigger({trigger}, state, menuTriggerRef);\n\n let initialPlacement: Placement;\n switch (direction) {\n case 'left':\n case 'right':\n case 'start':\n case 'end':\n initialPlacement = `${direction} ${align === 'end' ? 'bottom' : 'top'}` as Placement;\n break;\n case 'bottom':\n case 'top':\n default:\n initialPlacement = `${direction} ${align}` as Placement;\n }\n\n let isMobile = useIsMobileDevice();\n let menuContext = {\n ...menuProps,\n state,\n ref: menuRef,\n onClose: state.close,\n closeOnSelect,\n autoFocus: state.focusStrategy || true,\n UNSAFE_style: isMobile ? {\n width: '100%',\n maxHeight: 'inherit'\n } : undefined,\n UNSAFE_className: classNames(styles, {'spectrum-Menu-popover': !isMobile})\n };\n\n // On small screen devices, the menu is rendered in a tray, otherwise a popover.\n let overlay;\n if (isMobile) {\n overlay = (\n <Tray state={state}>\n {menu}\n </Tray>\n );\n } else {\n overlay = (\n <Popover\n state={state}\n triggerRef={menuTriggerRef}\n scrollRef={menuRef}\n placement={initialPlacement}\n hideArrow\n shouldFlip={shouldFlip}>\n {menu}\n </Popover>\n );\n }\n\n return (\n <Fragment>\n <SlotProvider slots={{actionButton: {holdAffordance: trigger === 'longPress'}}}>\n <PressResponder {...menuTriggerProps} ref={menuTriggerRef} isPressed={state.isOpen}>\n {menuTrigger}\n </PressResponder>\n </SlotProvider>\n <MenuContext.Provider value={menuContext}>\n {overlay}\n </MenuContext.Provider>\n </Fragment>\n );\n}\n\n/**\n * The MenuTrigger serves as a wrapper around a Menu and its associated trigger,\n * linking the Menu's open state with the trigger's press state.\n */\nlet _MenuTrigger = forwardRef(MenuTrigger);\nexport {_MenuTrigger as MenuTrigger};\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {FocusStrategy} from '@react-types/shared';\nimport {MenuTriggerState} from '@react-stately/menu';\nimport React, {HTMLAttributes, MutableRefObject, useContext} from 'react';\nimport {TreeState} from '@react-stately/tree';\n\nexport interface MenuContextValue extends HTMLAttributes<HTMLElement> {\n onClose?: () => void,\n closeOnSelect?: boolean,\n shouldFocusWrap?: boolean,\n autoFocus?: boolean | FocusStrategy,\n ref?: MutableRefObject<HTMLUListElement>,\n state?: MenuTriggerState\n}\n\nexport const MenuContext = React.createContext<MenuContextValue>({});\n\nexport function useMenuContext(): MenuContextValue {\n return useContext(MenuContext);\n}\n\nexport interface MenuDialogContextValue {\n isUnavailable?: boolean,\n triggerRef?: MutableRefObject<HTMLLIElement>\n}\n\nexport const MenuDialogContext = React.createContext<MenuDialogContextValue | undefined>(undefined);\n\nexport function useMenuDialogContext(): MenuDialogContextValue {\n return useContext(MenuDialogContext);\n}\n\nexport interface MenuStateContextValue<T> {\n state?: TreeState<T>\n}\n\nexport const MenuStateContext = React.createContext<MenuStateContextValue<any>>({});\n\nexport function useMenuStateContext<T>(): MenuStateContextValue<T> {\n return useContext(MenuStateContext);\n}\n\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\n@import './index.css';\n@import './skin.css';\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {classNames, useDOMRef, useStyleProps} from '@react-spectrum/utils';\nimport {DOMRef} from '@react-types/shared';\nimport {FocusScope} from '@react-aria/focus';\nimport {MenuContext, MenuStateContext} from './context';\nimport {MenuItem} from './MenuItem';\nimport {MenuSection} from './MenuSection';\nimport {mergeProps, useSyncRef} from '@react-aria/utils';\nimport React, {ReactElement, useContext} from 'react';\nimport {SpectrumMenuProps} from '@react-types/menu';\nimport styles from '@adobe/spectrum-css-temp/components/menu/vars.css';\nimport {useMenu} from '@react-aria/menu';\nimport {useTreeState} from '@react-stately/tree';\n\nfunction Menu<T extends object>(props: SpectrumMenuProps<T>, ref: DOMRef<HTMLUListElement>) {\n let contextProps = useContext(MenuContext);\n let completeProps = {\n ...mergeProps(contextProps, props)\n };\n\n let domRef = useDOMRef(ref);\n let state = useTreeState(completeProps);\n let {menuProps} = useMenu(completeProps, state, domRef);\n let {styleProps} = useStyleProps(completeProps);\n useSyncRef(contextProps, domRef);\n\n return (\n <MenuStateContext.Provider value={{state}}>\n <FocusScope contain={state.expandedKeys.size > 0}>\n <ul\n {...menuProps}\n {...styleProps}\n ref={domRef}\n className={\n classNames(\n styles,\n 'spectrum-Menu',\n styleProps.className\n )\n }>\n {[...state.collection].map(item => {\n if (item.type === 'section') {\n return (\n <MenuSection\n key={item.key}\n item={item}\n state={state}\n onAction={completeProps.onAction} />\n );\n }\n\n let menuItem = (\n <MenuItem\n key={item.key}\n item={item}\n state={state}\n onAction={completeProps.onAction} />\n );\n\n if (item.wrapper) {\n menuItem = item.wrapper(menuItem);\n }\n\n return menuItem;\n })}\n </ul>\n </FocusScope>\n </MenuStateContext.Provider>\n );\n}\n\n/**\n * Menus display a list of actions or options that a user can choose.\n */\n// forwardRef doesn't support generic parameters, so cast the result to the correct type\n// https://stackoverflow.com/questions/58469229/react-with-typescript-generics-while-using-react-forwardref\nconst _Menu = React.forwardRef(Menu) as <T>(props: SpectrumMenuProps<T> & {ref?: DOMRef<HTMLUListElement>}) => ReactElement;\nexport {_Menu as Menu};\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport CheckmarkMedium from '@spectrum-icons/ui/CheckmarkMedium';\nimport {classNames, ClearSlots, SlotProvider} from '@react-spectrum/utils';\nimport {DOMAttributes, Node} from '@react-types/shared';\nimport {FocusRing} from '@react-aria/focus';\nimport {Grid} from '@react-spectrum/layout';\nimport InfoOutline from '@spectrum-icons/workflow/InfoOutline';\n// @ts-ignore\nimport intlMessages from '../intl/*.json';\nimport {mergeProps, useSlotId} from '@react-aria/utils';\nimport React, {Key, useRef} from 'react';\nimport styles from '@adobe/spectrum-css-temp/components/menu/vars.css';\nimport {Text} from '@react-spectrum/text';\nimport {TreeState} from '@react-stately/tree';\nimport {useLocalizedStringFormatter} from '@react-aria/i18n';\nimport {useMenuContext, useMenuDialogContext} from './context';\nimport {useMenuItem} from '@react-aria/menu';\n\ninterface MenuItemProps<T> {\n item: Node<T>,\n state: TreeState<T>,\n isVirtualized?: boolean,\n onAction?: (key: Key) => void\n}\n\n/** @private */\nexport function MenuItem<T>(props: MenuItemProps<T>) {\n let {\n item,\n state,\n isVirtualized,\n onAction\n } = props;\n let stringFormatter = useLocalizedStringFormatter(intlMessages);\n let menuDialogContext = useMenuDialogContext();\n let {triggerRef} = menuDialogContext || {};\n let isMenuDialogTrigger = !!menuDialogContext;\n let isUnavailable = false;\n\n if (isMenuDialogTrigger) {\n isUnavailable = menuDialogContext.isUnavailable;\n }\n\n let {\n onClose,\n closeOnSelect\n } = useMenuContext();\n\n let {\n rendered,\n key\n } = item;\n\n let isSelected = state.selectionManager.isSelected(key);\n let isDisabled = state.disabledKeys.has(key);\n\n let ref = useRef<HTMLLIElement>(null);\n if (triggerRef) {\n ref = triggerRef;\n }\n\n let {\n menuItemProps,\n labelProps,\n descriptionProps,\n keyboardShortcutProps\n } = useMenuItem(\n {\n isSelected,\n isDisabled,\n 'aria-label': item['aria-label'],\n key,\n onClose,\n closeOnSelect,\n isVirtualized,\n onAction,\n 'aria-haspopup': isMenuDialogTrigger ? 'dialog' : undefined\n },\n state,\n ref\n );\n let endId = useSlotId();\n let endProps: DOMAttributes = {};\n if (endId) {\n endProps.id = endId;\n menuItemProps['aria-describedby'] = menuItemProps['aria-describedby'] + ' ' + endId;\n }\n\n let contents = typeof rendered === 'string'\n ? <Text>{rendered}</Text>\n : rendered;\n\n return (\n <FocusRing focusRingClass={classNames(styles, 'focus-ring')}>\n <li\n {...mergeProps(menuItemProps)}\n ref={ref}\n className={classNames(\n styles,\n 'spectrum-Menu-item',\n {\n 'is-disabled': isDisabled,\n 'is-selected': isSelected,\n 'is-selectable': state.selectionManager.selectionMode !== 'none',\n 'is-open': state.expandedKeys.has(key)\n }\n )}>\n <Grid\n UNSAFE_className={\n classNames(\n styles,\n 'spectrum-Menu-itemGrid'\n )\n }>\n <ClearSlots>\n <SlotProvider\n slots={{\n text: {UNSAFE_className: styles['spectrum-Menu-itemLabel'], ...labelProps},\n end: {UNSAFE_className: styles['spectrum-Menu-end'], ...endProps},\n icon: {UNSAFE_className: styles['spectrum-Menu-icon'], size: 'S'},\n description: {UNSAFE_className: styles['spectrum-Menu-description'], ...descriptionProps},\n keyboard: {UNSAFE_className: styles['spectrum-Menu-keyboard'], ...keyboardShortcutProps}\n }}>\n {contents}\n {isSelected &&\n <CheckmarkMedium\n slot=\"checkmark\"\n UNSAFE_className={\n classNames(\n styles,\n 'spectrum-Menu-checkmark'\n )\n } />\n }\n {\n isUnavailable && <InfoOutline slot=\"end\" size=\"XS\" alignSelf=\"center\" aria-label={stringFormatter.format('unavailable')} />\n }\n </SlotProvider>\n </ClearSlots>\n </Grid>\n </li>\n </FocusRing>\n );\n}\n","const _temp0 = require(\"./ar-AE.json\");\nconst _temp1 = require(\"./bg-BG.json\");\nconst _temp2 = require(\"./cs-CZ.json\");\nconst _temp3 = require(\"./da-DK.json\");\nconst _temp4 = require(\"./de-DE.json\");\nconst _temp5 = require(\"./el-GR.json\");\nconst _temp6 = require(\"./en-US.json\");\nconst _temp7 = require(\"./es-ES.json\");\nconst _temp8 = require(\"./et-EE.json\");\nconst _temp9 = require(\"./fi-FI.json\");\nconst _temp10 = require(\"./fr-FR.json\");\nconst _temp11 = require(\"./he-IL.json\");\nconst _temp12 = require(\"./hr-HR.json\");\nconst _temp13 = require(\"./hu-HU.json\");\nconst _temp14 = require(\"./it-IT.json\");\nconst _temp15 = require(\"./ja-JP.json\");\nconst _temp16 = require(\"./ko-KR.json\");\nconst _temp17 = require(\"./lt-LT.json\");\nconst _temp18 = require(\"./lv-LV.json\");\nconst _temp19 = require(\"./nb-NO.json\");\nconst _temp20 = require(\"./nl-NL.json\");\nconst _temp21 = require(\"./pl-PL.json\");\nconst _temp22 = require(\"./pt-BR.json\");\nconst _temp23 = require(\"./pt-PT.json\");\nconst _temp24 = require(\"./ro-RO.json\");\nconst _temp25 = require(\"./ru-RU.json\");\nconst _temp26 = require(\"./sk-SK.json\");\nconst _temp27 = require(\"./sl-SI.json\");\nconst _temp28 = require(\"./sr-SP.json\");\nconst _temp29 = require(\"./sv-SE.json\");\nconst _temp30 = require(\"./tr-TR.json\");\nconst _temp31 = require(\"./uk-UA.json\");\nconst _temp32 = require(\"./zh-CN.json\");\nconst _temp33 = require(\"./zh-TW.json\");\nmodule.exports = {\n \"ar-AE\": _temp0,\n \"bg-BG\": _temp1,\n \"cs-CZ\": _temp2,\n \"da-DK\": _temp3,\n \"de-DE\": _temp4,\n \"el-GR\": _temp5,\n \"en-US\": _temp6,\n \"es-ES\": _temp7,\n \"et-EE\": _temp8,\n \"fi-FI\": _temp9,\n \"fr-FR\": _temp10,\n \"he-IL\": _temp11,\n \"hr-HR\": _temp12,\n \"hu-HU\": _temp13,\n \"it-IT\": _temp14,\n \"ja-JP\": _temp15,\n \"ko-KR\": _temp16,\n \"lt-LT\": _temp17,\n \"lv-LV\": _temp18,\n \"nb-NO\": _temp19,\n \"nl-NL\": _temp20,\n \"pl-PL\": _temp21,\n \"pt-BR\": _temp22,\n \"pt-PT\": _temp23,\n \"ro-RO\": _temp24,\n \"ru-RU\": _temp25,\n \"sk-SK\": _temp26,\n \"sl-SI\": _temp27,\n \"sr-SP\": _temp28,\n \"sv-SE\": _temp29,\n \"tr-TR\": _temp30,\n \"uk-UA\": _temp31,\n \"zh-CN\": _temp32,\n \"zh-TW\": _temp33\n}","{\n \"moreActions\": \"المزيد من الإجراءات\",\n \"unavailable\": \"Unavailable\"\n}\n","{\n \"moreActions\": \"Повече действия\"\n}\n","{\n \"moreActions\": \"Další akce\"\n}\n","{\n \"moreActions\": \"Flere handlinger\"\n}\n","{\n \"moreActions\": \"Mehr Aktionen\"\n}\n","{\n \"moreActions\": \"Περισσότερες ενέργειες\"\n}\n","{\n \"moreActions\": \"More actions\",\n \"unavailable\": \"Unavailable\"\n}\n","{\n \"moreActions\": \"Más acciones\"\n}\n","{\n \"moreActions\": \"Veel toiminguid\"\n}\n","{\n \"moreActions\": \"Lisää toimintoja\"\n}\n","{\n \"moreActions\": \"Autres actions\"\n}\n","{\n \"moreActions\": \"פעולות נוספות\"\n}\n","{\n \"moreActions\": \"Dodatne radnje\"\n}\n","{\n \"moreActions\": \"További lehetőségek\"\n}\n","{\n \"moreActions\": \"Altre azioni\"\n}\n","{\n \"moreActions\": \"その他のアクション\"\n}\n","{\n \"moreActions\": \"기타 액션\"\n}\n","{\n \"moreActions\": \"Daugiau veiksmų\"\n}\n","{\n \"moreActions\": \"Citas darbības\"\n}\n","{\n \"moreActions\": \"Flere handlinger\"\n}\n","{\n \"moreActions\": \"Meer handelingen\"\n}\n","{\n \"moreActions\": \"Więcej akcji\"\n}\n","{\n \"moreActions\": \"Mais ações\"\n}\n","{\n \"moreActions\": \"Mais ações\"\n}\n","{\n \"moreActions\": \"Mai multe acțiuni\"\n}\n","{\n \"moreActions\": \"Дополнительные действия\"\n}\n","{\n \"moreActions\": \"Ďalšie akcie\"\n}\n","{\n \"moreActions\": \"Več možnosti\"\n}\n","{\n \"moreActions\": \"Dodatne radnje\"\n}\n","{\n \"moreActions\": \"Fler åtgärder\"\n}\n","{\n \"moreActions\": \"Daha fazla eylem\"\n}\n","{\n \"moreActions\": \"Більше дій\"\n}\n","{\n \"moreActions\": \"更多操作\"\n}\n","{\n \"moreActions\": \"更多動作\"\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {classNames} from '@react-spectrum/utils';\nimport {getChildNodes} from '@react-stately/collections';\nimport {MenuItem} from './MenuItem';\nimport {Node} from '@react-types/shared';\nimport React, {Fragment, Key} from 'react';\nimport styles from '@adobe/spectrum-css-temp/components/menu/vars.css';\nimport {TreeState} from '@react-stately/tree';\nimport {useMenuSection} from '@react-aria/menu';\nimport {useSeparator} from '@react-aria/separator';\n\ninterface MenuSectionProps<T> {\n item: Node<T>,\n state: TreeState<T>,\n onAction?: (key: Key) => void\n}\n\n/** @private */\nexport function MenuSection<T>(props: MenuSectionProps<T>) {\n let {item, state, onAction} = props;\n let {itemProps, headingProps, groupProps} = useMenuSection({\n heading: item.rendered,\n 'aria-label': item['aria-label']\n });\n\n let {separatorProps} = useSeparator({\n elementType: 'li'\n });\n\n return (\n <Fragment>\n {item.key !== state.collection.getFirstKey() &&\n <li\n {...separatorProps}\n className={classNames(\n styles,\n 'spectrum-Menu-divider'\n )} />\n }\n <li {...itemProps}>\n {item.rendered &&\n <span\n {...headingProps}\n className={\n classNames(\n styles,\n 'spectrum-Menu-sectionHeading'\n )\n }>\n {item.rendered}\n </span>\n }\n <ul\n {...groupProps}\n className={\n classNames(\n styles,\n 'spectrum-Menu'\n )\n }>\n {[...getChildNodes(item, state.collection)].map(node => {\n let item = (\n <MenuItem\n key={node.key}\n item={node}\n state={state}\n onAction={onAction} />\n );\n\n if (node.wrapper) {\n item = node.wrapper(item);\n }\n\n return item;\n })}\n </ul>\n </li>\n </Fragment>\n );\n}\n","/*\n * Copyright 2021 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {ActionButton} from '@react-spectrum/button';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {FocusableRef} from '@react-types/shared';\n// @ts-ignore\nimport intlMessages from '../intl/*.json';\nimport {Menu} from './Menu';\nimport {MenuTrigger} from './MenuTrigger';\nimport More from '@spectrum-icons/workflow/More';\nimport React, {forwardRef, ReactElement} from 'react';\nimport {SpectrumActionMenuProps} from '@react-types/menu';\nimport {useLocalizedStringFormatter} from '@react-aria/i18n';\nimport {useSlotProps} from '@react-spectrum/utils';\n\nfunction ActionMenu<T extends object>(props: SpectrumActionMenuProps<T>, ref: FocusableRef<HTMLButtonElement>) {\n props = useSlotProps(props, 'actionMenu');\n let stringFormatter = useLocalizedStringFormatter(intlMessages);\n let buttonProps = filterDOMProps(props, {labelable: true});\n if (buttonProps['aria-label'] === undefined) {\n buttonProps['aria-label'] = stringFormatter.format('moreActions');\n }\n\n return (\n <MenuTrigger\n isOpen={props.isOpen}\n defaultOpen={props.defaultOpen}\n onOpenChange={props.onOpenChange}\n align={props.align}\n direction={props.direction}\n shouldFlip={props.shouldFlip}>\n <ActionButton\n ref={ref}\n {...props}\n {...buttonProps}>\n <More />\n </ActionButton>\n <Menu\n children={props.children}\n items={props.items}\n disabledKeys={props.disabledKeys}\n onAction={props.onAction} />\n </MenuTrigger>\n );\n}\n\n/**\n * ActionMenu combines an ActionButton with a Menu for simple \"more actions\" use cases.\n */\nconst _ActionMenu = forwardRef(ActionMenu) as <T>(props: SpectrumActionMenuProps<T> & {ref?: FocusableRef<HTMLButtonElement>}) => ReactElement;\nexport {_ActionMenu as ActionMenu};\n","/*\n * Copyright 2023 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {classNames, SlotProvider, useIsMobileDevice} from '@react-spectrum/utils';\nimport helpStyles from '@adobe/spectrum-css-temp/components/contextualhelp/vars.css';\nimport {ItemProps} from '@react-types/shared';\nimport {MenuDialogContext, useMenuStateContext} from './context';\nimport {Modal, Popover} from '@react-spectrum/overlays';\nimport React, {Key, ReactElement, useRef} from 'react';\nimport {useOverlayTriggerState} from '@react-stately/overlays';\n\nfunction MenuDialogTrigger<T>(props: ItemProps<T> & {isUnavailable?: boolean, targetKey: Key}): ReactElement {\n let {isUnavailable} = props;\n\n let {state: menuState} = useMenuStateContext();\n let state = useOverlayTriggerState({isOpen: menuState.expandedKeys.has(props.targetKey), onOpenChange: (val) => {\n if (!val) {\n if (menuState.expandedKeys.has(props.targetKey)) {\n menuState.toggleKey(props.targetKey);\n }\n }\n }});\n let slots = {};\n if (isUnavailable) {\n slots = {\n dialog: {UNSAFE_className: classNames(helpStyles, 'react-spectrum-ContextualHelp-dialog')},\n content: {UNSAFE_className: helpStyles['react-spectrum-ContextualHelp-content']},\n footer: {UNSAFE_className: helpStyles['react-spectrum-ContextualHelp-footer']}\n };\n }\n let [trigger] = React.Children.toArray(props.children);\n let [, content] = props.children as [ReactElement, ReactElement];\n\n let isMobile = useIsMobileDevice();\n let triggerRef = useRef<HTMLLIElement>(null);\n return (\n <>\n <MenuDialogContext.Provider value={{isUnavailable, triggerRef}}>{trigger}</MenuDialogContext.Provider>\n <SlotProvider slots={slots}>\n {\n isMobile ? (\n <Modal state={state} isDismissable>\n {content}\n </Modal>\n ) : (\n <Popover state={state} triggerRef={triggerRef} placement=\"end top\" hideArrow offset={-10} isNonModal shouldContainFocus={false}>{content}</Popover>\n )\n }\n </SlotProvider>\n </>\n );\n}\n\nMenuDialogTrigger.getCollectionNode = function* getCollectionNode<T>(props: ItemProps<T>) {\n let [trigger] = React.Children.toArray(props.children) as ReactElement[];\n let [, content] = props.children as [ReactElement, ReactElement];\n\n yield {\n element: React.cloneElement(trigger, {...trigger.props, hasChildItems: true}),\n wrapper: (element) => (\n <MenuDialogTrigger key={element.key} targetKey={element.key} {...props}>\n {element}\n {content}\n </MenuDialogTrigger>\n )\n };\n};\n\nlet _Item = MenuDialogTrigger as <T>(props: ItemProps<T> & {isUnavailable?: boolean}) => JSX.Element;\nexport {_Item as MenuDialogTrigger};\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\n@import './index.css';\n@import './skin.css';\n"],"names":[],"version":3,"file":"module.js.map"}
|
|
1
|
+
{"mappings":"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","sources":["packages/@react-spectrum/menu/src/index.ts","packages/@react-spectrum/menu/src/MenuTrigger.tsx","packages/@react-spectrum/menu/src/context.ts","packages/@adobe/spectrum-css-temp/components/menu/vars.css","packages/@react-spectrum/menu/src/Menu.tsx","packages/@react-spectrum/menu/src/MenuItem.tsx","packages/@react-spectrum/menu/intl/*.js","packages/@react-spectrum/menu/intl/ar-AE.json","packages/@react-spectrum/menu/intl/bg-BG.json","packages/@react-spectrum/menu/intl/cs-CZ.json","packages/@react-spectrum/menu/intl/da-DK.json","packages/@react-spectrum/menu/intl/de-DE.json","packages/@react-spectrum/menu/intl/el-GR.json","packages/@react-spectrum/menu/intl/en-US.json","packages/@react-spectrum/menu/intl/es-ES.json","packages/@react-spectrum/menu/intl/et-EE.json","packages/@react-spectrum/menu/intl/fi-FI.json","packages/@react-spectrum/menu/intl/fr-FR.json","packages/@react-spectrum/menu/intl/he-IL.json","packages/@react-spectrum/menu/intl/hr-HR.json","packages/@react-spectrum/menu/intl/hu-HU.json","packages/@react-spectrum/menu/intl/it-IT.json","packages/@react-spectrum/menu/intl/ja-JP.json","packages/@react-spectrum/menu/intl/ko-KR.json","packages/@react-spectrum/menu/intl/lt-LT.json","packages/@react-spectrum/menu/intl/lv-LV.json","packages/@react-spectrum/menu/intl/nb-NO.json","packages/@react-spectrum/menu/intl/nl-NL.json","packages/@react-spectrum/menu/intl/pl-PL.json","packages/@react-spectrum/menu/intl/pt-BR.json","packages/@react-spectrum/menu/intl/pt-PT.json","packages/@react-spectrum/menu/intl/ro-RO.json","packages/@react-spectrum/menu/intl/ru-RU.json","packages/@react-spectrum/menu/intl/sk-SK.json","packages/@react-spectrum/menu/intl/sl-SI.json","packages/@react-spectrum/menu/intl/sr-SP.json","packages/@react-spectrum/menu/intl/sv-SE.json","packages/@react-spectrum/menu/intl/tr-TR.json","packages/@react-spectrum/menu/intl/uk-UA.json","packages/@react-spectrum/menu/intl/zh-CN.json","packages/@react-spectrum/menu/intl/zh-TW.json","packages/@react-spectrum/menu/src/MenuSection.tsx","packages/@react-spectrum/menu/src/ActionMenu.tsx","packages/@react-spectrum/menu/src/MenuDialogTrigger.tsx","packages/@adobe/spectrum-css-temp/components/contextualhelp/vars.css"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\n/// <reference types=\"css-module-types\" />\n\nexport {MenuTrigger} from './MenuTrigger';\nexport {Menu} from './Menu';\nexport {ActionMenu} from './ActionMenu';\nexport {MenuDialogTrigger} from './MenuDialogTrigger';\nexport {Item, Section} from '@react-stately/collections';\nexport type {SpectrumMenuTriggerProps} from '@react-types/menu';\nexport type {SpectrumActionMenuProps, SpectrumMenuProps} from '@react-types/menu';\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {classNames, SlotProvider, useDOMRef, useIsMobileDevice} from '@react-spectrum/utils';\nimport {DOMRef} from '@react-types/shared';\nimport {MenuContext} from './context';\nimport {Placement} from '@react-types/overlays';\nimport {Popover, Tray} from '@react-spectrum/overlays';\nimport {PressResponder} from '@react-aria/interactions';\nimport React, {forwardRef, Fragment, useRef} from 'react';\nimport {SpectrumMenuTriggerProps} from '@react-types/menu';\nimport styles from '@adobe/spectrum-css-temp/components/menu/vars.css';\nimport {useMenuTrigger} from '@react-aria/menu';\nimport {useMenuTriggerState} from '@react-stately/menu';\n\nfunction MenuTrigger(props: SpectrumMenuTriggerProps, ref: DOMRef<HTMLElement>) {\n let triggerRef = useRef<HTMLElement>();\n let domRef = useDOMRef(ref);\n let menuTriggerRef = domRef || triggerRef;\n let menuRef = useRef<HTMLUListElement>();\n let {\n children,\n align = 'start',\n shouldFlip = true,\n direction = 'bottom',\n closeOnSelect,\n trigger = 'press'\n } = props;\n\n let [menuTrigger, menu] = React.Children.toArray(children);\n let state = useMenuTriggerState(props);\n\n let {menuTriggerProps, menuProps} = useMenuTrigger({trigger}, state, menuTriggerRef);\n\n let initialPlacement: Placement;\n switch (direction) {\n case 'left':\n case 'right':\n case 'start':\n case 'end':\n initialPlacement = `${direction} ${align === 'end' ? 'bottom' : 'top'}` as Placement;\n break;\n case 'bottom':\n case 'top':\n default:\n initialPlacement = `${direction} ${align}` as Placement;\n }\n\n let isMobile = useIsMobileDevice();\n let menuContext = {\n ...menuProps,\n state,\n ref: menuRef,\n onClose: state.close,\n closeOnSelect,\n autoFocus: state.focusStrategy || true,\n UNSAFE_style: isMobile ? {\n width: '100%',\n maxHeight: 'inherit'\n } : undefined,\n UNSAFE_className: classNames(styles, {'spectrum-Menu-popover': !isMobile})\n };\n\n // On small screen devices, the menu is rendered in a tray, otherwise a popover.\n let overlay;\n if (isMobile) {\n overlay = (\n <Tray state={state}>\n {menu}\n </Tray>\n );\n } else {\n overlay = (\n <Popover\n state={state}\n triggerRef={menuTriggerRef}\n scrollRef={menuRef}\n placement={initialPlacement}\n hideArrow\n shouldFlip={shouldFlip}>\n {menu}\n </Popover>\n );\n }\n\n return (\n <Fragment>\n <SlotProvider slots={{actionButton: {holdAffordance: trigger === 'longPress'}}}>\n <PressResponder {...menuTriggerProps} ref={menuTriggerRef} isPressed={state.isOpen}>\n {menuTrigger}\n </PressResponder>\n </SlotProvider>\n <MenuContext.Provider value={menuContext}>\n {overlay}\n </MenuContext.Provider>\n </Fragment>\n );\n}\n\n/**\n * The MenuTrigger serves as a wrapper around a Menu and its associated trigger,\n * linking the Menu's open state with the trigger's press state.\n */\nlet _MenuTrigger = forwardRef(MenuTrigger);\nexport {_MenuTrigger as MenuTrigger};\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {FocusStrategy} from '@react-types/shared';\nimport {MenuTriggerState} from '@react-stately/menu';\nimport React, {HTMLAttributes, MutableRefObject, useContext} from 'react';\nimport {TreeState} from '@react-stately/tree';\n\nexport interface MenuContextValue extends HTMLAttributes<HTMLElement> {\n onClose?: () => void,\n closeOnSelect?: boolean,\n shouldFocusWrap?: boolean,\n autoFocus?: boolean | FocusStrategy,\n ref?: MutableRefObject<HTMLUListElement>,\n state?: MenuTriggerState\n}\n\nexport const MenuContext = React.createContext<MenuContextValue>({});\n\nexport function useMenuContext(): MenuContextValue {\n return useContext(MenuContext);\n}\n\nexport interface MenuDialogContextValue {\n isUnavailable?: boolean,\n triggerRef?: MutableRefObject<HTMLLIElement>\n}\n\nexport const MenuDialogContext = React.createContext<MenuDialogContextValue | undefined>(undefined);\n\nexport function useMenuDialogContext(): MenuDialogContextValue {\n return useContext(MenuDialogContext);\n}\n\nexport interface MenuStateContextValue<T> {\n state?: TreeState<T>\n}\n\nexport const MenuStateContext = React.createContext<MenuStateContextValue<any>>({});\n\nexport function useMenuStateContext<T>(): MenuStateContextValue<T> {\n return useContext(MenuStateContext);\n}\n\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\n@import './index.css';\n@import './skin.css';\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {classNames, useDOMRef, useStyleProps} from '@react-spectrum/utils';\nimport {DOMRef} from '@react-types/shared';\nimport {FocusScope} from '@react-aria/focus';\nimport {MenuContext, MenuStateContext} from './context';\nimport {MenuItem} from './MenuItem';\nimport {MenuSection} from './MenuSection';\nimport {mergeProps, useSyncRef} from '@react-aria/utils';\nimport React, {ReactElement, useContext} from 'react';\nimport {SpectrumMenuProps} from '@react-types/menu';\nimport styles from '@adobe/spectrum-css-temp/components/menu/vars.css';\nimport {useMenu} from '@react-aria/menu';\nimport {useTreeState} from '@react-stately/tree';\n\nfunction Menu<T extends object>(props: SpectrumMenuProps<T>, ref: DOMRef<HTMLUListElement>) {\n let contextProps = useContext(MenuContext);\n let completeProps = {\n ...mergeProps(contextProps, props)\n };\n\n let domRef = useDOMRef(ref);\n let state = useTreeState(completeProps);\n let {menuProps} = useMenu(completeProps, state, domRef);\n let {styleProps} = useStyleProps(completeProps);\n useSyncRef(contextProps, domRef);\n\n return (\n <MenuStateContext.Provider value={{state}}>\n <FocusScope contain={state.expandedKeys.size > 0}>\n <ul\n {...menuProps}\n {...styleProps}\n ref={domRef}\n className={\n classNames(\n styles,\n 'spectrum-Menu',\n styleProps.className\n )\n }>\n {[...state.collection].map(item => {\n if (item.type === 'section') {\n return (\n <MenuSection\n key={item.key}\n item={item}\n state={state}\n onAction={completeProps.onAction} />\n );\n }\n\n let menuItem = (\n <MenuItem\n key={item.key}\n item={item}\n state={state}\n onAction={completeProps.onAction} />\n );\n\n if (item.wrapper) {\n menuItem = item.wrapper(menuItem);\n }\n\n return menuItem;\n })}\n </ul>\n </FocusScope>\n </MenuStateContext.Provider>\n );\n}\n\n/**\n * Menus display a list of actions or options that a user can choose.\n */\n// forwardRef doesn't support generic parameters, so cast the result to the correct type\n// https://stackoverflow.com/questions/58469229/react-with-typescript-generics-while-using-react-forwardref\nconst _Menu = React.forwardRef(Menu) as <T>(props: SpectrumMenuProps<T> & {ref?: DOMRef<HTMLUListElement>}) => ReactElement;\nexport {_Menu as Menu};\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport CheckmarkMedium from '@spectrum-icons/ui/CheckmarkMedium';\nimport {classNames, ClearSlots, SlotProvider} from '@react-spectrum/utils';\nimport {DOMAttributes, Node} from '@react-types/shared';\nimport {filterDOMProps, mergeProps, useSlotId} from '@react-aria/utils';\nimport {FocusRing} from '@react-aria/focus';\nimport {Grid} from '@react-spectrum/layout';\nimport InfoOutline from '@spectrum-icons/workflow/InfoOutline';\n// @ts-ignore\nimport intlMessages from '../intl/*.json';\nimport React, {Key, useRef} from 'react';\nimport styles from '@adobe/spectrum-css-temp/components/menu/vars.css';\nimport {Text} from '@react-spectrum/text';\nimport {TreeState} from '@react-stately/tree';\nimport {useLocalizedStringFormatter} from '@react-aria/i18n';\nimport {useMenuContext, useMenuDialogContext} from './context';\nimport {useMenuItem} from '@react-aria/menu';\n\ninterface MenuItemProps<T> {\n item: Node<T>,\n state: TreeState<T>,\n isVirtualized?: boolean,\n onAction?: (key: Key) => void\n}\n\n/** @private */\nexport function MenuItem<T>(props: MenuItemProps<T>) {\n let {\n item,\n state,\n isVirtualized,\n onAction\n } = props;\n let stringFormatter = useLocalizedStringFormatter(intlMessages);\n let menuDialogContext = useMenuDialogContext();\n let {triggerRef} = menuDialogContext || {};\n let isMenuDialogTrigger = !!menuDialogContext;\n let isUnavailable = false;\n\n if (isMenuDialogTrigger) {\n isUnavailable = menuDialogContext.isUnavailable;\n }\n \n let domProps = filterDOMProps(item.props);\n\n let {\n onClose,\n closeOnSelect\n } = useMenuContext();\n\n let {\n rendered,\n key\n } = item;\n\n let isSelected = state.selectionManager.isSelected(key);\n let isDisabled = state.disabledKeys.has(key);\n\n let ref = useRef<HTMLLIElement>(null);\n if (triggerRef) {\n ref = triggerRef;\n }\n\n let {\n menuItemProps,\n labelProps,\n descriptionProps,\n keyboardShortcutProps\n } = useMenuItem(\n {\n isSelected,\n isDisabled,\n 'aria-label': item['aria-label'],\n key,\n onClose,\n closeOnSelect,\n isVirtualized,\n onAction,\n 'aria-haspopup': isMenuDialogTrigger ? 'dialog' : undefined\n },\n state,\n ref\n );\n let endId = useSlotId();\n let endProps: DOMAttributes = {};\n if (endId) {\n endProps.id = endId;\n menuItemProps['aria-describedby'] = menuItemProps['aria-describedby'] + ' ' + endId;\n }\n\n let contents = typeof rendered === 'string'\n ? <Text>{rendered}</Text>\n : rendered;\n\n return (\n <FocusRing focusRingClass={classNames(styles, 'focus-ring')}>\n <li\n {...mergeProps(menuItemProps, domProps)}\n ref={ref}\n className={classNames(\n styles,\n 'spectrum-Menu-item',\n {\n 'is-disabled': isDisabled,\n 'is-selected': isSelected,\n 'is-selectable': state.selectionManager.selectionMode !== 'none',\n 'is-open': state.expandedKeys.has(key)\n }\n )}>\n <Grid\n UNSAFE_className={\n classNames(\n styles,\n 'spectrum-Menu-itemGrid'\n )\n }>\n <ClearSlots>\n <SlotProvider\n slots={{\n text: {UNSAFE_className: styles['spectrum-Menu-itemLabel'], ...labelProps},\n end: {UNSAFE_className: styles['spectrum-Menu-end'], ...endProps},\n icon: {UNSAFE_className: styles['spectrum-Menu-icon'], size: 'S'},\n description: {UNSAFE_className: styles['spectrum-Menu-description'], ...descriptionProps},\n keyboard: {UNSAFE_className: styles['spectrum-Menu-keyboard'], ...keyboardShortcutProps}\n }}>\n {contents}\n {isSelected &&\n <CheckmarkMedium\n slot=\"checkmark\"\n UNSAFE_className={\n classNames(\n styles,\n 'spectrum-Menu-checkmark'\n )\n } />\n }\n {\n isUnavailable && <InfoOutline slot=\"end\" size=\"XS\" alignSelf=\"center\" aria-label={stringFormatter.format('unavailable')} />\n }\n </SlotProvider>\n </ClearSlots>\n </Grid>\n </li>\n </FocusRing>\n );\n}\n","const _temp0 = require(\"./ar-AE.json\");\nconst _temp1 = require(\"./bg-BG.json\");\nconst _temp2 = require(\"./cs-CZ.json\");\nconst _temp3 = require(\"./da-DK.json\");\nconst _temp4 = require(\"./de-DE.json\");\nconst _temp5 = require(\"./el-GR.json\");\nconst _temp6 = require(\"./en-US.json\");\nconst _temp7 = require(\"./es-ES.json\");\nconst _temp8 = require(\"./et-EE.json\");\nconst _temp9 = require(\"./fi-FI.json\");\nconst _temp10 = require(\"./fr-FR.json\");\nconst _temp11 = require(\"./he-IL.json\");\nconst _temp12 = require(\"./hr-HR.json\");\nconst _temp13 = require(\"./hu-HU.json\");\nconst _temp14 = require(\"./it-IT.json\");\nconst _temp15 = require(\"./ja-JP.json\");\nconst _temp16 = require(\"./ko-KR.json\");\nconst _temp17 = require(\"./lt-LT.json\");\nconst _temp18 = require(\"./lv-LV.json\");\nconst _temp19 = require(\"./nb-NO.json\");\nconst _temp20 = require(\"./nl-NL.json\");\nconst _temp21 = require(\"./pl-PL.json\");\nconst _temp22 = require(\"./pt-BR.json\");\nconst _temp23 = require(\"./pt-PT.json\");\nconst _temp24 = require(\"./ro-RO.json\");\nconst _temp25 = require(\"./ru-RU.json\");\nconst _temp26 = require(\"./sk-SK.json\");\nconst _temp27 = require(\"./sl-SI.json\");\nconst _temp28 = require(\"./sr-SP.json\");\nconst _temp29 = require(\"./sv-SE.json\");\nconst _temp30 = require(\"./tr-TR.json\");\nconst _temp31 = require(\"./uk-UA.json\");\nconst _temp32 = require(\"./zh-CN.json\");\nconst _temp33 = require(\"./zh-TW.json\");\nmodule.exports = {\n \"ar-AE\": _temp0,\n \"bg-BG\": _temp1,\n \"cs-CZ\": _temp2,\n \"da-DK\": _temp3,\n \"de-DE\": _temp4,\n \"el-GR\": _temp5,\n \"en-US\": _temp6,\n \"es-ES\": _temp7,\n \"et-EE\": _temp8,\n \"fi-FI\": _temp9,\n \"fr-FR\": _temp10,\n \"he-IL\": _temp11,\n \"hr-HR\": _temp12,\n \"hu-HU\": _temp13,\n \"it-IT\": _temp14,\n \"ja-JP\": _temp15,\n \"ko-KR\": _temp16,\n \"lt-LT\": _temp17,\n \"lv-LV\": _temp18,\n \"nb-NO\": _temp19,\n \"nl-NL\": _temp20,\n \"pl-PL\": _temp21,\n \"pt-BR\": _temp22,\n \"pt-PT\": _temp23,\n \"ro-RO\": _temp24,\n \"ru-RU\": _temp25,\n \"sk-SK\": _temp26,\n \"sl-SI\": _temp27,\n \"sr-SP\": _temp28,\n \"sv-SE\": _temp29,\n \"tr-TR\": _temp30,\n \"uk-UA\": _temp31,\n \"zh-CN\": _temp32,\n \"zh-TW\": _temp33\n}","{\n \"moreActions\": \"المزيد من الإجراءات\",\n \"unavailable\": \"Unavailable\"\n}\n","{\n \"moreActions\": \"Повече действия\"\n}\n","{\n \"moreActions\": \"Další akce\"\n}\n","{\n \"moreActions\": \"Flere handlinger\"\n}\n","{\n \"moreActions\": \"Mehr Aktionen\"\n}\n","{\n \"moreActions\": \"Περισσότερες ενέργειες\"\n}\n","{\n \"moreActions\": \"More actions\",\n \"unavailable\": \"Unavailable\"\n}\n","{\n \"moreActions\": \"Más acciones\"\n}\n","{\n \"moreActions\": \"Veel toiminguid\"\n}\n","{\n \"moreActions\": \"Lisää toimintoja\"\n}\n","{\n \"moreActions\": \"Autres actions\"\n}\n","{\n \"moreActions\": \"פעולות נוספות\"\n}\n","{\n \"moreActions\": \"Dodatne radnje\"\n}\n","{\n \"moreActions\": \"További lehetőségek\"\n}\n","{\n \"moreActions\": \"Altre azioni\"\n}\n","{\n \"moreActions\": \"その他のアクション\"\n}\n","{\n \"moreActions\": \"기타 액션\"\n}\n","{\n \"moreActions\": \"Daugiau veiksmų\"\n}\n","{\n \"moreActions\": \"Citas darbības\"\n}\n","{\n \"moreActions\": \"Flere handlinger\"\n}\n","{\n \"moreActions\": \"Meer handelingen\"\n}\n","{\n \"moreActions\": \"Więcej akcji\"\n}\n","{\n \"moreActions\": \"Mais ações\"\n}\n","{\n \"moreActions\": \"Mais ações\"\n}\n","{\n \"moreActions\": \"Mai multe acțiuni\"\n}\n","{\n \"moreActions\": \"Дополнительные действия\"\n}\n","{\n \"moreActions\": \"Ďalšie akcie\"\n}\n","{\n \"moreActions\": \"Več možnosti\"\n}\n","{\n \"moreActions\": \"Dodatne radnje\"\n}\n","{\n \"moreActions\": \"Fler åtgärder\"\n}\n","{\n \"moreActions\": \"Daha fazla eylem\"\n}\n","{\n \"moreActions\": \"Більше дій\"\n}\n","{\n \"moreActions\": \"更多操作\"\n}\n","{\n \"moreActions\": \"更多動作\"\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {classNames} from '@react-spectrum/utils';\nimport {getChildNodes} from '@react-stately/collections';\nimport {MenuItem} from './MenuItem';\nimport {Node} from '@react-types/shared';\nimport React, {Fragment, Key} from 'react';\nimport styles from '@adobe/spectrum-css-temp/components/menu/vars.css';\nimport {TreeState} from '@react-stately/tree';\nimport {useMenuSection} from '@react-aria/menu';\nimport {useSeparator} from '@react-aria/separator';\n\ninterface MenuSectionProps<T> {\n item: Node<T>,\n state: TreeState<T>,\n onAction?: (key: Key) => void\n}\n\n/** @private */\nexport function MenuSection<T>(props: MenuSectionProps<T>) {\n let {item, state, onAction} = props;\n let {itemProps, headingProps, groupProps} = useMenuSection({\n heading: item.rendered,\n 'aria-label': item['aria-label']\n });\n\n let {separatorProps} = useSeparator({\n elementType: 'li'\n });\n\n return (\n <Fragment>\n {item.key !== state.collection.getFirstKey() &&\n <li\n {...separatorProps}\n className={classNames(\n styles,\n 'spectrum-Menu-divider'\n )} />\n }\n <li {...itemProps}>\n {item.rendered &&\n <span\n {...headingProps}\n className={\n classNames(\n styles,\n 'spectrum-Menu-sectionHeading'\n )\n }>\n {item.rendered}\n </span>\n }\n <ul\n {...groupProps}\n className={\n classNames(\n styles,\n 'spectrum-Menu'\n )\n }>\n {[...getChildNodes(item, state.collection)].map(node => {\n let item = (\n <MenuItem\n key={node.key}\n item={node}\n state={state}\n onAction={onAction} />\n );\n\n if (node.wrapper) {\n item = node.wrapper(item);\n }\n\n return item;\n })}\n </ul>\n </li>\n </Fragment>\n );\n}\n","/*\n * Copyright 2021 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {ActionButton} from '@react-spectrum/button';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {FocusableRef} from '@react-types/shared';\n// @ts-ignore\nimport intlMessages from '../intl/*.json';\nimport {Menu} from './Menu';\nimport {MenuTrigger} from './MenuTrigger';\nimport More from '@spectrum-icons/workflow/More';\nimport React, {forwardRef, ReactElement} from 'react';\nimport {SpectrumActionMenuProps} from '@react-types/menu';\nimport {useLocalizedStringFormatter} from '@react-aria/i18n';\nimport {useSlotProps} from '@react-spectrum/utils';\n\nfunction ActionMenu<T extends object>(props: SpectrumActionMenuProps<T>, ref: FocusableRef<HTMLButtonElement>) {\n props = useSlotProps(props, 'actionMenu');\n let stringFormatter = useLocalizedStringFormatter(intlMessages);\n let buttonProps = filterDOMProps(props, {labelable: true});\n if (buttonProps['aria-label'] === undefined) {\n buttonProps['aria-label'] = stringFormatter.format('moreActions');\n }\n\n return (\n <MenuTrigger\n isOpen={props.isOpen}\n defaultOpen={props.defaultOpen}\n onOpenChange={props.onOpenChange}\n align={props.align}\n direction={props.direction}\n shouldFlip={props.shouldFlip}>\n <ActionButton\n ref={ref}\n {...props}\n {...buttonProps}>\n <More />\n </ActionButton>\n <Menu\n children={props.children}\n items={props.items}\n disabledKeys={props.disabledKeys}\n onAction={props.onAction} />\n </MenuTrigger>\n );\n}\n\n/**\n * ActionMenu combines an ActionButton with a Menu for simple \"more actions\" use cases.\n */\nconst _ActionMenu = forwardRef(ActionMenu) as <T>(props: SpectrumActionMenuProps<T> & {ref?: FocusableRef<HTMLButtonElement>}) => ReactElement;\nexport {_ActionMenu as ActionMenu};\n","/*\n * Copyright 2023 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {classNames, SlotProvider, useIsMobileDevice} from '@react-spectrum/utils';\nimport {DismissButton} from '@react-aria/overlays';\nimport helpStyles from '@adobe/spectrum-css-temp/components/contextualhelp/vars.css';\nimport {ItemProps} from '@react-types/shared';\nimport {MenuDialogContext, useMenuStateContext} from './context';\nimport {Modal, Popover} from '@react-spectrum/overlays';\nimport React, {Key, ReactElement, useRef} from 'react';\nimport {useOverlayTriggerState} from '@react-stately/overlays';\n\nfunction MenuDialogTrigger<T>(props: ItemProps<T> & {isUnavailable?: boolean, targetKey: Key}): ReactElement {\n let {isUnavailable} = props;\n\n let {state: menuState} = useMenuStateContext();\n let state = useOverlayTriggerState({isOpen: menuState.expandedKeys.has(props.targetKey), onOpenChange: (val) => {\n if (!val) {\n if (menuState.expandedKeys.has(props.targetKey)) {\n menuState.toggleKey(props.targetKey);\n }\n }\n }});\n let slots = {};\n if (isUnavailable) {\n slots = {\n dialog: {UNSAFE_className: classNames(helpStyles, 'react-spectrum-ContextualHelp-dialog')},\n content: {UNSAFE_className: helpStyles['react-spectrum-ContextualHelp-content']},\n footer: {UNSAFE_className: helpStyles['react-spectrum-ContextualHelp-footer']}\n };\n }\n let [trigger] = React.Children.toArray(props.children);\n let [, content] = props.children as [ReactElement, ReactElement];\n\n let isMobile = useIsMobileDevice();\n let triggerRef = useRef<HTMLLIElement>(null);\n return (\n <>\n <MenuDialogContext.Provider value={{isUnavailable, triggerRef}}>{trigger}</MenuDialogContext.Provider>\n <SlotProvider slots={slots}>\n {\n isMobile ? (\n <Modal state={state} isDismissable>\n <DismissButton onDismiss={state.close} />\n {content}\n <DismissButton onDismiss={state.close} />\n </Modal>\n ) : (\n <Popover state={state} triggerRef={triggerRef} placement=\"end top\" hideArrow offset={-10} isNonModal shouldContainFocus={false}>{content}</Popover>\n )\n }\n </SlotProvider>\n </>\n );\n}\n\nMenuDialogTrigger.getCollectionNode = function* getCollectionNode<T>(props: ItemProps<T>) {\n let [trigger] = React.Children.toArray(props.children) as ReactElement[];\n let [, content] = props.children as [ReactElement, ReactElement];\n\n yield {\n element: React.cloneElement(trigger, {...trigger.props, hasChildItems: true}),\n wrapper: (element) => (\n <MenuDialogTrigger key={element.key} targetKey={element.key} {...props}>\n {element}\n {content}\n </MenuDialogTrigger>\n )\n };\n};\n\nlet _Item = MenuDialogTrigger as <T>(props: ItemProps<T> & {isUnavailable?: boolean}) => JSX.Element;\nexport {_Item as MenuDialogTrigger};\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\n@import './index.css';\n@import './skin.css';\n"],"names":[],"version":3,"file":"module.js.map"}
|
package/dist/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"mappings":";;;AC4GA;;;GAGG;AACH,OAAA,IAAI,oJAAsC,CAAC;AG9B3C;;GAEG;AAGH,OAAA,MAAM;UAA2E,OAAO,gBAAgB,CAAC;MAAM,YAAY,CAAC;AC/B5H;;GAEG;AACH,OAAA,MAAM;UAAuF,aAAa,iBAAiB,CAAC;MAAM,YAAY,CAAC;
|
|
1
|
+
{"mappings":";;;AC4GA;;;GAGG;AACH,OAAA,IAAI,oJAAsC,CAAC;AG9B3C;;GAEG;AAGH,OAAA,MAAM;UAA2E,OAAO,gBAAgB,CAAC;MAAM,YAAY,CAAC;AC/B5H;;GAEG;AACH,OAAA,MAAM;UAAuF,aAAa,iBAAiB,CAAC;MAAM,YAAY,CAAC;ACqB/I,OAAA,IAAI;oBAAwE,OAAO;MAAM,WAAW,CAAC;AC9DrG,OAAO,EAAC,IAAI,EAAE,OAAO,EAAC,MAAM,4BAA4B,CAAC;AACzD,YAAY,EAAC,wBAAwB,EAAC,MAAM,mBAAmB,CAAC;AAChE,YAAY,EAAC,uBAAuB,EAAE,iBAAiB,EAAC,MAAM,mBAAmB,CAAC","sources":["packages/@react-spectrum/menu/src/packages/@react-spectrum/menu/src/context.ts","packages/@react-spectrum/menu/src/packages/@react-spectrum/menu/src/MenuTrigger.tsx","packages/@react-spectrum/menu/src/packages/@react-spectrum/menu/src/MenuItem.tsx","packages/@react-spectrum/menu/src/packages/@react-spectrum/menu/src/MenuSection.tsx","packages/@react-spectrum/menu/src/packages/@react-spectrum/menu/src/Menu.tsx","packages/@react-spectrum/menu/src/packages/@react-spectrum/menu/src/ActionMenu.tsx","packages/@react-spectrum/menu/src/packages/@react-spectrum/menu/src/MenuDialogTrigger.tsx","packages/@react-spectrum/menu/src/packages/@react-spectrum/menu/src/index.ts","packages/@react-spectrum/menu/src/index.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,"/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\n/// <reference types=\"css-module-types\" />\n\nexport {MenuTrigger} from './MenuTrigger';\nexport {Menu} from './Menu';\nexport {ActionMenu} from './ActionMenu';\nexport {MenuDialogTrigger} from './MenuDialogTrigger';\nexport {Item, Section} from '@react-stately/collections';\nexport type {SpectrumMenuTriggerProps} from '@react-types/menu';\nexport type {SpectrumActionMenuProps, SpectrumMenuProps} from '@react-types/menu';\n"],"names":[],"version":3,"file":"types.d.ts.map"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-spectrum/menu",
|
|
3
|
-
"version": "3.11.1-nightly.
|
|
3
|
+
"version": "3.11.1-nightly.3884+f04d458a3",
|
|
4
4
|
"description": "Spectrum UI components in React",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "dist/main.js",
|
|
@@ -36,36 +36,36 @@
|
|
|
36
36
|
"url": "https://github.com/adobe/react-spectrum"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@react-aria/focus": "3.0.0-nightly.
|
|
40
|
-
"@react-aria/i18n": "3.0.0-nightly.
|
|
41
|
-
"@react-aria/interactions": "3.0.0-nightly.
|
|
42
|
-
"@react-aria/menu": "3.9.1-nightly.
|
|
43
|
-
"@react-aria/overlays": "3.0.0-nightly.
|
|
44
|
-
"@react-aria/selection": "3.0.0-nightly.
|
|
45
|
-
"@react-aria/separator": "3.0.0-nightly.
|
|
46
|
-
"@react-aria/utils": "3.0.0-nightly.
|
|
47
|
-
"@react-aria/virtualizer": "3.8.1-nightly.
|
|
48
|
-
"@react-spectrum/button": "3.0.0-nightly.
|
|
49
|
-
"@react-spectrum/checkbox": "3.0.0-nightly.
|
|
50
|
-
"@react-spectrum/divider": "3.0.0-nightly.
|
|
51
|
-
"@react-spectrum/layout": "3.5.2-nightly.
|
|
52
|
-
"@react-spectrum/overlays": "3.0.0-nightly.
|
|
53
|
-
"@react-spectrum/text": "3.4.2-nightly.
|
|
54
|
-
"@react-spectrum/utils": "3.0.0-nightly.
|
|
55
|
-
"@react-stately/collections": "3.0.0-nightly.
|
|
56
|
-
"@react-stately/menu": "3.5.2-nightly.
|
|
57
|
-
"@react-stately/overlays": "3.5.2-nightly.
|
|
58
|
-
"@react-stately/tree": "3.0.0-nightly.
|
|
59
|
-
"@react-stately/utils": "3.0.0-nightly.
|
|
60
|
-
"@react-types/menu": "3.9.1-nightly.
|
|
61
|
-
"@react-types/overlays": "3.7.2-nightly.
|
|
62
|
-
"@react-types/shared": "3.0.0-nightly.
|
|
63
|
-
"@spectrum-icons/ui": "3.0.0-nightly.
|
|
64
|
-
"@spectrum-icons/workflow": "3.0.0-nightly.
|
|
39
|
+
"@react-aria/focus": "3.0.0-nightly.2182+f04d458a3",
|
|
40
|
+
"@react-aria/i18n": "3.0.0-nightly.2182+f04d458a3",
|
|
41
|
+
"@react-aria/interactions": "3.0.0-nightly.2182+f04d458a3",
|
|
42
|
+
"@react-aria/menu": "3.9.1-nightly.3884+f04d458a3",
|
|
43
|
+
"@react-aria/overlays": "3.0.0-nightly.2182+f04d458a3",
|
|
44
|
+
"@react-aria/selection": "3.0.0-nightly.2182+f04d458a3",
|
|
45
|
+
"@react-aria/separator": "3.0.0-nightly.2182+f04d458a3",
|
|
46
|
+
"@react-aria/utils": "3.0.0-nightly.2182+f04d458a3",
|
|
47
|
+
"@react-aria/virtualizer": "3.8.1-nightly.3884+f04d458a3",
|
|
48
|
+
"@react-spectrum/button": "3.0.0-nightly.2182+f04d458a3",
|
|
49
|
+
"@react-spectrum/checkbox": "3.0.0-nightly.2182+f04d458a3",
|
|
50
|
+
"@react-spectrum/divider": "3.0.0-nightly.2182+f04d458a3",
|
|
51
|
+
"@react-spectrum/layout": "3.5.2-nightly.3884+f04d458a3",
|
|
52
|
+
"@react-spectrum/overlays": "3.0.0-nightly.2182+f04d458a3",
|
|
53
|
+
"@react-spectrum/text": "3.4.2-nightly.3884+f04d458a3",
|
|
54
|
+
"@react-spectrum/utils": "3.0.0-nightly.2182+f04d458a3",
|
|
55
|
+
"@react-stately/collections": "3.0.0-nightly.2182+f04d458a3",
|
|
56
|
+
"@react-stately/menu": "3.5.2-nightly.3884+f04d458a3",
|
|
57
|
+
"@react-stately/overlays": "3.5.2-nightly.3884+f04d458a3",
|
|
58
|
+
"@react-stately/tree": "3.0.0-nightly.2182+f04d458a3",
|
|
59
|
+
"@react-stately/utils": "3.0.0-nightly.2182+f04d458a3",
|
|
60
|
+
"@react-types/menu": "3.9.1-nightly.3884+f04d458a3",
|
|
61
|
+
"@react-types/overlays": "3.7.2-nightly.3884+f04d458a3",
|
|
62
|
+
"@react-types/shared": "3.0.0-nightly.2182+f04d458a3",
|
|
63
|
+
"@spectrum-icons/ui": "3.0.0-nightly.2182+f04d458a3",
|
|
64
|
+
"@spectrum-icons/workflow": "3.0.0-nightly.2182+f04d458a3",
|
|
65
65
|
"@swc/helpers": "^0.4.14"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
|
-
"@adobe/spectrum-css-temp": "3.0.0-nightly.
|
|
68
|
+
"@adobe/spectrum-css-temp": "3.0.0-nightly.2182+f04d458a3"
|
|
69
69
|
},
|
|
70
70
|
"peerDependencies": {
|
|
71
71
|
"@react-spectrum/provider": "^3.0.0",
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"publishConfig": {
|
|
76
76
|
"access": "public"
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "f04d458a3a20cac3ee10c24777a6e52c9b31f7a6"
|
|
79
79
|
}
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
13
|
import {classNames, SlotProvider, useIsMobileDevice} from '@react-spectrum/utils';
|
|
14
|
+
import {DismissButton} from '@react-aria/overlays';
|
|
14
15
|
import helpStyles from '@adobe/spectrum-css-temp/components/contextualhelp/vars.css';
|
|
15
16
|
import {ItemProps} from '@react-types/shared';
|
|
16
17
|
import {MenuDialogContext, useMenuStateContext} from './context';
|
|
@@ -49,7 +50,9 @@ function MenuDialogTrigger<T>(props: ItemProps<T> & {isUnavailable?: boolean, ta
|
|
|
49
50
|
{
|
|
50
51
|
isMobile ? (
|
|
51
52
|
<Modal state={state} isDismissable>
|
|
53
|
+
<DismissButton onDismiss={state.close} />
|
|
52
54
|
{content}
|
|
55
|
+
<DismissButton onDismiss={state.close} />
|
|
53
56
|
</Modal>
|
|
54
57
|
) : (
|
|
55
58
|
<Popover state={state} triggerRef={triggerRef} placement="end top" hideArrow offset={-10} isNonModal shouldContainFocus={false}>{content}</Popover>
|
package/src/MenuItem.tsx
CHANGED
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
import CheckmarkMedium from '@spectrum-icons/ui/CheckmarkMedium';
|
|
14
14
|
import {classNames, ClearSlots, SlotProvider} from '@react-spectrum/utils';
|
|
15
15
|
import {DOMAttributes, Node} from '@react-types/shared';
|
|
16
|
+
import {filterDOMProps, mergeProps, useSlotId} from '@react-aria/utils';
|
|
16
17
|
import {FocusRing} from '@react-aria/focus';
|
|
17
18
|
import {Grid} from '@react-spectrum/layout';
|
|
18
19
|
import InfoOutline from '@spectrum-icons/workflow/InfoOutline';
|
|
19
20
|
// @ts-ignore
|
|
20
21
|
import intlMessages from '../intl/*.json';
|
|
21
|
-
import {mergeProps, useSlotId} from '@react-aria/utils';
|
|
22
22
|
import React, {Key, useRef} from 'react';
|
|
23
23
|
import styles from '@adobe/spectrum-css-temp/components/menu/vars.css';
|
|
24
24
|
import {Text} from '@react-spectrum/text';
|
|
@@ -51,6 +51,8 @@ export function MenuItem<T>(props: MenuItemProps<T>) {
|
|
|
51
51
|
if (isMenuDialogTrigger) {
|
|
52
52
|
isUnavailable = menuDialogContext.isUnavailable;
|
|
53
53
|
}
|
|
54
|
+
|
|
55
|
+
let domProps = filterDOMProps(item.props);
|
|
54
56
|
|
|
55
57
|
let {
|
|
56
58
|
onClose,
|
|
@@ -104,7 +106,7 @@ export function MenuItem<T>(props: MenuItemProps<T>) {
|
|
|
104
106
|
return (
|
|
105
107
|
<FocusRing focusRingClass={classNames(styles, 'focus-ring')}>
|
|
106
108
|
<li
|
|
107
|
-
{...mergeProps(menuItemProps)}
|
|
109
|
+
{...mergeProps(menuItemProps, domProps)}
|
|
108
110
|
ref={ref}
|
|
109
111
|
className={classNames(
|
|
110
112
|
styles,
|