ods-component-lib 1.18.185 → 1.18.186
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/fileUpload/OdsFileUpload.d.ts +2 -0
- package/dist/components/antd/form/OdsBasicForm.d.ts +18 -0
- package/dist/components/antd/icon/OdsIcon.d.ts +10 -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/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/treeview/DxTreeView.d.ts +3 -0
- package/dist/index.js +26 -18
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +26 -18
- package/dist/index.modern.js.map +1 -1
- 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/OdsFileUpload/OdsFileUpload.stories.d.ts +4 -0
- package/dist/stories/OdsFileUpload/Samples/DefaultFileListOdsFileUpload.Sample.d.ts +1 -0
- package/dist/stories/OdsLink/OdsLink.stories.d.ts +59 -0
- package/package.json +1 -1
- package/dist/stories/OdsModal/Samples/OdsModal.Sample.d.ts +0 -1
- package/dist/stories/OdsPivotGrid/OdsPivotGrid.stories.d.ts +0 -15
- package/dist/stories/OdsPivotGrid/Samples/BasicPivotGrid/BasicPivotGrid.Constants.d.ts +0 -2
- package/dist/stories/OdsPivotGrid/Samples/BasicPivotGrid/BasicPivotGrid.MockData.d.ts +0 -7
- package/dist/stories/OdsPivotGrid/Samples/BasicPivotGrid/BasicPivotGrid.Sample.d.ts +0 -1
- /package/dist/components/antd/datepicker/{OdsDateRangepicker.d.ts → OdsDateRangePicker.d.ts} +0 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import CustomMultiSelect from "../../components/antd/select/OdsCustomMultiSelect";
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: typeof CustomMultiSelect;
|
|
5
|
+
tags: string[];
|
|
6
|
+
};
|
|
7
|
+
export default _default;
|
|
8
|
+
export declare const Basic: any;
|
|
9
|
+
export declare const ModeMultiple: any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const BasicTemplate: any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const ModeMultipleTemplate: any;
|
|
@@ -10,6 +10,9 @@ declare const _default: {
|
|
|
10
10
|
title: {
|
|
11
11
|
description: string;
|
|
12
12
|
};
|
|
13
|
+
defaultFileList: {
|
|
14
|
+
description: string;
|
|
15
|
+
};
|
|
13
16
|
sendDataToParent: {
|
|
14
17
|
description: string;
|
|
15
18
|
};
|
|
@@ -35,3 +38,4 @@ declare const _default: {
|
|
|
35
38
|
export default _default;
|
|
36
39
|
export declare const Multiple: any;
|
|
37
40
|
export declare const Single: any;
|
|
41
|
+
export declare const DefaultFileList: any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const DefaultFileListOdsFileUploadTemplate: any;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: (props?: import("antd").TypographyProps) => React.JSX.Element;
|
|
5
|
+
tags: string[];
|
|
6
|
+
argTypes: {
|
|
7
|
+
link: {
|
|
8
|
+
description: string;
|
|
9
|
+
};
|
|
10
|
+
defaultProps: {
|
|
11
|
+
description: string;
|
|
12
|
+
};
|
|
13
|
+
propTypes: {
|
|
14
|
+
description: string;
|
|
15
|
+
};
|
|
16
|
+
displayName: {
|
|
17
|
+
description: string;
|
|
18
|
+
};
|
|
19
|
+
$$typeof: {
|
|
20
|
+
description: string;
|
|
21
|
+
};
|
|
22
|
+
apply: {
|
|
23
|
+
description: string;
|
|
24
|
+
};
|
|
25
|
+
call: {
|
|
26
|
+
description: string;
|
|
27
|
+
control: string;
|
|
28
|
+
};
|
|
29
|
+
bind: {
|
|
30
|
+
description: string;
|
|
31
|
+
};
|
|
32
|
+
toString: {
|
|
33
|
+
description: string;
|
|
34
|
+
};
|
|
35
|
+
length: {
|
|
36
|
+
description: string;
|
|
37
|
+
};
|
|
38
|
+
arguments: {
|
|
39
|
+
description: string;
|
|
40
|
+
};
|
|
41
|
+
caller: {
|
|
42
|
+
description: string;
|
|
43
|
+
};
|
|
44
|
+
name: {
|
|
45
|
+
description: string;
|
|
46
|
+
};
|
|
47
|
+
Text: {
|
|
48
|
+
description: string;
|
|
49
|
+
};
|
|
50
|
+
Title: {
|
|
51
|
+
description: string;
|
|
52
|
+
};
|
|
53
|
+
Paragraph: {
|
|
54
|
+
description: string;
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
export default _default;
|
|
59
|
+
export declare const Default: any;
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const BasicModal: any;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import PivotGrid from 'devextreme-react/pivot-grid';
|
|
2
|
-
import 'devextreme/dist/css/dx.light.css';
|
|
3
|
-
declare const _default: {
|
|
4
|
-
title: string;
|
|
5
|
-
component: typeof PivotGrid;
|
|
6
|
-
tags: string[];
|
|
7
|
-
argTypes: {};
|
|
8
|
-
parameters: {
|
|
9
|
-
controls: {
|
|
10
|
-
exclude: any[];
|
|
11
|
-
};
|
|
12
|
-
};
|
|
13
|
-
};
|
|
14
|
-
export default _default;
|
|
15
|
-
export declare const Basic: any;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const BasicPivotGridTemplate: any;
|
/package/dist/components/antd/datepicker/{OdsDateRangepicker.d.ts → OdsDateRangePicker.d.ts}
RENAMED
|
File without changes
|