@snf/access-qa-bot 0.2.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 (53) hide show
  1. package/README.md +181 -0
  2. package/build/asset-manifest.json +15 -0
  3. package/build/favicon.ico +0 -0
  4. package/build/index.html +1 -0
  5. package/build/logo192.png +0 -0
  6. package/build/logo512.png +0 -0
  7. package/build/manifest.json +25 -0
  8. package/build/robots.txt +3 -0
  9. package/build/static/css/main.css +2 -0
  10. package/build/static/css/main.css.map +1 -0
  11. package/build/static/js/453.chunk.js +2 -0
  12. package/build/static/js/453.chunk.js.map +1 -0
  13. package/build/static/js/main.js +3 -0
  14. package/build/static/js/main.js.LICENSE.txt +69 -0
  15. package/build/static/js/main.js.map +1 -0
  16. package/dist/access-qa-bot.js +56 -0
  17. package/dist/access-qa-bot.js.map +1 -0
  18. package/dist/access-qa-bot.standalone.js +48 -0
  19. package/dist/access-qa-bot.standalone.js.map +1 -0
  20. package/dist/access-qa-bot.umd.cjs +56 -0
  21. package/dist/access-qa-bot.umd.cjs.map +1 -0
  22. package/dist/access-qa-bot.umd.js +56 -0
  23. package/dist/access-qa-bot.umd.js.map +1 -0
  24. package/dist/index.esm.js +56 -0
  25. package/dist/index.esm.js.map +1 -0
  26. package/dist/index.js +56 -0
  27. package/dist/index.js.map +1 -0
  28. package/dist/index.umd.js +56 -0
  29. package/dist/index.umd.js.map +1 -0
  30. package/dist/preact.esm.js +2 -0
  31. package/dist/preact.esm.js.map +1 -0
  32. package/dist/preact.js +2 -0
  33. package/dist/preact.js.map +1 -0
  34. package/dist/preact.umd.js +2 -0
  35. package/dist/preact.umd.js.map +1 -0
  36. package/dist/qa-bot-element.js +241 -0
  37. package/dist/qa-bot-element.js.map +1 -0
  38. package/dist/qa-bot-element.min.js +2 -0
  39. package/dist/qa-bot-element.min.js.map +1 -0
  40. package/dist/qa-bot-standalone.js +34372 -0
  41. package/dist/qa-bot-standalone.js.map +1 -0
  42. package/dist/qa-bot-standalone.min.js +105 -0
  43. package/dist/qa-bot-standalone.min.js.map +1 -0
  44. package/dist/web-component.js +56 -0
  45. package/dist/web-component.js.map +1 -0
  46. package/dist/web-components.js +228 -0
  47. package/dist/web-components.js.map +1 -0
  48. package/dist/web-components.min.js +2 -0
  49. package/dist/web-components.min.js.map +1 -0
  50. package/dist/web-components.umd.js +239 -0
  51. package/dist/web-components.umd.js.map +1 -0
  52. package/index.d.ts +51 -0
  53. package/package.json +84 -0
package/README.md ADDED
@@ -0,0 +1,181 @@
1
+ # ACCESS Q&A Bot
2
+
3
+ A React component and Web Component for integrating the ACCESS Q&A Bot into your application.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install @snf/access-qa-bot
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ### As a React Component
14
+
15
+ ```jsx
16
+ import React, { useState } from 'react';
17
+ import { QABot } from 'access-qa-bot';
18
+
19
+ function MyApp() {
20
+ const [isOpen, setIsOpen] = useState(false);
21
+ const isLoggedIn = true; // Determine based on your auth logic
22
+
23
+ return (
24
+ <div className="app">
25
+ <h1>My React Application</h1>
26
+
27
+ <button onClick={() => setIsOpen(!isOpen)}>
28
+ {isOpen ? 'Close' : 'Open'} Q&A Bot
29
+ </button>
30
+
31
+ <QABot
32
+ isLoggedIn={isLoggedIn}
33
+ isOpen={isOpen}
34
+ onClose={() => setIsOpen(false)}
35
+ welcome="Welcome to the ACCESS Q&A Bot!"
36
+ prompt="How can I help you today?"
37
+ apiKey={process.env.REACT_APP_API_KEY}
38
+ />
39
+ </div>
40
+ );
41
+ }
42
+ ```
43
+
44
+ ### As a Web Component
45
+
46
+ #### Method 1: Using HTML directly
47
+
48
+ ```html
49
+ <script src="https://unpkg.com/@snf/access-qa-bot@0.2.0/dist/access-qa-bot.standalone.js"></script>
50
+
51
+ <access-qa-bot
52
+ welcome="Welcome to the Q&A Bot!"
53
+ prompt="Ask me anything about ACCESS..."
54
+ is-logged-in
55
+ is-open>
56
+ </access-qa-bot>
57
+ ```
58
+
59
+ #### Method 2: Creating programmatically
60
+
61
+ ```html
62
+ <script src="https://unpkg.com/@snf/access-qa-bot@0.2.0/dist/access-qa-bot.standalone.js"></script>
63
+
64
+ <div id="qa-container"></div>
65
+
66
+ <script>
67
+ const container = document.getElementById('qa-container');
68
+ const qaBot = document.createElement('access-qa-bot');
69
+ qaBot.setAttribute('welcome', 'Hello!');
70
+ qaBot.setAttribute('prompt', 'Ask something...');
71
+ qaBot.setAttribute('is-logged-in', '');
72
+ container.appendChild(qaBot);
73
+ </script>
74
+ ```
75
+
76
+ #### Method 3: Using the JavaScript API
77
+
78
+ ```html
79
+ <script src="https://unpkg.com/@snf/access-qa-bot@0.2.0/dist/access-qa-bot.standalone.js"></script>
80
+
81
+ <div id="js-api-container"></div>
82
+
83
+ <script>
84
+ window.addEventListener('load', function() {
85
+ if (window.accessQABot && window.accessQABot.qAndATool) {
86
+ window.accessQABot.qAndATool({
87
+ target: document.getElementById('js-api-container'),
88
+ welcome: "This is created using the JavaScript API!",
89
+ prompt: "Ask a question about ACCESS...",
90
+ isLoggedIn: true,
91
+ embedded: true,
92
+ isOpen: true
93
+ });
94
+ }
95
+ });
96
+ </script>
97
+ ```
98
+
99
+ ### Direct Deployment via jsDelivr CDN
100
+
101
+ For websites that don't use npm packages, you can directly include the ACCESS Q&A Bot using jsDelivr CDN:
102
+
103
+ ```html
104
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/necyberteam/qa-bot@v0.2.0/build/static/css/main.css">
105
+ <div style="display:none;" id="qa-bot">
106
+ &nbsp;
107
+ </div>
108
+ <script src="https://cdn.jsdelivr.net/gh/necyberteam/qa-bot@v0.2.0/build/static/js/main.js"></script>
109
+ <script src="https://cdn.jsdelivr.net/gh/necyberteam/qa-bot@v0.2.0/build/static/js/453.chunk.js"></script>
110
+ ```
111
+
112
+ Replace `v0.2.0` with the specific version you want to use. This method provides the React version of the bot and automatically initializes it when the page loads.
113
+
114
+ ## Properties
115
+
116
+ | Property | Type | Description |
117
+ |----------|------|-------------|
118
+ | welcome | string | Welcome message shown to the user |
119
+ | prompt | string | Text shown in the input field |
120
+ | embedded | boolean | Display in embedded mode |
121
+ | isLoggedIn / is-logged-in | boolean | Whether the user is logged in |
122
+ | disabled | boolean | Disable the chat input |
123
+ | isOpen / is-open | boolean | Whether the chat is open |
124
+ | apiKey / api-key | string | API key for authentication |
125
+ | onClose | function | Callback when the chat is closed (React only) |
126
+
127
+ ## Events
128
+
129
+ When using as a Web Component, you can listen for the following events:
130
+
131
+ ```javascript
132
+ document.querySelector('access-qa-bot').addEventListener('qabot-close', () => {
133
+ console.log('Chat was closed');
134
+ });
135
+ ```
136
+
137
+ ## Disambiguating all the different html files here
138
+
139
+ - **index.html**: The main demo file showcasing React-based integration methods with three different approaches to integrate the QA Bot: auto-mounting to a specific div ID, using class-based selectors, and explicitly calling the JavaScript function.
140
+
141
+ - **public/index.html**: The standard React application template file created by Create React App. This serves as the base HTML template that gets processed during the React build process.
142
+
143
+ - **build/index.html**: The minified production version of the public/index.html file after the build process has completed. This contains all the necessary script and link tags to load the compiled React application.
144
+
145
+ - **demo.html**: A standalone demo specifically showcasing the Web Component implementation (using the custom `<access-qa-bot>` element). This demonstrates three integration methods: standard floating button, embedded mode, and using the JavaScript API with the Web Component.
146
+
147
+ The **index.html** file is focused on the React component usage, while **demo.html** focuses on the Web Component usage, providing complete examples for both integration approaches.
148
+
149
+ ## Development and Testing
150
+
151
+ ### Development Server
152
+ When running the default development script (`npm start` or `yarn start`), the application serves the content from the `public` directory using React's development server. This shows the default React implementation with hot reloading enabled. Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
153
+
154
+ ```bash
155
+ # Start the development server (React implementation)
156
+ npm start
157
+ ```
158
+
159
+ ### Testing Standalone Demo Files
160
+ To test the standalone demo files (`index.html` and `demo.html`) at the root level, you need to:
161
+
162
+ 1. Stop the development server (if running)
163
+ 2. Build the project (`npm run build`)
164
+ 3. Serve the root directory using a static file server:
165
+
166
+ ```bash
167
+ # After building, serve the files from root
168
+ npx serve
169
+ ```
170
+
171
+ Then you can access:
172
+ - The React demo at `/index.html` (or just `/`)
173
+ - The Web Component demo at `/demo.html`
174
+
175
+ This allows testing both integration approaches (React components and Web Components) in their respective demo environments.
176
+
177
+ Note: The standalone demos rely on the built files in the `dist` and `build` directories, so make sure to build the project before testing.
178
+
179
+ ## Browser Support
180
+
181
+ The Web Component implementation uses modern browser features. For older browsers, consider using a polyfill.
@@ -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
+ }
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>React App</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
+ 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}.rcb-toggle-button.rcb-button-show{background-color:#1a5b6e;background-position:50%;background-repeat:no-repeat;background-size:72%}.rcb-chat-window{max-width:100%;width:550px!important;.rcb-bot-avatar{background-position:50%;background-repeat:no-repeat;background-size:contain;border-radius:0}.rcb-chat-header{align-items:center;display:flex;flex-direction:row;font-weight:700}a{color:#000;font-weight:700;text-decoration:underline}a:hover{color:#107180}.rcb-bot-message a{color:#fff;text-decoration:none}.rcb-bot-message a:hover{text-decoration:underline}.rcb-chat-input-textarea{overflow-y:auto}.rcb-chat-footer-container{font-size:10px}}.embedded-qa-bot{.rcb-chat-window{max-width:100%;width:100%!important}}.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-audio-icon-off,.rcb-audio-icon-on,.rcb-notification-icon-off,.rcb-notification-icon-on{background-size:cover;border:none;cursor:pointer;display:inline-block;height:30px;margin-left:5px;position:relative;width:30px}.rcb-audio-icon-off,.rcb-notification-icon-off{filter:grayscale(100%)}.rcb-audio-icon-off:after,.rcb-audio-icon-on:after,.rcb-notification-icon-off:after,.rcb-notification-icon-on: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-off:hover:after,.rcb-audio-icon-on:hover:after,.rcb-notification-icon-off:hover:after,.rcb-notification-icon-on: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-message-prompt-container.visible{align-items:center;animation:popIn .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}@keyframes popIn{0%{opacity:0;transform:scale(.8)}70%{opacity:1;transform:scale(1.1)}to{transform:scale(1)}}.rcb-chat-body-container{height:100%;overflow-x:hidden;overflow-y:scroll;padding-bottom:16px;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-bot-message-container,.rcb-user-message-container{display:flex;flex-direction:row}.rcb-user-message-container{justify-content:right}.rcb-bot-message,.rcb-user-message{border-radius:22px;display:flex;flex-direction:row;font-size:15px;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;margin-top:8px;min-height:20px;overflow:hidden;overflow-wrap:anywhere;padding:12px 16px;white-space:pre-wrap;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.rcb-bot-message{margin-left:16px}.rcb-bot-message-entry{animation:bot-entry .3s ease-in backwards}@keyframes bot-entry{0%{opacity:0;transform:translate(-100%,50%) scale(0)}to{opacity:1;transform:translate(0) scale(1)}}.rcb-user-message{margin-right:16px}.rcb-user-message-entry{animation:user-entry .3s ease-in backwards}@keyframes user-entry{0%{opacity:0;transform:translate(100%,50%) scale(0)}to{opacity:1;transform:translate(0) scale(1)}}.rcb-message-bot-avatar,.rcb-message-user-avatar{background-size:cover;border-radius:50%;height:40px;margin-top:9px;width:40px}.rcb-message-bot-avatar{margin-left:6px;margin-right:-10px}.rcb-message-user-avatar{margin-left:-10px;margin-right:6px}.rcb-typing-indicator{align-items:center;display:flex}.rcb-dot{animation:rcb-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}@keyframes rcb-typing{0%{opacity:.4}50%{opacity:1}to{opacity:.4}}.rcb-send-button{align-items:center;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:60%;object-fit:cover;width:60%}.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-off,.rcb-voice-icon-on{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:ping 1s infinite}.rcb-voice-icon-off{filter:grayscale(100%)}@keyframes ping{0%{filter:brightness(100%);opacity:1}50%{filter:brightness(50%);opacity:.8}}.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-button-container{display:"flex";flex-direction:"column"}.rcb-chat-input-char-counter{font-size:14px;margin-left:8px;margin-top:3px}.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:.4}.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-picker-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-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:.4}.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-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{background-size:cover;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:collapse .3s ease-in-out forwards;opacity:0;visibility:hidden}.rcb-toggle-button.rcb-button-show{animation:expand .3s ease-in-out forwards;opacity:1;visibility:visible}.rcb-badge{background-color:red;border-radius:50%;color:#fff;padding:5px 10px;position:absolute;right:-6px;top:-6px}.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}.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:tooltip-out .5s ease-in-out;opacity:0;visibility:hidden}.rcb-chat-tooltip.rcb-tooltip-show{animation:tooltip-in .5s ease-in-out;opacity:1;visibility:visible}@keyframes tooltip-in{0%{opacity:0;transform:translateY(-5px)}to{opacity:1;transform:translateY(0)}}@keyframes tooltip-out{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(-5px)}}.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-checkbox-container{display:flex;flex-direction:column;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: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}@keyframes checkboxes-entry{0%{opacity:0;transform:translate(-100%)}to{opacity:1;transform:translate(0)}}.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: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: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}@keyframes options-entry{0%{opacity:0;transform:scale(0)}to{opacity:1;transform:scale(1)}}.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-spin 1s linear infinite;border:4px solid #f3f3f3;border-radius:50%;height:22px;width:22px}@keyframes rcb-spin{0%{transform:rotate(0)}to{transform:rotate(1turn)}}[class^=rcb]{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.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;z-index:10000}.rcb-window-embedded .rcb-chat-window{bottom:auto;opacity:1;position:static;right:auto;visibility:visible}.rcb-window-open .rcb-chat-window{animation:expand .3s ease-in-out forwards;opacity:1;visibility:visible}.rcb-window-close .rcb-chat-window{animation:collapse .3s ease-in-out forwards;opacity:0;visibility:hidden}@keyframes expand{0%{opacity:0;transform:translate(100%,100%) scale(0)}to{opacity:1;transform:translate(0) scale(1)}}@keyframes collapse{0%{opacity:1;transform:translate(0) scale(1)}to{opacity:0;transform:translate(100%,100%) scale(0)}}
2
+ /*# sourceMappingURL=main.css.map*/
@@ -0,0 +1 @@
1
+ {"version":3,"file":"static/css/main.css","mappings":"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","sources":["index.css","App.css","../node_modules/react-chatbotify/dist/react-chatbotify.css"],"sourcesContent":["body {\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",".rcb-toggle-button.rcb-button-show {\n background-size: 72%;\n background-position: center;\n background-repeat: no-repeat;\n background-color: rgb(26, 91, 110);\n}\n.rcb-chat-window {\n width: 550px !important;\n max-width: calc(100%);\n\n .rcb-bot-avatar {\n background-size: contain;\n border-radius: 0;\n background-position: center;\n background-repeat: no-repeat;\n }\n .rcb-chat-header {\n display: flex;\n flex-direction: row;\n align-items: center;\n font-weight: 700;\n }\n a {\n font-weight: 700;\n color: #000000;\n text-decoration: underline;\n }\n a:hover {\n color: #107180;\n }\n .rcb-bot-message a {\n text-decoration: none;\n color: #ffffff;\n }\n .rcb-bot-message a:hover {\n text-decoration: underline;\n }\n .rcb-chat-input-textarea {\n overflow-y: auto;\n }\n .rcb-chat-footer-container {\n font-size: 10px;\n }\n}\n.embedded-qa-bot {\n .rcb-chat-window {\n width: 100% !important;\n max-width: 100%;\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-notification-icon-on,.rcb-notification-icon-off,.rcb-audio-icon-on,.rcb-audio-icon-off{position:relative;display:inline-block;background-size:cover;width:30px;height:30px;border:none;cursor:pointer;margin-left:5px}.rcb-notification-icon-off,.rcb-audio-icon-off{filter:grayscale(100%)}.rcb-notification-icon-on:after,.rcb-notification-icon-off:after,.rcb-audio-icon-on:after,.rcb-audio-icon-off: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-on:hover:after,.rcb-notification-icon-off:hover:after,.rcb-audio-icon-on:hover:after,.rcb-audio-icon-off: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-message-prompt-container.visible{position:sticky;bottom:0;margin:auto;display:flex;align-items:center;justify-content:center;opacity:1;animation:popIn .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}@keyframes popIn{0%{transform:scale(.8);opacity:0}70%{transform:scale(1.1);opacity:1}to{transform:scale(1)}}.rcb-chat-body-container{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-bot-message-container{display:flex;flex-direction:row}.rcb-user-message-container{display:flex;flex-direction:row;justify-content:right}.rcb-bot-message,.rcb-user-message{margin-top:8px;padding:12px 16px;border-radius:22px;min-height:20px;height:fit-content;display:flex;flex-direction:row;width:fit-content;font-size:15px;overflow-wrap:anywhere;overflow:hidden;white-space:pre-wrap}.rcb-bot-message{margin-left:16px}.rcb-bot-message-entry{animation:bot-entry .3s ease-in backwards}@keyframes bot-entry{0%{transform:translate(-100%,50%) scale(0);opacity:0}to{transform:translate(0) scale(1);opacity:1}}.rcb-user-message{margin-right:16px}.rcb-user-message-entry{animation:user-entry .3s ease-in backwards}@keyframes user-entry{0%{transform:translate(100%,50%) scale(0);opacity:0}to{transform:translate(0) scale(1);opacity:1}}.rcb-message-bot-avatar,.rcb-message-user-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-message-user-avatar{margin-left:-10px;margin-right:6px}.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-typing 1s infinite}.rcb-dot:nth-child(2){animation-delay:.2s}.rcb-dot:nth-child(3){animation-delay:.4s}@keyframes rcb-typing{0%{opacity:.4}50%{opacity:1}to{opacity:.4}}.rcb-send-button{display:inline-flex;align-items:center;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:60%;height:60%;background-size:cover;object-fit:cover;background-size:contain;background-repeat:no-repeat;background-position:center}.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-on,.rcb-voice-icon-off{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:ping 1s infinite}.rcb-voice-icon-off{filter:grayscale(100%)}@keyframes ping{0%{filter:brightness(100%);opacity:1}50%{filter:brightness(50%);opacity:.8}}.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-button-container{display:\"flex\";flex-direction:\"column\"}.rcb-chat-input-char-counter{font-size:14px;margin-left:8px;margin-top:3px}.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:.4}.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-picker-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-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:.4}.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-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;background-size:cover}.rcb-toggle-button.rcb-button-hide{opacity:0;visibility:hidden;animation:collapse .3s ease-in-out forwards}.rcb-toggle-button.rcb-button-show{opacity:1;visibility:visible;animation:expand .3s ease-in-out forwards}.rcb-badge{position:absolute;top:-6px;right:-6px;padding:5px 10px;border-radius:50%;background-color:red;color:#fff}.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}.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:tooltip-out .5s ease-in-out}.rcb-chat-tooltip.rcb-tooltip-show{opacity:1;visibility:visible;animation:tooltip-in .5s ease-in-out}@keyframes tooltip-in{0%{opacity:0;transform:translateY(-5px)}to{opacity:1;transform:translateY(0)}}@keyframes tooltip-out{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(-5px)}}.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-checkbox-container{display:flex;flex-direction:column;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:checkboxes-entry .5s ease-out;overflow:hidden}.rcb-checkbox-row-container:hover{box-shadow:0 0 5px #0003}@keyframes checkboxes-entry{0%{transform:translate(-100%);opacity:0}to{transform:translate(0);opacity:1}}.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: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:options-entry .5s ease-out;overflow:hidden}@keyframes options-entry{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}.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-spin 1s linear infinite}@keyframes rcb-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}[class^=rcb]{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.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;z-index:10000}.rcb-window-embedded .rcb-chat-window{position:static;opacity:1;visibility:visible;right:auto;bottom:auto}.rcb-window-open .rcb-chat-window{opacity:1;visibility:visible;animation:expand .3s ease-in-out forwards}.rcb-window-close .rcb-chat-window{opacity:0;visibility:hidden;animation:collapse .3s ease-in-out forwards}@keyframes expand{0%{transform:translate(100%,100%) scale(0);opacity:0}to{transform:translate(0) scale(1);opacity:1}}@keyframes collapse{0%{transform:translate(0) scale(1);opacity:1}to{transform:translate(100%,100%) scale(0);opacity:0}}\n"],"names":[],"sourceRoot":""}
@@ -0,0 +1,2 @@
1
+ "use strict";(self.webpackChunk_snf_access_qa_bot=self.webpackChunk_snf_access_qa_bot||[]).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,c=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)}},u=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){}},s=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)},f=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(){s((function(e){var t=e.timeStamp;v=t}),!0)},l=function(){return v<0&&(v=p(),d(),f((function(){setTimeout((function(){v=p(),d()}),0)}))),{get firstHiddenTime(){return v}}},g=function(e,t){var n,i=l(),r=c("FCP"),a=function(e){"first-contentful-paint"===e.name&&(s&&s.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],s=o?null:u("paint",a);(o||s)&&(n=m(e,r,t),o&&a(o),f((function(i){r=c("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=c("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=u("layout-shift",v);p&&(n=m(i,r,t),s((function(){p.takeRecords().map(v),n(!0)})),f((function(){a=0,T=-1,r=c("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=c("FID"),p=function(e){e.startTime<a.firstHiddenTime&&(v.value=e.processingStart-e.startTime,v.entries.push(e),n(!0))},d=u("first-input",p);n=m(e,v,t),d&&s((function(){d.takeRecords().map(p),d.disconnect()}),!0),d&&f((function(){var a;v=c("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=c("LCP"),a=function(e){var t=e.startTime;t<i.firstHiddenTime&&(r.value=t,r.entries.push(e),n())},o=u("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})})),s(v,!0),f((function(i){r=c("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=c("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":""}