@croquiscom/pds 15.6.0 → 15.7.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,17 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 15.7.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 5e3ee22: PageHeader Breadcrumb spacing 조정
8
+
9
+ ## 15.7.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 014e640: feat: DataTable wrapper 옵션 추가
14
+
3
15
  ## 15.6.0
4
16
 
5
17
  ### Minor Changes
@@ -37,3 +37,4 @@ export declare const CustomRowColor: Story;
37
37
  export declare const DisabledCellOff: Story;
38
38
  export declare const ExpandableRow: Story;
39
39
  export declare const ExpandableRowNoButton: Story;
40
+ export declare const WrapperSticky: Story;
@@ -31,3 +31,4 @@ export declare const sortColumns: DataTableColumnsType<DataType>;
31
31
  export declare const customRowStyleColumns: DataTableColumnsType<DataType>;
32
32
  export declare const comprehensiveCustomColumns: DataTableColumnsType<DataType>;
33
33
  export declare const ExpandRows: DataTableRowsType<DataType>;
34
+ export declare const WrapperColumns: DataTableColumnsType<DataType>;
@@ -80,6 +80,14 @@ export interface DataTableColumnType<DataType> extends DataTableColumnBase {
80
80
  * - ({ row, value, index }: { row: DataType; value: CellValue; index: number }) => ReactNode
81
81
  */
82
82
  cell?: CellProps<DataType>;
83
+ /**
84
+ * 테이블 컬럼의 셀의 HStack wrapper 렌더링 여부를 지정합니다.
85
+ * false로 설정하면 HStack wrapper가 렌더링되지 않습니다.
86
+ * true로 설정하면 HStack wrapper가 렌더링됩니다.
87
+ * 기본 값은 true입니다. 추후에 wrapper가 필요 없어져서 제거하게 될 경우를 대비해 HStack이
88
+ * 꼭 필요한 경우에는 true를 명시적으로 지정해주세요.
89
+ */
90
+ wrapper?: boolean;
83
91
  }
84
92
  export interface DataTableColumnGroupType<DataType> extends Omit<DataTableColumnType<DataType>, 'id'> {
85
93
  columnGroup: DataTableColumnsType<DataType>;
@@ -8,4 +8,5 @@ export declare const Dense: Story;
8
8
  export declare const WithSectionTitleVertical: Story;
9
9
  export declare const WithSectionTitlePropsCustom: Story;
10
10
  export declare const WithLineTab: Story;
11
+ export declare const WithSectionTitleAndBreadcrumbPropsNoCaptionCustom: Story;
11
12
  export declare const WithSectionTitleAndBreadcrumbPropsCustom: Story;