@julseb-lib/react 0.1.45 → 0.1.46
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.cjs +28 -17
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +28 -17
- package/dist/index.js.map +1 -1
- package/dist/types/components-props.d.cts +2 -2
- package/dist/types/components-props.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1088,11 +1088,11 @@ type ILibPageLayout = PageLayoutWithWrapper | PageLayoutWithoutWrapper;
|
|
|
1088
1088
|
interface ILibSrOnly extends Pick<LibComponentBase<HTMLDivElement>, "ref" | "element" | "children"> {
|
|
1089
1089
|
}
|
|
1090
1090
|
|
|
1091
|
-
interface ILibCodeContainer extends Omit<HighlightProps, "children" | "code"> {
|
|
1091
|
+
interface ILibCodeContainer extends Omit<HighlightProps, "children" | "code" | "language"> {
|
|
1092
1092
|
children?: string;
|
|
1093
1093
|
code?: never;
|
|
1094
1094
|
showNumbers?: boolean;
|
|
1095
|
-
language
|
|
1095
|
+
language?: string;
|
|
1096
1096
|
}
|
|
1097
1097
|
|
|
1098
1098
|
export type { ILibAccordion, ILibAccordionItem, ILibAlert, ILibAside, ILibAutocomplete, ILibAvatar, ILibBackToTop, ILibBadge, ILibBreadcrumbs, ILibBurger, ILibButton, ILibButtonGroup, ILibButtonIcon, ILibCodeContainer, ILibCover, ILibDragList, ILibDragListItem, ILibDrawer, ILibDropdown, ILibDropdownItem, ILibFade, ILibFieldset, ILibFlexbox, ILibFooter, ILibForm, ILibGrid, ILibHeader, ILibHighlight, ILibHr, ILibImage, ILibInput, ILibInputCheck, ILibInputContainer, ILibInputCounter, ILibInputImage, ILibInputPhone, ILibInputPin, ILibInputSlider, ILibKey, ILibLinkify, ILibListGroup, ILibListGroupItem, ILibListGroupTitle, ILibLoader, ILibMain, ILibMarkdownContainer, ILibMarkdownEditor, ILibMasonry, ILibMeta, ILibModal, ILibPageLayout, ILibPageLoading, ILibPagination, ILibPaginationButton, ILibPaginator, ILibProgressBar, ILibProgressCircle, ILibRating, ILibSection, ILibSelect, ILibSkeleton, ILibSkeletonCard, ILibSkeletonShine, ILibSlideshow, ILibSrOnly, ILibSticky, ILibTabContent, ILibTable, ILibTabs, ILibTabsButton, ILibTabsButtonsContainer, ILibTabsContainer, ILibTag, ILibText, ILibToast, ILibTooltip, ILibWrapper };
|
|
@@ -1088,11 +1088,11 @@ type ILibPageLayout = PageLayoutWithWrapper | PageLayoutWithoutWrapper;
|
|
|
1088
1088
|
interface ILibSrOnly extends Pick<LibComponentBase<HTMLDivElement>, "ref" | "element" | "children"> {
|
|
1089
1089
|
}
|
|
1090
1090
|
|
|
1091
|
-
interface ILibCodeContainer extends Omit<HighlightProps, "children" | "code"> {
|
|
1091
|
+
interface ILibCodeContainer extends Omit<HighlightProps, "children" | "code" | "language"> {
|
|
1092
1092
|
children?: string;
|
|
1093
1093
|
code?: never;
|
|
1094
1094
|
showNumbers?: boolean;
|
|
1095
|
-
language
|
|
1095
|
+
language?: string;
|
|
1096
1096
|
}
|
|
1097
1097
|
|
|
1098
1098
|
export type { ILibAccordion, ILibAccordionItem, ILibAlert, ILibAside, ILibAutocomplete, ILibAvatar, ILibBackToTop, ILibBadge, ILibBreadcrumbs, ILibBurger, ILibButton, ILibButtonGroup, ILibButtonIcon, ILibCodeContainer, ILibCover, ILibDragList, ILibDragListItem, ILibDrawer, ILibDropdown, ILibDropdownItem, ILibFade, ILibFieldset, ILibFlexbox, ILibFooter, ILibForm, ILibGrid, ILibHeader, ILibHighlight, ILibHr, ILibImage, ILibInput, ILibInputCheck, ILibInputContainer, ILibInputCounter, ILibInputImage, ILibInputPhone, ILibInputPin, ILibInputSlider, ILibKey, ILibLinkify, ILibListGroup, ILibListGroupItem, ILibListGroupTitle, ILibLoader, ILibMain, ILibMarkdownContainer, ILibMarkdownEditor, ILibMasonry, ILibMeta, ILibModal, ILibPageLayout, ILibPageLoading, ILibPagination, ILibPaginationButton, ILibPaginator, ILibProgressBar, ILibProgressCircle, ILibRating, ILibSection, ILibSelect, ILibSkeleton, ILibSkeletonCard, ILibSkeletonShine, ILibSlideshow, ILibSrOnly, ILibSticky, ILibTabContent, ILibTable, ILibTabs, ILibTabsButton, ILibTabsButtonsContainer, ILibTabsContainer, ILibTag, ILibText, ILibToast, ILibTooltip, ILibWrapper };
|