@ibiz-template/web-theme 3.3.0 → 3.4.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.
- package/dist/index.system.min.js +1 -1
- package/dist/index.system.min.js.map +1 -1
- package/es/publish/control-layout/control-layout-model-repository-data-view-layout.d.ts +10 -0
- package/es/publish/control-layout/control-layout-model-repository-data-view-layout.mjs +10 -5
- package/es/publish/index.mjs +2 -0
- package/lib/publish/control-layout/control-layout-model-repository-data-view-layout.cjs +10 -5
- package/lib/publish/index.cjs +2 -0
- package/package.json +1 -1
- package/src/publish/control-layout/control-layout-model-repository-data-view-layout.ts +8 -3
- package/src/publish/index.ts +3 -0
|
@@ -23,6 +23,10 @@ declare const _default: {
|
|
|
23
23
|
grow: number;
|
|
24
24
|
shrink: number;
|
|
25
25
|
layout: string;
|
|
26
|
+
spacingBottom?: undefined;
|
|
27
|
+
spacingLeft?: undefined;
|
|
28
|
+
spacingRight?: undefined;
|
|
29
|
+
spacingTop?: undefined;
|
|
26
30
|
};
|
|
27
31
|
showCaption: boolean;
|
|
28
32
|
id: string;
|
|
@@ -33,6 +37,10 @@ declare const _default: {
|
|
|
33
37
|
layoutPos: {
|
|
34
38
|
shrink: number;
|
|
35
39
|
layout: string;
|
|
40
|
+
spacingBottom: string;
|
|
41
|
+
spacingLeft: string;
|
|
42
|
+
spacingRight: string;
|
|
43
|
+
spacingTop: string;
|
|
36
44
|
grow?: undefined;
|
|
37
45
|
};
|
|
38
46
|
showCaption: boolean;
|
|
@@ -51,6 +59,7 @@ declare const _default: {
|
|
|
51
59
|
layoutPos: {
|
|
52
60
|
shrink: number;
|
|
53
61
|
layout: string;
|
|
62
|
+
spacingBottom: string;
|
|
54
63
|
grow?: undefined;
|
|
55
64
|
};
|
|
56
65
|
id: string;
|
|
@@ -123,6 +132,7 @@ declare const _default: {
|
|
|
123
132
|
grow: number;
|
|
124
133
|
shrink: number;
|
|
125
134
|
layout: string;
|
|
135
|
+
spacingBottom?: undefined;
|
|
126
136
|
};
|
|
127
137
|
id: string;
|
|
128
138
|
})[];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var
|
|
2
|
+
var DataView = {
|
|
3
3
|
"viewProxyMode": true,
|
|
4
4
|
"layoutMode": "FLEX",
|
|
5
5
|
"layout": {
|
|
@@ -36,7 +36,11 @@ var controlLayoutModelRepositoryDataViewLayout = {
|
|
|
36
36
|
"itemType": "CTRLPOS",
|
|
37
37
|
"layoutPos": {
|
|
38
38
|
"shrink": 0,
|
|
39
|
-
"layout": "FLEX"
|
|
39
|
+
"layout": "FLEX",
|
|
40
|
+
"spacingBottom": "OUTERSMALL",
|
|
41
|
+
"spacingLeft": "OUTERSMALL",
|
|
42
|
+
"spacingRight": "OUTERSMALL",
|
|
43
|
+
"spacingTop": "OUTERSMALL"
|
|
40
44
|
},
|
|
41
45
|
"showCaption": true,
|
|
42
46
|
"id": "searchbar"
|
|
@@ -53,7 +57,8 @@ var controlLayoutModelRepositoryDataViewLayout = {
|
|
|
53
57
|
"itemType": "CONTAINER",
|
|
54
58
|
"layoutPos": {
|
|
55
59
|
"shrink": 0,
|
|
56
|
-
"layout": "FLEX"
|
|
60
|
+
"layout": "FLEX",
|
|
61
|
+
"spacingBottom": "OUTERSMALL"
|
|
57
62
|
},
|
|
58
63
|
"id": "control_header"
|
|
59
64
|
},
|
|
@@ -106,7 +111,7 @@ var controlLayoutModelRepositoryDataViewLayout = {
|
|
|
106
111
|
"itemStyle": "DEFAULT",
|
|
107
112
|
"itemType": "CONTAINER",
|
|
108
113
|
"layoutPos": {
|
|
109
|
-
"shrink":
|
|
114
|
+
"shrink": 0,
|
|
110
115
|
"layout": "FLEX"
|
|
111
116
|
},
|
|
112
117
|
"id": "container"
|
|
@@ -153,4 +158,4 @@ var controlLayoutModelRepositoryDataViewLayout = {
|
|
|
153
158
|
"id": "cardlayout"
|
|
154
159
|
};
|
|
155
160
|
|
|
156
|
-
export {
|
|
161
|
+
export { DataView as default };
|
package/es/publish/index.mjs
CHANGED
|
@@ -56,6 +56,7 @@ import TreeExpBar from './control-layout/control-layout-model-repository-tree-ex
|
|
|
56
56
|
import ChartExpBar from './control-layout/control-layout-model-repository-chart-exp-bar-layout.mjs';
|
|
57
57
|
import SearchForm from './control-layout/control-layout-model-repository-search-form-layout.mjs';
|
|
58
58
|
import Tree from './control-layout/control-layout-model-repository-tree-layout.mjs';
|
|
59
|
+
import DataView from './control-layout/control-layout-model-repository-data-view-layout.mjs';
|
|
59
60
|
|
|
60
61
|
"use strict";
|
|
61
62
|
function install(callBack) {
|
|
@@ -127,6 +128,7 @@ function install(callBack) {
|
|
|
127
128
|
callBack("CHARTEXPBAR_DEFAULT", ChartExpBar);
|
|
128
129
|
callBack("SEARCHFORM_DEFAULT", SearchForm);
|
|
129
130
|
callBack("TREEVIEW_DEFAULT", Tree);
|
|
131
|
+
callBack("DATAVIEW_DEFAULT", DataView);
|
|
130
132
|
}
|
|
131
133
|
|
|
132
134
|
export { install };
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
"use strict";
|
|
6
|
-
var
|
|
6
|
+
var DataView = {
|
|
7
7
|
"viewProxyMode": true,
|
|
8
8
|
"layoutMode": "FLEX",
|
|
9
9
|
"layout": {
|
|
@@ -40,7 +40,11 @@ var controlLayoutModelRepositoryDataViewLayout = {
|
|
|
40
40
|
"itemType": "CTRLPOS",
|
|
41
41
|
"layoutPos": {
|
|
42
42
|
"shrink": 0,
|
|
43
|
-
"layout": "FLEX"
|
|
43
|
+
"layout": "FLEX",
|
|
44
|
+
"spacingBottom": "OUTERSMALL",
|
|
45
|
+
"spacingLeft": "OUTERSMALL",
|
|
46
|
+
"spacingRight": "OUTERSMALL",
|
|
47
|
+
"spacingTop": "OUTERSMALL"
|
|
44
48
|
},
|
|
45
49
|
"showCaption": true,
|
|
46
50
|
"id": "searchbar"
|
|
@@ -57,7 +61,8 @@ var controlLayoutModelRepositoryDataViewLayout = {
|
|
|
57
61
|
"itemType": "CONTAINER",
|
|
58
62
|
"layoutPos": {
|
|
59
63
|
"shrink": 0,
|
|
60
|
-
"layout": "FLEX"
|
|
64
|
+
"layout": "FLEX",
|
|
65
|
+
"spacingBottom": "OUTERSMALL"
|
|
61
66
|
},
|
|
62
67
|
"id": "control_header"
|
|
63
68
|
},
|
|
@@ -110,7 +115,7 @@ var controlLayoutModelRepositoryDataViewLayout = {
|
|
|
110
115
|
"itemStyle": "DEFAULT",
|
|
111
116
|
"itemType": "CONTAINER",
|
|
112
117
|
"layoutPos": {
|
|
113
|
-
"shrink":
|
|
118
|
+
"shrink": 0,
|
|
114
119
|
"layout": "FLEX"
|
|
115
120
|
},
|
|
116
121
|
"id": "container"
|
|
@@ -157,4 +162,4 @@ var controlLayoutModelRepositoryDataViewLayout = {
|
|
|
157
162
|
"id": "cardlayout"
|
|
158
163
|
};
|
|
159
164
|
|
|
160
|
-
exports.default =
|
|
165
|
+
exports.default = DataView;
|
package/lib/publish/index.cjs
CHANGED
|
@@ -58,6 +58,7 @@ var controlLayoutModelRepositoryTreeExpBarLayout = require('./control-layout/con
|
|
|
58
58
|
var controlLayoutModelRepositoryChartExpBarLayout = require('./control-layout/control-layout-model-repository-chart-exp-bar-layout.cjs');
|
|
59
59
|
var controlLayoutModelRepositorySearchFormLayout = require('./control-layout/control-layout-model-repository-search-form-layout.cjs');
|
|
60
60
|
var controlLayoutModelRepositoryTreeLayout = require('./control-layout/control-layout-model-repository-tree-layout.cjs');
|
|
61
|
+
var controlLayoutModelRepositoryDataViewLayout = require('./control-layout/control-layout-model-repository-data-view-layout.cjs');
|
|
61
62
|
|
|
62
63
|
"use strict";
|
|
63
64
|
function install(callBack) {
|
|
@@ -129,6 +130,7 @@ function install(callBack) {
|
|
|
129
130
|
callBack("CHARTEXPBAR_DEFAULT", controlLayoutModelRepositoryChartExpBarLayout.default);
|
|
130
131
|
callBack("SEARCHFORM_DEFAULT", controlLayoutModelRepositorySearchFormLayout.default);
|
|
131
132
|
callBack("TREEVIEW_DEFAULT", controlLayoutModelRepositoryTreeLayout.default);
|
|
133
|
+
callBack("DATAVIEW_DEFAULT", controlLayoutModelRepositoryDataViewLayout.default);
|
|
132
134
|
}
|
|
133
135
|
|
|
134
136
|
exports.install = install;
|
package/package.json
CHANGED
|
@@ -35,7 +35,11 @@ export default {
|
|
|
35
35
|
"itemType": "CTRLPOS",
|
|
36
36
|
"layoutPos": {
|
|
37
37
|
"shrink": 0,
|
|
38
|
-
"layout": "FLEX"
|
|
38
|
+
"layout": "FLEX",
|
|
39
|
+
"spacingBottom": "OUTERSMALL",
|
|
40
|
+
"spacingLeft": "OUTERSMALL",
|
|
41
|
+
"spacingRight": "OUTERSMALL",
|
|
42
|
+
"spacingTop": "OUTERSMALL"
|
|
39
43
|
},
|
|
40
44
|
"showCaption": true,
|
|
41
45
|
"id": "searchbar"
|
|
@@ -52,7 +56,8 @@ export default {
|
|
|
52
56
|
"itemType": "CONTAINER",
|
|
53
57
|
"layoutPos": {
|
|
54
58
|
"shrink": 0,
|
|
55
|
-
"layout": "FLEX"
|
|
59
|
+
"layout": "FLEX",
|
|
60
|
+
"spacingBottom": "OUTERSMALL"
|
|
56
61
|
},
|
|
57
62
|
"id": "control_header"
|
|
58
63
|
},
|
|
@@ -105,7 +110,7 @@ export default {
|
|
|
105
110
|
"itemStyle": "DEFAULT",
|
|
106
111
|
"itemType": "CONTAINER",
|
|
107
112
|
"layoutPos": {
|
|
108
|
-
"shrink":
|
|
113
|
+
"shrink": 0,
|
|
109
114
|
"layout": "FLEX"
|
|
110
115
|
},
|
|
111
116
|
"id": "container"
|
package/src/publish/index.ts
CHANGED
|
@@ -61,6 +61,7 @@ import TreeExpBar from './control-layout/control-layout-model-repository-tree-ex
|
|
|
61
61
|
import ChartExpBar from './control-layout/control-layout-model-repository-chart-exp-bar-layout';
|
|
62
62
|
import SearchForm from './control-layout/control-layout-model-repository-search-form-layout';
|
|
63
63
|
import Tree from './control-layout/control-layout-model-repository-tree-layout';
|
|
64
|
+
import DataView from './control-layout/control-layout-model-repository-data-view-layout';
|
|
64
65
|
|
|
65
66
|
/**
|
|
66
67
|
* 安装视图默认布局
|
|
@@ -216,4 +217,6 @@ export function install(callBack: (key: string, model: any) => void): void {
|
|
|
216
217
|
callBack('SEARCHFORM_DEFAULT', SearchForm);
|
|
217
218
|
// 树
|
|
218
219
|
callBack('TREEVIEW_DEFAULT', Tree);
|
|
220
|
+
// 数据视图
|
|
221
|
+
callBack('DATAVIEW_DEFAULT', DataView);
|
|
219
222
|
}
|