oraculo-ui 0.1.27 → 0.1.28
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/atoms/OraculoButton/OraculoButton.d.ts +21 -0
- package/dist/atoms/OraculoCarouselDots/OraculoCarouselDots.d.ts +10 -0
- package/dist/atoms/OraculoEvent/OraculoEventDate.d.ts +5 -0
- package/dist/atoms/OraculoEvent/OraculoEventHeader.d.ts +7 -0
- package/dist/atoms/OraculoEvent/OraculoEventLabel.d.ts +5 -0
- package/dist/atoms/OraculoEvent/OraculoEventLeague.d.ts +5 -0
- package/dist/atoms/OraculoEvent/OraculoEventScore.d.ts +6 -0
- package/dist/atoms/OraculoEvent/OraculoEventStatus.d.ts +5 -0
- package/dist/atoms/OraculoEvent/OraculoEventStatusBadge.d.ts +9 -0
- package/dist/atoms/OraculoEvent/OraculoEventTeamInfo.d.ts +6 -0
- package/dist/atoms/OraculoEvent/OraculoEventTitle.d.ts +6 -0
- package/dist/atoms/OraculoGridGroup/OraculoGridGroup.d.ts +14 -0
- package/dist/atoms/OraculoLogo/OraculoLogoMediosPago.d.ts +5 -0
- package/dist/atoms/OraculoSectionTitle/OraculoSectionTitle.d.ts +8 -0
- package/dist/index.cjs.js +85 -272
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +59 -0
- package/dist/index.es.js +13251 -23484
- package/dist/index.es.js.map +1 -1
- package/dist/interfaces/oraculo/InterfaceBanner.d.ts +17 -0
- package/dist/interfaces/oraculo/InterfaceBonos.d.ts +13 -0
- package/dist/interfaces/oraculo/InterfaceCasino.d.ts +10 -0
- package/dist/interfaces/oraculo/InterfaceCasinoEnVivo.d.ts +11 -0
- package/dist/interfaces/oraculo/InterfaceClubOlimpo.d.ts +11 -0
- package/dist/interfaces/oraculo/InterfaceDestacados.d.ts +19 -0
- package/dist/interfaces/oraculo/InterfaceGameItem.d.ts +17 -0
- package/dist/interfaces/oraculo/InterfaceKambi.d.ts +114 -0
- package/dist/interfaces/oraculo/InterfaceTopJuegos.d.ts +7 -0
- package/dist/interfaces/oraculo/InterfaceVirtuales.d.ts +10 -0
- package/dist/molecules/OraculoCarousel/OraculoCarousel.d.ts +42 -0
- package/dist/molecules/OraculoClubOlimpoVisual/OraculoClubOlimpoVisual.d.ts +13 -0
- package/dist/molecules/OraculoEventCard/OraculoEventCombinadasCard.d.ts +2 -0
- package/dist/molecules/OraculoEventCard/OraculoEventEnVivoCard.d.ts +2 -0
- package/dist/molecules/OraculoEventCard/OraculoEventSemanaCard.d.ts +2 -0
- package/dist/molecules/OraculoGameCard/OraculoGameCard.d.ts +9 -0
- package/dist/molecules/OraculoGameRankCard/OraculoGameRankCard.d.ts +18 -0
- package/dist/molecules/OraculoGameSlide/OraculoGameSlide.d.ts +12 -0
- package/dist/molecules/OraculoLiveCasinoCard/OraculoLiveCasinoCard.d.ts +10 -0
- package/dist/molecules/OraculoWelcomeBanner/OraculoWelcomeBanner.d.ts +15 -0
- package/dist/organisms/OraculoSeccionBanners/OraculoSeccionBanners.d.ts +2 -0
- package/dist/organisms/OraculoSeccionBonoBienvenida/OraculoSeccionBonoBienvenida.d.ts +4 -0
- package/dist/organisms/OraculoSeccionCasino/OraculoSeccionCasino.d.ts +4 -0
- package/dist/organisms/OraculoSeccionCasinoEnVivo/OraculoSeccionCasinoEnVivo.d.ts +4 -0
- package/dist/organisms/OraculoSeccionClubOlimpo/OraculoSeccionClubOlimpo.d.ts +16 -0
- package/dist/organisms/OraculoSeccionDestacados/OraculoSeccionDestacados.d.ts +2 -0
- package/dist/organisms/OraculoSeccionEventoCombinadas/OraculoSeccionEventoCombinadas.d.ts +1 -0
- package/dist/organisms/OraculoSeccionEventoEnVivo/OraculoSeccionEventoEnVivo.d.ts +1 -0
- package/dist/organisms/OraculoSeccionEventoSemana/OraculoSeccionEventoSemana.d.ts +1 -0
- package/dist/organisms/OraculoSeccionMediosPago/OraculoSeccionMediosPago.d.ts +10 -0
- package/dist/organisms/OraculoSeccionTopJuegos/OraculoSeccionTopJuegos.d.ts +2 -0
- package/dist/organisms/OraculoSeccionVirtuales/OraculoSeccionVirtuales.d.ts +4 -0
- package/dist/templates/OraculoPageLanding.d.ts +22 -0
- package/dist/templates/OraculoPageLandingPreview.d.ts +43 -0
- package/package.json +10 -6
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import "./OraculoButton.css";
|
|
3
|
+
export interface OraculoButtonProps {
|
|
4
|
+
children?: React.ReactNode;
|
|
5
|
+
onClick?: any;
|
|
6
|
+
href?: string;
|
|
7
|
+
target?: React.HTMLAttributeAnchorTarget;
|
|
8
|
+
rel?: string;
|
|
9
|
+
type?: "button" | "submit" | "reset";
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
variant?: "primary" | "secondary" | "tertiary";
|
|
12
|
+
size?: "sm" | "md" | "lg";
|
|
13
|
+
fullWidth?: boolean;
|
|
14
|
+
fullHeight?: boolean;
|
|
15
|
+
className?: string;
|
|
16
|
+
ariaLabel?: string;
|
|
17
|
+
leftIcon?: React.ReactNode;
|
|
18
|
+
rightIcon?: React.ReactNode;
|
|
19
|
+
iconOnly?: boolean;
|
|
20
|
+
}
|
|
21
|
+
export default function OraculoButton({ children, onClick, href, target, rel, type, disabled, variant, size, fullWidth, fullHeight, className, ariaLabel, leftIcon, rightIcon, iconOnly, }: OraculoButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import "./OraculoCarouselDots.css";
|
|
3
|
+
export interface OraculoCarouselDotsProps {
|
|
4
|
+
total: number;
|
|
5
|
+
active: number;
|
|
6
|
+
onSelect?: (index: number) => void;
|
|
7
|
+
className?: string;
|
|
8
|
+
}
|
|
9
|
+
declare const OraculoCarouselDots: React.FC<OraculoCarouselDotsProps>;
|
|
10
|
+
export default OraculoCarouselDots;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export interface OraculoEventStatusBadgeProps {
|
|
2
|
+
/** Text inside the badge */
|
|
3
|
+
text: string;
|
|
4
|
+
/** Background color of the badge */
|
|
5
|
+
color?: string;
|
|
6
|
+
/** Text color */
|
|
7
|
+
textColor?: string;
|
|
8
|
+
}
|
|
9
|
+
export default function OraculoEventStatusBadge({ text, color, textColor }: OraculoEventStatusBadgeProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ReactNode } from "react";
|
|
2
|
+
export interface OraculoGridGroupProps {
|
|
3
|
+
/** Children inside the grid */
|
|
4
|
+
children: ReactNode;
|
|
5
|
+
/** Minimum width (in px) for auto-fit columns */
|
|
6
|
+
minWidth?: number;
|
|
7
|
+
/** Gap spacing: number → multiplier of 8px, or string → custom CSS value */
|
|
8
|
+
spacing?: number | string;
|
|
9
|
+
/** Horizontal alignment of grid items */
|
|
10
|
+
justify?: "start" | "center" | "end" | "stretch";
|
|
11
|
+
/** Custom grid template definition (overrides auto-fit/minmax behavior) */
|
|
12
|
+
columns?: string | null;
|
|
13
|
+
}
|
|
14
|
+
export default function OraculoGridGroup({ children, minWidth, spacing, justify, columns, }: OraculoGridGroupProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import "./OraculoSectionTitle.css";
|
|
2
|
+
export interface OraculoSectionTitleProps {
|
|
3
|
+
title: string;
|
|
4
|
+
iconUrl?: string;
|
|
5
|
+
size?: "xs" | "sm" | "md" | "lg";
|
|
6
|
+
className?: string;
|
|
7
|
+
}
|
|
8
|
+
export default function OraculoSectionTitle({ title, iconUrl, size, className, }: OraculoSectionTitleProps): import("react/jsx-runtime").JSX.Element;
|