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.
- package/dist/components/uikit/SegmentControl/SegmentControl.d.ts +1 -1
- package/dist/components/uikit/SegmentControl/SegmentControl.typed.d.ts +2 -0
- package/dist/components/uikit/Select/Select.styled.d.ts +1 -0
- package/dist/components/uikit/Select/SelectInput.typed.d.ts +2 -0
- package/dist/profinansy-ui-lib.cjs.js +190 -188
- package/dist/profinansy-ui-lib.cjs.js.map +1 -1
- package/dist/profinansy-ui-lib.es.js +941 -928
- package/dist/profinansy-ui-lib.es.js.map +1 -1
- package/package.json +1 -1
|
@@ -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 };
|
|
@@ -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;
|