tsv2-library 1.0.61-alpha.141 → 1.0.61-alpha.143

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.
@@ -17919,7 +17919,7 @@ const datatable = {
17919
17919
  tbody: ({ instance, context }) => ({
17920
17920
  class: [
17921
17921
  // 'border-t border-surface-300 dark:border-surface-600',
17922
- "[&_tr:last-of-type>td]:!border-b-0",
17922
+ // '[&_tr:last-of-type>td]:!border-b-0',
17923
17923
  "[&_tr:last-of-type>td:last-child]:!rounded-br-lg",
17924
17924
  "[&_tr:last-of-type>td:first-child]:!rounded-bl-lg",
17925
17925
  {
@@ -52329,7 +52329,12 @@ const _sfc_main$15 = /* @__PURE__ */ defineComponent({
52329
52329
  withDirectives(createElementVNode("ul", {
52330
52330
  ref: "columnList",
52331
52331
  class: normalizeClass([
52332
- { "grid grid-rows-4 grid-flow-col-dense w-max gap-x-4": _ctx.type === "flat" }
52332
+ {
52333
+ "grid grid-flow-col-dense w-max gap-x-4": _ctx.type === "flat",
52334
+ // TableKey is only used by column setup, not by custom report table
52335
+ "grid-rows-4": _ctx.type === "flat" && !_ctx.tableKey,
52336
+ "grid-rows-10": _ctx.type === "flat" && _ctx.tableKey
52337
+ }
52333
52338
  // { 'flex flex-col': type === 'menu' },
52334
52339
  ]),
52335
52340
  "data-ts-section": "custom-column-flat-list"