bri-components 1.4.72 → 1.4.73
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/package.json
CHANGED
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
<Poptip
|
|
14
14
|
v-if="operationItem.tipContent"
|
|
15
15
|
:key="(operationItem._key || operationItem.type) + 'poptip'"
|
|
16
|
+
:class="[
|
|
17
|
+
index ? 'dsh-margin-left8' : undefined
|
|
18
|
+
]"
|
|
16
19
|
trigger="hover"
|
|
17
20
|
:title="operationItem.tipTitle"
|
|
18
21
|
:content="operationItem.tipContent"
|
|
@@ -24,7 +27,6 @@
|
|
|
24
27
|
:key="operationItem._key || operationItem.type"
|
|
25
28
|
:style="operationItem.style"
|
|
26
29
|
:class="[
|
|
27
|
-
index ? 'dsh-margin-left8' : undefined,
|
|
28
30
|
!operationItem.loading && !operationItem.customIcon && !operationItem.icon ? 'DshButtons-item' : undefined,
|
|
29
31
|
itemClass,
|
|
30
32
|
]"
|
|
@@ -80,6 +82,9 @@
|
|
|
80
82
|
<Poptip
|
|
81
83
|
v-if="operationItem.tipContent"
|
|
82
84
|
:key="(operationItem._key || operationItem.type) + 'poptip'"
|
|
85
|
+
:class="[
|
|
86
|
+
index ? 'dsh-margin-left8' : undefined
|
|
87
|
+
]"
|
|
83
88
|
trigger="hover"
|
|
84
89
|
:title="operationItem.tipTitle"
|
|
85
90
|
:content="operationItem.tipContent"
|
|
@@ -91,7 +96,6 @@
|
|
|
91
96
|
:key="operationItem._key || operationItem.type"
|
|
92
97
|
:style="operationItem.style"
|
|
93
98
|
:class="[
|
|
94
|
-
index ? 'dsh-margin-left8' : undefined,
|
|
95
99
|
!operationItem.loading && !operationItem.customIcon && !operationItem.icon ? 'DshButtons-item' : undefined,
|
|
96
100
|
itemClass,
|
|
97
101
|
]"
|
|
@@ -125,6 +129,9 @@
|
|
|
125
129
|
<Poptip
|
|
126
130
|
v-if="operationItem.tipContent"
|
|
127
131
|
:key="(operationItem._key || operationItem.type) + 'poptip'"
|
|
132
|
+
:class="[
|
|
133
|
+
index ? 'dsh-margin-left8' : undefined
|
|
134
|
+
]"
|
|
128
135
|
trigger="hover"
|
|
129
136
|
:title="operationItem.tipTitle"
|
|
130
137
|
:content="operationItem.tipContent"
|
|
@@ -137,7 +144,6 @@
|
|
|
137
144
|
:key="operationItem._key || operationItem.type"
|
|
138
145
|
:style="operationItem.style"
|
|
139
146
|
:class="[
|
|
140
|
-
index ? 'dsh-margin-left8' : undefined,
|
|
141
147
|
!operationItem.loading && !operationItem.customIcon && !operationItem.icon ? 'DshButtons-item' : undefined,
|
|
142
148
|
itemClass,
|
|
143
149
|
]"
|
package/src/utils/table.js
CHANGED
|
@@ -88,7 +88,7 @@ const transformToColumns = function (form, {
|
|
|
88
88
|
isMultiple: true,
|
|
89
89
|
maxHeight: 250,
|
|
90
90
|
filterList: (
|
|
91
|
-
col._selectFilterVals.length
|
|
91
|
+
col._selectFilterVals && col._selectFilterVals.length
|
|
92
92
|
? col._data.filter(item =>
|
|
93
93
|
col._reverseFilter
|
|
94
94
|
? !col._selectFilterVals.includes(item._key)
|