ods-component-lib 1.18.183 → 1.18.185

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.
Files changed (23) hide show
  1. package/dist/components/antd/modal/OdsAdvanceModal.d.ts +7 -0
  2. package/dist/components/devextreme/OdsTimeline/OdsTimeline.Constants.d.ts +4 -0
  3. package/dist/components/devextreme/OdsTimeline/OdsTimeline.Functions.d.ts +6 -0
  4. package/dist/components/devextreme/OdsTimeline/OdsTimeline.Types.d.ts +77 -0
  5. package/dist/components/devextreme/OdsTimeline/OdsTimeline.d.ts +5 -0
  6. package/dist/components/devextreme/OdsTimeline/OdsTimelineDateFilter.d.ts +3 -0
  7. package/dist/components/devextreme/OdsTimeline/OdsTimelineSelectionColumn.d.ts +2 -0
  8. package/dist/index.js +10 -4
  9. package/dist/index.js.map +1 -1
  10. package/dist/index.modern.js +10 -4
  11. package/dist/index.modern.js.map +1 -1
  12. package/dist/stories/OdsAdvanceModal/OdsAdvanceModal.stories.d.ts +42 -0
  13. package/dist/stories/OdsAdvanceModal/Samples/BasicOdsAdvanceModal.sample.d.ts +8 -0
  14. package/dist/stories/OdsModal/Samples/OdsModal.Sample.d.ts +1 -0
  15. package/dist/stories/OdsPivotGrid/OdsPivotGrid.stories.d.ts +15 -0
  16. package/dist/stories/OdsPivotGrid/Samples/BasicPivotGrid/BasicPivotGrid.Constants.d.ts +2 -0
  17. package/dist/stories/OdsPivotGrid/Samples/BasicPivotGrid/BasicPivotGrid.MockData.d.ts +7 -0
  18. package/dist/stories/OdsPivotGrid/Samples/BasicPivotGrid/BasicPivotGrid.Sample.d.ts +1 -0
  19. package/dist/stories/OdsTimePicker/Samples/TimeRangePicker.d.ts +2 -0
  20. package/dist/stories/OdsTimeline/OdsTimeline.Constants.d.ts +3 -0
  21. package/dist/stories/OdsTimeline/OdsTimeline.Functions.d.ts +6 -0
  22. package/dist/stories/OdsTimeline/OdsTimeline.MockData.d.ts +39 -0
  23. package/package.json +1 -1
@@ -0,0 +1,7 @@
1
+ import { ModalProps } from "antd";
2
+ import React from "react";
3
+ export interface ICustomModalProps extends ModalProps {
4
+ content: React.ReactNode;
5
+ }
6
+ declare const OdsAdvanceModal: React.FC<ICustomModalProps>;
7
+ export default OdsAdvanceModal;
@@ -0,0 +1,4 @@
1
+ export declare const Constants: {
2
+ timelineDefaultStartDate: Date;
3
+ timelineDefaultEndDate: Date;
4
+ };
@@ -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,5 @@
1
+ import React from "react";
2
+ import "./OdsTimeline.css";
3
+ import { IOdsTimelineProps } from "./OdsTimeline.Types";
4
+ declare const OdsTimeline: (props: IOdsTimelineProps) => React.JSX.Element;
5
+ export default OdsTimeline;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ import { IOdsTimelineDateFilter } from "./OdsTimeline.Types";
3
+ export declare const OdsTimelineDateFilter: (props: IOdsTimelineDateFilter | Readonly<IOdsTimelineDateFilter>) => React.JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { ICustomSelectionChange, IOdsTimelineColumnProps } from "./OdsTimeline.Types";
2
+ export declare const OdsTimelineSelectionColumn: (selectionEvent: (e: ICustomSelectionChange) => void) => IOdsTimelineColumnProps;
package/dist/index.js CHANGED
@@ -1742,7 +1742,7 @@ var OdsFilter = function OdsFilter(props) {
1742
1742
  }, props.buttonApplyName))))));
1743
1743
  };
1744
1744
 
1745
- var Title$1 = antd.Typography.Title;
1745
+ var Text = antd.Typography.Text;
1746
1746
  function OdsFileUpload(props) {
1747
1747
  var image = props.image,
1748
1748
  removeFile = props.removeFile,
@@ -1972,8 +1972,10 @@ function OdsFileUpload(props) {
1972
1972
  return console.error('Failed to download file:', err);
1973
1973
  });
1974
1974
  }
1975
- return React__default.createElement("div", null, React__default.createElement(Title$1, {
1976
- level: 5
1975
+ return React__default.createElement("div", null, React__default.createElement(Text, {
1976
+ style: {
1977
+ lineHeight: 3
1978
+ }
1977
1979
  }, title), React__default.createElement(antd.Upload, Object.assign({}, uploadProps), (fileList === null || fileList === void 0 ? void 0 : fileList.length) < 10 && React__default.createElement("div", null, React__default.createElement(icons.PlusOutlined, null), React__default.createElement("div", {
1978
1980
  style: {
1979
1981
  marginTop: 8
@@ -33019,7 +33021,7 @@ var ExportDataGridToExcel = function ExportDataGridToExcel(_ref) {
33019
33021
 
33020
33022
  var useToken$2 = antd.theme.useToken;
33021
33023
  var OdsBasicDataGrid = function OdsBasicDataGrid(props) {
33022
- var _props$columnResizing, _props$selectOptions, _props$selectOptions$, _props$selectOptions2, _props$selectOptions$2, _props$selectOptions3;
33024
+ var _props$columnResizing, _props$selection, _props$selectOptions, _props$selectOptions$, _props$selectOptions2, _props$selectOptions$2, _props$selectOptions3;
33023
33025
  var keyExpr = props.keyExpr,
33024
33026
  hasFastUpdate = props.hasFastUpdate,
33025
33027
  fastUpdateButtonText = props.fastUpdateButtonText,
@@ -33690,6 +33692,10 @@ var OdsBasicDataGrid = function OdsBasicDataGrid(props) {
33690
33692
  },
33691
33693
  noDataText: props.noDataText,
33692
33694
  className: gridStyle.grid,
33695
+ selection: (_props$selection = props.selection) != null ? _props$selection : {
33696
+ mode: "multiple",
33697
+ selectAllMode: "page"
33698
+ },
33693
33699
  onEditorPreparing: onEditorPreparing,
33694
33700
  onExporting: function onExporting(e) {
33695
33701
  var _props$exportProps$ac, _props$exportProps$pa;