cecomponent 1.0.173 → 1.0.175

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,18 +6,19 @@ interface DateRange {
6
6
  }
7
7
  interface CEDateRangePickerProps {
8
8
  label?: string;
9
+ tooltip?: string;
10
+ required?: boolean;
9
11
  onChange?: (range: DateRange) => void;
10
12
  size?: Size;
11
13
  style?: React.CSSProperties;
12
14
  inputGroupStyle?: React.CSSProperties;
13
- /** optional id for testing or identification */
14
15
  id?: string;
15
- /** optional name for testing or form identification */
16
16
  name?: string;
17
17
  mode?: "range" | "single";
18
18
  defaultValue?: DateRange;
19
19
  disabled?: boolean;
20
20
  minDate?: string;
21
+ defaultFloat?: boolean;
21
22
  }
22
23
  declare const CEDateRangePicker: React.FC<CEDateRangePickerProps>;
23
24
  export default CEDateRangePicker;
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.173",
4
+ "version": "1.0.175",
5
5
  "main": "dist/ce-component-lib.js",
6
6
  "module": "dist/ce-component-lib.mjs",
7
7
  "types": "dist/idex.d.ts",