@cloudtower/eagle 0.26.18 → 0.26.20

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,13 +1,22 @@
1
1
  import React from "react";
2
- export interface ICardProps {
2
+ export type CardProps = {
3
3
  collapsible?: boolean;
4
4
  defaultOpen?: boolean;
5
5
  title?: React.ReactNode | string;
6
6
  subInfo?: React.ReactNode;
7
7
  className?: string;
8
+ hoverable?: boolean;
8
9
  shadow?: boolean;
9
- }
10
- declare const Card: React.ForwardRefExoticComponent<ICardProps & {
10
+ } & React.DOMAttributes<HTMLDivElement>;
11
+ declare const Card: React.ForwardRefExoticComponent<{
12
+ collapsible?: boolean | undefined;
13
+ defaultOpen?: boolean | undefined;
14
+ title?: React.ReactNode | string;
15
+ subInfo?: React.ReactNode;
16
+ className?: string | undefined;
17
+ hoverable?: boolean | undefined;
18
+ shadow?: boolean | undefined;
19
+ } & React.DOMAttributes<HTMLDivElement> & {
11
20
  children?: React.ReactNode;
12
21
  } & React.RefAttributes<HTMLDivElement>>;
13
22
  export default Card;
@@ -0,0 +1,5 @@
1
+ export declare const StepsStyle: import("@linaria/core").LinariaClassName;
2
+ export declare const HorizontalStyle: import("@linaria/core").LinariaClassName;
3
+ export declare const VerticalStyle: import("@linaria/core").LinariaClassName;
4
+ export declare const HorizontalStepContentStyle: import("@linaria/core").LinariaClassName;
5
+ export declare const VerticalStepContentStyle: import("@linaria/core").LinariaClassName;
@@ -1,4 +1,12 @@
1
- import { TokenColor, TokenComponentType } from "../../spec";
1
+ import React from "react";
2
+ import { TokenColor } from "../../spec";
2
3
  export declare const PresetColors: TokenColor[];
3
- declare const Token: TokenComponentType;
4
+ declare const Token: React.ForwardRefExoticComponent<Omit<import("antd/lib/tag").TagProps, "closeIcon"> & {
5
+ color?: TokenColor | undefined;
6
+ size?: "small" | "medium" | "large" | undefined;
7
+ checked?: boolean | undefined;
8
+ tooltipConfig?: {
9
+ title: string;
10
+ } | undefined;
11
+ } & React.RefAttributes<HTMLDivElement>>;
4
12
  export default Token;
@@ -4,6 +4,7 @@ export * from "./BaseIcon";
4
4
  export * from "./Button";
5
5
  export { default as Button } from "./Button";
6
6
  export * from "./ButtonGroup";
7
+ export type * from "./Card";
7
8
  export { default as ErrorBoundary } from "./ErrorBoundary";
8
9
  export { default as FailedLoad } from "./FailedLoad";
9
10
  export type { IconProps } from "./Icon";