cecomponent 1.0.33 → 1.0.35
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 +26 -26
- package/dist/ce-component-lib.mjs +2732 -2697
- package/dist/components/Common/DataGrid/CEDataGridDynamicsTable.d.ts +6 -0
- package/dist/components/Common/RadioButton/CERadioButton.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -3,12 +3,18 @@ interface ColumnConfig {
|
|
|
3
3
|
id: string;
|
|
4
4
|
label?: string;
|
|
5
5
|
tooltip?: string;
|
|
6
|
+
shouldDisplay?: boolean;
|
|
7
|
+
shouldVisible?: boolean;
|
|
6
8
|
}
|
|
7
9
|
interface CEDataGridDynamicTableProps {
|
|
8
10
|
title?: React.ReactNode;
|
|
9
11
|
jsonData: any[];
|
|
10
12
|
columnList?: ColumnConfig[];
|
|
11
13
|
ischeckBoxInGrid?: boolean;
|
|
14
|
+
isRadioButtonInGrid?: boolean;
|
|
15
|
+
renderRadioInColumnId?: string;
|
|
16
|
+
onRadioChange?: (rowIndex: number, value: string) => void;
|
|
17
|
+
getSelectedRadioValue?: (rowIndex: number) => string;
|
|
12
18
|
isSearchBoxInGrid?: boolean;
|
|
13
19
|
isAddButtonRequired?: boolean;
|
|
14
20
|
isEditButtonRequired?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { default as CEBreadcrumbs } from './components/Common/Breadcrumb/CEBreadcrumbs';
|
|
2
2
|
export { default as CEButton } from './components/Common/Button/CEButton';
|
|
3
|
+
export { default as CeBox } from './components/Common/Box/CeBox';
|
|
3
4
|
export { default as CEAutoSuggestInput } from './components/Common/CEAutoSuggestInput/CEAutoSuggestInput';
|
|
4
5
|
export { default as CEDrawer } from './components/Common/CEDrawer/CEDrawer';
|
|
5
6
|
export { default as CEUploadModalWrapper } from './components/Common/CEFileUpload/CEUploadPopUp';
|
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.35",
|
|
5
5
|
"main": "dist/ce-component-lib.js",
|
|
6
6
|
"module": "dist/ce-component-lib.mjs",
|
|
7
7
|
"types": "dist/index.d.ts",
|