@linto-ai/transcript-ui-plugin-chat 0.9.5 → 0.9.7

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": "@linto-ai/transcript-ui-plugin-chat",
3
- "version": "0.9.5",
3
+ "version": "0.9.7",
4
4
  "description": "Chat panel plugin for @linto-ai/transcript-ui — talk with an LLM assistant about the transcript",
5
5
  "keywords": [
6
6
  "vue",
@@ -42,7 +42,7 @@ onMounted(() => {
42
42
 
43
43
  <template>
44
44
  <div class="chat-composer">
45
- <label :for="textareaId" class="sr-only">{{ t("chat.placeholder") }}</label>
45
+ <label :for="textareaId" class="transcript-ui-sr-only">{{ t("chat.placeholder") }}</label>
46
46
  <textarea
47
47
  :id="textareaId"
48
48
  v-model="text"
@@ -19,7 +19,7 @@ const { t } = useI18n()
19
19
  <!-- Loading the session history -->
20
20
  <div v-if="isLoading" class="chat-message-list__state" role="status">
21
21
  <EditorIcon name="spinner" :size="28" spin />
22
- <span class="sr-only">{{ t("editor.loading") }}</span>
22
+ <span class="transcript-ui-sr-only">{{ t("editor.loading") }}</span>
23
23
  </div>
24
24
 
25
25
  <!-- No session selected yet -->