Skip to content

Commit d13d230

Browse files
committed
Create Neo.dashboard.Panel #8157
1 parent be27594 commit d13d230

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

src/dashboard/Panel.mjs

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import Panel from '../container/Panel.mjs';
2+
3+
/**
4+
* @class Neo.dashboard.Panel
5+
* @extends Neo.container.Panel
6+
*/
7+
class DashboardPanel extends Panel {
8+
static config = {
9+
/**
10+
* @member {String} className='Neo.dashboard.Panel'
11+
* @protected
12+
*/
13+
className: 'Neo.dashboard.Panel',
14+
/**
15+
* @member {String} ntype='dashboard-panel'
16+
* @protected
17+
*/
18+
ntype: 'dashboard-panel',
19+
/**
20+
* @member {String[]} cls=['neo-dashboard-panel','neo-panel','neo-container']
21+
*/
22+
cls: ['neo-dashboard-panel', 'neo-panel', 'neo-container'],
23+
/**
24+
* @member {Object|null} popupConfig=null
25+
*/
26+
popupConfig: null,
27+
/**
28+
* @member {Function|String|null} popupUrl=null
29+
*/
30+
popupUrl: null
31+
}
32+
}
33+
34+
export default Neo.setupClass(DashboardPanel);

0 commit comments

Comments
 (0)