@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/lib/index.css CHANGED
@@ -14339,6 +14339,9 @@ body[arco-theme='dark'] .arco-radio-button::after {
14339
14339
  .arco-table-editable-row:hover .arco-table-cell-wrap-value {
14340
14340
  border: 1px solid var(--color-neutral-3);
14341
14341
  }
14342
+ .arco-table-cell {
14343
+ word-break: break-all;
14344
+ }
14342
14345
  .arco-table .arco-table-expand-btn {
14343
14346
  display: inline-flex;
14344
14347
  align-items: center;
@@ -205,6 +205,9 @@
205
205
  .arco-table-editable-row:hover .arco-table-cell-wrap-value {
206
206
  border: 1px solid var(--color-neutral-3);
207
207
  }
208
+ .arco-table-cell {
209
+ word-break: break-all;
210
+ }
208
211
  .arco-table .arco-table-expand-btn {
209
212
  display: inline-flex;
210
213
  align-items: center;
@@ -272,9 +272,9 @@
272
272
  }
273
273
  }
274
274
 
275
- //&-cell {
276
- // word-break: break-all;
277
- //}
275
+ &-cell {
276
+ word-break: break-all;
277
+ }
278
278
 
279
279
  // Expand
280
280
  .@{table-prefix-cls}-expand-btn {
@@ -1401,6 +1401,27 @@ var _Table = vue.defineComponent({
1401
1401
  }))],
1402
1402
  thead: slots.thead
1403
1403
  });
1404
+ const VirtualListTable = vue.defineComponent({
1405
+ setup(_props, {
1406
+ attrs,
1407
+ slots: slots2
1408
+ }) {
1409
+ return () => {
1410
+ var _a;
1411
+ return vue.createVNode("table", vue.mergeProps(attrs, {
1412
+ "style": [attrs.style, {
1413
+ tableLayout: "fixed"
1414
+ }],
1415
+ "cellpadding": 0,
1416
+ "cellspacing": 0
1417
+ }), [vue.createVNode(tableColGroup, {
1418
+ "dataColumns": dataColumns.value,
1419
+ "operations": operations.value,
1420
+ "columnWidth": columnWidth
1421
+ }, null), (_a = slots2.default) == null ? void 0 : _a.call(slots2)]);
1422
+ };
1423
+ }
1424
+ });
1404
1425
  const renderContent = () => {
1405
1426
  var _a, _b;
1406
1427
  if (splitTable.value) {
@@ -1451,7 +1472,7 @@ var _Table = vue.defineComponent({
1451
1472
  "data": virtualListData.value,
1452
1473
  "itemKey": "_key",
1453
1474
  "component": {
1454
- list: "table",
1475
+ list: VirtualListTable,
1455
1476
  content: "tbody"
1456
1477
  },
1457
1478
  "listAttrs": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geelato/web-vue",
3
- "version": "2.58.1",
3
+ "version": "2.58.3",
4
4
  "description": "Arco Design Vue 2.0: A Vue.js 3 UI Library",
5
5
  "keywords": [
6
6
  "arco",