cecomponent 1.0.29 → 1.0.30

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.
@@ -12,6 +12,7 @@ interface AutoSuggestInputProps {
12
12
  size?: Size;
13
13
  multipleSelection?: boolean;
14
14
  showSearchIcon?: boolean;
15
+ showDropdownIcon?: boolean;
15
16
  }
16
17
  declare const CEAutoSuggestInput: React.FC<AutoSuggestInputProps>;
17
18
  export default CEAutoSuggestInput;
@@ -5,6 +5,7 @@ interface ColumnConfig {
5
5
  tooltip?: string;
6
6
  }
7
7
  interface CEDataGridDynamicTableProps {
8
+ title?: React.ReactNode;
8
9
  jsonData: any[];
9
10
  columnList?: ColumnConfig[];
10
11
  ischeckBoxInGrid?: boolean;
@@ -0,0 +1,7 @@
1
+ import { default as React } from 'react';
2
+ interface Props {
3
+ text: string;
4
+ wordCount?: number;
5
+ }
6
+ declare const CETruncatedTextWithTooltip: React.FC<Props>;
7
+ export default CETruncatedTextWithTooltip;
@@ -1,16 +1,18 @@
1
1
  import { default as React } from 'react';
2
2
  import { Size } from '../Tokens/CESizes';
3
- interface DropdownOption {
3
+ interface Option {
4
4
  label: string;
5
+ value: string;
5
6
  }
6
7
  interface InputDropDownProps {
7
- options: DropdownOption[];
8
- selectedOptions: string[];
8
+ options: Option[];
9
+ selected: string[];
9
10
  onChange: (selected: string[]) => void;
11
+ multiple?: boolean;
10
12
  placeholder?: string;
11
- multipleSelection?: boolean;
12
- style?: React.CSSProperties;
13
13
  size?: Size;
14
+ style?: React.CSSProperties;
15
+ allowClear?: boolean;
14
16
  }
15
- declare const CEInputDropDown: React.FC<InputDropDownProps>;
16
- export default CEInputDropDown;
17
+ declare const InputDropDown: React.FC<InputDropDownProps>;
18
+ 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.29",
4
+ "version": "1.0.30",
5
5
  "main": "dist/ce-component-lib.js",
6
6
  "module": "dist/ce-component-lib.mjs",
7
7
  "types": "dist/index.d.ts",
@@ -39,8 +39,7 @@
39
39
  "react-router-dom": "^7.3.0",
40
40
  "recharts": "^2.15.1",
41
41
  "styled-components": "^6.1.14",
42
- "url": "^0.11.4",
43
- "vite-plugin-dts": "^4.5.4"
42
+ "url": "^0.11.4"
44
43
  },
45
44
  "peerDependencies": {
46
45
  "react": "^19.1.0",
@@ -59,6 +58,7 @@
59
58
  "prettier": "3.4.2",
60
59
  "typescript": "~5.6.2",
61
60
  "typescript-eslint": "^8.18.2",
62
- "vite": "^6.0.5"
61
+ "vite": "^6.0.5",
62
+ "vite-plugin-dts": "^4.5.4"
63
63
  }
64
64
  }