@gx-design-vue/pro-table 0.1.81 → 0.1.83

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.
@@ -29790,7 +29790,10 @@ const GProTable = defineComponent({
29790
29790
  virtualScroll: needVirtualScroll.value,
29791
29791
  size: unref(sizeRef),
29792
29792
  scroll: unref(getScrollRef),
29793
- loading: !!unref(getLoading),
29793
+ loading: {
29794
+ spinning: !!unref(getLoading),
29795
+ ...omit$1(props2.loading, "spinning")
29796
+ },
29794
29797
  columns: toRaw(unref(getProColumns).filter((column) => column.show || column.show === void 0)),
29795
29798
  pagination: toRaw(unref(getPaginationInfo)),
29796
29799
  dataSource: unref(getDataSourceRef)