oraculo-ui 0.1.27 → 0.1.29

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 +6 -0
  4. package/dist/atoms/OraculoEvent/OraculoEventHeader.d.ts +8 -0
  5. package/dist/atoms/OraculoEvent/OraculoEventLabel.d.ts +6 -0
  6. package/dist/atoms/OraculoEvent/OraculoEventLeague.d.ts +6 -0
  7. package/dist/atoms/OraculoEvent/OraculoEventScore.d.ts +7 -0
  8. package/dist/atoms/OraculoEvent/OraculoEventStatus.d.ts +6 -0
  9. package/dist/atoms/OraculoEvent/OraculoEventStatusBadge.d.ts +10 -0
  10. package/dist/atoms/OraculoEvent/OraculoEventTeamInfo.d.ts +7 -0
  11. package/dist/atoms/OraculoEvent/OraculoEventTitle.d.ts +7 -0
  12. package/dist/atoms/OraculoGridGroup/OraculoGridGroup.d.ts +14 -0
  13. package/dist/atoms/OraculoLogo/OraculoLogoMediosPago.d.ts +6 -0
  14. package/dist/atoms/OraculoSectionTitle/OraculoSectionTitle.d.ts +9 -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 +3 -0
  34. package/dist/molecules/OraculoEventCard/OraculoEventEnVivoCard.d.ts +3 -0
  35. package/dist/molecules/OraculoEventCard/OraculoEventSemanaCard.d.ts +3 -0
  36. package/dist/molecules/OraculoGameCard/OraculoGameCard.d.ts +9 -0
  37. package/dist/molecules/OraculoGameRankCard/OraculoGameRankCard.d.ts +19 -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 +3 -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 +3 -0
  47. package/dist/organisms/OraculoSeccionEventoCombinadas/OraculoSeccionEventoCombinadas.d.ts +2 -0
  48. package/dist/organisms/OraculoSeccionEventoEnVivo/OraculoSeccionEventoEnVivo.d.ts +2 -0
  49. package/dist/organisms/OraculoSeccionEventoSemana/OraculoSeccionEventoSemana.d.ts +2 -0
  50. package/dist/organisms/OraculoSeccionMediosPago/OraculoSeccionMediosPago.d.ts +11 -0
  51. package/dist/organisms/OraculoSeccionTopJuegos/OraculoSeccionTopJuegos.d.ts +3 -0
  52. package/dist/organisms/OraculoSeccionVirtuales/OraculoSeccionVirtuales.d.ts +4 -0
  53. package/dist/templates/OraculoPageLanding.d.ts +23 -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): React.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,6 @@
1
+ import React from "react";
2
+ interface OraculoEventDateProps {
3
+ text: string;
4
+ }
5
+ export default function OraculoEventDate({ text }: OraculoEventDateProps): React.JSX.Element;
6
+ export {};
@@ -0,0 +1,8 @@
1
+ import 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,6 @@
1
+ import React from "react";
2
+ interface OraculoEventLabelProps {
3
+ text: string;
4
+ }
5
+ export default function OraculoEventLabel({ text }: OraculoEventLabelProps): React.JSX.Element;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ interface EventLeague {
3
+ title: string;
4
+ }
5
+ export default function OraculoEventLeague({ title }: EventLeague): React.JSX.Element;
6
+ export {};
@@ -0,0 +1,7 @@
1
+ import 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,6 @@
1
+ import React from "react";
2
+ export interface OraculoEventStatusProps {
3
+ live?: boolean;
4
+ time?: string;
5
+ }
6
+ export default function OraculoEventStatus({ live, time }: OraculoEventStatusProps): React.JSX.Element;
@@ -0,0 +1,10 @@
1
+ import 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 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,7 @@
1
+ import React from "react";
2
+ interface OraculoEventTitleProps {
3
+ title: string;
4
+ subtitle?: string;
5
+ }
6
+ export default function OraculoEventTitle({ title, subtitle }: OraculoEventTitleProps): React.JSX.Element;
7
+ export {};
@@ -0,0 +1,14 @@
1
+ import 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,6 @@
1
+ import React from "react";
2
+ export type Logo = {
3
+ src: string;
4
+ alt: string;
5
+ };
6
+ export default function OraculoLogoMediosPago({ src, alt }: Logo): React.JSX.Element;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import "./OraculoSectionTitle.css";
3
+ export interface OraculoSectionTitleProps {
4
+ title: string;
5
+ iconUrl?: string;
6
+ size?: "xs" | "sm" | "md" | "lg";
7
+ className?: string;
8
+ }
9
+ export default function OraculoSectionTitle({ title, iconUrl, size, className, }: OraculoSectionTitleProps): React.JSX.Element;