@croquiscom/pds 7.0.0 → 7.0.1

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
+ ## 7.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 3bfb518: 드롭다운 아래 공간 부족하면 위에서 열리도록 처리
8
+
3
9
  ## 7.0.0
4
10
 
5
11
  ### Major Changes
@@ -5,6 +5,7 @@ declare const _default: ComponentMeta<(<OptionValue extends string | number>({ c
5
5
  export default _default;
6
6
  export declare const Base: any;
7
7
  export declare const Error: any;
8
+ export declare const Flip: ComponentStory<typeof Dropdown>;
8
9
  export declare const WithFormHelperText: ComponentStory<typeof Dropdown>;
9
10
  export declare const Size: ComponentStory<typeof Dropdown>;
10
11
  export declare const Disabled: any;
@@ -27,4 +27,4 @@ export interface DropdownInputProps<OptionValue> extends Omit<DropdownProps<Opti
27
27
  keyExtractor?: (item: DropdownInputOption<OptionValue>, index: number) => string | number;
28
28
  optionFilter?: (inputValue: string, item: DropdownInputOption<OptionValue>, index: number) => boolean;
29
29
  }
30
- export declare const DropdownInput: <OptionValue extends string | number>({ className, width, zIndex, disabled, options, placeholder, status, value, size: sizeProp, unstableFocusVisible, keyExtractor, optionFilter, onSearch, onChange, }: DropdownInputProps<OptionValue> & AriaFocusProps) => JSX.Element;
30
+ export declare const DropdownInput: <OptionValue extends string | number>({ className, width, zIndex, disabled, options, placeholder, status, value, size: sizeProp, unstableFocusVisible, keyExtractor, optionFilter, autoPlacement: autoPlacementProps, onSearch, onChange, }: DropdownInputProps<OptionValue> & AriaFocusProps) => JSX.Element;
@@ -1,10 +1,11 @@
1
1
  /// <reference types="react" />
2
2
  import { ComponentStory, ComponentMeta } from '@storybook/react';
3
3
  import { DropdownInput } from './DropdownInput';
4
- declare const _default: ComponentMeta<(<OptionValue extends string | number>({ className, width, zIndex, disabled, options, placeholder, status, value, size: sizeProp, unstableFocusVisible, keyExtractor, optionFilter, onSearch, onChange, }: import("./DropdownInput").DropdownInputProps<OptionValue> & import("../../types/common").AriaFocusProps) => JSX.Element)>;
4
+ declare const _default: ComponentMeta<(<OptionValue extends string | number>({ className, width, zIndex, disabled, options, placeholder, status, value, size: sizeProp, unstableFocusVisible, keyExtractor, optionFilter, autoPlacement: autoPlacementProps, onSearch, onChange, }: import("./DropdownInput").DropdownInputProps<OptionValue> & import("../../types/common").AriaFocusProps) => JSX.Element)>;
5
5
  export default _default;
6
6
  export declare const Base: any;
7
7
  export declare const Error: any;
8
+ export declare const Flip: ComponentStory<typeof DropdownInput>;
8
9
  export declare const WithFormHelperText: ComponentStory<typeof DropdownInput>;
9
10
  export declare const WithOptionFilter: ComponentStory<typeof DropdownInput>;
10
11
  export declare const Size: ComponentStory<typeof DropdownInput>;