@croquiscom/pds 7.0.0 → 7.1.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
+ ## 7.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 71165ff: 파플 연말 리포트 아이콘 추가
8
+
9
+ ## 7.0.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 3bfb518: 드롭다운 아래 공간 부족하면 위에서 열리도록 처리
14
+
3
15
  ## 7.0.0
4
16
 
5
17
  ### Major Changes
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M22.5 10.5C22.5 9.99617 22.4577 9.49445 22.3741 9C22.2616 8.33456 22.0744 7.6823 21.8149 7.05585C21.3626 5.96392 20.6997 4.97177 19.864 4.13604C19.0282 3.30031 18.0361 2.63738 16.9442 2.18508C16.3177 1.9256 15.6654 1.73836 15 1.62588C14.5056 1.5423 14.0038 1.5 13.5 1.5V10.5H22.5ZM15 3.15153C15.4679 3.24705 15.9268 3.38726 16.3701 3.5709C17.2801 3.94781 18.1069 4.50026 18.8033 5.1967C19.4997 5.89314 20.0522 6.71993 20.4291 7.62987C20.6127 8.07322 20.753 8.53208 20.8485 9L15 9V3.15153Z" fill="#363644"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11.5 2.5V12.5H21.5C21.5 13.0042 21.4619 13.5056 21.3869 14C21.1677 15.4449 20.6334 16.8305 19.8147 18.0557C18.7159 19.7002 17.1541 20.9819 15.3268 21.7388C13.4996 22.4957 11.4889 22.6937 9.5491 22.3078C7.60929 21.922 5.82746 20.9696 4.42894 19.5711C3.03041 18.1725 2.078 16.3907 1.69215 14.4509C1.3063 12.5111 1.50433 10.5004 2.26121 8.67316C3.01809 6.8459 4.29981 5.28412 5.9443 4.1853C7.16953 3.36663 8.55514 2.83235 10 2.61313C10.4944 2.53812 10.9958 2.5 11.5 2.5ZM10 14H19.8666C19.661 15.1468 19.2208 16.2447 18.5675 17.2223C17.6335 18.6202 16.306 19.7096 14.7528 20.353C13.1996 20.9963 11.4906 21.1646 9.84173 20.8367C8.1929 20.5087 6.67834 19.6992 5.4896 18.5104C4.30085 17.3217 3.4913 15.8071 3.16333 14.1583C2.83536 12.5094 3.00368 10.8004 3.64703 9.24719C4.29037 7.69402 5.37984 6.3665 6.77766 5.43251C7.75534 4.77924 8.85316 4.33901 10 4.13339V14Z" fill="#363644"/>
4
+ </svg>
@@ -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>;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from '.';
3
+ declare const SvgPieChart: ({ size, color, secondaryColor, ...props }: IconProps) => JSX.Element;
4
+ export default SvgPieChart;
@@ -182,6 +182,7 @@ export { default as IconNumTwoFill } from './NumTwoFill';
182
182
  export { default as IconPauseFill } from './PauseFill';
183
183
  export { default as IconPicture } from './Picture';
184
184
  export { default as IconPictureX } from './PictureX';
185
+ export { default as IconPieChart } from './PieChart';
185
186
  export { default as IconPin } from './Pin';
186
187
  export { default as IconPinColor } from './PinColor';
187
188
  export { default as IconPinFill } from './PinFill';