@crestapps/ai-chat-ui 2.0.0-preview.162 → 2.0.0-preview.163
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/dist/chat-interaction.js +2 -2
- package/dist/chat-interaction.js.map +1 -1
- package/dist/chat-interaction.min.js +1 -1
- package/dist/chat-interaction.min.js.map +1 -1
- package/dist/realtime-audio.js +3 -3
- package/dist/realtime-audio.js.map +1 -1
- package/dist/realtime-audio.min.js +1 -1
- package/dist/realtime-audio.min.js.map +1 -1
- package/package.json +1 -1
package/dist/chat-interaction.js
CHANGED
|
@@ -2735,7 +2735,7 @@ window.chatInteractionDocumentManager = function () {
|
|
|
2735
2735
|
details.className = 'me-2 min-w-0';
|
|
2736
2736
|
var name = createTextElement('div', 'fw-semibold small', documentInfo.fileName || 'Document');
|
|
2737
2737
|
var icon = window.document.createElement('i');
|
|
2738
|
-
icon.className = '
|
|
2738
|
+
icon.className = 'fa-solid fa-file-lines me-1';
|
|
2739
2739
|
name.prepend(icon);
|
|
2740
2740
|
var size = createTextElement('div', 'text-muted small', formatFileSize(documentInfo.fileSize));
|
|
2741
2741
|
details.appendChild(name);
|
|
@@ -2744,7 +2744,7 @@ window.chatInteractionDocumentManager = function () {
|
|
|
2744
2744
|
removeButton.type = 'button';
|
|
2745
2745
|
removeButton.dataset.documentId = documentInfo.documentId;
|
|
2746
2746
|
var removeIcon = window.document.createElement('i');
|
|
2747
|
-
removeIcon.className = '
|
|
2747
|
+
removeIcon.className = 'fa-solid fa-trash';
|
|
2748
2748
|
removeButton.prepend(removeIcon);
|
|
2749
2749
|
removeButton.addEventListener('click', function () {
|
|
2750
2750
|
return removeDocument(documentInfo.documentId);
|