| 123 | _type = "Meta" |
| 124 | |
| 125 | def __init__( |
| 126 | self, |
| 127 | children: typing.Optional[ComponentType] = None, |
| 128 | id: typing.Optional[typing.Union[str, dict]] = None, |
| 129 | n_clicks: typing.Optional[NumberType] = None, |
| 130 | n_clicks_timestamp: typing.Optional[NumberType] = None, |
| 131 | disable_n_clicks: typing.Optional[bool] = None, |
| 132 | key: typing.Optional[str] = None, |
| 133 | charSet: typing.Optional[str] = None, |
| 134 | content: typing.Optional[str] = None, |
| 135 | httpEquiv: typing.Optional[str] = None, |
| 136 | name: typing.Optional[str] = None, |
| 137 | accessKey: typing.Optional[str] = None, |
| 138 | className: typing.Optional[str] = None, |
| 139 | contentEditable: typing.Optional[str] = None, |
| 140 | dir: typing.Optional[str] = None, |
| 141 | draggable: typing.Optional[str] = None, |
| 142 | hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None, |
| 143 | lang: typing.Optional[str] = None, |
| 144 | role: typing.Optional[str] = None, |
| 145 | spellCheck: typing.Optional[str] = None, |
| 146 | style: typing.Optional[typing.Any] = None, |
| 147 | tabIndex: typing.Optional[typing.Union[str, NumberType]] = None, |
| 148 | title: typing.Optional[str] = None, |
| 149 | **kwargs |
| 150 | ): |
| 151 | self._prop_names = [ |
| 152 | "children", |
| 153 | "id", |
| 154 | "accessKey", |
| 155 | "aria-*", |
| 156 | "charSet", |
| 157 | "className", |
| 158 | "content", |
| 159 | "contentEditable", |
| 160 | "data-*", |
| 161 | "dir", |
| 162 | "disable_n_clicks", |
| 163 | "draggable", |
| 164 | "hidden", |
| 165 | "httpEquiv", |
| 166 | "key", |
| 167 | "lang", |
| 168 | "n_clicks", |
| 169 | "n_clicks_timestamp", |
| 170 | "name", |
| 171 | "role", |
| 172 | "spellCheck", |
| 173 | "style", |
| 174 | "tabIndex", |
| 175 | "title", |
| 176 | ] |
| 177 | self._valid_wildcard_attributes = ["data-", "aria-"] |
| 178 | self.available_properties = [ |
| 179 | "children", |
| 180 | "id", |
| 181 | "accessKey", |
| 182 | "aria-*", |