@credithub/harlan-components 1.52.2 → 1.52.3
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/components/dossie/dossie.js +1 -4
- package/lib/cjs/index.js +743 -25443
- package/lib/esm/index.js +742 -25435
- package/package.json +1 -1
|
@@ -24,7 +24,6 @@ import Section from '../section';
|
|
|
24
24
|
import { Queries, RequestStatus } from '../webservice';
|
|
25
25
|
import { Carrousel } from './carrousel/carrousel';
|
|
26
26
|
import { createDossieData } from './dossieData';
|
|
27
|
-
import GenerativeAI from './generativeAi/generativeAi';
|
|
28
27
|
import { Summary } from './summary/summary';
|
|
29
28
|
import { TransactionsTable } from './transactionTable/transactionTable';
|
|
30
29
|
var DossieContent = styled.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n display: grid;\n grid-template-columns: 1fr 2fr;\n justify-items: center;\n align-items: flex-start;\n margin-bottom: 20px;\n gap: 20px;\n\n @media screen and (max-width: 992px) {\n grid-template-columns: 1fr;\n }\n"], ["\n display: grid;\n grid-template-columns: 1fr 2fr;\n justify-items: center;\n align-items: flex-start;\n margin-bottom: 20px;\n gap: 20px;\n\n @media screen and (max-width: 992px) {\n grid-template-columns: 1fr;\n }\n"])));
|
|
@@ -70,9 +69,7 @@ var Dossie = function (_a) {
|
|
|
70
69
|
React.createElement(DossieContent, null,
|
|
71
70
|
React.createElement(DossieCarrousel, null),
|
|
72
71
|
React.createElement(Summary, { finderResponse: data, rfbResponse: rfbResponse, document: document })),
|
|
73
|
-
React.createElement(TransactionsTable, { events: XPathUtils.select('//historico/consulta', data) || [] }))
|
|
74
|
-
!printMode && React.createElement(GenerativeAIContainer, null,
|
|
75
|
-
React.createElement(GenerativeAI, { documento: document }))));
|
|
72
|
+
React.createElement(TransactionsTable, { events: XPathUtils.select('//historico/consulta', data) || [] }))));
|
|
76
73
|
};
|
|
77
74
|
return (React.createElement(Section, { ctx: ctx, hideHeader: true, minimized: false, isError: function (e) { return response(e); }, onSuccess: response }));
|
|
78
75
|
};
|