|
|
@ -104,6 +104,9 @@ class TextInput(Item[V]): |
|
|
|
self._value: Optional[str] = default |
|
|
|
self._provided_custom_id = custom_id is not MISSING |
|
|
|
custom_id = os.urandom(16).hex() if custom_id is MISSING else custom_id |
|
|
|
if not isinstance(custom_id, str): |
|
|
|
raise TypeError(f'expected custom_id to be str not {custom_id.__class__!r}') |
|
|
|
|
|
|
|
self._underlying = TextInputComponent._raw_construct( |
|
|
|
type=ComponentType.text_input, |
|
|
|
label=label, |
|
|
|