@copilotkit/react-ui 1.68.1 → 1.68.2
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/index.cjs +43 -16
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +1 -2
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +40 -16
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +40 -16
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +43 -16
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +43 -16
- package/dist/index.umd.js.map +1 -1
- package/package.json +4 -4
- package/src/components/chat/Chat.tsx +37 -27
- package/src/components/chat/feedback.test.ts +74 -0
- package/src/components/chat/feedback.ts +38 -0
- package/src/components/chat/messages/AssistantMessage.tsx +5 -2
- package/src/components/chat/props.ts +30 -12
- package/src/css/header-padding.test.ts +40 -0
- package/src/css/header.css +1 -2
package/dist/index.css
CHANGED
|
@@ -269,6 +269,7 @@ body[style*="color-scheme: dark"] {
|
|
|
269
269
|
border-top-right-radius: 0;
|
|
270
270
|
border-bottom: 1px solid var(--copilot-kit-separator-color);
|
|
271
271
|
padding-left: 1.5rem;
|
|
272
|
+
padding-right: 1.5rem;
|
|
272
273
|
background-color: var(--copilot-kit-contrast-color);
|
|
273
274
|
justify-content: space-between;
|
|
274
275
|
z-index: 2;
|
|
@@ -289,8 +290,6 @@ body[style*="color-scheme: dark"] {
|
|
|
289
290
|
|
|
290
291
|
@media (min-width: 640px) {
|
|
291
292
|
.copilotKitHeader {
|
|
292
|
-
padding-left: 1.5rem;
|
|
293
|
-
padding-right: 24px;
|
|
294
293
|
border-top-left-radius: 8px;
|
|
295
294
|
border-top-right-radius: 8px;
|
|
296
295
|
}
|
package/dist/index.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.css","names":[],"sources":["../src/css/colors.css","../src/css/popup.css","../src/css/sidebar.css","../src/css/button.css","../src/css/header.css","../src/css/input.css","../src/css/messages.css","../src/css/attachments.css","../src/css/window.css","../src/css/animations.css","../src/css/markdown.css","../src/css/suggestions.css","../src/css/panel.css","../src/css/console.css","../src/css/crew.css","../src/styles.css"],"sourcesContent":["/* IMPORTANT NOTE:\nTHE DARK AND LIGHT COLORS HERE ARE DUPLICATED BECAUSE NO REUSE METHOD POSSIBLE.\nWHEN MAKING ANY CHANGE, MAKE SURE TO INCLUDE IT IN ALL DUPLICATIONS.\n*/\n\n/* BASE LIGHT THEME */\n:root {\n /* Semantic color tokens */\n /* Main brand/action color - used for buttons, interactive elements */\n --copilot-kit-primary-color: rgb(28, 28, 28);\n /* Color that contrasts with primary - used for text on primary elements */\n --copilot-kit-contrast-color: rgb(255, 255, 255);\n /* Main page/container background color */\n --copilot-kit-background-color: rgb(255 255 255);\n /* Input box background color */\n --copilot-kit-input-background-color: #fbfbfb;\n /* Secondary background - used for cards, panels, elevated surfaces */\n --copilot-kit-secondary-color: rgb(255 255 255);\n /* Primary text color for main content */\n --copilot-kit-secondary-contrast-color: rgb(28, 28, 28);\n /* Border color for dividers and containers */\n --copilot-kit-separator-color: rgb(200 200 200);\n /* Muted color for disabled/inactive states */\n --copilot-kit-muted-color: rgb(200 200 200);\n\n /* Error colors */\n --copilot-kit-error-background: #fef2f2;\n --copilot-kit-error-border: #fecaca;\n --copilot-kit-error-text: #dc2626;\n\n /* Shadow tokens */\n /* Small shadow for subtle elevation */\n --copilot-kit-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);\n /* Medium shadow for cards */\n --copilot-kit-shadow-md:\n 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);\n /* Large shadow for modals */\n --copilot-kit-shadow-lg:\n 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);\n\n --copilot-kit-dev-console-bg: #f8f8fa;\n --copilot-kit-dev-console-text: black;\n}\n\n/* BASE DARK THEME */\n.dark,\nhtml.dark,\nbody.dark,\n[data-theme=\"dark\"],\nhtml[style*=\"color-scheme: dark\"],\nbody[style*=\"color-scheme: dark\"] {\n /* Main brand/action color - used for buttons, interactive elements */\n --copilot-kit-primary-color: rgb(255, 255, 255);\n /* Color that contrasts with primary - used for text on primary elements */\n --copilot-kit-contrast-color: rgb(28, 28, 28);\n /* Main page/container background color */\n --copilot-kit-background-color: rgb(17, 17, 17);\n /* Input box background color */\n --copilot-kit-input-background-color: #2c2c2c;\n /* Secondary background - used for cards, panels, elevated surfaces */\n --copilot-kit-secondary-color: rgb(28, 28, 28);\n /* Primary text color for main content */\n --copilot-kit-secondary-contrast-color: rgb(255, 255, 255);\n /* Border color for dividers and containers */\n --copilot-kit-separator-color: rgb(45, 45, 45);\n /* Muted color for disabled/inactive states */\n --copilot-kit-muted-color: rgb(45, 45, 45);\n\n /* Error colors */\n --copilot-kit-error-background: #7f1d1d;\n --copilot-kit-error-border: #dc2626;\n --copilot-kit-error-text: #fca5a5;\n\n /* Small shadow for subtle elevation */\n --copilot-kit-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);\n /* Medium shadow for cards */\n --copilot-kit-shadow-md:\n 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);\n /* Large shadow for modals */\n --copilot-kit-shadow-lg:\n 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);\n}\n",".copilotKitPopup {\n position: fixed;\n bottom: 1rem;\n right: 1rem;\n z-index: 30;\n line-height: 1.5;\n -webkit-text-size-adjust: 100%;\n -moz-tab-size: 4;\n -o-tab-size: 4;\n tab-size: 4;\n font-family:\n ui-sans-serif,\n system-ui,\n -apple-system,\n BlinkMacSystemFont,\n \"Segoe UI\",\n Roboto,\n \"Helvetica Neue\",\n Arial,\n \"Noto Sans\",\n sans-serif,\n \"Apple Color Emoji\",\n \"Segoe UI Emoji\",\n \"Segoe UI Symbol\",\n \"Noto Color Emoji\";\n font-feature-settings: normal;\n font-variation-settings: normal;\n touch-action: manipulation;\n}\n\n.copilotKitPopup svg {\n display: inline-block;\n vertical-align: middle;\n}\n",".copilotKitSidebar {\n position: fixed;\n bottom: 1rem;\n right: 1rem;\n z-index: 30;\n line-height: 1.5;\n -webkit-text-size-adjust: 100%;\n -moz-tab-size: 4;\n -o-tab-size: 4;\n tab-size: 4;\n font-family:\n ui-sans-serif,\n system-ui,\n -apple-system,\n BlinkMacSystemFont,\n \"Segoe UI\",\n Roboto,\n \"Helvetica Neue\",\n Arial,\n \"Noto Sans\",\n sans-serif,\n \"Apple Color Emoji\",\n \"Segoe UI Emoji\",\n \"Segoe UI Symbol\",\n \"Noto Color Emoji\";\n font-feature-settings: normal;\n font-variation-settings: normal;\n touch-action: manipulation;\n}\n\n.copilotKitSidebar svg {\n display: inline-block;\n vertical-align: middle;\n}\n\n.copilotKitSidebarContentWrapper {\n overflow: visible;\n margin-right: 0px;\n transition: margin-right 0.3s ease;\n}\n\n@media (min-width: 640px) {\n .copilotKitSidebarContentWrapper.sidebarExpanded {\n margin-right: 28rem;\n }\n}\n\n/*\n * Opt-in (via the `fullHeightChildren` prop on `CopilotSidebar`): let children\n * of the sidebar use `height: 100%`.\n *\n * By default both wrappers CopilotSidebar puts around your app are auto-height\n * blocks, so a percentage height on a child has no definite containing block to\n * resolve against and collapses to content height.\n *\n * The viewport unit is deliberate: `height: 100%` here would only resolve if\n * every ancestor (html/body/#root) also declared a height, which react-ui\n * neither sets nor can guarantee. `min-height: 0` on the children wrapper\n * overrides the flex-item `min-height: auto` default so tall content scrolls\n * inside the child instead of stretching the wrapper past the viewport.\n */\n.copilotKitSidebarContentWrapper.copilotKitSidebarFullHeightChildren {\n display: flex;\n flex-direction: column;\n height: 100vh;\n height: 100dvh;\n}\n\n.copilotKitSidebarContentWrapper.copilotKitSidebarFullHeightChildren\n > .copilotKitModalChildrenWrapper {\n flex: 1 1 auto;\n min-height: 0;\n}\n",".copilotKitButton {\n width: 3.5rem;\n height: 3.5rem;\n display: flex;\n align-items: center;\n justify-content: center;\n border-radius: 50%;\n border: 1px solid var(--copilot-kit-primary-color);\n outline: none;\n position: relative;\n transform: scale(1);\n transition: all 0.2s ease;\n background-color: var(--copilot-kit-primary-color);\n color: var(--copilot-kit-contrast-color);\n cursor: pointer;\n box-shadow: var(--copilot-kit-shadow-sm);\n}\n\n.copilotKitButton:hover {\n transform: scale(1.05);\n box-shadow: var(--copilot-kit-shadow-md);\n}\n\n.copilotKitButton:active {\n transform: scale(0.95);\n box-shadow: var(--copilot-kit-shadow-sm);\n}\n\n.copilotKitButtonIcon {\n transition:\n opacity 100ms,\n transform 300ms;\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.copilotKitButtonIcon svg {\n width: 1.5rem;\n height: 1.5rem;\n}\n\n/* State when the chat is open */\n.copilotKitButton.open .copilotKitButtonIconOpen {\n transform: translate(-50%, -50%) scale(0) rotate(90deg);\n opacity: 0;\n}\n\n.copilotKitButton.open .copilotKitButtonIconClose {\n transform: translate(-50%, -50%) scale(1) rotate(0deg);\n opacity: 1;\n}\n\n/* State when the chat is closed */\n.copilotKitButton:not(.open) .copilotKitButtonIconOpen {\n transform: translate(-50%, -50%) scale(1) rotate(0deg);\n opacity: 1;\n}\n\n.copilotKitButton:not(.open) .copilotKitButtonIconClose {\n transform: translate(-50%, -50%) scale(0) rotate(-90deg);\n opacity: 0;\n}\n",".copilotKitHeader {\n height: 56px;\n font-weight: 500;\n display: flex;\n align-items: center;\n position: relative;\n color: var(--copilot-kit-primary-color);\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n border-bottom: 1px solid var(--copilot-kit-separator-color);\n padding-left: 1.5rem;\n background-color: var(--copilot-kit-contrast-color);\n justify-content: space-between;\n z-index: 2;\n}\n\n:where(.copilotKitSidebar) .copilotKitHeader {\n border-radius: 0;\n}\n\n.copilotKitHeaderControls {\n display: flex;\n}\n\n.copilotKitHeaderCloseButton {\n background: none;\n border: none;\n}\n\n@media (min-width: 640px) {\n .copilotKitHeader {\n padding-left: 1.5rem;\n padding-right: 24px;\n border-top-left-radius: 8px;\n border-top-right-radius: 8px;\n }\n\n :where(.copilotKitSidebar) .copilotKitHeader {\n border-radius: 0;\n }\n}\n\n.copilotKitHeader > button {\n border: 0;\n padding: 8px;\n position: absolute;\n top: 50%;\n right: 16px;\n transform: translateY(-50%);\n outline: none;\n color: var(--copilot-kit-muted-color);\n background-color: transparent;\n cursor: pointer;\n border-radius: 50%;\n display: flex;\n align-items: center;\n justify-content: center;\n transition: background-color 0.2s ease;\n width: 35px;\n height: 35px;\n}\n\n.copilotKitHeader > button:hover {\n color: color-mix(in srgb, var(--copilot-kit-muted-color) 80%, black);\n}\n\n.copilotKitHeader > button:focus {\n outline: none;\n}\n",".copilotKitInput {\n cursor: text;\n position: relative;\n background-color: var(--copilot-kit-input-background-color);\n border-radius: 20px;\n border: 1px solid var(--copilot-kit-separator-color);\n padding: 12px 14px;\n min-height: 75px;\n margin: 0 auto;\n width: 95%;\n}\n\n.copilotKitInputContainer {\n width: 100%;\n padding: 0;\n padding-bottom: 15px;\n background: var(--copilot-kit-background-color);\n border-bottom-left-radius: 0.75rem;\n border-bottom-right-radius: 0.75rem;\n}\n\n:where(.copilotKitSidebar) .copilotKitInputContainer {\n border-bottom-left-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.copilotKitInputControlButton {\n padding: 0;\n cursor: pointer;\n transition-property: transform;\n transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n transition-duration: 200ms;\n transform: scale(1);\n color: rgba(0, 0, 0, 0.25);\n -webkit-appearance: button;\n appearance: button;\n background-color: transparent;\n background-image: none;\n text-transform: none;\n font-family: inherit;\n font-size: 100%;\n font-weight: inherit;\n line-height: inherit;\n border: 0;\n margin: 0;\n text-indent: 0px;\n text-shadow: none;\n display: inline-block;\n text-align: center;\n width: 24px;\n height: 24px;\n}\n\n.copilotKitInputControlButton:not([disabled]) {\n color: var(--copilot-kit-primary-color);\n}\n\n.copilotKitInputControlButton:not([disabled]):hover {\n color: color-mix(in srgb, var(--copilot-kit-primary-color) 80%, black);\n transform: scale(1.05);\n}\n\n.copilotKitInputControlButton[disabled] {\n color: var(--copilot-kit-muted-color);\n cursor: default;\n}\n\n.copilotKitInputControls {\n display: flex;\n gap: 3px;\n}\n\n.copilotKitInput > textarea {\n flex: 1; /* Allow textarea to take up remaining space */\n outline: 2px solid transparent;\n outline-offset: 2px;\n resize: none;\n white-space: pre-wrap;\n overflow-wrap: break-word;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n cursor: text;\n font-size: 0.875rem;\n line-height: 1.5rem;\n margin: 0;\n padding: 0;\n font-family: inherit;\n font-weight: inherit;\n color: var(--copilot-kit-secondary-contrast-color);\n border: 0px;\n background-color: transparent;\n width: 100%;\n}\n\n.copilotKitInput > textarea::placeholder {\n color: #808080;\n opacity: 1;\n}\n\n.copilotKitInputControlButton.copilotKitPushToTalkRecording {\n background-color: #ec0000;\n color: white;\n border-radius: 50%;\n animation: copilotKitPulseAnimation 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;\n}\n\n/* Scrollbar styles */\n.copilotKitInput textarea::-webkit-scrollbar {\n width: 9px; /* Width of the entire scrollbar */\n}\n\n.copilotKitInput textarea::-webkit-scrollbar-track {\n background: transparent; /* Color of the tracking area */\n}\n\n.copilotKitInput textarea::-webkit-scrollbar-thumb {\n background-color: rgb(200 200 200); /* Color of the scroll thumb */\n border-radius: 10px; /* Roundness of the scroll thumb */\n border: 2px solid transparent; /* Creates padding around scroll thumb */\n background-clip: content-box;\n cursor: pointer;\n}\n\n.copilotKitInput textarea::-webkit-scrollbar-thumb:hover {\n background-color: color-mix(\n in srgb,\n rgb(200 200 200) 80%,\n black\n ); /* Darker color on hover */\n}\n\n.poweredByContainer {\n padding: 0;\n}\n\n.poweredBy {\n background: var(--copilot-kit-background-color) !important;\n visibility: visible !important;\n display: block !important;\n position: static !important;\n text-align: center !important;\n font-size: 12px !important;\n padding: 3px 0 !important;\n color: rgb(214, 214, 214) !important;\n margin: 0 !important;\n}\n\n.dark .poweredBy,\nhtml.dark .poweredBy,\nbody.dark .poweredBy,\n[data-theme=\"dark\"] .poweredBy,\nhtml[style*=\"color-scheme: dark\"] .poweredBy,\nbody[style*=\"color-scheme: dark\"] .poweredBy {\n color: rgb(69, 69, 69) !important;\n}\n",".copilotKitMessages {\n overflow-y: scroll;\n flex: 1;\n display: flex;\n flex-direction: column;\n background-color: var(--copilot-kit-background-color);\n color: var(--copilot-kit-secondary-contrast-color);\n justify-content: space-between;\n z-index: 1;\n}\n\n.copilotKitMessagesContainer {\n padding: 1rem 24px;\n display: flex;\n flex-direction: column;\n}\n\n.copilotKitMessagesFooter {\n display: flex;\n padding: 0.5rem 0.75rem;\n margin: 8px auto 0 auto;\n justify-content: flex-start;\n flex-direction: column;\n width: 100%;\n box-sizing: border-box;\n}\n\n.copilotKitMessages::-webkit-scrollbar {\n width: 6px;\n}\n\n.copilotKitMessages::-webkit-scrollbar-thumb {\n background-color: var(--copilot-kit-separator-color);\n border-radius: 10rem;\n border: 2px solid var(--copilot-kit-background-color);\n}\n\n.copilotKitMessages::-webkit-scrollbar-track-piece:start {\n background: transparent;\n}\n\n.copilotKitMessages::-webkit-scrollbar-track-piece:end {\n background: transparent;\n}\n\n.copilotKitMessage {\n border-radius: 15px;\n padding: 8px 12px;\n font-size: 1rem;\n line-height: 1.5;\n overflow-wrap: break-word;\n max-width: 80%;\n margin-bottom: 0.5rem;\n}\n\n.copilotKitMessage.copilotKitUserMessage {\n background: var(--copilot-kit-primary-color);\n color: var(--copilot-kit-contrast-color);\n margin-left: auto;\n white-space: pre-wrap;\n line-height: 1.75;\n font-size: 1rem;\n}\n\n.copilotKitMessage.copilotKitAssistantMessage {\n background: transparent;\n margin-right: auto;\n padding-left: 0;\n position: relative;\n max-width: 100%;\n color: var(--copilot-kit-secondary-contrast-color);\n}\n\n.copilotKitMessage.copilotKitAssistantMessage .copilotKitMessageControls {\n position: absolute;\n left: 0;\n display: flex;\n gap: 1rem;\n opacity: 0;\n transition: opacity 0.2s ease;\n padding: 5px 0 0 0;\n}\n\n.copilotKitMessageControls.currentMessage {\n opacity: 1 !important;\n}\n\n.copilotKitMessage.copilotKitAssistantMessage:hover .copilotKitMessageControls {\n opacity: 1;\n}\n\n/* Always show controls on mobile */\n@media (max-width: 768px) {\n .copilotKitMessage.copilotKitAssistantMessage .copilotKitMessageControls {\n opacity: 1;\n }\n}\n\n.copilotKitMessageControlButton {\n width: 20px;\n height: 20px;\n display: flex;\n align-items: center;\n border-radius: 0.5rem;\n justify-content: center;\n color: var(--copilot-kit-primary-color);\n cursor: pointer;\n transition: all 0.2s ease;\n padding: 0;\n z-index: 10;\n margin: 0;\n background: transparent;\n border: none;\n}\n\n.copilotKitMessageControlButton:hover {\n color: color-mix(in srgb, var(--copilot-kit-primary-color) 80%, black);\n transform: scale(1.05);\n}\n\n.copilotKitMessageControlButton:active {\n color: color-mix(in srgb, var(--copilot-kit-primary-color) 80%, black);\n transform: scale(1.05);\n}\n\n.copilotKitMessageControlButton.active {\n background-color: var(--copilot-kit-primary-color);\n color: var(--copilot-kit-contrast-color);\n}\n\n.copilotKitMessageControlButton.active:hover {\n background-color: color-mix(\n in srgb,\n var(--copilot-kit-primary-color) 90%,\n black\n );\n color: var(--copilot-kit-contrast-color);\n}\n\n.copilotKitMessageControlButton svg {\n width: 1rem;\n height: 1rem;\n display: block;\n pointer-events: none;\n}\n\n.copilotKitMessage.copilotKitAssistantMessage\n + .copilotKitMessage.copilotKitUserMessage {\n margin-top: 1.5rem;\n}\n\n.copilotKitCustomAssistantMessage {\n margin-top: 1.5rem;\n margin-bottom: 1.5rem;\n}\n\n.copilotKitMessage .inProgressLabel {\n margin-left: 10px;\n opacity: 0.7;\n}\n\n@keyframes copilotKitSpinAnimation {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n\n.copilotKitSpinner {\n display: inline-block;\n width: 16px;\n height: 16px;\n border: 2px solid var(--copilot-kit-contrast-color);\n border-radius: 50%;\n border-top-color: var(--copilot-kit-primary-color);\n animation: copilotKitSpinAnimation 1s linear infinite;\n}\n\n@keyframes copilotKitActivityDotAnimation {\n 0%,\n 80%,\n 100% {\n transform: scale(0.5);\n opacity: 0.5;\n }\n 40% {\n transform: scale(1);\n opacity: 1;\n }\n}\n\n.copilotKitActivityDot {\n display: inline-block;\n width: 6px;\n height: 6px;\n border-radius: 50%;\n background-color: var(--copilot-kit-primary-color);\n animation: copilotKitActivityDotAnimation 1.4s infinite ease-in-out both;\n}\n\n/* Image Rendering Styles */\n.copilotKitImageRendering {\n display: flex;\n flex-direction: column;\n gap: 8px;\n}\n\n.copilotKitImageRenderingImage {\n max-width: 80px;\n max-height: 80px;\n width: auto;\n height: auto;\n object-fit: cover;\n border-radius: 12px;\n background-color: var(--copilot-kit-input-background-color);\n box-shadow: var(--copilot-kit-shadow-sm);\n cursor: pointer;\n}\n\n.copilotKitImageRenderingContent {\n margin-top: 8px;\n padding: 0 16px;\n font-size: 0.875rem;\n line-height: 1.5;\n color: var(--copilot-kit-secondary-contrast-color);\n}\n\n/* Image Error State Styles */\n.copilotKitImageRenderingError {\n display: flex;\n flex-direction: column;\n gap: 8px;\n padding: 12px;\n border: 1px solid var(--copilot-kit-separator-color);\n border-radius: 8px;\n background-color: var(--copilot-kit-input-background-color);\n}\n\n.copilotKitImageRenderingErrorMessage {\n display: flex;\n align-items: center;\n gap: 8px;\n padding: 8px 12px;\n background-color: var(--copilot-kit-error-background);\n border: 1px solid var(--copilot-kit-error-border);\n border-radius: 6px;\n color: var(--copilot-kit-error-text);\n font-size: 0.875rem;\n font-weight: 500;\n}\n\n.copilotKitImageRenderingErrorMessage::before {\n content: \"⚠️\";\n font-size: 1rem;\n}\n","/* Attachment Queue */\n.copilotKitAttachmentQueue {\n display: flex;\n flex-wrap: wrap;\n gap: 8px;\n margin: 8px;\n padding: 8px;\n}\n\n.copilotKitAttachmentQueueItem {\n position: relative;\n display: inline-flex;\n border-radius: 8px;\n overflow: hidden;\n border: 1px solid var(--copilot-kit-separator-color);\n background: var(--copilot-kit-input-background-color);\n}\n\n.copilotKitAttachmentQueueItem--image,\n.copilotKitAttachmentQueueItem--video {\n width: 72px;\n height: 72px;\n}\n\n.copilotKitAttachmentQueueItem--audio {\n min-width: 200px;\n max-width: 280px;\n flex-direction: column;\n padding: 4px;\n}\n\n.copilotKitAttachmentQueueItem--document {\n padding: 8px 12px;\n max-width: 200px;\n}\n\n.copilotKitAttachmentQueueOverlay {\n position: absolute;\n inset: 0;\n display: flex;\n align-items: center;\n justify-content: center;\n background: rgba(0, 0, 0, 0.4);\n z-index: 1;\n}\n\n.copilotKitAttachmentQueueSpinner {\n width: 20px;\n height: 20px;\n border: 2px solid rgba(255, 255, 255, 0.3);\n border-top-color: white;\n border-radius: 50%;\n animation: copilotKitSpin 0.6s linear infinite;\n}\n\n@keyframes copilotKitSpin {\n to {\n transform: rotate(360deg);\n }\n}\n\n.copilotKitAttachmentQueueRemoveButton {\n position: absolute;\n top: 4px;\n right: 4px;\n background: rgba(0, 0, 0, 0.6);\n color: white;\n border: none;\n border-radius: 50%;\n width: 20px;\n height: 20px;\n display: flex;\n align-items: center;\n justify-content: center;\n cursor: pointer;\n font-size: 10px;\n padding: 0;\n z-index: 2;\n line-height: 1;\n}\n\n.copilotKitAttachmentQueueRemoveButton:hover {\n background: rgba(0, 0, 0, 0.8);\n}\n\n.copilotKitAttachmentQueuePreviewPlaceholder {\n width: 100%;\n height: 100%;\n background: var(--copilot-kit-input-background-color);\n}\n\n.copilotKitAttachmentQueuePreviewImage {\n width: 100%;\n height: 100%;\n object-fit: cover;\n}\n\n/* Audio preview in queue */\n.copilotKitAttachmentQueuePreviewAudio {\n display: flex;\n flex-direction: column;\n gap: 4px;\n width: 100%;\n}\n\n.copilotKitAttachmentQueuePreviewAudio audio {\n width: 100%;\n height: 32px;\n}\n\n/* Video preview in queue */\n.copilotKitAttachmentQueuePreviewVideo {\n width: 100%;\n height: 100%;\n}\n\n/* Document preview in queue */\n.copilotKitAttachmentQueuePreviewDocument {\n display: flex;\n align-items: center;\n gap: 8px;\n}\n\n.copilotKitAttachmentQueueDocIcon {\n width: 32px;\n height: 32px;\n border-radius: 6px;\n background: var(--copilot-kit-primary-color, #6366f1);\n color: white;\n display: flex;\n align-items: center;\n justify-content: center;\n font-size: 10px;\n font-weight: 600;\n flex-shrink: 0;\n}\n\n.copilotKitAttachmentQueueDocInfo {\n display: flex;\n flex-direction: column;\n gap: 2px;\n min-width: 0;\n}\n\n.copilotKitAttachmentQueueFilename {\n font-size: 12px;\n font-weight: 500;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.copilotKitAttachmentQueueFileSize {\n font-size: 11px;\n color: var(--copilot-kit-secondary-contrast-color);\n}\n\n/* Drag-and-drop overlay */\n.copilotKitDragOver {\n outline: 2px dashed var(--copilot-kit-primary-color, #6366f1);\n outline-offset: -4px;\n border-radius: 8px;\n}\n\n/* Attachment Rendering in Messages */\n.copilotKitAttachment {\n display: inline-flex;\n flex-direction: column;\n gap: 4px;\n max-width: 100%;\n}\n\n.copilotKitAttachmentAudio audio {\n max-width: 300px;\n width: 100%;\n height: 40px;\n}\n\n.copilotKitAttachmentVideo video {\n max-width: 400px;\n width: 100%;\n border-radius: 8px;\n}\n\n.copilotKitAttachmentDocument {\n display: inline-flex;\n align-items: center;\n gap: 8px;\n padding: 8px 12px;\n border: 1px solid var(--copilot-kit-separator-color);\n border-radius: 8px;\n background: var(--copilot-kit-input-background-color);\n}\n\n.copilotKitAttachmentDocIcon {\n width: 28px;\n height: 28px;\n border-radius: 6px;\n background: var(--copilot-kit-primary-color, #6366f1);\n color: white;\n display: flex;\n align-items: center;\n justify-content: center;\n font-size: 9px;\n font-weight: 600;\n flex-shrink: 0;\n}\n\n.copilotKitAttachmentDocInfo {\n display: flex;\n flex-direction: column;\n gap: 1px;\n min-width: 0;\n}\n\n.copilotKitAttachmentDocName {\n font-size: 13px;\n font-weight: 500;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.copilotKitAttachmentDocMeta {\n font-size: 11px;\n color: var(--copilot-kit-secondary-contrast-color);\n}\n",".copilotKitWindow {\n position: fixed;\n inset: 0px;\n transform-origin: bottom;\n border-color: rgb(229 231 235);\n background-color: var(--copilot-kit-background-color);\n border-radius: 0.75rem;\n box-shadow: rgba(0, 0, 0, 0.16) 0px 5px 40px;\n flex-direction: column;\n transition:\n opacity 100ms ease-out,\n transform 200ms ease-out;\n opacity: 0;\n transform: scale(0.95) translateY(20px);\n display: flex;\n pointer-events: none;\n}\n\n:where(.copilotKitSidebar) .copilotKitWindow {\n border-radius: 0;\n opacity: 1;\n transform: translateX(100%);\n}\n\n.copilotKitWindow.open {\n opacity: 1;\n transform: scale(1) translateY(0);\n pointer-events: auto;\n}\n\n:where(.copilotKitSidebar) .copilotKitWindow.open {\n transform: translateX(0);\n}\n\n.copilotKitChatBody {\n flex: 1 1 0%;\n display: flex;\n flex-direction: column;\n min-height: 0;\n}\n\n@media (min-width: 640px) {\n .copilotKitWindow {\n transform-origin: bottom right;\n bottom: 5rem;\n right: 1rem;\n top: auto;\n left: auto;\n border-width: 0px;\n margin-bottom: 1rem;\n width: 24rem;\n height: 600px;\n min-height: 200px;\n max-height: calc(100% - 6rem);\n }\n\n :where(.copilotKitSidebar) .copilotKitWindow {\n bottom: 0;\n right: 0;\n top: auto;\n left: auto;\n width: 28rem;\n min-height: 100%;\n margin-bottom: 0;\n max-height: none;\n }\n}\n",".copilotKitActivityDot1 {\n animation: copilotKitActivityDotsAnimation 1.05s infinite;\n}\n.copilotKitActivityDot2 {\n animation-delay: 0.1s;\n}\n.copilotKitActivityDot3 {\n animation-delay: 0.2s;\n}\n@keyframes copilotKitActivityDotsAnimation {\n 0%,\n 57.14% {\n animation-timing-function: cubic-bezier(0.33, 0.66, 0.66, 1);\n transform: translate(0);\n }\n 28.57% {\n animation-timing-function: cubic-bezier(0.33, 0, 0.66, 0.33);\n transform: translateY(-6px);\n }\n 100% {\n transform: translate(0);\n }\n}\n\n@keyframes copilotKitSpinAnimation {\n to {\n transform: rotate(360deg);\n }\n}\n\n@keyframes copilotKitPulseAnimation {\n 50% {\n opacity: 0.5;\n }\n}\n","h1.copilotKitMarkdownElement,\nh2.copilotKitMarkdownElement,\nh3.copilotKitMarkdownElement,\nh4.copilotKitMarkdownElement,\nh5.copilotKitMarkdownElement,\nh6.copilotKitMarkdownElement {\n font-weight: bold;\n line-height: 1.2;\n}\n\nh1.copilotKitMarkdownElement:not(:last-child),\nh2.copilotKitMarkdownElement:not(:last-child),\nh3.copilotKitMarkdownElement:not(:last-child),\nh4.copilotKitMarkdownElement:not(:last-child),\nh5.copilotKitMarkdownElement:not(:last-child),\nh6.copilotKitMarkdownElement:not(:last-child) {\n margin-bottom: 1rem;\n}\n\nh1.copilotKitMarkdownElement {\n font-size: 1.5em;\n}\n\nh2.copilotKitMarkdownElement {\n font-size: 1.25em;\n font-weight: 600;\n}\n\nh3.copilotKitMarkdownElement {\n font-size: 1.1em;\n}\n\nh4.copilotKitMarkdownElement {\n font-size: 1em;\n}\n\nh5.copilotKitMarkdownElement {\n font-size: 0.9em;\n}\n\nh6.copilotKitMarkdownElement {\n font-size: 0.8em;\n}\n\na.copilotKitMarkdownElement {\n color: blue;\n text-decoration: underline;\n}\n\n.copilotKitParagraph {\n padding: 0px;\n margin: 0px;\n line-height: 1.75;\n font-size: 1rem;\n}\n\n.copilotKitParagraph:not(:last-child),\npre.copilotKitMarkdownElement:not(:last-child),\nol.copilotKitMarkdownElement:not(:last-child),\nul.copilotKitMarkdownElement:not(:last-child),\nblockquote.copilotKitMarkdownElement:not(:last-child) {\n margin-bottom: 1.25em;\n}\n\nblockquote.copilotKitMarkdownElement {\n border-color: rgb(142, 142, 160);\n border-left-width: 2px;\n border-left-style: solid;\n line-height: 1.2;\n padding-left: 10px;\n}\n\nblockquote.copilotKitMarkdownElement .copilotKitParagraph {\n padding: 0.7em 0;\n}\n\nul.copilotKitMarkdownElement {\n list-style-type: disc;\n padding-left: 20px;\n overflow: visible;\n}\n\nli.copilotKitMarkdownElement {\n list-style-type: inherit;\n list-style-position: outside;\n margin-left: 0;\n padding-left: 0;\n position: relative;\n overflow: visible;\n}\n\n.copilotKitCodeBlock {\n position: relative;\n width: 100%;\n background-color: rgb(9 9 11);\n border-radius: 0.375rem;\n}\n\n.copilotKitCodeBlockToolbar {\n display: flex;\n width: 100%;\n align-items: center;\n justify-content: space-between;\n background-color: rgb(39 39 42);\n padding-left: 1rem;\n padding-top: 0.09rem;\n padding-bottom: 0.09rem;\n color: rgb(228, 228, 228);\n border-top-left-radius: 0.375rem;\n border-top-right-radius: 0.375rem;\n font-family: sans-serif;\n}\n\n.copilotKitCodeBlockToolbarLanguage {\n font-size: 0.75rem;\n line-height: 1rem;\n text-transform: lowercase;\n}\n\n.copilotKitCodeBlockToolbarButtons {\n display: flex;\n align-items: center;\n margin-right: 0.25rem;\n margin-left: 0.25rem;\n}\n\n.copilotKitCodeBlockToolbarButton {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n border-radius: 0.375rem;\n font-size: 0.875rem;\n line-height: 1.25rem;\n font-weight: 500;\n height: 2.5rem;\n padding: 3px;\n margin: 2px;\n}\n\n.copilotKitCodeBlockToolbarButton:hover {\n background-color: rgb(55, 55, 58);\n}\n\n.copilotKitInlineCode {\n background-color: var(--copilot-kit-input-background-color);\n border: 1px solid var(--copilot-kit-separator-color);\n border-radius: 0.375rem;\n padding: 0.05rem 0.4rem;\n font-size: 15px;\n}\n",".copilotKitMessages footer .suggestions {\n display: flex;\n flex-wrap: wrap;\n gap: 6px;\n}\n\n.copilotKitMessages footer h6 {\n font-weight: 500;\n font-size: 0.7rem;\n margin-bottom: 8px;\n}\n\n.copilotKitMessages footer .suggestions .suggestion {\n padding: 6px 10px;\n font-size: 0.7rem;\n border-radius: 15px;\n border: 1px solid var(--copilot-kit-muted-color);\n color: var(--copilot-kit-secondary-contrast-color);\n box-shadow:\n 0 5px 5px 0px rgba(0, 0, 0, 0.01),\n 0 2px 3px 0px rgba(0, 0, 0, 0.02);\n}\n\n.copilotKitMessages footer .suggestions .suggestion.loading {\n padding: 0;\n font-size: 0.7rem;\n border: none;\n color: var(--copilot-kit-secondary-contrast-color);\n}\n\n.copilotKitMessages footer .suggestions button {\n transition: transform 0.3s ease;\n}\n\n.copilotKitMessages footer .suggestions button:not(:disabled):hover {\n transform: scale(1.03);\n}\n\n.copilotKitMessages footer .suggestions button:disabled {\n cursor: wait;\n}\n\n.copilotKitMessages footer .suggestions button svg {\n margin-right: 6px;\n}\n",".copilotKitChat {\n z-index: 30;\n line-height: 1.5;\n -webkit-text-size-adjust: 100%;\n -moz-tab-size: 4;\n -o-tab-size: 4;\n tab-size: 4;\n background: var(--copilot-kit-background-color);\n font-family:\n ui-sans-serif,\n system-ui,\n -apple-system,\n BlinkMacSystemFont,\n \"Segoe UI\",\n Roboto,\n \"Helvetica Neue\",\n Arial,\n \"Noto Sans\",\n sans-serif,\n \"Apple Color Emoji\",\n \"Segoe UI Emoji\",\n \"Segoe UI Symbol\",\n \"Noto Color Emoji\";\n font-feature-settings: normal;\n font-variation-settings: normal;\n touch-action: manipulation;\n display: flex;\n flex-direction: column;\n /* height: 100%; */\n}\n\n.copilotKitChat svg {\n display: inline-block;\n vertical-align: middle;\n}\n\n.copilotKitChat .copilotKitMessages {\n flex-grow: 1;\n}\n",".copilotKitDevConsole {\n display: flex;\n align-items: center;\n gap: 5px;\n margin: 0 15px;\n}\n\n.copilotKitDevConsole.copilotKitDevConsoleWarnOutdated {\n background-color: var(--copilot-kit-dev-console-bg);\n}\n\n.copilotKitDevConsole .copilotKitVersionInfo {\n display: flex;\n position: absolute;\n bottom: -25px;\n padding: 3px 5px;\n left: 0;\n width: 100%;\n justify-content: center;\n gap: 10px;\n font-size: 0.8rem;\n align-items: center;\n background: #ebb305;\n}\n\n.copilotKitDevConsole .copilotKitVersionInfo button {\n font-size: 11px;\n font-weight: normal;\n font-family: monospace;\n background-color: var(--copilot-kit-dev-console-bg);\n border: 1px solid #979797;\n padding: 1px 12px;\n padding-left: 5px;\n border-radius: 4px;\n display: inline-block;\n text-align: left;\n overflow: hidden;\n white-space: nowrap;\n width: 260px;\n text-overflow: ellipsis;\n}\n\n.copilotKitDevConsole .copilotKitVersionInfo aside {\n display: inline;\n font-weight: normal;\n color: #7f7a7a;\n margin-left: 5px;\n}\n\n.copilotKitDevConsole .copilotKitVersionInfo svg {\n margin-left: 3px;\n margin-top: -3px;\n}\n\n.copilotKitDevConsole .copilotKitDebugMenuTriggerButton {\n font-size: 11px;\n font-weight: bold;\n display: flex;\n padding: 0 10px;\n height: 30px;\n background-color: transparent;\n border: 1px solid var(--copilot-kit-muted-color);\n border-radius: 20px;\n align-items: center;\n justify-content: center;\n outline: none;\n}\n\n.copilotKitDebugMenuTriggerButton.compact {\n width: 35px;\n color: var(--copilot-kit-dev-console-bg);\n justify-content: center;\n outline: none;\n font-size: 8px;\n}\n\n.copilotKitDevConsole .copilotKitDebugMenuTriggerButton:hover {\n background-color: color-mix(\n in srgb,\n var(--copilot-kit-dev-console-bg) 85%,\n black\n );\n color: var(--copilot-kit-dev-console-text);\n}\n\n.dark .copilotKitDevConsole .copilotKitDebugMenuTriggerButton,\nhtml.dark .copilotKitDevConsole .copilotKitDebugMenuTriggerButton,\nbody.dark .copilotKitDevConsole .copilotKitDebugMenuTriggerButton,\n[data-theme=\"dark\"] .copilotKitDevConsole .copilotKitDebugMenuTriggerButton,\nhtml[style*=\"color-scheme: dark\"]\n .copilotKitDevConsole\n .copilotKitDebugMenuTriggerButton,\nbody[style*=\"color-scheme: dark\"]\n .copilotKitDevConsole\n .copilotKitDebugMenuTriggerButton {\n color: white;\n}\n\n.dark .copilotKitDevConsole .copilotKitDebugMenuTriggerButton:hover,\nhtml.dark .copilotKitDevConsole .copilotKitDebugMenuTriggerButton:hover,\nbody.dark .copilotKitDevConsole .copilotKitDebugMenuTriggerButton:hover,\n[data-theme=\"dark\"]\n .copilotKitDevConsole\n .copilotKitDebugMenuTriggerButton:hover,\nhtml[style*=\"color-scheme: dark\"]\n .copilotKitDevConsole\n .copilotKitDebugMenuTriggerButton:hover,\nbody[style*=\"color-scheme: dark\"]\n .copilotKitDevConsole\n .copilotKitDebugMenuTriggerButton:hover {\n background-color: color-mix(\n in srgb,\n var(--copilot-kit-dev-console-bg) 20%,\n black\n );\n}\n\n.copilotKitDevConsole .copilotKitDebugMenuTriggerButton > svg {\n margin-left: 10px;\n}\n\n.copilotKitDebugMenu {\n --copilot-kit-dev-console-border: color-mix(\n in srgb,\n var(--copilot-kit-dev-console-bg) 80%,\n black\n );\n margin-top: 2px;\n border-radius: 6px;\n background-color: var(--copilot-kit-dev-console-bg);\n border: 1px solid var(--copilot-kit-dev-console-border);\n padding: 0.25rem;\n outline: none;\n font-size: 13px;\n}\n\n.copilotKitDebugMenuItem {\n padding-top: 3px;\n padding-bottom: 3px;\n padding-left: 10px;\n padding-right: 10px;\n display: block;\n width: 100%;\n text-align: left;\n background: none;\n border: none;\n cursor: pointer;\n color: var(--copilot-kit-dev-console-text);\n}\n\n.copilotKitDebugMenuItem:hover {\n background-color: color-mix(\n in srgb,\n var(--copilot-kit-dev-console-bg) 95%,\n black\n );\n border-radius: 4px;\n}\n\n.copilotKitDebugMenu[data-closed] {\n transform: scale(0.95); /* data-[closed]:scale-95 */\n opacity: 0; /* data-[closed]:opacity-0 */\n}\n\n.copilotKitDebugMenu hr {\n height: 1px;\n border: none; /* Remove 3D look */\n background-color: var(--copilot-kit-dev-console-border);\n margin: 0.25rem;\n}\n\n.copilotKitHelpModal {\n background-color: var(--copilot-kit-dev-console-bg);\n color: var(--copilot-kit-dev-console-text);\n}\n\n.copilotKitHelpItemButton {\n display: block;\n text-align: center;\n width: 100%;\n padding: 4px 6px;\n border-radius: 15px;\n font-size: 0.8rem;\n border: 1px solid var(--copilot-kit-muted-color);\n color: var(--copilot-kit-dev-console-text);\n box-shadow:\n 0 5px 5px 0px rgba(0, 0, 0, 0.01),\n 0 2px 3px 0px rgba(0, 0, 0, 0.02);\n background-color: var(--copilot-kit-dev-console-bg);\n}\n.copilotKitHelpItemButton:hover {\n background-color: color-mix(\n in srgb,\n var(--copilot-kit-dev-console-bg) 95%,\n black\n );\n}\n","/* Default styles for the ResponseRenderer component */\n\n.copilotkit-response {\n text-align: right;\n}\n\n.copilotkit-response-content {\n margin-bottom: 0.5rem;\n font-size: 0.875rem;\n color: #4b5563;\n background-color: #f9fafb;\n padding: 0.5rem;\n border-radius: 0.25rem;\n text-align: left;\n}\n\n.copilotkit-response-actions {\n display: inline-flex;\n flex-direction: column;\n align-items: flex-end;\n}\n\n.copilotkit-response-label {\n font-size: 0.75rem;\n color: #6b7280;\n margin-bottom: 0.25rem;\n display: flex;\n align-items: center;\n}\n\n.copilotkit-toggle-button {\n margin-right: 0.25rem;\n background: none;\n border: none;\n padding: 0;\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.copilotkit-icon {\n height: 0.75rem;\n width: 0.75rem;\n color: #6b7280;\n}\n\n.copilotkit-response-buttons {\n display: flex;\n gap: 0.5rem;\n}\n\n.copilotkit-response-button {\n padding: 0.25rem 0.5rem;\n font-size: 0.75rem;\n background-color: #f3f4f6;\n color: #4b5563;\n border-radius: 0.25rem;\n border: none;\n cursor: pointer;\n transition: background-color 0.2s;\n}\n\n.copilotkit-response-button:hover {\n background-color: #e5e7eb;\n}\n\n.copilotkit-response-button:focus {\n outline: none;\n}\n\n.copilotkit-response-completed-feedback {\n background-color: #f9fafb;\n padding: 0.5rem;\n border-radius: 0.375rem;\n display: inline-flex;\n align-items: center;\n}\n\n.copilotkit-response-completed-feedback span {\n color: #4b5563;\n font-size: 0.75rem;\n font-weight: 500;\n}\n\n/* DefaultStateRenderer styles */\n\n.copilotkit-state {\n font-size: 0.875rem;\n margin-bottom: 1rem;\n}\n\n.copilotkit-state-header {\n display: flex;\n align-items: center;\n gap: 0.25rem;\n cursor: pointer;\n user-select: none;\n margin-bottom: 0.25rem;\n}\n\n.copilotkit-state-label {\n color: #4b5563;\n font-size: 0.875rem;\n}\n\n.copilotkit-state-label-loading {\n display: inline-flex;\n align-items: center;\n animation: pulse 1.5s infinite;\n}\n\n.copilotkit-state-content {\n padding-left: 1rem;\n max-height: 250px;\n overflow: auto;\n padding-top: 0.375rem;\n border-left: 1px solid #e5e7eb;\n margin-left: 0.375rem;\n}\n\n.copilotkit-state-item {\n padding: 0.25rem 0;\n margin-bottom: 0.25rem;\n transition: all 0.3s ease;\n}\n\n.copilotkit-state-item-newest {\n animation: appear 0.5s ease-out;\n}\n\n.copilotkit-state-item-header {\n font-size: 0.75rem;\n opacity: 0.7;\n}\n\n.copilotkit-state-item-thought {\n margin-top: 0.125rem;\n font-size: 0.75rem;\n opacity: 0.8;\n}\n\n.copilotkit-state-item-result {\n margin-top: 0.125rem;\n font-size: 0.75rem;\n}\n\n.copilotkit-state-item-description {\n margin-top: 0.125rem;\n font-size: 0.75rem;\n opacity: 0.8;\n}\n\n.copilotkit-state-empty {\n padding: 0.25rem 0;\n font-size: 0.75rem;\n opacity: 0.7;\n}\n\n.copilotkit-skeleton {\n padding: 0.125rem 0;\n animation: pulse 1.5s infinite;\n}\n\n.copilotkit-skeleton-header {\n display: flex;\n justify-content: space-between;\n}\n\n.copilotkit-skeleton-title {\n height: 0.625rem;\n width: 4rem;\n background-color: #e5e7eb;\n border-radius: 0.25rem;\n}\n\n.copilotkit-skeleton-subtitle {\n height: 0.5rem;\n width: 2rem;\n background-color: #e5e7eb;\n border-radius: 0.25rem;\n}\n\n.copilotkit-skeleton-content {\n margin-top: 0.125rem;\n height: 1.5rem;\n background-color: #e5e7eb;\n border-radius: 0.25rem;\n}\n\n.copilotkit-loader {\n animation: spin 1.5s linear infinite;\n}\n\n.copilotkit-spinner {\n animation: spin 1.5s linear infinite;\n}\n\n/* Animations */\n@keyframes appear {\n 0% {\n opacity: 0;\n transform: translateY(8px);\n }\n 100% {\n opacity: 1;\n transform: translateY(0);\n }\n}\n\n@keyframes pulse {\n 0%,\n 100% {\n opacity: 0.4;\n }\n 50% {\n opacity: 1;\n }\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n\n/* Dark mode styles */\n@media (prefers-color-scheme: dark) {\n /* DefaultResponseRenderer dark styles */\n .copilotkit-response-content {\n color: #9ca3af;\n background-color: #1f2937;\n }\n\n .copilotkit-response-label {\n color: #9ca3af;\n }\n\n .copilotkit-icon {\n color: #9ca3af;\n }\n\n .copilotkit-response-button {\n background-color: #1f2937;\n color: #d1d5db;\n }\n\n .copilotkit-response-button:hover {\n background-color: #374151;\n }\n\n .copilotkit-response-completed-feedback {\n background-color: #1f2937;\n }\n\n .copilotkit-response-completed-feedback span {\n color: #e5e7eb;\n }\n\n /* DefaultStateRenderer dark styles */\n .copilotkit-state-label {\n color: #d1d5db;\n }\n\n .copilotkit-state-content {\n border-left-color: #374151;\n }\n\n .copilotkit-skeleton-title,\n .copilotkit-skeleton-subtitle,\n .copilotkit-skeleton-content {\n background-color: #374151;\n }\n}\n","@import \"./css/colors.css\";\n@import \"./css/popup.css\";\n@import \"./css/sidebar.css\";\n@import \"./css/button.css\";\n@import \"./css/header.css\";\n@import \"./css/input.css\";\n@import \"./css/messages.css\";\n@import \"./css/attachments.css\";\n@import \"./css/window.css\";\n@import \"./css/animations.css\";\n@import \"./css/markdown.css\";\n@import \"./css/suggestions.css\";\n@import \"./css/panel.css\";\n@import \"./css/console.css\";\n@import \"./css/crew.css\";\n"],"mappings":"AAAA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;ACjFA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;ACjCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;ACxEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AClEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;ACpEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AC1JA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AChQA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AClOA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AClEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AClCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;ACrJA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AC5CA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;ACtCA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;ACpMA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA"}
|
|
1
|
+
{"version":3,"file":"index.css","names":[],"sources":["../src/css/colors.css","../src/css/popup.css","../src/css/sidebar.css","../src/css/button.css","../src/css/header.css","../src/css/input.css","../src/css/messages.css","../src/css/attachments.css","../src/css/window.css","../src/css/animations.css","../src/css/markdown.css","../src/css/suggestions.css","../src/css/panel.css","../src/css/console.css","../src/css/crew.css","../src/styles.css"],"sourcesContent":["/* IMPORTANT NOTE:\nTHE DARK AND LIGHT COLORS HERE ARE DUPLICATED BECAUSE NO REUSE METHOD POSSIBLE.\nWHEN MAKING ANY CHANGE, MAKE SURE TO INCLUDE IT IN ALL DUPLICATIONS.\n*/\n\n/* BASE LIGHT THEME */\n:root {\n /* Semantic color tokens */\n /* Main brand/action color - used for buttons, interactive elements */\n --copilot-kit-primary-color: rgb(28, 28, 28);\n /* Color that contrasts with primary - used for text on primary elements */\n --copilot-kit-contrast-color: rgb(255, 255, 255);\n /* Main page/container background color */\n --copilot-kit-background-color: rgb(255 255 255);\n /* Input box background color */\n --copilot-kit-input-background-color: #fbfbfb;\n /* Secondary background - used for cards, panels, elevated surfaces */\n --copilot-kit-secondary-color: rgb(255 255 255);\n /* Primary text color for main content */\n --copilot-kit-secondary-contrast-color: rgb(28, 28, 28);\n /* Border color for dividers and containers */\n --copilot-kit-separator-color: rgb(200 200 200);\n /* Muted color for disabled/inactive states */\n --copilot-kit-muted-color: rgb(200 200 200);\n\n /* Error colors */\n --copilot-kit-error-background: #fef2f2;\n --copilot-kit-error-border: #fecaca;\n --copilot-kit-error-text: #dc2626;\n\n /* Shadow tokens */\n /* Small shadow for subtle elevation */\n --copilot-kit-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);\n /* Medium shadow for cards */\n --copilot-kit-shadow-md:\n 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);\n /* Large shadow for modals */\n --copilot-kit-shadow-lg:\n 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);\n\n --copilot-kit-dev-console-bg: #f8f8fa;\n --copilot-kit-dev-console-text: black;\n}\n\n/* BASE DARK THEME */\n.dark,\nhtml.dark,\nbody.dark,\n[data-theme=\"dark\"],\nhtml[style*=\"color-scheme: dark\"],\nbody[style*=\"color-scheme: dark\"] {\n /* Main brand/action color - used for buttons, interactive elements */\n --copilot-kit-primary-color: rgb(255, 255, 255);\n /* Color that contrasts with primary - used for text on primary elements */\n --copilot-kit-contrast-color: rgb(28, 28, 28);\n /* Main page/container background color */\n --copilot-kit-background-color: rgb(17, 17, 17);\n /* Input box background color */\n --copilot-kit-input-background-color: #2c2c2c;\n /* Secondary background - used for cards, panels, elevated surfaces */\n --copilot-kit-secondary-color: rgb(28, 28, 28);\n /* Primary text color for main content */\n --copilot-kit-secondary-contrast-color: rgb(255, 255, 255);\n /* Border color for dividers and containers */\n --copilot-kit-separator-color: rgb(45, 45, 45);\n /* Muted color for disabled/inactive states */\n --copilot-kit-muted-color: rgb(45, 45, 45);\n\n /* Error colors */\n --copilot-kit-error-background: #7f1d1d;\n --copilot-kit-error-border: #dc2626;\n --copilot-kit-error-text: #fca5a5;\n\n /* Small shadow for subtle elevation */\n --copilot-kit-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);\n /* Medium shadow for cards */\n --copilot-kit-shadow-md:\n 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);\n /* Large shadow for modals */\n --copilot-kit-shadow-lg:\n 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);\n}\n",".copilotKitPopup {\n position: fixed;\n bottom: 1rem;\n right: 1rem;\n z-index: 30;\n line-height: 1.5;\n -webkit-text-size-adjust: 100%;\n -moz-tab-size: 4;\n -o-tab-size: 4;\n tab-size: 4;\n font-family:\n ui-sans-serif,\n system-ui,\n -apple-system,\n BlinkMacSystemFont,\n \"Segoe UI\",\n Roboto,\n \"Helvetica Neue\",\n Arial,\n \"Noto Sans\",\n sans-serif,\n \"Apple Color Emoji\",\n \"Segoe UI Emoji\",\n \"Segoe UI Symbol\",\n \"Noto Color Emoji\";\n font-feature-settings: normal;\n font-variation-settings: normal;\n touch-action: manipulation;\n}\n\n.copilotKitPopup svg {\n display: inline-block;\n vertical-align: middle;\n}\n",".copilotKitSidebar {\n position: fixed;\n bottom: 1rem;\n right: 1rem;\n z-index: 30;\n line-height: 1.5;\n -webkit-text-size-adjust: 100%;\n -moz-tab-size: 4;\n -o-tab-size: 4;\n tab-size: 4;\n font-family:\n ui-sans-serif,\n system-ui,\n -apple-system,\n BlinkMacSystemFont,\n \"Segoe UI\",\n Roboto,\n \"Helvetica Neue\",\n Arial,\n \"Noto Sans\",\n sans-serif,\n \"Apple Color Emoji\",\n \"Segoe UI Emoji\",\n \"Segoe UI Symbol\",\n \"Noto Color Emoji\";\n font-feature-settings: normal;\n font-variation-settings: normal;\n touch-action: manipulation;\n}\n\n.copilotKitSidebar svg {\n display: inline-block;\n vertical-align: middle;\n}\n\n.copilotKitSidebarContentWrapper {\n overflow: visible;\n margin-right: 0px;\n transition: margin-right 0.3s ease;\n}\n\n@media (min-width: 640px) {\n .copilotKitSidebarContentWrapper.sidebarExpanded {\n margin-right: 28rem;\n }\n}\n\n/*\n * Opt-in (via the `fullHeightChildren` prop on `CopilotSidebar`): let children\n * of the sidebar use `height: 100%`.\n *\n * By default both wrappers CopilotSidebar puts around your app are auto-height\n * blocks, so a percentage height on a child has no definite containing block to\n * resolve against and collapses to content height.\n *\n * The viewport unit is deliberate: `height: 100%` here would only resolve if\n * every ancestor (html/body/#root) also declared a height, which react-ui\n * neither sets nor can guarantee. `min-height: 0` on the children wrapper\n * overrides the flex-item `min-height: auto` default so tall content scrolls\n * inside the child instead of stretching the wrapper past the viewport.\n */\n.copilotKitSidebarContentWrapper.copilotKitSidebarFullHeightChildren {\n display: flex;\n flex-direction: column;\n height: 100vh;\n height: 100dvh;\n}\n\n.copilotKitSidebarContentWrapper.copilotKitSidebarFullHeightChildren\n > .copilotKitModalChildrenWrapper {\n flex: 1 1 auto;\n min-height: 0;\n}\n",".copilotKitButton {\n width: 3.5rem;\n height: 3.5rem;\n display: flex;\n align-items: center;\n justify-content: center;\n border-radius: 50%;\n border: 1px solid var(--copilot-kit-primary-color);\n outline: none;\n position: relative;\n transform: scale(1);\n transition: all 0.2s ease;\n background-color: var(--copilot-kit-primary-color);\n color: var(--copilot-kit-contrast-color);\n cursor: pointer;\n box-shadow: var(--copilot-kit-shadow-sm);\n}\n\n.copilotKitButton:hover {\n transform: scale(1.05);\n box-shadow: var(--copilot-kit-shadow-md);\n}\n\n.copilotKitButton:active {\n transform: scale(0.95);\n box-shadow: var(--copilot-kit-shadow-sm);\n}\n\n.copilotKitButtonIcon {\n transition:\n opacity 100ms,\n transform 300ms;\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.copilotKitButtonIcon svg {\n width: 1.5rem;\n height: 1.5rem;\n}\n\n/* State when the chat is open */\n.copilotKitButton.open .copilotKitButtonIconOpen {\n transform: translate(-50%, -50%) scale(0) rotate(90deg);\n opacity: 0;\n}\n\n.copilotKitButton.open .copilotKitButtonIconClose {\n transform: translate(-50%, -50%) scale(1) rotate(0deg);\n opacity: 1;\n}\n\n/* State when the chat is closed */\n.copilotKitButton:not(.open) .copilotKitButtonIconOpen {\n transform: translate(-50%, -50%) scale(1) rotate(0deg);\n opacity: 1;\n}\n\n.copilotKitButton:not(.open) .copilotKitButtonIconClose {\n transform: translate(-50%, -50%) scale(0) rotate(-90deg);\n opacity: 0;\n}\n",".copilotKitHeader {\n height: 56px;\n font-weight: 500;\n display: flex;\n align-items: center;\n position: relative;\n color: var(--copilot-kit-primary-color);\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n border-bottom: 1px solid var(--copilot-kit-separator-color);\n padding-left: 1.5rem;\n padding-right: 1.5rem;\n background-color: var(--copilot-kit-contrast-color);\n justify-content: space-between;\n z-index: 2;\n}\n\n:where(.copilotKitSidebar) .copilotKitHeader {\n border-radius: 0;\n}\n\n.copilotKitHeaderControls {\n display: flex;\n}\n\n.copilotKitHeaderCloseButton {\n background: none;\n border: none;\n}\n\n@media (min-width: 640px) {\n .copilotKitHeader {\n border-top-left-radius: 8px;\n border-top-right-radius: 8px;\n }\n\n :where(.copilotKitSidebar) .copilotKitHeader {\n border-radius: 0;\n }\n}\n\n.copilotKitHeader > button {\n border: 0;\n padding: 8px;\n position: absolute;\n top: 50%;\n right: 16px;\n transform: translateY(-50%);\n outline: none;\n color: var(--copilot-kit-muted-color);\n background-color: transparent;\n cursor: pointer;\n border-radius: 50%;\n display: flex;\n align-items: center;\n justify-content: center;\n transition: background-color 0.2s ease;\n width: 35px;\n height: 35px;\n}\n\n.copilotKitHeader > button:hover {\n color: color-mix(in srgb, var(--copilot-kit-muted-color) 80%, black);\n}\n\n.copilotKitHeader > button:focus {\n outline: none;\n}\n",".copilotKitInput {\n cursor: text;\n position: relative;\n background-color: var(--copilot-kit-input-background-color);\n border-radius: 20px;\n border: 1px solid var(--copilot-kit-separator-color);\n padding: 12px 14px;\n min-height: 75px;\n margin: 0 auto;\n width: 95%;\n}\n\n.copilotKitInputContainer {\n width: 100%;\n padding: 0;\n padding-bottom: 15px;\n background: var(--copilot-kit-background-color);\n border-bottom-left-radius: 0.75rem;\n border-bottom-right-radius: 0.75rem;\n}\n\n:where(.copilotKitSidebar) .copilotKitInputContainer {\n border-bottom-left-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.copilotKitInputControlButton {\n padding: 0;\n cursor: pointer;\n transition-property: transform;\n transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n transition-duration: 200ms;\n transform: scale(1);\n color: rgba(0, 0, 0, 0.25);\n -webkit-appearance: button;\n appearance: button;\n background-color: transparent;\n background-image: none;\n text-transform: none;\n font-family: inherit;\n font-size: 100%;\n font-weight: inherit;\n line-height: inherit;\n border: 0;\n margin: 0;\n text-indent: 0px;\n text-shadow: none;\n display: inline-block;\n text-align: center;\n width: 24px;\n height: 24px;\n}\n\n.copilotKitInputControlButton:not([disabled]) {\n color: var(--copilot-kit-primary-color);\n}\n\n.copilotKitInputControlButton:not([disabled]):hover {\n color: color-mix(in srgb, var(--copilot-kit-primary-color) 80%, black);\n transform: scale(1.05);\n}\n\n.copilotKitInputControlButton[disabled] {\n color: var(--copilot-kit-muted-color);\n cursor: default;\n}\n\n.copilotKitInputControls {\n display: flex;\n gap: 3px;\n}\n\n.copilotKitInput > textarea {\n flex: 1; /* Allow textarea to take up remaining space */\n outline: 2px solid transparent;\n outline-offset: 2px;\n resize: none;\n white-space: pre-wrap;\n overflow-wrap: break-word;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n cursor: text;\n font-size: 0.875rem;\n line-height: 1.5rem;\n margin: 0;\n padding: 0;\n font-family: inherit;\n font-weight: inherit;\n color: var(--copilot-kit-secondary-contrast-color);\n border: 0px;\n background-color: transparent;\n width: 100%;\n}\n\n.copilotKitInput > textarea::placeholder {\n color: #808080;\n opacity: 1;\n}\n\n.copilotKitInputControlButton.copilotKitPushToTalkRecording {\n background-color: #ec0000;\n color: white;\n border-radius: 50%;\n animation: copilotKitPulseAnimation 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;\n}\n\n/* Scrollbar styles */\n.copilotKitInput textarea::-webkit-scrollbar {\n width: 9px; /* Width of the entire scrollbar */\n}\n\n.copilotKitInput textarea::-webkit-scrollbar-track {\n background: transparent; /* Color of the tracking area */\n}\n\n.copilotKitInput textarea::-webkit-scrollbar-thumb {\n background-color: rgb(200 200 200); /* Color of the scroll thumb */\n border-radius: 10px; /* Roundness of the scroll thumb */\n border: 2px solid transparent; /* Creates padding around scroll thumb */\n background-clip: content-box;\n cursor: pointer;\n}\n\n.copilotKitInput textarea::-webkit-scrollbar-thumb:hover {\n background-color: color-mix(\n in srgb,\n rgb(200 200 200) 80%,\n black\n ); /* Darker color on hover */\n}\n\n.poweredByContainer {\n padding: 0;\n}\n\n.poweredBy {\n background: var(--copilot-kit-background-color) !important;\n visibility: visible !important;\n display: block !important;\n position: static !important;\n text-align: center !important;\n font-size: 12px !important;\n padding: 3px 0 !important;\n color: rgb(214, 214, 214) !important;\n margin: 0 !important;\n}\n\n.dark .poweredBy,\nhtml.dark .poweredBy,\nbody.dark .poweredBy,\n[data-theme=\"dark\"] .poweredBy,\nhtml[style*=\"color-scheme: dark\"] .poweredBy,\nbody[style*=\"color-scheme: dark\"] .poweredBy {\n color: rgb(69, 69, 69) !important;\n}\n",".copilotKitMessages {\n overflow-y: scroll;\n flex: 1;\n display: flex;\n flex-direction: column;\n background-color: var(--copilot-kit-background-color);\n color: var(--copilot-kit-secondary-contrast-color);\n justify-content: space-between;\n z-index: 1;\n}\n\n.copilotKitMessagesContainer {\n padding: 1rem 24px;\n display: flex;\n flex-direction: column;\n}\n\n.copilotKitMessagesFooter {\n display: flex;\n padding: 0.5rem 0.75rem;\n margin: 8px auto 0 auto;\n justify-content: flex-start;\n flex-direction: column;\n width: 100%;\n box-sizing: border-box;\n}\n\n.copilotKitMessages::-webkit-scrollbar {\n width: 6px;\n}\n\n.copilotKitMessages::-webkit-scrollbar-thumb {\n background-color: var(--copilot-kit-separator-color);\n border-radius: 10rem;\n border: 2px solid var(--copilot-kit-background-color);\n}\n\n.copilotKitMessages::-webkit-scrollbar-track-piece:start {\n background: transparent;\n}\n\n.copilotKitMessages::-webkit-scrollbar-track-piece:end {\n background: transparent;\n}\n\n.copilotKitMessage {\n border-radius: 15px;\n padding: 8px 12px;\n font-size: 1rem;\n line-height: 1.5;\n overflow-wrap: break-word;\n max-width: 80%;\n margin-bottom: 0.5rem;\n}\n\n.copilotKitMessage.copilotKitUserMessage {\n background: var(--copilot-kit-primary-color);\n color: var(--copilot-kit-contrast-color);\n margin-left: auto;\n white-space: pre-wrap;\n line-height: 1.75;\n font-size: 1rem;\n}\n\n.copilotKitMessage.copilotKitAssistantMessage {\n background: transparent;\n margin-right: auto;\n padding-left: 0;\n position: relative;\n max-width: 100%;\n color: var(--copilot-kit-secondary-contrast-color);\n}\n\n.copilotKitMessage.copilotKitAssistantMessage .copilotKitMessageControls {\n position: absolute;\n left: 0;\n display: flex;\n gap: 1rem;\n opacity: 0;\n transition: opacity 0.2s ease;\n padding: 5px 0 0 0;\n}\n\n.copilotKitMessageControls.currentMessage {\n opacity: 1 !important;\n}\n\n.copilotKitMessage.copilotKitAssistantMessage:hover .copilotKitMessageControls {\n opacity: 1;\n}\n\n/* Always show controls on mobile */\n@media (max-width: 768px) {\n .copilotKitMessage.copilotKitAssistantMessage .copilotKitMessageControls {\n opacity: 1;\n }\n}\n\n.copilotKitMessageControlButton {\n width: 20px;\n height: 20px;\n display: flex;\n align-items: center;\n border-radius: 0.5rem;\n justify-content: center;\n color: var(--copilot-kit-primary-color);\n cursor: pointer;\n transition: all 0.2s ease;\n padding: 0;\n z-index: 10;\n margin: 0;\n background: transparent;\n border: none;\n}\n\n.copilotKitMessageControlButton:hover {\n color: color-mix(in srgb, var(--copilot-kit-primary-color) 80%, black);\n transform: scale(1.05);\n}\n\n.copilotKitMessageControlButton:active {\n color: color-mix(in srgb, var(--copilot-kit-primary-color) 80%, black);\n transform: scale(1.05);\n}\n\n.copilotKitMessageControlButton.active {\n background-color: var(--copilot-kit-primary-color);\n color: var(--copilot-kit-contrast-color);\n}\n\n.copilotKitMessageControlButton.active:hover {\n background-color: color-mix(\n in srgb,\n var(--copilot-kit-primary-color) 90%,\n black\n );\n color: var(--copilot-kit-contrast-color);\n}\n\n.copilotKitMessageControlButton svg {\n width: 1rem;\n height: 1rem;\n display: block;\n pointer-events: none;\n}\n\n.copilotKitMessage.copilotKitAssistantMessage\n + .copilotKitMessage.copilotKitUserMessage {\n margin-top: 1.5rem;\n}\n\n.copilotKitCustomAssistantMessage {\n margin-top: 1.5rem;\n margin-bottom: 1.5rem;\n}\n\n.copilotKitMessage .inProgressLabel {\n margin-left: 10px;\n opacity: 0.7;\n}\n\n@keyframes copilotKitSpinAnimation {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n\n.copilotKitSpinner {\n display: inline-block;\n width: 16px;\n height: 16px;\n border: 2px solid var(--copilot-kit-contrast-color);\n border-radius: 50%;\n border-top-color: var(--copilot-kit-primary-color);\n animation: copilotKitSpinAnimation 1s linear infinite;\n}\n\n@keyframes copilotKitActivityDotAnimation {\n 0%,\n 80%,\n 100% {\n transform: scale(0.5);\n opacity: 0.5;\n }\n 40% {\n transform: scale(1);\n opacity: 1;\n }\n}\n\n.copilotKitActivityDot {\n display: inline-block;\n width: 6px;\n height: 6px;\n border-radius: 50%;\n background-color: var(--copilot-kit-primary-color);\n animation: copilotKitActivityDotAnimation 1.4s infinite ease-in-out both;\n}\n\n/* Image Rendering Styles */\n.copilotKitImageRendering {\n display: flex;\n flex-direction: column;\n gap: 8px;\n}\n\n.copilotKitImageRenderingImage {\n max-width: 80px;\n max-height: 80px;\n width: auto;\n height: auto;\n object-fit: cover;\n border-radius: 12px;\n background-color: var(--copilot-kit-input-background-color);\n box-shadow: var(--copilot-kit-shadow-sm);\n cursor: pointer;\n}\n\n.copilotKitImageRenderingContent {\n margin-top: 8px;\n padding: 0 16px;\n font-size: 0.875rem;\n line-height: 1.5;\n color: var(--copilot-kit-secondary-contrast-color);\n}\n\n/* Image Error State Styles */\n.copilotKitImageRenderingError {\n display: flex;\n flex-direction: column;\n gap: 8px;\n padding: 12px;\n border: 1px solid var(--copilot-kit-separator-color);\n border-radius: 8px;\n background-color: var(--copilot-kit-input-background-color);\n}\n\n.copilotKitImageRenderingErrorMessage {\n display: flex;\n align-items: center;\n gap: 8px;\n padding: 8px 12px;\n background-color: var(--copilot-kit-error-background);\n border: 1px solid var(--copilot-kit-error-border);\n border-radius: 6px;\n color: var(--copilot-kit-error-text);\n font-size: 0.875rem;\n font-weight: 500;\n}\n\n.copilotKitImageRenderingErrorMessage::before {\n content: \"⚠️\";\n font-size: 1rem;\n}\n","/* Attachment Queue */\n.copilotKitAttachmentQueue {\n display: flex;\n flex-wrap: wrap;\n gap: 8px;\n margin: 8px;\n padding: 8px;\n}\n\n.copilotKitAttachmentQueueItem {\n position: relative;\n display: inline-flex;\n border-radius: 8px;\n overflow: hidden;\n border: 1px solid var(--copilot-kit-separator-color);\n background: var(--copilot-kit-input-background-color);\n}\n\n.copilotKitAttachmentQueueItem--image,\n.copilotKitAttachmentQueueItem--video {\n width: 72px;\n height: 72px;\n}\n\n.copilotKitAttachmentQueueItem--audio {\n min-width: 200px;\n max-width: 280px;\n flex-direction: column;\n padding: 4px;\n}\n\n.copilotKitAttachmentQueueItem--document {\n padding: 8px 12px;\n max-width: 200px;\n}\n\n.copilotKitAttachmentQueueOverlay {\n position: absolute;\n inset: 0;\n display: flex;\n align-items: center;\n justify-content: center;\n background: rgba(0, 0, 0, 0.4);\n z-index: 1;\n}\n\n.copilotKitAttachmentQueueSpinner {\n width: 20px;\n height: 20px;\n border: 2px solid rgba(255, 255, 255, 0.3);\n border-top-color: white;\n border-radius: 50%;\n animation: copilotKitSpin 0.6s linear infinite;\n}\n\n@keyframes copilotKitSpin {\n to {\n transform: rotate(360deg);\n }\n}\n\n.copilotKitAttachmentQueueRemoveButton {\n position: absolute;\n top: 4px;\n right: 4px;\n background: rgba(0, 0, 0, 0.6);\n color: white;\n border: none;\n border-radius: 50%;\n width: 20px;\n height: 20px;\n display: flex;\n align-items: center;\n justify-content: center;\n cursor: pointer;\n font-size: 10px;\n padding: 0;\n z-index: 2;\n line-height: 1;\n}\n\n.copilotKitAttachmentQueueRemoveButton:hover {\n background: rgba(0, 0, 0, 0.8);\n}\n\n.copilotKitAttachmentQueuePreviewPlaceholder {\n width: 100%;\n height: 100%;\n background: var(--copilot-kit-input-background-color);\n}\n\n.copilotKitAttachmentQueuePreviewImage {\n width: 100%;\n height: 100%;\n object-fit: cover;\n}\n\n/* Audio preview in queue */\n.copilotKitAttachmentQueuePreviewAudio {\n display: flex;\n flex-direction: column;\n gap: 4px;\n width: 100%;\n}\n\n.copilotKitAttachmentQueuePreviewAudio audio {\n width: 100%;\n height: 32px;\n}\n\n/* Video preview in queue */\n.copilotKitAttachmentQueuePreviewVideo {\n width: 100%;\n height: 100%;\n}\n\n/* Document preview in queue */\n.copilotKitAttachmentQueuePreviewDocument {\n display: flex;\n align-items: center;\n gap: 8px;\n}\n\n.copilotKitAttachmentQueueDocIcon {\n width: 32px;\n height: 32px;\n border-radius: 6px;\n background: var(--copilot-kit-primary-color, #6366f1);\n color: white;\n display: flex;\n align-items: center;\n justify-content: center;\n font-size: 10px;\n font-weight: 600;\n flex-shrink: 0;\n}\n\n.copilotKitAttachmentQueueDocInfo {\n display: flex;\n flex-direction: column;\n gap: 2px;\n min-width: 0;\n}\n\n.copilotKitAttachmentQueueFilename {\n font-size: 12px;\n font-weight: 500;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.copilotKitAttachmentQueueFileSize {\n font-size: 11px;\n color: var(--copilot-kit-secondary-contrast-color);\n}\n\n/* Drag-and-drop overlay */\n.copilotKitDragOver {\n outline: 2px dashed var(--copilot-kit-primary-color, #6366f1);\n outline-offset: -4px;\n border-radius: 8px;\n}\n\n/* Attachment Rendering in Messages */\n.copilotKitAttachment {\n display: inline-flex;\n flex-direction: column;\n gap: 4px;\n max-width: 100%;\n}\n\n.copilotKitAttachmentAudio audio {\n max-width: 300px;\n width: 100%;\n height: 40px;\n}\n\n.copilotKitAttachmentVideo video {\n max-width: 400px;\n width: 100%;\n border-radius: 8px;\n}\n\n.copilotKitAttachmentDocument {\n display: inline-flex;\n align-items: center;\n gap: 8px;\n padding: 8px 12px;\n border: 1px solid var(--copilot-kit-separator-color);\n border-radius: 8px;\n background: var(--copilot-kit-input-background-color);\n}\n\n.copilotKitAttachmentDocIcon {\n width: 28px;\n height: 28px;\n border-radius: 6px;\n background: var(--copilot-kit-primary-color, #6366f1);\n color: white;\n display: flex;\n align-items: center;\n justify-content: center;\n font-size: 9px;\n font-weight: 600;\n flex-shrink: 0;\n}\n\n.copilotKitAttachmentDocInfo {\n display: flex;\n flex-direction: column;\n gap: 1px;\n min-width: 0;\n}\n\n.copilotKitAttachmentDocName {\n font-size: 13px;\n font-weight: 500;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.copilotKitAttachmentDocMeta {\n font-size: 11px;\n color: var(--copilot-kit-secondary-contrast-color);\n}\n",".copilotKitWindow {\n position: fixed;\n inset: 0px;\n transform-origin: bottom;\n border-color: rgb(229 231 235);\n background-color: var(--copilot-kit-background-color);\n border-radius: 0.75rem;\n box-shadow: rgba(0, 0, 0, 0.16) 0px 5px 40px;\n flex-direction: column;\n transition:\n opacity 100ms ease-out,\n transform 200ms ease-out;\n opacity: 0;\n transform: scale(0.95) translateY(20px);\n display: flex;\n pointer-events: none;\n}\n\n:where(.copilotKitSidebar) .copilotKitWindow {\n border-radius: 0;\n opacity: 1;\n transform: translateX(100%);\n}\n\n.copilotKitWindow.open {\n opacity: 1;\n transform: scale(1) translateY(0);\n pointer-events: auto;\n}\n\n:where(.copilotKitSidebar) .copilotKitWindow.open {\n transform: translateX(0);\n}\n\n.copilotKitChatBody {\n flex: 1 1 0%;\n display: flex;\n flex-direction: column;\n min-height: 0;\n}\n\n@media (min-width: 640px) {\n .copilotKitWindow {\n transform-origin: bottom right;\n bottom: 5rem;\n right: 1rem;\n top: auto;\n left: auto;\n border-width: 0px;\n margin-bottom: 1rem;\n width: 24rem;\n height: 600px;\n min-height: 200px;\n max-height: calc(100% - 6rem);\n }\n\n :where(.copilotKitSidebar) .copilotKitWindow {\n bottom: 0;\n right: 0;\n top: auto;\n left: auto;\n width: 28rem;\n min-height: 100%;\n margin-bottom: 0;\n max-height: none;\n }\n}\n",".copilotKitActivityDot1 {\n animation: copilotKitActivityDotsAnimation 1.05s infinite;\n}\n.copilotKitActivityDot2 {\n animation-delay: 0.1s;\n}\n.copilotKitActivityDot3 {\n animation-delay: 0.2s;\n}\n@keyframes copilotKitActivityDotsAnimation {\n 0%,\n 57.14% {\n animation-timing-function: cubic-bezier(0.33, 0.66, 0.66, 1);\n transform: translate(0);\n }\n 28.57% {\n animation-timing-function: cubic-bezier(0.33, 0, 0.66, 0.33);\n transform: translateY(-6px);\n }\n 100% {\n transform: translate(0);\n }\n}\n\n@keyframes copilotKitSpinAnimation {\n to {\n transform: rotate(360deg);\n }\n}\n\n@keyframes copilotKitPulseAnimation {\n 50% {\n opacity: 0.5;\n }\n}\n","h1.copilotKitMarkdownElement,\nh2.copilotKitMarkdownElement,\nh3.copilotKitMarkdownElement,\nh4.copilotKitMarkdownElement,\nh5.copilotKitMarkdownElement,\nh6.copilotKitMarkdownElement {\n font-weight: bold;\n line-height: 1.2;\n}\n\nh1.copilotKitMarkdownElement:not(:last-child),\nh2.copilotKitMarkdownElement:not(:last-child),\nh3.copilotKitMarkdownElement:not(:last-child),\nh4.copilotKitMarkdownElement:not(:last-child),\nh5.copilotKitMarkdownElement:not(:last-child),\nh6.copilotKitMarkdownElement:not(:last-child) {\n margin-bottom: 1rem;\n}\n\nh1.copilotKitMarkdownElement {\n font-size: 1.5em;\n}\n\nh2.copilotKitMarkdownElement {\n font-size: 1.25em;\n font-weight: 600;\n}\n\nh3.copilotKitMarkdownElement {\n font-size: 1.1em;\n}\n\nh4.copilotKitMarkdownElement {\n font-size: 1em;\n}\n\nh5.copilotKitMarkdownElement {\n font-size: 0.9em;\n}\n\nh6.copilotKitMarkdownElement {\n font-size: 0.8em;\n}\n\na.copilotKitMarkdownElement {\n color: blue;\n text-decoration: underline;\n}\n\n.copilotKitParagraph {\n padding: 0px;\n margin: 0px;\n line-height: 1.75;\n font-size: 1rem;\n}\n\n.copilotKitParagraph:not(:last-child),\npre.copilotKitMarkdownElement:not(:last-child),\nol.copilotKitMarkdownElement:not(:last-child),\nul.copilotKitMarkdownElement:not(:last-child),\nblockquote.copilotKitMarkdownElement:not(:last-child) {\n margin-bottom: 1.25em;\n}\n\nblockquote.copilotKitMarkdownElement {\n border-color: rgb(142, 142, 160);\n border-left-width: 2px;\n border-left-style: solid;\n line-height: 1.2;\n padding-left: 10px;\n}\n\nblockquote.copilotKitMarkdownElement .copilotKitParagraph {\n padding: 0.7em 0;\n}\n\nul.copilotKitMarkdownElement {\n list-style-type: disc;\n padding-left: 20px;\n overflow: visible;\n}\n\nli.copilotKitMarkdownElement {\n list-style-type: inherit;\n list-style-position: outside;\n margin-left: 0;\n padding-left: 0;\n position: relative;\n overflow: visible;\n}\n\n.copilotKitCodeBlock {\n position: relative;\n width: 100%;\n background-color: rgb(9 9 11);\n border-radius: 0.375rem;\n}\n\n.copilotKitCodeBlockToolbar {\n display: flex;\n width: 100%;\n align-items: center;\n justify-content: space-between;\n background-color: rgb(39 39 42);\n padding-left: 1rem;\n padding-top: 0.09rem;\n padding-bottom: 0.09rem;\n color: rgb(228, 228, 228);\n border-top-left-radius: 0.375rem;\n border-top-right-radius: 0.375rem;\n font-family: sans-serif;\n}\n\n.copilotKitCodeBlockToolbarLanguage {\n font-size: 0.75rem;\n line-height: 1rem;\n text-transform: lowercase;\n}\n\n.copilotKitCodeBlockToolbarButtons {\n display: flex;\n align-items: center;\n margin-right: 0.25rem;\n margin-left: 0.25rem;\n}\n\n.copilotKitCodeBlockToolbarButton {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n border-radius: 0.375rem;\n font-size: 0.875rem;\n line-height: 1.25rem;\n font-weight: 500;\n height: 2.5rem;\n padding: 3px;\n margin: 2px;\n}\n\n.copilotKitCodeBlockToolbarButton:hover {\n background-color: rgb(55, 55, 58);\n}\n\n.copilotKitInlineCode {\n background-color: var(--copilot-kit-input-background-color);\n border: 1px solid var(--copilot-kit-separator-color);\n border-radius: 0.375rem;\n padding: 0.05rem 0.4rem;\n font-size: 15px;\n}\n",".copilotKitMessages footer .suggestions {\n display: flex;\n flex-wrap: wrap;\n gap: 6px;\n}\n\n.copilotKitMessages footer h6 {\n font-weight: 500;\n font-size: 0.7rem;\n margin-bottom: 8px;\n}\n\n.copilotKitMessages footer .suggestions .suggestion {\n padding: 6px 10px;\n font-size: 0.7rem;\n border-radius: 15px;\n border: 1px solid var(--copilot-kit-muted-color);\n color: var(--copilot-kit-secondary-contrast-color);\n box-shadow:\n 0 5px 5px 0px rgba(0, 0, 0, 0.01),\n 0 2px 3px 0px rgba(0, 0, 0, 0.02);\n}\n\n.copilotKitMessages footer .suggestions .suggestion.loading {\n padding: 0;\n font-size: 0.7rem;\n border: none;\n color: var(--copilot-kit-secondary-contrast-color);\n}\n\n.copilotKitMessages footer .suggestions button {\n transition: transform 0.3s ease;\n}\n\n.copilotKitMessages footer .suggestions button:not(:disabled):hover {\n transform: scale(1.03);\n}\n\n.copilotKitMessages footer .suggestions button:disabled {\n cursor: wait;\n}\n\n.copilotKitMessages footer .suggestions button svg {\n margin-right: 6px;\n}\n",".copilotKitChat {\n z-index: 30;\n line-height: 1.5;\n -webkit-text-size-adjust: 100%;\n -moz-tab-size: 4;\n -o-tab-size: 4;\n tab-size: 4;\n background: var(--copilot-kit-background-color);\n font-family:\n ui-sans-serif,\n system-ui,\n -apple-system,\n BlinkMacSystemFont,\n \"Segoe UI\",\n Roboto,\n \"Helvetica Neue\",\n Arial,\n \"Noto Sans\",\n sans-serif,\n \"Apple Color Emoji\",\n \"Segoe UI Emoji\",\n \"Segoe UI Symbol\",\n \"Noto Color Emoji\";\n font-feature-settings: normal;\n font-variation-settings: normal;\n touch-action: manipulation;\n display: flex;\n flex-direction: column;\n /* height: 100%; */\n}\n\n.copilotKitChat svg {\n display: inline-block;\n vertical-align: middle;\n}\n\n.copilotKitChat .copilotKitMessages {\n flex-grow: 1;\n}\n",".copilotKitDevConsole {\n display: flex;\n align-items: center;\n gap: 5px;\n margin: 0 15px;\n}\n\n.copilotKitDevConsole.copilotKitDevConsoleWarnOutdated {\n background-color: var(--copilot-kit-dev-console-bg);\n}\n\n.copilotKitDevConsole .copilotKitVersionInfo {\n display: flex;\n position: absolute;\n bottom: -25px;\n padding: 3px 5px;\n left: 0;\n width: 100%;\n justify-content: center;\n gap: 10px;\n font-size: 0.8rem;\n align-items: center;\n background: #ebb305;\n}\n\n.copilotKitDevConsole .copilotKitVersionInfo button {\n font-size: 11px;\n font-weight: normal;\n font-family: monospace;\n background-color: var(--copilot-kit-dev-console-bg);\n border: 1px solid #979797;\n padding: 1px 12px;\n padding-left: 5px;\n border-radius: 4px;\n display: inline-block;\n text-align: left;\n overflow: hidden;\n white-space: nowrap;\n width: 260px;\n text-overflow: ellipsis;\n}\n\n.copilotKitDevConsole .copilotKitVersionInfo aside {\n display: inline;\n font-weight: normal;\n color: #7f7a7a;\n margin-left: 5px;\n}\n\n.copilotKitDevConsole .copilotKitVersionInfo svg {\n margin-left: 3px;\n margin-top: -3px;\n}\n\n.copilotKitDevConsole .copilotKitDebugMenuTriggerButton {\n font-size: 11px;\n font-weight: bold;\n display: flex;\n padding: 0 10px;\n height: 30px;\n background-color: transparent;\n border: 1px solid var(--copilot-kit-muted-color);\n border-radius: 20px;\n align-items: center;\n justify-content: center;\n outline: none;\n}\n\n.copilotKitDebugMenuTriggerButton.compact {\n width: 35px;\n color: var(--copilot-kit-dev-console-bg);\n justify-content: center;\n outline: none;\n font-size: 8px;\n}\n\n.copilotKitDevConsole .copilotKitDebugMenuTriggerButton:hover {\n background-color: color-mix(\n in srgb,\n var(--copilot-kit-dev-console-bg) 85%,\n black\n );\n color: var(--copilot-kit-dev-console-text);\n}\n\n.dark .copilotKitDevConsole .copilotKitDebugMenuTriggerButton,\nhtml.dark .copilotKitDevConsole .copilotKitDebugMenuTriggerButton,\nbody.dark .copilotKitDevConsole .copilotKitDebugMenuTriggerButton,\n[data-theme=\"dark\"] .copilotKitDevConsole .copilotKitDebugMenuTriggerButton,\nhtml[style*=\"color-scheme: dark\"]\n .copilotKitDevConsole\n .copilotKitDebugMenuTriggerButton,\nbody[style*=\"color-scheme: dark\"]\n .copilotKitDevConsole\n .copilotKitDebugMenuTriggerButton {\n color: white;\n}\n\n.dark .copilotKitDevConsole .copilotKitDebugMenuTriggerButton:hover,\nhtml.dark .copilotKitDevConsole .copilotKitDebugMenuTriggerButton:hover,\nbody.dark .copilotKitDevConsole .copilotKitDebugMenuTriggerButton:hover,\n[data-theme=\"dark\"]\n .copilotKitDevConsole\n .copilotKitDebugMenuTriggerButton:hover,\nhtml[style*=\"color-scheme: dark\"]\n .copilotKitDevConsole\n .copilotKitDebugMenuTriggerButton:hover,\nbody[style*=\"color-scheme: dark\"]\n .copilotKitDevConsole\n .copilotKitDebugMenuTriggerButton:hover {\n background-color: color-mix(\n in srgb,\n var(--copilot-kit-dev-console-bg) 20%,\n black\n );\n}\n\n.copilotKitDevConsole .copilotKitDebugMenuTriggerButton > svg {\n margin-left: 10px;\n}\n\n.copilotKitDebugMenu {\n --copilot-kit-dev-console-border: color-mix(\n in srgb,\n var(--copilot-kit-dev-console-bg) 80%,\n black\n );\n margin-top: 2px;\n border-radius: 6px;\n background-color: var(--copilot-kit-dev-console-bg);\n border: 1px solid var(--copilot-kit-dev-console-border);\n padding: 0.25rem;\n outline: none;\n font-size: 13px;\n}\n\n.copilotKitDebugMenuItem {\n padding-top: 3px;\n padding-bottom: 3px;\n padding-left: 10px;\n padding-right: 10px;\n display: block;\n width: 100%;\n text-align: left;\n background: none;\n border: none;\n cursor: pointer;\n color: var(--copilot-kit-dev-console-text);\n}\n\n.copilotKitDebugMenuItem:hover {\n background-color: color-mix(\n in srgb,\n var(--copilot-kit-dev-console-bg) 95%,\n black\n );\n border-radius: 4px;\n}\n\n.copilotKitDebugMenu[data-closed] {\n transform: scale(0.95); /* data-[closed]:scale-95 */\n opacity: 0; /* data-[closed]:opacity-0 */\n}\n\n.copilotKitDebugMenu hr {\n height: 1px;\n border: none; /* Remove 3D look */\n background-color: var(--copilot-kit-dev-console-border);\n margin: 0.25rem;\n}\n\n.copilotKitHelpModal {\n background-color: var(--copilot-kit-dev-console-bg);\n color: var(--copilot-kit-dev-console-text);\n}\n\n.copilotKitHelpItemButton {\n display: block;\n text-align: center;\n width: 100%;\n padding: 4px 6px;\n border-radius: 15px;\n font-size: 0.8rem;\n border: 1px solid var(--copilot-kit-muted-color);\n color: var(--copilot-kit-dev-console-text);\n box-shadow:\n 0 5px 5px 0px rgba(0, 0, 0, 0.01),\n 0 2px 3px 0px rgba(0, 0, 0, 0.02);\n background-color: var(--copilot-kit-dev-console-bg);\n}\n.copilotKitHelpItemButton:hover {\n background-color: color-mix(\n in srgb,\n var(--copilot-kit-dev-console-bg) 95%,\n black\n );\n}\n","/* Default styles for the ResponseRenderer component */\n\n.copilotkit-response {\n text-align: right;\n}\n\n.copilotkit-response-content {\n margin-bottom: 0.5rem;\n font-size: 0.875rem;\n color: #4b5563;\n background-color: #f9fafb;\n padding: 0.5rem;\n border-radius: 0.25rem;\n text-align: left;\n}\n\n.copilotkit-response-actions {\n display: inline-flex;\n flex-direction: column;\n align-items: flex-end;\n}\n\n.copilotkit-response-label {\n font-size: 0.75rem;\n color: #6b7280;\n margin-bottom: 0.25rem;\n display: flex;\n align-items: center;\n}\n\n.copilotkit-toggle-button {\n margin-right: 0.25rem;\n background: none;\n border: none;\n padding: 0;\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.copilotkit-icon {\n height: 0.75rem;\n width: 0.75rem;\n color: #6b7280;\n}\n\n.copilotkit-response-buttons {\n display: flex;\n gap: 0.5rem;\n}\n\n.copilotkit-response-button {\n padding: 0.25rem 0.5rem;\n font-size: 0.75rem;\n background-color: #f3f4f6;\n color: #4b5563;\n border-radius: 0.25rem;\n border: none;\n cursor: pointer;\n transition: background-color 0.2s;\n}\n\n.copilotkit-response-button:hover {\n background-color: #e5e7eb;\n}\n\n.copilotkit-response-button:focus {\n outline: none;\n}\n\n.copilotkit-response-completed-feedback {\n background-color: #f9fafb;\n padding: 0.5rem;\n border-radius: 0.375rem;\n display: inline-flex;\n align-items: center;\n}\n\n.copilotkit-response-completed-feedback span {\n color: #4b5563;\n font-size: 0.75rem;\n font-weight: 500;\n}\n\n/* DefaultStateRenderer styles */\n\n.copilotkit-state {\n font-size: 0.875rem;\n margin-bottom: 1rem;\n}\n\n.copilotkit-state-header {\n display: flex;\n align-items: center;\n gap: 0.25rem;\n cursor: pointer;\n user-select: none;\n margin-bottom: 0.25rem;\n}\n\n.copilotkit-state-label {\n color: #4b5563;\n font-size: 0.875rem;\n}\n\n.copilotkit-state-label-loading {\n display: inline-flex;\n align-items: center;\n animation: pulse 1.5s infinite;\n}\n\n.copilotkit-state-content {\n padding-left: 1rem;\n max-height: 250px;\n overflow: auto;\n padding-top: 0.375rem;\n border-left: 1px solid #e5e7eb;\n margin-left: 0.375rem;\n}\n\n.copilotkit-state-item {\n padding: 0.25rem 0;\n margin-bottom: 0.25rem;\n transition: all 0.3s ease;\n}\n\n.copilotkit-state-item-newest {\n animation: appear 0.5s ease-out;\n}\n\n.copilotkit-state-item-header {\n font-size: 0.75rem;\n opacity: 0.7;\n}\n\n.copilotkit-state-item-thought {\n margin-top: 0.125rem;\n font-size: 0.75rem;\n opacity: 0.8;\n}\n\n.copilotkit-state-item-result {\n margin-top: 0.125rem;\n font-size: 0.75rem;\n}\n\n.copilotkit-state-item-description {\n margin-top: 0.125rem;\n font-size: 0.75rem;\n opacity: 0.8;\n}\n\n.copilotkit-state-empty {\n padding: 0.25rem 0;\n font-size: 0.75rem;\n opacity: 0.7;\n}\n\n.copilotkit-skeleton {\n padding: 0.125rem 0;\n animation: pulse 1.5s infinite;\n}\n\n.copilotkit-skeleton-header {\n display: flex;\n justify-content: space-between;\n}\n\n.copilotkit-skeleton-title {\n height: 0.625rem;\n width: 4rem;\n background-color: #e5e7eb;\n border-radius: 0.25rem;\n}\n\n.copilotkit-skeleton-subtitle {\n height: 0.5rem;\n width: 2rem;\n background-color: #e5e7eb;\n border-radius: 0.25rem;\n}\n\n.copilotkit-skeleton-content {\n margin-top: 0.125rem;\n height: 1.5rem;\n background-color: #e5e7eb;\n border-radius: 0.25rem;\n}\n\n.copilotkit-loader {\n animation: spin 1.5s linear infinite;\n}\n\n.copilotkit-spinner {\n animation: spin 1.5s linear infinite;\n}\n\n/* Animations */\n@keyframes appear {\n 0% {\n opacity: 0;\n transform: translateY(8px);\n }\n 100% {\n opacity: 1;\n transform: translateY(0);\n }\n}\n\n@keyframes pulse {\n 0%,\n 100% {\n opacity: 0.4;\n }\n 50% {\n opacity: 1;\n }\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n\n/* Dark mode styles */\n@media (prefers-color-scheme: dark) {\n /* DefaultResponseRenderer dark styles */\n .copilotkit-response-content {\n color: #9ca3af;\n background-color: #1f2937;\n }\n\n .copilotkit-response-label {\n color: #9ca3af;\n }\n\n .copilotkit-icon {\n color: #9ca3af;\n }\n\n .copilotkit-response-button {\n background-color: #1f2937;\n color: #d1d5db;\n }\n\n .copilotkit-response-button:hover {\n background-color: #374151;\n }\n\n .copilotkit-response-completed-feedback {\n background-color: #1f2937;\n }\n\n .copilotkit-response-completed-feedback span {\n color: #e5e7eb;\n }\n\n /* DefaultStateRenderer dark styles */\n .copilotkit-state-label {\n color: #d1d5db;\n }\n\n .copilotkit-state-content {\n border-left-color: #374151;\n }\n\n .copilotkit-skeleton-title,\n .copilotkit-skeleton-subtitle,\n .copilotkit-skeleton-content {\n background-color: #374151;\n }\n}\n","@import \"./css/colors.css\";\n@import \"./css/popup.css\";\n@import \"./css/sidebar.css\";\n@import \"./css/button.css\";\n@import \"./css/header.css\";\n@import \"./css/input.css\";\n@import \"./css/messages.css\";\n@import \"./css/attachments.css\";\n@import \"./css/window.css\";\n@import \"./css/animations.css\";\n@import \"./css/markdown.css\";\n@import \"./css/suggestions.css\";\n@import \"./css/panel.css\";\n@import \"./css/console.css\";\n@import \"./css/crew.css\";\n"],"mappings":"AAAA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;ACjFA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;ACjCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;ACxEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AClEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;ACnEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AC1JA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AChQA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AClOA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AClEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AClCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;ACrJA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AC5CA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;ACtCA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;ACpMA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA"}
|
package/dist/index.d.cts
CHANGED
|
@@ -93,13 +93,19 @@ interface MessagesProps {
|
|
|
93
93
|
*/
|
|
94
94
|
onCopy?: (message: string) => void;
|
|
95
95
|
/**
|
|
96
|
-
* Callback function for thumbs up feedback
|
|
96
|
+
* Callback function for thumbs up feedback.
|
|
97
|
+
*
|
|
98
|
+
* `isActive` reports the feedback state the click is transitioning to:
|
|
99
|
+
* `true` when thumbs up is being applied, `false` when it is being
|
|
100
|
+
* retracted. It is optional so existing one-argument handlers keep working.
|
|
97
101
|
*/
|
|
98
|
-
onThumbsUp?: (message: Message) => void;
|
|
102
|
+
onThumbsUp?: (message: Message, isActive?: boolean) => void;
|
|
99
103
|
/**
|
|
100
|
-
* Callback function for thumbs down feedback
|
|
104
|
+
* Callback function for thumbs down feedback.
|
|
105
|
+
*
|
|
106
|
+
* See `onThumbsUp` for the meaning of `isActive`.
|
|
101
107
|
*/
|
|
102
|
-
onThumbsDown?: (message: Message) => void;
|
|
108
|
+
onThumbsDown?: (message: Message, isActive?: boolean) => void;
|
|
103
109
|
/**
|
|
104
110
|
* Map of message IDs to their feedback state
|
|
105
111
|
*/
|
|
@@ -170,13 +176,19 @@ interface AssistantMessageProps {
|
|
|
170
176
|
*/
|
|
171
177
|
onCopy?: (message: string) => void;
|
|
172
178
|
/**
|
|
173
|
-
* Callback function for thumbs up feedback
|
|
179
|
+
* Callback function for thumbs up feedback.
|
|
180
|
+
*
|
|
181
|
+
* `isActive` reports the feedback state the click is transitioning to:
|
|
182
|
+
* `true` when thumbs up is being applied, `false` when it is being
|
|
183
|
+
* retracted. It is optional so existing one-argument handlers keep working.
|
|
174
184
|
*/
|
|
175
|
-
onThumbsUp?: (message: Message) => void;
|
|
185
|
+
onThumbsUp?: (message: Message, isActive?: boolean) => void;
|
|
176
186
|
/**
|
|
177
|
-
* Callback function for thumbs down feedback
|
|
187
|
+
* Callback function for thumbs down feedback.
|
|
188
|
+
*
|
|
189
|
+
* See `onThumbsUp` for the meaning of `isActive`.
|
|
178
190
|
*/
|
|
179
|
-
onThumbsDown?: (message: Message) => void;
|
|
191
|
+
onThumbsDown?: (message: Message, isActive?: boolean) => void;
|
|
180
192
|
/**
|
|
181
193
|
* The feedback state for this message ("thumbsUp" or "thumbsDown")
|
|
182
194
|
*/
|
|
@@ -251,13 +263,19 @@ interface RenderMessageProps {
|
|
|
251
263
|
*/
|
|
252
264
|
onCopy?: (message: string) => void;
|
|
253
265
|
/**
|
|
254
|
-
* Callback function for thumbs up feedback
|
|
266
|
+
* Callback function for thumbs up feedback.
|
|
267
|
+
*
|
|
268
|
+
* `isActive` reports the feedback state the click is transitioning to:
|
|
269
|
+
* `true` when thumbs up is being applied, `false` when it is being
|
|
270
|
+
* retracted. It is optional so existing one-argument handlers keep working.
|
|
255
271
|
*/
|
|
256
|
-
onThumbsUp?: (message: Message) => void;
|
|
272
|
+
onThumbsUp?: (message: Message, isActive?: boolean) => void;
|
|
257
273
|
/**
|
|
258
|
-
* Callback function for thumbs down feedback
|
|
274
|
+
* Callback function for thumbs down feedback.
|
|
275
|
+
*
|
|
276
|
+
* See `onThumbsUp` for the meaning of `isActive`.
|
|
259
277
|
*/
|
|
260
|
-
onThumbsDown?: (message: Message) => void;
|
|
278
|
+
onThumbsDown?: (message: Message, isActive?: boolean) => void;
|
|
261
279
|
/**
|
|
262
280
|
* Map of message IDs to their feedback state
|
|
263
281
|
*/
|
|
@@ -506,13 +524,19 @@ interface CopilotChatProps {
|
|
|
506
524
|
*/
|
|
507
525
|
onCopy?: (message: string) => void;
|
|
508
526
|
/**
|
|
509
|
-
* A callback function for thumbs up feedback
|
|
527
|
+
* A callback function for thumbs up feedback.
|
|
528
|
+
*
|
|
529
|
+
* `isActive` reports the feedback state the click is transitioning to:
|
|
530
|
+
* `true` when thumbs up is being applied, `false` when it is being
|
|
531
|
+
* retracted. It is optional so existing one-argument handlers keep working.
|
|
510
532
|
*/
|
|
511
|
-
onThumbsUp?: (message: Message) => void;
|
|
533
|
+
onThumbsUp?: (message: Message, isActive?: boolean) => void;
|
|
512
534
|
/**
|
|
513
|
-
* A callback function for thumbs down feedback
|
|
535
|
+
* A callback function for thumbs down feedback.
|
|
536
|
+
*
|
|
537
|
+
* See `onThumbsUp` for the meaning of `isActive`.
|
|
514
538
|
*/
|
|
515
|
-
onThumbsDown?: (message: Message) => void;
|
|
539
|
+
onThumbsDown?: (message: Message, isActive?: boolean) => void;
|
|
516
540
|
/**
|
|
517
541
|
* A list of markdown components to render in assistant message.
|
|
518
542
|
* Useful when you want to render custom elements in the message (e.g a reference tag element)
|
package/dist/index.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/types/suggestions.ts","../src/components/chat/props.ts","../src/components/chat/ChatContext.tsx","../src/components/chat/Chat.tsx","../src/components/chat/Modal.tsx","../src/components/chat/Popup.tsx","../src/components/chat/Sidebar.tsx","../src/components/chat/Markdown.tsx","../src/components/chat/messages/AssistantMessage.tsx","../src/components/chat/messages/UserMessage.tsx","../src/components/chat/messages/ImageRenderer.tsx","../src/components/chat/Suggestions.tsx","../src/components/chat/Suggestion.tsx","../src/components/chat/attachment-utils.ts","../src/components/dev-console/console.tsx","../src/hooks/use-copilot-chat-suggestions.tsx","../src/types/css.ts"],"mappings":";;;;;;;UAAiB,qBAAA;EACf,KAAA;EACA,OAAA;EACA,OAAA;EACA,SAAA;EACA,SAAA;AAAA;;;AALF;;;AAAA,UCsBiB,yBAAA;EDrBf;;;ECyBA,aAAA,IAAiB,OAAA;EDrBjB;;;EC0BA,eAAA;;;AATF;EAcE,cAAA;;;;EAKA,oBAAA,IAAwB,SAAA;EAVxB;;;EAeA,eAAA,IAAmB,OAAA;EAAnB;;;EAKA,eAAA,IACE,SAAA,UACA,IAAA;EAAA;;;EAMF,aAAA;EAWuB;;;EANvB,aAAA;EASe;;;;EAHf,OAAA,IAAW,UAAA,EAAY,iBAAA;AAAA;AAAA,UAGR,WAAA;AAAA,UAEA,WAAA;EACf,mBAAA;EACA,gBAAA;EACA,QAAA;EACA,QAAA,GAAW,KAAA,CAAM,SAAA;AAAA;AAAA,UAGF,WAAA;AAAA,UAEA,gBAAA;EACf,KAAA;EACA,OAAA;EACA,OAAA;EACA,SAAA;EACA,OAAA,GAAU,OAAA;AAAA;AAAA,KAGA,aAAA,WACA,MAAA,mBAAyB,MAAA,kCAEvB,CAAA,GAAI,KAAA,CAAM,EAAA;EAAK,QAAA,GAAW,SAAA;AAAA,IAAc,CAAA,CAAE,CAAA;AAAA,UAGvC,aAAA;EACf,QAAA,EAAU,OAAA;EACV,UAAA;EACA,QAAA,GAAW,KAAA,CAAM,SAAA;EACjB,SAAA,GAAY,SAAA;EACZ,gBAAA,EAAkB,KAAA,CAAM,aAAA,CAAc,qBAAA;EACtC,WAAA,EAAa,KAAA,CAAM,aAAA,CAAc,gBAAA;EACjC,YAAA,GAAe,KAAA,CAAM,aAAA,CAAc,iBAAA;EACnC,aAAA,EAAe,KAAA,CAAM,aAAA,CAAc,kBAAA;EACnC,aAAA,EAAe,KAAA,CAAM,aAAA,CAAc,kBAAA;EAdA;;;EAmBnC,YAAA,IAAgB,SAAA;EAjBsC;;;EAsBtD,MAAA,IAAU,OAAA;EAxBV
|
|
1
|
+
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/types/suggestions.ts","../src/components/chat/props.ts","../src/components/chat/ChatContext.tsx","../src/components/chat/Chat.tsx","../src/components/chat/Modal.tsx","../src/components/chat/Popup.tsx","../src/components/chat/Sidebar.tsx","../src/components/chat/Markdown.tsx","../src/components/chat/messages/AssistantMessage.tsx","../src/components/chat/messages/UserMessage.tsx","../src/components/chat/messages/ImageRenderer.tsx","../src/components/chat/Suggestions.tsx","../src/components/chat/Suggestion.tsx","../src/components/chat/attachment-utils.ts","../src/components/dev-console/console.tsx","../src/hooks/use-copilot-chat-suggestions.tsx","../src/types/css.ts"],"mappings":"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"}
|
package/dist/index.d.mts
CHANGED
|
@@ -93,13 +93,19 @@ interface MessagesProps {
|
|
|
93
93
|
*/
|
|
94
94
|
onCopy?: (message: string) => void;
|
|
95
95
|
/**
|
|
96
|
-
* Callback function for thumbs up feedback
|
|
96
|
+
* Callback function for thumbs up feedback.
|
|
97
|
+
*
|
|
98
|
+
* `isActive` reports the feedback state the click is transitioning to:
|
|
99
|
+
* `true` when thumbs up is being applied, `false` when it is being
|
|
100
|
+
* retracted. It is optional so existing one-argument handlers keep working.
|
|
97
101
|
*/
|
|
98
|
-
onThumbsUp?: (message: Message) => void;
|
|
102
|
+
onThumbsUp?: (message: Message, isActive?: boolean) => void;
|
|
99
103
|
/**
|
|
100
|
-
* Callback function for thumbs down feedback
|
|
104
|
+
* Callback function for thumbs down feedback.
|
|
105
|
+
*
|
|
106
|
+
* See `onThumbsUp` for the meaning of `isActive`.
|
|
101
107
|
*/
|
|
102
|
-
onThumbsDown?: (message: Message) => void;
|
|
108
|
+
onThumbsDown?: (message: Message, isActive?: boolean) => void;
|
|
103
109
|
/**
|
|
104
110
|
* Map of message IDs to their feedback state
|
|
105
111
|
*/
|
|
@@ -170,13 +176,19 @@ interface AssistantMessageProps {
|
|
|
170
176
|
*/
|
|
171
177
|
onCopy?: (message: string) => void;
|
|
172
178
|
/**
|
|
173
|
-
* Callback function for thumbs up feedback
|
|
179
|
+
* Callback function for thumbs up feedback.
|
|
180
|
+
*
|
|
181
|
+
* `isActive` reports the feedback state the click is transitioning to:
|
|
182
|
+
* `true` when thumbs up is being applied, `false` when it is being
|
|
183
|
+
* retracted. It is optional so existing one-argument handlers keep working.
|
|
174
184
|
*/
|
|
175
|
-
onThumbsUp?: (message: Message) => void;
|
|
185
|
+
onThumbsUp?: (message: Message, isActive?: boolean) => void;
|
|
176
186
|
/**
|
|
177
|
-
* Callback function for thumbs down feedback
|
|
187
|
+
* Callback function for thumbs down feedback.
|
|
188
|
+
*
|
|
189
|
+
* See `onThumbsUp` for the meaning of `isActive`.
|
|
178
190
|
*/
|
|
179
|
-
onThumbsDown?: (message: Message) => void;
|
|
191
|
+
onThumbsDown?: (message: Message, isActive?: boolean) => void;
|
|
180
192
|
/**
|
|
181
193
|
* The feedback state for this message ("thumbsUp" or "thumbsDown")
|
|
182
194
|
*/
|
|
@@ -251,13 +263,19 @@ interface RenderMessageProps {
|
|
|
251
263
|
*/
|
|
252
264
|
onCopy?: (message: string) => void;
|
|
253
265
|
/**
|
|
254
|
-
* Callback function for thumbs up feedback
|
|
266
|
+
* Callback function for thumbs up feedback.
|
|
267
|
+
*
|
|
268
|
+
* `isActive` reports the feedback state the click is transitioning to:
|
|
269
|
+
* `true` when thumbs up is being applied, `false` when it is being
|
|
270
|
+
* retracted. It is optional so existing one-argument handlers keep working.
|
|
255
271
|
*/
|
|
256
|
-
onThumbsUp?: (message: Message) => void;
|
|
272
|
+
onThumbsUp?: (message: Message, isActive?: boolean) => void;
|
|
257
273
|
/**
|
|
258
|
-
* Callback function for thumbs down feedback
|
|
274
|
+
* Callback function for thumbs down feedback.
|
|
275
|
+
*
|
|
276
|
+
* See `onThumbsUp` for the meaning of `isActive`.
|
|
259
277
|
*/
|
|
260
|
-
onThumbsDown?: (message: Message) => void;
|
|
278
|
+
onThumbsDown?: (message: Message, isActive?: boolean) => void;
|
|
261
279
|
/**
|
|
262
280
|
* Map of message IDs to their feedback state
|
|
263
281
|
*/
|
|
@@ -506,13 +524,19 @@ interface CopilotChatProps {
|
|
|
506
524
|
*/
|
|
507
525
|
onCopy?: (message: string) => void;
|
|
508
526
|
/**
|
|
509
|
-
* A callback function for thumbs up feedback
|
|
527
|
+
* A callback function for thumbs up feedback.
|
|
528
|
+
*
|
|
529
|
+
* `isActive` reports the feedback state the click is transitioning to:
|
|
530
|
+
* `true` when thumbs up is being applied, `false` when it is being
|
|
531
|
+
* retracted. It is optional so existing one-argument handlers keep working.
|
|
510
532
|
*/
|
|
511
|
-
onThumbsUp?: (message: Message) => void;
|
|
533
|
+
onThumbsUp?: (message: Message, isActive?: boolean) => void;
|
|
512
534
|
/**
|
|
513
|
-
* A callback function for thumbs down feedback
|
|
535
|
+
* A callback function for thumbs down feedback.
|
|
536
|
+
*
|
|
537
|
+
* See `onThumbsUp` for the meaning of `isActive`.
|
|
514
538
|
*/
|
|
515
|
-
onThumbsDown?: (message: Message) => void;
|
|
539
|
+
onThumbsDown?: (message: Message, isActive?: boolean) => void;
|
|
516
540
|
/**
|
|
517
541
|
* A list of markdown components to render in assistant message.
|
|
518
542
|
* Useful when you want to render custom elements in the message (e.g a reference tag element)
|
package/dist/index.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.mts","names":[],"sources":["../src/types/suggestions.ts","../src/components/chat/props.ts","../src/components/chat/ChatContext.tsx","../src/components/chat/Chat.tsx","../src/components/chat/Modal.tsx","../src/components/chat/Popup.tsx","../src/components/chat/Sidebar.tsx","../src/components/chat/Markdown.tsx","../src/components/chat/messages/AssistantMessage.tsx","../src/components/chat/messages/UserMessage.tsx","../src/components/chat/messages/ImageRenderer.tsx","../src/components/chat/Suggestions.tsx","../src/components/chat/Suggestion.tsx","../src/components/chat/attachment-utils.ts","../src/components/dev-console/console.tsx","../src/hooks/use-copilot-chat-suggestions.tsx","../src/types/css.ts"],"mappings":";;;;;;;UAAiB,qBAAA;EACf,KAAA;EACA,OAAA;EACA,OAAA;EACA,SAAA;EACA,SAAA;AAAA;;;AALF;;;AAAA,UCsBiB,yBAAA;EDrBf;;;ECyBA,aAAA,IAAiB,OAAA;EDrBjB;;;EC0BA,eAAA;;;AATF;EAcE,cAAA;;;;EAKA,oBAAA,IAAwB,SAAA;EAVxB;;;EAeA,eAAA,IAAmB,OAAA;EAAnB;;;EAKA,eAAA,IACE,SAAA,UACA,IAAA;EAAA;;;EAMF,aAAA;EAWuB;;;EANvB,aAAA;EASe;;;;EAHf,OAAA,IAAW,UAAA,EAAY,iBAAA;AAAA;AAAA,UAGR,WAAA;AAAA,UAEA,WAAA;EACf,mBAAA;EACA,gBAAA;EACA,QAAA;EACA,QAAA,GAAW,KAAA,CAAM,SAAA;AAAA;AAAA,UAGF,WAAA;AAAA,UAEA,gBAAA;EACf,KAAA;EACA,OAAA;EACA,OAAA;EACA,SAAA;EACA,OAAA,GAAU,OAAA;AAAA;AAAA,KAGA,aAAA,WACA,MAAA,mBAAyB,MAAA,kCAEvB,CAAA,GAAI,KAAA,CAAM,EAAA;EAAK,QAAA,GAAW,SAAA;AAAA,IAAc,CAAA,CAAE,CAAA;AAAA,UAGvC,aAAA;EACf,QAAA,EAAU,OAAA;EACV,UAAA;EACA,QAAA,GAAW,KAAA,CAAM,SAAA;EACjB,SAAA,GAAY,SAAA;EACZ,gBAAA,EAAkB,KAAA,CAAM,aAAA,CAAc,qBAAA;EACtC,WAAA,EAAa,KAAA,CAAM,aAAA,CAAc,gBAAA;EACjC,YAAA,GAAe,KAAA,CAAM,aAAA,CAAc,iBAAA;EACnC,aAAA,EAAe,KAAA,CAAM,aAAA,CAAc,kBAAA;EACnC,aAAA,EAAe,KAAA,CAAM,aAAA,CAAc,kBAAA;EAdA;;;EAmBnC,YAAA,IAAgB,SAAA;EAjBsC;;;EAsBtD,MAAA,IAAU,OAAA;EAxBV
|
|
1
|
+
{"version":3,"file":"index.d.mts","names":[],"sources":["../src/types/suggestions.ts","../src/components/chat/props.ts","../src/components/chat/ChatContext.tsx","../src/components/chat/Chat.tsx","../src/components/chat/Modal.tsx","../src/components/chat/Popup.tsx","../src/components/chat/Sidebar.tsx","../src/components/chat/Markdown.tsx","../src/components/chat/messages/AssistantMessage.tsx","../src/components/chat/messages/UserMessage.tsx","../src/components/chat/messages/ImageRenderer.tsx","../src/components/chat/Suggestions.tsx","../src/components/chat/Suggestion.tsx","../src/components/chat/attachment-utils.ts","../src/components/dev-console/console.tsx","../src/hooks/use-copilot-chat-suggestions.tsx","../src/types/css.ts"],"mappings":"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"}
|