@designbasekorea/ui 0.2.7 → 0.2.8
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/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.esm.css +1 -1
- package/dist/index.esm.css.map +1 -1
- package/dist/index.esm.js +5 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/index.umd.css +1 -1
- package/dist/index.umd.css.map +1 -1
- package/dist/index.umd.js +5 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1384,13 +1384,15 @@ declare const Drawer: React$1.FC<DrawerProps>;
|
|
|
1384
1384
|
|
|
1385
1385
|
interface DropdownItem {
|
|
1386
1386
|
id: string;
|
|
1387
|
-
label
|
|
1387
|
+
label?: string;
|
|
1388
1388
|
icon?: React$1.ComponentType<{
|
|
1389
1389
|
size?: number;
|
|
1390
1390
|
}>;
|
|
1391
1391
|
disabled?: boolean;
|
|
1392
1392
|
divider?: boolean;
|
|
1393
1393
|
onClick?: () => void;
|
|
1394
|
+
/** 커스텀 컨텐츠 (아이템 대신 렌더링) */
|
|
1395
|
+
custom?: React$1.ReactNode;
|
|
1394
1396
|
}
|
|
1395
1397
|
interface DropdownProps {
|
|
1396
1398
|
/** 드롭다운 아이템 목록 */
|