@1d1s/design-system 0.2.25 → 0.2.26

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.
@@ -7,9 +7,10 @@ export interface GoalAddListProps extends Omit<React.HTMLAttributes<HTMLDivEleme
7
7
  disabled?: boolean;
8
8
  addOnBlur?: boolean;
9
9
  inputAriaLabel?: string;
10
+ maxGoals?: number;
10
11
  }
11
12
  /**
12
13
  * GoalAddList
13
14
  * 목표 문자열 목록을 보여주고 하단 입력창에서 Enter로 새 목표를 추가하는 컴포넌트.
14
15
  */
15
- export declare function GoalAddList({ goals, defaultGoals, onGoalsChange, placeholder, disabled, addOnBlur, inputAriaLabel, className, ...props }: GoalAddListProps): React.ReactElement;
16
+ export declare function GoalAddList({ goals, defaultGoals, onGoalsChange, placeholder, disabled, addOnBlur, inputAriaLabel, maxGoals, className, ...props }: GoalAddListProps): React.ReactElement;