@croquiscom/pds 9.3.0 → 10.0.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
+ ## 10.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - 1008b64: SectionTitle 사이즈별 하단 여백 기본 속성 추가
8
+
9
+ ## 9.3.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 7bc3625: DatePicker value값 변경 시 라벨 미갱신 오류 수정
14
+
3
15
  ## 9.3.0
4
16
 
5
17
  ### Minor Changes
@@ -18,3 +18,4 @@ export declare const ShowTimeHourMinuteSecond: Story;
18
18
  export declare const DisableDays: Story;
19
19
  export declare const BottomSheetPicker: Story;
20
20
  export declare const BottomSheetPickerWithTimePicker: Story;
21
+ export declare const ForceChangedDateWithButton: Story;
@@ -1,4 +1,5 @@
1
1
  import React, { ReactNode } from 'react';
2
+ import { CSSValueWithLength } from '../../styles';
2
3
  export type SectionTitleDirection = 'horizontal' | 'vertical';
3
4
  export type SectionTitleSize = 'small' | 'medium' | 'large';
4
5
  export interface SectionTitleProps {
@@ -11,5 +12,11 @@ export interface SectionTitleProps {
11
12
  description?: ReactNode;
12
13
  textButton?: ReactNode;
13
14
  actions?: ReactNode;
15
+ /**
16
+ * SectionTitle 컨테이너 하단 여백값
17
+ * - size별로 기본값이 적용되어 있으며 사용처에서 재정의할 수 있습니다.
18
+ * @default { large: 32, medium: 24, small: 16 }
19
+ */
20
+ mb?: CSSValueWithLength;
14
21
  }
15
- export declare const SectionTitle: ({ direction, size, caption, title, description, textButton, actions, }: SectionTitleProps) => React.JSX.Element;
22
+ export declare const SectionTitle: ({ direction, size, caption, title, description, textButton, actions, mb, }: SectionTitleProps) => React.JSX.Element;
@@ -7,4 +7,5 @@ export declare const Base: Story;
7
7
  export declare const Vertical: Story;
8
8
  export declare const SizeWithHorizontal: Story;
9
9
  export declare const SizeWithVertical: Story;
10
+ export declare const SizeWithNoMarginBottom: Story;
10
11
  export declare const Custom: Story;