@credithub/harlan-components 1.68.0 → 1.69.1
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/liminar/liminar.js +53 -33
- package/dist/components/liminar/liminarStyles.d.ts +4 -1
- package/dist/components/liminar/liminarStyles.js +16 -3
- package/dist/components/processos-juridicos/processosJuridicosList.js +9 -3
- package/dist/styles/globalStyle.js +1 -1
- package/lib/cjs/index.js +96 -59
- package/lib/esm/index.js +96 -59
- package/package.json +1 -1
|
@@ -11,12 +11,14 @@ var __assign = (this && this.__assign) || function () {
|
|
|
11
11
|
};
|
|
12
12
|
import ProtestosIcon from '../../assets/icones/protestos';
|
|
13
13
|
import { useGlobalData } from '../../contexts/globalDataContext';
|
|
14
|
+
import theme from '../../styles/theme';
|
|
14
15
|
import { normalizeName, similarNames } from '../../utils/similarNames';
|
|
16
|
+
import { WarningCircle } from 'phosphor-react';
|
|
15
17
|
import React, { useContext, useEffect, useMemo, useRef, useState } from 'react';
|
|
16
18
|
import StatusMessage from '../interface/statusMessage';
|
|
17
19
|
import Section from '../section';
|
|
18
20
|
import { Queries, RequestStatus } from '../webservice';
|
|
19
|
-
import { TitleWithTooltip, TooltipContainer,
|
|
21
|
+
import { TitleWithTooltip, TooltipContainer, TooltipText } from './liminarStyles';
|
|
20
22
|
var validAssuntos = [
|
|
21
23
|
'protesto indevido de título',
|
|
22
24
|
'protesto indevido de títulos',
|
|
@@ -42,7 +44,18 @@ var Liminar = function () {
|
|
|
42
44
|
var processingRef = useRef(true);
|
|
43
45
|
var resultRef = useRef('Não encontrado');
|
|
44
46
|
var dataHashRef = useRef('');
|
|
45
|
-
var _d = useState(false),
|
|
47
|
+
var _d = useState(false), isTooltipVisible = _d[0], setTooltipVisible = _d[1];
|
|
48
|
+
var hideTooltipTimeout = useRef(null);
|
|
49
|
+
var showTooltip = function () {
|
|
50
|
+
if (hideTooltipTimeout.current)
|
|
51
|
+
clearTimeout(hideTooltipTimeout.current);
|
|
52
|
+
setTooltipVisible(true);
|
|
53
|
+
};
|
|
54
|
+
var hideTooltip = function () {
|
|
55
|
+
hideTooltipTimeout.current = setTimeout(function () {
|
|
56
|
+
setTooltipVisible(false);
|
|
57
|
+
}, 300);
|
|
58
|
+
};
|
|
46
59
|
var tiposDocumento = useMemo(function () {
|
|
47
60
|
var _a;
|
|
48
61
|
var tipoRaw = (_a = ctx.document) === null || _a === void 0 ? void 0 : _a.type;
|
|
@@ -92,7 +105,7 @@ var Liminar = function () {
|
|
|
92
105
|
return null;
|
|
93
106
|
}
|
|
94
107
|
};
|
|
95
|
-
var
|
|
108
|
+
var _e = useMemo(function () {
|
|
96
109
|
var _a;
|
|
97
110
|
var labels = new Set();
|
|
98
111
|
var indiciosApi = ((_a = ctx.document) === null || _a === void 0 ? void 0 : _a.indiciosDeLiminar) === true;
|
|
@@ -105,21 +118,26 @@ var Liminar = function () {
|
|
|
105
118
|
}
|
|
106
119
|
if (processosComAssuntoValido.length > 0) {
|
|
107
120
|
labels.add('Liminar no Judiciário');
|
|
108
|
-
var foundBusinessEntity = processosComAssuntoValido.some(function (processo) {
|
|
109
|
-
var _a;
|
|
110
|
-
return (_a = processo.envolvidos_ultima_movimentacao) === null || _a === void 0 ? void 0 : _a.some(function (e) {
|
|
111
|
-
if (e.envolvido_tipo !== 'Ativo')
|
|
112
|
-
return false;
|
|
113
|
-
var nomeNorm = normalizeName(e.nome_sem_filtro);
|
|
114
|
-
return businessTypes.some(function (type) { return nomeNorm.includes(type); });
|
|
115
|
-
});
|
|
116
|
-
});
|
|
117
|
-
if (foundBusinessEntity) {
|
|
118
|
-
setShowInversionInfo(true);
|
|
119
|
-
}
|
|
120
121
|
}
|
|
121
|
-
|
|
122
|
-
|
|
122
|
+
var foundEntity = processosComAssuntoValido.some(function (processo) {
|
|
123
|
+
var _a;
|
|
124
|
+
return (_a = processo.envolvidos_ultima_movimentacao) === null || _a === void 0 ? void 0 : _a.some(function (e) {
|
|
125
|
+
if (e.envolvido_tipo !== 'Ativo')
|
|
126
|
+
return false;
|
|
127
|
+
var nomeNorm = normalizeName(e.nome_sem_filtro);
|
|
128
|
+
return businessTypes.some(function (type) { return nomeNorm.includes(type); });
|
|
129
|
+
});
|
|
130
|
+
});
|
|
131
|
+
return {
|
|
132
|
+
origensDetectadas: Array.from(labels),
|
|
133
|
+
foundBusinessEntity: foundEntity
|
|
134
|
+
};
|
|
135
|
+
}, [ctx.document, tiposDocumento, processosComAssuntoValido]), origensDetectadas = _e.origensDetectadas, foundBusinessEntity = _e.foundBusinessEntity;
|
|
136
|
+
useEffect(function () {
|
|
137
|
+
if (!foundBusinessEntity)
|
|
138
|
+
return;
|
|
139
|
+
setData(function (prev) { return (__assign(__assign({}, prev), { liminar: __assign(__assign({}, prev.liminar), { invertedProcessos: processosComAssuntoValido.map(function (p) { return p.id; }) }) })); });
|
|
140
|
+
}, [foundBusinessEntity, processosComAssuntoValido, setData]);
|
|
123
141
|
var isErro404 = useMemo(function () { return ctx.type === RequestStatus.Error && !!ctx.error; }, [ctx.type, ctx.error]);
|
|
124
142
|
var derivedCtx = useMemo(function () { return (__assign(__assign({}, ctx), { type: isErro404 ? RequestStatus.Success : ctx.type, document: isErro404 ? { indiciosDeLiminar: false } : ctx.document })); }, [ctx, isErro404]);
|
|
125
143
|
useEffect(function () {
|
|
@@ -145,7 +163,7 @@ var Liminar = function () {
|
|
|
145
163
|
console.error('Erro na requisição de liminares:', ctx.error || 'desconhecido');
|
|
146
164
|
}
|
|
147
165
|
var indiciosApi = ((_d = ctx.document) === null || _d === void 0 ? void 0 : _d.indiciosDeLiminar) === true;
|
|
148
|
-
var finalStatus = indiciosApi ||
|
|
166
|
+
var finalStatus = indiciosApi || processosComAssuntoValido.length > 0
|
|
149
167
|
? 'Encontrado'
|
|
150
168
|
: 'Não encontrado';
|
|
151
169
|
setData(function (prev) {
|
|
@@ -164,7 +182,7 @@ var Liminar = function () {
|
|
|
164
182
|
resultRef.current = finalStatus;
|
|
165
183
|
processingRef.current = false;
|
|
166
184
|
processedRef.current = true;
|
|
167
|
-
}, [ctx, globalData,
|
|
185
|
+
}, [ctx, globalData, processosComAssuntoValido, setData, isErro404]);
|
|
168
186
|
var scrollToProcesso = function (id) {
|
|
169
187
|
var el = document.getElementById(id);
|
|
170
188
|
if (el) {
|
|
@@ -176,23 +194,25 @@ var Liminar = function () {
|
|
|
176
194
|
if (processedRef.current && resultRef.current === 'Não encontrado') {
|
|
177
195
|
return null;
|
|
178
196
|
}
|
|
197
|
+
var renderTooltipIcon = function () {
|
|
198
|
+
var color = origensDetectadas.length > 0
|
|
199
|
+
? theme.colors.erroClaro
|
|
200
|
+
: theme.colors.cinzaClaro;
|
|
201
|
+
return (React.createElement(WarningCircle, { weight: "fill", size: 24, color: color, style: { marginLeft: 4 } }));
|
|
202
|
+
};
|
|
179
203
|
return (React.createElement(Section, { title: React.createElement(React.Fragment, null,
|
|
180
204
|
React.createElement(TitleWithTooltip, null,
|
|
181
205
|
"Liminares para Remo\u00E7\u00E3o de Protesto",
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
React.createElement(TooltipText, null,
|
|
185
|
-
"
|
|
186
|
-
processosComAssuntoValido.
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
cursor: 'pointer',
|
|
193
|
-
textDecoration: 'underline',
|
|
194
|
-
color: '#007aff'
|
|
195
|
-
} }, proc.id)); }))))))))), subtitle: processingRef.current
|
|
206
|
+
processosComAssuntoValido.length > 0 && (React.createElement(TooltipContainer, { onMouseEnter: showTooltip, onMouseLeave: hideTooltip },
|
|
207
|
+
renderTooltipIcon(),
|
|
208
|
+
React.createElement(TooltipText, { visible: isTooltipVisible }, processosComAssuntoValido.length > 0 && (React.createElement(React.Fragment, null,
|
|
209
|
+
"Processos com ind\u00EDcios encontrados:",
|
|
210
|
+
React.createElement("ul", { style: { marginTop: '6px', paddingLeft: '18px' } }, processosComAssuntoValido.map(function (proc, idx) { return (React.createElement("li", { key: idx, onClick: function () { return scrollToProcesso(proc.id); }, style: {
|
|
211
|
+
fontSize: '13px',
|
|
212
|
+
cursor: 'pointer',
|
|
213
|
+
textDecoration: 'underline',
|
|
214
|
+
color: '#007aff'
|
|
215
|
+
} }, proc.id)); }))))))))), subtitle: processingRef.current
|
|
196
216
|
? 'Carregando liminar...'
|
|
197
217
|
: 'Indícios de liminares para ocultação de registros.', icon: ProtestosIcon, ctx: processingRef.current
|
|
198
218
|
? __assign(__assign({}, ctx), { type: RequestStatus.Loading }) : derivedCtx, onSuccess: processingRef.current
|
|
@@ -3,5 +3,8 @@ export declare const TooltipIcon: import("styled-components").StyledComponent<im
|
|
|
3
3
|
weight: "fill";
|
|
4
4
|
size: 24;
|
|
5
5
|
}, "size" | "weight">;
|
|
6
|
-
export declare const TooltipText: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, {
|
|
6
|
+
export declare const TooltipText: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, {
|
|
7
|
+
visible: boolean;
|
|
8
|
+
}, never>;
|
|
7
9
|
export declare const TitleWithTooltip: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
10
|
+
export declare const GrayHighlighted: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -5,11 +5,24 @@ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cook
|
|
|
5
5
|
import theme from '../../styles/theme';
|
|
6
6
|
import { WarningCircle } from 'phosphor-react';
|
|
7
7
|
import styled from 'styled-components';
|
|
8
|
-
export var TooltipContainer = styled.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n position: relative;\n display: inline-flex;\n align-items: center;\n margin-left: 8px;\n
|
|
8
|
+
export var TooltipContainer = styled.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n position: relative;\n display: inline-flex;\n align-items: center;\n margin-left: 8px;\n"], ["\n position: relative;\n display: inline-flex;\n align-items: center;\n margin-left: 8px;\n"])));
|
|
9
9
|
export var TooltipIcon = styled(WarningCircle).attrs({
|
|
10
10
|
weight: 'fill',
|
|
11
11
|
size: 24
|
|
12
12
|
})(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n color: ", ";\n cursor: pointer;\n transition: transform 0.2s ease;\n\n &:hover {\n transform: scale(1.2);\n }\n"], ["\n color: ", ";\n cursor: pointer;\n transition: transform 0.2s ease;\n\n &:hover {\n transform: scale(1.2);\n }\n"])), theme.colors.laranja);
|
|
13
|
-
export var TooltipText = styled.span(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n visibility:
|
|
13
|
+
export var TooltipText = styled.span(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n visibility: ", ";\n pointer-events: ", ";\n opacity: ", ";\n transform: ", ";\n\n width: 380px;\n max-width: 90vw;\n background-color: ", ";\n color: ", ";\n text-align: left;\n border-radius: 10px;\n padding: 10px 16px 16px 16px;\n font-size: 15px;\n font-weight: 500;\n line-height: 1.35;\n position: absolute;\n z-index: 10;\n top: 130%;\n left: 0;\n transition:\n opacity 0.3s ease-in-out,\n transform 0.3s ease-in-out;\n box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);\n\n @media screen and (max-width: 768px) {\n font-size: 14px;\n padding: 10px 14px 14px 14px;\n }\n"], ["\n visibility: ", ";\n pointer-events: ", ";\n opacity: ", ";\n transform: ", ";\n\n width: 380px;\n max-width: 90vw;\n background-color: ", ";\n color: ", ";\n text-align: left;\n border-radius: 10px;\n padding: 10px 16px 16px 16px;\n font-size: 15px;\n font-weight: 500;\n line-height: 1.35;\n position: absolute;\n z-index: 10;\n top: 130%;\n left: 0;\n transition:\n opacity 0.3s ease-in-out,\n transform 0.3s ease-in-out;\n box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);\n\n @media screen and (max-width: 768px) {\n font-size: 14px;\n padding: 10px 14px 14px 14px;\n }\n"])), function (_a) {
|
|
14
|
+
var visible = _a.visible;
|
|
15
|
+
return (visible ? 'visible' : 'hidden');
|
|
16
|
+
}, function (_a) {
|
|
17
|
+
var visible = _a.visible;
|
|
18
|
+
return (visible ? 'auto' : 'none');
|
|
19
|
+
}, function (_a) {
|
|
20
|
+
var visible = _a.visible;
|
|
21
|
+
return (visible ? 1 : 0);
|
|
22
|
+
}, function (_a) {
|
|
23
|
+
var visible = _a.visible;
|
|
24
|
+
return visible ? 'translateY(0)' : 'translateY(-10px)';
|
|
25
|
+
}, theme.colors.cinzaBase, theme.colors.erroApoio);
|
|
14
26
|
export var TitleWithTooltip = styled.div(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n display: flex;\n align-items: center;\n gap: 8px;\n"], ["\n display: flex;\n align-items: center;\n gap: 8px;\n"])));
|
|
15
|
-
var
|
|
27
|
+
export var GrayHighlighted = styled.div(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n animation: highlight-gray 0.6s ease-out;\n\n @keyframes highlight-gray {\n from {\n background-color: ", ";\n }\n to {\n background-color: transparent;\n }\n }\n"], ["\n animation: highlight-gray 0.6s ease-out;\n\n @keyframes highlight-gray {\n from {\n background-color: ", ";\n }\n to {\n background-color: transparent;\n }\n }\n"])), theme.colors.cinzaClaro);
|
|
28
|
+
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5;
|
|
@@ -40,17 +40,23 @@ var AddProcessoJuridicoField = function (_a) {
|
|
|
40
40
|
var ProcessoJuridicoWrapper = styled.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n scroll-margin-top: 100px;\n\n @media (min-width: 1000px) {\n flex-direction: row;\n }\n"], ["\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n scroll-margin-top: 100px;\n\n @media (min-width: 1000px) {\n flex-direction: row;\n }\n"])));
|
|
41
41
|
var ConsultarProcessoBtn = styled(Button)(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n @media (min-width: 1000px) {\n width: 100%;\n max-width: 150px;\n height: max-content;\n }\n"], ["\n @media (min-width: 1000px) {\n width: 100%;\n max-width: 150px;\n height: max-content;\n }\n"])));
|
|
42
42
|
var ResultWrapper = styled.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n width: 100%;\n"], ["\n width: 100%;\n"])));
|
|
43
|
-
var CNJWithIcon = styled.span(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n display: flex;\n align-items: center;\n gap: 8px;\n"], ["\n display: flex;\n align-items: center;\n gap: 8px;\n"])));
|
|
43
|
+
var CNJWithIcon = styled.span(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n display: flex;\n align-items: center;\n gap: 8px;\n position: relative;\n\n &:hover::after {\n content: attr(data-tooltip);\n position: absolute;\n bottom: -28px;\n left: 0;\n background-color: #333;\n color: #fff;\n padding: 6px 8px;\n border-radius: 4px;\n font-size: 12px;\n white-space: nowrap;\n z-index: 999;\n }\n"], ["\n display: flex;\n align-items: center;\n gap: 8px;\n position: relative;\n\n &:hover::after {\n content: attr(data-tooltip);\n position: absolute;\n bottom: -28px;\n left: 0;\n background-color: #333;\n color: #fff;\n padding: 6px 8px;\n border-radius: 4px;\n font-size: 12px;\n white-space: nowrap;\n z-index: 999;\n }\n"])));
|
|
44
44
|
var ProcessoJuridicoItem = memo(function (_a) {
|
|
45
|
-
var _b, _c, _d;
|
|
45
|
+
var _b, _c, _d, _e, _f;
|
|
46
46
|
var processo = _a.processo, children = _a.children, highlighted = _a.highlighted;
|
|
47
47
|
var global = useGlobalData().data;
|
|
48
48
|
var hasLiminar = ((_b = global === null || global === void 0 ? void 0 : global.liminar) === null || _b === void 0 ? void 0 : _b.message) === 'Encontrado' &&
|
|
49
49
|
((_d = (_c = global === null || global === void 0 ? void 0 : global.liminar) === null || _c === void 0 ? void 0 : _c.processosComLiminarIds) === null || _d === void 0 ? void 0 : _d.includes(processo.id));
|
|
50
|
+
var isInverted = (_f = (_e = global === null || global === void 0 ? void 0 : global.liminar) === null || _e === void 0 ? void 0 : _e.invertedProcessos) === null || _f === void 0 ? void 0 : _f.includes(processo.id);
|
|
51
|
+
var tooltipText = isInverted
|
|
52
|
+
? 'Atenção: Em alguns casos, o sistema judicial pode registrar os polos das partes de forma invertida, dificultando a interpretação direta.'
|
|
53
|
+
: hasLiminar
|
|
54
|
+
? 'Indício de liminar identificada.'
|
|
55
|
+
: '';
|
|
50
56
|
return (React.createElement(ProcessoJuridicoWrapper, { id: processo.id, className: highlighted ? 'highlighted-process' : '' },
|
|
51
57
|
React.createElement(ResultWrapper, null,
|
|
52
58
|
React.createElement(ResultContent, { fullWidth: true, desktop: "1.5fr 1.5fr repeat(3, 1fr)", tablet: "repeat(3, 1fr)" },
|
|
53
|
-
React.createElement(AddProcessoJuridicoField, { name: "N\u00FAmero CNJ", value: hasLiminar ? (React.createElement(CNJWithIcon,
|
|
59
|
+
React.createElement(AddProcessoJuridicoField, { name: "N\u00FAmero CNJ", value: hasLiminar ? (React.createElement(CNJWithIcon, { "data-tooltip": tooltipText },
|
|
54
60
|
React.createElement(WarningCircle, { size: 18, weight: "fill", style: { color: '#FFA500' } }),
|
|
55
61
|
React.createElement("span", null, processo.numero_novo))) : (processo.numero_novo) }),
|
|
56
62
|
React.createElement(AddProcessoJuridicoField, { name: "Assunto(s)", value: processo.assuntos }),
|
|
@@ -4,6 +4,6 @@ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cook
|
|
|
4
4
|
};
|
|
5
5
|
import { createGlobalStyle, css } from 'styled-components';
|
|
6
6
|
var OpenSansFont = css(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n @import url('https://fonts.googleapis.com/css?family=Open%20Sans%20Condensed:300,400,500,600,700');\n"], ["\n @import url('https://fonts.googleapis.com/css?family=Open%20Sans%20Condensed:300,400,500,600,700');\n"])));
|
|
7
|
-
var GlobalStyle = createGlobalStyle(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n * {\n ", "\n font-family: 'Open Sans Condensed';\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n }\n\n @media print {\n button,\n [class*=\"Button\"],\n [class^=\"Button\"],\n [class*=\"btn\"],\n [class^=\"btn\"],\n .button,\n .btn {\n display: none !important;\n }\n }\n\n @keyframes highlight {\n from {\n background-color: rgba(255, 215, 0, 0.35);\n }\n to {\n background-color: transparent;\n }\n }\n\n .highlighted-process {\n animation: highlight 3s ease-out forwards !important;\n }\n"], ["\n * {\n ", "\n font-family: 'Open Sans Condensed';\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n }\n\n @media print {\n button,\n [class*=\"Button\"],\n [class^=\"Button\"],\n [class*=\"btn\"],\n [class^=\"btn\"],\n .button,\n .btn {\n display: none !important;\n }\n }\n\n @keyframes highlight {\n from {\n background-color: rgba(255, 215, 0, 0.35);\n }\n to {\n background-color: transparent;\n }\n }\n\n .highlighted-process {\n animation: highlight 3s ease-out forwards !important;\n }\n"])), OpenSansFont);
|
|
7
|
+
var GlobalStyle = createGlobalStyle(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n * {\n ", "\n font-family: 'Open Sans Condensed';\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n }\n\n @media print {\n button,\n [class*=\"Button\"],\n [class^=\"Button\"],\n [class*=\"btn\"],\n [class^=\"btn\"],\n .button,\n .btn {\n display: none !important;\n }\n }\n\n @keyframes highlight {\n from {\n background-color: rgba(255, 215, 0, 0.35);\n }\n to {\n background-color: transparent;\n }\n }\n\n .highlighted-process {\n animation: highlight 3s ease-out forwards !important;\n }\n\n .blue-highlighted-process {\n animation: blueHighlight 2.5s ease-in-out;\n background-color: rgba(0, 122, 255, 0.15);\n transition: background-color 0.3s ease-in-out;\n }\n\n @keyframes blueHighlight {\n from {\n background-color: rgba(0, 122, 255, 0.35);\n }\n to {\n background-color: rgba(0, 122, 255, 0.15);\n }\n }\n"], ["\n * {\n ", "\n font-family: 'Open Sans Condensed';\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n }\n\n @media print {\n button,\n [class*=\"Button\"],\n [class^=\"Button\"],\n [class*=\"btn\"],\n [class^=\"btn\"],\n .button,\n .btn {\n display: none !important;\n }\n }\n\n @keyframes highlight {\n from {\n background-color: rgba(255, 215, 0, 0.35);\n }\n to {\n background-color: transparent;\n }\n }\n\n .highlighted-process {\n animation: highlight 3s ease-out forwards !important;\n }\n\n .blue-highlighted-process {\n animation: blueHighlight 2.5s ease-in-out;\n background-color: rgba(0, 122, 255, 0.15);\n transition: background-color 0.3s ease-in-out;\n }\n\n @keyframes blueHighlight {\n from {\n background-color: rgba(0, 122, 255, 0.35);\n }\n to {\n background-color: rgba(0, 122, 255, 0.15);\n }\n }\n"])), OpenSansFont);
|
|
8
8
|
export default GlobalStyle;
|
|
9
9
|
var templateObject_1, templateObject_2;
|