@designbasekorea/ui 0.1.42 → 0.1.44

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
@@ -3086,6 +3086,14 @@ interface SearchBarProps {
3086
3086
  searchIcon?: React$1.ComponentType<IconProps>;
3087
3087
  /** 클리어 아이콘 */
3088
3088
  clearIcon?: React$1.ComponentType<IconProps>;
3089
+ /** 최근 검색어 저장 여부 */
3090
+ enableRecentSearches?: boolean;
3091
+ /** 최근 검색어 저장 키 (로컬스토리지) */
3092
+ recentSearchesKey?: string;
3093
+ /** 추천 검색어 목록 */
3094
+ suggestedSearches?: string[];
3095
+ /** 추천 검색어 롤링 간격 (ms) */
3096
+ suggestionRollingInterval?: number;
3089
3097
  /** 검색어 변경 핸들러 */
3090
3098
  onChange?: (value: string) => void;
3091
3099
  /** 검색 실행 핸들러 */