@hyebin4334/admin-ui 0.1.0 → 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 +17 -1
- package/dist/chunk-LOZ2WHFX.js +1153 -0
- package/dist/chunk-LOZ2WHFX.js.map +1 -0
- package/dist/examples/index.cjs +1257 -0
- package/dist/examples/index.cjs.map +1 -0
- package/dist/examples/index.d.cts +43 -0
- package/dist/examples/index.d.ts +43 -0
- package/dist/examples/index.js +422 -0
- package/dist/examples/index.js.map +1 -0
- package/dist/index.cjs +233 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +22 -4
- package/dist/index.d.ts +22 -4
- package/dist/index.js +5 -940
- package/dist/index.js.map +1 -1
- package/package.json +7 -8
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
|
|