@acuteinfo/common-base 1.0.87 → 1.0.89

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.
@@ -39,6 +39,7 @@ interface AutoCompleteExtendedProps {
39
39
  listBoxMinWidth?: number;
40
40
  setValueOnDependentFieldsChange?: any;
41
41
  optionsGridColDef?: Record<string, Partial<GridColumnType>>;
42
+ runPostValidationForInitValue?: boolean;
42
43
  }
43
44
  type MyAutocompleteProps = Merge<AutocompleteProps<OptionsProps, true, true, true>, AutoCompleteExtendedProps>;
44
45
  export type MyAllAutocompleteProps = Merge<MyAutocompleteProps, UseFieldHookProps>;
@@ -24,6 +24,7 @@ interface MyCheckboxExtendedProps {
24
24
  label: string;
25
25
  placeholder?: string;
26
26
  } | null | undefined;
27
+ runPostValidationForInitValue?: boolean;
27
28
  }
28
29
  export type MyCheckboxAllProps = Merge<MyCheckboxMixedProps, MyCheckboxExtendedProps>;
29
30
  declare const MyCheckbox: FC<MyCheckboxAllProps>;
@@ -22,6 +22,7 @@ interface MyGridExtendedProps {
22
22
  label: string;
23
23
  placeholder?: string;
24
24
  } | null | undefined;
25
+ runPostValidationForInitValue?: boolean;
25
26
  }
26
27
  export type MyDataPickerAllProps = Merge<Merge<KeyboardDatePickerPropsSubset, MyGridExtendedProps>, UseFieldHookProps>;
27
28
  export declare const MyDatePicker: FC<MyDataPickerAllProps>;
@@ -17,6 +17,7 @@ interface MyGridExtendedProps {
17
17
  } | null | undefined;
18
18
  disablePast?: boolean;
19
19
  disableFuture?: boolean;
20
+ runPostValidationForInitValue?: boolean;
20
21
  }
21
22
  export type MyDateTimePickerAllProps = Merge<Merge<KeyboardDateTimePickerPropsSubset, MyGridExtendedProps>, UseFieldHookProps>;
22
23
  export declare const MyDateTimePicker: FC<MyDateTimePickerAllProps>;
@@ -8,6 +8,7 @@ type KeyboardTimePickerPropsSubset = Omit<TimePickerProps<any>, "onChange" | "va
8
8
  interface MyGridExtendedProps {
9
9
  GridProps?: GridProps;
10
10
  enableGrid: boolean;
11
+ runPostValidationForInitValue?: boolean;
11
12
  }
12
13
  export type MyTimeTimePickerAllProps = Merge<Merge<KeyboardTimePickerPropsSubset, MyGridExtendedProps>, UseFieldHookProps>;
13
14
  export declare const MyTimePicker: FC<MyTimeTimePickerAllProps>;
@@ -6,6 +6,7 @@ interface MyGridExtendedProps {
6
6
  enableGrid: boolean;
7
7
  setValueOnDependentFieldsChange?: any;
8
8
  ignoreInSubmit?: boolean;
9
+ runPostValidationForInitValue?: boolean;
9
10
  }
10
11
  export type MyHiddenFieldProps = UseFieldHookProps & MyGridExtendedProps;
11
12
  declare const MyHiddenField: FC<MyHiddenFieldProps>;
@@ -35,6 +35,7 @@ interface MySelectExtendedProps {
35
35
  } | null | undefined;
36
36
  label?: string;
37
37
  defaultValueKey?: string;
38
+ runPostValidationForInitValue?: boolean;
38
39
  }
39
40
  export type MySelectAllProps = Merge<MySelectProps, MySelectExtendedProps>;
40
41
  declare const MySelect: FC<MySelectAllProps>;
@@ -40,6 +40,7 @@ interface MyGridExtendedProps {
40
40
  * @default false
41
41
  */
42
42
  addHandleKeyDownFromExtendedType?: boolean;
43
+ runPostValidationForInitValue?: boolean;
43
44
  }
44
45
  type MyTextFieldAllProps = Merge<TextFieldProps, MyGridExtendedProps>;
45
46
  export type MyTextFieldProps = UseFieldHookProps & MyTextFieldAllProps;
@@ -125,7 +125,6 @@ export interface TableActionType {
125
125
  handleClose?: any;
126
126
  authState?: any;
127
127
  submitButtonRef?: any;
128
- hideActionBar?: boolean;
129
128
  }
130
129
  export interface GridContextType {
131
130
  gridCode: any;
@@ -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, hideActionToolbar, }: {
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, }: {
2
2
  label: any;
3
3
  dense: any;
4
4
  columns: any;
@@ -56,5 +56,4 @@ export declare const DataGrid: ({ label, dense, columns, data, loading, getRowId
56
56
  externalExportState: any;
57
57
  onExportModalClose: any;
58
58
  enablePdfPrint: any;
59
- hideActionToolbar: any;
60
59
  }) => import("react/jsx-runtime").JSX.Element;
@@ -258,7 +258,6 @@ export interface GridWrapperPropTypes {
258
258
  * @returns void
259
259
  */
260
260
  onExportModalClose?: () => void;
261
- hideActionToolbar?: boolean;
262
261
  }
263
262
  export interface GridYupSchemaMetaDataType {
264
263
  type: "string" | "number" | "boolean" | "date";