## Summary - **New Getting Started section** with quickstart guide and restructured navigation - **Halftone-style illustrations** for User Guide and Developer introduction cards using a Canvas 2D filter script - **Removed hero images** (`image:` frontmatter + `<Frame><img>` blocks) from all user-guide article pages - **Cleaned up translations** (13 languages): removed hero images and updated introduction cards to use halftone style - **Cleaned up twenty-ui pages**: removed outdated hero images from component docs - **Deleted orphaned images**: `table.png`, `kanban.png` - **Developer page**: fixed duplicate icon, switched to 3-column layout ## Test plan - [ ] Verify docs site builds without errors - [ ] Check User Guide introduction page renders halftone card images in both light and dark mode - [ ] Check Developer introduction page renders 3-column layout with distinct icons - [ ] Confirm article pages no longer show hero images at the top - [ ] Spot-check a few translated pages to ensure hero images are removed 🤖 Generated with [Claude Code](https://claude.com/claude-code) --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: github-actions <github-actions@twenty.com>
48 lines
2.1 KiB
Plaintext
48 lines
2.1 KiB
Plaintext
---
|
|
title: 선택
|
|
---
|
|
|
|
<Frame>
|
|
<img src="/images/user-guide/what-is-twenty/20.png" alt="헤더" />
|
|
</Frame>
|
|
|
|
사용자가 미리 정의된 옵션 목록에서 값을 선택할 수 있도록 합니다.
|
|
|
|
<Tabs>
|
|
<Tab title="사용법">
|
|
```jsx
|
|
import { IconTwentyStar } from 'twenty-ui/display';
|
|
|
|
import { Select } from '@/ui/input/components/Select';
|
|
|
|
export const MyComponent = () => {
|
|
|
|
return (
|
|
<Select
|
|
className
|
|
disabled={false}
|
|
label="옵션을 선택하세요"
|
|
options={[
|
|
{ value: 'option1', label: '옵션 A', Icon: IconTwentyStar },
|
|
{ value: 'option2', label: '옵션 B', Icon: IconTwentyStar },
|
|
]}
|
|
value="option1"
|
|
/>
|
|
);
|
|
};
|
|
|
|
```
|
|
</Tab>
|
|
|
|
<Tab title="프로퍼티">
|
|
| 프로퍼티 | 유형 | 설명 |
|
|
| -------- | --- | ---------------------------------------------------------------------------------------------- |
|
|
| 클래스 네임 | 문자열 | 추가 스타일링을 위한 선택적 CSS 클래스 |
|
|
| disabled | 부울 | `true`로 설정하면 사용자는 이 구성 요소와 상호작용할 수 없습니다. |
|
|
| 라벨 | 문자열 | `선택` 구성 요소의 목적을 설명하는 라벨 |
|
|
| onChange | 함수 | 선택된 값이 변경될 때 호출되는 함수 |
|
|
| 옵션 | 배열 | `선택된` 구성 요소에 사용할 수 있는 옵션들을 나타냅니다. 각 객체에는 `값`(고유 식별자), `라벨`(고유 식별자) 및 선택적 `아이콘`이 포함된 객체의 배열입니다. |
|
|
| 값 | 문자열 | 현재 선택된 값을 나타냅니다. `옵션` 배열에서 하나의 `값` 속성과 일치해야 합니다. |
|
|
</Tab>
|
|
</Tabs>
|