@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/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:
|
|
42388
|
+
list: VirtualListTable,
|
|
42368
42389
|
content: "tbody"
|
|
42369
42390
|
},
|
|
42370
42391
|
"listAttrs": {
|