@julseb-lib/react 0.1.82 → 0.1.83
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 +8 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -4
- package/dist/index.d.ts +5 -4
- package/dist/index.js +8 -5
- package/dist/index.js.map +1 -1
- package/dist/types/components-props.d.cts +2 -1
- package/dist/types/components-props.d.ts +2 -1
- package/package.json +1 -1
|
@@ -981,7 +981,7 @@ interface ILibHeaderBase extends LibComponentBase<HTMLDivElement> {
|
|
|
981
981
|
search?: LibHeaderSearch;
|
|
982
982
|
backgroundColor?: LibAllColors;
|
|
983
983
|
textColor?: LibAllColors;
|
|
984
|
-
|
|
984
|
+
linksColor?: LibColorsHover;
|
|
985
985
|
}
|
|
986
986
|
interface HeaderFixed extends ILibHeaderBase {
|
|
987
987
|
position?: Extract<LibHeaderPosition, "fixed">;
|
|
@@ -1014,6 +1014,7 @@ interface ILibFooterBase extends LibComponentBase<HTMLDivElement> {
|
|
|
1014
1014
|
hideLinksSeparator?: boolean;
|
|
1015
1015
|
linksSeparator?: LibFooterLinksSeparator;
|
|
1016
1016
|
linksSeparatorColor?: LibAllColors;
|
|
1017
|
+
linksColor?: LibColorsHover;
|
|
1017
1018
|
}
|
|
1018
1019
|
interface FooterHorizontalWithItems extends ILibFooterBase {
|
|
1019
1020
|
items: Array<ReactChildren>;
|
|
@@ -981,7 +981,7 @@ interface ILibHeaderBase extends LibComponentBase<HTMLDivElement> {
|
|
|
981
981
|
search?: LibHeaderSearch;
|
|
982
982
|
backgroundColor?: LibAllColors;
|
|
983
983
|
textColor?: LibAllColors;
|
|
984
|
-
|
|
984
|
+
linksColor?: LibColorsHover;
|
|
985
985
|
}
|
|
986
986
|
interface HeaderFixed extends ILibHeaderBase {
|
|
987
987
|
position?: Extract<LibHeaderPosition, "fixed">;
|
|
@@ -1014,6 +1014,7 @@ interface ILibFooterBase extends LibComponentBase<HTMLDivElement> {
|
|
|
1014
1014
|
hideLinksSeparator?: boolean;
|
|
1015
1015
|
linksSeparator?: LibFooterLinksSeparator;
|
|
1016
1016
|
linksSeparatorColor?: LibAllColors;
|
|
1017
|
+
linksColor?: LibColorsHover;
|
|
1017
1018
|
}
|
|
1018
1019
|
interface FooterHorizontalWithItems extends ILibFooterBase {
|
|
1019
1020
|
items: Array<ReactChildren>;
|