@mixd-id/web-scaffold 0.1.230406288 → 0.1.230406289
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/List.vue +7 -6
package/package.json
CHANGED
package/src/components/List.vue
CHANGED
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
</div>
|
|
121
121
|
</slot>
|
|
122
122
|
|
|
123
|
-
<VirtualTable v-if="presetView === 'table'"
|
|
123
|
+
<VirtualTable v-if="presetView === 'table' || pivotEnabled"
|
|
124
124
|
ref="table"
|
|
125
125
|
:columns="columns"
|
|
126
126
|
class="flex-1 rounded-lg panel-400"
|
|
@@ -170,13 +170,13 @@
|
|
|
170
170
|
<div v-if="extBar.open && pivotEnabled"
|
|
171
171
|
:style="extStyle" class="border-t-[1px] border-text-50 flex flex-col relative md:p-5">
|
|
172
172
|
|
|
173
|
-
<div :class="$style.resize2"
|
|
173
|
+
<div :class="$style.resize2" class="group"
|
|
174
174
|
@mousedown="(e) => $util.dragResize(e, resize2)">
|
|
175
175
|
<button type="button" @click.prevent="extBar.open = false"
|
|
176
|
-
:class="$style.extClose">
|
|
176
|
+
:class="$style.extClose" class="group-hover:bg-primary">
|
|
177
177
|
<svg width="14"
|
|
178
178
|
height="14"
|
|
179
|
-
class="fill-text-300 cursor-pointer"
|
|
179
|
+
class="fill-text-300 group-hover:fill-white cursor-pointer"
|
|
180
180
|
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Pro 6.0.0-alpha3 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) --><path d="M432.6 209.3l-191.1 183.1C235.1 397.8 229.1 400 224 400s-11.97-2.219-16.59-6.688L15.41 209.3C5.814 200.2 5.502 184.1 14.69 175.4c9.125-9.625 24.38-9.938 33.91-.7187L224 342.8l175.4-168c9.5-9.219 24.78-8.906 33.91 .7187C442.5 184.1 442.2 200.2 432.6 209.3z"/></svg>
|
|
181
181
|
</button>
|
|
182
182
|
</div>
|
|
@@ -922,11 +922,12 @@ export default{
|
|
|
922
922
|
}
|
|
923
923
|
|
|
924
924
|
.resize2{
|
|
925
|
-
@apply h-[
|
|
925
|
+
@apply h-[5px] hover:bg-primary bg-text-50 cursor-n-resize absolute top-0 left-0 right-0 flex items-center justify-center;
|
|
926
|
+
@apply z-20;
|
|
926
927
|
}
|
|
927
928
|
|
|
928
929
|
.extClose{
|
|
929
|
-
@apply w-[21px] h-[21px] rounded-full bg-
|
|
930
|
+
@apply w-[21px] h-[21px] rounded-full bg-text-50 flex items-center justify-center hover:bg-red-600;
|
|
930
931
|
}
|
|
931
932
|
|
|
932
933
|
</style>
|