@acuteinfo/common-base 1.0.94 → 1.0.96
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/formbutton/formbutton.d.ts +4 -0
- package/dist/components/custom/Remarks.d.ts +3 -1
- package/dist/components/dataTable/headerCellWrapper.d.ts +1 -0
- package/dist/components/dataTableStatic/grid.d.ts +1 -1
- package/dist/components/fileUpload/preView.d.ts +2 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -19,6 +19,10 @@ interface MyButtonExtendedProps {
|
|
|
19
19
|
rotateIcon?: string;
|
|
20
20
|
setValueOnDependentFieldsChange?: any;
|
|
21
21
|
onFormButtonClickHandel?: any;
|
|
22
|
+
ignoreInSubmit?: (dependentValues: any, formState: any, object: {
|
|
23
|
+
isSubmitting?: boolean;
|
|
24
|
+
value?: string;
|
|
25
|
+
}) => boolean | boolean;
|
|
22
26
|
}
|
|
23
27
|
type MyButtonMixedProps = Merge<ButtonProps, extendedFiledProps>;
|
|
24
28
|
export type MyFormButtonAllProps = Merge<MyButtonMixedProps, MyButtonExtendedProps>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const RemarksAPIWrapper: ({ TitleText, onActionNo, onActionYes, isRequired, isEntertoSubmit, AcceptbuttonLabelText, CanceltbuttonLabelText, isLoading, open, label, placeholder, defaultValue, rows, customRequiredMessage, }: {
|
|
1
|
+
export declare const RemarksAPIWrapper: ({ TitleText, onActionNo, onActionYes, isRequired, isEntertoSubmit, AcceptbuttonLabelText, CanceltbuttonLabelText, isLoading, open, label, placeholder, defaultValue, rows, customRequiredMessage, maxLength, showMaxLength }: {
|
|
2
2
|
TitleText: any;
|
|
3
3
|
onActionNo: any;
|
|
4
4
|
onActionYes: any;
|
|
@@ -13,4 +13,6 @@ export declare const RemarksAPIWrapper: ({ TitleText, onActionNo, onActionYes, i
|
|
|
13
13
|
defaultValue?: string | undefined;
|
|
14
14
|
rows: any;
|
|
15
15
|
customRequiredMessage?: string | undefined;
|
|
16
|
+
maxLength?: number | undefined;
|
|
17
|
+
showMaxLength?: boolean | undefined;
|
|
16
18
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -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, externalExportState, onExportModalClose, enablePdfPrint, reportTemplateCode }: {
|
|
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, enablePdfPrint, reportTemplateCode, }: {
|
|
2
2
|
label: any;
|
|
3
3
|
dense: any;
|
|
4
4
|
columns: any;
|
|
@@ -18,6 +18,7 @@ export declare const PDFViewer: FC<{
|
|
|
18
18
|
label: string;
|
|
19
19
|
};
|
|
20
20
|
hideDownloadBtn?: boolean;
|
|
21
|
+
hideFilename?: boolean;
|
|
21
22
|
contentStyle?: any;
|
|
22
23
|
actionStyle?: any;
|
|
23
24
|
}>;
|
|
@@ -25,6 +26,7 @@ export declare const ImageViewer: FC<{
|
|
|
25
26
|
blob: File;
|
|
26
27
|
fileName: string;
|
|
27
28
|
onClose?: any;
|
|
29
|
+
hideFilename?: boolean;
|
|
28
30
|
}>;
|
|
29
31
|
export declare const NoPreview: FC<{
|
|
30
32
|
fileName: string;
|