@julseb-lib/react 1.1.23 → 1.1.25

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/index.d.cts CHANGED
@@ -1,12 +1,12 @@
1
- import { c as LibColorsHover, ag as CssTextAlign, L as LibColors, a as LibColorsShort, b as LibAllColors, e as LibOverlays, f as LibAllColorsAndOverlays, l as LibSpacers, al as CssAlignContent, aj as CssAlignItems, ak as CssJustifyContent, ai as CssJustifyItems, F as LibMaxWidth, m as LibRadiuses, ao as CssObjectFit, v as LibButtonVariantExtended, k as LibShadows, ah as CssVerticalAlign, ae as DispatchState, a6 as TranslateLang, ab as ReactChildren, q as LibThemeNames, a8 as LibCountry, ac as ReactElement, t as LibLoaderVariant } from './global-HQSlLJiW.cjs';
2
- export { aw as designTokens } from './global-HQSlLJiW.cjs';
1
+ import { c as LibColorsHover, af as CssTextAlign, L as LibColors, a as LibColorsShort, b as LibAllColors, e as LibOverlays, f as LibAllColorsAndOverlays, k as LibSpacers, ak as CssAlignContent, ai as CssAlignItems, aj as CssJustifyContent, ah as CssJustifyItems, E as LibMaxWidth, l as LibRadiuses, an as CssObjectFit, u as LibButtonVariantExtended, j as LibShadows, ag as CssVerticalAlign, h as LibFontSizes, i as LibFontWeights, ad as DispatchState, a5 as TranslateLang, aa as ReactChildren, p as LibThemeNames, ac as FC$1, a7 as LibCountry, ab as ReactElement, s as LibLoaderVariant } from './global-CXiIaXyy.cjs';
2
+ export { av as designTokens } from './global-CXiIaXyy.cjs';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
4
  import { ClassNameValue } from 'tailwind-merge';
5
5
  import { LibMdEditorOptions } from './types/components-items-props.cjs';
6
6
  import { Components } from 'react-markdown';
7
7
  export { addDay, addMonth, addYear, calculateAverage, calculateTotalSum, capitalize, convertDate, convertDateShort, convertPrice, convertTime, convertToEmail, convertYoutube, decrypt, deleteDuplicates, emailRegex, encrypt, filterObject, formatDate, formatHour, generateNumbers, getFirstName, getInitials, getLastName, getNextDay, getPercentage, getRandom, getRandomAvatar, getRandomDate, getRandomNumber, getRandomString, getRandomTime, getTimeNow, getToday, getTomorrow, getYesterday, hexToRgb, passwordRegex, rgbToHex, slugify, sortByFrequency, stringifyPx, toCamelCase, toConstantCase, toDotCase, toKebabCase, toPascalCase, toPathCase, toSentenceCase, toSnakeCase, toTitleCase, unslugify, uuid } from '@julseb-lib/utils';
8
8
  import * as react from 'react';
9
- import { RefObject, ChangeEvent, RefCallback, Ref, FC as FC$1 } from 'react';
9
+ import { RefObject, ChangeEvent, RefCallback, Ref, FC as FC$2 } from 'react';
10
10
  import { ILibText, ILibWrapper, ILibMain, ILibAside, ILibSection, ILibGrid, ILibFlexbox, ILibKey, ILibHighlight, ILibLinkify, ILibHr, ILibSkeleton, ILibSkeletonCard, ILibTooltip, ILibImage, ILibLazyImage, ILibMasonry, ILibBadge, ILibAvatar, ILibLoader, ILibBurger, ILibButton, ILibButtonIcon, ILibButtonGroup, ILibTag, ILibInputContainer, ILibInput, ILibInputImage, ILibInputCheck, ILibInputPhone, ILibInputCounter, ILibInputSlider, ILibSelect, ILibAutocomplete, ILibRating, ILibInputPin, ILibFieldset, ILibForm, ILibListGroup, ILibListGroupTitle, ILibListGroupItem, ILibBreadcrumbs, ILibAccordion, ILibAccordionItem, ILibDropdown, ILibDropdownItem, ILibToast, ILibAlert, ILibModal, ILibDragList, ILibDragListItem, ILibPagination, ILibPaginationButton, ILibPaginator, ILibProgressBar, ILibProgressCircle, ILibTabs, ILibTabsContainer, ILibTabsButtonsContainer, ILibTabsButton, ILibTabsContent, ILibSlideshow, ILibCarousel, ILibCover, ILibTable, ILibPageLoading, ILibSticky, ILibMarkdownEditor, ILibMarkdownContainer, ILibCodeContainer, ILibFade, ILibBackToTop, ILibDrawer, ILibHeader, ILibFooter, ILibMeta, ILibPageLayout, ILibSrOnly } from './types/components-props.cjs';
11
11
  import * as react_toastify from 'react-toastify';
12
12
  import { ToastContainerProps, ToastOptions } from 'react-toastify';
@@ -154,6 +154,10 @@ declare function enableScroll(): void;
154
154
  */
155
155
  declare function scrollToTop(): void;
156
156
 
157
+ declare const genFontSize: Record<LibFontSizes, string>;
158
+
159
+ declare const genFontWeight: Record<LibFontWeights, string>;
160
+
157
161
  /**
158
162
  * Hook to trigger a function when clicking outside a referenced element.
159
163
  *
@@ -556,7 +560,7 @@ declare const usePagination: ({ currentPage, setCurrentPage, totalPages, }: ILib
556
560
  */
557
561
  declare const useTextLineCount: (text: string, fontSize?: number) => {
558
562
  visualLines: number;
559
- elementRef: react.RefObject<HTMLInputElement | HTMLTextAreaElement | null>;
563
+ elementRef: react.RefObject<HTMLTextAreaElement | HTMLInputElement | null>;
560
564
  };
561
565
 
562
566
  /**
@@ -831,6 +835,22 @@ declare const ThemeProviderWrapper: ({ children, defaultTheme, }: ILibThemeProvi
831
835
  */
832
836
  declare const useLibTheme: () => ILibThemeContext;
833
837
 
838
+ type ILibModalOpenContext = {
839
+ hasModalOpen: boolean;
840
+ setHasModalOpen: DispatchState<boolean>;
841
+ };
842
+ declare const ModalOpenProviderWrapper: FC$1<{
843
+ children: ReactChildren;
844
+ }>;
845
+ /**
846
+ * Custom hook to know if there is a modal open inside our app, and set `z-index` accordingly when needed
847
+ *
848
+ * @returns {ILibModalOpenContext} If there is a modal open, and a switch to set a modal as open or not
849
+ * @example
850
+ * const { hasModalOpen, setHasModalOpen } = useModalOpen()
851
+ */
852
+ declare const useModalOpen: () => ILibModalOpenContext;
853
+
834
854
  declare const TEXT_BASE_CLASSES: string;
835
855
  /**
836
856
  * Text component for rendering semantic HTML text elements with consistent styles.
@@ -854,8 +874,10 @@ declare const TEXT_BASE_CLASSES: string;
854
874
  * @prop {string} [props.color="currentColor"] - Any color from the library.
855
875
  * @prop {"red"|"orange"|"amber"|"yellow"|"lime"|"green"|"emerald"|"teal"|"cyan"|"sky"|"blue"|"indigo"|"violet"|"purple"|"fuchsia"|"pink"|"rose"|"slate"} [props.linkColor="blue"] - Any hover color.
856
876
  * @prop {"text-left"|"text-center"|"text-right"|"text-justify"|"text-start"|"text-end"} [props.textAlign="left"] - Text alignment.
857
- * @prop {boolean} [props.display=false] - Whether to use display block.
877
+ * @prop {boolean} [props.display=false] - Whether to use display text, available only for titles from h1 to h5.
858
878
  * @prop {string} [props.className] - Additional class names to apply.
879
+ * @prop {"thin"|"light"|"normal"|"bold"|"black"} [props.fontWeight] - Font weight of the text. Accepts: thin (100), light (300), normal (400), bold (700), black (900).
880
+ * @prop {"xs"|"sm"|"base"|"lg"|"xl"|"2xl"|"3xl"|"4xl"|"5xl"|"6xl"|"7xl"|"8xl"|"9xl"|"display-h1"|"display-h2"|"display-h3"|"display-h4"|"display-h5"|"h1"|"h2"|"h3"|"h4"|"h5"|"h6"|"body"|"small"} [props.fontSize] - Font size of the text. Accepts Tailwind and theme sizes: xs, sm, base, lg, xl, 2xl, 3xl, 4xl, 5xl, 6xl, 7xl, 8xl, 9xl, display-h1, display-h2, display-h3, display-h4, display-h5, h1, h2, h3, h4, h5, h6, body, small.
859
881
  * @prop {RefObject<any>} [props.ref] - Ref for the rendered element.
860
882
  * @prop {ReactNode} props.children - Text content.
861
883
  * @prop {object} [props.rest] - Additional props spread to the rendered element.
@@ -864,7 +886,7 @@ declare const TEXT_BASE_CLASSES: string;
864
886
  *
865
887
  * @see https://doc-julseb-lib-react.vercel.app/styles/text
866
888
  */
867
- declare const Text: FC$1<ILibText>;
889
+ declare const Text: FC$2<ILibText>;
868
890
 
869
891
  /**
870
892
  * Wrapper component for providing a responsive layout container.
@@ -891,7 +913,7 @@ declare const Text: FC$1<ILibText>;
891
913
  *
892
914
  * @see https://doc-julseb-lib-react.vercel.app/styles/wrapper
893
915
  */
894
- declare const Wrapper: FC$1<ILibWrapper>;
916
+ declare const Wrapper: FC$2<ILibWrapper>;
895
917
 
896
918
  /**
897
919
  * Main component for rendering the primary content area.
@@ -917,7 +939,7 @@ declare const Wrapper: FC$1<ILibWrapper>;
917
939
  *
918
940
  * @see https://doc-julseb-lib-react.vercel.app/styles/main
919
941
  */
920
- declare const Main: FC$1<ILibMain>;
942
+ declare const Main: FC$2<ILibMain>;
921
943
 
922
944
  /**
923
945
  * Aside component for rendering a sidebar or secondary content area.
@@ -941,7 +963,7 @@ declare const Main: FC$1<ILibMain>;
941
963
  *
942
964
  * @see https://doc-julseb-lib-react.vercel.app/styles/aside
943
965
  */
944
- declare const Aside: FC$1<ILibAside>;
966
+ declare const Aside: FC$2<ILibAside>;
945
967
 
946
968
  /**
947
969
  * Section component for grouping related content in a flexible layout.
@@ -965,7 +987,7 @@ declare const Aside: FC$1<ILibAside>;
965
987
  *
966
988
  * @see https://doc-julseb-lib-react.vercel.app/layouts/section
967
989
  */
968
- declare const Section: FC$1<ILibSection>;
990
+ declare const Section: FC$2<ILibSection>;
969
991
 
970
992
  /**
971
993
  * Grid component for flexible CSS grid layouts.
@@ -998,7 +1020,7 @@ declare const Section: FC$1<ILibSection>;
998
1020
  *
999
1021
  * @see https://doc-julseb-lib-react.vercel.app/layouts/grid
1000
1022
  */
1001
- declare const Grid: FC$1<ILibGrid>;
1023
+ declare const Grid: FC$2<ILibGrid>;
1002
1024
 
1003
1025
  /**
1004
1026
  * Flexbox component for flexible layouts using CSS flexbox.
@@ -1031,7 +1053,7 @@ declare const Grid: FC$1<ILibGrid>;
1031
1053
  *
1032
1054
  * @see https://doc-julseb-lib-react.vercel.app/layouts/flexbox
1033
1055
  */
1034
- declare const Flexbox: FC$1<ILibFlexbox>;
1056
+ declare const Flexbox: FC$2<ILibFlexbox>;
1035
1057
 
1036
1058
  /**
1037
1059
  * Key component for displaying keyboard keys or shortcuts.
@@ -1050,7 +1072,7 @@ declare const Flexbox: FC$1<ILibFlexbox>;
1050
1072
  *
1051
1073
  * @see https://doc-julseb-lib-react.vercel.app/layouts/key
1052
1074
  */
1053
- declare const Key: FC$1<ILibKey>;
1075
+ declare const Key: FC$2<ILibKey>;
1054
1076
 
1055
1077
  /**
1056
1078
  * Highlight component for emphasizing parts of text.
@@ -1068,7 +1090,7 @@ declare const Key: FC$1<ILibKey>;
1068
1090
  *
1069
1091
  * @see https://doc-julseb-lib-react.vercel.app/layouts/highlight
1070
1092
  */
1071
- declare const Highlight: FC$1<ILibHighlight>;
1093
+ declare const Highlight: FC$2<ILibHighlight>;
1072
1094
 
1073
1095
  /**
1074
1096
  * Linkify component that automatically detects URLs in the provided text and wraps them in anchor tags.
@@ -1094,7 +1116,7 @@ declare const Highlight: FC$1<ILibHighlight>;
1094
1116
  *
1095
1117
  * @see https://doc-julseb-lib-react.vercel.app/components/linkify
1096
1118
  */
1097
- declare const Linkify: FC$1<ILibLinkify>;
1119
+ declare const Linkify: FC$2<ILibLinkify>;
1098
1120
 
1099
1121
  /**
1100
1122
  * Hr component for rendering a horizontal rule with custom color, width, and border radius.
@@ -1114,7 +1136,7 @@ declare const Linkify: FC$1<ILibLinkify>;
1114
1136
  *
1115
1137
  * @see https://doc-julseb-lib-react.vercel.app/components/hr
1116
1138
  */
1117
- declare const Hr: FC$1<ILibHr>;
1139
+ declare const Hr: FC$2<ILibHr>;
1118
1140
 
1119
1141
  /**
1120
1142
  * Skeleton component for displaying a loading placeholder.
@@ -1133,7 +1155,7 @@ declare const Hr: FC$1<ILibHr>;
1133
1155
  *
1134
1156
  * @see https://doc-julseb-lib-react.vercel.app/layouts/skeleton
1135
1157
  */
1136
- declare const Skeleton: FC$1<ILibSkeleton>;
1158
+ declare const Skeleton: FC$2<ILibSkeleton>;
1137
1159
 
1138
1160
  /**
1139
1161
  * SkeletonCard component for displaying a loading placeholder in the shape of a card.
@@ -1203,7 +1225,7 @@ declare const SkeletonCard: FC<ILibSkeletonCard>;
1203
1225
  *
1204
1226
  * @see https://doc-julseb-lib-react.vercel.app/components/tooltip
1205
1227
  */
1206
- declare const Tooltip: FC$1<ILibTooltip>;
1228
+ declare const Tooltip: FC$2<ILibTooltip>;
1207
1229
 
1208
1230
  /**
1209
1231
  * Image component for displaying images with optional styling, captions, and accessibility features.
@@ -1225,7 +1247,7 @@ declare const Tooltip: FC$1<ILibTooltip>;
1225
1247
  *
1226
1248
  * @see https://doc-julseb-lib-react.vercel.app/layouts/image
1227
1249
  */
1228
- declare const Image: FC$1<ILibImage>;
1250
+ declare const Image: FC$2<ILibImage>;
1229
1251
 
1230
1252
  /**
1231
1253
  * LazyImage component for lazy-loading images with a skeleton placeholder.
@@ -1253,7 +1275,7 @@ declare const Image: FC$1<ILibImage>;
1253
1275
  *
1254
1276
  * @see https://doc-julseb-lib-react.vercel.app/components/lazy-image
1255
1277
  */
1256
- declare const LazyImage: FC$1<ILibLazyImage>;
1278
+ declare const LazyImage: FC$2<ILibLazyImage>;
1257
1279
 
1258
1280
  /**
1259
1281
  * Masonry component for displaying content in a responsive masonry grid layout.
@@ -1282,7 +1304,7 @@ declare const LazyImage: FC$1<ILibLazyImage>;
1282
1304
  *
1283
1305
  * @see https://doc-julseb-lib-react.vercel.app/components/masonry
1284
1306
  */
1285
- declare const Masonry: FC$1<ILibMasonry>;
1307
+ declare const Masonry: FC$2<ILibMasonry>;
1286
1308
 
1287
1309
  /**
1288
1310
  * Badge component for displaying a colored label or status.
@@ -1307,7 +1329,7 @@ declare const Masonry: FC$1<ILibMasonry>;
1307
1329
  *
1308
1330
  * @see https://doc-julseb-lib-react.vercel.app/components/badge
1309
1331
  */
1310
- declare const Badge: FC$1<ILibBadge>;
1332
+ declare const Badge: FC$2<ILibBadge>;
1311
1333
 
1312
1334
  /**
1313
1335
  * Avatar component for displaying a user image, initials, or icon, with optional badge and custom styles.
@@ -1336,7 +1358,7 @@ declare const Badge: FC$1<ILibBadge>;
1336
1358
  *
1337
1359
  * @see https://doc-julseb-lib-react.vercel.app/components/avatar
1338
1360
  */
1339
- declare const Avatar: FC$1<ILibAvatar>;
1361
+ declare const Avatar: FC$2<ILibAvatar>;
1340
1362
 
1341
1363
  /**
1342
1364
  * Loader component for displaying a loading indicator with multiple style variants and color options.
@@ -1359,7 +1381,7 @@ declare const Avatar: FC$1<ILibAvatar>;
1359
1381
  *
1360
1382
  * @see https://doc-julseb-lib-react.vercel.app/components/loader
1361
1383
  */
1362
- declare const Loader: FC$1<ILibLoader>;
1384
+ declare const Loader: FC$2<ILibLoader>;
1363
1385
 
1364
1386
  /**
1365
1387
  * Burger component for displaying a hamburger menu icon with open/closed states and hover effects.
@@ -1390,7 +1412,7 @@ declare const Loader: FC$1<ILibLoader>;
1390
1412
  *
1391
1413
  * @see https://doc-julseb-lib-react.vercel.app/components/burger
1392
1414
  */
1393
- declare const Burger: FC$1<ILibBurger>;
1415
+ declare const Burger: FC$2<ILibBurger>;
1394
1416
 
1395
1417
  /**
1396
1418
  * Button component for user interactions with multiple variants, colors, and loading states.
@@ -1418,7 +1440,7 @@ declare const Burger: FC$1<ILibBurger>;
1418
1440
  *
1419
1441
  * @see https://doc-julseb-lib-react.vercel.app/components/button
1420
1442
  */
1421
- declare const Button: FC$1<ILibButton>;
1443
+ declare const Button: FC$2<ILibButton>;
1422
1444
 
1423
1445
  /**
1424
1446
  * ButtonIcon component for displaying an icon button with optional tooltip and loading states.
@@ -1458,7 +1480,7 @@ declare const Button: FC$1<ILibButton>;
1458
1480
  *
1459
1481
  * @see https://doc-julseb-lib-react.vercel.app/components/button-icon
1460
1482
  */
1461
- declare const ButtonIcon: FC$1<ILibButtonIcon>;
1483
+ declare const ButtonIcon: FC$2<ILibButtonIcon>;
1462
1484
 
1463
1485
  /**
1464
1486
  * ButtonGroup component for displaying a group of related buttons with consistent styling and optional separators.
@@ -1492,7 +1514,7 @@ declare const ButtonIcon: FC$1<ILibButtonIcon>;
1492
1514
  *
1493
1515
  * @see https://doc-julseb-lib-react.vercel.app/components/button-group
1494
1516
  */
1495
- declare const ButtonGroup: FC$1<ILibButtonGroup>;
1517
+ declare const ButtonGroup: FC$2<ILibButtonGroup>;
1496
1518
 
1497
1519
  /**
1498
1520
  * Tag component for displaying labeled content with customizable colors, variants, and styling options.
@@ -1522,7 +1544,7 @@ declare const ButtonGroup: FC$1<ILibButtonGroup>;
1522
1544
  *
1523
1545
  * @see https://doc-julseb-lib-react.vercel.app/components/tag
1524
1546
  */
1525
- declare const Tag: FC$1<ILibTag>;
1547
+ declare const Tag: FC$2<ILibTag>;
1526
1548
 
1527
1549
  /**
1528
1550
  * InputContainer component for wrapping input elements with labels, helper text, validation messages, and character counters.
@@ -1560,7 +1582,7 @@ declare const Tag: FC$1<ILibTag>;
1560
1582
  *
1561
1583
  * @see https://doc-julseb-lib-react.vercel.app/components/input
1562
1584
  */
1563
- declare const InputContainer: FC$1<ILibInputContainer>;
1585
+ declare const InputContainer: FC$2<ILibInputContainer>;
1564
1586
 
1565
1587
  /**
1566
1588
  * Input component with multiple types and variants for form data collection.
@@ -1602,7 +1624,7 @@ declare const InputContainer: FC$1<ILibInputContainer>;
1602
1624
  *
1603
1625
  * @see https://doc-julseb-lib-react.vercel.app/components/input
1604
1626
  */
1605
- declare const Input: FC$1<ILibInput>;
1627
+ declare const Input: FC$2<ILibInput>;
1606
1628
 
1607
1629
  /**
1608
1630
  * InputImage component for uploading and displaying image files with hover interactions and validation states.
@@ -1638,7 +1660,7 @@ declare const Input: FC$1<ILibInput>;
1638
1660
  *
1639
1661
  * @see https://doc-julseb-lib-react.vercel.app/components/input-image
1640
1662
  */
1641
- declare const InputImage: FC$1<ILibInputImage>;
1663
+ declare const InputImage: FC$2<ILibInputImage>;
1642
1664
 
1643
1665
  /**
1644
1666
  * InputCheck component for creating interactive checkbox, radio, and toggle inputs with multiple visual variants.
@@ -1675,7 +1697,7 @@ declare const InputImage: FC$1<ILibInputImage>;
1675
1697
  *
1676
1698
  * @see https://doc-julseb-lib-react.vercel.app/components/input-check
1677
1699
  */
1678
- declare const InputCheck: FC$1<ILibInputCheck>;
1700
+ declare const InputCheck: FC$2<ILibInputCheck>;
1679
1701
 
1680
1702
  /**
1681
1703
  * InputPhone component for phone number input with country selection dropdown and search functionality.
@@ -1718,7 +1740,7 @@ declare const InputCheck: FC$1<ILibInputCheck>;
1718
1740
  *
1719
1741
  * @see https://doc-julseb-lib-react.vercel.app/components/input-phone
1720
1742
  */
1721
- declare const InputPhone: FC$1<ILibInputPhone>;
1743
+ declare const InputPhone: FC$2<ILibInputPhone>;
1722
1744
 
1723
1745
  declare const countries: Array<LibCountry>;
1724
1746
 
@@ -1773,7 +1795,7 @@ declare const countries: Array<LibCountry>;
1773
1795
  *
1774
1796
  * @see https://doc-julseb-lib-react.vercel.app/components/input-counter
1775
1797
  */
1776
- declare const InputCounter: FC$1<ILibInputCounter>;
1798
+ declare const InputCounter: FC$2<ILibInputCounter>;
1777
1799
 
1778
1800
  /**
1779
1801
  * InputSlider component for creating range input sliders with customizable appearance, tooltips, and min/max value display.
@@ -1812,7 +1834,7 @@ declare const InputCounter: FC$1<ILibInputCounter>;
1812
1834
  *
1813
1835
  * @see https://doc-julseb-lib-react.vercel.app/components/input-slider
1814
1836
  */
1815
- declare const InputSlider: FC$1<ILibInputSlider>;
1837
+ declare const InputSlider: FC$2<ILibInputSlider>;
1816
1838
 
1817
1839
  /**
1818
1840
  * Select component for creating dropdown selection inputs with keyboard navigation, validation states, and customizable styling.
@@ -1853,7 +1875,7 @@ declare const InputSlider: FC$1<ILibInputSlider>;
1853
1875
  *
1854
1876
  * @see https://doc-julseb-lib-react.vercel.app/components/select
1855
1877
  */
1856
- declare const Select: FC$1<ILibSelect>;
1878
+ declare const Select: FC$2<ILibSelect>;
1857
1879
 
1858
1880
  /**
1859
1881
  * Autocomplete component for text input with fuzzy search functionality, keyboard navigation, and customizable dropdown results.
@@ -1899,7 +1921,7 @@ declare const Select: FC$1<ILibSelect>;
1899
1921
  *
1900
1922
  * @see https://doc-julseb-lib-react.vercel.app/components/autocomplete
1901
1923
  */
1902
- declare const Autocomplete: FC$1<ILibAutocomplete>;
1924
+ declare const Autocomplete: FC$2<ILibAutocomplete>;
1903
1925
 
1904
1926
  /**
1905
1927
  * Rating component for displaying and selecting star ratings with customizable icons, read-only mode, and validation states.
@@ -1941,7 +1963,7 @@ declare const Autocomplete: FC$1<ILibAutocomplete>;
1941
1963
  *
1942
1964
  * @see https://doc-julseb-lib-react.vercel.app/components/rating
1943
1965
  */
1944
- declare const Rating: FC$1<ILibRating>;
1966
+ declare const Rating: FC$2<ILibRating>;
1945
1967
 
1946
1968
  /**
1947
1969
  * InputPin component for creating PIN code or verification code inputs with multiple individual input fields.
@@ -1979,7 +2001,7 @@ declare const Rating: FC$1<ILibRating>;
1979
2001
  *
1980
2002
  * @see https://doc-julseb-lib-react.vercel.app/components/input-pin
1981
2003
  */
1982
- declare const InputPin: FC$1<ILibInputPin>;
2004
+ declare const InputPin: FC$2<ILibInputPin>;
1983
2005
 
1984
2006
  /**
1985
2007
  * Fieldset component for grouping related form controls with a legend, validation states, and customizable styling.
@@ -2017,7 +2039,7 @@ declare const InputPin: FC$1<ILibInputPin>;
2017
2039
  *
2018
2040
  * @see https://doc-julseb-lib-react.vercel.app/components/fieldset
2019
2041
  */
2020
- declare const Fieldset: FC$1<ILibFieldset>;
2042
+ declare const Fieldset: FC$2<ILibFieldset>;
2021
2043
 
2022
2044
  /**
2023
2045
  * Form component for creating forms with built-in submit and secondary action buttons, loading states, and validation support.
@@ -2051,7 +2073,7 @@ declare const Fieldset: FC$1<ILibFieldset>;
2051
2073
  *
2052
2074
  * @see https://doc-julseb-lib-react.vercel.app/components/form
2053
2075
  */
2054
- declare const Form: FC$1<ILibForm>;
2076
+ declare const Form: FC$2<ILibForm>;
2055
2077
 
2056
2078
  /**
2057
2079
  * ListGroup component for displaying a structured list of items with optional title, numbering, and separators.
@@ -2083,7 +2105,7 @@ declare const Form: FC$1<ILibForm>;
2083
2105
  *
2084
2106
  * @see https://doc-julseb-lib-react.vercel.app/components/list-group
2085
2107
  */
2086
- declare const ListGroup: FC$1<ILibListGroup>;
2108
+ declare const ListGroup: FC$2<ILibListGroup>;
2087
2109
 
2088
2110
  /**
2089
2111
  * ListGroupTitle component for rendering a styled header/title for list groups with optional fixed positioning and shadow effects.
@@ -2114,7 +2136,7 @@ declare const ListGroup: FC$1<ILibListGroup>;
2114
2136
  *
2115
2137
  * @see https://doc-julseb-lib-react.vercel.app/components/list-group
2116
2138
  */
2117
- declare const ListGroupTitle: FC$1<ILibListGroupTitle>;
2139
+ declare const ListGroupTitle: FC$2<ILibListGroupTitle>;
2118
2140
 
2119
2141
  /**
2120
2142
  * ListGroupItem component for rendering individual items within a list group with optional numbering, content, and separators.
@@ -2145,7 +2167,7 @@ declare const ListGroupTitle: FC$1<ILibListGroupTitle>;
2145
2167
  *
2146
2168
  * @see https://doc-julseb-lib-react.vercel.app/components/list-group
2147
2169
  */
2148
- declare const ListGroupItem: FC$1<ILibListGroupItem>;
2170
+ declare const ListGroupItem: FC$2<ILibListGroupItem>;
2149
2171
 
2150
2172
  /**
2151
2173
  * Breadcrumbs component for displaying navigational breadcrumb trails.
@@ -2175,7 +2197,7 @@ declare const ListGroupItem: FC$1<ILibListGroupItem>;
2175
2197
  *
2176
2198
  * @see https://doc-julseb-lib-react.vercel.app/components/breadcrumbs
2177
2199
  */
2178
- declare const Breadcrumbs: FC$1<ILibBreadcrumbs>;
2200
+ declare const Breadcrumbs: FC$2<ILibBreadcrumbs>;
2179
2201
 
2180
2202
  /**
2181
2203
  * Accordion component for creating collapsible content sections with customizable styling and expandable items.
@@ -2205,7 +2227,7 @@ declare const Breadcrumbs: FC$1<ILibBreadcrumbs>;
2205
2227
  *
2206
2228
  * @see https://doc-julseb-lib-react.vercel.app/components/accordion
2207
2229
  */
2208
- declare const Accordion: FC$1<ILibAccordion>;
2230
+ declare const Accordion: FC$2<ILibAccordion>;
2209
2231
 
2210
2232
  /**
2211
2233
  * AccordionItem component for creating individual collapsible sections with title, content, and customizable styling.
@@ -2233,7 +2255,7 @@ declare const Accordion: FC$1<ILibAccordion>;
2233
2255
  *
2234
2256
  * @see https://doc-julseb-lib-react.vercel.app/components/accordion
2235
2257
  */
2236
- declare const AccordionItem: FC$1<ILibAccordionItem>;
2258
+ declare const AccordionItem: FC$2<ILibAccordionItem>;
2237
2259
 
2238
2260
  /**
2239
2261
  * Dropdown component for creating contextual menus and popover content with customizable positioning and animations.
@@ -2269,7 +2291,7 @@ declare const AccordionItem: FC$1<ILibAccordionItem>;
2269
2291
  *
2270
2292
  * @see https://doc-julseb-lib-react.vercel.app/components/dropdown
2271
2293
  */
2272
- declare const Dropdown: FC$1<ILibDropdown>;
2294
+ declare const Dropdown: FC$2<ILibDropdown>;
2273
2295
 
2274
2296
  /**
2275
2297
  * DropdownItem component for rendering individual items within dropdown menus with hover states and customizable content.
@@ -2294,7 +2316,7 @@ declare const Dropdown: FC$1<ILibDropdown>;
2294
2316
  *
2295
2317
  * @see https://doc-julseb-lib-react.vercel.app/components/dropdown
2296
2318
  */
2297
- declare const DropdownItem: FC$1<ILibDropdownItem>;
2319
+ declare const DropdownItem: FC$2<ILibDropdownItem>;
2298
2320
 
2299
2321
  /**
2300
2322
  * Toast component for displaying temporary notification messages with different status types and optional close functionality.
@@ -2326,7 +2348,7 @@ declare const DropdownItem: FC$1<ILibDropdownItem>;
2326
2348
  *
2327
2349
  * @see https://doc-julseb-lib-react.vercel.app/components/toast
2328
2350
  */
2329
- declare const Toast: FC$1<ILibToast>;
2351
+ declare const Toast: FC$2<ILibToast>;
2330
2352
 
2331
2353
  /**
2332
2354
  * ToastContainer component for managing and displaying toast notifications with customizable positioning and behavior.
@@ -2359,7 +2381,7 @@ declare const Toast: FC$1<ILibToast>;
2359
2381
  *
2360
2382
  * @see https://doc-julseb-lib-react.vercel.app/components/toast
2361
2383
  */
2362
- declare const ToastContainer: FC$1<ToastContainerProps>;
2384
+ declare const ToastContainer: FC$2<ToastContainerProps>;
2363
2385
 
2364
2386
  /**
2365
2387
  * Toast utility functions for displaying different types of notification messages with customizable options and automatic styling.
@@ -2441,7 +2463,7 @@ declare const toast: {
2441
2463
  *
2442
2464
  * @see https://doc-julseb-lib-react.vercel.app/components/alert
2443
2465
  */
2444
- declare const Alert: FC$1<ILibAlert>;
2466
+ declare const Alert: FC$2<ILibAlert>;
2445
2467
 
2446
2468
  /**
2447
2469
  * Modal component for displaying overlay content with backdrop, close functionality, and keyboard navigation support.
@@ -2472,12 +2494,13 @@ declare const Alert: FC$1<ILibAlert>;
2472
2494
  * @prop {boolean} [props.hideCloseButton] - Whether to hide the close button in the modal.
2473
2495
  * @prop {React.ReactNode} [props.closeIcon=<BiX size={32} />] - Custom close icon for the modal.
2474
2496
  * @prop {string} [props.labelClose="Close modal"] - Aria label for the close button.
2497
+ * @prop {boolean} [props.enableScrollWhenOpen] - Enable page scrolling when modal is open.
2475
2498
  *
2476
2499
  * @returns {JSX.Element} The rendered Modal component.
2477
2500
  *
2478
2501
  * @see https://doc-julseb-lib-react.vercel.app/components/modal
2479
2502
  */
2480
- declare const Modal: FC$1<ILibModal>;
2503
+ declare const Modal: FC$2<ILibModal>;
2481
2504
 
2482
2505
  /**
2483
2506
  * DragList component for creating draggable and reorderable lists with customizable items and separators.
@@ -2508,7 +2531,7 @@ declare const Modal: FC$1<ILibModal>;
2508
2531
  *
2509
2532
  * @see https://doc-julseb-lib-react.vercel.app/components/drag-list
2510
2533
  */
2511
- declare const DragList: FC$1<ILibDragList>;
2534
+ declare const DragList: FC$2<ILibDragList>;
2512
2535
 
2513
2536
  /**
2514
2537
  * DragListItem component for rendering individual draggable items within a drag list with drag handles and content.
@@ -2542,7 +2565,7 @@ declare const DragList: FC$1<ILibDragList>;
2542
2565
  *
2543
2566
  * @see https://doc-julseb-lib-react.vercel.app/components/drag-list
2544
2567
  */
2545
- declare const DragListItem: FC$1<ILibDragListItem>;
2568
+ declare const DragListItem: FC$2<ILibDragListItem>;
2546
2569
 
2547
2570
  /**
2548
2571
  * Pagination component for navigating through multiple pages of content with customizable styling and navigation controls.
@@ -2577,7 +2600,7 @@ declare const DragListItem: FC$1<ILibDragListItem>;
2577
2600
  *
2578
2601
  * @see https://doc-julseb-lib-react.vercel.app/components/pagination
2579
2602
  */
2580
- declare const Pagination: FC$1<ILibPagination>;
2603
+ declare const Pagination: FC$2<ILibPagination>;
2581
2604
 
2582
2605
  /**
2583
2606
  * PaginationButton component for rendering individual page navigation buttons with active states and styling.
@@ -2607,7 +2630,7 @@ declare const Pagination: FC$1<ILibPagination>;
2607
2630
  *
2608
2631
  * @see https://doc-julseb-lib-react.vercel.app/components/pagination
2609
2632
  */
2610
- declare const PaginationButton: FC$1<ILibPaginationButton>;
2633
+ declare const PaginationButton: FC$2<ILibPaginationButton>;
2611
2634
 
2612
2635
  /**
2613
2636
  * Paginator component for simple page navigation with input field and next/previous buttons.
@@ -2650,7 +2673,7 @@ declare const PaginationButton: FC$1<ILibPaginationButton>;
2650
2673
  *
2651
2674
  * @see https://doc-julseb-lib-react.vercel.app/components/paginator
2652
2675
  */
2653
- declare const Paginator: FC$1<ILibPaginator>;
2676
+ declare const Paginator: FC$2<ILibPaginator>;
2654
2677
 
2655
2678
  /**
2656
2679
  * ProgressBar component for displaying progress with customizable colors and animations using a meter element.
@@ -2679,7 +2702,7 @@ declare const Paginator: FC$1<ILibPaginator>;
2679
2702
  *
2680
2703
  * @see https://doc-julseb-lib-react.vercel.app/components/progress-bar
2681
2704
  */
2682
- declare const ProgressBar: FC$1<ILibProgressBar>;
2705
+ declare const ProgressBar: FC$2<ILibProgressBar>;
2683
2706
 
2684
2707
  /**
2685
2708
  * ProgressCircle component for displaying circular progress with customizable colors and smooth animations using SVG.
@@ -2711,7 +2734,7 @@ declare const ProgressBar: FC$1<ILibProgressBar>;
2711
2734
  *
2712
2735
  * @see https://doc-julseb-lib-react.vercel.app/components/progress-circle
2713
2736
  */
2714
- declare const ProgressCircle: FC$1<ILibProgressCircle>;
2737
+ declare const ProgressCircle: FC$2<ILibProgressCircle>;
2715
2738
 
2716
2739
  /**
2717
2740
  * Tabs component for creating tabbed interfaces with automatic state management and customizable styling.
@@ -2746,7 +2769,7 @@ declare const ProgressCircle: FC$1<ILibProgressCircle>;
2746
2769
  *
2747
2770
  * @see https://doc-julseb-lib-react.vercel.app/components/tabs
2748
2771
  */
2749
- declare const Tabs: FC$1<ILibTabs>;
2772
+ declare const Tabs: FC$2<ILibTabs>;
2750
2773
 
2751
2774
  /**
2752
2775
  * TabsContainer component for wrapping tab navigation and content panels with customizable styling.
@@ -2774,7 +2797,7 @@ declare const Tabs: FC$1<ILibTabs>;
2774
2797
  *
2775
2798
  * @see https://doc-julseb-lib-react.vercel.app/components/tabs
2776
2799
  */
2777
- declare const TabsContainer: FC$1<ILibTabsContainer>;
2800
+ declare const TabsContainer: FC$2<ILibTabsContainer>;
2778
2801
 
2779
2802
  /**
2780
2803
  * TabsButtonsContainer component for wrapping tab navigation buttons with customizable layout and styling.
@@ -2801,7 +2824,7 @@ declare const TabsContainer: FC$1<ILibTabsContainer>;
2801
2824
  *
2802
2825
  * @see https://doc-julseb-lib-react.vercel.app/components/tabs
2803
2826
  */
2804
- declare const TabsButtonsContainer: FC$1<ILibTabsButtonsContainer>;
2827
+ declare const TabsButtonsContainer: FC$2<ILibTabsButtonsContainer>;
2805
2828
 
2806
2829
  /**
2807
2830
  * TabsButton component for individual tab navigation buttons with active states and customizable styling.
@@ -2832,7 +2855,7 @@ declare const TabsButtonsContainer: FC$1<ILibTabsButtonsContainer>;
2832
2855
  *
2833
2856
  * @see https://doc-julseb-lib-react.vercel.app/components/tabs
2834
2857
  */
2835
- declare const TabsButton: FC$1<ILibTabsButton>;
2858
+ declare const TabsButton: FC$2<ILibTabsButton>;
2836
2859
 
2837
2860
  /**
2838
2861
  * TabsContent component for displaying individual tab panel content with conditional rendering based on active state.
@@ -2857,7 +2880,7 @@ declare const TabsButton: FC$1<ILibTabsButton>;
2857
2880
  *
2858
2881
  * @see https://doc-julseb-lib-react.vercel.app/components/tabs
2859
2882
  */
2860
- declare const TabsContent: FC$1<ILibTabsContent>;
2883
+ declare const TabsContent: FC$2<ILibTabsContent>;
2861
2884
 
2862
2885
  /**
2863
2886
  * Slideshow component for displaying images or content with navigation controls, pagination, and touch/swipe support.
@@ -2894,7 +2917,7 @@ declare const TabsContent: FC$1<ILibTabsContent>;
2894
2917
  *
2895
2918
  * @see https://doc-julseb-lib-react.vercel.app/components/slideshow
2896
2919
  */
2897
- declare const Slideshow: FC$1<ILibSlideshow>;
2920
+ declare const Slideshow: FC$2<ILibSlideshow>;
2898
2921
 
2899
2922
  /**
2900
2923
  * A carousel component that displays a continuous scrolling animation of items (images or custom content).
@@ -2927,7 +2950,7 @@ declare const Slideshow: FC$1<ILibSlideshow>;
2927
2950
  *
2928
2951
  * @see https://doc-julseb-lib-react.vercel.app/components/carousel
2929
2952
  */
2930
- declare const Carousel: FC$1<ILibCarousel>;
2953
+ declare const Carousel: FC$2<ILibCarousel>;
2931
2954
 
2932
2955
  /**
2933
2956
  * Cover component for creating full-screen layouts with background images, overlays, and content positioning.
@@ -2961,7 +2984,7 @@ declare const Carousel: FC$1<ILibCarousel>;
2961
2984
  *
2962
2985
  * @see https://doc-julseb-lib-react.vercel.app/components/cover
2963
2986
  */
2964
- declare const Cover: FC$1<ILibCover>;
2987
+ declare const Cover: FC$2<ILibCover>;
2965
2988
 
2966
2989
  /**
2967
2990
  * Table component for creating structured data tables with customizable styling, variants, and automatic link detection.
@@ -2998,7 +3021,7 @@ declare const Cover: FC$1<ILibCover>;
2998
3021
  *
2999
3022
  * @see https://doc-julseb-lib-react.vercel.app/components/table
3000
3023
  */
3001
- declare const Table: FC$1<ILibTable>;
3024
+ declare const Table: FC$2<ILibTable>;
3002
3025
 
3003
3026
  /**
3004
3027
  * PageLoading component for displaying a full-screen loading overlay with customizable background and loader.
@@ -3027,7 +3050,7 @@ declare const Table: FC$1<ILibTable>;
3027
3050
  *
3028
3051
  * @see https://doc-julseb-lib-react.vercel.app/components/page-loading
3029
3052
  */
3030
- declare const PageLoading: FC$1<ILibPageLoading>;
3053
+ declare const PageLoading: FC$2<ILibPageLoading>;
3031
3054
 
3032
3055
  /**
3033
3056
  * Sticky component for creating elements that stick to a specified position during scroll.
@@ -3051,7 +3074,7 @@ declare const PageLoading: FC$1<ILibPageLoading>;
3051
3074
  *
3052
3075
  * @see https://doc-julseb-lib-react.vercel.app/components/sticky
3053
3076
  */
3054
- declare const Sticky: FC$1<ILibSticky>;
3077
+ declare const Sticky: FC$2<ILibSticky>;
3055
3078
 
3056
3079
  /**
3057
3080
  * MarkdownEditor component for creating rich text content with live preview and customizable toolbar.
@@ -3095,7 +3118,7 @@ declare const Sticky: FC$1<ILibSticky>;
3095
3118
  *
3096
3119
  * @see https://doc-julseb-lib-react.vercel.app/components/markdown-editor
3097
3120
  */
3098
- declare const MarkdownEditor: FC$1<ILibMarkdownEditor>;
3121
+ declare const MarkdownEditor: FC$2<ILibMarkdownEditor>;
3099
3122
 
3100
3123
  /**
3101
3124
  * MarkdownContainer component for rendering markdown content with customizable parsing options and styling.
@@ -3124,7 +3147,7 @@ declare const MarkdownEditor: FC$1<ILibMarkdownEditor>;
3124
3147
  *
3125
3148
  * @see https://doc-julseb-lib-react.vercel.app/components/markdown-container
3126
3149
  */
3127
- declare const MarkdownContainer: FC$1<ILibMarkdownContainer>;
3150
+ declare const MarkdownContainer: FC$2<ILibMarkdownContainer>;
3128
3151
 
3129
3152
  /**
3130
3153
  * A container component for displaying syntax-highlighted code blocks with copy-to-clipboard functionality.
@@ -3148,7 +3171,7 @@ declare const MarkdownContainer: FC$1<ILibMarkdownContainer>;
3148
3171
  *
3149
3172
  * @see https://doc-julseb-lib-react.vercel.app/components/code-container
3150
3173
  */
3151
- declare const CodeContainer: FC$1<ILibCodeContainer>;
3174
+ declare const CodeContainer: FC$2<ILibCodeContainer>;
3152
3175
 
3153
3176
  /**
3154
3177
  * Fade component for creating smooth fade-in animations when elements enter the viewport.
@@ -3171,7 +3194,7 @@ declare const CodeContainer: FC$1<ILibCodeContainer>;
3171
3194
  *
3172
3195
  * @see https://doc-julseb-lib-react.vercel.app/components/fade
3173
3196
  */
3174
- declare const Fade: FC$1<ILibFade>;
3197
+ declare const Fade: FC$2<ILibFade>;
3175
3198
 
3176
3199
  /**
3177
3200
  * BackToTop component for providing a smooth scroll-to-top functionality with customizable styling and positioning.
@@ -3198,7 +3221,7 @@ declare const Fade: FC$1<ILibFade>;
3198
3221
  *
3199
3222
  * @see https://doc-julseb-lib-react.vercel.app/components/back-to-top
3200
3223
  */
3201
- declare const BackToTop: FC$1<ILibBackToTop>;
3224
+ declare const BackToTop: FC$2<ILibBackToTop>;
3202
3225
 
3203
3226
  /**
3204
3227
  * Drawer component for creating slide-out panels with customizable positioning, styling, and overlay functionality.
@@ -3240,7 +3263,7 @@ declare const BackToTop: FC$1<ILibBackToTop>;
3240
3263
  *
3241
3264
  * @see https://doc-julseb-lib-react.vercel.app/components/drawer
3242
3265
  */
3243
- declare const Drawer: FC$1<ILibDrawer>;
3266
+ declare const Drawer: FC$2<ILibDrawer>;
3244
3267
 
3245
3268
  /**
3246
3269
  * Header component for creating responsive navigation headers with customizable positioning, mobile menu variants, and search functionality.
@@ -3289,7 +3312,7 @@ declare const Drawer: FC$1<ILibDrawer>;
3289
3312
  *
3290
3313
  * @see https://doc-julseb-lib-react.vercel.app/components/header
3291
3314
  */
3292
- declare const Header: FC$1<ILibHeader>;
3315
+ declare const Header: FC$2<ILibHeader>;
3293
3316
 
3294
3317
  /**
3295
3318
  * Footer component for displaying a page footer with logo, links, and customizable layout options.
@@ -3327,7 +3350,7 @@ declare const Header: FC$1<ILibHeader>;
3327
3350
  *
3328
3351
  * @see https://doc-julseb-lib-react.vercel.app/components/footer
3329
3352
  */
3330
- declare const Footer: FC$1<ILibFooter>;
3353
+ declare const Footer: FC$2<ILibFooter>;
3331
3354
 
3332
3355
  /**
3333
3356
  * Meta component for managing HTML head metadata including SEO, Open Graph, and Twitter Card properties.
@@ -3373,7 +3396,7 @@ declare const Footer: FC$1<ILibFooter>;
3373
3396
  *
3374
3397
  * @see https://doc-julseb-lib-react.vercel.app/components/meta
3375
3398
  */
3376
- declare const Meta: FC$1<ILibMeta>;
3399
+ declare const Meta: FC$2<ILibMeta>;
3377
3400
 
3378
3401
  /**
3379
3402
  * PageLayout component for creating a complete page structure with optional header, footer, wrapper, and meta tags.
@@ -3404,7 +3427,7 @@ declare const Meta: FC$1<ILibMeta>;
3404
3427
  *
3405
3428
  * @see https://doc-julseb-lib-react.vercel.app/components/page-layout
3406
3429
  */
3407
- declare const PageLayout: FC$1<ILibPageLayout>;
3430
+ declare const PageLayout: FC$2<ILibPageLayout>;
3408
3431
 
3409
3432
  /**
3410
3433
  * SrOnly component for creating screen reader only content that is visually hidden but accessible to assistive technologies.
@@ -3426,6 +3449,6 @@ declare const PageLayout: FC$1<ILibPageLayout>;
3426
3449
  *
3427
3450
  * @see https://doc-julseb-lib-react.vercel.app/components/sr-only
3428
3451
  */
3429
- declare const SrOnly: FC$1<ILibSrOnly>;
3452
+ declare const SrOnly: FC$2<ILibSrOnly>;
3430
3453
 
3431
- export { Accordion, AccordionItem, Alert, Aside, Autocomplete, Avatar, BackToTop, Badge, Breadcrumbs, Burger, Button, ButtonGroup, ButtonIcon, COLORS, Carousel, CodeContainer, Cover, DROP_SHADOWS, DragList, DragListItem, Drawer, Dropdown, DropdownItem, FONT_FAMILIES, FONT_SIZES, FONT_WEIGHTS, Fade, Fieldset, Flexbox, Footer, Form, Grid, Header, Highlight, Hr, ICON_MULTIPLIER, INPUT_HEIGHT, INSET_SHADOWS, Image, Input, InputCheck, InputContainer, InputCounter, InputImage, InputPhone, InputPin, InputSlider, Key, LAYOUTS, LINE_HEIGHTS, LazyImage, Linkify, ListGroup, ListGroupItem, ListGroupTitle, Loader, MEDIA, Main, MarkdownContainer, MarkdownEditor, Masonry, Meta, Modal, OVERLAYS, PageLayout, PageLoading, Pagination, PaginationButton, Paginator, ProgressBar, ProgressCircle, RADIUSES, Rating, SHADOWS, SPACERS, Section, Select, Skeleton, SkeletonCard, Slideshow, SrOnly, Sticky, TEXT_BASE_CLASSES, TEXT_SHADOWS, TRANSITIONS, Table, Tabs, TabsButton, TabsButtonsContainer, TabsContainer, TabsContent, Tag, Text, ThemeProviderWrapper, Toast, ToastContainer, Tooltip, URL_REGEX, Wrapper, clsx, countries, detectLanguage, disableScroll, enableScroll, genAlignContent, genAlignItems, genBgAllColors, genBgAllColorsAndOverlays, genBgColor, genBgColor50, genBgColorGhostHover, genBgColorHover, genBgColorShort, genBgOverlay, genBorderAllColors, genBorderColor, genBorderColorHover, genBorderColorShort, genBorderRadius, genBoxShadow, genButtonColor, genButtonDisabled, genColGap, genGap, genJustifyContent, genJustifyItems, genLinkColor, genMaxWidth, genObjectFit, genRingColor, genRingColorChildren, genRowGap, genTextAlign, genTextAllColor, genTextColor, genTextColorHover, genTextColorShort, genVAlign, libMarkdownComponents, libMarkdownEditorOptions, linkifyText, scrollToTop, toast, useClickOutside, useCopyToClipboard, useDebounce, useExportData, useFetch, useForm, useIsOverflow, useKeyPress, useLibTheme, useMaxWidth, useMergeRefs, useMinWidth, usePaginatedData, usePagination, useTextLineCount, useTouchScreen, useTranslation };
3454
+ export { Accordion, AccordionItem, Alert, Aside, Autocomplete, Avatar, BackToTop, Badge, Breadcrumbs, Burger, Button, ButtonGroup, ButtonIcon, COLORS, Carousel, CodeContainer, Cover, DROP_SHADOWS, DragList, DragListItem, Drawer, Dropdown, DropdownItem, FONT_FAMILIES, FONT_SIZES, FONT_WEIGHTS, Fade, Fieldset, Flexbox, Footer, Form, Grid, Header, Highlight, Hr, ICON_MULTIPLIER, INPUT_HEIGHT, INSET_SHADOWS, Image, Input, InputCheck, InputContainer, InputCounter, InputImage, InputPhone, InputPin, InputSlider, Key, LAYOUTS, LINE_HEIGHTS, LazyImage, Linkify, ListGroup, ListGroupItem, ListGroupTitle, Loader, MEDIA, Main, MarkdownContainer, MarkdownEditor, Masonry, Meta, Modal, ModalOpenProviderWrapper, OVERLAYS, PageLayout, PageLoading, Pagination, PaginationButton, Paginator, ProgressBar, ProgressCircle, RADIUSES, Rating, SHADOWS, SPACERS, Section, Select, Skeleton, SkeletonCard, Slideshow, SrOnly, Sticky, TEXT_BASE_CLASSES, TEXT_SHADOWS, TRANSITIONS, Table, Tabs, TabsButton, TabsButtonsContainer, TabsContainer, TabsContent, Tag, Text, ThemeProviderWrapper, Toast, ToastContainer, Tooltip, URL_REGEX, Wrapper, clsx, countries, detectLanguage, disableScroll, enableScroll, genAlignContent, genAlignItems, genBgAllColors, genBgAllColorsAndOverlays, genBgColor, genBgColor50, genBgColorGhostHover, genBgColorHover, genBgColorShort, genBgOverlay, genBorderAllColors, genBorderColor, genBorderColorHover, genBorderColorShort, genBorderRadius, genBoxShadow, genButtonColor, genButtonDisabled, genColGap, genFontSize, genFontWeight, genGap, genJustifyContent, genJustifyItems, genLinkColor, genMaxWidth, genObjectFit, genRingColor, genRingColorChildren, genRowGap, genTextAlign, genTextAllColor, genTextColor, genTextColorHover, genTextColorShort, genVAlign, libMarkdownComponents, libMarkdownEditorOptions, linkifyText, scrollToTop, toast, useClickOutside, useCopyToClipboard, useDebounce, useExportData, useFetch, useForm, useIsOverflow, useKeyPress, useLibTheme, useMaxWidth, useMergeRefs, useMinWidth, useModalOpen, usePaginatedData, usePagination, useTextLineCount, useTouchScreen, useTranslation };