@credithub/harlan-components 1.16.3 → 1.17.0
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/lib/cjs/index.js
CHANGED
|
@@ -13893,14 +13893,15 @@ var Protestos = function () {
|
|
|
13893
13893
|
});
|
|
13894
13894
|
};
|
|
13895
13895
|
return (React.createElement(Section, { ctx: ctx, title: "Apontamentos na Central de Protestos (CENPROT)", subtitle: "Consulta de protestos de cr\u00E9dito, imposto e gerais.", icon: ProtestosIcon, onSuccess: function (data) {
|
|
13896
|
+
var byDate = function (protesto, protesto2) { var _a, _b; return ((_a = formatDatePtBrToDate(XPathUtils.select("string(./dataProtesto)", protesto2))) === null || _a === void 0 ? void 0 : _a.getTime()) - ((_b = formatDatePtBrToDate(XPathUtils.select("string(./dataProtesto)", protesto))) === null || _b === void 0 ? void 0 : _b.getTime()); };
|
|
13896
13897
|
var registros = XPathUtils.select("number(//registros)", data);
|
|
13897
|
-
var protestosDeCredito = filterProtestos(REGEX_PROTESTOS_DE_CREDITO, data);
|
|
13898
|
-
var protestosDeImposto = filterProtestos(REGEX_PROTESTOS_DE_IMPOSTO, data);
|
|
13898
|
+
var protestosDeCredito = filterProtestos(REGEX_PROTESTOS_DE_CREDITO, data).sort(byDate);
|
|
13899
|
+
var protestosDeImposto = filterProtestos(REGEX_PROTESTOS_DE_IMPOSTO, data).sort(byDate);
|
|
13899
13900
|
var protestosGerais = XPathUtils.selectArray("//body//protesto", data).filter(function (protesto) {
|
|
13900
13901
|
var nomeCedente = XPathUtils.select("string(./nomeCedente)", protesto);
|
|
13901
13902
|
return (!REGEX_PROTESTOS_DE_IMPOSTO.test(nomeCedente) &&
|
|
13902
13903
|
!REGEX_PROTESTOS_DE_CREDITO.test(nomeCedente));
|
|
13903
|
-
});
|
|
13904
|
+
}).sort(byDate);
|
|
13904
13905
|
var elements = [
|
|
13905
13906
|
{
|
|
13906
13907
|
total: protestosDeCredito === null || protestosDeCredito === void 0 ? void 0 : protestosDeCredito.length,
|
|
@@ -65350,10 +65351,18 @@ var ConsultaSimples = function (_a) {
|
|
|
65350
65351
|
React.createElement(Veiculos, { documento: documento })),
|
|
65351
65352
|
React.createElement(Protestos, null),
|
|
65352
65353
|
React.createElement(CCF, null),
|
|
65354
|
+
React.createElement(DividasPublicas, null),
|
|
65353
65355
|
React.createElement(ProcessosJuridicos, { onClickConsultarProcessoJuridico: onClickConsultarProcessoJuridico })))))))))))));
|
|
65354
65356
|
};
|
|
65355
65357
|
var templateObject_1;
|
|
65356
65358
|
|
|
65359
|
+
var DividasVencidasSerasaIcon = function (_a) {
|
|
65360
|
+
var _b = _a.className, className = _b === void 0 ? "" : _b, _c = _a.size, size = _c === void 0 ? 30 : _c, _d = _a.circleFill, circleFill = _d === void 0 ? theme.colors.azulCredithub : _d;
|
|
65361
|
+
return (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: size, height: size, fill: "none", viewBox: "0 0 30 30", className: className },
|
|
65362
|
+
React.createElement("circle", { cx: "15", cy: "15", r: "15", fill: circleFill }),
|
|
65363
|
+
React.createElement("path", { fill: "#fff", d: "M15 19.4L13.4 21a.948.948 0 01-.7.275A.948.948 0 0112 21a.948.948 0 01-.275-.7c0-.283.092-.517.275-.7l1.6-1.6-1.6-1.6a.948.948 0 01-.275-.7c0-.283.092-.517.275-.7a.948.948 0 01.7-.275c.283 0 .517.092.7.275l1.6 1.6 1.6-1.6a.948.948 0 01.7-.275c.283 0 .517.092.7.275a.948.948 0 01.275.7.948.948 0 01-.275.7L16.4 18l1.6 1.6a.948.948 0 01.275.7.948.948 0 01-.275.7.948.948 0 01-.7.275.948.948 0 01-.7-.275L15 19.4zM8 25c-.55 0-1.02-.196-1.412-.587A1.926 1.926 0 016 23V9c0-.55.196-1.02.588-1.412A1.926 1.926 0 018 7h1V6c0-.283.096-.52.287-.713A.968.968 0 0110 5c.283 0 .52.096.713.287.191.192.287.43.287.713v1h8V6c0-.283.096-.52.288-.713A.968.968 0 0120 5c.283 0 .52.096.712.287.192.192.288.43.288.713v1h1c.55 0 1.02.196 1.413.588.391.391.587.862.587 1.412v14c0 .55-.196 1.02-.587 1.413A1.926 1.926 0 0122 25H8zm0-2h14V13H8v10zm0-12h14V9H8v2z" })));
|
|
65364
|
+
};
|
|
65365
|
+
|
|
65357
65366
|
var __spreadArray = (undefined && undefined.__spreadArray) || function (to, from, pack) {
|
|
65358
65367
|
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
65359
65368
|
if (ar || !(i in from)) {
|
|
@@ -65366,7 +65375,7 @@ var __spreadArray = (undefined && undefined.__spreadArray) || function (to, from
|
|
|
65366
65375
|
var DividasPublicas = function () {
|
|
65367
65376
|
var ctx = React.useContext(Queries.Finder);
|
|
65368
65377
|
var Section = ctx.Section;
|
|
65369
|
-
return (React.createElement(Section, { title: "Dividas P\u00FAblicas", subtitle: "Vejas As D\u00EDvidas P\u00FAblicas Com A Uni\u00E3o (Ativa, Fgts E Previdenciaria)", onSuccess: function (document) {
|
|
65378
|
+
return (React.createElement(Section, { title: "Dividas P\u00FAblicas", icon: DividasVencidasSerasaIcon, subtitle: "Vejas As D\u00EDvidas P\u00FAblicas Com A Uni\u00E3o (Ativa, Fgts E Previdenciaria)", onSuccess: function (document) {
|
|
65370
65379
|
var parseDividas = function (tipo) { return function (divida) { return ({
|
|
65371
65380
|
nomeDoDevedor: XPathUtils.select('string(./nome_devedor)', divida),
|
|
65372
65381
|
tipoDePessoa: XPathUtils.select('string(./tipo_pessoa)', divida),
|
|
@@ -65382,31 +65391,35 @@ var DividasPublicas = function () {
|
|
|
65382
65391
|
tipoDeDivida: tipo
|
|
65383
65392
|
}); }; };
|
|
65384
65393
|
var dividas = __spreadArray(__spreadArray(__spreadArray([], XPathUtils.selectArray('//dividas/fgts/divida', document).map(parseDividas('FGTS')), true), XPathUtils.selectArray('//dividas/previdenciaria/divida', document).map(parseDividas('Previdenciária')), true), XPathUtils.selectArray('//dividas/ativa-geral/divida', document).map(parseDividas('Divida Ativa União')), true);
|
|
65385
|
-
var
|
|
65386
|
-
|
|
65394
|
+
var totalOcorrencias = dividas === null || dividas === void 0 ? void 0 : dividas.length;
|
|
65395
|
+
var children = totalOcorrencias ? (React.createElement(Result, null,
|
|
65396
|
+
React.createElement(DividasPublicasList, { dividas: dividas }))) : null;
|
|
65387
65397
|
return {
|
|
65388
65398
|
children: children,
|
|
65389
|
-
|
|
65390
|
-
description: (
|
|
65399
|
+
variant: totalOcorrencias ? 'error' : 'default',
|
|
65400
|
+
description: (React.createElement(StatusMessage, { type: totalOcorrencias ? 'error' : 'default' }, totalOcorrencias
|
|
65401
|
+
? totalOcorrencias === 1
|
|
65402
|
+
? "Encontrado uma dívida pública"
|
|
65403
|
+
: "".concat(totalOcorrencias, " d\u00EDvidas encontradas")
|
|
65404
|
+
: "Nenhuma dívida pública encontrada"))
|
|
65391
65405
|
};
|
|
65392
65406
|
} }));
|
|
65393
65407
|
};
|
|
65394
65408
|
var DividasPublicasList = React.memo(function (_a) {
|
|
65395
65409
|
var dividas = _a.dividas;
|
|
65396
|
-
return (React.createElement(
|
|
65397
|
-
React.createElement(
|
|
65398
|
-
|
|
65399
|
-
|
|
65400
|
-
|
|
65401
|
-
|
|
65402
|
-
|
|
65403
|
-
|
|
65404
|
-
|
|
65405
|
-
|
|
65406
|
-
|
|
65407
|
-
|
|
65408
|
-
|
|
65409
|
-
React.createElement(AddItemField, { name: "Tipo de D\u00EDvida", value: divida.tipoDeDivida })))); })));
|
|
65410
|
+
return (React.createElement(Result, null, dividas.map(function (divida, i) { return (React.createElement(ResultContent, { desktop: "repeat(7, 1fr)", tablet: "repeat(3, 1fr)", mobile: "repeat(1, 1fr)", key: i, className: "content" },
|
|
65411
|
+
React.createElement(AddItemField, { name: "Nome do Devedor", value: divida.nomeDoDevedor }),
|
|
65412
|
+
React.createElement(AddItemField, { name: "Tipo de Pessoa", value: divida.tipoDePessoa }),
|
|
65413
|
+
React.createElement(AddItemField, { name: "Tipo de Devedor", value: divida.tipoDeDevedor }),
|
|
65414
|
+
React.createElement(AddItemField, { name: "Unidade Respons\u00E1vel", value: divida.unidadeResponsavel }),
|
|
65415
|
+
React.createElement(AddItemField, { name: "UF da Unidade Respons\u00E1vel", value: divida.uFDaUnidadeResponsavel }),
|
|
65416
|
+
React.createElement(AddItemField, { name: "N\u00FAmero de inscri\u00E7\u00E3o da D\u00EDvida", value: divida.numeroDeInscricaoDaDivida }),
|
|
65417
|
+
React.createElement(AddItemField, { name: "Tipo da Situa\u00E7\u00E3o da Inscri\u00E7\u00E3o", value: divida.tipoDaSituacaoDaInscricao }),
|
|
65418
|
+
React.createElement(AddItemField, { name: "Situa\u00E7\u00E3o da Inscri\u00E7\u00E3o", value: divida.situacaoDaInscricao }),
|
|
65419
|
+
React.createElement(AddItemField, { name: "Data de Inscri\u00E7\u00E3o", value: divida.dataDeInscricao }),
|
|
65420
|
+
React.createElement(AddItemField, { name: "Indicador Aju\u00EDzado", value: divida.indicadorAjuizado }),
|
|
65421
|
+
React.createElement(AddItemField, { name: "Valor consolidado", value: divida.valorConsolidado }),
|
|
65422
|
+
React.createElement(AddItemField, { name: "Tipo de D\u00EDvida", value: divida.tipoDeDivida }))); })));
|
|
65410
65423
|
});
|
|
65411
65424
|
|
|
65412
65425
|
var PessoaPoliticamenteExposta = function () {
|
|
@@ -65451,13 +65464,6 @@ var PefinRefinSerasaIcon = function (_a) {
|
|
|
65451
65464
|
React.createElement("path", { stroke: "#fff", strokeLinecap: "round", strokeWidth: "2", d: "M23 25L5 7" })));
|
|
65452
65465
|
};
|
|
65453
65466
|
|
|
65454
|
-
var DividasVencidasSerasaIcon = function (_a) {
|
|
65455
|
-
var _b = _a.className, className = _b === void 0 ? "" : _b, _c = _a.size, size = _c === void 0 ? 30 : _c, _d = _a.circleFill, circleFill = _d === void 0 ? theme.colors.azulCredithub : _d;
|
|
65456
|
-
return (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: size, height: size, fill: "none", viewBox: "0 0 30 30", className: className },
|
|
65457
|
-
React.createElement("circle", { cx: "15", cy: "15", r: "15", fill: circleFill }),
|
|
65458
|
-
React.createElement("path", { fill: "#fff", d: "M15 19.4L13.4 21a.948.948 0 01-.7.275A.948.948 0 0112 21a.948.948 0 01-.275-.7c0-.283.092-.517.275-.7l1.6-1.6-1.6-1.6a.948.948 0 01-.275-.7c0-.283.092-.517.275-.7a.948.948 0 01.7-.275c.283 0 .517.092.7.275l1.6 1.6 1.6-1.6a.948.948 0 01.7-.275c.283 0 .517.092.7.275a.948.948 0 01.275.7.948.948 0 01-.275.7L16.4 18l1.6 1.6a.948.948 0 01.275.7.948.948 0 01-.275.7.948.948 0 01-.7.275.948.948 0 01-.7-.275L15 19.4zM8 25c-.55 0-1.02-.196-1.412-.587A1.926 1.926 0 016 23V9c0-.55.196-1.02.588-1.412A1.926 1.926 0 018 7h1V6c0-.283.096-.52.287-.713A.968.968 0 0110 5c.283 0 .52.096.713.287.191.192.287.43.287.713v1h8V6c0-.283.096-.52.288-.713A.968.968 0 0120 5c.283 0 .52.096.712.287.192.192.288.43.288.713v1h1c.55 0 1.02.196 1.413.588.391.391.587.862.587 1.412v14c0 .55-.196 1.02-.587 1.413A1.926 1.926 0 0122 25H8zm0-2h14V13H8v10zm0-12h14V9H8v2z" })));
|
|
65459
|
-
};
|
|
65460
|
-
|
|
65461
65467
|
var __assign$2 = (undefined && undefined.__assign) || function () {
|
|
65462
65468
|
__assign$2 = Object.assign || function(t) {
|
|
65463
65469
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -10,13 +10,15 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
|
10
10
|
import React, { memo, useContext } from "react";
|
|
11
11
|
import { Queries } from "../webservice";
|
|
12
12
|
import XPathUtils from "../../utils/xpath";
|
|
13
|
-
import { Result } from "../interface/result";
|
|
13
|
+
import { Result, ResultContent } from "../interface/result";
|
|
14
14
|
import AddItemField from "../common/addItem";
|
|
15
15
|
import { formatMoney } from "../../utils/number";
|
|
16
|
+
import DividasVencidasSerasaIcon from "../../assets/icones/dividasVencidasSerasa";
|
|
17
|
+
import StatusMessage from "../interface/statusMessage";
|
|
16
18
|
var DividasPublicas = function () {
|
|
17
19
|
var ctx = useContext(Queries.Finder);
|
|
18
20
|
var Section = ctx.Section;
|
|
19
|
-
return (React.createElement(Section, { title: "Dividas P\u00FAblicas", subtitle: "Vejas As D\u00EDvidas P\u00FAblicas Com A Uni\u00E3o (Ativa, Fgts E Previdenciaria)", onSuccess: function (document) {
|
|
21
|
+
return (React.createElement(Section, { title: "Dividas P\u00FAblicas", icon: DividasVencidasSerasaIcon, subtitle: "Vejas As D\u00EDvidas P\u00FAblicas Com A Uni\u00E3o (Ativa, Fgts E Previdenciaria)", onSuccess: function (document) {
|
|
20
22
|
var parseDividas = function (tipo) { return function (divida) { return ({
|
|
21
23
|
nomeDoDevedor: XPathUtils.select('string(./nome_devedor)', divida),
|
|
22
24
|
tipoDePessoa: XPathUtils.select('string(./tipo_pessoa)', divida),
|
|
@@ -32,30 +34,34 @@ var DividasPublicas = function () {
|
|
|
32
34
|
tipoDeDivida: tipo
|
|
33
35
|
}); }; };
|
|
34
36
|
var dividas = __spreadArray(__spreadArray(__spreadArray([], XPathUtils.selectArray('//dividas/fgts/divida', document).map(parseDividas('FGTS')), true), XPathUtils.selectArray('//dividas/previdenciaria/divida', document).map(parseDividas('Previdenciária')), true), XPathUtils.selectArray('//dividas/ativa-geral/divida', document).map(parseDividas('Divida Ativa União')), true);
|
|
35
|
-
var
|
|
36
|
-
|
|
37
|
+
var totalOcorrencias = dividas === null || dividas === void 0 ? void 0 : dividas.length;
|
|
38
|
+
var children = totalOcorrencias ? (React.createElement(Result, null,
|
|
39
|
+
React.createElement(DividasPublicasList, { dividas: dividas }))) : null;
|
|
37
40
|
return {
|
|
38
41
|
children: children,
|
|
39
|
-
|
|
40
|
-
description: (
|
|
42
|
+
variant: totalOcorrencias ? 'error' : 'default',
|
|
43
|
+
description: (React.createElement(StatusMessage, { type: totalOcorrencias ? 'error' : 'default' }, totalOcorrencias
|
|
44
|
+
? totalOcorrencias === 1
|
|
45
|
+
? "Encontrado uma dívida pública"
|
|
46
|
+
: "".concat(totalOcorrencias, " d\u00EDvidas encontradas")
|
|
47
|
+
: "Nenhuma dívida pública encontrada"))
|
|
41
48
|
};
|
|
42
49
|
} }));
|
|
43
50
|
};
|
|
44
51
|
var DividasPublicasList = memo(function (_a) {
|
|
45
52
|
var dividas = _a.dividas;
|
|
46
|
-
return (React.createElement(
|
|
47
|
-
React.createElement(
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
React.createElement(AddItemField, { name: "Tipo de D\u00EDvida", value: divida.tipoDeDivida })))); })));
|
|
53
|
+
return (React.createElement(Result, null, dividas.map(function (divida, i) { return (React.createElement(ResultContent, { desktop: "repeat(7, 1fr)", tablet: "repeat(3, 1fr)", mobile: "repeat(1, 1fr)", key: i, className: "content" },
|
|
54
|
+
React.createElement(AddItemField, { name: "Nome do Devedor", value: divida.nomeDoDevedor }),
|
|
55
|
+
React.createElement(AddItemField, { name: "Tipo de Pessoa", value: divida.tipoDePessoa }),
|
|
56
|
+
React.createElement(AddItemField, { name: "Tipo de Devedor", value: divida.tipoDeDevedor }),
|
|
57
|
+
React.createElement(AddItemField, { name: "Unidade Respons\u00E1vel", value: divida.unidadeResponsavel }),
|
|
58
|
+
React.createElement(AddItemField, { name: "UF da Unidade Respons\u00E1vel", value: divida.uFDaUnidadeResponsavel }),
|
|
59
|
+
React.createElement(AddItemField, { name: "N\u00FAmero de inscri\u00E7\u00E3o da D\u00EDvida", value: divida.numeroDeInscricaoDaDivida }),
|
|
60
|
+
React.createElement(AddItemField, { name: "Tipo da Situa\u00E7\u00E3o da Inscri\u00E7\u00E3o", value: divida.tipoDaSituacaoDaInscricao }),
|
|
61
|
+
React.createElement(AddItemField, { name: "Situa\u00E7\u00E3o da Inscri\u00E7\u00E3o", value: divida.situacaoDaInscricao }),
|
|
62
|
+
React.createElement(AddItemField, { name: "Data de Inscri\u00E7\u00E3o", value: divida.dataDeInscricao }),
|
|
63
|
+
React.createElement(AddItemField, { name: "Indicador Aju\u00EDzado", value: divida.indicadorAjuizado }),
|
|
64
|
+
React.createElement(AddItemField, { name: "Valor consolidado", value: divida.valorConsolidado }),
|
|
65
|
+
React.createElement(AddItemField, { name: "Tipo de D\u00EDvida", value: divida.tipoDeDivida }))); })));
|
|
60
66
|
});
|
|
61
67
|
export default DividasPublicas;
|
|
@@ -15,6 +15,7 @@ import ProtestosCreditoIcon from "../../assets/icones/protestosCredito";
|
|
|
15
15
|
import ProtestosImpostosIcon from "../../assets/icones/protestosImpostos";
|
|
16
16
|
import StatusMessage from "../interface/statusMessage";
|
|
17
17
|
import styled from "styled-components";
|
|
18
|
+
import { formatDatePtBrToDate } from "../../utils/string";
|
|
18
19
|
var ResultProtestos = styled.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n display: flex;\n flex-direction: column;\n row-gap: 20px;\n margin-top: 20px;\n"], ["\n display: flex;\n flex-direction: column;\n row-gap: 20px;\n margin-top: 20px;\n"])));
|
|
19
20
|
var Protestos = function () {
|
|
20
21
|
var ctx = useContext(Queries.Protestos);
|
|
@@ -25,14 +26,15 @@ var Protestos = function () {
|
|
|
25
26
|
});
|
|
26
27
|
};
|
|
27
28
|
return (React.createElement(Section, { ctx: ctx, title: "Apontamentos na Central de Protestos (CENPROT)", subtitle: "Consulta de protestos de cr\u00E9dito, imposto e gerais.", icon: ProtestosIcon, onSuccess: function (data) {
|
|
29
|
+
var byDate = function (protesto, protesto2) { var _a, _b; return ((_a = formatDatePtBrToDate(XPathUtils.select("string(./dataProtesto)", protesto2))) === null || _a === void 0 ? void 0 : _a.getTime()) - ((_b = formatDatePtBrToDate(XPathUtils.select("string(./dataProtesto)", protesto))) === null || _b === void 0 ? void 0 : _b.getTime()); };
|
|
28
30
|
var registros = XPathUtils.select("number(//registros)", data);
|
|
29
|
-
var protestosDeCredito = filterProtestos(REGEX_PROTESTOS_DE_CREDITO, data);
|
|
30
|
-
var protestosDeImposto = filterProtestos(REGEX_PROTESTOS_DE_IMPOSTO, data);
|
|
31
|
+
var protestosDeCredito = filterProtestos(REGEX_PROTESTOS_DE_CREDITO, data).sort(byDate);
|
|
32
|
+
var protestosDeImposto = filterProtestos(REGEX_PROTESTOS_DE_IMPOSTO, data).sort(byDate);
|
|
31
33
|
var protestosGerais = XPathUtils.selectArray("//body//protesto", data).filter(function (protesto) {
|
|
32
34
|
var nomeCedente = XPathUtils.select("string(./nomeCedente)", protesto);
|
|
33
35
|
return (!REGEX_PROTESTOS_DE_IMPOSTO.test(nomeCedente) &&
|
|
34
36
|
!REGEX_PROTESTOS_DE_CREDITO.test(nomeCedente));
|
|
35
|
-
});
|
|
37
|
+
}).sort(byDate);
|
|
36
38
|
var elements = [
|
|
37
39
|
{
|
|
38
40
|
total: protestosDeCredito === null || protestosDeCredito === void 0 ? void 0 : protestosDeCredito.length,
|
|
@@ -3,7 +3,7 @@ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cook
|
|
|
3
3
|
return cooked;
|
|
4
4
|
};
|
|
5
5
|
import React from "react";
|
|
6
|
-
import { Contacts, Partners, Dossie, Addresses, CCF, Protestos, ProcessosJuridicos, BankAccounts, WebServiceProvider, Queries, RefinSerasa, RefinBoaVista, Veiculos, ChartSystem, } from "./";
|
|
6
|
+
import { Contacts, Partners, Dossie, Addresses, CCF, Protestos, ProcessosJuridicos, BankAccounts, WebServiceProvider, Queries, RefinSerasa, RefinBoaVista, Veiculos, ChartSystem, DividasPublicas, } from "./";
|
|
7
7
|
import { ConsultasComplementaresProvider, } from "./components/consultasComplementares";
|
|
8
8
|
import ConsultaSCR from "./components/scr/scr";
|
|
9
9
|
import ConsultaScore from "./components/score/scoreService";
|
|
@@ -50,6 +50,7 @@ var ConsultaSimples = function (_a) {
|
|
|
50
50
|
React.createElement(Veiculos, { documento: documento })),
|
|
51
51
|
React.createElement(Protestos, null),
|
|
52
52
|
React.createElement(CCF, null),
|
|
53
|
+
React.createElement(DividasPublicas, null),
|
|
53
54
|
React.createElement(ProcessosJuridicos, { onClickConsultarProcessoJuridico: onClickConsultarProcessoJuridico })))))))))))));
|
|
54
55
|
};
|
|
55
56
|
export default ConsultaSimples;
|