@bcc-code/vue-bcc-chat-ui 3.0.0-alpha.2 → 3.0.0-alpha.3

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
@@ -2,7 +2,7 @@
2
2
  "name": "@bcc-code/vue-bcc-chat-ui",
3
3
  "author": "bcc-code",
4
4
  "license": "Apache-2.0",
5
- "version": "3.0.0-alpha.2",
5
+ "version": "3.0.0-alpha.3",
6
6
  "type": "module",
7
7
  "private": false,
8
8
  "files": [
@@ -15,6 +15,7 @@ import { watchAndApplyStyle } from "../chat/styleFix";
15
15
  import {
16
16
  messageComposerConfiguration,
17
17
  messageListConfiguration,
18
+ threadedMessagesConfiguration
18
19
  } from "../chat/uiKit";
19
20
 
20
21
  const props = defineProps({
@@ -76,23 +77,23 @@ onMounted(() => {
76
77
  style: { 'flex-shrink': '0' },
77
78
  shadowDomSelector: "link-preview",
78
79
  },
79
- {
80
- selector: ".messageinput",
81
- style: {
82
- "border-radius": "8px 8px 0 0",
83
- "box-shadow":
84
- "0px -1px 2px 0px rgba(17, 24, 39, 0.05), 1px -1px 3px 0px rgba(17, 24, 39, 0.1)",
85
- },
86
- },
87
- {
88
- selector: ".messageinput-input",
89
- style: {
90
- "font-size": "16px",
91
- padding: "8px",
92
- "max-height": "none",
93
- height: "64px",
94
- },
95
- },
80
+ // {
81
+ // selector: ".messageinput",
82
+ // style: {
83
+ // "border-radius": "8px 8px 0 0",
84
+ // "box-shadow":
85
+ // "0px -1px 2px 0px rgba(17, 24, 39, 0.05), 1px -1px 3px 0px rgba(17, 24, 39, 0.1)",
86
+ // },
87
+ // },
88
+ // {
89
+ // selector: ".messageinput-input",
90
+ // style: {
91
+ // "font-size": "16px",
92
+ // padding: "8px",
93
+ // "max-height": "none",
94
+ // height: "64px",
95
+ // },
96
+ // },
96
97
  ]);
97
98
  });
98
99
 
@@ -110,6 +111,7 @@ onUnmounted(async () => {
110
111
  :disableSoundForMessages="true"
111
112
  :messageComposerConfiguration="messageComposerConfiguration"
112
113
  :messageListConfiguration="messageListConfiguration"
114
+ :threadedMessagesConfiguration="threadedMessagesConfiguration"
113
115
  :hideMessageComposer="false"
114
116
  :hideDetails="true"
115
117
  :group="chatGroup"
@@ -200,7 +202,7 @@ accent900: text in avatar
200
202
 
201
203
  /* 1.1.2 Wrapper for Messages Composer */
202
204
  .cc-messagecomposer-wrapper {
203
- padding: 0;
205
+ //padding: 0; //Use to remove side padding on composer
204
206
  }
205
207
  }
206
208
  }