@selfdecode/sd-component-library 2.43.3 → 2.43.4
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/animations/up-down-arrow/up-down-arrow.d.ts +0 -1
- package/lib/components/bicolor-badge/interfaces.d.ts +0 -1
- package/lib/components/boxes/no-translate-box/index.d.ts +1 -0
- package/lib/components/boxes/no-translate-box/interfaces.d.ts +5 -0
- package/lib/components/boxes/no-translate-box/no-translate-box.d.ts +3 -0
- package/lib/components/checkboxes/checkbox/checkbox.d.ts +0 -1
- package/lib/components/complex/footer/partials/footer-link/footer-link.d.ts +0 -1
- package/lib/components/complex/footer/partials/footer-section/footer-section.d.ts +0 -1
- package/lib/components/complex/footer/partials/footer-social/footer-social.d.ts +0 -1
- package/lib/components/complex/footer/presentational/footer-presentational.d.ts +0 -1
- package/lib/components/complex/navbar/partials/navbar-v1/partials/navbar-desktop-v1/partials/menu-row/menu-row.d.ts +0 -1
- package/lib/components/complex/navbar/partials/navbar-v1/partials/navbar-desktop-v1/partials/new-apps/new-apps.d.ts +0 -1
- package/lib/components/complex/navbar/partials/navbar-v2/partials/navbar-desktop-v2/partials/menu-box/menu-box.d.ts +0 -1
- package/lib/components/complex/navbar/presentational/navbar-presentational.d.ts +0 -1
- package/lib/components/containers/max-width-container/max-width-container.d.ts +0 -1
- package/lib/components/containers/section-container/interfaces.d.ts +1 -1
- package/lib/components/containers/section-container/section-container.d.ts +0 -1
- package/lib/components/feature-explanation/feature-explanation.d.ts +0 -1
- package/lib/components/inputs/search-input/partials/search-box/search-box.d.ts +0 -1
- package/lib/components/labels/base-label/base-label.d.ts +0 -1
- package/lib/components/radio-button/radio-button.d.ts +0 -1
- package/lib/components/ratings/five-stars-rating/five-stars-rating.d.ts +0 -1
- package/lib/components/selectors/compact-primary-selector/compact-primary-selector.d.ts +0 -1
- package/lib/components/selectors/primary-selector/primary-selector.d.ts +0 -1
- package/lib/components/selectors/secondary-selector/secondary-selector.d.ts +0 -1
- package/lib/components/selectors/selector/selector.d.ts +0 -1
- package/lib/components/selectors/selector-v2/partials/base-selector-v2/base-selector-v2.d.ts +0 -1
- package/lib/components/selectors/selector-v2/selector-v2.d.ts +0 -1
- package/lib/components/selectors/tertiary-selector/tertiary-selector.d.ts +0 -1
- package/lib/components/slider/partials/step-circles/step-circles.d.ts +0 -1
- package/lib/components/slider/slider.d.ts +0 -1
- package/lib/components/tabs/tab-bar/partials/tab/tab.d.ts +0 -1
- package/lib/components/tabs/tab-bar/tab-bar.d.ts +0 -1
- package/lib/components/tabs/tabbed-view/tabbed-view.d.ts +0 -1
- package/lib/components/tabs/tabs-menu/tabs-menu.d.ts +0 -1
- package/lib/components/text-boxes/table-of-content/interfaces.d.ts +2 -1
- package/lib/components/text-boxes/table-of-content/table-of-content.d.ts +1 -1
- package/lib/components/texts/base-text/base-text.d.ts +0 -1
- package/lib/components/texts/eighteen-bold/eighteen-bold.d.ts +0 -1
- package/lib/components/texts/eighteen-regular/eighteen-regular.d.ts +0 -1
- package/lib/components/texts/fifty-five-sb/fifty-five-sb.d.ts +0 -1
- package/lib/components/texts/fourteen-regular/fourteen-regular.d.ts +0 -1
- package/lib/components/texts/fourteen-sb/fourteen-sb.d.ts +0 -1
- package/lib/components/texts/fourty-bold/fourty-bold.d.ts +0 -1
- package/lib/components/texts/no-translate/no-translate.d.ts +0 -1
- package/lib/components/texts/sixteen-regular/sixteen-regular.d.ts +0 -1
- package/lib/components/texts/ten-sb/ten-sb.d.ts +0 -1
- package/lib/components/texts/thirteen-bold/thirteen-bold.d.ts +0 -1
- package/lib/components/texts/thirteen-regular/thirteen-regular.d.ts +0 -1
- package/lib/components/texts/thirteen-sb/thirteen-sb.d.ts +0 -1
- package/lib/components/texts/thirty-two-bold/thirty-two-bold.d.ts +0 -1
- package/lib/components/texts/thirty-two-regular/thirty-two-regular.d.ts +0 -1
- package/lib/components/texts/twelve-regular/twelve-regular.d.ts +0 -1
- package/lib/components/texts/twelve-sb/twelve-sb.d.ts +0 -1
- package/lib/components/texts/twenty-four-bold/twenty-four-bold.d.ts +0 -1
- package/lib/components/texts/twenty-four-regular/twenty-four-regular.d.ts +0 -1
- package/lib/components/utils/scroll-to-top/scroll-to-top.d.ts +0 -1
- package/lib/components/utils/scroll-to-top-on-mount/scroll-to-top-on-mount.d.ts +0 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { NoTranslateBox } from "./no-translate-box";
|
|
@@ -8,7 +8,7 @@ export interface SectionContainerProps extends BaseComponentProps {
|
|
|
8
8
|
/**
|
|
9
9
|
* The title of the section
|
|
10
10
|
*/
|
|
11
|
-
title: string;
|
|
11
|
+
title: string | React.ReactNode;
|
|
12
12
|
/**
|
|
13
13
|
* Used for displaying content (like a short information
|
|
14
14
|
* or notification) to the right of the title in desktop
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { CompactPrimarySelectorProps as Props } from "./interfaces";
|
|
3
2
|
export declare const CompactPrimarySelector: <T extends string = string>(props: Pick<import("../selector").SelectorProps<T>, "width" | "m" | "mt" | "mr" | "mb" | "ml" | "onChange" | "name" | "defaultValue" | "textTransform" | "selectorLabel" | "options" | "disabledTextValue" | "hideDefaultOnSelect" | "labelMargin">) => JSX.Element;
|
|
@@ -3,6 +3,7 @@ declare type linkObject = {
|
|
|
3
3
|
text: string;
|
|
4
4
|
link?: string;
|
|
5
5
|
target?: string;
|
|
6
|
+
translate?: boolean;
|
|
6
7
|
};
|
|
7
8
|
/**
|
|
8
9
|
* Text Box props.
|
|
@@ -15,7 +16,7 @@ export interface TableOfContentProps extends BaseComponentProps {
|
|
|
15
16
|
/**
|
|
16
17
|
* Text items to be listed.
|
|
17
18
|
*/
|
|
18
|
-
textItems:
|
|
19
|
+
textItems: linkObject[];
|
|
19
20
|
/**
|
|
20
21
|
* Should the title of table be responsive.
|
|
21
22
|
*/
|
package/lib/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export { DesktopHiddenBox } from "./components/boxes/desktop-hidden-box";
|
|
|
17
17
|
export { MobileHiddenBox } from "./components/boxes/mobile-hidden-box";
|
|
18
18
|
export { OutsideClickBox } from "./components/boxes/outside-click-box";
|
|
19
19
|
export { ScrollOnHoverBox } from "./components/boxes/scroll-on-hover-box";
|
|
20
|
+
export { NoTranslateBox } from "./components/boxes/no-translate-box";
|
|
20
21
|
export { Breadcrumb } from "./components/breadcrumbs/breadcrumb";
|
|
21
22
|
export declare type BreadCrumbProps = BaseBreadcrumbProps;
|
|
22
23
|
export { PrimaryBreadcrumb } from "./components/breadcrumbs/primary-breadcrumb";
|