@elliemae/ds-chat-card 3.46.5 → 3.46.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,6 @@
1
- /// <reference types="react" />
2
- export declare const Wrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>>, never>;
3
- export declare const MainContent: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
4
- export declare const Title: import("styled-components").StyledComponent<"p", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"p">, never>;
5
- export declare const Content: import("styled-components").StyledComponent<"p", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"p">, never>;
6
- export declare const Time: import("styled-components").StyledComponent<"p", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"p">, never>;
7
- export declare const RightAddon: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
1
+ export declare const Wrapper: any;
2
+ export declare const MainContent: any;
3
+ export declare const Title: any;
4
+ export declare const Content: any;
5
+ export declare const Time: any;
6
+ export declare const RightAddon: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-chat-card",
3
- "version": "3.46.5",
3
+ "version": "3.46.6",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Chat Card",
6
6
  "files": [
@@ -45,18 +45,18 @@
45
45
  },
46
46
  "publishConfig": {
47
47
  "access": "public",
48
- "typeSafety": true
48
+ "typeSafety": false
49
49
  },
50
50
  "dependencies": {
51
- "@elliemae/ds-grid": "3.46.5",
52
- "@elliemae/ds-system": "3.46.5",
53
- "@elliemae/ds-truncated-tooltip-text": "3.46.5",
54
- "@elliemae/ds-props-helpers": "3.46.5"
51
+ "@elliemae/ds-grid": "3.46.6",
52
+ "@elliemae/ds-props-helpers": "3.46.6",
53
+ "@elliemae/ds-system": "3.46.6",
54
+ "@elliemae/ds-truncated-tooltip-text": "3.46.6"
55
55
  },
56
56
  "devDependencies": {
57
57
  "@elliemae/pui-cli": "9.0.0-next.50",
58
58
  "styled-components": "~5.3.9",
59
- "@elliemae/ds-monorepo-devops": "3.46.5"
59
+ "@elliemae/ds-monorepo-devops": "3.46.6"
60
60
  },
61
61
  "peerDependencies": {
62
62
  "lodash": "^4.17.21",
@@ -1,23 +0,0 @@
1
- export declare namespace DSChatCardT {
2
- interface RequiredProps {
3
- title: string;
4
- }
5
- interface DefaultProps {
6
- content: string;
7
- time: string;
8
- }
9
- interface OptionalProps {
10
- rightAddon?: JSX.Element;
11
- }
12
- interface Props extends Partial<DefaultProps>, OptionalProps, RequiredProps {
13
- }
14
- interface InternalProps extends DefaultProps, OptionalProps, RequiredProps {
15
- }
16
- }
17
- export declare const defaultProps: DSChatCardT.DefaultProps;
18
- export declare const propTypes: {
19
- title: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
20
- content: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
21
- time: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
22
- rightAddon: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
23
- };