
Security News
Vite+ Joins the Push to Consolidate JavaScript Tooling
Evan You announces Vite+, a commercial, Rust-powered toolchain built on the Vite ecosystem to unify JavaScript development and fund open source.
@dev_imlab/msk-ui
Advanced tools
A Library of UI Components and Custom Hooks used in MSK projects.
A Library of UI Components and Custom Hooks used in MSK projects.
This Library is implemented with the following Technology Stack.
import { Avatar } from '@dev_imlab/msk-ui';
const App = () => {
return (
<Avatar
image={{
src: 'https://images.unsplash.com/photo-1438761681033-6461ffad8d80?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2340&q=80',
}}
/>
);
};
import { Avatar, AvatarGroup } from '@dev_imlab/msk-ui';
const App = () => {
return (
<AvatarGroup>
<Avatar
image={{
src: 'https://images.unsplash.com/photo-1438761681033-6461ffad8d80?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2340&q=80',
}}
/>
<Avatar
image={{
src: 'https://images.unsplash.com/photo-1438761681033-6461ffad8d80?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2340&q=80',
}}
/>
<Avatar
image={{
src: 'https://images.unsplash.com/photo-1438761681033-6461ffad8d80?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2340&q=80',
}}
/>
</AvatarGroup>
);
};
import { Input } from '@dev_imlab/msk-ui';
const App = () => {
return (
<Button size='lg' variant='primary'>
Button
</Button>
);
};
import { Dropdown, useDropdown } from '@dev_imlab/msk-ui';
const App = () => {
const { selectedDropdownItem, handleDropdownSelect } = useDropdown({
initialState: 'Item 1',
});
return (
<Dropdown>
<Dropdown.Trigger variant='filled' icon='>'>
{selectedDropdownItem}
</Dropdown.Trigger>
<Dropdown.Menu>
<Dropdown.Item onDropdownSelect={handleDropdownSelect}>
Item 1
</Dropdown.Item>
<Dropdown.Item onDropdownSelect={handleDropdownSelect}>
Item 2
</Dropdown.Item>
<Dropdown.Item onDropdownSelect={handleDropdownSelect}>
Item 3
</Dropdown.Item>
</Dropdown.Menu>
</Dropdown>
);
};
import { Input } from '@dev_imlab/msk-ui';
const App = () => {
return <Input type='text' variant='box' />;
};
import { Dropdown, useDropdown } from '@dev_imlab/msk-ui';
const App = () => {
const { selectedDropdownItem, handleDropdownSelect } = useDropdown({
initialState: 'Item 1',
});
return (
<Dropdown>
<Dropdown.Trigger variant='filled' icon='>'>
{selectedDropdownItem}
</Dropdown.Trigger>
<Dropdown.Menu>
<Dropdown.Item onDropdownSelect={handleDropdownSelect}>
Item 1
</Dropdown.Item>
<Dropdown.Item onDropdownSelect={handleDropdownSelect}>
Item 2
</Dropdown.Item>
<Dropdown.Item onDropdownSelect={handleDropdownSelect}>
Item 3
</Dropdown.Item>
</Dropdown.Menu>
</Dropdown>
);
};
FAQs
A Library of UI Components and Custom Hooks used in MSK projects.
We found that @dev_imlab/msk-ui demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
Evan You announces Vite+, a commercial, Rust-powered toolchain built on the Vite ecosystem to unify JavaScript development and fund open source.
Security News
Ruby Central’s incident report on the RubyGems.org access dispute sparks backlash from former maintainers and renewed debate over project governance.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.