pge-front-common 14.2.5-beta.11 → 14.2.5-beta.12
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/Upload/index.d.ts +117 -117
- package/lib/index.d.ts +120 -119
- package/lib/index.esm.js +1038 -975
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +1038 -975
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -12,127 +12,127 @@ export declare const FileUpload: React.ForwardRefExoticComponent<{
|
|
|
12
12
|
maxFileSize?: `${number}KB` | `${number}MB` | `${number}GB`;
|
|
13
13
|
helperText?: React.ReactNode;
|
|
14
14
|
} & {
|
|
15
|
-
disabled?: boolean | undefined;
|
|
16
|
-
form?: string | undefined;
|
|
17
|
-
formAction?: string | ((formData: FormData) => void | Promise<void>) |
|
|
18
|
-
formEncType?: string | undefined;
|
|
19
|
-
formMethod?: string | undefined;
|
|
20
|
-
formNoValidate?: boolean | undefined;
|
|
21
|
-
formTarget?: string | undefined;
|
|
22
|
-
name?: string | undefined;
|
|
23
|
-
type?: "submit" | "reset" | "button" | undefined;
|
|
24
|
-
value?: string | readonly string[] |
|
|
25
|
-
defaultChecked?: boolean | undefined;
|
|
15
|
+
disabled?: boolean | undefined | undefined;
|
|
16
|
+
form?: string | undefined | undefined;
|
|
17
|
+
formAction?: string | ((formData: FormData) => void | Promise<void>) | undefined;
|
|
18
|
+
formEncType?: string | undefined | undefined;
|
|
19
|
+
formMethod?: string | undefined | undefined;
|
|
20
|
+
formNoValidate?: boolean | undefined | undefined;
|
|
21
|
+
formTarget?: string | undefined | undefined;
|
|
22
|
+
name?: string | undefined | undefined;
|
|
23
|
+
type?: "submit" | "reset" | "button" | undefined | undefined;
|
|
24
|
+
value?: string | number | readonly string[] | undefined;
|
|
25
|
+
defaultChecked?: boolean | undefined | undefined;
|
|
26
26
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
27
|
-
suppressContentEditableWarning?: boolean | undefined;
|
|
28
|
-
suppressHydrationWarning?: boolean | undefined;
|
|
29
|
-
accessKey?: string | undefined;
|
|
30
|
-
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
|
|
31
|
-
autoFocus?: boolean | undefined;
|
|
32
|
-
className?: string | undefined;
|
|
27
|
+
suppressContentEditableWarning?: boolean | undefined | undefined;
|
|
28
|
+
suppressHydrationWarning?: boolean | undefined | undefined;
|
|
29
|
+
accessKey?: string | undefined | undefined;
|
|
30
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {}) | undefined;
|
|
31
|
+
autoFocus?: boolean | undefined | undefined;
|
|
32
|
+
className?: string | undefined | undefined;
|
|
33
33
|
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
34
|
-
contextMenu?: string | undefined;
|
|
35
|
-
dir?: string | undefined;
|
|
34
|
+
contextMenu?: string | undefined | undefined;
|
|
35
|
+
dir?: string | undefined | undefined;
|
|
36
36
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
37
|
-
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
38
|
-
hidden?: boolean | undefined;
|
|
39
|
-
id?: string | undefined;
|
|
40
|
-
lang?: string | undefined;
|
|
41
|
-
nonce?: string | undefined;
|
|
42
|
-
slot?: string | undefined;
|
|
37
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
38
|
+
hidden?: boolean | undefined | undefined;
|
|
39
|
+
id?: string | undefined | undefined;
|
|
40
|
+
lang?: string | undefined | undefined;
|
|
41
|
+
nonce?: string | undefined | undefined;
|
|
42
|
+
slot?: string | undefined | undefined;
|
|
43
43
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
44
44
|
style?: React.CSSProperties | undefined;
|
|
45
|
-
tabIndex?: number | undefined;
|
|
46
|
-
translate?: "yes" | "no" | undefined;
|
|
47
|
-
radioGroup?: string | undefined;
|
|
45
|
+
tabIndex?: number | undefined | undefined;
|
|
46
|
+
translate?: "yes" | "no" | undefined | undefined;
|
|
47
|
+
radioGroup?: string | undefined | undefined;
|
|
48
48
|
role?: React.AriaRole | undefined;
|
|
49
|
-
about?: string | undefined;
|
|
50
|
-
content?: string | undefined;
|
|
51
|
-
datatype?: string | undefined;
|
|
49
|
+
about?: string | undefined | undefined;
|
|
50
|
+
content?: string | undefined | undefined;
|
|
51
|
+
datatype?: string | undefined | undefined;
|
|
52
52
|
inlist?: any;
|
|
53
|
-
prefix?: string | undefined;
|
|
54
|
-
property?: string | undefined;
|
|
55
|
-
rel?: string | undefined;
|
|
56
|
-
resource?: string | undefined;
|
|
57
|
-
rev?: string | undefined;
|
|
58
|
-
typeof?: string | undefined;
|
|
59
|
-
vocab?: string | undefined;
|
|
60
|
-
autoCorrect?: string | undefined;
|
|
61
|
-
autoSave?: string | undefined;
|
|
62
|
-
color?: string | undefined;
|
|
63
|
-
itemProp?: string | undefined;
|
|
64
|
-
itemScope?: boolean | undefined;
|
|
65
|
-
itemType?: string | undefined;
|
|
66
|
-
itemID?: string | undefined;
|
|
67
|
-
itemRef?: string | undefined;
|
|
68
|
-
results?: number | undefined;
|
|
69
|
-
security?: string | undefined;
|
|
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;
|
|
75
|
-
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
76
|
-
is?: string | undefined;
|
|
77
|
-
exportparts?: string | undefined;
|
|
78
|
-
part?: string | undefined;
|
|
79
|
-
"aria-activedescendant"?: string | undefined;
|
|
53
|
+
prefix?: string | undefined | undefined;
|
|
54
|
+
property?: string | undefined | undefined;
|
|
55
|
+
rel?: string | undefined | undefined;
|
|
56
|
+
resource?: string | undefined | undefined;
|
|
57
|
+
rev?: string | undefined | undefined;
|
|
58
|
+
typeof?: string | undefined | undefined;
|
|
59
|
+
vocab?: string | undefined | undefined;
|
|
60
|
+
autoCorrect?: string | undefined | undefined;
|
|
61
|
+
autoSave?: string | undefined | undefined;
|
|
62
|
+
color?: string | undefined | undefined;
|
|
63
|
+
itemProp?: string | undefined | undefined;
|
|
64
|
+
itemScope?: boolean | undefined | undefined;
|
|
65
|
+
itemType?: string | undefined | undefined;
|
|
66
|
+
itemID?: string | undefined | undefined;
|
|
67
|
+
itemRef?: string | undefined | undefined;
|
|
68
|
+
results?: number | undefined | undefined;
|
|
69
|
+
security?: string | undefined | undefined;
|
|
70
|
+
unselectable?: "on" | "off" | undefined | undefined;
|
|
71
|
+
popover?: "" | "auto" | "manual" | "hint" | undefined | undefined;
|
|
72
|
+
popoverTargetAction?: "toggle" | "show" | "hide" | undefined | undefined;
|
|
73
|
+
popoverTarget?: string | undefined | undefined;
|
|
74
|
+
inert?: boolean | undefined | undefined;
|
|
75
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined | undefined;
|
|
76
|
+
is?: string | undefined | undefined;
|
|
77
|
+
exportparts?: string | undefined | undefined;
|
|
78
|
+
part?: string | undefined | undefined;
|
|
79
|
+
"aria-activedescendant"?: string | undefined | undefined;
|
|
80
80
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
81
|
-
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
82
|
-
"aria-braillelabel"?: string | undefined;
|
|
83
|
-
"aria-brailleroledescription"?: string | undefined;
|
|
81
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
82
|
+
"aria-braillelabel"?: string | undefined | undefined;
|
|
83
|
+
"aria-brailleroledescription"?: string | undefined | undefined;
|
|
84
84
|
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
85
|
-
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
86
|
-
"aria-colcount"?: number | undefined;
|
|
87
|
-
"aria-colindex"?: number | undefined;
|
|
88
|
-
"aria-colindextext"?: string | undefined;
|
|
89
|
-
"aria-colspan"?: number | undefined;
|
|
90
|
-
"aria-controls"?: string | undefined;
|
|
91
|
-
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
92
|
-
"aria-describedby"?: string | undefined;
|
|
93
|
-
"aria-description"?: string | undefined;
|
|
94
|
-
"aria-details"?: string | undefined;
|
|
85
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
86
|
+
"aria-colcount"?: number | undefined | undefined;
|
|
87
|
+
"aria-colindex"?: number | undefined | undefined;
|
|
88
|
+
"aria-colindextext"?: string | undefined | undefined;
|
|
89
|
+
"aria-colspan"?: number | undefined | undefined;
|
|
90
|
+
"aria-controls"?: string | undefined | undefined;
|
|
91
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined | undefined;
|
|
92
|
+
"aria-describedby"?: string | undefined | undefined;
|
|
93
|
+
"aria-description"?: string | undefined | undefined;
|
|
94
|
+
"aria-details"?: string | undefined | undefined;
|
|
95
95
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
96
|
-
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
|
|
97
|
-
"aria-errormessage"?: string | undefined;
|
|
96
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
97
|
+
"aria-errormessage"?: string | undefined | undefined;
|
|
98
98
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
99
|
-
"aria-flowto"?: string | undefined;
|
|
99
|
+
"aria-flowto"?: string | undefined | undefined;
|
|
100
100
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
101
|
-
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
|
|
101
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined | undefined;
|
|
102
102
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
103
|
-
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
104
|
-
"aria-keyshortcuts"?: string | undefined;
|
|
105
|
-
"aria-label"?: string | undefined;
|
|
106
|
-
"aria-labelledby"?: string | undefined;
|
|
107
|
-
"aria-level"?: number | undefined;
|
|
108
|
-
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
103
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined | undefined;
|
|
104
|
+
"aria-keyshortcuts"?: string | undefined | undefined;
|
|
105
|
+
"aria-label"?: string | undefined | undefined;
|
|
106
|
+
"aria-labelledby"?: string | undefined | undefined;
|
|
107
|
+
"aria-level"?: number | undefined | undefined;
|
|
108
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
109
109
|
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
110
110
|
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
111
111
|
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
112
|
-
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
113
|
-
"aria-owns"?: string | undefined;
|
|
114
|
-
"aria-placeholder"?: string | undefined;
|
|
115
|
-
"aria-posinset"?: number | undefined;
|
|
116
|
-
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
112
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined | undefined;
|
|
113
|
+
"aria-owns"?: string | undefined | undefined;
|
|
114
|
+
"aria-placeholder"?: string | undefined | undefined;
|
|
115
|
+
"aria-posinset"?: number | undefined | undefined;
|
|
116
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
117
117
|
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
118
|
-
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
118
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
119
119
|
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
120
|
-
"aria-roledescription"?: string | undefined;
|
|
121
|
-
"aria-rowcount"?: number | undefined;
|
|
122
|
-
"aria-rowindex"?: number | undefined;
|
|
123
|
-
"aria-rowindextext"?: string | undefined;
|
|
124
|
-
"aria-rowspan"?: number | undefined;
|
|
120
|
+
"aria-roledescription"?: string | undefined | undefined;
|
|
121
|
+
"aria-rowcount"?: number | undefined | undefined;
|
|
122
|
+
"aria-rowindex"?: number | undefined | undefined;
|
|
123
|
+
"aria-rowindextext"?: string | undefined | undefined;
|
|
124
|
+
"aria-rowspan"?: number | undefined | undefined;
|
|
125
125
|
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
126
|
-
"aria-setsize"?: number | undefined;
|
|
127
|
-
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
128
|
-
"aria-valuemax"?: number | undefined;
|
|
129
|
-
"aria-valuemin"?: number | undefined;
|
|
130
|
-
"aria-valuenow"?: number | undefined;
|
|
131
|
-
"aria-valuetext"?: string | undefined;
|
|
132
|
-
children?: React.ReactNode
|
|
126
|
+
"aria-setsize"?: number | undefined | undefined;
|
|
127
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
128
|
+
"aria-valuemax"?: number | undefined | undefined;
|
|
129
|
+
"aria-valuemin"?: number | undefined | undefined;
|
|
130
|
+
"aria-valuenow"?: number | undefined | undefined;
|
|
131
|
+
"aria-valuetext"?: string | undefined | undefined;
|
|
132
|
+
children?: React.ReactNode;
|
|
133
133
|
dangerouslySetInnerHTML?: {
|
|
134
134
|
__html: string | TrustedHTML;
|
|
135
|
-
} | undefined;
|
|
135
|
+
} | undefined | undefined;
|
|
136
136
|
onCopy?: React.ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
137
137
|
onCopyCapture?: React.ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
138
138
|
onCut?: React.ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
@@ -301,21 +301,21 @@ export declare const FileUpload: React.ForwardRefExoticComponent<{
|
|
|
301
301
|
onTransitionRunCapture?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
302
302
|
onTransitionStart?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
303
303
|
onTransitionStartCapture?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
304
|
-
'data-pr-tooltip'?: string | undefined;
|
|
305
|
-
'data-pr-disabled'?: boolean | undefined;
|
|
306
|
-
'data-pr-classname'?: string | undefined;
|
|
307
|
-
'data-pr-position'?: "top" | "bottom" | "left" | "right" | "mouse" | undefined;
|
|
308
|
-
'data-pr-my'?: string | undefined;
|
|
309
|
-
'data-pr-at'?: string | undefined;
|
|
310
|
-
'data-pr-event'?: "hover" | "focus" | "both" | undefined;
|
|
311
|
-
'data-pr-showevent'?: string | undefined;
|
|
312
|
-
'data-pr-hideevent'?: string | undefined;
|
|
313
|
-
'data-pr-mousetrack'?: boolean | undefined;
|
|
314
|
-
'data-pr-mousetracktop'?: number | undefined;
|
|
315
|
-
'data-pr-mousetrackleft'?: number | undefined;
|
|
316
|
-
'data-pr-showdelay'?: number | undefined;
|
|
317
|
-
'data-pr-updatedelay'?: number | undefined;
|
|
318
|
-
'data-pr-hidedelay'?: number | undefined;
|
|
319
|
-
'data-pr-autohide'?: boolean | undefined;
|
|
320
|
-
'data-pr-showondisabled'?: boolean | undefined;
|
|
304
|
+
'data-pr-tooltip'?: string | undefined | undefined;
|
|
305
|
+
'data-pr-disabled'?: boolean | undefined | undefined;
|
|
306
|
+
'data-pr-classname'?: string | undefined | undefined;
|
|
307
|
+
'data-pr-position'?: "top" | "bottom" | "left" | "right" | "mouse" | undefined | undefined;
|
|
308
|
+
'data-pr-my'?: string | undefined | undefined;
|
|
309
|
+
'data-pr-at'?: string | undefined | undefined;
|
|
310
|
+
'data-pr-event'?: "hover" | "focus" | "both" | undefined | undefined;
|
|
311
|
+
'data-pr-showevent'?: string | undefined | undefined;
|
|
312
|
+
'data-pr-hideevent'?: string | undefined | undefined;
|
|
313
|
+
'data-pr-mousetrack'?: boolean | undefined | undefined;
|
|
314
|
+
'data-pr-mousetracktop'?: number | undefined | undefined;
|
|
315
|
+
'data-pr-mousetrackleft'?: number | undefined | undefined;
|
|
316
|
+
'data-pr-showdelay'?: number | undefined | undefined;
|
|
317
|
+
'data-pr-updatedelay'?: number | undefined | undefined;
|
|
318
|
+
'data-pr-hidedelay'?: number | undefined | undefined;
|
|
319
|
+
'data-pr-autohide'?: boolean | undefined | undefined;
|
|
320
|
+
'data-pr-showondisabled'?: boolean | undefined | undefined;
|
|
321
321
|
} & React.RefAttributes<FileUploadHandle>>;
|
package/lib/index.d.ts
CHANGED
|
@@ -72,7 +72,7 @@ declare const PgeButton: React__default.ForwardRefExoticComponent<{
|
|
|
72
72
|
title: string;
|
|
73
73
|
leftIcon?: React__default.ReactNode;
|
|
74
74
|
rightIcon?: React__default.ReactNode;
|
|
75
|
-
widthType?: "
|
|
75
|
+
widthType?: "full-width" | "fit-content";
|
|
76
76
|
} & React__default.ButtonHTMLAttributes<HTMLButtonElement> & React__default.RefAttributes<HTMLButtonElement>>;
|
|
77
77
|
|
|
78
78
|
type FileUploadHandle = {
|
|
@@ -91,127 +91,117 @@ declare const FileUpload: React__default.ForwardRefExoticComponent<{
|
|
|
91
91
|
maxFileSize?: `${number}KB` | `${number}MB` | `${number}GB`;
|
|
92
92
|
helperText?: React__default.ReactNode;
|
|
93
93
|
} & {
|
|
94
|
-
|
|
95
|
-
form?: string | 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
|
-
formEncType?: string | undefined;
|
|
98
|
-
formMethod?: string | undefined;
|
|
99
|
-
formNoValidate?: boolean | undefined;
|
|
100
|
-
formTarget?: string | undefined;
|
|
101
|
-
name?: string | undefined;
|
|
102
|
-
type?: "submit" | "reset" | "button" | undefined;
|
|
103
|
-
value?: string | readonly string[] | number | undefined;
|
|
104
|
-
defaultChecked?: boolean | undefined;
|
|
94
|
+
defaultChecked?: boolean | undefined | undefined;
|
|
105
95
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
106
|
-
suppressContentEditableWarning?: boolean | undefined;
|
|
107
|
-
suppressHydrationWarning?: boolean | undefined;
|
|
108
|
-
accessKey?: string | undefined;
|
|
109
|
-
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
|
|
110
|
-
autoFocus?: boolean | undefined;
|
|
111
|
-
className?: string | undefined;
|
|
96
|
+
suppressContentEditableWarning?: boolean | undefined | undefined;
|
|
97
|
+
suppressHydrationWarning?: boolean | undefined | undefined;
|
|
98
|
+
accessKey?: string | undefined | undefined;
|
|
99
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {}) | undefined;
|
|
100
|
+
autoFocus?: boolean | undefined | undefined;
|
|
101
|
+
className?: string | undefined | undefined;
|
|
112
102
|
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
113
|
-
contextMenu?: string | undefined;
|
|
114
|
-
dir?: string | undefined;
|
|
103
|
+
contextMenu?: string | undefined | undefined;
|
|
104
|
+
dir?: string | undefined | undefined;
|
|
115
105
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
116
|
-
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
117
|
-
hidden?: boolean | undefined;
|
|
118
|
-
id?: string | undefined;
|
|
119
|
-
lang?: string | undefined;
|
|
120
|
-
nonce?: string | undefined;
|
|
121
|
-
slot?: string | undefined;
|
|
106
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
107
|
+
hidden?: boolean | undefined | undefined;
|
|
108
|
+
id?: string | undefined | undefined;
|
|
109
|
+
lang?: string | undefined | undefined;
|
|
110
|
+
nonce?: string | undefined | undefined;
|
|
111
|
+
slot?: string | undefined | undefined;
|
|
122
112
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
123
113
|
style?: React__default.CSSProperties | undefined;
|
|
124
|
-
tabIndex?: number | undefined;
|
|
125
|
-
translate?: "yes" | "no" | undefined;
|
|
126
|
-
radioGroup?: string | undefined;
|
|
114
|
+
tabIndex?: number | undefined | undefined;
|
|
115
|
+
translate?: "yes" | "no" | undefined | undefined;
|
|
116
|
+
radioGroup?: string | undefined | undefined;
|
|
127
117
|
role?: React__default.AriaRole | undefined;
|
|
128
|
-
about?: string | undefined;
|
|
129
|
-
content?: string | undefined;
|
|
130
|
-
datatype?: string | undefined;
|
|
118
|
+
about?: string | undefined | undefined;
|
|
119
|
+
content?: string | undefined | undefined;
|
|
120
|
+
datatype?: string | undefined | undefined;
|
|
131
121
|
inlist?: any;
|
|
132
|
-
prefix?: string | undefined;
|
|
133
|
-
property?: string | undefined;
|
|
134
|
-
rel?: string | undefined;
|
|
135
|
-
resource?: string | undefined;
|
|
136
|
-
rev?: string | undefined;
|
|
137
|
-
typeof?: string | undefined;
|
|
138
|
-
vocab?: string | undefined;
|
|
139
|
-
autoCorrect?: string | undefined;
|
|
140
|
-
autoSave?: string | undefined;
|
|
141
|
-
color?: string | undefined;
|
|
142
|
-
itemProp?: string | undefined;
|
|
143
|
-
itemScope?: boolean | undefined;
|
|
144
|
-
itemType?: string | undefined;
|
|
145
|
-
itemID?: string | undefined;
|
|
146
|
-
itemRef?: string | undefined;
|
|
147
|
-
results?: number | undefined;
|
|
148
|
-
security?: string | undefined;
|
|
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;
|
|
154
|
-
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
155
|
-
is?: string | undefined;
|
|
156
|
-
exportparts?: string | undefined;
|
|
157
|
-
part?: string | undefined;
|
|
158
|
-
"aria-activedescendant"?: string | undefined;
|
|
122
|
+
prefix?: string | undefined | undefined;
|
|
123
|
+
property?: string | undefined | undefined;
|
|
124
|
+
rel?: string | undefined | undefined;
|
|
125
|
+
resource?: string | undefined | undefined;
|
|
126
|
+
rev?: string | undefined | undefined;
|
|
127
|
+
typeof?: string | undefined | undefined;
|
|
128
|
+
vocab?: string | undefined | undefined;
|
|
129
|
+
autoCorrect?: string | undefined | undefined;
|
|
130
|
+
autoSave?: string | undefined | undefined;
|
|
131
|
+
color?: string | undefined | undefined;
|
|
132
|
+
itemProp?: string | undefined | undefined;
|
|
133
|
+
itemScope?: boolean | undefined | undefined;
|
|
134
|
+
itemType?: string | undefined | undefined;
|
|
135
|
+
itemID?: string | undefined | undefined;
|
|
136
|
+
itemRef?: string | undefined | undefined;
|
|
137
|
+
results?: number | undefined | undefined;
|
|
138
|
+
security?: string | undefined | undefined;
|
|
139
|
+
unselectable?: "on" | "off" | undefined | undefined;
|
|
140
|
+
popover?: "" | "auto" | "manual" | "hint" | undefined | undefined;
|
|
141
|
+
popoverTargetAction?: "toggle" | "show" | "hide" | undefined | undefined;
|
|
142
|
+
popoverTarget?: string | undefined | undefined;
|
|
143
|
+
inert?: boolean | undefined | undefined;
|
|
144
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined | undefined;
|
|
145
|
+
is?: string | undefined | undefined;
|
|
146
|
+
exportparts?: string | undefined | undefined;
|
|
147
|
+
part?: string | undefined | undefined;
|
|
148
|
+
"aria-activedescendant"?: string | undefined | undefined;
|
|
159
149
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
160
|
-
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
161
|
-
"aria-braillelabel"?: string | undefined;
|
|
162
|
-
"aria-brailleroledescription"?: string | undefined;
|
|
150
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
151
|
+
"aria-braillelabel"?: string | undefined | undefined;
|
|
152
|
+
"aria-brailleroledescription"?: string | undefined | undefined;
|
|
163
153
|
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
164
|
-
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
165
|
-
"aria-colcount"?: number | undefined;
|
|
166
|
-
"aria-colindex"?: number | undefined;
|
|
167
|
-
"aria-colindextext"?: string | undefined;
|
|
168
|
-
"aria-colspan"?: number | undefined;
|
|
169
|
-
"aria-controls"?: string | undefined;
|
|
170
|
-
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
171
|
-
"aria-describedby"?: string | undefined;
|
|
172
|
-
"aria-description"?: string | undefined;
|
|
173
|
-
"aria-details"?: string | undefined;
|
|
154
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
155
|
+
"aria-colcount"?: number | undefined | undefined;
|
|
156
|
+
"aria-colindex"?: number | undefined | undefined;
|
|
157
|
+
"aria-colindextext"?: string | undefined | undefined;
|
|
158
|
+
"aria-colspan"?: number | undefined | undefined;
|
|
159
|
+
"aria-controls"?: string | undefined | undefined;
|
|
160
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined | undefined;
|
|
161
|
+
"aria-describedby"?: string | undefined | undefined;
|
|
162
|
+
"aria-description"?: string | undefined | undefined;
|
|
163
|
+
"aria-details"?: string | undefined | undefined;
|
|
174
164
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
175
|
-
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
|
|
176
|
-
"aria-errormessage"?: string | undefined;
|
|
165
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
166
|
+
"aria-errormessage"?: string | undefined | undefined;
|
|
177
167
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
178
|
-
"aria-flowto"?: string | undefined;
|
|
168
|
+
"aria-flowto"?: string | undefined | undefined;
|
|
179
169
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
180
|
-
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
|
|
170
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined | undefined;
|
|
181
171
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
182
|
-
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
183
|
-
"aria-keyshortcuts"?: string | undefined;
|
|
184
|
-
"aria-label"?: string | undefined;
|
|
185
|
-
"aria-labelledby"?: string | undefined;
|
|
186
|
-
"aria-level"?: number | undefined;
|
|
187
|
-
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
172
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined | undefined;
|
|
173
|
+
"aria-keyshortcuts"?: string | undefined | undefined;
|
|
174
|
+
"aria-label"?: string | undefined | undefined;
|
|
175
|
+
"aria-labelledby"?: string | undefined | undefined;
|
|
176
|
+
"aria-level"?: number | undefined | undefined;
|
|
177
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
188
178
|
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
189
179
|
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
190
180
|
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
191
|
-
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
192
|
-
"aria-owns"?: string | undefined;
|
|
193
|
-
"aria-placeholder"?: string | undefined;
|
|
194
|
-
"aria-posinset"?: number | undefined;
|
|
195
|
-
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
181
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined | undefined;
|
|
182
|
+
"aria-owns"?: string | undefined | undefined;
|
|
183
|
+
"aria-placeholder"?: string | undefined | undefined;
|
|
184
|
+
"aria-posinset"?: number | undefined | undefined;
|
|
185
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
196
186
|
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
197
|
-
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
187
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
198
188
|
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
199
|
-
"aria-roledescription"?: string | undefined;
|
|
200
|
-
"aria-rowcount"?: number | undefined;
|
|
201
|
-
"aria-rowindex"?: number | undefined;
|
|
202
|
-
"aria-rowindextext"?: string | undefined;
|
|
203
|
-
"aria-rowspan"?: number | undefined;
|
|
189
|
+
"aria-roledescription"?: string | undefined | undefined;
|
|
190
|
+
"aria-rowcount"?: number | undefined | undefined;
|
|
191
|
+
"aria-rowindex"?: number | undefined | undefined;
|
|
192
|
+
"aria-rowindextext"?: string | undefined | undefined;
|
|
193
|
+
"aria-rowspan"?: number | undefined | undefined;
|
|
204
194
|
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
205
|
-
"aria-setsize"?: number | undefined;
|
|
206
|
-
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
207
|
-
"aria-valuemax"?: number | undefined;
|
|
208
|
-
"aria-valuemin"?: number | undefined;
|
|
209
|
-
"aria-valuenow"?: number | undefined;
|
|
210
|
-
"aria-valuetext"?: string | undefined;
|
|
211
|
-
children?: React__default.ReactNode
|
|
195
|
+
"aria-setsize"?: number | undefined | undefined;
|
|
196
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
197
|
+
"aria-valuemax"?: number | undefined | undefined;
|
|
198
|
+
"aria-valuemin"?: number | undefined | undefined;
|
|
199
|
+
"aria-valuenow"?: number | undefined | undefined;
|
|
200
|
+
"aria-valuetext"?: string | undefined | undefined;
|
|
201
|
+
children?: React__default.ReactNode;
|
|
212
202
|
dangerouslySetInnerHTML?: {
|
|
213
203
|
__html: string | TrustedHTML;
|
|
214
|
-
} | undefined;
|
|
204
|
+
} | undefined | undefined;
|
|
215
205
|
onCopy?: React__default.ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
216
206
|
onCopyCapture?: React__default.ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
217
207
|
onCut?: React__default.ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
@@ -380,23 +370,33 @@ declare const FileUpload: React__default.ForwardRefExoticComponent<{
|
|
|
380
370
|
onTransitionRunCapture?: React__default.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
381
371
|
onTransitionStart?: React__default.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
382
372
|
onTransitionStartCapture?: React__default.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
383
|
-
'data-pr-tooltip'?: string | undefined;
|
|
384
|
-
'data-pr-disabled'?: boolean | undefined;
|
|
385
|
-
'data-pr-classname'?: string | undefined;
|
|
386
|
-
'data-pr-position'?: "top" | "bottom" | "left" | "right" | "mouse" | undefined;
|
|
387
|
-
'data-pr-my'?: string | undefined;
|
|
388
|
-
'data-pr-at'?: string | undefined;
|
|
389
|
-
'data-pr-event'?: "hover" | "focus" | "both" | undefined;
|
|
390
|
-
'data-pr-showevent'?: string | undefined;
|
|
391
|
-
'data-pr-hideevent'?: string | undefined;
|
|
392
|
-
'data-pr-mousetrack'?: boolean | undefined;
|
|
393
|
-
'data-pr-mousetracktop'?: number | undefined;
|
|
394
|
-
'data-pr-mousetrackleft'?: number | undefined;
|
|
395
|
-
'data-pr-showdelay'?: number | undefined;
|
|
396
|
-
'data-pr-updatedelay'?: number | undefined;
|
|
397
|
-
'data-pr-hidedelay'?: number | undefined;
|
|
398
|
-
'data-pr-autohide'?: boolean | undefined;
|
|
399
|
-
'data-pr-showondisabled'?: boolean | undefined;
|
|
373
|
+
'data-pr-tooltip'?: string | undefined | undefined;
|
|
374
|
+
'data-pr-disabled'?: boolean | undefined | undefined;
|
|
375
|
+
'data-pr-classname'?: string | undefined | undefined;
|
|
376
|
+
'data-pr-position'?: "top" | "bottom" | "left" | "right" | "mouse" | undefined | undefined;
|
|
377
|
+
'data-pr-my'?: string | undefined | undefined;
|
|
378
|
+
'data-pr-at'?: string | undefined | undefined;
|
|
379
|
+
'data-pr-event'?: "hover" | "focus" | "both" | undefined | undefined;
|
|
380
|
+
'data-pr-showevent'?: string | undefined | undefined;
|
|
381
|
+
'data-pr-hideevent'?: string | undefined | undefined;
|
|
382
|
+
'data-pr-mousetrack'?: boolean | undefined | undefined;
|
|
383
|
+
'data-pr-mousetracktop'?: number | undefined | undefined;
|
|
384
|
+
'data-pr-mousetrackleft'?: number | undefined | undefined;
|
|
385
|
+
'data-pr-showdelay'?: number | undefined | undefined;
|
|
386
|
+
'data-pr-updatedelay'?: number | undefined | undefined;
|
|
387
|
+
'data-pr-hidedelay'?: number | undefined | undefined;
|
|
388
|
+
'data-pr-autohide'?: boolean | undefined | undefined;
|
|
389
|
+
'data-pr-showondisabled'?: boolean | undefined | undefined;
|
|
390
|
+
disabled?: boolean | undefined | undefined;
|
|
391
|
+
form?: string | undefined | undefined;
|
|
392
|
+
formAction?: string | ((formData: FormData) => void | Promise<void>) | undefined;
|
|
393
|
+
formEncType?: string | undefined | undefined;
|
|
394
|
+
formMethod?: string | undefined | undefined;
|
|
395
|
+
formNoValidate?: boolean | undefined | undefined;
|
|
396
|
+
formTarget?: string | undefined | undefined;
|
|
397
|
+
name?: string | undefined | undefined;
|
|
398
|
+
type?: "submit" | "reset" | "button" | undefined | undefined;
|
|
399
|
+
value?: string | number | readonly string[] | undefined;
|
|
400
400
|
} & React__default.RefAttributes<FileUploadHandle>>;
|
|
401
401
|
|
|
402
402
|
interface TooltipProps$1 {
|
|
@@ -1060,4 +1060,5 @@ declare const IconUpArrow: (props?: SVGProps<SVGSVGElement>) => React__default.J
|
|
|
1060
1060
|
|
|
1061
1061
|
declare function installPrimeReactStyles(): void;
|
|
1062
1062
|
|
|
1063
|
-
export { Accordion, AccordionItem,
|
|
1063
|
+
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, 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 };
|
|
1064
|
+
export type { AccordionItemProps, ButtonProps, ChipProps, Column, FieldsetProps, InformativeBoxProps, InputProps, OptionsProps$2 as OptionsProps, ProgressCircleProps, RadioButtonProps, RadioGroupBaseProps, SelectDefaultProps, SelectMultProps, TableComponentProps, TextareaBaseProps, TreeSelectOptions, TreeSelectProps };
|