devexpress-dashboard-react 20.2.2-beta → 20.2.3
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/dashboard-control.d.ts +16 -1
- package/dashboard-control.js +5 -0
- package/package.json +11 -6
package/dashboard-control.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { Component as BaseComponent, IHtmlOptions } from "devextreme-react/core/
|
|
|
3
3
|
import NestedOption from "devextreme-react/core/nested-option";
|
|
4
4
|
interface IDashboardControlOptions extends IOptions, IHtmlOptions {
|
|
5
5
|
defaultWorkingMode?: any;
|
|
6
|
+
onWorkingModeChange?: (value: any) => void;
|
|
6
7
|
}
|
|
7
8
|
declare class DashboardControl extends BaseComponent<IDashboardControlOptions> {
|
|
8
9
|
readonly instance: dxDashboardControl;
|
|
@@ -65,6 +66,7 @@ declare class DataInspector extends NestedOption<IDataInspectorProps> {
|
|
|
65
66
|
static OptionName: string;
|
|
66
67
|
}
|
|
67
68
|
interface IDataRequestOptionsProps {
|
|
69
|
+
itemDataLoadingMode?: any;
|
|
68
70
|
itemDataRequestMode?: any;
|
|
69
71
|
}
|
|
70
72
|
declare class DataRequestOptions extends NestedOption<IDataRequestOptionsProps> {
|
|
@@ -120,6 +122,9 @@ interface IExtensionsProps {
|
|
|
120
122
|
itemOptionsPanel?: {
|
|
121
123
|
onCustomizeSections?: any;
|
|
122
124
|
};
|
|
125
|
+
mobileLayout?: {
|
|
126
|
+
mobileLayoutEnabled?: any;
|
|
127
|
+
};
|
|
123
128
|
viewerApi?: {
|
|
124
129
|
onDashboardTitleToolbarUpdated?: any;
|
|
125
130
|
onItemActionAvailabilityChanged?: any;
|
|
@@ -164,6 +169,10 @@ declare class Extensions extends NestedOption<IExtensionsProps> {
|
|
|
164
169
|
optionName: string;
|
|
165
170
|
isCollectionItem: boolean;
|
|
166
171
|
};
|
|
172
|
+
mobileLayout: {
|
|
173
|
+
optionName: string;
|
|
174
|
+
isCollectionItem: boolean;
|
|
175
|
+
};
|
|
167
176
|
viewerApi: {
|
|
168
177
|
optionName: string;
|
|
169
178
|
isCollectionItem: boolean;
|
|
@@ -182,6 +191,12 @@ interface IItemOptionsPanelProps {
|
|
|
182
191
|
declare class ItemOptionsPanel extends NestedOption<IItemOptionsPanelProps> {
|
|
183
192
|
static OptionName: string;
|
|
184
193
|
}
|
|
194
|
+
interface IMobileLayoutProps {
|
|
195
|
+
mobileLayoutEnabled?: any;
|
|
196
|
+
}
|
|
197
|
+
declare class MobileLayout extends NestedOption<IMobileLayoutProps> {
|
|
198
|
+
static OptionName: string;
|
|
199
|
+
}
|
|
185
200
|
interface IViewerApiProps {
|
|
186
201
|
onDashboardTitleToolbarUpdated?: any;
|
|
187
202
|
onItemActionAvailabilityChanged?: any;
|
|
@@ -210,4 +225,4 @@ declare class WizardSettings extends NestedOption<IWizardSettingsProps> {
|
|
|
210
225
|
static OptionName: string;
|
|
211
226
|
}
|
|
212
227
|
export default DashboardControl;
|
|
213
|
-
export { DashboardControl, IDashboardControlOptions, AjaxRemoteService, IAjaxRemoteServiceProps, DashboardExport, IDashboardExportProps, DashboardParameterDialog, IDashboardParameterDialogProps, DataInspector, IDataInspectorProps, DataRequestOptions, IDataRequestOptionsProps, DataSourceWizard, IDataSourceWizardProps, Extensions, IExtensionsProps, ItemBindingPanel, IItemBindingPanelProps, ItemOptionsPanel, IItemOptionsPanelProps, ViewerApi, IViewerApiProps, WizardSettings, IWizardSettingsProps };
|
|
228
|
+
export { DashboardControl, IDashboardControlOptions, AjaxRemoteService, IAjaxRemoteServiceProps, DashboardExport, IDashboardExportProps, DashboardParameterDialog, IDashboardParameterDialogProps, DataInspector, IDataInspectorProps, DataRequestOptions, IDataRequestOptionsProps, DataSourceWizard, IDataSourceWizardProps, Extensions, IExtensionsProps, ItemBindingPanel, IItemBindingPanelProps, ItemOptionsPanel, IItemOptionsPanelProps, MobileLayout, IMobileLayoutProps, ViewerApi, IViewerApiProps, WizardSettings, IWizardSettingsProps };
|
package/dashboard-control.js
CHANGED
|
@@ -86,6 +86,7 @@ Extensions.ExpectedChildren = {
|
|
|
86
86
|
dataSourceWizard: { optionName: "dataSourceWizard", isCollectionItem: false },
|
|
87
87
|
itemBindingPanel: { optionName: "itemBindingPanel", isCollectionItem: false },
|
|
88
88
|
itemOptionsPanel: { optionName: "itemOptionsPanel", isCollectionItem: false },
|
|
89
|
+
mobileLayout: { optionName: "mobileLayout", isCollectionItem: false },
|
|
89
90
|
viewerApi: { optionName: "viewerApi", isCollectionItem: false }
|
|
90
91
|
};
|
|
91
92
|
exports.Extensions = Extensions;
|
|
@@ -97,6 +98,10 @@ class ItemOptionsPanel extends nested_option_1.default {
|
|
|
97
98
|
}
|
|
98
99
|
ItemOptionsPanel.OptionName = "itemOptionsPanel";
|
|
99
100
|
exports.ItemOptionsPanel = ItemOptionsPanel;
|
|
101
|
+
class MobileLayout extends nested_option_1.default {
|
|
102
|
+
}
|
|
103
|
+
MobileLayout.OptionName = "mobileLayout";
|
|
104
|
+
exports.MobileLayout = MobileLayout;
|
|
100
105
|
class ViewerApi extends nested_option_1.default {
|
|
101
106
|
}
|
|
102
107
|
ViewerApi.OptionName = "viewerApi";
|
package/package.json
CHANGED
|
@@ -1,20 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "devexpress-dashboard-react",
|
|
3
3
|
"author": "Developer Express Inc.",
|
|
4
|
-
"version": "20.2.
|
|
4
|
+
"version": "20.2.3",
|
|
5
5
|
"description": "A component that integrates DevExpress Web Dashboard in a React application",
|
|
6
6
|
"homepage": "https://www.devexpress.com/products/net/dashboard/",
|
|
7
7
|
"bugs": "https://www.devexpress.com/support/",
|
|
8
8
|
"license": "SEE LICENSE IN README.md",
|
|
9
|
-
"keywords": [
|
|
9
|
+
"keywords": [
|
|
10
|
+
"devexpress",
|
|
11
|
+
"dashboard",
|
|
12
|
+
"analytics",
|
|
13
|
+
"react"
|
|
14
|
+
],
|
|
10
15
|
"main": "./index.js",
|
|
11
16
|
"dependencies": {
|
|
12
17
|
"prop-types": "^15.6.1"
|
|
13
18
|
},
|
|
14
19
|
"peerDependencies": {
|
|
15
|
-
"devexpress-dashboard": "20.2.
|
|
16
|
-
"devextreme": "20.2.
|
|
17
|
-
"devextreme-react": "20.2.
|
|
18
|
-
"@devexpress/analytics-core": "20.2.
|
|
20
|
+
"devexpress-dashboard": "20.2.3",
|
|
21
|
+
"devextreme": "20.2.3",
|
|
22
|
+
"devextreme-react": "20.2.3",
|
|
23
|
+
"@devexpress/analytics-core": "20.2.3"
|
|
19
24
|
}
|
|
20
25
|
}
|