trix-app 0.16.5 → 0.16.6
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.cjs +309 -309
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -6970,21 +6970,21 @@ var mergeStyles = (className, style) => {
|
|
|
6970
6970
|
|
|
6971
6971
|
// src/components/primitives/view.tsx
|
|
6972
6972
|
var import_renderer2 = require("@react-pdf/renderer");
|
|
6973
|
-
var jsx_dev_runtime = require("react/jsx-
|
|
6973
|
+
var jsx_dev_runtime = require("react/jsx-runtime");
|
|
6974
6974
|
var View = ({ className, style, hidden = false, ...props }) => {
|
|
6975
6975
|
if (hidden)
|
|
6976
6976
|
return null;
|
|
6977
|
-
return /* @__PURE__ */ jsx_dev_runtime.
|
|
6977
|
+
return /* @__PURE__ */ jsx_dev_runtime.jsx(import_renderer2.View, {
|
|
6978
6978
|
style: mergeStyles(className, style),
|
|
6979
6979
|
...props
|
|
6980
6980
|
}, undefined, false, undefined, this);
|
|
6981
6981
|
};
|
|
6982
6982
|
|
|
6983
6983
|
// src/components/primitives/divider.tsx
|
|
6984
|
-
var jsx_dev_runtime2 = require("react/jsx-
|
|
6984
|
+
var jsx_dev_runtime2 = require("react/jsx-runtime");
|
|
6985
6985
|
var defaultStyle = { backgroundColor: "#E5E5E5" };
|
|
6986
6986
|
var Divider = ({ className, style, ...props }) => {
|
|
6987
|
-
return /* @__PURE__ */ jsx_dev_runtime2.
|
|
6987
|
+
return /* @__PURE__ */ jsx_dev_runtime2.jsx(View, {
|
|
6988
6988
|
className: cn("h-[1px] w-full", className),
|
|
6989
6989
|
style: { ...defaultStyle, ...style ?? {} },
|
|
6990
6990
|
...props
|
|
@@ -6995,7 +6995,7 @@ var import_node_fs2 = __toESM(require("node:fs"));
|
|
|
6995
6995
|
var import_node_path2 = __toESM(require("node:path"));
|
|
6996
6996
|
var import_node_url2 = require("node:url");
|
|
6997
6997
|
var import_renderer3 = require("@react-pdf/renderer");
|
|
6998
|
-
var jsx_dev_runtime3 = require("react/jsx-
|
|
6998
|
+
var jsx_dev_runtime3 = require("react/jsx-runtime");
|
|
6999
6999
|
function isImageSourceSafe(value) {
|
|
7000
7000
|
if (value == null)
|
|
7001
7001
|
return false;
|
|
@@ -7130,45 +7130,45 @@ function Image({ className, style, ...props }) {
|
|
|
7130
7130
|
const effectiveSource = resolvedProps.source ?? resolvedProps.src;
|
|
7131
7131
|
if (!isImageSourceSafe(effectiveSource))
|
|
7132
7132
|
return null;
|
|
7133
|
-
return /* @__PURE__ */ jsx_dev_runtime3.
|
|
7133
|
+
return /* @__PURE__ */ jsx_dev_runtime3.jsx(import_renderer3.Image, {
|
|
7134
7134
|
style: mergeStyles(className, style),
|
|
7135
7135
|
...resolvedProps
|
|
7136
7136
|
}, undefined, false, undefined, this);
|
|
7137
7137
|
}
|
|
7138
7138
|
// src/components/primitives/page.tsx
|
|
7139
7139
|
var import_renderer4 = require("@react-pdf/renderer");
|
|
7140
|
-
var jsx_dev_runtime4 = require("react/jsx-
|
|
7140
|
+
var jsx_dev_runtime4 = require("react/jsx-runtime");
|
|
7141
7141
|
var Page = ({ className, style, hidden = false, ...props }) => {
|
|
7142
7142
|
if (hidden)
|
|
7143
7143
|
return null;
|
|
7144
|
-
return /* @__PURE__ */ jsx_dev_runtime4.
|
|
7144
|
+
return /* @__PURE__ */ jsx_dev_runtime4.jsx(import_renderer4.Page, {
|
|
7145
7145
|
style: mergeStyles(cn("bg-background", className), style),
|
|
7146
7146
|
...props
|
|
7147
7147
|
}, undefined, false, undefined, this);
|
|
7148
7148
|
};
|
|
7149
7149
|
// src/components/primitives/svg.tsx
|
|
7150
7150
|
var import_renderer5 = require("@react-pdf/renderer");
|
|
7151
|
-
var jsx_dev_runtime5 = require("react/jsx-
|
|
7151
|
+
var jsx_dev_runtime5 = require("react/jsx-runtime");
|
|
7152
7152
|
var Svg = ({ ...props }) => {
|
|
7153
|
-
return /* @__PURE__ */ jsx_dev_runtime5.
|
|
7153
|
+
return /* @__PURE__ */ jsx_dev_runtime5.jsx(import_renderer5.Svg, {
|
|
7154
7154
|
...props
|
|
7155
7155
|
}, undefined, false, undefined, this);
|
|
7156
7156
|
};
|
|
7157
7157
|
var Path = ({ ...props }) => {
|
|
7158
|
-
return /* @__PURE__ */ jsx_dev_runtime5.
|
|
7158
|
+
return /* @__PURE__ */ jsx_dev_runtime5.jsx(import_renderer5.Path, {
|
|
7159
7159
|
...props
|
|
7160
7160
|
}, undefined, false, undefined, this);
|
|
7161
7161
|
};
|
|
7162
7162
|
var Rect = ({ ...props }) => {
|
|
7163
|
-
return /* @__PURE__ */ jsx_dev_runtime5.
|
|
7163
|
+
return /* @__PURE__ */ jsx_dev_runtime5.jsx(import_renderer5.Rect, {
|
|
7164
7164
|
...props
|
|
7165
7165
|
}, undefined, false, undefined, this);
|
|
7166
7166
|
};
|
|
7167
7167
|
// src/components/primitives/text.tsx
|
|
7168
7168
|
var import_renderer6 = require("@react-pdf/renderer");
|
|
7169
|
-
var jsx_dev_runtime6 = require("react/jsx-
|
|
7169
|
+
var jsx_dev_runtime6 = require("react/jsx-runtime");
|
|
7170
7170
|
var Text = ({ className, style, ...props }) => {
|
|
7171
|
-
return /* @__PURE__ */ jsx_dev_runtime6.
|
|
7171
|
+
return /* @__PURE__ */ jsx_dev_runtime6.jsx(import_renderer6.Text, {
|
|
7172
7172
|
style: mergeStyles(cn("font-normal text-foreground", className), style),
|
|
7173
7173
|
...props
|
|
7174
7174
|
}, undefined, false, undefined, this);
|
|
@@ -7220,7 +7220,7 @@ var cva = (base, config) => {
|
|
|
7220
7220
|
};
|
|
7221
7221
|
|
|
7222
7222
|
// src/components/ui/badge.tsx
|
|
7223
|
-
var jsx_dev_runtime7 = require("react/jsx-
|
|
7223
|
+
var jsx_dev_runtime7 = require("react/jsx-runtime");
|
|
7224
7224
|
var badgeViewVariants = cva("flex items-center rounded-full px-2.5 py-1", {
|
|
7225
7225
|
variants: {
|
|
7226
7226
|
variant: {
|
|
@@ -7248,12 +7248,12 @@ var badgeTextVariants = cva("text-xs font-regular", {
|
|
|
7248
7248
|
}
|
|
7249
7249
|
});
|
|
7250
7250
|
// src/components/ui/card.tsx
|
|
7251
|
-
var jsx_dev_runtime8 = require("react/jsx-
|
|
7251
|
+
var jsx_dev_runtime8 = require("react/jsx-runtime");
|
|
7252
7252
|
// src/components/primitives/icon.tsx
|
|
7253
|
-
var jsx_dev_runtime9 = require("react/jsx-
|
|
7253
|
+
var jsx_dev_runtime9 = require("react/jsx-runtime");
|
|
7254
7254
|
|
|
7255
7255
|
// src/components/ui/item.tsx
|
|
7256
|
-
var jsx_dev_runtime10 = require("react/jsx-
|
|
7256
|
+
var jsx_dev_runtime10 = require("react/jsx-runtime");
|
|
7257
7257
|
var itemVariants = cva("flex flex-row gap-3 items-center p-3 rounded-lg", {
|
|
7258
7258
|
variants: {
|
|
7259
7259
|
variant: {
|
|
@@ -7306,7 +7306,7 @@ var itemMediaVariants = cva("", {
|
|
|
7306
7306
|
}
|
|
7307
7307
|
});
|
|
7308
7308
|
// src/components/ui/table.tsx
|
|
7309
|
-
var jsx_dev_runtime11 = require("react/jsx-
|
|
7309
|
+
var jsx_dev_runtime11 = require("react/jsx-runtime");
|
|
7310
7310
|
// src/utils/format-currency.ts
|
|
7311
7311
|
function formatBRL(value) {
|
|
7312
7312
|
if (value === null || value === undefined || value === "")
|
|
@@ -7470,45 +7470,45 @@ function mapToDepentTransfersProps(data) {
|
|
|
7470
7470
|
}
|
|
7471
7471
|
|
|
7472
7472
|
// src/templates/income-statement/components/account-info.tsx
|
|
7473
|
-
var jsx_dev_runtime12 = require("react/jsx-
|
|
7473
|
+
var jsx_dev_runtime12 = require("react/jsx-runtime");
|
|
7474
7474
|
function AccountInfo(props) {
|
|
7475
|
-
return /* @__PURE__ */ jsx_dev_runtime12.
|
|
7475
|
+
return /* @__PURE__ */ jsx_dev_runtime12.jsx(View, {
|
|
7476
7476
|
style: { gap: 6 },
|
|
7477
7477
|
children: [
|
|
7478
|
-
/* @__PURE__ */ jsx_dev_runtime12.
|
|
7479
|
-
/* @__PURE__ */ jsx_dev_runtime12.
|
|
7478
|
+
/* @__PURE__ */ jsx_dev_runtime12.jsx(Divider, {}, undefined, false, undefined, this),
|
|
7479
|
+
/* @__PURE__ */ jsx_dev_runtime12.jsx(Text, {
|
|
7480
7480
|
style: { fontSize: 10, fontFamily: "Poppins SemiBold", marginBottom: 6 },
|
|
7481
7481
|
children: props.title
|
|
7482
7482
|
}, undefined, false, undefined, this),
|
|
7483
|
-
/* @__PURE__ */ jsx_dev_runtime12.
|
|
7483
|
+
/* @__PURE__ */ jsx_dev_runtime12.jsx(View, {
|
|
7484
7484
|
className: "flex-row gap-4",
|
|
7485
7485
|
style: { flexWrap: "wrap", marginBottom: 6 },
|
|
7486
7486
|
children: [
|
|
7487
|
-
/* @__PURE__ */ jsx_dev_runtime12.
|
|
7487
|
+
/* @__PURE__ */ jsx_dev_runtime12.jsx(Text, {
|
|
7488
7488
|
style: { fontSize: 9, color: "#919191" },
|
|
7489
7489
|
children: [
|
|
7490
7490
|
"BANCO: ",
|
|
7491
|
-
/* @__PURE__ */ jsx_dev_runtime12.
|
|
7491
|
+
/* @__PURE__ */ jsx_dev_runtime12.jsx(Text, {
|
|
7492
7492
|
style: { fontSize: 9, color: "black" },
|
|
7493
7493
|
children: props?.bankCode
|
|
7494
7494
|
}, undefined, false, undefined, this)
|
|
7495
7495
|
]
|
|
7496
7496
|
}, undefined, true, undefined, this),
|
|
7497
|
-
/* @__PURE__ */ jsx_dev_runtime12.
|
|
7497
|
+
/* @__PURE__ */ jsx_dev_runtime12.jsx(Text, {
|
|
7498
7498
|
style: { fontSize: 9, color: "#919191" },
|
|
7499
7499
|
children: [
|
|
7500
7500
|
"AGÊNCIA: ",
|
|
7501
|
-
/* @__PURE__ */ jsx_dev_runtime12.
|
|
7501
|
+
/* @__PURE__ */ jsx_dev_runtime12.jsx(Text, {
|
|
7502
7502
|
style: { fontSize: 9, color: "black" },
|
|
7503
7503
|
children: props?.bankAgency
|
|
7504
7504
|
}, undefined, false, undefined, this)
|
|
7505
7505
|
]
|
|
7506
7506
|
}, undefined, true, undefined, this),
|
|
7507
|
-
/* @__PURE__ */ jsx_dev_runtime12.
|
|
7507
|
+
/* @__PURE__ */ jsx_dev_runtime12.jsx(Text, {
|
|
7508
7508
|
style: { fontSize: 9, color: "#919191" },
|
|
7509
7509
|
children: [
|
|
7510
7510
|
"CONTA: ",
|
|
7511
|
-
/* @__PURE__ */ jsx_dev_runtime12.
|
|
7511
|
+
/* @__PURE__ */ jsx_dev_runtime12.jsx(Text, {
|
|
7512
7512
|
style: { fontSize: 9, color: "black" },
|
|
7513
7513
|
children: props?.bankAccount
|
|
7514
7514
|
}, undefined, false, undefined, this)
|
|
@@ -7516,63 +7516,63 @@ function AccountInfo(props) {
|
|
|
7516
7516
|
}, undefined, true, undefined, this)
|
|
7517
7517
|
]
|
|
7518
7518
|
}, undefined, true, undefined, this),
|
|
7519
|
-
/* @__PURE__ */ jsx_dev_runtime12.
|
|
7520
|
-
/* @__PURE__ */ jsx_dev_runtime12.
|
|
7519
|
+
/* @__PURE__ */ jsx_dev_runtime12.jsx(Divider, {}, undefined, false, undefined, this),
|
|
7520
|
+
/* @__PURE__ */ jsx_dev_runtime12.jsx(View, {
|
|
7521
7521
|
className: "flex-row justify-between",
|
|
7522
7522
|
style: { paddingVertical: 6 },
|
|
7523
7523
|
children: [
|
|
7524
|
-
/* @__PURE__ */ jsx_dev_runtime12.
|
|
7524
|
+
/* @__PURE__ */ jsx_dev_runtime12.jsx(Text, {
|
|
7525
7525
|
style: { fontSize: 8 },
|
|
7526
7526
|
children: [
|
|
7527
7527
|
"Saldo em ",
|
|
7528
7528
|
props?.pastLastYearBankDate
|
|
7529
7529
|
]
|
|
7530
7530
|
}, undefined, true, undefined, this),
|
|
7531
|
-
/* @__PURE__ */ jsx_dev_runtime12.
|
|
7531
|
+
/* @__PURE__ */ jsx_dev_runtime12.jsx(Text, {
|
|
7532
7532
|
style: { fontSize: 8, fontFamily: "Poppins SemiBold" },
|
|
7533
7533
|
children: props?.pastLastYearBankBalance
|
|
7534
7534
|
}, undefined, false, undefined, this)
|
|
7535
7535
|
]
|
|
7536
7536
|
}, undefined, true, undefined, this),
|
|
7537
|
-
/* @__PURE__ */ jsx_dev_runtime12.
|
|
7538
|
-
/* @__PURE__ */ jsx_dev_runtime12.
|
|
7537
|
+
/* @__PURE__ */ jsx_dev_runtime12.jsx(Divider, {}, undefined, false, undefined, this),
|
|
7538
|
+
/* @__PURE__ */ jsx_dev_runtime12.jsx(View, {
|
|
7539
7539
|
className: "flex-row justify-between",
|
|
7540
7540
|
style: { paddingVertical: 6 },
|
|
7541
7541
|
children: [
|
|
7542
|
-
/* @__PURE__ */ jsx_dev_runtime12.
|
|
7542
|
+
/* @__PURE__ */ jsx_dev_runtime12.jsx(Text, {
|
|
7543
7543
|
style: { fontSize: 8 },
|
|
7544
7544
|
children: [
|
|
7545
7545
|
"Saldo em ",
|
|
7546
7546
|
props?.lastYearBankDate
|
|
7547
7547
|
]
|
|
7548
7548
|
}, undefined, true, undefined, this),
|
|
7549
|
-
/* @__PURE__ */ jsx_dev_runtime12.
|
|
7549
|
+
/* @__PURE__ */ jsx_dev_runtime12.jsx(Text, {
|
|
7550
7550
|
style: { fontSize: 8, fontFamily: "Poppins SemiBold" },
|
|
7551
7551
|
children: props?.lastYearBankBalance
|
|
7552
7552
|
}, undefined, false, undefined, this)
|
|
7553
7553
|
]
|
|
7554
7554
|
}, undefined, true, undefined, this),
|
|
7555
|
-
/* @__PURE__ */ jsx_dev_runtime12.
|
|
7555
|
+
/* @__PURE__ */ jsx_dev_runtime12.jsx(Divider, {}, undefined, false, undefined, this)
|
|
7556
7556
|
]
|
|
7557
7557
|
}, undefined, true, undefined, this);
|
|
7558
7558
|
}
|
|
7559
7559
|
|
|
7560
7560
|
// src/templates/income-statement/components/darf-table.tsx
|
|
7561
|
-
var jsx_dev_runtime13 = require("react/jsx-
|
|
7561
|
+
var jsx_dev_runtime13 = require("react/jsx-runtime");
|
|
7562
7562
|
function CheckIcon({ size = 16 }) {
|
|
7563
|
-
return /* @__PURE__ */ jsx_dev_runtime13.
|
|
7563
|
+
return /* @__PURE__ */ jsx_dev_runtime13.jsx(Svg, {
|
|
7564
7564
|
width: size,
|
|
7565
7565
|
height: size,
|
|
7566
7566
|
viewBox: "0 0 24 24",
|
|
7567
7567
|
children: [
|
|
7568
|
-
/* @__PURE__ */ jsx_dev_runtime13.
|
|
7568
|
+
/* @__PURE__ */ jsx_dev_runtime13.jsx(Rect, {
|
|
7569
7569
|
width: 24,
|
|
7570
7570
|
height: 24,
|
|
7571
7571
|
fill: "#4CAF50",
|
|
7572
7572
|
rx: 3,
|
|
7573
7573
|
ry: 3
|
|
7574
7574
|
}, undefined, false, undefined, this),
|
|
7575
|
-
/* @__PURE__ */ jsx_dev_runtime13.
|
|
7575
|
+
/* @__PURE__ */ jsx_dev_runtime13.jsx(Path, {
|
|
7576
7576
|
d: "M6 12L10 16L18 8",
|
|
7577
7577
|
fill: "none",
|
|
7578
7578
|
stroke: "#ffffff",
|
|
@@ -7587,14 +7587,14 @@ var tableHeaderTextStyle = { color: "#00E547", fontSize: 8 };
|
|
|
7587
7587
|
var tableCellStyle = { fontSize: 8 };
|
|
7588
7588
|
var zebraRow = (i) => i % 2 === 1 ? "#D6FFE0" : "transparent";
|
|
7589
7589
|
function DarfTable(props) {
|
|
7590
|
-
return /* @__PURE__ */ jsx_dev_runtime13.
|
|
7590
|
+
return /* @__PURE__ */ jsx_dev_runtime13.jsx(View, {
|
|
7591
7591
|
className: "gap-1",
|
|
7592
7592
|
children: [
|
|
7593
|
-
/* @__PURE__ */ jsx_dev_runtime13.
|
|
7593
|
+
/* @__PURE__ */ jsx_dev_runtime13.jsx(View, {
|
|
7594
7594
|
className: "gap-1 rounded-sm",
|
|
7595
7595
|
style: { backgroundColor: "#0F1434", paddingVertical: 6, paddingHorizontal: 7 },
|
|
7596
7596
|
children: [
|
|
7597
|
-
/* @__PURE__ */ jsx_dev_runtime13.
|
|
7597
|
+
/* @__PURE__ */ jsx_dev_runtime13.jsx(Text, {
|
|
7598
7598
|
className: "text-center",
|
|
7599
7599
|
style: { fontSize: 11, color: "#00E547" },
|
|
7600
7600
|
children: [
|
|
@@ -7602,24 +7602,24 @@ function DarfTable(props) {
|
|
|
7602
7602
|
props.year
|
|
7603
7603
|
]
|
|
7604
7604
|
}, undefined, true, undefined, this),
|
|
7605
|
-
/* @__PURE__ */ jsx_dev_runtime13.
|
|
7605
|
+
/* @__PURE__ */ jsx_dev_runtime13.jsx(Divider, {
|
|
7606
7606
|
style: { backgroundColor: "rgba(255,255,255,0.25)" }
|
|
7607
7607
|
}, undefined, false, undefined, this),
|
|
7608
|
-
/* @__PURE__ */ jsx_dev_runtime13.
|
|
7608
|
+
/* @__PURE__ */ jsx_dev_runtime13.jsx(View, {
|
|
7609
7609
|
className: "flex-row items-center justify-between",
|
|
7610
7610
|
style: { flexWrap: "nowrap" },
|
|
7611
7611
|
children: [
|
|
7612
|
-
/* @__PURE__ */ jsx_dev_runtime13.
|
|
7612
|
+
/* @__PURE__ */ jsx_dev_runtime13.jsx(Text, {
|
|
7613
7613
|
className: "flex-1 text-center",
|
|
7614
7614
|
style: { ...tableHeaderTextStyle, textAlign: "center" },
|
|
7615
7615
|
children: "Mês"
|
|
7616
7616
|
}, undefined, false, undefined, this),
|
|
7617
|
-
/* @__PURE__ */ jsx_dev_runtime13.
|
|
7617
|
+
/* @__PURE__ */ jsx_dev_runtime13.jsx(Text, {
|
|
7618
7618
|
className: "flex-1 text-center",
|
|
7619
7619
|
style: { ...tableHeaderTextStyle, textAlign: "center" },
|
|
7620
7620
|
children: "Darf Gerada"
|
|
7621
7621
|
}, undefined, false, undefined, this),
|
|
7622
|
-
/* @__PURE__ */ jsx_dev_runtime13.
|
|
7622
|
+
/* @__PURE__ */ jsx_dev_runtime13.jsx(Text, {
|
|
7623
7623
|
className: "flex-1 text-center",
|
|
7624
7624
|
style: { ...tableHeaderTextStyle, textAlign: "center" },
|
|
7625
7625
|
children: "Darf Paga"
|
|
@@ -7628,32 +7628,32 @@ function DarfTable(props) {
|
|
|
7628
7628
|
}, undefined, true, undefined, this)
|
|
7629
7629
|
]
|
|
7630
7630
|
}, undefined, true, undefined, this),
|
|
7631
|
-
/* @__PURE__ */ jsx_dev_runtime13.
|
|
7632
|
-
children: props.data.map((item2, index) => /* @__PURE__ */ jsx_dev_runtime13.
|
|
7631
|
+
/* @__PURE__ */ jsx_dev_runtime13.jsx(View, {
|
|
7632
|
+
children: props.data.map((item2, index) => /* @__PURE__ */ jsx_dev_runtime13.jsx(View, {
|
|
7633
7633
|
break: false,
|
|
7634
7634
|
wrap: false,
|
|
7635
7635
|
className: "flex-row items-center justify-between",
|
|
7636
7636
|
style: { backgroundColor: zebraRow(index), paddingVertical: 4, paddingHorizontal: 7 },
|
|
7637
7637
|
children: [
|
|
7638
|
-
/* @__PURE__ */ jsx_dev_runtime13.
|
|
7638
|
+
/* @__PURE__ */ jsx_dev_runtime13.jsx(View, {
|
|
7639
7639
|
className: "flex-1",
|
|
7640
|
-
children: /* @__PURE__ */ jsx_dev_runtime13.
|
|
7640
|
+
children: /* @__PURE__ */ jsx_dev_runtime13.jsx(Text, {
|
|
7641
7641
|
className: "text-center",
|
|
7642
7642
|
style: tableCellStyle,
|
|
7643
7643
|
children: item2.month
|
|
7644
7644
|
}, undefined, false, undefined, this)
|
|
7645
7645
|
}, undefined, false, undefined, this),
|
|
7646
|
-
/* @__PURE__ */ jsx_dev_runtime13.
|
|
7646
|
+
/* @__PURE__ */ jsx_dev_runtime13.jsx(View, {
|
|
7647
7647
|
className: "flex-1",
|
|
7648
|
-
children: /* @__PURE__ */ jsx_dev_runtime13.
|
|
7648
|
+
children: /* @__PURE__ */ jsx_dev_runtime13.jsx(Text, {
|
|
7649
7649
|
className: "text-center",
|
|
7650
7650
|
style: tableCellStyle,
|
|
7651
7651
|
children: item2.darfGenerated
|
|
7652
7652
|
}, undefined, false, undefined, this)
|
|
7653
7653
|
}, undefined, false, undefined, this),
|
|
7654
|
-
/* @__PURE__ */ jsx_dev_runtime13.
|
|
7654
|
+
/* @__PURE__ */ jsx_dev_runtime13.jsx(View, {
|
|
7655
7655
|
className: "flex-1 items-center justify-center",
|
|
7656
|
-
children: item2.darfPaid ? /* @__PURE__ */ jsx_dev_runtime13.
|
|
7656
|
+
children: item2.darfPaid ? /* @__PURE__ */ jsx_dev_runtime13.jsx(CheckIcon, {
|
|
7657
7657
|
size: 10
|
|
7658
7658
|
}, undefined, false, undefined, this) : null
|
|
7659
7659
|
}, undefined, false, undefined, this)
|
|
@@ -7666,48 +7666,48 @@ function DarfTable(props) {
|
|
|
7666
7666
|
|
|
7667
7667
|
// src/templates/income-statement/context.tsx
|
|
7668
7668
|
var import_react = require("react");
|
|
7669
|
-
var jsx_dev_runtime14 = require("react/jsx-
|
|
7669
|
+
var jsx_dev_runtime14 = require("react/jsx-runtime");
|
|
7670
7670
|
var DataContext = import_react.createContext(null);
|
|
7671
7671
|
function DataProvider({
|
|
7672
7672
|
children,
|
|
7673
7673
|
initial
|
|
7674
7674
|
}) {
|
|
7675
|
-
return /* @__PURE__ */ jsx_dev_runtime14.
|
|
7675
|
+
return /* @__PURE__ */ jsx_dev_runtime14.jsx(DataContext.Provider, {
|
|
7676
7676
|
value: initial,
|
|
7677
7677
|
children
|
|
7678
7678
|
}, undefined, false, undefined, this);
|
|
7679
7679
|
}
|
|
7680
7680
|
|
|
7681
7681
|
// src/templates/income-statement/components/depent-transfers.tsx
|
|
7682
|
-
var jsx_dev_runtime15 = require("react/jsx-
|
|
7682
|
+
var jsx_dev_runtime15 = require("react/jsx-runtime");
|
|
7683
7683
|
var tableHeaderTextStyle2 = { color: "#00E547", fontSize: 8 };
|
|
7684
7684
|
var tableCellStyle2 = { fontSize: 8 };
|
|
7685
7685
|
var zebraRow2 = (i) => i % 2 === 1 ? "#D6FFE0" : "transparent";
|
|
7686
7686
|
function DepentTransfers({ title, data = [] }) {
|
|
7687
|
-
return /* @__PURE__ */ jsx_dev_runtime15.
|
|
7687
|
+
return /* @__PURE__ */ jsx_dev_runtime15.jsx(View, {
|
|
7688
7688
|
className: "gap-1",
|
|
7689
7689
|
children: [
|
|
7690
|
-
/* @__PURE__ */ jsx_dev_runtime15.
|
|
7690
|
+
/* @__PURE__ */ jsx_dev_runtime15.jsx(View, {
|
|
7691
7691
|
className: "gap-1 rounded-sm",
|
|
7692
7692
|
style: { backgroundColor: "#0F1434", paddingVertical: 6, paddingHorizontal: 7 },
|
|
7693
7693
|
children: [
|
|
7694
|
-
/* @__PURE__ */ jsx_dev_runtime15.
|
|
7694
|
+
/* @__PURE__ */ jsx_dev_runtime15.jsx(Text, {
|
|
7695
7695
|
className: "text-center",
|
|
7696
7696
|
style: { fontSize: 11, color: "#00E547" },
|
|
7697
7697
|
children: title
|
|
7698
7698
|
}, undefined, false, undefined, this),
|
|
7699
|
-
/* @__PURE__ */ jsx_dev_runtime15.
|
|
7699
|
+
/* @__PURE__ */ jsx_dev_runtime15.jsx(Divider, {
|
|
7700
7700
|
style: { backgroundColor: "rgba(255,255,255,0.25)" }
|
|
7701
7701
|
}, undefined, false, undefined, this),
|
|
7702
|
-
/* @__PURE__ */ jsx_dev_runtime15.
|
|
7702
|
+
/* @__PURE__ */ jsx_dev_runtime15.jsx(View, {
|
|
7703
7703
|
className: "flex-row items-center gap-1",
|
|
7704
7704
|
children: [
|
|
7705
|
-
/* @__PURE__ */ jsx_dev_runtime15.
|
|
7705
|
+
/* @__PURE__ */ jsx_dev_runtime15.jsx(Text, {
|
|
7706
7706
|
className: "w-1/2 text-center",
|
|
7707
7707
|
style: tableHeaderTextStyle2,
|
|
7708
7708
|
children: "CPF"
|
|
7709
7709
|
}, undefined, false, undefined, this),
|
|
7710
|
-
/* @__PURE__ */ jsx_dev_runtime15.
|
|
7710
|
+
/* @__PURE__ */ jsx_dev_runtime15.jsx(Text, {
|
|
7711
7711
|
className: "w-1/2 text-center",
|
|
7712
7712
|
style: tableHeaderTextStyle2,
|
|
7713
7713
|
children: "Valor Total Transferência"
|
|
@@ -7716,38 +7716,38 @@ function DepentTransfers({ title, data = [] }) {
|
|
|
7716
7716
|
}, undefined, true, undefined, this)
|
|
7717
7717
|
]
|
|
7718
7718
|
}, undefined, true, undefined, this),
|
|
7719
|
-
/* @__PURE__ */ jsx_dev_runtime15.
|
|
7719
|
+
/* @__PURE__ */ jsx_dev_runtime15.jsx(View, {
|
|
7720
7720
|
children: [
|
|
7721
|
-
data.map((t, idx) => /* @__PURE__ */ jsx_dev_runtime15.
|
|
7721
|
+
data.map((t, idx) => /* @__PURE__ */ jsx_dev_runtime15.jsx(View, {
|
|
7722
7722
|
break: false,
|
|
7723
7723
|
wrap: false,
|
|
7724
7724
|
className: "flex-row items-center gap-1",
|
|
7725
7725
|
style: { backgroundColor: zebraRow2(idx), paddingVertical: 4, paddingHorizontal: 7 },
|
|
7726
7726
|
children: [
|
|
7727
|
-
/* @__PURE__ */ jsx_dev_runtime15.
|
|
7727
|
+
/* @__PURE__ */ jsx_dev_runtime15.jsx(Text, {
|
|
7728
7728
|
className: "w-1/2 text-center",
|
|
7729
7729
|
style: tableCellStyle2,
|
|
7730
7730
|
children: t.document
|
|
7731
7731
|
}, undefined, false, undefined, this),
|
|
7732
|
-
/* @__PURE__ */ jsx_dev_runtime15.
|
|
7732
|
+
/* @__PURE__ */ jsx_dev_runtime15.jsx(Text, {
|
|
7733
7733
|
className: "w-1/2 text-center",
|
|
7734
7734
|
style: tableCellStyle2,
|
|
7735
7735
|
children: t.value
|
|
7736
7736
|
}, undefined, false, undefined, this)
|
|
7737
7737
|
]
|
|
7738
7738
|
}, idx, true, undefined, this)),
|
|
7739
|
-
data.length === 0 && /* @__PURE__ */ jsx_dev_runtime15.
|
|
7739
|
+
data.length === 0 && /* @__PURE__ */ jsx_dev_runtime15.jsx(View, {
|
|
7740
7740
|
break: false,
|
|
7741
7741
|
wrap: false,
|
|
7742
7742
|
className: "flex-row items-center gap-1",
|
|
7743
7743
|
style: { paddingVertical: 4, paddingHorizontal: 7 },
|
|
7744
7744
|
children: [
|
|
7745
|
-
/* @__PURE__ */ jsx_dev_runtime15.
|
|
7745
|
+
/* @__PURE__ */ jsx_dev_runtime15.jsx(Text, {
|
|
7746
7746
|
className: "w-1/2 text-center",
|
|
7747
7747
|
style: tableCellStyle2,
|
|
7748
7748
|
children: "-"
|
|
7749
7749
|
}, undefined, false, undefined, this),
|
|
7750
|
-
/* @__PURE__ */ jsx_dev_runtime15.
|
|
7750
|
+
/* @__PURE__ */ jsx_dev_runtime15.jsx(Text, {
|
|
7751
7751
|
className: "w-1/2 text-center",
|
|
7752
7752
|
style: tableCellStyle2,
|
|
7753
7753
|
children: "R$ 0,00"
|
|
@@ -7770,72 +7770,72 @@ var instructionTitleStyle = { fontSize: 7, lineHeight: 1.4, ...boldStyle };
|
|
|
7770
7770
|
var instructionBlockStyle = { marginTop: 4, marginBottom: 6, gap: 12 };
|
|
7771
7771
|
|
|
7772
7772
|
// src/templates/income-statement/components/fiis-table.tsx
|
|
7773
|
-
var jsx_dev_runtime16 = require("react/jsx-
|
|
7773
|
+
var jsx_dev_runtime16 = require("react/jsx-runtime");
|
|
7774
7774
|
var tableHeaderStyle = { backgroundColor: "#0F1434", paddingVertical: 5, paddingHorizontal: 7 };
|
|
7775
7775
|
var tableHeaderTextStyle3 = { color: "#00E547", fontSize: 8 };
|
|
7776
7776
|
var tableCellStyle3 = { fontSize: 8 };
|
|
7777
7777
|
var zebraRow3 = (i) => i % 2 === 1 ? "#D6FFE0" : "transparent";
|
|
7778
7778
|
function FiisTable(props) {
|
|
7779
|
-
return /* @__PURE__ */ jsx_dev_runtime16.
|
|
7779
|
+
return /* @__PURE__ */ jsx_dev_runtime16.jsx(View, {
|
|
7780
7780
|
className: "gap-1",
|
|
7781
7781
|
children: [
|
|
7782
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7782
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(Text, {
|
|
7783
7783
|
className: "text-center",
|
|
7784
7784
|
style: { fontSize: 11, ...boldStyle },
|
|
7785
7785
|
children: props?.title
|
|
7786
7786
|
}, undefined, false, undefined, this),
|
|
7787
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7788
|
-
props.data?.map((item2, index) => /* @__PURE__ */ jsx_dev_runtime16.
|
|
7787
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(Divider, {}, undefined, false, undefined, this),
|
|
7788
|
+
props.data?.map((item2, index) => /* @__PURE__ */ jsx_dev_runtime16.jsx(View, {
|
|
7789
7789
|
className: "gap-2",
|
|
7790
7790
|
children: [
|
|
7791
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7791
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(View, {
|
|
7792
7792
|
className: "flex-row justify-between",
|
|
7793
7793
|
style: { gap: 12, marginBottom: 6, marginTop: 4 },
|
|
7794
7794
|
children: [
|
|
7795
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7795
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(View, {
|
|
7796
7796
|
className: "flex-1",
|
|
7797
7797
|
style: { gap: 4 },
|
|
7798
7798
|
children: [
|
|
7799
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7799
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(View, {
|
|
7800
7800
|
children: [
|
|
7801
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7801
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(Text, {
|
|
7802
7802
|
className: "text-left",
|
|
7803
7803
|
style: instructionTitleStyle,
|
|
7804
7804
|
children: "Identificação da Fonte Pagadora"
|
|
7805
7805
|
}, undefined, false, undefined, this),
|
|
7806
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7806
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(Text, {
|
|
7807
7807
|
className: "text-left font-normal",
|
|
7808
7808
|
style: { fontSize: 7 },
|
|
7809
7809
|
children: item2.payerName
|
|
7810
7810
|
}, undefined, false, undefined, this)
|
|
7811
7811
|
]
|
|
7812
7812
|
}, undefined, true, undefined, this),
|
|
7813
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7813
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(Text, {
|
|
7814
7814
|
className: "text-left",
|
|
7815
7815
|
style: { ...instructionTitleStyle, marginTop: 4 },
|
|
7816
7816
|
children: 'Bens e Direitos, selecione o grupo "07 - Fundos" e depois código"03 - Fundos Imobiliários(FIIs)"'
|
|
7817
7817
|
}, undefined, false, undefined, this)
|
|
7818
7818
|
]
|
|
7819
7819
|
}, undefined, true, undefined, this),
|
|
7820
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7820
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(View, {
|
|
7821
7821
|
className: "flex-1",
|
|
7822
7822
|
style: { gap: 4 },
|
|
7823
7823
|
children: [
|
|
7824
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7824
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(View, {
|
|
7825
7825
|
children: [
|
|
7826
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7826
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(Text, {
|
|
7827
7827
|
className: "text-left",
|
|
7828
7828
|
style: instructionTitleStyle,
|
|
7829
7829
|
children: "CNPJ"
|
|
7830
7830
|
}, undefined, false, undefined, this),
|
|
7831
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7831
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(Text, {
|
|
7832
7832
|
className: "text-left font-normal",
|
|
7833
7833
|
style: { fontSize: 7 },
|
|
7834
7834
|
children: item2.taxIdentifier
|
|
7835
7835
|
}, undefined, false, undefined, this)
|
|
7836
7836
|
]
|
|
7837
7837
|
}, undefined, true, undefined, this),
|
|
7838
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7838
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(Text, {
|
|
7839
7839
|
className: "flex-1 text-left",
|
|
7840
7840
|
style: { ...instructionTitleStyle, marginTop: 4 },
|
|
7841
7841
|
children: 'Rendimentos Isentos e Não tributáveis, utilizar código "99 - Outros" (não há código específico para FIIs)"'
|
|
@@ -7844,28 +7844,28 @@ function FiisTable(props) {
|
|
|
7844
7844
|
}, undefined, true, undefined, this)
|
|
7845
7845
|
]
|
|
7846
7846
|
}, undefined, true, undefined, this),
|
|
7847
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7847
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(View, {
|
|
7848
7848
|
children: [
|
|
7849
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7849
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(View, {
|
|
7850
7850
|
className: "flex-row gap-1 rounded-sm",
|
|
7851
7851
|
style: { ...tableHeaderStyle, flexWrap: "nowrap" },
|
|
7852
7852
|
children: [
|
|
7853
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7853
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(Text, {
|
|
7854
7854
|
className: "text-center",
|
|
7855
7855
|
style: { ...tableHeaderTextStyle3, width: 80, minWidth: 80, textAlign: "center" },
|
|
7856
7856
|
children: "Código Ibovespa"
|
|
7857
7857
|
}, undefined, false, undefined, this),
|
|
7858
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7858
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(Text, {
|
|
7859
7859
|
className: "flex-1 text-center",
|
|
7860
7860
|
style: { ...tableHeaderTextStyle3, textAlign: "center" },
|
|
7861
7861
|
children: "CNPJ"
|
|
7862
7862
|
}, undefined, false, undefined, this),
|
|
7863
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7863
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(Text, {
|
|
7864
7864
|
className: "text-center",
|
|
7865
7865
|
style: { ...tableHeaderTextStyle3, width: 60, minWidth: 60, textAlign: "center" },
|
|
7866
7866
|
children: "Quantidade"
|
|
7867
7867
|
}, undefined, false, undefined, this),
|
|
7868
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7868
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(Text, {
|
|
7869
7869
|
className: "text-center",
|
|
7870
7870
|
style: { ...tableHeaderTextStyle3, width: 90, minWidth: 90, textAlign: "center" },
|
|
7871
7871
|
children: [
|
|
@@ -7873,7 +7873,7 @@ function FiisTable(props) {
|
|
|
7873
7873
|
item2.yearBeforeLastDate
|
|
7874
7874
|
]
|
|
7875
7875
|
}, undefined, true, undefined, this),
|
|
7876
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7876
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(Text, {
|
|
7877
7877
|
className: "text-center",
|
|
7878
7878
|
style: { ...tableHeaderTextStyle3, width: 90, minWidth: 90, textAlign: "center" },
|
|
7879
7879
|
children: [
|
|
@@ -7881,46 +7881,46 @@ function FiisTable(props) {
|
|
|
7881
7881
|
item2.lastYearDate
|
|
7882
7882
|
]
|
|
7883
7883
|
}, undefined, true, undefined, this),
|
|
7884
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7884
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(Text, {
|
|
7885
7885
|
className: "text-center",
|
|
7886
7886
|
style: { ...tableHeaderTextStyle3, width: 100, minWidth: 100, textAlign: "center" },
|
|
7887
7887
|
children: "Rendimento recebido"
|
|
7888
7888
|
}, undefined, false, undefined, this)
|
|
7889
7889
|
]
|
|
7890
7890
|
}, undefined, true, undefined, this),
|
|
7891
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7892
|
-
children: item2.assets.map((asset, aidx) => /* @__PURE__ */ jsx_dev_runtime16.
|
|
7891
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(View, {
|
|
7892
|
+
children: item2.assets.map((asset, aidx) => /* @__PURE__ */ jsx_dev_runtime16.jsx(View, {
|
|
7893
7893
|
break: false,
|
|
7894
7894
|
wrap: false,
|
|
7895
7895
|
className: "flex-row gap-1 rounded-sm",
|
|
7896
7896
|
style: { backgroundColor: zebraRow3(aidx), paddingVertical: 4, paddingHorizontal: 7 },
|
|
7897
7897
|
children: [
|
|
7898
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7898
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(Text, {
|
|
7899
7899
|
className: "text-center",
|
|
7900
7900
|
style: { ...tableCellStyle3, width: 80, minWidth: 80 },
|
|
7901
7901
|
children: asset.code
|
|
7902
7902
|
}, undefined, false, undefined, this),
|
|
7903
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7903
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(Text, {
|
|
7904
7904
|
className: "flex-1 text-center",
|
|
7905
7905
|
style: tableCellStyle3,
|
|
7906
7906
|
children: asset.taxIdentifier
|
|
7907
7907
|
}, undefined, false, undefined, this),
|
|
7908
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7908
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(Text, {
|
|
7909
7909
|
className: "w-[60px] text-center",
|
|
7910
7910
|
style: tableCellStyle3,
|
|
7911
7911
|
children: asset.quantity
|
|
7912
7912
|
}, undefined, false, undefined, this),
|
|
7913
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7913
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(Text, {
|
|
7914
7914
|
className: "w-[90px] text-center",
|
|
7915
7915
|
style: tableCellStyle3,
|
|
7916
7916
|
children: asset.balanceYearBeforeLast
|
|
7917
7917
|
}, undefined, false, undefined, this),
|
|
7918
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7918
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(Text, {
|
|
7919
7919
|
className: "w-[90px] text-center",
|
|
7920
7920
|
style: tableCellStyle3,
|
|
7921
7921
|
children: asset.balanceLastYear
|
|
7922
7922
|
}, undefined, false, undefined, this),
|
|
7923
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7923
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(Text, {
|
|
7924
7924
|
className: "w-[100px] text-center",
|
|
7925
7925
|
style: tableCellStyle3,
|
|
7926
7926
|
children: asset.incomeReceived
|
|
@@ -7930,49 +7930,49 @@ function FiisTable(props) {
|
|
|
7930
7930
|
}, undefined, false, undefined, this)
|
|
7931
7931
|
]
|
|
7932
7932
|
}, undefined, true, undefined, this),
|
|
7933
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7933
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(View, {
|
|
7934
7934
|
className: "flex-row items-center",
|
|
7935
7935
|
style: { ...footerSpacing },
|
|
7936
7936
|
children: [
|
|
7937
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7937
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(View, {
|
|
7938
7938
|
style: { flex: 1, alignItems: "flex-start" },
|
|
7939
|
-
children: item2.positions.length >= 2 && /* @__PURE__ */ jsx_dev_runtime16.
|
|
7939
|
+
children: item2.positions.length >= 2 && /* @__PURE__ */ jsx_dev_runtime16.jsx(Text, {
|
|
7940
7940
|
style: { fontSize: 7 },
|
|
7941
7941
|
children: [
|
|
7942
7942
|
"Posição em ",
|
|
7943
7943
|
item2.positions[0].date,
|
|
7944
7944
|
": ",
|
|
7945
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7945
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(Text, {
|
|
7946
7946
|
style: { ...boldStyle },
|
|
7947
7947
|
children: item2.positions[0].balance
|
|
7948
7948
|
}, undefined, false, undefined, this)
|
|
7949
7949
|
]
|
|
7950
7950
|
}, undefined, true, undefined, this)
|
|
7951
7951
|
}, undefined, false, undefined, this),
|
|
7952
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7952
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(View, {
|
|
7953
7953
|
style: { flex: 1, alignItems: "center" },
|
|
7954
|
-
children: item2.positions.length >= 1 && /* @__PURE__ */ jsx_dev_runtime16.
|
|
7954
|
+
children: item2.positions.length >= 1 && /* @__PURE__ */ jsx_dev_runtime16.jsx(Text, {
|
|
7955
7955
|
style: { fontSize: 7 },
|
|
7956
7956
|
children: [
|
|
7957
7957
|
"Posição em ",
|
|
7958
7958
|
item2.positions[item2.positions.length - 1].date,
|
|
7959
7959
|
": ",
|
|
7960
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7960
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(Text, {
|
|
7961
7961
|
style: { ...boldStyle },
|
|
7962
7962
|
children: item2.positions[item2.positions.length - 1].balance
|
|
7963
7963
|
}, undefined, false, undefined, this)
|
|
7964
7964
|
]
|
|
7965
7965
|
}, undefined, true, undefined, this)
|
|
7966
7966
|
}, undefined, false, undefined, this),
|
|
7967
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7967
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(View, {
|
|
7968
7968
|
style: { flex: 1, alignItems: "flex-end" },
|
|
7969
|
-
children: /* @__PURE__ */ jsx_dev_runtime16.
|
|
7969
|
+
children: /* @__PURE__ */ jsx_dev_runtime16.jsx(Text, {
|
|
7970
7970
|
style: { fontSize: 7 },
|
|
7971
7971
|
children: [
|
|
7972
7972
|
"Renda em ",
|
|
7973
7973
|
item2.lastYearDate,
|
|
7974
7974
|
": ",
|
|
7975
|
-
/* @__PURE__ */ jsx_dev_runtime16.
|
|
7975
|
+
/* @__PURE__ */ jsx_dev_runtime16.jsx(Text, {
|
|
7976
7976
|
style: { ...boldStyle },
|
|
7977
7977
|
children: item2.totalIncome
|
|
7978
7978
|
}, undefined, false, undefined, this)
|
|
@@ -7981,7 +7981,7 @@ function FiisTable(props) {
|
|
|
7981
7981
|
}, undefined, false, undefined, this)
|
|
7982
7982
|
]
|
|
7983
7983
|
}, undefined, true, undefined, this),
|
|
7984
|
-
index < props.data.length - 1 && /* @__PURE__ */ jsx_dev_runtime16.
|
|
7984
|
+
index < props.data.length - 1 && /* @__PURE__ */ jsx_dev_runtime16.jsx(Divider, {}, undefined, false, undefined, this)
|
|
7985
7985
|
]
|
|
7986
7986
|
}, index, true, undefined, this))
|
|
7987
7987
|
]
|
|
@@ -7989,25 +7989,25 @@ function FiisTable(props) {
|
|
|
7989
7989
|
}
|
|
7990
7990
|
|
|
7991
7991
|
// src/templates/income-statement/components/fiis-transactions-table.tsx
|
|
7992
|
-
var jsx_dev_runtime17 = require("react/jsx-
|
|
7992
|
+
var jsx_dev_runtime17 = require("react/jsx-runtime");
|
|
7993
7993
|
var tableHeaderTextStyle4 = { color: "#00E547", fontSize: 8 };
|
|
7994
7994
|
var tableCellStyle4 = { fontSize: 8 };
|
|
7995
7995
|
var zebraRow4 = (i) => i % 2 === 1 ? "#D6FFE0" : "transparent";
|
|
7996
7996
|
function FiisTransactionTable(props) {
|
|
7997
|
-
return /* @__PURE__ */ jsx_dev_runtime17.
|
|
7997
|
+
return /* @__PURE__ */ jsx_dev_runtime17.jsx(View, {
|
|
7998
7998
|
className: "gap-1",
|
|
7999
7999
|
children: [
|
|
8000
|
-
/* @__PURE__ */ jsx_dev_runtime17.
|
|
8000
|
+
/* @__PURE__ */ jsx_dev_runtime17.jsx(Text, {
|
|
8001
8001
|
className: "text-center",
|
|
8002
8002
|
style: { fontSize: 11, ...boldStyle },
|
|
8003
8003
|
children: "MOVIMENTAÇÕES - FUNDOS IMOBILIÁRIOS (FIIs)"
|
|
8004
8004
|
}, undefined, false, undefined, this),
|
|
8005
|
-
/* @__PURE__ */ jsx_dev_runtime17.
|
|
8006
|
-
/* @__PURE__ */ jsx_dev_runtime17.
|
|
8005
|
+
/* @__PURE__ */ jsx_dev_runtime17.jsx(Divider, {}, undefined, false, undefined, this),
|
|
8006
|
+
/* @__PURE__ */ jsx_dev_runtime17.jsx(View, {
|
|
8007
8007
|
className: "gap-1 rounded-sm",
|
|
8008
8008
|
style: { backgroundColor: "#0F1434", paddingVertical: 6, paddingHorizontal: 7 },
|
|
8009
8009
|
children: [
|
|
8010
|
-
/* @__PURE__ */ jsx_dev_runtime17.
|
|
8010
|
+
/* @__PURE__ */ jsx_dev_runtime17.jsx(Text, {
|
|
8011
8011
|
className: "text-center",
|
|
8012
8012
|
style: { fontSize: 9, color: "#00E547" },
|
|
8013
8013
|
children: [
|
|
@@ -8017,10 +8017,10 @@ function FiisTransactionTable(props) {
|
|
|
8017
8017
|
props.yearBeforeLastBalance
|
|
8018
8018
|
]
|
|
8019
8019
|
}, undefined, true, undefined, this),
|
|
8020
|
-
/* @__PURE__ */ jsx_dev_runtime17.
|
|
8020
|
+
/* @__PURE__ */ jsx_dev_runtime17.jsx(Divider, {
|
|
8021
8021
|
style: { backgroundColor: "rgba(255,255,255,0.25)" }
|
|
8022
8022
|
}, undefined, false, undefined, this),
|
|
8023
|
-
/* @__PURE__ */ jsx_dev_runtime17.
|
|
8023
|
+
/* @__PURE__ */ jsx_dev_runtime17.jsx(Text, {
|
|
8024
8024
|
className: "text-center",
|
|
8025
8025
|
style: { fontSize: 9, color: "#00E547" },
|
|
8026
8026
|
children: [
|
|
@@ -8028,39 +8028,39 @@ function FiisTransactionTable(props) {
|
|
|
8028
8028
|
props.lastYearDate
|
|
8029
8029
|
]
|
|
8030
8030
|
}, undefined, true, undefined, this),
|
|
8031
|
-
/* @__PURE__ */ jsx_dev_runtime17.
|
|
8031
|
+
/* @__PURE__ */ jsx_dev_runtime17.jsx(Divider, {
|
|
8032
8032
|
style: { backgroundColor: "rgba(255,255,255,0.25)" }
|
|
8033
8033
|
}, undefined, false, undefined, this),
|
|
8034
|
-
/* @__PURE__ */ jsx_dev_runtime17.
|
|
8034
|
+
/* @__PURE__ */ jsx_dev_runtime17.jsx(View, {
|
|
8035
8035
|
className: "flex-row items-center gap-1",
|
|
8036
8036
|
style: { flexWrap: "nowrap" },
|
|
8037
8037
|
children: [
|
|
8038
|
-
/* @__PURE__ */ jsx_dev_runtime17.
|
|
8038
|
+
/* @__PURE__ */ jsx_dev_runtime17.jsx(Text, {
|
|
8039
8039
|
className: "w-1/6 text-center",
|
|
8040
8040
|
style: { ...tableHeaderTextStyle4, textAlign: "center" },
|
|
8041
8041
|
children: "Mês"
|
|
8042
8042
|
}, undefined, false, undefined, this),
|
|
8043
|
-
/* @__PURE__ */ jsx_dev_runtime17.
|
|
8043
|
+
/* @__PURE__ */ jsx_dev_runtime17.jsx(Text, {
|
|
8044
8044
|
className: "w-1/6 text-center",
|
|
8045
8045
|
style: { ...tableHeaderTextStyle4, textAlign: "center" },
|
|
8046
8046
|
children: "Saldo anterior"
|
|
8047
8047
|
}, undefined, false, undefined, this),
|
|
8048
|
-
/* @__PURE__ */ jsx_dev_runtime17.
|
|
8048
|
+
/* @__PURE__ */ jsx_dev_runtime17.jsx(Text, {
|
|
8049
8049
|
className: "w-1/6 text-center",
|
|
8050
8050
|
style: { ...tableHeaderTextStyle4, textAlign: "center" },
|
|
8051
8051
|
children: "Lucro"
|
|
8052
8052
|
}, undefined, false, undefined, this),
|
|
8053
|
-
/* @__PURE__ */ jsx_dev_runtime17.
|
|
8053
|
+
/* @__PURE__ */ jsx_dev_runtime17.jsx(Text, {
|
|
8054
8054
|
className: "w-1/6 text-center",
|
|
8055
8055
|
style: { ...tableHeaderTextStyle4, textAlign: "center" },
|
|
8056
8056
|
children: "Perda"
|
|
8057
8057
|
}, undefined, false, undefined, this),
|
|
8058
|
-
/* @__PURE__ */ jsx_dev_runtime17.
|
|
8058
|
+
/* @__PURE__ */ jsx_dev_runtime17.jsx(Text, {
|
|
8059
8059
|
className: "w-2/6 text-center",
|
|
8060
8060
|
style: { ...tableHeaderTextStyle4, textAlign: "center" },
|
|
8061
8061
|
children: "Resultado Lucro/Perda"
|
|
8062
8062
|
}, undefined, false, undefined, this),
|
|
8063
|
-
/* @__PURE__ */ jsx_dev_runtime17.
|
|
8063
|
+
/* @__PURE__ */ jsx_dev_runtime17.jsx(Text, {
|
|
8064
8064
|
className: "w-1/6 text-center",
|
|
8065
8065
|
style: { ...tableHeaderTextStyle4, textAlign: "center" },
|
|
8066
8066
|
children: "Resultado mês"
|
|
@@ -8069,39 +8069,39 @@ function FiisTransactionTable(props) {
|
|
|
8069
8069
|
}, undefined, true, undefined, this)
|
|
8070
8070
|
]
|
|
8071
8071
|
}, undefined, true, undefined, this),
|
|
8072
|
-
/* @__PURE__ */ jsx_dev_runtime17.
|
|
8073
|
-
children: props.data.map((item2, index) => /* @__PURE__ */ jsx_dev_runtime17.
|
|
8072
|
+
/* @__PURE__ */ jsx_dev_runtime17.jsx(View, {
|
|
8073
|
+
children: props.data.map((item2, index) => /* @__PURE__ */ jsx_dev_runtime17.jsx(View, {
|
|
8074
8074
|
break: false,
|
|
8075
8075
|
wrap: false,
|
|
8076
8076
|
className: "flex-row items-center gap-1",
|
|
8077
8077
|
style: { backgroundColor: zebraRow4(index), paddingVertical: 4, paddingHorizontal: 7 },
|
|
8078
8078
|
children: [
|
|
8079
|
-
/* @__PURE__ */ jsx_dev_runtime17.
|
|
8079
|
+
/* @__PURE__ */ jsx_dev_runtime17.jsx(Text, {
|
|
8080
8080
|
className: "w-1/6 text-center",
|
|
8081
8081
|
style: tableCellStyle4,
|
|
8082
8082
|
children: item2.month
|
|
8083
8083
|
}, undefined, false, undefined, this),
|
|
8084
|
-
/* @__PURE__ */ jsx_dev_runtime17.
|
|
8084
|
+
/* @__PURE__ */ jsx_dev_runtime17.jsx(Text, {
|
|
8085
8085
|
className: "w-1/6 text-center",
|
|
8086
8086
|
style: tableCellStyle4,
|
|
8087
8087
|
children: item2.previousBalance
|
|
8088
8088
|
}, undefined, false, undefined, this),
|
|
8089
|
-
/* @__PURE__ */ jsx_dev_runtime17.
|
|
8089
|
+
/* @__PURE__ */ jsx_dev_runtime17.jsx(Text, {
|
|
8090
8090
|
className: "w-1/6 text-center",
|
|
8091
8091
|
style: tableCellStyle4,
|
|
8092
8092
|
children: item2.profit
|
|
8093
8093
|
}, undefined, false, undefined, this),
|
|
8094
|
-
/* @__PURE__ */ jsx_dev_runtime17.
|
|
8094
|
+
/* @__PURE__ */ jsx_dev_runtime17.jsx(Text, {
|
|
8095
8095
|
className: "w-1/6 text-center",
|
|
8096
8096
|
style: tableCellStyle4,
|
|
8097
8097
|
children: item2.loss
|
|
8098
8098
|
}, undefined, false, undefined, this),
|
|
8099
|
-
/* @__PURE__ */ jsx_dev_runtime17.
|
|
8099
|
+
/* @__PURE__ */ jsx_dev_runtime17.jsx(Text, {
|
|
8100
8100
|
className: "w-2/6 text-center",
|
|
8101
8101
|
style: tableCellStyle4,
|
|
8102
8102
|
children: item2.profitLossResult
|
|
8103
8103
|
}, undefined, false, undefined, this),
|
|
8104
|
-
/* @__PURE__ */ jsx_dev_runtime17.
|
|
8104
|
+
/* @__PURE__ */ jsx_dev_runtime17.jsx(Text, {
|
|
8105
8105
|
className: "w-1/6 text-center",
|
|
8106
8106
|
style: tableCellStyle4,
|
|
8107
8107
|
children: item2.monthResult
|
|
@@ -8109,10 +8109,10 @@ function FiisTransactionTable(props) {
|
|
|
8109
8109
|
]
|
|
8110
8110
|
}, index, true, undefined, this))
|
|
8111
8111
|
}, undefined, false, undefined, this),
|
|
8112
|
-
/* @__PURE__ */ jsx_dev_runtime17.
|
|
8112
|
+
/* @__PURE__ */ jsx_dev_runtime17.jsx(View, {
|
|
8113
8113
|
className: "rounded-sm",
|
|
8114
8114
|
style: { backgroundColor: "#0F1434", paddingVertical: 6, paddingHorizontal: 7 },
|
|
8115
|
-
children: /* @__PURE__ */ jsx_dev_runtime17.
|
|
8115
|
+
children: /* @__PURE__ */ jsx_dev_runtime17.jsx(Text, {
|
|
8116
8116
|
className: "text-center",
|
|
8117
8117
|
style: { fontSize: 9, color: "#00E547" },
|
|
8118
8118
|
children: [
|
|
@@ -8128,76 +8128,76 @@ function FiisTransactionTable(props) {
|
|
|
8128
8128
|
}
|
|
8129
8129
|
|
|
8130
8130
|
// src/templates/income-statement/components/fixed-income-table.tsx
|
|
8131
|
-
var jsx_dev_runtime18 = require("react/jsx-
|
|
8131
|
+
var jsx_dev_runtime18 = require("react/jsx-runtime");
|
|
8132
8132
|
var tableHeaderStyle2 = { backgroundColor: "#0F1434", paddingVertical: 5, paddingHorizontal: 7 };
|
|
8133
8133
|
var tableHeaderTextStyle5 = { color: "#00E547", fontSize: 8 };
|
|
8134
8134
|
var tableCellStyle5 = { fontSize: 8 };
|
|
8135
8135
|
var zebraRow5 = (i) => i % 2 === 1 ? "#D6FFE0" : "transparent";
|
|
8136
8136
|
function FixedIncome(props) {
|
|
8137
|
-
return /* @__PURE__ */ jsx_dev_runtime18.
|
|
8137
|
+
return /* @__PURE__ */ jsx_dev_runtime18.jsx(View, {
|
|
8138
8138
|
className: "gap-1",
|
|
8139
8139
|
children: [
|
|
8140
|
-
/* @__PURE__ */ jsx_dev_runtime18.
|
|
8140
|
+
/* @__PURE__ */ jsx_dev_runtime18.jsx(Text, {
|
|
8141
8141
|
className: "text-center",
|
|
8142
8142
|
style: { fontSize: 11, ...boldStyle },
|
|
8143
8143
|
children: props?.title
|
|
8144
8144
|
}, undefined, false, undefined, this),
|
|
8145
|
-
/* @__PURE__ */ jsx_dev_runtime18.
|
|
8146
|
-
/* @__PURE__ */ jsx_dev_runtime18.
|
|
8145
|
+
/* @__PURE__ */ jsx_dev_runtime18.jsx(Divider, {}, undefined, false, undefined, this),
|
|
8146
|
+
/* @__PURE__ */ jsx_dev_runtime18.jsx(View, {
|
|
8147
8147
|
className: "flex-row justify-between",
|
|
8148
8148
|
style: { ...instructionBlockStyle, flexDirection: "row" },
|
|
8149
8149
|
children: [
|
|
8150
|
-
/* @__PURE__ */ jsx_dev_runtime18.
|
|
8150
|
+
/* @__PURE__ */ jsx_dev_runtime18.jsx(Text, {
|
|
8151
8151
|
className: "flex-1 text-left",
|
|
8152
8152
|
style: instructionTitleStyle,
|
|
8153
8153
|
children: 'Bens e Direitos, selecione o grupo "04 - Aplicações e investimentos" e depois código "02 - Títulos públicos e privados sujeitos à tributação"'
|
|
8154
8154
|
}, undefined, false, undefined, this),
|
|
8155
|
-
/* @__PURE__ */ jsx_dev_runtime18.
|
|
8155
|
+
/* @__PURE__ */ jsx_dev_runtime18.jsx(Text, {
|
|
8156
8156
|
className: "flex-1 text-left",
|
|
8157
8157
|
style: instructionTitleStyle,
|
|
8158
8158
|
children: 'Rendimentos Sujeitos à Tributação Exclusiva ou Definitiva, código "06 - Rendimentos de aplicações financeiras"'
|
|
8159
8159
|
}, undefined, false, undefined, this)
|
|
8160
8160
|
]
|
|
8161
8161
|
}, undefined, true, undefined, this),
|
|
8162
|
-
/* @__PURE__ */ jsx_dev_runtime18.
|
|
8162
|
+
/* @__PURE__ */ jsx_dev_runtime18.jsx(View, {
|
|
8163
8163
|
className: "flex-row gap-1 rounded-sm",
|
|
8164
8164
|
style: { ...tableHeaderStyle2, flexWrap: "nowrap" },
|
|
8165
8165
|
children: [
|
|
8166
|
-
/* @__PURE__ */ jsx_dev_runtime18.
|
|
8166
|
+
/* @__PURE__ */ jsx_dev_runtime18.jsx(Text, {
|
|
8167
8167
|
className: "flex-1 text-center",
|
|
8168
8168
|
style: { ...tableHeaderTextStyle5, textAlign: "center" },
|
|
8169
8169
|
children: "Tipo Produto"
|
|
8170
8170
|
}, undefined, false, undefined, this),
|
|
8171
|
-
/* @__PURE__ */ jsx_dev_runtime18.
|
|
8171
|
+
/* @__PURE__ */ jsx_dev_runtime18.jsx(Text, {
|
|
8172
8172
|
className: "flex-1 text-center",
|
|
8173
8173
|
style: { ...tableHeaderTextStyle5, textAlign: "center" },
|
|
8174
8174
|
children: "CNPJ"
|
|
8175
8175
|
}, undefined, false, undefined, this),
|
|
8176
|
-
/* @__PURE__ */ jsx_dev_runtime18.
|
|
8176
|
+
/* @__PURE__ */ jsx_dev_runtime18.jsx(Text, {
|
|
8177
8177
|
className: "flex-1 text-center",
|
|
8178
8178
|
style: { ...tableHeaderTextStyle5, textAlign: "center" },
|
|
8179
8179
|
children: "Rendimento Recebido"
|
|
8180
8180
|
}, undefined, false, undefined, this)
|
|
8181
8181
|
]
|
|
8182
8182
|
}, undefined, true, undefined, this),
|
|
8183
|
-
/* @__PURE__ */ jsx_dev_runtime18.
|
|
8184
|
-
children: props.data.map((item2, index) => /* @__PURE__ */ jsx_dev_runtime18.
|
|
8183
|
+
/* @__PURE__ */ jsx_dev_runtime18.jsx(View, {
|
|
8184
|
+
children: props.data.map((item2, index) => /* @__PURE__ */ jsx_dev_runtime18.jsx(View, {
|
|
8185
8185
|
break: false,
|
|
8186
8186
|
wrap: false,
|
|
8187
8187
|
className: "flex-row gap-1 rounded-sm",
|
|
8188
8188
|
style: { backgroundColor: zebraRow5(index), paddingVertical: 4, paddingHorizontal: 7 },
|
|
8189
8189
|
children: [
|
|
8190
|
-
/* @__PURE__ */ jsx_dev_runtime18.
|
|
8190
|
+
/* @__PURE__ */ jsx_dev_runtime18.jsx(Text, {
|
|
8191
8191
|
className: "flex-1 text-center",
|
|
8192
8192
|
style: tableCellStyle5,
|
|
8193
8193
|
children: item2.productType
|
|
8194
8194
|
}, undefined, false, undefined, this),
|
|
8195
|
-
/* @__PURE__ */ jsx_dev_runtime18.
|
|
8195
|
+
/* @__PURE__ */ jsx_dev_runtime18.jsx(Text, {
|
|
8196
8196
|
className: "flex-1 text-center",
|
|
8197
8197
|
style: tableCellStyle5,
|
|
8198
8198
|
children: item2.cnpj
|
|
8199
8199
|
}, undefined, false, undefined, this),
|
|
8200
|
-
/* @__PURE__ */ jsx_dev_runtime18.
|
|
8200
|
+
/* @__PURE__ */ jsx_dev_runtime18.jsx(Text, {
|
|
8201
8201
|
className: "flex-1 text-center",
|
|
8202
8202
|
style: tableCellStyle5,
|
|
8203
8203
|
children: item2.incomeReceived
|
|
@@ -8205,25 +8205,25 @@ function FixedIncome(props) {
|
|
|
8205
8205
|
]
|
|
8206
8206
|
}, index, true, undefined, this))
|
|
8207
8207
|
}, undefined, false, undefined, this),
|
|
8208
|
-
/* @__PURE__ */ jsx_dev_runtime18.
|
|
8208
|
+
/* @__PURE__ */ jsx_dev_runtime18.jsx(View, {
|
|
8209
8209
|
className: "flex-row items-center",
|
|
8210
8210
|
style: { ...footerSpacing },
|
|
8211
8211
|
children: [
|
|
8212
|
-
/* @__PURE__ */ jsx_dev_runtime18.
|
|
8212
|
+
/* @__PURE__ */ jsx_dev_runtime18.jsx(View, {
|
|
8213
8213
|
style: { flex: 1, alignItems: "flex-start" }
|
|
8214
8214
|
}, undefined, false, undefined, this),
|
|
8215
|
-
/* @__PURE__ */ jsx_dev_runtime18.
|
|
8215
|
+
/* @__PURE__ */ jsx_dev_runtime18.jsx(View, {
|
|
8216
8216
|
style: { flex: 1, alignItems: "center" }
|
|
8217
8217
|
}, undefined, false, undefined, this),
|
|
8218
|
-
/* @__PURE__ */ jsx_dev_runtime18.
|
|
8218
|
+
/* @__PURE__ */ jsx_dev_runtime18.jsx(View, {
|
|
8219
8219
|
style: { flex: 1, alignItems: "flex-end" },
|
|
8220
|
-
children: /* @__PURE__ */ jsx_dev_runtime18.
|
|
8220
|
+
children: /* @__PURE__ */ jsx_dev_runtime18.jsx(Text, {
|
|
8221
8221
|
style: { fontSize: 8 },
|
|
8222
8222
|
children: [
|
|
8223
8223
|
"Renda em ",
|
|
8224
8224
|
props.lastYearDate,
|
|
8225
8225
|
": ",
|
|
8226
|
-
/* @__PURE__ */ jsx_dev_runtime18.
|
|
8226
|
+
/* @__PURE__ */ jsx_dev_runtime18.jsx(Text, {
|
|
8227
8227
|
style: { ...boldStyle },
|
|
8228
8228
|
children: props.totalIncome
|
|
8229
8229
|
}, undefined, false, undefined, this)
|
|
@@ -8237,12 +8237,12 @@ function FixedIncome(props) {
|
|
|
8237
8237
|
}
|
|
8238
8238
|
|
|
8239
8239
|
// src/templates/income-statement/components/Footer.tsx
|
|
8240
|
-
var jsx_dev_runtime19 = require("react/jsx-
|
|
8240
|
+
var jsx_dev_runtime19 = require("react/jsx-runtime");
|
|
8241
8241
|
function Footer() {
|
|
8242
|
-
return /* @__PURE__ */ jsx_dev_runtime19.
|
|
8242
|
+
return /* @__PURE__ */ jsx_dev_runtime19.jsx(Text, {
|
|
8243
8243
|
style: { fontSize: 7, lineHeight: 1.4, textAlign: "justify", color: "#353535" },
|
|
8244
8244
|
children: [
|
|
8245
|
-
/* @__PURE__ */ jsx_dev_runtime19.
|
|
8245
|
+
/* @__PURE__ */ jsx_dev_runtime19.jsx(Text, {
|
|
8246
8246
|
style: { fontFamily: "Poppins SemiBold" },
|
|
8247
8247
|
children: "BANCO GENIAL S.A."
|
|
8248
8248
|
}, undefined, false, undefined, this),
|
|
@@ -8252,25 +8252,25 @@ function Footer() {
|
|
|
8252
8252
|
}
|
|
8253
8253
|
|
|
8254
8254
|
// src/templates/income-statement/components/Home.tsx
|
|
8255
|
-
var jsx_dev_runtime20 = require("react/jsx-
|
|
8255
|
+
var jsx_dev_runtime20 = require("react/jsx-runtime");
|
|
8256
8256
|
function Home({ year, name, document }) {
|
|
8257
|
-
return /* @__PURE__ */ jsx_dev_runtime20.
|
|
8257
|
+
return /* @__PURE__ */ jsx_dev_runtime20.jsx(View, {
|
|
8258
8258
|
children: [
|
|
8259
|
-
/* @__PURE__ */ jsx_dev_runtime20.
|
|
8259
|
+
/* @__PURE__ */ jsx_dev_runtime20.jsx(View, {
|
|
8260
8260
|
className: "flex-row items-center justify-between",
|
|
8261
8261
|
style: { marginBottom: 16 },
|
|
8262
8262
|
children: [
|
|
8263
|
-
/* @__PURE__ */ jsx_dev_runtime20.
|
|
8263
|
+
/* @__PURE__ */ jsx_dev_runtime20.jsx(Image, {
|
|
8264
8264
|
source: logoTrx,
|
|
8265
8265
|
style: { width: 120 }
|
|
8266
8266
|
}, undefined, false, undefined, this),
|
|
8267
|
-
/* @__PURE__ */ jsx_dev_runtime20.
|
|
8267
|
+
/* @__PURE__ */ jsx_dev_runtime20.jsx(Image, {
|
|
8268
8268
|
source: genialLogo,
|
|
8269
8269
|
style: { width: 120 }
|
|
8270
8270
|
}, undefined, false, undefined, this)
|
|
8271
8271
|
]
|
|
8272
8272
|
}, undefined, true, undefined, this),
|
|
8273
|
-
/* @__PURE__ */ jsx_dev_runtime20.
|
|
8273
|
+
/* @__PURE__ */ jsx_dev_runtime20.jsx(Text, {
|
|
8274
8274
|
className: "text-center",
|
|
8275
8275
|
style: { fontSize: 14, fontFamily: "Poppins SemiBold", textDecoration: "underline", marginBottom: 36 },
|
|
8276
8276
|
children: [
|
|
@@ -8278,41 +8278,41 @@ function Home({ year, name, document }) {
|
|
|
8278
8278
|
year
|
|
8279
8279
|
]
|
|
8280
8280
|
}, undefined, true, undefined, this),
|
|
8281
|
-
/* @__PURE__ */ jsx_dev_runtime20.
|
|
8281
|
+
/* @__PURE__ */ jsx_dev_runtime20.jsx(View, {
|
|
8282
8282
|
style: { marginBottom: 12 },
|
|
8283
8283
|
children: [
|
|
8284
|
-
/* @__PURE__ */ jsx_dev_runtime20.
|
|
8284
|
+
/* @__PURE__ */ jsx_dev_runtime20.jsx(Text, {
|
|
8285
8285
|
style: { fontSize: 10, color: "#0077F5", fontFamily: "Poppins SemiBold", marginBottom: 4 },
|
|
8286
8286
|
children: "Pessoa Física Beneficiária dos Rendimentos"
|
|
8287
8287
|
}, undefined, false, undefined, this),
|
|
8288
|
-
/* @__PURE__ */ jsx_dev_runtime20.
|
|
8288
|
+
/* @__PURE__ */ jsx_dev_runtime20.jsx(Text, {
|
|
8289
8289
|
style: { fontSize: 10, fontFamily: "Poppins SemiBold", marginBottom: 4 },
|
|
8290
8290
|
children: name
|
|
8291
8291
|
}, undefined, false, undefined, this),
|
|
8292
|
-
/* @__PURE__ */ jsx_dev_runtime20.
|
|
8292
|
+
/* @__PURE__ */ jsx_dev_runtime20.jsx(Text, {
|
|
8293
8293
|
style: { fontSize: 9, color: "#919191", marginBottom: 8 },
|
|
8294
8294
|
children: [
|
|
8295
8295
|
"CPF: ",
|
|
8296
8296
|
document
|
|
8297
8297
|
]
|
|
8298
8298
|
}, undefined, true, undefined, this),
|
|
8299
|
-
/* @__PURE__ */ jsx_dev_runtime20.
|
|
8299
|
+
/* @__PURE__ */ jsx_dev_runtime20.jsx(Divider, {}, undefined, false, undefined, this)
|
|
8300
8300
|
]
|
|
8301
8301
|
}, undefined, true, undefined, this),
|
|
8302
|
-
/* @__PURE__ */ jsx_dev_runtime20.
|
|
8302
|
+
/* @__PURE__ */ jsx_dev_runtime20.jsx(View, {
|
|
8303
8303
|
className: "flex-row justify-between",
|
|
8304
8304
|
style: { marginTop: 8, marginBottom: 12 },
|
|
8305
|
-
children: /* @__PURE__ */ jsx_dev_runtime20.
|
|
8305
|
+
children: /* @__PURE__ */ jsx_dev_runtime20.jsx(View, {
|
|
8306
8306
|
children: [
|
|
8307
|
-
/* @__PURE__ */ jsx_dev_runtime20.
|
|
8307
|
+
/* @__PURE__ */ jsx_dev_runtime20.jsx(Text, {
|
|
8308
8308
|
style: { fontSize: 10, color: "#00E547", fontFamily: "Poppins SemiBold", marginBottom: 4 },
|
|
8309
8309
|
children: "Identificação da Fonte Pagadora"
|
|
8310
8310
|
}, undefined, false, undefined, this),
|
|
8311
|
-
/* @__PURE__ */ jsx_dev_runtime20.
|
|
8311
|
+
/* @__PURE__ */ jsx_dev_runtime20.jsx(Text, {
|
|
8312
8312
|
style: { fontSize: 10, fontFamily: "Poppins SemiBold", marginBottom: 4 },
|
|
8313
8313
|
children: "Banco Genial S.A"
|
|
8314
8314
|
}, undefined, false, undefined, this),
|
|
8315
|
-
/* @__PURE__ */ jsx_dev_runtime20.
|
|
8315
|
+
/* @__PURE__ */ jsx_dev_runtime20.jsx(Text, {
|
|
8316
8316
|
style: { fontSize: 9, color: "#919191" },
|
|
8317
8317
|
children: "CNPJ: 45.246.410/0001-55"
|
|
8318
8318
|
}, undefined, false, undefined, this)
|
|
@@ -8324,86 +8324,86 @@ function Home({ year, name, document }) {
|
|
|
8324
8324
|
}
|
|
8325
8325
|
|
|
8326
8326
|
// src/templates/income-statement/components/stock-dividend-table.tsx
|
|
8327
|
-
var jsx_dev_runtime21 = require("react/jsx-
|
|
8327
|
+
var jsx_dev_runtime21 = require("react/jsx-runtime");
|
|
8328
8328
|
var tableHeaderStyle3 = { backgroundColor: "#0F1434", paddingVertical: 5, paddingHorizontal: 7 };
|
|
8329
8329
|
var tableHeaderTextStyle6 = { color: "#00E547", fontSize: 8 };
|
|
8330
8330
|
var tableCellStyle6 = { fontSize: 8 };
|
|
8331
8331
|
var zebraRow6 = (i) => i % 2 === 1 ? "#D6FFE0" : "transparent";
|
|
8332
8332
|
function StockDividendTable(props) {
|
|
8333
|
-
return /* @__PURE__ */ jsx_dev_runtime21.
|
|
8333
|
+
return /* @__PURE__ */ jsx_dev_runtime21.jsx(View, {
|
|
8334
8334
|
className: "gap-1",
|
|
8335
8335
|
children: [
|
|
8336
|
-
/* @__PURE__ */ jsx_dev_runtime21.
|
|
8336
|
+
/* @__PURE__ */ jsx_dev_runtime21.jsx(Text, {
|
|
8337
8337
|
className: "text-center",
|
|
8338
8338
|
style: { fontSize: 11, ...boldStyle },
|
|
8339
8339
|
children: props?.title
|
|
8340
8340
|
}, undefined, false, undefined, this),
|
|
8341
|
-
/* @__PURE__ */ jsx_dev_runtime21.
|
|
8342
|
-
/* @__PURE__ */ jsx_dev_runtime21.
|
|
8341
|
+
/* @__PURE__ */ jsx_dev_runtime21.jsx(Divider, {}, undefined, false, undefined, this),
|
|
8342
|
+
/* @__PURE__ */ jsx_dev_runtime21.jsx(View, {
|
|
8343
8343
|
className: "flex-row justify-between",
|
|
8344
8344
|
style: { ...instructionBlockStyle, flexDirection: "row" },
|
|
8345
8345
|
children: [
|
|
8346
|
-
/* @__PURE__ */ jsx_dev_runtime21.
|
|
8346
|
+
/* @__PURE__ */ jsx_dev_runtime21.jsx(Text, {
|
|
8347
8347
|
className: "flex-1 text-left",
|
|
8348
8348
|
style: instructionTitleStyle,
|
|
8349
8349
|
children: 'Bens e Direitos, selecione o grupo "03 - Participações societárias" e depois código "01 - Ações"'
|
|
8350
8350
|
}, undefined, false, undefined, this),
|
|
8351
|
-
/* @__PURE__ */ jsx_dev_runtime21.
|
|
8351
|
+
/* @__PURE__ */ jsx_dev_runtime21.jsx(Text, {
|
|
8352
8352
|
className: "flex-1 text-left",
|
|
8353
8353
|
style: instructionTitleStyle,
|
|
8354
8354
|
children: 'Rendimentos Isentos e Não tributáveis, utilizar código "09 - Lucros e dividendos recebidos"'
|
|
8355
8355
|
}, undefined, false, undefined, this)
|
|
8356
8356
|
]
|
|
8357
8357
|
}, undefined, true, undefined, this),
|
|
8358
|
-
/* @__PURE__ */ jsx_dev_runtime21.
|
|
8358
|
+
/* @__PURE__ */ jsx_dev_runtime21.jsx(View, {
|
|
8359
8359
|
className: "flex-row gap-1 rounded-sm",
|
|
8360
8360
|
style: { ...tableHeaderStyle3, flexWrap: "nowrap" },
|
|
8361
8361
|
children: [
|
|
8362
|
-
/* @__PURE__ */ jsx_dev_runtime21.
|
|
8362
|
+
/* @__PURE__ */ jsx_dev_runtime21.jsx(Text, {
|
|
8363
8363
|
className: "text-center",
|
|
8364
8364
|
style: { ...tableHeaderTextStyle6, width: 80, minWidth: 80, textAlign: "center" },
|
|
8365
8365
|
children: "Código Ibovespa"
|
|
8366
8366
|
}, undefined, false, undefined, this),
|
|
8367
|
-
/* @__PURE__ */ jsx_dev_runtime21.
|
|
8367
|
+
/* @__PURE__ */ jsx_dev_runtime21.jsx(Text, {
|
|
8368
8368
|
className: "flex-1 text-center",
|
|
8369
8369
|
style: { ...tableHeaderTextStyle6, textAlign: "center" },
|
|
8370
8370
|
children: "CNPJ"
|
|
8371
8371
|
}, undefined, false, undefined, this),
|
|
8372
|
-
/* @__PURE__ */ jsx_dev_runtime21.
|
|
8372
|
+
/* @__PURE__ */ jsx_dev_runtime21.jsx(Text, {
|
|
8373
8373
|
className: "text-center",
|
|
8374
8374
|
style: { ...tableHeaderTextStyle6, width: 60, minWidth: 60, textAlign: "center" },
|
|
8375
8375
|
children: "Quantidade"
|
|
8376
8376
|
}, undefined, false, undefined, this),
|
|
8377
|
-
/* @__PURE__ */ jsx_dev_runtime21.
|
|
8377
|
+
/* @__PURE__ */ jsx_dev_runtime21.jsx(Text, {
|
|
8378
8378
|
className: "flex-1 text-center",
|
|
8379
8379
|
style: { ...tableHeaderTextStyle6, textAlign: "center" },
|
|
8380
8380
|
children: "Rendimento Recebido"
|
|
8381
8381
|
}, undefined, false, undefined, this)
|
|
8382
8382
|
]
|
|
8383
8383
|
}, undefined, true, undefined, this),
|
|
8384
|
-
/* @__PURE__ */ jsx_dev_runtime21.
|
|
8385
|
-
children: props.data.map((item2, index) => /* @__PURE__ */ jsx_dev_runtime21.
|
|
8384
|
+
/* @__PURE__ */ jsx_dev_runtime21.jsx(View, {
|
|
8385
|
+
children: props.data.map((item2, index) => /* @__PURE__ */ jsx_dev_runtime21.jsx(View, {
|
|
8386
8386
|
break: false,
|
|
8387
8387
|
wrap: false,
|
|
8388
8388
|
className: "flex-row gap-1 rounded-sm",
|
|
8389
8389
|
style: { backgroundColor: zebraRow6(index), paddingVertical: 4, paddingHorizontal: 7 },
|
|
8390
8390
|
children: [
|
|
8391
|
-
/* @__PURE__ */ jsx_dev_runtime21.
|
|
8391
|
+
/* @__PURE__ */ jsx_dev_runtime21.jsx(Text, {
|
|
8392
8392
|
className: "text-center",
|
|
8393
8393
|
style: { ...tableCellStyle6, width: 80, minWidth: 80 },
|
|
8394
8394
|
children: item2.code
|
|
8395
8395
|
}, undefined, false, undefined, this),
|
|
8396
|
-
/* @__PURE__ */ jsx_dev_runtime21.
|
|
8396
|
+
/* @__PURE__ */ jsx_dev_runtime21.jsx(Text, {
|
|
8397
8397
|
className: "flex-1 text-center",
|
|
8398
8398
|
style: tableCellStyle6,
|
|
8399
8399
|
children: item2.cnpj
|
|
8400
8400
|
}, undefined, false, undefined, this),
|
|
8401
|
-
/* @__PURE__ */ jsx_dev_runtime21.
|
|
8401
|
+
/* @__PURE__ */ jsx_dev_runtime21.jsx(Text, {
|
|
8402
8402
|
className: "text-center",
|
|
8403
8403
|
style: { ...tableCellStyle6, width: 60, minWidth: 60 },
|
|
8404
8404
|
children: item2.quantity
|
|
8405
8405
|
}, undefined, false, undefined, this),
|
|
8406
|
-
/* @__PURE__ */ jsx_dev_runtime21.
|
|
8406
|
+
/* @__PURE__ */ jsx_dev_runtime21.jsx(Text, {
|
|
8407
8407
|
className: "flex-1 text-center",
|
|
8408
8408
|
style: tableCellStyle6,
|
|
8409
8409
|
children: item2.incomeReceived
|
|
@@ -8411,25 +8411,25 @@ function StockDividendTable(props) {
|
|
|
8411
8411
|
]
|
|
8412
8412
|
}, index, true, undefined, this))
|
|
8413
8413
|
}, undefined, false, undefined, this),
|
|
8414
|
-
/* @__PURE__ */ jsx_dev_runtime21.
|
|
8414
|
+
/* @__PURE__ */ jsx_dev_runtime21.jsx(View, {
|
|
8415
8415
|
className: "flex-row items-center",
|
|
8416
8416
|
style: { ...footerSpacing },
|
|
8417
8417
|
children: [
|
|
8418
|
-
/* @__PURE__ */ jsx_dev_runtime21.
|
|
8418
|
+
/* @__PURE__ */ jsx_dev_runtime21.jsx(View, {
|
|
8419
8419
|
style: { flex: 1, alignItems: "flex-start" }
|
|
8420
8420
|
}, undefined, false, undefined, this),
|
|
8421
|
-
/* @__PURE__ */ jsx_dev_runtime21.
|
|
8421
|
+
/* @__PURE__ */ jsx_dev_runtime21.jsx(View, {
|
|
8422
8422
|
style: { flex: 1, alignItems: "center" }
|
|
8423
8423
|
}, undefined, false, undefined, this),
|
|
8424
|
-
/* @__PURE__ */ jsx_dev_runtime21.
|
|
8424
|
+
/* @__PURE__ */ jsx_dev_runtime21.jsx(View, {
|
|
8425
8425
|
style: { flex: 1, alignItems: "flex-end" },
|
|
8426
|
-
children: /* @__PURE__ */ jsx_dev_runtime21.
|
|
8426
|
+
children: /* @__PURE__ */ jsx_dev_runtime21.jsx(Text, {
|
|
8427
8427
|
style: { fontSize: 8 },
|
|
8428
8428
|
children: [
|
|
8429
8429
|
"Renda em ",
|
|
8430
8430
|
props.lastYearDate,
|
|
8431
8431
|
": ",
|
|
8432
|
-
/* @__PURE__ */ jsx_dev_runtime21.
|
|
8432
|
+
/* @__PURE__ */ jsx_dev_runtime21.jsx(Text, {
|
|
8433
8433
|
style: { ...boldStyle },
|
|
8434
8434
|
children: props.totalIncome
|
|
8435
8435
|
}, undefined, false, undefined, this)
|
|
@@ -8443,86 +8443,86 @@ function StockDividendTable(props) {
|
|
|
8443
8443
|
}
|
|
8444
8444
|
|
|
8445
8445
|
// src/templates/income-statement/components/stock-jcp-table.tsx
|
|
8446
|
-
var jsx_dev_runtime22 = require("react/jsx-
|
|
8446
|
+
var jsx_dev_runtime22 = require("react/jsx-runtime");
|
|
8447
8447
|
var tableHeaderStyle4 = { backgroundColor: "#0F1434", paddingVertical: 5, paddingHorizontal: 7 };
|
|
8448
8448
|
var tableHeaderTextStyle7 = { color: "#00E547", fontSize: 8 };
|
|
8449
8449
|
var tableCellStyle7 = { fontSize: 8 };
|
|
8450
8450
|
var zebraRow7 = (i) => i % 2 === 1 ? "#D6FFE0" : "transparent";
|
|
8451
8451
|
function StockJcpTable(props) {
|
|
8452
|
-
return /* @__PURE__ */ jsx_dev_runtime22.
|
|
8452
|
+
return /* @__PURE__ */ jsx_dev_runtime22.jsx(View, {
|
|
8453
8453
|
className: "gap-1",
|
|
8454
8454
|
children: [
|
|
8455
|
-
/* @__PURE__ */ jsx_dev_runtime22.
|
|
8455
|
+
/* @__PURE__ */ jsx_dev_runtime22.jsx(Text, {
|
|
8456
8456
|
className: "text-center",
|
|
8457
8457
|
style: { fontSize: 11, ...boldStyle },
|
|
8458
8458
|
children: props?.title
|
|
8459
8459
|
}, undefined, false, undefined, this),
|
|
8460
|
-
/* @__PURE__ */ jsx_dev_runtime22.
|
|
8461
|
-
/* @__PURE__ */ jsx_dev_runtime22.
|
|
8460
|
+
/* @__PURE__ */ jsx_dev_runtime22.jsx(Divider, {}, undefined, false, undefined, this),
|
|
8461
|
+
/* @__PURE__ */ jsx_dev_runtime22.jsx(View, {
|
|
8462
8462
|
className: "flex-row justify-between",
|
|
8463
8463
|
style: { ...instructionBlockStyle, flexDirection: "row" },
|
|
8464
8464
|
children: [
|
|
8465
|
-
/* @__PURE__ */ jsx_dev_runtime22.
|
|
8465
|
+
/* @__PURE__ */ jsx_dev_runtime22.jsx(Text, {
|
|
8466
8466
|
className: "flex-1 text-left",
|
|
8467
8467
|
style: instructionTitleStyle,
|
|
8468
8468
|
children: 'Bens e Direitos, selecione o grupo "03 - Participações societárias" e depois código "01 - Ações"'
|
|
8469
8469
|
}, undefined, false, undefined, this),
|
|
8470
|
-
/* @__PURE__ */ jsx_dev_runtime22.
|
|
8470
|
+
/* @__PURE__ */ jsx_dev_runtime22.jsx(Text, {
|
|
8471
8471
|
className: "flex-1 text-left",
|
|
8472
8472
|
style: instructionTitleStyle,
|
|
8473
8473
|
children: 'Rendimentos Sujeitos à Tributação Exclusiva ou Definitiva, código "10 - Juros sobre o Capital Próprio"'
|
|
8474
8474
|
}, undefined, false, undefined, this)
|
|
8475
8475
|
]
|
|
8476
8476
|
}, undefined, true, undefined, this),
|
|
8477
|
-
/* @__PURE__ */ jsx_dev_runtime22.
|
|
8477
|
+
/* @__PURE__ */ jsx_dev_runtime22.jsx(View, {
|
|
8478
8478
|
className: "flex-row gap-1 rounded-sm",
|
|
8479
8479
|
style: { ...tableHeaderStyle4, flexWrap: "nowrap" },
|
|
8480
8480
|
children: [
|
|
8481
|
-
/* @__PURE__ */ jsx_dev_runtime22.
|
|
8481
|
+
/* @__PURE__ */ jsx_dev_runtime22.jsx(Text, {
|
|
8482
8482
|
className: "text-center",
|
|
8483
8483
|
style: { ...tableHeaderTextStyle7, width: 80, minWidth: 80, textAlign: "center" },
|
|
8484
8484
|
children: "Código Ibovespa"
|
|
8485
8485
|
}, undefined, false, undefined, this),
|
|
8486
|
-
/* @__PURE__ */ jsx_dev_runtime22.
|
|
8486
|
+
/* @__PURE__ */ jsx_dev_runtime22.jsx(Text, {
|
|
8487
8487
|
className: "flex-1 text-center",
|
|
8488
8488
|
style: { ...tableHeaderTextStyle7, textAlign: "center" },
|
|
8489
8489
|
children: "CNPJ"
|
|
8490
8490
|
}, undefined, false, undefined, this),
|
|
8491
|
-
/* @__PURE__ */ jsx_dev_runtime22.
|
|
8491
|
+
/* @__PURE__ */ jsx_dev_runtime22.jsx(Text, {
|
|
8492
8492
|
className: "text-center",
|
|
8493
8493
|
style: { ...tableHeaderTextStyle7, width: 60, minWidth: 60, textAlign: "center" },
|
|
8494
8494
|
children: "Quantidade"
|
|
8495
8495
|
}, undefined, false, undefined, this),
|
|
8496
|
-
/* @__PURE__ */ jsx_dev_runtime22.
|
|
8496
|
+
/* @__PURE__ */ jsx_dev_runtime22.jsx(Text, {
|
|
8497
8497
|
className: "flex-1 text-center",
|
|
8498
8498
|
style: { ...tableHeaderTextStyle7, textAlign: "center" },
|
|
8499
8499
|
children: "Rendimento Recebido"
|
|
8500
8500
|
}, undefined, false, undefined, this)
|
|
8501
8501
|
]
|
|
8502
8502
|
}, undefined, true, undefined, this),
|
|
8503
|
-
/* @__PURE__ */ jsx_dev_runtime22.
|
|
8504
|
-
children: props.data.map((item2, index) => /* @__PURE__ */ jsx_dev_runtime22.
|
|
8503
|
+
/* @__PURE__ */ jsx_dev_runtime22.jsx(View, {
|
|
8504
|
+
children: props.data.map((item2, index) => /* @__PURE__ */ jsx_dev_runtime22.jsx(View, {
|
|
8505
8505
|
break: false,
|
|
8506
8506
|
wrap: false,
|
|
8507
8507
|
className: "flex-row gap-1 rounded-sm",
|
|
8508
8508
|
style: { backgroundColor: zebraRow7(index), paddingVertical: 4, paddingHorizontal: 7 },
|
|
8509
8509
|
children: [
|
|
8510
|
-
/* @__PURE__ */ jsx_dev_runtime22.
|
|
8510
|
+
/* @__PURE__ */ jsx_dev_runtime22.jsx(Text, {
|
|
8511
8511
|
className: "text-center",
|
|
8512
8512
|
style: { ...tableCellStyle7, width: 80, minWidth: 80 },
|
|
8513
8513
|
children: item2.code
|
|
8514
8514
|
}, undefined, false, undefined, this),
|
|
8515
|
-
/* @__PURE__ */ jsx_dev_runtime22.
|
|
8515
|
+
/* @__PURE__ */ jsx_dev_runtime22.jsx(Text, {
|
|
8516
8516
|
className: "flex-1 text-center",
|
|
8517
8517
|
style: tableCellStyle7,
|
|
8518
8518
|
children: item2.cnpj
|
|
8519
8519
|
}, undefined, false, undefined, this),
|
|
8520
|
-
/* @__PURE__ */ jsx_dev_runtime22.
|
|
8520
|
+
/* @__PURE__ */ jsx_dev_runtime22.jsx(Text, {
|
|
8521
8521
|
className: "text-center",
|
|
8522
8522
|
style: { ...tableCellStyle7, width: 60, minWidth: 60 },
|
|
8523
8523
|
children: item2.quantity
|
|
8524
8524
|
}, undefined, false, undefined, this),
|
|
8525
|
-
/* @__PURE__ */ jsx_dev_runtime22.
|
|
8525
|
+
/* @__PURE__ */ jsx_dev_runtime22.jsx(Text, {
|
|
8526
8526
|
className: "flex-1 text-center",
|
|
8527
8527
|
style: tableCellStyle7,
|
|
8528
8528
|
children: item2.incomeReceived
|
|
@@ -8530,25 +8530,25 @@ function StockJcpTable(props) {
|
|
|
8530
8530
|
]
|
|
8531
8531
|
}, index, true, undefined, this))
|
|
8532
8532
|
}, undefined, false, undefined, this),
|
|
8533
|
-
/* @__PURE__ */ jsx_dev_runtime22.
|
|
8533
|
+
/* @__PURE__ */ jsx_dev_runtime22.jsx(View, {
|
|
8534
8534
|
className: "flex-row items-center",
|
|
8535
8535
|
style: { ...footerSpacing },
|
|
8536
8536
|
children: [
|
|
8537
|
-
/* @__PURE__ */ jsx_dev_runtime22.
|
|
8537
|
+
/* @__PURE__ */ jsx_dev_runtime22.jsx(View, {
|
|
8538
8538
|
style: { flex: 1, alignItems: "flex-start" }
|
|
8539
8539
|
}, undefined, false, undefined, this),
|
|
8540
|
-
/* @__PURE__ */ jsx_dev_runtime22.
|
|
8540
|
+
/* @__PURE__ */ jsx_dev_runtime22.jsx(View, {
|
|
8541
8541
|
style: { flex: 1, alignItems: "center" }
|
|
8542
8542
|
}, undefined, false, undefined, this),
|
|
8543
|
-
/* @__PURE__ */ jsx_dev_runtime22.
|
|
8543
|
+
/* @__PURE__ */ jsx_dev_runtime22.jsx(View, {
|
|
8544
8544
|
style: { flex: 1, alignItems: "flex-end" },
|
|
8545
|
-
children: /* @__PURE__ */ jsx_dev_runtime22.
|
|
8545
|
+
children: /* @__PURE__ */ jsx_dev_runtime22.jsx(Text, {
|
|
8546
8546
|
style: { fontSize: 8 },
|
|
8547
8547
|
children: [
|
|
8548
8548
|
"Renda em ",
|
|
8549
8549
|
props.lastYearDate,
|
|
8550
8550
|
": ",
|
|
8551
|
-
/* @__PURE__ */ jsx_dev_runtime22.
|
|
8551
|
+
/* @__PURE__ */ jsx_dev_runtime22.jsx(Text, {
|
|
8552
8552
|
style: { ...boldStyle },
|
|
8553
8553
|
children: props.totalIncome
|
|
8554
8554
|
}, undefined, false, undefined, this)
|
|
@@ -8562,41 +8562,41 @@ function StockJcpTable(props) {
|
|
|
8562
8562
|
}
|
|
8563
8563
|
|
|
8564
8564
|
// src/templates/income-statement/components/stock-position-table.tsx
|
|
8565
|
-
var jsx_dev_runtime23 = require("react/jsx-
|
|
8565
|
+
var jsx_dev_runtime23 = require("react/jsx-runtime");
|
|
8566
8566
|
var tableHeaderStyle5 = { backgroundColor: "#0F1434", paddingVertical: 5, paddingHorizontal: 7 };
|
|
8567
8567
|
var tableHeaderTextStyle8 = { color: "#00E547", fontSize: 8 };
|
|
8568
8568
|
var tableCellStyle8 = { fontSize: 8 };
|
|
8569
8569
|
var zebraRow8 = (i) => i % 2 === 1 ? "#D6FFE0" : "transparent";
|
|
8570
8570
|
function StockPositionTable(props) {
|
|
8571
|
-
return /* @__PURE__ */ jsx_dev_runtime23.
|
|
8571
|
+
return /* @__PURE__ */ jsx_dev_runtime23.jsx(View, {
|
|
8572
8572
|
className: "gap-1",
|
|
8573
8573
|
children: [
|
|
8574
|
-
/* @__PURE__ */ jsx_dev_runtime23.
|
|
8574
|
+
/* @__PURE__ */ jsx_dev_runtime23.jsx(Text, {
|
|
8575
8575
|
className: "text-center",
|
|
8576
8576
|
style: { fontSize: 11, ...boldStyle },
|
|
8577
8577
|
children: props?.title
|
|
8578
8578
|
}, undefined, false, undefined, this),
|
|
8579
|
-
/* @__PURE__ */ jsx_dev_runtime23.
|
|
8580
|
-
/* @__PURE__ */ jsx_dev_runtime23.
|
|
8579
|
+
/* @__PURE__ */ jsx_dev_runtime23.jsx(Divider, {}, undefined, false, undefined, this),
|
|
8580
|
+
/* @__PURE__ */ jsx_dev_runtime23.jsx(View, {
|
|
8581
8581
|
className: "flex-row gap-1 rounded-sm",
|
|
8582
8582
|
style: { ...tableHeaderStyle5, flexWrap: "nowrap" },
|
|
8583
8583
|
children: [
|
|
8584
|
-
/* @__PURE__ */ jsx_dev_runtime23.
|
|
8584
|
+
/* @__PURE__ */ jsx_dev_runtime23.jsx(Text, {
|
|
8585
8585
|
className: "text-center",
|
|
8586
8586
|
style: { ...tableHeaderTextStyle8, width: 80, minWidth: 80, textAlign: "center" },
|
|
8587
8587
|
children: "Código Ibovespa"
|
|
8588
8588
|
}, undefined, false, undefined, this),
|
|
8589
|
-
/* @__PURE__ */ jsx_dev_runtime23.
|
|
8589
|
+
/* @__PURE__ */ jsx_dev_runtime23.jsx(Text, {
|
|
8590
8590
|
className: "flex-1 text-center",
|
|
8591
8591
|
style: { ...tableHeaderTextStyle8, textAlign: "center" },
|
|
8592
8592
|
children: "CNPJ"
|
|
8593
8593
|
}, undefined, false, undefined, this),
|
|
8594
|
-
/* @__PURE__ */ jsx_dev_runtime23.
|
|
8594
|
+
/* @__PURE__ */ jsx_dev_runtime23.jsx(Text, {
|
|
8595
8595
|
className: "text-center",
|
|
8596
8596
|
style: { ...tableHeaderTextStyle8, width: 60, minWidth: 60, textAlign: "center" },
|
|
8597
8597
|
children: "Quantidade"
|
|
8598
8598
|
}, undefined, false, undefined, this),
|
|
8599
|
-
/* @__PURE__ */ jsx_dev_runtime23.
|
|
8599
|
+
/* @__PURE__ */ jsx_dev_runtime23.jsx(Text, {
|
|
8600
8600
|
className: "flex-1 text-center",
|
|
8601
8601
|
style: { ...tableHeaderTextStyle8, textAlign: "center" },
|
|
8602
8602
|
children: [
|
|
@@ -8604,7 +8604,7 @@ function StockPositionTable(props) {
|
|
|
8604
8604
|
props.yearBeforeLastDate
|
|
8605
8605
|
]
|
|
8606
8606
|
}, undefined, true, undefined, this),
|
|
8607
|
-
/* @__PURE__ */ jsx_dev_runtime23.
|
|
8607
|
+
/* @__PURE__ */ jsx_dev_runtime23.jsx(Text, {
|
|
8608
8608
|
className: "flex-1 text-center",
|
|
8609
8609
|
style: { ...tableHeaderTextStyle8, textAlign: "center" },
|
|
8610
8610
|
children: [
|
|
@@ -8614,34 +8614,34 @@ function StockPositionTable(props) {
|
|
|
8614
8614
|
}, undefined, true, undefined, this)
|
|
8615
8615
|
]
|
|
8616
8616
|
}, undefined, true, undefined, this),
|
|
8617
|
-
/* @__PURE__ */ jsx_dev_runtime23.
|
|
8618
|
-
children: props.data.map((item2, index) => /* @__PURE__ */ jsx_dev_runtime23.
|
|
8617
|
+
/* @__PURE__ */ jsx_dev_runtime23.jsx(View, {
|
|
8618
|
+
children: props.data.map((item2, index) => /* @__PURE__ */ jsx_dev_runtime23.jsx(View, {
|
|
8619
8619
|
break: false,
|
|
8620
8620
|
wrap: false,
|
|
8621
8621
|
className: "flex-row gap-1 rounded-sm",
|
|
8622
8622
|
style: { backgroundColor: zebraRow8(index), paddingVertical: 4, paddingHorizontal: 7 },
|
|
8623
8623
|
children: [
|
|
8624
|
-
/* @__PURE__ */ jsx_dev_runtime23.
|
|
8624
|
+
/* @__PURE__ */ jsx_dev_runtime23.jsx(Text, {
|
|
8625
8625
|
className: "text-center",
|
|
8626
8626
|
style: { ...tableCellStyle8, width: 80, minWidth: 80 },
|
|
8627
8627
|
children: item2.code
|
|
8628
8628
|
}, undefined, false, undefined, this),
|
|
8629
|
-
/* @__PURE__ */ jsx_dev_runtime23.
|
|
8629
|
+
/* @__PURE__ */ jsx_dev_runtime23.jsx(Text, {
|
|
8630
8630
|
className: "flex-1 text-center",
|
|
8631
8631
|
style: tableCellStyle8,
|
|
8632
8632
|
children: item2.cnpj
|
|
8633
8633
|
}, undefined, false, undefined, this),
|
|
8634
|
-
/* @__PURE__ */ jsx_dev_runtime23.
|
|
8634
|
+
/* @__PURE__ */ jsx_dev_runtime23.jsx(Text, {
|
|
8635
8635
|
className: "text-center",
|
|
8636
8636
|
style: { ...tableCellStyle8, width: 60, minWidth: 60 },
|
|
8637
8637
|
children: item2.quantity
|
|
8638
8638
|
}, undefined, false, undefined, this),
|
|
8639
|
-
/* @__PURE__ */ jsx_dev_runtime23.
|
|
8639
|
+
/* @__PURE__ */ jsx_dev_runtime23.jsx(Text, {
|
|
8640
8640
|
className: "flex-1 text-center",
|
|
8641
8641
|
style: tableCellStyle8,
|
|
8642
8642
|
children: item2.balanceYearBeforeLast
|
|
8643
8643
|
}, undefined, false, undefined, this),
|
|
8644
|
-
/* @__PURE__ */ jsx_dev_runtime23.
|
|
8644
|
+
/* @__PURE__ */ jsx_dev_runtime23.jsx(Text, {
|
|
8645
8645
|
className: "flex-1 text-center",
|
|
8646
8646
|
style: tableCellStyle8,
|
|
8647
8647
|
children: item2.balanceLastYear
|
|
@@ -8649,49 +8649,49 @@ function StockPositionTable(props) {
|
|
|
8649
8649
|
]
|
|
8650
8650
|
}, index, true, undefined, this))
|
|
8651
8651
|
}, undefined, false, undefined, this),
|
|
8652
|
-
/* @__PURE__ */ jsx_dev_runtime23.
|
|
8652
|
+
/* @__PURE__ */ jsx_dev_runtime23.jsx(View, {
|
|
8653
8653
|
className: "flex-row items-center",
|
|
8654
8654
|
style: { ...footerSpacing },
|
|
8655
8655
|
children: [
|
|
8656
|
-
/* @__PURE__ */ jsx_dev_runtime23.
|
|
8656
|
+
/* @__PURE__ */ jsx_dev_runtime23.jsx(View, {
|
|
8657
8657
|
style: { flex: 1, alignItems: "flex-start" },
|
|
8658
|
-
children: props.positions.length >= 3 && /* @__PURE__ */ jsx_dev_runtime23.
|
|
8658
|
+
children: props.positions.length >= 3 && /* @__PURE__ */ jsx_dev_runtime23.jsx(Text, {
|
|
8659
8659
|
style: { fontSize: 8 },
|
|
8660
8660
|
children: [
|
|
8661
8661
|
"Posição em ",
|
|
8662
8662
|
props.positions[0].date,
|
|
8663
8663
|
": ",
|
|
8664
|
-
/* @__PURE__ */ jsx_dev_runtime23.
|
|
8664
|
+
/* @__PURE__ */ jsx_dev_runtime23.jsx(Text, {
|
|
8665
8665
|
style: { ...boldStyle },
|
|
8666
8666
|
children: props.positions[0].balance
|
|
8667
8667
|
}, undefined, false, undefined, this)
|
|
8668
8668
|
]
|
|
8669
8669
|
}, undefined, true, undefined, this)
|
|
8670
8670
|
}, undefined, false, undefined, this),
|
|
8671
|
-
/* @__PURE__ */ jsx_dev_runtime23.
|
|
8671
|
+
/* @__PURE__ */ jsx_dev_runtime23.jsx(View, {
|
|
8672
8672
|
style: { flex: 1, alignItems: "center" },
|
|
8673
|
-
children: props.positions.length >= 2 && /* @__PURE__ */ jsx_dev_runtime23.
|
|
8673
|
+
children: props.positions.length >= 2 && /* @__PURE__ */ jsx_dev_runtime23.jsx(Text, {
|
|
8674
8674
|
style: { fontSize: 8 },
|
|
8675
8675
|
children: [
|
|
8676
8676
|
"Posição em ",
|
|
8677
8677
|
props.positions[props.positions.length - 2].date,
|
|
8678
8678
|
": ",
|
|
8679
|
-
/* @__PURE__ */ jsx_dev_runtime23.
|
|
8679
|
+
/* @__PURE__ */ jsx_dev_runtime23.jsx(Text, {
|
|
8680
8680
|
style: { ...boldStyle },
|
|
8681
8681
|
children: props.positions[props.positions.length - 2].balance
|
|
8682
8682
|
}, undefined, false, undefined, this)
|
|
8683
8683
|
]
|
|
8684
8684
|
}, undefined, true, undefined, this)
|
|
8685
8685
|
}, undefined, false, undefined, this),
|
|
8686
|
-
/* @__PURE__ */ jsx_dev_runtime23.
|
|
8686
|
+
/* @__PURE__ */ jsx_dev_runtime23.jsx(View, {
|
|
8687
8687
|
style: { flex: 1, alignItems: "flex-end" },
|
|
8688
|
-
children: props.positions.length >= 1 && /* @__PURE__ */ jsx_dev_runtime23.
|
|
8688
|
+
children: props.positions.length >= 1 && /* @__PURE__ */ jsx_dev_runtime23.jsx(Text, {
|
|
8689
8689
|
style: { fontSize: 8 },
|
|
8690
8690
|
children: [
|
|
8691
8691
|
"Posição em ",
|
|
8692
8692
|
props.positions[props.positions.length - 1].date,
|
|
8693
8693
|
": ",
|
|
8694
|
-
/* @__PURE__ */ jsx_dev_runtime23.
|
|
8694
|
+
/* @__PURE__ */ jsx_dev_runtime23.jsx(Text, {
|
|
8695
8695
|
style: { ...boldStyle },
|
|
8696
8696
|
children: props.positions[props.positions.length - 1].balance
|
|
8697
8697
|
}, undefined, false, undefined, this)
|
|
@@ -8705,25 +8705,25 @@ function StockPositionTable(props) {
|
|
|
8705
8705
|
}
|
|
8706
8706
|
|
|
8707
8707
|
// src/templates/income-statement/components/stock-transactions.tsx
|
|
8708
|
-
var jsx_dev_runtime24 = require("react/jsx-
|
|
8708
|
+
var jsx_dev_runtime24 = require("react/jsx-runtime");
|
|
8709
8709
|
var tableHeaderTextStyle9 = { color: "#00E547", fontSize: 8 };
|
|
8710
8710
|
var tableCellStyle9 = { fontSize: 8 };
|
|
8711
8711
|
var zebraRow9 = (i) => i % 2 === 1 ? "#D6FFE0" : "transparent";
|
|
8712
8712
|
function StockTransactions(props) {
|
|
8713
|
-
return /* @__PURE__ */ jsx_dev_runtime24.
|
|
8713
|
+
return /* @__PURE__ */ jsx_dev_runtime24.jsx(View, {
|
|
8714
8714
|
className: "gap-1",
|
|
8715
8715
|
children: [
|
|
8716
|
-
/* @__PURE__ */ jsx_dev_runtime24.
|
|
8716
|
+
/* @__PURE__ */ jsx_dev_runtime24.jsx(Text, {
|
|
8717
8717
|
className: "text-center",
|
|
8718
8718
|
style: { fontSize: 11, ...boldStyle },
|
|
8719
8719
|
children: props?.title
|
|
8720
8720
|
}, undefined, false, undefined, this),
|
|
8721
|
-
/* @__PURE__ */ jsx_dev_runtime24.
|
|
8722
|
-
/* @__PURE__ */ jsx_dev_runtime24.
|
|
8721
|
+
/* @__PURE__ */ jsx_dev_runtime24.jsx(Divider, {}, undefined, false, undefined, this),
|
|
8722
|
+
/* @__PURE__ */ jsx_dev_runtime24.jsx(View, {
|
|
8723
8723
|
className: "gap-1 rounded-sm",
|
|
8724
8724
|
style: { backgroundColor: "#0F1434", paddingVertical: 6, paddingHorizontal: 7 },
|
|
8725
8725
|
children: [
|
|
8726
|
-
/* @__PURE__ */ jsx_dev_runtime24.
|
|
8726
|
+
/* @__PURE__ */ jsx_dev_runtime24.jsx(Text, {
|
|
8727
8727
|
className: "text-center",
|
|
8728
8728
|
style: { fontSize: 9, color: "#00E547" },
|
|
8729
8729
|
children: [
|
|
@@ -8731,34 +8731,34 @@ function StockTransactions(props) {
|
|
|
8731
8731
|
props.year
|
|
8732
8732
|
]
|
|
8733
8733
|
}, undefined, true, undefined, this),
|
|
8734
|
-
/* @__PURE__ */ jsx_dev_runtime24.
|
|
8734
|
+
/* @__PURE__ */ jsx_dev_runtime24.jsx(Divider, {
|
|
8735
8735
|
style: { backgroundColor: "rgba(255,255,255,0.25)" }
|
|
8736
8736
|
}, undefined, false, undefined, this),
|
|
8737
|
-
/* @__PURE__ */ jsx_dev_runtime24.
|
|
8737
|
+
/* @__PURE__ */ jsx_dev_runtime24.jsx(View, {
|
|
8738
8738
|
className: "flex-row gap-1",
|
|
8739
8739
|
style: { flexWrap: "nowrap" },
|
|
8740
8740
|
children: [
|
|
8741
|
-
/* @__PURE__ */ jsx_dev_runtime24.
|
|
8741
|
+
/* @__PURE__ */ jsx_dev_runtime24.jsx(Text, {
|
|
8742
8742
|
className: "text-center",
|
|
8743
8743
|
style: { ...tableHeaderTextStyle9, width: 70, minWidth: 70, textAlign: "center" },
|
|
8744
8744
|
children: "Mês"
|
|
8745
8745
|
}, undefined, false, undefined, this),
|
|
8746
|
-
/* @__PURE__ */ jsx_dev_runtime24.
|
|
8746
|
+
/* @__PURE__ */ jsx_dev_runtime24.jsx(Text, {
|
|
8747
8747
|
className: "flex-1 text-center",
|
|
8748
8748
|
style: { ...tableHeaderTextStyle9, textAlign: "center" },
|
|
8749
8749
|
children: "Volume de Vendas"
|
|
8750
8750
|
}, undefined, false, undefined, this),
|
|
8751
|
-
/* @__PURE__ */ jsx_dev_runtime24.
|
|
8751
|
+
/* @__PURE__ */ jsx_dev_runtime24.jsx(Text, {
|
|
8752
8752
|
className: "text-center",
|
|
8753
8753
|
style: { ...tableHeaderTextStyle9, width: 70, minWidth: 70, textAlign: "center" },
|
|
8754
8754
|
children: "Lucro"
|
|
8755
8755
|
}, undefined, false, undefined, this),
|
|
8756
|
-
/* @__PURE__ */ jsx_dev_runtime24.
|
|
8756
|
+
/* @__PURE__ */ jsx_dev_runtime24.jsx(Text, {
|
|
8757
8757
|
className: "text-center",
|
|
8758
8758
|
style: { ...tableHeaderTextStyle9, width: 90, minWidth: 90, textAlign: "center" },
|
|
8759
8759
|
children: "Perda"
|
|
8760
8760
|
}, undefined, false, undefined, this),
|
|
8761
|
-
/* @__PURE__ */ jsx_dev_runtime24.
|
|
8761
|
+
/* @__PURE__ */ jsx_dev_runtime24.jsx(Text, {
|
|
8762
8762
|
className: "text-center",
|
|
8763
8763
|
style: { ...tableHeaderTextStyle9, width: 100, minWidth: 100, textAlign: "center" },
|
|
8764
8764
|
children: "Resultado Lucro/Perda"
|
|
@@ -8767,34 +8767,34 @@ function StockTransactions(props) {
|
|
|
8767
8767
|
}, undefined, true, undefined, this)
|
|
8768
8768
|
]
|
|
8769
8769
|
}, undefined, true, undefined, this),
|
|
8770
|
-
/* @__PURE__ */ jsx_dev_runtime24.
|
|
8771
|
-
children: props.data.map((item2, index) => /* @__PURE__ */ jsx_dev_runtime24.
|
|
8770
|
+
/* @__PURE__ */ jsx_dev_runtime24.jsx(View, {
|
|
8771
|
+
children: props.data.map((item2, index) => /* @__PURE__ */ jsx_dev_runtime24.jsx(View, {
|
|
8772
8772
|
break: false,
|
|
8773
8773
|
wrap: false,
|
|
8774
8774
|
className: "flex-row gap-1 rounded-sm",
|
|
8775
8775
|
style: { backgroundColor: zebraRow9(index), paddingVertical: 4, paddingHorizontal: 7 },
|
|
8776
8776
|
children: [
|
|
8777
|
-
/* @__PURE__ */ jsx_dev_runtime24.
|
|
8777
|
+
/* @__PURE__ */ jsx_dev_runtime24.jsx(Text, {
|
|
8778
8778
|
className: "w-[70px] text-center",
|
|
8779
8779
|
style: tableCellStyle9,
|
|
8780
8780
|
children: item2.month
|
|
8781
8781
|
}, undefined, false, undefined, this),
|
|
8782
|
-
/* @__PURE__ */ jsx_dev_runtime24.
|
|
8782
|
+
/* @__PURE__ */ jsx_dev_runtime24.jsx(Text, {
|
|
8783
8783
|
className: "flex-1 text-center",
|
|
8784
8784
|
style: tableCellStyle9,
|
|
8785
8785
|
children: item2.sellVolume
|
|
8786
8786
|
}, undefined, false, undefined, this),
|
|
8787
|
-
/* @__PURE__ */ jsx_dev_runtime24.
|
|
8787
|
+
/* @__PURE__ */ jsx_dev_runtime24.jsx(Text, {
|
|
8788
8788
|
className: "w-[70px] text-center",
|
|
8789
8789
|
style: tableCellStyle9,
|
|
8790
8790
|
children: item2.profit
|
|
8791
8791
|
}, undefined, false, undefined, this),
|
|
8792
|
-
/* @__PURE__ */ jsx_dev_runtime24.
|
|
8792
|
+
/* @__PURE__ */ jsx_dev_runtime24.jsx(Text, {
|
|
8793
8793
|
className: "w-[90px] text-center",
|
|
8794
8794
|
style: tableCellStyle9,
|
|
8795
8795
|
children: item2.loss
|
|
8796
8796
|
}, undefined, false, undefined, this),
|
|
8797
|
-
/* @__PURE__ */ jsx_dev_runtime24.
|
|
8797
|
+
/* @__PURE__ */ jsx_dev_runtime24.jsx(Text, {
|
|
8798
8798
|
className: "w-[100px] text-center",
|
|
8799
8799
|
style: tableCellStyle9,
|
|
8800
8800
|
children: item2.profitLossResult
|
|
@@ -8807,22 +8807,22 @@ function StockTransactions(props) {
|
|
|
8807
8807
|
}
|
|
8808
8808
|
|
|
8809
8809
|
// src/templates/income-statement/components/title.tsx
|
|
8810
|
-
var jsx_dev_runtime25 = require("react/jsx-
|
|
8810
|
+
var jsx_dev_runtime25 = require("react/jsx-runtime");
|
|
8811
8811
|
function Title({ children }) {
|
|
8812
|
-
return /* @__PURE__ */ jsx_dev_runtime25.
|
|
8812
|
+
return /* @__PURE__ */ jsx_dev_runtime25.jsx(View, {
|
|
8813
8813
|
children: [
|
|
8814
|
-
/* @__PURE__ */ jsx_dev_runtime25.
|
|
8814
|
+
/* @__PURE__ */ jsx_dev_runtime25.jsx(Text, {
|
|
8815
8815
|
className: "text-center",
|
|
8816
8816
|
style: { fontSize: 11 },
|
|
8817
8817
|
children
|
|
8818
8818
|
}, undefined, false, undefined, this),
|
|
8819
|
-
/* @__PURE__ */ jsx_dev_runtime25.
|
|
8819
|
+
/* @__PURE__ */ jsx_dev_runtime25.jsx(Divider, {}, undefined, false, undefined, this)
|
|
8820
8820
|
]
|
|
8821
8821
|
}, undefined, true, undefined, this);
|
|
8822
8822
|
}
|
|
8823
8823
|
|
|
8824
8824
|
// src/templates/income-statement/index.tsx
|
|
8825
|
-
var jsx_dev_runtime26 = require("react/jsx-
|
|
8825
|
+
var jsx_dev_runtime26 = require("react/jsx-runtime");
|
|
8826
8826
|
function IncomeStatement({ data }) {
|
|
8827
8827
|
const homeProps = mapToHomeProps(data);
|
|
8828
8828
|
const fixedIncomeProps = mapToFixedIncomeProps(data);
|
|
@@ -8835,20 +8835,20 @@ function IncomeStatement({ data }) {
|
|
|
8835
8835
|
const stockTransactionsProps = mapToStockTransactionsProps(data);
|
|
8836
8836
|
const stockDarfProps = mapToDarfTableProps(data.stockDarfHtml.year, data.stockDarfHtml.darfStockTableRows);
|
|
8837
8837
|
const depentTransfersList = mapToDepentTransfersProps(data);
|
|
8838
|
-
return /* @__PURE__ */ jsx_dev_runtime26.
|
|
8838
|
+
return /* @__PURE__ */ jsx_dev_runtime26.jsx(DataProvider, {
|
|
8839
8839
|
initial: data,
|
|
8840
|
-
children: /* @__PURE__ */ jsx_dev_runtime26.
|
|
8840
|
+
children: /* @__PURE__ */ jsx_dev_runtime26.jsx(import_renderer7.Document, {
|
|
8841
8841
|
children: [
|
|
8842
|
-
/* @__PURE__ */ jsx_dev_runtime26.
|
|
8842
|
+
/* @__PURE__ */ jsx_dev_runtime26.jsx(Page, {
|
|
8843
8843
|
size: "A4",
|
|
8844
8844
|
style: { paddingHorizontal: 40, paddingTop: 24, paddingBottom: 24 },
|
|
8845
|
-
children: /* @__PURE__ */ jsx_dev_runtime26.
|
|
8845
|
+
children: /* @__PURE__ */ jsx_dev_runtime26.jsx(View, {
|
|
8846
8846
|
style: { flex: 1, flexDirection: "column", gap: 16 },
|
|
8847
8847
|
children: [
|
|
8848
|
-
/* @__PURE__ */ jsx_dev_runtime26.
|
|
8848
|
+
/* @__PURE__ */ jsx_dev_runtime26.jsx(Home, {
|
|
8849
8849
|
...homeProps
|
|
8850
8850
|
}, undefined, false, undefined, this),
|
|
8851
|
-
/* @__PURE__ */ jsx_dev_runtime26.
|
|
8851
|
+
/* @__PURE__ */ jsx_dev_runtime26.jsx(AccountInfo, {
|
|
8852
8852
|
title: "CONTA DIGITAL",
|
|
8853
8853
|
bankCode: data.bankCode ?? "278",
|
|
8854
8854
|
bankAgency: data.bankAccountBranch,
|
|
@@ -8858,60 +8858,60 @@ function IncomeStatement({ data }) {
|
|
|
8858
8858
|
lastYearBankDate: data.lastYearBankDate,
|
|
8859
8859
|
lastYearBankBalance: data.lastYearBankBalance
|
|
8860
8860
|
}, undefined, false, undefined, this),
|
|
8861
|
-
/* @__PURE__ */ jsx_dev_runtime26.
|
|
8861
|
+
/* @__PURE__ */ jsx_dev_runtime26.jsx(View, {
|
|
8862
8862
|
style: { flexGrow: 1 }
|
|
8863
8863
|
}, undefined, false, undefined, this),
|
|
8864
|
-
/* @__PURE__ */ jsx_dev_runtime26.
|
|
8864
|
+
/* @__PURE__ */ jsx_dev_runtime26.jsx(View, {
|
|
8865
8865
|
style: { paddingTop: 16, paddingBottom: 8 },
|
|
8866
|
-
children: /* @__PURE__ */ jsx_dev_runtime26.
|
|
8866
|
+
children: /* @__PURE__ */ jsx_dev_runtime26.jsx(Footer, {}, undefined, false, undefined, this)
|
|
8867
8867
|
}, undefined, false, undefined, this)
|
|
8868
8868
|
]
|
|
8869
8869
|
}, undefined, true, undefined, this)
|
|
8870
8870
|
}, undefined, false, undefined, this),
|
|
8871
|
-
/* @__PURE__ */ jsx_dev_runtime26.
|
|
8871
|
+
/* @__PURE__ */ jsx_dev_runtime26.jsx(Page, {
|
|
8872
8872
|
size: "A4",
|
|
8873
8873
|
className: "gap-6 px-8 py-10",
|
|
8874
8874
|
style: { position: "relative" },
|
|
8875
8875
|
children: [
|
|
8876
|
-
/* @__PURE__ */ jsx_dev_runtime26.
|
|
8876
|
+
/* @__PURE__ */ jsx_dev_runtime26.jsx(FixedIncome, {
|
|
8877
8877
|
...fixedIncomeProps
|
|
8878
8878
|
}, undefined, false, undefined, this),
|
|
8879
|
-
/* @__PURE__ */ jsx_dev_runtime26.
|
|
8879
|
+
/* @__PURE__ */ jsx_dev_runtime26.jsx(FiisTable, {
|
|
8880
8880
|
...fiisTableProps
|
|
8881
8881
|
}, undefined, false, undefined, this),
|
|
8882
|
-
/* @__PURE__ */ jsx_dev_runtime26.
|
|
8882
|
+
/* @__PURE__ */ jsx_dev_runtime26.jsx(FiisTransactionTable, {
|
|
8883
8883
|
...fiisTransactionProps
|
|
8884
8884
|
}, undefined, false, undefined, this),
|
|
8885
|
-
/* @__PURE__ */ jsx_dev_runtime26.
|
|
8885
|
+
/* @__PURE__ */ jsx_dev_runtime26.jsx(DarfTable, {
|
|
8886
8886
|
...fundDarfProps
|
|
8887
8887
|
}, undefined, false, undefined, this),
|
|
8888
|
-
/* @__PURE__ */ jsx_dev_runtime26.
|
|
8888
|
+
/* @__PURE__ */ jsx_dev_runtime26.jsx(StockPositionTable, {
|
|
8889
8889
|
...stockPositionProps
|
|
8890
8890
|
}, undefined, false, undefined, this),
|
|
8891
|
-
/* @__PURE__ */ jsx_dev_runtime26.
|
|
8891
|
+
/* @__PURE__ */ jsx_dev_runtime26.jsx(StockDividendTable, {
|
|
8892
8892
|
...stockDividendProps
|
|
8893
8893
|
}, undefined, false, undefined, this),
|
|
8894
|
-
/* @__PURE__ */ jsx_dev_runtime26.
|
|
8894
|
+
/* @__PURE__ */ jsx_dev_runtime26.jsx(StockJcpTable, {
|
|
8895
8895
|
...stockJcpProps
|
|
8896
8896
|
}, undefined, false, undefined, this),
|
|
8897
|
-
/* @__PURE__ */ jsx_dev_runtime26.
|
|
8897
|
+
/* @__PURE__ */ jsx_dev_runtime26.jsx(StockTransactions, {
|
|
8898
8898
|
...stockTransactionsProps
|
|
8899
8899
|
}, undefined, false, undefined, this),
|
|
8900
|
-
/* @__PURE__ */ jsx_dev_runtime26.
|
|
8900
|
+
/* @__PURE__ */ jsx_dev_runtime26.jsx(DarfTable, {
|
|
8901
8901
|
...stockDarfProps
|
|
8902
8902
|
}, undefined, false, undefined, this),
|
|
8903
|
-
/* @__PURE__ */ jsx_dev_runtime26.
|
|
8903
|
+
/* @__PURE__ */ jsx_dev_runtime26.jsx(Title, {
|
|
8904
8904
|
children: [
|
|
8905
8905
|
"Transferência para Dependentes - ",
|
|
8906
8906
|
data.transactionHtml.year
|
|
8907
8907
|
]
|
|
8908
8908
|
}, undefined, true, undefined, this),
|
|
8909
|
-
depentTransfersList.map((props, index) => /* @__PURE__ */ jsx_dev_runtime26.
|
|
8909
|
+
depentTransfersList.map((props, index) => /* @__PURE__ */ jsx_dev_runtime26.jsx(DepentTransfers, {
|
|
8910
8910
|
...props
|
|
8911
8911
|
}, index, false, undefined, this)),
|
|
8912
|
-
/* @__PURE__ */ jsx_dev_runtime26.
|
|
8912
|
+
/* @__PURE__ */ jsx_dev_runtime26.jsx(View, {
|
|
8913
8913
|
style: { flexGrow: 1, justifyContent: "flex-end", minHeight: 200, marginTop: 24 },
|
|
8914
|
-
children: /* @__PURE__ */ jsx_dev_runtime26.
|
|
8914
|
+
children: /* @__PURE__ */ jsx_dev_runtime26.jsx(Text, {
|
|
8915
8915
|
className: "text-justify text-xs leading-tight",
|
|
8916
8916
|
style: { fontSize: 7, lineHeight: 1.35 },
|
|
8917
8917
|
children: [
|