pge-front-common 14.2.13 → 14.2.15
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/components/InformativeBox/InformativeBox.stories.d.ts +1 -0
- package/lib/components/InformativeBox/index.d.ts +1 -1
- package/lib/components/InformativeBox/index.type.d.ts +3 -2
- package/lib/icons/add-round-icon.d.ts +2 -0
- package/lib/icons/index.d.ts +2 -1
- package/lib/index.d.ts +20 -17
- package/lib/index.esm.js +9 -5
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +9 -4
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { InformativeBoxProps } from "./index.type";
|
|
3
|
-
declare const InformativeBox: ({ infoType, title, message, onClose, widthType, hasDismissButton, ...props }: InformativeBoxProps) => React.JSX.Element;
|
|
3
|
+
declare const InformativeBox: ({ infoType, title, message, children, onClose, widthType, hasDismissButton, ...props }: InformativeBoxProps) => React.JSX.Element;
|
|
4
4
|
export { InformativeBox };
|
|
@@ -2,8 +2,9 @@ import { HtmlHTMLAttributes, ReactNode } from "react";
|
|
|
2
2
|
export interface InformativeBoxProps extends Omit<HtmlHTMLAttributes<HTMLDivElement>, "title"> {
|
|
3
3
|
infoType: "success" | "alert" | "warning" | "informative";
|
|
4
4
|
widthType?: "fitContent" | "fullWidth";
|
|
5
|
-
title
|
|
6
|
-
message
|
|
5
|
+
title?: string | ReactNode;
|
|
6
|
+
message?: string | ReactNode;
|
|
7
|
+
children?: ReactNode;
|
|
7
8
|
hasDismissButton?: boolean;
|
|
8
9
|
onClose?: () => void;
|
|
9
10
|
}
|
package/lib/icons/index.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ import { IconTriangleExpand } from "./triangle-expand-icon";
|
|
|
22
22
|
import { IconTriangleRecall } from "./triangle-to-recall-icon";
|
|
23
23
|
import { IconSwap } from "./swap-icon";
|
|
24
24
|
import { IconAddCell } from "./add-cell-icon";
|
|
25
|
+
import { IconRoundAddCell } from "./add-round-icon";
|
|
25
26
|
import { MenuIcon } from "./menu-icon";
|
|
26
27
|
import { LogoRhDigital } from "./logo-rh-digital";
|
|
27
28
|
import { LogoPGERG } from "./logo-pge-rj";
|
|
@@ -63,4 +64,4 @@ import { IconTwoUsersSearch } from "./two-user-search-icon";
|
|
|
63
64
|
import { IconCalculate } from "./calculate-icon";
|
|
64
65
|
import { IconUpArrow } from "./up-arrow-icon";
|
|
65
66
|
import { IconRequerimentoAdm } from "./requerimento-adm-icon";
|
|
66
|
-
export { IconRequerimentoAdm, IconPayment, IconTwoUsers, IconTwoUsersSearch, IconCalculate, IconUpArrow, IconArrowRight, IconArrowLeft, IconCertidaoRegularidade, IconEmissaoDarj, IconDebitoFiscal, IconParcelamento, IconLeftDirection, IconRightDirection, IconInformative, IconCheckSuccess, IconAlert, IconAttention, IconPrint, IconDownload, IconVisibility, IconEdit, IconDelete, IconDotsVertical, IconCalendar, IconProfile, IconUpload, IconNewTab, IconWarning, IconCheckCircle, IconEventAvaliable, IconLogout, IconCLose, IconAdd, IconRemove, IconCircleExpland, IconCircleRecall, IconArrowExpland, IconArrowRecall, IconTriangleExpand, IconTriangleRecall, IconSwap, IconAddCell, MenuIcon, LogoRhDigital, LogoPGERG, LogoPGEBeneficios, IconInvisibility, IconPdf, IconHourglass, IconSearch, IconUpAndDownArror, IconCheck, IconUploadFile, LogoDividaAtiva, IconUploadV2, IconQuestionMark, IconUserLogout, CommonDotIcon, IconExclude, IconView, IconUploadFile2, IconInfoRound, IconMail, IconUsers, };
|
|
67
|
+
export { IconRequerimentoAdm, IconPayment, IconTwoUsers, IconTwoUsersSearch, IconCalculate, IconUpArrow, IconArrowRight, IconArrowLeft, IconCertidaoRegularidade, IconEmissaoDarj, IconDebitoFiscal, IconParcelamento, IconLeftDirection, IconRightDirection, IconInformative, IconCheckSuccess, IconAlert, IconAttention, IconPrint, IconDownload, IconVisibility, IconEdit, IconDelete, IconDotsVertical, IconCalendar, IconProfile, IconUpload, IconNewTab, IconWarning, IconCheckCircle, IconEventAvaliable, IconLogout, IconCLose, IconAdd, IconRemove, IconCircleExpland, IconCircleRecall, IconArrowExpland, IconArrowRecall, IconTriangleExpand, IconTriangleRecall, IconSwap, IconAddCell, IconRoundAddCell, MenuIcon, LogoRhDigital, LogoPGERG, LogoPGEBeneficios, IconInvisibility, IconPdf, IconHourglass, IconSearch, IconUpAndDownArror, IconCheck, IconUploadFile, LogoDividaAtiva, IconUploadV2, IconQuestionMark, IconUserLogout, CommonDotIcon, IconExclude, IconView, IconUploadFile2, IconInfoRound, IconMail, IconUsers, };
|
package/lib/index.d.ts
CHANGED
|
@@ -33,13 +33,14 @@ declare const InputBase: ({ customClass, restrictionMessage, label, leftIcon, ri
|
|
|
33
33
|
interface InformativeBoxProps extends Omit<HtmlHTMLAttributes<HTMLDivElement>, "title"> {
|
|
34
34
|
infoType: "success" | "alert" | "warning" | "informative";
|
|
35
35
|
widthType?: "fitContent" | "fullWidth";
|
|
36
|
-
title
|
|
37
|
-
message
|
|
36
|
+
title?: string | ReactNode;
|
|
37
|
+
message?: string | ReactNode;
|
|
38
|
+
children?: ReactNode;
|
|
38
39
|
hasDismissButton?: boolean;
|
|
39
40
|
onClose?: () => void;
|
|
40
41
|
}
|
|
41
42
|
|
|
42
|
-
declare const InformativeBox: ({ infoType, title, message, onClose, widthType, hasDismissButton, ...props }: InformativeBoxProps) => React__default.JSX.Element;
|
|
43
|
+
declare const InformativeBox: ({ infoType, title, message, children, onClose, widthType, hasDismissButton, ...props }: InformativeBoxProps) => React__default.JSX.Element;
|
|
43
44
|
|
|
44
45
|
type CheckboxProps = {
|
|
45
46
|
checked?: boolean;
|
|
@@ -91,19 +92,6 @@ declare const FileUpload: React__default.ForwardRefExoticComponent<{
|
|
|
91
92
|
maxFileSize?: `${number}KB` | `${number}MB` | `${number}GB`;
|
|
92
93
|
helperText?: React__default.ReactNode;
|
|
93
94
|
} & {
|
|
94
|
-
style?: React__default.CSSProperties | undefined;
|
|
95
|
-
disabled?: boolean | undefined | undefined;
|
|
96
|
-
className?: string | undefined | undefined;
|
|
97
|
-
value?: string | number | readonly string[] | undefined;
|
|
98
|
-
form?: string | undefined | undefined;
|
|
99
|
-
formAction?: string | ((formData: FormData) => void | Promise<void>) | undefined;
|
|
100
|
-
formEncType?: string | undefined | undefined;
|
|
101
|
-
formMethod?: string | undefined | undefined;
|
|
102
|
-
formNoValidate?: boolean | undefined | undefined;
|
|
103
|
-
formTarget?: string | undefined | undefined;
|
|
104
|
-
name?: string | undefined | undefined;
|
|
105
|
-
type?: "submit" | "reset" | "button" | undefined | undefined;
|
|
106
|
-
onChange?: React__default.FormEventHandler<HTMLButtonElement> | undefined;
|
|
107
95
|
defaultChecked?: boolean | undefined | undefined;
|
|
108
96
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
109
97
|
suppressContentEditableWarning?: boolean | undefined | undefined;
|
|
@@ -111,6 +99,7 @@ declare const FileUpload: React__default.ForwardRefExoticComponent<{
|
|
|
111
99
|
accessKey?: string | undefined | undefined;
|
|
112
100
|
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {}) | undefined;
|
|
113
101
|
autoFocus?: boolean | undefined | undefined;
|
|
102
|
+
className?: string | undefined | undefined;
|
|
114
103
|
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
115
104
|
contextMenu?: string | undefined | undefined;
|
|
116
105
|
dir?: string | undefined | undefined;
|
|
@@ -122,6 +111,7 @@ declare const FileUpload: React__default.ForwardRefExoticComponent<{
|
|
|
122
111
|
nonce?: string | undefined | undefined;
|
|
123
112
|
slot?: string | undefined | undefined;
|
|
124
113
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
114
|
+
style?: React__default.CSSProperties | undefined;
|
|
125
115
|
tabIndex?: number | undefined | undefined;
|
|
126
116
|
translate?: "yes" | "no" | undefined | undefined;
|
|
127
117
|
radioGroup?: string | undefined | undefined;
|
|
@@ -229,6 +219,7 @@ declare const FileUpload: React__default.ForwardRefExoticComponent<{
|
|
|
229
219
|
onFocusCapture?: React__default.FocusEventHandler<HTMLButtonElement> | undefined;
|
|
230
220
|
onBlur?: React__default.FocusEventHandler<HTMLButtonElement> | undefined;
|
|
231
221
|
onBlurCapture?: React__default.FocusEventHandler<HTMLButtonElement> | undefined;
|
|
222
|
+
onChange?: React__default.FormEventHandler<HTMLButtonElement> | undefined;
|
|
232
223
|
onChangeCapture?: React__default.FormEventHandler<HTMLButtonElement> | undefined;
|
|
233
224
|
onBeforeInput?: React__default.InputEventHandler<HTMLButtonElement> | undefined;
|
|
234
225
|
onBeforeInputCapture?: React__default.FormEventHandler<HTMLButtonElement> | undefined;
|
|
@@ -397,6 +388,16 @@ declare const FileUpload: React__default.ForwardRefExoticComponent<{
|
|
|
397
388
|
'data-pr-hidedelay'?: number | undefined | undefined;
|
|
398
389
|
'data-pr-autohide'?: boolean | undefined | undefined;
|
|
399
390
|
'data-pr-showondisabled'?: boolean | undefined | undefined;
|
|
391
|
+
disabled?: boolean | undefined | undefined;
|
|
392
|
+
value?: string | number | readonly string[] | undefined;
|
|
393
|
+
form?: string | undefined | undefined;
|
|
394
|
+
formAction?: string | ((formData: FormData) => void | Promise<void>) | undefined;
|
|
395
|
+
formEncType?: string | undefined | undefined;
|
|
396
|
+
formMethod?: string | undefined | undefined;
|
|
397
|
+
formNoValidate?: boolean | undefined | undefined;
|
|
398
|
+
formTarget?: string | undefined | undefined;
|
|
399
|
+
name?: string | undefined | undefined;
|
|
400
|
+
type?: "submit" | "reset" | "button" | undefined | undefined;
|
|
400
401
|
} & React__default.RefAttributes<FileUploadHandle>>;
|
|
401
402
|
|
|
402
403
|
interface TooltipProps$1 {
|
|
@@ -1000,6 +1001,8 @@ declare const IconSwap: (props?: SVGProps<SVGSVGElement>) => React__default.JSX.
|
|
|
1000
1001
|
|
|
1001
1002
|
declare const IconAddCell: (props?: SVGProps<SVGSVGElement>) => React__default.JSX.Element;
|
|
1002
1003
|
|
|
1004
|
+
declare const IconRoundAddCell: (props?: SVGProps<SVGSVGElement>) => React__default.JSX.Element;
|
|
1005
|
+
|
|
1003
1006
|
declare const IconInvisibility: (props?: SVGProps<SVGSVGElement>) => React__default.JSX.Element;
|
|
1004
1007
|
|
|
1005
1008
|
declare const IconPdf: (props?: SVGProps<SVGSVGElement>) => React__default.JSX.Element;
|
|
@@ -1064,5 +1067,5 @@ declare const IconRequerimentoAdm: (props?: SVGProps<SVGSVGElement>) => React__d
|
|
|
1064
1067
|
|
|
1065
1068
|
declare function installPrimeReactStyles(): void;
|
|
1066
1069
|
|
|
1067
|
-
export { Accordion, AccordionItem, BasicSelect, Blanket, BoxError, BoxSuccess, Button, Checkbox, Chip, CommonDotIcon, DateInput, Dropdown, Fieldset, FileUpload, FloatingMenu, FooterPge as Footer, Header, HeaderPge, IconAdd, IconAddCell, IconArrowExpland, IconArrowLeft, IconArrowRecall, IconArrowRight, IconCLose, IconCalculate, IconCalendar, IconCertidaoRegularidade, IconCheck, IconCheckCircle, IconCircleExpland, IconCircleRecall, IconDebitoFiscal, IconDelete, IconDotsVertical, IconDownload, IconEdit, IconEmissaoDarj, IconEventAvaliable, IconExclude, IconHourglass, IconInfoRound, IconInvisibility, IconLeftDirection, IconLogout, IconMail, IconNewTab, IconParcelamento, IconPayment, IconPdf, IconPrint, IconProfile, IconQuestionMark, IconRemove, IconRequerimentoAdm, IconRightDirection, IconSearch, IconSwap, IconTriangleExpand, IconTriangleRecall, IconTwoUsers, IconTwoUsersSearch, IconUpAndDownArror, IconUpArrow, IconUpload, IconUploadFile, IconUploadFile2, IconUploadV2, IconUsers, IconView, IconVisibility, IconWarning, InformativeBox, InputBase, LoadingSpinner, Menu, MenuAction, MenuList, Modal, ModalBody, ModalFooter, ModalHeader, ModalUI, Option, OverlayLoadingSpinner, PaginationTable, Pagination as PaginationV2, PasswordInput, PgeButton, ProgressCircle, RadioButton, RadioGroupBase, SelectDefault, SelectMult, SkeletonLoader, Switch, Table, TableBody, TableCell, TableComponent, TableFooter, TableHeader, TableRow, TextareaBase, Title, Tooltip, TooltipWithPortal, TreeSelect, installPrimeReactStyles };
|
|
1070
|
+
export { Accordion, AccordionItem, BasicSelect, Blanket, BoxError, BoxSuccess, Button, Checkbox, Chip, CommonDotIcon, DateInput, Dropdown, Fieldset, FileUpload, FloatingMenu, FooterPge as Footer, Header, HeaderPge, IconAdd, IconAddCell, IconArrowExpland, IconArrowLeft, IconArrowRecall, IconArrowRight, IconCLose, IconCalculate, IconCalendar, IconCertidaoRegularidade, IconCheck, IconCheckCircle, IconCircleExpland, IconCircleRecall, IconDebitoFiscal, IconDelete, IconDotsVertical, IconDownload, IconEdit, IconEmissaoDarj, IconEventAvaliable, IconExclude, IconHourglass, IconInfoRound, IconInvisibility, IconLeftDirection, IconLogout, IconMail, IconNewTab, IconParcelamento, IconPayment, IconPdf, IconPrint, IconProfile, IconQuestionMark, IconRemove, IconRequerimentoAdm, IconRightDirection, IconRoundAddCell, IconSearch, IconSwap, IconTriangleExpand, IconTriangleRecall, IconTwoUsers, IconTwoUsersSearch, IconUpAndDownArror, IconUpArrow, IconUpload, IconUploadFile, IconUploadFile2, IconUploadV2, IconUsers, IconView, IconVisibility, IconWarning, InformativeBox, InputBase, LoadingSpinner, Menu, MenuAction, MenuList, Modal, ModalBody, ModalFooter, ModalHeader, ModalUI, Option, OverlayLoadingSpinner, PaginationTable, Pagination as PaginationV2, PasswordInput, PgeButton, ProgressCircle, RadioButton, RadioGroupBase, SelectDefault, SelectMult, SkeletonLoader, Switch, Table, TableBody, TableCell, TableComponent, TableFooter, TableHeader, TableRow, TextareaBase, Title, Tooltip, TooltipWithPortal, TreeSelect, installPrimeReactStyles };
|
|
1068
1071
|
export type { AccordionItemProps, ButtonProps, ChipProps, Column, FieldsetProps, InformativeBoxProps, InputProps, OptionsProps$2 as OptionsProps, ProgressCircleProps, RadioButtonProps, RadioGroupBaseProps, SelectDefaultProps, SelectMultProps, TableComponentProps, TextareaBaseProps, TreeSelectOptions, TreeSelectProps };
|
package/lib/index.esm.js
CHANGED
|
@@ -207,6 +207,9 @@ var IconSwap = function (props) { return (React__default.createElement("svg", __
|
|
|
207
207
|
var IconAddCell = function (props) { return (React__default.createElement("svg", __assign({ width: "21", height: "21", viewBox: "0 0 21 21", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props),
|
|
208
208
|
React__default.createElement("path", { d: "M9.6665 15.5H11.6665V11.5H15.6665V9.5H11.6665V5.5H9.6665V9.5H5.6665V11.5H9.6665V15.5ZM10.6665 20.5C9.28317 20.5 7.98317 20.2375 6.7665 19.7125C5.54984 19.1875 4.4915 18.475 3.5915 17.575C2.6915 16.675 1.979 15.6167 1.454 14.4C0.929004 13.1833 0.666504 11.8833 0.666504 10.5C0.666504 9.11667 0.929004 7.81667 1.454 6.6C1.979 5.38333 2.6915 4.325 3.5915 3.425C4.4915 2.525 5.54984 1.8125 6.7665 1.2875C7.98317 0.7625 9.28317 0.5 10.6665 0.5C12.0498 0.5 13.3498 0.7625 14.5665 1.2875C15.7832 1.8125 16.8415 2.525 17.7415 3.425C18.6415 4.325 19.354 5.38333 19.879 6.6C20.404 7.81667 20.6665 9.11667 20.6665 10.5C20.6665 11.8833 20.404 13.1833 19.879 14.4C19.354 15.6167 18.6415 16.675 17.7415 17.575C16.8415 18.475 15.7832 19.1875 14.5665 19.7125C13.3498 20.2375 12.0498 20.5 10.6665 20.5ZM10.6665 18.5C12.8998 18.5 14.7915 17.725 16.3415 16.175C17.8915 14.625 18.6665 12.7333 18.6665 10.5C18.6665 8.26667 17.8915 6.375 16.3415 4.825C14.7915 3.275 12.8998 2.5 10.6665 2.5C8.43317 2.5 6.5415 3.275 4.9915 4.825C3.4415 6.375 2.6665 8.26667 2.6665 10.5C2.6665 12.7333 3.4415 14.625 4.9915 16.175C6.5415 17.725 8.43317 18.5 10.6665 18.5Z", fill: "#4A4A4B" }))); };
|
|
209
209
|
|
|
210
|
+
var IconRoundAddCell = function (props) { return (React__default.createElement("svg", __assign({ width: "21", height: "21", viewBox: "0 0 21 21", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props),
|
|
211
|
+
React__default.createElement("path", { d: "M9.6665 15.5H11.6665V11.5H15.6665V9.5H11.6665V5.5H9.6665V9.5H5.6665V11.5H9.6665V15.5ZM10.6665 20.5C9.28317 20.5 7.98317 20.2375 6.7665 19.7125C5.54984 19.1875 4.4915 18.475 3.5915 17.575C2.6915 16.675 1.979 15.6167 1.454 14.4C0.929004 13.1833 0.666504 11.8833 0.666504 10.5C0.666504 9.11667 0.929004 7.81667 1.454 6.6C1.979 5.38333 2.6915 4.325 3.5915 3.425C4.4915 2.525 5.54984 1.8125 6.7665 1.2875C7.98317 0.7625 9.28317 0.5 10.6665 0.5C12.0498 0.5 13.3498 0.7625 14.5665 1.2875C15.7832 1.8125 16.8415 2.525 17.7415 3.425C18.6415 4.325 19.354 5.38333 19.879 6.6C20.404 7.81667 20.6665 9.11667 20.6665 10.5C20.6665 11.8833 20.404 13.1833 19.879 14.4C19.354 15.6167 18.6415 16.675 17.7415 17.575C16.8415 18.475 15.7832 19.1875 14.5665 19.7125C13.3498 20.2375 12.0498 20.5 10.6665 20.5ZM10.6665 18.5C12.8998 18.5 14.7915 17.725 16.3415 16.175C17.8915 14.625 18.6665 12.7333 18.6665 10.5C18.6665 8.26667 17.8915 6.375 16.3415 4.825C14.7915 3.275 12.8998 2.5 10.6665 2.5C8.43317 2.5 6.5415 3.275 4.9915 4.825C3.4415 6.375 2.6665 8.26667 2.6665 10.5C2.6665 12.7333 3.4415 14.625 4.9915 16.175C6.5415 17.725 8.43317 18.5 10.6665 18.5Z", fill: "currentColor" }))); };
|
|
212
|
+
|
|
210
213
|
var MenuIcon = function (props) {
|
|
211
214
|
var _a, _b;
|
|
212
215
|
return (React__default.createElement("svg", __assign({ width: (_a = props.width) !== null && _a !== void 0 ? _a : "48", height: (_b = props.height) !== null && _b !== void 0 ? _b : "49", viewBox: "0 0 48 49", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props),
|
|
@@ -546,7 +549,8 @@ styleInject(css_248z$I);
|
|
|
546
549
|
|
|
547
550
|
var InformativeBox = function (_a) {
|
|
548
551
|
var _b;
|
|
549
|
-
var
|
|
552
|
+
var _c;
|
|
553
|
+
var infoType = _a.infoType, title = _a.title, message = _a.message, children = _a.children, onClose = _a.onClose, _d = _a.widthType, widthType = _d === void 0 ? "fitContent" : _d, _e = _a.hasDismissButton, hasDismissButton = _e === void 0 ? false : _e, props = __rest(_a, ["infoType", "title", "message", "children", "onClose", "widthType", "hasDismissButton"]);
|
|
550
554
|
var getIcon = function () {
|
|
551
555
|
var iconClass = "".concat(styles$E.icon, " ").concat(styles$E[infoType] || "");
|
|
552
556
|
switch (infoType) {
|
|
@@ -567,7 +571,7 @@ var InformativeBox = function (_a) {
|
|
|
567
571
|
React__default.createElement("div", { className: styles$E.content },
|
|
568
572
|
React__default.createElement("div", { className: styles$E.info },
|
|
569
573
|
getIcon(),
|
|
570
|
-
React__default.createElement("div", { className: styles$E.text },
|
|
574
|
+
React__default.createElement("div", { className: styles$E.text }, children ? (children) : (React__default.createElement(React__default.Fragment, null,
|
|
571
575
|
title && !message && (React__default.createElement("strong", { className: "".concat(styles$E.title, " ").concat(styles$E[infoType]) }, title)),
|
|
572
576
|
!title && message && (React__default.createElement("span", { className: clsx(styles$E.textContent, (_b = {},
|
|
573
577
|
_b[styles$E.success] = infoType === "success",
|
|
@@ -577,8 +581,8 @@ var InformativeBox = function (_a) {
|
|
|
577
581
|
_b)) }, message)),
|
|
578
582
|
title && message && (React__default.createElement(React__default.Fragment, null,
|
|
579
583
|
React__default.createElement("strong", { className: "".concat(styles$E.title, " ").concat(styles$E[infoType]) }, title),
|
|
580
|
-
React__default.createElement("span", { className: styles$E.textContent }, message))))),
|
|
581
|
-
hasDismissButton && (React__default.createElement("button", { "aria-label": "Fechar campo informativo para ".concat(title
|
|
584
|
+
React__default.createElement("span", { className: styles$E.textContent }, message))))))),
|
|
585
|
+
hasDismissButton && (React__default.createElement("button", { "aria-label": "Fechar campo informativo para ".concat((_c = title !== null && title !== void 0 ? title : message) !== null && _c !== void 0 ? _c : "conteúdo"), className: styles$E.closeButton, onClick: function (e) {
|
|
582
586
|
e.stopPropagation();
|
|
583
587
|
onClose === null || onClose === void 0 ? void 0 : onClose();
|
|
584
588
|
} },
|
|
@@ -27857,5 +27861,5 @@ function installPrimeReactStyles() {
|
|
|
27857
27861
|
require("primereact/resources/primereact.css");
|
|
27858
27862
|
}
|
|
27859
27863
|
|
|
27860
|
-
export { Accordion, AccordionItem, BasicSelect, Blanket, BoxError, BoxSuccess, Button$1 as Button, Checkbox$1 as Checkbox, Chip, CommonDotIcon, DateInput, Dropdown, Fieldset, FileUpload, FloatingMenu, FooterPge as Footer, Header, HeaderPge, IconAdd, IconAddCell, IconArrowExpland, IconArrowLeft, IconArrowRecall, IconArrowRight, IconCLose, IconCalculate, IconCalendar, IconCertidaoRegularidade, IconCheck, IconCheckCircle, IconCircleExpland, IconCircleRecall, IconDebitoFiscal, IconDelete$1 as IconDelete, IconDotsVertical, IconDownload, IconEdit, IconEmissaoDarj, IconEventAvaliable, IconExclude, IconHourglass, IconInfoRound, IconInvisibility, IconLeftDirection, IconLogout, IconMail, IconNewTab, IconParcelamento, IconPayment, IconPdf, IconPrint, IconProfile, IconQuestionMark, IconRemove, IconRequerimentoAdm, IconRightDirection, IconSearch, IconSwap, IconTriangleExpand, IconTriangleRecall, IconTwoUsers, IconTwoUsersSearch, IconUpAndDownArror, IconUpArrow, IconUpload, IconUploadFile, IconUploadFile2, IconUploadV2, IconUsers, IconView, IconVisibility, IconWarning, InformativeBox, InputBase, LoadingSpinner, Menu, MenuAction, MenuList, Modal, ModalBody, ModalFooter, ModalHeader, ModalUI, Option, OverlayLoadingSpinner, PaginationTable, Pagination as PaginationV2, PasswordInput, PgeButton, ProgressCircle, RadioButton, RadioGroupBase, SelectDefault, SelectMult, SkeletonLoader, Switch, Table, TableBody, TableCell, TableComponent, TableFooter, TableHeader, TableRow, TextareaBase, Title$1 as Title, Tooltip$1 as Tooltip, TooltipWithPortal, TreeSelect, installPrimeReactStyles };
|
|
27864
|
+
export { Accordion, AccordionItem, BasicSelect, Blanket, BoxError, BoxSuccess, Button$1 as Button, Checkbox$1 as Checkbox, Chip, CommonDotIcon, DateInput, Dropdown, Fieldset, FileUpload, FloatingMenu, FooterPge as Footer, Header, HeaderPge, IconAdd, IconAddCell, IconArrowExpland, IconArrowLeft, IconArrowRecall, IconArrowRight, IconCLose, IconCalculate, IconCalendar, IconCertidaoRegularidade, IconCheck, IconCheckCircle, IconCircleExpland, IconCircleRecall, IconDebitoFiscal, IconDelete$1 as IconDelete, IconDotsVertical, IconDownload, IconEdit, IconEmissaoDarj, IconEventAvaliable, IconExclude, IconHourglass, IconInfoRound, IconInvisibility, IconLeftDirection, IconLogout, IconMail, IconNewTab, IconParcelamento, IconPayment, IconPdf, IconPrint, IconProfile, IconQuestionMark, IconRemove, IconRequerimentoAdm, IconRightDirection, IconRoundAddCell, IconSearch, IconSwap, IconTriangleExpand, IconTriangleRecall, IconTwoUsers, IconTwoUsersSearch, IconUpAndDownArror, IconUpArrow, IconUpload, IconUploadFile, IconUploadFile2, IconUploadV2, IconUsers, IconView, IconVisibility, IconWarning, InformativeBox, InputBase, LoadingSpinner, Menu, MenuAction, MenuList, Modal, ModalBody, ModalFooter, ModalHeader, ModalUI, Option, OverlayLoadingSpinner, PaginationTable, Pagination as PaginationV2, PasswordInput, PgeButton, ProgressCircle, RadioButton, RadioGroupBase, SelectDefault, SelectMult, SkeletonLoader, Switch, Table, TableBody, TableCell, TableComponent, TableFooter, TableHeader, TableRow, TextareaBase, Title$1 as Title, Tooltip$1 as Tooltip, TooltipWithPortal, TreeSelect, installPrimeReactStyles };
|
|
27861
27865
|
//# sourceMappingURL=index.esm.js.map
|