@copilotkit/react-ui 1.4.1-pre.5 → 1.4.1-pre.6
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/CHANGELOG.md +16 -0
- package/dist/chunk-MMVDU6DF.mjs +1 -0
- package/dist/components/index.d.ts +3 -0
- package/dist/components/index.js +4 -0
- package/dist/components/index.js.map +1 -1
- package/dist/components/index.mjs +9 -3
- package/dist/index.css +4 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -3
- package/package.json +7 -7
- package/src/components/index.ts +1 -0
- package/src/css/markdown.css +5 -0
- package/dist/chunk-JD7BAH7U.mjs +0 -1
- /package/dist/{chunk-JD7BAH7U.mjs.map → chunk-MMVDU6DF.mjs.map} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# ui
|
|
2
2
|
|
|
3
|
+
## 1.4.1-pre.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1721cbd: lower case copilotkit property
|
|
8
|
+
- 1721cbd: add zod conversion
|
|
9
|
+
- 1721cbd: Add convertActionsToDynamicStructuredTools to sdk-js
|
|
10
|
+
- fix assistant message CSS and propagate actions to LG JS
|
|
11
|
+
- Updated dependencies [1721cbd]
|
|
12
|
+
- Updated dependencies [1721cbd]
|
|
13
|
+
- Updated dependencies [1721cbd]
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @copilotkit/react-core@1.4.1-pre.6
|
|
16
|
+
- @copilotkit/runtime-client-gql@1.4.1-pre.6
|
|
17
|
+
- @copilotkit/shared@1.4.1-pre.6
|
|
18
|
+
|
|
3
19
|
## 1.4.1-pre.5
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=chunk-MMVDU6DF.mjs.map
|
|
@@ -3,9 +3,12 @@ export { CopilotPopup } from './chat/Popup.js';
|
|
|
3
3
|
export { CopilotSidebar } from './chat/Sidebar.js';
|
|
4
4
|
export { CopilotChat } from './chat/Chat.js';
|
|
5
5
|
export { useChatContext } from './chat/ChatContext.js';
|
|
6
|
+
export { shouldShowDevConsole } from './dev-console/utils.js';
|
|
7
|
+
export { CopilotDevConsole } from './dev-console/console.js';
|
|
6
8
|
import '@copilotkit/runtime-client-gql';
|
|
7
9
|
import 'react/jsx-runtime';
|
|
8
10
|
import './chat/Modal.js';
|
|
9
11
|
import 'react';
|
|
10
12
|
import '@copilotkit/react-core';
|
|
11
13
|
import '../types/suggestions.js';
|
|
14
|
+
import './dev-console/types.js';
|
package/dist/components/index.js
CHANGED
|
@@ -80,8 +80,10 @@ var __async = (__this, __arguments, generator) => {
|
|
|
80
80
|
var components_exports = {};
|
|
81
81
|
__export(components_exports, {
|
|
82
82
|
CopilotChat: () => CopilotChat,
|
|
83
|
+
CopilotDevConsole: () => CopilotDevConsole,
|
|
83
84
|
CopilotPopup: () => CopilotPopup,
|
|
84
85
|
CopilotSidebar: () => CopilotSidebar,
|
|
86
|
+
shouldShowDevConsole: () => shouldShowDevConsole,
|
|
85
87
|
useChatContext: () => useChatContext
|
|
86
88
|
});
|
|
87
89
|
module.exports = __toCommonJS(components_exports);
|
|
@@ -2334,8 +2336,10 @@ function CopilotSidebar(props) {
|
|
|
2334
2336
|
// Annotate the CommonJS export names for ESM import in node:
|
|
2335
2337
|
0 && (module.exports = {
|
|
2336
2338
|
CopilotChat,
|
|
2339
|
+
CopilotDevConsole,
|
|
2337
2340
|
CopilotPopup,
|
|
2338
2341
|
CopilotSidebar,
|
|
2342
|
+
shouldShowDevConsole,
|
|
2339
2343
|
useChatContext
|
|
2340
2344
|
});
|
|
2341
2345
|
//# sourceMappingURL=index.js.map
|