@talkjs/web-components 0.0.10 → 0.0.11
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/default.d.ts +8 -8
- package/default.js +8 -14
- package/default.standalone.js +8 -14
- package/package.json +2 -2
- package/theming.d.ts +16 -8
package/default.d.ts
CHANGED
|
@@ -162,14 +162,14 @@ declare interface ChatHeaderProps {
|
|
|
162
162
|
currentUser: UserSnapshot;
|
|
163
163
|
t: Translation;
|
|
164
164
|
chatbox: ChatboxRef;
|
|
165
|
-
themeCustom
|
|
165
|
+
themeCustom?: any;
|
|
166
166
|
}
|
|
167
167
|
|
|
168
168
|
declare interface ContentBlockProps {
|
|
169
169
|
message: MessageSnapshot;
|
|
170
170
|
currentUser: UserSnapshot;
|
|
171
171
|
t: Translation;
|
|
172
|
-
themeCustom
|
|
172
|
+
themeCustom?: any;
|
|
173
173
|
}
|
|
174
174
|
|
|
175
175
|
declare interface Coordinates {
|
|
@@ -198,7 +198,7 @@ declare interface FileBlockProps extends ContentBlockProps {
|
|
|
198
198
|
declare interface IconProps {
|
|
199
199
|
type: "attach" | "chevronLeft" | "left" | "chevronUp" | "up" | "chevronDown" | "down" | "close" | "emoji" | "locationPin" | "more" | "plus" | "search" | "send" | "spinner" | "play" | "pause" | "updown" | "addEmoji" | "microphone" | "mic" | "stop" | "download" | "location" | "email" | "movie" | "image" | "attachment" | "horizontalDots" | "verticalDots" | "reply" | "back";
|
|
200
200
|
className?: string;
|
|
201
|
-
themeCustom
|
|
201
|
+
themeCustom?: any;
|
|
202
202
|
}
|
|
203
203
|
|
|
204
204
|
declare interface IEditorController extends EditorState {
|
|
@@ -223,7 +223,7 @@ declare interface MessageActionMenuProps {
|
|
|
223
223
|
message: MessageSnapshot;
|
|
224
224
|
chatbox: ChatboxRef;
|
|
225
225
|
t: Translation;
|
|
226
|
-
themeCustom
|
|
226
|
+
themeCustom?: any;
|
|
227
227
|
}
|
|
228
228
|
|
|
229
229
|
declare interface MessageDividerProps {
|
|
@@ -234,7 +234,7 @@ declare interface MessageDividerProps {
|
|
|
234
234
|
conversation: ConversationSnapshot;
|
|
235
235
|
app: AppMetadata;
|
|
236
236
|
t: Translation;
|
|
237
|
-
themeCustom
|
|
237
|
+
themeCustom?: any;
|
|
238
238
|
}
|
|
239
239
|
|
|
240
240
|
declare interface MessageFieldProps {
|
|
@@ -246,7 +246,7 @@ declare interface MessageFieldProps {
|
|
|
246
246
|
t: Translation;
|
|
247
247
|
chatbox: ChatboxRef;
|
|
248
248
|
editor?: IEditorController;
|
|
249
|
-
themeCustom
|
|
249
|
+
themeCustom?: any;
|
|
250
250
|
}
|
|
251
251
|
|
|
252
252
|
declare interface MessageListFooterProps {
|
|
@@ -256,7 +256,7 @@ declare interface MessageListFooterProps {
|
|
|
256
256
|
currentUser: UserSnapshot;
|
|
257
257
|
t: Translation;
|
|
258
258
|
chatbox: ChatboxRef;
|
|
259
|
-
themeCustom
|
|
259
|
+
themeCustom?: any;
|
|
260
260
|
}
|
|
261
261
|
|
|
262
262
|
declare interface MessagePermissions extends UserPermissions {
|
|
@@ -275,7 +275,7 @@ declare interface MessageProps {
|
|
|
275
275
|
t: Translation;
|
|
276
276
|
chatbox: ChatboxRef;
|
|
277
277
|
messageActionMenuAnchorRef: React_2.RefObject<HTMLElement | undefined>;
|
|
278
|
-
themeCustom
|
|
278
|
+
themeCustom?: any;
|
|
279
279
|
}
|
|
280
280
|
|
|
281
281
|
declare type MessageStatus = "sending" | "sent" | "everyoneRead";
|