kwant-ui 3.33.2-dev.2 → 3.33.2-dev.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.
@@ -17,3 +17,6 @@ export declare const TooltipItemColor: import("styled-components").StyledCompone
17
17
  }, never>;
18
18
  export declare const TooltipItemLabel: import("styled-components").StyledComponent<"span", any, {}, never>;
19
19
  export declare const TooltipItemRight: import("styled-components").StyledComponent<"span", any, {}, never>;
20
+ export declare const FullScreenIconContainer: import("styled-components").StyledComponent<"div", any, {
21
+ fullScreen: boolean;
22
+ }, never>;
@@ -49,6 +49,7 @@ export declare namespace IAreaChart {
49
49
  areaProps?: AreaProps;
50
50
  areaYAxisRightProps?: AreaProps;
51
51
  customTooltipLabelFormatter?: (label: any) => string;
52
+ fullScreenFeature?: boolean;
52
53
  };
53
54
  type Area = {
54
55
  dataKey: string;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { IDatepicker } from './types';
2
- declare const Datepicker: (props: IDatepicker.Props) => import("react/jsx-runtime").JSX.Element;
3
+ declare const Datepicker: import("react").ForwardRefExoticComponent<Omit<IDatepicker.Props, "ref"> & import("react").RefAttributes<HTMLInputElement>>;
3
4
  export { Datepicker };
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { ISelect } from './Select.types';
2
- declare const Select: (props: ISelect.Props) => import("react/jsx-runtime").JSX.Element;
3
+ declare const Select: import("react").ForwardRefExoticComponent<ISelect.Props & import("react").RefAttributes<HTMLInputElement>>;
3
4
  export { Select };
@@ -0,0 +1,5 @@
1
+ declare const useFullScreenFeature: (containerRef: any) => {
2
+ fullScreenEnterExitRequest: () => void;
3
+ fullScreen: boolean;
4
+ };
5
+ export default useFullScreenFeature;