@croquiscom/pds 14.6.3 → 14.7.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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 14.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - caa5ba1: feat: CheckboxGroup에 allCheck 옵션 추가
8
+
9
+ ## 14.6.4
10
+
11
+ ### Patch Changes
12
+
13
+ - c6891e4: useToast memoization 추가
14
+
3
15
  ## 14.6.3
4
16
 
5
17
  ### Patch Changes
@@ -23,6 +23,7 @@ export interface CheckboxGroupProps<CheckboxValue> extends Omit<React.HTMLAttrib
23
23
  size?: CheckboxSize;
24
24
  keyExtractor?: (item: CheckboxItem<CheckboxValue>, index: number) => string | number;
25
25
  onChange?: (value: CheckboxValue[]) => void;
26
+ allCheck?: boolean;
26
27
  }
27
28
  export interface CheckboxGroupInstance<CheckboxValue> {
28
29
  value?: CheckboxValue[];
@@ -11,4 +11,5 @@ export declare const Size: Story;
11
11
  export declare const Controlled: Story;
12
12
  export declare const Link: Story;
13
13
  export declare const indeterminate: Story;
14
+ export declare const AllCheck: Story;
14
15
  export declare const Hover: Story;