File size: 2,116 Bytes
e841ba5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import gradio as gr
import modelscope_studio.components.antd as antd
import modelscope_studio.components.base as ms

with gr.Blocks() as demo:
    with ms.Application():
        with antd.ConfigProvider():
            with antd.Space(direction="vertical"):
                antd.Select(elem_style=dict(width=200),
                            allow_clear=True,
                            options=[
                                {
                                    "value": 'jack',
                                    "label": 'Jack'
                                },
                                {
                                    "value": 'lucy',
                                    "label": 'Lucy'
                                },
                                {
                                    "value": 'Yiminghe',
                                    "label": 'yiminghe'
                                },
                                {
                                    "value": 'disabled',
                                    "label": 'Disabled',
                                    "disabled": True
                                },
                            ])
                # custom label
                with antd.Select(
                        elem_style=dict(width=200),
                        mode="multiple",
                ):
                    with antd.Select.Option(value="jack"):
                        with ms.Slot("label"):
                            antd.Tag("Jack", color="red")
                    with antd.Select.Option(value="lucy"):
                        with ms.Slot("label"):
                            antd.Tag("Lucy", color="green")
                    with antd.Select.Option(value="Yiminghe"):
                        with ms.Slot("label"):
                            antd.Tag("Yiminghe", color="blue")
                    with antd.Select.Option(value="disabled", disabled=True):
                        with ms.Slot("label"):
                            antd.Tag("Disabled", color="gray")

if __name__ == "__main__":
    demo.queue().launch()