@dataloop-ai/components 0.19.233 → 0.19.235
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.19.
|
|
3
|
+
"version": "0.19.235",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": "./index.ts",
|
|
6
6
|
"./models": "./models.ts",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"check-only": "if grep -E -H -r --exclude-dir=.git --exclude-dir=node_modules --exclude=*.json --exclude=*.yml '^(describe|it).only' .; then echo 'Found only in test files' && exit 1; fi"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@dataloop-ai/icons": "^3.0.
|
|
25
|
+
"@dataloop-ai/icons": "^3.0.55",
|
|
26
26
|
"@types/flat": "^5.0.2",
|
|
27
27
|
"@types/lodash": "^4.14.184",
|
|
28
28
|
"@types/sortablejs": "^1.15.7",
|
|
@@ -1028,7 +1028,7 @@ export default defineComponent({
|
|
|
1028
1028
|
align-items: center;
|
|
1029
1029
|
}
|
|
1030
1030
|
&--placeholder {
|
|
1031
|
-
color: var(--dl-select-
|
|
1031
|
+
color: var(--dl-select-placeholder-color, var(--placeholder-color));
|
|
1032
1032
|
}
|
|
1033
1033
|
|
|
1034
1034
|
.dl-select__title-container {
|
|
@@ -1045,7 +1045,7 @@ export default defineComponent({
|
|
|
1045
1045
|
}
|
|
1046
1046
|
|
|
1047
1047
|
.selected-label {
|
|
1048
|
-
color: var(--dl-select-
|
|
1048
|
+
color: var(--dl-select-placeholder-color, var(--placeholder-color));
|
|
1049
1049
|
}
|
|
1050
1050
|
|
|
1051
1051
|
.dl-select__title {
|
|
@@ -141,6 +141,7 @@
|
|
|
141
141
|
<DlTh
|
|
142
142
|
v-if="showRowActions"
|
|
143
143
|
key="visibleColumnsSlot"
|
|
144
|
+
class="dl-table-visible-column"
|
|
144
145
|
no-tooltip
|
|
145
146
|
padding="0"
|
|
146
147
|
>
|
|
@@ -375,7 +376,7 @@
|
|
|
375
376
|
<DlTd
|
|
376
377
|
v-if="showRowActions"
|
|
377
378
|
key="visibleColumnsSlot"
|
|
378
|
-
class="visible-columns-justify-end"
|
|
379
|
+
class="visible-columns-justify-end dl-table-visible-column"
|
|
379
380
|
no-tooltip
|
|
380
381
|
>
|
|
381
382
|
<slot
|
|
@@ -536,10 +537,9 @@
|
|
|
536
537
|
<DlTh
|
|
537
538
|
v-if="showRowActions"
|
|
538
539
|
key="visibleColumnsSlot"
|
|
540
|
+
class="dl-table-visible-column"
|
|
539
541
|
no-tooltip
|
|
540
|
-
|
|
541
|
-
isTreeTable ? '0' : `0 ${columnSpacing}`
|
|
542
|
-
"
|
|
542
|
+
padding="0"
|
|
543
543
|
>
|
|
544
544
|
<slot
|
|
545
545
|
name="header-cell-visible-columns-button"
|
|
@@ -790,9 +790,8 @@
|
|
|
790
790
|
<DlTd
|
|
791
791
|
v-if="showRowActions"
|
|
792
792
|
key="visibleColumnsSlot"
|
|
793
|
-
class="visible-columns-justify-end"
|
|
793
|
+
class="visible-columns-justify-end dl-table-visible-column"
|
|
794
794
|
no-tooltip
|
|
795
|
-
:padding="`0 ${columnSpacing}`"
|
|
796
795
|
>
|
|
797
796
|
<slot
|
|
798
797
|
v-bind="
|
|
@@ -889,7 +888,7 @@
|
|
|
889
888
|
<div v-else class="dl-table__control">
|
|
890
889
|
<slot name="bottom" v-bind="marginalsScope">
|
|
891
890
|
<div
|
|
892
|
-
v-if="
|
|
891
|
+
v-if="hasBottomSelectionBanner"
|
|
893
892
|
class="dl-table__control"
|
|
894
893
|
>
|
|
895
894
|
<div>
|
|
@@ -1771,7 +1770,7 @@ export default defineComponent({
|
|
|
1771
1770
|
)
|
|
1772
1771
|
})
|
|
1773
1772
|
|
|
1774
|
-
const
|
|
1773
|
+
const hasBottomSelectionBanner = computed(() => {
|
|
1775
1774
|
return (
|
|
1776
1775
|
hideSelectedBanner.value !== true &&
|
|
1777
1776
|
hasSelectionMode.value === true &&
|
|
@@ -2137,7 +2136,7 @@ export default defineComponent({
|
|
|
2137
2136
|
noDataMessage,
|
|
2138
2137
|
paginationState,
|
|
2139
2138
|
hasTopSelectionMode,
|
|
2140
|
-
|
|
2139
|
+
hasBottomSelectionBanner,
|
|
2141
2140
|
rowsSelectedNumber,
|
|
2142
2141
|
singleSelection,
|
|
2143
2142
|
multipleSelection,
|