@croquiscom/pds 2.6.0 → 2.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,15 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 2.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - f38a323: State Container 추가
8
+
9
+ ### Patch Changes
10
+
11
+ - f942d65: TopNavigation 샘플 아이콘 크기 변경, Notification IconX 색상 변경
12
+
3
13
  ## 2.6.0
4
14
 
5
15
  ### Minor Changes
@@ -3,3 +3,4 @@ export * from './footer';
3
3
  export * from './top-navigation';
4
4
  export * from './page-header';
5
5
  export * from './section-title';
6
+ export * from './state';
@@ -0,0 +1,10 @@
1
+ import { HTMLAttributes, ComponentType } from 'react';
2
+ import { IconProps } from '../../components';
3
+ export type StateKind = 'warning';
4
+ export interface StateProps extends HTMLAttributes<HTMLDivElement> {
5
+ kind?: StateKind;
6
+ text?: string;
7
+ subtext?: string;
8
+ icon?: ComponentType<IconProps>;
9
+ }
10
+ export declare const State: ({ kind, text, subtext, icon, className, ...props }: StateProps) => JSX.Element;
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ import { ComponentMeta } from '@storybook/react';
3
+ declare const _default: ComponentMeta<({ kind, text, subtext, icon, className, ...props }: import("./State").StateProps) => JSX.Element>;
4
+ export default _default;
5
+ export declare const WarningKind: any;
@@ -0,0 +1 @@
1
+ export * from './State';