oraculo-ui 0.1.22 → 0.1.24

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.
package/dist/index.d.mts CHANGED
@@ -471,6 +471,24 @@ declare function OraculoSeccionEventoEnVivo({ items, title, iconUrl, onViewMore,
471
471
 
472
472
  declare function OraculoSeccionEventoSemana({ items, title, iconUrl, onViewMore, className, }: any): React.JSX.Element;
473
473
 
474
+ interface OraculoBannerItem {
475
+ id: number | string;
476
+ label: string;
477
+ icon?: string;
478
+ onclick?: () => void;
479
+ }
480
+ interface OraculoBannerBackgrounds {
481
+ desktopSrc: string;
482
+ mobileSrc: string;
483
+ fallbackSrc: string;
484
+ }
485
+ interface OraculoSeccionBannersProps {
486
+ backgrounds: OraculoBannerBackgrounds;
487
+ items: OraculoBannerItem[];
488
+ }
489
+
490
+ declare function OraculoSeccionBanners({ backgrounds, items }: OraculoSeccionBannersProps): React.JSX.Element;
491
+
474
492
  type OraculoPageLandingPreviewSection = {
475
493
  id: number;
476
494
  title: string;
@@ -510,4 +528,4 @@ interface OraculoPageLandingPreviewProps {
510
528
  }
511
529
  declare const OraculoPageLandingPreview: React.FC<OraculoPageLandingPreviewProps>;
512
530
 
513
- export { type BetOffer, type BetOfferType, type CombinadoEventProps, type Criterion, type EnVivoEventProps, type EventBase, type EventPath, type LiveData, type LiveEvent, type LiveScore, type LiveStatistics, type LiveStatisticsSetData, type MatchClock, type OraculoBonosItem, OraculoButton, type OraculoButtonProps, OraculoCarousel, OraculoCarouselDots, type OraculoCarouselDotsProps, type OraculoCarouselOptions, type OraculoCarouselProps, type OraculoCarouselRef, OraculoClubOlimpoVisual, type OraculoClubOlimpoVisualProps, OraculoEventCombinadosCard as OraculoEventCombinadasCard, OraculoEventEnVivoCard, OraculoMatchHeader as OraculoEventHeader, OraculoEventLabel, OraculoEventLeague, OraculoEventScore, OraculoEventSemanaCard, OraculoEventStatus, OraculoEventStatusBadge, OraculoEventTeamInfo, OraculoGameCard, type OraculoGameCardProps, type OraculoGameItem, OraculoGameRankCard, type OraculoGameRankCardProps, type OraculoGameRankCardSizes, OraculoGameSlide, type OraculoGameSlideItem, type OraculoGameSlideProps, OraculoGridGroup, OraculoLiveCasinoCard, type OraculoLiveCasinoCardProps, OraculoLogoMediosPago, OraculoPageLandingPreview, type OraculoPageLandingPreviewProps, type OraculoPageLandingPreviewSection, OraculoSeccionBonoBienvenida, type OraculoSeccionBonoProps, OraculoSeccionCasino, OraculoSeccionCasinoEnVivo, type OraculoSeccionCasinoEnVivoProps, type OraculoSeccionCasinoProps, OraculoSeccionClubOlimpo, type OraculoSeccionClubOlimpoItem, OraculoSeccionDestacados, type OraculoSeccionDestacadosItem, type OraculoSeccionDestacadosProps, OraculoSeccionEventoCombinadas, OraculoSeccionEventoEnVivo, OraculoSeccionEventoSemana, OraculoSeccionTopJuegos, type OraculoSeccionTopJuegosProps, OraculoSeccionVirtuales, type OraculoSeccionVirtualesProps, OraculoSectionTitle, type OraculoSectionTitleProps, OraculoSeccionTopJuegos as OraculoTopJuegoItem, OraculoWelcomeBanner, type OraculoWelcomeBannerProps, type Outcome, type SemanaEventProps, OraculoPageLandingPreview as default };
531
+ export { type BetOffer, type BetOfferType, type CombinadoEventProps, type Criterion, type EnVivoEventProps, type EventBase, type EventPath, type LiveData, type LiveEvent, type LiveScore, type LiveStatistics, type LiveStatisticsSetData, type MatchClock, type OraculoBannerBackgrounds, type OraculoBannerItem, type OraculoBonosItem, OraculoButton, type OraculoButtonProps, OraculoCarousel, OraculoCarouselDots, type OraculoCarouselDotsProps, type OraculoCarouselOptions, type OraculoCarouselProps, type OraculoCarouselRef, OraculoClubOlimpoVisual, type OraculoClubOlimpoVisualProps, OraculoEventCombinadosCard as OraculoEventCombinadasCard, OraculoEventEnVivoCard, OraculoMatchHeader as OraculoEventHeader, OraculoEventLabel, OraculoEventLeague, OraculoEventScore, OraculoEventSemanaCard, OraculoEventStatus, OraculoEventStatusBadge, OraculoEventTeamInfo, OraculoGameCard, type OraculoGameCardProps, type OraculoGameItem, OraculoGameRankCard, type OraculoGameRankCardProps, type OraculoGameRankCardSizes, OraculoGameSlide, type OraculoGameSlideItem, type OraculoGameSlideProps, OraculoGridGroup, OraculoLiveCasinoCard, type OraculoLiveCasinoCardProps, OraculoLogoMediosPago, OraculoPageLandingPreview, type OraculoPageLandingPreviewProps, type OraculoPageLandingPreviewSection, OraculoSeccionBanners, type OraculoSeccionBannersProps, OraculoSeccionBonoBienvenida, type OraculoSeccionBonoProps, OraculoSeccionCasino, OraculoSeccionCasinoEnVivo, type OraculoSeccionCasinoEnVivoProps, type OraculoSeccionCasinoProps, OraculoSeccionClubOlimpo, type OraculoSeccionClubOlimpoItem, OraculoSeccionDestacados, type OraculoSeccionDestacadosItem, type OraculoSeccionDestacadosProps, OraculoSeccionEventoCombinadas, OraculoSeccionEventoEnVivo, OraculoSeccionEventoSemana, OraculoSeccionTopJuegos, type OraculoSeccionTopJuegosProps, OraculoSeccionVirtuales, type OraculoSeccionVirtualesProps, OraculoSectionTitle, type OraculoSectionTitleProps, OraculoSeccionTopJuegos as OraculoTopJuegoItem, OraculoWelcomeBanner, type OraculoWelcomeBannerProps, type Outcome, type SemanaEventProps, OraculoPageLandingPreview as default };
package/dist/index.d.ts CHANGED
@@ -471,6 +471,24 @@ declare function OraculoSeccionEventoEnVivo({ items, title, iconUrl, onViewMore,
471
471
 
472
472
  declare function OraculoSeccionEventoSemana({ items, title, iconUrl, onViewMore, className, }: any): React.JSX.Element;
473
473
 
474
+ interface OraculoBannerItem {
475
+ id: number | string;
476
+ label: string;
477
+ icon?: string;
478
+ onclick?: () => void;
479
+ }
480
+ interface OraculoBannerBackgrounds {
481
+ desktopSrc: string;
482
+ mobileSrc: string;
483
+ fallbackSrc: string;
484
+ }
485
+ interface OraculoSeccionBannersProps {
486
+ backgrounds: OraculoBannerBackgrounds;
487
+ items: OraculoBannerItem[];
488
+ }
489
+
490
+ declare function OraculoSeccionBanners({ backgrounds, items }: OraculoSeccionBannersProps): React.JSX.Element;
491
+
474
492
  type OraculoPageLandingPreviewSection = {
475
493
  id: number;
476
494
  title: string;
@@ -510,4 +528,4 @@ interface OraculoPageLandingPreviewProps {
510
528
  }
511
529
  declare const OraculoPageLandingPreview: React.FC<OraculoPageLandingPreviewProps>;
512
530
 
513
- export { type BetOffer, type BetOfferType, type CombinadoEventProps, type Criterion, type EnVivoEventProps, type EventBase, type EventPath, type LiveData, type LiveEvent, type LiveScore, type LiveStatistics, type LiveStatisticsSetData, type MatchClock, type OraculoBonosItem, OraculoButton, type OraculoButtonProps, OraculoCarousel, OraculoCarouselDots, type OraculoCarouselDotsProps, type OraculoCarouselOptions, type OraculoCarouselProps, type OraculoCarouselRef, OraculoClubOlimpoVisual, type OraculoClubOlimpoVisualProps, OraculoEventCombinadosCard as OraculoEventCombinadasCard, OraculoEventEnVivoCard, OraculoMatchHeader as OraculoEventHeader, OraculoEventLabel, OraculoEventLeague, OraculoEventScore, OraculoEventSemanaCard, OraculoEventStatus, OraculoEventStatusBadge, OraculoEventTeamInfo, OraculoGameCard, type OraculoGameCardProps, type OraculoGameItem, OraculoGameRankCard, type OraculoGameRankCardProps, type OraculoGameRankCardSizes, OraculoGameSlide, type OraculoGameSlideItem, type OraculoGameSlideProps, OraculoGridGroup, OraculoLiveCasinoCard, type OraculoLiveCasinoCardProps, OraculoLogoMediosPago, OraculoPageLandingPreview, type OraculoPageLandingPreviewProps, type OraculoPageLandingPreviewSection, OraculoSeccionBonoBienvenida, type OraculoSeccionBonoProps, OraculoSeccionCasino, OraculoSeccionCasinoEnVivo, type OraculoSeccionCasinoEnVivoProps, type OraculoSeccionCasinoProps, OraculoSeccionClubOlimpo, type OraculoSeccionClubOlimpoItem, OraculoSeccionDestacados, type OraculoSeccionDestacadosItem, type OraculoSeccionDestacadosProps, OraculoSeccionEventoCombinadas, OraculoSeccionEventoEnVivo, OraculoSeccionEventoSemana, OraculoSeccionTopJuegos, type OraculoSeccionTopJuegosProps, OraculoSeccionVirtuales, type OraculoSeccionVirtualesProps, OraculoSectionTitle, type OraculoSectionTitleProps, OraculoSeccionTopJuegos as OraculoTopJuegoItem, OraculoWelcomeBanner, type OraculoWelcomeBannerProps, type Outcome, type SemanaEventProps, OraculoPageLandingPreview as default };
531
+ export { type BetOffer, type BetOfferType, type CombinadoEventProps, type Criterion, type EnVivoEventProps, type EventBase, type EventPath, type LiveData, type LiveEvent, type LiveScore, type LiveStatistics, type LiveStatisticsSetData, type MatchClock, type OraculoBannerBackgrounds, type OraculoBannerItem, type OraculoBonosItem, OraculoButton, type OraculoButtonProps, OraculoCarousel, OraculoCarouselDots, type OraculoCarouselDotsProps, type OraculoCarouselOptions, type OraculoCarouselProps, type OraculoCarouselRef, OraculoClubOlimpoVisual, type OraculoClubOlimpoVisualProps, OraculoEventCombinadosCard as OraculoEventCombinadasCard, OraculoEventEnVivoCard, OraculoMatchHeader as OraculoEventHeader, OraculoEventLabel, OraculoEventLeague, OraculoEventScore, OraculoEventSemanaCard, OraculoEventStatus, OraculoEventStatusBadge, OraculoEventTeamInfo, OraculoGameCard, type OraculoGameCardProps, type OraculoGameItem, OraculoGameRankCard, type OraculoGameRankCardProps, type OraculoGameRankCardSizes, OraculoGameSlide, type OraculoGameSlideItem, type OraculoGameSlideProps, OraculoGridGroup, OraculoLiveCasinoCard, type OraculoLiveCasinoCardProps, OraculoLogoMediosPago, OraculoPageLandingPreview, type OraculoPageLandingPreviewProps, type OraculoPageLandingPreviewSection, OraculoSeccionBanners, type OraculoSeccionBannersProps, OraculoSeccionBonoBienvenida, type OraculoSeccionBonoProps, OraculoSeccionCasino, OraculoSeccionCasinoEnVivo, type OraculoSeccionCasinoEnVivoProps, type OraculoSeccionCasinoProps, OraculoSeccionClubOlimpo, type OraculoSeccionClubOlimpoItem, OraculoSeccionDestacados, type OraculoSeccionDestacadosItem, type OraculoSeccionDestacadosProps, OraculoSeccionEventoCombinadas, OraculoSeccionEventoEnVivo, OraculoSeccionEventoSemana, OraculoSeccionTopJuegos, type OraculoSeccionTopJuegosProps, OraculoSeccionVirtuales, type OraculoSeccionVirtualesProps, OraculoSectionTitle, type OraculoSectionTitleProps, OraculoSeccionTopJuegos as OraculoTopJuegoItem, OraculoWelcomeBanner, type OraculoWelcomeBannerProps, type Outcome, type SemanaEventProps, OraculoPageLandingPreview as default };