@evergis/react 2.0.50 → 2.0.53

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,4 +1,4 @@
1
- /// <reference types="react" />
1
+ import { IIconProps } from "@evergis/ui/dist/atoms/Icon/types";
2
2
  export declare const EvergisCardContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
3
3
  export declare const StickyHeader: import("styled-components").StyledComponent<"div", any, {}, never>;
4
4
  export declare const CardHeader: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -17,11 +17,10 @@ export declare const SimpleAttribute: import("styled-components").StyledComponen
17
17
  export declare const ValueLink: import("styled-components").StyledComponent<"a", any, {}, never>;
18
18
  declare type CardIconProps = {
19
19
  onClick?: () => void;
20
- disabled?: boolean;
21
20
  };
22
- export declare const StatIcon: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").RefAttributes<HTMLElement>>, any, CardIconProps, never>;
23
- export declare const ZoomIcon: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").RefAttributes<HTMLElement>>, any, CardIconProps, never>;
24
- export declare const CloseIcon: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").RefAttributes<HTMLElement>>, any, CardIconProps, never>;
25
- export declare const PrevIcon: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").RefAttributes<HTMLElement>>, any, CardIconProps, never>;
26
- export declare const NextIcon: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").RefAttributes<HTMLElement>>, any, CardIconProps, never>;
21
+ export declare const StatIcon: import("styled-components").StyledComponent<"span", any, IIconProps & CardIconProps, never>;
22
+ export declare const ZoomIcon: import("styled-components").StyledComponent<"span", any, IIconProps & CardIconProps, never>;
23
+ export declare const CloseIcon: import("styled-components").StyledComponent<"span", any, IIconProps & CardIconProps, never>;
24
+ export declare const PrevIcon: import("styled-components").StyledComponent<"span", any, IIconProps & CardIconProps, never>;
25
+ export declare const NextIcon: import("styled-components").StyledComponent<"span", any, IIconProps & CardIconProps, never>;
27
26
  export {};
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { Placement } from '../../ui/mixins/placementMixin';
3
2
  export declare type MapControlsProps = {
4
3
  placement?: Placement;
@@ -7,11 +6,11 @@ export declare type MapControlsProps = {
7
6
  declare type MapControlBtnProps = {
8
7
  onClick?: () => void;
9
8
  };
10
- export declare const ZoomInBtn: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").RefAttributes<HTMLElement>>, any, MapControlBtnProps, never>;
11
- export declare const ZoomOutBtn: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").RefAttributes<HTMLElement>>, any, MapControlBtnProps, never>;
12
- export declare const SearchBtn: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").RefAttributes<HTMLElement>>, any, MapControlBtnProps, never>;
13
- export declare const FullscreenBtn: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").RefAttributes<HTMLElement>>, any, MapControlBtnProps, never>;
14
- export declare const MeasureBtn: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").RefAttributes<HTMLElement>>, any, MapControlBtnProps, never>;
9
+ export declare const ZoomInBtn: import("styled-components").StyledComponent<"span", any, import("@evergis/ui").IIconProps & MapControlBtnProps, never>;
10
+ export declare const ZoomOutBtn: import("styled-components").StyledComponent<"span", any, import("@evergis/ui").IIconProps & MapControlBtnProps, never>;
11
+ export declare const SearchBtn: import("styled-components").StyledComponent<"span", any, import("@evergis/ui").IIconProps & MapControlBtnProps, never>;
12
+ export declare const FullscreenBtn: import("styled-components").StyledComponent<"span", any, import("@evergis/ui").IIconProps & MapControlBtnProps, never>;
13
+ export declare const MeasureBtn: import("styled-components").StyledComponent<"span", any, import("@evergis/ui").IIconProps & MapControlBtnProps, never>;
15
14
  export declare const MapControl: import("styled-components").StyledComponent<"div", any, {}, never>;
16
15
  export declare const MapControls: import("styled-components").StyledComponent<"div", any, MapControlsProps, never>;
17
16
  export {};
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export declare const InputContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
3
2
  export declare const InputField: import("styled-components").StyledComponent<"input", any, {}, never>;
4
- export declare const SearchPrefix: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").RefAttributes<HTMLElement>>, any, {}, never>;
3
+ export declare const SearchPrefix: import("styled-components").StyledComponent<"span", any, import("@evergis/ui").IIconProps, never>;