devexpress-dashboard-react 21.2.2-alpha-21249-2233 → 21.2.2-beta
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 +14 -14
- package/dashboard-control.js +5 -5
- package/package.json +24 -24
package/dashboard-control.d.ts
CHANGED
|
@@ -92,6 +92,12 @@ declare class DataSourceWizard extends NestedOption<IDataSourceWizardProps> {
|
|
|
92
92
|
};
|
|
93
93
|
};
|
|
94
94
|
}
|
|
95
|
+
interface IDesignerToolbarProps {
|
|
96
|
+
onPreparing?: any;
|
|
97
|
+
}
|
|
98
|
+
declare class DesignerToolbar extends NestedOption<IDesignerToolbarProps> {
|
|
99
|
+
static OptionName: string;
|
|
100
|
+
}
|
|
95
101
|
interface IExtensionsProps {
|
|
96
102
|
dashboardExport?: object | {
|
|
97
103
|
allowExportDashboard?: any;
|
|
@@ -121,6 +127,9 @@ interface IExtensionsProps {
|
|
|
121
127
|
onCustomizeDataSourceWizard?: any;
|
|
122
128
|
wizardSettings?: any;
|
|
123
129
|
};
|
|
130
|
+
designerToolbar?: object | {
|
|
131
|
+
onPreparing?: any;
|
|
132
|
+
};
|
|
124
133
|
itemBindingPanel?: object | {
|
|
125
134
|
onCustomizeDataItemContainerSections?: any;
|
|
126
135
|
};
|
|
@@ -130,9 +139,6 @@ interface IExtensionsProps {
|
|
|
130
139
|
mobileLayout?: object | {
|
|
131
140
|
mobileLayoutEnabled?: any;
|
|
132
141
|
};
|
|
133
|
-
toolbar?: object | {
|
|
134
|
-
onPrepared?: any;
|
|
135
|
-
};
|
|
136
142
|
viewerApi?: object | {
|
|
137
143
|
onDashboardTitleToolbarUpdated?: any;
|
|
138
144
|
onItemActionAvailabilityChanged?: any;
|
|
@@ -169,19 +175,19 @@ declare class Extensions extends NestedOption<IExtensionsProps> {
|
|
|
169
175
|
optionName: string;
|
|
170
176
|
isCollectionItem: boolean;
|
|
171
177
|
};
|
|
172
|
-
|
|
178
|
+
designerToolbar: {
|
|
173
179
|
optionName: string;
|
|
174
180
|
isCollectionItem: boolean;
|
|
175
181
|
};
|
|
176
|
-
|
|
182
|
+
itemBindingPanel: {
|
|
177
183
|
optionName: string;
|
|
178
184
|
isCollectionItem: boolean;
|
|
179
185
|
};
|
|
180
|
-
|
|
186
|
+
itemOptionsPanel: {
|
|
181
187
|
optionName: string;
|
|
182
188
|
isCollectionItem: boolean;
|
|
183
189
|
};
|
|
184
|
-
|
|
190
|
+
mobileLayout: {
|
|
185
191
|
optionName: string;
|
|
186
192
|
isCollectionItem: boolean;
|
|
187
193
|
};
|
|
@@ -209,12 +215,6 @@ interface IMobileLayoutProps {
|
|
|
209
215
|
declare class MobileLayout extends NestedOption<IMobileLayoutProps> {
|
|
210
216
|
static OptionName: string;
|
|
211
217
|
}
|
|
212
|
-
interface IToolbarProps {
|
|
213
|
-
onPrepared?: any;
|
|
214
|
-
}
|
|
215
|
-
declare class Toolbar extends NestedOption<IToolbarProps> {
|
|
216
|
-
static OptionName: string;
|
|
217
|
-
}
|
|
218
218
|
interface IViewerApiProps {
|
|
219
219
|
onDashboardTitleToolbarUpdated?: any;
|
|
220
220
|
onItemActionAvailabilityChanged?: any;
|
|
@@ -243,4 +243,4 @@ declare class WizardSettings extends NestedOption<IWizardSettingsProps> {
|
|
|
243
243
|
static OptionName: string;
|
|
244
244
|
}
|
|
245
245
|
export default DashboardControl;
|
|
246
|
-
export { DashboardControl, IDashboardControlOptions, AjaxRemoteService, IAjaxRemoteServiceProps, DashboardExport, IDashboardExportProps, DashboardParameterDialog, IDashboardParameterDialogProps, DataInspector, IDataInspectorProps, DataRequestOptions, IDataRequestOptionsProps, DataSourceWizard, IDataSourceWizardProps, Extensions, IExtensionsProps, ItemBindingPanel, IItemBindingPanelProps, ItemOptionsPanel, IItemOptionsPanelProps, MobileLayout, IMobileLayoutProps,
|
|
246
|
+
export { DashboardControl, IDashboardControlOptions, AjaxRemoteService, IAjaxRemoteServiceProps, DashboardExport, IDashboardExportProps, DashboardParameterDialog, IDashboardParameterDialogProps, DataInspector, IDataInspectorProps, DataRequestOptions, IDataRequestOptionsProps, DataSourceWizard, IDataSourceWizardProps, DesignerToolbar, IDesignerToolbarProps, Extensions, IExtensionsProps, ItemBindingPanel, IItemBindingPanelProps, ItemOptionsPanel, IItemOptionsPanelProps, MobileLayout, IMobileLayoutProps, ViewerApi, IViewerApiProps, WizardSettings, IWizardSettingsProps };
|
package/dashboard-control.js
CHANGED
|
@@ -79,6 +79,10 @@ DataSourceWizard.ExpectedChildren = {
|
|
|
79
79
|
wizardSettings: { optionName: "wizardSettings", isCollectionItem: false }
|
|
80
80
|
};
|
|
81
81
|
exports.DataSourceWizard = DataSourceWizard;
|
|
82
|
+
class DesignerToolbar extends nested_option_1.default {
|
|
83
|
+
}
|
|
84
|
+
DesignerToolbar.OptionName = "designerToolbar";
|
|
85
|
+
exports.DesignerToolbar = DesignerToolbar;
|
|
82
86
|
class Extensions extends nested_option_1.default {
|
|
83
87
|
}
|
|
84
88
|
Extensions.OptionName = "extensions";
|
|
@@ -87,10 +91,10 @@ Extensions.ExpectedChildren = {
|
|
|
87
91
|
dashboardParameterDialog: { optionName: "dashboardParameterDialog", isCollectionItem: false },
|
|
88
92
|
dataInspector: { optionName: "dataInspector", isCollectionItem: false },
|
|
89
93
|
dataSourceWizard: { optionName: "dataSourceWizard", isCollectionItem: false },
|
|
94
|
+
designerToolbar: { optionName: "designerToolbar", isCollectionItem: false },
|
|
90
95
|
itemBindingPanel: { optionName: "itemBindingPanel", isCollectionItem: false },
|
|
91
96
|
itemOptionsPanel: { optionName: "itemOptionsPanel", isCollectionItem: false },
|
|
92
97
|
mobileLayout: { optionName: "mobileLayout", isCollectionItem: false },
|
|
93
|
-
toolbar: { optionName: "toolbar", isCollectionItem: false },
|
|
94
98
|
viewerApi: { optionName: "viewerApi", isCollectionItem: false }
|
|
95
99
|
};
|
|
96
100
|
exports.Extensions = Extensions;
|
|
@@ -106,10 +110,6 @@ class MobileLayout extends nested_option_1.default {
|
|
|
106
110
|
}
|
|
107
111
|
MobileLayout.OptionName = "mobileLayout";
|
|
108
112
|
exports.MobileLayout = MobileLayout;
|
|
109
|
-
class Toolbar extends nested_option_1.default {
|
|
110
|
-
}
|
|
111
|
-
Toolbar.OptionName = "toolbar";
|
|
112
|
-
exports.Toolbar = Toolbar;
|
|
113
113
|
class ViewerApi extends nested_option_1.default {
|
|
114
114
|
}
|
|
115
115
|
ViewerApi.OptionName = "viewerApi";
|
package/package.json
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "devexpress-dashboard-react",
|
|
3
|
-
"author": "Developer Express Inc.",
|
|
4
|
-
"version": "21.2.2-
|
|
5
|
-
"description": "A component that integrates DevExpress Web Dashboard in a React application",
|
|
6
|
-
"homepage": "https://www.devexpress.com/products/net/dashboard/",
|
|
7
|
-
"bugs": "https://www.devexpress.com/support/",
|
|
8
|
-
"license": "SEE LICENSE IN README.md",
|
|
9
|
-
"keywords": [
|
|
10
|
-
"devexpress",
|
|
11
|
-
"dashboard",
|
|
12
|
-
"analytics",
|
|
13
|
-
"react"
|
|
14
|
-
],
|
|
15
|
-
"main": "./index.js",
|
|
16
|
-
"dependencies": {
|
|
17
|
-
"prop-types": "^15.6.1"
|
|
18
|
-
},
|
|
19
|
-
"peerDependencies": {
|
|
20
|
-
"devexpress-dashboard": "21.2.2-
|
|
21
|
-
"devextreme": "21.
|
|
22
|
-
"devextreme-react": "21.
|
|
23
|
-
"@devexpress/analytics-core": "21.
|
|
24
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "devexpress-dashboard-react",
|
|
3
|
+
"author": "Developer Express Inc.",
|
|
4
|
+
"version": "21.2.2-beta",
|
|
5
|
+
"description": "A component that integrates DevExpress Web Dashboard in a React application",
|
|
6
|
+
"homepage": "https://www.devexpress.com/products/net/dashboard/",
|
|
7
|
+
"bugs": "https://www.devexpress.com/support/",
|
|
8
|
+
"license": "SEE LICENSE IN README.md",
|
|
9
|
+
"keywords": [
|
|
10
|
+
"devexpress",
|
|
11
|
+
"dashboard",
|
|
12
|
+
"analytics",
|
|
13
|
+
"react"
|
|
14
|
+
],
|
|
15
|
+
"main": "./index.js",
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"prop-types": "^15.6.1"
|
|
18
|
+
},
|
|
19
|
+
"peerDependencies": {
|
|
20
|
+
"devexpress-dashboard": "21.2.2-beta",
|
|
21
|
+
"devextreme": "21.2.2-beta",
|
|
22
|
+
"devextreme-react": "21.2.2-beta",
|
|
23
|
+
"@devexpress/analytics-core": "21.2.2-beta"
|
|
24
|
+
}
|
|
25
25
|
}
|