@croquiscom/pds 0.45.4 → 0.45.5

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
+ ## 0.45.5
4
+
5
+ ### Patch Changes
6
+
7
+ - eed68d2: Dropdown onChange 이벤트 controlled 제어 가능하도록 내부 상태 변경 제거
8
+
3
9
  ## 0.45.4
4
10
 
5
11
  ### Patch Changes
@@ -34,4 +34,4 @@ export interface DropdownProps<OptionValue> {
34
34
  keyExtractor?: (item: DropdownOption<OptionValue>, index: number) => string | number;
35
35
  onChange?: (value: OptionValue) => void;
36
36
  }
37
- export declare const Dropdown: <OptionValue extends string | number>({ className, width, maxHeight, zIndex, disabled, options, placeholder, value, autoPlacement: autoPlacementProps, keyExtractor, onChange, }: DropdownProps<OptionValue>) => JSX.Element;
37
+ export declare const Dropdown: <OptionValue extends string | number>({ className, width, maxHeight, zIndex, disabled, options, placeholder, value: valueProp, autoPlacement: autoPlacementProps, keyExtractor, onChange, }: DropdownProps<OptionValue>) => JSX.Element;
@@ -1,7 +1,7 @@
1
1
  /// <reference types="react" />
2
2
  import { ComponentStory, ComponentMeta } from '@storybook/react';
3
3
  import { Dropdown } from './Dropdown';
4
- declare const _default: ComponentMeta<(<OptionValue extends string | number>({ className, width, maxHeight, zIndex, disabled, options, placeholder, value, autoPlacement: autoPlacementProps, keyExtractor, onChange, }: import("./Dropdown").DropdownProps<OptionValue>) => JSX.Element)>;
4
+ declare const _default: ComponentMeta<(<OptionValue extends string | number>({ className, width, maxHeight, zIndex, disabled, options, placeholder, value: valueProp, autoPlacement: autoPlacementProps, keyExtractor, onChange, }: import("./Dropdown").DropdownProps<OptionValue>) => JSX.Element)>;
5
5
  export default _default;
6
6
  export declare const Base: any;
7
7
  export declare const Disabled: any;