@syncfusion/ej2-layouts 19.2.44 → 19.3.43

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.
Files changed (105) hide show
  1. package/.eslintrc.json +1 -1
  2. package/CHANGELOG.md +22 -0
  3. package/dist/ej2-layouts.umd.min.js +2 -2
  4. package/dist/ej2-layouts.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-layouts.es2015.js +103 -254
  6. package/dist/es6/ej2-layouts.es2015.js.map +1 -1
  7. package/dist/es6/ej2-layouts.es5.js +103 -255
  8. package/dist/es6/ej2-layouts.es5.js.map +1 -1
  9. package/dist/global/ej2-layouts.min.js +2 -2
  10. package/dist/global/ej2-layouts.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/helpers/e2e/dashboardHelper.d.ts +63 -0
  13. package/helpers/e2e/dashboardHelper.js +97 -0
  14. package/helpers/e2e/index.d.ts +1 -0
  15. package/helpers/e2e/index.js +1 -0
  16. package/package.json +6 -6
  17. package/src/dashboard-layout/dashboard-layout-model.d.ts +1 -22
  18. package/src/dashboard-layout/dashboard-layout.d.ts +0 -23
  19. package/src/dashboard-layout/dashboard-layout.js +32 -105
  20. package/src/splitter/splitter-model.d.ts +1 -1
  21. package/src/splitter/splitter.d.ts +1 -1
  22. package/src/splitter/splitter.js +73 -151
  23. package/styles/avatar/_bootstrap5-dark-definition.scss +1 -0
  24. package/styles/avatar/_bootstrap5-definition.scss +25 -0
  25. package/styles/avatar/_layout.scss +5 -5
  26. package/styles/avatar/_tailwind-dark-definition.scss +1 -25
  27. package/styles/avatar/bootstrap5-dark.css +61 -0
  28. package/styles/avatar/bootstrap5-dark.scss +3 -0
  29. package/styles/avatar/bootstrap5.css +61 -0
  30. package/styles/avatar/bootstrap5.scss +3 -0
  31. package/styles/bootstrap-dark.css +8 -0
  32. package/styles/bootstrap.css +8 -0
  33. package/styles/bootstrap4.css +8 -0
  34. package/styles/bootstrap5-dark.css +1618 -0
  35. package/styles/bootstrap5-dark.scss +4 -0
  36. package/styles/bootstrap5.css +1618 -0
  37. package/styles/bootstrap5.scss +4 -0
  38. package/styles/card/_bootstrap5-dark-definition.scss +1 -0
  39. package/styles/card/_bootstrap5-definition.scss +119 -0
  40. package/styles/card/_fabric-dark-definition.scss +5 -18
  41. package/styles/card/_layout.scss +2 -2
  42. package/styles/card/_tailwind-dark-definition.scss +1 -122
  43. package/styles/card/_tailwind-definition.scss +5 -9
  44. package/styles/card/bootstrap5-dark.css +593 -0
  45. package/styles/card/bootstrap5-dark.scss +3 -0
  46. package/styles/card/bootstrap5.css +593 -0
  47. package/styles/card/bootstrap5.scss +3 -0
  48. package/styles/card/fabric-dark.css +12 -12
  49. package/styles/card/tailwind-dark.css +2 -3
  50. package/styles/card/tailwind.css +0 -1
  51. package/styles/dashboard-layout/_bootstrap5-dark-definition.scss +1 -0
  52. package/styles/dashboard-layout/_bootstrap5-definition.scss +109 -0
  53. package/styles/dashboard-layout/_layout.scss +14 -5
  54. package/styles/dashboard-layout/_tailwind-dark-definition.scss +1 -109
  55. package/styles/dashboard-layout/_tailwind-definition.scss +27 -28
  56. package/styles/dashboard-layout/_theme.scss +4 -4
  57. package/styles/dashboard-layout/bootstrap5-dark.css +393 -0
  58. package/styles/dashboard-layout/bootstrap5-dark.scss +4 -0
  59. package/styles/dashboard-layout/bootstrap5.css +393 -0
  60. package/styles/dashboard-layout/bootstrap5.scss +4 -0
  61. package/styles/dashboard-layout/icons/_bootstrap5-dark.scss +1 -0
  62. package/styles/dashboard-layout/icons/_bootstrap5.scss +81 -0
  63. package/styles/dashboard-layout/material-dark.css +3 -3
  64. package/styles/dashboard-layout/tailwind-dark.css +10 -8
  65. package/styles/dashboard-layout/tailwind.css +5 -3
  66. package/styles/fabric-dark.css +20 -12
  67. package/styles/fabric.css +8 -0
  68. package/styles/highcontrast-light.css +8 -0
  69. package/styles/highcontrast.css +8 -0
  70. package/styles/material-dark.css +19 -11
  71. package/styles/material.css +8 -0
  72. package/styles/splitter/_bootstrap5-dark-definition.scss +1 -0
  73. package/styles/splitter/_bootstrap5-definition.scss +26 -0
  74. package/styles/splitter/_tailwind-dark-definition.scss +1 -23
  75. package/styles/splitter/_tailwind-definition.scss +14 -11
  76. package/styles/splitter/bootstrap-dark.css +8 -0
  77. package/styles/splitter/bootstrap.css +8 -0
  78. package/styles/splitter/bootstrap4.css +8 -0
  79. package/styles/splitter/bootstrap5-dark.css +568 -0
  80. package/styles/splitter/bootstrap5-dark.scss +4 -0
  81. package/styles/splitter/bootstrap5.css +568 -0
  82. package/styles/splitter/bootstrap5.scss +4 -0
  83. package/styles/splitter/fabric-dark.css +8 -0
  84. package/styles/splitter/fabric.css +8 -0
  85. package/styles/splitter/highcontrast-light.css +8 -0
  86. package/styles/splitter/highcontrast.css +8 -0
  87. package/styles/splitter/icons/_bootstrap-dark.scss +12 -0
  88. package/styles/splitter/icons/_bootstrap.scss +12 -0
  89. package/styles/splitter/icons/_bootstrap4.scss +12 -0
  90. package/styles/splitter/icons/_bootstrap5-dark.scss +1 -0
  91. package/styles/splitter/icons/_bootstrap5.scss +39 -0
  92. package/styles/splitter/icons/_fabric-dark.scss +12 -0
  93. package/styles/splitter/icons/_fabric.scss +12 -0
  94. package/styles/splitter/icons/_highcontrast-light.scss +12 -0
  95. package/styles/splitter/icons/_highcontrast.scss +12 -0
  96. package/styles/splitter/icons/_material-dark.scss +12 -0
  97. package/styles/splitter/icons/_material.scss +12 -0
  98. package/styles/splitter/icons/_tailwind-dark.scss +1 -39
  99. package/styles/splitter/icons/_tailwind.scss +12 -0
  100. package/styles/splitter/material-dark.css +16 -8
  101. package/styles/splitter/material.css +8 -0
  102. package/styles/splitter/tailwind-dark.css +14 -7
  103. package/styles/splitter/tailwind.css +8 -1
  104. package/styles/tailwind-dark.css +26 -18
  105. package/styles/tailwind.css +13 -5
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 19.2.44
3
+ * version : 19.3.43
4
4
  * Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
@@ -0,0 +1,63 @@
1
+ import { TestHelper } from '@syncfusion/ej2-base/helpers/e2e';
2
+ export declare class DashboardHelper extends TestHelper {
3
+ id: string;
4
+ wrapperFn: Function;
5
+ /**
6
+ * Initialize the Dashboard Layout E2E helpers.
7
+ * @param id element id of the Dashboard Layout component.
8
+ * @param wrapperFn pass the wrapper function.
9
+ */
10
+ constructor(id: string, wrapperFn: Function);
11
+ /**
12
+ * Gets the selector of the Dashboard Layout component.
13
+ */
14
+ selector(arg: any): any;
15
+ /**
16
+ * Gets root element of the Dashboard Layout component.
17
+ */
18
+ getElement(): any;
19
+ /**
20
+ * Gets the element of the Dashboard Layout component.
21
+ */
22
+ getDashboardLayout(): any;
23
+ /**
24
+ * Gets a panel container and its inner elements with the given id from dashboard layout component.
25
+ */
26
+ getPanelContainer(): any;
27
+ /**
28
+ * Gets the panel element of Dashboard Layout component which consists the panel container and its inner elements
29
+ */
30
+ getPanelElement(): any;
31
+ /**
32
+ * Used to get the panel header of Dashboard Layout component which contains the header details.
33
+ */
34
+ getPanelHeader(): any;
35
+ /**
36
+ * Gets the panel content of Dashboard Layout component which contains the panel content class.
37
+ */
38
+ getPanelContent(): any;
39
+ /**
40
+ * Gets the resize icon positioned on the South-East side in panel container.
41
+ */
42
+ getSouthEastResizeIcon(): any;
43
+ /**
44
+ * Gets the resize icon positioned on the North-East side in panel container.
45
+ */
46
+ getNorthEastResizeIcon(): any;
47
+ /**
48
+ * Gets the resize icon positioned on the North-West side in panel container.
49
+ */
50
+ getNorthWestResizeIcon(): any;
51
+ /**
52
+ * Gets the resize icon positioned on the South-West side in panel container.
53
+ */
54
+ getSouthWestResizeIcon(): any;
55
+ /**
56
+ * Gets the clear icon from the panel element.
57
+ */
58
+ getClearIcon(): any;
59
+ /**
60
+ * Gets the transition of panel in Dashboard Layout component which is used to achieve the resizing behavior.
61
+ */
62
+ getPanelTansition(): any;
63
+ }
@@ -0,0 +1,97 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const e2e_1 = require("@syncfusion/ej2-base/helpers/e2e");
4
+ class DashboardHelper extends e2e_1.TestHelper {
5
+ /**
6
+ * Initialize the Dashboard Layout E2E helpers.
7
+ * @param id element id of the Dashboard Layout component.
8
+ * @param wrapperFn pass the wrapper function.
9
+ */
10
+ constructor(id, wrapperFn) {
11
+ super();
12
+ this.id = id;
13
+ if (wrapperFn !== undefined) {
14
+ this.wrapperFn = wrapperFn;
15
+ }
16
+ return this;
17
+ }
18
+ /**
19
+ * Gets the selector of the Dashboard Layout component.
20
+ */
21
+ selector(arg) {
22
+ return (this.wrapperFn ? this.wrapperFn(arg) : arg);
23
+ }
24
+ /**
25
+ * Gets root element of the Dashboard Layout component.
26
+ */
27
+ getElement() {
28
+ return this.selector('#' + this.id);
29
+ }
30
+ /**
31
+ * Gets the element of the Dashboard Layout component.
32
+ */
33
+ getDashboardLayout() {
34
+ return this.selector('#' + this.id + '.e-dashboardlayout');
35
+ }
36
+ /**
37
+ * Gets a panel container and its inner elements with the given id from dashboard layout component.
38
+ */
39
+ getPanelContainer() {
40
+ return this.selector('#' + this.id + '.e-dashboardlayout .e-panel-container');
41
+ }
42
+ /**
43
+ * Gets the panel element of Dashboard Layout component which consists the panel container and its inner elements
44
+ */
45
+ getPanelElement() {
46
+ return this.selector('#' + this.id + '.e-dashboardlayout .e-panel');
47
+ }
48
+ /**
49
+ * Used to get the panel header of Dashboard Layout component which contains the header details.
50
+ */
51
+ getPanelHeader() {
52
+ return this.selector('#' + this.id + '.e-dashboardlayout .e-panel-header');
53
+ }
54
+ /**
55
+ * Gets the panel content of Dashboard Layout component which contains the panel content class.
56
+ */
57
+ getPanelContent() {
58
+ return this.selector('#' + this.id + '.e-dashboardlayout .e-panel-content');
59
+ }
60
+ /**
61
+ * Gets the resize icon positioned on the South-East side in panel container.
62
+ */
63
+ getSouthEastResizeIcon() {
64
+ return this.selector('#' + this.id + '.e-dashboardlayout .e-south-east .e-resize');
65
+ }
66
+ /**
67
+ * Gets the resize icon positioned on the North-East side in panel container.
68
+ */
69
+ getNorthEastResizeIcon() {
70
+ return this.selector('#' + this.id + '.e-dashboardlayout .e-north-east .e-resize');
71
+ }
72
+ /**
73
+ * Gets the resize icon positioned on the North-West side in panel container.
74
+ */
75
+ getNorthWestResizeIcon() {
76
+ return this.selector('#' + this.id + '.e-dashboardlayout .e-north-west .e-resize');
77
+ }
78
+ /**
79
+ * Gets the resize icon positioned on the South-West side in panel container.
80
+ */
81
+ getSouthWestResizeIcon() {
82
+ return this.selector('#' + this.id + '.e-dashboardlayout .e-south-west .e-resize');
83
+ }
84
+ /**
85
+ * Gets the clear icon from the panel element.
86
+ */
87
+ getClearIcon() {
88
+ return this.selector('#' + this.id + '.e-dashboardlayout .e-clear-icon');
89
+ }
90
+ /**
91
+ * Gets the transition of panel in Dashboard Layout component which is used to achieve the resizing behavior.
92
+ */
93
+ getPanelTansition() {
94
+ return this.selector('#' + this.id + '.e-dashboardlayout .e-panel-transition');
95
+ }
96
+ }
97
+ exports.DashboardHelper = DashboardHelper;
@@ -1 +1,2 @@
1
+ export * from './dashboardHelper';
1
2
  export * from './splitter-helper';
@@ -3,4 +3,5 @@ function __export(m) {
3
3
  for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
4
4
  }
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
+ __export(require("./dashboardHelper"));
6
7
  __export(require("./splitter-helper"));
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-layouts@*",
3
- "_id": "@syncfusion/ej2-layouts@18.3.35",
3
+ "_id": "@syncfusion/ej2-layouts@18.23.7",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-uzZtT3X/GldKi6pGMxEoZFtQ4M0a4EG3S+FivntJDMWXAsiM02kmb9YmehGz4WFQQa4R5NVwHmIxIOcjsWjqDQ==",
5
+ "_integrity": "sha512-CMePvOOx9B17e0D/dLknB37+dJV7wpQa5RQBfNh8A8cPodX/ZWHIr8jElXeG43HQifMIFH4G8gDQN6r4ZZG3Ig==",
6
6
  "_location": "/@syncfusion/ej2-layouts",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -27,8 +27,8 @@
27
27
  "/@syncfusion/ej2-react-layouts",
28
28
  "/@syncfusion/ej2-vue-layouts"
29
29
  ],
30
- "_resolved": "http://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-layouts/-/ej2-layouts-18.3.35.tgz",
31
- "_shasum": "980d8c351a491b335e215539ad34d4b20c11c75d",
30
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-layouts/-/ej2-layouts-18.23.7.tgz",
31
+ "_shasum": "bd23f5277351df6a2d390c8a5a9b528fb7f4db2b",
32
32
  "_spec": "@syncfusion/ej2-layouts@*",
33
33
  "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
34
34
  "author": {
@@ -36,7 +36,7 @@
36
36
  },
37
37
  "bundleDependencies": false,
38
38
  "dependencies": {
39
- "@syncfusion/ej2-base": "~19.2.44"
39
+ "@syncfusion/ej2-base": "~19.3.43"
40
40
  },
41
41
  "deprecated": false,
42
42
  "description": "A package of Essential JS 2 layout pure CSS components such as card and avatar. The card is used as small container to show content in specific structure, whereas the avatars are icons, initials or figures representing particular person.",
@@ -76,6 +76,6 @@
76
76
  "url": "https://github.com/syncfusion/ej2-javascript-ui-controls/tree/master/controls/layouts"
77
77
  },
78
78
  "typings": "index.d.ts",
79
- "version": "19.2.44",
79
+ "version": "19.3.43",
80
80
  "sideEffects": false
81
81
  }
@@ -1,4 +1,4 @@
1
- import { Component, Property, NotifyPropertyChanges, INotifyPropertyChanged, isUndefined, BlazorDragEventArgs } from '@syncfusion/ej2-base';import { Collection, Draggable, isNullOrUndefined, DragEventArgs, append, updateBlazorTemplate, setValue } from '@syncfusion/ej2-base';import { EmitType, Event, formatUnit, ChildProperty, compile, closest, isBlazor, SanitizeHtmlHelper, getValue } from '@syncfusion/ej2-base';import { setStyleAttribute as setStyle, addClass, detach, removeClass, EventHandler, Browser, extend } from '@syncfusion/ej2-base';
1
+ 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';
2
2
  import {ChangeEventArgs,DragStartArgs,DraggedEventArgs,DragStopArgs,ResizeArgs} from "./dashboard-layout";
3
3
  import {ComponentModel} from '@syncfusion/ej2-base';
4
4
 
@@ -24,14 +24,12 @@ export interface PanelModel {
24
24
  /**
25
25
  * Defines the template value that should be displayed as the panel's header.
26
26
  *
27
- * @blazorType RenderFragment
28
27
  */
29
28
  header?: string | HTMLElement;
30
29
 
31
30
  /**
32
31
  * Defines the template value that should be displayed as the panel's content.
33
32
  *
34
- * @blazorType RenderFragment
35
33
  */
36
34
 
37
35
  content?: string | HTMLElement;
@@ -48,7 +46,6 @@ export interface PanelModel {
48
46
  *
49
47
  * @default 0
50
48
  * @aspType int
51
- * @blazorType int
52
49
  */
53
50
  row?: number;
54
51
 
@@ -57,7 +54,6 @@ export interface PanelModel {
57
54
  *
58
55
  * @default 0
59
56
  * @aspType int
60
- * @blazorType int
61
57
  */
62
58
  col?: number;
63
59
 
@@ -65,7 +61,6 @@ export interface PanelModel {
65
61
  * Specifies the width of the panel in the layout in cells count.
66
62
  *
67
63
  * @default 1
68
- * @blazorType int
69
64
  */
70
65
  sizeX?: number;
71
66
 
@@ -73,7 +68,6 @@ export interface PanelModel {
73
68
  * Specifies the height of the panel in the layout in cells count.
74
69
  *
75
70
  * @default 1
76
- * @blazorType int
77
71
  */
78
72
  sizeY?: number;
79
73
 
@@ -81,7 +75,6 @@ export interface PanelModel {
81
75
  * Specifies the minimum height of the panel in cells count.
82
76
  *
83
77
  * @default 1
84
- * @blazorType int
85
78
  */
86
79
  minSizeY?: number;
87
80
 
@@ -89,7 +82,6 @@ export interface PanelModel {
89
82
  * Specifies the minimum width of the panel in cells count.
90
83
  *
91
84
  * @default 1
92
- * @blazorType int
93
85
  */
94
86
  minSizeX?: number;
95
87
 
@@ -98,7 +90,6 @@ export interface PanelModel {
98
90
  *
99
91
  * @default null
100
92
  * @aspType int
101
- * @blazorType int?
102
93
  *
103
94
  */
104
95
  maxSizeY?: number;
@@ -108,7 +99,6 @@ export interface PanelModel {
108
99
  *
109
100
  * @default null
110
101
  * @aspType int
111
- * @blazorType int?
112
102
  */
113
103
  maxSizeX?: number;
114
104
 
@@ -117,7 +107,6 @@ export interface PanelModel {
117
107
  *
118
108
  * @default 1000
119
109
  * @aspType double
120
- * @blazorType double
121
110
  */
122
111
  zIndex?: number;
123
112
 
@@ -184,7 +173,6 @@ export interface DashboardLayoutModel extends ComponentModel{
184
173
  * Defines the number of columns to be created in the DashboardLayout.
185
174
  *
186
175
  * @default 1
187
- * @blazorType int
188
176
  */
189
177
  columns?: number;
190
178
 
@@ -238,7 +226,6 @@ export interface DashboardLayoutModel extends ComponentModel{
238
226
  * Triggers whenever the panels positions are changed.
239
227
  *
240
228
  * @event 'object'
241
- * @blazorProperty 'Changed'
242
229
  */
243
230
  change?: EmitType<ChangeEventArgs>;
244
231
 
@@ -246,7 +233,6 @@ export interface DashboardLayoutModel extends ComponentModel{
246
233
  * Triggers when a panel is about to drag.
247
234
  *
248
235
  * @event 'object'
249
- * @blazorProperty 'OnDragStart'
250
236
  */
251
237
  dragStart?: EmitType<DragStartArgs>;
252
238
 
@@ -254,7 +240,6 @@ export interface DashboardLayoutModel extends ComponentModel{
254
240
  * Triggers while a panel is dragged continuously.
255
241
  *
256
242
  * @event 'object'
257
- * @blazorProperty 'Dragging'
258
243
  */
259
244
  drag?: EmitType<DraggedEventArgs>;
260
245
 
@@ -262,7 +247,6 @@ export interface DashboardLayoutModel extends ComponentModel{
262
247
  * Triggers when a dragged panel is dropped.
263
248
  *
264
249
  * @event 'object'
265
- * @blazorProperty 'OnDragStop'
266
250
  */
267
251
  dragStop?: EmitType<DragStopArgs>;
268
252
 
@@ -270,7 +254,6 @@ export interface DashboardLayoutModel extends ComponentModel{
270
254
  * Triggers when a panel is about to resize.
271
255
  *
272
256
  * @event 'object'
273
- * @blazorProperty 'OnResizeStart'
274
257
  */
275
258
  resizeStart?: EmitType<ResizeArgs>;
276
259
 
@@ -278,7 +261,6 @@ export interface DashboardLayoutModel extends ComponentModel{
278
261
  * Triggers when a panel is being resized continuously.
279
262
  *
280
263
  * @event 'object'
281
- * @blazorProperty 'Resizing'
282
264
  */
283
265
  resize?: EmitType<ResizeArgs>;
284
266
 
@@ -286,7 +268,6 @@ export interface DashboardLayoutModel extends ComponentModel{
286
268
  * Triggers when a panel resize ends.
287
269
  *
288
270
  * @event 'object'
289
- * @blazorProperty 'OnResizeStop'
290
271
  */
291
272
  resizeStop?: EmitType<ResizeArgs>;
292
273
 
@@ -294,7 +275,6 @@ export interface DashboardLayoutModel extends ComponentModel{
294
275
  * Triggers when Dashboard Layout is created.
295
276
  *
296
277
  * @event 'object'
297
- * @blazorProperty 'Created'
298
278
  */
299
279
 
300
280
  created?: EmitType<Object>;
@@ -303,7 +283,6 @@ export interface DashboardLayoutModel extends ComponentModel{
303
283
  * Triggers when Dashboard Layout is destroyed.
304
284
  *
305
285
  * @event 'object'
306
- * @blazorProperty 'Destroyed'
307
286
  */
308
287
 
309
288
  destroyed?: EmitType<Object>;
@@ -21,13 +21,11 @@ export declare class Panel extends ChildProperty<Panel> {
21
21
  /**
22
22
  * Defines the template value that should be displayed as the panel's header.
23
23
  *
24
- * @blazorType RenderFragment
25
24
  */
26
25
  header: string | HTMLElement;
27
26
  /**
28
27
  * Defines the template value that should be displayed as the panel's content.
29
28
  *
30
- * @blazorType RenderFragment
31
29
  */
32
30
  content: string | HTMLElement;
33
31
  /**
@@ -41,7 +39,6 @@ export declare class Panel extends ChildProperty<Panel> {
41
39
  *
42
40
  * @default 0
43
41
  * @aspType int
44
- * @blazorType int
45
42
  */
46
43
  row: number;
47
44
  /**
@@ -49,35 +46,30 @@ export declare class Panel extends ChildProperty<Panel> {
49
46
  *
50
47
  * @default 0
51
48
  * @aspType int
52
- * @blazorType int
53
49
  */
54
50
  col: number;
55
51
  /**
56
52
  * Specifies the width of the panel in the layout in cells count.
57
53
  *
58
54
  * @default 1
59
- * @blazorType int
60
55
  */
61
56
  sizeX: number;
62
57
  /**
63
58
  * Specifies the height of the panel in the layout in cells count.
64
59
  *
65
60
  * @default 1
66
- * @blazorType int
67
61
  */
68
62
  sizeY: number;
69
63
  /**
70
64
  * Specifies the minimum height of the panel in cells count.
71
65
  *
72
66
  * @default 1
73
- * @blazorType int
74
67
  */
75
68
  minSizeY: number;
76
69
  /**
77
70
  * Specifies the minimum width of the panel in cells count.
78
71
  *
79
72
  * @default 1
80
- * @blazorType int
81
73
  */
82
74
  minSizeX: number;
83
75
  /**
@@ -85,7 +77,6 @@ export declare class Panel extends ChildProperty<Panel> {
85
77
  *
86
78
  * @default null
87
79
  * @aspType int
88
- * @blazorType int?
89
80
  *
90
81
  */
91
82
  maxSizeY: number;
@@ -94,7 +85,6 @@ export declare class Panel extends ChildProperty<Panel> {
94
85
  *
95
86
  * @default null
96
87
  * @aspType int
97
- * @blazorType int?
98
88
  */
99
89
  maxSizeX: number;
100
90
  /**
@@ -102,7 +92,6 @@ export declare class Panel extends ChildProperty<Panel> {
102
92
  *
103
93
  * @default 1000
104
94
  * @aspType double
105
- * @blazorType double
106
95
  */
107
96
  zIndex: number;
108
97
  }
@@ -220,7 +209,6 @@ export declare class DashboardLayout extends Component<HTMLElement> implements I
220
209
  protected isMouseUpBound: boolean;
221
210
  protected isMouseMoveBound: boolean;
222
211
  protected contentTemplateChild: HTMLElement[];
223
- private isBlazor;
224
212
  private isInlineRendering;
225
213
  private removeAllCalled;
226
214
  private isPanelRemoved;
@@ -276,7 +264,6 @@ export declare class DashboardLayout extends Component<HTMLElement> implements I
276
264
  * Defines the number of columns to be created in the DashboardLayout.
277
265
  *
278
266
  * @default 1
279
- * @blazorType int
280
267
  */
281
268
  columns: number;
282
269
  /**
@@ -323,63 +310,54 @@ export declare class DashboardLayout extends Component<HTMLElement> implements I
323
310
  * Triggers whenever the panels positions are changed.
324
311
  *
325
312
  * @event 'object'
326
- * @blazorProperty 'Changed'
327
313
  */
328
314
  change: EmitType<ChangeEventArgs>;
329
315
  /**
330
316
  * Triggers when a panel is about to drag.
331
317
  *
332
318
  * @event 'object'
333
- * @blazorProperty 'OnDragStart'
334
319
  */
335
320
  dragStart: EmitType<DragStartArgs>;
336
321
  /**
337
322
  * Triggers while a panel is dragged continuously.
338
323
  *
339
324
  * @event 'object'
340
- * @blazorProperty 'Dragging'
341
325
  */
342
326
  drag: EmitType<DraggedEventArgs>;
343
327
  /**
344
328
  * Triggers when a dragged panel is dropped.
345
329
  *
346
330
  * @event 'object'
347
- * @blazorProperty 'OnDragStop'
348
331
  */
349
332
  dragStop: EmitType<DragStopArgs>;
350
333
  /**
351
334
  * Triggers when a panel is about to resize.
352
335
  *
353
336
  * @event 'object'
354
- * @blazorProperty 'OnResizeStart'
355
337
  */
356
338
  resizeStart: EmitType<ResizeArgs>;
357
339
  /**
358
340
  * Triggers when a panel is being resized continuously.
359
341
  *
360
342
  * @event 'object'
361
- * @blazorProperty 'Resizing'
362
343
  */
363
344
  resize: EmitType<ResizeArgs>;
364
345
  /**
365
346
  * Triggers when a panel resize ends.
366
347
  *
367
348
  * @event 'object'
368
- * @blazorProperty 'OnResizeStop'
369
349
  */
370
350
  resizeStop: EmitType<ResizeArgs>;
371
351
  /**
372
352
  * Triggers when Dashboard Layout is created.
373
353
  *
374
354
  * @event 'object'
375
- * @blazorProperty 'Created'
376
355
  */
377
356
  created: EmitType<Object>;
378
357
  /**
379
358
  * Triggers when Dashboard Layout is destroyed.
380
359
  *
381
360
  * @event 'object'
382
- * @blazorProperty 'Destroyed'
383
361
  */
384
362
  destroyed: EmitType<Object>;
385
363
  /**
@@ -397,7 +375,6 @@ export declare class DashboardLayout extends Component<HTMLElement> implements I
397
375
  * @private
398
376
  */
399
377
  protected render(): void;
400
- private updateServerPanelData;
401
378
  private initGridLines;
402
379
  private initialize;
403
380
  protected checkMediaQuery(): boolean;