@morscherlab/mint-sdk 1.1.0-beta.2 → 1.1.0-beta.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -66,6 +66,18 @@ export interface FormFieldProps {
66
66
  required?: boolean
67
67
  }
68
68
 
69
+ // Section card types
70
+ export type SectionCardAccent =
71
+ | 'primary'
72
+ | 'experiment'
73
+ | 'project'
74
+ | 'success'
75
+ | 'error'
76
+ | 'warning'
77
+ | 'info'
78
+
79
+ export type SectionCardDivider = 'strong' | 'light'
80
+
69
81
  // Sidebar types
70
82
  export type SidebarBadgeTone =
71
83
  | 'primary'
@@ -16,6 +16,8 @@ export type {
16
16
  RadioOption,
17
17
  RadioOptionInput,
18
18
  FormFieldProps,
19
+ SectionCardAccent,
20
+ SectionCardDivider,
19
21
  SidebarBadgeTone,
20
22
  SidebarToolSection,
21
23
  SidebarToolSectionAction,