@dataloop-ai/components 0.18.85 → 0.18.86

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dataloop-ai/components",
3
- "version": "0.18.85",
3
+ "version": "0.18.86",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -8,9 +8,9 @@
8
8
  border-collapse: separate;
9
9
  border-spacing: 0;
10
10
 
11
- &__drag-icon > div {
11
+ &__drag-icon>div {
12
12
  transition: all ease-in 0.1s;
13
- opacity: 0;
13
+ opacity: 0;
14
14
  }
15
15
 
16
16
  //markup-table
@@ -53,6 +53,10 @@
53
53
  }
54
54
  }
55
55
 
56
+ .trigger-icon {
57
+ margin-right: 5px
58
+ }
59
+
56
60
  th:first-child,
57
61
  td:first-child {
58
62
  padding-left: 8px;
@@ -71,9 +75,10 @@
71
75
  height: 40px;
72
76
 
73
77
  &:not(.dl-tr--no-hover):hover {
74
- .dl-table__drag-icon > div {
78
+ .dl-table__drag-icon>div {
75
79
  opacity: 1;
76
80
  }
81
+
77
82
  td:not(.dl-td--no-hover) {
78
83
  background-color: var(--dl-color-fill-hover);
79
84
  }
@@ -86,6 +91,7 @@
86
91
  white-space: nowrap;
87
92
  overflow: hidden;
88
93
  padding: 10px 8px;
94
+ display: flex;
89
95
  }
90
96
 
91
97
  th {
@@ -45,6 +45,7 @@
45
45
  <template #icon="{}">
46
46
  <DlIcon
47
47
  v-if="(row.children || []).length > 0 && colIndex === 0"
48
+ style="margin-right: 5px"
48
49
  :icon="`icon-dl-${row.expanded ? 'down' : 'right'}-chevron`"
49
50
  @click="emitUpdateExpandedRow"
50
51
  />