@julseb-lib/react 1.1.24 → 1.1.26
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/{Image-2WXN57FZ.js → Image-4MLJ7FPA.js} +2 -2
- package/dist/{chunk-AKGT77NY.js → chunk-PXJ4JXEH.js} +308 -78
- package/dist/chunk-PXJ4JXEH.js.map +1 -0
- package/dist/{global-DDESDwEf.d.cts → global-CXiIaXyy.d.cts} +181 -47
- package/dist/{global-DDESDwEf.d.ts → global-CXiIaXyy.d.ts} +181 -47
- package/dist/index.cjs +411 -157
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +13 -6
- package/dist/index.d.ts +13 -6
- package/dist/index.js +92 -82
- package/dist/index.js.map +1 -1
- package/dist/types/components-items-props.d.cts +1 -1
- package/dist/types/components-items-props.d.ts +1 -1
- package/dist/types/components-props.d.cts +366 -3
- package/dist/types/components-props.d.ts +366 -3
- package/dist/types/global.cjs.map +1 -1
- package/dist/types/global.d.cts +1 -1
- package/dist/types/global.d.ts +1 -1
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/types/tailwind.cjs.map +1 -1
- package/dist/types/tailwind.d.cts +31 -1
- package/dist/types/tailwind.d.ts +31 -1
- package/package.json +2 -1
- package/dist/chunk-AKGT77NY.js.map +0 -1
- /package/dist/{Image-2WXN57FZ.js.map → Image-4MLJ7FPA.js.map} +0 -0
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { c as LibColorsHover,
|
|
2
|
-
export {
|
|
1
|
+
import { c as LibColorsHover, af as CssTextAlign, L as LibColors, a as LibColorsShort, b as LibAllColors, e as LibOverlays, f as LibAllColorsAndOverlays, k as LibSpacers, ak as CssAlignContent, ai as CssAlignItems, aj as CssJustifyContent, ah as CssJustifyItems, E as LibMaxWidth, l as LibRadiuses, an as CssObjectFit, u as LibButtonVariantExtended, j as LibShadows, ag as CssVerticalAlign, h as LibFontSizes, i as LibFontWeights, ad as DispatchState, a5 as TranslateLang, aa as ReactChildren, p as LibThemeNames, ac as FC$1, a7 as LibCountry, ab as ReactElement, s as LibLoaderVariant } from './global-CXiIaXyy.cjs';
|
|
2
|
+
export { av as designTokens } from './global-CXiIaXyy.cjs';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
import { ClassNameValue } from 'tailwind-merge';
|
|
5
5
|
import { LibMdEditorOptions } from './types/components-items-props.cjs';
|
|
@@ -154,6 +154,10 @@ declare function enableScroll(): void;
|
|
|
154
154
|
*/
|
|
155
155
|
declare function scrollToTop(): void;
|
|
156
156
|
|
|
157
|
+
declare const genFontSize: Record<LibFontSizes, string>;
|
|
158
|
+
|
|
159
|
+
declare const genFontWeight: Record<LibFontWeights, string>;
|
|
160
|
+
|
|
157
161
|
/**
|
|
158
162
|
* Hook to trigger a function when clicking outside a referenced element.
|
|
159
163
|
*
|
|
@@ -176,7 +180,7 @@ declare function scrollToTop(): void;
|
|
|
176
180
|
*
|
|
177
181
|
* @see https://doc-julseb-lib-react.vercel.app/helpers/hooks#useClickOutside
|
|
178
182
|
*/
|
|
179
|
-
declare const useClickOutside: <T extends HTMLElement = HTMLElement>(ref: RefObject<T>, handler: () => void, isActive?: boolean, delay?: number) => void;
|
|
183
|
+
declare const useClickOutside: <T extends HTMLElement = HTMLElement>(ref: RefObject<T>, handler: (e?: MouseEvent) => void, isActive?: boolean, delay?: number) => void;
|
|
180
184
|
|
|
181
185
|
type CopiedValue = string | null;
|
|
182
186
|
type CopyFn = (text: string) => Promise<boolean>;
|
|
@@ -556,7 +560,7 @@ declare const usePagination: ({ currentPage, setCurrentPage, totalPages, }: ILib
|
|
|
556
560
|
*/
|
|
557
561
|
declare const useTextLineCount: (text: string, fontSize?: number) => {
|
|
558
562
|
visualLines: number;
|
|
559
|
-
elementRef: react.RefObject<
|
|
563
|
+
elementRef: react.RefObject<HTMLTextAreaElement | HTMLInputElement | null>;
|
|
560
564
|
};
|
|
561
565
|
|
|
562
566
|
/**
|
|
@@ -870,8 +874,10 @@ declare const TEXT_BASE_CLASSES: string;
|
|
|
870
874
|
* @prop {string} [props.color="currentColor"] - Any color from the library.
|
|
871
875
|
* @prop {"red"|"orange"|"amber"|"yellow"|"lime"|"green"|"emerald"|"teal"|"cyan"|"sky"|"blue"|"indigo"|"violet"|"purple"|"fuchsia"|"pink"|"rose"|"slate"} [props.linkColor="blue"] - Any hover color.
|
|
872
876
|
* @prop {"text-left"|"text-center"|"text-right"|"text-justify"|"text-start"|"text-end"} [props.textAlign="left"] - Text alignment.
|
|
873
|
-
* @prop {boolean} [props.display=false] - Whether to use display
|
|
877
|
+
* @prop {boolean} [props.display=false] - Whether to use display text, available only for titles from h1 to h5.
|
|
874
878
|
* @prop {string} [props.className] - Additional class names to apply.
|
|
879
|
+
* @prop {"thin"|"light"|"normal"|"bold"|"black"} [props.fontWeight] - Font weight of the text. Accepts: thin (100), light (300), normal (400), bold (700), black (900).
|
|
880
|
+
* @prop {"xs"|"sm"|"base"|"lg"|"xl"|"2xl"|"3xl"|"4xl"|"5xl"|"6xl"|"7xl"|"8xl"|"9xl"|"display-h1"|"display-h2"|"display-h3"|"display-h4"|"display-h5"|"h1"|"h2"|"h3"|"h4"|"h5"|"h6"|"body"|"small"} [props.fontSize] - Font size of the text. Accepts Tailwind and theme sizes: xs, sm, base, lg, xl, 2xl, 3xl, 4xl, 5xl, 6xl, 7xl, 8xl, 9xl, display-h1, display-h2, display-h3, display-h4, display-h5, h1, h2, h3, h4, h5, h6, body, small.
|
|
875
881
|
* @prop {RefObject<any>} [props.ref] - Ref for the rendered element.
|
|
876
882
|
* @prop {ReactNode} props.children - Text content.
|
|
877
883
|
* @prop {object} [props.rest] - Additional props spread to the rendered element.
|
|
@@ -2488,6 +2494,7 @@ declare const Alert: FC$2<ILibAlert>;
|
|
|
2488
2494
|
* @prop {boolean} [props.hideCloseButton] - Whether to hide the close button in the modal.
|
|
2489
2495
|
* @prop {React.ReactNode} [props.closeIcon=<BiX size={32} />] - Custom close icon for the modal.
|
|
2490
2496
|
* @prop {string} [props.labelClose="Close modal"] - Aria label for the close button.
|
|
2497
|
+
* @prop {boolean} [props.enableScrollWhenOpen] - Enable page scrolling when modal is open.
|
|
2491
2498
|
*
|
|
2492
2499
|
* @returns {JSX.Element} The rendered Modal component.
|
|
2493
2500
|
*
|
|
@@ -3444,4 +3451,4 @@ declare const PageLayout: FC$2<ILibPageLayout>;
|
|
|
3444
3451
|
*/
|
|
3445
3452
|
declare const SrOnly: FC$2<ILibSrOnly>;
|
|
3446
3453
|
|
|
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 };
|
|
3454
|
+
export { Accordion, AccordionItem, Alert, Aside, Autocomplete, Avatar, BackToTop, Badge, Breadcrumbs, Burger, Button, ButtonGroup, ButtonIcon, COLORS, Carousel, CodeContainer, Cover, DROP_SHADOWS, DragList, DragListItem, Drawer, Dropdown, DropdownItem, FONT_FAMILIES, FONT_SIZES, FONT_WEIGHTS, Fade, Fieldset, Flexbox, Footer, Form, Grid, Header, Highlight, Hr, ICON_MULTIPLIER, INPUT_HEIGHT, INSET_SHADOWS, Image, Input, InputCheck, InputContainer, InputCounter, InputImage, InputPhone, InputPin, InputSlider, Key, LAYOUTS, LINE_HEIGHTS, LazyImage, Linkify, ListGroup, ListGroupItem, ListGroupTitle, Loader, MEDIA, Main, MarkdownContainer, MarkdownEditor, Masonry, Meta, Modal, ModalOpenProviderWrapper, OVERLAYS, PageLayout, PageLoading, Pagination, PaginationButton, Paginator, ProgressBar, ProgressCircle, RADIUSES, Rating, SHADOWS, SPACERS, Section, Select, Skeleton, SkeletonCard, Slideshow, SrOnly, Sticky, TEXT_BASE_CLASSES, TEXT_SHADOWS, TRANSITIONS, Table, Tabs, TabsButton, TabsButtonsContainer, TabsContainer, TabsContent, Tag, Text, ThemeProviderWrapper, Toast, ToastContainer, Tooltip, URL_REGEX, Wrapper, clsx, countries, detectLanguage, disableScroll, enableScroll, genAlignContent, genAlignItems, genBgAllColors, genBgAllColorsAndOverlays, genBgColor, genBgColor50, genBgColorGhostHover, genBgColorHover, genBgColorShort, genBgOverlay, genBorderAllColors, genBorderColor, genBorderColorHover, genBorderColorShort, genBorderRadius, genBoxShadow, genButtonColor, genButtonDisabled, genColGap, genFontSize, genFontWeight, genGap, genJustifyContent, genJustifyItems, genLinkColor, genMaxWidth, genObjectFit, genRingColor, genRingColorChildren, genRowGap, genTextAlign, genTextAllColor, genTextColor, genTextColorHover, genTextColorShort, genVAlign, libMarkdownComponents, libMarkdownEditorOptions, linkifyText, scrollToTop, toast, useClickOutside, useCopyToClipboard, useDebounce, useExportData, useFetch, useForm, useIsOverflow, useKeyPress, useLibTheme, useMaxWidth, useMergeRefs, useMinWidth, useModalOpen, usePaginatedData, usePagination, useTextLineCount, useTouchScreen, useTranslation };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { c as LibColorsHover,
|
|
2
|
-
export {
|
|
1
|
+
import { c as LibColorsHover, af as CssTextAlign, L as LibColors, a as LibColorsShort, b as LibAllColors, e as LibOverlays, f as LibAllColorsAndOverlays, k as LibSpacers, ak as CssAlignContent, ai as CssAlignItems, aj as CssJustifyContent, ah as CssJustifyItems, E as LibMaxWidth, l as LibRadiuses, an as CssObjectFit, u as LibButtonVariantExtended, j as LibShadows, ag as CssVerticalAlign, h as LibFontSizes, i as LibFontWeights, ad as DispatchState, a5 as TranslateLang, aa as ReactChildren, p as LibThemeNames, ac as FC$1, a7 as LibCountry, ab as ReactElement, s as LibLoaderVariant } from './global-CXiIaXyy.js';
|
|
2
|
+
export { av as designTokens } from './global-CXiIaXyy.js';
|
|
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.js';
|
|
@@ -154,6 +154,10 @@ declare function enableScroll(): void;
|
|
|
154
154
|
*/
|
|
155
155
|
declare function scrollToTop(): void;
|
|
156
156
|
|
|
157
|
+
declare const genFontSize: Record<LibFontSizes, string>;
|
|
158
|
+
|
|
159
|
+
declare const genFontWeight: Record<LibFontWeights, string>;
|
|
160
|
+
|
|
157
161
|
/**
|
|
158
162
|
* Hook to trigger a function when clicking outside a referenced element.
|
|
159
163
|
*
|
|
@@ -176,7 +180,7 @@ declare function scrollToTop(): void;
|
|
|
176
180
|
*
|
|
177
181
|
* @see https://doc-julseb-lib-react.vercel.app/helpers/hooks#useClickOutside
|
|
178
182
|
*/
|
|
179
|
-
declare const useClickOutside: <T extends HTMLElement = HTMLElement>(ref: RefObject<T>, handler: () => void, isActive?: boolean, delay?: number) => void;
|
|
183
|
+
declare const useClickOutside: <T extends HTMLElement = HTMLElement>(ref: RefObject<T>, handler: (e?: MouseEvent) => void, isActive?: boolean, delay?: number) => void;
|
|
180
184
|
|
|
181
185
|
type CopiedValue = string | null;
|
|
182
186
|
type CopyFn = (text: string) => Promise<boolean>;
|
|
@@ -556,7 +560,7 @@ declare const usePagination: ({ currentPage, setCurrentPage, totalPages, }: ILib
|
|
|
556
560
|
*/
|
|
557
561
|
declare const useTextLineCount: (text: string, fontSize?: number) => {
|
|
558
562
|
visualLines: number;
|
|
559
|
-
elementRef: react.RefObject<
|
|
563
|
+
elementRef: react.RefObject<HTMLTextAreaElement | HTMLInputElement | null>;
|
|
560
564
|
};
|
|
561
565
|
|
|
562
566
|
/**
|
|
@@ -870,8 +874,10 @@ declare const TEXT_BASE_CLASSES: string;
|
|
|
870
874
|
* @prop {string} [props.color="currentColor"] - Any color from the library.
|
|
871
875
|
* @prop {"red"|"orange"|"amber"|"yellow"|"lime"|"green"|"emerald"|"teal"|"cyan"|"sky"|"blue"|"indigo"|"violet"|"purple"|"fuchsia"|"pink"|"rose"|"slate"} [props.linkColor="blue"] - Any hover color.
|
|
872
876
|
* @prop {"text-left"|"text-center"|"text-right"|"text-justify"|"text-start"|"text-end"} [props.textAlign="left"] - Text alignment.
|
|
873
|
-
* @prop {boolean} [props.display=false] - Whether to use display
|
|
877
|
+
* @prop {boolean} [props.display=false] - Whether to use display text, available only for titles from h1 to h5.
|
|
874
878
|
* @prop {string} [props.className] - Additional class names to apply.
|
|
879
|
+
* @prop {"thin"|"light"|"normal"|"bold"|"black"} [props.fontWeight] - Font weight of the text. Accepts: thin (100), light (300), normal (400), bold (700), black (900).
|
|
880
|
+
* @prop {"xs"|"sm"|"base"|"lg"|"xl"|"2xl"|"3xl"|"4xl"|"5xl"|"6xl"|"7xl"|"8xl"|"9xl"|"display-h1"|"display-h2"|"display-h3"|"display-h4"|"display-h5"|"h1"|"h2"|"h3"|"h4"|"h5"|"h6"|"body"|"small"} [props.fontSize] - Font size of the text. Accepts Tailwind and theme sizes: xs, sm, base, lg, xl, 2xl, 3xl, 4xl, 5xl, 6xl, 7xl, 8xl, 9xl, display-h1, display-h2, display-h3, display-h4, display-h5, h1, h2, h3, h4, h5, h6, body, small.
|
|
875
881
|
* @prop {RefObject<any>} [props.ref] - Ref for the rendered element.
|
|
876
882
|
* @prop {ReactNode} props.children - Text content.
|
|
877
883
|
* @prop {object} [props.rest] - Additional props spread to the rendered element.
|
|
@@ -2488,6 +2494,7 @@ declare const Alert: FC$2<ILibAlert>;
|
|
|
2488
2494
|
* @prop {boolean} [props.hideCloseButton] - Whether to hide the close button in the modal.
|
|
2489
2495
|
* @prop {React.ReactNode} [props.closeIcon=<BiX size={32} />] - Custom close icon for the modal.
|
|
2490
2496
|
* @prop {string} [props.labelClose="Close modal"] - Aria label for the close button.
|
|
2497
|
+
* @prop {boolean} [props.enableScrollWhenOpen] - Enable page scrolling when modal is open.
|
|
2491
2498
|
*
|
|
2492
2499
|
* @returns {JSX.Element} The rendered Modal component.
|
|
2493
2500
|
*
|
|
@@ -3444,4 +3451,4 @@ declare const PageLayout: FC$2<ILibPageLayout>;
|
|
|
3444
3451
|
*/
|
|
3445
3452
|
declare const SrOnly: FC$2<ILibSrOnly>;
|
|
3446
3453
|
|
|
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 };
|
|
3454
|
+
export { Accordion, AccordionItem, Alert, Aside, Autocomplete, Avatar, BackToTop, Badge, Breadcrumbs, Burger, Button, ButtonGroup, ButtonIcon, COLORS, Carousel, CodeContainer, Cover, DROP_SHADOWS, DragList, DragListItem, Drawer, Dropdown, DropdownItem, FONT_FAMILIES, FONT_SIZES, FONT_WEIGHTS, Fade, Fieldset, Flexbox, Footer, Form, Grid, Header, Highlight, Hr, ICON_MULTIPLIER, INPUT_HEIGHT, INSET_SHADOWS, Image, Input, InputCheck, InputContainer, InputCounter, InputImage, InputPhone, InputPin, InputSlider, Key, LAYOUTS, LINE_HEIGHTS, LazyImage, Linkify, ListGroup, ListGroupItem, ListGroupTitle, Loader, MEDIA, Main, MarkdownContainer, MarkdownEditor, Masonry, Meta, Modal, ModalOpenProviderWrapper, OVERLAYS, PageLayout, PageLoading, Pagination, PaginationButton, Paginator, ProgressBar, ProgressCircle, RADIUSES, Rating, SHADOWS, SPACERS, Section, Select, Skeleton, SkeletonCard, Slideshow, SrOnly, Sticky, TEXT_BASE_CLASSES, TEXT_SHADOWS, TRANSITIONS, Table, Tabs, TabsButton, TabsButtonsContainer, TabsContainer, TabsContent, Tag, Text, ThemeProviderWrapper, Toast, ToastContainer, Tooltip, URL_REGEX, Wrapper, clsx, countries, detectLanguage, disableScroll, enableScroll, genAlignContent, genAlignItems, genBgAllColors, genBgAllColorsAndOverlays, genBgColor, genBgColor50, genBgColorGhostHover, genBgColorHover, genBgColorShort, genBgOverlay, genBorderAllColors, genBorderColor, genBorderColorHover, genBorderColorShort, genBorderRadius, genBoxShadow, genButtonColor, genButtonDisabled, genColGap, genFontSize, genFontWeight, genGap, genJustifyContent, genJustifyItems, genLinkColor, genMaxWidth, genObjectFit, genRingColor, genRingColorChildren, genRowGap, genTextAlign, genTextAllColor, genTextColor, genTextColorHover, genTextColorShort, genVAlign, libMarkdownComponents, libMarkdownEditorOptions, linkifyText, scrollToTop, toast, useClickOutside, useCopyToClipboard, useDebounce, useExportData, useFetch, useForm, useIsOverflow, useKeyPress, useLibTheme, useMaxWidth, useMergeRefs, useMinWidth, useModalOpen, usePaginatedData, usePagination, useTextLineCount, useTouchScreen, useTranslation };
|