
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
lumir-internal-design-system-nextjs
Advanced tools
루미르 사내 프로젝트용 디자인 시스템입니다. 이 시스템은 일관된 UI/UX를 제공하고 개발 효율성을 높이기 위해 설계되었습니다.
npm install lumir-internal-design-system
pnpm add lumir-internal-design-system
import "lumir-internal-design-system/index.css";
import { SidebarTest } from "lumir-internal-design-system";
메뉴는 main
과 config
두 섹션으로 나뉩니다. 각 섹션은 여러 카테고리를 포함하며, 각 카테고리는 여러 메뉴 아이템을 가집니다.
interface MenuItem {
name: string;
path: string;
icon: string;
}
interface MenuCategory {
category: string;
icon: string;
items: MenuItem[];
}
사이드바 컴포넌트는 애플리케이션의 주요 네비게이션 요소입니다.
import {
Sidebar,
SidebarItem,
SidebarLogo,
} from "lumir-internal-design-system";
const favorites: MenuItem[] = [
{
name: '전체 면접 일정',
path: '/calendar',
icon: 'FiPieChart',
}
]
const menuItems: {
main: MenuCategory[];
config: MenuCategory[];
} = {main: [
{
category: '나의 면접 일정',
icon: 'FiPieChart',
items: [
{ name: '서면평가', path: '/', icon: 'FiPieChart' },
{ name: '대면평가', path: '/dashboard/employees', icon: 'FiBarChart2' },
{ name: '입사 후 1차 평가', path: '/dashboard/employees', icon: 'FiBarChart2' },
{ name: '입사 후 2차 평가', path: '/dashboard/employees', icon: 'FiBarChart2' },
]
},
{
category: '인사 관리',
icon: 'FiCalendar',
items: [
{ name: '지원자 관리', path: '/attendance', icon: 'FiClock' },
{ name: '채용 포지션 관리', path: '/attendance', icon: 'FiClock' },
{ name: '지원자 신규 추가', path: '/attendance', icon: 'FiClock' },
]
},
{
category: '관리자',
icon: 'FiSettings',
items: [
{ name: '사용자 관리', path: '/management/files', icon: 'FiHome' },
]
},
{
category: '외부 링크',
icon: 'FiSettings',
items: [
{ name: '루미르', path: 'https://www.google.com', icon: 'FiHome' },
{ name: '사람인', path: 'https://www.google.com', icon: 'FiHome' },
{ name: '잡코리아', path: 'https://www.google.com', icon: 'FiHome' },
{ name: '점핏', path: 'https://www.google.com', icon: 'FiHome' },
{ name: '프로그래머스', path: 'https://www.google.com', icon: 'FiHome' },
]
}
],
config: [
{
category: '설정',
icon: 'FiSettings',
items: [
{ name: '일반 설정', path: '/settings/users', icon: 'FiSettings' },
{ name: '근태 설정', path: '/settings', icon: 'FiTool' },
]
},
]}
<Sidebar currentPath={pathname}>
<SidebarHeader>
<SidebarLogo src={LUMIR_LOGO_1} />
<SidebarToggle />
</SidebarHeader>
<SidebarFavorite
name="전체 면접 일정"
path="/calendar"
icon="FiPieChart"
LinkComponent={Link}
/>
<SidebarUpperSection>
{/* 메뉴 카테고리 및 아이템 */}
</SidebarUpperSection>
<SidebarBottomSection>
{/* 사용자 정보 등 */}
</SidebarBottomSection>
</Sidebar>
자세한 사용법은 사이드바 문서를 참조하세요.
사이드바는 TailwindCSS로 커스터마이징할 수 있습니다. Sidebar
컴포넌트에 className을 prop으로 전달하여 사용하세요.
Link
컴포넌트와 통합되어 있습니다. 다른 프레임워크에서는 동작하지 않습니다.react-icons
라이브러리를 사용합니다.이 프로젝트는 내부용으로, 루미르의 소유입니다. 무단 사용 및 배포를 금지합니다.
FAQs
Internal design system for Lumir
The npm package lumir-internal-design-system-nextjs receives a total of 0 weekly downloads. As such, lumir-internal-design-system-nextjs popularity was classified as not popular.
We found that lumir-internal-design-system-nextjs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.