File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed
Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change 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 ) ;
You can’t perform that action at this time.
0 commit comments