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.
Files changed (55) hide show
  1. package/dist/atoms/OraculoButton/OraculoButton.d.ts +21 -0
  2. package/dist/atoms/OraculoCarouselDots/OraculoCarouselDots.d.ts +10 -0
  3. package/dist/atoms/OraculoEvent/OraculoEventDate.d.ts +5 -0
  4. package/dist/atoms/OraculoEvent/OraculoEventHeader.d.ts +7 -0
  5. package/dist/atoms/OraculoEvent/OraculoEventLabel.d.ts +5 -0
  6. package/dist/atoms/OraculoEvent/OraculoEventLeague.d.ts +5 -0
  7. package/dist/atoms/OraculoEvent/OraculoEventScore.d.ts +6 -0
  8. package/dist/atoms/OraculoEvent/OraculoEventStatus.d.ts +5 -0
  9. package/dist/atoms/OraculoEvent/OraculoEventStatusBadge.d.ts +9 -0
  10. package/dist/atoms/OraculoEvent/OraculoEventTeamInfo.d.ts +6 -0
  11. package/dist/atoms/OraculoEvent/OraculoEventTitle.d.ts +6 -0
  12. package/dist/atoms/OraculoGridGroup/OraculoGridGroup.d.ts +14 -0
  13. package/dist/atoms/OraculoLogo/OraculoLogoMediosPago.d.ts +5 -0
  14. package/dist/atoms/OraculoSectionTitle/OraculoSectionTitle.d.ts +8 -0
  15. package/dist/index.cjs.js +85 -272
  16. package/dist/index.cjs.js.map +1 -1
  17. package/dist/index.css +1 -1
  18. package/dist/index.d.ts +59 -0
  19. package/dist/index.es.js +13251 -23484
  20. package/dist/index.es.js.map +1 -1
  21. package/dist/interfaces/oraculo/InterfaceBanner.d.ts +17 -0
  22. package/dist/interfaces/oraculo/InterfaceBonos.d.ts +13 -0
  23. package/dist/interfaces/oraculo/InterfaceCasino.d.ts +10 -0
  24. package/dist/interfaces/oraculo/InterfaceCasinoEnVivo.d.ts +11 -0
  25. package/dist/interfaces/oraculo/InterfaceClubOlimpo.d.ts +11 -0
  26. package/dist/interfaces/oraculo/InterfaceDestacados.d.ts +19 -0
  27. package/dist/interfaces/oraculo/InterfaceGameItem.d.ts +17 -0
  28. package/dist/interfaces/oraculo/InterfaceKambi.d.ts +114 -0
  29. package/dist/interfaces/oraculo/InterfaceTopJuegos.d.ts +7 -0
  30. package/dist/interfaces/oraculo/InterfaceVirtuales.d.ts +10 -0
  31. package/dist/molecules/OraculoCarousel/OraculoCarousel.d.ts +42 -0
  32. package/dist/molecules/OraculoClubOlimpoVisual/OraculoClubOlimpoVisual.d.ts +13 -0
  33. package/dist/molecules/OraculoEventCard/OraculoEventCombinadasCard.d.ts +2 -0
  34. package/dist/molecules/OraculoEventCard/OraculoEventEnVivoCard.d.ts +2 -0
  35. package/dist/molecules/OraculoEventCard/OraculoEventSemanaCard.d.ts +2 -0
  36. package/dist/molecules/OraculoGameCard/OraculoGameCard.d.ts +9 -0
  37. package/dist/molecules/OraculoGameRankCard/OraculoGameRankCard.d.ts +18 -0
  38. package/dist/molecules/OraculoGameSlide/OraculoGameSlide.d.ts +12 -0
  39. package/dist/molecules/OraculoLiveCasinoCard/OraculoLiveCasinoCard.d.ts +10 -0
  40. package/dist/molecules/OraculoWelcomeBanner/OraculoWelcomeBanner.d.ts +15 -0
  41. package/dist/organisms/OraculoSeccionBanners/OraculoSeccionBanners.d.ts +2 -0
  42. package/dist/organisms/OraculoSeccionBonoBienvenida/OraculoSeccionBonoBienvenida.d.ts +4 -0
  43. package/dist/organisms/OraculoSeccionCasino/OraculoSeccionCasino.d.ts +4 -0
  44. package/dist/organisms/OraculoSeccionCasinoEnVivo/OraculoSeccionCasinoEnVivo.d.ts +4 -0
  45. package/dist/organisms/OraculoSeccionClubOlimpo/OraculoSeccionClubOlimpo.d.ts +16 -0
  46. package/dist/organisms/OraculoSeccionDestacados/OraculoSeccionDestacados.d.ts +2 -0
  47. package/dist/organisms/OraculoSeccionEventoCombinadas/OraculoSeccionEventoCombinadas.d.ts +1 -0
  48. package/dist/organisms/OraculoSeccionEventoEnVivo/OraculoSeccionEventoEnVivo.d.ts +1 -0
  49. package/dist/organisms/OraculoSeccionEventoSemana/OraculoSeccionEventoSemana.d.ts +1 -0
  50. package/dist/organisms/OraculoSeccionMediosPago/OraculoSeccionMediosPago.d.ts +10 -0
  51. package/dist/organisms/OraculoSeccionTopJuegos/OraculoSeccionTopJuegos.d.ts +2 -0
  52. package/dist/organisms/OraculoSeccionVirtuales/OraculoSeccionVirtuales.d.ts +4 -0
  53. package/dist/templates/OraculoPageLanding.d.ts +22 -0
  54. package/dist/templates/OraculoPageLandingPreview.d.ts +43 -0
  55. 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,5 @@
1
+ interface OraculoEventDateProps {
2
+ text: string;
3
+ }
4
+ export default function OraculoEventDate({ text }: OraculoEventDateProps): import("react/jsx-runtime").JSX.Element;
5
+ export {};
@@ -0,0 +1,7 @@
1
+ export interface OraculoMatchHeaderProps {
2
+ title: string;
3
+ subtitle?: string;
4
+ live?: boolean;
5
+ time?: string;
6
+ }
7
+ export default function OraculoMatchHeader({ title, subtitle, live, time }: OraculoMatchHeaderProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,5 @@
1
+ interface OraculoEventLabelProps {
2
+ text: string;
3
+ }
4
+ export default function OraculoEventLabel({ text }: OraculoEventLabelProps): import("react/jsx-runtime").JSX.Element;
5
+ export {};
@@ -0,0 +1,5 @@
1
+ interface EventLeague {
2
+ title: string;
3
+ }
4
+ export default function OraculoEventLeague({ title }: EventLeague): import("react/jsx-runtime").JSX.Element;
5
+ export {};
@@ -0,0 +1,6 @@
1
+ export interface OraculoEventScoreProps {
2
+ text: string | number;
3
+ name?: string;
4
+ size?: "normal" | "small";
5
+ }
6
+ export default function OraculoEventScore({ text, name, size }: OraculoEventScoreProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,5 @@
1
+ export interface OraculoEventStatusProps {
2
+ live?: boolean;
3
+ time?: string;
4
+ }
5
+ export default function OraculoEventStatus({ live, time }: OraculoEventStatusProps): import("react/jsx-runtime").JSX.Element;
@@ -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,6 @@
1
+ export interface OraculoEventTeamInfoProps {
2
+ name: string;
3
+ logo: string;
4
+ size?: "regular" | "compact";
5
+ }
6
+ export default function OraculoEventTeamInfo({ name, logo, size }: OraculoEventTeamInfoProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ interface OraculoEventTitleProps {
2
+ title: string;
3
+ subtitle?: string;
4
+ }
5
+ export default function OraculoEventTitle({ title, subtitle }: OraculoEventTitleProps): import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -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,5 @@
1
+ export type Logo = {
2
+ src: string;
3
+ alt: string;
4
+ };
5
+ export default function OraculoLogoMediosPago({ src, alt }: Logo): 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;