cecomponent 1.0.24 → 1.0.26
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 +1859 -1806
- package/dist/components/Common/DataGrid/CEDataGridDynamicsTable.d.ts +2 -1
- package/dist/components/Common/InputBox/CEInputTextBox.d.ts +3 -0
- package/dist/components/Common/InputDropDown/InputDropDown.d.ts +2 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -2,9 +2,10 @@ import { default as React } from 'react';
|
|
|
2
2
|
interface ColumnConfig {
|
|
3
3
|
id: string;
|
|
4
4
|
label?: string;
|
|
5
|
+
tooltip?: string;
|
|
5
6
|
}
|
|
6
7
|
interface CEDataGridDynamicTableProps {
|
|
7
|
-
|
|
8
|
+
jsonData: any[];
|
|
8
9
|
columnList?: ColumnConfig[];
|
|
9
10
|
ischeckBoxInGrid?: boolean;
|
|
10
11
|
isSearchBoxInGrid?: boolean;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
+
import { Size } from '../Tokens/CESizes';
|
|
2
3
|
type InputType = "text" | "number" | "alphanumeric" | "password" | "email";
|
|
3
4
|
interface ValidatedInputProps {
|
|
4
5
|
value: string;
|
|
@@ -13,6 +14,8 @@ interface ValidatedInputProps {
|
|
|
13
14
|
showError?: boolean;
|
|
14
15
|
label?: string;
|
|
15
16
|
disabled?: boolean;
|
|
17
|
+
style?: React.CSSProperties;
|
|
18
|
+
size?: Size;
|
|
16
19
|
}
|
|
17
20
|
declare const CEInputBox: React.FC<ValidatedInputProps>;
|
|
18
21
|
export default CEInputBox;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
+
import { Size } from '../Tokens/CESizes';
|
|
2
3
|
interface DropdownOption {
|
|
3
4
|
label: string;
|
|
4
5
|
}
|
|
@@ -8,6 +9,7 @@ interface InputDropDownProps {
|
|
|
8
9
|
onChange: (selected: string[]) => void;
|
|
9
10
|
placeholder?: string;
|
|
10
11
|
multipleSelection?: boolean;
|
|
12
|
+
size?: Size;
|
|
11
13
|
}
|
|
12
14
|
declare const CEInputDropDown: React.FC<InputDropDownProps>;
|
|
13
15
|
export default CEInputDropDown;
|
package/dist/index.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export { default as CEDialogBox } from './components/Common/Dailog/CEDialogBox';
|
|
|
11
11
|
export { default as CEDataGridDynamicTable } from './components/Common/DataGrid/CEDataGridDynamicsTable';
|
|
12
12
|
export { default as CEDatePicker } from './components/Common/DatePicker/CEDatePicker';
|
|
13
13
|
export { default as CEDateRangePicker } from './components/Common/DateRangePicker/CEDateRangePicker';
|
|
14
|
+
export { default as CEFieldsInput } from './components/Common/Fields/CEFields';
|
|
14
15
|
export { default as CEModalPopUp } from './components/Common/CEModalPopUp/CEModalPopUp';
|
|
15
16
|
export { default as CEFooter } from './components/Common/Footer/CEFooter';
|
|
16
17
|
export { CEGridLayout } from './components/Common/GridLayout/CEGridLayout';
|
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.26",
|
|
5
5
|
"main": "dist/ce-component-lib.js",
|
|
6
6
|
"module": "dist/ce-component-lib.mjs",
|
|
7
7
|
"types": "dist/index.d.ts",
|