vueless 0.0.758 → 0.0.759
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
package/ui.data-table/UTable.vue
CHANGED
|
@@ -547,7 +547,7 @@ const {
|
|
|
547
547
|
<slot :name="`header-${column.key}-after`" :column="column" :index="index" />
|
|
548
548
|
</div>
|
|
549
549
|
|
|
550
|
-
<ULoaderProgress
|
|
550
|
+
<ULoaderProgress :loading="loading" v-bind="stickyHeaderLoaderAttrs" />
|
|
551
551
|
</div>
|
|
552
552
|
|
|
553
553
|
<div
|
|
@@ -579,7 +579,7 @@ const {
|
|
|
579
579
|
-->
|
|
580
580
|
<slot name="header-actions" :selected-rows="selectedRows" />
|
|
581
581
|
|
|
582
|
-
<ULoaderProgress
|
|
582
|
+
<ULoaderProgress :loading="loading" v-bind="stickyHeaderLoaderAttrs" />
|
|
583
583
|
</div>
|
|
584
584
|
|
|
585
585
|
<div
|
|
@@ -612,7 +612,7 @@ const {
|
|
|
612
612
|
-->
|
|
613
613
|
<slot name="header-actions" :selected-rows="selectedRows" />
|
|
614
614
|
|
|
615
|
-
<ULoaderProgress
|
|
615
|
+
<ULoaderProgress :loading="loading" v-bind="stickyHeaderLoaderAttrs" />
|
|
616
616
|
</div>
|
|
617
617
|
|
|
618
618
|
<div ref="table-wrapper" v-bind="tableWrapperAttrs">
|
package/ui.data-table/config.ts
CHANGED
|
@@ -23,7 +23,7 @@ export default /*tw*/ {
|
|
|
23
23
|
},
|
|
24
24
|
},
|
|
25
25
|
},
|
|
26
|
-
stickyHeaderLoader: "{ULoaderProgress}",
|
|
26
|
+
stickyHeaderLoader: "{ULoaderProgress} absolute top-auto bottom-0",
|
|
27
27
|
headerActionsCheckbox: "{UCheckbox}",
|
|
28
28
|
headerActionsCounter: "{>headerCounterBase} -ml-1.5",
|
|
29
29
|
tableWrapper: "border border-gray-200 rounded-dynamic bg-white",
|