profinansy-ui-lib 3.8.87 → 3.8.89

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.
@@ -1,3 +1,3 @@
1
1
  import { TSegmentControlProps } from './SegmentControl.typed';
2
- declare const SegmentControl: ({ style, options, onChange, selectedValue, size, type, counterType, isFullWidth }: TSegmentControlProps) => import("react/jsx-runtime").JSX.Element;
2
+ declare const SegmentControl: ({ style, options, onChange, selectedValue, size, type, counterType, isFullWidth, className }: TSegmentControlProps) => import("react/jsx-runtime").JSX.Element;
3
3
  export { SegmentControl };
@@ -32,4 +32,6 @@ export type TSegmentControlProps = {
32
32
  isFullWidth?: boolean;
33
33
  /** Действие при нажатии на сегмент */
34
34
  onChange?: (value: string, event: MouseEvent<HTMLButtonElement>) => void;
35
+ /** Класс для сегмента */
36
+ className?: string;
35
37
  };
@@ -12,6 +12,7 @@ export declare const selectStyles: {
12
12
  menu: (baseStyled: any, state: any) => any;
13
13
  menuList: (baseStyled: any, state: any) => any;
14
14
  option: (base: any, state: any) => any;
15
+ menuPortal: (base: any) => any;
15
16
  };
16
17
  export declare const Container: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
17
18
  export declare const Loader: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
@@ -40,6 +40,8 @@ export type TSelectCommon = {
40
40
  closeMenuOnSelect?: boolean;
41
41
  /**Иконка справа*/
42
42
  icon?: ReactNode;
43
+ /** Монтировать в портал*/
44
+ withPortal?: boolean;
43
45
  };
44
46
  export type TSelectConditional = {
45
47
  isMulti?: false;