@dataloop-ai/components 0.20.136 → 0.20.138
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
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
:color="
|
|
24
24
|
isDragIconHovered ? 'dl-color-darker' : 'dl-color-lighter'
|
|
25
25
|
"
|
|
26
|
-
@mouseenter="isDragIconHovered = true"
|
|
27
|
-
@mouseleave="isDragIconHovered = false"
|
|
26
|
+
@mouseenter.native="isDragIconHovered = true"
|
|
27
|
+
@mouseleave.native="isDragIconHovered = false"
|
|
28
28
|
/>
|
|
29
29
|
</td>
|
|
30
30
|
<td v-if="hasSelectionMode" class="dl-table--col-auto-width">
|
|
@@ -73,13 +73,13 @@
|
|
|
73
73
|
:class="col.tdClass(row)"
|
|
74
74
|
:style="
|
|
75
75
|
col.tdStyle(row) +
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
76
|
+
`padding-left: ${
|
|
77
|
+
setTrPadding(
|
|
78
|
+
level,
|
|
79
|
+
(row.children || []).length > 0,
|
|
80
|
+
colIndex
|
|
81
|
+
) + 1
|
|
82
|
+
}px;`
|
|
83
83
|
"
|
|
84
84
|
:col-index="colIndex"
|
|
85
85
|
:tooltip="tooltip"
|
|
@@ -215,7 +215,7 @@ export default defineComponent({
|
|
|
215
215
|
|
|
216
216
|
const classes = computed(
|
|
217
217
|
() =>
|
|
218
|
-
' ' +
|
|
218
|
+
'dl-menu dl-position-engine scroll ' +
|
|
219
219
|
props.menuClass +
|
|
220
220
|
(props.square === true ? ' dl-menu--square' : '')
|
|
221
221
|
)
|
|
@@ -506,7 +506,7 @@ export default defineComponent({
|
|
|
506
506
|
innerRef,
|
|
507
507
|
portalEl: isVue2 ? '[data-test-id="portal"]' : portalEl,
|
|
508
508
|
portalIsActive,
|
|
509
|
-
classes
|
|
509
|
+
classes,
|
|
510
510
|
styles: computedStyles,
|
|
511
511
|
selectedItem,
|
|
512
512
|
highlightedIndex
|