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.
@@ -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
- children?: React.ReactNode;
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 | "inherit" | "true" | "false" | undefined;
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" | "article" | "button" | "dialog" | "figure" | "img" | "link" | "main" | "menu" | "menuitem" | "option" | "search" | "table" | "switch" | "none" | (string & {}) | "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" | "note" | "presentation" | "progressbar" | "radio" | "radiogroup" | "region" | "row" | "rowgroup" | "rowheader" | "scrollbar" | "searchbox" | "separator" | "slider" | "spinbutton" | "status" | "tab" | "tablist" | "tabpanel" | "term" | "textbox" | "timer" | "toolbar" | "tooltip" | "tree" | "treegrid" | "treeitem" | undefined;
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"?: "none" | "list" | "inline" | "both" | undefined;
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" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
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;