@dataloop-ai/components 0.17.68 → 0.17.69
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 +1 -1
- package/src/components/basic/DlWidget/DlWidget.vue +37 -21
- package/src/components/compound/DlCharts/charts/DlConfusionMatrix/DlConfusionMatrix.vue +19 -10
- package/src/components/compound/DlCharts/components/DlChartScrollBar.vue +1 -0
- package/src/demos/DlWidgetDemo.vue +1 -1
package/package.json
CHANGED
|
@@ -6,24 +6,22 @@
|
|
|
6
6
|
<div
|
|
7
7
|
:id="uuid"
|
|
8
8
|
ref="widget"
|
|
9
|
-
:class="
|
|
9
|
+
:class="widgetClasses"
|
|
10
10
|
@mouseenter="handleVisibleDragIcon(true)"
|
|
11
11
|
@mouseleave="handleVisibleDragIcon(false)"
|
|
12
12
|
>
|
|
13
|
+
<dl-icon
|
|
14
|
+
:style="iconStyles"
|
|
15
|
+
class="dl-widget__drag-icon"
|
|
16
|
+
icon="icon-dl-drag"
|
|
17
|
+
color="dl-color-medium"
|
|
18
|
+
size="15px"
|
|
19
|
+
@mousedown="startDragging"
|
|
20
|
+
/>
|
|
13
21
|
<div class="dl-widget__header">
|
|
14
22
|
<div class="dl-widget__header--titles">
|
|
15
23
|
<slot name="header" />
|
|
16
24
|
</div>
|
|
17
|
-
<dl-icon
|
|
18
|
-
:style="`visibility: ${
|
|
19
|
-
visibleDragIcon && !isDragging ? 'visible' : 'hidden'
|
|
20
|
-
}`"
|
|
21
|
-
class="dl-widget__header--drag-icon"
|
|
22
|
-
icon="icon-dl-drag"
|
|
23
|
-
color="dl-color-medium"
|
|
24
|
-
size="15px"
|
|
25
|
-
@mousedown="startDragging"
|
|
26
|
-
/>
|
|
27
25
|
<slot name="menu" />
|
|
28
26
|
</div>
|
|
29
27
|
|
|
@@ -65,8 +63,19 @@ export default defineComponent({
|
|
|
65
63
|
}
|
|
66
64
|
},
|
|
67
65
|
computed: {
|
|
68
|
-
|
|
66
|
+
widgetClasses() {
|
|
69
67
|
return `${this.isDragging ? 'dl-widget__drag' : 'dl-widget'}`
|
|
68
|
+
},
|
|
69
|
+
iconStyles() {
|
|
70
|
+
return {
|
|
71
|
+
'--dl-widget-drag-icon-left': `${
|
|
72
|
+
(this.$refs.widget as HTMLElement)?.offsetWidth / 2
|
|
73
|
+
}px`,
|
|
74
|
+
visibility:
|
|
75
|
+
this.visibleDragIcon && !this.isDragging
|
|
76
|
+
? 'visible'
|
|
77
|
+
: 'hidden'
|
|
78
|
+
}
|
|
70
79
|
}
|
|
71
80
|
},
|
|
72
81
|
methods: {
|
|
@@ -192,19 +201,14 @@ export default defineComponent({
|
|
|
192
201
|
height: 100%;
|
|
193
202
|
display: flex;
|
|
194
203
|
flex-direction: column;
|
|
204
|
+
position: relative;
|
|
195
205
|
&__header {
|
|
196
206
|
display: flex;
|
|
197
207
|
padding: 10px;
|
|
198
208
|
border-bottom: 1px solid var(--dl-color-separator);
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
cursor: grab;
|
|
203
|
-
|
|
204
|
-
&::v-deep .dl-icon {
|
|
205
|
-
transform: rotate(90deg) !important;
|
|
206
|
-
}
|
|
207
|
-
}
|
|
209
|
+
font-size: 20px;
|
|
210
|
+
color: var(--dl-color-darker);
|
|
211
|
+
justify-content: space-between;
|
|
208
212
|
|
|
209
213
|
&--titles {
|
|
210
214
|
width: 50%;
|
|
@@ -229,6 +233,18 @@ export default defineComponent({
|
|
|
229
233
|
color: var(--dl-color-medium);
|
|
230
234
|
}
|
|
231
235
|
|
|
236
|
+
&__drag-icon {
|
|
237
|
+
position: absolute;
|
|
238
|
+
top: 5px;
|
|
239
|
+
left: calc(var(--dl-widget-drag-icon-left) - 5px);
|
|
240
|
+
flex-grow: 1;
|
|
241
|
+
cursor: grab;
|
|
242
|
+
|
|
243
|
+
&::v-deep .dl-icon {
|
|
244
|
+
transform: rotate(90deg) !important;
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
|
|
232
248
|
&__drag {
|
|
233
249
|
position: relative;
|
|
234
250
|
&::after {
|
|
@@ -61,9 +61,7 @@
|
|
|
61
61
|
class="matrix__cell"
|
|
62
62
|
:style="`background-color: ${getCellBackground(
|
|
63
63
|
cell.value
|
|
64
|
-
)}; color:
|
|
65
|
-
cell.value < 0.5 ? '-darker' : ''
|
|
66
|
-
}-buttons)`"
|
|
64
|
+
)}; color: ${getCellTextColor(cell.value)}`"
|
|
67
65
|
@mouseenter="handleShowTooltip(cell, $event)"
|
|
68
66
|
@mouseleave="handleHideTooltip"
|
|
69
67
|
@mousedown="openLink(cell)"
|
|
@@ -140,14 +138,14 @@
|
|
|
140
138
|
<div
|
|
141
139
|
v-if="tooltipVisible"
|
|
142
140
|
:style="tooltipStyles"
|
|
143
|
-
class="tooltip"
|
|
141
|
+
class="matrix-tooltip"
|
|
144
142
|
>
|
|
145
|
-
<span class="tooltip__x">{{ tooltipState.xLabel }}</span>
|
|
146
|
-
<span class="tooltip__y">{{ tooltipState.yLabel }}</span>
|
|
143
|
+
<span class="matrix-tooltip__x">{{ tooltipState.xLabel }}</span>
|
|
144
|
+
<span class="matrix-tooltip__y">{{ tooltipState.yLabel }}</span>
|
|
147
145
|
<span>
|
|
148
146
|
<span
|
|
149
147
|
v-if="tooltipState.value"
|
|
150
|
-
class="tooltip__color"
|
|
148
|
+
class="matrix-tooltip__color"
|
|
151
149
|
:style="`background-color: ${getCellBackground(
|
|
152
150
|
tooltipState.value
|
|
153
151
|
)}`"
|
|
@@ -238,9 +236,19 @@ export default defineComponent({
|
|
|
238
236
|
const hex = object[props.color]
|
|
239
237
|
return hexToRgbA(hex, value)
|
|
240
238
|
}
|
|
239
|
+
|
|
240
|
+
const getCellTextColor = (value: number) => {
|
|
241
|
+
const isDark =
|
|
242
|
+
document.documentElement.getAttribute('data-theme') ===
|
|
243
|
+
'dark-mode'
|
|
244
|
+
if (isDark) return 'var(--dl-color-text-buttons)'
|
|
245
|
+
return `var(--dl-color-text${value < 0.5 ? '-darker' : ''}-buttons)`
|
|
246
|
+
}
|
|
247
|
+
|
|
241
248
|
return {
|
|
242
249
|
variables,
|
|
243
250
|
getCellBackground,
|
|
251
|
+
getCellTextColor,
|
|
244
252
|
cellWidth,
|
|
245
253
|
tooltipState,
|
|
246
254
|
currentBrushState
|
|
@@ -365,8 +373,8 @@ export default defineComponent({
|
|
|
365
373
|
value: ctx.normalized ? cell.value : cell.unnormalizedValue,
|
|
366
374
|
xLabel: cell.xLabel,
|
|
367
375
|
yLabel: cell.yLabel,
|
|
368
|
-
x: e.
|
|
369
|
-
y: e.
|
|
376
|
+
x: e.x,
|
|
377
|
+
y: e.y,
|
|
370
378
|
visible: true
|
|
371
379
|
}
|
|
372
380
|
},
|
|
@@ -514,7 +522,7 @@ export default defineComponent({
|
|
|
514
522
|
}
|
|
515
523
|
}
|
|
516
524
|
|
|
517
|
-
.tooltip {
|
|
525
|
+
.matrix-tooltip {
|
|
518
526
|
position: absolute;
|
|
519
527
|
border: 1px solid var(--dl-color-separator);
|
|
520
528
|
padding: 8px;
|
|
@@ -522,6 +530,7 @@ export default defineComponent({
|
|
|
522
530
|
display: flex;
|
|
523
531
|
flex-direction: column;
|
|
524
532
|
background-color: var(--dl-color-shadow);
|
|
533
|
+
color: var(--dl-color-tooltip-background);
|
|
525
534
|
border-radius: 3px;
|
|
526
535
|
animation: fadeIn 0.4s;
|
|
527
536
|
|