@croquiscom/pds 0.30.3 → 0.31.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,19 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 0.31.1
4
+
5
+ ### Patch Changes
6
+
7
+ - a619b73: IconMinus20 아이콘 추가
8
+
9
+ - IconButton 아이콘 사이즈 16 고정이 추가되었습니다.
10
+
11
+ ## 0.31.0
12
+
13
+ ### Minor Changes
14
+
15
+ - 0c8524a: NormalBanner 컴포넌트 추가
16
+
3
17
  ## 0.30.3
4
18
 
5
19
  ### Patch Changes
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 9H20V11H0V9Z" fill="#363644"/>
3
+ </svg>
@@ -0,0 +1,12 @@
1
+ import { ReactNode } from 'react';
2
+ export type NormalBannerKind = 'info' | 'error';
3
+ export interface NormalBannerProps {
4
+ className?: string;
5
+ /**
6
+ * @default info
7
+ */
8
+ kind?: NormalBannerKind;
9
+ title: string;
10
+ message: ReactNode;
11
+ }
12
+ export declare const NormalBanner: ({ className, kind, title, message }: NormalBannerProps) => JSX.Element;
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { ComponentMeta } from '@storybook/react';
3
+ declare const _default: ComponentMeta<({ className, kind, title, message }: import("./NormalBanner").NormalBannerProps) => JSX.Element>;
4
+ export default _default;
5
+ export declare const Base: any;
6
+ export declare const Kind: () => JSX.Element;
@@ -0,0 +1 @@
1
+ export * from './NormalBanner';
@@ -0,0 +1,3 @@
1
+ import { NormalBannerKind } from './NormalBanner';
2
+ export declare const banner_color_css: Record<NormalBannerKind, string>;
3
+ export declare const banner_background_color_css: Record<NormalBannerKind, string>;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from '.';
3
+ declare const SvgMinus20: ({ size, color, secondaryColor, ...props }: IconProps) => JSX.Element;
4
+ export default SvgMinus20;
@@ -105,6 +105,7 @@ export { default as IconMarketing24 } from './Marketing24';
105
105
  export { default as IconMegaphone14 } from './Megaphone14';
106
106
  export { default as IconMemoAttention20 } from './MemoAttention20';
107
107
  export { default as IconMemoDefault20 } from './MemoDefault20';
108
+ export { default as IconMinus20 } from './Minus20';
108
109
  export { default as IconMove10 } from './Move10';
109
110
  export { default as IconNew10 } from './New10';
110
111
  export { default as IconNotExposed16 } from './NotExposed16';
@@ -20,3 +20,4 @@ export * from './notification';
20
20
  export * from './bottom-sheet';
21
21
  export * from './modal';
22
22
  export * from './provider';
23
+ export * from './banner';