@julseb-lib/react 1.1.23 → 1.1.24

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, 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, ad as FC$1, a8 as LibCountry, ac as ReactElement, t as LibLoaderVariant } from './global-DDESDwEf.cjs';
2
+ export { aw as designTokens } from './global-DDESDwEf.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';
@@ -831,6 +831,22 @@ declare const ThemeProviderWrapper: ({ children, defaultTheme, }: ILibThemeProvi
831
831
  */
832
832
  declare const useLibTheme: () => ILibThemeContext;
833
833
 
834
+ type ILibModalOpenContext = {
835
+ hasModalOpen: boolean;
836
+ setHasModalOpen: DispatchState<boolean>;
837
+ };
838
+ declare const ModalOpenProviderWrapper: FC$1<{
839
+ children: ReactChildren;
840
+ }>;
841
+ /**
842
+ * Custom hook to know if there is a modal open inside our app, and set `z-index` accordingly when needed
843
+ *
844
+ * @returns {ILibModalOpenContext} If there is a modal open, and a switch to set a modal as open or not
845
+ * @example
846
+ * const { hasModalOpen, setHasModalOpen } = useModalOpen()
847
+ */
848
+ declare const useModalOpen: () => ILibModalOpenContext;
849
+
834
850
  declare const TEXT_BASE_CLASSES: string;
835
851
  /**
836
852
  * Text component for rendering semantic HTML text elements with consistent styles.
@@ -864,7 +880,7 @@ declare const TEXT_BASE_CLASSES: string;
864
880
  *
865
881
  * @see https://doc-julseb-lib-react.vercel.app/styles/text
866
882
  */
867
- declare const Text: FC$1<ILibText>;
883
+ declare const Text: FC$2<ILibText>;
868
884
 
869
885
  /**
870
886
  * Wrapper component for providing a responsive layout container.
@@ -891,7 +907,7 @@ declare const Text: FC$1<ILibText>;
891
907
  *
892
908
  * @see https://doc-julseb-lib-react.vercel.app/styles/wrapper
893
909
  */
894
- declare const Wrapper: FC$1<ILibWrapper>;
910
+ declare const Wrapper: FC$2<ILibWrapper>;
895
911
 
896
912
  /**
897
913
  * Main component for rendering the primary content area.
@@ -917,7 +933,7 @@ declare const Wrapper: FC$1<ILibWrapper>;
917
933
  *
918
934
  * @see https://doc-julseb-lib-react.vercel.app/styles/main
919
935
  */
920
- declare const Main: FC$1<ILibMain>;
936
+ declare const Main: FC$2<ILibMain>;
921
937
 
922
938
  /**
923
939
  * Aside component for rendering a sidebar or secondary content area.
@@ -941,7 +957,7 @@ declare const Main: FC$1<ILibMain>;
941
957
  *
942
958
  * @see https://doc-julseb-lib-react.vercel.app/styles/aside
943
959
  */
944
- declare const Aside: FC$1<ILibAside>;
960
+ declare const Aside: FC$2<ILibAside>;
945
961
 
946
962
  /**
947
963
  * Section component for grouping related content in a flexible layout.
@@ -965,7 +981,7 @@ declare const Aside: FC$1<ILibAside>;
965
981
  *
966
982
  * @see https://doc-julseb-lib-react.vercel.app/layouts/section
967
983
  */
968
- declare const Section: FC$1<ILibSection>;
984
+ declare const Section: FC$2<ILibSection>;
969
985
 
970
986
  /**
971
987
  * Grid component for flexible CSS grid layouts.
@@ -998,7 +1014,7 @@ declare const Section: FC$1<ILibSection>;
998
1014
  *
999
1015
  * @see https://doc-julseb-lib-react.vercel.app/layouts/grid
1000
1016
  */
1001
- declare const Grid: FC$1<ILibGrid>;
1017
+ declare const Grid: FC$2<ILibGrid>;
1002
1018
 
1003
1019
  /**
1004
1020
  * Flexbox component for flexible layouts using CSS flexbox.
@@ -1031,7 +1047,7 @@ declare const Grid: FC$1<ILibGrid>;
1031
1047
  *
1032
1048
  * @see https://doc-julseb-lib-react.vercel.app/layouts/flexbox
1033
1049
  */
1034
- declare const Flexbox: FC$1<ILibFlexbox>;
1050
+ declare const Flexbox: FC$2<ILibFlexbox>;
1035
1051
 
1036
1052
  /**
1037
1053
  * Key component for displaying keyboard keys or shortcuts.
@@ -1050,7 +1066,7 @@ declare const Flexbox: FC$1<ILibFlexbox>;
1050
1066
  *
1051
1067
  * @see https://doc-julseb-lib-react.vercel.app/layouts/key
1052
1068
  */
1053
- declare const Key: FC$1<ILibKey>;
1069
+ declare const Key: FC$2<ILibKey>;
1054
1070
 
1055
1071
  /**
1056
1072
  * Highlight component for emphasizing parts of text.
@@ -1068,7 +1084,7 @@ declare const Key: FC$1<ILibKey>;
1068
1084
  *
1069
1085
  * @see https://doc-julseb-lib-react.vercel.app/layouts/highlight
1070
1086
  */
1071
- declare const Highlight: FC$1<ILibHighlight>;
1087
+ declare const Highlight: FC$2<ILibHighlight>;
1072
1088
 
1073
1089
  /**
1074
1090
  * Linkify component that automatically detects URLs in the provided text and wraps them in anchor tags.
@@ -1094,7 +1110,7 @@ declare const Highlight: FC$1<ILibHighlight>;
1094
1110
  *
1095
1111
  * @see https://doc-julseb-lib-react.vercel.app/components/linkify
1096
1112
  */
1097
- declare const Linkify: FC$1<ILibLinkify>;
1113
+ declare const Linkify: FC$2<ILibLinkify>;
1098
1114
 
1099
1115
  /**
1100
1116
  * Hr component for rendering a horizontal rule with custom color, width, and border radius.
@@ -1114,7 +1130,7 @@ declare const Linkify: FC$1<ILibLinkify>;
1114
1130
  *
1115
1131
  * @see https://doc-julseb-lib-react.vercel.app/components/hr
1116
1132
  */
1117
- declare const Hr: FC$1<ILibHr>;
1133
+ declare const Hr: FC$2<ILibHr>;
1118
1134
 
1119
1135
  /**
1120
1136
  * Skeleton component for displaying a loading placeholder.
@@ -1133,7 +1149,7 @@ declare const Hr: FC$1<ILibHr>;
1133
1149
  *
1134
1150
  * @see https://doc-julseb-lib-react.vercel.app/layouts/skeleton
1135
1151
  */
1136
- declare const Skeleton: FC$1<ILibSkeleton>;
1152
+ declare const Skeleton: FC$2<ILibSkeleton>;
1137
1153
 
1138
1154
  /**
1139
1155
  * SkeletonCard component for displaying a loading placeholder in the shape of a card.
@@ -1203,7 +1219,7 @@ declare const SkeletonCard: FC<ILibSkeletonCard>;
1203
1219
  *
1204
1220
  * @see https://doc-julseb-lib-react.vercel.app/components/tooltip
1205
1221
  */
1206
- declare const Tooltip: FC$1<ILibTooltip>;
1222
+ declare const Tooltip: FC$2<ILibTooltip>;
1207
1223
 
1208
1224
  /**
1209
1225
  * Image component for displaying images with optional styling, captions, and accessibility features.
@@ -1225,7 +1241,7 @@ declare const Tooltip: FC$1<ILibTooltip>;
1225
1241
  *
1226
1242
  * @see https://doc-julseb-lib-react.vercel.app/layouts/image
1227
1243
  */
1228
- declare const Image: FC$1<ILibImage>;
1244
+ declare const Image: FC$2<ILibImage>;
1229
1245
 
1230
1246
  /**
1231
1247
  * LazyImage component for lazy-loading images with a skeleton placeholder.
@@ -1253,7 +1269,7 @@ declare const Image: FC$1<ILibImage>;
1253
1269
  *
1254
1270
  * @see https://doc-julseb-lib-react.vercel.app/components/lazy-image
1255
1271
  */
1256
- declare const LazyImage: FC$1<ILibLazyImage>;
1272
+ declare const LazyImage: FC$2<ILibLazyImage>;
1257
1273
 
1258
1274
  /**
1259
1275
  * Masonry component for displaying content in a responsive masonry grid layout.
@@ -1282,7 +1298,7 @@ declare const LazyImage: FC$1<ILibLazyImage>;
1282
1298
  *
1283
1299
  * @see https://doc-julseb-lib-react.vercel.app/components/masonry
1284
1300
  */
1285
- declare const Masonry: FC$1<ILibMasonry>;
1301
+ declare const Masonry: FC$2<ILibMasonry>;
1286
1302
 
1287
1303
  /**
1288
1304
  * Badge component for displaying a colored label or status.
@@ -1307,7 +1323,7 @@ declare const Masonry: FC$1<ILibMasonry>;
1307
1323
  *
1308
1324
  * @see https://doc-julseb-lib-react.vercel.app/components/badge
1309
1325
  */
1310
- declare const Badge: FC$1<ILibBadge>;
1326
+ declare const Badge: FC$2<ILibBadge>;
1311
1327
 
1312
1328
  /**
1313
1329
  * Avatar component for displaying a user image, initials, or icon, with optional badge and custom styles.
@@ -1336,7 +1352,7 @@ declare const Badge: FC$1<ILibBadge>;
1336
1352
  *
1337
1353
  * @see https://doc-julseb-lib-react.vercel.app/components/avatar
1338
1354
  */
1339
- declare const Avatar: FC$1<ILibAvatar>;
1355
+ declare const Avatar: FC$2<ILibAvatar>;
1340
1356
 
1341
1357
  /**
1342
1358
  * Loader component for displaying a loading indicator with multiple style variants and color options.
@@ -1359,7 +1375,7 @@ declare const Avatar: FC$1<ILibAvatar>;
1359
1375
  *
1360
1376
  * @see https://doc-julseb-lib-react.vercel.app/components/loader
1361
1377
  */
1362
- declare const Loader: FC$1<ILibLoader>;
1378
+ declare const Loader: FC$2<ILibLoader>;
1363
1379
 
1364
1380
  /**
1365
1381
  * Burger component for displaying a hamburger menu icon with open/closed states and hover effects.
@@ -1390,7 +1406,7 @@ declare const Loader: FC$1<ILibLoader>;
1390
1406
  *
1391
1407
  * @see https://doc-julseb-lib-react.vercel.app/components/burger
1392
1408
  */
1393
- declare const Burger: FC$1<ILibBurger>;
1409
+ declare const Burger: FC$2<ILibBurger>;
1394
1410
 
1395
1411
  /**
1396
1412
  * Button component for user interactions with multiple variants, colors, and loading states.
@@ -1418,7 +1434,7 @@ declare const Burger: FC$1<ILibBurger>;
1418
1434
  *
1419
1435
  * @see https://doc-julseb-lib-react.vercel.app/components/button
1420
1436
  */
1421
- declare const Button: FC$1<ILibButton>;
1437
+ declare const Button: FC$2<ILibButton>;
1422
1438
 
1423
1439
  /**
1424
1440
  * ButtonIcon component for displaying an icon button with optional tooltip and loading states.
@@ -1458,7 +1474,7 @@ declare const Button: FC$1<ILibButton>;
1458
1474
  *
1459
1475
  * @see https://doc-julseb-lib-react.vercel.app/components/button-icon
1460
1476
  */
1461
- declare const ButtonIcon: FC$1<ILibButtonIcon>;
1477
+ declare const ButtonIcon: FC$2<ILibButtonIcon>;
1462
1478
 
1463
1479
  /**
1464
1480
  * ButtonGroup component for displaying a group of related buttons with consistent styling and optional separators.
@@ -1492,7 +1508,7 @@ declare const ButtonIcon: FC$1<ILibButtonIcon>;
1492
1508
  *
1493
1509
  * @see https://doc-julseb-lib-react.vercel.app/components/button-group
1494
1510
  */
1495
- declare const ButtonGroup: FC$1<ILibButtonGroup>;
1511
+ declare const ButtonGroup: FC$2<ILibButtonGroup>;
1496
1512
 
1497
1513
  /**
1498
1514
  * Tag component for displaying labeled content with customizable colors, variants, and styling options.
@@ -1522,7 +1538,7 @@ declare const ButtonGroup: FC$1<ILibButtonGroup>;
1522
1538
  *
1523
1539
  * @see https://doc-julseb-lib-react.vercel.app/components/tag
1524
1540
  */
1525
- declare const Tag: FC$1<ILibTag>;
1541
+ declare const Tag: FC$2<ILibTag>;
1526
1542
 
1527
1543
  /**
1528
1544
  * InputContainer component for wrapping input elements with labels, helper text, validation messages, and character counters.
@@ -1560,7 +1576,7 @@ declare const Tag: FC$1<ILibTag>;
1560
1576
  *
1561
1577
  * @see https://doc-julseb-lib-react.vercel.app/components/input
1562
1578
  */
1563
- declare const InputContainer: FC$1<ILibInputContainer>;
1579
+ declare const InputContainer: FC$2<ILibInputContainer>;
1564
1580
 
1565
1581
  /**
1566
1582
  * Input component with multiple types and variants for form data collection.
@@ -1602,7 +1618,7 @@ declare const InputContainer: FC$1<ILibInputContainer>;
1602
1618
  *
1603
1619
  * @see https://doc-julseb-lib-react.vercel.app/components/input
1604
1620
  */
1605
- declare const Input: FC$1<ILibInput>;
1621
+ declare const Input: FC$2<ILibInput>;
1606
1622
 
1607
1623
  /**
1608
1624
  * InputImage component for uploading and displaying image files with hover interactions and validation states.
@@ -1638,7 +1654,7 @@ declare const Input: FC$1<ILibInput>;
1638
1654
  *
1639
1655
  * @see https://doc-julseb-lib-react.vercel.app/components/input-image
1640
1656
  */
1641
- declare const InputImage: FC$1<ILibInputImage>;
1657
+ declare const InputImage: FC$2<ILibInputImage>;
1642
1658
 
1643
1659
  /**
1644
1660
  * InputCheck component for creating interactive checkbox, radio, and toggle inputs with multiple visual variants.
@@ -1675,7 +1691,7 @@ declare const InputImage: FC$1<ILibInputImage>;
1675
1691
  *
1676
1692
  * @see https://doc-julseb-lib-react.vercel.app/components/input-check
1677
1693
  */
1678
- declare const InputCheck: FC$1<ILibInputCheck>;
1694
+ declare const InputCheck: FC$2<ILibInputCheck>;
1679
1695
 
1680
1696
  /**
1681
1697
  * InputPhone component for phone number input with country selection dropdown and search functionality.
@@ -1718,7 +1734,7 @@ declare const InputCheck: FC$1<ILibInputCheck>;
1718
1734
  *
1719
1735
  * @see https://doc-julseb-lib-react.vercel.app/components/input-phone
1720
1736
  */
1721
- declare const InputPhone: FC$1<ILibInputPhone>;
1737
+ declare const InputPhone: FC$2<ILibInputPhone>;
1722
1738
 
1723
1739
  declare const countries: Array<LibCountry>;
1724
1740
 
@@ -1773,7 +1789,7 @@ declare const countries: Array<LibCountry>;
1773
1789
  *
1774
1790
  * @see https://doc-julseb-lib-react.vercel.app/components/input-counter
1775
1791
  */
1776
- declare const InputCounter: FC$1<ILibInputCounter>;
1792
+ declare const InputCounter: FC$2<ILibInputCounter>;
1777
1793
 
1778
1794
  /**
1779
1795
  * InputSlider component for creating range input sliders with customizable appearance, tooltips, and min/max value display.
@@ -1812,7 +1828,7 @@ declare const InputCounter: FC$1<ILibInputCounter>;
1812
1828
  *
1813
1829
  * @see https://doc-julseb-lib-react.vercel.app/components/input-slider
1814
1830
  */
1815
- declare const InputSlider: FC$1<ILibInputSlider>;
1831
+ declare const InputSlider: FC$2<ILibInputSlider>;
1816
1832
 
1817
1833
  /**
1818
1834
  * Select component for creating dropdown selection inputs with keyboard navigation, validation states, and customizable styling.
@@ -1853,7 +1869,7 @@ declare const InputSlider: FC$1<ILibInputSlider>;
1853
1869
  *
1854
1870
  * @see https://doc-julseb-lib-react.vercel.app/components/select
1855
1871
  */
1856
- declare const Select: FC$1<ILibSelect>;
1872
+ declare const Select: FC$2<ILibSelect>;
1857
1873
 
1858
1874
  /**
1859
1875
  * Autocomplete component for text input with fuzzy search functionality, keyboard navigation, and customizable dropdown results.
@@ -1899,7 +1915,7 @@ declare const Select: FC$1<ILibSelect>;
1899
1915
  *
1900
1916
  * @see https://doc-julseb-lib-react.vercel.app/components/autocomplete
1901
1917
  */
1902
- declare const Autocomplete: FC$1<ILibAutocomplete>;
1918
+ declare const Autocomplete: FC$2<ILibAutocomplete>;
1903
1919
 
1904
1920
  /**
1905
1921
  * Rating component for displaying and selecting star ratings with customizable icons, read-only mode, and validation states.
@@ -1941,7 +1957,7 @@ declare const Autocomplete: FC$1<ILibAutocomplete>;
1941
1957
  *
1942
1958
  * @see https://doc-julseb-lib-react.vercel.app/components/rating
1943
1959
  */
1944
- declare const Rating: FC$1<ILibRating>;
1960
+ declare const Rating: FC$2<ILibRating>;
1945
1961
 
1946
1962
  /**
1947
1963
  * InputPin component for creating PIN code or verification code inputs with multiple individual input fields.
@@ -1979,7 +1995,7 @@ declare const Rating: FC$1<ILibRating>;
1979
1995
  *
1980
1996
  * @see https://doc-julseb-lib-react.vercel.app/components/input-pin
1981
1997
  */
1982
- declare const InputPin: FC$1<ILibInputPin>;
1998
+ declare const InputPin: FC$2<ILibInputPin>;
1983
1999
 
1984
2000
  /**
1985
2001
  * Fieldset component for grouping related form controls with a legend, validation states, and customizable styling.
@@ -2017,7 +2033,7 @@ declare const InputPin: FC$1<ILibInputPin>;
2017
2033
  *
2018
2034
  * @see https://doc-julseb-lib-react.vercel.app/components/fieldset
2019
2035
  */
2020
- declare const Fieldset: FC$1<ILibFieldset>;
2036
+ declare const Fieldset: FC$2<ILibFieldset>;
2021
2037
 
2022
2038
  /**
2023
2039
  * Form component for creating forms with built-in submit and secondary action buttons, loading states, and validation support.
@@ -2051,7 +2067,7 @@ declare const Fieldset: FC$1<ILibFieldset>;
2051
2067
  *
2052
2068
  * @see https://doc-julseb-lib-react.vercel.app/components/form
2053
2069
  */
2054
- declare const Form: FC$1<ILibForm>;
2070
+ declare const Form: FC$2<ILibForm>;
2055
2071
 
2056
2072
  /**
2057
2073
  * ListGroup component for displaying a structured list of items with optional title, numbering, and separators.
@@ -2083,7 +2099,7 @@ declare const Form: FC$1<ILibForm>;
2083
2099
  *
2084
2100
  * @see https://doc-julseb-lib-react.vercel.app/components/list-group
2085
2101
  */
2086
- declare const ListGroup: FC$1<ILibListGroup>;
2102
+ declare const ListGroup: FC$2<ILibListGroup>;
2087
2103
 
2088
2104
  /**
2089
2105
  * ListGroupTitle component for rendering a styled header/title for list groups with optional fixed positioning and shadow effects.
@@ -2114,7 +2130,7 @@ declare const ListGroup: FC$1<ILibListGroup>;
2114
2130
  *
2115
2131
  * @see https://doc-julseb-lib-react.vercel.app/components/list-group
2116
2132
  */
2117
- declare const ListGroupTitle: FC$1<ILibListGroupTitle>;
2133
+ declare const ListGroupTitle: FC$2<ILibListGroupTitle>;
2118
2134
 
2119
2135
  /**
2120
2136
  * ListGroupItem component for rendering individual items within a list group with optional numbering, content, and separators.
@@ -2145,7 +2161,7 @@ declare const ListGroupTitle: FC$1<ILibListGroupTitle>;
2145
2161
  *
2146
2162
  * @see https://doc-julseb-lib-react.vercel.app/components/list-group
2147
2163
  */
2148
- declare const ListGroupItem: FC$1<ILibListGroupItem>;
2164
+ declare const ListGroupItem: FC$2<ILibListGroupItem>;
2149
2165
 
2150
2166
  /**
2151
2167
  * Breadcrumbs component for displaying navigational breadcrumb trails.
@@ -2175,7 +2191,7 @@ declare const ListGroupItem: FC$1<ILibListGroupItem>;
2175
2191
  *
2176
2192
  * @see https://doc-julseb-lib-react.vercel.app/components/breadcrumbs
2177
2193
  */
2178
- declare const Breadcrumbs: FC$1<ILibBreadcrumbs>;
2194
+ declare const Breadcrumbs: FC$2<ILibBreadcrumbs>;
2179
2195
 
2180
2196
  /**
2181
2197
  * Accordion component for creating collapsible content sections with customizable styling and expandable items.
@@ -2205,7 +2221,7 @@ declare const Breadcrumbs: FC$1<ILibBreadcrumbs>;
2205
2221
  *
2206
2222
  * @see https://doc-julseb-lib-react.vercel.app/components/accordion
2207
2223
  */
2208
- declare const Accordion: FC$1<ILibAccordion>;
2224
+ declare const Accordion: FC$2<ILibAccordion>;
2209
2225
 
2210
2226
  /**
2211
2227
  * AccordionItem component for creating individual collapsible sections with title, content, and customizable styling.
@@ -2233,7 +2249,7 @@ declare const Accordion: FC$1<ILibAccordion>;
2233
2249
  *
2234
2250
  * @see https://doc-julseb-lib-react.vercel.app/components/accordion
2235
2251
  */
2236
- declare const AccordionItem: FC$1<ILibAccordionItem>;
2252
+ declare const AccordionItem: FC$2<ILibAccordionItem>;
2237
2253
 
2238
2254
  /**
2239
2255
  * Dropdown component for creating contextual menus and popover content with customizable positioning and animations.
@@ -2269,7 +2285,7 @@ declare const AccordionItem: FC$1<ILibAccordionItem>;
2269
2285
  *
2270
2286
  * @see https://doc-julseb-lib-react.vercel.app/components/dropdown
2271
2287
  */
2272
- declare const Dropdown: FC$1<ILibDropdown>;
2288
+ declare const Dropdown: FC$2<ILibDropdown>;
2273
2289
 
2274
2290
  /**
2275
2291
  * DropdownItem component for rendering individual items within dropdown menus with hover states and customizable content.
@@ -2294,7 +2310,7 @@ declare const Dropdown: FC$1<ILibDropdown>;
2294
2310
  *
2295
2311
  * @see https://doc-julseb-lib-react.vercel.app/components/dropdown
2296
2312
  */
2297
- declare const DropdownItem: FC$1<ILibDropdownItem>;
2313
+ declare const DropdownItem: FC$2<ILibDropdownItem>;
2298
2314
 
2299
2315
  /**
2300
2316
  * Toast component for displaying temporary notification messages with different status types and optional close functionality.
@@ -2326,7 +2342,7 @@ declare const DropdownItem: FC$1<ILibDropdownItem>;
2326
2342
  *
2327
2343
  * @see https://doc-julseb-lib-react.vercel.app/components/toast
2328
2344
  */
2329
- declare const Toast: FC$1<ILibToast>;
2345
+ declare const Toast: FC$2<ILibToast>;
2330
2346
 
2331
2347
  /**
2332
2348
  * ToastContainer component for managing and displaying toast notifications with customizable positioning and behavior.
@@ -2359,7 +2375,7 @@ declare const Toast: FC$1<ILibToast>;
2359
2375
  *
2360
2376
  * @see https://doc-julseb-lib-react.vercel.app/components/toast
2361
2377
  */
2362
- declare const ToastContainer: FC$1<ToastContainerProps>;
2378
+ declare const ToastContainer: FC$2<ToastContainerProps>;
2363
2379
 
2364
2380
  /**
2365
2381
  * Toast utility functions for displaying different types of notification messages with customizable options and automatic styling.
@@ -2441,7 +2457,7 @@ declare const toast: {
2441
2457
  *
2442
2458
  * @see https://doc-julseb-lib-react.vercel.app/components/alert
2443
2459
  */
2444
- declare const Alert: FC$1<ILibAlert>;
2460
+ declare const Alert: FC$2<ILibAlert>;
2445
2461
 
2446
2462
  /**
2447
2463
  * Modal component for displaying overlay content with backdrop, close functionality, and keyboard navigation support.
@@ -2477,7 +2493,7 @@ declare const Alert: FC$1<ILibAlert>;
2477
2493
  *
2478
2494
  * @see https://doc-julseb-lib-react.vercel.app/components/modal
2479
2495
  */
2480
- declare const Modal: FC$1<ILibModal>;
2496
+ declare const Modal: FC$2<ILibModal>;
2481
2497
 
2482
2498
  /**
2483
2499
  * DragList component for creating draggable and reorderable lists with customizable items and separators.
@@ -2508,7 +2524,7 @@ declare const Modal: FC$1<ILibModal>;
2508
2524
  *
2509
2525
  * @see https://doc-julseb-lib-react.vercel.app/components/drag-list
2510
2526
  */
2511
- declare const DragList: FC$1<ILibDragList>;
2527
+ declare const DragList: FC$2<ILibDragList>;
2512
2528
 
2513
2529
  /**
2514
2530
  * DragListItem component for rendering individual draggable items within a drag list with drag handles and content.
@@ -2542,7 +2558,7 @@ declare const DragList: FC$1<ILibDragList>;
2542
2558
  *
2543
2559
  * @see https://doc-julseb-lib-react.vercel.app/components/drag-list
2544
2560
  */
2545
- declare const DragListItem: FC$1<ILibDragListItem>;
2561
+ declare const DragListItem: FC$2<ILibDragListItem>;
2546
2562
 
2547
2563
  /**
2548
2564
  * Pagination component for navigating through multiple pages of content with customizable styling and navigation controls.
@@ -2577,7 +2593,7 @@ declare const DragListItem: FC$1<ILibDragListItem>;
2577
2593
  *
2578
2594
  * @see https://doc-julseb-lib-react.vercel.app/components/pagination
2579
2595
  */
2580
- declare const Pagination: FC$1<ILibPagination>;
2596
+ declare const Pagination: FC$2<ILibPagination>;
2581
2597
 
2582
2598
  /**
2583
2599
  * PaginationButton component for rendering individual page navigation buttons with active states and styling.
@@ -2607,7 +2623,7 @@ declare const Pagination: FC$1<ILibPagination>;
2607
2623
  *
2608
2624
  * @see https://doc-julseb-lib-react.vercel.app/components/pagination
2609
2625
  */
2610
- declare const PaginationButton: FC$1<ILibPaginationButton>;
2626
+ declare const PaginationButton: FC$2<ILibPaginationButton>;
2611
2627
 
2612
2628
  /**
2613
2629
  * Paginator component for simple page navigation with input field and next/previous buttons.
@@ -2650,7 +2666,7 @@ declare const PaginationButton: FC$1<ILibPaginationButton>;
2650
2666
  *
2651
2667
  * @see https://doc-julseb-lib-react.vercel.app/components/paginator
2652
2668
  */
2653
- declare const Paginator: FC$1<ILibPaginator>;
2669
+ declare const Paginator: FC$2<ILibPaginator>;
2654
2670
 
2655
2671
  /**
2656
2672
  * ProgressBar component for displaying progress with customizable colors and animations using a meter element.
@@ -2679,7 +2695,7 @@ declare const Paginator: FC$1<ILibPaginator>;
2679
2695
  *
2680
2696
  * @see https://doc-julseb-lib-react.vercel.app/components/progress-bar
2681
2697
  */
2682
- declare const ProgressBar: FC$1<ILibProgressBar>;
2698
+ declare const ProgressBar: FC$2<ILibProgressBar>;
2683
2699
 
2684
2700
  /**
2685
2701
  * ProgressCircle component for displaying circular progress with customizable colors and smooth animations using SVG.
@@ -2711,7 +2727,7 @@ declare const ProgressBar: FC$1<ILibProgressBar>;
2711
2727
  *
2712
2728
  * @see https://doc-julseb-lib-react.vercel.app/components/progress-circle
2713
2729
  */
2714
- declare const ProgressCircle: FC$1<ILibProgressCircle>;
2730
+ declare const ProgressCircle: FC$2<ILibProgressCircle>;
2715
2731
 
2716
2732
  /**
2717
2733
  * Tabs component for creating tabbed interfaces with automatic state management and customizable styling.
@@ -2746,7 +2762,7 @@ declare const ProgressCircle: FC$1<ILibProgressCircle>;
2746
2762
  *
2747
2763
  * @see https://doc-julseb-lib-react.vercel.app/components/tabs
2748
2764
  */
2749
- declare const Tabs: FC$1<ILibTabs>;
2765
+ declare const Tabs: FC$2<ILibTabs>;
2750
2766
 
2751
2767
  /**
2752
2768
  * TabsContainer component for wrapping tab navigation and content panels with customizable styling.
@@ -2774,7 +2790,7 @@ declare const Tabs: FC$1<ILibTabs>;
2774
2790
  *
2775
2791
  * @see https://doc-julseb-lib-react.vercel.app/components/tabs
2776
2792
  */
2777
- declare const TabsContainer: FC$1<ILibTabsContainer>;
2793
+ declare const TabsContainer: FC$2<ILibTabsContainer>;
2778
2794
 
2779
2795
  /**
2780
2796
  * TabsButtonsContainer component for wrapping tab navigation buttons with customizable layout and styling.
@@ -2801,7 +2817,7 @@ declare const TabsContainer: FC$1<ILibTabsContainer>;
2801
2817
  *
2802
2818
  * @see https://doc-julseb-lib-react.vercel.app/components/tabs
2803
2819
  */
2804
- declare const TabsButtonsContainer: FC$1<ILibTabsButtonsContainer>;
2820
+ declare const TabsButtonsContainer: FC$2<ILibTabsButtonsContainer>;
2805
2821
 
2806
2822
  /**
2807
2823
  * TabsButton component for individual tab navigation buttons with active states and customizable styling.
@@ -2832,7 +2848,7 @@ declare const TabsButtonsContainer: FC$1<ILibTabsButtonsContainer>;
2832
2848
  *
2833
2849
  * @see https://doc-julseb-lib-react.vercel.app/components/tabs
2834
2850
  */
2835
- declare const TabsButton: FC$1<ILibTabsButton>;
2851
+ declare const TabsButton: FC$2<ILibTabsButton>;
2836
2852
 
2837
2853
  /**
2838
2854
  * TabsContent component for displaying individual tab panel content with conditional rendering based on active state.
@@ -2857,7 +2873,7 @@ declare const TabsButton: FC$1<ILibTabsButton>;
2857
2873
  *
2858
2874
  * @see https://doc-julseb-lib-react.vercel.app/components/tabs
2859
2875
  */
2860
- declare const TabsContent: FC$1<ILibTabsContent>;
2876
+ declare const TabsContent: FC$2<ILibTabsContent>;
2861
2877
 
2862
2878
  /**
2863
2879
  * Slideshow component for displaying images or content with navigation controls, pagination, and touch/swipe support.
@@ -2894,7 +2910,7 @@ declare const TabsContent: FC$1<ILibTabsContent>;
2894
2910
  *
2895
2911
  * @see https://doc-julseb-lib-react.vercel.app/components/slideshow
2896
2912
  */
2897
- declare const Slideshow: FC$1<ILibSlideshow>;
2913
+ declare const Slideshow: FC$2<ILibSlideshow>;
2898
2914
 
2899
2915
  /**
2900
2916
  * A carousel component that displays a continuous scrolling animation of items (images or custom content).
@@ -2927,7 +2943,7 @@ declare const Slideshow: FC$1<ILibSlideshow>;
2927
2943
  *
2928
2944
  * @see https://doc-julseb-lib-react.vercel.app/components/carousel
2929
2945
  */
2930
- declare const Carousel: FC$1<ILibCarousel>;
2946
+ declare const Carousel: FC$2<ILibCarousel>;
2931
2947
 
2932
2948
  /**
2933
2949
  * Cover component for creating full-screen layouts with background images, overlays, and content positioning.
@@ -2961,7 +2977,7 @@ declare const Carousel: FC$1<ILibCarousel>;
2961
2977
  *
2962
2978
  * @see https://doc-julseb-lib-react.vercel.app/components/cover
2963
2979
  */
2964
- declare const Cover: FC$1<ILibCover>;
2980
+ declare const Cover: FC$2<ILibCover>;
2965
2981
 
2966
2982
  /**
2967
2983
  * Table component for creating structured data tables with customizable styling, variants, and automatic link detection.
@@ -2998,7 +3014,7 @@ declare const Cover: FC$1<ILibCover>;
2998
3014
  *
2999
3015
  * @see https://doc-julseb-lib-react.vercel.app/components/table
3000
3016
  */
3001
- declare const Table: FC$1<ILibTable>;
3017
+ declare const Table: FC$2<ILibTable>;
3002
3018
 
3003
3019
  /**
3004
3020
  * PageLoading component for displaying a full-screen loading overlay with customizable background and loader.
@@ -3027,7 +3043,7 @@ declare const Table: FC$1<ILibTable>;
3027
3043
  *
3028
3044
  * @see https://doc-julseb-lib-react.vercel.app/components/page-loading
3029
3045
  */
3030
- declare const PageLoading: FC$1<ILibPageLoading>;
3046
+ declare const PageLoading: FC$2<ILibPageLoading>;
3031
3047
 
3032
3048
  /**
3033
3049
  * Sticky component for creating elements that stick to a specified position during scroll.
@@ -3051,7 +3067,7 @@ declare const PageLoading: FC$1<ILibPageLoading>;
3051
3067
  *
3052
3068
  * @see https://doc-julseb-lib-react.vercel.app/components/sticky
3053
3069
  */
3054
- declare const Sticky: FC$1<ILibSticky>;
3070
+ declare const Sticky: FC$2<ILibSticky>;
3055
3071
 
3056
3072
  /**
3057
3073
  * MarkdownEditor component for creating rich text content with live preview and customizable toolbar.
@@ -3095,7 +3111,7 @@ declare const Sticky: FC$1<ILibSticky>;
3095
3111
  *
3096
3112
  * @see https://doc-julseb-lib-react.vercel.app/components/markdown-editor
3097
3113
  */
3098
- declare const MarkdownEditor: FC$1<ILibMarkdownEditor>;
3114
+ declare const MarkdownEditor: FC$2<ILibMarkdownEditor>;
3099
3115
 
3100
3116
  /**
3101
3117
  * MarkdownContainer component for rendering markdown content with customizable parsing options and styling.
@@ -3124,7 +3140,7 @@ declare const MarkdownEditor: FC$1<ILibMarkdownEditor>;
3124
3140
  *
3125
3141
  * @see https://doc-julseb-lib-react.vercel.app/components/markdown-container
3126
3142
  */
3127
- declare const MarkdownContainer: FC$1<ILibMarkdownContainer>;
3143
+ declare const MarkdownContainer: FC$2<ILibMarkdownContainer>;
3128
3144
 
3129
3145
  /**
3130
3146
  * A container component for displaying syntax-highlighted code blocks with copy-to-clipboard functionality.
@@ -3148,7 +3164,7 @@ declare const MarkdownContainer: FC$1<ILibMarkdownContainer>;
3148
3164
  *
3149
3165
  * @see https://doc-julseb-lib-react.vercel.app/components/code-container
3150
3166
  */
3151
- declare const CodeContainer: FC$1<ILibCodeContainer>;
3167
+ declare const CodeContainer: FC$2<ILibCodeContainer>;
3152
3168
 
3153
3169
  /**
3154
3170
  * Fade component for creating smooth fade-in animations when elements enter the viewport.
@@ -3171,7 +3187,7 @@ declare const CodeContainer: FC$1<ILibCodeContainer>;
3171
3187
  *
3172
3188
  * @see https://doc-julseb-lib-react.vercel.app/components/fade
3173
3189
  */
3174
- declare const Fade: FC$1<ILibFade>;
3190
+ declare const Fade: FC$2<ILibFade>;
3175
3191
 
3176
3192
  /**
3177
3193
  * BackToTop component for providing a smooth scroll-to-top functionality with customizable styling and positioning.
@@ -3198,7 +3214,7 @@ declare const Fade: FC$1<ILibFade>;
3198
3214
  *
3199
3215
  * @see https://doc-julseb-lib-react.vercel.app/components/back-to-top
3200
3216
  */
3201
- declare const BackToTop: FC$1<ILibBackToTop>;
3217
+ declare const BackToTop: FC$2<ILibBackToTop>;
3202
3218
 
3203
3219
  /**
3204
3220
  * Drawer component for creating slide-out panels with customizable positioning, styling, and overlay functionality.
@@ -3240,7 +3256,7 @@ declare const BackToTop: FC$1<ILibBackToTop>;
3240
3256
  *
3241
3257
  * @see https://doc-julseb-lib-react.vercel.app/components/drawer
3242
3258
  */
3243
- declare const Drawer: FC$1<ILibDrawer>;
3259
+ declare const Drawer: FC$2<ILibDrawer>;
3244
3260
 
3245
3261
  /**
3246
3262
  * Header component for creating responsive navigation headers with customizable positioning, mobile menu variants, and search functionality.
@@ -3289,7 +3305,7 @@ declare const Drawer: FC$1<ILibDrawer>;
3289
3305
  *
3290
3306
  * @see https://doc-julseb-lib-react.vercel.app/components/header
3291
3307
  */
3292
- declare const Header: FC$1<ILibHeader>;
3308
+ declare const Header: FC$2<ILibHeader>;
3293
3309
 
3294
3310
  /**
3295
3311
  * Footer component for displaying a page footer with logo, links, and customizable layout options.
@@ -3327,7 +3343,7 @@ declare const Header: FC$1<ILibHeader>;
3327
3343
  *
3328
3344
  * @see https://doc-julseb-lib-react.vercel.app/components/footer
3329
3345
  */
3330
- declare const Footer: FC$1<ILibFooter>;
3346
+ declare const Footer: FC$2<ILibFooter>;
3331
3347
 
3332
3348
  /**
3333
3349
  * Meta component for managing HTML head metadata including SEO, Open Graph, and Twitter Card properties.
@@ -3373,7 +3389,7 @@ declare const Footer: FC$1<ILibFooter>;
3373
3389
  *
3374
3390
  * @see https://doc-julseb-lib-react.vercel.app/components/meta
3375
3391
  */
3376
- declare const Meta: FC$1<ILibMeta>;
3392
+ declare const Meta: FC$2<ILibMeta>;
3377
3393
 
3378
3394
  /**
3379
3395
  * PageLayout component for creating a complete page structure with optional header, footer, wrapper, and meta tags.
@@ -3404,7 +3420,7 @@ declare const Meta: FC$1<ILibMeta>;
3404
3420
  *
3405
3421
  * @see https://doc-julseb-lib-react.vercel.app/components/page-layout
3406
3422
  */
3407
- declare const PageLayout: FC$1<ILibPageLayout>;
3423
+ declare const PageLayout: FC$2<ILibPageLayout>;
3408
3424
 
3409
3425
  /**
3410
3426
  * SrOnly component for creating screen reader only content that is visually hidden but accessible to assistive technologies.
@@ -3426,6 +3442,6 @@ declare const PageLayout: FC$1<ILibPageLayout>;
3426
3442
  *
3427
3443
  * @see https://doc-julseb-lib-react.vercel.app/components/sr-only
3428
3444
  */
3429
- declare const SrOnly: FC$1<ILibSrOnly>;
3445
+ declare const SrOnly: FC$2<ILibSrOnly>;
3430
3446
 
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 };
3447
+ 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, 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 };