@julseb-lib/react 0.1.70 → 0.1.72
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 +29 -39
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +15 -12
- package/dist/index.d.ts +15 -12
- package/dist/index.js +29 -39
- package/dist/index.js.map +1 -1
- package/dist/types/components-props.d.cts +2 -0
- package/dist/types/components-props.d.ts +2 -0
- package/package.json +1 -1
|
@@ -588,6 +588,8 @@ interface ILibListGroupItem extends Omit<LibComponentBase<HTMLDivElement>, "titl
|
|
|
588
588
|
|
|
589
589
|
interface ILibBreadcrumbs extends LibComponentBase<HTMLDivElement> {
|
|
590
590
|
separator?: ReactChildren;
|
|
591
|
+
accentColor?: LibColorsHover;
|
|
592
|
+
textColor?: LibAllColors;
|
|
591
593
|
}
|
|
592
594
|
|
|
593
595
|
interface ILibAccordionBase extends LibComponentBase<HTMLDivElement> {
|
|
@@ -588,6 +588,8 @@ interface ILibListGroupItem extends Omit<LibComponentBase<HTMLDivElement>, "titl
|
|
|
588
588
|
|
|
589
589
|
interface ILibBreadcrumbs extends LibComponentBase<HTMLDivElement> {
|
|
590
590
|
separator?: ReactChildren;
|
|
591
|
+
accentColor?: LibColorsHover;
|
|
592
|
+
textColor?: LibAllColors;
|
|
591
593
|
}
|
|
592
594
|
|
|
593
595
|
interface ILibAccordionBase extends LibComponentBase<HTMLDivElement> {
|