cecomponent 1.0.28 → 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.
- package/dist/ce-component-lib.css +1 -1
- package/dist/ce-component-lib.js +11 -11
- package/dist/ce-component-lib.mjs +2896 -2734
- package/dist/components/Common/CEAutoSuggestInput/CEAutoSuggestInput.d.ts +1 -0
- package/dist/components/Common/CEFileUpload/CEUploadPopUp.d.ts +2 -2
- package/dist/components/Common/DataGrid/CEDataGridDynamicsTable.d.ts +1 -0
- package/dist/components/Common/DataGrid/CETruncatedTextWithTooltip.d.ts +7 -0
- package/dist/components/Common/InputDropDown/InputDropDown.d.ts +9 -7
- package/dist/index.d.ts +1 -0
- package/package.json +4 -4
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
declare const
|
|
3
|
-
export default
|
|
2
|
+
declare const CEUploadModalWrapper: React.FC;
|
|
3
|
+
export default CEUploadModalWrapper;
|
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { Size } from '../Tokens/CESizes';
|
|
3
|
-
interface
|
|
3
|
+
interface Option {
|
|
4
4
|
label: string;
|
|
5
|
+
value: string;
|
|
5
6
|
}
|
|
6
7
|
interface InputDropDownProps {
|
|
7
|
-
options:
|
|
8
|
-
|
|
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
|
|
16
|
-
export default
|
|
17
|
+
declare const InputDropDown: React.FC<InputDropDownProps>;
|
|
18
|
+
export default InputDropDown;
|
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export { default as CEBreadcrumbs } from './components/Common/Breadcrumb/CEBread
|
|
|
2
2
|
export { default as CEButton } from './components/Common/Button/CEButton';
|
|
3
3
|
export { default as CEAutoSuggestInput } from './components/Common/CEAutoSuggestInput/CEAutoSuggestInput';
|
|
4
4
|
export { default as CEDrawer } from './components/Common/CEDrawer/CEDrawer';
|
|
5
|
+
export { default as CEUploadModalWrapper } from './components/Common/CEFileUpload/CEUploadPopUp';
|
|
5
6
|
export { default as CESnackBar } from './components/Common/CESnackBar/CESnackBar';
|
|
6
7
|
export { default as CEStepper } from './components/Common/CEStepper/CEStepper';
|
|
7
8
|
export { default as CECheckbox } from './components/Common/CheckBox/CECheckBox';
|
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.
|
|
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
|
}
|