@itfin/components 1.2.116 → 1.2.117
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
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<slot name="empty"></slot>
|
|
21
21
|
</template>
|
|
22
22
|
<template v-else>
|
|
23
|
-
<div v-for="(item, index) of items" :key="index" :data-card="index">
|
|
23
|
+
<div v-for="(item, index) of items" :key="index" :data-card="index" :class="item.hidden ? 'd-none' : ''">
|
|
24
24
|
<div accept-group="board-cards"
|
|
25
25
|
class="itf-board-card-space"
|
|
26
26
|
@enter="cardHighlight(index, 'enter', 'drop')"
|
|
@@ -247,11 +247,22 @@
|
|
|
247
247
|
}
|
|
248
248
|
|
|
249
249
|
.itf-board-cards-wrapper {
|
|
250
|
+
display: flex;
|
|
251
|
+
flex-direction: column;
|
|
250
252
|
overflow: auto;
|
|
251
253
|
flex-grow: 1;
|
|
252
254
|
padding-right: .25rem;
|
|
253
255
|
padding-top: .5rem;
|
|
254
256
|
|
|
257
|
+
> div:first-child > .itf-board-card-space > .itf-board-header-dropzone {
|
|
258
|
+
top: -30px;
|
|
259
|
+
z-index: 100;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
> .itf-board-card-space:last-child {
|
|
263
|
+
flex: 1;
|
|
264
|
+
}
|
|
265
|
+
|
|
255
266
|
.draggable-source--is-dragging {
|
|
256
267
|
position: relative !important;
|
|
257
268
|
.itf-board-card {
|