@pelatform/ui 1.5.7 → 1.5.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.
@@ -958,7 +958,10 @@ var _reactquery = require('@tanstack/react-query');
958
958
 
959
959
 
960
960
 
961
- var QueryProvider = ({ children }) => {
961
+ var QueryProvider = ({
962
+ client: clientProps,
963
+ children
964
+ }) => {
962
965
  const [queryClient] = _react.useState.call(void 0,
963
966
  () => new (0, _reactquery.QueryClient)({
964
967
  /** Global query defaults for all queries */
@@ -1018,7 +1021,7 @@ var QueryProvider = ({ children }) => {
1018
1021
  })
1019
1022
  })
1020
1023
  );
1021
- return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _reactquery.QueryClientProvider, { client: queryClient, children });
1024
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _reactquery.QueryClientProvider, { client: _nullishCoalesce(clientProps, () => ( queryClient)), children });
1022
1025
  };
1023
1026
 
1024
1027
  // src/components/providers/theme-provider.tsx
@@ -1270,6 +1273,50 @@ function DotsPattern({
1270
1273
  );
1271
1274
  }
1272
1275
 
1276
+ // src/components/ui/hexagon-badge.tsx
1277
+
1278
+ var HexagonBadge = ({ children, classNames }) => {
1279
+ return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: _chunkCJXIPSTGcjs.cn.call(void 0, "relative shrink-0", _optionalChain([classNames, 'optionalAccess', _45 => _45.base])), children: [
1280
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
1281
+ "svg",
1282
+ {
1283
+ className: _chunkCJXIPSTGcjs.cn.call(void 0, "h-full w-full", _optionalChain([classNames, 'optionalAccess', _46 => _46.svg])),
1284
+ width: "44",
1285
+ height: "48",
1286
+ viewBox: "0 0 44 48",
1287
+ fill: "none",
1288
+ xmlns: "http://www.w3.org/2000/svg",
1289
+ children: [
1290
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1291
+ "path",
1292
+ {
1293
+ d: "M16 2.4641C19.7128 0.320509 24.2872 0.320508 28 2.4641L37.6506 8.0359C41.3634 10.1795 43.6506 14.141 43.6506 \n 18.4282V29.5718C43.6506 33.859 41.3634 37.8205 37.6506 39.9641L28 45.5359C24.2872 47.6795 19.7128 47.6795 16 45.5359L6.34937 \n 39.9641C2.63655 37.8205 0.349365 33.859 0.349365 29.5718V18.4282C0.349365 14.141 2.63655 10.1795 6.34937 8.0359L16 2.4641Z",
1294
+ fill: ""
1295
+ }
1296
+ ),
1297
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1298
+ "path",
1299
+ {
1300
+ d: "M16.25 2.89711C19.8081 0.842838 24.1919 0.842837 27.75 2.89711L37.4006 8.46891C40.9587 10.5232 43.1506 14.3196 43.1506 \n 18.4282V29.5718C43.1506 33.6804 40.9587 37.4768 37.4006 39.5311L27.75 45.1029C24.1919 47.1572 19.8081 47.1572 16.25 45.1029L6.59937 \n 39.5311C3.04125 37.4768 0.849365 33.6803 0.849365 29.5718V18.4282C0.849365 14.3196 3.04125 10.5232 6.59937 8.46891L16.25 2.89711Z",
1301
+ stroke: ""
1302
+ }
1303
+ )
1304
+ ]
1305
+ }
1306
+ ),
1307
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1308
+ "div",
1309
+ {
1310
+ className: _chunkCJXIPSTGcjs.cn.call(void 0,
1311
+ "-translate-y-2/4 -translate-x-2/4 absolute start-2/4 top-2/4 leading-none rtl:translate-x-2/4",
1312
+ _optionalChain([classNames, 'optionalAccess', _47 => _47.wraper])
1313
+ ),
1314
+ children
1315
+ }
1316
+ )
1317
+ ] });
1318
+ };
1319
+
1273
1320
  // src/components/ui/icons.tsx
1274
1321
 
1275
1322
  var Icons = {
@@ -1741,7 +1788,7 @@ var openFileDialog = (inputRef) => {
1741
1788
  inputRef.current.click();
1742
1789
  };
1743
1790
  var getAcceptTypeString = (acceptType, allowNonImageType) => {
1744
- if (_optionalChain([acceptType, 'optionalAccess', _45 => _45.length])) return acceptType.map((item) => `.${item}`).join(", ");
1791
+ if (_optionalChain([acceptType, 'optionalAccess', _48 => _48.length])) return acceptType.map((item) => `.${item}`).join(", ");
1745
1792
  if (allowNonImageType) return "";
1746
1793
  return "image/*";
1747
1794
  };
@@ -1789,7 +1836,7 @@ var ImageInput = ({
1789
1836
  const [keyUpdate, setKeyUpdate] = _react.useState.call(void 0, DEFAULT_NULL_INDEX);
1790
1837
  const [isDragging, setIsDragging] = _react.useState.call(void 0, false);
1791
1838
  const onImageRemoveAll = _react.useCallback.call(void 0, () => {
1792
- _optionalChain([onChange, 'optionalCall', _46 => _46([])]);
1839
+ _optionalChain([onChange, 'optionalCall', _49 => _49([])]);
1793
1840
  }, [onChange]);
1794
1841
  const handleClickInput = _react.useCallback.call(void 0, () => {
1795
1842
  openFileDialog(inputRef);
@@ -1821,7 +1868,7 @@ var ImageInput = ({
1821
1868
  updatedFileList = [fileList[0]];
1822
1869
  updatedIndexes.push(0);
1823
1870
  }
1824
- _optionalChain([onChange, 'optionalCall', _47 => _47(updatedFileList, updatedIndexes)]);
1871
+ _optionalChain([onChange, 'optionalCall', _50 => _50(updatedFileList, updatedIndexes)]);
1825
1872
  };
1826
1873
  const onImageRemove = (index) => {
1827
1874
  const updatedList = [...inValue];
@@ -1832,7 +1879,7 @@ var ImageInput = ({
1832
1879
  } else {
1833
1880
  updatedList.splice(index, 1);
1834
1881
  }
1835
- _optionalChain([onChange, 'optionalCall', _48 => _48(updatedList)]);
1882
+ _optionalChain([onChange, 'optionalCall', _51 => _51(updatedList)]);
1836
1883
  };
1837
1884
  const onImageUpdate = (index) => {
1838
1885
  setKeyUpdate(index);
@@ -1882,7 +1929,7 @@ var ImageInput = ({
1882
1929
  ...inputProps
1883
1930
  }
1884
1931
  ),
1885
- _optionalChain([children, 'optionalCall', _49 => _49({
1932
+ _optionalChain([children, 'optionalCall', _52 => _52({
1886
1933
  fileList: inValue,
1887
1934
  onImageUpload,
1888
1935
  onImageRemove,
@@ -1925,11 +1972,11 @@ function LanguageSwitcher({
1925
1972
  function handleLanguageChange(newLocale) {
1926
1973
  if (newLocale === currentLocale) return;
1927
1974
  startTransition(() => {
1928
- const maybePromise = _optionalChain([onLocaleChange, 'optionalCall', _50 => _50(newLocale)]);
1975
+ const maybePromise = _optionalChain([onLocaleChange, 'optionalCall', _53 => _53(newLocale)]);
1929
1976
  return maybePromise;
1930
1977
  });
1931
1978
  }
1932
- if (!i18nEnabled && (_nullishCoalesce(_optionalChain([languages, 'optionalAccess', _51 => _51.length]), () => ( 0))) <= 1) {
1979
+ if (!i18nEnabled && (_nullishCoalesce(_optionalChain([languages, 'optionalAccess', _54 => _54.length]), () => ( 0))) <= 1) {
1933
1980
  return null;
1934
1981
  }
1935
1982
  if (type === "dropdown") {
@@ -2257,14 +2304,14 @@ var MovingBorder = ({
2257
2304
  const pathRef = _react.useRef.call(void 0, null);
2258
2305
  const progress = _react2.useMotionValue.call(void 0, 0);
2259
2306
  _react2.useAnimationFrame.call(void 0, (time) => {
2260
- const length = _optionalChain([pathRef, 'access', _52 => _52.current, 'optionalAccess', _53 => _53.getTotalLength, 'call', _54 => _54()]);
2307
+ const length = _optionalChain([pathRef, 'access', _55 => _55.current, 'optionalAccess', _56 => _56.getTotalLength, 'call', _57 => _57()]);
2261
2308
  if (length) {
2262
2309
  const pxPerMillisecond = length / duration;
2263
2310
  progress.set(time * pxPerMillisecond % length);
2264
2311
  }
2265
2312
  });
2266
- const x = _react2.useTransform.call(void 0, progress, (val) => _optionalChain([pathRef, 'access', _55 => _55.current, 'optionalAccess', _56 => _56.getPointAtLength, 'call', _57 => _57(val), 'access', _58 => _58.x]));
2267
- const y = _react2.useTransform.call(void 0, progress, (val) => _optionalChain([pathRef, 'access', _59 => _59.current, 'optionalAccess', _60 => _60.getPointAtLength, 'call', _61 => _61(val), 'access', _62 => _62.y]));
2313
+ const x = _react2.useTransform.call(void 0, progress, (val) => _optionalChain([pathRef, 'access', _58 => _58.current, 'optionalAccess', _59 => _59.getPointAtLength, 'call', _60 => _60(val), 'access', _61 => _61.x]));
2314
+ const y = _react2.useTransform.call(void 0, progress, (val) => _optionalChain([pathRef, 'access', _62 => _62.current, 'optionalAccess', _63 => _63.getPointAtLength, 'call', _64 => _64(val), 'access', _65 => _65.y]));
2268
2315
  const transform = _react2.useMotionTemplate`translateX(${x}px) translateY(${y}px) translateX(-50%) translateY(-50%)`;
2269
2316
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, _jsxruntime.Fragment, { children: [
2270
2317
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
@@ -2670,4 +2717,5 @@ function SatoshiFontCSS() {
2670
2717
 
2671
2718
 
2672
2719
 
2673
- exports.AlertComingsoon = AlertComingsoon; exports.AlertNotification = AlertNotification; exports.AlertToast = AlertToast; exports.Announcement = Announcement; exports.AnnouncementTag = AnnouncementTag; exports.AnnouncementTitle = AnnouncementTitle; exports.BackLink = BackLink; exports.BackgroundPaths = BackgroundPaths; exports.Body = Body; exports.Book = Book; exports.CodeDisplay = CodeDisplay; exports.ComingSoon = ComingSoon; exports.CommandMenu = CommandMenu; exports.ConfirmDismissDialog = ConfirmDismissDialog; exports.DEFAULT_DATA_URL_KEY = DEFAULT_DATA_URL_KEY; exports.DEFAULT_NULL_INDEX = DEFAULT_NULL_INDEX; exports.DefaultImage = DefaultImage; exports.DefaultLink = DefaultLink; exports.DefaultNavigate = DefaultNavigate; exports.DotsPattern = DotsPattern; exports.DownloadFile = DownloadFile; exports.ErrorComponents = ErrorComponents; exports.ExtraLink = ExtraLink; exports.FloatingPaths = FloatingPaths; exports.Grid = Grid; exports.GridBackground = GridBackground; exports.Icons = Icons; exports.ImageInput = ImageInput; exports.LanguageSwitcher = LanguageSwitcher; exports.LayoutAuth = LayoutAuth; exports.LayoutBlank = LayoutBlank; exports.Logo = Logo; exports.MainNav = MainNav; exports.MaxWidthWrapper = MaxWidthWrapper; exports.MobileNav = MobileNav; exports.MobileNavItemRenderer = MobileNavItemRenderer; exports.ModeSwitcher = ModeSwitcher; exports.MovingBorder = MovingBorder; exports.MovingLabel = MovingLabel; exports.QueryProvider = QueryProvider; exports.RecaptchaPopover = RecaptchaPopover; exports.SatoshiFontCSS = SatoshiFontCSS; exports.ScreenLoader = ScreenLoader; exports.Section = Section; exports.SiteFooter = SiteFooter; exports.SiteHeader = SiteHeader; exports.Stack = Stack; exports.Subscribe = Subscribe; exports.ThemeProvider = ThemeProvider; exports.Toolbar = Toolbar; exports.ToolbarActions = ToolbarActions; exports.ToolbarHeading = ToolbarHeading; exports.ToolbarTitle = ToolbarTitle; exports.UserAvatar = UserAvatar; exports.Video = Video; exports.Wrapper = Wrapper; exports.Youtube = Youtube; exports.cssFontFace = cssFontFace; exports.getAcceptTypeString = getAcceptTypeString; exports.getBase64 = getBase64; exports.getImage = getImage; exports.getInitials = getInitials; exports.getListFiles = getListFiles; exports.handleMenuClick = handleMenuClick; exports.openFileDialog = openFileDialog; exports.satoshiFontUrl = satoshiFontUrl;
2720
+
2721
+ exports.AlertComingsoon = AlertComingsoon; exports.AlertNotification = AlertNotification; exports.AlertToast = AlertToast; exports.Announcement = Announcement; exports.AnnouncementTag = AnnouncementTag; exports.AnnouncementTitle = AnnouncementTitle; exports.BackLink = BackLink; exports.BackgroundPaths = BackgroundPaths; exports.Body = Body; exports.Book = Book; exports.CodeDisplay = CodeDisplay; exports.ComingSoon = ComingSoon; exports.CommandMenu = CommandMenu; exports.ConfirmDismissDialog = ConfirmDismissDialog; exports.DEFAULT_DATA_URL_KEY = DEFAULT_DATA_URL_KEY; exports.DEFAULT_NULL_INDEX = DEFAULT_NULL_INDEX; exports.DefaultImage = DefaultImage; exports.DefaultLink = DefaultLink; exports.DefaultNavigate = DefaultNavigate; exports.DotsPattern = DotsPattern; exports.DownloadFile = DownloadFile; exports.ErrorComponents = ErrorComponents; exports.ExtraLink = ExtraLink; exports.FloatingPaths = FloatingPaths; exports.Grid = Grid; exports.GridBackground = GridBackground; exports.HexagonBadge = HexagonBadge; exports.Icons = Icons; exports.ImageInput = ImageInput; exports.LanguageSwitcher = LanguageSwitcher; exports.LayoutAuth = LayoutAuth; exports.LayoutBlank = LayoutBlank; exports.Logo = Logo; exports.MainNav = MainNav; exports.MaxWidthWrapper = MaxWidthWrapper; exports.MobileNav = MobileNav; exports.MobileNavItemRenderer = MobileNavItemRenderer; exports.ModeSwitcher = ModeSwitcher; exports.MovingBorder = MovingBorder; exports.MovingLabel = MovingLabel; exports.QueryProvider = QueryProvider; exports.RecaptchaPopover = RecaptchaPopover; exports.SatoshiFontCSS = SatoshiFontCSS; exports.ScreenLoader = ScreenLoader; exports.Section = Section; exports.SiteFooter = SiteFooter; exports.SiteHeader = SiteHeader; exports.Stack = Stack; exports.Subscribe = Subscribe; exports.ThemeProvider = ThemeProvider; exports.Toolbar = Toolbar; exports.ToolbarActions = ToolbarActions; exports.ToolbarHeading = ToolbarHeading; exports.ToolbarTitle = ToolbarTitle; exports.UserAvatar = UserAvatar; exports.Video = Video; exports.Wrapper = Wrapper; exports.Youtube = Youtube; exports.cssFontFace = cssFontFace; exports.getAcceptTypeString = getAcceptTypeString; exports.getBase64 = getBase64; exports.getImage = getImage; exports.getInitials = getInitials; exports.getListFiles = getListFiles; exports.handleMenuClick = handleMenuClick; exports.openFileDialog = openFileDialog; exports.satoshiFontUrl = satoshiFontUrl;
@@ -3,6 +3,7 @@ import * as React$1 from 'react';
3
3
  import React__default, { ReactNode, HTMLAttributes, ComponentProps, FC, DragEvent, RefObject } from 'react';
4
4
  import { B as BaseProps, L as Link, I as Image } from './components-CidsRcc3.cjs';
5
5
  import { DialogProps } from '@radix-ui/react-dialog';
6
+ import { QueryClient } from '@tanstack/react-query';
6
7
  import { ThemeProvider as ThemeProvider$1 } from 'next-themes';
7
8
  import { VariantProps } from 'class-variance-authority';
8
9
  import { b as badgeVariants } from './badge-BtI4BMea.cjs';
@@ -1450,7 +1451,8 @@ declare function MobileNavItemRenderer({ Link, navigate, item, pathname, level,
1450
1451
  * }
1451
1452
  * ```
1452
1453
  */
1453
- declare const QueryProvider: ({ children }: {
1454
+ declare const QueryProvider: ({ client: clientProps, children, }: {
1455
+ client?: QueryClient;
1454
1456
  children: ReactNode;
1455
1457
  }) => react_jsx_runtime.JSX.Element;
1456
1458
 
@@ -1907,6 +1909,16 @@ interface GridBackgroundProps {
1907
1909
  */
1908
1910
  declare const GridBackground: FC<GridBackgroundProps>;
1909
1911
 
1912
+ interface HexagonBadgeProps {
1913
+ children?: ReactNode;
1914
+ classNames?: {
1915
+ base?: string;
1916
+ svg?: string;
1917
+ wraper?: string;
1918
+ };
1919
+ }
1920
+ declare const HexagonBadge: ({ children, classNames }: HexagonBadgeProps) => react_jsx_runtime.JSX.Element;
1921
+
1910
1922
  /**
1911
1923
  * Props interface for icon components
1912
1924
  * Extends standard HTML SVG element attributes for full customization
@@ -2929,4 +2941,4 @@ interface RecaptchaPopoverProps {
2929
2941
  */
2930
2942
  declare function RecaptchaPopover({ open, onOpenChange, onVerify, trigger, verifyButtonText, }: RecaptchaPopoverProps): react_jsx_runtime.JSX.Element;
2931
2943
 
2932
- export { AlertComingsoon, AlertNotification, AlertToast, type AlertToastOptions, Announcement, AnnouncementTag, AnnouncementTitle, BackLink, BackgroundPaths, Body, Book, CodeDisplay, ComingSoon, type ComingSoonProps, CommandMenu, type CommandMenuProps, ConfirmDismissDialog, type ConfirmDismissDialogProps, DEFAULT_DATA_URL_KEY, DEFAULT_NULL_INDEX, DefaultImage, DefaultLink, DefaultNavigate, DotsPattern, DownloadFile, ErrorComponents, type ErrorComponentsProps, ExtraLink, FloatingPaths, Grid, GridBackground, Icons, ImageInput, type ImageInputFile, type ImageInputFiles, type ImageInputProps, LanguageSwitcher, type LanguageSwitcherProps, LayoutAuth, LayoutBlank, type LayoutBlankProps, type LocaleOption, Logo, MainNav, MaxWidthWrapper, MobileNav, MobileNavItemRenderer, ModeSwitcher, type ModeSwitcherProps, MovingBorder, MovingLabel, type NavItem, type NavigationProps, QueryProvider, RecaptchaPopover, SatoshiFontCSS, ScreenLoader, type ScreenLoaderProps, Section, type SharedImage, type SharedLink, type SharedNavigate, SiteFooter, SiteHeader, Stack, Subscribe, type SubscribeProps, ThemeProvider, Toolbar, ToolbarActions, ToolbarHeading, ToolbarTitle, UserAvatar, Video, Wrapper, Youtube, cssFontFace, getAcceptTypeString, getBase64, getImage, getInitials, getListFiles, handleMenuClick, openFileDialog, satoshiFontUrl };
2944
+ export { AlertComingsoon, AlertNotification, AlertToast, type AlertToastOptions, Announcement, AnnouncementTag, AnnouncementTitle, BackLink, BackgroundPaths, Body, Book, CodeDisplay, ComingSoon, type ComingSoonProps, CommandMenu, type CommandMenuProps, ConfirmDismissDialog, type ConfirmDismissDialogProps, DEFAULT_DATA_URL_KEY, DEFAULT_NULL_INDEX, DefaultImage, DefaultLink, DefaultNavigate, DotsPattern, DownloadFile, ErrorComponents, type ErrorComponentsProps, ExtraLink, FloatingPaths, Grid, GridBackground, HexagonBadge, Icons, ImageInput, type ImageInputFile, type ImageInputFiles, type ImageInputProps, LanguageSwitcher, type LanguageSwitcherProps, LayoutAuth, LayoutBlank, type LayoutBlankProps, type LocaleOption, Logo, MainNav, MaxWidthWrapper, MobileNav, MobileNavItemRenderer, ModeSwitcher, type ModeSwitcherProps, MovingBorder, MovingLabel, type NavItem, type NavigationProps, QueryProvider, RecaptchaPopover, SatoshiFontCSS, ScreenLoader, type ScreenLoaderProps, Section, type SharedImage, type SharedLink, type SharedNavigate, SiteFooter, SiteHeader, Stack, Subscribe, type SubscribeProps, ThemeProvider, Toolbar, ToolbarActions, ToolbarHeading, ToolbarTitle, UserAvatar, Video, Wrapper, Youtube, cssFontFace, getAcceptTypeString, getBase64, getImage, getInitials, getListFiles, handleMenuClick, openFileDialog, satoshiFontUrl };
@@ -3,6 +3,7 @@ import * as React$1 from 'react';
3
3
  import React__default, { ReactNode, HTMLAttributes, ComponentProps, FC, DragEvent, RefObject } from 'react';
4
4
  import { B as BaseProps, L as Link, I as Image } from './components-CidsRcc3.js';
5
5
  import { DialogProps } from '@radix-ui/react-dialog';
6
+ import { QueryClient } from '@tanstack/react-query';
6
7
  import { ThemeProvider as ThemeProvider$1 } from 'next-themes';
7
8
  import { VariantProps } from 'class-variance-authority';
8
9
  import { b as badgeVariants } from './badge-BtI4BMea.js';
@@ -1450,7 +1451,8 @@ declare function MobileNavItemRenderer({ Link, navigate, item, pathname, level,
1450
1451
  * }
1451
1452
  * ```
1452
1453
  */
1453
- declare const QueryProvider: ({ children }: {
1454
+ declare const QueryProvider: ({ client: clientProps, children, }: {
1455
+ client?: QueryClient;
1454
1456
  children: ReactNode;
1455
1457
  }) => react_jsx_runtime.JSX.Element;
1456
1458
 
@@ -1907,6 +1909,16 @@ interface GridBackgroundProps {
1907
1909
  */
1908
1910
  declare const GridBackground: FC<GridBackgroundProps>;
1909
1911
 
1912
+ interface HexagonBadgeProps {
1913
+ children?: ReactNode;
1914
+ classNames?: {
1915
+ base?: string;
1916
+ svg?: string;
1917
+ wraper?: string;
1918
+ };
1919
+ }
1920
+ declare const HexagonBadge: ({ children, classNames }: HexagonBadgeProps) => react_jsx_runtime.JSX.Element;
1921
+
1910
1922
  /**
1911
1923
  * Props interface for icon components
1912
1924
  * Extends standard HTML SVG element attributes for full customization
@@ -2929,4 +2941,4 @@ interface RecaptchaPopoverProps {
2929
2941
  */
2930
2942
  declare function RecaptchaPopover({ open, onOpenChange, onVerify, trigger, verifyButtonText, }: RecaptchaPopoverProps): react_jsx_runtime.JSX.Element;
2931
2943
 
2932
- export { AlertComingsoon, AlertNotification, AlertToast, type AlertToastOptions, Announcement, AnnouncementTag, AnnouncementTitle, BackLink, BackgroundPaths, Body, Book, CodeDisplay, ComingSoon, type ComingSoonProps, CommandMenu, type CommandMenuProps, ConfirmDismissDialog, type ConfirmDismissDialogProps, DEFAULT_DATA_URL_KEY, DEFAULT_NULL_INDEX, DefaultImage, DefaultLink, DefaultNavigate, DotsPattern, DownloadFile, ErrorComponents, type ErrorComponentsProps, ExtraLink, FloatingPaths, Grid, GridBackground, Icons, ImageInput, type ImageInputFile, type ImageInputFiles, type ImageInputProps, LanguageSwitcher, type LanguageSwitcherProps, LayoutAuth, LayoutBlank, type LayoutBlankProps, type LocaleOption, Logo, MainNav, MaxWidthWrapper, MobileNav, MobileNavItemRenderer, ModeSwitcher, type ModeSwitcherProps, MovingBorder, MovingLabel, type NavItem, type NavigationProps, QueryProvider, RecaptchaPopover, SatoshiFontCSS, ScreenLoader, type ScreenLoaderProps, Section, type SharedImage, type SharedLink, type SharedNavigate, SiteFooter, SiteHeader, Stack, Subscribe, type SubscribeProps, ThemeProvider, Toolbar, ToolbarActions, ToolbarHeading, ToolbarTitle, UserAvatar, Video, Wrapper, Youtube, cssFontFace, getAcceptTypeString, getBase64, getImage, getInitials, getListFiles, handleMenuClick, openFileDialog, satoshiFontUrl };
2944
+ export { AlertComingsoon, AlertNotification, AlertToast, type AlertToastOptions, Announcement, AnnouncementTag, AnnouncementTitle, BackLink, BackgroundPaths, Body, Book, CodeDisplay, ComingSoon, type ComingSoonProps, CommandMenu, type CommandMenuProps, ConfirmDismissDialog, type ConfirmDismissDialogProps, DEFAULT_DATA_URL_KEY, DEFAULT_NULL_INDEX, DefaultImage, DefaultLink, DefaultNavigate, DotsPattern, DownloadFile, ErrorComponents, type ErrorComponentsProps, ExtraLink, FloatingPaths, Grid, GridBackground, HexagonBadge, Icons, ImageInput, type ImageInputFile, type ImageInputFiles, type ImageInputProps, LanguageSwitcher, type LanguageSwitcherProps, LayoutAuth, LayoutBlank, type LayoutBlankProps, type LocaleOption, Logo, MainNav, MaxWidthWrapper, MobileNav, MobileNavItemRenderer, ModeSwitcher, type ModeSwitcherProps, MovingBorder, MovingLabel, type NavItem, type NavigationProps, QueryProvider, RecaptchaPopover, SatoshiFontCSS, ScreenLoader, type ScreenLoaderProps, Section, type SharedImage, type SharedLink, type SharedNavigate, SiteFooter, SiteHeader, Stack, Subscribe, type SubscribeProps, ThemeProvider, Toolbar, ToolbarActions, ToolbarHeading, ToolbarTitle, UserAvatar, Video, Wrapper, Youtube, cssFontFace, getAcceptTypeString, getBase64, getImage, getInitials, getListFiles, handleMenuClick, openFileDialog, satoshiFontUrl };