one-click-accessibility/modules/settings/assets/js/components/quota-bar/quota-popup-menu.js
Nirbhay Singh 1972e7c029
[APP-1561] New menu layout (#308)
* update: app menu and layout

* merge: latest changes from feature/remediation

* add: alert indicator to the closed sidebar

* fix: page layout for statement page

* update: menu display names

* fix: topbar menu layout

* update: sidebar menu width

* update: sidebar menu width

* fix: popup menu layout

* add: hover action to the toggle button

* update: my account menu

* fix: quota indicator for closed sidebar

* fix: icon alignments

* fix: scroll behaviour

* fix: page scroll behaviour

* fix: popup menu hover state

* update: quota bar and group layouts

* add: tooltips to the menu items

* update: make scans page fixed height and scrollable

* update: styles with theme references and added new styled components

* fix: make sidebar smoother

* update: accessibility page heading
2025-07-02 14:29:57 +05:30

24 lines
505 B
JavaScript

import Menu from '@elementor/ui/Menu';
import { QuotaBarGroup } from '@ea11y/components';
export const QuotaPopupMenu = (menuProps) => {
return (
<Menu
{...menuProps}
anchorOrigin={{
vertical: 'bottom',
horizontal: 'right',
}}
transformOrigin={{
vertical: 'top',
horizontal: 'left',
}}
/* eslint-disable-next-line jsx-a11y/no-autofocus */
autoFocus={false}
>
<QuotaBarGroup collapsible={false} popup={true} />
</Menu>
);
};
export default QuotaPopupMenu;