@ibiz-template/web-theme 3.3.0 → 3.5.0

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.
@@ -8,6 +8,8 @@ import AppIndexViewLayout_TOP from './app-index-view-layout-top';
8
8
  import AppIndexViewLayout from './app-index-view-layout';
9
9
  import AppLoginView from './app-login-view';
10
10
  import AppDataUploadView from './app-data-upload-view';
11
+ import AppStartViewLayout from './app-start-view-layout';
12
+ import AppWelComeViewLayout from './app-welcome-view-layout';
11
13
  // 实体视图
12
14
  import DEChartView from './view-layout-model-repository/view-layout-model-repository-de-chart-view-layout';
13
15
  import DECalendarExpView from './view-layout-model-repository/view-layout-model-repository-de-calendar-exp-view-layout';
@@ -61,6 +63,7 @@ import TreeExpBar from './control-layout/control-layout-model-repository-tree-ex
61
63
  import ChartExpBar from './control-layout/control-layout-model-repository-chart-exp-bar-layout';
62
64
  import SearchForm from './control-layout/control-layout-model-repository-search-form-layout';
63
65
  import Tree from './control-layout/control-layout-model-repository-tree-layout';
66
+ import DataView from './control-layout/control-layout-model-repository-data-view-layout';
64
67
 
65
68
  /**
66
69
  * 安装视图默认布局
@@ -95,6 +98,10 @@ export function install(callBack: (key: string, model: any) => void): void {
95
98
  callBack('APPLOGINVIEW_DEFAULT', AppLoginView);
96
99
  // 应用数据导入视图
97
100
  callBack('APPDATAUPLOADVIEW_DEFAULT', AppDataUploadView);
101
+ // 应用启动视图
102
+ callBack('APPSTARTVIEW_DEFAULT', AppStartViewLayout);
103
+ // 应用欢迎视图
104
+ callBack('APPWELCOMEVIEW_DEFAULT', AppWelComeViewLayout);
98
105
  /**
99
106
  * 实体视图
100
107
  */
@@ -216,4 +223,6 @@ export function install(callBack: (key: string, model: any) => void): void {
216
223
  callBack('SEARCHFORM_DEFAULT', SearchForm);
217
224
  // 树
218
225
  callBack('TREEVIEW_DEFAULT', Tree);
226
+ // 数据视图
227
+ callBack('DATAVIEW_DEFAULT', DataView);
219
228
  }