
Security News
Critical Security Vulnerability in React Server Components
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.
@highoutput/hds-dropdown
Advanced tools
We aim to build a library of custom ReactJS components that implements our unique UI design conventions. The ReactJS components will be based primarily on Chakra UI components. React Storybook will be used for documentation and testing.
We aim to build a library of custom ReactJS components that implements our unique UI design conventions. The ReactJS components will be based primarily on Chakra UI components. React Storybook will be used for documentation and testing.
To install package, use:
npm i @highoutput/hds-dropdown
import { MenuDropdown, InputDropdown } from '@highoutput/hds-tooltip';
export const InputDropdownSamplePage = () => {
const options = [
{
value: 'Phoenix',
label: 'Phoenix',
username: '@phoenix',
avatar:
'https://assets.teenvogue.com/photos/626abe370979f2c5ace0ab29/16:9/w_2560%2Cc_limit/GettyImages-1352932505.jpg',
},
{
value: 'Olivia',
label: 'Olivia',
username: '@olivia',
avatar:
'https://static01.nyt.com/images/2021/05/21/arts/21review-rodrigo01/merlin_188054001_2a34e77d-e653-488a-a4d9-1a0f1ddf73e4-superJumbo.jpg',
},
];
const onChange = (value) => {
// do something
};
return (
<InputDropdown
onChangeValue={(value) => onChange(value)}
options={options}
label="Users"
placeholder="Add users"
inputLeftIcon={SearchIcon}
/>
);
};
export const MenuDropdownSamplePage = () => {
const menuItems = (
<Menu>
<MenuGroup>
<MenuItem icon={<UserIcon />} command="⌘K->P">
View Profile
</MenuItem>
<MenuItem icon={<SettingIcon />} command="⌘S">
Settings
</MenuItem>
<MenuItem icon={<ZapIcon />} command="?">
Keyboard shortcuts
</MenuItem>
</MenuGroup>
<Divider />
<MenuGroup>
<MenuItem icon={<HomeIcon />} command="⌘K->C">
Company profile
</MenuItem>
<MenuItem icon={<UsersIcon />} command="⌘K->T">
Team
</MenuItem>
<MenuItem icon={<UserPlusIcon />} command="⌘K->T">
Invite colleagues
</MenuItem>
</MenuGroup>
<Divider />
<MenuGroup>
<MenuItem icon={<LayersTwoIcon />} command="⌘K->C">
Changelog
</MenuItem>
<MenuItem icon={<MessageSmileIcon />} command="⌘K->S">
Slack Community
</MenuItem>
<MenuItem icon={<HelpIcon />} command="⌘/">
Support
</MenuItem>
<MenuItem icon={<BoxIcon />} command="⌘A">
API
</MenuItem>
</MenuGroup>
<Divider />
<MenuGroup>
<MenuItem
icon={<ExitIcon />}
command="⌥⇧Q"
fontSize={'14px'}
color="neutrals.900"
>
Log out
</MenuItem>
</MenuGroup>
</Menu>
);
return (
<MenuDropdown
menuType={'profile'}
profileUrl={avatarUrl}
menuHeader={{
profileUrl: avatar,
emailAddress: 'olivia@untitledui.com',
userName: 'Olivia Rhye',
}}
menuItems={menuItems}
/>
);
};
FAQs
We aim to build a library of custom ReactJS components that implements our unique UI design conventions. The ReactJS components will be based primarily on Chakra UI components. React Storybook will be used for documentation and testing.
We found that @highoutput/hds-dropdown demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.

Research
/Security News
We spotted a wave of auto-generated “elf-*” npm packages published every two minutes from new accounts, with simple malware variants and early takedowns underway.

Security News
TypeScript 6.0 will be the last JavaScript-based major release, as the project shifts to the TypeScript 7 native toolchain with major build speedups.