| 104 | _type = "Frameset" |
| 105 | |
| 106 | def __init__( |
| 107 | self, |
| 108 | children: typing.Optional[ComponentType] = None, |
| 109 | id: typing.Optional[typing.Union[str, dict]] = None, |
| 110 | n_clicks: typing.Optional[NumberType] = None, |
| 111 | n_clicks_timestamp: typing.Optional[NumberType] = None, |
| 112 | disable_n_clicks: typing.Optional[bool] = None, |
| 113 | key: typing.Optional[str] = None, |
| 114 | accessKey: typing.Optional[str] = None, |
| 115 | className: typing.Optional[str] = None, |
| 116 | contentEditable: typing.Optional[str] = None, |
| 117 | dir: typing.Optional[str] = None, |
| 118 | draggable: typing.Optional[str] = None, |
| 119 | hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None, |
| 120 | lang: typing.Optional[str] = None, |
| 121 | role: typing.Optional[str] = None, |
| 122 | spellCheck: typing.Optional[str] = None, |
| 123 | style: typing.Optional[typing.Any] = None, |
| 124 | tabIndex: typing.Optional[typing.Union[str, NumberType]] = None, |
| 125 | title: typing.Optional[str] = None, |
| 126 | **kwargs |
| 127 | ): |
| 128 | self._prop_names = [ |
| 129 | "children", |
| 130 | "id", |
| 131 | "accessKey", |
| 132 | "aria-*", |
| 133 | "className", |
| 134 | "contentEditable", |
| 135 | "data-*", |
| 136 | "dir", |
| 137 | "disable_n_clicks", |
| 138 | "draggable", |
| 139 | "hidden", |
| 140 | "key", |
| 141 | "lang", |
| 142 | "n_clicks", |
| 143 | "n_clicks_timestamp", |
| 144 | "role", |
| 145 | "spellCheck", |
| 146 | "style", |
| 147 | "tabIndex", |
| 148 | "title", |
| 149 | ] |
| 150 | self._valid_wildcard_attributes = ["data-", "aria-"] |
| 151 | self.available_properties = [ |
| 152 | "children", |
| 153 | "id", |
| 154 | "accessKey", |
| 155 | "aria-*", |
| 156 | "className", |
| 157 | "contentEditable", |
| 158 | "data-*", |
| 159 | "dir", |
| 160 | "disable_n_clicks", |
| 161 | "draggable", |
| 162 | "hidden", |
| 163 | "key", |