@selfdecode/sd-component-library 2.46.1 → 2.46.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.
Files changed (43) hide show
  1. package/lib/components/breadcrumbs/breadcrumb/interfaces.d.ts +2 -2
  2. package/lib/components/buttons/button/interfaces.d.ts +2 -2
  3. package/lib/components/buttons/round-icon-button/interfaces.d.ts +1 -1
  4. package/lib/components/checkboxes/checkbox/interfaces.d.ts +1 -1
  5. package/lib/components/complex/navbar/partials/navbar-v1/partials/navbar-mobile-v1/partials/colored-background-list/colored-background-list.utils.d.ts +1 -1
  6. package/lib/components/complex/updated-navbar/partials/updated-navbar-desktop/partials/updated-navbar-item/interfaces.d.ts +1 -1
  7. package/lib/components/complex/updated-navbar/partials/updated-navbar-mobile/partials/updated-navbar-navigation/partials/item-row/interfaces.d.ts +1 -1
  8. package/lib/components/complex/updated-navbar/partials/updated-navbar-mobile/partials/updated-navbar-navigation/partials/primary-folded-item/interfaces.d.ts +2 -0
  9. package/lib/components/complex/updated-navbar/partials/updated-navbar-mobile/partials/updated-navbar-navigation/partials/unfolded-item/interfaces.d.ts +1 -1
  10. package/lib/components/complex/updated-navbar/partials/updated-navbar-mobile/partials/updated-navbar-navigation/partials/unfolded-item-row/interfaces.d.ts +0 -1
  11. package/lib/components/complex/updated-navbar/partials/updated-navbar-mobile/partials/updated-navbar-search/interfaces.d.ts +1 -1
  12. package/lib/components/containers/flex-center/flex-center.d.ts +2 -2
  13. package/lib/components/containers/grid-containers/grid-container-v2/grid-container-v2.d.ts +1 -1
  14. package/lib/components/containers/grid-containers/grid-container-v2/interfaces.d.ts +2 -2
  15. package/lib/components/dividers/divider/interfaces.d.ts +1 -1
  16. package/lib/components/icons/index.d.ts +1 -0
  17. package/lib/components/icons/triangular-pointer-icon/index.d.ts +2 -0
  18. package/lib/components/icons/triangular-pointer-icon/interfaces.d.ts +7 -0
  19. package/lib/components/icons/triangular-pointer-icon/triangular-pointer-icon.d.ts +3 -0
  20. package/lib/components/inputs/date-inputs/base-date-input/base-date-input.d.ts +1 -1
  21. package/lib/components/inputs/date-inputs/base-date-range-input/base-date-range-input.d.ts +1 -1
  22. package/lib/components/inputs/date-inputs/outlined-date-range-input/interfaces.d.ts +1 -1
  23. package/lib/components/inputs/input/interfaces.d.ts +1 -1
  24. package/lib/components/inputs/search-input/presentational/interfaces.d.ts +1 -1
  25. package/lib/components/inputs/secondary-text-input/interfaces.d.ts +1 -1
  26. package/lib/components/menus/actions-menu/interfaces.d.ts +4 -0
  27. package/lib/components/meters/dashed-meter/interfaces.d.ts +1 -1
  28. package/lib/components/meters/multi-option-discrete-outline-meter/partials/discrete-meter-label-pointer/interfaces.d.ts +1 -0
  29. package/lib/components/meters/multi-option-discrete-outline-meter/partials/discrete-range/interfaces.d.ts +1 -0
  30. package/lib/components/meters/multi-option-discrete-outline-meter/partials/matched-range-label-box/interfaces.d.ts +1 -0
  31. package/lib/components/meters/outline-meter/partials/base-meter-label-box/interfaces.d.ts +1 -1
  32. package/lib/components/meters/outline-meter/partials/outline-meter-scale/interfaces.d.ts +1 -1
  33. package/lib/components/progress-bars/rounded-progress-bar/interfaces.d.ts +1 -1
  34. package/lib/components/selectors/combined-secondary-custom-selector/combined-secondary-custom-selector.d.ts +3 -0
  35. package/lib/components/selectors/combined-secondary-custom-selector/index.d.ts +1 -0
  36. package/lib/components/selectors/combined-secondary-custom-selector/interfaces.d.ts +3 -0
  37. package/lib/components/selectors/secondary-custom-selector/interfaces.d.ts +1 -1
  38. package/lib/components/selectors/selector/interfaces.d.ts +1 -1
  39. package/lib/components/tabs/tabs-menu/interfaces.d.ts +1 -1
  40. package/lib/core/custom-hooks.d.ts +1 -1
  41. package/lib/index.d.ts +3 -2
  42. package/lib/index.js +1 -1
  43. package/package.json +3 -2
@@ -1,6 +1,6 @@
1
- import { CrumbType } from "./crumb/interfaces";
2
- import { BaseComponentProps } from "../../interfaces";
3
1
  import { CSSProperties } from "react";
2
+ import { BaseComponentProps } from "../../interfaces";
3
+ import { CrumbType } from "./crumb/interfaces";
4
4
  /**
5
5
  * Defines the breadcrumbs component's properties.
6
6
  */
@@ -1,8 +1,8 @@
1
1
  import { ReactNode } from "react";
2
2
  import { History } from "history";
3
- import { BaseComponentProps } from "../../interfaces";
4
- import { LoadingSpinnerProps as LoadingIconProps } from "../../animations/loading-spinner/interfaces";
5
3
  import { SxProps } from "rebass";
4
+ import { LoadingSpinnerProps as LoadingIconProps } from "../../animations/loading-spinner/interfaces";
5
+ import { BaseComponentProps } from "../../interfaces";
6
6
  /**
7
7
  * Defines the button component's properties. You cannot pass
8
8
  * both onClick and link props at the same time
@@ -1,5 +1,5 @@
1
- import { ButtonProps } from "../button";
2
1
  import { CSSProperties } from "react";
2
+ import { ButtonProps } from "../button";
3
3
  export interface RoundIconButtonProps extends Omit<ButtonProps, "borderRadius" | "onClick"> {
4
4
  /**
5
5
  * Active state value.
@@ -1,5 +1,5 @@
1
- import { BaseComponentProps } from "../../interfaces";
2
1
  import React from "react";
2
+ import { BaseComponentProps } from "../../interfaces";
3
3
  export interface CheckboxProps extends BaseComponentProps {
4
4
  /**
5
5
  * The callback to run when the checkbox element changes.
@@ -1,3 +1,3 @@
1
- import { NonNestedNavItem } from "./interfaces";
2
1
  import { NavMenuItem } from "../../../../../navbar-v2/partials/interfaces";
2
+ import { NonNestedNavItem } from "./interfaces";
3
3
  export declare const getFlatElementsRecursively: (elements: NavMenuItem[]) => NonNestedNavItem[];
@@ -1,5 +1,5 @@
1
- import { UpdatedMenuRowProps } from "../updated-menu-row/interfaces";
2
1
  import { FC, SVGProps } from "react";
2
+ import { UpdatedMenuRowProps } from "../updated-menu-row/interfaces";
3
3
  export interface ProNavbarItemProps {
4
4
  title?: string;
5
5
  Icon?: FC<SVGProps<SVGSVGElement>>;
@@ -1,5 +1,5 @@
1
- import { SxProps } from "rebass";
2
1
  import { FC, SVGProps } from "react";
2
+ import { SxProps } from "rebass";
3
3
  export interface ItemRowProps {
4
4
  title?: string;
5
5
  Icon?: FC<SVGProps<SVGSVGElement>>;
@@ -1,3 +1,4 @@
1
+ import { FC, SVGProps } from "react";
1
2
  import { UpdatedMenuRowProps } from "../../../../../updated-navbar-desktop/partials/updated-menu-row/interfaces";
2
3
  export interface PrimaryFoldedItemProps {
3
4
  title?: string;
@@ -6,4 +7,5 @@ export interface PrimaryFoldedItemProps {
6
7
  items?: UpdatedMenuRowProps[];
7
8
  onClick?: () => void;
8
9
  active?: boolean;
10
+ Icon?: FC<SVGProps<SVGSVGElement>>;
9
11
  }
@@ -1,5 +1,5 @@
1
- import { UpdatedMenuRowProps } from "../../../../../updated-navbar-desktop/partials/updated-menu-row/interfaces";
2
1
  import { FC, SVGProps } from "react";
2
+ import { UpdatedMenuRowProps } from "../../../../../updated-navbar-desktop/partials/updated-menu-row/interfaces";
3
3
  export interface UnfoldedItemProps {
4
4
  title?: string;
5
5
  toggledTitle?: string;
@@ -4,6 +4,5 @@ export interface UnfoldedItemRowProps {
4
4
  url?: string;
5
5
  isInternal?: boolean;
6
6
  items?: UpdatedMenuRowProps[];
7
- isUnfolded?: boolean;
8
7
  onClick?: () => void;
9
8
  }
@@ -1,5 +1,5 @@
1
- import { UnfoldedNavbarContainerProps } from "../unfolded-navbar-container/interfaces";
2
1
  import { UpdatedNavbarProps } from "../../../../interfaces";
2
+ import { UnfoldedNavbarContainerProps } from "../unfolded-navbar-container/interfaces";
3
3
  export interface UpdatedNavbarSearchProps extends Pick<UpdatedNavbarProps, "searchResults" | "searchValue" | "onSearch">, Pick<UnfoldedNavbarContainerProps, "onMaskClick"> {
4
4
  hideSearch: () => void;
5
5
  showNavigation: () => void;
@@ -1,3 +1,3 @@
1
1
  import React from "react";
2
- import { BoxProps } from "rebass";
3
- export declare const FlexCenter: React.FC<BoxProps>;
2
+ import { FlexProps } from "rebass";
3
+ export declare const FlexCenter: React.ForwardRefExoticComponent<Pick<FlexProps, "flex" | "cite" | "data" | "form" | "label" | "p" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "children" | "width" | "backgroundColor" | "px" | "py" | "m" | "mt" | "mr" | "mb" | "ml" | "onChange" | "hidden" | "sizes" | "content" | "variant" | "tx" | "as" | "css" | "key" | "margin" | "marginTop" | "marginRight" | "marginBottom" | "marginLeft" | "mx" | "marginX" | "my" | "marginY" | "padding" | "pt" | "paddingTop" | "pr" | "paddingRight" | "pb" | "paddingBottom" | "pl" | "paddingLeft" | "paddingX" | "paddingY" | "height" | "minWidth" | "minHeight" | "maxWidth" | "maxHeight" | "display" | "verticalAlign" | "size" | "overflow" | "overflowX" | "overflowY" | "fontSize" | "color" | "bg" | "opacity" | "order" | "alignSelf" | "sx" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "async" | "autoComplete" | "autoFocus" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "default" | "defer" | "disabled" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "multiple" | "muted" | "name" | "nonce" | "noValidate" | "open" | "optimum" | "placeholder" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "src" | "srcDoc" | "srcLang" | "srcSet" | "start" | "step" | "target" | "type" | "useMap" | "value" | "wmode" | "wrap" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "alignContent" | "alignItems" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "justifyContent" | "justifyItems" | "justifySelf"> & React.RefAttributes<HTMLDivElement>>;
@@ -1,3 +1,3 @@
1
1
  import React from "react";
2
2
  import { GridContainerV2Props as Props } from "./interfaces";
3
- export declare const GridContainerV2: React.FC<Props>;
3
+ export declare const GridContainerV2: React.ForwardRefExoticComponent<Pick<Props, "flex" | "cite" | "data" | "form" | "label" | "p" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "children" | "width" | "backgroundColor" | "px" | "py" | "m" | "mt" | "mr" | "mb" | "ml" | "onChange" | "hidden" | "sizes" | "content" | "variant" | "tx" | "as" | "css" | "key" | "margin" | "marginTop" | "marginRight" | "marginBottom" | "marginLeft" | "mx" | "marginX" | "my" | "marginY" | "padding" | "pt" | "paddingTop" | "pr" | "paddingRight" | "pb" | "paddingBottom" | "pl" | "paddingLeft" | "paddingX" | "paddingY" | "height" | "minWidth" | "minHeight" | "maxWidth" | "maxHeight" | "verticalAlign" | "size" | "overflow" | "overflowX" | "overflowY" | "fontSize" | "color" | "bg" | "opacity" | "order" | "alignSelf" | "sx" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "async" | "autoComplete" | "autoFocus" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "default" | "defer" | "disabled" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "multiple" | "muted" | "name" | "nonce" | "noValidate" | "open" | "optimum" | "placeholder" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "src" | "srcDoc" | "srcLang" | "srcSet" | "start" | "step" | "target" | "type" | "useMap" | "value" | "wmode" | "wrap" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "alignContent" | "alignItems" | "flexDirection" | "gridTemplateColumns" | "gridTemplateRows" | "justifyContent" | "justifyItems" | "justifySelf" | "gap"> & React.RefAttributes<HTMLDivElement>>;
@@ -1,5 +1,5 @@
1
- import { BoxProps } from "rebass";
2
- export interface GridContainerV2Props extends Omit<BoxProps, "display"> {
1
+ import { FlexProps } from "rebass";
2
+ export interface GridContainerV2Props extends Omit<FlexProps, "display" | "flexGrow" | "flexShrink" | "flexWrap"> {
3
3
  /**
4
4
  * Grid columns template.
5
5
  */
@@ -1,5 +1,5 @@
1
- import { BaseComponentProps } from "../../interfaces";
2
1
  import { SxProps } from "rebass";
2
+ import { BaseComponentProps } from "../../interfaces";
3
3
  export interface DividerProps extends BaseComponentProps {
4
4
  /**
5
5
  * The divider's width
@@ -16,3 +16,4 @@ export { ShortDownArrowIcon } from "./short-dropdown-arrow-icon";
16
16
  export { StarIcon } from "./star-icon";
17
17
  export { VialIcon } from "./vial-icon";
18
18
  export { WarningCircleIcon } from "./warning-circle-icon";
19
+ export { TriangularPointerIcon } from "./triangular-pointer-icon";
@@ -0,0 +1,2 @@
1
+ export { TriangularPointerIcon } from "./triangular-pointer-icon";
2
+ export * from "./interfaces";
@@ -0,0 +1,7 @@
1
+ import { BoxProps } from "rebass";
2
+ export declare type PointerDirection = "top" | "bottom" | "left" | "right";
3
+ export interface TriangularPointerIconProps extends BoxProps {
4
+ color?: string;
5
+ size?: string;
6
+ direction: PointerDirection;
7
+ }
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ import { TriangularPointerIconProps as Props } from "./interfaces";
3
+ export declare const TriangularPointerIcon: React.FC<Props>;
@@ -1,5 +1,5 @@
1
1
  import React from "react";
2
- import { BaseDateInputProps as Props } from "./interfaces";
3
2
  import "react-date-range/dist/styles.css";
4
3
  import "react-date-range/dist/theme/default.css";
4
+ import { BaseDateInputProps as Props } from "./interfaces";
5
5
  export declare const BaseDateInput: React.FC<Props>;
@@ -1,5 +1,5 @@
1
1
  import React from "react";
2
- import { BaseDateRangeInputProps as Props } from "./interfaces";
3
2
  import "react-date-range/dist/styles.css";
4
3
  import "react-date-range/dist/theme/default.css";
4
+ import { BaseDateRangeInputProps as Props } from "./interfaces";
5
5
  export declare const BaseDateRangeInput: React.FC<Props>;
@@ -1,5 +1,5 @@
1
- import { BaseDateRangeInputProps } from "../base-date-range-input";
2
1
  import { SxProps } from "rebass";
2
+ import { BaseDateRangeInputProps } from "../base-date-range-input";
3
3
  export interface OutlinedDateRangeInputProps extends Omit<BaseDateRangeInputProps, "showCalendar" | "children" | "onClose"> {
4
4
  /**
5
5
  * Text to be displayed inside of button.
@@ -1,5 +1,5 @@
1
- import { BaseComponentProps } from "../../interfaces";
2
1
  import { SxProps } from "rebass";
2
+ import { BaseComponentProps } from "../../interfaces";
3
3
  export declare type InputProps = BaseComponentProps & {
4
4
  /**
5
5
  * The callback to run when the input element changes.
@@ -1,6 +1,6 @@
1
+ import { SxProps } from "rebass";
1
2
  import { PrimaryTextInputProps } from "../../primary-text-input";
2
3
  import { SearchResult } from "../partials/search-box/interfaces";
3
- import { SxProps } from "rebass";
4
4
  /**
5
5
  * Defines SearchInput component's properties.
6
6
  */
@@ -1,6 +1,6 @@
1
+ import { SxProps } from "rebass";
1
2
  import { ResponsiveTextV2Props } from "../../texts/responsive-text-v2";
2
3
  import { PrimaryTextInputProps } from "../primary-text-input";
3
- import { SxProps } from "rebass";
4
4
  /**
5
5
  * Defines the SecondaryTextInput component's properties.
6
6
  */
@@ -1,10 +1,14 @@
1
1
  import { SxProps } from "rebass";
2
2
  export interface ActionsMenuProps {
3
+ iconSize?: string;
4
+ iconBorderWidth?: string;
5
+ activeScale?: number;
3
6
  actions: ActionConfig[];
4
7
  actionsBoxWidth?: string;
5
8
  actionBoxPx?: string | string[];
6
9
  actionBoxPy?: string | string[];
7
10
  containerSx?: SxProps["sx"];
11
+ menuBoxZIndex?: number;
8
12
  /**
9
13
  * Whether to hide options box after selection.
10
14
  */
@@ -1,5 +1,5 @@
1
- import { BaseComponentProps } from "../../interfaces";
2
1
  import { BaseGridContainerProps } from "../../../index";
2
+ import { BaseComponentProps } from "../../interfaces";
3
3
  export interface DashedMeterProps extends BaseComponentProps, Pick<BaseGridContainerProps, "gap" | "width" | "p" | "alignItems"> {
4
4
  value: 0 | 1 | 2 | 3 | 4 | 5;
5
5
  /**
@@ -6,4 +6,5 @@ export interface DiscreteMeterLabelPointerProps {
6
6
  color: string;
7
7
  label?: string;
8
8
  textBottomMargin: number;
9
+ horizontal?: boolean;
9
10
  }
@@ -7,4 +7,5 @@ export interface DiscreteRangeProps<T> extends Required<Pick<MultiOptionDiscrete
7
7
  showLabel: boolean;
8
8
  isMatchedRange: boolean;
9
9
  pointerLength: number;
10
+ horizontal?: boolean;
10
11
  }
@@ -6,4 +6,5 @@ export interface MatchedRangeLabelBoxProps<T = string> extends Required<Pick<Mul
6
6
  idx: number;
7
7
  totalRanges: number;
8
8
  pointerLength: number;
9
+ horizontal?: boolean;
9
10
  }
@@ -1,5 +1,5 @@
1
- import { OutlineMeterLabelBoxProps } from "../outline-meter-label-box/interfaces";
2
1
  import { OutlineMeterLabelPosition } from "../../interfaces";
2
+ import { OutlineMeterLabelBoxProps } from "../outline-meter-label-box/interfaces";
3
3
  export interface BaseMeterLabelBoxProps extends Required<Omit<OutlineMeterLabelBoxProps, "value" | "start" | "end" | "idx" | "totalRanges" | "bounds">> {
4
4
  /**
5
5
  * Whether value is in the range to which label corresponds.
@@ -1,5 +1,5 @@
1
- import { OutlineMeterRangeProps } from "../outline-meter-range/interfaces";
2
1
  import { OutlineMeterProps } from "../../interfaces";
2
+ import { OutlineMeterRangeProps } from "../outline-meter-range/interfaces";
3
3
  export interface OutlineMeterScaleProps extends Pick<OutlineMeterRangeProps, "diameter">, Required<Pick<OutlineMeterProps, "arc" | "dashHeight" | "dashWidth" | "numberOfDashes" | "gaugeWidth" | "distanceFromRangesToScale">> {
4
4
  /**
5
5
  * Dash color.
@@ -8,7 +8,7 @@ export interface RoundedProgressBarProps extends Pick<CommonProgressBarProps, "c
8
8
  /**
9
9
  * Border radius of the bars.
10
10
  */
11
- borderRadius?: string | string[];
11
+ borderRadius?: string;
12
12
  /**
13
13
  * Color of the not active part.
14
14
  */
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ import { CombinedSecondaryCustomSelectorProps as Props } from "./interfaces";
3
+ export declare const CombinedSecondaryCustomSelector: React.FC<Props>;
@@ -0,0 +1 @@
1
+ export { CombinedSecondaryCustomSelector } from "./combined-secondary-custom-selector";
@@ -0,0 +1,3 @@
1
+ import { SecondaryCustomSelectorProps } from "../secondary-custom-selector/interfaces";
2
+ export interface CombinedSecondaryCustomSelectorProps<T extends string = string> extends Omit<SecondaryCustomSelectorProps, "variant"> {
3
+ }
@@ -1,5 +1,5 @@
1
- import { SelectorV2Props } from "../selector-v2";
2
1
  import { SxProps } from "rebass";
2
+ import { SelectorV2Props } from "../selector-v2";
3
3
  export interface SecondaryCustomSelectorProps<T extends string = string> extends Pick<SelectorV2Props<T>, "options" | "value" | "onChange" | "width" | "variant"> {
4
4
  label: string;
5
5
  containerSx?: SxProps["sx"];
@@ -1,6 +1,6 @@
1
- import { BaseComponentProps } from "../../interfaces";
2
1
  import { CSSProperties } from "react";
3
2
  import { SecondaryTextInputProps } from "../../inputs/secondary-text-input/interfaces";
3
+ import { BaseComponentProps } from "../../interfaces";
4
4
  export declare type SelectorOption<T extends string = string> = {
5
5
  id: string;
6
6
  title: string;
@@ -1,5 +1,5 @@
1
- import { TabProps } from "./partials/tab";
2
1
  import { History } from "history";
2
+ import { TabProps } from "./partials/tab";
3
3
  declare type CommonTabProps = Pick<TabProps, "Icon" | "iconHeight" | "title" | "hash">;
4
4
  export interface TabObject extends CommonTabProps {
5
5
  /**
@@ -1,4 +1,4 @@
1
- import { RefObject, Dispatch, SetStateAction } from "react";
1
+ import { Dispatch, RefObject, SetStateAction } from "react";
2
2
  /**
3
3
  * A custom useState hook function, that automatically
4
4
  * updates the state whenever the dependency param changes
package/lib/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { BaseAccordionProps, BaseBadgeProps, BaseBreadcrumbProps, BaseButtonProps, BaseCtaButtonProps, BaseTextCtaButtonProps, BaseBaseGridContainerProps, BaseDropdownProps, BaseInputProps, BaseTextInputProps, BaseNumberInputProps, BaseLinkProps, BaseListProps, BaseModalProps, BaseProgressBarProps, BaseSelectorProps, SelectorOptionType, SlideSettingsType, BaseTextSwitchProps, BaseTextPropsInterface, BaseResponsiveTextProps, BaseBicolorBadgeProps, BaseBaseOutlineMeterProps, BaseBoxyNumberInputProps, BaseSublistAccordionProps, BasePaginationBarProps, BaseCarouselSwitchProps, BaseCompactSelectorProps, BaseDateRangeInputProps, OutlinedDateRangeInputProps } from "./interfaces";
2
+ import { BaseAccordionProps, BaseBadgeProps, BaseBaseGridContainerProps, BaseBaseOutlineMeterProps, BaseBicolorBadgeProps, BaseBoxyNumberInputProps, BaseBreadcrumbProps, BaseButtonProps, BaseCarouselSwitchProps, BaseCompactSelectorProps, BaseCtaButtonProps, BaseDateRangeInputProps, BaseDropdownProps, BaseInputProps, BaseLinkProps, BaseListProps, BaseModalProps, BaseNumberInputProps, BasePaginationBarProps, BaseProgressBarProps, BaseResponsiveTextProps, BaseSelectorProps, BaseSublistAccordionProps, BaseTextCtaButtonProps, BaseTextInputProps, BaseTextPropsInterface, BaseTextSwitchProps, OutlinedDateRangeInputProps, SelectorOptionType, SlideSettingsType } from "./interfaces";
3
3
  export declare const ComponentLibThemeProvider: import("react").FC<import("./components/wrapper/interfaces").WrapperProps>;
4
4
  export { Accordion } from "./components/accordions/base-accordion";
5
5
  export declare type AccordionProps = BaseAccordionProps;
@@ -144,6 +144,7 @@ export declare type CompactPrimarySelectorProps<T extends string = string> = Bas
144
144
  export { CustomSelector } from "./components/selectors/custom-selector";
145
145
  export { SecondaryCustomSelector } from "./components/selectors/secondary-custom-selector";
146
146
  export { TertiaryCustomSelector } from "./components/selectors/tertiary-custom-selector";
147
+ export { CombinedSecondaryCustomSelector } from "./components/selectors/combined-secondary-custom-selector";
147
148
  export { SelectorV2 } from "./components/selectors/selector-v2";
148
149
  export type { SelectorV2Props, SelectorOptionV2, } from "./components/selectors/selector-v2";
149
150
  export { TertiarySelectorV2 } from "./components/selectors/tertiary-selector-v2";
@@ -205,4 +206,4 @@ export { PageTracker } from "./components/utils/page-tracker";
205
206
  export { ScrollToTop } from "./components/utils/scroll-to-top";
206
207
  export { ScrollToTopOnMount } from "./components/utils/scroll-to-top-on-mount";
207
208
  export { useResize } from "./core/custom-hooks";
208
- export { CartIcon, CrossIcon, HamburgerIcon, ProfileIcon, SDNavbarIcon, BorderedPlainWarningCircleIcon, PlainWarningCircleIcon, RoundBorderedStar, WarningCircleIcon, StarIcon, } from "./components/icons";
209
+ export * from "./components/icons";