tsv2-library 1.0.61-alpha.142 → 1.0.61-alpha.144

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"
@@ -75401,7 +75406,8 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
75401
75406
  label: {},
75402
75407
  mandatory: { type: Boolean },
75403
75408
  invalid: { type: Boolean },
75404
- validatorMessage: {}
75409
+ validatorMessage: {},
75410
+ showInput: { type: Boolean, default: true }
75405
75411
  },
75406
75412
  emits: ["update:modelValue"],
75407
75413
  setup(__props, { emit: __emit }) {
@@ -75437,7 +75443,7 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
75437
75443
  };
75438
75444
  return (_ctx, _cache) => {
75439
75445
  return openBlock(), createElementBlock(Fragment, null, [
75440
- createVNode(_sfc_main$1l, {
75446
+ withDirectives(createVNode(_sfc_main$1l, {
75441
75447
  label: props.label,
75442
75448
  mandatory: props.mandatory
75443
75449
  }, {
@@ -75488,7 +75494,9 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
75488
75494
  }, null, 8, ["message"])
75489
75495
  ]),
75490
75496
  _: 1
75491
- }, 8, ["label", "mandatory"]),
75497
+ }, 8, ["label", "mandatory"]), [
75498
+ [vShow, props.showInput]
75499
+ ]),
75492
75500
  createVNode(TSDialogCoordinate, {
75493
75501
  visible: dialogVisible.value,
75494
75502
  "onUpdate:visible": _cache[1] || (_cache[1] = ($event) => dialogVisible.value = $event),