@acuteinfo/common-base 1.0.104 → 1.0.105

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.
@@ -9,10 +9,6 @@ interface MyGridExtendedProps {
9
9
  GridProps?: GridProps;
10
10
  enableGrid: boolean;
11
11
  runPostValidationForInitValue?: boolean;
12
- setFieldLabel?: (dependentFields?: any, value?: any) => {
13
- label: string;
14
- placeholder?: string;
15
- } | null | undefined;
16
12
  }
17
13
  export type MyTimeTimePickerAllProps = Merge<Merge<KeyboardTimePickerPropsSubset, MyGridExtendedProps>, UseFieldHookProps>;
18
14
  export declare const MyTimePicker: FC<MyTimeTimePickerAllProps>;
@@ -113,7 +113,6 @@ export interface RenderFunctionType {
113
113
  export interface FormWrapperProps {
114
114
  metaData: MetaDataType;
115
115
  initialValues?: InitialValuesType;
116
- previousValues?: InitialValuesType;
117
116
  onSubmitHandler: SubmitFnType;
118
117
  hidden?: boolean;
119
118
  displayMode?: "new" | "view" | "edit" | (string & Record<never, never>) | null;
@@ -1,5 +1,4 @@
1
1
  import { InitialValuesType } from "packages/form";
2
2
  import { FieldMetaDataType } from "../types";
3
3
  export declare const constructInitialValue: (fields: FieldMetaDataType[], initialValues?: InitialValuesType, formState?: any, authState?: any) => {};
4
- export declare const constructPreviousValues: (fields: FieldMetaDataType[], previousValues?: InitialValuesType) => {};
5
4
  export declare const constructInitialValuesForArrayFields: (fields: FieldMetaDataType[], formState?: any, authState?: any) => {};
@@ -1,2 +1 @@
1
1
  export { default as Tooltip } from "./tooltip";
2
- export { HtmlTooltip } from "./htmlTooltip";