@croquiscom/pds 0.24.3 → 0.25.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 +11 -0
- package/dist/container/index.d.ts +1 -0
- package/dist/container/topNavigation/TopNavigation.d.ts +7 -0
- package/dist/container/topNavigation/TopNavigation.stories.d.ts +12 -0
- package/dist/container/topNavigation/index.d.ts +1 -0
- package/dist/divider/Divider.d.ts +2 -0
- package/dist/divider/Divider.stories.d.ts +1 -0
- package/dist/index.es.js +2 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @croquiscom/pds
|
|
2
2
|
|
|
3
|
+
## 0.25.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 31a0b23: feat: Divider 컴포넌트 size prop 추가
|
|
8
|
+
- 0bb25d8: TopNavigation 컴포넌트 추가
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- cbc54da: feat: Footer 컴포넌트 모바일 사이즈 대응 되도록 수정
|
|
13
|
+
|
|
3
14
|
## 0.24.3
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
};
|
|
5
|
+
export default _default;
|
|
6
|
+
export declare const Base: () => JSX.Element;
|
|
7
|
+
export declare const Multiple: () => JSX.Element;
|
|
8
|
+
export declare const EmptyRight: () => JSX.Element;
|
|
9
|
+
export declare const OnlyLeft: () => JSX.Element;
|
|
10
|
+
export declare const OnlyTitle: () => JSX.Element;
|
|
11
|
+
export declare const OnlyRight: () => JSX.Element;
|
|
12
|
+
export declare const LongTitle: () => JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './TopNavigation';
|
|
@@ -4,6 +4,8 @@ import { CSSValueWithLength } from '../styles';
|
|
|
4
4
|
export interface DividerProps extends SpaceProps {
|
|
5
5
|
/** @default 'horizontal' */
|
|
6
6
|
spacing?: CSSValueWithLength;
|
|
7
|
+
/** @default 'small' */
|
|
8
|
+
size?: 'small' | 'medium';
|
|
7
9
|
}
|
|
8
10
|
export declare const Divider: import("@emotion/styled").StyledComponent<{
|
|
9
11
|
theme?: import("@emotion/react").Theme;
|