@carbon/ai-chat 1.2.1 → 1.3.0-rc.0
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/es/aiChatEntry.js +6 -6
- package/dist/es/chat.ChatAppEntry.js +594 -298
- package/dist/es/chat.ChatAppEntry.js.map +1 -1
- package/dist/es/chat.PageObjectId.js +3 -0
- package/dist/es/chat.PageObjectId.js.map +1 -1
- package/dist/es/web-components/cds-aichat-container/index.js +6 -6
- package/dist/es/web-components/cds-aichat-custom-element/index.js +6 -6
- package/dist/es-custom/aiChatEntry.js +6 -6
- package/dist/es-custom/chat.ChatAppEntry.js +594 -298
- package/dist/es-custom/chat.ChatAppEntry.js.map +1 -1
- package/dist/es-custom/chat.PageObjectId.js +3 -0
- package/dist/es-custom/chat.PageObjectId.js.map +1 -1
- package/dist/es-custom/web-components/cds-aichat-container/index.js +6 -6
- package/dist/es-custom/web-components/cds-aichat-custom-element/index.js +6 -6
- package/dist/types/aiChatEntry.d.ts +2 -2
- package/dist/types/{serverEntry-Cad3Ek2W.d.ts → serverEntry-BN03ML3a.d.ts} +181 -24
- package/dist/types/serverEntry.d.ts +1 -1
- package/package.json +11 -11
package/dist/es/aiChatEntry.js
CHANGED
|
@@ -72,8 +72,6 @@ import "lit/directive.js";
|
|
|
72
72
|
|
|
73
73
|
import "@carbon/web-components/es/components/list/index.js";
|
|
74
74
|
|
|
75
|
-
import "lodash-es/debounce.js";
|
|
76
|
-
|
|
77
75
|
import "@carbon/web-components/es/components/data-table/index.js";
|
|
78
76
|
|
|
79
77
|
import "@carbon/web-components/es/components/checkbox/index.js";
|
|
@@ -150,6 +148,10 @@ import "@carbon/web-components/es/components/skeleton-text/skeleton-text.js";
|
|
|
150
148
|
|
|
151
149
|
import "@carbon/web-components/es/components/skeleton-placeholder/skeleton-placeholder.js";
|
|
152
150
|
|
|
151
|
+
import "@carbon/icons/es/chevron--down/16.js";
|
|
152
|
+
|
|
153
|
+
import "@carbon/icons/es/chevron--up/16.js";
|
|
154
|
+
|
|
153
155
|
import "@carbon/icons/es/touch--interaction/16.js";
|
|
154
156
|
|
|
155
157
|
import "@carbon/icons/es/send/16.js";
|
|
@@ -164,14 +166,12 @@ import "@carbon/icons/es/chevron--left/16.js";
|
|
|
164
166
|
|
|
165
167
|
import "@carbon/icons/es/chevron--right/16.js";
|
|
166
168
|
|
|
169
|
+
import "lodash-es/debounce.js";
|
|
170
|
+
|
|
167
171
|
import "@carbon/icons/es/link/16.js";
|
|
168
172
|
|
|
169
173
|
import "@carbon/icons/es/maximize/16.js";
|
|
170
174
|
|
|
171
|
-
import "@carbon/icons/es/chevron--down/16.js";
|
|
172
|
-
|
|
173
|
-
import "@carbon/icons/es/chevron--up/16.js";
|
|
174
|
-
|
|
175
175
|
import "@carbon/web-components/es/components/tag/operational-tag.js";
|
|
176
176
|
|
|
177
177
|
import "@carbon/icons/es/checkmark/32.js";
|