-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathcomponent.py
More file actions
258 lines (205 loc) · 8.36 KB
/
Copy pathcomponent.py
File metadata and controls
258 lines (205 loc) · 8.36 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
# This file was auto-generated by Fern from our API Definition.
from __future__ import annotations
import typing
import pydantic
import typing_extensions
from ..core.pydantic_utilities import IS_PYDANTIC_V2
from ..core.unchecked_base_model import UncheckedBaseModel, UnionMetadata
from .action_component import ActionComponent
from .button_component_style import ButtonComponentStyle
from .checkbox_component_save_state import CheckboxComponentSaveState
from .checkbox_option import CheckboxOption
from .data_table_item import DataTableItem
from .dropdown_component_save_state import DropdownComponentSaveState
from .dropdown_option import DropdownOption
from .image_component_align import ImageComponentAlign
from .input_component_save_state import InputComponentSaveState
from .list_component_items_item import ListComponentItemsItem
from .single_select_component_save_state import SingleSelectComponentSaveState
from .single_select_option import SingleSelectOption
from .spacer_component_size import SpacerComponentSize
from .text_component_align import TextComponentAlign
from .text_component_style import TextComponentStyle
from .url_action_component import UrlActionComponent
class Component_Button(UncheckedBaseModel):
type: typing.Literal["button"] = "button"
id: str
label: str
action: ActionComponent
style: typing.Optional[ButtonComponentStyle] = None
disabled: typing.Optional[bool] = None
if IS_PYDANTIC_V2:
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
else:
class Config:
frozen = True
smart_union = True
extra = pydantic.Extra.allow
class Component_Checkbox(UncheckedBaseModel):
type: typing.Literal["checkbox"] = "checkbox"
id: str
option: typing.List[CheckboxOption]
label: str
value: typing.Optional[typing.List[str]] = None
save_state: typing.Optional[CheckboxComponentSaveState] = None
disabled: typing.Optional[bool] = None
if IS_PYDANTIC_V2:
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
else:
class Config:
frozen = True
smart_union = True
extra = pydantic.Extra.allow
class Component_Dropdown(UncheckedBaseModel):
type: typing.Literal["dropdown"] = "dropdown"
id: str
options: typing.List[DropdownOption]
label: typing.Optional[str] = None
value: typing.Optional[str] = None
save_state: typing.Optional[DropdownComponentSaveState] = None
disabled: typing.Optional[bool] = None
if IS_PYDANTIC_V2:
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
else:
class Config:
frozen = True
smart_union = True
extra = pydantic.Extra.allow
class Component_Input(UncheckedBaseModel):
type: typing.Literal["input"] = "input"
id: str
label: typing.Optional[str] = None
placeholder: typing.Optional[str] = None
value: typing.Optional[str] = None
action: typing.Optional[ActionComponent] = None
save_state: typing.Optional[InputComponentSaveState] = None
disabled: typing.Optional[bool] = None
if IS_PYDANTIC_V2:
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
else:
class Config:
frozen = True
smart_union = True
extra = pydantic.Extra.allow
class Component_List(UncheckedBaseModel):
type: typing.Literal["list"] = "list"
items: typing.List[ListComponentItemsItem]
disabled: typing.Optional[bool] = None
if IS_PYDANTIC_V2:
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
else:
class Config:
frozen = True
smart_union = True
extra = pydantic.Extra.allow
class Component_SingleSelect(UncheckedBaseModel):
type: typing.Literal["single-select"] = "single-select"
id: str
options: typing.List[SingleSelectOption]
label: typing.Optional[str] = None
value: typing.Optional[str] = None
save_state: typing.Optional[SingleSelectComponentSaveState] = None
disabled: typing.Optional[bool] = None
action: typing.Optional[ActionComponent] = None
if IS_PYDANTIC_V2:
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
else:
class Config:
frozen = True
smart_union = True
extra = pydantic.Extra.allow
class Component_Textarea(UncheckedBaseModel):
type: typing.Literal["textarea"] = "textarea"
id: str
label: typing.Optional[str] = None
placeholder: typing.Optional[str] = None
value: typing.Optional[str] = None
error: typing.Optional[bool] = None
disabled: typing.Optional[bool] = None
if IS_PYDANTIC_V2:
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
else:
class Config:
frozen = True
smart_union = True
extra = pydantic.Extra.allow
class Component_DataTable(UncheckedBaseModel):
type: typing.Literal["data-table"] = "data-table"
items: typing.List[DataTableItem]
if IS_PYDANTIC_V2:
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
else:
class Config:
frozen = True
smart_union = True
extra = pydantic.Extra.allow
class Component_Divider(UncheckedBaseModel):
type: typing.Literal["divider"] = "divider"
id: typing.Optional[str] = None
bottom_margin: typing.Optional[typing.Literal["none"]] = None
if IS_PYDANTIC_V2:
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
else:
class Config:
frozen = True
smart_union = True
extra = pydantic.Extra.allow
class Component_Image(UncheckedBaseModel):
type: typing.Literal["image"] = "image"
id: typing.Optional[str] = None
url: str
align: typing.Optional[ImageComponentAlign] = None
width: int
height: int
rounded: typing.Optional[bool] = None
bottom_margin: typing.Optional[typing.Literal["none"]] = None
action: typing.Optional[UrlActionComponent] = None
if IS_PYDANTIC_V2:
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
else:
class Config:
frozen = True
smart_union = True
extra = pydantic.Extra.allow
class Component_Spacer(UncheckedBaseModel):
type: typing.Literal["spacer"] = "spacer"
id: typing.Optional[str] = None
size: typing.Optional[SpacerComponentSize] = None
if IS_PYDANTIC_V2:
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
else:
class Config:
frozen = True
smart_union = True
extra = pydantic.Extra.allow
class Component_Text(UncheckedBaseModel):
type: typing.Literal["text"] = "text"
id: typing.Optional[str] = None
text: str
align: typing.Optional[TextComponentAlign] = None
style: typing.Optional[TextComponentStyle] = None
bottom_margin: typing.Optional[typing.Literal["none"]] = None
if IS_PYDANTIC_V2:
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
else:
class Config:
frozen = True
smart_union = True
extra = pydantic.Extra.allow
Component = typing_extensions.Annotated[
typing.Union[
Component_Button,
Component_Checkbox,
Component_Dropdown,
Component_Input,
Component_List,
Component_SingleSelect,
Component_Textarea,
Component_DataTable,
Component_Divider,
Component_Image,
Component_Spacer,
Component_Text,
],
UnionMetadata(discriminant="type"),
]