@hyebin4334/admin-ui 0.1.1 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -33,7 +33,23 @@ export function Example() {
33
33
 
34
34
  ## Components
35
35
 
36
- `Avatar` · `Badge` · `Button` · `ButtonGroup` · `Card` · `Checkbox` · `Field` · `Input` · `Label` · `Select` · `Separator` · `Skeleton` · `Spinner` · `Switch` · `Tabs` · `Textarea`
36
+ `Avatar` · `Badge` · `Button` · `ButtonGroup` · `Card` · `Checkbox` · `Field` · `Input` · `Label` · `Pagination` · `Select` · `Separator` · `Skeleton` · `Spinner` · `Switch` · `Table` · `Tabs` · `Textarea`
37
+
38
+ ## Example pages (reference)
39
+
40
+ 미리 만들어둔 어드민 페이지 패턴 — AI 도구(Figma Make / v0 / Cursor)가 *참고*해서 비슷한 화면을 생성하도록 활용.
41
+
42
+ ```tsx
43
+ import {
44
+ ProductListPage,
45
+ ProductCreatePage,
46
+ UserListPage,
47
+ } from "@hyebin4334/admin-ui/examples";
48
+ ```
49
+
50
+ - `ProductListPage` — 상품 조회 (Tabs + Filter Card + Table + Pagination)
51
+ - `ProductCreatePage` — 상품 등록 (Section Card 여러 개 + Form)
52
+ - `UserListPage` — 회원 목록 (Inline search + Table + Pagination)
37
53
 
38
54
  ## Build & publish
39
55