@croquiscom/pds 4.6.0 → 4.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 +6 -0
- package/dist/components/column-view-controller/ColumnViewController.d.ts +2 -6
- package/dist/components/column-view-controller/ColumnViewController.stories.d.ts +2 -2
- 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/dist/locales/en.d.ts +0 -1
- package/dist/locales/ja.d.ts +0 -1
- package/dist/locales/ko.d.ts +0 -1
- package/locales/en.esm.js +0 -1
- package/locales/en.esm.js.map +1 -1
- package/locales/en.js +0 -1
- package/locales/en.js.map +1 -1
- package/locales/ja.esm.js +0 -1
- package/locales/ja.esm.js.map +1 -1
- package/locales/ja.js +0 -1
- package/locales/ja.js.map +1 -1
- package/locales/ko.esm.js +0 -1
- package/locales/ko.esm.js.map +1 -1
- package/locales/ko.js +0 -1
- package/locales/ko.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,13 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
import React, { PropsWithChildren } from 'react';
|
|
2
2
|
import { TableColumnType } from '../table';
|
|
3
3
|
export interface TableColumnViewType<DataType> extends TableColumnType<DataType> {
|
|
4
4
|
isOn?: boolean;
|
|
5
5
|
}
|
|
6
6
|
export interface ColumnViewControllerProps<DataType> {
|
|
7
|
-
/**
|
|
8
|
-
* @default '열: 목록보기 설정'
|
|
9
|
-
*/
|
|
10
|
-
buttonText?: string;
|
|
11
7
|
/**
|
|
12
8
|
* columns의 모든 width가 필수값이어야 함
|
|
13
9
|
*/
|
|
@@ -42,4 +38,4 @@ export interface ColumnViewControllerProps<DataType> {
|
|
|
42
38
|
*/
|
|
43
39
|
listSectionTitle?: string;
|
|
44
40
|
}
|
|
45
|
-
export declare const ColumnViewController: <T>({ columns, onChange, width, canFixed, pullsFixed, maxFixedCount,
|
|
41
|
+
export declare const ColumnViewController: <T>({ children, columns, onChange, width, canFixed, pullsFixed, maxFixedCount, noFixedItemsText, fixedSectionTitle, listSectionTitle, }: React.PropsWithChildren<ColumnViewControllerProps<T>>) => JSX.Element;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { ComponentMeta } from '@storybook/react';
|
|
3
|
-
|
|
2
|
+
import React from 'react';
|
|
3
|
+
declare const _default: ComponentMeta<(<T>({ children, columns, onChange, width, canFixed, pullsFixed, maxFixedCount, noFixedItemsText, fixedSectionTitle, listSectionTitle, }: React.PropsWithChildren<import("./ColumnViewController").ColumnViewControllerProps<T>>) => JSX.Element)>;
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const Base: any;
|
|
6
6
|
export declare const PullsFixed: any;
|