@tracktor/design-system 4.31.5 → 4.32.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/dist/main.cjs +31 -31
- package/dist/main.js +1094 -1097
- package/dist/src/components/DataDisplay/Kanban/Kanban.d.ts +1 -1
- package/dist/src/components/DataDisplay/Kanban/components/KanbanColumn.d.ts +1 -2
- package/dist/src/components/DataDisplay/Kanban/types.d.ts +0 -4
- package/package.json +1 -1
|
@@ -12,5 +12,5 @@ type KanbanItemProps = {
|
|
|
12
12
|
};
|
|
13
13
|
};
|
|
14
14
|
export declare const VirtualizedKanbanItem: ({ index, data }: KanbanItemProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
15
|
-
declare const Kanban: ({ data, onClickItem, disableCount, onColumnInView, emptyState, chipColumVariant, chipStatus, headerColumnChip, activeItemId, variant, chipColumDot, height, itemPerPage, listWidth,
|
|
15
|
+
declare const Kanban: ({ data, onClickItem, disableCount, onColumnInView, emptyState, chipColumVariant, chipStatus, headerColumnChip, activeItemId, variant, chipColumDot, height, itemPerPage, listWidth, loadMoreItems, }: KanbanProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
16
16
|
export default Kanban;
|
|
@@ -13,7 +13,6 @@ export interface KanbanColumnProps {
|
|
|
13
13
|
itemPerPage?: number;
|
|
14
14
|
listWidth: number | string;
|
|
15
15
|
disableCount?: boolean;
|
|
16
|
-
itemCount: number;
|
|
17
16
|
activeItemId: string;
|
|
18
17
|
onClickItem?: (id: string) => void;
|
|
19
18
|
loadMoreItems?: (startIndex: number, stopIndex: number, status?: string) => void;
|
|
@@ -21,5 +20,5 @@ export interface KanbanColumnProps {
|
|
|
21
20
|
headerColumnChip?: HeaderColumnChip;
|
|
22
21
|
variant?: KanbanCardVariant;
|
|
23
22
|
}
|
|
24
|
-
declare const KanbanColumn: import('react').MemoExoticComponent<({ name, label, count, items, isFetching, isLoading, gutterSize, itemPerPage, listWidth, disableCount, loadMoreItems,
|
|
23
|
+
declare const KanbanColumn: import('react').MemoExoticComponent<({ name, label, count, items, isFetching, isLoading, gutterSize, itemPerPage, listWidth, disableCount, loadMoreItems, activeItemId, onClickItem, onInView, chipColumVariant, chipColumDot, chipStatus, headerColumnChip, variant, }: KanbanColumnProps) => import("@emotion/react/jsx-runtime").JSX.Element>;
|
|
25
24
|
export default KanbanColumn;
|
|
@@ -72,10 +72,6 @@ export interface KanbanProps {
|
|
|
72
72
|
* Disables the count of items in the Kanban list.
|
|
73
73
|
*/
|
|
74
74
|
disableCount?: boolean;
|
|
75
|
-
/**
|
|
76
|
-
* Total number of items in the list. Note that only a few items will be rendered and displayed at a time.
|
|
77
|
-
*/
|
|
78
|
-
itemCount?: number;
|
|
79
75
|
/**
|
|
80
76
|
* The number of items to display per page.
|
|
81
77
|
*/
|