@elliemae/ds-card-v2 3.26.0-next.5 → 3.26.0-next.8
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.
- package/package.json +11 -11
- package/dist/types/CardV3.d.ts +0 -80
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-card-v2",
|
|
3
|
-
"version": "3.26.0-next.
|
|
3
|
+
"version": "3.26.0-next.8",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Card V2",
|
|
6
6
|
"files": [
|
|
@@ -49,21 +49,21 @@
|
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"lodash": "~4.17.21",
|
|
51
51
|
"uid": "~2.0.1",
|
|
52
|
-
"@elliemae/ds-button": "3.26.0-next.
|
|
53
|
-
"@elliemae/ds-controlled-form": "3.26.0-next.
|
|
54
|
-
"@elliemae/ds-grid": "3.26.0-next.
|
|
55
|
-
"@elliemae/ds-header": "3.26.0-next.
|
|
56
|
-
"@elliemae/ds-icons": "3.26.0-next.
|
|
57
|
-
"@elliemae/ds-separator": "3.26.0-next.
|
|
58
|
-
"@elliemae/ds-system": "3.26.0-next.
|
|
59
|
-
"@elliemae/ds-truncated-tooltip-text": "3.26.0-next.
|
|
60
|
-
"@elliemae/ds-utilities": "3.26.0-next.
|
|
52
|
+
"@elliemae/ds-button": "3.26.0-next.8",
|
|
53
|
+
"@elliemae/ds-controlled-form": "3.26.0-next.8",
|
|
54
|
+
"@elliemae/ds-grid": "3.26.0-next.8",
|
|
55
|
+
"@elliemae/ds-header": "3.26.0-next.8",
|
|
56
|
+
"@elliemae/ds-icons": "3.26.0-next.8",
|
|
57
|
+
"@elliemae/ds-separator": "3.26.0-next.8",
|
|
58
|
+
"@elliemae/ds-system": "3.26.0-next.8",
|
|
59
|
+
"@elliemae/ds-truncated-tooltip-text": "3.26.0-next.8",
|
|
60
|
+
"@elliemae/ds-utilities": "3.26.0-next.8"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@elliemae/pui-cli": "~9.0.0-next.31",
|
|
64
64
|
"@xstyled/system": "3.7.0",
|
|
65
65
|
"styled-components": "~5.3.9",
|
|
66
|
-
"@elliemae/ds-monorepo-devops": "3.26.0-next.
|
|
66
|
+
"@elliemae/ds-monorepo-devops": "3.26.0-next.8"
|
|
67
67
|
},
|
|
68
68
|
"peerDependencies": {
|
|
69
69
|
"lodash": "^4.17.21",
|
package/dist/types/CardV3.d.ts
DELETED
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { type DSGridT } from '@elliemae/ds-grid';
|
|
3
|
-
import { type GlobalAttributesT } from '@elliemae/ds-utilities';
|
|
4
|
-
export declare const DSCardV3Name = "DSCardV3";
|
|
5
|
-
export declare const DSCardV3Slots: {
|
|
6
|
-
ACTION_AREA: string;
|
|
7
|
-
};
|
|
8
|
-
export declare const DSCardV3DataTestIds: Record<string, string>;
|
|
9
|
-
declare namespace CardT {
|
|
10
|
-
interface RequiredProps {
|
|
11
|
-
children: React.ReactNode;
|
|
12
|
-
}
|
|
13
|
-
interface OptinalProps {
|
|
14
|
-
isSelected?: boolean;
|
|
15
|
-
isMultiSelect?: boolean;
|
|
16
|
-
isOverlay?: boolean;
|
|
17
|
-
onClick?: (event: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
|
|
18
|
-
}
|
|
19
|
-
interface DefaultProps {
|
|
20
|
-
hasError: boolean;
|
|
21
|
-
}
|
|
22
|
-
interface Props extends RequiredProps, Omit<GlobalAttributesT<HTMLButtonElement>, keyof DefaultProps | keyof RequiredProps>, OptinalProps, DefaultProps {
|
|
23
|
-
}
|
|
24
|
-
interface InternalProps extends RequiredProps, Omit<GlobalAttributesT<HTMLButtonElement>, keyof DefaultProps | keyof RequiredProps>, OptinalProps, Partial<DefaultProps> {
|
|
25
|
-
}
|
|
26
|
-
interface CardSelectIndicatorProps {
|
|
27
|
-
isSelected?: boolean;
|
|
28
|
-
isMultiSelect?: boolean;
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
export declare const defaultProps: CardT.DefaultProps;
|
|
32
|
-
export declare const CardActionArea: import("styled-components").StyledComponent<"button", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"button">, never>;
|
|
33
|
-
export declare const StyledCard: import("styled-components").StyledComponent<React.ForwardRefExoticComponent<DSGridT.Props & React.RefAttributes<HTMLDivElement>>, import("@elliemae/ds-system").Theme, {
|
|
34
|
-
isOverlay?: boolean | undefined;
|
|
35
|
-
onClick?: ((e: React.MouseEvent<HTMLDivElement, MouseEvent>) => void) | undefined;
|
|
36
|
-
} & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<React.ForwardRefExoticComponent<DSGridT.Props & React.RefAttributes<HTMLDivElement>>>, never>;
|
|
37
|
-
export declare const StyledButtonCard: import("styled-components").StyledComponent<import("styled-components").StyledComponent<React.ForwardRefExoticComponent<DSGridT.Props & React.RefAttributes<HTMLDivElement>>, import("@elliemae/ds-system").Theme, {
|
|
38
|
-
isOverlay?: boolean | undefined;
|
|
39
|
-
onClick?: ((e: React.MouseEvent<HTMLDivElement, MouseEvent>) => void) | undefined;
|
|
40
|
-
} & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<React.ForwardRefExoticComponent<DSGridT.Props & React.RefAttributes<HTMLDivElement>>>, never>, import("@elliemae/ds-system").Theme, {
|
|
41
|
-
isOverlay?: boolean | undefined;
|
|
42
|
-
} & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("styled-components").StyledComponent<React.ForwardRefExoticComponent<DSGridT.Props & React.RefAttributes<HTMLDivElement>>, import("@elliemae/ds-system").Theme, {
|
|
43
|
-
isOverlay?: boolean | undefined;
|
|
44
|
-
onClick?: ((e: React.MouseEvent<HTMLDivElement, MouseEvent>) => void) | undefined;
|
|
45
|
-
} & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<React.ForwardRefExoticComponent<DSGridT.Props & React.RefAttributes<HTMLDivElement>>>, never>>, never>;
|
|
46
|
-
export declare const StyledCardError: import("styled-components").StyledComponent<import("styled-components").StyledComponent<React.ForwardRefExoticComponent<DSGridT.Props & React.RefAttributes<HTMLDivElement>>, import("@elliemae/ds-system").Theme, {
|
|
47
|
-
isOverlay?: boolean | undefined;
|
|
48
|
-
onClick?: ((e: React.MouseEvent<HTMLDivElement, MouseEvent>) => void) | undefined;
|
|
49
|
-
} & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<React.ForwardRefExoticComponent<DSGridT.Props & React.RefAttributes<HTMLDivElement>>>, never>, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("styled-components").StyledComponent<React.ForwardRefExoticComponent<DSGridT.Props & React.RefAttributes<HTMLDivElement>>, import("@elliemae/ds-system").Theme, {
|
|
50
|
-
isOverlay?: boolean | undefined;
|
|
51
|
-
onClick?: ((e: React.MouseEvent<HTMLDivElement, MouseEvent>) => void) | undefined;
|
|
52
|
-
} & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<React.ForwardRefExoticComponent<DSGridT.Props & React.RefAttributes<HTMLDivElement>>>, never>>, never>;
|
|
53
|
-
export declare const StyledCardSingleIndicator: import("styled-components").StyledComponent<React.ForwardRefExoticComponent<DSGridT.Props & React.RefAttributes<HTMLDivElement>>, import("@elliemae/ds-system").Theme, {
|
|
54
|
-
isSelected?: boolean | undefined;
|
|
55
|
-
} & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<React.ForwardRefExoticComponent<DSGridT.Props & React.RefAttributes<HTMLDivElement>>>, never>;
|
|
56
|
-
export declare const StyledCardDisabled: import("styled-components").StyledComponent<import("styled-components").StyledComponent<React.ForwardRefExoticComponent<DSGridT.Props & React.RefAttributes<HTMLDivElement>>, import("@elliemae/ds-system").Theme, {
|
|
57
|
-
isOverlay?: boolean | undefined;
|
|
58
|
-
onClick?: ((e: React.MouseEvent<HTMLDivElement, MouseEvent>) => void) | undefined;
|
|
59
|
-
} & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<React.ForwardRefExoticComponent<DSGridT.Props & React.RefAttributes<HTMLDivElement>>>, never>, import("@elliemae/ds-system").Theme, {
|
|
60
|
-
[x: string]: any;
|
|
61
|
-
[x: number]: any;
|
|
62
|
-
[x: symbol]: any;
|
|
63
|
-
} & {
|
|
64
|
-
theme?: import("@elliemae/ds-system").Theme | undefined;
|
|
65
|
-
} & {
|
|
66
|
-
as?: string | React.ComponentType<any> | undefined;
|
|
67
|
-
forwardedAs?: string | React.ComponentType<any> | undefined;
|
|
68
|
-
} & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("styled-components").StyledComponent<React.ForwardRefExoticComponent<DSGridT.Props & React.RefAttributes<HTMLDivElement>>, import("@elliemae/ds-system").Theme, {
|
|
69
|
-
isOverlay?: boolean | undefined;
|
|
70
|
-
onClick?: ((e: React.MouseEvent<HTMLDivElement, MouseEvent>) => void) | undefined;
|
|
71
|
-
} & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<React.ForwardRefExoticComponent<DSGridT.Props & React.RefAttributes<HTMLDivElement>>>, never>>, never>;
|
|
72
|
-
export declare const CardSelectIndicator: (props: CardT.CardSelectIndicatorProps) => import("react/jsx-runtime").JSX.Element;
|
|
73
|
-
interface CardElementsProps extends DSGridT.InternalProps {
|
|
74
|
-
children: React.ReactNode;
|
|
75
|
-
}
|
|
76
|
-
export declare const CardHeader: (props: CardElementsProps) => import("react/jsx-runtime").JSX.Element;
|
|
77
|
-
export declare const CardFooter: (props: CardElementsProps) => import("react/jsx-runtime").JSX.Element;
|
|
78
|
-
export declare const CardContent: (props: CardElementsProps) => import("react/jsx-runtime").JSX.Element;
|
|
79
|
-
export declare const Card: React.ComponentType<CardT.InternalProps>;
|
|
80
|
-
export {};
|