ods-component-lib 1.18.237 → 1.18.238
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/devextreme/OdsTimelineTable/OdsTimelineTable.Functions.d.ts +4 -2
- package/dist/index.js +17508 -287
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +17489 -268
- package/dist/index.modern.js.map +1 -1
- package/dist/stories/OdsTimelineTable/OdsTimelineTable.MockData.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import {
|
|
2
|
+
import { IOdsTimelineTableColumnProps, ITranslationValue } from "./OdsTimelineTable.Types";
|
|
3
3
|
export declare const checkboxCellComponent: (props: any) => React.JSX.Element;
|
|
4
4
|
export declare const statusCellComponent: (props: any) => React.JSX.Element;
|
|
5
5
|
export declare const mapCustomTask: (item: any) => any;
|
|
6
6
|
export declare const mapSelectedKeys: (datasource: any[], key?: string, selectedKeys?: string[]) => any[];
|
|
7
|
-
export declare const
|
|
7
|
+
export declare const getTranslatedValue: (value: any, translations?: ITranslationValue[]) => any;
|
|
8
|
+
export declare const getStaticColumnWidth: (props: IOdsTimelineTableColumnProps) => React.ReactText;
|
|
9
|
+
export declare const findMaxDataLength: (data: any[], dataField: string) => number;
|