@designbasekorea/ui 0.2.5 → 0.2.7

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.d.ts CHANGED
@@ -535,8 +535,10 @@ declare const Banner: React$1.FC<BannerProps>;
535
535
  interface BottomNavigationItem {
536
536
  /** 아이템 ID */
537
537
  id: string;
538
- /** 아이콘 컴포넌트 */
538
+ /** 아이콘 컴포넌트 (기본 상태) */
539
539
  icon: React$1.ComponentType<IconProps>;
540
+ /** 활성화된 아이콘 컴포넌트 (선택사항) */
541
+ activeIcon?: React$1.ComponentType<IconProps>;
540
542
  /** 라벨 텍스트 */
541
543
  label: string;
542
544
  /** 활성 상태 */
@@ -1397,6 +1399,14 @@ interface DropdownProps {
1397
1399
  trigger?: React$1.ReactNode;
1398
1400
  /** 트리거 라벨 */
1399
1401
  label?: string;
1402
+ /** 트리거 버튼 variant */
1403
+ triggerVariant?: 'primary' | 'secondary' | 'tertiary' | 'danger' | 'ghost';
1404
+ /** 트리거 버튼 아이콘 */
1405
+ triggerIcon?: React$1.ComponentType<{
1406
+ size?: number;
1407
+ }>;
1408
+ /** 아이콘 전용 버튼 여부 */
1409
+ iconOnly?: boolean;
1400
1410
  /** 드롭다운 크기 */
1401
1411
  size?: 's' | 'm' | 'l';
1402
1412
  /** 드롭다운 위치 */