-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconstants.go
More file actions
46 lines (40 loc) · 1.55 KB
/
constants.go
File metadata and controls
46 lines (40 loc) · 1.55 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
package goaster
/* ------------------------------------------------------------------------- */
/* LEVELS */
/* ------------------------------------------------------------------------- */
// Predefined toast levels
const (
DefaultLevel Level = "default"
SuccessLevel Level = "success"
ErrorLevel Level = "error"
WarningLevel Level = "warning"
InfoLevel Level = "info"
)
/* ------------------------------------------------------------------------- */
/* POSITIONS */
/* ------------------------------------------------------------------------- */
// Predefined toast positions
const (
TopRight = Position("top-right")
TopLeft = Position("top-left")
TopCenter = Position("top-center")
BottomRight = Position("bottom-right")
BottomLeft = Position("bottom-left")
BottomCenter = Position("bottom-center")
)
/* ------------------------------------------------------------------------- */
/* VARIANTS */
/* ------------------------------------------------------------------------- */
// Predefined style variants
const (
Accent = Variant("accent")
AccentLight = Variant("accent-light")
AccentDark = Variant("accent-dark")
Filled = Variant("filled")
Outlined = Variant("outlined")
Soft = Variant("soft")
Minimal = Variant("minimal")
Brutalist = Variant("brutalist")
Retro = Variant("retro")
Neon = Variant("neon")
)