@iclips/ui 1.0.57 → 1.0.59

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.
package/dist/index.js CHANGED
@@ -2396,6 +2396,12 @@ function fp({
2396
2396
  label: "Forma de Pagamento",
2397
2397
  value: t.formaPagamento
2398
2398
  }
2399
+ ] : [],
2400
+ ...t.dataPrimeiraParcela ? [
2401
+ {
2402
+ label: "Data da Primeira Parcela",
2403
+ value: a(t.dataPrimeiraParcela)
2404
+ }
2399
2405
  ] : []
2400
2406
  ]
2401
2407
  }
@@ -2410,22 +2416,16 @@ function fp({
2410
2416
  {
2411
2417
  header: "Vencimento",
2412
2418
  key: "dataVencimento",
2413
- width: "25%",
2419
+ width: "30%",
2420
+ align: "left",
2414
2421
  render: (o) => a(o)
2415
2422
  },
2416
2423
  {
2417
2424
  header: "Valor (R$)",
2418
2425
  key: "valor",
2419
- width: "45%",
2426
+ width: "60%",
2420
2427
  align: "right",
2421
2428
  render: (o) => i(o)
2422
- },
2423
- {
2424
- header: "Pago",
2425
- key: "paga",
2426
- width: "20%",
2427
- align: "center",
2428
- render: (o) => o ? "Sim" : "Não"
2429
2429
  }
2430
2430
  ],
2431
2431
  data: t.parcelas,
@@ -2433,7 +2433,7 @@ function fp({
2433
2433
  density: "compact",
2434
2434
  showFooter: !0,
2435
2435
  footerContent: /* @__PURE__ */ b("tr", { className: "bg-gray-100 font-semibold", children: [
2436
- /* @__PURE__ */ l("td", { colSpan: 3, className: "px-2 py-2 text-left text-xs border-t-2 border-gray-300", children: "Total" }),
2436
+ /* @__PURE__ */ l("td", { colSpan: 2, className: "px-2 py-2 text-left text-xs border-t-2 border-gray-300", children: "Total" }),
2437
2437
  /* @__PURE__ */ l("td", { className: "px-2 py-2 text-right text-xs border-t-2 border-gray-300", children: i(t.parcelas.reduce((o, s) => o + s.valor, 0)) })
2438
2438
  ] })
2439
2439
  }