cecomponent 1.0.176 → 1.0.179

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.
@@ -6,6 +6,7 @@ interface AutoCompleteProps {
6
6
  onChange: (val: string[]) => void;
7
7
  multiple?: boolean;
8
8
  showCheckboxes?: boolean;
9
+ required?: boolean;
9
10
  }
10
11
  declare const AutoCompleteInput: React.FC<AutoCompleteProps>;
11
12
  export default AutoCompleteInput;
@@ -11,6 +11,7 @@ interface CEAutoCompleteSelectProps {
11
11
  multiple?: boolean;
12
12
  showCheckboxes?: boolean;
13
13
  id?: string;
14
+ required?: boolean;
14
15
  }
15
16
  declare const CEAutoCompleteSelect: React.FC<CEAutoCompleteSelectProps>;
16
17
  export default CEAutoCompleteSelect;
@@ -6,6 +6,7 @@ interface DatePickerProps {
6
6
  focused?: boolean;
7
7
  id?: string;
8
8
  name?: string;
9
+ required?: boolean;
9
10
  }
10
11
  declare const CEDatePicker: FC<DatePickerProps>;
11
12
  export default CEDatePicker;
@@ -16,6 +16,7 @@ interface InputDropDownProps {
16
16
  showInputPills?: boolean;
17
17
  id?: string;
18
18
  name?: string;
19
+ required?: boolean;
19
20
  }
20
21
  declare const InputDropDown: React.FC<InputDropDownProps>;
21
22
  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.176",
4
+ "version": "1.0.179",
5
5
  "main": "dist/ce-component-lib.js",
6
6
  "module": "dist/ce-component-lib.mjs",
7
7
  "types": "dist/idex.d.ts",