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