cecomponent 1.0.186 → 1.0.188

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.
@@ -28,6 +28,7 @@ interface ValidatedInputProps {
28
28
  onBlur?: (e: FocusEvent<HTMLInputElement | HTMLTextAreaElement>) => void;
29
29
  autoFocus?: boolean;
30
30
  alwaysShowLabel?: boolean;
31
+ decimalScale?: number;
31
32
  }
32
33
  declare const CEInputBox: React.FC<ValidatedInputProps>;
33
34
  export default CEInputBox;
@@ -17,6 +17,8 @@ interface InputDropDownProps {
17
17
  id?: string;
18
18
  name?: string;
19
19
  required?: boolean;
20
+ enableSelectAll?: boolean;
21
+ selectAllLabel?: string;
20
22
  }
21
23
  declare const InputDropDown: React.FC<InputDropDownProps>;
22
24
  export default InputDropDown;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cecomponent",
3
3
  "description": "A React component library for building modern UIs for Cleanearth",
4
- "version": "1.0.186",
4
+ "version": "1.0.188",
5
5
  "main": "dist/ce-component-lib.js",
6
6
  "module": "dist/ce-component-lib.mjs",
7
7
  "types": "dist/idex.d.ts",