@croquiscom/pds 8.8.0 → 8.8.2
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 +12 -0
- package/dist/components/tabs/PanelTabs/PanelTab.d.ts +2 -1
- package/dist/components/tabs/PanelTabs/PanelTab.stories.d.ts +4 -2
- package/dist/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/bundle-report.html +0 -4034
- package/dist/components/table/TableHeader.d.ts +0 -9
- package/dist/components/table/TableRows.d.ts +0 -11
- package/locales/en.d.ts +0 -79
- package/locales/en.esm.d.ts +0 -79
- package/locales/ja.d.ts +0 -79
- package/locales/ja.esm.d.ts +0 -79
- package/locales/ko.d.ts +0 -79
- package/locales/ko.esm.d.ts +0 -79
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { SelectRowsAction, TableRowsType } from './types';
|
|
3
|
-
import { TableProps } from './Table';
|
|
4
|
-
export interface TableHeaderProps<DataType> extends Pick<TableProps<DataType>, 'columns' | 'rows' | 'stickyHeader' | 'sortBy' | 'sortDirection' | 'onSortBy' | 'selectableRows' | 'hideSelectAll' | 'resize'> {
|
|
5
|
-
allSelected?: boolean;
|
|
6
|
-
selectedRows?: TableRowsType<DataType>;
|
|
7
|
-
onSelectedRows?: (action: SelectRowsAction<DataType>) => void;
|
|
8
|
-
}
|
|
9
|
-
export declare const TableHeader: <DataType extends object = any>({ columns, rows, stickyHeader, sortBy, sortDirection, allSelected, selectedRows, selectableRows, hideSelectAll, resize, onSelectedRows, onSortBy, }: TableHeaderProps<DataType>) => JSX.Element;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { TableProps } from './Table';
|
|
3
|
-
import { TableRowsType, SelectRowAction } from './types';
|
|
4
|
-
interface TableRowsProps<DataType> extends Pick<TableProps<DataType>, 'columns' | 'rows' | 'noDataText' | 'loading' | 'selectableRows' | 'clickableRows' | 'cellHoverStyle' | 'resize'> {
|
|
5
|
-
tableContainerAttribute: number;
|
|
6
|
-
allSelected?: boolean;
|
|
7
|
-
selectedRows?: TableRowsType<DataType>;
|
|
8
|
-
onSelectedRow?: (action: SelectRowAction<DataType>) => void;
|
|
9
|
-
}
|
|
10
|
-
export declare const TableRows: <DataType extends object = any>({ columns, rows, loading, selectableRows, clickableRows, selectedRows, noDataText, cellHoverStyle, tableContainerAttribute, resize, onSelectedRow, }: TableRowsProps<DataType>) => JSX.Element;
|
|
11
|
-
export {};
|
package/locales/en.d.ts
DELETED
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
export declare const en: {
|
|
2
|
-
lang: string;
|
|
3
|
-
accessibility: {
|
|
4
|
-
info: string;
|
|
5
|
-
success: string;
|
|
6
|
-
warning: string;
|
|
7
|
-
error: string;
|
|
8
|
-
close: string;
|
|
9
|
-
page: string;
|
|
10
|
-
prev: string;
|
|
11
|
-
next: string;
|
|
12
|
-
back: string;
|
|
13
|
-
};
|
|
14
|
-
ConfirmModal: {
|
|
15
|
-
title: string;
|
|
16
|
-
confirmText: string;
|
|
17
|
-
cancelText: string;
|
|
18
|
-
};
|
|
19
|
-
AlertModal: {
|
|
20
|
-
title: string;
|
|
21
|
-
confirmText: string;
|
|
22
|
-
};
|
|
23
|
-
NoticeModal: {
|
|
24
|
-
closeText: string;
|
|
25
|
-
checkReplayText: string;
|
|
26
|
-
};
|
|
27
|
-
Dropdown: {
|
|
28
|
-
placeholder: string;
|
|
29
|
-
};
|
|
30
|
-
DatePicker: {
|
|
31
|
-
placeholder: string;
|
|
32
|
-
footer: {
|
|
33
|
-
now: string;
|
|
34
|
-
today: string;
|
|
35
|
-
ok: string;
|
|
36
|
-
clear: string;
|
|
37
|
-
};
|
|
38
|
-
};
|
|
39
|
-
DatePickerRange: {
|
|
40
|
-
placeholder: string[];
|
|
41
|
-
dataPreset: {
|
|
42
|
-
today: string;
|
|
43
|
-
'1-week': string;
|
|
44
|
-
'1-month': string;
|
|
45
|
-
'3-month': string;
|
|
46
|
-
'6-month': string;
|
|
47
|
-
'1-year': string;
|
|
48
|
-
all: string;
|
|
49
|
-
};
|
|
50
|
-
};
|
|
51
|
-
TimePicker: {
|
|
52
|
-
placeholder: string;
|
|
53
|
-
footer: {
|
|
54
|
-
ok: string;
|
|
55
|
-
clear: string;
|
|
56
|
-
};
|
|
57
|
-
};
|
|
58
|
-
TimeRangePicker: {
|
|
59
|
-
placeholder: string[];
|
|
60
|
-
};
|
|
61
|
-
FileUpload: {
|
|
62
|
-
label: string;
|
|
63
|
-
};
|
|
64
|
-
Table: {
|
|
65
|
-
noDataText: string;
|
|
66
|
-
};
|
|
67
|
-
ColumnViewController: {
|
|
68
|
-
noFixedItemsText: string;
|
|
69
|
-
fixedSectionTitle: string;
|
|
70
|
-
listSectionTitle: string;
|
|
71
|
-
max: string;
|
|
72
|
-
items: string;
|
|
73
|
-
};
|
|
74
|
-
CategorySelector: {
|
|
75
|
-
levelCategory: string;
|
|
76
|
-
selectParentCategoryLine1: string;
|
|
77
|
-
selectParentCategoryLine2: string;
|
|
78
|
-
};
|
|
79
|
-
};
|
package/locales/en.esm.d.ts
DELETED
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
export declare const en: {
|
|
2
|
-
lang: string;
|
|
3
|
-
accessibility: {
|
|
4
|
-
info: string;
|
|
5
|
-
success: string;
|
|
6
|
-
warning: string;
|
|
7
|
-
error: string;
|
|
8
|
-
close: string;
|
|
9
|
-
page: string;
|
|
10
|
-
prev: string;
|
|
11
|
-
next: string;
|
|
12
|
-
back: string;
|
|
13
|
-
};
|
|
14
|
-
ConfirmModal: {
|
|
15
|
-
title: string;
|
|
16
|
-
confirmText: string;
|
|
17
|
-
cancelText: string;
|
|
18
|
-
};
|
|
19
|
-
AlertModal: {
|
|
20
|
-
title: string;
|
|
21
|
-
confirmText: string;
|
|
22
|
-
};
|
|
23
|
-
NoticeModal: {
|
|
24
|
-
closeText: string;
|
|
25
|
-
checkReplayText: string;
|
|
26
|
-
};
|
|
27
|
-
Dropdown: {
|
|
28
|
-
placeholder: string;
|
|
29
|
-
};
|
|
30
|
-
DatePicker: {
|
|
31
|
-
placeholder: string;
|
|
32
|
-
footer: {
|
|
33
|
-
now: string;
|
|
34
|
-
today: string;
|
|
35
|
-
ok: string;
|
|
36
|
-
clear: string;
|
|
37
|
-
};
|
|
38
|
-
};
|
|
39
|
-
DatePickerRange: {
|
|
40
|
-
placeholder: string[];
|
|
41
|
-
dataPreset: {
|
|
42
|
-
today: string;
|
|
43
|
-
'1-week': string;
|
|
44
|
-
'1-month': string;
|
|
45
|
-
'3-month': string;
|
|
46
|
-
'6-month': string;
|
|
47
|
-
'1-year': string;
|
|
48
|
-
all: string;
|
|
49
|
-
};
|
|
50
|
-
};
|
|
51
|
-
TimePicker: {
|
|
52
|
-
placeholder: string;
|
|
53
|
-
footer: {
|
|
54
|
-
ok: string;
|
|
55
|
-
clear: string;
|
|
56
|
-
};
|
|
57
|
-
};
|
|
58
|
-
TimeRangePicker: {
|
|
59
|
-
placeholder: string[];
|
|
60
|
-
};
|
|
61
|
-
FileUpload: {
|
|
62
|
-
label: string;
|
|
63
|
-
};
|
|
64
|
-
Table: {
|
|
65
|
-
noDataText: string;
|
|
66
|
-
};
|
|
67
|
-
ColumnViewController: {
|
|
68
|
-
noFixedItemsText: string;
|
|
69
|
-
fixedSectionTitle: string;
|
|
70
|
-
listSectionTitle: string;
|
|
71
|
-
max: string;
|
|
72
|
-
items: string;
|
|
73
|
-
};
|
|
74
|
-
CategorySelector: {
|
|
75
|
-
levelCategory: string;
|
|
76
|
-
selectParentCategoryLine1: string;
|
|
77
|
-
selectParentCategoryLine2: string;
|
|
78
|
-
};
|
|
79
|
-
};
|
package/locales/ja.d.ts
DELETED
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
export declare const ja: {
|
|
2
|
-
lang: string;
|
|
3
|
-
accessibility: {
|
|
4
|
-
info: string;
|
|
5
|
-
success: string;
|
|
6
|
-
warning: string;
|
|
7
|
-
error: string;
|
|
8
|
-
close: string;
|
|
9
|
-
page: string;
|
|
10
|
-
prev: string;
|
|
11
|
-
next: string;
|
|
12
|
-
back: string;
|
|
13
|
-
};
|
|
14
|
-
ConfirmModal: {
|
|
15
|
-
title: string;
|
|
16
|
-
confirmText: string;
|
|
17
|
-
cancelText: string;
|
|
18
|
-
};
|
|
19
|
-
AlertModal: {
|
|
20
|
-
title: string;
|
|
21
|
-
confirmText: string;
|
|
22
|
-
};
|
|
23
|
-
NoticeModal: {
|
|
24
|
-
closeText: string;
|
|
25
|
-
checkReplayText: string;
|
|
26
|
-
};
|
|
27
|
-
Dropdown: {
|
|
28
|
-
placeholder: string;
|
|
29
|
-
};
|
|
30
|
-
DatePicker: {
|
|
31
|
-
placeholder: string;
|
|
32
|
-
footer: {
|
|
33
|
-
now: string;
|
|
34
|
-
today: string;
|
|
35
|
-
ok: string;
|
|
36
|
-
clear: string;
|
|
37
|
-
};
|
|
38
|
-
};
|
|
39
|
-
DatePickerRange: {
|
|
40
|
-
placeholder: string[];
|
|
41
|
-
dataPreset: {
|
|
42
|
-
today: string;
|
|
43
|
-
'1-week': string;
|
|
44
|
-
'1-month': string;
|
|
45
|
-
'3-month': string;
|
|
46
|
-
'6-month': string;
|
|
47
|
-
'1-year': string;
|
|
48
|
-
all: string;
|
|
49
|
-
};
|
|
50
|
-
};
|
|
51
|
-
TimePicker: {
|
|
52
|
-
placeholder: string;
|
|
53
|
-
footer: {
|
|
54
|
-
ok: string;
|
|
55
|
-
clear: string;
|
|
56
|
-
};
|
|
57
|
-
};
|
|
58
|
-
TimeRangePicker: {
|
|
59
|
-
placeholder: string[];
|
|
60
|
-
};
|
|
61
|
-
FileUpload: {
|
|
62
|
-
label: string;
|
|
63
|
-
};
|
|
64
|
-
Table: {
|
|
65
|
-
noDataText: string;
|
|
66
|
-
};
|
|
67
|
-
ColumnViewController: {
|
|
68
|
-
noFixedItemsText: string;
|
|
69
|
-
fixedSectionTitle: string;
|
|
70
|
-
listSectionTitle: string;
|
|
71
|
-
max: string;
|
|
72
|
-
items: string;
|
|
73
|
-
};
|
|
74
|
-
CategorySelector: {
|
|
75
|
-
levelCategory: string;
|
|
76
|
-
selectParentCategoryLine1: string;
|
|
77
|
-
selectParentCategoryLine2: string;
|
|
78
|
-
};
|
|
79
|
-
};
|
package/locales/ja.esm.d.ts
DELETED
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
export declare const ja: {
|
|
2
|
-
lang: string;
|
|
3
|
-
accessibility: {
|
|
4
|
-
info: string;
|
|
5
|
-
success: string;
|
|
6
|
-
warning: string;
|
|
7
|
-
error: string;
|
|
8
|
-
close: string;
|
|
9
|
-
page: string;
|
|
10
|
-
prev: string;
|
|
11
|
-
next: string;
|
|
12
|
-
back: string;
|
|
13
|
-
};
|
|
14
|
-
ConfirmModal: {
|
|
15
|
-
title: string;
|
|
16
|
-
confirmText: string;
|
|
17
|
-
cancelText: string;
|
|
18
|
-
};
|
|
19
|
-
AlertModal: {
|
|
20
|
-
title: string;
|
|
21
|
-
confirmText: string;
|
|
22
|
-
};
|
|
23
|
-
NoticeModal: {
|
|
24
|
-
closeText: string;
|
|
25
|
-
checkReplayText: string;
|
|
26
|
-
};
|
|
27
|
-
Dropdown: {
|
|
28
|
-
placeholder: string;
|
|
29
|
-
};
|
|
30
|
-
DatePicker: {
|
|
31
|
-
placeholder: string;
|
|
32
|
-
footer: {
|
|
33
|
-
now: string;
|
|
34
|
-
today: string;
|
|
35
|
-
ok: string;
|
|
36
|
-
clear: string;
|
|
37
|
-
};
|
|
38
|
-
};
|
|
39
|
-
DatePickerRange: {
|
|
40
|
-
placeholder: string[];
|
|
41
|
-
dataPreset: {
|
|
42
|
-
today: string;
|
|
43
|
-
'1-week': string;
|
|
44
|
-
'1-month': string;
|
|
45
|
-
'3-month': string;
|
|
46
|
-
'6-month': string;
|
|
47
|
-
'1-year': string;
|
|
48
|
-
all: string;
|
|
49
|
-
};
|
|
50
|
-
};
|
|
51
|
-
TimePicker: {
|
|
52
|
-
placeholder: string;
|
|
53
|
-
footer: {
|
|
54
|
-
ok: string;
|
|
55
|
-
clear: string;
|
|
56
|
-
};
|
|
57
|
-
};
|
|
58
|
-
TimeRangePicker: {
|
|
59
|
-
placeholder: string[];
|
|
60
|
-
};
|
|
61
|
-
FileUpload: {
|
|
62
|
-
label: string;
|
|
63
|
-
};
|
|
64
|
-
Table: {
|
|
65
|
-
noDataText: string;
|
|
66
|
-
};
|
|
67
|
-
ColumnViewController: {
|
|
68
|
-
noFixedItemsText: string;
|
|
69
|
-
fixedSectionTitle: string;
|
|
70
|
-
listSectionTitle: string;
|
|
71
|
-
max: string;
|
|
72
|
-
items: string;
|
|
73
|
-
};
|
|
74
|
-
CategorySelector: {
|
|
75
|
-
levelCategory: string;
|
|
76
|
-
selectParentCategoryLine1: string;
|
|
77
|
-
selectParentCategoryLine2: string;
|
|
78
|
-
};
|
|
79
|
-
};
|
package/locales/ko.d.ts
DELETED
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
export declare const ko: {
|
|
2
|
-
lang: string;
|
|
3
|
-
accessibility: {
|
|
4
|
-
info: string;
|
|
5
|
-
success: string;
|
|
6
|
-
warning: string;
|
|
7
|
-
error: string;
|
|
8
|
-
close: string;
|
|
9
|
-
page: string;
|
|
10
|
-
prev: string;
|
|
11
|
-
next: string;
|
|
12
|
-
back: string;
|
|
13
|
-
};
|
|
14
|
-
ConfirmModal: {
|
|
15
|
-
title: string;
|
|
16
|
-
confirmText: string;
|
|
17
|
-
cancelText: string;
|
|
18
|
-
};
|
|
19
|
-
AlertModal: {
|
|
20
|
-
title: string;
|
|
21
|
-
confirmText: string;
|
|
22
|
-
};
|
|
23
|
-
NoticeModal: {
|
|
24
|
-
closeText: string;
|
|
25
|
-
checkReplayText: string;
|
|
26
|
-
};
|
|
27
|
-
Dropdown: {
|
|
28
|
-
placeholder: string;
|
|
29
|
-
};
|
|
30
|
-
DatePicker: {
|
|
31
|
-
placeholder: string;
|
|
32
|
-
footer: {
|
|
33
|
-
now: string;
|
|
34
|
-
today: string;
|
|
35
|
-
ok: string;
|
|
36
|
-
clear: string;
|
|
37
|
-
};
|
|
38
|
-
};
|
|
39
|
-
DatePickerRange: {
|
|
40
|
-
placeholder: string[];
|
|
41
|
-
dataPreset: {
|
|
42
|
-
today: string;
|
|
43
|
-
'1-week': string;
|
|
44
|
-
'1-month': string;
|
|
45
|
-
'3-month': string;
|
|
46
|
-
'6-month': string;
|
|
47
|
-
'1-year': string;
|
|
48
|
-
all: string;
|
|
49
|
-
};
|
|
50
|
-
};
|
|
51
|
-
TimePicker: {
|
|
52
|
-
placeholder: string;
|
|
53
|
-
footer: {
|
|
54
|
-
ok: string;
|
|
55
|
-
clear: string;
|
|
56
|
-
};
|
|
57
|
-
};
|
|
58
|
-
TimeRangePicker: {
|
|
59
|
-
placeholder: string[];
|
|
60
|
-
};
|
|
61
|
-
FileUpload: {
|
|
62
|
-
label: string;
|
|
63
|
-
};
|
|
64
|
-
Table: {
|
|
65
|
-
noDataText: string;
|
|
66
|
-
};
|
|
67
|
-
ColumnViewController: {
|
|
68
|
-
noFixedItemsText: string;
|
|
69
|
-
fixedSectionTitle: string;
|
|
70
|
-
listSectionTitle: string;
|
|
71
|
-
max: string;
|
|
72
|
-
items: string;
|
|
73
|
-
};
|
|
74
|
-
CategorySelector: {
|
|
75
|
-
levelCategory: string;
|
|
76
|
-
selectParentCategoryLine1: string;
|
|
77
|
-
selectParentCategoryLine2: string;
|
|
78
|
-
};
|
|
79
|
-
};
|
package/locales/ko.esm.d.ts
DELETED
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
export declare const ko: {
|
|
2
|
-
lang: string;
|
|
3
|
-
accessibility: {
|
|
4
|
-
info: string;
|
|
5
|
-
success: string;
|
|
6
|
-
warning: string;
|
|
7
|
-
error: string;
|
|
8
|
-
close: string;
|
|
9
|
-
page: string;
|
|
10
|
-
prev: string;
|
|
11
|
-
next: string;
|
|
12
|
-
back: string;
|
|
13
|
-
};
|
|
14
|
-
ConfirmModal: {
|
|
15
|
-
title: string;
|
|
16
|
-
confirmText: string;
|
|
17
|
-
cancelText: string;
|
|
18
|
-
};
|
|
19
|
-
AlertModal: {
|
|
20
|
-
title: string;
|
|
21
|
-
confirmText: string;
|
|
22
|
-
};
|
|
23
|
-
NoticeModal: {
|
|
24
|
-
closeText: string;
|
|
25
|
-
checkReplayText: string;
|
|
26
|
-
};
|
|
27
|
-
Dropdown: {
|
|
28
|
-
placeholder: string;
|
|
29
|
-
};
|
|
30
|
-
DatePicker: {
|
|
31
|
-
placeholder: string;
|
|
32
|
-
footer: {
|
|
33
|
-
now: string;
|
|
34
|
-
today: string;
|
|
35
|
-
ok: string;
|
|
36
|
-
clear: string;
|
|
37
|
-
};
|
|
38
|
-
};
|
|
39
|
-
DatePickerRange: {
|
|
40
|
-
placeholder: string[];
|
|
41
|
-
dataPreset: {
|
|
42
|
-
today: string;
|
|
43
|
-
'1-week': string;
|
|
44
|
-
'1-month': string;
|
|
45
|
-
'3-month': string;
|
|
46
|
-
'6-month': string;
|
|
47
|
-
'1-year': string;
|
|
48
|
-
all: string;
|
|
49
|
-
};
|
|
50
|
-
};
|
|
51
|
-
TimePicker: {
|
|
52
|
-
placeholder: string;
|
|
53
|
-
footer: {
|
|
54
|
-
ok: string;
|
|
55
|
-
clear: string;
|
|
56
|
-
};
|
|
57
|
-
};
|
|
58
|
-
TimeRangePicker: {
|
|
59
|
-
placeholder: string[];
|
|
60
|
-
};
|
|
61
|
-
FileUpload: {
|
|
62
|
-
label: string;
|
|
63
|
-
};
|
|
64
|
-
Table: {
|
|
65
|
-
noDataText: string;
|
|
66
|
-
};
|
|
67
|
-
ColumnViewController: {
|
|
68
|
-
noFixedItemsText: string;
|
|
69
|
-
fixedSectionTitle: string;
|
|
70
|
-
listSectionTitle: string;
|
|
71
|
-
max: string;
|
|
72
|
-
items: string;
|
|
73
|
-
};
|
|
74
|
-
CategorySelector: {
|
|
75
|
-
levelCategory: string;
|
|
76
|
-
selectParentCategoryLine1: string;
|
|
77
|
-
selectParentCategoryLine2: string;
|
|
78
|
-
};
|
|
79
|
-
};
|