2024-10-15 17:07:18 -04:00
|
|
|
package components
|
|
|
|
|
|
|
|
type ContentDropdown struct {
|
2024-12-08 08:52:35 -05:00
|
|
|
ID string
|
2024-10-15 17:07:18 -04:00
|
|
|
Label string
|
|
|
|
TypeClass string // type primary, secondary, success, danger, warning, info, light, dark, link, outline-primary
|
|
|
|
IsDisabled bool
|
|
|
|
Items []ContentDropdownItem
|
|
|
|
}
|
|
|
|
|
|
|
|
type ContentDropdownItem struct {
|
|
|
|
Text string
|
|
|
|
Link string
|
2024-10-29 13:30:05 -04:00
|
|
|
ID string
|
2024-10-15 17:07:18 -04:00
|
|
|
IsDisabled bool
|
|
|
|
IsActive bool
|
|
|
|
}
|