2023-01-01 10:08:40 +00:00
|
|
|
import gradio as gr
|
|
|
|
|
|
|
|
|
|
|
|
class ToolButton(gr.Button, gr.components.FormComponent):
|
|
|
|
"""Small button with single emoji as text, fits inside gradio forms"""
|
|
|
|
|
|
|
|
def __init__(self, **kwargs):
|
|
|
|
super().__init__(variant="tool", **kwargs)
|
|
|
|
|
|
|
|
def get_block_name(self):
|
|
|
|
return "button"
|
|
|
|
|
|
|
|
|
2023-01-21 05:36:07 +00:00
|
|
|
class ToolButtonTop(gr.Button, gr.components.FormComponent):
|
|
|
|
"""Small button with single emoji as text, with extra margin at top, fits inside gradio forms"""
|
|
|
|
|
|
|
|
def __init__(self, **kwargs):
|
|
|
|
super().__init__(variant="tool-top", **kwargs)
|
|
|
|
|
|
|
|
def get_block_name(self):
|
|
|
|
return "button"
|
|
|
|
|
|
|
|
|
2023-01-01 10:08:40 +00:00
|
|
|
class FormRow(gr.Row, gr.components.FormComponent):
|
|
|
|
"""Same as gr.Row but fits inside gradio forms"""
|
|
|
|
|
|
|
|
def get_block_name(self):
|
|
|
|
return "row"
|
2023-01-03 06:04:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
class FormGroup(gr.Group, gr.components.FormComponent):
|
|
|
|
"""Same as gr.Row but fits inside gradio forms"""
|
|
|
|
|
|
|
|
def get_block_name(self):
|
|
|
|
return "group"
|
2023-01-07 06:56:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
class FormHTML(gr.HTML, gr.components.FormComponent):
|
|
|
|
"""Same as gr.HTML but fits inside gradio forms"""
|
|
|
|
|
|
|
|
def get_block_name(self):
|
|
|
|
return "html"
|
|
|
|
|
2023-01-10 20:47:02 +00:00
|
|
|
|
|
|
|
class FormColorPicker(gr.ColorPicker, gr.components.FormComponent):
|
|
|
|
"""Same as gr.ColorPicker but fits inside gradio forms"""
|
|
|
|
|
|
|
|
def get_block_name(self):
|
|
|
|
return "colorpicker"
|
2023-01-22 12:38:39 +00:00
|
|
|
|
2023-01-26 20:29:27 +00:00
|
|
|
|
|
|
|
class DropdownMulti(gr.Dropdown):
|
|
|
|
"""Same as gr.Dropdown but always multiselect"""
|
|
|
|
def __init__(self, **kwargs):
|
|
|
|
super().__init__(multiselect=True, **kwargs)
|
|
|
|
|
|
|
|
def get_block_name(self):
|
|
|
|
return "dropdown"
|