ll-plus 2.4.12 → 2.4.13

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.
Files changed (30) hide show
  1. package/es/components/table/index.d.ts +28 -0
  2. package/es/components/table/src/components/main-table.vue.d.ts +24 -0
  3. package/es/components/table/src/config/main-table.d.ts +11 -0
  4. package/es/components/table/src/config/table.d.ts +2 -0
  5. package/es/components/table/src/table.vue.d.ts +28 -0
  6. package/es/packages/components/table/src/components/main-table.vue2.mjs +291 -277
  7. package/es/packages/components/table/src/components/main-table.vue2.mjs.map +1 -1
  8. package/es/packages/components/table/src/config/main-table.mjs +6 -3
  9. package/es/packages/components/table/src/config/main-table.mjs.map +1 -1
  10. package/index.full.js +296 -279
  11. package/index.full.min.js +6 -2
  12. package/index.full.min.js.map +1 -1
  13. package/index.full.min.mjs +17 -13
  14. package/index.full.min.mjs.map +1 -1
  15. package/index.full.mjs +296 -279
  16. package/lib/components/table/index.d.ts +28 -0
  17. package/lib/components/table/src/components/main-table.vue.d.ts +24 -0
  18. package/lib/components/table/src/config/main-table.d.ts +11 -0
  19. package/lib/components/table/src/config/table.d.ts +2 -0
  20. package/lib/components/table/src/table.vue.d.ts +28 -0
  21. package/lib/packages/components/table/src/components/main-table.vue2.js +290 -276
  22. package/lib/packages/components/table/src/components/main-table.vue2.js.map +1 -1
  23. package/lib/packages/components/table/src/config/main-table.js +6 -3
  24. package/lib/packages/components/table/src/config/main-table.js.map +1 -1
  25. package/package.json +1 -1
  26. package/types/packages/components/table/index.d.ts +28 -0
  27. package/types/packages/components/table/src/components/main-table.vue.d.ts +24 -0
  28. package/types/packages/components/table/src/config/main-table.d.ts +11 -0
  29. package/types/packages/components/table/src/config/table.d.ts +2 -0
  30. package/types/packages/components/table/src/table.vue.d.ts +28 -0
@@ -284,310 +284,324 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
284
284
  const _component_a_popover = vue.resolveComponent("a-popover");
285
285
  const _component_ll_empty = vue.resolveComponent("ll-empty");
286
286
  const _component_a_table = vue.resolveComponent("a-table");
287
- return vue.openBlock(), vue.createBlock(_component_a_table, vue.mergeProps({
288
- class: `${vue.unref(bem).e("main-content")}`,
289
- "row-key": "id"
290
- }, vue.unref(attrs), {
291
- columns: newColumns.value,
292
- "data-source": newDataSource.value,
293
- "expanded-row-keys": newExpandedRowKeys.value,
294
- "custom-row": props.showDrag ? dragCustomRow : _ctx.customRowProps,
295
- pagination: false,
296
- "show-header": "",
297
- onExpand: handleExpand,
298
- onResizeColumn: handleResizeColumn,
299
- onChange: props.change,
300
- onExpandedRowsChange: props.expandedRowsChange
301
- }), vue.createSlots({
302
- headerCell: vue.withCtx((slots) => [
303
- slots.column.key === "operate" && _ctx.showSetting ? (vue.openBlock(), vue.createElementBlock(
304
- "div",
305
- {
306
- key: 0,
307
- class: vue.normalizeClass(`${vue.unref(bem).e("operate")}`)
308
- },
309
- [
310
- vue.createElementVNode(
311
- "span",
312
- null,
313
- vue.toDisplayString(slots.column.title),
314
- 1
315
- /* TEXT */
316
- ),
317
- vue.createVNode(_component_a_popover, {
318
- trigger: "click",
319
- placement: "bottomRight",
320
- "overlay-inner-style": {
321
- padding: "0"
322
- }
323
- }, {
324
- content: vue.withCtx(() => [
287
+ return vue.openBlock(), vue.createElementBlock(
288
+ vue.Fragment,
289
+ null,
290
+ [
291
+ vue.createCommentVNode(` :scroll="{
292
+ scrollToFirstRowOnChange: true,
293
+ x: props?.scroll?.x ? props?.scroll?.x : 'max-content',
294
+ y: props?.scroll?.y ? props?.scroll?.y : '100%'
295
+ }" `),
296
+ vue.createVNode(_component_a_table, vue.mergeProps({
297
+ class: `${vue.unref(bem).e("main-content")}`,
298
+ "row-key": "id"
299
+ }, vue.unref(attrs), {
300
+ columns: newColumns.value,
301
+ "data-source": newDataSource.value,
302
+ "expanded-row-keys": newExpandedRowKeys.value,
303
+ "custom-row": props.showDrag ? dragCustomRow : _ctx.customRowProps,
304
+ pagination: false,
305
+ "show-header": "",
306
+ scroll: _ctx.scroll,
307
+ onExpand: handleExpand,
308
+ onResizeColumn: handleResizeColumn,
309
+ onChange: props.change,
310
+ onExpandedRowsChange: props.expandedRowsChange
311
+ }), vue.createSlots({
312
+ headerCell: vue.withCtx((slots) => [
313
+ slots.column.key === "operate" && _ctx.showSetting ? (vue.openBlock(), vue.createElementBlock(
314
+ "div",
315
+ {
316
+ key: 0,
317
+ class: vue.normalizeClass(`${vue.unref(bem).e("operate")}`)
318
+ },
319
+ [
325
320
  vue.createElementVNode(
326
- "div",
327
- {
328
- class: vue.normalizeClass(`${vue.unref(bem).e("setting-popover")}`)
329
- },
330
- [
331
- vue.createCommentVNode(" \u5934\u90E8 "),
321
+ "span",
322
+ null,
323
+ vue.toDisplayString(slots.column.title),
324
+ 1
325
+ /* TEXT */
326
+ ),
327
+ vue.createVNode(_component_a_popover, {
328
+ trigger: "click",
329
+ placement: "bottomRight",
330
+ "overlay-inner-style": {
331
+ padding: "0"
332
+ }
333
+ }, {
334
+ content: vue.withCtx(() => [
332
335
  vue.createElementVNode(
333
336
  "div",
334
337
  {
335
- class: vue.normalizeClass(`${vue.unref(bem).e("setting-popover-header")}`)
338
+ class: vue.normalizeClass(`${vue.unref(bem).e("setting-popover")}`)
336
339
  },
337
340
  [
338
- vue.createVNode(_component_a_checkbox, {
339
- indeterminate: isIndeterminate.value,
340
- checked: isAllCheck.value,
341
- onChange: handleAllColumnChange
342
- }, {
343
- default: vue.withCtx(() => [
344
- vue.createTextVNode(" \u5217\u5C55\u793A ")
345
- ]),
346
- _: 1
347
- /* STABLE */
348
- }, 8, ["indeterminate", "checked"]),
341
+ vue.createCommentVNode(" \u5934\u90E8 "),
349
342
  vue.createElementVNode(
350
- "span",
343
+ "div",
351
344
  {
352
- class: vue.normalizeClass(`${vue.unref(bem).e("setting-reset-btn")}`),
353
- onClick: handleClickResetBtn
345
+ class: vue.normalizeClass(`${vue.unref(bem).e("setting-popover-header")}`)
354
346
  },
355
- " \u91CD\u7F6E ",
347
+ [
348
+ vue.createVNode(_component_a_checkbox, {
349
+ indeterminate: isIndeterminate.value,
350
+ checked: isAllCheck.value,
351
+ onChange: handleAllColumnChange
352
+ }, {
353
+ default: vue.withCtx(() => [
354
+ vue.createTextVNode(" \u5217\u5C55\u793A ")
355
+ ]),
356
+ _: 1
357
+ /* STABLE */
358
+ }, 8, ["indeterminate", "checked"]),
359
+ vue.createElementVNode(
360
+ "span",
361
+ {
362
+ class: vue.normalizeClass(`${vue.unref(bem).e("setting-reset-btn")}`),
363
+ onClick: handleClickResetBtn
364
+ },
365
+ " \u91CD\u7F6E ",
366
+ 2
367
+ /* CLASS */
368
+ )
369
+ ],
356
370
  2
357
371
  /* CLASS */
358
- )
359
- ],
360
- 2
361
- /* CLASS */
362
- ),
363
- vue.createCommentVNode(" \u5185\u5BB9 "),
364
- vue.createElementVNode(
365
- "div",
366
- {
367
- class: vue.normalizeClass(`${vue.unref(bem).e("setting-popover-content")}`)
368
- },
369
- [
370
- vue.createElementVNode("div", null, [
371
- vue.createVNode(vue.unref(draggable), {
372
- list: settingColumns.value,
373
- "item-key": "key",
374
- group: { name: "g1" },
375
- onChange: dragChange
376
- }, {
377
- item: vue.withCtx(({ element }) => [
378
- vue.createElementVNode(
379
- "div",
380
- {
381
- class: vue.normalizeClass(`${vue.unref(bem).e("setting-popover-menu")}`)
382
- },
383
- [
384
- vue.createCommentVNode(" \u62D6\u62FD "),
385
- vue.createElementVNode(
386
- "div",
387
- {
388
- class: vue.normalizeClass(`flex items-center ${vue.unref(bem).e(
389
- "setting-popover-menu-left"
390
- )}`)
391
- },
392
- [
393
- vue.createVNode(_component_a_button, {
394
- type: "text",
395
- class: vue.normalizeClass(`${vue.unref(bem).e("setting-popover-menu-icon")}`),
396
- style: {
397
- marginright: "5px"
398
- }
399
- }, {
400
- default: vue.withCtx(() => [
401
- vue.createVNode(_component_ll_icon, {
402
- "icon-name": "icon-move",
403
- "class-name": "icon"
404
- })
405
- ]),
406
- _: 1
407
- /* STABLE */
408
- }, 8, ["class"]),
409
- vue.createVNode(_component_a_checkbox, {
410
- checked: element.isCheck,
411
- onChange: (e) => {
412
- handleColumnItemChange(
413
- e.target?.checked,
414
- element
415
- );
416
- }
417
- }, {
418
- default: vue.withCtx(() => [
419
- vue.createTextVNode(
420
- vue.toDisplayString(element.title),
421
- 1
422
- /* TEXT */
423
- )
424
- ]),
425
- _: 2
426
- /* DYNAMIC */
427
- }, 1032, ["checked", "onChange"])
428
- ],
429
- 2
430
- /* CLASS */
431
- ),
372
+ ),
373
+ vue.createCommentVNode(" \u5185\u5BB9 "),
374
+ vue.createElementVNode(
375
+ "div",
376
+ {
377
+ class: vue.normalizeClass(`${vue.unref(bem).e("setting-popover-content")}`)
378
+ },
379
+ [
380
+ vue.createElementVNode("div", null, [
381
+ vue.createVNode(vue.unref(draggable), {
382
+ list: settingColumns.value,
383
+ "item-key": "key",
384
+ group: { name: "g1" },
385
+ onChange: dragChange
386
+ }, {
387
+ item: vue.withCtx(({ element }) => [
432
388
  vue.createElementVNode(
433
389
  "div",
434
390
  {
435
- class: vue.normalizeClass(`flex items-center ${vue.unref(bem).e(
436
- "setting-popover-menu-right"
437
- )}`)
391
+ class: vue.normalizeClass(`${vue.unref(bem).e("setting-popover-menu")}`)
438
392
  },
439
393
  [
440
- vue.createCommentVNode(" \u5DE6\u79FB "),
441
- vue.createVNode(_component_a_button, {
442
- type: "text",
443
- class: vue.normalizeClass(`${vue.unref(bem).e("setting-popover-menu-icon")}`),
444
- onClick: ($event) => handleColumnMove(element, "left")
445
- }, {
446
- default: vue.withCtx(() => [
447
- vue.createVNode(_component_ll_icon, {
448
- "icon-name": "icon-zuoyi",
449
- "class-name": `icon ${element.fixed === "left" ? vue.unref(bem).e("setting-popover-menu-fixed-icon") : ""}`
450
- }, null, 8, ["class-name"])
451
- ]),
452
- _: 2
453
- /* DYNAMIC */
454
- }, 1032, ["class", "onClick"]),
455
- vue.createVNode(_component_a_divider, { type: "vertical" }),
456
- vue.createCommentVNode(" \u53F3\u79FB "),
457
- vue.createVNode(_component_a_button, {
458
- type: "text",
459
- class: vue.normalizeClass(`${vue.unref(bem).e("setting-popover-menu-icon")}`),
460
- onClick: ($event) => handleColumnMove(element, "right")
461
- }, {
462
- default: vue.withCtx(() => [
463
- vue.createVNode(_component_ll_icon, {
464
- "icon-name": "icon-youyi",
465
- "class-name": `icon ${element.fixed === "right" ? vue.unref(bem).e("setting-popover-menu-fixed-icon") : ""}`
466
- }, null, 8, ["class-name"])
467
- ]),
468
- _: 2
469
- /* DYNAMIC */
470
- }, 1032, ["class", "onClick"])
394
+ vue.createCommentVNode(" \u62D6\u62FD "),
395
+ vue.createElementVNode(
396
+ "div",
397
+ {
398
+ class: vue.normalizeClass(`flex items-center ${vue.unref(bem).e(
399
+ "setting-popover-menu-left"
400
+ )}`)
401
+ },
402
+ [
403
+ vue.createVNode(_component_a_button, {
404
+ type: "text",
405
+ class: vue.normalizeClass(`${vue.unref(bem).e("setting-popover-menu-icon")}`),
406
+ style: {
407
+ marginright: "5px"
408
+ }
409
+ }, {
410
+ default: vue.withCtx(() => [
411
+ vue.createVNode(_component_ll_icon, {
412
+ "icon-name": "icon-move",
413
+ "class-name": "icon"
414
+ })
415
+ ]),
416
+ _: 1
417
+ /* STABLE */
418
+ }, 8, ["class"]),
419
+ vue.createVNode(_component_a_checkbox, {
420
+ checked: element.isCheck,
421
+ onChange: (e) => {
422
+ handleColumnItemChange(
423
+ e.target?.checked,
424
+ element
425
+ );
426
+ }
427
+ }, {
428
+ default: vue.withCtx(() => [
429
+ vue.createTextVNode(
430
+ vue.toDisplayString(element.title),
431
+ 1
432
+ /* TEXT */
433
+ )
434
+ ]),
435
+ _: 2
436
+ /* DYNAMIC */
437
+ }, 1032, ["checked", "onChange"])
438
+ ],
439
+ 2
440
+ /* CLASS */
441
+ ),
442
+ vue.createElementVNode(
443
+ "div",
444
+ {
445
+ class: vue.normalizeClass(`flex items-center ${vue.unref(bem).e(
446
+ "setting-popover-menu-right"
447
+ )}`)
448
+ },
449
+ [
450
+ vue.createCommentVNode(" \u5DE6\u79FB "),
451
+ vue.createVNode(_component_a_button, {
452
+ type: "text",
453
+ class: vue.normalizeClass(`${vue.unref(bem).e("setting-popover-menu-icon")}`),
454
+ onClick: ($event) => handleColumnMove(element, "left")
455
+ }, {
456
+ default: vue.withCtx(() => [
457
+ vue.createVNode(_component_ll_icon, {
458
+ "icon-name": "icon-zuoyi",
459
+ "class-name": `icon ${element.fixed === "left" ? vue.unref(bem).e("setting-popover-menu-fixed-icon") : ""}`
460
+ }, null, 8, ["class-name"])
461
+ ]),
462
+ _: 2
463
+ /* DYNAMIC */
464
+ }, 1032, ["class", "onClick"]),
465
+ vue.createVNode(_component_a_divider, { type: "vertical" }),
466
+ vue.createCommentVNode(" \u53F3\u79FB "),
467
+ vue.createVNode(_component_a_button, {
468
+ type: "text",
469
+ class: vue.normalizeClass(`${vue.unref(bem).e("setting-popover-menu-icon")}`),
470
+ onClick: ($event) => handleColumnMove(element, "right")
471
+ }, {
472
+ default: vue.withCtx(() => [
473
+ vue.createVNode(_component_ll_icon, {
474
+ "icon-name": "icon-youyi",
475
+ "class-name": `icon ${element.fixed === "right" ? vue.unref(bem).e("setting-popover-menu-fixed-icon") : ""}`
476
+ }, null, 8, ["class-name"])
477
+ ]),
478
+ _: 2
479
+ /* DYNAMIC */
480
+ }, 1032, ["class", "onClick"])
481
+ ],
482
+ 2
483
+ /* CLASS */
484
+ )
471
485
  ],
472
486
  2
473
487
  /* CLASS */
474
488
  )
475
- ],
476
- 2
477
- /* CLASS */
478
- )
479
- ]),
480
- _: 1
481
- /* STABLE */
482
- }, 8, ["list"])
483
- ])
489
+ ]),
490
+ _: 1
491
+ /* STABLE */
492
+ }, 8, ["list"])
493
+ ])
494
+ ],
495
+ 2
496
+ /* CLASS */
497
+ )
484
498
  ],
485
499
  2
486
500
  /* CLASS */
487
501
  )
488
- ],
489
- 2
490
- /* CLASS */
491
- )
492
- ]),
493
- default: vue.withCtx(() => [
494
- vue.createVNode(_component_a_button, {
495
- type: "text",
496
- class: vue.normalizeClass(`${vue.unref(bem).e("setting-icon")}`)
497
- }, {
502
+ ]),
498
503
  default: vue.withCtx(() => [
499
- vue.createVNode(_component_ll_icon, { "icon-name": "icon-set-line" })
504
+ vue.createVNode(_component_a_button, {
505
+ type: "text",
506
+ class: vue.normalizeClass(`${vue.unref(bem).e("setting-icon")}`)
507
+ }, {
508
+ default: vue.withCtx(() => [
509
+ vue.createVNode(_component_ll_icon, { "icon-name": "icon-set-line" })
510
+ ]),
511
+ _: 1
512
+ /* STABLE */
513
+ }, 8, ["class"])
500
514
  ]),
501
515
  _: 1
502
516
  /* STABLE */
503
- }, 8, ["class"])
504
- ]),
505
- _: 1
506
- /* STABLE */
507
- })
508
- ],
509
- 2
510
- /* CLASS */
511
- )) : vue.unref(lodashEs.has)(slots.column, "RC_TABLE_INTERNAL_COL_DEFINE") ? vue.renderSlot(_ctx.$slots, "expandedTitle", { key: 1 }) : (vue.openBlock(), vue.createElementBlock(
512
- vue.Fragment,
513
- { key: 2 },
514
- [
515
- vue.createTextVNode(
516
- vue.toDisplayString(slots.column.title),
517
- 1
518
- /* TEXT */
519
- )
520
- ],
521
- 64
522
- /* STABLE_FRAGMENT */
523
- )),
524
- vue.createCommentVNode(" \u989D\u5916header\u5355\u5143\u683C\u7684\u63D2\u69FD\u5185\u5BB9 "),
525
- vue.renderSlot(_ctx.$slots, "tableHeaderCell", vue.normalizeProps(vue.guardReactiveProps(slots)))
526
- ]),
527
- bodyCell: vue.withCtx((slots) => [
528
- vue.createCommentVNode(" \u6DFB\u52A0\u5E8F\u5217\u5217 "),
529
- slots.column.key === "#" && _ctx.showIndexColumn ? (vue.openBlock(), vue.createElementBlock(
530
- vue.Fragment,
531
- { key: 0 },
532
- [
533
- vue.createTextVNode(
534
- vue.toDisplayString(slots.index + 1),
535
- 1
536
- /* TEXT */
537
- )
538
- ],
539
- 64
540
- /* STABLE_FRAGMENT */
541
- )) : slots.column.key === "operate" ? (vue.openBlock(), vue.createElementBlock(
542
- vue.Fragment,
543
- { key: 1 },
544
- [
545
- vue.createCommentVNode(" \u6DFB\u52A0\u64CD\u4F5C\u5217 "),
546
- vue.renderSlot(_ctx.$slots, "tableOperate", vue.normalizeProps(vue.guardReactiveProps(slots)))
547
- ],
548
- 64
549
- /* STABLE_FRAGMENT */
550
- )) : vue.createCommentVNode("v-if", true),
551
- vue.createCommentVNode(" \u989D\u5916Body\u5355\u5143\u683C\u7684\u63D2\u69FD\u5185\u5BB9 "),
552
- vue.renderSlot(_ctx.$slots, "tableBodyCell", vue.normalizeProps(vue.guardReactiveProps(slots)))
553
- ]),
554
- emptyText: vue.withCtx(() => [
555
- vue.renderSlot(_ctx.$slots, "emptyText", {}, () => [
556
- vue.createVNode(_component_ll_empty)
557
- ])
558
- ]),
559
- _: 2
560
- /* DYNAMIC */
561
- }, [
562
- _ctx.$slots.expandedRow ? {
563
- name: "expandedRowRender",
564
- fn: vue.withCtx((slots) => [
565
- vue.renderSlot(_ctx.$slots, "expandedRow", vue.normalizeProps(vue.guardReactiveProps(slots)))
566
- ]),
567
- key: "0"
568
- } : void 0,
569
- _ctx.$slots.customFilterDropdown ? {
570
- name: "customFilterDropdown",
571
- fn: vue.withCtx((slots) => [
572
- vue.renderSlot(_ctx.$slots, "customFilterDropdown", vue.normalizeProps(vue.guardReactiveProps(slots)))
573
- ]),
574
- key: "1"
575
- } : void 0,
576
- _ctx.$slots.customFilterIcon ? {
577
- name: "customFilterIcon",
578
- fn: vue.withCtx((slots) => [
579
- vue.renderSlot(_ctx.$slots, "customFilterIcon", vue.normalizeProps(vue.guardReactiveProps(slots)))
580
- ]),
581
- key: "2"
582
- } : void 0,
583
- _ctx.$slots.summary ? {
584
- name: "summary",
585
- fn: vue.withCtx((slots) => [
586
- vue.renderSlot(_ctx.$slots, "summary", vue.normalizeProps(vue.guardReactiveProps(slots)))
587
- ]),
588
- key: "3"
589
- } : void 0
590
- ]), 1040, ["class", "columns", "data-source", "expanded-row-keys", "custom-row", "onChange", "onExpandedRowsChange"]);
517
+ })
518
+ ],
519
+ 2
520
+ /* CLASS */
521
+ )) : vue.unref(lodashEs.has)(slots.column, "RC_TABLE_INTERNAL_COL_DEFINE") ? vue.renderSlot(_ctx.$slots, "expandedTitle", { key: 1 }) : (vue.openBlock(), vue.createElementBlock(
522
+ vue.Fragment,
523
+ { key: 2 },
524
+ [
525
+ vue.createTextVNode(
526
+ vue.toDisplayString(slots.column.title),
527
+ 1
528
+ /* TEXT */
529
+ )
530
+ ],
531
+ 64
532
+ /* STABLE_FRAGMENT */
533
+ )),
534
+ vue.createCommentVNode(" \u989D\u5916header\u5355\u5143\u683C\u7684\u63D2\u69FD\u5185\u5BB9 "),
535
+ vue.renderSlot(_ctx.$slots, "tableHeaderCell", vue.normalizeProps(vue.guardReactiveProps(slots)))
536
+ ]),
537
+ bodyCell: vue.withCtx((slots) => [
538
+ vue.createCommentVNode(" \u6DFB\u52A0\u5E8F\u5217\u5217 "),
539
+ slots.column.key === "#" && _ctx.showIndexColumn ? (vue.openBlock(), vue.createElementBlock(
540
+ vue.Fragment,
541
+ { key: 0 },
542
+ [
543
+ vue.createTextVNode(
544
+ vue.toDisplayString(slots.index + 1),
545
+ 1
546
+ /* TEXT */
547
+ )
548
+ ],
549
+ 64
550
+ /* STABLE_FRAGMENT */
551
+ )) : slots.column.key === "operate" ? (vue.openBlock(), vue.createElementBlock(
552
+ vue.Fragment,
553
+ { key: 1 },
554
+ [
555
+ vue.createCommentVNode(" \u6DFB\u52A0\u64CD\u4F5C\u5217 "),
556
+ vue.renderSlot(_ctx.$slots, "tableOperate", vue.normalizeProps(vue.guardReactiveProps(slots)))
557
+ ],
558
+ 64
559
+ /* STABLE_FRAGMENT */
560
+ )) : vue.createCommentVNode("v-if", true),
561
+ vue.createCommentVNode(" \u989D\u5916Body\u5355\u5143\u683C\u7684\u63D2\u69FD\u5185\u5BB9 "),
562
+ vue.renderSlot(_ctx.$slots, "tableBodyCell", vue.normalizeProps(vue.guardReactiveProps(slots)))
563
+ ]),
564
+ emptyText: vue.withCtx(() => [
565
+ vue.renderSlot(_ctx.$slots, "emptyText", {}, () => [
566
+ vue.createVNode(_component_ll_empty)
567
+ ])
568
+ ]),
569
+ _: 2
570
+ /* DYNAMIC */
571
+ }, [
572
+ _ctx.$slots.expandedRow ? {
573
+ name: "expandedRowRender",
574
+ fn: vue.withCtx((slots) => [
575
+ vue.renderSlot(_ctx.$slots, "expandedRow", vue.normalizeProps(vue.guardReactiveProps(slots)))
576
+ ]),
577
+ key: "0"
578
+ } : void 0,
579
+ _ctx.$slots.customFilterDropdown ? {
580
+ name: "customFilterDropdown",
581
+ fn: vue.withCtx((slots) => [
582
+ vue.renderSlot(_ctx.$slots, "customFilterDropdown", vue.normalizeProps(vue.guardReactiveProps(slots)))
583
+ ]),
584
+ key: "1"
585
+ } : void 0,
586
+ _ctx.$slots.customFilterIcon ? {
587
+ name: "customFilterIcon",
588
+ fn: vue.withCtx((slots) => [
589
+ vue.renderSlot(_ctx.$slots, "customFilterIcon", vue.normalizeProps(vue.guardReactiveProps(slots)))
590
+ ]),
591
+ key: "2"
592
+ } : void 0,
593
+ _ctx.$slots.summary ? {
594
+ name: "summary",
595
+ fn: vue.withCtx((slots) => [
596
+ vue.renderSlot(_ctx.$slots, "summary", vue.normalizeProps(vue.guardReactiveProps(slots)))
597
+ ]),
598
+ key: "3"
599
+ } : void 0
600
+ ]), 1040, ["class", "columns", "data-source", "expanded-row-keys", "custom-row", "scroll", "onChange", "onExpandedRowsChange"])
601
+ ],
602
+ 2112
603
+ /* STABLE_FRAGMENT, DEV_ROOT_FRAGMENT */
604
+ );
591
605
  };
592
606
  }
593
607
  });