@leevan/jtui 2.0.42 → 2.0.43
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/jtui.common.js +6 -6
- package/lib/jtui.umd.js +6 -6
- package/lib/jtui.umd.min.js +1 -1
- package/package.json +1 -1
- package/packages/jt-table/index.vue +8 -8
package/package.json
CHANGED
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
show-overflow="title"
|
|
20
20
|
show-header-overflow="title"
|
|
21
21
|
auto-resize
|
|
22
|
-
:row-config="{ isCurrent: true, isHover: true}"
|
|
22
|
+
:row-config="{ isCurrent: true, isHover: true, useKey: true}"
|
|
23
23
|
:current-row-config="{isFollowSelected: true}"
|
|
24
|
-
:column-config="{ isCurrent: true}"
|
|
24
|
+
:column-config="{ isCurrent: true, useKey: true}"
|
|
25
25
|
:current-column-config="{ isFollowSelected: true }"
|
|
26
26
|
keep-source
|
|
27
27
|
v-if="tableType === 'default'"
|
|
@@ -209,9 +209,9 @@
|
|
|
209
209
|
show-overflow="title"
|
|
210
210
|
show-header-overflow="title"
|
|
211
211
|
auto-resize
|
|
212
|
-
:row-config="{ isCurrent: true, isHover: true}"
|
|
212
|
+
:row-config="{ isCurrent: true, isHover: true, useKey: true}"
|
|
213
213
|
:current-row-config="{isFollowSelected: true}"
|
|
214
|
-
:column-config="{ isCurrent: true}"
|
|
214
|
+
:column-config="{ isCurrent: true, useKey: true}"
|
|
215
215
|
:current-column-config="{ isFollowSelected: true }"
|
|
216
216
|
keep-source
|
|
217
217
|
v-if="tableType === 'bigData'"
|
|
@@ -392,9 +392,9 @@
|
|
|
392
392
|
height="auto"
|
|
393
393
|
:max-height="maxHeight"
|
|
394
394
|
auto-resize
|
|
395
|
-
:row-config="{ isCurrent: true, isHover: true}"
|
|
395
|
+
:row-config="{ isCurrent: true, isHover: true, useKey: true}"
|
|
396
396
|
:current-row-config="{isFollowSelected: true}"
|
|
397
|
-
:column-config="{ isCurrent: true}"
|
|
397
|
+
:column-config="{ isCurrent: true, useKey: true}"
|
|
398
398
|
:current-column-config="{ isFollowSelected: true }"
|
|
399
399
|
:tree-config="groupConfig"
|
|
400
400
|
:row-class-name="rowClassName"
|
|
@@ -545,9 +545,9 @@
|
|
|
545
545
|
:cell-style="cellStyle_m"
|
|
546
546
|
:row-style="rowStyle"
|
|
547
547
|
:span-method="spanMethod"
|
|
548
|
-
:row-config="{ isCurrent: true, isHover: true}"
|
|
548
|
+
:row-config="{ isCurrent: true, isHover: true, useKey: true}"
|
|
549
549
|
:current-row-config="{isFollowSelected: true}"
|
|
550
|
-
:column-config="{ isCurrent: true}"
|
|
550
|
+
:column-config="{ isCurrent: true, useKey: true}"
|
|
551
551
|
:current-column-config="{ isFollowSelected: true }"
|
|
552
552
|
:tree-config="treeConfig"
|
|
553
553
|
:row-key="true"
|