WIP pull #1

Merged
ErikaHarker merged 8 commits from goffee/core:main into main 2024-12-16 15:39:01 -05:00
2 changed files with 12 additions and 0 deletions
Showing only changes of commit 23753fc72f - Show all commits

View file

@ -27,6 +27,17 @@ type header struct {
val string
}
// TODO add doc
func (rs *Response) BufferPDF(name string, b bytes.Buffer) *Response {
if rs.isTerminated == false {
rs.HttpResponseWriter.Header().Add("Content-Type", "application/pdf")
rs.HttpResponseWriter.Header().Add("Content-Disposition", "attachment; filename="+name)
b.WriteTo(rs.HttpResponseWriter)
}
return rs
}
// TODO add doc
func (rs *Response) Any(body any) *Response {
if rs.isTerminated == false {

View file

@ -1,6 +1,7 @@
package components
type ContentDropdown struct {
ID string
Label string
TypeClass string // type primary, secondary, success, danger, warning, info, light, dark, link, outline-primary
IsDisabled bool