plataforma-fundacao-componentes 2.26.2 → 2.26.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/icons/InformationIcon.d.ts +2 -2
- package/dist/assets/icons/MiniInformationIcon.d.ts +3 -0
- package/dist/components/checkbox/Checkbox.d.ts +286 -3
- package/dist/components/input/Input.d.ts +4 -4
- package/dist/components/input/Input.stories.d.ts +1 -0
- package/dist/components/inputArea/InputArea.d.ts +2 -2
- package/dist/components/modal/Modal.d.ts +4 -4
- package/dist/components/radioButton/RadioButton.d.ts +4 -3
- package/dist/components/radioButton/RadioButton.stories.d.ts +1 -0
- package/dist/components/search/Search.d.ts +2 -2
- package/dist/components/select/Select.d.ts +2 -2
- package/dist/components/table/components/leftControlWithLabel/LeftControlWithLabel.d.ts +3 -3
- package/dist/components/tooltipElement/TooltipElement.d.ts +9 -0
- package/dist/components/tooltipElement/TooltipElement.stories.d.ts +7 -0
- package/dist/components/typography/Typography.d.ts +13 -0
- package/dist/components/typography/Typography.stories.d.ts +38 -0
- package/dist/components/videoModal/VideoModal.d.ts +6 -6
- package/dist/index.css +450 -259
- package/dist/index.d.ts +18 -15
- package/dist/index.js +685 -508
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +686 -512
- package/dist/index.modern.js.map +1 -1
- package/dist/utils/HTMLutils.d.ts +1 -1
- package/package.json +2 -1
|
@@ -13,14 +13,14 @@ declare function VideoModal({ className, id, mobileOn, modalKey, onClose, preven
|
|
|
13
13
|
className: string;
|
|
14
14
|
color?: string | undefined;
|
|
15
15
|
onClick?: ((event: React.MouseEvent<HTMLDialogElement, MouseEvent>) => void) | undefined;
|
|
16
|
-
|
|
16
|
+
onChange?: ((event: React.FormEvent<HTMLDialogElement>) => void) | undefined;
|
|
17
17
|
defaultChecked?: boolean | undefined;
|
|
18
18
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
19
19
|
suppressContentEditableWarning?: boolean | undefined;
|
|
20
20
|
suppressHydrationWarning?: boolean | undefined;
|
|
21
21
|
accessKey?: string | undefined;
|
|
22
22
|
autoFocus?: boolean | undefined;
|
|
23
|
-
contentEditable?: boolean | "
|
|
23
|
+
contentEditable?: boolean | "true" | "false" | "inherit" | undefined;
|
|
24
24
|
contextMenu?: string | undefined;
|
|
25
25
|
dir?: string | undefined;
|
|
26
26
|
draggable?: boolean | "true" | "false" | undefined;
|
|
@@ -34,7 +34,7 @@ declare function VideoModal({ className, id, mobileOn, modalKey, onClose, preven
|
|
|
34
34
|
tabIndex?: number | undefined;
|
|
35
35
|
translate?: "yes" | "no" | undefined;
|
|
36
36
|
radioGroup?: string | undefined;
|
|
37
|
-
role?: "form" | "
|
|
37
|
+
role?: "form" | "button" | "article" | "dialog" | "figure" | "img" | "link" | "main" | "menu" | "menuitem" | "option" | "search" | "table" | "alert" | "alertdialog" | "application" | "banner" | "cell" | "checkbox" | "columnheader" | "combobox" | "complementary" | "contentinfo" | "definition" | "directory" | "document" | "feed" | "grid" | "gridcell" | "group" | "heading" | "list" | "listbox" | "listitem" | "log" | "marquee" | "math" | "menubar" | "menuitemcheckbox" | "menuitemradio" | "navigation" | "none" | "note" | "presentation" | "progressbar" | "radio" | "radiogroup" | "region" | "row" | "rowgroup" | "rowheader" | "scrollbar" | "searchbox" | "separator" | "slider" | "spinbutton" | "status" | "switch" | "tab" | "tablist" | "tabpanel" | "term" | "textbox" | "timer" | "toolbar" | "tooltip" | "tree" | "treegrid" | "treeitem" | (string & {}) | undefined;
|
|
38
38
|
about?: string | undefined;
|
|
39
39
|
content?: string | undefined;
|
|
40
40
|
datatype?: string | undefined;
|
|
@@ -61,7 +61,7 @@ declare function VideoModal({ className, id, mobileOn, modalKey, onClose, preven
|
|
|
61
61
|
is?: string | undefined;
|
|
62
62
|
"aria-activedescendant"?: string | undefined;
|
|
63
63
|
"aria-atomic"?: boolean | "true" | "false" | undefined;
|
|
64
|
-
"aria-autocomplete"?: "
|
|
64
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
65
65
|
"aria-braillelabel"?: string | undefined;
|
|
66
66
|
"aria-brailleroledescription"?: string | undefined;
|
|
67
67
|
"aria-busy"?: boolean | "true" | "false" | undefined;
|
|
@@ -98,7 +98,7 @@ declare function VideoModal({ className, id, mobileOn, modalKey, onClose, preven
|
|
|
98
98
|
"aria-posinset"?: number | undefined;
|
|
99
99
|
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
100
100
|
"aria-readonly"?: boolean | "true" | "false" | undefined;
|
|
101
|
-
"aria-relevant"?: "text" | "
|
|
101
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
102
102
|
"aria-required"?: boolean | "true" | "false" | undefined;
|
|
103
103
|
"aria-roledescription"?: string | undefined;
|
|
104
104
|
"aria-rowcount"?: number | undefined;
|
|
@@ -112,6 +112,7 @@ declare function VideoModal({ className, id, mobileOn, modalKey, onClose, preven
|
|
|
112
112
|
"aria-valuemin"?: number | undefined;
|
|
113
113
|
"aria-valuenow"?: number | undefined;
|
|
114
114
|
"aria-valuetext"?: string | undefined;
|
|
115
|
+
children?: React.ReactNode;
|
|
115
116
|
dangerouslySetInnerHTML?: {
|
|
116
117
|
__html: string | TrustedHTML;
|
|
117
118
|
} | undefined;
|
|
@@ -131,7 +132,6 @@ declare function VideoModal({ className, id, mobileOn, modalKey, onClose, preven
|
|
|
131
132
|
onFocusCapture?: ((event: React.FocusEvent<HTMLDialogElement, Element>) => void) | undefined;
|
|
132
133
|
onBlur?: ((event: React.FocusEvent<HTMLDialogElement, Element>) => void) | undefined;
|
|
133
134
|
onBlurCapture?: ((event: React.FocusEvent<HTMLDialogElement, Element>) => void) | undefined;
|
|
134
|
-
onChange?: ((event: React.FormEvent<HTMLDialogElement>) => void) | undefined;
|
|
135
135
|
onChangeCapture?: ((event: React.FormEvent<HTMLDialogElement>) => void) | undefined;
|
|
136
136
|
onBeforeInput?: ((event: React.FormEvent<HTMLDialogElement>) => void) | undefined;
|
|
137
137
|
onBeforeInputCapture?: ((event: React.FormEvent<HTMLDialogElement>) => void) | undefined;
|