@acuteinfo/common-base 1.2.38 → 1.2.40

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.
@@ -24,6 +24,7 @@ export interface GridColumnType {
24
24
  isVisible?: boolean;
25
25
  validation?: any;
26
26
  showTooltip?: boolean;
27
+ tooltipPlacement?: "top-start" | "top" | "top-end" | "left-start" | "left" | "left-end" | "right-start" | "right" | "right-end" | "bottom-start" | "bottom" | "bottom-end";
27
28
  schemaValidation?: GridYupSchemaMetaDataType;
28
29
  options?: any;
29
30
  isPassword?: boolean;
@@ -17,6 +17,7 @@ export declare const attachcombinedValidationFns: (columns: GridColumnType[], au
17
17
  dateFormat?: string | undefined;
18
18
  isVisible?: boolean | undefined;
19
19
  showTooltip?: boolean | undefined;
20
+ tooltipPlacement?: "bottom" | "left" | "right" | "top" | "bottom-end" | "bottom-start" | "left-end" | "left-start" | "right-end" | "right-start" | "top-end" | "top-start" | undefined;
20
21
  options?: any;
21
22
  isPassword?: boolean | undefined;
22
23
  disableCachingOptions?: boolean | undefined;
@@ -17,6 +17,7 @@ export declare const attachYupSchemaValidator: (columns: GridColumnType[]) => {
17
17
  isVisible?: boolean | undefined;
18
18
  validation?: any;
19
19
  showTooltip?: boolean | undefined;
20
+ tooltipPlacement?: "bottom" | "left" | "right" | "top" | "bottom-end" | "bottom-start" | "left-end" | "left-start" | "right-end" | "right-start" | "top-end" | "top-start" | undefined;
20
21
  options?: any;
21
22
  isPassword?: boolean | undefined;
22
23
  disableCachingOptions?: boolean | undefined;
@@ -36,6 +36,11 @@ export interface UserFlowType {
36
36
  export interface FormMetaDataType {
37
37
  name: string;
38
38
  label: string;
39
+ /**
40
+ * Set true to show user code along with form label
41
+ * @default false
42
+ */
43
+ showUserCode?: boolean;
39
44
  resetFieldOnUnmount: boolean;
40
45
  validationRun: "onBlur" | "onChange" | "all";
41
46
  render: FormRenderConfigType;
@@ -27,6 +27,7 @@ export declare const ImageViewer: FC<{
27
27
  fileName: string;
28
28
  onClose?: any;
29
29
  hideFilename?: boolean;
30
+ canZoom?: boolean;
30
31
  }>;
31
32
  export declare const NoPreview: FC<{
32
33
  fileName: string;