oraculo-ui 0.1.34 → 0.1.36
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 +20 -0
- package/dist/atoms/OraculoCarouselDots/OraculoCarouselDots.d.ts +9 -0
- package/dist/atoms/OraculoEvent/OraculoEventDate.d.ts +6 -0
- package/dist/atoms/OraculoEvent/OraculoEventHeader.d.ts +8 -0
- package/dist/atoms/OraculoEvent/OraculoEventLabel.d.ts +6 -0
- package/dist/atoms/OraculoEvent/OraculoEventLeague.d.ts +6 -0
- package/dist/atoms/OraculoEvent/OraculoEventScore.d.ts +7 -0
- package/dist/atoms/OraculoEvent/OraculoEventStatus.d.ts +6 -0
- package/dist/atoms/OraculoEvent/OraculoEventStatusBadge.d.ts +10 -0
- package/dist/atoms/OraculoEvent/OraculoEventTeamInfo.d.ts +7 -0
- package/dist/atoms/OraculoEvent/OraculoEventTitle.d.ts +7 -0
- package/dist/atoms/OraculoGridGroup/OraculoGridGroup.d.ts +14 -0
- package/dist/atoms/OraculoLogo/OraculoLogoMediosPago.d.ts +6 -0
- package/dist/atoms/OraculoSectionTitle/OraculoSectionTitle.d.ts +8 -0
- package/dist/index.cjs.js +37 -189
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +58 -0
- package/dist/index.es.js +4216 -10666
- package/dist/index.es.js.map +1 -1
- package/dist/interfaces/oraculo/InterfaceBanner.d.ts +15 -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 +12 -0
- package/dist/molecules/OraculoEventCard/OraculoEventCombinadasCard.d.ts +3 -0
- package/dist/molecules/OraculoEventCard/OraculoEventEnVivoCard.d.ts +3 -0
- package/dist/molecules/OraculoEventCard/OraculoEventSemanaCard.d.ts +3 -0
- package/dist/molecules/OraculoGameCard/OraculoGameCard.d.ts +9 -0
- package/dist/molecules/OraculoGameRankCard/OraculoGameRankCard.d.ts +19 -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 +3 -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 +15 -0
- package/dist/organisms/OraculoSeccionDestacados/OraculoSeccionDestacados.d.ts +3 -0
- package/dist/organisms/OraculoSeccionEventoCombinadas/OraculoSeccionEventoCombinadas.d.ts +2 -0
- package/dist/organisms/OraculoSeccionEventoEnVivo/OraculoSeccionEventoEnVivo.d.ts +2 -0
- package/dist/organisms/OraculoSeccionEventoSemana/OraculoSeccionEventoSemana.d.ts +2 -0
- package/dist/organisms/OraculoSeccionMediosPago/OraculoSeccionMediosPago.d.ts +11 -0
- package/dist/organisms/OraculoSeccionTopJuegos/OraculoSeccionTopJuegos.d.ts +3 -0
- package/dist/organisms/OraculoSeccionVirtuales/OraculoSeccionVirtuales.d.ts +4 -0
- package/dist/templates/OraculoPageLanding.d.ts +23 -0
- package/dist/templates/OraculoPageLandingPreview.d.ts +43 -0
- package/package.json +7 -11
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export interface OraculoButtonProps {
|
|
3
|
+
children?: React.ReactNode;
|
|
4
|
+
onClick?: any;
|
|
5
|
+
href?: string;
|
|
6
|
+
target?: React.HTMLAttributeAnchorTarget;
|
|
7
|
+
rel?: string;
|
|
8
|
+
type?: "button" | "submit" | "reset";
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
variant?: "primary" | "secondary" | "tertiary";
|
|
11
|
+
size?: "sm" | "md" | "lg";
|
|
12
|
+
fullWidth?: boolean;
|
|
13
|
+
fullHeight?: boolean;
|
|
14
|
+
className?: string;
|
|
15
|
+
ariaLabel?: string;
|
|
16
|
+
leftIcon?: React.ReactNode;
|
|
17
|
+
rightIcon?: React.ReactNode;
|
|
18
|
+
iconOnly?: boolean;
|
|
19
|
+
}
|
|
20
|
+
export default function OraculoButton({ children, onClick, href, target, rel, type, disabled, variant, size, fullWidth, fullHeight, className, ariaLabel, leftIcon, rightIcon, iconOnly, }: OraculoButtonProps): React.JSX.Element;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export interface OraculoCarouselDotsProps {
|
|
3
|
+
total: number;
|
|
4
|
+
active: number;
|
|
5
|
+
onSelect?: (index: number) => void;
|
|
6
|
+
className?: string;
|
|
7
|
+
}
|
|
8
|
+
declare const OraculoCarouselDots: React.FC<OraculoCarouselDotsProps>;
|
|
9
|
+
export default OraculoCarouselDots;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export interface OraculoMatchHeaderProps {
|
|
3
|
+
title: string;
|
|
4
|
+
subtitle?: string;
|
|
5
|
+
live?: boolean;
|
|
6
|
+
time?: string;
|
|
7
|
+
}
|
|
8
|
+
export default function OraculoMatchHeader({ title, subtitle, live, time }: OraculoMatchHeaderProps): React.JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export interface OraculoEventScoreProps {
|
|
3
|
+
text: string | number;
|
|
4
|
+
name?: string;
|
|
5
|
+
size?: "normal" | "small";
|
|
6
|
+
}
|
|
7
|
+
export default function OraculoEventScore({ text, name, size }: OraculoEventScoreProps): React.JSX.Element;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export interface OraculoEventStatusBadgeProps {
|
|
3
|
+
/** Text inside the badge */
|
|
4
|
+
text: string;
|
|
5
|
+
/** Background color of the badge */
|
|
6
|
+
color?: string;
|
|
7
|
+
/** Text color */
|
|
8
|
+
textColor?: string;
|
|
9
|
+
}
|
|
10
|
+
export default function OraculoEventStatusBadge({ text, color, textColor }: OraculoEventStatusBadgeProps): React.JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export interface OraculoEventTeamInfoProps {
|
|
3
|
+
name: string;
|
|
4
|
+
logo: string;
|
|
5
|
+
size?: "regular" | "compact";
|
|
6
|
+
}
|
|
7
|
+
export default function OraculoEventTeamInfo({ name, logo, size }: OraculoEventTeamInfoProps): React.JSX.Element;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { default as React, 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): React.JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
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): React.JSX.Element;
|