ods-component-lib 1.18.264 → 1.18.266
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/components/antd/form/OdsBasicForm.d.ts +18 -0
- package/dist/components/antd/icon/OdsIcon.d.ts +10 -0
- package/dist/components/antd/modal/OdsAdvanceModal.d.ts +7 -0
- package/dist/components/antd/select/OdsCustomMultiSelect.d.ts +7 -0
- package/dist/components/antd/select/OdsMultiSelect.d.ts +9 -0
- package/dist/components/custom/OdsLogin.d.ts +8 -0
- package/dist/components/devextreme/DxDataPopupForm.d.ts +3 -0
- package/dist/components/devextreme/DynamicIcon.d.ts +5 -0
- package/dist/components/devextreme/OdsBatchEditDataGrid/handlers/OnActionCellRenderHandler.d.ts +11 -0
- package/dist/components/devextreme/OdsBatchEditDataGrid/handlers/OnContentReadyHandler.d.ts +17 -0
- package/dist/components/devextreme/OdsBatchEditDataGrid/handlers/OnEditorPreparedHandler.d.ts +7 -0
- package/dist/components/devextreme/OdsBatchEditDataGrid/handlers/OnExportingHandler.d.ts +10 -0
- package/dist/components/devextreme/OdsBatchEditDataGrid/handlers/OnOptionChangedHandler.d.ts +12 -0
- package/dist/components/devextreme/OdsBatchEditDataGrid/handlers/OnSummaryHandler.d.ts +24 -0
- package/dist/components/devextreme/OdsBatchEditDataGrid/partials/PageTitleAndToolbarPartial.d.ts +8 -0
- package/dist/components/devextreme/OdsBatchEditDataGrid/styles.d.ts +9 -0
- package/dist/components/devextreme/OdsBatchEditDataGrid/types.d.ts +118 -0
- package/dist/components/devextreme/OdsDataGridNew.d.ts +56 -0
- package/dist/components/devextreme/OdsInlineEditDataGrid/handlers/ContentHandlers.d.ts +14 -0
- package/dist/components/devextreme/OdsInlineEditDataGrid/handlers/EditorPreparedHandlers.d.ts +7 -0
- package/dist/components/devextreme/OdsInlineEditDataGrid/handlers/OnExportingHandlers.d.ts +19 -0
- package/dist/components/devextreme/OdsInlineEditDataGrid/handlers/OptionHandlers.d.ts +7 -0
- package/dist/components/devextreme/OdsInlineEditDataGrid/handlers/SummaryHandlers.d.ts +21 -0
- package/dist/components/devextreme/OdsInlineEditDataGrid/partials/ActionCellRender.d.ts +15 -0
- package/dist/components/devextreme/OdsInlineEditDataGrid/partials/EditingPartial.d.ts +9 -0
- package/dist/components/devextreme/OdsInlineEditDataGrid/partials/PageTitle.d.ts +8 -0
- package/dist/components/devextreme/OdsInlineEditDataGrid/utils.d.ts +19 -0
- package/dist/components/devextreme/OdsProfDataGrid.d.ts +3 -0
- package/dist/components/devextreme/OdsTimeline/OdsTimeline.Constants.d.ts +4 -0
- package/dist/components/devextreme/OdsTimeline/OdsTimeline.Functions.d.ts +6 -0
- package/dist/components/devextreme/OdsTimeline/OdsTimeline.Types.d.ts +77 -0
- package/dist/components/devextreme/OdsTimeline/OdsTimeline.d.ts +5 -0
- package/dist/components/devextreme/OdsTimeline/OdsTimelineDateFilter.d.ts +3 -0
- package/dist/components/devextreme/OdsTimeline/OdsTimelineSelectionColumn.d.ts +2 -0
- package/dist/components/devextreme/dataGridHandlers/OnToolbarButtonHandler.d.ts +7 -0
- package/dist/components/devextreme/dataGridStyle.d.ts +3 -0
- package/dist/components/devextreme/treeview/DxTreeView.d.ts +3 -0
- package/dist/index.js +17 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +17 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/stories/OdsAdvanceModal/OdsAdvanceModal.stories.d.ts +42 -0
- package/dist/stories/OdsAdvanceModal/Samples/BasicOdsAdvanceModal.sample.d.ts +8 -0
- package/dist/stories/OdsCustomMultiSelect/OdsCustomMultiSelect.stories.d.ts +9 -0
- package/dist/stories/OdsCustomMultiSelect/Samples/Basic.Sample.d.ts +1 -0
- package/dist/stories/OdsCustomMultiSelect/Samples/ModeMultiple.Sample.d.ts +1 -0
- package/dist/stories/OdsModal/Samples/OdsModal.Sample.d.ts +1 -0
- package/dist/stories/OdsTimePicker/Samples/TimeRangePicker.d.ts +2 -0
- package/dist/stories/OdsTimeline/OdsTimeline.Constants.d.ts +3 -0
- package/dist/stories/OdsTimeline/OdsTimeline.Functions.d.ts +6 -0
- package/dist/stories/OdsTimeline/OdsTimeline.MockData.d.ts +39 -0
- package/dist/utils/DynamicIcon.d.ts +5 -0
- package/package.json +1 -1
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { FormProps, ButtonProps } from 'antd';
|
|
3
|
+
export interface IFormItemRuleProps {
|
|
4
|
+
required?: boolean;
|
|
5
|
+
message?: string;
|
|
6
|
+
}
|
|
7
|
+
export interface IFormItemProps {
|
|
8
|
+
label?: string;
|
|
9
|
+
name?: string;
|
|
10
|
+
formItemType: string;
|
|
11
|
+
rules?: IFormItemRuleProps[];
|
|
12
|
+
}
|
|
13
|
+
export interface IFormProps extends FormProps {
|
|
14
|
+
formItems: IFormItemProps[];
|
|
15
|
+
formButtons: ButtonProps[];
|
|
16
|
+
}
|
|
17
|
+
declare function OdsBasicForm(props: IFormProps): React.JSX.Element;
|
|
18
|
+
export default OdsBasicForm;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IconBaseProps } from "@ant-design/icons/lib/components/Icon";
|
|
2
|
+
import React from "react";
|
|
3
|
+
export interface IconProps extends IconBaseProps {
|
|
4
|
+
type: string;
|
|
5
|
+
twoToneColor?: string;
|
|
6
|
+
iconComponent?: string;
|
|
7
|
+
iconSVCName?: string;
|
|
8
|
+
}
|
|
9
|
+
declare function OdsIcon(props: IconProps): React.JSX.Element;
|
|
10
|
+
export default OdsIcon;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { SelectProps } from "antd";
|
|
3
|
+
import { IOdsSelectOption } from "./OdsSelect.styled";
|
|
4
|
+
export interface OdsMultiSelectProps extends SelectProps {
|
|
5
|
+
selectAllText?: string | undefined;
|
|
6
|
+
dataSource: IOdsSelectOption[];
|
|
7
|
+
}
|
|
8
|
+
declare const OdsMultiSelect: (props: OdsMultiSelectProps) => React.JSX.Element;
|
|
9
|
+
export default OdsMultiSelect;
|
package/dist/components/devextreme/OdsBatchEditDataGrid/handlers/OnActionCellRenderHandler.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { IButtonGrouOptions, IEditingOptions, IActionButtonsTooltipType } from "../types";
|
|
3
|
+
/**
|
|
4
|
+
* Custom hook that returns a callback function for rendering action buttons in a cell.
|
|
5
|
+
* @param visibleActionButtons - An array of options for visible action buttons.
|
|
6
|
+
* @param actionButtonGroup - An array of options for action buttons.
|
|
7
|
+
* @param edit - An object containing editing options.
|
|
8
|
+
* @param tooltipType - The type of tooltip to display.
|
|
9
|
+
* @returns The onActionCellRender callback function.
|
|
10
|
+
*/
|
|
11
|
+
export declare const useOnActionCellRenderHandler: (visibleActionButtons: IButtonGrouOptions[] | undefined, actionButtonGroup: IButtonGrouOptions[] | undefined, edit: IEditingOptions | undefined, actionButtonsTooltipType: IActionButtonsTooltipType | undefined) => (cellData: any | undefined) => React.JSX.Element;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { MutableRefObject } from "react";
|
|
2
|
+
import { ContentReadyEvent } from "devextreme/ui/data_grid";
|
|
3
|
+
import { IColumnOptions } from "../types";
|
|
4
|
+
/**
|
|
5
|
+
* Custom hook to handle content ready events for the data grid.
|
|
6
|
+
* @param {IColumnOptions[]} columns - The column options for the data grid.
|
|
7
|
+
* @param {MutableRefObject<any>} lastPageIndexRef - Reference to the last page index.
|
|
8
|
+
* @param {boolean} filterApplied - Boolean indicating if a filter is applied.
|
|
9
|
+
* @param {MutableRefObject<number>} totalFilteredCount - Reference to the total filtered count.
|
|
10
|
+
* @param {MutableRefObject<number>} totalUnfilteredCount - Reference to the total unfiltered count.
|
|
11
|
+
* @param {Function} setUpdateTrigger - Function to set the update trigger.
|
|
12
|
+
* @param {Function} setCurrentPage - Function to set the current page.
|
|
13
|
+
* @param {Function} setCurrentPageSize - Function to set the current page size.
|
|
14
|
+
* @param {Function} [callback] - Optional callback function.
|
|
15
|
+
* @returns {(e: ContentReadyEvent<any, any>) => void} handleContentReady - Handler for content ready event.
|
|
16
|
+
*/
|
|
17
|
+
export declare const useOnContentReadyHandler: (columns: IColumnOptions[], lastPageIndexRef: MutableRefObject<number>, filterApplied: boolean, totalFilteredCount: MutableRefObject<number>, totalUnfilteredCount: MutableRefObject<number>, setUpdateTrigger: Function, setCurrentPage: Function, setCurrentPageSize: Function, callback: Function) => (e: ContentReadyEvent<any, any>) => void;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Custom hook that returns a callback function to handle the "editorPrepared" event of a DevExtreme component.
|
|
3
|
+
* This callback function is responsible for customizing the editor's behavior based on specific conditions.
|
|
4
|
+
*
|
|
5
|
+
* @returns {Function} The callback function to handle the "editorPrepared" event.
|
|
6
|
+
*/
|
|
7
|
+
export declare const useOnEditorPreparedHandler: (callback: any) => (e: any) => void;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IExportOptions } from "../types";
|
|
2
|
+
/**
|
|
3
|
+
* Handles the exporting of data from the grid component.
|
|
4
|
+
*
|
|
5
|
+
* @param {IExportOptions} exportProps - The export options for the data grid.
|
|
6
|
+
* @param {Function} callback - The callback function to be executed after exporting.
|
|
7
|
+
* @param {() => string} getSummary - The callback function to get the summary info.
|
|
8
|
+
* @returns {Function} - The onExporting event handler function.
|
|
9
|
+
*/
|
|
10
|
+
export declare const useOnExportingHandler: (exportProps: IExportOptions, getSummary: () => string, callback: Function) => (e: any) => void;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { MutableRefObject } from "react";
|
|
2
|
+
/**
|
|
3
|
+
* Custom hook to handle option change events for the data grid.
|
|
4
|
+
* @param {MutableRefObject<any>} dataGridRef - The ref object for the data grid.
|
|
5
|
+
* @param {MutableRefObject<number>} totalFilteredCount - The ref object for the total filtered count.
|
|
6
|
+
* @param {any} sortingProps - The sorting properties.
|
|
7
|
+
* @param {Function} setFilterApplied - Function to set the filter applied state.
|
|
8
|
+
* @param {Function} setUpdateTrigger - Function to set the update trigger state.
|
|
9
|
+
* @param {Function} callback - The callback function to be called.
|
|
10
|
+
* @returns {Function} - Handler function for option changed event.
|
|
11
|
+
*/
|
|
12
|
+
export declare const useOnOptionChangedHandler: (dataGridRef: MutableRefObject<any>, totalFilteredCount: MutableRefObject<number>, sortingProps: any, setFilterApplied: Function, setUpdateTrigger: Function, callback: Function) => (e: any) => void;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { MutableRefObject } from "react";
|
|
2
|
+
import type { ISummaryRowOptions } from "../types";
|
|
3
|
+
/**
|
|
4
|
+
* Props interface for the useOnSummaryHandler hook.
|
|
5
|
+
*/
|
|
6
|
+
interface IUseSummaryHandlersProps {
|
|
7
|
+
customSummary?: ISummaryRowOptions;
|
|
8
|
+
totalRecordCount: number;
|
|
9
|
+
currentPageSize: number;
|
|
10
|
+
currentPage: number;
|
|
11
|
+
filterApplied: boolean;
|
|
12
|
+
totalFilteredCount: MutableRefObject<number>;
|
|
13
|
+
totalUnfilteredCount: MutableRefObject<number>;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* Custom hook that provides summary handler for a data grid.
|
|
17
|
+
*
|
|
18
|
+
* @param {IUseSummaryHandlersProps} props - The props object containing necessary parameters.
|
|
19
|
+
* @returns {Object} - An object containing the renderTotal function.
|
|
20
|
+
*/
|
|
21
|
+
export declare const useOnSummaryHandler: ({ customSummary, totalRecordCount, currentPageSize, currentPage, filterApplied, totalFilteredCount, totalUnfilteredCount, }: IUseSummaryHandlersProps) => {
|
|
22
|
+
renderTotal: () => string | null;
|
|
23
|
+
};
|
|
24
|
+
export {};
|
package/dist/components/devextreme/OdsBatchEditDataGrid/partials/PageTitleAndToolbarPartial.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { IToolbarButtonOptions } from "../types";
|
|
3
|
+
interface PageTitleAndToolbarProps {
|
|
4
|
+
pageTitle?: string;
|
|
5
|
+
toolbarButtonGroup?: IToolbarButtonOptions[];
|
|
6
|
+
}
|
|
7
|
+
declare const MemoizedPageTitleAndToolbar: React.NamedExoticComponent<PageTitleAndToolbarProps>;
|
|
8
|
+
export default MemoizedPageTitleAndToolbar;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare const useStyles: (props?: unknown) => import("antd-style").ReturnStyles<{
|
|
2
|
+
grid: import("antd-style").SerializedStyles;
|
|
3
|
+
gridCustomSummary: import("antd-style").SerializedStyles;
|
|
4
|
+
}>;
|
|
5
|
+
export declare const usePageTitleAndToolbarStyles: (props?: unknown) => import("antd-style").ReturnStyles<{
|
|
6
|
+
gridPageTitleWrapper: import("antd-style").SerializedStyles;
|
|
7
|
+
gridToolbarButtonGroupWrapper: import("antd-style").SerializedStyles;
|
|
8
|
+
gridToolbarButton: import("antd-style").SerializedStyles;
|
|
9
|
+
}>;
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Represents the types for the OdsBatchEditDataGrid component.
|
|
3
|
+
* @module OdsBatchEditDataGrid/types
|
|
4
|
+
*/
|
|
5
|
+
/// <reference types="react" />
|
|
6
|
+
import { ButtonType } from "antd/es/button";
|
|
7
|
+
import { IButtonProps, IColumnProps, IDataGridOptions, IEditingProps, ISummaryProps, IPagerProps, IExportProps, IScrollingProps } from "devextreme-react/data-grid";
|
|
8
|
+
/**
|
|
9
|
+
* Represents the configuration for a column in the data grid.
|
|
10
|
+
*/
|
|
11
|
+
export interface IColumnOptions extends Omit<IColumnProps, "cellRender" | "calculateFilterExpression" | "format"> {
|
|
12
|
+
cellRender?: (data: any) => JSX.Element | string;
|
|
13
|
+
calculateFilterExpression?: (value: any, operation: string, target: string) => any;
|
|
14
|
+
format?: string | object;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* Represents the props for the pager component.
|
|
18
|
+
*/
|
|
19
|
+
export interface IPagerOptions extends Partial<IPagerProps> {
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Represents the props for the export functionality.
|
|
23
|
+
*/
|
|
24
|
+
export interface IExportOptions extends Partial<IExportProps> {
|
|
25
|
+
enabled: boolean;
|
|
26
|
+
allowExportSelectedData?: boolean;
|
|
27
|
+
fileName?: string;
|
|
28
|
+
selectedText?: string;
|
|
29
|
+
activeText?: string;
|
|
30
|
+
passiveText?: string;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Represents the configuration for a toolbar button.
|
|
34
|
+
*/
|
|
35
|
+
export interface IToolbarButtonOptions {
|
|
36
|
+
type: string;
|
|
37
|
+
label: string;
|
|
38
|
+
onClick: () => void;
|
|
39
|
+
disabled?: boolean;
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* Represents the options for editing data in the data grid.
|
|
43
|
+
*/
|
|
44
|
+
export interface IEditingOptions extends Omit<IEditingProps, "mode"> {
|
|
45
|
+
mode?: "row" | "cell" | "batch";
|
|
46
|
+
formItems?: any[];
|
|
47
|
+
title?: string;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Represents the configuration for a button group.
|
|
51
|
+
*/
|
|
52
|
+
export interface IButtonGrouOptions extends Omit<IButtonProps, "name"> {
|
|
53
|
+
name?: "cancel" | "delete" | "edit" | "save" | "undelete" | "unmap";
|
|
54
|
+
type?: ButtonType;
|
|
55
|
+
label?: string;
|
|
56
|
+
onclick?: React.MouseEventHandler<HTMLElement>;
|
|
57
|
+
actionPermission?: boolean;
|
|
58
|
+
icon: any;
|
|
59
|
+
}
|
|
60
|
+
export interface IScrollingOptions extends Partial<IScrollingProps> {
|
|
61
|
+
}
|
|
62
|
+
export declare type IActionButtonsTooltipType = "raw" | "styled";
|
|
63
|
+
/**
|
|
64
|
+
* Represents the options for summary rows in the data grid.
|
|
65
|
+
*/
|
|
66
|
+
export interface ISummaryRowOptions {
|
|
67
|
+
summaryLoadedDataLabel?: string;
|
|
68
|
+
summaryTotalDataLabel?: string;
|
|
69
|
+
summaryFilteredDataLabel?: string;
|
|
70
|
+
summaryItems?: ISummaryProps[];
|
|
71
|
+
summaryTotalCount?: number;
|
|
72
|
+
summaryTotalPageCountLabel?: string;
|
|
73
|
+
showSumInSummary?: boolean;
|
|
74
|
+
showAvgInSummary?: boolean;
|
|
75
|
+
showCountInSummary?: boolean;
|
|
76
|
+
showMaxInSummary?: boolean;
|
|
77
|
+
showMinInSummary?: boolean;
|
|
78
|
+
summarySumLabel?: string;
|
|
79
|
+
summaryAvgLabel?: string;
|
|
80
|
+
summaryMinLabel?: string;
|
|
81
|
+
summaryMaxLabel?: string;
|
|
82
|
+
summaryCountLabel?: string;
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* Represents the custom options for the ODS data grid.
|
|
86
|
+
*/
|
|
87
|
+
export interface IODSDataGridCustomOptions {
|
|
88
|
+
actionButtonGroup?: IButtonGrouOptions[];
|
|
89
|
+
actionColumnEnable?: boolean;
|
|
90
|
+
columnChooserPositionDisabled?: boolean;
|
|
91
|
+
columnResizingMode?: "nextColumn" | "widget";
|
|
92
|
+
gridColumns?: IColumnOptions[];
|
|
93
|
+
customSummary?: ISummaryRowOptions;
|
|
94
|
+
dataGridPageName?: string;
|
|
95
|
+
dataGridRef?: any;
|
|
96
|
+
editProps?: IEditingOptions;
|
|
97
|
+
exportProps?: IExportOptions;
|
|
98
|
+
isFilterPanel?: boolean;
|
|
99
|
+
isFilterRow?: boolean;
|
|
100
|
+
language?: string;
|
|
101
|
+
pagerProps?: IPagerOptions;
|
|
102
|
+
pageSize?: number;
|
|
103
|
+
pageTitle?: string;
|
|
104
|
+
scrollingProps?: IScrollingOptions;
|
|
105
|
+
sortingProps?: any;
|
|
106
|
+
toolbarButtonGroup?: IToolbarButtonOptions[];
|
|
107
|
+
totalRecordCount?: number;
|
|
108
|
+
actionButtonsTooltipType?: IActionButtonsTooltipType;
|
|
109
|
+
isColumnWidthFixed?: boolean;
|
|
110
|
+
isColumnChooserButton?: boolean;
|
|
111
|
+
isExportButton?: boolean;
|
|
112
|
+
isSearchPanel?: boolean;
|
|
113
|
+
}
|
|
114
|
+
/**
|
|
115
|
+
* Represents the props for a virtual data grid component.
|
|
116
|
+
*/
|
|
117
|
+
export interface IBatchEditDataGridProps extends IDataGridOptions, IODSDataGridCustomOptions {
|
|
118
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { IDataGridOptions, IEditingProps, ISelectionProps, IButtonProps } from 'devextreme-react/data-grid';
|
|
3
|
+
import { ButtonType } from "antd/es/button/buttonHelpers";
|
|
4
|
+
interface IButtonGroup extends IButtonProps {
|
|
5
|
+
type?: ButtonType;
|
|
6
|
+
label?: string;
|
|
7
|
+
onclick?: React.MouseEventHandler<HTMLElement>;
|
|
8
|
+
actionPermission?: boolean;
|
|
9
|
+
}
|
|
10
|
+
interface IEditingoptions extends IEditingProps {
|
|
11
|
+
formItems?: any[];
|
|
12
|
+
title?: string;
|
|
13
|
+
}
|
|
14
|
+
interface ISelectOptions extends ISelectionProps {
|
|
15
|
+
selectEnable: boolean;
|
|
16
|
+
}
|
|
17
|
+
interface IOdsDataGridProps extends IDataGridOptions {
|
|
18
|
+
actionButtonGroup?: IButtonGroup[];
|
|
19
|
+
toolbarButtonGroup?: IButtonGroup[];
|
|
20
|
+
exportFileName?: string;
|
|
21
|
+
summaryTotalColumnName?: string;
|
|
22
|
+
storeState?: boolean;
|
|
23
|
+
summaryTotalDataCount?: number;
|
|
24
|
+
summaryTotalDataDisplayLabel?: string;
|
|
25
|
+
summaryTotalPagesize?: number;
|
|
26
|
+
editHintLabel?: string;
|
|
27
|
+
editButtonClick?: any;
|
|
28
|
+
deleteButtonClick?: any;
|
|
29
|
+
pageTitle?: string;
|
|
30
|
+
pageSize?: number;
|
|
31
|
+
pagingEnable?: boolean;
|
|
32
|
+
searchEnable?: boolean;
|
|
33
|
+
filterEnable?: boolean;
|
|
34
|
+
headerFilterEnable?: boolean;
|
|
35
|
+
columnChooserPositionDisabled?: boolean;
|
|
36
|
+
editEnable?: boolean;
|
|
37
|
+
popupTitle?: string;
|
|
38
|
+
scroll?: any;
|
|
39
|
+
exportEnable?: boolean;
|
|
40
|
+
customPopup?: boolean;
|
|
41
|
+
onExportingCustom?: any;
|
|
42
|
+
filterEnabledShow?: boolean;
|
|
43
|
+
scrolUseNative?: boolean;
|
|
44
|
+
formItems?: any[];
|
|
45
|
+
hintForDeleteButton?: string;
|
|
46
|
+
hintForEditButton?: string;
|
|
47
|
+
exportFormats?: string[];
|
|
48
|
+
actionPermission?: boolean;
|
|
49
|
+
columns: any[];
|
|
50
|
+
actionColumnEnable?: boolean;
|
|
51
|
+
edit?: IEditingoptions;
|
|
52
|
+
selectOptions?: ISelectOptions;
|
|
53
|
+
actionColumnCaption?: string;
|
|
54
|
+
}
|
|
55
|
+
declare function OdsDataGridNew(props: IOdsDataGridProps): React.JSX.Element;
|
|
56
|
+
export default OdsDataGridNew;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ContentReadyEvent } from "devextreme/ui/data_grid";
|
|
2
|
+
import { IColumnConfig } from "../types";
|
|
3
|
+
/**
|
|
4
|
+
* Custom hook to handle content ready events for the data grid.
|
|
5
|
+
* @param {React.MutableRefObject<any>} lastPageIndexRef - Reference to the last page index.
|
|
6
|
+
* @param {boolean} contentReady - Boolean indicating if the content is ready.
|
|
7
|
+
* @param {Function} setRowCount - Function to set the row count state
|
|
8
|
+
* @param {Function} setContentReady - Function to set the content ready state.
|
|
9
|
+
* @param {Function} setCurrentPage - Function to set the current page state.
|
|
10
|
+
* @param {Function} setCurrentPageSize - Function to set the current page size state.
|
|
11
|
+
* @param {Function} [callback] - Optional callback function.
|
|
12
|
+
* @returns {(e: ContentReadyEvent<any, any>) => void} handleContentReady - Handler for content ready event.
|
|
13
|
+
*/
|
|
14
|
+
export declare const useContentHandlers: (lastPageIndexRef: React.MutableRefObject<any>, contentReady: boolean, columns: IColumnConfig[], setRowCount: Function, setContentReady: Function, setCurrentPage: Function, setCurrentPageSize: Function, setHeaderFilterData: Function, callback?: Function) => (e: ContentReadyEvent<any, any>) => void;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Custom hook that returns a callback function to handle the "editorPrepared" event of a DevExtreme component.
|
|
3
|
+
* This callback function is responsible for customizing the editor's behavior based on specific conditions.
|
|
4
|
+
*
|
|
5
|
+
* @returns {Function} The callback function to handle the "editorPrepared" event.
|
|
6
|
+
*/
|
|
7
|
+
export declare const useEditorPreparedHandlers: () => (e: any) => void;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
interface IOnExportingProps {
|
|
2
|
+
gridComponent: any;
|
|
3
|
+
baseFileName?: string;
|
|
4
|
+
selectedText?: string;
|
|
5
|
+
getSummary: () => string;
|
|
6
|
+
selectedRowsOnly: boolean;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* Handles the exporting of data from the grid component.
|
|
10
|
+
*
|
|
11
|
+
* @param {IOnExportingProps} params - The parameters for exporting the data.
|
|
12
|
+
* @param {React.RefObject<Grid>} params.gridComponent - The reference to the grid component.
|
|
13
|
+
* @param {string} params.baseFileName - The base file name for the exported file.
|
|
14
|
+
* @param {string} params.selectedText - The text to be displayed for selected rows.
|
|
15
|
+
* @param {Function} params.getSummary - The function to get the summary of the exported data.
|
|
16
|
+
* @param {boolean} params.selectedRowsOnly - Indicates whether to export only selected rows.
|
|
17
|
+
*/
|
|
18
|
+
export declare const onExporting: ({ gridComponent, baseFileName, selectedText, getSummary, selectedRowsOnly, }: IOnExportingProps) => void;
|
|
19
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Custom hook to handle option change events for the data grid.
|
|
3
|
+
* @param {Object} dataGridRef - The dataGridRef property passed to the hook.
|
|
4
|
+
* @param {Function} setFilterApplied - Function to set the filter applied state.
|
|
5
|
+
* @returns {Function} - Handler function for option changed event.
|
|
6
|
+
*/
|
|
7
|
+
export declare const useOptionHandlers: (dataGridRef: any, setFilterApplied: any) => (e: any) => void;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { ISummaryRowOptions } from "../types";
|
|
2
|
+
interface IUseSummaryHandlersProps {
|
|
3
|
+
customSummary?: ISummaryRowOptions;
|
|
4
|
+
totalRecordCount: number;
|
|
5
|
+
currentPageSize: number;
|
|
6
|
+
currentPage: number;
|
|
7
|
+
filterApplied: boolean;
|
|
8
|
+
rowCount: number;
|
|
9
|
+
filteredRowCount: number;
|
|
10
|
+
isServerSide?: boolean;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Custom hook that provides summary handlers for a data grid.
|
|
14
|
+
*
|
|
15
|
+
* @param {IUseSummaryHandlersProps} props - The props object containing necessary parameters.
|
|
16
|
+
* @returns {Object} - An object containing the renderTotal function.
|
|
17
|
+
*/
|
|
18
|
+
export declare const useSummaryHandlers: ({ customSummary, totalRecordCount, currentPageSize, currentPage, filterApplied, rowCount, filteredRowCount, }: IUseSummaryHandlersProps) => {
|
|
19
|
+
renderTotal: () => string | null;
|
|
20
|
+
};
|
|
21
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { FC } from "react";
|
|
2
|
+
import { IVirtualDataGridProps } from "../types";
|
|
3
|
+
interface ActionCellRenderProps {
|
|
4
|
+
cellData: any;
|
|
5
|
+
actionButtons: IVirtualDataGridProps["actionButtonGroup"];
|
|
6
|
+
edit?: IVirtualDataGridProps["edit"];
|
|
7
|
+
actionButtonGroup?: IVirtualDataGridProps["actionButtonGroup"];
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Renders the action buttons for a cell in the OdsInlineEditDataGrid component.
|
|
11
|
+
* @param {ActionCellRenderProps} props - The props for the ActionCellRender component.
|
|
12
|
+
* @returns {ReactNode} - The rendered action buttons.
|
|
13
|
+
*/
|
|
14
|
+
declare const ActionCellRender: FC<ActionCellRenderProps>;
|
|
15
|
+
export default ActionCellRender;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { IEditingOptions } from "../types";
|
|
3
|
+
/**
|
|
4
|
+
* Component that handles editing functionalities within the data grid.
|
|
5
|
+
* @param {IEditingOptions} props - The properties passed to the component.
|
|
6
|
+
* @returns {JSX.Element} - The JSX element representing the editing handlers.
|
|
7
|
+
*/
|
|
8
|
+
declare const EditingPartial: React.FC<IEditingOptions>;
|
|
9
|
+
export default EditingPartial;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { IToolbarButton } from "../types";
|
|
3
|
+
interface PageTitleAndToolbarProps {
|
|
4
|
+
pageTitle?: string;
|
|
5
|
+
toolbarButtonGroup?: IToolbarButton[];
|
|
6
|
+
}
|
|
7
|
+
declare const MemoizedPageTitleAndToolbar: React.NamedExoticComponent<PageTitleAndToolbarProps>;
|
|
8
|
+
export default MemoizedPageTitleAndToolbar;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
interface IConcatFilteredLabelProps {
|
|
2
|
+
result: string;
|
|
3
|
+
totalLoaded: number;
|
|
4
|
+
filteredRowCount: number;
|
|
5
|
+
filterApplied: boolean;
|
|
6
|
+
summaryFilteredDataLabel: string;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* Concatenates the filtered label with the result string.
|
|
10
|
+
*
|
|
11
|
+
* @param {IConcatFilteredLabelProps} props - The object containing the necessary properties.
|
|
12
|
+
* @returns {string} - The concatenated result string.
|
|
13
|
+
*/
|
|
14
|
+
export declare const concatFilteredLabel: ({ result, totalLoaded, filteredRowCount, filterApplied, summaryFilteredDataLabel, }: IConcatFilteredLabelProps) => string;
|
|
15
|
+
export {};
|
|
16
|
+
/**
|
|
17
|
+
* This file contains utility functions related to the OdsInlineEditDataGrid component.
|
|
18
|
+
* These utility functions are used for handling filtering and data manipulation.
|
|
19
|
+
*/
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export declare const checkboxCellComponent: (props: any) => React.JSX.Element;
|
|
3
|
+
export declare const statusCellComponent: (props: any) => React.JSX.Element;
|
|
4
|
+
export declare const minimalHeaderCellComponent: (data: any, __el: any) => React.JSX.Element;
|
|
5
|
+
export declare const mapCustomTask: (item: any) => any;
|
|
6
|
+
export declare const setSelectedKeys: (datasource: any[], key?: string, selectedKeys?: number[] | string[]) => any[];
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IColumnProps, IGanttOptions, IItemProps } from "devextreme-react/gantt";
|
|
3
|
+
export interface IMenuLinkItem {
|
|
4
|
+
text: string;
|
|
5
|
+
url: string;
|
|
6
|
+
queryParamNames?: string[];
|
|
7
|
+
}
|
|
8
|
+
export interface ICustomSelectionChange {
|
|
9
|
+
data: any;
|
|
10
|
+
isSelected: boolean;
|
|
11
|
+
}
|
|
12
|
+
export interface IDateRangeChange {
|
|
13
|
+
startDate: Date;
|
|
14
|
+
endDate: Date;
|
|
15
|
+
}
|
|
16
|
+
export interface IStatusColumnChange {
|
|
17
|
+
data: any;
|
|
18
|
+
status: boolean;
|
|
19
|
+
dataField: string;
|
|
20
|
+
}
|
|
21
|
+
export interface ICheckboxColumnChange {
|
|
22
|
+
data: any;
|
|
23
|
+
isChecked: boolean;
|
|
24
|
+
dataField: string;
|
|
25
|
+
}
|
|
26
|
+
export interface IOdsTimelineProps extends React.PropsWithChildren<IGanttOptions> {
|
|
27
|
+
/**
|
|
28
|
+
* Set columns for listview.
|
|
29
|
+
*/
|
|
30
|
+
customColumns?: IOdsTimelineColumnProps[];
|
|
31
|
+
/**
|
|
32
|
+
* Set task list. It is used for list view and timeline view.
|
|
33
|
+
*/
|
|
34
|
+
customTasks: any[];
|
|
35
|
+
/**
|
|
36
|
+
* Set data field name from task list. This is used for selection.
|
|
37
|
+
*/
|
|
38
|
+
customTaskKey?: string;
|
|
39
|
+
/**
|
|
40
|
+
* Set key values to be selected. "multiSelectionEnabled" must be true.
|
|
41
|
+
*/
|
|
42
|
+
customSelectedKeys?: string[] | number[];
|
|
43
|
+
/**
|
|
44
|
+
* Set true if you want multi selection in list view.
|
|
45
|
+
*/
|
|
46
|
+
multiSelectionEnabled?: boolean;
|
|
47
|
+
/**
|
|
48
|
+
* This is a selection event that fired when selection is changed.
|
|
49
|
+
*/
|
|
50
|
+
onCustomSelectionChanged(e: ICustomSelectionChange): void;
|
|
51
|
+
/**
|
|
52
|
+
* This is a date range event that fired when date range is changed.
|
|
53
|
+
*/
|
|
54
|
+
onDateRangeChange(e: IDateRangeChange): void;
|
|
55
|
+
}
|
|
56
|
+
export interface IOdsTimelineColumnProps extends IColumnProps {
|
|
57
|
+
isMinimized?: boolean;
|
|
58
|
+
isStatusColumn?: boolean;
|
|
59
|
+
isCheckboxColumn?: boolean;
|
|
60
|
+
}
|
|
61
|
+
export interface IOdsTimelineStatusColumnProps extends IOdsTimelineColumnProps {
|
|
62
|
+
onStatusColumnChange(e: IStatusColumnChange): void;
|
|
63
|
+
}
|
|
64
|
+
export interface IOdsTimelineCheckboxColumnProps extends IOdsTimelineColumnProps {
|
|
65
|
+
onCheckboxColumnChange(e: ICheckboxColumnChange): void;
|
|
66
|
+
}
|
|
67
|
+
export interface IOdsTimelineDateFilter extends IItemProps {
|
|
68
|
+
defaultStartDate?: Date;
|
|
69
|
+
defaultEndDate?: Date;
|
|
70
|
+
backText?: string;
|
|
71
|
+
nextText?: string;
|
|
72
|
+
onFilterRangeChange(e: IDateRangeChange): void;
|
|
73
|
+
}
|
|
74
|
+
export declare const enum DateDirection {
|
|
75
|
+
prevMonth = "previousMonth",
|
|
76
|
+
nextMonth = "nextMonth"
|
|
77
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
interface IOnToolbarPreparingOptions {
|
|
2
|
+
pageTitle?: string;
|
|
3
|
+
toolbarButtonGroup?: any[];
|
|
4
|
+
callback?: (e: any) => void;
|
|
5
|
+
}
|
|
6
|
+
export declare const useOnToolbarButtonHandler: ({ pageTitle, toolbarButtonGroup, callback }: IOnToolbarPreparingOptions) => (e: any) => void;
|
|
7
|
+
export {};
|