@opentinyvue/vue-grid-toolbar 2.26.0 → 2.28.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/lib/index.js +10 -6
- package/package.json +33 -33
package/lib/index.js
CHANGED
|
@@ -1018,11 +1018,11 @@ var __vue2_script$2 = defineComponent({
|
|
|
1018
1018
|
getColumnConfigs: function getColumnConfigs(configs) {
|
|
1019
1019
|
var _getColNodes = function getColNodes(columns2) {
|
|
1020
1020
|
return columns2.map(function(_ref4) {
|
|
1021
|
-
var id = _ref4.id,
|
|
1021
|
+
var id = _ref4.id, own = _ref4.own, property = _ref4.property, fixed = _ref4.fixed, visible = _ref4.visible, order = _ref4.order, sortable = _ref4.sortable, level = _ref4.level, children = _ref4.children;
|
|
1022
1022
|
if (property) {
|
|
1023
1023
|
var column = {
|
|
1024
1024
|
id,
|
|
1025
|
-
title,
|
|
1025
|
+
title: own.title,
|
|
1026
1026
|
property,
|
|
1027
1027
|
fixed,
|
|
1028
1028
|
visible,
|
|
@@ -1706,12 +1706,12 @@ var __vue2_script$1 = {
|
|
|
1706
1706
|
var _this11 = this;
|
|
1707
1707
|
var _getColNodes2 = function getColNodes(columns2) {
|
|
1708
1708
|
return columns2.map(function(_ref8) {
|
|
1709
|
-
var id = _ref8.id,
|
|
1709
|
+
var id = _ref8.id, own = _ref8.own, property = _ref8.property, fixed = _ref8.fixed, visible = _ref8.visible, order = _ref8.order, sortable = _ref8.sortable, level = _ref8.level, children = _ref8.children;
|
|
1710
1710
|
if (property) {
|
|
1711
1711
|
var _this11$setting;
|
|
1712
1712
|
var column = {
|
|
1713
1713
|
id,
|
|
1714
|
-
title,
|
|
1714
|
+
title: own.title,
|
|
1715
1715
|
property,
|
|
1716
1716
|
fixed,
|
|
1717
1717
|
visible,
|
|
@@ -1724,6 +1724,7 @@ var __vue2_script$1 = {
|
|
|
1724
1724
|
children && (column.children = _getColNodes2(children));
|
|
1725
1725
|
return column;
|
|
1726
1726
|
}
|
|
1727
|
+
return null;
|
|
1727
1728
|
}).filter(function(i) {
|
|
1728
1729
|
return i;
|
|
1729
1730
|
});
|
|
@@ -1745,6 +1746,9 @@ var render$1 = function render$12() {
|
|
|
1745
1746
|
"placeholder": "请选择",
|
|
1746
1747
|
"placement": "bottom-end",
|
|
1747
1748
|
"searchable": true,
|
|
1749
|
+
"tooltip-config": {
|
|
1750
|
+
always: false
|
|
1751
|
+
},
|
|
1748
1752
|
"multiple": ""
|
|
1749
1753
|
},
|
|
1750
1754
|
on: {
|
|
@@ -2171,11 +2175,11 @@ var __vue2_script = defineComponent({
|
|
|
2171
2175
|
this.colIds = [];
|
|
2172
2176
|
var _getColNodes3 = function getColNodes(columns2) {
|
|
2173
2177
|
return columns2.map(function(_ref9) {
|
|
2174
|
-
var id = _ref9.id,
|
|
2178
|
+
var id = _ref9.id, own = _ref9.own, property = _ref9.property, fixed = _ref9.fixed, visible = _ref9.visible, order = _ref9.order, sortable = _ref9.sortable, level = _ref9.level, children = _ref9.children;
|
|
2175
2179
|
if (property) {
|
|
2176
2180
|
var column = {
|
|
2177
2181
|
id,
|
|
2178
|
-
title,
|
|
2182
|
+
title: own.title,
|
|
2179
2183
|
property,
|
|
2180
2184
|
alwaysShow: alwaysShowColumns.includes(property),
|
|
2181
2185
|
fixed,
|
package/package.json
CHANGED
|
@@ -1,45 +1,45 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-grid-toolbar",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.28.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"main": "./lib/index.js",
|
|
9
9
|
"module": "./lib/index.js",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@opentinyvue/utils": "~3.
|
|
12
|
-
"@opentinyvue/vue-alert": "~2.
|
|
13
|
-
"@opentinyvue/vue-button": "~2.
|
|
14
|
-
"@opentinyvue/vue-checkbox": "~2.
|
|
15
|
-
"@opentinyvue/vue-checkbox-group": "~2.
|
|
16
|
-
"@opentinyvue/vue-col": "~2.
|
|
17
|
-
"@opentinyvue/vue-common": "~2.
|
|
18
|
-
"@opentinyvue/vue-dialog-box": "~2.
|
|
19
|
-
"@opentinyvue/vue-directive": "~2.
|
|
20
|
-
"@opentinyvue/vue-dropdown": "~2.
|
|
21
|
-
"@opentinyvue/vue-dropdown-item": "~2.
|
|
22
|
-
"@opentinyvue/vue-dropdown-menu": "~2.
|
|
23
|
-
"@opentinyvue/vue-grid": "~2.
|
|
24
|
-
"@opentinyvue/vue-icon": "~2.
|
|
25
|
-
"@opentinyvue/vue-input": "~2.
|
|
26
|
-
"@opentinyvue/vue-layout": "~2.
|
|
27
|
-
"@opentinyvue/vue-locale": "~2.
|
|
28
|
-
"@opentinyvue/vue-modal": "~2.
|
|
29
|
-
"@opentinyvue/vue-option": "~2.
|
|
30
|
-
"@opentinyvue/vue-popover": "~2.
|
|
31
|
-
"@opentinyvue/vue-radio": "~2.
|
|
32
|
-
"@opentinyvue/vue-radio-group": "~2.
|
|
33
|
-
"@opentinyvue/vue-renderless": "~3.
|
|
34
|
-
"@opentinyvue/vue-row": "~2.
|
|
35
|
-
"@opentinyvue/vue-search": "~2.
|
|
36
|
-
"@opentinyvue/vue-select": "~2.
|
|
37
|
-
"@opentinyvue/vue-split": "~2.
|
|
38
|
-
"@opentinyvue/vue-tab-item": "~2.
|
|
39
|
-
"@opentinyvue/vue-tabs": "~2.
|
|
40
|
-
"@opentinyvue/vue-theme": "~3.
|
|
41
|
-
"@opentinyvue/vue-tooltip": "~2.
|
|
42
|
-
"@opentinyvue/vue-tree": "~2.
|
|
11
|
+
"@opentinyvue/utils": "~3.28.0",
|
|
12
|
+
"@opentinyvue/vue-alert": "~2.28.0",
|
|
13
|
+
"@opentinyvue/vue-button": "~2.28.0",
|
|
14
|
+
"@opentinyvue/vue-checkbox": "~2.28.0",
|
|
15
|
+
"@opentinyvue/vue-checkbox-group": "~2.28.0",
|
|
16
|
+
"@opentinyvue/vue-col": "~2.28.0",
|
|
17
|
+
"@opentinyvue/vue-common": "~2.28.0",
|
|
18
|
+
"@opentinyvue/vue-dialog-box": "~2.28.0",
|
|
19
|
+
"@opentinyvue/vue-directive": "~2.28.0",
|
|
20
|
+
"@opentinyvue/vue-dropdown": "~2.28.0",
|
|
21
|
+
"@opentinyvue/vue-dropdown-item": "~2.28.0",
|
|
22
|
+
"@opentinyvue/vue-dropdown-menu": "~2.28.0",
|
|
23
|
+
"@opentinyvue/vue-grid": "~2.28.0",
|
|
24
|
+
"@opentinyvue/vue-icon": "~2.28.0",
|
|
25
|
+
"@opentinyvue/vue-input": "~2.28.0",
|
|
26
|
+
"@opentinyvue/vue-layout": "~2.28.0",
|
|
27
|
+
"@opentinyvue/vue-locale": "~2.28.0",
|
|
28
|
+
"@opentinyvue/vue-modal": "~2.28.0",
|
|
29
|
+
"@opentinyvue/vue-option": "~2.28.0",
|
|
30
|
+
"@opentinyvue/vue-popover": "~2.28.0",
|
|
31
|
+
"@opentinyvue/vue-radio": "~2.28.0",
|
|
32
|
+
"@opentinyvue/vue-radio-group": "~2.28.0",
|
|
33
|
+
"@opentinyvue/vue-renderless": "~3.28.0",
|
|
34
|
+
"@opentinyvue/vue-row": "~2.28.0",
|
|
35
|
+
"@opentinyvue/vue-search": "~2.28.0",
|
|
36
|
+
"@opentinyvue/vue-select": "~2.28.0",
|
|
37
|
+
"@opentinyvue/vue-split": "~2.28.0",
|
|
38
|
+
"@opentinyvue/vue-tab-item": "~2.28.0",
|
|
39
|
+
"@opentinyvue/vue-tabs": "~2.28.0",
|
|
40
|
+
"@opentinyvue/vue-theme": "~3.28.0",
|
|
41
|
+
"@opentinyvue/vue-tooltip": "~2.28.0",
|
|
42
|
+
"@opentinyvue/vue-tree": "~2.28.0"
|
|
43
43
|
},
|
|
44
44
|
"types": "index.d.ts",
|
|
45
45
|
"scripts": {
|