@snf/qa-bot-core 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/README.md +183 -0
  2. package/build/asset-manifest.json +15 -0
  3. package/build/chat-icon.svg +3 -0
  4. package/build/favicon.ico +0 -0
  5. package/build/index.html +1 -0
  6. package/build/logo192.png +0 -0
  7. package/build/logo512.png +0 -0
  8. package/build/manifest.json +25 -0
  9. package/build/robots.txt +3 -0
  10. package/build/static/css/main.css +2 -0
  11. package/build/static/css/main.css.map +1 -0
  12. package/build/static/js/453.chunk.js +2 -0
  13. package/build/static/js/453.chunk.js.map +1 -0
  14. package/build/static/js/main.js +3 -0
  15. package/build/static/js/main.js.LICENSE.txt +67 -0
  16. package/build/static/js/main.js.map +1 -0
  17. package/dist/qa-bot-core.js +9 -0
  18. package/dist/qa-bot-core.js.map +1 -0
  19. package/dist/qa-bot-core.standalone.js +37 -0
  20. package/dist/qa-bot-core.standalone.js.map +1 -0
  21. package/dist/qa-bot-core.umd.cjs +9 -0
  22. package/dist/qa-bot-core.umd.cjs.map +1 -0
  23. package/dist/types/components/BotController.d.ts +14 -0
  24. package/dist/types/components/NewChatButton.d.ts +3 -0
  25. package/dist/types/components/QABot.d.ts +7 -0
  26. package/dist/types/components/icons/BaseIcon.d.ts +9 -0
  27. package/dist/types/components/icons/RefreshIcon.d.ts +3 -0
  28. package/dist/types/config/constants.d.ts +66 -0
  29. package/dist/types/config/defaults.d.ts +118 -0
  30. package/dist/types/config/index.d.ts +11 -0
  31. package/dist/types/config/types.d.ts +150 -0
  32. package/dist/types/config.d.ts +47 -0
  33. package/dist/types/hooks/useChatBotSettings.d.ts +13 -0
  34. package/dist/types/hooks/useFocusableSendButton.d.ts +5 -0
  35. package/dist/types/hooks/useKeyboardNavigation.d.ts +6 -0
  36. package/dist/types/hooks/useThemeColors.d.ts +12 -0
  37. package/dist/types/lib.d.ts +44 -0
  38. package/dist/types/standalone.d.ts +8 -0
  39. package/dist/types/utils/create-bot-flow.d.ts +12 -0
  40. package/dist/types/utils/deep-merge.d.ts +10 -0
  41. package/dist/types/utils/flow-merger.d.ts +14 -0
  42. package/dist/types/utils/flows/qa-flow.d.ts +25 -0
  43. package/dist/types/utils/getProcessedText.d.ts +4 -0
  44. package/dist/types/utils/session-utils.d.ts +2 -0
  45. package/dist/types/utils/validation-utils.d.ts +19 -0
  46. package/package.json +78 -0
package/README.md ADDED
@@ -0,0 +1,183 @@
1
+ # QA Bot Core
2
+
3
+ A simple React chatbot component for Q&A applications with built-in rating system.
4
+
5
+ **Pre-configured wrapper around react-chatbotify** - Just provide your API endpoints and you're done.
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ npm install @snf/qa-bot-core
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ ### React Component
16
+
17
+ #### Basic Usage
18
+ Just provide required props:
19
+
20
+ ```jsx
21
+ import QABot from '@snf/qa-bot-core';
22
+
23
+ function App() {
24
+ return (
25
+ <QABot
26
+ apiKey="your-api-key"
27
+ qaEndpoint="https://your-api.com/chat"
28
+ welcomeMessage="Hello! How can I help you today?"
29
+ />
30
+ );
31
+ }
32
+ ```
33
+
34
+ #### Full Configuration
35
+ Customize appearance and behavior:
36
+
37
+ ```jsx
38
+ <QABot
39
+ apiKey="your-api-key"
40
+ qaEndpoint="https://your-api.com/chat"
41
+ ratingEndpoint="https://your-api.com/rating"
42
+ welcomeMessage="Hello! How can I help you today?"
43
+
44
+ // Branding
45
+ primaryColor="#24292e"
46
+ secondaryColor="#586069"
47
+ botName="Demo Assistant"
48
+ logo="https://github.com/github.png"
49
+
50
+ // Messages
51
+ placeholder="Type your message here..."
52
+ errorMessage="Sorry, something went wrong"
53
+ tooltipText="Ask me anything!"
54
+
55
+ // Layout
56
+ embedded={false}
57
+
58
+ // Footer
59
+ footerText="Powered by Demo Corp"
60
+ footerLink="https://demo.com"
61
+ />
62
+ ```
63
+
64
+ ### JavaScript API
65
+
66
+ ```javascript
67
+ import { qaBot } from '@snf/qa-bot-core';
68
+
69
+ const bot = qaBot({
70
+ target: document.getElementById('bot-container'),
71
+ apiKey: 'your-api-key',
72
+ qaEndpoint: 'https://your-api.com/chat',
73
+ ratingEndpoint: 'https://your-api.com/rating',
74
+ welcomeMessage: "Hello! How can I help you today?",
75
+ primaryColor: '#24292e',
76
+ secondaryColor: '#586069',
77
+ botName: 'Demo Assistant',
78
+ logo: 'https://github.com/github.png'
79
+ });
80
+
81
+ // Programmatic control
82
+ bot.openChat();
83
+ bot.closeChat();
84
+ bot.addMessage('Hello from code!');
85
+ bot.destroy();
86
+ ```
87
+
88
+ ### Standalone Bundle
89
+
90
+ ```html
91
+ <div id="bot-container"></div>
92
+ <script src="https://unpkg.com/@snf/qa-bot-core/dist/qa-bot-core.standalone.js"></script>
93
+ <script>
94
+ window.qaBotCore({
95
+ target: document.getElementById('bot-container'),
96
+ apiKey: 'your-api-key',
97
+ qaEndpoint: 'https://your-api.com/chat',
98
+ ratingEndpoint: 'https://your-api.com/rating',
99
+ welcomeMessage: "Hello! How can I help you today?",
100
+ primaryColor: '#24292e',
101
+ secondaryColor: '#586069',
102
+ botName: 'Demo Assistant',
103
+ logo: 'https://github.com/github.png'
104
+ });
105
+ </script>
106
+ ```
107
+
108
+ ## Configuration
109
+
110
+ ### Props
111
+
112
+ | Prop | Type | Required | Description |
113
+ |------|------|----------|-------------|
114
+ | `apiKey` | string | ✅ | API key for your Q&A service |
115
+ | `qaEndpoint` | string | ✅ | Q&A API endpoint URL |
116
+ | `welcomeMessage` | string | ✅ | Initial greeting message |
117
+ | `ratingEndpoint` | string | ❌ | Rating API endpoint URL (enables thumbs up/down) |
118
+ | `primaryColor` | string | ❌ | Main theme color (default: `#1a5b6e`) |
119
+ | `secondaryColor` | string | ❌ | Secondary theme color (default: `#107180`) |
120
+ | `botName` | string | ❌ | Bot display name (default: `Q&A Bot`) |
121
+ | `logo` | string | ❌ | Bot avatar URL (default: `/default-chat-icon.svg`) |
122
+ | `placeholder` | string | ❌ | Input placeholder text |
123
+ | `errorMessage` | string | ❌ | Error state message |
124
+ | `tooltipText` | string | ❌ | Tooltip text for chat toggle |
125
+ | `embedded` | boolean | ❌ | Embedded mode (default: `false`) |
126
+ | `footerText` | string | ❌ | Footer text |
127
+ | `footerLink` | string | ❌ | Footer link URL |
128
+
129
+ ## API Requirements
130
+
131
+ Your Q&A endpoint should accept POST requests:
132
+
133
+ ```json
134
+ POST /your-qa-endpoint
135
+ Content-Type: application/json
136
+ X-API-KEY: your-api-key
137
+
138
+ {
139
+ "query": "User's question here"
140
+ }
141
+ ```
142
+
143
+ And return:
144
+ ```json
145
+ {
146
+ "response": "Bot's answer with **markdown** support",
147
+ "sessionId": "session_123",
148
+ "queryId": "query_456"
149
+ }
150
+ ```
151
+
152
+ ### Rating Endpoint (Optional)
153
+
154
+ For thumbs up/down feedback:
155
+ ```json
156
+ POST /your-rating-endpoint
157
+ Content-Type: application/json
158
+ X-API-KEY: your-api-key
159
+
160
+ {
161
+ "sessionId": "session_123",
162
+ "queryId": "query_456",
163
+ "rating": 1 // 1 for 👍, 0 for 👎
164
+ }
165
+ ```
166
+
167
+ ## Development
168
+
169
+ ```bash
170
+ # Install dependencies
171
+ npm install
172
+
173
+ # Run demo app (http://localhost:3000)
174
+ npm start
175
+
176
+ # Build library
177
+ npm run build:lib
178
+ ```
179
+
180
+
181
+ ## License
182
+
183
+ MIT License
@@ -0,0 +1,15 @@
1
+ {
2
+ "files": {
3
+ "main.css": "/static/css/main.css",
4
+ "main.js": "/static/js/main.js",
5
+ "static/js/453.chunk.js": "/static/js/453.chunk.js",
6
+ "index.html": "/index.html",
7
+ "main.css.map": "/static/css/main.css.map",
8
+ "main.js.map": "/static/js/main.js.map",
9
+ "453.chunk.js.map": "/static/js/453.chunk.js.map"
10
+ },
11
+ "entrypoints": [
12
+ "static/css/main.css",
13
+ "static/js/main.js"
14
+ ]
15
+ }
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
2
+ <path d="M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z"/>
3
+ </svg>
Binary file
@@ -0,0 +1 @@
1
+ <!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><title>Q&A Bot Core</title><script defer="defer" src="/static/js/main.js"></script><link href="/static/css/main.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
Binary file
Binary file
@@ -0,0 +1,25 @@
1
+ {
2
+ "short_name": "React App",
3
+ "name": "Create React App Sample",
4
+ "icons": [
5
+ {
6
+ "src": "favicon.ico",
7
+ "sizes": "64x64 32x32 24x24 16x16",
8
+ "type": "image/x-icon"
9
+ },
10
+ {
11
+ "src": "logo192.png",
12
+ "type": "image/png",
13
+ "sizes": "192x192"
14
+ },
15
+ {
16
+ "src": "logo512.png",
17
+ "type": "image/png",
18
+ "sizes": "512x512"
19
+ }
20
+ ],
21
+ "start_url": ".",
22
+ "display": "standalone",
23
+ "theme_color": "#000000",
24
+ "background_color": "#ffffff"
25
+ }
@@ -0,0 +1,3 @@
1
+ # https://www.robotstxt.org/robotstxt.html
2
+ User-agent: *
3
+ Disallow:
@@ -0,0 +1,2 @@
1
+ .rcb-chat-window{height:800px!important;max-height:80vh!important;max-width:100%;width:550px!important}.rcb-chat-window .rcb-chat-header{align-items:center;display:flex;flex-direction:row;font-weight:700}.rcb-chat-window a{color:#000;font-weight:700;text-decoration:underline}.rcb-chat-window a:hover{color:#107180}.rcb-chat-window .rcb-bot-message a{color:#fff;text-decoration:none}.rcb-chat-window .rcb-bot-message a:hover{text-decoration:underline}.rcb-chat-window .rcb-chat-input-textarea{overflow-y:auto}.rcb-chat-window .rcb-chat-footer-container{font-size:10px}.qa-bot .user-login-icon{display:none!important}.qa-bot.bot-logged-in .user-login-icon{display:flex!important;transform:scale(1.3) translateY(-2px)}.embedded-qa-bot .rcb-chat-window{max-width:100%;width:100%!important}.qa-bot.hidden{display:none}.embedded-qa-bot .rcb-bot-message,.embedded-qa-bot .rcb-user-message{max-width:90%!important;word-break:break-word}.embedded-qa-bot .rcb-chat-input-textarea{width:100%!important}.qa-bot-container{max-width:100%;width:100%}@keyframes phone-ring{0%{transform:translateX(0) translateY(0) rotate(0deg)}2%{transform:translateX(0) translateY(-8px) rotate(-2deg)}4%{transform:translateX(0) translateY(-6px) rotate(2deg)}6%{transform:translateX(0) translateY(-8px) rotate(-1deg)}8%{transform:translateX(0) translateY(-6px) rotate(1deg)}10%{transform:translateX(0) translateY(-8px) rotate(-2deg)}12%{transform:translateX(0) translateY(-6px) rotate(2deg)}20%{transform:translateX(0) translateY(0) rotate(0deg)}30%{transform:translateX(0) translateY(0) rotate(0deg)}40%{transform:translateX(0) translateY(0) rotate(0deg)}49%{transform:translateX(0) translateY(0) rotate(0deg)}50%{transform:translateX(0) translateY(-8px) rotate(-2deg)}52%{transform:translateX(0) translateY(-6px) rotate(2deg)}54%{transform:translateX(0) translateY(-8px) rotate(-1deg)}56%{transform:translateX(0) translateY(-6px) rotate(1deg)}58%{transform:translateX(0) translateY(-8px) rotate(-2deg)}60%{transform:translateX(0) translateY(-6px) rotate(2deg)}70%{transform:translateX(0) translateY(0) rotate(0deg)}to{transform:translateX(0) translateY(0) rotate(0deg)}}@media (max-width:768px){.rcb-chat-window{max-height:calc(100vh - 100px)!important;max-width:calc(100vw - 40px)!important;width:550px!important}.embedded-chat-container.open{height:400px}.embedded-chat-closed{font-size:14px;height:40px}.embedded-chat-open-btn{font-size:12px;padding:3px 10px}.rcb-bot-message,.rcb-user-message{max-width:85%!important}.rcb-chat-input-textarea{font-size:16px!important;min-height:44px!important}.rcb-chat-header{padding:12px 16px!important}}@media (max-width:480px){.rcb-chat-window{bottom:10px!important;left:10px!important;max-height:calc(100vh - 80px)!important;max-width:calc(100vw - 20px)!important;right:10px!important;width:calc(100vw - 20px)!important}.embedded-chat-container.open{height:350px}.rcb-bot-message,.rcb-user-message{margin-bottom:8px!important;max-width:90%!important}.rcb-chat-header{font-size:14px!important;padding:8px 12px!important}.rcb-chat-button{bottom:20px!important;height:50px!important;right:20px!important;width:50px!important}.rcb-chat-footer-container{font-size:9px!important;padding:8px 12px!important}}@media (max-width:360px){.rcb-chat-window{left:5px!important;max-width:calc(100vw - 10px)!important;right:5px!important;width:calc(100vw - 10px)!important}.rcb-chat-header{font-size:13px!important;padding:6px 8px!important}}.rcb-checkbox-container{display:flex!important;flex-wrap:wrap!important;gap:8px!important;margin-left:16px!important;max-width:100%!important;padding-top:12px!important}.rcb-checkbox-row-container{align-items:center!important;background-color:#fff!important;border:1px solid #d0d0d0!important;border-radius:6px!important;box-sizing:border-box!important;color:#107180!important;cursor:pointer!important;display:flex!important;flex:0 0 auto!important;font-size:14px!important;font-weight:400!important;margin:0!important;max-height:auto!important;min-height:auto!important;padding:8px 12px!important;text-align:center!important;transition:all .2s ease!important;-webkit-user-select:none;user-select:none;width:auto!important}.rcb-checkbox-row-container:hover{background-color:#e8f4f8!important;border-color:#107180!important;box-shadow:0 2px 4px #10718033!important;transform:translateY(-1px)!important}.rcb-checkbox-row-container[data-checked=true]{background-color:#107180!important;border-color:#107180!important;color:#fff!important}.rcb-checkbox-row{margin-left:0!important}.rcb-checkbox-mark{height:14px!important;margin-right:6px!important;width:14px!important}.rcb-checkbox-label{font-size:13px!important;margin:0!important;white-space:nowrap!important}.rcb-checkbox-next-button{align-items:center!important;background-color:#fff!important;border:1px solid #d0d0d0!important;border-radius:6px!important;box-sizing:border-box!important;color:#107180!important;color:var(--secondaryColor,#107180)!important;cursor:pointer!important;display:flex!important;flex:0 0 auto!important;font-size:14px!important;font-weight:400!important;justify-content:center!important;line-height:24px!important;margin:0!important;max-height:auto!important;min-height:auto!important;padding:8px 12px!important;text-align:center!important;transition:all .2s ease!important;-webkit-user-select:none;user-select:none;width:auto!important}.rcb-checkbox-next-button:hover{background-color:#e8f4f8!important;border-color:#107180!important;border-color:var(--secondaryColor,#107180)!important;box-shadow:0 2px 4px #10718033!important;transform:translateY(-1px)!important}.sr-only{clip:rect(0,0,0,0)!important;border:0!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.rcb-chat-input-send-button:focus,.rcb-chat-input-textarea:focus{outline:2px solid #107180!important;outline-offset:2px!important}.rcb-user-message{word-wrap:break-word!important;overflow:hidden!important;word-break:break-word!important}:focus-visible{outline:2px solid #107180!important;outline-offset:2px!important}.rcb-options-container{display:flex!important;flex-direction:row!important;flex-wrap:wrap!important;gap:8px!important;margin:16px!important;padding:0!important}.rcb-options{background-color:#fff!important;border:1px solid #d0d0d0!important;border-radius:6px!important;box-sizing:border-box!important;color:#107180!important;color:var(--secondaryColor,#107180)!important;cursor:pointer!important;flex:0 0 auto!important;font-size:14px!important;font-weight:400!important;outline:none!important;padding:8px 12px!important;text-align:center!important;transition:all .2s ease!important;-webkit-user-select:none;user-select:none;width:auto!important}.rcb-options:hover{background-color:#e8f4f8!important;border-color:#107180!important;border-color:var(--secondaryColor,#107180)!important;box-shadow:0 2px 4px #10718033!important;transform:translateY(-1px)!important}.rcb-checkbox-next-button.keyboard-focused,.rcb-checkbox-next-button:focus,.rcb-checkbox-next-button:focus-visible,.rcb-checkbox-row-container.keyboard-focused,.rcb-checkbox-row-container:focus,.rcb-checkbox-row-container:focus-visible,.rcb-options.keyboard-focused,.rcb-options:focus,.rcb-options:focus-visible{background-color:#e8f4f8!important;border-color:#107180!important;border-color:var(--secondaryColor,#107180)!important;outline:none!important}.rcb-options:active{background-color:#107180!important;background-color:var(--secondaryColor,#107180)!important;border-color:#107180!important;border-color:var(--secondaryColor,#107180)!important;color:#fff!important;transform:translateY(0)!important}.keyboard-nav-hint{color:#666!important;font-size:12px!important;font-style:italic!important;margin-bottom:8px!important}@media (prefers-reduced-motion:reduce){.keyboard-nav-hint{display:none!important}}.rcb-options-container [role=button][tabindex="0"],.rcb-options-container button[tabindex="0"]{position:relative!important}.rcb-options-container [role=button][tabindex="0"]:after,.rcb-options-container button[tabindex="0"]:after{color:#107180!important;color:var(--secondaryColor,#107180)!important;content:"←"!important;font-size:16px!important;opacity:0!important;position:absolute!important;right:12px!important;top:50%!important;transform:translateY(-50%)!important;transition:opacity .2s ease!important}.rcb-options-container [role=button][tabindex="0"]:focus:after,.rcb-options-container button[tabindex="0"]:focus:after{opacity:1!important}.rcb-chat-input-send-button{cursor:pointer!important;opacity:1!important;pointer-events:auto!important;visibility:visible!important}.rcb-chat-input-send-button:not([tabindex]){-webkit-user-select:none;user-select:none}.rcb-chat-input-container [onclick],.rcb-chat-input-container [role=button],.rcb-chat-input-container div[style*=cursor],.rcb-chat-input-container svg:last-child,.rcb-chat-input-container>div:last-child{tabindex:0!important;cursor:pointer!important}.rcb-chat-footer{margin-top:4px!important;padding-top:0!important}.rcb-chat-footer-container{align-items:center!important;display:flex!important;margin-top:4px!important;padding-top:4px!important}.rcb-chat-footer-container button{order:1!important}.rcb-chat-footer-container a[href*=qa-bot-core]{tab-index:0!important;order:2!important}.rcb-chat-footer-container a[href*=feedback]{tab-index:0!important;order:3!important}@media (prefers-contrast:high){.rcb-chat-window a{background-color:#fff!important;border:1px solid #000!important;color:#000!important}}@media (prefers-reduced-motion:reduce){*{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}}.rcb-chat-input-textarea{-webkit-user-select:text!important;user-select:text!important}.rcb-chat-body-container,.rcb-chat-input-textarea,.rcb-chat-window{touch-action:pan-y!important}.embedded-qa-bot,.rcb-chat-window{-webkit-overflow-scrolling:touch!important}.embedded-qa-bot .rcb-chat-input-textarea{touch-action:pan-y!important;-webkit-user-select:text!important;user-select:text!important}.embedded-qa-bot .rcb-chat-body-container,.embedded-qa-bot .rcb-chat-window{touch-action:pan-y!important}.rcb-chat-header-container{background:#1a5b6e!important;background:var(--primaryColor,#1a5b6e)!important;background:linear-gradient(135deg,#1a5b6e,#107180)!important;background:linear-gradient(135deg,var(--primaryColor,#1a5b6e) 0,var(--secondaryColor,#107180) 100%)!important}.rcb-toggle-button{align-items:center!important;background:#1a5b6e!important;background:var(--primaryColor,#1a5b6e)!important;display:flex!important;justify-content:center!important}.rcb-toggle-button svg{stroke:#fff!important;color:#fff!important}.rcb-toggle-button *,.rcb-toggle-button img,.rcb-toggle-button svg,.rcb-toggle-button>*{box-sizing:border-box!important;height:50px!important;left:0!important;margin:0 auto!important;max-height:50px!important;max-width:50px!important;min-height:50px!important;min-width:50px!important;padding:2px!important;position:relative!important;top:0!important;width:50px!important}.rcb-send-button{background-color:#1a5b6e!important;background-color:var(--primaryColor,#1a5b6e)!important}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;margin:0}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}.demo-container{background-color:#f5f5f5;border-bottom:1px solid #ddd;margin-bottom:20px;padding:20px}.demo-header{align-items:center;display:flex;justify-content:space-between;margin-bottom:30px}.demo-title{font-size:1.4em;font-weight:700}.demo-code-toggle{background-color:#f0f0f0;border:1px solid #ddd;border-radius:4px;cursor:pointer;font-size:.9em;padding:6px 12px}.demo-code-toggle:hover{background-color:#e8e8e8}.demo-main{display:flex;flex-direction:column;gap:30px}.demo-columns{grid-gap:30px;align-items:start;display:grid;gap:30px;grid-template-columns:repeat(3,1fr)}@media (max-width:768px){.demo-columns{gap:20px;grid-template-columns:1fr}}.demo-column{background-color:#f8f8f8;border-radius:6px;min-height:300px;padding:20px}.demo-code-section h2,.demo-column h2,.demo-config-section h2,.demo-controls-section h2{border-bottom:1px solid #e0e0e0;color:#333;font-size:1.1em;font-weight:600;margin:0 0 20px;padding-bottom:10px}.demo-controls{grid-gap:40px;display:grid;gap:40px;grid-template-columns:repeat(3,1fr)}@media (max-width:768px){.demo-controls{grid-template-columns:1fr}}.demo-section h3{color:#555;font-size:1em;font-weight:600;margin:0 0 12px}.demo-checkbox{align-items:center;display:flex;font-size:.95em;gap:8px;margin-bottom:12px}.demo-checkbox:last-child{margin-bottom:0}.demo-checkbox input{margin:0}.demo-prop-name{background-color:#f6f8fa;border-radius:3px;color:#0969da;font-family:monospace;font-size:.9em;font-weight:500;margin-left:8px;padding:2px 6px}.demo-message-section h3{color:#555;font-size:1em;font-weight:600;margin:0 0 12px}.demo-send-button{background-color:#1a5b6e;border:none;border-radius:4px;color:#fff;cursor:pointer;font-size:.9em;padding:8px 16px}.demo-send-button:disabled{background-color:#ccc;cursor:not-allowed}.demo-info{background-color:#e8f4f8;border-radius:4px;color:#555;font-size:.85em;margin-top:15px;padding:12px}.demo-field{margin-bottom:12px}.demo-field:last-child{margin-bottom:0}.demo-field label{align-items:center;color:#333;display:flex;font-size:.95em;font-weight:500;gap:8px;margin-bottom:6px}.demo-field label .demo-prop-name{margin-left:0}.demo-input{border:1px solid #ccc;border-radius:4px;box-sizing:border-box;font-size:.9em;max-width:250px;padding:6px 10px;width:100%}.demo-input:focus{border-color:#1a5b6e;box-shadow:0 0 0 2px #1a5b6e1a;outline:none}.demo-help{color:#666;font-size:.85em;font-style:italic;line-height:1.4;margin:0 0 12px}.demo-method-signature{background-color:#f6f8fa;border:1px solid #e1e4e8;border-radius:4px;margin:0 0 16px;padding:8px 12px}.demo-method-signature code{color:#0969da;font-size:.9em}.config-item{display:flex;flex-direction:column;gap:4px;margin-bottom:20px}.config-item:last-child{margin-bottom:0}.config-prop{color:#0969da;font-family:monospace;font-size:.95em;font-weight:600}.config-value{background-color:#fff;border:1px solid #e1e4e8;border-radius:3px;color:#032f62;display:inline-block;font-family:monospace;font-size:.9em;padding:4px 8px;width:-webkit-fit-content;width:fit-content}.config-desc{color:#666;font-size:.85em}.demo-code-section{background-color:#2d2d2d;border-radius:6px;color:#fff;padding:20px}.demo-code{background-color:#1e1e1e;border-radius:4px;margin:0;overflow-x:auto;padding:15px}.demo-code code{color:#d4d4d4;font-family:Monaco,Menlo,Ubuntu Mono,monospace;font-size:.9em;line-height:1.5}.rcb-chat-header-container{border-bottom:1px solid #ccc;color:#fff;display:flex;justify-content:space-between;max-height:55px;padding:12px}.rcb-chat-header{display:flex;flex-direction:row}.rcb-bot-avatar{background-size:cover;border-radius:50%;height:30px;margin-right:12px;width:30px}.rcb-message-prompt-container.visible{align-items:center;animation:rcb-animation-pop-in .3s ease-in-out;bottom:0;display:flex;justify-content:center;margin:auto;opacity:1;pointer-events:auto;position:-webkit-sticky;position:sticky}.rcb-message-prompt-container.hidden{height:0;opacity:0;pointer-events:none;visibility:hidden}.rcb-message-prompt-text{background-color:#fff;border:.5px solid #adadad;border-radius:20px;color:#adadad;cursor:pointer;font-size:12px;padding:6px 12px;transition:color .3s ease,border-color .3s ease;z-index:9999}.rcb-message-prompt-container.hidden .rcb-message-prompt-text{padding:0}.rcb-user-message-container{display:flex;flex-direction:row;justify-content:right}.rcb-user-message{border-radius:22px;font-size:15px;height:-webkit-fit-content;height:fit-content;margin-right:16px;margin-top:8px;min-height:20px;overflow:auto;overflow-wrap:anywhere;padding:12px 16px;text-align:right;white-space:pre-wrap;width:-webkit-fit-content;width:fit-content}.rcb-user-message-offset{margin-right:50px}.rcb-user-message-entry{animation:rcb-animation-user-message-entry .3s ease-in backwards}.rcb-message-user-avatar{background-size:cover;border-radius:50%;height:40px;margin-left:-10px;margin-right:6px;margin-top:9px;width:40px}.rcb-bot-message-container{display:flex;flex-direction:row}.rcb-bot-message{border-radius:22px;font-size:15px;height:-webkit-fit-content;height:fit-content;margin-left:16px;margin-top:8px;min-height:20px;overflow:auto;overflow-wrap:anywhere;padding:12px 16px;text-align:left;white-space:pre-wrap;width:-webkit-fit-content;width:fit-content}.rcb-bot-message-offset{margin-left:50px}.rcb-bot-message-entry{animation:rcb-animation-bot-message-entry .3s ease-in backwards}.rcb-message-bot-avatar{background-size:cover;border-radius:50%;height:40px;margin-left:6px;margin-right:-10px;margin-top:9px;width:40px}.rcb-typing-indicator{align-items:center;display:flex}.rcb-dot{animation:rcb-animation-bot-typing 1s infinite;background-color:#ccc;border-radius:50%;height:8px;margin-right:4px;width:8px}.rcb-dot:nth-child(2){animation-delay:.2s}.rcb-dot:nth-child(3){animation-delay:.4s}.rcb-chat-body-container{height:100%;overflow-x:hidden;overflow-y:scroll;padding-bottom:16px;position:relative;touch-action:pan-y;width:100%}.rcb-chat-body-container::-webkit-scrollbar-track{background-color:#f1f1f1}.rcb-chat-body-container::-webkit-scrollbar-thumb{background-color:#ddd;border-radius:4px}.rcb-chat-body-container::-webkit-scrollbar-thumb:hover{background-color:#cfcfcf}.rcb-chat-body-container::-webkit-scrollbar-corner{background-color:#f1f1f1}.rcb-checkbox-container{display:flex;flex-wrap:wrap;gap:10px;margin-left:16px;padding-top:12px}.rcb-checkbox-offset{margin-left:50px!important}.rcb-checkbox-row-container{align-items:center;animation:rcb-animations-checkboxes-entry .5s ease-out;background-color:#fff;border-radius:10px;border-style:solid;border-width:.5px;cursor:pointer;display:flex;gap:5px;max-height:32px;min-height:30px;overflow:hidden;width:80%}.rcb-checkbox-row-container:hover{box-shadow:0 0 5px #0003}.rcb-checkbox-row{align-items:center;cursor:pointer;display:inline-flex;margin-left:10px}.rcb-checkbox-mark{align-items:center;background-color:#f2f2f2;border:none;border-radius:50%;cursor:pointer;display:flex;height:20px;justify-content:center;margin-right:10px;transition:all .3s ease;width:20px}.rcb-checkbox-mark:hover{background-color:#c2c2c2}.rcb-checkbox-mark:before{content:"✓";transition:all .3s ease}.rcb-checkbox-label{font-size:14px}.rcb-checkbox-next-button{align-items:center;animation:rcb-animations-checkboxes-entry .5s ease-out;background-color:#fff;border-radius:10px;border-style:solid;border-width:.5px;cursor:pointer;display:inline-block;font-size:24px;max-height:32px;min-height:30px;text-align:center;width:80%}.rcb-checkbox-next-button:before{content:"→"}.rcb-checkbox-next-button:hover{box-shadow:0 0 5px #0003}.rcb-options-container{display:flex;flex-wrap:wrap;gap:10px;margin-left:16px;max-width:70%;padding-top:12px}.rcb-options-offset{margin-left:50px!important}.rcb-options{align-items:center;animation:rcb-animation-options-entry .5s ease-out;border-radius:20px;border-style:solid;border-width:.5px;cursor:pointer;display:inline-flex;font-size:14px;justify-content:center;overflow:hidden;padding:10px 20px;transition:background-color .3s ease}.rcb-options:hover{box-shadow:0 0 5px #0003}.rcb-line-break-container{align-items:center;display:flex;justify-content:center;max-height:45px;padding-bottom:5px;padding-top:10px}.rcb-line-break-text{color:#adadad;font-size:12px;padding:6px 12px}.rcb-spinner-container{align-items:center;display:flex;justify-content:center;max-height:45px;min-height:35px;padding-bottom:5px;padding-top:10px}.rcb-spinner{animation:rcb-animation-spin 1s linear infinite;border:4px solid #f3f3f3;border-radius:50%;height:22px;width:22px}.rcb-chat-input{align-items:center;background-color:#fff;border-top:1px solid #ccc;display:flex;padding:8px 16px}.rcb-chat-input::placeholder{color:#999}.rcb-chat-input-textarea{background-color:#fff;border:none;border-radius:4px;color:#000;flex:1 1;font-family:inherit;font-size:16px;height:auto;min-height:38px;outline:none;overflow-y:scroll;padding:8px;resize:none;touch-action:none}.rcb-chat-input-textarea::-webkit-scrollbar,.rcb-chat-input-textarea::-webkit-scrollbar-thumb{background-color:initial}.rcb-chat-input-textarea::-webkit-scrollbar-thumb:hover{background-color:initial}.rcb-chat-input-char-counter{font-size:14px;margin-left:8px;margin-top:3px}.rcb-chat-footer-container{align-items:flex-end;background-color:#f2f2f2;border-top:1px solid #ccc;color:#000;display:flex;font-size:12px;justify-content:space-between;max-height:55px;padding:12px 16px 8px 10px}.rcb-chat-footer,.rcb-toggle-button{display:flex;flex-direction:row}.rcb-toggle-button{border:none;border-radius:50%;bottom:20px;box-shadow:0 2px 4px #0003;cursor:pointer;height:75px;position:fixed;right:20px;width:75px;z-index:9999}.rcb-toggle-button.rcb-button-hide{animation:rcb-animation-collapse .3s ease-in-out forwards;opacity:0;visibility:hidden}.rcb-toggle-button.rcb-button-show{animation:rcb-animation-expand .3s ease-in-out forwards;opacity:1;visibility:visible}.rcb-toggle-icon{background-position:50%;background-repeat:no-repeat;background-size:cover;border-radius:inherit;height:100%;margin:auto;width:100%}.rcb-badge,.rcb-toggle-icon{align-items:center;display:flex;justify-content:center}.rcb-badge{background-color:red;border-radius:50%;color:#fff;height:25px;position:absolute;right:-6px;top:-6px;width:25px}.rcb-chat-tooltip{border-radius:20px;box-shadow:0 2px 6px #0003;cursor:pointer;font-size:20px;padding:16px;position:fixed;transition:transform .3s ease;white-space:nowrap;z-index:9999}.rcb-chat-tooltip-tail{border-style:solid;border-width:10px 0 10px 10px;content:"";margin-top:-10px;position:absolute;right:-10px;top:50%}.rcb-chat-tooltip.rcb-tooltip-hide{animation:rcb-animation-tooltip-out .5s ease-in-out;opacity:0;visibility:hidden}.rcb-chat-tooltip.rcb-tooltip-show{animation:rcb-animation-tooltip-in .5s ease-in-out;opacity:1;visibility:visible}.rcb-toast-prompt{animation:rcb-animation-pop-in .3s ease-in-out;background-color:#fff;border:.5px solid #7a7a7a;border-radius:5px;color:#7a7a7a;cursor:pointer;font-size:12px;margin-top:6px;padding:6px 12px;text-align:center;transition:color .3s ease,border-color .3s ease;width:100%;z-index:9999}.rcb-toast-prompt-container{align-items:center;animation:popIn .3s ease-in-out;bottom:0;display:flex;flex-direction:column;justify-content:flex-end;left:50%;margin:200 auto auto;opacity:1;pointer-events:auto;position:absolute;transform:translate(-50%)}.rcb-media-display-image-container,.rcb-media-display-video-container{border-radius:22px;margin-right:16px;margin-top:8px;padding:16px;width:-webkit-fit-content;width:fit-content}.rcb-media-display-offset{margin-right:50px!important}.rcb-media-display-image{border-radius:22px;height:auto;object-fit:cover;width:100%}.rcb-media-display-video{background-color:#000;border-radius:22px;height:auto;width:100%}.rcb-media-display-audio{border-radius:22px;height:auto;margin-right:16px;margin-top:8px;width:100%}.rcb-media-entry{animation:rcb-animation-user-message-entry .3s ease-in backwards}.rcb-attach-button-disabled,.rcb-attach-button-enabled{background-size:cover;border-radius:6px;display:inline-block;height:30px;position:relative;text-align:center;width:30px}.rcb-attach-button-disabled input[type=file],.rcb-attach-button-enabled input[type=file]{display:none;height:100%;position:absolute;width:100%}.rcb-attach-button-enabled{cursor:pointer}.rcb-attach-button-disabled{opacity:.5}.rcb-attach-button-enabled:after{background-color:#0000001a;border-radius:50%;content:"";height:0;left:50%;opacity:0;position:absolute;top:50%;transform:translate(-50%,-50%);transition:width .2s ease-out,height .2s ease-out,opacity .2s ease-out;width:0}.rcb-attach-button-enabled:hover:after{height:130%;opacity:1;width:130%}.rcb-attach-icon-disabled,.rcb-attach-icon-enabled{background-repeat:no-repeat;background-size:cover;display:inline-block;height:24px;margin-top:2px;transition:background-image .3s ease;width:24px}.rcb-attach-icon-enabled{cursor:pointer}.rcb-emoji-button-disabled,.rcb-emoji-button-enabled{background-size:cover;border-radius:6px;cursor:pointer;display:inline-block;height:30px;position:relative;text-align:center;width:30px}.rcb-emoji-icon-disabled,.rcb-emoji-icon-enabled{background-repeat:no-repeat;background-size:cover;display:inline-block;font-size:20px;height:24px;margin-top:2px;position:relative;width:24px}.rcb-emoji-icon-enabled{cursor:pointer}.rcb-emoji-icon-disabled{opacity:.5}.rcb-emoji-button-enabled:after{background-color:#0000001a;border-radius:50%;content:"";height:0;left:50%;opacity:0;position:absolute;top:50%;transform:translate(-50%,-50%);transition:width .2s ease-out,height .2s ease-out,opacity .2s ease-out;width:0}.rcb-emoji-button-enabled:hover:after{height:130%;opacity:1;width:130%}.rcb-emoji-button-popup{background-color:#fff;border:1px solid #ccc;border-radius:4px;box-shadow:0 2px 4px #0003;max-height:200px;overflow-y:auto;padding:8px;position:absolute;transform:translateY(calc(-100% - 30px));width:158px}.rcb-emoji{cursor:pointer;font-size:24px;padding:3px;transition:transform .2s ease-in-out}.rcb-emoji:hover{transform:scale(1.2)}.rcb-audio-icon{background-size:cover;border:none;cursor:pointer;display:inline-block;height:30px;margin-left:5px;position:relative;width:30px}.rcb-audio-icon:after{background-color:#0000001a;border-radius:50%;content:"";height:0;left:50%;opacity:0;position:absolute;top:50%;transform:translate(-50%,-50%);transition:width .2s ease-out,height .2s ease-out,opacity .2s ease-out;width:0}.rcb-audio-icon:hover:after{height:130%;opacity:1;width:130%}.rcb-close-chat-icon{background-size:cover;border:none;cursor:pointer;display:inline-block;height:30px;margin-left:5px;position:relative;width:30px}.rcb-close-chat-icon:after{background-color:#0000001a;border-radius:50%;content:"";height:0;left:50%;opacity:0;position:absolute;top:50%;transform:translate(-50%,-50%);transition:width .2s ease-out,height .2s ease-out,opacity .2s ease-out;width:0}.rcb-close-chat-icon:hover:after{height:130%;opacity:1;width:130%}.rcb-notification-icon{background-size:cover;border:none;cursor:pointer;display:inline-block;height:30px;margin-left:5px;position:relative;width:30px}.rcb-notification-icon:after{background-color:#0000001a;border-radius:50%;content:"";height:0;left:50%;opacity:0;position:absolute;top:50%;transform:translate(-50%,-50%);transition:width .2s ease-out,height .2s ease-out,opacity .2s ease-out;width:0}.rcb-notification-icon:hover:after{height:130%;opacity:1;width:130%}.rcb-voice-button-disabled,.rcb-voice-button-enabled{align-items:center;background-color:#fff;border-radius:4px;box-shadow:0 0 3px #0000004d;cursor:pointer;display:inline-flex;height:32px;justify-content:center;margin-left:8px;text-transform:uppercase;transition:all .3s ease;width:32px}.rcb-voice-button-enabled{border:1px solid red;box-shadow:0 0 3px #ff000080}.rcb-voice-button-enabled:hover{border:1px solid #3d0000}.rcb-voice-button-disabled{border:1px;border-color:#0003;border-style:solid}.rcb-voice-button-disabled:hover{box-shadow:0 0 3px #8a0000}.rcb-voice-icon{background-position:50%;background-repeat:no-repeat;background-size:cover;background-size:contain;height:60%;object-fit:cover;width:60%}.rcb-voice-icon.on{animation:rcb-animation-ping 1s infinite}.rcb-send-button{border:none;border-radius:4px;box-shadow:0 0 3px #0000004d;cursor:pointer;display:inline-flex;height:32px;justify-content:center;margin-left:8px;text-transform:uppercase;transition:background-color .3s ease;width:51px}.rcb-send-icon{background-position:50%;background-repeat:no-repeat;background-size:cover;background-size:contain;height:50%;object-fit:cover;transform:translateY(20%);width:50%}.rcb-view-history-container{align-items:center;display:flex;justify-content:center;max-height:45px;min-height:35px;padding-bottom:5px;padding-top:10px}.rcb-view-history-button{align-items:center;background-color:#fff;border:.5px solid #adadad;border-radius:20px;color:#adadad;cursor:pointer;display:inline-flex;font-size:12px;justify-content:center;max-width:60%;padding:6px 12px;transition:color .3s ease,border-color .3s ease}.rcb-view-history-button>p{margin:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.rcb-chatbot-global{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:1.5;z-index:9999}.rcb-chat-window{background-color:#fff;border-radius:10px;bottom:20px;box-shadow:0 2px 4px #0003;display:flex;flex-direction:column;height:550px;overflow:hidden;position:fixed;right:20px;transition:all .3s ease;width:375px}.rcb-window-embedded .rcb-chat-window{bottom:auto;opacity:1;position:relative;right:auto;visibility:visible}.rcb-window-open .rcb-chat-window{animation:rcb-animation-expand .3s ease-in-out forwards;opacity:1;visibility:visible}.rcb-window-close .rcb-chat-window{animation:rcb-animation-collapse .3s ease-in-out forwards;opacity:0;visibility:hidden}@keyframes rcb-animation-expand{0%{opacity:0;transform:translate(100%,100%) scale(0)}to{opacity:1;transform:translate(0) scale(1)}}@keyframes rcb-animation-collapse{0%{opacity:1;transform:translate(0) scale(1)}to{opacity:0;transform:translate(100%,100%) scale(0)}}@keyframes rcb-animation-ping{0%{filter:brightness(100%);opacity:1}50%{filter:brightness(50%);opacity:.8}}@keyframes rcb-animation-bot-message-entry{0%{opacity:0;transform:translate(-100%,50%) scale(0)}to{opacity:1;transform:translate(0) scale(1)}}@keyframes rcb-animation-user-message-entry{0%{opacity:0;transform:translate(100%,50%) scale(0)}to{opacity:1;transform:translate(0) scale(1)}}@keyframes rcb-animation-bot-typing{0%{opacity:.4}50%{opacity:1}to{opacity:.4}}@keyframes rcb-animation-pop-in{0%{opacity:0;transform:scale(.8)}70%{opacity:1;transform:scale(1.1)}to{transform:scale(1)}}@keyframes rcb-animations-checkboxes-entry{0%{opacity:0;transform:translate(-100%)}to{opacity:1;transform:translate(0)}}@keyframes rcb-animation-options-entry{0%{opacity:0;transform:scale(0)}to{opacity:1;transform:scale(1)}}@keyframes rcb-animation-tooltip-in{0%{opacity:0;transform:translateY(-5px)}to{opacity:1;transform:translateY(0)}}@keyframes rcb-animation-tooltip-out{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(-5px)}}@keyframes rcb-animation-spin{0%{transform:rotate(0)}to{transform:rotate(1turn)}}
2
+ /*# sourceMappingURL=main.css.map*/
@@ -0,0 +1 @@
1
+ {"version":3,"file":"static/css/main.css","mappings":"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","sources":["styles/index.css","index.css","../node_modules/react-chatbotify/dist/style.css"],"sourcesContent":["/**\n * QA Bot Styles - Consolidated\n *\n * All styles for the QA Bot component in one place.\n * No @import indirection - everything is directly included.\n */\n\n/* General React Chatbotify (rcb) styles */\n\n.rcb-chat-window {\n width: 550px !important;\n max-width: calc(100%);\n height: 800px !important;\n max-height: 80vh !important;\n}\n\n\n.rcb-chat-window .rcb-chat-header {\n display: flex;\n flex-direction: row;\n align-items: center;\n font-weight: 700;\n}\n\n.rcb-chat-window a {\n font-weight: 700;\n color: #000000;\n text-decoration: underline;\n}\n\n.rcb-chat-window a:hover {\n color: #107180;\n}\n\n.rcb-chat-window .rcb-bot-message a {\n text-decoration: none;\n color: #ffffff;\n}\n\n.rcb-chat-window .rcb-bot-message a:hover {\n text-decoration: underline;\n}\n\n.rcb-chat-window .rcb-chat-input-textarea {\n overflow-y: auto;\n}\n\n.rcb-chat-window .rcb-chat-footer-container {\n font-size: 10px;\n}\n\n.qa-bot .user-login-icon {\n display: none !important;\n}\n\n.qa-bot.bot-logged-in .user-login-icon {\n display: flex !important;\n transform: scale(1.3) translateY(-2px);\n}\n\n/* Embedded bot styles */\n.embedded-qa-bot .rcb-chat-window {\n width: 100% !important;\n max-width: 100%;\n}\n\n.qa-bot.hidden {\n display: none;\n}\n\n.embedded-qa-bot .rcb-bot-message,\n.embedded-qa-bot .rcb-user-message {\n max-width: 90% !important;\n word-break: break-word;\n}\n\n.embedded-qa-bot .rcb-chat-input-textarea {\n width: 100% !important;\n}\n\n.qa-bot-container {\n width: 100%;\n max-width: 100%;\n}\n\n/* unused \"ringing phone\" effect for the tooltip */\n@keyframes phone-ring {\n 0% {\n transform: translateX(0) translateY(0) rotate(0deg);\n }\n /* First ring - quick shake */\n 2% {\n transform: translateX(0) translateY(-8px) rotate(-2deg);\n }\n 4% {\n transform: translateX(0) translateY(-6px) rotate(2deg);\n }\n 6% {\n transform: translateX(0) translateY(-8px) rotate(-1deg);\n }\n 8% {\n transform: translateX(0) translateY(-6px) rotate(1deg);\n }\n 10% {\n transform: translateX(0) translateY(-8px) rotate(-2deg);\n }\n 12% {\n transform: translateX(0) translateY(-6px) rotate(2deg);\n }\n /* Settle down */\n 20% {\n transform: translateX(0) translateY(0) rotate(0deg);\n }\n 30% {\n transform: translateX(0) translateY(0) rotate(0deg);\n }\n 40% {\n transform: translateX(0) translateY(0) rotate(0deg);\n }\n 49% {\n transform: translateX(0) translateY(0) rotate(0deg);\n }\n /* Second ring - quick shake */\n 50% {\n transform: translateX(0) translateY(-8px) rotate(-2deg);\n }\n 52% {\n transform: translateX(0) translateY(-6px) rotate(2deg);\n }\n 54% {\n transform: translateX(0) translateY(-8px) rotate(-1deg);\n }\n 56% {\n transform: translateX(0) translateY(-6px) rotate(1deg);\n }\n 58% {\n transform: translateX(0) translateY(-8px) rotate(-2deg);\n }\n 60% {\n transform: translateX(0) translateY(-6px) rotate(2deg);\n }\n /* Final settle */\n 70% {\n transform: translateX(0) translateY(0) rotate(0deg);\n }\n 100% {\n transform: translateX(0) translateY(0) rotate(0deg);\n }\n}\n\n/* Responsive styles */\n@media (max-width: 768px) {\n /* Mobile tablet breakpoint */\n .rcb-chat-window {\n width: 550px !important;\n max-width: calc(100vw - 40px) !important;\n max-height: calc(100vh - 100px) !important;\n }\n\n .embedded-chat-container.open {\n height: 400px;\n }\n\n .embedded-chat-closed {\n height: 40px;\n font-size: 14px;\n }\n\n .embedded-chat-open-btn {\n padding: 3px 10px;\n font-size: 12px;\n }\n\n /* Adjust message bubbles for smaller screens */\n .rcb-bot-message,\n .rcb-user-message {\n max-width: 85% !important;\n }\n\n /* Make input area touch-friendly */\n .rcb-chat-input-textarea {\n font-size: 16px !important; /* Prevents zoom on iOS */\n min-height: 44px !important; /* Apple's recommended touch target */\n }\n\n /* Header adjustments */\n .rcb-chat-header {\n padding: 12px 16px !important;\n }\n}\n\n@media (max-width: 480px) {\n /* Mobile phone breakpoint */\n .rcb-chat-window {\n width: calc(100vw - 20px) !important;\n max-width: calc(100vw - 20px) !important;\n max-height: calc(100vh - 80px) !important;\n left: 10px !important;\n right: 10px !important;\n bottom: 10px !important;\n }\n\n .embedded-chat-container.open {\n height: 350px;\n }\n\n /* Tighter message spacing on small screens */\n .rcb-bot-message,\n .rcb-user-message {\n max-width: 90% !important;\n margin-bottom: 8px !important;\n }\n\n /* Compact header for small screens */\n .rcb-chat-header {\n padding: 8px 12px !important;\n font-size: 14px !important;\n }\n\n /* Smaller chat button on mobile */\n .rcb-chat-button {\n width: 50px !important;\n height: 50px !important;\n bottom: 20px !important;\n right: 20px !important;\n }\n\n /* Adjust footer for mobile */\n .rcb-chat-footer-container {\n font-size: 9px !important;\n padding: 8px 12px !important;\n }\n}\n\n@media (max-width: 360px) {\n /* Very small mobile screens */\n .rcb-chat-window {\n width: calc(100vw - 10px) !important;\n max-width: calc(100vw - 10px) !important;\n left: 5px !important;\n right: 5px !important;\n }\n\n .rcb-chat-header {\n padding: 6px 8px !important;\n font-size: 13px !important;\n }\n}\n\n/* Enhanced inline checkbox styling */\n.rcb-checkbox-container {\n display: flex !important;\n flex-wrap: wrap !important;\n gap: 8px !important;\n margin-left: 16px !important;\n padding-top: 12px !important;\n max-width: 100% !important;\n}\n\n.rcb-checkbox-row-container {\n display: flex !important;\n align-items: center !important;\n background-color: #ffffff !important;\n border: 1px solid #d0d0d0 !important;\n border-radius: 6px !important;\n cursor: pointer !important;\n padding: 8px 12px !important;\n margin: 0 !important;\n min-height: auto !important;\n max-height: auto !important;\n width: auto !important;\n flex: 0 0 auto !important;\n transition: all 0.2s ease !important;\n font-size: 14px !important;\n font-weight: 400 !important;\n color: #107180 !important;\n text-align: center !important;\n box-sizing: border-box !important;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n}\n\n.rcb-checkbox-row-container:hover {\n background-color: #e8f4f8 !important;\n border-color: #107180 !important;\n transform: translateY(-1px) !important;\n box-shadow: 0 2px 4px rgba(16, 113, 128, 0.2) !important;\n}\n\n.rcb-checkbox-row-container[data-checked=\"true\"] {\n background-color: #107180 !important;\n border-color: #107180 !important;\n color: white !important;\n}\n\n.rcb-checkbox-row {\n margin-left: 0px !important;\n}\n\n.rcb-checkbox-mark {\n width: 14px !important;\n height: 14px !important;\n margin-right: 6px !important;\n}\n\n.rcb-checkbox-label {\n font-size: 13px !important;\n margin: 0 !important;\n white-space: nowrap !important;\n}\n\n.rcb-checkbox-next-button {\n background-color: #ffffff !important;\n border: 1px solid #d0d0d0 !important;\n border-radius: 6px !important;\n cursor: pointer !important;\n padding: 8px 12px !important;\n margin: 0 !important;\n min-height: auto !important;\n max-height: auto !important;\n width: auto !important;\n flex: 0 0 auto !important;\n transition: all 0.2s ease !important;\n font-size: 14px !important;\n font-weight: 400 !important;\n color: var(--secondaryColor, #107180) !important;\n text-align: center !important;\n box-sizing: border-box !important;\n line-height: 24px !important;\n display: flex !important;\n align-items: center !important;\n justify-content: center !important;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n}\n\n.rcb-checkbox-next-button:hover {\n background-color: #e8f4f8 !important;\n border-color: var(--secondaryColor, #107180) !important;\n transform: translateY(-1px) !important;\n box-shadow: 0 2px 4px rgba(16, 113, 128, 0.2) !important;\n}\n\n/* Screen reader only class for accessibility */\n.sr-only {\n position: absolute !important;\n width: 1px !important;\n height: 1px !important;\n padding: 0 !important;\n margin: -1px !important;\n overflow: hidden !important;\n clip: rect(0, 0, 0, 0) !important;\n white-space: nowrap !important;\n border: 0 !important;\n}\n\n/* Focus styles for better accessibility */\n.rcb-chat-input-textarea:focus {\n outline: 2px solid #107180 !important;\n outline-offset: 2px !important;\n}\n\n.rcb-chat-input-send-button:focus {\n outline: 2px solid #107180 !important;\n outline-offset: 2px !important;\n}\n\n/* Fix horizontal scroll bar in user messages */\n.rcb-user-message {\n overflow: hidden !important;\n word-wrap: break-word !important;\n word-break: break-word !important;\n}\n\n/* Enhanced accessibility styles */\n*:focus-visible {\n outline: 2px solid #107180 !important;\n outline-offset: 2px !important;\n}\n\n/* Keyboard navigation for chatbot options */\n.rcb-options-container {\n display: flex !important;\n flex-direction: row !important;\n flex-wrap: wrap !important;\n gap: 8px !important;\n margin: 16px 16px !important;\n padding: 0 !important;\n}\n\n/* Style the actual React ChatBotify option divs */\n.rcb-options {\n /* Restore original button-like appearance */\n border: 1px solid #d0d0d0 !important;\n outline: none !important;\n background-color: #ffffff !important;\n border-radius: 6px !important;\n padding: 8px 12px !important;\n cursor: pointer !important;\n transition: all 0.2s ease !important;\n text-align: center !important;\n font-size: 14px !important;\n font-weight: 400 !important;\n color: var(--secondaryColor, #107180) !important;\n width: auto !important;\n flex: 0 0 auto !important;\n box-sizing: border-box !important;\n /* Make divs focusable */\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n}\n\n.rcb-options:hover {\n background-color: #e8f4f8 !important;\n border-color: var(--secondaryColor, #107180) !important;\n transform: translateY(-1px) !important;\n box-shadow: 0 2px 4px rgba(16, 113, 128, 0.2) !important;\n}\n\n.rcb-options:focus,\n.rcb-options:focus-visible,\n.rcb-options.keyboard-focused,\n.rcb-checkbox-row-container:focus,\n.rcb-checkbox-row-container:focus-visible,\n.rcb-checkbox-row-container.keyboard-focused,\n.rcb-checkbox-next-button:focus,\n.rcb-checkbox-next-button:focus-visible,\n.rcb-checkbox-next-button.keyboard-focused {\n outline: none !important;\n background-color: #e8f4f8 !important;\n border-color: var(--secondaryColor, #107180) !important;\n}\n\n.rcb-options:active {\n background-color: var(--secondaryColor, #107180) !important;\n border-color: var(--secondaryColor, #107180) !important;\n color: white !important;\n transform: translateY(0) !important;\n}\n\n/* Keyboard navigation hints */\n.keyboard-nav-hint {\n font-size: 12px !important;\n color: #666 !important;\n margin-bottom: 8px !important;\n font-style: italic !important;\n}\n\n/* Hide navigation hint for screen readers since they have their own navigation */\n@media (prefers-reduced-motion: reduce) {\n .keyboard-nav-hint {\n display: none !important;\n }\n}\n\n/* Focus trap and navigation for option buttons */\n.rcb-options-container button[tabindex=\"0\"],\n.rcb-options-container [role=\"button\"][tabindex=\"0\"] {\n position: relative !important;\n}\n\n.rcb-options-container button[tabindex=\"0\"]::after,\n.rcb-options-container [role=\"button\"][tabindex=\"0\"]::after {\n content: \"←\" !important;\n position: absolute !important;\n right: 12px !important;\n top: 50% !important;\n transform: translateY(-50%) !important;\n font-size: 16px !important;\n color: var(--secondaryColor, #107180) !important;\n opacity: 0 !important;\n transition: opacity 0.2s ease !important;\n}\n\n.rcb-options-container button[tabindex=\"0\"]:focus::after,\n.rcb-options-container [role=\"button\"][tabindex=\"0\"]:focus::after {\n opacity: 1 !important;\n}\n\n/* Make send button div focusable and accessible */\n.rcb-chat-input-send-button {\n pointer-events: auto !important;\n opacity: 1 !important;\n visibility: visible !important;\n cursor: pointer !important;\n}\n\n/* Force tabindex on send button using CSS */\n.rcb-chat-input-send-button:not([tabindex]) {\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n}\n\n/* Target any clickable element in the input container that might be the send button */\n.rcb-chat-input-container [onclick],\n.rcb-chat-input-container [role=\"button\"],\n.rcb-chat-input-container div[style*=\"cursor\"],\n.rcb-chat-input-container svg:last-child,\n.rcb-chat-input-container > div:last-child {\n tabindex: 0 !important;\n cursor: pointer !important;\n}\n\n/* Move New Chat button closer to input area */\n.rcb-chat-footer {\n margin-top: 4px !important;\n padding-top: 0px !important;\n}\n\n.rcb-chat-footer-container {\n margin-top: 4px !important;\n padding-top: 4px !important;\n display: flex !important;\n align-items: center !important;\n}\n\n/* Tab order for footer elements */\n.rcb-chat-footer-container button {\n order: 1 !important;\n}\n\n/* TODO - figure out correct selector for footer */\n.rcb-chat-footer-container a[href*=\"qa-bot-core\"] {\n order: 2 !important;\n tab-index: 0 !important;\n}\n\n.rcb-chat-footer-container a[href*=\"feedback\"] {\n order: 3 !important;\n tab-index: 0 !important;\n}\n\n/* High contrast mode support */\n@media (prefers-contrast: high) {\n .rcb-chat-window a {\n color: #000000 !important;\n background-color: #ffffff !important;\n border: 1px solid #000000 !important;\n }\n}\n\n/* Reduced motion support */\n@media (prefers-reduced-motion: reduce) {\n * {\n animation-duration: 0.01ms !important;\n animation-iteration-count: 1 !important;\n transition-duration: 0.01ms !important;\n }\n}\n\n/* Fix mobile scrolling issues - especially Safari zoom-instead-of-scroll */\n.rcb-chat-input-textarea {\n touch-action: pan-y !important;\n user-select: text !important;\n}\n\n.rcb-chat-body-container {\n touch-action: pan-y !important;\n}\n\n/* Allow page scrolling even when chat is present */\n.rcb-chat-window {\n touch-action: pan-y !important;\n}\n\n/* Safari-specific fixes */\n.rcb-chat-window,\n.embedded-qa-bot {\n -webkit-overflow-scrolling: touch !important;\n}\n\n/* Specific fixes for embedded qa-bot */\n.embedded-qa-bot .rcb-chat-input-textarea {\n touch-action: pan-y !important;\n user-select: text !important;\n}\n\n.embedded-qa-bot .rcb-chat-body-container {\n touch-action: pan-y !important;\n}\n\n.embedded-qa-bot .rcb-chat-window {\n touch-action: pan-y !important;\n}\n\n/* Force react-chatbotify to use our theme colors */\n.rcb-chat-header-container {\n background: var(--primaryColor, #1a5b6e) !important;\n background: linear-gradient(135deg, var(--primaryColor, #1a5b6e) 0%, var(--secondaryColor, #107180) 100%) !important;\n}\n\n/* Chat button should also use our colors */\n.rcb-toggle-button {\n background: var(--primaryColor, #1a5b6e) !important;\n}\n\n/* Size and center the icon inside the toggle button */\n.rcb-toggle-button {\n display: flex !important;\n align-items: center !important;\n justify-content: center !important;\n}\n\n/* Control the color of the SVG icon */\n.rcb-toggle-button svg {\n color: white !important;\n stroke: white !important;\n}\n\n.rcb-toggle-button svg,\n.rcb-toggle-button img,\n.rcb-toggle-button > *,\n.rcb-toggle-button * {\n width: 50px !important;\n height: 50px !important;\n max-width: 50px !important;\n max-height: 50px !important;\n min-width: 50px !important;\n min-height: 50px !important;\n padding: 2px !important;\n margin: 0 auto !important;\n box-sizing: border-box !important;\n position: relative !important;\n top: 0 !important;\n left: 0 !important;\n}\n\n/* Send button */\n.rcb-send-button {\n background-color: var(--primaryColor, #1a5b6e) !important;\n}","@import './styles/index.css';\n\nbody {\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',\n 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',\n sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\ncode {\n font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',\n monospace;\n}\n\n/* Demo styles */\n.demo-container {\n padding: 20px;\n background-color: #f5f5f5;\n border-bottom: 1px solid #ddd;\n margin-bottom: 20px;\n}\n\n.demo-header {\n display: flex;\n justify-content: space-between;\n align-items: center;\n margin-bottom: 30px;\n}\n\n.demo-title {\n font-size: 1.4em;\n font-weight: bold;\n}\n\n.demo-code-toggle {\n padding: 6px 12px;\n background-color: #f0f0f0;\n border: 1px solid #ddd;\n border-radius: 4px;\n cursor: pointer;\n font-size: 0.9em;\n}\n\n.demo-code-toggle:hover {\n background-color: #e8e8e8;\n}\n\n.demo-main {\n display: flex;\n flex-direction: column;\n gap: 30px;\n}\n\n.demo-columns {\n display: grid;\n grid-template-columns: repeat(3, 1fr);\n gap: 30px;\n align-items: start;\n}\n\n@media (max-width: 768px) {\n .demo-columns {\n grid-template-columns: 1fr;\n gap: 20px;\n }\n}\n\n.demo-column {\n background-color: #f8f8f8;\n padding: 20px;\n border-radius: 6px;\n min-height: 300px;\n}\n\n.demo-column h2 {\n font-size: 1.1em;\n font-weight: 600;\n margin: 0 0 20px 0;\n color: #333;\n border-bottom: 1px solid #e0e0e0;\n padding-bottom: 10px;\n}\n\n.demo-controls-section h2,\n.demo-config-section h2,\n.demo-code-section h2 {\n font-size: 1.1em;\n font-weight: 600;\n margin: 0 0 20px 0;\n color: #333;\n border-bottom: 1px solid #e0e0e0;\n padding-bottom: 10px;\n}\n\n.demo-controls {\n display: grid;\n grid-template-columns: repeat(3, 1fr);\n gap: 40px;\n}\n\n@media (max-width: 768px) {\n .demo-controls {\n grid-template-columns: 1fr;\n }\n}\n\n.demo-section {\n /* Remove flex properties */\n}\n\n.demo-section h3 {\n margin: 0 0 12px 0;\n font-size: 1em;\n font-weight: 600;\n color: #555;\n}\n\n.demo-checkbox {\n display: flex;\n align-items: center;\n gap: 8px;\n margin-bottom: 12px;\n font-size: 0.95em;\n}\n\n.demo-checkbox:last-child {\n margin-bottom: 0;\n}\n\n.demo-checkbox input {\n margin: 0;\n}\n\n.demo-checkbox span {\n /* Remove flex property to keep elements close */\n}\n\n.demo-prop-name {\n font-family: monospace;\n font-size: 0.9em;\n background-color: #f6f8fa;\n padding: 2px 6px;\n border-radius: 3px;\n color: #0969da;\n font-weight: 500;\n margin-left: 8px;\n}\n\n.demo-message-section {\n /* Remove flex properties */\n}\n\n.demo-message-section h3 {\n margin: 0 0 12px 0;\n font-size: 1em;\n font-weight: 600;\n color: #555;\n}\n\n.demo-send-button {\n padding: 8px 16px;\n color: white;\n border: none;\n border-radius: 4px;\n font-size: 0.9em;\n background-color: #1a5b6e;\n cursor: pointer;\n}\n\n.demo-send-button:disabled {\n background-color: #ccc;\n cursor: not-allowed;\n}\n\n.demo-info {\n margin-top: 15px;\n padding: 12px;\n background-color: #e8f4f8;\n border-radius: 4px;\n font-size: 0.85em;\n color: #555;\n}\n\n.demo-field {\n margin-bottom: 12px;\n}\n\n.demo-field:last-child {\n margin-bottom: 0;\n}\n\n.demo-field label {\n display: flex;\n align-items: center;\n gap: 8px;\n margin-bottom: 6px;\n font-weight: 500;\n font-size: 0.95em;\n color: #333;\n}\n\n.demo-field label .demo-prop-name {\n margin-left: 0;\n}\n\n.demo-input {\n width: 100%;\n max-width: 250px;\n padding: 6px 10px;\n border: 1px solid #ccc;\n border-radius: 4px;\n font-size: 0.9em;\n box-sizing: border-box;\n}\n\n.demo-input:focus {\n outline: none;\n border-color: #1a5b6e;\n box-shadow: 0 0 0 2px rgba(26, 91, 110, 0.1);\n}\n\n.demo-help {\n margin: 0 0 12px 0;\n font-size: 0.85em;\n color: #666;\n font-style: italic;\n line-height: 1.4;\n}\n\n.demo-method-signature {\n margin: 0 0 16px 0;\n padding: 8px 12px;\n background-color: #f6f8fa;\n border-radius: 4px;\n border: 1px solid #e1e4e8;\n}\n\n.demo-method-signature code {\n font-size: 0.9em;\n color: #0969da;\n}\n\n.demo-config-section {\n /* Styling moved to .demo-column */\n}\n\n.demo-config-grid {\n /* No longer needed - items display directly in column */\n}\n\n.config-item {\n display: flex;\n flex-direction: column;\n gap: 4px;\n margin-bottom: 20px;\n}\n\n.config-item:last-child {\n margin-bottom: 0;\n}\n\n.config-prop {\n font-family: monospace;\n font-size: 0.95em;\n font-weight: 600;\n color: #0969da;\n}\n\n.config-value {\n font-family: monospace;\n font-size: 0.9em;\n color: #032f62;\n background-color: #fff;\n padding: 4px 8px;\n border-radius: 3px;\n border: 1px solid #e1e4e8;\n display: inline-block;\n width: fit-content;\n}\n\n.config-desc {\n font-size: 0.85em;\n color: #666;\n}\n\n.demo-code-section {\n background-color: #2d2d2d;\n padding: 20px;\n border-radius: 6px;\n color: #fff;\n}\n\n.demo-code {\n margin: 0;\n padding: 15px;\n background-color: #1e1e1e;\n border-radius: 4px;\n overflow-x: auto;\n}\n\n.demo-code code {\n color: #d4d4d4;\n font-size: 0.9em;\n line-height: 1.5;\n font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;\n}\n\n",".rcb-chat-header-container{padding:12px;color:#fff;border-bottom:1px solid #ccc;display:flex;justify-content:space-between;max-height:55px}.rcb-chat-header{display:flex;flex-direction:row}.rcb-bot-avatar{background-size:cover;width:30px;height:30px;border-radius:50%;margin-right:12px}.rcb-message-prompt-container.visible{position:sticky;bottom:0;margin:auto;display:flex;align-items:center;justify-content:center;opacity:1;animation:rcb-animation-pop-in .3s ease-in-out;pointer-events:auto}.rcb-message-prompt-container.hidden{opacity:0;height:0px;visibility:hidden;pointer-events:none}.rcb-message-prompt-text{padding:6px 12px;border-radius:20px;color:#adadad;font-size:12px;background-color:#fff;border:.5px solid #adadad;cursor:pointer;transition:color .3s ease,border-color .3s ease;z-index:9999}.rcb-message-prompt-container.hidden .rcb-message-prompt-text{padding:0}.rcb-user-message-container{display:flex;flex-direction:row;justify-content:right}.rcb-user-message{margin-top:8px;padding:12px 16px;border-radius:22px;min-height:20px;height:fit-content;width:fit-content;font-size:15px;overflow-wrap:anywhere;overflow:auto;white-space:pre-wrap;text-align:right;margin-right:16px}.rcb-user-message-offset{margin-right:50px}.rcb-user-message-entry{animation:rcb-animation-user-message-entry .3s ease-in backwards}.rcb-message-user-avatar{background-size:cover;width:40px;height:40px;border-radius:50%;margin-top:9px}.rcb-message-user-avatar{margin-left:-10px;margin-right:6px}.rcb-bot-message-container{display:flex;flex-direction:row}.rcb-bot-message{margin-top:8px;padding:12px 16px;border-radius:22px;min-height:20px;height:fit-content;width:fit-content;font-size:15px;overflow-wrap:anywhere;overflow:auto;white-space:pre-wrap;text-align:left;margin-left:16px}.rcb-bot-message-offset{margin-left:50px}.rcb-bot-message-entry{animation:rcb-animation-bot-message-entry .3s ease-in backwards}.rcb-message-bot-avatar{background-size:cover;width:40px;height:40px;border-radius:50%;margin-top:9px}.rcb-message-bot-avatar{margin-left:6px;margin-right:-10px}.rcb-typing-indicator{display:flex;align-items:center}.rcb-dot{width:8px;height:8px;border-radius:50%;background-color:#ccc;margin-right:4px;animation:rcb-animation-bot-typing 1s infinite}.rcb-dot:nth-child(2){animation-delay:.2s}.rcb-dot:nth-child(3){animation-delay:.4s}.rcb-chat-body-container{position:relative;height:100%;width:100%;padding-bottom:16px;overflow-x:hidden;overflow-y:scroll;touch-action:pan-y}.rcb-chat-body-container::-webkit-scrollbar-track{background-color:#f1f1f1}.rcb-chat-body-container::-webkit-scrollbar-thumb{background-color:#ddd;border-radius:4px}.rcb-chat-body-container::-webkit-scrollbar-thumb:hover{background-color:#cfcfcf}.rcb-chat-body-container::-webkit-scrollbar-corner{background-color:#f1f1f1}.rcb-checkbox-container{display:flex;padding-top:12px;margin-left:16px;flex-wrap:wrap;gap:10px}.rcb-checkbox-offset{margin-left:50px!important}.rcb-checkbox-row-container{display:flex;align-items:center;gap:5px;border-width:.5px;border-style:solid;border-radius:10px;min-height:30px;max-height:32px;width:80%;cursor:pointer;background-color:#fff;animation:rcb-animations-checkboxes-entry .5s ease-out;overflow:hidden}.rcb-checkbox-row-container:hover{box-shadow:0 0 5px #0003}.rcb-checkbox-row{display:inline-flex;margin-left:10px;align-items:center;cursor:pointer}.rcb-checkbox-mark{width:20px;height:20px;background-color:#f2f2f2;border-radius:50%;border:none;display:flex;align-items:center;justify-content:center;transition:all .3s ease;margin-right:10px;cursor:pointer}.rcb-checkbox-mark:hover{background-color:#c2c2c2}.rcb-checkbox-mark:before{content:\"✓\";transition:all .3s ease}.rcb-checkbox-label{font-size:14px}.rcb-checkbox-next-button{text-align:center;display:inline-block;align-items:center;border-width:.5px;border-style:solid;border-radius:10px;font-size:24px;min-height:30px;max-height:32px;width:80%;cursor:pointer;background-color:#fff;animation:rcb-animations-checkboxes-entry .5s ease-out}.rcb-checkbox-next-button:before{content:\"→\"}.rcb-checkbox-next-button:hover{box-shadow:0 0 5px #0003}.rcb-options-container{padding-top:12px;margin-left:16px;max-width:70%;display:flex;flex-wrap:wrap;gap:10px}.rcb-options-offset{margin-left:50px!important}.rcb-options{display:inline-flex;align-items:center;justify-content:center;padding:10px 20px;border-radius:20px;font-size:14px;border-width:.5px;border-style:solid;cursor:pointer;transition:background-color .3s ease;animation:rcb-animation-options-entry .5s ease-out;overflow:hidden}.rcb-options:hover{box-shadow:0 0 5px #0003}.rcb-line-break-container{display:flex;justify-content:center;align-items:center;padding-top:10px;padding-bottom:5px;max-height:45px}.rcb-line-break-text{padding:6px 12px;color:#adadad;font-size:12px}.rcb-spinner-container{display:flex;justify-content:center;align-items:center;padding-top:10px;padding-bottom:5px;min-height:35px;max-height:45px}.rcb-spinner{width:22px;height:22px;border-radius:50%;border:4px solid #f3f3f3;animation:rcb-animation-spin 1s linear infinite}.rcb-chat-input{padding:8px 16px;border-top:1px solid #ccc;display:flex;align-items:center;background-color:#fff}.rcb-chat-input::placeholder{color:#999}.rcb-chat-input-textarea{flex:1;padding:8px;border:none;border-radius:4px;outline:none;font-size:16px;resize:none;height:auto;min-height:38px;overflow-y:scroll;font-family:inherit;background-color:#fff;color:#000;touch-action:none}.rcb-chat-input-textarea::-webkit-scrollbar{background-color:transparent}.rcb-chat-input-textarea::-webkit-scrollbar-thumb{background-color:transparent}.rcb-chat-input-textarea::-webkit-scrollbar-thumb:hover{background-color:transparent}.rcb-chat-input-char-counter{font-size:14px;margin-left:8px;margin-top:3px}.rcb-chat-footer-container{padding:12px 16px 8px 10px;border-top:1px solid #ccc;max-height:55px;display:flex;justify-content:space-between;align-items:flex-end;font-size:12px;background-color:#f2f2f2;color:#000}.rcb-chat-footer{display:flex;flex-direction:row}.rcb-toggle-button{display:flex;flex-direction:row;position:fixed;bottom:20px;right:20px;z-index:9999;width:75px;height:75px;border-radius:50%;border:none;cursor:pointer;box-shadow:0 2px 4px #0003}.rcb-toggle-button.rcb-button-hide{opacity:0;visibility:hidden;animation:rcb-animation-collapse .3s ease-in-out forwards}.rcb-toggle-button.rcb-button-show{opacity:1;visibility:visible;animation:rcb-animation-expand .3s ease-in-out forwards}.rcb-toggle-icon{display:flex;justify-content:center;align-items:center;width:100%;height:100%;background-position:center;background-size:cover;background-repeat:no-repeat;margin:auto;border-radius:inherit}.rcb-badge{position:absolute;top:-6px;right:-6px;border-radius:50%;background-color:red;color:#fff;height:25px;width:25px;display:flex;justify-content:center;align-items:center}.rcb-chat-tooltip{position:fixed;padding:16px;border-radius:20px;box-shadow:0 2px 6px #0003;white-space:nowrap;cursor:pointer;font-size:20px;transition:transform .3s ease;z-index:9999}.rcb-chat-tooltip-tail{content:\"\";position:absolute;top:50%;right:-10px;margin-top:-10px;border-width:10px 0 10px 10px;border-style:solid}.rcb-chat-tooltip.rcb-tooltip-hide{opacity:0;visibility:hidden;animation:rcb-animation-tooltip-out .5s ease-in-out}.rcb-chat-tooltip.rcb-tooltip-show{opacity:1;visibility:visible;animation:rcb-animation-tooltip-in .5s ease-in-out}.rcb-toast-prompt{padding:6px 12px;border-radius:5px;color:#7a7a7a;font-size:12px;text-align:center;background-color:#fff;border:.5px solid #7a7a7a;cursor:pointer;transition:color .3s ease,border-color .3s ease;z-index:9999;width:100%;margin-top:6px;animation:rcb-animation-pop-in .3s ease-in-out}.rcb-toast-prompt-container{position:absolute;left:50%;transform:translate(-50%);bottom:0;margin:auto;display:flex;align-items:center;justify-content:flex-end;flex-direction:column;opacity:1;animation:popIn .3s ease-in-out;pointer-events:auto;margin-top:200}.rcb-media-display-image-container,.rcb-media-display-video-container{margin-top:8px;margin-right:16px;border-radius:22px;padding:16px;width:fit-content}.rcb-media-display-offset{margin-right:50px!important}.rcb-media-display-image{width:100%;height:auto;border-radius:22px;object-fit:cover}.rcb-media-display-video{width:100%;height:auto;border-radius:22px;background-color:#000}.rcb-media-display-audio{margin-top:8px;margin-right:16px;width:100%;height:auto;border-radius:22px}.rcb-media-entry{animation:rcb-animation-user-message-entry .3s ease-in backwards}.rcb-attach-button-enabled,.rcb-attach-button-disabled{position:relative;display:inline-block;background-size:cover;width:30px;height:30px;border-radius:6px;text-align:center}.rcb-attach-button-enabled input[type=file],.rcb-attach-button-disabled input[type=file]{position:absolute;width:100%;height:100%;display:none}.rcb-attach-button-enabled{cursor:pointer}.rcb-attach-button-disabled{opacity:.5}.rcb-attach-button-enabled:after{content:\"\";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:0;height:0;background-color:#0000001a;border-radius:50%;opacity:0;transition:width .2s ease-out,height .2s ease-out,opacity .2s ease-out}.rcb-attach-button-enabled:hover:after{width:130%;height:130%;opacity:1}.rcb-attach-icon-enabled,.rcb-attach-icon-disabled{display:inline-block;width:24px;height:24px;margin-top:2px;background-repeat:no-repeat;background-size:cover;transition:background-image .3s ease}.rcb-attach-icon-enabled{cursor:pointer}.rcb-emoji-button-enabled,.rcb-emoji-button-disabled{position:relative;display:inline-block;background-size:cover;width:30px;height:30px;border-radius:6px;text-align:center;cursor:pointer}.rcb-emoji-icon-enabled,.rcb-emoji-icon-disabled{position:relative;display:inline-block;background-size:cover;font-size:20px;width:24px;height:24px;margin-top:2px;background-repeat:no-repeat}.rcb-emoji-icon-enabled{cursor:pointer}.rcb-emoji-icon-disabled{opacity:.5}.rcb-emoji-button-enabled:after{content:\"\";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:0;height:0;background-color:#0000001a;border-radius:50%;opacity:0;transition:width .2s ease-out,height .2s ease-out,opacity .2s ease-out}.rcb-emoji-button-enabled:hover:after{width:130%;height:130%;opacity:1}.rcb-emoji-button-popup{position:absolute;width:158px;background-color:#fff;border:1px solid #ccc;border-radius:4px;padding:8px;box-shadow:0 2px 4px #0003;max-height:200px;overflow-y:auto;transform:translateY(calc(-100% - 30px))}.rcb-emoji{cursor:pointer;font-size:24px;padding:3px;transition:transform .2s ease-in-out}.rcb-emoji:hover{transform:scale(1.2)}.rcb-audio-icon{position:relative;display:inline-block;background-size:cover;width:30px;height:30px;border:none;cursor:pointer;margin-left:5px}.rcb-audio-icon:after{content:\"\";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:0;height:0;background-color:#0000001a;border-radius:50%;opacity:0;transition:width .2s ease-out,height .2s ease-out,opacity .2s ease-out}.rcb-audio-icon:hover:after{width:130%;height:130%;opacity:1}.rcb-close-chat-icon{position:relative;display:inline-block;background-size:cover;width:30px;height:30px;border:none;margin-left:5px;cursor:pointer}.rcb-close-chat-icon:after{content:\"\";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:0;height:0;background-color:#0000001a;border-radius:50%;opacity:0;transition:width .2s ease-out,height .2s ease-out,opacity .2s ease-out}.rcb-close-chat-icon:hover:after{width:130%;height:130%;opacity:1}.rcb-notification-icon{position:relative;display:inline-block;background-size:cover;width:30px;height:30px;border:none;cursor:pointer;margin-left:5px}.rcb-notification-icon:after{content:\"\";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:0;height:0;background-color:#0000001a;border-radius:50%;opacity:0;transition:width .2s ease-out,height .2s ease-out,opacity .2s ease-out}.rcb-notification-icon:hover:after{width:130%;height:130%;opacity:1}.rcb-voice-button-enabled,.rcb-voice-button-disabled{display:inline-flex;align-items:center;justify-content:center;text-transform:uppercase;border-radius:4px;box-shadow:0 0 3px #0000004d;cursor:pointer;height:32px;width:32px;margin-left:8px;transition:all .3s ease;background-color:#fff}.rcb-voice-button-enabled{border:1px solid red;box-shadow:0 0 3px #ff000080}.rcb-voice-button-enabled:hover{border:1px solid rgb(61,0,0)}.rcb-voice-button-disabled{border:1px;border-style:solid;border-color:#0003}.rcb-voice-button-disabled:hover{box-shadow:0 0 3px #8a0000}.rcb-voice-icon{width:60%;height:60%;background-size:cover;object-fit:cover;background-size:contain;background-repeat:no-repeat;background-position:center}.rcb-voice-icon.on{animation:rcb-animation-ping 1s infinite}.rcb-send-button{display:inline-flex;justify-content:center;text-transform:uppercase;border:none;border-radius:4px;box-shadow:0 0 3px #0000004d;cursor:pointer;transition:background-color .3s ease;height:32px;width:51px;margin-left:8px}.rcb-send-icon{width:50%;height:50%;transform:translateY(20%);background-size:cover;object-fit:cover;background-size:contain;background-repeat:no-repeat;background-position:center}.rcb-view-history-container{display:flex;justify-content:center;align-items:center;padding-top:10px;padding-bottom:5px;min-height:35px;max-height:45px}.rcb-view-history-button{display:inline-flex;align-items:center;justify-content:center;padding:6px 12px;border-radius:20px;color:#adadad;font-size:12px;background-color:#fff;border-color:#adadad;border-width:.5px;border-style:solid;max-width:60%;cursor:pointer;transition:color .3s ease,border-color .3s ease}.rcb-view-history-button>p{margin:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.rcb-chatbot-global{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:1.5;z-index:9999}.rcb-chat-window{position:fixed;right:20px;bottom:20px;border-radius:10px;box-shadow:0 2px 4px #0003;background-color:#fff;transition:all .3s ease;overflow:hidden;display:flex;flex-direction:column;width:375px;height:550px}.rcb-window-embedded .rcb-chat-window{position:relative;opacity:1;visibility:visible;right:auto;bottom:auto}.rcb-window-open .rcb-chat-window{opacity:1;visibility:visible;animation:rcb-animation-expand .3s ease-in-out forwards}.rcb-window-close .rcb-chat-window{opacity:0;visibility:hidden;animation:rcb-animation-collapse .3s ease-in-out forwards}@keyframes rcb-animation-expand{0%{transform:translate(100%,100%) scale(0);opacity:0}to{transform:translate(0) scale(1);opacity:1}}@keyframes rcb-animation-collapse{0%{transform:translate(0) scale(1);opacity:1}to{transform:translate(100%,100%) scale(0);opacity:0}}@keyframes rcb-animation-ping{0%{filter:brightness(100%);opacity:1}50%{filter:brightness(50%);opacity:.8}}@keyframes rcb-animation-bot-message-entry{0%{transform:translate(-100%,50%) scale(0);opacity:0}to{transform:translate(0) scale(1);opacity:1}}@keyframes rcb-animation-user-message-entry{0%{transform:translate(100%,50%) scale(0);opacity:0}to{transform:translate(0) scale(1);opacity:1}}@keyframes rcb-animation-bot-typing{0%{opacity:.4}50%{opacity:1}to{opacity:.4}}@keyframes rcb-animation-pop-in{0%{transform:scale(.8);opacity:0}70%{transform:scale(1.1);opacity:1}to{transform:scale(1)}}@keyframes rcb-animations-checkboxes-entry{0%{transform:translate(-100%);opacity:0}to{transform:translate(0);opacity:1}}@keyframes rcb-animation-options-entry{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes rcb-animation-tooltip-in{0%{opacity:0;transform:translateY(-5px)}to{opacity:1;transform:translateY(0)}}@keyframes rcb-animation-tooltip-out{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(-5px)}}@keyframes rcb-animation-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}\n"],"names":[],"sourceRoot":""}
@@ -0,0 +1,2 @@
1
+ "use strict";(self.webpackChunk_snf_qa_bot_core=self.webpackChunk_snf_qa_bot_core||[]).push([[453],{453:(e,t,n)=>{n.r(t),n.d(t,{getCLS:()=>y,getFCP:()=>g,getFID:()=>C,getLCP:()=>P,getTTFB:()=>_});var i,r,a,o,u=function(e,t){return{name:e,value:void 0===t?-1:t,delta:0,entries:[],id:"v2-".concat(Date.now(),"-").concat(Math.floor(8999999999999*Math.random())+1e12)}},c=function(e,t){try{if(PerformanceObserver.supportedEntryTypes.includes(e)){if("first-input"===e&&!("PerformanceEventTiming"in self))return;var n=new PerformanceObserver(function(e){return e.getEntries().map(t)});return n.observe({type:e,buffered:!0}),n}}catch(e){}},f=function(e,t){var n=function n(i){"pagehide"!==i.type&&"hidden"!==document.visibilityState||(e(i),t&&(removeEventListener("visibilitychange",n,!0),removeEventListener("pagehide",n,!0)))};addEventListener("visibilitychange",n,!0),addEventListener("pagehide",n,!0)},s=function(e){addEventListener("pageshow",function(t){t.persisted&&e(t)},!0)},m=function(e,t,n){var i;return function(r){t.value>=0&&(r||n)&&(t.delta=t.value-(i||0),(t.delta||void 0===i)&&(i=t.value,e(t)))}},v=-1,p=function(){return"hidden"===document.visibilityState?0:1/0},d=function(){f(function(e){var t=e.timeStamp;v=t},!0)},l=function(){return v<0&&(v=p(),d(),s(function(){setTimeout(function(){v=p(),d()},0)})),{get firstHiddenTime(){return v}}},g=function(e,t){var n,i=l(),r=u("FCP"),a=function(e){"first-contentful-paint"===e.name&&(f&&f.disconnect(),e.startTime<i.firstHiddenTime&&(r.value=e.startTime,r.entries.push(e),n(!0)))},o=window.performance&&performance.getEntriesByName&&performance.getEntriesByName("first-contentful-paint")[0],f=o?null:c("paint",a);(o||f)&&(n=m(e,r,t),o&&a(o),s(function(i){r=u("FCP"),n=m(e,r,t),requestAnimationFrame(function(){requestAnimationFrame(function(){r.value=performance.now()-i.timeStamp,n(!0)})})}))},h=!1,T=-1,y=function(e,t){h||(g(function(e){T=e.value}),h=!0);var n,i=function(t){T>-1&&e(t)},r=u("CLS",0),a=0,o=[],v=function(e){if(!e.hadRecentInput){var t=o[0],i=o[o.length-1];a&&e.startTime-i.startTime<1e3&&e.startTime-t.startTime<5e3?(a+=e.value,o.push(e)):(a=e.value,o=[e]),a>r.value&&(r.value=a,r.entries=o,n())}},p=c("layout-shift",v);p&&(n=m(i,r,t),f(function(){p.takeRecords().map(v),n(!0)}),s(function(){a=0,T=-1,r=u("CLS",0),n=m(i,r,t)}))},E={passive:!0,capture:!0},w=new Date,L=function(e,t){i||(i=t,r=e,a=new Date,F(removeEventListener),S())},S=function(){if(r>=0&&r<a-w){var e={entryType:"first-input",name:i.type,target:i.target,cancelable:i.cancelable,startTime:i.timeStamp,processingStart:i.timeStamp+r};o.forEach(function(t){t(e)}),o=[]}},b=function(e){if(e.cancelable){var t=(e.timeStamp>1e12?new Date:performance.now())-e.timeStamp;"pointerdown"==e.type?function(e,t){var n=function(){L(e,t),r()},i=function(){r()},r=function(){removeEventListener("pointerup",n,E),removeEventListener("pointercancel",i,E)};addEventListener("pointerup",n,E),addEventListener("pointercancel",i,E)}(t,e):L(t,e)}},F=function(e){["mousedown","keydown","touchstart","pointerdown"].forEach(function(t){return e(t,b,E)})},C=function(e,t){var n,a=l(),v=u("FID"),p=function(e){e.startTime<a.firstHiddenTime&&(v.value=e.processingStart-e.startTime,v.entries.push(e),n(!0))},d=c("first-input",p);n=m(e,v,t),d&&f(function(){d.takeRecords().map(p),d.disconnect()},!0),d&&s(function(){var a;v=u("FID"),n=m(e,v,t),o=[],r=-1,i=null,F(addEventListener),a=p,o.push(a),S()})},k={},P=function(e,t){var n,i=l(),r=u("LCP"),a=function(e){var t=e.startTime;t<i.firstHiddenTime&&(r.value=t,r.entries.push(e),n())},o=c("largest-contentful-paint",a);if(o){n=m(e,r,t);var v=function(){k[r.id]||(o.takeRecords().map(a),o.disconnect(),k[r.id]=!0,n(!0))};["keydown","click"].forEach(function(e){addEventListener(e,v,{once:!0,capture:!0})}),f(v,!0),s(function(i){r=u("LCP"),n=m(e,r,t),requestAnimationFrame(function(){requestAnimationFrame(function(){r.value=performance.now()-i.timeStamp,k[r.id]=!0,n(!0)})})})}},_=function(e){var t,n=u("TTFB");t=function(){try{var t=performance.getEntriesByType("navigation")[0]||function(){var e=performance.timing,t={entryType:"navigation",startTime:0};for(var n in e)"navigationStart"!==n&&"toJSON"!==n&&(t[n]=Math.max(e[n]-e.navigationStart,0));return t}();if(n.value=n.delta=t.responseStart,n.value<0||n.value>performance.now())return;n.entries=[t],e(n)}catch(e){}},"complete"===document.readyState?setTimeout(t,0):addEventListener("load",function(){return setTimeout(t,0)})}}}]);
2
+ //# sourceMappingURL=453.chunk.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"static/js/453.chunk.js","mappings":"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","sources":["../node_modules/web-vitals/dist/web-vitals.js"],"sourcesContent":["var e,t,n,i,r=function(e,t){return{name:e,value:void 0===t?-1:t,delta:0,entries:[],id:\"v2-\".concat(Date.now(),\"-\").concat(Math.floor(8999999999999*Math.random())+1e12)}},a=function(e,t){try{if(PerformanceObserver.supportedEntryTypes.includes(e)){if(\"first-input\"===e&&!(\"PerformanceEventTiming\"in self))return;var n=new PerformanceObserver((function(e){return e.getEntries().map(t)}));return n.observe({type:e,buffered:!0}),n}}catch(e){}},o=function(e,t){var n=function n(i){\"pagehide\"!==i.type&&\"hidden\"!==document.visibilityState||(e(i),t&&(removeEventListener(\"visibilitychange\",n,!0),removeEventListener(\"pagehide\",n,!0)))};addEventListener(\"visibilitychange\",n,!0),addEventListener(\"pagehide\",n,!0)},u=function(e){addEventListener(\"pageshow\",(function(t){t.persisted&&e(t)}),!0)},c=function(e,t,n){var i;return function(r){t.value>=0&&(r||n)&&(t.delta=t.value-(i||0),(t.delta||void 0===i)&&(i=t.value,e(t)))}},f=-1,s=function(){return\"hidden\"===document.visibilityState?0:1/0},m=function(){o((function(e){var t=e.timeStamp;f=t}),!0)},v=function(){return f<0&&(f=s(),m(),u((function(){setTimeout((function(){f=s(),m()}),0)}))),{get firstHiddenTime(){return f}}},d=function(e,t){var n,i=v(),o=r(\"FCP\"),f=function(e){\"first-contentful-paint\"===e.name&&(m&&m.disconnect(),e.startTime<i.firstHiddenTime&&(o.value=e.startTime,o.entries.push(e),n(!0)))},s=window.performance&&performance.getEntriesByName&&performance.getEntriesByName(\"first-contentful-paint\")[0],m=s?null:a(\"paint\",f);(s||m)&&(n=c(e,o,t),s&&f(s),u((function(i){o=r(\"FCP\"),n=c(e,o,t),requestAnimationFrame((function(){requestAnimationFrame((function(){o.value=performance.now()-i.timeStamp,n(!0)}))}))})))},p=!1,l=-1,h=function(e,t){p||(d((function(e){l=e.value})),p=!0);var n,i=function(t){l>-1&&e(t)},f=r(\"CLS\",0),s=0,m=[],v=function(e){if(!e.hadRecentInput){var t=m[0],i=m[m.length-1];s&&e.startTime-i.startTime<1e3&&e.startTime-t.startTime<5e3?(s+=e.value,m.push(e)):(s=e.value,m=[e]),s>f.value&&(f.value=s,f.entries=m,n())}},h=a(\"layout-shift\",v);h&&(n=c(i,f,t),o((function(){h.takeRecords().map(v),n(!0)})),u((function(){s=0,l=-1,f=r(\"CLS\",0),n=c(i,f,t)})))},T={passive:!0,capture:!0},y=new Date,g=function(i,r){e||(e=r,t=i,n=new Date,w(removeEventListener),E())},E=function(){if(t>=0&&t<n-y){var r={entryType:\"first-input\",name:e.type,target:e.target,cancelable:e.cancelable,startTime:e.timeStamp,processingStart:e.timeStamp+t};i.forEach((function(e){e(r)})),i=[]}},S=function(e){if(e.cancelable){var t=(e.timeStamp>1e12?new Date:performance.now())-e.timeStamp;\"pointerdown\"==e.type?function(e,t){var n=function(){g(e,t),r()},i=function(){r()},r=function(){removeEventListener(\"pointerup\",n,T),removeEventListener(\"pointercancel\",i,T)};addEventListener(\"pointerup\",n,T),addEventListener(\"pointercancel\",i,T)}(t,e):g(t,e)}},w=function(e){[\"mousedown\",\"keydown\",\"touchstart\",\"pointerdown\"].forEach((function(t){return e(t,S,T)}))},L=function(n,f){var s,m=v(),d=r(\"FID\"),p=function(e){e.startTime<m.firstHiddenTime&&(d.value=e.processingStart-e.startTime,d.entries.push(e),s(!0))},l=a(\"first-input\",p);s=c(n,d,f),l&&o((function(){l.takeRecords().map(p),l.disconnect()}),!0),l&&u((function(){var a;d=r(\"FID\"),s=c(n,d,f),i=[],t=-1,e=null,w(addEventListener),a=p,i.push(a),E()}))},b={},F=function(e,t){var n,i=v(),f=r(\"LCP\"),s=function(e){var t=e.startTime;t<i.firstHiddenTime&&(f.value=t,f.entries.push(e),n())},m=a(\"largest-contentful-paint\",s);if(m){n=c(e,f,t);var d=function(){b[f.id]||(m.takeRecords().map(s),m.disconnect(),b[f.id]=!0,n(!0))};[\"keydown\",\"click\"].forEach((function(e){addEventListener(e,d,{once:!0,capture:!0})})),o(d,!0),u((function(i){f=r(\"LCP\"),n=c(e,f,t),requestAnimationFrame((function(){requestAnimationFrame((function(){f.value=performance.now()-i.timeStamp,b[f.id]=!0,n(!0)}))}))}))}},P=function(e){var t,n=r(\"TTFB\");t=function(){try{var t=performance.getEntriesByType(\"navigation\")[0]||function(){var e=performance.timing,t={entryType:\"navigation\",startTime:0};for(var n in e)\"navigationStart\"!==n&&\"toJSON\"!==n&&(t[n]=Math.max(e[n]-e.navigationStart,0));return t}();if(n.value=n.delta=t.responseStart,n.value<0||n.value>performance.now())return;n.entries=[t],e(n)}catch(e){}},\"complete\"===document.readyState?setTimeout(t,0):addEventListener(\"load\",(function(){return setTimeout(t,0)}))};export{h as getCLS,d as getFCP,L as getFID,F as getLCP,P as getTTFB};\n"],"names":["e","t","n","i","r","name","value","delta","entries","id","concat","Date","now","Math","floor","random","a","PerformanceObserver","supportedEntryTypes","includes","self","getEntries","map","observe","type","buffered","o","document","visibilityState","removeEventListener","addEventListener","u","persisted","c","f","s","m","timeStamp","v","setTimeout","firstHiddenTime","d","disconnect","startTime","push","window","performance","getEntriesByName","requestAnimationFrame","p","l","h","hadRecentInput","length","takeRecords","T","passive","capture","y","g","w","E","entryType","target","cancelable","processingStart","forEach","S","L","b","F","once","P","getEntriesByType","timing","max","navigationStart","responseStart","readyState"],"sourceRoot":""}