sy-ui-lib 1.0.5 → 1.0.7
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.
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
export type SnackBarVariant = "default" | "action" | "dismiss";
|
|
3
3
|
/** Types of snackbar message types. */
|
|
4
4
|
export type SnackBarType = "info" | "success" | "error";
|
|
5
|
-
export type SnackBarPosition = "top-left" | "top-right" | "bottom-left" | "bottom-right";
|
|
5
|
+
export type SnackBarPosition = "top-left" | "top-right" | "bottom-left" | "bottom-right" | "top-center" | "bottom-center";
|
|
6
6
|
/** Props for the Action button (only for "action" variant) */
|
|
7
7
|
export interface ActionProps {
|
|
8
8
|
/** Label for the action button (only for "action" variant) */
|
|
@@ -43,6 +43,8 @@ export interface UserBetSlipTitles {
|
|
|
43
43
|
export interface UserBetSlipProps {
|
|
44
44
|
titles: UserBetSlipTitles;
|
|
45
45
|
bets: UserBetSlipDetails[];
|
|
46
|
+
/** Controls visibility of the header section. */
|
|
47
|
+
showHeader?: boolean;
|
|
46
48
|
}
|
|
47
49
|
/** Props for OddsDetails component */
|
|
48
50
|
export interface OddsDetailsProps {
|