@julseb-lib/react 1.1.32 → 1.1.33

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
@@ -46,6 +46,11 @@ declare const genGap: Record<LibSpacers, string>;
46
46
  declare const genRowGap: Record<LibSpacers, string>;
47
47
  declare const genColGap: Record<LibSpacers, string>;
48
48
 
49
+ /**
50
+ * Merges and deduplicates Tailwind CSS class names using `tailwind-merge` and `clsx`.
51
+ * @param classes - Class name values to merge.
52
+ * @returns A single merged class name string.
53
+ */
49
54
  declare const clsx: (...classes: Array<ClassNameValue>) => string;
50
55
 
51
56
  declare const genAlignContent: Record<CssAlignContent, string>;
@@ -69,7 +74,13 @@ declare const genVAlign: Record<CssVerticalAlign, string>;
69
74
  declare const libMarkdownComponents: Components;
70
75
  declare const libMarkdownEditorOptions: LibMdEditorOptions;
71
76
 
77
+ /**
78
+ * Maps each color variant to its corresponding Tailwind focus ring classes.
79
+ */
72
80
  declare const genRingColor: Record<LibColorsHover, string>;
81
+ /**
82
+ * Maps each color variant to its corresponding Tailwind focus ring classes, applied to child elements via the `[&>*]` selector.
83
+ */
73
84
  declare const genRingColorChildren: Record<LibColorsHover, string>;
74
85
 
75
86
  /**
@@ -178,7 +189,7 @@ declare const genFontWeight: Record<LibFontWeights, string>;
178
189
  *
179
190
  * @returns {void} This hook doesn't return anything
180
191
  *
181
- * @see https://doc-julseb-lib-react.vercel.app/helpers/hooks#useClickOutside
192
+ * @see https://julseb-lib.vercel.app/components/helpers/hooks#useClickOutside
182
193
  */
183
194
  declare const useClickOutside: <T extends HTMLElement = HTMLElement>(ref: RefObject<T>, handler: (e?: MouseEvent) => void, isActive?: boolean, delay?: number) => void;
184
195
 
@@ -205,7 +216,7 @@ type CopyFn = (text: string) => Promise<boolean>;
205
216
  * @returns {string} returns[1].text - Text to copy to clipboard
206
217
  * @returns {Promise<boolean>} returns[1].Promise - Promise that resolves to true if copy succeeded, false otherwise
207
218
  *
208
- * @see https://doc-julseb-lib-react.vercel.app/helpers/hooks#useCopyToClipboard
219
+ * @see https://julseb-lib.vercel.app/components/helpers/hooks#useCopyToClipboard
209
220
  */
210
221
  declare const useCopyToClipboard: () => [CopiedValue, CopyFn];
211
222
 
@@ -231,7 +242,7 @@ declare const useCopyToClipboard: () => [CopiedValue, CopyFn];
231
242
  *
232
243
  * @returns {T} The debounced value that updates after the delay period
233
244
  *
234
- * @see https://doc-julseb-lib-react.vercel.app/helpers/hooks#useDebounce
245
+ * @see https://julseb-lib.vercel.app/components/helpers/hooks#useDebounce
235
246
  */
236
247
  declare const useDebounce: <T>(value: T, delay?: number) => T;
237
248
 
@@ -262,7 +273,7 @@ declare const useDebounce: <T>(value: T, delay?: number) => T;
262
273
  * @returns {string} returns.exportToCsv.fileName - Name for the downloaded file (without extension)
263
274
  * @returns {Array<string>} returns.exportToCsv.headers - Array of column headers for the CSV file
264
275
  *
265
- * @see https://doc-julseb-lib-react.vercel.app/helpers/hooks#useExportData
276
+ * @see https://julseb-lib.vercel.app/components/helpers/hooks#useExportData
266
277
  */
267
278
  declare const useExportData: <T>() => {
268
279
  exportToCsv: (data: Array<T>, fileName: string, headers: Array<string>) => void;
@@ -293,7 +304,7 @@ declare const useExportData: <T>() => {
293
304
  * @returns {any} returns.error - Error object if the fetch failed, undefined otherwise
294
305
  * @returns {boolean} returns.loading - Whether the fetch operation is currently in progress
295
306
  *
296
- * @see https://doc-julseb-lib-react.vercel.app/helpers/hooks#useFetch
307
+ * @see https://julseb-lib.vercel.app/components/helpers/hooks#useFetch
297
308
  */
298
309
  declare const useFetch: <T>(fetchFunction: Promise<T>, dependencies?: any) => {
299
310
  readonly response: T | null;
@@ -330,7 +341,7 @@ declare const useFetch: <T>(fetchFunction: Promise<T>, dependencies?: any) => {
330
341
  * @returns {function} returns.handleSubmit - Function to handle form submission
331
342
  * @returns {ChangeEvent<HTMLFormElement>} returns.handleSubmit.e - Form submit event
332
343
  *
333
- * @see https://doc-julseb-lib-react.vercel.app/helpers/hooks#useForm
344
+ * @see https://julseb-lib.vercel.app/components/helpers/hooks#useForm
334
345
  */
335
346
  declare const useForm: <T>(initialState?: T, onSubmit?: (formData: T) => void) => {
336
347
  formData: T;
@@ -362,7 +373,7 @@ declare const useForm: <T>(initialState?: T, onSubmit?: (formData: T) => void) =
362
373
  *
363
374
  * @returns {boolean | undefined} Whether the element is overflowing, or undefined if not yet determined
364
375
  *
365
- * @see https://doc-julseb-lib-react.vercel.app/helpers/hooks#useIsOverflow
376
+ * @see https://julseb-lib.vercel.app/components/helpers/hooks#useIsOverflow
366
377
  */
367
378
  declare const useIsOverflow: (ref: RefObject<HTMLElement>, options?: {
368
379
  callback: RefCallback<boolean>;
@@ -390,7 +401,7 @@ declare const useIsOverflow: (ref: RefObject<HTMLElement>, options?: {
390
401
  *
391
402
  * @returns {void} This hook doesn't return anything
392
403
  *
393
- * @see https://doc-julseb-lib-react.vercel.app/helpers/hooks#useKeyPress
404
+ * @see https://julseb-lib.vercel.app/components/helpers/hooks#useKeyPress
394
405
  */
395
406
  declare const useKeyPress: (keyCodes: string | Array<string>, callback: () => void, excludeKeys?: Array<string>) => void;
396
407
 
@@ -411,7 +422,7 @@ declare const useKeyPress: (keyCodes: string | Array<string>, callback: () => vo
411
422
  *
412
423
  * @returns {boolean} Whether the current viewport width is smaller than or equal to the specified width
413
424
  *
414
- * @see https://doc-julseb-lib-react.vercel.app/helpers/hooks#useMaxWidth
425
+ * @see https://julseb-lib.vercel.app/components/helpers/hooks#useMaxWidth
415
426
  */
416
427
  declare const useMaxWidth: (width: number) => boolean;
417
428
 
@@ -432,7 +443,7 @@ declare const useMaxWidth: (width: number) => boolean;
432
443
  *
433
444
  * @returns {RefCallback<Instance> | null} Merged ref callback or null if all refs are null/undefined
434
445
  *
435
- * @see https://doc-julseb-lib-react.vercel.app/helpers/hooks#useMergeRefs
446
+ * @see https://julseb-lib.vercel.app/components/helpers/hooks#useMergeRefs
436
447
  */
437
448
  declare const useMergeRefs: <Instance>(refs: Array<Ref<Instance> | undefined>) => RefCallback<Instance> | null;
438
449
 
@@ -453,7 +464,7 @@ declare const useMergeRefs: <Instance>(refs: Array<Ref<Instance> | undefined>) =
453
464
  *
454
465
  * @returns {boolean} Whether the current viewport width is greater than or equal to the specified width
455
466
  *
456
- * @see https://doc-julseb-lib-react.vercel.app/helpers/hooks#useMinWidth
467
+ * @see https://julseb-lib.vercel.app/components/helpers/hooks#useMinWidth
457
468
  */
458
469
  declare const useMinWidth: (width: number) => boolean;
459
470
 
@@ -486,7 +497,7 @@ interface IUsePaginatedData<T> {
486
497
  * @returns {Array<T>} returns.paginatedData - Current page's data items
487
498
  * @returns {number} returns.totalPages - Total number of pages based on data length and limit
488
499
  *
489
- * @see https://doc-julseb-lib-react.vercel.app/helpers/hooks#usePaginatedData
500
+ * @see https://julseb-lib.vercel.app/components/helpers/hooks#usePaginatedData
490
501
  */
491
502
  declare const usePaginatedData: <T>(data: Array<T>, page: number, defaultLimit?: number) => IUsePaginatedData<T>;
492
503
 
@@ -527,7 +538,7 @@ interface ILibUsePaginationNavigation {
527
538
  * @returns {function} returns.handlePage - Function to navigate to a specific page number
528
539
  * @returns {number} returns.handlePage.n - Page number to navigate to
529
540
  *
530
- * @see https://doc-julseb-lib-react.vercel.app/helpers/hooks#usePagination
541
+ * @see https://julseb-lib.vercel.app/components/helpers/hooks#usePagination
531
542
  */
532
543
  declare const usePagination: ({ currentPage, setCurrentPage, totalPages, }: ILibUsePaginationNavigation) => {
533
544
  handlePrev: () => void;
@@ -556,7 +567,7 @@ declare const usePagination: ({ currentPage, setCurrentPage, totalPages, }: ILib
556
567
  *
557
568
  * @returns {{ visualLines: number; elementRef: React.RefObject<HTMLTextAreaElement | HTMLInputElement> }} Object containing the calculated visual line count and element ref to attach to the target element.
558
569
  *
559
- * @see https://doc-julseb-lib-react.vercel.app/hooks/use-text-line-count
570
+ * @see https://julseb-lib.vercel.app/components/hooks/use-text-line-count
560
571
  */
561
572
  declare const useTextLineCount: (text: string, fontSize?: number) => {
562
573
  visualLines: number;
@@ -580,7 +591,7 @@ declare const useTextLineCount: (text: string, fontSize?: number) => {
580
591
  *
581
592
  * @returns {boolean} Whether the current device supports touch screen interaction
582
593
  *
583
- * @see https://doc-julseb-lib-react.vercel.app/helpers/hooks#useTouchScreen
594
+ * @see https://julseb-lib.vercel.app/components/helpers/hooks#useTouchScreen
584
595
  */
585
596
  declare const useTouchScreen: () => boolean;
586
597
 
@@ -617,7 +628,7 @@ declare const useTouchScreen: () => boolean;
617
628
  * @returns {string} returns.language - Current active language code
618
629
  * @returns {Array<string>} returns.languages - Array of available language codes
619
630
  *
620
- * @see https://doc-julseb-lib-react.vercel.app/helpers/hooks#useTranslation
631
+ * @see https://julseb-lib.vercel.app/components/helpers/hooks#useTranslation
621
632
  */
622
633
  declare const useTranslation: (translations: TranslateLang) => {
623
634
  translate: (key: string) => string;
@@ -884,7 +895,7 @@ declare const TEXT_BASE_CLASSES: string;
884
895
  *
885
896
  * @returns {JSX.Element} The rendered text element.
886
897
  *
887
- * @see https://doc-julseb-lib-react.vercel.app/styles/text
898
+ * @see https://julseb-lib.vercel.app/components/styles/text
888
899
  */
889
900
  declare const Text: FC$2<ILibText>;
890
901
 
@@ -911,7 +922,7 @@ declare const Text: FC$2<ILibText>;
911
922
  *
912
923
  * @returns {JSX.Element} The rendered wrapper container.
913
924
  *
914
- * @see https://doc-julseb-lib-react.vercel.app/styles/wrapper
925
+ * @see https://julseb-lib.vercel.app/components/styles/wrapper
915
926
  */
916
927
  declare const Wrapper: FC$2<ILibWrapper>;
917
928
 
@@ -937,7 +948,7 @@ declare const Wrapper: FC$2<ILibWrapper>;
937
948
  *
938
949
  * @returns {JSX.Element} The rendered main container.
939
950
  *
940
- * @see https://doc-julseb-lib-react.vercel.app/styles/main
951
+ * @see https://julseb-lib.vercel.app/components/styles/main
941
952
  */
942
953
  declare const Main: FC$2<ILibMain>;
943
954
 
@@ -961,7 +972,7 @@ declare const Main: FC$2<ILibMain>;
961
972
  *
962
973
  * @returns {JSX.Element} The rendered aside container.
963
974
  *
964
- * @see https://doc-julseb-lib-react.vercel.app/styles/aside
975
+ * @see https://julseb-lib.vercel.app/components/styles/aside
965
976
  */
966
977
  declare const Aside: FC$2<ILibAside>;
967
978
 
@@ -985,7 +996,7 @@ declare const Aside: FC$2<ILibAside>;
985
996
  *
986
997
  * @returns {JSX.Element} The rendered section container.
987
998
  *
988
- * @see https://doc-julseb-lib-react.vercel.app/layouts/section
999
+ * @see https://julseb-lib.vercel.app/components/layouts/section
989
1000
  */
990
1001
  declare const Section: FC$2<ILibSection>;
991
1002
 
@@ -1018,7 +1029,7 @@ declare const Section: FC$2<ILibSection>;
1018
1029
  *
1019
1030
  * @returns {JSX.Element} The rendered grid container.
1020
1031
  *
1021
- * @see https://doc-julseb-lib-react.vercel.app/layouts/grid
1032
+ * @see https://julseb-lib.vercel.app/components/layouts/grid
1022
1033
  */
1023
1034
  declare const Grid: FC$2<ILibGrid>;
1024
1035
 
@@ -1051,7 +1062,7 @@ declare const Grid: FC$2<ILibGrid>;
1051
1062
  *
1052
1063
  * @returns {JSX.Element} The rendered flexbox container.
1053
1064
  *
1054
- * @see https://doc-julseb-lib-react.vercel.app/layouts/flexbox
1065
+ * @see https://julseb-lib.vercel.app/components/layouts/flexbox
1055
1066
  */
1056
1067
  declare const Flexbox: FC$2<ILibFlexbox>;
1057
1068
 
@@ -1070,7 +1081,7 @@ declare const Flexbox: FC$2<ILibFlexbox>;
1070
1081
  *
1071
1082
  * @returns {JSX.Element} The rendered Key component.
1072
1083
  *
1073
- * @see https://doc-julseb-lib-react.vercel.app/layouts/key
1084
+ * @see https://julseb-lib.vercel.app/components/layouts/key
1074
1085
  */
1075
1086
  declare const Key: FC$2<ILibKey>;
1076
1087
 
@@ -1088,7 +1099,7 @@ declare const Key: FC$2<ILibKey>;
1088
1099
  *
1089
1100
  * @returns {JSX.Element} The rendered Highlight component.
1090
1101
  *
1091
- * @see https://doc-julseb-lib-react.vercel.app/layouts/highlight
1102
+ * @see https://julseb-lib.vercel.app/components/layouts/highlight
1092
1103
  */
1093
1104
  declare const Highlight: FC$2<ILibHighlight>;
1094
1105
 
@@ -1114,7 +1125,7 @@ declare const Highlight: FC$2<ILibHighlight>;
1114
1125
  *
1115
1126
  * @returns {ReactElement} The rendered Linkify component with URLs converted to clickable links.
1116
1127
  *
1117
- * @see https://doc-julseb-lib-react.vercel.app/components/linkify
1128
+ * @see https://julseb-lib.vercel.app/components/linkify
1118
1129
  */
1119
1130
  declare const Linkify: FC$2<ILibLinkify>;
1120
1131
 
@@ -1134,7 +1145,7 @@ declare const Linkify: FC$2<ILibLinkify>;
1134
1145
  *
1135
1146
  * @returns {JSX.Element} The rendered Hr component.
1136
1147
  *
1137
- * @see https://doc-julseb-lib-react.vercel.app/components/hr
1148
+ * @see https://julseb-lib.vercel.app/components/hr
1138
1149
  */
1139
1150
  declare const Hr: FC$2<ILibHr>;
1140
1151
 
@@ -1153,7 +1164,7 @@ declare const Hr: FC$2<ILibHr>;
1153
1164
  *
1154
1165
  * @returns {JSX.Element} The rendered Skeleton component.
1155
1166
  *
1156
- * @see https://doc-julseb-lib-react.vercel.app/layouts/skeleton
1167
+ * @see https://julseb-lib.vercel.app/components/layouts/skeleton
1157
1168
  */
1158
1169
  declare const Skeleton: FC$2<ILibSkeleton>;
1159
1170
 
@@ -1182,7 +1193,7 @@ declare const Skeleton: FC$2<ILibSkeleton>;
1182
1193
  *
1183
1194
  * @returns {JSX.Element} The rendered SkeletonCard component.
1184
1195
  *
1185
- * @see https://doc-julseb-lib-react.vercel.app/layouts/skeletoncard
1196
+ * @see https://julseb-lib.vercel.app/components/layouts/skeletoncard
1186
1197
  */
1187
1198
  declare const SkeletonCard: FC<ILibSkeletonCard>;
1188
1199
 
@@ -1223,7 +1234,7 @@ declare const SkeletonCard: FC<ILibSkeletonCard>;
1223
1234
  *
1224
1235
  * @returns {JSX.Element} The rendered Tooltip component.
1225
1236
  *
1226
- * @see https://doc-julseb-lib-react.vercel.app/components/tooltip
1237
+ * @see https://julseb-lib.vercel.app/components/tooltip
1227
1238
  */
1228
1239
  declare const Tooltip: FC$2<ILibTooltip>;
1229
1240
 
@@ -1245,7 +1256,7 @@ declare const Tooltip: FC$2<ILibTooltip>;
1245
1256
  *
1246
1257
  * @returns {JSX.Element} The rendered Image component.
1247
1258
  *
1248
- * @see https://doc-julseb-lib-react.vercel.app/layouts/image
1259
+ * @see https://julseb-lib.vercel.app/components/layouts/image
1249
1260
  */
1250
1261
  declare const Image: FC$2<ILibImage>;
1251
1262
 
@@ -1273,7 +1284,7 @@ declare const Image: FC$2<ILibImage>;
1273
1284
  *
1274
1285
  * @returns {JSX.Element} The rendered LazyImage component with a skeleton fallback while loading.
1275
1286
  *
1276
- * @see https://doc-julseb-lib-react.vercel.app/components/lazy-image
1287
+ * @see https://julseb-lib.vercel.app/components/lazy-image
1277
1288
  */
1278
1289
  declare const LazyImage: FC$2<ILibLazyImage>;
1279
1290
 
@@ -1302,7 +1313,7 @@ declare const LazyImage: FC$2<ILibLazyImage>;
1302
1313
  *
1303
1314
  * @returns {JSX.Element} The rendered Masonry component.
1304
1315
  *
1305
- * @see https://doc-julseb-lib-react.vercel.app/components/masonry
1316
+ * @see https://julseb-lib.vercel.app/components/masonry
1306
1317
  */
1307
1318
  declare const Masonry: FC$2<ILibMasonry>;
1308
1319
 
@@ -1327,7 +1338,7 @@ declare const Masonry: FC$2<ILibMasonry>;
1327
1338
  *
1328
1339
  * @returns {JSX.Element} The rendered Badge component.
1329
1340
  *
1330
- * @see https://doc-julseb-lib-react.vercel.app/components/badge
1341
+ * @see https://julseb-lib.vercel.app/components/badge
1331
1342
  */
1332
1343
  declare const Badge: FC$2<ILibBadge>;
1333
1344
 
@@ -1356,7 +1367,7 @@ declare const Badge: FC$2<ILibBadge>;
1356
1367
  *
1357
1368
  * @returns {JSX.Element} The rendered Avatar component.
1358
1369
  *
1359
- * @see https://doc-julseb-lib-react.vercel.app/components/avatar
1370
+ * @see https://julseb-lib.vercel.app/components/avatar
1360
1371
  */
1361
1372
  declare const Avatar: FC$2<ILibAvatar>;
1362
1373
 
@@ -1379,7 +1390,7 @@ declare const Avatar: FC$2<ILibAvatar>;
1379
1390
  *
1380
1391
  * @returns {JSX.Element} The rendered Loader component.
1381
1392
  *
1382
- * @see https://doc-julseb-lib-react.vercel.app/components/loader
1393
+ * @see https://julseb-lib.vercel.app/components/loader
1383
1394
  */
1384
1395
  declare const Loader: FC$2<ILibLoader>;
1385
1396
 
@@ -1410,7 +1421,7 @@ declare const Loader: FC$2<ILibLoader>;
1410
1421
  *
1411
1422
  * @returns {JSX.Element} The rendered Burger component.
1412
1423
  *
1413
- * @see https://doc-julseb-lib-react.vercel.app/components/burger
1424
+ * @see https://julseb-lib.vercel.app/components/burger
1414
1425
  */
1415
1426
  declare const Burger: FC$2<ILibBurger>;
1416
1427
 
@@ -1438,7 +1449,7 @@ declare const Burger: FC$2<ILibBurger>;
1438
1449
  *
1439
1450
  * @returns {JSX.Element} The rendered Button component.
1440
1451
  *
1441
- * @see https://doc-julseb-lib-react.vercel.app/components/button
1452
+ * @see https://julseb-lib.vercel.app/components/button
1442
1453
  */
1443
1454
  declare const Button: FC$2<ILibButton>;
1444
1455
 
@@ -1478,7 +1489,7 @@ declare const Button: FC$2<ILibButton>;
1478
1489
  *
1479
1490
  * @returns {JSX.Element} The rendered ButtonIcon component.
1480
1491
  *
1481
- * @see https://doc-julseb-lib-react.vercel.app/components/button-icon
1492
+ * @see https://julseb-lib.vercel.app/components/button-icon
1482
1493
  */
1483
1494
  declare const ButtonIcon: FC$2<ILibButtonIcon>;
1484
1495
 
@@ -1512,7 +1523,7 @@ declare const ButtonIcon: FC$2<ILibButtonIcon>;
1512
1523
  *
1513
1524
  * @returns {JSX.Element} The rendered ButtonGroup component.
1514
1525
  *
1515
- * @see https://doc-julseb-lib-react.vercel.app/components/button-group
1526
+ * @see https://julseb-lib.vercel.app/components/button-group
1516
1527
  */
1517
1528
  declare const ButtonGroup: FC$2<ILibButtonGroup>;
1518
1529
 
@@ -1542,7 +1553,7 @@ declare const ButtonGroup: FC$2<ILibButtonGroup>;
1542
1553
  *
1543
1554
  * @returns {JSX.Element} The rendered Tag component.
1544
1555
  *
1545
- * @see https://doc-julseb-lib-react.vercel.app/components/tag
1556
+ * @see https://julseb-lib.vercel.app/components/tag
1546
1557
  */
1547
1558
  declare const Tag: FC$2<ILibTag>;
1548
1559
 
@@ -1580,7 +1591,7 @@ declare const Tag: FC$2<ILibTag>;
1580
1591
  *
1581
1592
  * @returns {JSX.Element} The rendered InputContainer component or just children if no wrapper content is needed.
1582
1593
  *
1583
- * @see https://doc-julseb-lib-react.vercel.app/components/input
1594
+ * @see https://julseb-lib.vercel.app/components/input
1584
1595
  */
1585
1596
  declare const InputContainer: FC$2<ILibInputContainer>;
1586
1597
 
@@ -1622,7 +1633,7 @@ declare const InputContainer: FC$2<ILibInputContainer>;
1622
1633
  *
1623
1634
  * @returns {JSX.Element} The rendered Input component.
1624
1635
  *
1625
- * @see https://doc-julseb-lib-react.vercel.app/components/input
1636
+ * @see https://julseb-lib.vercel.app/components/input
1626
1637
  */
1627
1638
  declare const Input: FC$2<ILibInput>;
1628
1639
 
@@ -1658,7 +1669,7 @@ declare const Input: FC$2<ILibInput>;
1658
1669
  *
1659
1670
  * @returns {JSX.Element} The rendered InputImage component.
1660
1671
  *
1661
- * @see https://doc-julseb-lib-react.vercel.app/components/input-image
1672
+ * @see https://julseb-lib.vercel.app/components/input-image
1662
1673
  */
1663
1674
  declare const InputImage: FC$2<ILibInputImage>;
1664
1675
 
@@ -1695,7 +1706,7 @@ declare const InputImage: FC$2<ILibInputImage>;
1695
1706
  *
1696
1707
  * @returns {JSX.Element} The rendered InputCheck component.
1697
1708
  *
1698
- * @see https://doc-julseb-lib-react.vercel.app/components/input-check
1709
+ * @see https://julseb-lib.vercel.app/components/input-check
1699
1710
  */
1700
1711
  declare const InputCheck: FC$2<ILibInputCheck>;
1701
1712
 
@@ -1738,7 +1749,7 @@ declare const InputCheck: FC$2<ILibInputCheck>;
1738
1749
  *
1739
1750
  * @returns {JSX.Element} The rendered InputPhone component.
1740
1751
  *
1741
- * @see https://doc-julseb-lib-react.vercel.app/components/input-phone
1752
+ * @see https://julseb-lib.vercel.app/components/input-phone
1742
1753
  */
1743
1754
  declare const InputPhone: FC$2<ILibInputPhone>;
1744
1755
 
@@ -1793,7 +1804,7 @@ declare const countries: Array<LibCountry>;
1793
1804
  *
1794
1805
  * @returns {JSX.Element} The rendered InputCounter component.
1795
1806
  *
1796
- * @see https://doc-julseb-lib-react.vercel.app/components/input-counter
1807
+ * @see https://julseb-lib.vercel.app/components/input-counter
1797
1808
  */
1798
1809
  declare const InputCounter: FC$2<ILibInputCounter>;
1799
1810
 
@@ -1832,7 +1843,7 @@ declare const InputCounter: FC$2<ILibInputCounter>;
1832
1843
  *
1833
1844
  * @returns {JSX.Element} The rendered InputSlider component.
1834
1845
  *
1835
- * @see https://doc-julseb-lib-react.vercel.app/components/input-slider
1846
+ * @see https://julseb-lib.vercel.app/components/input-slider
1836
1847
  */
1837
1848
  declare const InputSlider: FC$2<ILibInputSlider>;
1838
1849
 
@@ -1873,7 +1884,7 @@ declare const InputSlider: FC$2<ILibInputSlider>;
1873
1884
  *
1874
1885
  * @returns {JSX.Element} The rendered Select component.
1875
1886
  *
1876
- * @see https://doc-julseb-lib-react.vercel.app/components/select
1887
+ * @see https://julseb-lib.vercel.app/components/select
1877
1888
  */
1878
1889
  declare const Select: FC$2<ILibSelect>;
1879
1890
 
@@ -1919,7 +1930,7 @@ declare const Select: FC$2<ILibSelect>;
1919
1930
  *
1920
1931
  * @returns {JSX.Element} The rendered Autocomplete component.
1921
1932
  *
1922
- * @see https://doc-julseb-lib-react.vercel.app/components/autocomplete
1933
+ * @see https://julseb-lib.vercel.app/components/autocomplete
1923
1934
  */
1924
1935
  declare const Autocomplete: FC$2<ILibAutocomplete>;
1925
1936
 
@@ -1961,7 +1972,7 @@ declare const Autocomplete: FC$2<ILibAutocomplete>;
1961
1972
  *
1962
1973
  * @returns {JSX.Element} The rendered Rating component.
1963
1974
  *
1964
- * @see https://doc-julseb-lib-react.vercel.app/components/rating
1975
+ * @see https://julseb-lib.vercel.app/components/rating
1965
1976
  */
1966
1977
  declare const Rating: FC$2<ILibRating>;
1967
1978
 
@@ -1999,7 +2010,7 @@ declare const Rating: FC$2<ILibRating>;
1999
2010
  *
2000
2011
  * @returns {JSX.Element} The rendered InputPin component.
2001
2012
  *
2002
- * @see https://doc-julseb-lib-react.vercel.app/components/input-pin
2013
+ * @see https://julseb-lib.vercel.app/components/input-pin
2003
2014
  */
2004
2015
  declare const InputPin: FC$2<ILibInputPin>;
2005
2016
 
@@ -2037,7 +2048,7 @@ declare const InputPin: FC$2<ILibInputPin>;
2037
2048
  *
2038
2049
  * @returns {JSX.Element} The rendered Fieldset component.
2039
2050
  *
2040
- * @see https://doc-julseb-lib-react.vercel.app/components/fieldset
2051
+ * @see https://julseb-lib.vercel.app/components/fieldset
2041
2052
  */
2042
2053
  declare const Fieldset: FC$2<ILibFieldset>;
2043
2054
 
@@ -2071,7 +2082,7 @@ declare const Fieldset: FC$2<ILibFieldset>;
2071
2082
  *
2072
2083
  * @returns {JSX.Element} The rendered Form component.
2073
2084
  *
2074
- * @see https://doc-julseb-lib-react.vercel.app/components/form
2085
+ * @see https://julseb-lib.vercel.app/components/form
2075
2086
  */
2076
2087
  declare const Form: FC$2<ILibForm>;
2077
2088
 
@@ -2103,7 +2114,7 @@ declare const Form: FC$2<ILibForm>;
2103
2114
  *
2104
2115
  * @returns {JSX.Element} The rendered ListGroup component.
2105
2116
  *
2106
- * @see https://doc-julseb-lib-react.vercel.app/components/list-group
2117
+ * @see https://julseb-lib.vercel.app/components/list-group
2107
2118
  */
2108
2119
  declare const ListGroup: FC$2<ILibListGroup>;
2109
2120
 
@@ -2134,7 +2145,7 @@ declare const ListGroup: FC$2<ILibListGroup>;
2134
2145
  *
2135
2146
  * @returns {JSX.Element} The rendered ListGroupTitle component.
2136
2147
  *
2137
- * @see https://doc-julseb-lib-react.vercel.app/components/list-group
2148
+ * @see https://julseb-lib.vercel.app/components/list-group
2138
2149
  */
2139
2150
  declare const ListGroupTitle: FC$2<ILibListGroupTitle>;
2140
2151
 
@@ -2165,7 +2176,7 @@ declare const ListGroupTitle: FC$2<ILibListGroupTitle>;
2165
2176
  *
2166
2177
  * @returns {JSX.Element} The rendered ListGroupItem component.
2167
2178
  *
2168
- * @see https://doc-julseb-lib-react.vercel.app/components/list-group
2179
+ * @see https://julseb-lib.vercel.app/components/list-group
2169
2180
  */
2170
2181
  declare const ListGroupItem: FC$2<ILibListGroupItem>;
2171
2182
 
@@ -2195,7 +2206,7 @@ declare const ListGroupItem: FC$2<ILibListGroupItem>;
2195
2206
  * <Text>Current Page</Text>
2196
2207
  * </Breadcrumbs>
2197
2208
  *
2198
- * @see https://doc-julseb-lib-react.vercel.app/components/breadcrumbs
2209
+ * @see https://julseb-lib.vercel.app/components/breadcrumbs
2199
2210
  */
2200
2211
  declare const Breadcrumbs: FC$2<ILibBreadcrumbs>;
2201
2212
 
@@ -2225,7 +2236,7 @@ declare const Breadcrumbs: FC$2<ILibBreadcrumbs>;
2225
2236
  *
2226
2237
  * @returns {JSX.Element} The rendered Accordion component.
2227
2238
  *
2228
- * @see https://doc-julseb-lib-react.vercel.app/components/accordion
2239
+ * @see https://julseb-lib.vercel.app/components/accordion
2229
2240
  */
2230
2241
  declare const Accordion: FC$2<ILibAccordion>;
2231
2242
 
@@ -2253,7 +2264,7 @@ declare const Accordion: FC$2<ILibAccordion>;
2253
2264
  *
2254
2265
  * @returns {JSX.Element} The rendered AccordionItem component.
2255
2266
  *
2256
- * @see https://doc-julseb-lib-react.vercel.app/components/accordion
2267
+ * @see https://julseb-lib.vercel.app/components/accordion
2257
2268
  */
2258
2269
  declare const AccordionItem: FC$2<ILibAccordionItem>;
2259
2270
 
@@ -2289,7 +2300,7 @@ declare const AccordionItem: FC$2<ILibAccordionItem>;
2289
2300
  *
2290
2301
  * @returns {JSX.Element} The rendered Dropdown component.
2291
2302
  *
2292
- * @see https://doc-julseb-lib-react.vercel.app/components/dropdown
2303
+ * @see https://julseb-lib.vercel.app/components/dropdown
2293
2304
  */
2294
2305
  declare const Dropdown: FC$2<ILibDropdown>;
2295
2306
 
@@ -2314,7 +2325,7 @@ declare const Dropdown: FC$2<ILibDropdown>;
2314
2325
  *
2315
2326
  * @returns {JSX.Element} The rendered DropdownItem component.
2316
2327
  *
2317
- * @see https://doc-julseb-lib-react.vercel.app/components/dropdown
2328
+ * @see https://julseb-lib.vercel.app/components/dropdown
2318
2329
  */
2319
2330
  declare const DropdownItem: FC$2<ILibDropdownItem>;
2320
2331
 
@@ -2346,7 +2357,7 @@ declare const DropdownItem: FC$2<ILibDropdownItem>;
2346
2357
  *
2347
2358
  * @returns {JSX.Element} The rendered Toast component.
2348
2359
  *
2349
- * @see https://doc-julseb-lib-react.vercel.app/components/toast
2360
+ * @see https://julseb-lib.vercel.app/components/toast
2350
2361
  */
2351
2362
  declare const Toast: FC$2<ILibToast>;
2352
2363
 
@@ -2379,7 +2390,7 @@ declare const Toast: FC$2<ILibToast>;
2379
2390
  *
2380
2391
  * @returns {JSX.Element} The rendered ToastContainer component.
2381
2392
  *
2382
- * @see https://doc-julseb-lib-react.vercel.app/components/toast
2393
+ * @see https://julseb-lib.vercel.app/components/toast
2383
2394
  */
2384
2395
  declare const ToastContainer: FC$2<ToastContainerProps>;
2385
2396
 
@@ -2410,7 +2421,7 @@ declare const ToastContainer: FC$2<ToastContainerProps>;
2410
2421
  * @prop {function} loading - Display a loading toast notification with gray styling.
2411
2422
  * @prop {function} close - Close/dismiss all active toast notifications.
2412
2423
  *
2413
- * @see https://doc-julseb-lib-react.vercel.app/components/toast
2424
+ * @see https://julseb-lib.vercel.app/components/toast
2414
2425
  */
2415
2426
  declare const toast: {
2416
2427
  success: (title: string, options?: Omit<ILibToast, "status" | "closeToast" | "title"> & Omit<ToastOptions, "icon" | "closeButton" | "style" | "autoClose" | "className" | "progressClassName"> & {
@@ -2461,7 +2472,7 @@ declare const toast: {
2461
2472
  *
2462
2473
  * @returns {JSX.Element} The rendered Alert component.
2463
2474
  *
2464
- * @see https://doc-julseb-lib-react.vercel.app/components/alert
2475
+ * @see https://julseb-lib.vercel.app/components/alert
2465
2476
  */
2466
2477
  declare const Alert: FC$2<ILibAlert>;
2467
2478
 
@@ -2498,7 +2509,7 @@ declare const Alert: FC$2<ILibAlert>;
2498
2509
  *
2499
2510
  * @returns {JSX.Element} The rendered Modal component.
2500
2511
  *
2501
- * @see https://doc-julseb-lib-react.vercel.app/components/modal
2512
+ * @see https://julseb-lib.vercel.app/components/modal
2502
2513
  */
2503
2514
  declare const Modal: FC$2<ILibModal>;
2504
2515
 
@@ -2529,7 +2540,7 @@ declare const Modal: FC$2<ILibModal>;
2529
2540
  *
2530
2541
  * @returns {JSX.Element} The rendered DragList component.
2531
2542
  *
2532
- * @see https://doc-julseb-lib-react.vercel.app/components/drag-list
2543
+ * @see https://julseb-lib.vercel.app/components/drag-list
2533
2544
  */
2534
2545
  declare const DragList: FC$2<ILibDragList>;
2535
2546
 
@@ -2563,7 +2574,7 @@ declare const DragList: FC$2<ILibDragList>;
2563
2574
  *
2564
2575
  * @returns {JSX.Element} The rendered DragListItem component.
2565
2576
  *
2566
- * @see https://doc-julseb-lib-react.vercel.app/components/drag-list
2577
+ * @see https://julseb-lib.vercel.app/components/drag-list
2567
2578
  */
2568
2579
  declare const DragListItem: FC$2<ILibDragListItem>;
2569
2580
 
@@ -2598,7 +2609,7 @@ declare const DragListItem: FC$2<ILibDragListItem>;
2598
2609
  *
2599
2610
  * @returns {JSX.Element} The rendered Pagination component.
2600
2611
  *
2601
- * @see https://doc-julseb-lib-react.vercel.app/components/pagination
2612
+ * @see https://julseb-lib.vercel.app/components/pagination
2602
2613
  */
2603
2614
  declare const Pagination: FC$2<ILibPagination>;
2604
2615
 
@@ -2628,7 +2639,7 @@ declare const Pagination: FC$2<ILibPagination>;
2628
2639
  *
2629
2640
  * @returns {JSX.Element} The rendered PaginationButton component.
2630
2641
  *
2631
- * @see https://doc-julseb-lib-react.vercel.app/components/pagination
2642
+ * @see https://julseb-lib.vercel.app/components/pagination
2632
2643
  */
2633
2644
  declare const PaginationButton: FC$2<ILibPaginationButton>;
2634
2645
 
@@ -2671,7 +2682,7 @@ declare const PaginationButton: FC$2<ILibPaginationButton>;
2671
2682
  *
2672
2683
  * @returns {JSX.Element} The rendered Paginator component.
2673
2684
  *
2674
- * @see https://doc-julseb-lib-react.vercel.app/components/paginator
2685
+ * @see https://julseb-lib.vercel.app/components/paginator
2675
2686
  */
2676
2687
  declare const Paginator: FC$2<ILibPaginator>;
2677
2688
 
@@ -2700,7 +2711,7 @@ declare const Paginator: FC$2<ILibPaginator>;
2700
2711
  *
2701
2712
  * @returns {JSX.Element} The rendered ProgressBar component.
2702
2713
  *
2703
- * @see https://doc-julseb-lib-react.vercel.app/components/progress-bar
2714
+ * @see https://julseb-lib.vercel.app/components/progress-bar
2704
2715
  */
2705
2716
  declare const ProgressBar: FC$2<ILibProgressBar>;
2706
2717
 
@@ -2732,7 +2743,7 @@ declare const ProgressBar: FC$2<ILibProgressBar>;
2732
2743
  *
2733
2744
  * @returns {JSX.Element} The rendered ProgressCircle component.
2734
2745
  *
2735
- * @see https://doc-julseb-lib-react.vercel.app/components/progress-circle
2746
+ * @see https://julseb-lib.vercel.app/components/progress-circle
2736
2747
  */
2737
2748
  declare const ProgressCircle: FC$2<ILibProgressCircle>;
2738
2749
 
@@ -2767,7 +2778,7 @@ declare const ProgressCircle: FC$2<ILibProgressCircle>;
2767
2778
  *
2768
2779
  * @returns {JSX.Element} The rendered Tabs component.
2769
2780
  *
2770
- * @see https://doc-julseb-lib-react.vercel.app/components/tabs
2781
+ * @see https://julseb-lib.vercel.app/components/tabs
2771
2782
  */
2772
2783
  declare const Tabs: FC$2<ILibTabs>;
2773
2784
 
@@ -2795,7 +2806,7 @@ declare const Tabs: FC$2<ILibTabs>;
2795
2806
  *
2796
2807
  * @returns {JSX.Element} The rendered TabsContainer component.
2797
2808
  *
2798
- * @see https://doc-julseb-lib-react.vercel.app/components/tabs
2809
+ * @see https://julseb-lib.vercel.app/components/tabs
2799
2810
  */
2800
2811
  declare const TabsContainer: FC$2<ILibTabsContainer>;
2801
2812
 
@@ -2822,7 +2833,7 @@ declare const TabsContainer: FC$2<ILibTabsContainer>;
2822
2833
  *
2823
2834
  * @returns {JSX.Element} The rendered TabsButtonsContainer component.
2824
2835
  *
2825
- * @see https://doc-julseb-lib-react.vercel.app/components/tabs
2836
+ * @see https://julseb-lib.vercel.app/components/tabs
2826
2837
  */
2827
2838
  declare const TabsButtonsContainer: FC$2<ILibTabsButtonsContainer>;
2828
2839
 
@@ -2853,7 +2864,7 @@ declare const TabsButtonsContainer: FC$2<ILibTabsButtonsContainer>;
2853
2864
  *
2854
2865
  * @returns {JSX.Element} The rendered TabsButton component.
2855
2866
  *
2856
- * @see https://doc-julseb-lib-react.vercel.app/components/tabs
2867
+ * @see https://julseb-lib.vercel.app/components/tabs
2857
2868
  */
2858
2869
  declare const TabsButton: FC$2<ILibTabsButton>;
2859
2870
 
@@ -2878,7 +2889,7 @@ declare const TabsButton: FC$2<ILibTabsButton>;
2878
2889
  *
2879
2890
  * @returns {JSX.Element} The rendered TabsContent component.
2880
2891
  *
2881
- * @see https://doc-julseb-lib-react.vercel.app/components/tabs
2892
+ * @see https://julseb-lib.vercel.app/components/tabs
2882
2893
  */
2883
2894
  declare const TabsContent: FC$2<ILibTabsContent>;
2884
2895
 
@@ -2915,7 +2926,7 @@ declare const TabsContent: FC$2<ILibTabsContent>;
2915
2926
  *
2916
2927
  * @returns {JSX.Element} The rendered Slideshow component.
2917
2928
  *
2918
- * @see https://doc-julseb-lib-react.vercel.app/components/slideshow
2929
+ * @see https://julseb-lib.vercel.app/components/slideshow
2919
2930
  */
2920
2931
  declare const Slideshow: FC$2<ILibSlideshow>;
2921
2932
 
@@ -2948,7 +2959,7 @@ declare const Slideshow: FC$2<ILibSlideshow>;
2948
2959
  *
2949
2960
  * @returns A carousel component with continuous scrolling animation and optional gradient overlays
2950
2961
  *
2951
- * @see https://doc-julseb-lib-react.vercel.app/components/carousel
2962
+ * @see https://julseb-lib.vercel.app/components/carousel
2952
2963
  */
2953
2964
  declare const Carousel: FC$2<ILibCarousel>;
2954
2965
 
@@ -2982,7 +2993,7 @@ declare const Carousel: FC$2<ILibCarousel>;
2982
2993
  *
2983
2994
  * @returns {JSX.Element} The rendered Cover component.
2984
2995
  *
2985
- * @see https://doc-julseb-lib-react.vercel.app/components/cover
2996
+ * @see https://julseb-lib.vercel.app/components/cover
2986
2997
  */
2987
2998
  declare const Cover: FC$2<ILibCover>;
2988
2999
 
@@ -3019,7 +3030,7 @@ declare const Cover: FC$2<ILibCover>;
3019
3030
  *
3020
3031
  * @returns {JSX.Element} The rendered Table component.
3021
3032
  *
3022
- * @see https://doc-julseb-lib-react.vercel.app/components/table
3033
+ * @see https://julseb-lib.vercel.app/components/table
3023
3034
  */
3024
3035
  declare const Table: FC$2<ILibTable>;
3025
3036
 
@@ -3048,7 +3059,7 @@ declare const Table: FC$2<ILibTable>;
3048
3059
  *
3049
3060
  * @returns {JSX.Element} The rendered PageLoading component.
3050
3061
  *
3051
- * @see https://doc-julseb-lib-react.vercel.app/components/page-loading
3062
+ * @see https://julseb-lib.vercel.app/components/page-loading
3052
3063
  */
3053
3064
  declare const PageLoading: FC$2<ILibPageLoading>;
3054
3065
 
@@ -3072,7 +3083,7 @@ declare const PageLoading: FC$2<ILibPageLoading>;
3072
3083
  *
3073
3084
  * @returns {JSX.Element} The rendered Sticky component.
3074
3085
  *
3075
- * @see https://doc-julseb-lib-react.vercel.app/components/sticky
3086
+ * @see https://julseb-lib.vercel.app/components/sticky
3076
3087
  */
3077
3088
  declare const Sticky: FC$2<ILibSticky>;
3078
3089
 
@@ -3116,7 +3127,7 @@ declare const Sticky: FC$2<ILibSticky>;
3116
3127
  *
3117
3128
  * @returns {JSX.Element} The rendered MarkdownEditor component.
3118
3129
  *
3119
- * @see https://doc-julseb-lib-react.vercel.app/components/markdown-editor
3130
+ * @see https://julseb-lib.vercel.app/components/markdown-editor
3120
3131
  */
3121
3132
  declare const MarkdownEditor: FC$2<ILibMarkdownEditor>;
3122
3133
 
@@ -3145,7 +3156,7 @@ declare const MarkdownEditor: FC$2<ILibMarkdownEditor>;
3145
3156
  *
3146
3157
  * @returns {JSX.Element} The rendered MarkdownContainer component.
3147
3158
  *
3148
- * @see https://doc-julseb-lib-react.vercel.app/components/markdown-container
3159
+ * @see https://julseb-lib.vercel.app/components/markdown-container
3149
3160
  */
3150
3161
  declare const MarkdownContainer: FC$2<ILibMarkdownContainer>;
3151
3162
 
@@ -3169,7 +3180,7 @@ declare const MarkdownContainer: FC$2<ILibMarkdownContainer>;
3169
3180
  *
3170
3181
  * @returns {JSX.Element} The rendered code block with syntax highlighting and a copy button.
3171
3182
  *
3172
- * @see https://doc-julseb-lib-react.vercel.app/components/code-container
3183
+ * @see https://julseb-lib.vercel.app/components/code-container
3173
3184
  */
3174
3185
  declare const CodeContainer: FC$2<ILibCodeContainer>;
3175
3186
 
@@ -3192,7 +3203,7 @@ declare const CodeContainer: FC$2<ILibCodeContainer>;
3192
3203
  *
3193
3204
  * @returns {JSX.Element} The rendered Fade component.
3194
3205
  *
3195
- * @see https://doc-julseb-lib-react.vercel.app/components/fade
3206
+ * @see https://julseb-lib.vercel.app/components/fade
3196
3207
  */
3197
3208
  declare const Fade: FC$2<ILibFade>;
3198
3209
 
@@ -3219,7 +3230,7 @@ declare const Fade: FC$2<ILibFade>;
3219
3230
  *
3220
3231
  * @returns {JSX.Element} The rendered BackToTop component.
3221
3232
  *
3222
- * @see https://doc-julseb-lib-react.vercel.app/components/back-to-top
3233
+ * @see https://julseb-lib.vercel.app/components/back-to-top
3223
3234
  */
3224
3235
  declare const BackToTop: FC$2<ILibBackToTop>;
3225
3236
 
@@ -3261,7 +3272,7 @@ declare const BackToTop: FC$2<ILibBackToTop>;
3261
3272
  *
3262
3273
  * @returns {JSX.Element} The rendered Drawer component.
3263
3274
  *
3264
- * @see https://doc-julseb-lib-react.vercel.app/components/drawer
3275
+ * @see https://julseb-lib.vercel.app/components/drawer
3265
3276
  */
3266
3277
  declare const Drawer: FC$2<ILibDrawer>;
3267
3278
 
@@ -3310,7 +3321,7 @@ declare const Drawer: FC$2<ILibDrawer>;
3310
3321
  *
3311
3322
  * @returns {JSX.Element} The rendered Header component.
3312
3323
  *
3313
- * @see https://doc-julseb-lib-react.vercel.app/components/header
3324
+ * @see https://julseb-lib.vercel.app/components/header
3314
3325
  */
3315
3326
  declare const Header: FC$2<ILibHeader>;
3316
3327
 
@@ -3348,7 +3359,7 @@ declare const Header: FC$2<ILibHeader>;
3348
3359
  *
3349
3360
  * @returns {JSX.Element} The rendered Footer component.
3350
3361
  *
3351
- * @see https://doc-julseb-lib-react.vercel.app/components/footer
3362
+ * @see https://julseb-lib.vercel.app/components/footer
3352
3363
  */
3353
3364
  declare const Footer: FC$2<ILibFooter>;
3354
3365
 
@@ -3394,7 +3405,7 @@ declare const Footer: FC$2<ILibFooter>;
3394
3405
  *
3395
3406
  * @returns {JSX.Element} The rendered Meta component with HTML head elements.
3396
3407
  *
3397
- * @see https://doc-julseb-lib-react.vercel.app/components/meta
3408
+ * @see https://julseb-lib.vercel.app/components/meta
3398
3409
  */
3399
3410
  declare const Meta: FC$2<ILibMeta>;
3400
3411
 
@@ -3425,7 +3436,7 @@ declare const Meta: FC$2<ILibMeta>;
3425
3436
  *
3426
3437
  * @returns {JSX.Element} The rendered PageLayout component with complete page structure.
3427
3438
  *
3428
- * @see https://doc-julseb-lib-react.vercel.app/components/page-layout
3439
+ * @see https://julseb-lib.vercel.app/components/page-layout
3429
3440
  */
3430
3441
  declare const PageLayout: FC$2<ILibPageLayout>;
3431
3442
 
@@ -3447,7 +3458,7 @@ declare const PageLayout: FC$2<ILibPageLayout>;
3447
3458
  *
3448
3459
  * @returns {JSX.Element} The rendered SrOnly component with screen reader accessible content.
3449
3460
  *
3450
- * @see https://doc-julseb-lib-react.vercel.app/components/sr-only
3461
+ * @see https://julseb-lib.vercel.app/components/sr-only
3451
3462
  */
3452
3463
  declare const SrOnly: FC$2<ILibSrOnly>;
3453
3464