@elliemae/ds-comments 2.2.0-beta.0 → 2.2.0-next.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-comments",
3
- "version": "2.2.0-beta.0",
3
+ "version": "2.2.0-next.4",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Comments",
6
6
  "module": "./esm/index.js",
@@ -48,11 +48,11 @@
48
48
  "build": "node ../../scripts/build/build.js"
49
49
  },
50
50
  "dependencies": {
51
- "@elliemae/ds-button": "2.2.0-beta.0",
52
- "@elliemae/ds-classnames": "2.2.0-beta.0",
53
- "@elliemae/ds-dropdownmenu": "2.2.0-beta.0",
54
- "@elliemae/ds-icons": "2.2.0-beta.0",
55
- "@elliemae/ds-read-more": "2.2.0-beta.0",
51
+ "@elliemae/ds-button": "2.2.0-next.4",
52
+ "@elliemae/ds-classnames": "2.2.0-next.4",
53
+ "@elliemae/ds-dropdownmenu": "2.2.0-next.4",
54
+ "@elliemae/ds-icons": "2.2.0-next.4",
55
+ "@elliemae/ds-read-more": "2.2.0-next.4",
56
56
  "moment": "~2.29.1",
57
57
  "prop-types": "~15.7.2",
58
58
  "react-desc": "~4.1.3"
@@ -117,7 +117,25 @@ declare const CommentCard: {
117
117
  };
118
118
  };
119
119
  declare const DSCommentCardWithSchema: {
120
- (props?: unknown): JSX.Element;
120
+ (props?: {
121
+ containerProps?: {} | undefined;
122
+ name?: string | undefined;
123
+ date?: Date | undefined;
124
+ type?: string | undefined;
125
+ content?: string | undefined;
126
+ style?: {} | undefined;
127
+ options?: never[] | undefined;
128
+ selection?: {
129
+ 'single-selection-internal-external': string[];
130
+ } | undefined;
131
+ customDropdownMenuProps?: {
132
+ focusOnOpen: boolean;
133
+ } | undefined;
134
+ borderBottom: any;
135
+ dateFormat?: string | undefined;
136
+ timeFormat?: string | undefined;
137
+ maxLines?: number | undefined;
138
+ } | undefined): JSX.Element;
121
139
  propTypes: unknown;
122
140
  toTypescript: () => import("react-desc").TypescriptSchema;
123
141
  };