sy-ui-lib 1.0.26 → 1.0.27

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.
@@ -15,7 +15,7 @@ export declare const SportsWithSubHeader: Story;
15
15
  export declare const MatchOdds: Story;
16
16
  export declare const EventTitle: Story;
17
17
  export declare const EventTitleWithInfoIcon: Story;
18
- /** Other Market Header with Race Layered Row */
19
- export declare const OtherMarketRaceLayerd: Story;
20
- /** Other Market Header with Race Details Layered Row */
21
- export declare const OtherMarketRaceDetailsLayerd: Story;
18
+ /** Racing Header with Race Layered Row */
19
+ export declare const RacingRaceLayerd: Story;
20
+ /** Racing Header with Race Details Layered Row */
21
+ export declare const RacingRaceDetailsLayerd: Story;
@@ -3,7 +3,7 @@ export interface MultiMarketButtonProps {
3
3
  eventId: string;
4
4
  onClick: (eventId: string) => void;
5
5
  }
6
- export type HeaderVariant = "OtherMarket" | "MatchOdds" | "FancyMarket" | "MultiMarket" | "Sports" | "EventTitle";
6
+ export type HeaderVariant = "OtherMarket" | "MatchOdds" | "FancyMarket" | "MultiMarket" | "Sports" | "EventTitle" | "Racing";
7
7
  export interface CommonMarketHeaderProps {
8
8
  /** Controls header layout & behavior */
9
9
  variant: HeaderVariant;
@@ -38,3 +38,6 @@ export interface CommonMarketHeaderProps {
38
38
  /** Info icon click handler (shows icon when provided) */
39
39
  onInfoClick?: () => void;
40
40
  }
41
+ export type CommonLayBackProps = {
42
+ level?: number;
43
+ };