neo.mjs 8.0.0-alpha.2 → 8.0.0-beta.2
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/.github/CODING_GUIDELINES.md +5 -5
- package/.github/CONCEPT.md +10 -10
- package/apps/ServiceWorker.mjs +2 -2
- package/apps/colors/view/Viewport.mjs +9 -9
- package/apps/colors/view/ViewportController.mjs +13 -13
- package/apps/colors/view/{ViewportModel.mjs → ViewportStateProvider.mjs} +8 -8
- package/apps/covid/view/MainContainer.mjs +22 -22
- package/apps/covid/view/MainContainerController.mjs +8 -10
- package/apps/covid/view/{MainContainerModel.mjs → MainContainerStateProvider.mjs} +7 -7
- package/apps/covid/view/TableContainer.mjs +2 -2
- package/apps/covid/view/TableContainerController.mjs +1 -1
- package/apps/form/view/FormContainerController.mjs +2 -2
- package/apps/form/view/SideNavList.mjs +3 -3
- package/apps/form/view/Viewport.mjs +7 -7
- package/apps/form/view/ViewportController.mjs +4 -4
- package/apps/form/view/{ViewportModel.mjs → ViewportStateProvider.mjs} +8 -8
- package/apps/portal/index.html +1 -1
- package/apps/portal/resources/data/examples_devmode.json +3 -3
- package/apps/portal/resources/data/examples_dist_dev.json +3 -3
- package/apps/portal/resources/data/examples_dist_prod.json +3 -3
- package/apps/portal/view/Viewport.mjs +12 -12
- package/apps/portal/view/ViewportController.mjs +2 -2
- package/apps/portal/view/ViewportStateProvider.mjs +27 -0
- package/apps/portal/view/examples/TabContainer.mjs +11 -11
- package/apps/portal/view/home/FooterContainer.mjs +1 -1
- package/apps/portal/view/home/parts/MainNeo.mjs +6 -2
- package/apps/portal/view/learn/ContentComponent.mjs +2 -2
- package/apps/portal/view/learn/ContentTreeList.mjs +1 -1
- package/apps/portal/view/learn/MainContainer.mjs +9 -9
- package/apps/portal/view/learn/MainContainerController.mjs +12 -12
- package/apps/portal/view/learn/{MainContainerModel.mjs → MainContainerStateProvider.mjs} +7 -7
- package/apps/portal/view/learn/PageSectionsList.mjs +1 -1
- package/apps/realworld/view/article/CreateComponent.mjs +1 -1
- package/apps/realworld2/view/HomeContainer.mjs +7 -7
- package/apps/sharedcovid/view/GalleryContainer.mjs +2 -2
- package/apps/sharedcovid/view/HelixContainer.mjs +2 -2
- package/apps/sharedcovid/view/MainContainer.mjs +25 -25
- package/apps/sharedcovid/view/MainContainerController.mjs +10 -11
- package/apps/sharedcovid/view/{MainContainerModel.mjs → MainContainerStateProvider.mjs} +8 -8
- package/apps/sharedcovid/view/TableContainer.mjs +2 -2
- package/apps/sharedcovid/view/TableContainerController.mjs +1 -1
- package/apps/sharedcovid/view/mapboxGl/Container.mjs +2 -2
- package/buildScripts/createApp.mjs +2 -2
- package/buildScripts/createClass.mjs +15 -17
- package/buildScripts/createComponent.mjs +4 -4
- package/docs/app/view/ContentTabContainer.mjs +1 -1
- package/docs/app/view/MainContainer.mjs +3 -3
- package/docs/app/view/MainContainerController.mjs +15 -15
- package/examples/ServiceWorker.mjs +2 -2
- package/examples/component/mwc/buttons/MainContainer.mjs +2 -2
- package/examples/component/mwc/textFields/MainContainer.mjs +2 -2
- package/examples/fields/MainContainer.mjs +197 -228
- package/examples/preloadingAssets/view/MainContainer.mjs +2 -2
- package/examples/{model → stateProvider}/advanced/MainContainer.mjs +12 -12
- package/examples/{model → stateProvider}/advanced/MainContainerController.mjs +10 -10
- package/examples/stateProvider/advanced/app.mjs +6 -0
- package/examples/{model/dialog → stateProvider/advanced}/index.html +1 -1
- package/examples/{model/inline → stateProvider/advanced}/neo-config.json +1 -1
- package/examples/{model → stateProvider}/dialog/EditUserDialog.mjs +3 -3
- package/examples/{model → stateProvider}/dialog/EditUserDialogController.mjs +5 -5
- package/examples/{model → stateProvider}/dialog/MainContainer.mjs +7 -7
- package/examples/{model → stateProvider}/dialog/MainContainerController.mjs +5 -5
- package/examples/{model → stateProvider}/dialog/app.mjs +1 -1
- package/examples/{model/multiWindow2 → stateProvider/dialog}/index.html +1 -1
- package/examples/{model → stateProvider}/dialog/neo-config.json +1 -1
- package/examples/{model → stateProvider}/extendedClass/MainContainer.mjs +13 -13
- package/examples/{model/inline → stateProvider/extendedClass}/MainContainerController.mjs +7 -7
- package/examples/stateProvider/extendedClass/MainContainerStateProvider.mjs +24 -0
- package/examples/stateProvider/extendedClass/app.mjs +6 -0
- package/examples/stateProvider/extendedClass/index.html +11 -0
- package/examples/stateProvider/extendedClass/neo-config.json +7 -0
- package/examples/{model → stateProvider}/inline/MainContainer.mjs +10 -10
- package/examples/{model/extendedClass → stateProvider/inline}/MainContainerController.mjs +7 -7
- package/examples/{model/extendedClass → stateProvider/inline}/app.mjs +1 -1
- package/examples/{model/extendedClass → stateProvider/inline}/index.html +1 -1
- package/examples/{model/extendedClass → stateProvider/inline}/neo-config.json +1 -1
- package/examples/{model/inlineNoModel → stateProvider/inlineNoStateProvider}/MainContainer.mjs +4 -4
- package/examples/{model/inlineNoModel → stateProvider/inlineNoStateProvider}/MainContainerController.mjs +3 -3
- package/examples/stateProvider/inlineNoStateProvider/README.md +8 -0
- package/examples/stateProvider/inlineNoStateProvider/app.mjs +6 -0
- package/examples/{model/inline → stateProvider/inlineNoStateProvider}/index.html +1 -1
- package/examples/stateProvider/inlineNoStateProvider/neo-config.json +7 -0
- package/examples/{model → stateProvider}/multiWindow/EditUserDialog.mjs +3 -3
- package/examples/{model → stateProvider}/multiWindow/EditUserDialogController.mjs +5 -5
- package/examples/{model → stateProvider}/multiWindow/MainContainer.mjs +3 -3
- package/examples/{model → stateProvider}/multiWindow/MainContainerController.mjs +6 -6
- package/examples/{model → stateProvider}/multiWindow/Viewport.mjs +3 -3
- package/examples/{model → stateProvider}/multiWindow/ViewportController.mjs +14 -14
- package/examples/{model/multiWindow2 → stateProvider/multiWindow}/app.mjs +1 -1
- package/examples/{model/advanced → stateProvider/multiWindow}/index.html +1 -1
- package/examples/{model → stateProvider}/multiWindow/neo-config.json +1 -1
- package/examples/{model → stateProvider}/multiWindow2/Viewport.mjs +3 -3
- package/examples/{model/multiWindow → stateProvider/multiWindow2}/app.mjs +1 -1
- package/examples/{model/multiWindow → stateProvider/multiWindow2}/index.html +1 -1
- package/examples/{model → stateProvider}/multiWindow2/neo-config.json +1 -1
- package/examples/{model → stateProvider}/nestedData/MainContainer.mjs +9 -9
- package/examples/{model → stateProvider}/nestedData/MainContainerController.mjs +7 -7
- package/examples/stateProvider/nestedData/app.mjs +6 -0
- package/examples/stateProvider/nestedData/index.html +11 -0
- package/examples/stateProvider/nestedData/neo-config.json +7 -0
- package/examples/{model → stateProvider}/table/MainContainer.mjs +8 -8
- package/examples/stateProvider/table/MainContainerStateProvider.mjs +24 -0
- package/examples/{model → stateProvider}/table/MainModel.mjs +2 -2
- package/examples/{model → stateProvider}/table/MainStore.mjs +2 -2
- package/examples/{model/advanced → stateProvider/table}/app.mjs +1 -1
- package/examples/{model/advanced → stateProvider/table}/neo-config.json +1 -1
- package/examples/{model → stateProvider}/twoWay/MainContainer.mjs +9 -9
- package/examples/{model/inline → stateProvider/twoWay}/app.mjs +1 -1
- package/examples/stateProvider/twoWay/index.html +11 -0
- package/examples/{model → stateProvider}/twoWay/neo-config.json +1 -1
- package/examples/tab/container/MainContainer.mjs +7 -9
- package/examples/table/nestedRecordFields/EditUserDialog.mjs +3 -3
- package/examples/table/nestedRecordFields/MainContainer.mjs +8 -8
- package/examples/table/nestedRecordFields/{MainContainerModel.mjs → MainContainerStateProvider.mjs} +10 -10
- package/examples/tabs/MainContainer.mjs +3 -3
- package/examples/tabs/MainContainer2.mjs +4 -4
- package/examples/toolbar/paging/view/MainContainer.mjs +7 -7
- package/examples/toolbar/paging/view/{MainContainerModel.mjs → MainContainerStateProvider.mjs} +8 -8
- package/examples/treeAccordion/MainContainer.mjs +2 -2
- package/examples/videoMove/MainContainer.mjs +14 -7
- package/examples/viewport/MainContainer.mjs +3 -3
- package/package.json +6 -6
- package/resources/data/deck/learnneo/pages/benefits/FormsEngine.md +13 -13
- package/resources/data/deck/learnneo/pages/guides/{ViewModels.md → StateProviders.md} +52 -58
- package/resources/data/deck/learnneo/tree.json +46 -46
- package/resources/data/deck/training/pages/2022-12-27T21-55-23-144Z.md +2 -2
- package/resources/data/deck/training/pages/2022-12-28T17-11-34-653Z.md +6 -6
- package/resources/data/deck/training/pages/2022-12-29T18-36-08-226Z.md +2 -2
- package/resources/data/deck/training/pages/2022-12-29T18-36-56-893Z.md +2 -2
- package/resources/data/deck/training/pages/2022-12-29T20-37-08-919Z.md +2 -2
- package/resources/data/deck/training/pages/2022-12-29T20-37-20-344Z.md +2 -2
- package/resources/data/deck/training/pages/2023-01-01T21-11-58-025Z.md +3 -3
- package/resources/data/deck/training/pages/2023-01-16T20-24-09-690Z.md +4 -4
- package/resources/data/deck/training/pages/2023-02-05T17-44-53-815Z.md +3 -3
- package/resources/data/deck/training/pages/2023-02-05T17-45-40-114Z.md +1 -1
- package/src/DefaultConfig.mjs +2 -2
- package/src/button/Base.mjs +7 -7
- package/src/calendar/view/EditEventContainer.mjs +3 -3
- package/src/calendar/view/MainContainer.mjs +27 -27
- package/src/calendar/view/{MainContainerModel.mjs → MainContainerStateProvider.mjs} +7 -7
- package/src/calendar/view/SettingsContainer.mjs +13 -28
- package/src/calendar/view/YearComponent.mjs +5 -5
- package/src/calendar/view/calendars/ColorsList.mjs +5 -0
- package/src/calendar/view/calendars/EditContainer.mjs +1 -1
- package/src/calendar/view/calendars/List.mjs +1 -1
- package/src/calendar/view/month/Component.mjs +6 -6
- package/src/calendar/view/settings/GeneralContainer.mjs +2 -2
- package/src/calendar/view/week/Component.mjs +10 -10
- package/src/calendar/view/week/EventDragZone.mjs +1 -1
- package/src/code/LivePreview.mjs +10 -10
- package/src/component/Base.mjs +123 -105
- package/src/container/Base.mjs +4 -4
- package/src/controller/Component.mjs +29 -12
- package/src/core/Base.mjs +0 -1
- package/src/core/Compare.mjs +128 -83
- package/src/date/SelectorContainer.mjs +12 -12
- package/src/date/{SelectorContainerModel.mjs → SelectorContainerStateProvider.mjs} +7 -7
- package/src/form/field/Text.mjs +1 -1
- package/src/form/field/Time.mjs +5 -3
- package/src/form/field/trigger/Time.mjs +2 -1
- package/src/layout/Base.mjs +6 -6
- package/src/list/Base.mjs +7 -1
- package/src/list/Color.mjs +3 -3
- package/src/main/DomEvents.mjs +1 -1
- package/src/main/DomUtils.mjs +39 -36
- package/src/{model/Component.mjs → state/Provider.mjs} +67 -69
- package/src/tab/Container.mjs +3 -5
- package/src/toolbar/Base.mjs +26 -8
- package/src/tree/Accordion.mjs +15 -13
- package/src/util/VNode.mjs +6 -8
- package/src/worker/App.mjs +2 -2
- package/apps/portal/view/ViewportModel.mjs +0 -27
- package/examples/model/extendedClass/MainContainerModel.mjs +0 -24
- package/examples/model/inlineNoModel/README.md +0 -8
- package/examples/model/inlineNoModel/app.mjs +0 -6
- package/examples/model/inlineNoModel/index.html +0 -11
- package/examples/model/inlineNoModel/neo-config.json +0 -7
- package/examples/model/nestedData/app.mjs +0 -6
- package/examples/model/nestedData/index.html +0 -11
- package/examples/model/nestedData/neo-config.json +0 -7
- package/examples/model/table/MainContainerModel.mjs +0 -24
- package/examples/model/table/app.mjs +0 -6
- package/examples/model/table/neo-config.json +0 -7
- package/examples/model/twoWay/app.mjs +0 -6
- package/examples/model/twoWay/index.html +0 -11
- /package/examples/{model → stateProvider}/table/index.html +0 -0
@@ -99,7 +99,7 @@ if (programOpts.info) {
|
|
99
99
|
type : 'input',
|
100
100
|
name : 'className',
|
101
101
|
message: 'Please choose the namespace for your class:',
|
102
|
-
default: '
|
102
|
+
default: 'MyApp.view.MyContainer'
|
103
103
|
});
|
104
104
|
|
105
105
|
Object.assign(answers, answer);
|
@@ -120,7 +120,7 @@ if (programOpts.info) {
|
|
120
120
|
'core.Base',
|
121
121
|
'data.Model',
|
122
122
|
'data.Store',
|
123
|
-
'
|
123
|
+
'state.Provider',
|
124
124
|
'tab.Container',
|
125
125
|
'table.Container'
|
126
126
|
]
|
@@ -520,15 +520,15 @@ if (programOpts.info) {
|
|
520
520
|
break;
|
521
521
|
}
|
522
522
|
|
523
|
-
case '
|
524
|
-
baseType = 'Neo.
|
525
|
-
configName = '
|
523
|
+
case 'state.Provider': {
|
524
|
+
baseType = 'Neo.state.Provider';
|
525
|
+
configName = 'stateProvider';
|
526
526
|
importName = file;
|
527
527
|
importPath = `./${importName}.mjs`;
|
528
|
-
index = file.indexOf('
|
528
|
+
index = file.indexOf('StateProvider');
|
529
529
|
|
530
530
|
if (index > 0) {
|
531
|
-
viewFile = path.join(classFolder, file.
|
531
|
+
viewFile = path.join(classFolder, file.substring(0, index) + '.mjs');
|
532
532
|
|
533
533
|
if (fs.existsSync(viewFile)) {
|
534
534
|
adjustView({baseType, configName, importName, importPath, viewFile});
|
@@ -620,7 +620,7 @@ if (programOpts.info) {
|
|
620
620
|
" }]"
|
621
621
|
);
|
622
622
|
|
623
|
-
baseClass === '
|
623
|
+
baseClass === 'state.Provider' && addComma(classContent).push(
|
624
624
|
" /**",
|
625
625
|
" * @member {Object} data",
|
626
626
|
" */",
|
@@ -649,16 +649,14 @@ if (programOpts.info) {
|
|
649
649
|
" * @member {Object[]} items",
|
650
650
|
" */",
|
651
651
|
" items: [{",
|
652
|
-
" ntype: 'component',",
|
653
|
-
"",
|
654
|
-
" tabButtonConfig: {",
|
652
|
+
" ntype : 'component',",
|
653
|
+
" header: {",
|
655
654
|
" iconCls: 'fa fa-home',",
|
656
655
|
" text : 'Tab 1'",
|
657
656
|
" }",
|
658
657
|
" }, {",
|
659
|
-
" ntype: 'component',",
|
660
|
-
"",
|
661
|
-
" tabButtonConfig: {",
|
658
|
+
" ntype : 'component',",
|
659
|
+
" header: {",
|
662
660
|
" iconCls: 'fa fa-play-circle',",
|
663
661
|
" text : 'Tab 2'",
|
664
662
|
" }",
|
@@ -673,7 +671,7 @@ if (programOpts.info) {
|
|
673
671
|
" singleton: true"
|
674
672
|
);
|
675
673
|
|
676
|
-
baseClass === '
|
674
|
+
baseClass === 'state.Provider' && addComma(classContent).push(
|
677
675
|
" /**",
|
678
676
|
" * @member {Object} stores",
|
679
677
|
" */",
|
@@ -718,8 +716,8 @@ if (programOpts.info) {
|
|
718
716
|
return 'controller.Component';
|
719
717
|
}
|
720
718
|
|
721
|
-
if (className.endsWith('
|
722
|
-
return '
|
719
|
+
if (className.endsWith('stateprovider')) {
|
720
|
+
return 'state.Provider';
|
723
721
|
}
|
724
722
|
|
725
723
|
if (className.includes('table')) {
|
@@ -74,7 +74,7 @@ if (programOpts.info) {
|
|
74
74
|
type : 'input',
|
75
75
|
name : 'className',
|
76
76
|
message: 'Please choose the namespace for your class:',
|
77
|
-
default: '
|
77
|
+
default: 'MyApp.view.MyContainer'
|
78
78
|
});
|
79
79
|
|
80
80
|
Object.assign(answers, answer);
|
@@ -95,7 +95,7 @@ if (programOpts.info) {
|
|
95
95
|
'core.Base',
|
96
96
|
'data.Model',
|
97
97
|
'data.Store',
|
98
|
-
'
|
98
|
+
'state.Provider',
|
99
99
|
'tab.Container',
|
100
100
|
'table.Container'
|
101
101
|
]
|
@@ -221,8 +221,8 @@ function guessBaseClass(className) {
|
|
221
221
|
return 'controller.Component';
|
222
222
|
}
|
223
223
|
|
224
|
-
if (className.endsWith('
|
225
|
-
return '
|
224
|
+
if (className.endsWith('stateprovider')) {
|
225
|
+
return 'state.Provider';
|
226
226
|
}
|
227
227
|
|
228
228
|
if (className.includes('table')) {
|
@@ -71,7 +71,7 @@ class MainContainer extends Viewport {
|
|
71
71
|
listeners: {leafItemClick: 'onApiListLeafClick'},
|
72
72
|
reference: 'api-treelist',
|
73
73
|
|
74
|
-
|
74
|
+
header: {
|
75
75
|
iconCls: 'fa fa-code',
|
76
76
|
text : 'API'
|
77
77
|
}
|
@@ -80,7 +80,7 @@ class MainContainer extends Viewport {
|
|
80
80
|
listeners: {leafItemClick: 'onExamplesListLeafClick'},
|
81
81
|
reference: 'examples-treelist',
|
82
82
|
|
83
|
-
|
83
|
+
header: {
|
84
84
|
iconCls: 'fa fa-desktop',
|
85
85
|
text : 'Examples'
|
86
86
|
}
|
@@ -118,7 +118,7 @@ class MainContainer extends Viewport {
|
|
118
118
|
}
|
119
119
|
|
120
120
|
// Disable the examples Tab for dist versions until the webpack builds can handle this (see: #140)
|
121
|
-
me.items[1].items[0].items[1].
|
121
|
+
me.items[1].items[0].items[1].header.disabled = Neo.config.environment !== 'development'
|
122
122
|
}
|
123
123
|
|
124
124
|
/**
|
@@ -38,8 +38,8 @@ class MainContainerController extends Component {
|
|
38
38
|
opts = {appName, windowId: me.component.windowId};
|
39
39
|
|
40
40
|
if (appName === 'Portal') {
|
41
|
-
opts.highlightJsPath = '../../docs/resources/highlight/highlight.pack.js';
|
42
|
-
opts.themePath = '../../docs/resources/highlightjs-custom-github-theme.css'
|
41
|
+
opts.highlightJsPath = '../../docs/resources/lib/highlight/highlight.pack.js';
|
42
|
+
opts.themePath = '../../docs/resources/lib/highlightjs-custom-github-theme.css'
|
43
43
|
}
|
44
44
|
|
45
45
|
Neo.main.addon.HighlightJS.loadFiles(opts)
|
@@ -57,7 +57,7 @@ class MainContainerController extends Component {
|
|
57
57
|
id : record.className,
|
58
58
|
structureData: record,
|
59
59
|
|
60
|
-
|
60
|
+
header: {
|
61
61
|
iconCls: record.singleton ? 'fa fa-arrow-alt-circle-right' : 'fa fa-copyright',
|
62
62
|
text : record.name
|
63
63
|
}
|
@@ -74,7 +74,7 @@ class MainContainerController extends Component {
|
|
74
74
|
pathArray = [],
|
75
75
|
store = me.getReference('examples-treelist').store,
|
76
76
|
tmpRecord = record,
|
77
|
-
|
77
|
+
header;
|
78
78
|
|
79
79
|
while (tmpRecord.parentId !== null) {
|
80
80
|
tmpRecord = store.get(tmpRecord.parentId);
|
@@ -83,7 +83,7 @@ class MainContainerController extends Component {
|
|
83
83
|
|
84
84
|
name = 'examples_' + name;
|
85
85
|
|
86
|
-
|
86
|
+
header = {
|
87
87
|
iconCls: 'fa fa-desktop',
|
88
88
|
text : record.name
|
89
89
|
};
|
@@ -94,8 +94,8 @@ class MainContainerController extends Component {
|
|
94
94
|
record.path).then((module) => {
|
95
95
|
contentTabContainer.add({
|
96
96
|
module: module.default,
|
97
|
-
|
98
|
-
|
97
|
+
header,
|
98
|
+
id : name
|
99
99
|
})
|
100
100
|
}
|
101
101
|
)
|
@@ -115,10 +115,10 @@ class MainContainerController extends Component {
|
|
115
115
|
|
116
116
|
contentTabContainer.add({
|
117
117
|
ntype: 'container',
|
118
|
+
header,
|
118
119
|
id : name,
|
119
120
|
items,
|
120
|
-
style: {padding: '10px'}
|
121
|
-
tabButtonConfig
|
121
|
+
style: {padding: '10px'}
|
122
122
|
})
|
123
123
|
})
|
124
124
|
}
|
@@ -153,16 +153,16 @@ class MainContainerController extends Component {
|
|
153
153
|
|
154
154
|
if (button.text === 'Source View Theme Light') {
|
155
155
|
buttonText = 'Source View Theme Dark';
|
156
|
-
href = './resources/highlightjs-custom-github-theme.css'
|
156
|
+
href = './resources/lib/highlightjs-custom-github-theme.css'
|
157
157
|
} else {
|
158
158
|
buttonText = 'Source View Theme Light';
|
159
|
-
href = './resources/highlightjs-custom-dark-theme.css'
|
159
|
+
href = './resources/lib/highlightjs-custom-dark-theme.css'
|
160
160
|
}
|
161
161
|
|
162
162
|
Neo.main.addon.Stylesheet.swapStyleSheet({
|
163
|
-
appName: me.component.appName,
|
164
163
|
href,
|
165
|
-
id
|
164
|
+
id : 'hljs-theme',
|
165
|
+
windowId: me.windowId,
|
166
166
|
}).then(data => {
|
167
167
|
button.text = buttonText
|
168
168
|
})
|
@@ -212,7 +212,7 @@ class MainContainerController extends Component {
|
|
212
212
|
fileType: record.type,
|
213
213
|
id : record.name,
|
214
214
|
|
215
|
-
|
215
|
+
header: {
|
216
216
|
iconCls: 'fa fa-hands-helping',
|
217
217
|
text : record.name
|
218
218
|
}
|
@@ -240,7 +240,7 @@ class MainContainerController extends Component {
|
|
240
240
|
line : lineNumber,
|
241
241
|
structureData: record,
|
242
242
|
|
243
|
-
|
243
|
+
header: {
|
244
244
|
iconCls: 'fa fa-code',
|
245
245
|
text : record.name
|
246
246
|
}
|
@@ -45,7 +45,7 @@ class MainContainer extends Viewport {
|
|
45
45
|
label: 'dense'
|
46
46
|
}],
|
47
47
|
|
48
|
-
|
48
|
+
header: {
|
49
49
|
iconCls: 'fa fa-home',
|
50
50
|
text : 'Tab 1'
|
51
51
|
}
|
@@ -78,7 +78,7 @@ class MainContainer extends Viewport {
|
|
78
78
|
label: 'dense'
|
79
79
|
}],
|
80
80
|
|
81
|
-
|
81
|
+
header: {
|
82
82
|
iconCls: 'fa fa-play-circle',
|
83
83
|
text : 'Tab 2'
|
84
84
|
}
|
@@ -38,7 +38,7 @@ class MainContainer extends Viewport {
|
|
38
38
|
helper: 'Helper Text'
|
39
39
|
}],
|
40
40
|
|
41
|
-
|
41
|
+
header: {
|
42
42
|
iconCls: 'fa fa-home',
|
43
43
|
text : 'Filled'
|
44
44
|
}
|
@@ -64,7 +64,7 @@ class MainContainer extends Viewport {
|
|
64
64
|
helper: 'Helper Text'
|
65
65
|
}],
|
66
66
|
|
67
|
-
|
67
|
+
header: {
|
68
68
|
iconCls: 'fa fa-play-circle',
|
69
69
|
text : 'Outlined'
|
70
70
|
}
|