@julseb-lib/react 0.1.42 → 0.1.43

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
@@ -7,12 +7,13 @@ import { LibMdEditorOptions } from './types/components-items-props.cjs';
7
7
  export { addDay, addMonth, addYear, calculateAverage, calculateTotalSum, capitalize, convertDate, convertDateShort, convertPrice, convertToEmail, convertYoutube, deleteDuplicates, detectLanguage, disableScroll, emailRegex, enableScroll, filterObject, formatDate, formatHour, generateNumbers, getFirstName, getInitials, getLastName, getNextDay, getPercentage, getRandom, getRandomAvatar, getRandomDate, getRandomNumber, getRandomString, getRandomTime, getTimeNow, getToday, getTomorrow, getYesterday, hexToRgb, passwordRegex, rgbToHex, scrollToTop, 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
9
  import { RefObject, ChangeEvent, RefCallback, Ref, FC as FC$1 } from 'react';
10
- import { ILibText, ILibWrapper, ILibMain, ILibAside, ILibSection, ILibGrid, ILibFlexbox, ILibKey, ILibHighlight, ILibLinkify, ILibHr, ILibSkeleton, ILibSkeletonCard, ILibTooltip, ILibImage, 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, ILibTabContent, ILibSlideshow, ILibCover, ILibTable, ILibPageLoading, ILibSticky, ILibMarkdownEditor, ILibMarkdownContainer, ILibFade, ILibBackToTop, ILibDrawer, ILibHeader, ILibFooter, ILibMeta, ILibPageLayout, ILibSrOnly } from './types/components-props.cjs';
10
+ import { ILibText, ILibWrapper, ILibMain, ILibAside, ILibSection, ILibGrid, ILibFlexbox, ILibKey, ILibHighlight, ILibLinkify, ILibHr, ILibSkeleton, ILibSkeletonCard, ILibTooltip, ILibImage, 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, ILibTabContent, ILibSlideshow, ILibCover, ILibTable, ILibPageLoading, ILibSticky, ILibMarkdownEditor, ILibMarkdownContainer, ILibFade, ILibBackToTop, ILibDrawer, ILibHeader, ILibFooter, ILibMeta, ILibPageLayout, ILibSrOnly, ILibCodeContainer } from './types/components-props.cjs';
11
11
  import * as react_toastify from 'react-toastify';
12
12
  import { ToastContainerProps, ToastOptions } from 'react-toastify';
13
13
  import 'csstype';
14
14
  import 'fuse.js';
15
15
  import './types/require-at-least-one.cjs';
16
+ import 'prism-react-renderer';
16
17
 
17
18
  declare const URL_REGEX: RegExp;
18
19
  declare const linkifyText: (text: string, blank?: boolean) => (string | react_jsx_runtime.JSX.Element)[];
@@ -1452,7 +1453,8 @@ declare const InputContainer: FC$1<ILibInputContainer>;
1452
1453
  * @prop {React.ReactNode} [props.icon] - Icon element to display inside the input.
1453
1454
  * @prop {string} [props.placeholder] - Placeholder text for the input.
1454
1455
  * @prop {boolean} [props.disabled] - Whether the input is disabled.
1455
- * @prop {React.ReactNode} [props.children] - Child elements for select and textarea types.
1456
+ * @prop {React.ReactNode} [props.children] - Child elements for select type.
1457
+ * @prop {string} [containerClassName] - Additional CSS classes for the container.
1456
1458
  * @prop {any} [props.rest] - Additional props spread to the input element.
1457
1459
  *
1458
1460
  * @returns {JSX.Element} The rendered Input component.
@@ -1488,6 +1490,7 @@ declare const Input: FC$1<ILibInput>;
1488
1490
  * @prop {"none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"} [props.borderRadius="md"] - Border radius of the image container.
1489
1491
  * @prop {boolean} [props.disabled] - Whether the input is disabled.
1490
1492
  * @prop {string} [props.id] - Unique identifier for the input element.
1493
+ * @prop {string} [containerClassName] - Additional CSS classes for the container.
1491
1494
  * @prop {any} [props.rest] - Additional props spread to the file input element.
1492
1495
  *
1493
1496
  * @returns {JSX.Element} The rendered InputImage component.
@@ -1567,6 +1570,7 @@ declare const InputCheck: FC$1<ILibInputCheck>;
1567
1570
  * @prop {LibValidation} [props.validation] - Validation state and configuration object.
1568
1571
  * @prop {"rounded" | "pill"} [props.inputVariant] - Visual variant of the input.
1569
1572
  * @prop {"light" | "dark"} [props.inputBackground] - Background theme of the input.
1573
+ * @prop {string} [containerClassName] - Additional CSS classes for the container.
1570
1574
  * @prop {any} [props.rest] - Additional props spread to the input element.
1571
1575
  *
1572
1576
  * @returns {JSX.Element} The rendered InputPhone component.
@@ -1617,6 +1621,7 @@ declare const InputPhone: FC$1<ILibInputPhone>;
1617
1621
  * @prop {number} [props.min=1] - Minimum allowed value for the counter.
1618
1622
  * @prop {number} [props.max=100] - Maximum allowed value for the counter.
1619
1623
  * @prop {number} [props.step=1] - Increment/decrement step value.
1624
+ * @prop {string} [containerClassName] - Additional CSS classes for the container.
1620
1625
  * @prop {any} [props.rest] - Additional props spread to the input or span element.
1621
1626
  *
1622
1627
  * @returns {JSX.Element} The rendered InputCounter component.
@@ -1655,6 +1660,7 @@ declare const InputCounter: FC$1<ILibInputCounter>;
1655
1660
  * @prop {number} [props.min=0] - Minimum value for the slider range.
1656
1661
  * @prop {number} [props.max=100] - Maximum value for the slider range.
1657
1662
  * @prop {number} [props.value] - Current value of the slider.
1663
+ * @prop {string} [containerClassName] - Additional CSS classes for the container.
1658
1664
  * @prop {any} [props.rest] - Additional props spread to the input element.
1659
1665
  *
1660
1666
  * @returns {JSX.Element} The rendered InputSlider component.
@@ -1695,6 +1701,7 @@ declare const InputSlider: FC$1<ILibInputSlider>;
1695
1701
  * @prop {string} [props.id] - Unique identifier for the select element.
1696
1702
  * @prop {LibValidation} [props.validation] - Validation state and configuration object.
1697
1703
  * @prop {boolean} [props.disabled] - Whether the select is disabled.
1704
+ * @prop {string} [containerClassName] - Additional CSS classes for the container.
1698
1705
  * @prop {any} [props.rest] - Additional props spread to the button element.
1699
1706
  *
1700
1707
  * @returns {JSX.Element} The rendered Select component.
@@ -1740,6 +1747,7 @@ declare const Select: FC$1<ILibSelect>;
1740
1747
  * @prop {string} [props.textNoResult="No result."] - Text to display when no search results are found.
1741
1748
  * @prop {boolean} [props.disabled] - Whether the autocomplete is disabled.
1742
1749
  * @prop {LibValidation} [props.validation] - Validation state and configuration object.
1750
+ * @prop {string} [containerClassName] - Additional CSS classes for the container.
1743
1751
  * @prop {any} [props.rest] - Additional props spread to the input element.
1744
1752
  *
1745
1753
  * @returns {JSX.Element} The rendered Autocomplete component.
@@ -1779,6 +1787,7 @@ declare const Autocomplete: FC$1<ILibAutocomplete>;
1779
1787
  * @prop {string} [props.helperBottom] - Helper text to display at the bottom of the rating.
1780
1788
  * @prop {string} [props.id] - Unique identifier for the rating element.
1781
1789
  * @prop {LibValidation} [props.validation] - Validation state and configuration object.
1790
+ * @prop {string} [containerClassName] - Additional CSS classes for the container.
1782
1791
  * @prop {any} [props.rest] - Additional props spread to the rating container.
1783
1792
  *
1784
1793
  * @returns {JSX.Element} The rendered Rating component.
@@ -1816,6 +1825,7 @@ declare const Rating: FC$1<ILibRating>;
1816
1825
  * @prop {boolean} [props.hideValues] - Whether to hide the input values (password mode).
1817
1826
  * @prop {boolean} [props.disabled] - Whether the pin inputs are disabled.
1818
1827
  * @prop {"light" | "dark"} [props.inputBackground] - Background theme of the input fields.
1828
+ * @prop {string} [containerClassName] - Additional CSS classes for the container.
1819
1829
  * @prop {any} [props.rest] - Additional props spread to the pin input container.
1820
1830
  *
1821
1831
  * @returns {JSX.Element} The rendered InputPin component.
@@ -1853,6 +1863,7 @@ declare const InputPin: FC$1<ILibInputPin>;
1853
1863
  * @prop {LibValidation} [props.validation] - Validation state and configuration object.
1854
1864
  * @prop {string} [props.legend] - Legend text to display as the fieldset title.
1855
1865
  * @prop {"xs" | "sm" | "md" | "lg" | "xl" | "full"} [props.borderRadius="md"] - Border radius size for the fieldset.
1866
+ * @prop {string} [containerClassName] - Additional CSS classes for the container.
1856
1867
  * @prop {any} [props.rest] - Additional props spread to the fieldset element.
1857
1868
  *
1858
1869
  * @returns {JSX.Element} The rendered Fieldset component.
@@ -2894,6 +2905,7 @@ declare const Sticky: FC$1<ILibSticky>;
2894
2905
  * @prop {LibMarkdownEditorOptions} [props.options] - Configuration for which toolbar buttons to show.
2895
2906
  * @prop {string} [props.textButtonTitles="Titles"] - Text for the titles dropdown button.
2896
2907
  * @prop {object} [props.icons] - Custom icons for toolbar buttons.
2908
+ * @prop {string} [containerClassName] - Additional CSS classes for the container.
2897
2909
  *
2898
2910
  * @returns {JSX.Element} The rendered MarkdownEditor component.
2899
2911
  *
@@ -3196,4 +3208,25 @@ declare const PageLayout: FC$1<ILibPageLayout>;
3196
3208
  */
3197
3209
  declare const SrOnly: FC$1<ILibSrOnly>;
3198
3210
 
3199
- export { Accordion, AccordionItem, Alert, Aside, Autocomplete, Avatar, BackToTop, Badge, Breadcrumbs, Burger, Button, ButtonGroup, ButtonIcon, COLORS, 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, Linkify, ListGroup, ListGroupItem, ListGroupTitle, Loader, MEDIA, Main, MarkdownContainer, MarkdownEditor, Masonry, Meta, Modal, OVERLAYS, PageLayout, PageLoading, Pagination, PaginationButton, Paginator, ProgressBar, ProgressCircle, RADIUS, 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, 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, libMarkdownEditorOptions, libOptionsMarkdown, linkifyText, toast, useClickOutside, useCopyToClipboard, useDebounce, useExportData, useFetch, useForm, useIsOverflow, useKeyPress, useLibTheme, useMaxWidth, useMergeRefs, useMinWidth, usePaginatedData, usePagination, useTouchScreen, useTranslation };
3211
+ /**
3212
+ * A container component for displaying syntax-highlighted code blocks with copy-to-clipboard functionality.
3213
+ *
3214
+ * @component
3215
+ *
3216
+ * @example
3217
+ * <CodeContainer language="tsx" theme={themes.oneDark}>
3218
+ * {`const foo = "bar"`}
3219
+ * </CodeContainer>
3220
+ *
3221
+ * @extends HighlightProps
3222
+ *
3223
+ * @prop {string} [props.children] - The code string to be highlighted and displayed. If starting with "$ ", it will be removed before copying. Default: undefined.
3224
+ * @prop {...HighlightProps} [props.<other>] - All other props from `HighlightProps` except "children" and "code".
3225
+ *
3226
+ * @returns {JSX.Element} The rendered code block with syntax highlighting and a copy button.
3227
+ *
3228
+ * @see https://doc-julseb-lib-react.vercel.app/components/CodeContainer
3229
+ */
3230
+ declare const CodeContainer: FC$1<ILibCodeContainer>;
3231
+
3232
+ export { Accordion, AccordionItem, Alert, Aside, Autocomplete, Avatar, BackToTop, Badge, Breadcrumbs, Burger, Button, ButtonGroup, ButtonIcon, COLORS, 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, Linkify, ListGroup, ListGroupItem, ListGroupTitle, Loader, MEDIA, Main, MarkdownContainer, MarkdownEditor, Masonry, Meta, Modal, OVERLAYS, PageLayout, PageLoading, Pagination, PaginationButton, Paginator, ProgressBar, ProgressCircle, RADIUS, 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, 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, libMarkdownEditorOptions, libOptionsMarkdown, linkifyText, toast, useClickOutside, useCopyToClipboard, useDebounce, useExportData, useFetch, useForm, useIsOverflow, useKeyPress, useLibTheme, useMaxWidth, useMergeRefs, useMinWidth, usePaginatedData, usePagination, useTouchScreen, useTranslation };
package/dist/index.d.ts CHANGED
@@ -7,12 +7,13 @@ import { LibMdEditorOptions } from './types/components-items-props.js';
7
7
  export { addDay, addMonth, addYear, calculateAverage, calculateTotalSum, capitalize, convertDate, convertDateShort, convertPrice, convertToEmail, convertYoutube, deleteDuplicates, detectLanguage, disableScroll, emailRegex, enableScroll, filterObject, formatDate, formatHour, generateNumbers, getFirstName, getInitials, getLastName, getNextDay, getPercentage, getRandom, getRandomAvatar, getRandomDate, getRandomNumber, getRandomString, getRandomTime, getTimeNow, getToday, getTomorrow, getYesterday, hexToRgb, passwordRegex, rgbToHex, scrollToTop, 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
9
  import { RefObject, ChangeEvent, RefCallback, Ref, FC as FC$1 } from 'react';
10
- import { ILibText, ILibWrapper, ILibMain, ILibAside, ILibSection, ILibGrid, ILibFlexbox, ILibKey, ILibHighlight, ILibLinkify, ILibHr, ILibSkeleton, ILibSkeletonCard, ILibTooltip, ILibImage, 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, ILibTabContent, ILibSlideshow, ILibCover, ILibTable, ILibPageLoading, ILibSticky, ILibMarkdownEditor, ILibMarkdownContainer, ILibFade, ILibBackToTop, ILibDrawer, ILibHeader, ILibFooter, ILibMeta, ILibPageLayout, ILibSrOnly } from './types/components-props.js';
10
+ import { ILibText, ILibWrapper, ILibMain, ILibAside, ILibSection, ILibGrid, ILibFlexbox, ILibKey, ILibHighlight, ILibLinkify, ILibHr, ILibSkeleton, ILibSkeletonCard, ILibTooltip, ILibImage, 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, ILibTabContent, ILibSlideshow, ILibCover, ILibTable, ILibPageLoading, ILibSticky, ILibMarkdownEditor, ILibMarkdownContainer, ILibFade, ILibBackToTop, ILibDrawer, ILibHeader, ILibFooter, ILibMeta, ILibPageLayout, ILibSrOnly, ILibCodeContainer } from './types/components-props.js';
11
11
  import * as react_toastify from 'react-toastify';
12
12
  import { ToastContainerProps, ToastOptions } from 'react-toastify';
13
13
  import 'csstype';
14
14
  import 'fuse.js';
15
15
  import './types/require-at-least-one.js';
16
+ import 'prism-react-renderer';
16
17
 
17
18
  declare const URL_REGEX: RegExp;
18
19
  declare const linkifyText: (text: string, blank?: boolean) => (string | react_jsx_runtime.JSX.Element)[];
@@ -1452,7 +1453,8 @@ declare const InputContainer: FC$1<ILibInputContainer>;
1452
1453
  * @prop {React.ReactNode} [props.icon] - Icon element to display inside the input.
1453
1454
  * @prop {string} [props.placeholder] - Placeholder text for the input.
1454
1455
  * @prop {boolean} [props.disabled] - Whether the input is disabled.
1455
- * @prop {React.ReactNode} [props.children] - Child elements for select and textarea types.
1456
+ * @prop {React.ReactNode} [props.children] - Child elements for select type.
1457
+ * @prop {string} [containerClassName] - Additional CSS classes for the container.
1456
1458
  * @prop {any} [props.rest] - Additional props spread to the input element.
1457
1459
  *
1458
1460
  * @returns {JSX.Element} The rendered Input component.
@@ -1488,6 +1490,7 @@ declare const Input: FC$1<ILibInput>;
1488
1490
  * @prop {"none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"} [props.borderRadius="md"] - Border radius of the image container.
1489
1491
  * @prop {boolean} [props.disabled] - Whether the input is disabled.
1490
1492
  * @prop {string} [props.id] - Unique identifier for the input element.
1493
+ * @prop {string} [containerClassName] - Additional CSS classes for the container.
1491
1494
  * @prop {any} [props.rest] - Additional props spread to the file input element.
1492
1495
  *
1493
1496
  * @returns {JSX.Element} The rendered InputImage component.
@@ -1567,6 +1570,7 @@ declare const InputCheck: FC$1<ILibInputCheck>;
1567
1570
  * @prop {LibValidation} [props.validation] - Validation state and configuration object.
1568
1571
  * @prop {"rounded" | "pill"} [props.inputVariant] - Visual variant of the input.
1569
1572
  * @prop {"light" | "dark"} [props.inputBackground] - Background theme of the input.
1573
+ * @prop {string} [containerClassName] - Additional CSS classes for the container.
1570
1574
  * @prop {any} [props.rest] - Additional props spread to the input element.
1571
1575
  *
1572
1576
  * @returns {JSX.Element} The rendered InputPhone component.
@@ -1617,6 +1621,7 @@ declare const InputPhone: FC$1<ILibInputPhone>;
1617
1621
  * @prop {number} [props.min=1] - Minimum allowed value for the counter.
1618
1622
  * @prop {number} [props.max=100] - Maximum allowed value for the counter.
1619
1623
  * @prop {number} [props.step=1] - Increment/decrement step value.
1624
+ * @prop {string} [containerClassName] - Additional CSS classes for the container.
1620
1625
  * @prop {any} [props.rest] - Additional props spread to the input or span element.
1621
1626
  *
1622
1627
  * @returns {JSX.Element} The rendered InputCounter component.
@@ -1655,6 +1660,7 @@ declare const InputCounter: FC$1<ILibInputCounter>;
1655
1660
  * @prop {number} [props.min=0] - Minimum value for the slider range.
1656
1661
  * @prop {number} [props.max=100] - Maximum value for the slider range.
1657
1662
  * @prop {number} [props.value] - Current value of the slider.
1663
+ * @prop {string} [containerClassName] - Additional CSS classes for the container.
1658
1664
  * @prop {any} [props.rest] - Additional props spread to the input element.
1659
1665
  *
1660
1666
  * @returns {JSX.Element} The rendered InputSlider component.
@@ -1695,6 +1701,7 @@ declare const InputSlider: FC$1<ILibInputSlider>;
1695
1701
  * @prop {string} [props.id] - Unique identifier for the select element.
1696
1702
  * @prop {LibValidation} [props.validation] - Validation state and configuration object.
1697
1703
  * @prop {boolean} [props.disabled] - Whether the select is disabled.
1704
+ * @prop {string} [containerClassName] - Additional CSS classes for the container.
1698
1705
  * @prop {any} [props.rest] - Additional props spread to the button element.
1699
1706
  *
1700
1707
  * @returns {JSX.Element} The rendered Select component.
@@ -1740,6 +1747,7 @@ declare const Select: FC$1<ILibSelect>;
1740
1747
  * @prop {string} [props.textNoResult="No result."] - Text to display when no search results are found.
1741
1748
  * @prop {boolean} [props.disabled] - Whether the autocomplete is disabled.
1742
1749
  * @prop {LibValidation} [props.validation] - Validation state and configuration object.
1750
+ * @prop {string} [containerClassName] - Additional CSS classes for the container.
1743
1751
  * @prop {any} [props.rest] - Additional props spread to the input element.
1744
1752
  *
1745
1753
  * @returns {JSX.Element} The rendered Autocomplete component.
@@ -1779,6 +1787,7 @@ declare const Autocomplete: FC$1<ILibAutocomplete>;
1779
1787
  * @prop {string} [props.helperBottom] - Helper text to display at the bottom of the rating.
1780
1788
  * @prop {string} [props.id] - Unique identifier for the rating element.
1781
1789
  * @prop {LibValidation} [props.validation] - Validation state and configuration object.
1790
+ * @prop {string} [containerClassName] - Additional CSS classes for the container.
1782
1791
  * @prop {any} [props.rest] - Additional props spread to the rating container.
1783
1792
  *
1784
1793
  * @returns {JSX.Element} The rendered Rating component.
@@ -1816,6 +1825,7 @@ declare const Rating: FC$1<ILibRating>;
1816
1825
  * @prop {boolean} [props.hideValues] - Whether to hide the input values (password mode).
1817
1826
  * @prop {boolean} [props.disabled] - Whether the pin inputs are disabled.
1818
1827
  * @prop {"light" | "dark"} [props.inputBackground] - Background theme of the input fields.
1828
+ * @prop {string} [containerClassName] - Additional CSS classes for the container.
1819
1829
  * @prop {any} [props.rest] - Additional props spread to the pin input container.
1820
1830
  *
1821
1831
  * @returns {JSX.Element} The rendered InputPin component.
@@ -1853,6 +1863,7 @@ declare const InputPin: FC$1<ILibInputPin>;
1853
1863
  * @prop {LibValidation} [props.validation] - Validation state and configuration object.
1854
1864
  * @prop {string} [props.legend] - Legend text to display as the fieldset title.
1855
1865
  * @prop {"xs" | "sm" | "md" | "lg" | "xl" | "full"} [props.borderRadius="md"] - Border radius size for the fieldset.
1866
+ * @prop {string} [containerClassName] - Additional CSS classes for the container.
1856
1867
  * @prop {any} [props.rest] - Additional props spread to the fieldset element.
1857
1868
  *
1858
1869
  * @returns {JSX.Element} The rendered Fieldset component.
@@ -2894,6 +2905,7 @@ declare const Sticky: FC$1<ILibSticky>;
2894
2905
  * @prop {LibMarkdownEditorOptions} [props.options] - Configuration for which toolbar buttons to show.
2895
2906
  * @prop {string} [props.textButtonTitles="Titles"] - Text for the titles dropdown button.
2896
2907
  * @prop {object} [props.icons] - Custom icons for toolbar buttons.
2908
+ * @prop {string} [containerClassName] - Additional CSS classes for the container.
2897
2909
  *
2898
2910
  * @returns {JSX.Element} The rendered MarkdownEditor component.
2899
2911
  *
@@ -3196,4 +3208,25 @@ declare const PageLayout: FC$1<ILibPageLayout>;
3196
3208
  */
3197
3209
  declare const SrOnly: FC$1<ILibSrOnly>;
3198
3210
 
3199
- export { Accordion, AccordionItem, Alert, Aside, Autocomplete, Avatar, BackToTop, Badge, Breadcrumbs, Burger, Button, ButtonGroup, ButtonIcon, COLORS, 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, Linkify, ListGroup, ListGroupItem, ListGroupTitle, Loader, MEDIA, Main, MarkdownContainer, MarkdownEditor, Masonry, Meta, Modal, OVERLAYS, PageLayout, PageLoading, Pagination, PaginationButton, Paginator, ProgressBar, ProgressCircle, RADIUS, 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, 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, libMarkdownEditorOptions, libOptionsMarkdown, linkifyText, toast, useClickOutside, useCopyToClipboard, useDebounce, useExportData, useFetch, useForm, useIsOverflow, useKeyPress, useLibTheme, useMaxWidth, useMergeRefs, useMinWidth, usePaginatedData, usePagination, useTouchScreen, useTranslation };
3211
+ /**
3212
+ * A container component for displaying syntax-highlighted code blocks with copy-to-clipboard functionality.
3213
+ *
3214
+ * @component
3215
+ *
3216
+ * @example
3217
+ * <CodeContainer language="tsx" theme={themes.oneDark}>
3218
+ * {`const foo = "bar"`}
3219
+ * </CodeContainer>
3220
+ *
3221
+ * @extends HighlightProps
3222
+ *
3223
+ * @prop {string} [props.children] - The code string to be highlighted and displayed. If starting with "$ ", it will be removed before copying. Default: undefined.
3224
+ * @prop {...HighlightProps} [props.<other>] - All other props from `HighlightProps` except "children" and "code".
3225
+ *
3226
+ * @returns {JSX.Element} The rendered code block with syntax highlighting and a copy button.
3227
+ *
3228
+ * @see https://doc-julseb-lib-react.vercel.app/components/CodeContainer
3229
+ */
3230
+ declare const CodeContainer: FC$1<ILibCodeContainer>;
3231
+
3232
+ export { Accordion, AccordionItem, Alert, Aside, Autocomplete, Avatar, BackToTop, Badge, Breadcrumbs, Burger, Button, ButtonGroup, ButtonIcon, COLORS, 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, Linkify, ListGroup, ListGroupItem, ListGroupTitle, Loader, MEDIA, Main, MarkdownContainer, MarkdownEditor, Masonry, Meta, Modal, OVERLAYS, PageLayout, PageLoading, Pagination, PaginationButton, Paginator, ProgressBar, ProgressCircle, RADIUS, 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, 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, libMarkdownEditorOptions, libOptionsMarkdown, linkifyText, toast, useClickOutside, useCopyToClipboard, useDebounce, useExportData, useFetch, useForm, useIsOverflow, useKeyPress, useLibTheme, useMaxWidth, useMergeRefs, useMinWidth, usePaginatedData, usePagination, useTouchScreen, useTranslation };