@elliemae/ds-datagrids 3.17.0-next.12 → 3.17.0-next.14
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/types/DSDataGrid.d.ts +1 -2
- package/dist/types/DataGridImpl.d.ts +1 -2
- package/dist/types/PaginatedDataGrid.d.ts +2 -3
- package/dist/types/columns/IconColumn.d.ts +2 -3
- package/dist/types/components/BodyCell.d.ts +1 -2
- package/dist/types/components/BodyList.d.ts +1 -1
- package/dist/types/components/ColumnsOptionsMenuSection.d.ts +1 -2
- package/dist/types/components/EmptyState.d.ts +1 -2
- package/dist/types/components/HeaderCell.d.ts +1 -2
- package/dist/types/components/List.d.ts +1 -2
- package/dist/types/components/ListItem.d.ts +1 -2
- package/dist/types/components/NoResults.d.ts +1 -2
- package/dist/types/components/RowsLoader.d.ts +1 -2
- package/dist/types/components/Table.d.ts +2 -2
- package/dist/types/components/TableHeader.d.ts +1 -2
- package/dist/types/components/footer/addOptionalFooterComponents.d.ts +1 -2
- package/dist/types/components/header/PrimaryControls.d.ts +1 -2
- package/dist/types/components/header/addOptionalHeaderComponents.d.ts +1 -2
- package/dist/types/components/renderers/renderRowsLoader.d.ts +1 -2
- package/dist/types/plugins/custom-cell-renderer/getRendererComponent.d.ts +1 -2
- package/dist/types/plugins/editable/EditableComponents/ComboBox.d.ts +1 -1
- package/dist/types/plugins/editable/EditableComponents/TextBox.d.ts +1 -1
- package/dist/types/plugins/expandable-grid/ExpandableColumn.d.ts +1 -2
- package/dist/types/plugins/expandable-grid/ExpandedRow.d.ts +1 -2
- package/dist/types/plugins/expandable-grid/ExpandedRowExtra.d.ts +1 -2
- package/dist/types/plugins/filterable/components/FilterableHeader.d.ts +1 -2
- package/dist/types/plugins/filterable/components/filterable-menus/DateRangeFilterMenu.d.ts +1 -2
- package/dist/types/plugins/filterable/components/filterable-menus/SingleDateFilterMenu.d.ts +1 -2
- package/dist/types/plugins/filterable/components/filterable-menus/TextFilterMenu.d.ts +1 -2
- package/dist/types/plugins/filterable/filterableFormatter.d.ts +1 -2
- package/dist/types/plugins/pagination/components/Pagination.d.ts +1 -2
- package/dist/types/plugins/pagination/components/Paginator.d.ts +1 -2
- package/dist/types/plugins/pagination/components/PerPageDropdown.d.ts +1 -2
- package/dist/types/plugins/resizable/decorateResizable.d.ts +1 -2
- package/dist/types/plugins/resizable/useResizeHandle.d.ts +1 -1
- package/dist/types/plugins/selectable/selectableFormatter.d.ts +1 -2
- package/dist/types/plugins/sortable/sortHeaderFormatter.d.ts +1 -2
- package/dist/types/plugins/toolbar/RowRenderer.d.ts +1 -2
- package/dist/types/plugins/toolbar/ToolbarTrigger.d.ts +1 -2
- package/dist/types/plugins/virtualization/VirtualizedBody.d.ts +1 -2
- package/dist/types/renders/CellWithAddons.d.ts +1 -2
- package/package.json +20 -20
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
declare const DSDataGrids: {
|
3
2
|
({ containerProps, instanceRef, className, columns, rows, rowKey, infiniteScrolling, editable, sortable, sortEmptyLast, paginated, dragAndDropRows, selectable, resizeableColumns, searchFilters, dragAndDropColumns, useTreeData, autoScrollToId, overscanCount, selectAll, selectedRows, filters, onAddFilter, onRemoveFilter, onFiltersChange, showFilterBar, multiSelectFilterOptions, multiSelectFilterLabels, multiSelectFilterLabel, aggregations, groupingColumn, sortingColumns, minPerPage, maxPerPage, onPerPageChange, onPageChange, paginationStep, pagination, showHeader, fixedHeader, wrapText, height, minColumnWidth, showRowsLoader, visibleColumns, showSelectHighlight, showSelectColumn, selectColumnSortable, selectColumnFilterable, selectionColumnDefinition, filterBarOptions, renderToolbar, toolbarDelayClose, renderFilterToolbar, multiSelectComponent, noResultsRender, noResultsPlaceholder, fluidHeight, customHandlers, groupedBy, onDefaultFiltersLoad, onReorder, onMoveRowEnd, onMoveRowStart, onMoveColumnOver, onMoveColumnStart, onMoveColumnEnd, onColumnResize, onExpandChange, onToggleExpand, onExpandRow, onFilter, onSort, onColumnRowEdited, onColumnRowEdit, onSelectRow, onSelectAll, onInfiniteScrolling, onFilterMenuClose, onFilterMenuOpen, getData, serverSideData, isDataSorted, isDataFiltered, virtualized, numRowsVisible, isColumnEditable, groupedRows, groupedRowsRenderHeader, renderExpandedDetails, detailColumns, expandable, getChildrenRows, expandableSubrowsVisible, renderRowDetails, getExpandedRowSize, getExpandedRowMinSize, rowSize, subRowSize, bindColumnsSizeTo, bindRowSizeTo, onToggleShowAllRows, expandedRows, autoHeight, noColumnsPlaceholder, plugins, normalizeDataKeys, }: {
|
4
3
|
containerProps?: {} | undefined;
|
@@ -114,7 +113,7 @@ declare const DSDataGrids: {
|
|
114
113
|
noColumnsPlaceholder: any;
|
115
114
|
plugins?: never[] | undefined;
|
116
115
|
normalizeDataKeys?: boolean | undefined;
|
117
|
-
}): JSX.Element;
|
116
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
118
117
|
propTypes: {
|
119
118
|
/** ref to the instance of the datagrid, handle it imperatively */
|
120
119
|
instanceRef: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
declare const DataGridImpl: ({ className, renderers, columns, rows, containerProps, plugins: pluginsProp, normalizeDataKeys, ...otherProps }: {
|
3
2
|
[x: string]: any;
|
4
3
|
className: any;
|
@@ -8,6 +7,6 @@ declare const DataGridImpl: ({ className, renderers, columns, rows, containerPro
|
|
8
7
|
containerProps: any;
|
9
8
|
plugins: any;
|
10
9
|
normalizeDataKeys: any;
|
11
|
-
}) => JSX.Element;
|
10
|
+
}) => import("react/jsx-runtime.js").JSX.Element;
|
12
11
|
export { DataGridImpl };
|
13
12
|
export default DataGridImpl;
|
@@ -1,15 +1,14 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
declare const PaginatedDataGrid: ({ columns, rows, showRowsLoader, noResultsPlaceholder, rowsLoaderRenderer, maxPerPage, minPerPage, onPageSelect, onPerPage, pagination, ...otherProps }: {
|
3
2
|
[x: string]: any;
|
4
3
|
columns: any;
|
5
4
|
rows: any;
|
6
5
|
showRowsLoader: any;
|
7
6
|
noResultsPlaceholder: any;
|
8
|
-
rowsLoaderRenderer?: (() => JSX.Element) | undefined;
|
7
|
+
rowsLoaderRenderer?: (() => import("react/jsx-runtime.js").JSX.Element) | undefined;
|
9
8
|
maxPerPage: any;
|
10
9
|
minPerPage: any;
|
11
10
|
onPageSelect: any;
|
12
11
|
onPerPage: any;
|
13
12
|
pagination: any;
|
14
|
-
}) => JSX.Element;
|
13
|
+
}) => import("react/jsx-runtime.js").JSX.Element;
|
15
14
|
export default PaginatedDataGrid;
|
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
export declare const IconColumn: ({ property, label, headerIcon, getRowIcon, isVisited, intent, width, onClick, visible, resizable, sortable, searchable, }: {
|
3
2
|
property: any;
|
4
3
|
label: any;
|
@@ -19,10 +18,10 @@ export declare const IconColumn: ({ property, label, headerIcon, getRowIcon, isV
|
|
19
18
|
justifyContent: string;
|
20
19
|
};
|
21
20
|
header: {
|
22
|
-
formatters: (() => JSX.Element)[];
|
21
|
+
formatters: (() => import("react/jsx-runtime").JSX.Element)[];
|
23
22
|
};
|
24
23
|
cell: {
|
25
|
-
formatters: ((value: any, extraParams: any) => JSX.Element)[];
|
24
|
+
formatters: ((value: any, extraParams: any) => import("react/jsx-runtime").JSX.Element)[];
|
26
25
|
};
|
27
26
|
cellStyle: {
|
28
27
|
justifyContent: string;
|
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
import PropTypes from 'prop-types';
|
3
2
|
declare const BodyCell: {
|
4
3
|
({ component: Component, classProps, rowProps, column, columnIndex, rowIndex, grid }: {
|
@@ -9,7 +8,7 @@ declare const BodyCell: {
|
|
9
8
|
columnIndex: any;
|
10
9
|
rowIndex: any;
|
11
10
|
grid: any;
|
12
|
-
}): JSX.Element;
|
11
|
+
}): import("react/jsx-runtime").JSX.Element;
|
13
12
|
propTypes: {
|
14
13
|
component: PropTypes.Requireable<PropTypes.ReactElementLike>;
|
15
14
|
classProps: PropTypes.Requireable<PropTypes.InferProps<{
|
@@ -1,9 +1,8 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
declare const ColumnsOptionsMenuSection: ({ columns, onColumnVisibilityChange, searchable, height, }: {
|
3
2
|
columns: any;
|
4
3
|
onColumnVisibilityChange: any;
|
5
4
|
searchable?: boolean | undefined;
|
6
5
|
height: any;
|
7
|
-
}) => () => JSX.Element;
|
6
|
+
}) => () => import("react/jsx-runtime").JSX.Element;
|
8
7
|
export { ColumnsOptionsMenuSection };
|
9
8
|
export default ColumnsOptionsMenuSection;
|
@@ -1,7 +1,6 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
export declare const EmptyState: ({ primaryMessage, secondaryMessage, buttonLabel, onButtonClick, }: {
|
3
2
|
primaryMessage?: string | undefined;
|
4
3
|
secondaryMessage: any;
|
5
4
|
buttonLabel: any;
|
6
5
|
onButtonClick?: (() => void) | undefined;
|
7
|
-
}) => JSX.Element;
|
6
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
import PropTypes from 'prop-types';
|
3
2
|
export declare const HeaderCell: {
|
4
3
|
({ column, columnIndex, component: Component, classProps, grid }: {
|
@@ -7,7 +6,7 @@ export declare const HeaderCell: {
|
|
7
6
|
component: any;
|
8
7
|
classProps: any;
|
9
8
|
grid: any;
|
10
|
-
}): JSX.Element;
|
9
|
+
}): import("react/jsx-runtime").JSX.Element;
|
11
10
|
propTypes: {
|
12
11
|
column: PropTypes.Requireable<any>;
|
13
12
|
columnIndex: PropTypes.Requireable<number>;
|
@@ -1,8 +1,7 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
export declare const NoResults: ({ innerRef, rowRenderer, children, ...rest }: {
|
3
2
|
[x: string]: any;
|
4
3
|
innerRef: any;
|
5
4
|
rowRenderer: any;
|
6
5
|
children: any;
|
7
|
-
}) => JSX.Element;
|
6
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
8
7
|
export default NoResults;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
declare const Table: {
|
3
|
-
(props: any): JSX.Element;
|
4
|
-
Header: (props: any) => JSX.Element;
|
3
|
+
(props: any): import("react/jsx-runtime.js").JSX.Element;
|
4
|
+
Header: (props: any) => import("react/jsx-runtime.js").JSX.Element;
|
5
5
|
Body: React.NamedExoticComponent<object>;
|
6
6
|
};
|
7
7
|
export { Table };
|
@@ -1,7 +1,6 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
declare const addOptionalFooterComponents: ({ grid, rows }: {
|
3
2
|
grid: any;
|
4
3
|
rows: any;
|
5
|
-
}) => JSX.Element | null;
|
4
|
+
}) => import("react/jsx-runtime.js").JSX.Element | null;
|
6
5
|
export { addOptionalFooterComponents };
|
7
6
|
export default addOptionalFooterComponents;
|
@@ -1,9 +1,8 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
import PropTypes from 'prop-types';
|
3
2
|
export declare const addOptionalHeaderComponents: {
|
4
3
|
({ grid }: {
|
5
4
|
grid: any;
|
6
|
-
}): JSX.Element;
|
5
|
+
}): import("react/jsx-runtime").JSX.Element;
|
7
6
|
propTypes: {
|
8
7
|
grid: PropTypes.Requireable<any>;
|
9
8
|
};
|
@@ -1,2 +1 @@
|
|
1
|
-
|
2
|
-
export declare const renderRowsLoader: () => JSX.Element;
|
1
|
+
export declare const renderRowsLoader: () => import("react/jsx-runtime.js").JSX.Element;
|
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
declare const getRendererComponent: ({ props }: {
|
3
2
|
props: any;
|
4
3
|
}, { type, handlers, ...rest }: {
|
@@ -7,6 +6,6 @@ declare const getRendererComponent: ({ props }: {
|
|
7
6
|
handlers: any;
|
8
7
|
}, { rowData }: {
|
9
8
|
rowData: any;
|
10
|
-
}) => JSX.Element;
|
9
|
+
}) => import("react/jsx-runtime.js").JSX.Element;
|
11
10
|
export { getRendererComponent };
|
12
11
|
export default getRendererComponent;
|
@@ -6,7 +6,7 @@ declare class ComboBox extends Component {
|
|
6
6
|
constructor(props: any);
|
7
7
|
handleChange: (value: any) => void;
|
8
8
|
handleBlur: () => void;
|
9
|
-
render(): JSX.Element;
|
9
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
10
10
|
}
|
11
11
|
export { ComboBox };
|
12
12
|
export default ComboBox;
|
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
export declare const ExpandableColumn: ({ property, label, renderRowLabel, renderRowDescription, renderExtraData, width, resizable, sortable, searchable, customRenderer, ...rest }: {
|
3
2
|
[x: string]: any;
|
4
3
|
property: any;
|
@@ -18,7 +17,7 @@ export declare const ExpandableColumn: ({ property, label, renderRowLabel, rende
|
|
18
17
|
formatters: ((value: any, { rowData, isExpanded }: {
|
19
18
|
rowData: any;
|
20
19
|
isExpanded: any;
|
21
|
-
}, grid: any) => JSX.Element)[];
|
20
|
+
}, grid: any) => import("react/jsx-runtime.js").JSX.Element)[];
|
22
21
|
};
|
23
22
|
width: any;
|
24
23
|
expandableColumn: boolean;
|
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
declare const ExpandedRow: ({ parentGrid, detailColumns, rowData, rows, rowProps, cellComponent: CellComponent, rowComponent: RowComponent, }: {
|
3
2
|
parentGrid: any;
|
4
3
|
detailColumns: any;
|
@@ -7,6 +6,6 @@ declare const ExpandedRow: ({ parentGrid, detailColumns, rowData, rows, rowProps
|
|
7
6
|
rowProps: any;
|
8
7
|
cellComponent: any;
|
9
8
|
rowComponent: any;
|
10
|
-
}) => JSX.Element;
|
9
|
+
}) => import("react/jsx-runtime.js").JSX.Element;
|
11
10
|
export { ExpandedRow };
|
12
11
|
export default ExpandedRow;
|
@@ -1,10 +1,9 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
declare const ExpandedRowExtra: ({ children, rowData, rowProps, rowComponent: RowComponent, renderRowDetails, }: {
|
3
2
|
children: any;
|
4
3
|
rowData: any;
|
5
4
|
rowProps: any;
|
6
5
|
rowComponent: any;
|
7
6
|
renderRowDetails?: (() => null) | undefined;
|
8
|
-
}) => JSX.Element;
|
7
|
+
}) => import("react/jsx-runtime.js").JSX.Element;
|
9
8
|
export { ExpandedRowExtra };
|
10
9
|
export default ExpandedRowExtra;
|
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
import PropTypes from 'prop-types';
|
3
2
|
export declare const FilterableHeader: {
|
4
3
|
({ column, value, columnData, onAddFilter, onRemoveFilter, filterMenuRef, onFilterMenuClose, onFilterMenuOpen, filters, isMulti, }: {
|
@@ -12,7 +11,7 @@ export declare const FilterableHeader: {
|
|
12
11
|
onFilterMenuOpen: any;
|
13
12
|
filters: any;
|
14
13
|
isMulti: any;
|
15
|
-
}): JSX.Element;
|
14
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
16
15
|
propTypes: {
|
17
16
|
column: PropTypes.Requireable<any>;
|
18
17
|
value: PropTypes.Requireable<any>;
|
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
import PropTypes from 'prop-types';
|
3
2
|
declare const DateRangeFilterMenu: {
|
4
3
|
({ column, className, isMenuOpened, onOpenMenu, placement, onAddFilter, dateFormatter, showHeader, menuProps, }: {
|
@@ -14,7 +13,7 @@ declare const DateRangeFilterMenu: {
|
|
14
13
|
}, format?: string) => string) | undefined;
|
15
14
|
showHeader?: boolean | undefined;
|
16
15
|
menuProps: any;
|
17
|
-
}): JSX.Element;
|
16
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
18
17
|
propTypes: {
|
19
18
|
column: PropTypes.Requireable<any>;
|
20
19
|
className: PropTypes.Requireable<string>;
|
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
import PropTypes from 'prop-types';
|
3
2
|
declare const SingleDateFilterMenu: {
|
4
3
|
({ column, className, isMenuOpened, onOpenMenu, placement, onAddFilter, dateFormatter, showHeader, menuProps, }: {
|
@@ -11,7 +10,7 @@ declare const SingleDateFilterMenu: {
|
|
11
10
|
dateFormatter?: ((date: any, format?: string) => any) | undefined;
|
12
11
|
showHeader?: boolean | undefined;
|
13
12
|
menuProps: any;
|
14
|
-
}): JSX.Element;
|
13
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
15
14
|
propTypes: {
|
16
15
|
column: PropTypes.Requireable<any>;
|
17
16
|
className: PropTypes.Requireable<string>;
|
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
import PropTypes from 'prop-types';
|
3
2
|
declare const TextFilterMenu: {
|
4
3
|
({ column, menuStyle, className, filters, isMenuOpened, onOpenMenu, onClose, placement, menuProps, onAddFilter, onRemoveFilter, maxOptions, isMulti, }: {
|
@@ -15,7 +14,7 @@ declare const TextFilterMenu: {
|
|
15
14
|
onRemoveFilter?: (() => null) | undefined;
|
16
15
|
maxOptions?: number | undefined;
|
17
16
|
isMulti?: boolean | undefined;
|
18
|
-
}): JSX.Element;
|
17
|
+
}): import("react/jsx-runtime").JSX.Element;
|
19
18
|
propTypes: {
|
20
19
|
column: PropTypes.Requireable<any>;
|
21
20
|
menuStyle: PropTypes.Requireable<PropTypes.InferProps<{}>>;
|
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
declare const FilterableFormatter: ({ grid, onAddFilter, onRemoveFilter, query, filterMenuRef }: {
|
3
2
|
grid: any;
|
4
3
|
onAddFilter: any;
|
@@ -7,6 +6,6 @@ declare const FilterableFormatter: ({ grid, onAddFilter, onRemoveFilter, query,
|
|
7
6
|
filterMenuRef: any;
|
8
7
|
}) => (value: any, { column }: {
|
9
8
|
column: any;
|
10
|
-
}) => JSX.Element;
|
9
|
+
}) => import("react/jsx-runtime.js").JSX.Element;
|
11
10
|
export { FilterableFormatter };
|
12
11
|
export default FilterableFormatter;
|
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
declare const Pagination: ({ paginated, pagination, onPerPage, onPageSelect, paginationStep, maxPerPage, minPerPage, }: {
|
3
2
|
paginated: any;
|
4
3
|
pagination?: {} | undefined;
|
@@ -7,5 +6,5 @@ declare const Pagination: ({ paginated, pagination, onPerPage, onPageSelect, pag
|
|
7
6
|
paginationStep?: number | undefined;
|
8
7
|
maxPerPage?: number | undefined;
|
9
8
|
minPerPage?: number | undefined;
|
10
|
-
}) => JSX.Element | null;
|
9
|
+
}) => import("react/jsx-runtime.js").JSX.Element | null;
|
11
10
|
export { Pagination };
|
@@ -1,10 +1,9 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
declare const Paginator: ({ pagination, pages, onSelect, labelPrevious, labelNext }: {
|
3
2
|
pagination: any;
|
4
3
|
pages: any;
|
5
4
|
onSelect: any;
|
6
5
|
labelPrevious?: string | undefined;
|
7
6
|
labelNext?: string | undefined;
|
8
|
-
}) => JSX.Element;
|
7
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
9
8
|
export { Paginator };
|
10
9
|
export default Paginator;
|
@@ -1,10 +1,9 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
declare const PerPageDropdown: ({ min, max, step, value, onChange }: {
|
3
2
|
min?: number | undefined;
|
4
3
|
max?: number | undefined;
|
5
4
|
step?: number | undefined;
|
6
5
|
value?: number | undefined;
|
7
6
|
onChange?: (() => null) | undefined;
|
8
|
-
}) => JSX.Element;
|
7
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
9
8
|
export { PerPageDropdown };
|
10
9
|
export default PerPageDropdown;
|
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
declare const addResizableToColumn: (column: any, formatter: any) => any;
|
3
|
-
declare const resizableFormatter: (options: any) => (value: any) => JSX.Element;
|
2
|
+
declare const resizableFormatter: (options: any) => (value: any) => import("react/jsx-runtime.js").JSX.Element;
|
4
3
|
export { addResizableToColumn, resizableFormatter };
|
@@ -9,5 +9,5 @@ export declare const useResizeHandle: ({ onDragStart, onDrag, onDragEnd, minWidt
|
|
9
9
|
containerRef: React.MutableRefObject<undefined>;
|
10
10
|
Handle: ({ className }: {
|
11
11
|
className?: string | undefined;
|
12
|
-
}) => JSX.Element;
|
12
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
13
13
|
};
|
@@ -1,10 +1,9 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
declare const selectableFormatter: ({ isMultiSelect, renderer, className, isHeader, onSelect }: {
|
3
2
|
isMultiSelect?: boolean | undefined;
|
4
3
|
renderer: any;
|
5
4
|
className: any;
|
6
5
|
isHeader: any;
|
7
6
|
onSelect: any;
|
8
|
-
}, grid: any) => (valueRender: any, extraParams: any) => JSX.Element;
|
7
|
+
}, grid: any) => (valueRender: any, extraParams: any) => import("react/jsx-runtime").JSX.Element;
|
9
8
|
export { selectableFormatter };
|
10
9
|
export default selectableFormatter;
|
@@ -1,7 +1,6 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
declare const sortHeaderFormatter: (sortable: any, grid: any) => (value: any, { columnIndex, property }: {
|
3
2
|
columnIndex: any;
|
4
3
|
property: any;
|
5
|
-
}) => JSX.Element;
|
4
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
6
5
|
export { sortHeaderFormatter };
|
7
6
|
export default sortHeaderFormatter;
|
@@ -1,7 +1,6 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
import PropTypes from 'prop-types';
|
3
2
|
export declare const RowRenderer: (Row: any, grid: any) => {
|
4
|
-
(props: any): JSX.Element;
|
3
|
+
(props: any): import("react/jsx-runtime.js").JSX.Element;
|
5
4
|
propTypes: {
|
6
5
|
rowData: PropTypes.Requireable<any>;
|
7
6
|
index: PropTypes.Requireable<number>;
|
@@ -1,8 +1,7 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
export declare const ToolbarTrigger: ({ grid, rowData, hasScrollBar, rowRef }: {
|
3
2
|
grid: any;
|
4
3
|
rowData: any;
|
5
4
|
hasScrollBar: any;
|
6
5
|
rowRef: any;
|
7
|
-
}) => JSX.Element;
|
6
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
8
7
|
export default ToolbarTrigger;
|
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
import PropTypes from 'prop-types';
|
3
2
|
export declare const CellWithAddons: {
|
4
3
|
({ leftAddon, keepLeftPadding, rightAddon, badgeAddon, highLight, isEdit, editComponent, value, neutralText, metaData, }: {
|
@@ -12,7 +11,7 @@ export declare const CellWithAddons: {
|
|
12
11
|
value: any;
|
13
12
|
neutralText: any;
|
14
13
|
metaData: any;
|
15
|
-
}): JSX.Element;
|
14
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
16
15
|
propTypes: {
|
17
16
|
/** Text to render inside the cell */
|
18
17
|
value: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@elliemae/ds-datagrids",
|
3
|
-
"version": "3.17.0-next.
|
3
|
+
"version": "3.17.0-next.14",
|
4
4
|
"license": "MIT",
|
5
5
|
"description": "ICE MT - Dimsum - Data Grids",
|
6
6
|
"files": [
|
@@ -556,25 +556,25 @@
|
|
556
556
|
"sortabular": "~1.6.0",
|
557
557
|
"stylesheet-helpers": "~0.2.2",
|
558
558
|
"uuid": "~8.3.2",
|
559
|
-
"@elliemae/ds-button": "3.17.0-next.
|
560
|
-
"@elliemae/ds-classnames": "3.17.0-next.
|
561
|
-
"@elliemae/ds-controlled-form": "3.17.0-next.
|
562
|
-
"@elliemae/ds-datagrids": "3.17.0-next.
|
563
|
-
"@elliemae/ds-dropdownmenu": "3.17.0-next.
|
564
|
-
"@elliemae/ds-filterbar": "3.17.0-next.
|
565
|
-
"@elliemae/ds-form": "3.17.0-next.
|
566
|
-
"@elliemae/ds-grid": "3.17.0-next.
|
567
|
-
"@elliemae/ds-icons": "3.17.0-next.
|
568
|
-
"@elliemae/ds-
|
569
|
-
"@elliemae/ds-
|
570
|
-
"@elliemae/ds-
|
571
|
-
"@elliemae/ds-separator": "3.17.0-next.
|
572
|
-
"@elliemae/ds-shared": "3.17.0-next.
|
573
|
-
"@elliemae/ds-spinner": "3.17.0-next.
|
574
|
-
"@elliemae/ds-system": "3.17.0-next.
|
575
|
-
"@elliemae/ds-toolbar": "3.17.0-next.
|
576
|
-
"@elliemae/ds-truncated-tooltip-text": "3.17.0-next.
|
577
|
-
"@elliemae/ds-utilities": "3.17.0-next.
|
559
|
+
"@elliemae/ds-button": "3.17.0-next.14",
|
560
|
+
"@elliemae/ds-classnames": "3.17.0-next.14",
|
561
|
+
"@elliemae/ds-controlled-form": "3.17.0-next.14",
|
562
|
+
"@elliemae/ds-datagrids": "3.17.0-next.14",
|
563
|
+
"@elliemae/ds-dropdownmenu": "3.17.0-next.14",
|
564
|
+
"@elliemae/ds-filterbar": "3.17.0-next.14",
|
565
|
+
"@elliemae/ds-form": "3.17.0-next.14",
|
566
|
+
"@elliemae/ds-grid": "3.17.0-next.14",
|
567
|
+
"@elliemae/ds-icons": "3.17.0-next.14",
|
568
|
+
"@elliemae/ds-popper": "3.17.0-next.14",
|
569
|
+
"@elliemae/ds-props-helpers": "3.17.0-next.14",
|
570
|
+
"@elliemae/ds-menu": "3.17.0-next.14",
|
571
|
+
"@elliemae/ds-separator": "3.17.0-next.14",
|
572
|
+
"@elliemae/ds-shared": "3.17.0-next.14",
|
573
|
+
"@elliemae/ds-spinner": "3.17.0-next.14",
|
574
|
+
"@elliemae/ds-system": "3.17.0-next.14",
|
575
|
+
"@elliemae/ds-toolbar": "3.17.0-next.14",
|
576
|
+
"@elliemae/ds-truncated-tooltip-text": "3.17.0-next.14",
|
577
|
+
"@elliemae/ds-utilities": "3.17.0-next.14"
|
578
578
|
},
|
579
579
|
"devDependencies": {
|
580
580
|
"@testing-library/jest-dom": "~5.16.5",
|