cecomponent 1.0.115 → 1.0.117

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.
@@ -16,6 +16,7 @@ export interface CESelectFieldProps extends SelectHTMLAttributes<HTMLSelectEleme
16
16
  labelClassName?: string;
17
17
  selectClassName?: string;
18
18
  containerStyle?: React.CSSProperties;
19
+ isRequiredLabel?: boolean;
19
20
  }
20
21
  declare const CEDynamicSelectField: React.ForwardRefExoticComponent<CESelectFieldProps & React.RefAttributes<HTMLSelectElement>>;
21
22
  export default CEDynamicSelectField;
@@ -6,7 +6,7 @@ export interface ColumnConfig {
6
6
  shouldDisplay?: boolean;
7
7
  shouldVisible?: boolean;
8
8
  width?: string;
9
- elementType?: "inputtext" | "autosuggestion" | "text";
9
+ elementType?: "inputtext" | "autosuggestion" | "text" | "datepicker";
10
10
  required?: boolean;
11
11
  }
12
12
  interface CEDataGridDynamicTableProps {
@@ -2,6 +2,7 @@ import { FC } from 'react';
2
2
  interface DatePickerProps {
3
3
  onChange: (date: string) => void;
4
4
  label?: string;
5
+ value?: string;
5
6
  }
6
7
  declare const CEDatePicker: FC<DatePickerProps>;
7
8
  export default CEDatePicker;
@@ -11,6 +11,7 @@ interface CEDateRangePickerProps {
11
11
  style?: React.CSSProperties;
12
12
  inputGroupStyle?: React.CSSProperties;
13
13
  mode?: "range" | "single";
14
+ defaultValue?: DateRange;
14
15
  }
15
16
  declare const CEDateRangePicker: React.FC<CEDateRangePickerProps>;
16
17
  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.115",
4
+ "version": "1.0.117",
5
5
  "main": "dist/ce-component-lib.js",
6
6
  "module": "dist/ce-component-lib.mjs",
7
7
  "types": "dist/index.d.ts",