@croquiscom/pds 5.6.1 → 5.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,11 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 5.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 48ddaa4: ListItem.category.disabled 추가
8
+
3
9
  ## 5.6.1
4
10
 
5
11
  ### Patch Changes
@@ -16,6 +16,7 @@ export interface Category {
16
16
  parentKey: string;
17
17
  childrenKeys?: Array<string>;
18
18
  level: number;
19
+ disabled?: boolean;
19
20
  }
20
21
  export interface CategorySelectorProps {
21
22
  className?: string;
@@ -10,4 +10,4 @@ export interface ListItemProps {
10
10
  multiple?: boolean;
11
11
  disabled?: boolean;
12
12
  }
13
- export declare const ListItem: ({ category, multiple, disabled, selectedKeys, onSelect, onClick, isSelected, isIndeterminate, }: ListItemProps) => JSX.Element;
13
+ export declare const ListItem: ({ category, multiple, disabled: disabledProp, onSelect, onClick, isSelected, isIndeterminate, }: ListItemProps) => JSX.Element;