@selfdecode/sd-component-library 2.45.4 → 2.46.0
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/lib/components/buttons/round-icon-button/interfaces.d.ts +0 -4
- package/lib/components/complex/navbar/index.d.ts +1 -0
- package/lib/components/complex/navbar/partials/index.d.ts +1 -0
- package/lib/components/complex/navbar/partials/navbar-v1/index.d.ts +1 -0
- package/lib/components/complex/navbar/partials/navbar-v1/partials/index.d.ts +1 -0
- package/lib/components/complex/navbar/partials/navbar-v1/partials/navbar-mobile-v1/index.d.ts +1 -0
- package/lib/components/complex/navbar/partials/navbar-v1/partials/navbar-mobile-v1/partials/index.d.ts +1 -0
- package/lib/components/complex/updated-navbar/index.d.ts +1 -0
- package/lib/components/complex/updated-navbar/partials/index.d.ts +2 -0
- package/lib/components/complex/updated-navbar/partials/updated-navbar-mobile/index.d.ts +1 -0
- package/lib/components/complex/updated-navbar/partials/updated-navbar-mobile/partials/index.d.ts +4 -0
- package/lib/components/complex/updated-navbar/partials/updated-navbar-mobile/partials/updated-navbar-navigation/index.d.ts +1 -0
- package/lib/components/complex/updated-navbar/partials/updated-navbar-mobile/partials/updated-navbar-navigation/partials/index.d.ts +5 -0
- package/lib/components/complex/updated-navbar/partials/updated-navbar-mobile/partials/updated-navbar-navigation/partials/primary-folded-item/interfaces.d.ts +1 -0
- package/lib/components/complex/updated-navbar/partials/updated-navbar-mobile/partials/updated-navbar-search/interfaces.d.ts +1 -0
- package/lib/components/tooltips/radio-info-button-tooltip/interfaces.d.ts +0 -8
- package/lib/index.d.ts +2 -2
- package/lib/index.js +1 -1
- package/package.json +1 -1
|
@@ -53,10 +53,6 @@ export interface RoundIconButtonProps extends Omit<ButtonProps, "borderRadius" |
|
|
|
53
53
|
* Whether to show tooltip.
|
|
54
54
|
*/
|
|
55
55
|
showTooltip?: boolean;
|
|
56
|
-
/**
|
|
57
|
-
* Max width of the tooltip content.
|
|
58
|
-
*/
|
|
59
|
-
tooltipContentMaxWidth?: string | string[];
|
|
60
56
|
}
|
|
61
57
|
export interface Slot {
|
|
62
58
|
content: React.ReactNode;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./navbar-v1";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./navbar-mobile-v1";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./icon-buttons";
|
|
@@ -3,4 +3,5 @@ import { UpdatedNavbarProps } from "../../../../interfaces";
|
|
|
3
3
|
export interface UpdatedNavbarSearchProps extends Pick<UpdatedNavbarProps, "searchResults" | "searchValue" | "onSearch">, Pick<UnfoldedNavbarContainerProps, "onMaskClick"> {
|
|
4
4
|
hideSearch: () => void;
|
|
5
5
|
showNavigation: () => void;
|
|
6
|
+
title?: string;
|
|
6
7
|
}
|
|
@@ -20,12 +20,4 @@ export interface RadioInfoButtonTooltipProps extends Omit<RadioInfoButtonProps,
|
|
|
20
20
|
* Position of the tooltip in the horizontal plane (right by default).
|
|
21
21
|
*/
|
|
22
22
|
tooltipHorizontalPosition?: "left" | "right";
|
|
23
|
-
/**
|
|
24
|
-
* Max width of tooltip content.
|
|
25
|
-
*/
|
|
26
|
-
tooltipContentMaxWidth?: string | string[];
|
|
27
|
-
/**
|
|
28
|
-
* Tooltip line size.
|
|
29
|
-
*/
|
|
30
|
-
totalLineSize?: number;
|
|
31
23
|
}
|
package/lib/index.d.ts
CHANGED
|
@@ -198,8 +198,8 @@ export { ReactElementTooltip } from "./components/tooltips/react-element-tooltip
|
|
|
198
198
|
export { ActionsTooltip } from "./components/tooltips/actions-tooltip";
|
|
199
199
|
export { TooltipWithPointer } from "./components/tooltips/tooltip-with-pointer";
|
|
200
200
|
export { Footer } from "./components/complex/footer";
|
|
201
|
-
export
|
|
202
|
-
export
|
|
201
|
+
export * from "./components/complex/navbar";
|
|
202
|
+
export * from "./components/complex/updated-navbar";
|
|
203
203
|
export { Anchor } from "./components/utils/anchor";
|
|
204
204
|
export { PageTracker } from "./components/utils/page-tracker";
|
|
205
205
|
export { ScrollToTop } from "./components/utils/scroll-to-top";
|