@geelato/web-vue 2.58.1 → 2.58.3

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/dist/arco-vue.js CHANGED
@@ -42314,6 +42314,27 @@
42314
42314
  }))],
42315
42315
  thead: slots.thead
42316
42316
  });
42317
+ const VirtualListTable = vue.defineComponent({
42318
+ setup(_props, {
42319
+ attrs,
42320
+ slots: slots2
42321
+ }) {
42322
+ return () => {
42323
+ var _a;
42324
+ return vue.createVNode("table", vue.mergeProps(attrs, {
42325
+ "style": [attrs.style, {
42326
+ tableLayout: "fixed"
42327
+ }],
42328
+ "cellpadding": 0,
42329
+ "cellspacing": 0
42330
+ }), [vue.createVNode(ColGroup, {
42331
+ "dataColumns": dataColumns.value,
42332
+ "operations": operations.value,
42333
+ "columnWidth": columnWidth
42334
+ }, null), (_a = slots2.default) == null ? void 0 : _a.call(slots2)]);
42335
+ };
42336
+ }
42337
+ });
42317
42338
  const renderContent = () => {
42318
42339
  var _a, _b;
42319
42340
  if (splitTable.value) {
@@ -42364,7 +42385,7 @@
42364
42385
  "data": virtualListData.value,
42365
42386
  "itemKey": "_key",
42366
42387
  "component": {
42367
- list: "table",
42388
+ list: VirtualListTable,
42368
42389
  content: "tbody"
42369
42390
  },
42370
42391
  "listAttrs": {