@bytexbyte/nxtlinq-ai-agent-ui-react-development 0.1.3 → 0.1.5

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.
Files changed (91) hide show
  1. package/dist/ChatBot.d.ts +5 -0
  2. package/dist/ChatBot.d.ts.map +1 -0
  3. package/dist/ChatBot.js +35 -0
  4. package/dist/assets/images/adiSideItalicDataUri.d.ts +2 -0
  5. package/dist/assets/images/adiSideItalicDataUri.d.ts.map +1 -0
  6. package/dist/assets/images/adiSideItalicDataUri.js +1 -0
  7. package/dist/context/ChatBotContext.d.ts +5 -0
  8. package/dist/context/ChatBotContext.d.ts.map +1 -0
  9. package/dist/context/ChatBotContext.js +2908 -0
  10. package/dist/index.d.ts +5 -13
  11. package/dist/index.d.ts.map +1 -1
  12. package/dist/index.js +4 -11
  13. package/dist/legacy/chatbot/context/ChatBotContext.d.ts.map +1 -1
  14. package/dist/legacy/chatbot/context/ChatBotContext.js +14 -0
  15. package/dist/types/ChatBotTypes.d.ts +166 -0
  16. package/dist/types/ChatBotTypes.d.ts.map +1 -0
  17. package/dist/types/ChatBotTypes.js +1 -0
  18. package/dist/ui/BerifyMeModal.d.ts +17 -0
  19. package/dist/ui/BerifyMeModal.d.ts.map +1 -0
  20. package/dist/ui/BerifyMeModal.js +110 -0
  21. package/dist/ui/ChatBotHeader.d.ts +15 -0
  22. package/dist/ui/ChatBotHeader.d.ts.map +1 -0
  23. package/dist/ui/ChatBotHeader.js +62 -0
  24. package/dist/ui/ChatBotUI.d.ts +3 -0
  25. package/dist/ui/ChatBotUI.d.ts.map +1 -0
  26. package/dist/ui/ChatBotUI.js +557 -0
  27. package/dist/ui/MessageInput.d.ts +3 -0
  28. package/dist/ui/MessageInput.d.ts.map +1 -0
  29. package/dist/ui/MessageInput.js +321 -0
  30. package/dist/ui/MessageList.d.ts +4 -0
  31. package/dist/ui/MessageList.d.ts.map +1 -0
  32. package/dist/ui/MessageList.js +455 -0
  33. package/dist/ui/ModelSelector.d.ts +4 -0
  34. package/dist/ui/ModelSelector.d.ts.map +1 -0
  35. package/dist/ui/ModelSelector.js +122 -0
  36. package/dist/ui/NotificationModal.d.ts +15 -0
  37. package/dist/ui/NotificationModal.d.ts.map +1 -0
  38. package/dist/ui/NotificationModal.js +53 -0
  39. package/dist/ui/PermissionForm.d.ts +8 -0
  40. package/dist/ui/PermissionForm.d.ts.map +1 -0
  41. package/dist/ui/PermissionForm.js +465 -0
  42. package/dist/ui/PresetMessages.d.ts +4 -0
  43. package/dist/ui/PresetMessages.d.ts.map +1 -0
  44. package/dist/ui/PresetMessages.js +33 -0
  45. package/dist/ui/VoiceModePanel.d.ts +3 -0
  46. package/dist/ui/VoiceModePanel.d.ts.map +1 -0
  47. package/dist/ui/VoiceModePanel.js +95 -0
  48. package/dist/ui/chatBotHeaderParts.d.ts +15 -0
  49. package/dist/ui/chatBotHeaderParts.d.ts.map +1 -0
  50. package/dist/ui/chatBotHeaderParts.js +50 -0
  51. package/dist/ui/index.d.ts +9 -0
  52. package/dist/ui/index.d.ts.map +1 -0
  53. package/dist/ui/index.js +8 -0
  54. package/dist/ui/styles/isolatedStyles.d.ts +73 -0
  55. package/dist/ui/styles/isolatedStyles.d.ts.map +1 -0
  56. package/dist/ui/styles/isolatedStyles.js +985 -0
  57. package/package.json +3 -3
  58. package/src/{legacy/chatbot/context → context}/ChatBotContext.tsx +0 -1
  59. package/src/index.ts +17 -40
  60. package/src/{legacy/chatbot/ui → ui}/ModelSelector.tsx +1 -1
  61. package/src/{legacy/chatbot/ui → ui}/VoiceModePanel.tsx +1 -1
  62. package/src/ui/index.ts +8 -0
  63. package/src/NxtlinqAgentChat.tsx +0 -79
  64. package/src/components/AgentAssistantShell.tsx +0 -104
  65. package/src/components/AgentComposer.tsx +0 -134
  66. package/src/components/AgentMessageList.tsx +0 -78
  67. package/src/components/AgentRemoteAudio.tsx +0 -34
  68. package/src/components/AgentVoiceBar.tsx +0 -173
  69. package/src/components/PresetMessageChips.tsx +0 -41
  70. package/src/context/AgentAssistantContext.tsx +0 -294
  71. package/src/legacy/index.ts +0 -26
  72. package/src/theme/defaultTheme.ts +0 -22
  73. package/src/types.ts +0 -65
  74. package/src/voice/useVoiceConnectOrchestration.ts +0 -117
  75. package/src/voice/useVoiceMicState.ts +0 -117
  76. package/src/voice/useVoiceTranscriptMessages.ts +0 -188
  77. package/src/voice/voiceMicConstants.ts +0 -13
  78. package/src/voice/voiceUserBubble.ts +0 -71
  79. /package/src/{legacy/chatbot/ChatBot.tsx → ChatBot.tsx} +0 -0
  80. /package/src/{legacy/assets → assets}/images/adiSideItalicDataUri.ts +0 -0
  81. /package/src/{legacy/chatbot/types → types}/ChatBotTypes.ts +0 -0
  82. /package/src/{legacy/chatbot/ui → ui}/BerifyMeModal.tsx +0 -0
  83. /package/src/{legacy/chatbot/ui → ui}/ChatBotHeader.tsx +0 -0
  84. /package/src/{legacy/chatbot/ui → ui}/ChatBotUI.tsx +0 -0
  85. /package/src/{legacy/chatbot/ui → ui}/MessageInput.tsx +0 -0
  86. /package/src/{legacy/chatbot/ui → ui}/MessageList.tsx +0 -0
  87. /package/src/{legacy/chatbot/ui → ui}/NotificationModal.tsx +0 -0
  88. /package/src/{legacy/chatbot/ui → ui}/PermissionForm.tsx +0 -0
  89. /package/src/{legacy/chatbot/ui → ui}/PresetMessages.tsx +0 -0
  90. /package/src/{legacy/chatbot/ui → ui}/chatBotHeaderParts.tsx +0 -0
  91. /package/src/{legacy/chatbot/ui → ui}/styles/isolatedStyles.ts +0 -0
@@ -0,0 +1,95 @@
1
+ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "@emotion/react/jsx-runtime";
2
+ /** @jsxImportSource @emotion/react */
3
+ import { css } from '@emotion/react';
4
+ import MicIcon from '@mui/icons-material/Mic';
5
+ import MicOffIcon from '@mui/icons-material/MicOff';
6
+ import StopIcon from '@mui/icons-material/Stop';
7
+ import { IconButton, Tooltip } from '@mui/material';
8
+ import { useChatBot } from '../context/ChatBotContext';
9
+ const STATUS_LABELS = {
10
+ idle: 'Idle',
11
+ listening: 'Listening',
12
+ transcribing: 'Transcribing',
13
+ thinking: 'Thinking',
14
+ generating: 'Generating',
15
+ speaking: 'Speaking',
16
+ };
17
+ const ASSISTANT_MIC_HOLD_STATUSES = new Set([
18
+ 'transcribing',
19
+ 'thinking',
20
+ 'generating',
21
+ 'speaking',
22
+ ]);
23
+ const statusDotColor = {
24
+ idle: '#6b7280',
25
+ listening: '#22c55e',
26
+ transcribing: '#eab308',
27
+ thinking: '#3b82f6',
28
+ generating: '#8b5cf6',
29
+ speaking: '#ec4899',
30
+ };
31
+ const STATUS_HINTS = {
32
+ listening: 'Start speaking',
33
+ transcribing: 'Processing your speech…',
34
+ thinking: 'Thinking…',
35
+ generating: 'Assistant is responding…',
36
+ speaking: 'Assistant is speaking…',
37
+ };
38
+ export const VoiceModePanel = () => {
39
+ const { voiceStatus, isVoiceConnecting, isMicMuted, remoteAudioRef, toggleVoiceMicMute, interruptVoice, } = useChatBot();
40
+ const isMicHeldForAssistant = ASSISTANT_MIC_HOLD_STATUSES.has(voiceStatus);
41
+ const statusHint = isVoiceConnecting
42
+ ? 'Connecting… use Text Mode above to cancel'
43
+ : isMicMuted && !isMicHeldForAssistant
44
+ ? 'Mic is off — tap the mic button when ready to speak'
45
+ : STATUS_HINTS[voiceStatus] ?? '';
46
+ return (_jsxs(_Fragment, { children: [_jsx("audio", { ref: remoteAudioRef, autoPlay: true, playsInline: true, css: css `display: none !important;` }), _jsxs("div", { css: css `
47
+ padding: 10px 15px !important;
48
+ border-top: 1px solid #eee !important;
49
+ background: linear-gradient(180deg, #f8fafc 0%, #fff 100%) !important;
50
+ display: flex !important;
51
+ align-items: center !important;
52
+ justify-content: space-between !important;
53
+ gap: 10px !important;
54
+ `, children: [_jsxs("div", { css: css `
55
+ min-width: 0 !important;
56
+ flex: 1 !important;
57
+ height: 32px !important;
58
+ padding: 0 10px !important;
59
+ border-radius: 999px !important;
60
+ border: 1px solid #e5e7eb !important;
61
+ background: #f9fafb !important;
62
+ display: flex !important;
63
+ align-items: center !important;
64
+ gap: 8px !important;
65
+ color: #374151 !important;
66
+ font-size: 12px !important;
67
+ line-height: 1 !important;
68
+ `, children: [_jsx("span", { css: css `
69
+ flex: 0 0 auto !important;
70
+ width: 8px !important;
71
+ height: 8px !important;
72
+ border-radius: 50% !important;
73
+ background: ${statusDotColor[voiceStatus]} !important;
74
+ ${voiceStatus === 'listening' || voiceStatus === 'thinking' || voiceStatus === 'speaking'
75
+ ? 'animation: voicePulse 1.2s infinite !important;'
76
+ : ''}
77
+ ` }), _jsx("span", { css: css `flex: 0 0 auto !important; font-weight: 600 !important;`, children: isVoiceConnecting ? 'Connecting' : STATUS_LABELS[voiceStatus] }), statusHint ? (_jsx("span", { css: css `
78
+ min-width: 0 !important;
79
+ overflow: hidden !important;
80
+ text-overflow: ellipsis !important;
81
+ white-space: nowrap !important;
82
+ color: #6b7280 !important;
83
+ `, children: statusHint })) : null] }), _jsxs("div", { css: css `display: flex !important; gap: 4px !important;`, children: [_jsx(Tooltip, { title: isVoiceConnecting
84
+ ? 'Available after connection'
85
+ : isMicHeldForAssistant
86
+ ? 'Mic paused while assistant responds (use Interrupt to speak)'
87
+ : isMicMuted
88
+ ? 'Turn on mic'
89
+ : 'Turn off mic', children: _jsx("span", { children: _jsx(IconButton, { onClick: toggleVoiceMicMute, disabled: voiceStatus !== 'listening' || isVoiceConnecting || isMicHeldForAssistant, size: "small", css: css `color: ${isMicMuted ? '#ef4444' : '#4b5563'} !important;`, children: isMicMuted ? _jsx(MicOffIcon, {}) : _jsx(MicIcon, {}) }) }) }), _jsx(Tooltip, { title: "Interrupt (barge in)", children: _jsx("span", { children: _jsx(IconButton, { onClick: interruptVoice, disabled: isVoiceConnecting, size: "small", css: css `color: #4b5563 !important;`, children: _jsx(StopIcon, {}) }) }) })] })] }), _jsx("style", { children: `
90
+ @keyframes voicePulse {
91
+ 0%, 100% { opacity: 1; }
92
+ 50% { opacity: 0.35; }
93
+ }
94
+ ` })] }));
95
+ };
@@ -0,0 +1,15 @@
1
+ import * as React from 'react';
2
+ export declare const DRAG_CORNER_EXCLUSION_PX = 20;
3
+ export declare const piiBadgeStyles: import("@emotion/utils").SerializedStyles;
4
+ export declare const PiiBadge: React.FC;
5
+ type HeaderActionsProps = {
6
+ isVoiceMode: boolean;
7
+ isVoiceConnecting: boolean;
8
+ onVoiceToggle: () => void;
9
+ onSettingsClick: () => void;
10
+ onClose: () => void;
11
+ };
12
+ export declare const HeaderActions: React.FC<HeaderActionsProps>;
13
+ export declare const HeaderLoadingIndicator: React.FC;
14
+ export {};
15
+ //# sourceMappingURL=chatBotHeaderParts.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"chatBotHeaderParts.d.ts","sourceRoot":"","sources":["../../src/ui/chatBotHeaderParts.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,eAAO,MAAM,wBAAwB,KAAK,CAAC;AAa3C,eAAO,MAAM,cAAc,2CAc1B,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,KAAK,CAAC,EAU5B,CAAC;AAEF,KAAK,kBAAkB,GAAG;IACxB,WAAW,EAAE,OAAO,CAAC;IACrB,iBAAiB,EAAE,OAAO,CAAC;IAC3B,aAAa,EAAE,MAAM,IAAI,CAAC;IAC1B,eAAe,EAAE,MAAM,IAAI,CAAC;IAC5B,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CA8CtD,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,KAAK,CAAC,EAW1C,CAAC"}
@@ -0,0 +1,50 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "@emotion/react/jsx-runtime";
2
+ /** @jsxImportSource @emotion/react */
3
+ import { css } from '@emotion/react';
4
+ import GraphicEqIcon from '@mui/icons-material/GraphicEq';
5
+ import { closeButton, headerButton, loadingSpinner } from './styles/isolatedStyles';
6
+ export const DRAG_CORNER_EXCLUSION_PX = 20;
7
+ const voiceButtonStyles = css `
8
+ width: auto !important;
9
+ min-width: 82px !important;
10
+ padding: 0 10px !important;
11
+ gap: 6px !important;
12
+ font-size: 12px !important;
13
+ font-weight: 600 !important;
14
+ line-height: 1 !important;
15
+ white-space: nowrap !important;
16
+ `;
17
+ export const piiBadgeStyles = css `
18
+ display: inline-flex !important;
19
+ align-items: center !important;
20
+ gap: 4px !important;
21
+ padding: 2px 8px !important;
22
+ background-color: rgba(255, 255, 255, 0.2) !important;
23
+ border: 1px solid rgba(255, 255, 255, 0.4) !important;
24
+ border-radius: 10px !important;
25
+ font-size: 10px !important;
26
+ font-weight: 600 !important;
27
+ color: #ffffff !important;
28
+ white-space: nowrap !important;
29
+ line-height: 1.4 !important;
30
+ user-select: none !important;
31
+ `;
32
+ export const PiiBadge = () => (_jsxs("div", { css: piiBadgeStyles, title: "PII Protection is active \u2014 sensitive data is automatically anonymized before sending to AI", children: [_jsx("svg", { width: "10", height: "10", viewBox: "0 0 24 24", fill: "#ffffff", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z" }) }), "PII Protected"] }));
33
+ export const HeaderActions = ({ isVoiceMode, isVoiceConnecting, onVoiceToggle, onSettingsClick, onClose, }) => (_jsxs("div", { css: css `
34
+ display: flex !important;
35
+ align-items: center !important;
36
+ gap: 10px !important;
37
+ flex-shrink: 0 !important;
38
+ pointer-events: auto !important;
39
+ `, children: [_jsxs("button", { onClick: onVoiceToggle, css: [headerButton, voiceButtonStyles], title: isVoiceConnecting
40
+ ? 'Cancel voice connection and return to text mode'
41
+ : isVoiceMode
42
+ ? 'Switch to text mode'
43
+ : 'Switch to voice mode', onPointerDown: (e) => e.stopPropagation(), children: [_jsx(GraphicEqIcon, { css: css `font-size: 16px !important; color: #fff !important;` }), (isVoiceMode || isVoiceConnecting) ? 'Text Mode' : 'Voice Mode'] }), _jsx("button", { onClick: onSettingsClick, css: headerButton, title: "AIT Settings", onPointerDown: (e) => e.stopPropagation(), children: "\u2699\uFE0F" }), _jsx("button", { onClick: onClose, css: closeButton, onPointerDown: (e) => e.stopPropagation(), title: "Minimize", children: "\u2212" })] }));
44
+ export const HeaderLoadingIndicator = () => (_jsxs("div", { css: css `
45
+ display: flex !important;
46
+ align-items: center !important;
47
+ gap: 5px !important;
48
+ font-size: 12px !important;
49
+ opacity: 0.8 !important;
50
+ `, children: [_jsx("div", { css: loadingSpinner }), "Loading..."] }));
@@ -0,0 +1,9 @@
1
+ export { ChatBotUI } from './ChatBotUI';
2
+ export { MessageInput } from './MessageInput';
3
+ export { MessageList } from './MessageList';
4
+ export { ModelSelector } from './ModelSelector';
5
+ export { NotificationModal } from './NotificationModal';
6
+ export { PermissionForm } from './PermissionForm';
7
+ export { PresetMessages } from './PresetMessages';
8
+ export { BerifyMeModal } from './BerifyMeModal';
9
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/ui/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC"}
@@ -0,0 +1,8 @@
1
+ export { ChatBotUI } from './ChatBotUI';
2
+ export { MessageInput } from './MessageInput';
3
+ export { MessageList } from './MessageList';
4
+ export { ModelSelector } from './ModelSelector';
5
+ export { NotificationModal } from './NotificationModal';
6
+ export { PermissionForm } from './PermissionForm';
7
+ export { PresetMessages } from './PresetMessages';
8
+ export { BerifyMeModal } from './BerifyMeModal';
@@ -0,0 +1,73 @@
1
+ export declare const sdkReset: import("@emotion/utils").SerializedStyles;
2
+ export declare const sdkContainer: import("@emotion/utils").SerializedStyles;
3
+ export declare const floatingButton: import("@emotion/utils").SerializedStyles;
4
+ export declare const chatWindow: import("@emotion/utils").SerializedStyles;
5
+ /** @deprecated Use resizeHandleNW — kept for compatibility */
6
+ export declare const resizeHandle: import("@emotion/utils").SerializedStyles;
7
+ export declare const resizeHandleNW: import("@emotion/utils").SerializedStyles;
8
+ export declare const resizeHandleNE: import("@emotion/utils").SerializedStyles;
9
+ export declare const resizeHandleSW: import("@emotion/utils").SerializedStyles;
10
+ export declare const resizeHandleSE: import("@emotion/utils").SerializedStyles;
11
+ export declare const chatHeader: import("@emotion/utils").SerializedStyles;
12
+ export declare const headerTitle: import("@emotion/utils").SerializedStyles;
13
+ export declare const headerButton: import("@emotion/utils").SerializedStyles;
14
+ export declare const closeButton: import("@emotion/utils").SerializedStyles;
15
+ export declare const messageListContainer: import("@emotion/utils").SerializedStyles;
16
+ export declare const messageBubble: import("@emotion/utils").SerializedStyles;
17
+ export declare const userMessage: import("@emotion/utils").SerializedStyles;
18
+ export declare const messageContent: import("@emotion/utils").SerializedStyles;
19
+ export declare const userMessageContent: import("@emotion/utils").SerializedStyles;
20
+ export declare const retryMessageContent: import("@emotion/utils").SerializedStyles;
21
+ export declare const chatbotButton: import("@emotion/utils").SerializedStyles;
22
+ export declare const actionButton: import("@emotion/utils").SerializedStyles;
23
+ export declare const connectedButton: import("@emotion/utils").SerializedStyles;
24
+ export declare const loadingIndicator: import("@emotion/utils").SerializedStyles;
25
+ export declare const modelIndicator: import("@emotion/utils").SerializedStyles;
26
+ export declare const modelBadge: import("@emotion/utils").SerializedStyles;
27
+ export declare const modelDot: import("@emotion/utils").SerializedStyles;
28
+ export declare const toastNotification: import("@emotion/utils").SerializedStyles;
29
+ export declare const successToast: import("@emotion/utils").SerializedStyles;
30
+ export declare const errorToast: import("@emotion/utils").SerializedStyles;
31
+ export declare const warningToast: import("@emotion/utils").SerializedStyles;
32
+ export declare const infoToast: import("@emotion/utils").SerializedStyles;
33
+ export declare const toastCloseButton: import("@emotion/utils").SerializedStyles;
34
+ export declare const modalOverlay: import("@emotion/utils").SerializedStyles;
35
+ export declare const idvBanner: import("@emotion/utils").SerializedStyles;
36
+ export declare const idvBannerTitle: import("@emotion/utils").SerializedStyles;
37
+ export declare const idvBannerText: import("@emotion/utils").SerializedStyles;
38
+ export declare const idvVerifyButton: import("@emotion/utils").SerializedStyles;
39
+ export declare const idvDismissButton: import("@emotion/utils").SerializedStyles;
40
+ export declare const loadingSpinner: import("@emotion/utils").SerializedStyles;
41
+ export declare const streamingPartialText: import("@emotion/utils").SerializedStyles;
42
+ export declare const streamingContainer: import("@emotion/utils").SerializedStyles;
43
+ export declare const streamingHeader: import("@emotion/utils").SerializedStyles;
44
+ export declare const streamingIcon: import("@emotion/utils").SerializedStyles;
45
+ export declare const streamingToolName: import("@emotion/utils").SerializedStyles;
46
+ export declare const streamingProgressPercent: import("@emotion/utils").SerializedStyles;
47
+ export declare const streamingProgressContainer: import("@emotion/utils").SerializedStyles;
48
+ export declare const streamingProgressBar: import("@emotion/utils").SerializedStyles;
49
+ export declare const streamingStatus: import("@emotion/utils").SerializedStyles;
50
+ export declare const streamingCaret: import("@emotion/utils").SerializedStyles;
51
+ export declare const streamingStepsContainer: import("@emotion/utils").SerializedStyles;
52
+ export declare const streamingStepItem: import("@emotion/utils").SerializedStyles;
53
+ export declare const streamingStepCheck: import("@emotion/utils").SerializedStyles;
54
+ export declare const piiStepperContainer: import("@emotion/utils").SerializedStyles;
55
+ export declare const piiStepArrow: import("@emotion/utils").SerializedStyles;
56
+ export declare const piiStepBase: import("@emotion/utils").SerializedStyles;
57
+ export declare const piiStepActiveStyle: import("@emotion/utils").SerializedStyles;
58
+ export declare const piiStepDoneStyle: import("@emotion/utils").SerializedStyles;
59
+ export declare const piiStepPendingStyle: import("@emotion/utils").SerializedStyles;
60
+ export declare const piiBadgeContainer: import("@emotion/utils").SerializedStyles;
61
+ export declare const piiBadgeButton: import("@emotion/utils").SerializedStyles;
62
+ export declare const piiDetailPanel: import("@emotion/utils").SerializedStyles;
63
+ export declare const piiMiniPipeline: import("@emotion/utils").SerializedStyles;
64
+ export declare const piiMappingTable: import("@emotion/utils").SerializedStyles;
65
+ export declare const piiMappingRow: import("@emotion/utils").SerializedStyles;
66
+ export declare const piiMappingOriginal: import("@emotion/utils").SerializedStyles;
67
+ export declare const piiMappingToken: import("@emotion/utils").SerializedStyles;
68
+ export declare const piiNoPiiIndicator: import("@emotion/utils").SerializedStyles;
69
+ export declare const piiScanningShimmer: import("@emotion/utils").SerializedStyles;
70
+ export declare const piiContentSwapIn: import("@emotion/utils").SerializedStyles;
71
+ export declare const piiContentStatic: import("@emotion/utils").SerializedStyles;
72
+ export declare const piiTokenReveal: import("@emotion/utils").SerializedStyles;
73
+ //# sourceMappingURL=isolatedStyles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"isolatedStyles.d.ts","sourceRoot":"","sources":["../../../src/ui/styles/isolatedStyles.ts"],"names":[],"mappings":"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"}