@copilotkit/react-ui 1.4.1-pre.2 → 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 +50 -4
- package/dist/{chunk-M2NVAJQA.mjs → chunk-ECPBML4L.mjs} +1 -1
- package/dist/chunk-ECPBML4L.mjs.map +1 -0
- package/dist/chunk-MMVDU6DF.mjs +1 -0
- package/dist/{chunk-PY7YBFPA.mjs → chunk-TSIFZ5N5.mjs} +1 -1
- package/dist/chunk-TSIFZ5N5.mjs.map +1 -0
- package/dist/components/chat/Popup.js.map +1 -1
- package/dist/components/chat/Popup.mjs +1 -1
- package/dist/components/chat/Sidebar.js.map +1 -1
- package/dist/components/chat/Sidebar.mjs +1 -1
- package/dist/components/chat/index.js.map +1 -1
- package/dist/components/chat/index.mjs +2 -2
- 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 +11 -5
- 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 +11 -5
- package/package.json +7 -7
- package/src/components/chat/Popup.tsx +1 -1
- package/src/components/chat/Sidebar.tsx +1 -1
- package/src/components/index.ts +1 -0
- package/src/css/markdown.css +5 -0
- package/dist/chunk-JD7BAH7U.mjs +0 -1
- package/dist/chunk-M2NVAJQA.mjs.map +0 -1
- package/dist/chunk-PY7YBFPA.mjs.map +0 -1
- /package/dist/{chunk-JD7BAH7U.mjs.map → chunk-MMVDU6DF.mjs.map} +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import "../../chunk-MRFF7GSQ.mjs";
|
|
2
2
|
import {
|
|
3
3
|
CopilotSidebar
|
|
4
|
-
} from "../../chunk-
|
|
4
|
+
} from "../../chunk-ECPBML4L.mjs";
|
|
5
5
|
import "../../chunk-WB3YULQ4.mjs";
|
|
6
6
|
import {
|
|
7
7
|
CopilotPopup
|
|
8
|
-
} from "../../chunk-
|
|
8
|
+
} from "../../chunk-TSIFZ5N5.mjs";
|
|
9
9
|
import "../../chunk-H5CXJBR5.mjs";
|
|
10
10
|
import "../../chunk-YAGE7RCE.mjs";
|
|
11
11
|
import "../../chunk-VEC45H6Q.mjs";
|
|
@@ -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
|