@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 +22 -1
- package/dist/arco-vue.js.map +1 -1
- package/dist/arco-vue.min.js +10 -7
- package/dist/arco-vue.min.js.map +1 -1
- package/dist/arco.css +3 -0
- package/dist/arco.min.css +1 -1
- package/es/date-picker/index.d.ts +5 -5
- package/es/date-picker/panels/date/index.d.ts +2 -2
- package/es/date-picker/panels/week/index.d.ts +2 -2
- package/es/date-picker/picker-panel.d.ts +4 -4
- package/es/date-picker/picker.d.ts +4 -4
- package/es/date-picker/range-picker-panel.d.ts +4 -4
- package/es/date-picker/range-picker.d.ts +5 -5
- package/es/index.css +3 -0
- package/es/pagination/index.d.ts +3 -3
- package/es/pagination/pagination.d.ts +1 -1
- package/es/table/style/index.css +3 -0
- package/es/table/style/index.less +3 -3
- package/es/table/table.js +23 -2
- package/es/time-picker/index.d.ts +8 -8
- package/es/time-picker/panel.d.ts +2 -2
- package/es/time-picker/range-panel.d.ts +2 -2
- package/es/time-picker/time-picker.d.ts +4 -4
- package/es/typography/index.d.ts +3 -3
- package/es/typography/title.d.ts +3 -3
- package/json/vetur-attributes.json +2094 -2094
- package/json/vetur-tags.json +754 -754
- package/json/web-types.json +4313 -4313
- package/lib/index.css +3 -0
- package/lib/table/style/index.css +3 -0
- package/lib/table/style/index.less +3 -3
- package/lib/table/table.js +22 -1
- package/package.json +1 -1
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;
|
package/lib/table/table.js
CHANGED
|
@@ -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:
|
|
1475
|
+
list: VirtualListTable,
|
|
1455
1476
|
content: "tbody"
|
|
1456
1477
|
},
|
|
1457
1478
|
"listAttrs": {
|