pge-front-common 14.1.42 → 14.2.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/components/DropDown/Dropdown.d.ts +1 -1
- package/lib/components/MultiSelect/components.d.ts +6 -6
- package/lib/components/TreeSelect/TreeSelect.stories.d.ts +1 -0
- package/lib/components/Upload/index.d.ts +18 -4
- package/lib/index.d.ts +31 -11
- package/lib/index.esm.js +13 -1
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +13 -1
- package/lib/index.js.map +1 -1
- package/package.json +7 -7
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import
|
|
2
|
-
declare const Option: (props: any) =>
|
|
3
|
-
declare const MenuList: (props: any) =>
|
|
4
|
-
declare const Menu: (props: JSX.IntrinsicElements["div"]) =>
|
|
5
|
-
declare const Blanket: (props: JSX.IntrinsicElements["div"]) =>
|
|
1
|
+
import { ReactNode, JSX } from "react";
|
|
2
|
+
declare const Option: (props: any) => JSX.Element;
|
|
3
|
+
declare const MenuList: (props: any) => JSX.Element;
|
|
4
|
+
declare const Menu: (props: JSX.IntrinsicElements["div"]) => JSX.Element;
|
|
5
|
+
declare const Blanket: (props: JSX.IntrinsicElements["div"]) => JSX.Element;
|
|
6
6
|
declare const Dropdown: ({ children, isOpen, target, onClose, }: {
|
|
7
7
|
children?: ReactNode;
|
|
8
8
|
readonly isOpen: boolean;
|
|
9
9
|
readonly target: ReactNode;
|
|
10
10
|
readonly onClose: () => void;
|
|
11
11
|
readonly selecionados: any[];
|
|
12
|
-
}) =>
|
|
12
|
+
}) => JSX.Element;
|
|
13
13
|
export { Option, MenuList, Menu, Blanket, Dropdown };
|
|
@@ -12,4 +12,5 @@ export declare const ComValorPreSelecionado: Story;
|
|
|
12
12
|
export declare const ExibicaoEmChips: Story;
|
|
13
13
|
export declare const ComIcones: Story;
|
|
14
14
|
export declare const ComIconesMultiplo: Story;
|
|
15
|
+
export declare const SemOpcoes: Story;
|
|
15
16
|
export declare const TodosOsCenarios: Story;
|
|
@@ -14,7 +14,7 @@ export declare const FileUpload: React.ForwardRefExoticComponent<{
|
|
|
14
14
|
} & {
|
|
15
15
|
disabled?: boolean | undefined;
|
|
16
16
|
form?: string | undefined;
|
|
17
|
-
formAction?: string | React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[keyof React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS] | undefined;
|
|
17
|
+
formAction?: string | ((formData: FormData) => void | Promise<void>) | React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[keyof React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS] | undefined;
|
|
18
18
|
formEncType?: string | undefined;
|
|
19
19
|
formMethod?: string | undefined;
|
|
20
20
|
formNoValidate?: boolean | undefined;
|
|
@@ -68,8 +68,14 @@ export declare const FileUpload: React.ForwardRefExoticComponent<{
|
|
|
68
68
|
results?: number | undefined;
|
|
69
69
|
security?: string | undefined;
|
|
70
70
|
unselectable?: "on" | "off" | undefined;
|
|
71
|
+
popover?: "" | "auto" | "manual" | "hint" | undefined;
|
|
72
|
+
popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
|
|
73
|
+
popoverTarget?: string | undefined;
|
|
74
|
+
inert?: boolean | undefined;
|
|
71
75
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
72
76
|
is?: string | undefined;
|
|
77
|
+
exportparts?: string | undefined;
|
|
78
|
+
part?: string | undefined;
|
|
73
79
|
"aria-activedescendant"?: string | undefined;
|
|
74
80
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
75
81
|
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
@@ -145,7 +151,7 @@ export declare const FileUpload: React.ForwardRefExoticComponent<{
|
|
|
145
151
|
onBlurCapture?: React.FocusEventHandler<HTMLButtonElement> | undefined;
|
|
146
152
|
onChange?: React.FormEventHandler<HTMLButtonElement> | undefined;
|
|
147
153
|
onChangeCapture?: React.FormEventHandler<HTMLButtonElement> | undefined;
|
|
148
|
-
onBeforeInput?: React.
|
|
154
|
+
onBeforeInput?: React.InputEventHandler<HTMLButtonElement> | undefined;
|
|
149
155
|
onBeforeInputCapture?: React.FormEventHandler<HTMLButtonElement> | undefined;
|
|
150
156
|
onInput?: React.FormEventHandler<HTMLButtonElement> | undefined;
|
|
151
157
|
onInputCapture?: React.FormEventHandler<HTMLButtonElement> | undefined;
|
|
@@ -195,8 +201,6 @@ export declare const FileUpload: React.ForwardRefExoticComponent<{
|
|
|
195
201
|
onProgressCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
196
202
|
onRateChange?: React.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
197
203
|
onRateChangeCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
198
|
-
onResize?: React.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
199
|
-
onResizeCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
200
204
|
onSeeked?: React.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
201
205
|
onSeekedCapture?: React.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
202
206
|
onSeeking?: React.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
@@ -277,6 +281,8 @@ export declare const FileUpload: React.ForwardRefExoticComponent<{
|
|
|
277
281
|
onLostPointerCaptureCapture?: React.PointerEventHandler<HTMLButtonElement> | undefined;
|
|
278
282
|
onScroll?: React.UIEventHandler<HTMLButtonElement> | undefined;
|
|
279
283
|
onScrollCapture?: React.UIEventHandler<HTMLButtonElement> | undefined;
|
|
284
|
+
onScrollEnd?: React.UIEventHandler<HTMLButtonElement> | undefined;
|
|
285
|
+
onScrollEndCapture?: React.UIEventHandler<HTMLButtonElement> | undefined;
|
|
280
286
|
onWheel?: React.WheelEventHandler<HTMLButtonElement> | undefined;
|
|
281
287
|
onWheelCapture?: React.WheelEventHandler<HTMLButtonElement> | undefined;
|
|
282
288
|
onAnimationStart?: React.AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
@@ -285,8 +291,16 @@ export declare const FileUpload: React.ForwardRefExoticComponent<{
|
|
|
285
291
|
onAnimationEndCapture?: React.AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
286
292
|
onAnimationIteration?: React.AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
287
293
|
onAnimationIterationCapture?: React.AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
294
|
+
onToggle?: React.ToggleEventHandler<HTMLButtonElement> | undefined;
|
|
295
|
+
onBeforeToggle?: React.ToggleEventHandler<HTMLButtonElement> | undefined;
|
|
296
|
+
onTransitionCancel?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
297
|
+
onTransitionCancelCapture?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
288
298
|
onTransitionEnd?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
289
299
|
onTransitionEndCapture?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
300
|
+
onTransitionRun?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
301
|
+
onTransitionRunCapture?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
302
|
+
onTransitionStart?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
303
|
+
onTransitionStartCapture?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
290
304
|
'data-pr-tooltip'?: string | undefined;
|
|
291
305
|
'data-pr-disabled'?: boolean | undefined;
|
|
292
306
|
'data-pr-classname'?: string | undefined;
|
package/lib/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
|
-
import React__default, { InputHTMLAttributes, ReactNode, HtmlHTMLAttributes, ChangeEvent, HTMLAttributes, SVGProps } from 'react';
|
|
2
|
+
import React__default, { InputHTMLAttributes, ReactNode, HtmlHTMLAttributes, ChangeEvent, JSX, HTMLAttributes, SVGProps } from 'react';
|
|
3
3
|
import { Control } from 'react-hook-form';
|
|
4
4
|
import { FormatOptionLabelMeta } from 'react-select';
|
|
5
5
|
import { TreeSelectSelectionKeysType, TreeSelectChangeEvent } from 'primereact/treeselect';
|
|
@@ -93,7 +93,7 @@ declare const FileUpload: React__default.ForwardRefExoticComponent<{
|
|
|
93
93
|
} & {
|
|
94
94
|
disabled?: boolean | undefined;
|
|
95
95
|
form?: string | undefined;
|
|
96
|
-
formAction?: string | React__default.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[keyof React__default.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS] | undefined;
|
|
96
|
+
formAction?: string | ((formData: FormData) => void | Promise<void>) | React__default.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[keyof React__default.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS] | undefined;
|
|
97
97
|
formEncType?: string | undefined;
|
|
98
98
|
formMethod?: string | undefined;
|
|
99
99
|
formNoValidate?: boolean | undefined;
|
|
@@ -147,8 +147,14 @@ declare const FileUpload: React__default.ForwardRefExoticComponent<{
|
|
|
147
147
|
results?: number | undefined;
|
|
148
148
|
security?: string | undefined;
|
|
149
149
|
unselectable?: "on" | "off" | undefined;
|
|
150
|
+
popover?: "" | "auto" | "manual" | "hint" | undefined;
|
|
151
|
+
popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
|
|
152
|
+
popoverTarget?: string | undefined;
|
|
153
|
+
inert?: boolean | undefined;
|
|
150
154
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
151
155
|
is?: string | undefined;
|
|
156
|
+
exportparts?: string | undefined;
|
|
157
|
+
part?: string | undefined;
|
|
152
158
|
"aria-activedescendant"?: string | undefined;
|
|
153
159
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
154
160
|
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
@@ -224,7 +230,7 @@ declare const FileUpload: React__default.ForwardRefExoticComponent<{
|
|
|
224
230
|
onBlurCapture?: React__default.FocusEventHandler<HTMLButtonElement> | undefined;
|
|
225
231
|
onChange?: React__default.FormEventHandler<HTMLButtonElement> | undefined;
|
|
226
232
|
onChangeCapture?: React__default.FormEventHandler<HTMLButtonElement> | undefined;
|
|
227
|
-
onBeforeInput?: React__default.
|
|
233
|
+
onBeforeInput?: React__default.InputEventHandler<HTMLButtonElement> | undefined;
|
|
228
234
|
onBeforeInputCapture?: React__default.FormEventHandler<HTMLButtonElement> | undefined;
|
|
229
235
|
onInput?: React__default.FormEventHandler<HTMLButtonElement> | undefined;
|
|
230
236
|
onInputCapture?: React__default.FormEventHandler<HTMLButtonElement> | undefined;
|
|
@@ -274,8 +280,6 @@ declare const FileUpload: React__default.ForwardRefExoticComponent<{
|
|
|
274
280
|
onProgressCapture?: React__default.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
275
281
|
onRateChange?: React__default.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
276
282
|
onRateChangeCapture?: React__default.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
277
|
-
onResize?: React__default.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
278
|
-
onResizeCapture?: React__default.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
279
283
|
onSeeked?: React__default.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
280
284
|
onSeekedCapture?: React__default.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
281
285
|
onSeeking?: React__default.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
@@ -356,6 +360,8 @@ declare const FileUpload: React__default.ForwardRefExoticComponent<{
|
|
|
356
360
|
onLostPointerCaptureCapture?: React__default.PointerEventHandler<HTMLButtonElement> | undefined;
|
|
357
361
|
onScroll?: React__default.UIEventHandler<HTMLButtonElement> | undefined;
|
|
358
362
|
onScrollCapture?: React__default.UIEventHandler<HTMLButtonElement> | undefined;
|
|
363
|
+
onScrollEnd?: React__default.UIEventHandler<HTMLButtonElement> | undefined;
|
|
364
|
+
onScrollEndCapture?: React__default.UIEventHandler<HTMLButtonElement> | undefined;
|
|
359
365
|
onWheel?: React__default.WheelEventHandler<HTMLButtonElement> | undefined;
|
|
360
366
|
onWheelCapture?: React__default.WheelEventHandler<HTMLButtonElement> | undefined;
|
|
361
367
|
onAnimationStart?: React__default.AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
@@ -364,8 +370,16 @@ declare const FileUpload: React__default.ForwardRefExoticComponent<{
|
|
|
364
370
|
onAnimationEndCapture?: React__default.AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
365
371
|
onAnimationIteration?: React__default.AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
366
372
|
onAnimationIterationCapture?: React__default.AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
373
|
+
onToggle?: React__default.ToggleEventHandler<HTMLButtonElement> | undefined;
|
|
374
|
+
onBeforeToggle?: React__default.ToggleEventHandler<HTMLButtonElement> | undefined;
|
|
375
|
+
onTransitionCancel?: React__default.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
376
|
+
onTransitionCancelCapture?: React__default.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
367
377
|
onTransitionEnd?: React__default.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
368
378
|
onTransitionEndCapture?: React__default.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
379
|
+
onTransitionRun?: React__default.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
380
|
+
onTransitionRunCapture?: React__default.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
381
|
+
onTransitionStart?: React__default.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
382
|
+
onTransitionStartCapture?: React__default.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
369
383
|
'data-pr-tooltip'?: string | undefined;
|
|
370
384
|
'data-pr-disabled'?: boolean | undefined;
|
|
371
385
|
'data-pr-classname'?: string | undefined;
|
|
@@ -578,17 +592,17 @@ interface Props$1 {
|
|
|
578
592
|
}
|
|
579
593
|
declare function OverlayLoadingSpinner({ isOpen, text, mini, }: Readonly<Props$1>): React$1.JSX.Element;
|
|
580
594
|
|
|
581
|
-
declare const Option: (props: any) =>
|
|
582
|
-
declare const MenuList: (props: any) =>
|
|
583
|
-
declare const Menu: (props: JSX.IntrinsicElements["div"]) =>
|
|
584
|
-
declare const Blanket: (props: JSX.IntrinsicElements["div"]) =>
|
|
595
|
+
declare const Option: (props: any) => JSX.Element;
|
|
596
|
+
declare const MenuList: (props: any) => JSX.Element;
|
|
597
|
+
declare const Menu: (props: JSX.IntrinsicElements["div"]) => JSX.Element;
|
|
598
|
+
declare const Blanket: (props: JSX.IntrinsicElements["div"]) => JSX.Element;
|
|
585
599
|
declare const Dropdown: ({ children, isOpen, target, onClose, }: {
|
|
586
600
|
children?: ReactNode;
|
|
587
601
|
readonly isOpen: boolean;
|
|
588
602
|
readonly target: ReactNode;
|
|
589
603
|
readonly onClose: () => void;
|
|
590
604
|
readonly selecionados: any[];
|
|
591
|
-
}) =>
|
|
605
|
+
}) => JSX.Element;
|
|
592
606
|
|
|
593
607
|
interface IFuncionalidade {
|
|
594
608
|
id: number;
|
|
@@ -906,6 +920,12 @@ interface TreeSelectProps {
|
|
|
906
920
|
filter?: boolean | undefined;
|
|
907
921
|
selectionMode?: "checkbox" | "multiple" | "single";
|
|
908
922
|
}
|
|
923
|
+
type TreeSelectOptions = {
|
|
924
|
+
label: string;
|
|
925
|
+
value: string;
|
|
926
|
+
icon?: string;
|
|
927
|
+
children?: TreeSelectOptions[];
|
|
928
|
+
};
|
|
909
929
|
|
|
910
930
|
declare const TreeSelect: ({ label, value, restrictionMessage, onChange, isError, disabled, placeholder, required, display, filter, options, selectionMode, }: TreeSelectProps) => React__default.JSX.Element;
|
|
911
931
|
|
|
@@ -1019,4 +1039,4 @@ declare const IconUpArrow: (props?: SVGProps<SVGSVGElement>) => React__default.J
|
|
|
1019
1039
|
|
|
1020
1040
|
declare function installPrimeReactStyles(): void;
|
|
1021
1041
|
|
|
1022
|
-
export { Accordion, AccordionItem, type AccordionItemProps, BasicSelect, Blanket, BoxError, BoxSuccess, Button, type ButtonProps, Checkbox, Chip, type ChipProps, type Column, CommonDotIcon, DateInput, Dropdown, Fieldset, type FieldsetProps, 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, IconRightDirection, IconSearch, IconSwap, IconTriangleExpand, IconTriangleRecall, IconTwoUsers, IconTwoUsersSearch, IconUpAndDownArror, IconUpArrow, IconUpload, IconUploadFile, IconUploadFile2, IconUploadV2, IconUsers, IconView, IconVisibility, IconWarning, InformativeBox, type InformativeBoxProps, InputBase, type InputProps, LoadingSpinner, Menu, MenuAction, MenuList, Modal, ModalBody, ModalFooter, ModalHeader, ModalUI, Option, type OptionsProps$2 as OptionsProps, OverlayLoadingSpinner, PaginationTable, Pagination as PaginationV2, PasswordInput, PgeButton, ProgressCircle, type ProgressCircleProps, RadioGroupBase, type RadioGroupBaseProps, SelectDefault, type SelectDefaultProps, SelectMult, type SelectMultProps, SkeletonLoader, Switch, Table, TableBody, TableCell, TableComponent, type TableComponentProps, TableFooter, TableHeader, TableRow, TextareaBase, type TextareaBaseProps, Title, Tooltip, TooltipWithPortal, TreeSelect, type TreeSelectProps, installPrimeReactStyles };
|
|
1042
|
+
export { Accordion, AccordionItem, type AccordionItemProps, BasicSelect, Blanket, BoxError, BoxSuccess, Button, type ButtonProps, Checkbox, Chip, type ChipProps, type Column, CommonDotIcon, DateInput, Dropdown, Fieldset, type FieldsetProps, 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, IconRightDirection, IconSearch, IconSwap, IconTriangleExpand, IconTriangleRecall, IconTwoUsers, IconTwoUsersSearch, IconUpAndDownArror, IconUpArrow, IconUpload, IconUploadFile, IconUploadFile2, IconUploadV2, IconUsers, IconView, IconVisibility, IconWarning, InformativeBox, type InformativeBoxProps, InputBase, type InputProps, LoadingSpinner, Menu, MenuAction, MenuList, Modal, ModalBody, ModalFooter, ModalHeader, ModalUI, Option, type OptionsProps$2 as OptionsProps, OverlayLoadingSpinner, PaginationTable, Pagination as PaginationV2, PasswordInput, PgeButton, ProgressCircle, type ProgressCircleProps, RadioGroupBase, type RadioGroupBaseProps, SelectDefault, type SelectDefaultProps, SelectMult, type SelectMultProps, SkeletonLoader, Switch, Table, TableBody, TableCell, TableComponent, type TableComponentProps, TableFooter, TableHeader, TableRow, TextareaBase, type TextareaBaseProps, Title, Tooltip, TooltipWithPortal, TreeSelect, type TreeSelectOptions, type TreeSelectProps, installPrimeReactStyles };
|
package/lib/index.esm.js
CHANGED
|
@@ -911,7 +911,7 @@ var DropDown = function (_a) {
|
|
|
911
911
|
return (React__default.createElement("div", { key: item.id, className: styles$u.menuItem },
|
|
912
912
|
React__default.createElement("button", { className: "".concat(styles$u.primaryDropdown, " ").concat(item.checked
|
|
913
913
|
? styles$u.primaryDropdown__menu
|
|
914
|
-
: styles$u.primaryDropdown__disabled), onClick: function (ev) { return handleMenuClick(item, ev); }, ref: function (el) {
|
|
914
|
+
: styles$u.primaryDropdown__disabled), onClick: function (ev) { return handleMenuClick(item, ev); }, ref: function (el) { itemRefs.current[index] = el; }, onKeyDown: function (e) {
|
|
915
915
|
var _a, _b;
|
|
916
916
|
if (e.key === "ArrowDown") {
|
|
917
917
|
e.preventDefault();
|
|
@@ -11745,6 +11745,13 @@ var locales = {
|
|
|
11745
11745
|
}
|
|
11746
11746
|
}
|
|
11747
11747
|
};
|
|
11748
|
+
function locale(locale) {
|
|
11749
|
+
(PrimeReact$1.locale = locale);
|
|
11750
|
+
return {
|
|
11751
|
+
locale: PrimeReact$1.locale,
|
|
11752
|
+
options: locales[PrimeReact$1.locale]
|
|
11753
|
+
};
|
|
11754
|
+
}
|
|
11748
11755
|
function addLocale(locale, options) {
|
|
11749
11756
|
if (locale.includes('__proto__') || locale.includes('prototype')) {
|
|
11750
11757
|
throw new Error('Unsafe locale detected');
|
|
@@ -27554,6 +27561,11 @@ TreeSelect$1.displayName = 'TreeSelect';
|
|
|
27554
27561
|
var css_248z$1 = "@font-face {\n font-family: 'primeicons';\n font-display: block;\n src: url('./fonts/primeicons.eot');\n src: url('./fonts/primeicons.eot?#iefix') format('embedded-opentype'), url('./fonts/primeicons.woff2') format('woff2'), url('./fonts/primeicons.woff') format('woff'), url('./fonts/primeicons.ttf') format('truetype'), url('./fonts/primeicons.svg?#primeicons') format('svg');\n font-weight: normal;\n font-style: normal;\n}\n\n.pi {\n font-family: 'primeicons';\n speak: none;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: 1;\n display: inline-block;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n.pi:before {\n --webkit-backface-visibility:hidden;\n backface-visibility: hidden;\n}\n\n.pi-fw {\n width: 1.28571429em;\n text-align: center;\n}\n\n.pi-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .pi-spin {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n\n.pi-folder-plus:before {\n content: \"\\ea05\";\n}\n\n.pi-receipt:before {\n content: \"\\ea06\";\n}\n\n.pi-asterisk:before {\n content: \"\\ea07\";\n}\n\n.pi-face-smile:before {\n content: \"\\ea08\";\n}\n\n.pi-pinterest:before {\n content: \"\\ea09\";\n}\n\n.pi-expand:before {\n content: \"\\ea0a\";\n}\n\n.pi-pen-to-square:before {\n content: \"\\ea0b\";\n}\n\n.pi-wave-pulse:before {\n content: \"\\ea0c\";\n}\n\n.pi-turkish-lira:before {\n content: \"\\ea0d\";\n}\n\n.pi-spinner-dotted:before {\n content: \"\\ea0e\";\n}\n\n.pi-crown:before {\n content: \"\\ea0f\";\n}\n\n.pi-pause-circle:before {\n content: \"\\ea10\";\n}\n\n.pi-warehouse:before {\n content: \"\\ea11\";\n}\n\n.pi-objects-column:before {\n content: \"\\ea12\";\n}\n\n.pi-clipboard:before {\n content: \"\\ea13\";\n}\n\n.pi-play-circle:before {\n content: \"\\ea14\";\n}\n\n.pi-venus:before {\n content: \"\\ea15\";\n}\n\n.pi-cart-minus:before {\n content: \"\\ea16\";\n}\n\n.pi-file-plus:before {\n content: \"\\ea17\";\n}\n\n.pi-microchip:before {\n content: \"\\ea18\";\n}\n\n.pi-twitch:before {\n content: \"\\ea19\";\n}\n\n.pi-building-columns:before {\n content: \"\\ea1a\";\n}\n\n.pi-file-check:before {\n content: \"\\ea1b\";\n}\n\n.pi-microchip-ai:before {\n content: \"\\ea1c\";\n}\n\n.pi-trophy:before {\n content: \"\\ea1d\";\n}\n\n.pi-barcode:before {\n content: \"\\ea1e\";\n}\n\n.pi-file-arrow-up:before {\n content: \"\\ea1f\";\n}\n\n.pi-mars:before {\n content: \"\\ea20\";\n}\n\n.pi-tiktok:before {\n content: \"\\ea21\";\n}\n\n.pi-arrow-up-right-and-arrow-down-left-from-center:before {\n content: \"\\ea22\";\n}\n\n.pi-ethereum:before {\n content: \"\\ea23\";\n}\n\n.pi-list-check:before {\n content: \"\\ea24\";\n}\n\n.pi-thumbtack:before {\n content: \"\\ea25\";\n}\n\n.pi-arrow-down-left-and-arrow-up-right-to-center:before {\n content: \"\\ea26\";\n}\n\n.pi-equals:before {\n content: \"\\ea27\";\n}\n\n.pi-lightbulb:before {\n content: \"\\ea28\";\n}\n\n.pi-star-half:before {\n content: \"\\ea29\";\n}\n\n.pi-address-book:before {\n content: \"\\ea2a\";\n}\n\n.pi-chart-scatter:before {\n content: \"\\ea2b\";\n}\n\n.pi-indian-rupee:before {\n content: \"\\ea2c\";\n}\n\n.pi-star-half-fill:before {\n content: \"\\ea2d\";\n}\n\n.pi-cart-arrow-down:before {\n content: \"\\ea2e\";\n}\n\n.pi-calendar-clock:before {\n content: \"\\ea2f\";\n}\n\n.pi-sort-up-fill:before {\n content: \"\\ea30\";\n}\n\n.pi-sparkles:before {\n content: \"\\ea31\";\n}\n\n.pi-bullseye:before {\n content: \"\\ea32\";\n}\n\n.pi-sort-down-fill:before {\n content: \"\\ea33\";\n}\n\n.pi-graduation-cap:before {\n content: \"\\ea34\";\n}\n\n.pi-hammer:before {\n content: \"\\ea35\";\n}\n\n.pi-bell-slash:before {\n content: \"\\ea36\";\n}\n\n.pi-gauge:before {\n content: \"\\ea37\";\n}\n\n.pi-shop:before {\n content: \"\\ea38\";\n}\n\n.pi-headphones:before {\n content: \"\\ea39\";\n}\n\n.pi-eraser:before {\n content: \"\\ea04\";\n}\n\n.pi-stopwatch:before {\n content: \"\\ea01\";\n}\n\n.pi-verified:before {\n content: \"\\ea02\";\n}\n\n.pi-delete-left:before {\n content: \"\\ea03\";\n}\n\n.pi-hourglass:before {\n content: \"\\e9fe\";\n}\n\n.pi-truck:before {\n content: \"\\ea00\";\n}\n\n.pi-wrench:before {\n content: \"\\e9ff\";\n}\n\n.pi-microphone:before {\n content: \"\\e9fa\";\n}\n\n.pi-megaphone:before {\n content: \"\\e9fb\";\n}\n\n.pi-arrow-right-arrow-left:before {\n content: \"\\e9fc\";\n}\n\n.pi-bitcoin:before {\n content: \"\\e9fd\";\n}\n\n.pi-file-edit:before {\n content: \"\\e9f6\";\n}\n\n.pi-language:before {\n content: \"\\e9f7\";\n}\n\n.pi-file-export:before {\n content: \"\\e9f8\";\n}\n\n.pi-file-import:before {\n content: \"\\e9f9\";\n}\n\n.pi-file-word:before {\n content: \"\\e9f1\";\n}\n\n.pi-gift:before {\n content: \"\\e9f2\";\n}\n\n.pi-cart-plus:before {\n content: \"\\e9f3\";\n}\n\n.pi-thumbs-down-fill:before {\n content: \"\\e9f4\";\n}\n\n.pi-thumbs-up-fill:before {\n content: \"\\e9f5\";\n}\n\n.pi-arrows-alt:before {\n content: \"\\e9f0\";\n}\n\n.pi-calculator:before {\n content: \"\\e9ef\";\n}\n\n.pi-sort-alt-slash:before {\n content: \"\\e9ee\";\n}\n\n.pi-arrows-h:before {\n content: \"\\e9ec\";\n}\n\n.pi-arrows-v:before {\n content: \"\\e9ed\";\n}\n\n.pi-pound:before {\n content: \"\\e9eb\";\n}\n\n.pi-prime:before {\n content: \"\\e9ea\";\n}\n\n.pi-chart-pie:before {\n content: \"\\e9e9\";\n}\n\n.pi-reddit:before {\n content: \"\\e9e8\";\n}\n\n.pi-code:before {\n content: \"\\e9e7\";\n}\n\n.pi-sync:before {\n content: \"\\e9e6\";\n}\n\n.pi-shopping-bag:before {\n content: \"\\e9e5\";\n}\n\n.pi-server:before {\n content: \"\\e9e4\";\n}\n\n.pi-database:before {\n content: \"\\e9e3\";\n}\n\n.pi-hashtag:before {\n content: \"\\e9e2\";\n}\n\n.pi-bookmark-fill:before {\n content: \"\\e9df\";\n}\n\n.pi-filter-fill:before {\n content: \"\\e9e0\";\n}\n\n.pi-heart-fill:before {\n content: \"\\e9e1\";\n}\n\n.pi-flag-fill:before {\n content: \"\\e9de\";\n}\n\n.pi-circle:before {\n content: \"\\e9dc\";\n}\n\n.pi-circle-fill:before {\n content: \"\\e9dd\";\n}\n\n.pi-bolt:before {\n content: \"\\e9db\";\n}\n\n.pi-history:before {\n content: \"\\e9da\";\n}\n\n.pi-box:before {\n content: \"\\e9d9\";\n}\n\n.pi-at:before {\n content: \"\\e9d8\";\n}\n\n.pi-arrow-up-right:before {\n content: \"\\e9d4\";\n}\n\n.pi-arrow-up-left:before {\n content: \"\\e9d5\";\n}\n\n.pi-arrow-down-left:before {\n content: \"\\e9d6\";\n}\n\n.pi-arrow-down-right:before {\n content: \"\\e9d7\";\n}\n\n.pi-telegram:before {\n content: \"\\e9d3\";\n}\n\n.pi-stop-circle:before {\n content: \"\\e9d2\";\n}\n\n.pi-stop:before {\n content: \"\\e9d1\";\n}\n\n.pi-whatsapp:before {\n content: \"\\e9d0\";\n}\n\n.pi-building:before {\n content: \"\\e9cf\";\n}\n\n.pi-qrcode:before {\n content: \"\\e9ce\";\n}\n\n.pi-car:before {\n content: \"\\e9cd\";\n}\n\n.pi-instagram:before {\n content: \"\\e9cc\";\n}\n\n.pi-linkedin:before {\n content: \"\\e9cb\";\n}\n\n.pi-send:before {\n content: \"\\e9ca\";\n}\n\n.pi-slack:before {\n content: \"\\e9c9\";\n}\n\n.pi-sun:before {\n content: \"\\e9c8\";\n}\n\n.pi-moon:before {\n content: \"\\e9c7\";\n}\n\n.pi-vimeo:before {\n content: \"\\e9c6\";\n}\n\n.pi-youtube:before {\n content: \"\\e9c5\";\n}\n\n.pi-flag:before {\n content: \"\\e9c4\";\n}\n\n.pi-wallet:before {\n content: \"\\e9c3\";\n}\n\n.pi-map:before {\n content: \"\\e9c2\";\n}\n\n.pi-link:before {\n content: \"\\e9c1\";\n}\n\n.pi-credit-card:before {\n content: \"\\e9bf\";\n}\n\n.pi-discord:before {\n content: \"\\e9c0\";\n}\n\n.pi-percentage:before {\n content: \"\\e9be\";\n}\n\n.pi-euro:before {\n content: \"\\e9bd\";\n}\n\n.pi-book:before {\n content: \"\\e9ba\";\n}\n\n.pi-shield:before {\n content: \"\\e9b9\";\n}\n\n.pi-paypal:before {\n content: \"\\e9bb\";\n}\n\n.pi-amazon:before {\n content: \"\\e9bc\";\n}\n\n.pi-phone:before {\n content: \"\\e9b8\";\n}\n\n.pi-filter-slash:before {\n content: \"\\e9b7\";\n}\n\n.pi-facebook:before {\n content: \"\\e9b4\";\n}\n\n.pi-github:before {\n content: \"\\e9b5\";\n}\n\n.pi-twitter:before {\n content: \"\\e9b6\";\n}\n\n.pi-step-backward-alt:before {\n content: \"\\e9ac\";\n}\n\n.pi-step-forward-alt:before {\n content: \"\\e9ad\";\n}\n\n.pi-forward:before {\n content: \"\\e9ae\";\n}\n\n.pi-backward:before {\n content: \"\\e9af\";\n}\n\n.pi-fast-backward:before {\n content: \"\\e9b0\";\n}\n\n.pi-fast-forward:before {\n content: \"\\e9b1\";\n}\n\n.pi-pause:before {\n content: \"\\e9b2\";\n}\n\n.pi-play:before {\n content: \"\\e9b3\";\n}\n\n.pi-compass:before {\n content: \"\\e9ab\";\n}\n\n.pi-id-card:before {\n content: \"\\e9aa\";\n}\n\n.pi-ticket:before {\n content: \"\\e9a9\";\n}\n\n.pi-file-o:before {\n content: \"\\e9a8\";\n}\n\n.pi-reply:before {\n content: \"\\e9a7\";\n}\n\n.pi-directions-alt:before {\n content: \"\\e9a5\";\n}\n\n.pi-directions:before {\n content: \"\\e9a6\";\n}\n\n.pi-thumbs-up:before {\n content: \"\\e9a3\";\n}\n\n.pi-thumbs-down:before {\n content: \"\\e9a4\";\n}\n\n.pi-sort-numeric-down-alt:before {\n content: \"\\e996\";\n}\n\n.pi-sort-numeric-up-alt:before {\n content: \"\\e997\";\n}\n\n.pi-sort-alpha-down-alt:before {\n content: \"\\e998\";\n}\n\n.pi-sort-alpha-up-alt:before {\n content: \"\\e999\";\n}\n\n.pi-sort-numeric-down:before {\n content: \"\\e99a\";\n}\n\n.pi-sort-numeric-up:before {\n content: \"\\e99b\";\n}\n\n.pi-sort-alpha-down:before {\n content: \"\\e99c\";\n}\n\n.pi-sort-alpha-up:before {\n content: \"\\e99d\";\n}\n\n.pi-sort-alt:before {\n content: \"\\e99e\";\n}\n\n.pi-sort-amount-up:before {\n content: \"\\e99f\";\n}\n\n.pi-sort-amount-down:before {\n content: \"\\e9a0\";\n}\n\n.pi-sort-amount-down-alt:before {\n content: \"\\e9a1\";\n}\n\n.pi-sort-amount-up-alt:before {\n content: \"\\e9a2\";\n}\n\n.pi-palette:before {\n content: \"\\e995\";\n}\n\n.pi-undo:before {\n content: \"\\e994\";\n}\n\n.pi-desktop:before {\n content: \"\\e993\";\n}\n\n.pi-sliders-v:before {\n content: \"\\e991\";\n}\n\n.pi-sliders-h:before {\n content: \"\\e992\";\n}\n\n.pi-search-plus:before {\n content: \"\\e98f\";\n}\n\n.pi-search-minus:before {\n content: \"\\e990\";\n}\n\n.pi-file-excel:before {\n content: \"\\e98e\";\n}\n\n.pi-file-pdf:before {\n content: \"\\e98d\";\n}\n\n.pi-check-square:before {\n content: \"\\e98c\";\n}\n\n.pi-chart-line:before {\n content: \"\\e98b\";\n}\n\n.pi-user-edit:before {\n content: \"\\e98a\";\n}\n\n.pi-exclamation-circle:before {\n content: \"\\e989\";\n}\n\n.pi-android:before {\n content: \"\\e985\";\n}\n\n.pi-google:before {\n content: \"\\e986\";\n}\n\n.pi-apple:before {\n content: \"\\e987\";\n}\n\n.pi-microsoft:before {\n content: \"\\e988\";\n}\n\n.pi-heart:before {\n content: \"\\e984\";\n}\n\n.pi-mobile:before {\n content: \"\\e982\";\n}\n\n.pi-tablet:before {\n content: \"\\e983\";\n}\n\n.pi-key:before {\n content: \"\\e981\";\n}\n\n.pi-shopping-cart:before {\n content: \"\\e980\";\n}\n\n.pi-comments:before {\n content: \"\\e97e\";\n}\n\n.pi-comment:before {\n content: \"\\e97f\";\n}\n\n.pi-briefcase:before {\n content: \"\\e97d\";\n}\n\n.pi-bell:before {\n content: \"\\e97c\";\n}\n\n.pi-paperclip:before {\n content: \"\\e97b\";\n}\n\n.pi-share-alt:before {\n content: \"\\e97a\";\n}\n\n.pi-envelope:before {\n content: \"\\e979\";\n}\n\n.pi-volume-down:before {\n content: \"\\e976\";\n}\n\n.pi-volume-up:before {\n content: \"\\e977\";\n}\n\n.pi-volume-off:before {\n content: \"\\e978\";\n}\n\n.pi-eject:before {\n content: \"\\e975\";\n}\n\n.pi-money-bill:before {\n content: \"\\e974\";\n}\n\n.pi-images:before {\n content: \"\\e973\";\n}\n\n.pi-image:before {\n content: \"\\e972\";\n}\n\n.pi-sign-in:before {\n content: \"\\e970\";\n}\n\n.pi-sign-out:before {\n content: \"\\e971\";\n}\n\n.pi-wifi:before {\n content: \"\\e96f\";\n}\n\n.pi-sitemap:before {\n content: \"\\e96e\";\n}\n\n.pi-chart-bar:before {\n content: \"\\e96d\";\n}\n\n.pi-camera:before {\n content: \"\\e96c\";\n}\n\n.pi-dollar:before {\n content: \"\\e96b\";\n}\n\n.pi-lock-open:before {\n content: \"\\e96a\";\n}\n\n.pi-table:before {\n content: \"\\e969\";\n}\n\n.pi-map-marker:before {\n content: \"\\e968\";\n}\n\n.pi-list:before {\n content: \"\\e967\";\n}\n\n.pi-eye-slash:before {\n content: \"\\e965\";\n}\n\n.pi-eye:before {\n content: \"\\e966\";\n}\n\n.pi-folder-open:before {\n content: \"\\e964\";\n}\n\n.pi-folder:before {\n content: \"\\e963\";\n}\n\n.pi-video:before {\n content: \"\\e962\";\n}\n\n.pi-inbox:before {\n content: \"\\e961\";\n}\n\n.pi-lock:before {\n content: \"\\e95f\";\n}\n\n.pi-unlock:before {\n content: \"\\e960\";\n}\n\n.pi-tags:before {\n content: \"\\e95d\";\n}\n\n.pi-tag:before {\n content: \"\\e95e\";\n}\n\n.pi-power-off:before {\n content: \"\\e95c\";\n}\n\n.pi-save:before {\n content: \"\\e95b\";\n}\n\n.pi-question-circle:before {\n content: \"\\e959\";\n}\n\n.pi-question:before {\n content: \"\\e95a\";\n}\n\n.pi-copy:before {\n content: \"\\e957\";\n}\n\n.pi-file:before {\n content: \"\\e958\";\n}\n\n.pi-clone:before {\n content: \"\\e955\";\n}\n\n.pi-calendar-times:before {\n content: \"\\e952\";\n}\n\n.pi-calendar-minus:before {\n content: \"\\e953\";\n}\n\n.pi-calendar-plus:before {\n content: \"\\e954\";\n}\n\n.pi-ellipsis-v:before {\n content: \"\\e950\";\n}\n\n.pi-ellipsis-h:before {\n content: \"\\e951\";\n}\n\n.pi-bookmark:before {\n content: \"\\e94e\";\n}\n\n.pi-globe:before {\n content: \"\\e94f\";\n}\n\n.pi-replay:before {\n content: \"\\e94d\";\n}\n\n.pi-filter:before {\n content: \"\\e94c\";\n}\n\n.pi-print:before {\n content: \"\\e94b\";\n}\n\n.pi-align-right:before {\n content: \"\\e946\";\n}\n\n.pi-align-left:before {\n content: \"\\e947\";\n}\n\n.pi-align-center:before {\n content: \"\\e948\";\n}\n\n.pi-align-justify:before {\n content: \"\\e949\";\n}\n\n.pi-cog:before {\n content: \"\\e94a\";\n}\n\n.pi-cloud-download:before {\n content: \"\\e943\";\n}\n\n.pi-cloud-upload:before {\n content: \"\\e944\";\n}\n\n.pi-cloud:before {\n content: \"\\e945\";\n}\n\n.pi-pencil:before {\n content: \"\\e942\";\n}\n\n.pi-users:before {\n content: \"\\e941\";\n}\n\n.pi-clock:before {\n content: \"\\e940\";\n}\n\n.pi-user-minus:before {\n content: \"\\e93e\";\n}\n\n.pi-user-plus:before {\n content: \"\\e93f\";\n}\n\n.pi-trash:before {\n content: \"\\e93d\";\n}\n\n.pi-external-link:before {\n content: \"\\e93c\";\n}\n\n.pi-window-maximize:before {\n content: \"\\e93b\";\n}\n\n.pi-window-minimize:before {\n content: \"\\e93a\";\n}\n\n.pi-refresh:before {\n content: \"\\e938\";\n}\n \n.pi-user:before {\n content: \"\\e939\";\n}\n\n.pi-exclamation-triangle:before {\n content: \"\\e922\";\n}\n\n.pi-calendar:before {\n content: \"\\e927\";\n}\n\n.pi-chevron-circle-left:before {\n content: \"\\e928\";\n}\n\n.pi-chevron-circle-down:before {\n content: \"\\e929\";\n}\n\n.pi-chevron-circle-right:before {\n content: \"\\e92a\";\n}\n\n.pi-chevron-circle-up:before {\n content: \"\\e92b\";\n}\n\n.pi-angle-double-down:before {\n content: \"\\e92c\";\n}\n\n.pi-angle-double-left:before {\n content: \"\\e92d\";\n}\n\n.pi-angle-double-right:before {\n content: \"\\e92e\";\n}\n\n.pi-angle-double-up:before {\n content: \"\\e92f\";\n}\n\n.pi-angle-down:before {\n content: \"\\e930\";\n}\n\n.pi-angle-left:before {\n content: \"\\e931\";\n}\n\n.pi-angle-right:before {\n content: \"\\e932\";\n}\n\n.pi-angle-up:before {\n content: \"\\e933\";\n}\n\n.pi-upload:before {\n content: \"\\e934\";\n}\n\n.pi-download:before {\n content: \"\\e956\";\n}\n\n.pi-ban:before {\n content: \"\\e935\";\n}\n\n.pi-star-fill:before {\n content: \"\\e936\";\n}\n\n.pi-star:before {\n content: \"\\e937\";\n}\n\n.pi-chevron-left:before {\n content: \"\\e900\";\n}\n\n.pi-chevron-right:before {\n content: \"\\e901\";\n}\n\n.pi-chevron-down:before {\n content: \"\\e902\";\n}\n\n.pi-chevron-up:before {\n content: \"\\e903\";\n}\n\n.pi-caret-left:before {\n content: \"\\e904\";\n}\n\n.pi-caret-right:before {\n content: \"\\e905\";\n}\n\n.pi-caret-down:before {\n content: \"\\e906\";\n}\n\n.pi-caret-up:before {\n content: \"\\e907\";\n}\n\n.pi-search:before {\n content: \"\\e908\";\n}\n\n.pi-check:before {\n content: \"\\e909\";\n}\n\n.pi-check-circle:before {\n content: \"\\e90a\";\n}\n\n.pi-times:before {\n content: \"\\e90b\";\n}\n\n.pi-times-circle:before {\n content: \"\\e90c\";\n}\n\n.pi-plus:before {\n content: \"\\e90d\";\n}\n\n.pi-plus-circle:before {\n content: \"\\e90e\";\n}\n\n.pi-minus:before {\n content: \"\\e90f\";\n}\n\n.pi-minus-circle:before {\n content: \"\\e910\";\n}\n\n.pi-circle-on:before {\n content: \"\\e911\";\n}\n\n.pi-circle-off:before {\n content: \"\\e912\";\n}\n\n.pi-sort-down:before {\n content: \"\\e913\";\n}\n\n.pi-sort-up:before {\n content: \"\\e914\";\n}\n\n.pi-sort:before {\n content: \"\\e915\";\n}\n\n.pi-step-backward:before {\n content: \"\\e916\";\n}\n\n.pi-step-forward:before {\n content: \"\\e917\";\n}\n\n.pi-th-large:before {\n content: \"\\e918\";\n}\n\n.pi-arrow-down:before {\n content: \"\\e919\";\n}\n\n.pi-arrow-left:before {\n content: \"\\e91a\";\n}\n\n.pi-arrow-right:before {\n content: \"\\e91b\";\n}\n\n.pi-arrow-up:before {\n content: \"\\e91c\";\n}\n\n.pi-bars:before {\n content: \"\\e91d\";\n}\n\n.pi-arrow-circle-down:before {\n content: \"\\e91e\";\n}\n\n.pi-arrow-circle-left:before {\n content: \"\\e91f\";\n}\n\n.pi-arrow-circle-right:before {\n content: \"\\e920\";\n}\n\n.pi-arrow-circle-up:before {\n content: \"\\e921\";\n}\n\n.pi-info:before {\n content: \"\\e923\";\n}\n\n.pi-info-circle:before {\n content: \"\\e924\";\n}\n\n.pi-home:before {\n content: \"\\e925\";\n}\n\n.pi-spinner:before {\n content: \"\\e926\";\n}\n";
|
|
27555
27562
|
styleInject(css_248z$1);
|
|
27556
27563
|
|
|
27564
|
+
addLocale("pt", {
|
|
27565
|
+
emptyMessage: "Nenhuma opção disponível",
|
|
27566
|
+
emptyFilterMessage: "Nenhum resultado encontrado",
|
|
27567
|
+
});
|
|
27568
|
+
locale("pt");
|
|
27557
27569
|
var TreeSelect = function (_a) {
|
|
27558
27570
|
var label = _a.label, value = _a.value, restrictionMessage = _a.restrictionMessage, onChange = _a.onChange, isError = _a.isError, disabled = _a.disabled, placeholder = _a.placeholder, required = _a.required, _b = _a.display, display = _b === void 0 ? "comma" : _b, _c = _a.filter, filter = _c === void 0 ? false : _c, options = _a.options, _d = _a.selectionMode, selectionMode = _d === void 0 ? "checkbox" : _d;
|
|
27559
27571
|
var _e = useState(value !== null && value !== void 0 ? value : null), selectedItems = _e[0], setSelectedItems = _e[1];
|