ados-rcm 1.1.606 → 1.1.607

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.
@@ -3,7 +3,10 @@ interface IANumInputNumberProps extends IAInputProps {
3
3
  canAsterisk?: boolean;
4
4
  max?: number;
5
5
  min?: number;
6
+ onChangeUnit?: (unit: string) => void;
6
7
  unit?: string;
8
+ unitMargin?: number;
9
+ unitOptions?: string[];
7
10
  }
8
11
  export type IANumInputProps = IANumInputNumberProps;
9
12
  /**
@@ -29,7 +29,7 @@ interface ISelectedRendererProps<T> {
29
29
  */
30
30
  selectedOption: T;
31
31
  }
32
- export declare const ASelectTypes: readonly ["Primary", "Secondary"];
32
+ export declare const ASelectTypes: readonly ["Primary", "Secondary", "Raw"];
33
33
  export type TASelectTypes = (typeof ASelectTypes)[number];
34
34
  export interface IASelectProps<T> extends IABaseProps {
35
35
  /**
@@ -72,7 +72,7 @@ export declare const textMeasurement: {
72
72
  placeholder?: React.ReactNode;
73
73
  selectedOption?: T | null;
74
74
  selectedOptions?: T[];
75
- type?: "Primary" | "Secondary";
75
+ type?: "Primary" | "Secondary" | "Raw";
76
76
  }): number;
77
77
  };
78
78
  export declare function useOffset(ref: React.RefObject<HTMLElement>, upperRef: React.RefObject<HTMLElement>): number;