ll-plus 2.5.18 → 2.5.20

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