oraculo-ui 0.1.7 → 0.1.9
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/OraculoSeccionBonoBienvenida-EDS6UQVL.mjs +9 -0
- package/dist/OraculoSeccionBonoBienvenida-MGMLDCRG.css +220 -0
- package/dist/OraculoSeccionCasino-GXRRODCJ.mjs +11 -0
- package/dist/OraculoSeccionCasino-Q2VV44XD.css +216 -0
- package/dist/OraculoSeccionCasinoEnVivo-ISYMJSUN.mjs +8 -0
- package/dist/OraculoSeccionCasinoEnVivo-MMXETHJA.css +156 -0
- package/dist/OraculoSeccionClubOlimpo-APZYPQ5V.css +116 -0
- package/dist/OraculoSeccionClubOlimpo-MYTRV5IN.css +273 -0
- package/dist/OraculoSeccionClubOlimpo-TV3LABJ5.mjs +9 -0
- package/dist/OraculoSeccionClubOlimpo-XGB4KUKX.mjs +7 -0
- package/dist/OraculoSeccionDestacados-QU6BT2NM.mjs +18 -0
- package/dist/OraculoSeccionDestacados-WQX2GQNY.css +397 -0
- package/dist/OraculoSeccionTopJuegos-3AR4L7SZ.css +59 -0
- package/dist/OraculoSeccionTopJuegos-FZUYQEMC.mjs +8 -0
- package/dist/OraculoSeccionVirtuales-MGW5X23B.mjs +11 -0
- package/dist/OraculoSeccionVirtuales-OP2CSKUP.css +216 -0
- package/dist/chunk-2D7ZJMJV.mjs +118 -0
- package/dist/chunk-5GTDKE3I.mjs +30 -0
- package/dist/chunk-AFPCFXMZ.mjs +174 -0
- package/dist/chunk-AIT7B2J3.mjs +192 -0
- package/dist/chunk-DKP3HTEP.mjs +183 -0
- package/dist/chunk-IJQLK4NO.mjs +73 -0
- package/dist/chunk-PVY5Z3JS.mjs +249 -0
- package/dist/chunk-PXIOKT7L.mjs +39177 -0
- package/dist/chunk-PZJSZNXJ.mjs +6 -0
- package/dist/chunk-VHW77D2M.mjs +91 -0
- package/dist/chunk-VIPLL6XT.mjs +43 -0
- package/dist/chunk-WPLILXPP.mjs +389 -0
- package/dist/chunk-YY5T37WR.mjs +175 -0
- package/dist/index.d.mts +45 -2
- package/dist/index.d.ts +45 -2
- package/dist/index.js +39897 -1277
- package/dist/index.mjs +41 -1812
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -43,6 +43,11 @@ interface OraculoCarouselOptions {
|
|
|
43
43
|
gap?: string;
|
|
44
44
|
pagination?: boolean;
|
|
45
45
|
arrows?: boolean;
|
|
46
|
+
drag?: boolean;
|
|
47
|
+
focus?: string | "center";
|
|
48
|
+
autoWidth?: boolean;
|
|
49
|
+
trimSpace?: boolean;
|
|
50
|
+
rewind?: boolean;
|
|
46
51
|
padding?: {
|
|
47
52
|
left?: string;
|
|
48
53
|
right?: string;
|
|
@@ -60,7 +65,7 @@ interface OraculoCarouselProps<T = any> {
|
|
|
60
65
|
renderItem: (item: T, index: number) => ReactNode;
|
|
61
66
|
perPage?: number;
|
|
62
67
|
gap?: string;
|
|
63
|
-
breakpoints?:
|
|
68
|
+
breakpoints?: Record<string | number, OraculoCarouselOptions>;
|
|
64
69
|
options?: OraculoCarouselOptions;
|
|
65
70
|
className?: string;
|
|
66
71
|
onMove?: (info: {
|
|
@@ -275,9 +280,47 @@ interface parametros {
|
|
|
275
280
|
casinoEnVivo: OraculoSeccionCasinoEnVivoProps;
|
|
276
281
|
virtuales: OraculoSeccionVirtualesProps;
|
|
277
282
|
clubOlimpo: OraculoSeccionClubOlimpoItem;
|
|
283
|
+
destacados: OraculoSeccionDestacadosProps;
|
|
278
284
|
}
|
|
279
285
|
declare function OraculoPageLanding({ props }: {
|
|
280
286
|
props: parametros;
|
|
281
287
|
}): react_jsx_runtime.JSX.Element;
|
|
282
288
|
|
|
283
|
-
|
|
289
|
+
type OraculoPageLandingPreviewSection = {
|
|
290
|
+
id: number;
|
|
291
|
+
title: string;
|
|
292
|
+
componentKey: string;
|
|
293
|
+
visible: boolean;
|
|
294
|
+
order: number;
|
|
295
|
+
props?: Record<string, unknown>;
|
|
296
|
+
apiUrl?: string;
|
|
297
|
+
dataMode?: "url" | "manual";
|
|
298
|
+
variableName?: string;
|
|
299
|
+
manualItems?: {
|
|
300
|
+
fields: {
|
|
301
|
+
name: string;
|
|
302
|
+
type: string;
|
|
303
|
+
value: string;
|
|
304
|
+
}[];
|
|
305
|
+
}[];
|
|
306
|
+
manualScalarFields?: {
|
|
307
|
+
name: string;
|
|
308
|
+
type: string;
|
|
309
|
+
value: string;
|
|
310
|
+
}[];
|
|
311
|
+
apiMethod?: "GET" | "POST";
|
|
312
|
+
apiParams?: {
|
|
313
|
+
id: string;
|
|
314
|
+
key: string;
|
|
315
|
+
value: string;
|
|
316
|
+
}[];
|
|
317
|
+
};
|
|
318
|
+
interface OraculoPageLandingPreviewProps {
|
|
319
|
+
/** Optional override: if provided, renders these sections instead of fetching Firestore */
|
|
320
|
+
sectionsOverride?: OraculoPageLandingPreviewSection[];
|
|
321
|
+
/** Firestore document id (default 'home') */
|
|
322
|
+
docId?: string;
|
|
323
|
+
}
|
|
324
|
+
declare const OraculoPageLandingPreview: React.FC<OraculoPageLandingPreviewProps>;
|
|
325
|
+
|
|
326
|
+
export { type OraculoBonosItem, OraculoButton, type OraculoButtonProps, OraculoCarousel, OraculoCarouselDots, type OraculoCarouselDotsProps, type OraculoCarouselOptions, type OraculoCarouselProps, type OraculoCarouselRef, OraculoClubOlimpoVisual, type OraculoClubOlimpoVisualProps, OraculoGameCard, type OraculoGameCardProps, type OraculoGameItem, OraculoGameRankCard, type OraculoGameRankCardProps, type OraculoGameRankCardSizes, OraculoGameSlide, type OraculoGameSlideItem, type OraculoGameSlideProps, OraculoLiveCasinoCard, type OraculoLiveCasinoCardProps, OraculoPageLanding, OraculoPageLandingPreview, type OraculoPageLandingPreviewProps, type OraculoPageLandingPreviewSection, OraculoSeccionBonoBienvenida, type OraculoSeccionBonoProps, OraculoSeccionCasino, OraculoSeccionCasinoEnVivo, type OraculoSeccionCasinoEnVivoProps, type OraculoSeccionCasinoProps, OraculoSeccionClubOlimpo, type OraculoSeccionClubOlimpoItem, OraculoSeccionDestacados, type OraculoSeccionDestacadosItem, type OraculoSeccionDestacadosProps, OraculoSeccionTopJuegos, type OraculoSeccionTopJuegosProps, OraculoSeccionVirtuales, type OraculoSeccionVirtualesProps, OraculoSectionTitle, type OraculoSectionTitleProps, OraculoSeccionTopJuegos as OraculoTopJuegoItem, OraculoWelcomeBanner, type OraculoWelcomeBannerProps };
|
package/dist/index.d.ts
CHANGED
|
@@ -43,6 +43,11 @@ interface OraculoCarouselOptions {
|
|
|
43
43
|
gap?: string;
|
|
44
44
|
pagination?: boolean;
|
|
45
45
|
arrows?: boolean;
|
|
46
|
+
drag?: boolean;
|
|
47
|
+
focus?: string | "center";
|
|
48
|
+
autoWidth?: boolean;
|
|
49
|
+
trimSpace?: boolean;
|
|
50
|
+
rewind?: boolean;
|
|
46
51
|
padding?: {
|
|
47
52
|
left?: string;
|
|
48
53
|
right?: string;
|
|
@@ -60,7 +65,7 @@ interface OraculoCarouselProps<T = any> {
|
|
|
60
65
|
renderItem: (item: T, index: number) => ReactNode;
|
|
61
66
|
perPage?: number;
|
|
62
67
|
gap?: string;
|
|
63
|
-
breakpoints?:
|
|
68
|
+
breakpoints?: Record<string | number, OraculoCarouselOptions>;
|
|
64
69
|
options?: OraculoCarouselOptions;
|
|
65
70
|
className?: string;
|
|
66
71
|
onMove?: (info: {
|
|
@@ -275,9 +280,47 @@ interface parametros {
|
|
|
275
280
|
casinoEnVivo: OraculoSeccionCasinoEnVivoProps;
|
|
276
281
|
virtuales: OraculoSeccionVirtualesProps;
|
|
277
282
|
clubOlimpo: OraculoSeccionClubOlimpoItem;
|
|
283
|
+
destacados: OraculoSeccionDestacadosProps;
|
|
278
284
|
}
|
|
279
285
|
declare function OraculoPageLanding({ props }: {
|
|
280
286
|
props: parametros;
|
|
281
287
|
}): react_jsx_runtime.JSX.Element;
|
|
282
288
|
|
|
283
|
-
|
|
289
|
+
type OraculoPageLandingPreviewSection = {
|
|
290
|
+
id: number;
|
|
291
|
+
title: string;
|
|
292
|
+
componentKey: string;
|
|
293
|
+
visible: boolean;
|
|
294
|
+
order: number;
|
|
295
|
+
props?: Record<string, unknown>;
|
|
296
|
+
apiUrl?: string;
|
|
297
|
+
dataMode?: "url" | "manual";
|
|
298
|
+
variableName?: string;
|
|
299
|
+
manualItems?: {
|
|
300
|
+
fields: {
|
|
301
|
+
name: string;
|
|
302
|
+
type: string;
|
|
303
|
+
value: string;
|
|
304
|
+
}[];
|
|
305
|
+
}[];
|
|
306
|
+
manualScalarFields?: {
|
|
307
|
+
name: string;
|
|
308
|
+
type: string;
|
|
309
|
+
value: string;
|
|
310
|
+
}[];
|
|
311
|
+
apiMethod?: "GET" | "POST";
|
|
312
|
+
apiParams?: {
|
|
313
|
+
id: string;
|
|
314
|
+
key: string;
|
|
315
|
+
value: string;
|
|
316
|
+
}[];
|
|
317
|
+
};
|
|
318
|
+
interface OraculoPageLandingPreviewProps {
|
|
319
|
+
/** Optional override: if provided, renders these sections instead of fetching Firestore */
|
|
320
|
+
sectionsOverride?: OraculoPageLandingPreviewSection[];
|
|
321
|
+
/** Firestore document id (default 'home') */
|
|
322
|
+
docId?: string;
|
|
323
|
+
}
|
|
324
|
+
declare const OraculoPageLandingPreview: React.FC<OraculoPageLandingPreviewProps>;
|
|
325
|
+
|
|
326
|
+
export { type OraculoBonosItem, OraculoButton, type OraculoButtonProps, OraculoCarousel, OraculoCarouselDots, type OraculoCarouselDotsProps, type OraculoCarouselOptions, type OraculoCarouselProps, type OraculoCarouselRef, OraculoClubOlimpoVisual, type OraculoClubOlimpoVisualProps, OraculoGameCard, type OraculoGameCardProps, type OraculoGameItem, OraculoGameRankCard, type OraculoGameRankCardProps, type OraculoGameRankCardSizes, OraculoGameSlide, type OraculoGameSlideItem, type OraculoGameSlideProps, OraculoLiveCasinoCard, type OraculoLiveCasinoCardProps, OraculoPageLanding, OraculoPageLandingPreview, type OraculoPageLandingPreviewProps, type OraculoPageLandingPreviewSection, OraculoSeccionBonoBienvenida, type OraculoSeccionBonoProps, OraculoSeccionCasino, OraculoSeccionCasinoEnVivo, type OraculoSeccionCasinoEnVivoProps, type OraculoSeccionCasinoProps, OraculoSeccionClubOlimpo, type OraculoSeccionClubOlimpoItem, OraculoSeccionDestacados, type OraculoSeccionDestacadosItem, type OraculoSeccionDestacadosProps, OraculoSeccionTopJuegos, type OraculoSeccionTopJuegosProps, OraculoSeccionVirtuales, type OraculoSeccionVirtualesProps, OraculoSectionTitle, type OraculoSectionTitleProps, OraculoSeccionTopJuegos as OraculoTopJuegoItem, OraculoWelcomeBanner, type OraculoWelcomeBannerProps };
|