@acuteinfo/common-base 1.0.35 → 1.0.36
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/components/context/propertiesConfig/customProperties.d.ts +4 -0
- package/dist/components/dataTableStatic/grid.d.ts +2 -1
- package/dist/components/dataTableStatic/types.d.ts +1 -0
- package/dist/components/tableCellComponents/footerCell.d.ts +9 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -53,6 +53,10 @@ export interface CustomProperties {
|
|
|
53
53
|
* Accepts Field MetaData object for additional form fields
|
|
54
54
|
*/
|
|
55
55
|
customExtendedTypes?: ExtendedFieldMetaDataTypeOptional;
|
|
56
|
+
defaultGridConfig?: {
|
|
57
|
+
variant?: "standard" | "contained" | "outlined";
|
|
58
|
+
enablePaginationInput?: boolean;
|
|
59
|
+
};
|
|
56
60
|
}
|
|
57
61
|
interface ContextProps {
|
|
58
62
|
config?: CustomProperties;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const DataGrid: ({ label, dense, columns, data, loading, getRowId, defaultColumn, allowColumnReordering, disableSorting, defaultHiddenColumns, defaultSortOrder, defaultGroupBy, multipleActions, singleActions, doubleClickAction, alwaysAvailableAction, setGridAction, updateGridData, hideFooter, hideHeader, disableGlobalFilter, disableGroupBy, disableLoader, containerHeight, gridProps, pageSizes, defaultPageSize, enablePagination, allowRowSelection, hideNoDataFound, refetchData, hiddenFlag, autoRefreshInterval, allowFilter, filterMeta, allowColumnHiding, defaultFilter, isCusrsorFocused, onButtonActionHandel, controlsAtBottom, actionContextAtBottom, headerToolbarStyle, disableMultipleRowSelect, columnHeaderStyle, variant, defaultSelectedRowId, footerNote, paginationText, searchPlaceholder, enableExport, subGridLabel, hideActionBar, }: {
|
|
1
|
+
export declare const DataGrid: ({ label, dense, columns, data, loading, getRowId, defaultColumn, allowColumnReordering, disableSorting, defaultHiddenColumns, defaultSortOrder, defaultGroupBy, multipleActions, singleActions, doubleClickAction, alwaysAvailableAction, setGridAction, updateGridData, hideFooter, hideHeader, disableGlobalFilter, disableGroupBy, disableLoader, containerHeight, gridProps, pageSizes, defaultPageSize, enablePagination, allowRowSelection, hideNoDataFound, refetchData, hiddenFlag, autoRefreshInterval, allowFilter, filterMeta, allowColumnHiding, defaultFilter, isCusrsorFocused, onButtonActionHandel, controlsAtBottom, actionContextAtBottom, headerToolbarStyle, disableMultipleRowSelect, columnHeaderStyle, variant, enablePaginationInput, defaultSelectedRowId, footerNote, paginationText, searchPlaceholder, enableExport, subGridLabel, hideActionBar, }: {
|
|
2
2
|
label: any;
|
|
3
3
|
dense: any;
|
|
4
4
|
columns: any;
|
|
@@ -44,6 +44,7 @@ export declare const DataGrid: ({ label, dense, columns, data, loading, getRowId
|
|
|
44
44
|
disableMultipleRowSelect: any;
|
|
45
45
|
columnHeaderStyle: any;
|
|
46
46
|
variant: any;
|
|
47
|
+
enablePaginationInput: any;
|
|
47
48
|
defaultSelectedRowId: any;
|
|
48
49
|
footerNote: any;
|
|
49
50
|
paginationText: any;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare const FooterCell: ({ rows, column: { id: columnName, isDisplayTotal, totalDecimalCount, isSelectedTotal }, }: {
|
|
2
|
+
rows: any;
|
|
3
|
+
column: {
|
|
4
|
+
id: any;
|
|
5
|
+
isDisplayTotal?: boolean | undefined;
|
|
6
|
+
totalDecimalCount: any;
|
|
7
|
+
isSelectedTotal?: boolean | undefined;
|
|
8
|
+
};
|
|
9
|
+
}) => import("react/jsx-runtime").JSX.Element;
|