Initial import

This commit is contained in:
how2ice
2026-04-21 03:33:23 +09:00
commit 9e4b70f1f1
495 changed files with 94680 additions and 0 deletions

35
docs/components/popup.md Executable file
View File

@@ -0,0 +1,35 @@
# Popup Input
## 목적
`[input][button][readonly input]` 형태로 검색어 입력, 버튼 액션, 선택 결과 표시를 한 줄에서 처리하는 입력 컴포넌트입니다.
## 폴더 구조
```text
src/components/inputs/popup
├─ PopupUI.tsx
├─ index.ts
├─ plugins/
├─ samples/
└─ types/
```
## 주요 props
- `value`, `defaultValue`
- `resultValue`
- `onChange`
- `onButtonClick`
- `buttonText`
- `inputPlaceholder`
- `resultPlaceholder`
## plugins
- `createPopupButtonTextPlugin`
- `createPopupResultPlaceholderPlugin`
## 샘플
- 대표 샘플: `src/components/inputs/popup/samples/Sample.tsx`