Skip to content

Commit a9a7ff4

Browse files
committed
Merge branch 'feat/1.2.5/notification' into test
2 parents 9122bd9 + e606901 commit a9a7ff4

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

plugin/config.go

+10-7
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ const (
3232
ConfigTypeTimezone ConfigType = "timezone"
3333
ConfigTypeSwitch ConfigType = "switch"
3434
ConfigTypeButton ConfigType = "button"
35+
ConfigTypeLegend ConfigType = "legend"
3536
)
3637

3738
const (
@@ -63,13 +64,15 @@ type ConfigField struct {
6364
}
6465

6566
type ConfigFieldUIOptions struct {
66-
Placeholder Translator `json:"placeholder,omitempty"`
67-
Rows string `json:"rows,omitempty"`
68-
InputType InputType `json:"input_type,omitempty"`
69-
Label Translator `json:"label,omitempty"`
70-
Action *UIOptionAction `json:"action,omitempty"`
71-
Variant string `json:"variant,omitempty"`
72-
Text Translator `json:"text,omitempty"`
67+
Placeholder Translator `json:"placeholder,omitempty"`
68+
Rows string `json:"rows,omitempty"`
69+
InputType InputType `json:"input_type,omitempty"`
70+
Label Translator `json:"label,omitempty"`
71+
Action *UIOptionAction `json:"action,omitempty"`
72+
Variant string `json:"variant,omitempty"`
73+
Text Translator `json:"text,omitempty"`
74+
ClassName string `json:"class_name,omitempty"`
75+
FieldClassName string `json:"field_class_name,omitempty"`
7376
}
7477

7578
type ConfigFieldOption struct {

0 commit comments

Comments
 (0)