profinansy-ui-lib 3.8.37 → 3.8.39

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.
@@ -59,7 +59,7 @@ export type THeaderLinkSubPage = {
59
59
  /** Страницы, которые недоступны без регистрации **/
60
60
  locked?: boolean;
61
61
  /** Открывать в новой вкладке **/
62
- isTarget?: boolean;
62
+ isOpenNewTab?: boolean;
63
63
  /** Страницы, которые недоступны без премиума **/
64
64
  unavailable?: boolean;
65
65
  /** Можно открыть недоступные страницы **/
@@ -6,6 +6,8 @@ type TDatepickerCommon = {
6
6
  UTC?: boolean;
7
7
  view?: DatePickerInputViews;
8
8
  handleClose?: () => void;
9
+ hintForMinDate?: string;
10
+ hintForMaxDate?: string;
9
11
  };
10
12
  export type TDatepickerConditional = {
11
13
  selectsRange?: false;
@@ -0,0 +1,10 @@
1
+ interface IDayWithTooltipProps {
2
+ day: number;
3
+ date: Date;
4
+ minDate?: Date;
5
+ maxDate?: Date;
6
+ hintForMinDate?: string;
7
+ hintForMaxDate?: string;
8
+ }
9
+ declare const CustomDay: ({ day, date, maxDate, minDate, hintForMinDate, hintForMaxDate }: IDayWithTooltipProps) => import("react/jsx-runtime").JSX.Element;
10
+ export { CustomDay };