@julseb-lib/react 0.1.69 → 0.1.71
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 +5 -7
- 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 +5 -7
- package/dist/index.js.map +1 -1
- package/dist/types/components-props.d.cts +3 -1
- package/dist/types/components-props.d.ts +3 -1
- package/package.json +1 -1
|
@@ -519,7 +519,7 @@ type ILibInputPin = Omit<LibComponentBase<HTMLDivElement>, "element"> & Omit<ILi
|
|
|
519
519
|
onChange?: never;
|
|
520
520
|
};
|
|
521
521
|
|
|
522
|
-
type ILibFieldset = Omit<LibComponentBase<HTMLFieldSetElement>, "element"> & Omit<ILibInputCommon, "inputBackground" | "inputVariant"> & ILibInputWithValidation & {
|
|
522
|
+
type ILibFieldset = Omit<LibComponentBase<HTMLFieldSetElement>, "element"> & Omit<ILibInputCommon, "inputBackground" | "inputVariant" | "label" | "labelComment" | "helper"> & ILibInputWithValidation & {
|
|
523
523
|
legend: string;
|
|
524
524
|
borderRadius?: LibRadiuses;
|
|
525
525
|
};
|
|
@@ -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> {
|
|
@@ -519,7 +519,7 @@ type ILibInputPin = Omit<LibComponentBase<HTMLDivElement>, "element"> & Omit<ILi
|
|
|
519
519
|
onChange?: never;
|
|
520
520
|
};
|
|
521
521
|
|
|
522
|
-
type ILibFieldset = Omit<LibComponentBase<HTMLFieldSetElement>, "element"> & Omit<ILibInputCommon, "inputBackground" | "inputVariant"> & ILibInputWithValidation & {
|
|
522
|
+
type ILibFieldset = Omit<LibComponentBase<HTMLFieldSetElement>, "element"> & Omit<ILibInputCommon, "inputBackground" | "inputVariant" | "label" | "labelComment" | "helper"> & ILibInputWithValidation & {
|
|
523
523
|
legend: string;
|
|
524
524
|
borderRadius?: LibRadiuses;
|
|
525
525
|
};
|
|
@@ -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> {
|