forked from syncfusion/ej2-javascript-ui-controls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard-layout-model.d.ts
290 lines (246 loc) · 6.2 KB
/
dashboard-layout-model.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
import { Component, Property, NotifyPropertyChanges, INotifyPropertyChanged, isUndefined } from '@syncfusion/ej2-base';import { Collection, Draggable, isNullOrUndefined, DragEventArgs, append, setValue } from '@syncfusion/ej2-base';import { EmitType, Event, formatUnit, ChildProperty, compile, closest, SanitizeHtmlHelper, getValue } from '@syncfusion/ej2-base';import { setStyleAttribute as setStyle, addClass, detach, removeClass, EventHandler, Browser, extend } from '@syncfusion/ej2-base';
import {ChangeEventArgs,DragStartArgs,DraggedEventArgs,DragStopArgs,ResizeArgs} from "./dashboard-layout";
import {ComponentModel} from '@syncfusion/ej2-base';
/**
* Interface for a class Panel
*/
export interface PanelModel {
/**
* Defines the id of the panel.
*
* @default ''
*/
id?: string;
/**
* Defines the CSS class name that can be appended with each panel element.
*
* @default ''
*/
cssClass?: string;
/**
* Defines the template value that should be displayed as the panel's header.
*
*/
header?: string | HTMLElement;
/**
* Defines the template value that should be displayed as the panel's content.
*
*/
content?: string | HTMLElement;
/**
* Defines whether to the panel should be enabled or not.
*
* @default true
*/
enabled?: boolean;
/**
* Defines a row value where the panel should be placed.
*
* @default 0
* @aspType int
*/
row?: number;
/**
* Defines the column value where the panel to be placed.
*
* @default 0
* @aspType int
*/
col?: number;
/**
* Specifies the width of the panel in the layout in cells count.
*
* @default 1
*/
sizeX?: number;
/**
* Specifies the height of the panel in the layout in cells count.
*
* @default 1
*/
sizeY?: number;
/**
* Specifies the minimum height of the panel in cells count.
*
* @default 1
*/
minSizeY?: number;
/**
* Specifies the minimum width of the panel in cells count.
*
* @default 1
*/
minSizeX?: number;
/**
* Specifies the maximum height of the panel in cells count.
*
* @default null
* @aspType int
*
*/
maxSizeY?: number;
/**
* Specifies the maximum width of the panel in cells count.
*
* @default null
* @aspType int
*/
maxSizeX?: number;
/**
* Specifies the z-index of the panel
*
* @default 1000
* @aspType double
*/
zIndex?: number;
}
/**
* Interface for a class DashboardLayout
*/
export interface DashboardLayoutModel extends ComponentModel{
/**
* If allowDragging is set to true, then the DashboardLayout allows you to drag and reorder the panels.
*
* @default true
*/
allowDragging?: boolean;
/**
* If allowResizing is set to true, then the DashboardLayout allows you to resize the panels.
*
* @default false
*/
allowResizing?: boolean;
/**
* If pushing is set to true, then the DashboardLayout allow to push the panels when panels collide
* while dragging or resizing the panels.
*
* @default true
* @private
*/
allowPushing?: boolean;
/**
* Defines whether to allow the cross-scripting site or not.
*
* @default true
*/
enableHtmlSanitizer?: boolean;
/**
* If allowFloating is set to true, then the DashboardLayout automatically move the panels upwards to fill the empty available
* cells while dragging or resizing the panels.
*
* @default true
*/
allowFloating?: boolean;
/**
* Defines the cell aspect ratio of the panel.
*
* @default 1
*/
cellAspectRatio?: number;
/**
* Defines the spacing between the panels.
*
* @default [5,5]
*/
cellSpacing?: number[];
/**
* Defines the number of columns to be created in the DashboardLayout.
*
* @default 1
*/
columns?: number;
/**
* Enables or disables the grid lines for the Dashboard Layout panels.
*
* @default false
*/
showGridLines?: boolean;
/**
* Defines the draggable handle selector which will act as dragging handler for the panels.
*
* @default null
*/
draggableHandle?: string;
/**
* Locale property.
* This is not a dashboard layout property.
*
* @default 'en-US'
* @private
*/
locale?: string;
/**
* Defines the media query value where the dashboardlayout becomes stacked layout when the resolution meets.
*
* @default 'max-width:600px'
*/
mediaQuery?: string;
/**
*
* Defines the panels property of the DashboardLayout component.
*
* @default null
*/
panels?: PanelModel[];
/**
* Defines the resizing handles directions used for resizing the panels.
*
* @default 'e-south-east'
*
*/
resizableHandles?: string[];
/**
* Triggers whenever the panels positions are changed.
*
* @event 'object'
*/
change?: EmitType<ChangeEventArgs>;
/**
* Triggers when a panel is about to drag.
*
* @event 'object'
*/
dragStart?: EmitType<DragStartArgs>;
/**
* Triggers while a panel is dragged continuously.
*
* @event 'object'
*/
drag?: EmitType<DraggedEventArgs>;
/**
* Triggers when a dragged panel is dropped.
*
* @event 'object'
*/
dragStop?: EmitType<DragStopArgs>;
/**
* Triggers when a panel is about to resize.
*
* @event 'object'
*/
resizeStart?: EmitType<ResizeArgs>;
/**
* Triggers when a panel is being resized continuously.
*
* @event 'object'
*/
resize?: EmitType<ResizeArgs>;
/**
* Triggers when a panel resize ends.
*
* @event 'object'
*/
resizeStop?: EmitType<ResizeArgs>;
/**
* Triggers when Dashboard Layout is created.
*
* @event 'object'
*/
created?: EmitType<Object>;
/**
* Triggers when Dashboard Layout is destroyed.
*
* @event 'object'
*/
destroyed?: EmitType<Object>;
}