@vellumlabs/cexplorer-sdk 1.1.5 → 1.1.6
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.
|
@@ -130,7 +130,9 @@ declare const Carousel: React.ForwardRefExoticComponent<React.HTMLAttributes<HTM
|
|
|
130
130
|
* @param {string} [props.className] - Additional CSS classes
|
|
131
131
|
* @returns {JSX.Element} Scroll container for carousel items
|
|
132
132
|
*/
|
|
133
|
-
declare const CarouselContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> &
|
|
133
|
+
declare const CarouselContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & {
|
|
134
|
+
wrapperClassName?: string;
|
|
135
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
134
136
|
/**
|
|
135
137
|
* CarouselItem represents a single slide within the carousel.
|
|
136
138
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"carousel.d.ts","sourceRoot":"","sources":["../../../../src/ui/carousel/components/carousel.tsx"],"names":[],"mappings":"AAAA,OAAO,gBAAgB,EAAE,EACvB,KAAK,oBAAoB,EAC1B,MAAM,sBAAsB,CAAC;AAC9B,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B;;GAEG;AACH,KAAK,WAAW,GAAG,oBAAoB,CAAC,CAAC,CAAC,CAAC;AAE3C;;GAEG;AACH,KAAK,qBAAqB,GAAG,UAAU,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEjE;;GAEG;AACH,KAAK,eAAe,GAAG,qBAAqB,CAAC,CAAC,CAAC,CAAC;AAEhD;;GAEG;AACH,KAAK,cAAc,GAAG,qBAAqB,CAAC,CAAC,CAAC,CAAC;AAE/C;;GAEG;AACH,KAAK,aAAa,GAAG;IACnB;;;;OAIG;IACH,IAAI,CAAC,EAAE,eAAe,CAAC;IACvB;;;;OAIG;IACH,OAAO,CAAC,EAAE,cAAc,CAAC;IACzB;;;OAGG;IACH,WAAW,CAAC,EAAE,YAAY,GAAG,UAAU,CAAC;IACxC;;;OAGG;IACH,MAAM,CAAC,EAAE,CAAC,GAAG,EAAE,WAAW,KAAK,IAAI,CAAC;CACrC,CAAC;AA0DF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiDG;AACH,QAAA,MAAM,QAAQ,6HAyGb,CAAC;AAGF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,QAAA,MAAM,eAAe,
|
|
1
|
+
{"version":3,"file":"carousel.d.ts","sourceRoot":"","sources":["../../../../src/ui/carousel/components/carousel.tsx"],"names":[],"mappings":"AAAA,OAAO,gBAAgB,EAAE,EACvB,KAAK,oBAAoB,EAC1B,MAAM,sBAAsB,CAAC;AAC9B,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B;;GAEG;AACH,KAAK,WAAW,GAAG,oBAAoB,CAAC,CAAC,CAAC,CAAC;AAE3C;;GAEG;AACH,KAAK,qBAAqB,GAAG,UAAU,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEjE;;GAEG;AACH,KAAK,eAAe,GAAG,qBAAqB,CAAC,CAAC,CAAC,CAAC;AAEhD;;GAEG;AACH,KAAK,cAAc,GAAG,qBAAqB,CAAC,CAAC,CAAC,CAAC;AAE/C;;GAEG;AACH,KAAK,aAAa,GAAG;IACnB;;;;OAIG;IACH,IAAI,CAAC,EAAE,eAAe,CAAC;IACvB;;;;OAIG;IACH,OAAO,CAAC,EAAE,cAAc,CAAC;IACzB;;;OAGG;IACH,WAAW,CAAC,EAAE,YAAY,GAAG,UAAU,CAAC;IACxC;;;OAGG;IACH,MAAM,CAAC,EAAE,CAAC,GAAG,EAAE,WAAW,KAAK,IAAI,CAAC;CACrC,CAAC;AA0DF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiDG;AACH,QAAA,MAAM,QAAQ,6HAyGb,CAAC;AAGF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,QAAA,MAAM,eAAe;uBAEyC,MAAM;wCAoBlE,CAAC;AAGH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0CG;AACH,QAAA,MAAM,YAAY,6GAmBhB,CAAC;AAGH,OAAO,EAAE,QAAQ,EAAE,eAAe,EAAE,YAAY,EAAE,KAAK,WAAW,EAAE,CAAC"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { Locales } from '../../types/commonTypes';
|
|
2
|
+
import { MiscBasicResponse, MiscSearchResponse } from '../../types/miscTypes';
|
|
3
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
1
4
|
import { ReactNode } from 'react';
|
|
2
5
|
import { BreadCrumbItem } from '../breadcrumbs';
|
|
3
|
-
import { UseQueryResult } from '@tanstack/react-query';
|
|
4
|
-
import { MiscBasicResponse, MiscSearchResponse } from '../../types/miscTypes';
|
|
5
|
-
import { Locales } from '../../types/commonTypes';
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* Props for the Header component.
|
|
@@ -54,6 +54,10 @@ export interface HeaderProps {
|
|
|
54
54
|
* Current locale.
|
|
55
55
|
*/
|
|
56
56
|
locale: Locales;
|
|
57
|
+
/**
|
|
58
|
+
* Homepage ad
|
|
59
|
+
*/
|
|
60
|
+
homepageAd?: ReactNode;
|
|
57
61
|
}
|
|
58
62
|
/**
|
|
59
63
|
* Page header component with breadcrumbs, title, search, and ads.
|
|
@@ -115,5 +119,5 @@ export interface HeaderProps {
|
|
|
115
119
|
* />
|
|
116
120
|
* ```
|
|
117
121
|
*/
|
|
118
|
-
export declare const Header: ({ breadcrumbItems, breadcrumbSeparator, title, subTitle, badge, qrCode, isHomepage, miscBasic: miscBasicQuery, useFetchMiscSearch, locale, }: HeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
122
|
+
export declare const Header: ({ breadcrumbItems, breadcrumbSeparator, title, subTitle, badge, qrCode, isHomepage, miscBasic: miscBasicQuery, useFetchMiscSearch, locale, homepageAd, }: HeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
119
123
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/ui/header/index.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/ui/header/index.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAC;AACnD,OAAO,KAAK,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAE/E,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAGvC,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAQrD;;;;GAIG;AACH,MAAM,WAAW,WAAW;IAC1B;;OAEG;IACH,eAAe,CAAC,EAAE,cAAc,EAAE,CAAC;IACnC;;OAEG;IACH,mBAAmB,CAAC,EAAE,SAAS,CAAC;IAChC;;OAEG;IACH,KAAK,EAAE,SAAS,CAAC;IACjB;;OAEG;IACH,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB;;OAEG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,SAAS,CAAC;IACnB;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,SAAS,EAAE,cAAc,CACvB,iBAAiB,GAAG;QAClB,UAAU,EAAE,MAAM,GAAG,SAAS,CAAC;KAChC,EACD,KAAK,CACN,CAAC;IACF;;OAEG;IACH,kBAAkB,EAAE,CAClB,KAAK,EAAE,MAAM,GAAG,SAAS,EACzB,QAAQ,CAAC,EAAE,MAAM,EACjB,MAAM,CAAC,EAAE,OAAO,KACb,cAAc,CACjB,kBAAkB,GAAG;QACnB,UAAU,EAAE,MAAM,GAAG,SAAS,CAAC;KAChC,EACD,OAAO,CACR,CAAC;IACF;;OAEG;IACH,MAAM,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,UAAU,CAAC,EAAE,SAAS,CAAC;CACxB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2DG;AACH,eAAO,MAAM,MAAM,GAAI,0JAYpB,WAAW,4CAkJb,CAAC"}
|