profinansy-ui-lib 3.6.57 → 3.6.59

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,6 +1,8 @@
1
1
  import { Locales } from '../../../../../common.types';
2
+ import { SearchCategories } from '../../../search/Search.const';
2
3
  interface IProps {
3
4
  locale: Locales;
5
+ category?: SearchCategories;
4
6
  }
5
- export declare const SearchInput: ({ locale }: IProps) => JSX.Element;
7
+ export declare const SearchInput: ({ locale, category }: IProps) => JSX.Element;
6
8
  export {};
@@ -43,7 +43,7 @@ export declare function useDrop({ placement, onOpenList }: {
43
43
  };
44
44
  getReferenceProps: (userProps?: React.HTMLProps<Element>) => Record<string, unknown>;
45
45
  getFloatingProps: (userProps?: React.HTMLProps<HTMLElement>) => Record<string, unknown>;
46
- getItemProps: (userProps?: Omit<React.HTMLProps<HTMLElement>, "active" | "selected"> & {
46
+ getItemProps: (userProps?: Omit<React.HTMLProps<HTMLElement>, "selected" | "active"> & {
47
47
  active?: boolean;
48
48
  selected?: boolean;
49
49
  }) => Record<string, unknown>;
@@ -42,7 +42,7 @@ export declare function useDrop({ placement }: {
42
42
  };
43
43
  getReferenceProps: (userProps?: React.HTMLProps<Element>) => Record<string, unknown>;
44
44
  getFloatingProps: (userProps?: React.HTMLProps<HTMLElement>) => Record<string, unknown>;
45
- getItemProps: (userProps?: Omit<React.HTMLProps<HTMLElement>, "active" | "selected"> & {
45
+ getItemProps: (userProps?: Omit<React.HTMLProps<HTMLElement>, "selected" | "active"> & {
46
46
  active?: boolean;
47
47
  selected?: boolean;
48
48
  }) => Record<string, unknown>;
@@ -44,7 +44,7 @@ export declare function useHint({ placement, isClickMobile }?: HintOptions): {
44
44
  };
45
45
  getReferenceProps: (userProps?: React.HTMLProps<Element>) => Record<string, unknown>;
46
46
  getFloatingProps: (userProps?: React.HTMLProps<HTMLElement>) => Record<string, unknown>;
47
- getItemProps: (userProps?: Omit<React.HTMLProps<HTMLElement>, "active" | "selected"> & {
47
+ getItemProps: (userProps?: Omit<React.HTMLProps<HTMLElement>, "selected" | "active"> & {
48
48
  active?: boolean;
49
49
  selected?: boolean;
50
50
  }) => Record<string, unknown>;
@@ -47,7 +47,7 @@ export declare function usePopup({ placement, isHover }: {
47
47
  };
48
48
  getReferenceProps: (userProps?: React.HTMLProps<Element>) => Record<string, unknown>;
49
49
  getFloatingProps: (userProps?: React.HTMLProps<HTMLElement>) => Record<string, unknown>;
50
- getItemProps: (userProps?: Omit<React.HTMLProps<HTMLElement>, "active" | "selected"> & {
50
+ getItemProps: (userProps?: Omit<React.HTMLProps<HTMLElement>, "selected" | "active"> & {
51
51
  active?: boolean;
52
52
  selected?: boolean;
53
53
  }) => Record<string, unknown>;
@@ -1,5 +1,5 @@
1
1
  import { IColumnTable } from './Table.typed';
2
2
  export declare const getAlignment: (alignment: IColumnTable['alignment']) => {
3
3
  justifyContent: string;
4
- textAlign: "center" | "right" | "left";
4
+ textAlign: "center" | "left" | "right";
5
5
  };
@@ -44,7 +44,7 @@ export declare function useTooltip({ placement, isHover, showArrow }: {
44
44
  };
45
45
  getReferenceProps: (userProps?: React.HTMLProps<Element>) => Record<string, unknown>;
46
46
  getFloatingProps: (userProps?: React.HTMLProps<HTMLElement>) => Record<string, unknown>;
47
- getItemProps: (userProps?: Omit<React.HTMLProps<HTMLElement>, "active" | "selected"> & {
47
+ getItemProps: (userProps?: Omit<React.HTMLProps<HTMLElement>, "selected" | "active"> & {
48
48
  active?: boolean;
49
49
  selected?: boolean;
50
50
  }) => Record<string, unknown>;
@@ -0,0 +1,3 @@
1
+ import { IWidgetTitleProps } from './WidgetTitle.typed';
2
+ declare const WidgetTitle: ({ link, text, subText }: IWidgetTitleProps) => JSX.Element;
3
+ export { WidgetTitle };
@@ -0,0 +1,7 @@
1
+ declare const _default: {
2
+ title: string;
3
+ component: ({ link, text, subText }: import("./WidgetTitle.typed").IWidgetTitleProps) => JSX.Element;
4
+ tags: string[];
5
+ };
6
+ export default _default;
7
+ export declare const WidgetTitle: () => JSX.Element;
@@ -0,0 +1,2 @@
1
+ export declare const Wrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
2
+ export declare const LinkContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
@@ -0,0 +1,5 @@
1
+ export interface IWidgetTitleProps {
2
+ link?: string;
3
+ text: string;
4
+ subText?: string;
5
+ }
@@ -0,0 +1 @@
1
+ export { WidgetTitle } from './WidgetTitle';
package/dist/index.d.ts CHANGED
@@ -73,6 +73,7 @@ export { Datepicker } from './components/uikit/Datepicker';
73
73
  export { Select } from './components/uikit/Select';
74
74
  export { ISelectOption } from './components/uikit/Select';
75
75
  export { SelectInput } from './components/uikit/Select';
76
+ export { WidgetTitle } from './components/uikit/WidgetTitle';
76
77
  export { ConfigLibraryProvider } from './config';
77
78
  export { useConfigLibrary } from './config';
78
79
  export { TProject } from './config';