@acuteinfo/common-base 1.0.59 → 1.0.61
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/common/autocomplete/autocomplete.d.ts +2 -0
- package/dist/components/dataTableStatic/grid.d.ts +3 -1
- package/dist/components/dataTableStatic/types.d.ts +10 -0
- package/dist/components/formcomponent/masterDetails/masterDetailsForm.d.ts +3 -0
- package/dist/components/tableCellComponents/footerCell.d.ts +3 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -35,6 +35,8 @@ interface AutoCompleteExtendedProps {
|
|
|
35
35
|
placeholder?: string;
|
|
36
36
|
} | null | undefined;
|
|
37
37
|
defaultValueKey?: string;
|
|
38
|
+
listBoxMinWidth?: number;
|
|
39
|
+
setValueOnDependentFieldsChange?: any;
|
|
38
40
|
}
|
|
39
41
|
type MyAutocompleteProps = Merge<AutocompleteProps<OptionsProps, true, true, true>, AutoCompleteExtendedProps>;
|
|
40
42
|
export type MyAllAutocompleteProps = Merge<MyAutocompleteProps, UseFieldHookProps>;
|
|
@@ -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, enablePaginationInput, defaultSelectedRowId, footerNote, paginationText, searchPlaceholder, enableExport, subGridLabel, hideActionBar, finalMetaData, }: {
|
|
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, finalMetaData, externalExportState, onExportModalClose }: {
|
|
2
2
|
label: any;
|
|
3
3
|
dense: any;
|
|
4
4
|
columns: any;
|
|
@@ -53,4 +53,6 @@ export declare const DataGrid: ({ label, dense, columns, data, loading, getRowId
|
|
|
53
53
|
subGridLabel: any;
|
|
54
54
|
hideActionBar: any;
|
|
55
55
|
finalMetaData: any;
|
|
56
|
+
externalExportState: any;
|
|
57
|
+
onExportModalClose: any;
|
|
56
58
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -246,6 +246,16 @@ export interface GridWrapperPropTypes {
|
|
|
246
246
|
* **NOT FOR EXTERNAL USE!**
|
|
247
247
|
*/
|
|
248
248
|
fieldDataRef?: any;
|
|
249
|
+
/**
|
|
250
|
+
* If true, open the grid export popup.
|
|
251
|
+
* @default false
|
|
252
|
+
*/
|
|
253
|
+
externalExportState?: boolean;
|
|
254
|
+
/**
|
|
255
|
+
* Callback fires when export modal is closing.
|
|
256
|
+
* @returns void
|
|
257
|
+
*/
|
|
258
|
+
onExportModalClose?: () => void;
|
|
249
259
|
}
|
|
250
260
|
export interface GridYupSchemaMetaDataType {
|
|
251
261
|
type: "string" | "number" | "boolean" | "date";
|
|
@@ -30,5 +30,8 @@ export interface MasterDetailsArgumentType {
|
|
|
30
30
|
isDetailRowRequire?: boolean;
|
|
31
31
|
subHeaderLabel?: string;
|
|
32
32
|
subHeaderLabelStyle?: SxProps;
|
|
33
|
+
hideDisplayModeInTitle?: boolean;
|
|
34
|
+
headerToolbarStyle?: SxProps;
|
|
35
|
+
refetchData?: any;
|
|
33
36
|
}
|
|
34
37
|
export declare const MasterDetailsForm: import("react").ForwardRefExoticComponent<MasterDetailsArgumentType & import("react").RefAttributes<any>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const FooterCell: ({ rows, column: { id: columnName, isDisplayTotal, totalDecimalCount, isSelectedTotal, setFooterValue, footerLabel, footerIsMultivalue, Cell, }, }: {
|
|
1
|
+
export declare const FooterCell: ({ rows, column: { id: columnName, isDisplayTotal, totalDecimalCount, isSelectedTotal, setFooterValue, footerLabel, footerIsMultivalue, currencyRefColumn, isCurrencyCode, Cell, }, }: {
|
|
2
2
|
rows: any;
|
|
3
3
|
column: {
|
|
4
4
|
id: any;
|
|
@@ -8,6 +8,8 @@ export declare const FooterCell: ({ rows, column: { id: columnName, isDisplayTot
|
|
|
8
8
|
setFooterValue: any;
|
|
9
9
|
footerLabel?: string | undefined;
|
|
10
10
|
footerIsMultivalue?: boolean | undefined;
|
|
11
|
+
currencyRefColumn: any;
|
|
12
|
+
isCurrencyCode: any;
|
|
11
13
|
Cell: any;
|
|
12
14
|
};
|
|
13
15
|
}) => import("react/jsx-runtime").JSX.Element;
|