cecomponent 2.0.24 → 2.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 +51 -51
- package/dist/ce-component-lib.mjs +2986 -2870
- package/dist/components/Common/CEAutoComplete/CEAutoCompleteSelect.d.ts +1 -0
- package/dist/components/Common/CEAutoSuggestInput/CEAdvancedAutoSuggest.d.ts +1 -0
- package/dist/components/Common/DataGrid/CEDataGridDynamicsTable.d.ts +4 -0
- package/dist/components/Common/DatePicker/CEDatePicker.d.ts +4 -0
- package/dist/components/Common/RadioButton/CERadioButton.d.ts +1 -0
- package/dist/components/Common/RadioButton/CERadioButtonGroup.d.ts +1 -0
- package/package.json +1 -1
|
@@ -31,6 +31,8 @@ interface CEDataGridDynamicTableProps {
|
|
|
31
31
|
isApproveButtonRequired?: boolean;
|
|
32
32
|
isReassignButtonRequired?: boolean;
|
|
33
33
|
isCancelButtonRequired?: boolean;
|
|
34
|
+
isCopyButtonRequired?: boolean;
|
|
35
|
+
isViewButtonRequired?: boolean;
|
|
34
36
|
noOfPagesPerPage?: number;
|
|
35
37
|
handleEditClick?: (row: any, rowIndex: number) => void;
|
|
36
38
|
handleAddClick?: () => void;
|
|
@@ -38,6 +40,8 @@ interface CEDataGridDynamicTableProps {
|
|
|
38
40
|
handleApproveClick?: (row: any, rowIndex: number) => void;
|
|
39
41
|
handleReassignClick?: () => void;
|
|
40
42
|
handleCancelClick?: (row: any, rowIndex: number) => void;
|
|
43
|
+
handleCopyClick?: (row: any, rowIndex: number) => void;
|
|
44
|
+
handleViewClick?: (row: any, rowIndex: number) => void;
|
|
41
45
|
clickableColumns?: string[];
|
|
42
46
|
isExportAllToExcel?: boolean;
|
|
43
47
|
conditionalClickableColumns?: Record<string, string[]>;
|
|
@@ -19,6 +19,10 @@ interface DatePickerProps {
|
|
|
19
19
|
* Maximum selectable date (inclusive). Format: 'YYYY-MM-DD' or Date object.
|
|
20
20
|
*/
|
|
21
21
|
maxDate?: string | Date;
|
|
22
|
+
/**
|
|
23
|
+
* If true, disables the entire date picker (input and calendar)
|
|
24
|
+
*/
|
|
25
|
+
disabled?: boolean;
|
|
22
26
|
}
|
|
23
27
|
declare const CEDatePicker: FC<DatePickerProps>;
|
|
24
28
|
export default CEDatePicker;
|
package/package.json
CHANGED