diff --git a/.github/workflows/trigger-action.yml b/.github/workflows/trigger-action.yml new file mode 100644 index 0000000000..b3ce5c3e0c --- /dev/null +++ b/.github/workflows/trigger-action.yml @@ -0,0 +1,22 @@ + +name: Trigger action + +on: + push: + branches: + - 'hotfix/v*' + - 'release/v*' + +jobs: + dispatch: + runs-on: ubuntu-latest + steps: + - name: Dispatch Action + run: | + curl \ + -X POST \ + -u "${{ secrets.USERNAME}}:${{secrets.TOKEN}}" \ + "https://api.github.com/repos/ONLYOFFICE/DocSpace-buildtools/dispatches" \ + -H "Accept: application/vnd.github.everest-preview+json" \ + --data '{"event_type": "client-trigger-action", "client_payload": { "branches": ["'"${GITHUB_REF_NAME}"'"]}}' + diff --git a/.gitignore b/.gitignore index 8f6f66769b..bd2428cfa7 100644 --- a/.gitignore +++ b/.gitignore @@ -7,38 +7,15 @@ **/node_modules/ **/storybook-static/ **/dist -/build/deploy + *.log -/products/ASC.People/Data/ -/Data + Logs/ **/.DS_Store .eslintcache -build/deploy/ + /public/debuginfo.md -TestsResults/ -/Data.Test -/build/install/RadicalePlugins/app_auth_plugin/app_auth_plugin.egg-info/PKG-INFO -/build/install/RadicalePlugins/app_auth_plugin/app_auth_plugin.egg-info/SOURCES.txt -/build/install/RadicalePlugins/app_auth_plugin/app_auth_plugin.egg-info/dependency_links.txt -/build/install/RadicalePlugins/app_auth_plugin/app_auth_plugin.egg-info/top_level.txt -/build/install/RadicalePlugins/app_auth_plugin/build/lib/app_auth_plugin/__init__.py -/build/install/RadicalePlugins/app_rights_plugin/app_rights_plugin.egg-info/PKG-INFO -/build/install/RadicalePlugins/app_rights_plugin/app_rights_plugin.egg-info/SOURCES.txt -/build/install/RadicalePlugins/app_rights_plugin/app_rights_plugin.egg-info/dependency_links.txt -/build/install/RadicalePlugins/app_rights_plugin/app_rights_plugin.egg-info/top_level.txt -/build/install/RadicalePlugins/app_rights_plugin/build/lib/app_rights_plugin/__init__.py -/build/install/RadicalePlugins/app_store_plugin/app_store_plugin.egg-info/PKG-INFO -/build/install/RadicalePlugins/app_store_plugin/app_store_plugin.egg-info/SOURCES.txt -/build/install/RadicalePlugins/app_store_plugin/app_store_plugin.egg-info/dependency_links.txt -/build/install/RadicalePlugins/app_store_plugin/app_store_plugin.egg-info/top_level.txt -/build/install/RadicalePlugins/app_store_plugin/build/lib/app_store_plugin/__init__.py -/build/install/RadicalePlugins/app_store_plugin/build/lib/app_store_plugin/cache.py -/build/install/RadicalePlugins/app_store_plugin/build/lib/app_store_plugin/delete.py -/build/install/RadicalePlugins/app_store_plugin/build/lib/app_store_plugin/history.py -/build/install/RadicalePlugins/app_store_plugin/build/lib/app_store_plugin/log.py -/build/install/RadicalePlugins/app_store_plugin/build/lib/app_store_plugin/sync.py -/build/install/RadicalePlugins/app_store_plugin/build/lib/app_store_plugin/upload.py + .yarn/* !.yarn/patches @@ -51,6 +28,7 @@ TestsResults/ **/.yarn/cache **/.yarn/install-state.gz licenses.csv -publish/ + .idea +packages/runtime.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 29fb7e2c83..8828ef3f60 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -62,6 +62,21 @@ "close": false } }, + { + "label": "Backend | rebuild SAAS + dnsmasq", + "command": "cd ${workspaceFolder}/../ ; ${command:python.interpreterPath} buildtools/build.backend.docker.py -s -d -f", + "type": "shell", + "group": { + "kind": "build", + "isDefault": true + }, + "presentation": { + "reveal": "always", + "panel": "new", + "focus": true, + "close": false + } + }, { "label": "Backend | build EE + dnsmasq", "command": "cd ${workspaceFolder}/../ ; ${command:python.interpreterPath} buildtools/build.backend.docker.py -d", @@ -152,6 +167,21 @@ "close": false } }, + { + "label": "Frontend | update yarn.lock", + "type": "shell", + "command": "cd ${workspaceFolder} ; yarn wipe && yarn install", + "group": { + "kind": "build", + "isDefault": true + }, + "presentation": { + "reveal": "always", + "panel": "new", + "focus": true, + "close": false + } + }, { "label": "Frontend | build", "type": "shell", @@ -196,6 +226,66 @@ "focus": true, "close": false } + }, + { + "label": "Frontend | build-and-start-prod", + "type": "shell", + "command": "cd ${workspaceFolder} ; yarn build && yarn start-prod", + "group": { + "kind": "build", + "isDefault": true + }, + "presentation": { + "reveal": "always", + "panel": "new", + "focus": true, + "close": false + } + }, + { + "label": "Test | frontend-translations", + "type": "shell", + "command": "cd ${workspaceFolder}/../ ; ${command:python.interpreterPath} buildtools/run.translations.tests.py", + "group": { + "kind": "build", + "isDefault": true + }, + "presentation": { + "reveal": "always", + "panel": "new", + "focus": true, + "close": false + } + }, + { + "label": "Test | frontend-translations-spellcheck", + "type": "shell", + "command": "cd ${workspaceFolder}/../ ; ${command:python.interpreterPath} buildtools/run.translations.spellcheck.tests.py", + "group": { + "kind": "build", + "isDefault": true + }, + "presentation": { + "reveal": "always", + "panel": "new", + "focus": true, + "close": false + } + }, + { + "label": "Test | frontend-translations-spellcheck-force-save", + "type": "shell", + "command": "cd ${workspaceFolder}/../ ; ${command:python.interpreterPath} buildtools/run.translations.spellcheck.tests.py -f", + "group": { + "kind": "build", + "isDefault": true + }, + "presentation": { + "reveal": "always", + "panel": "new", + "focus": true, + "close": false + } } ] } diff --git a/common/scripts/before-build.js b/common/scripts/before-build.js new file mode 100644 index 0000000000..65968f9e10 --- /dev/null +++ b/common/scripts/before-build.js @@ -0,0 +1,55 @@ +const { join } = require("path"); +const { readdirSync, readFileSync, writeFileSync } = require("fs"); +const crypto = require("crypto"); + +function generateChecksum(str, algorithm, encoding) { + return crypto + .createHash(algorithm || "md5") + .update(str, "utf8") + .digest(encoding || "hex"); +} + +const dstPath = join(__dirname, "../../packages", "runtime.json"); +const scriptsDir = join(__dirname, "../../public/scripts"); + +const getFileList = (dirName) => { + let files = []; + + const items = readdirSync(dirName, { withFileTypes: true }); + + for (const item of items) { + if (item.name == ".DS_Store") continue; + + if (item.isDirectory()) { + files = [...files, ...getFileList(join(dirName, item.name))]; + } else { + files.push({ path: join(dirName, item.name), name: item.name }); + } + } + + return files; +}; + +const files = getFileList(scriptsDir); + +const date = new Date(); +const dateString = `${date.getFullYear()}${ + date.getMonth() + 1 +}${date.getDate()}_${date.getHours()}${date.getMinutes()}${date.getSeconds()}`; + +const data = { + date: dateString, + checksums: {}, +}; + +files.forEach((file) => { + try { + let content = readFileSync(file.path); + let checksum = generateChecksum(content); + data.checksums[file.name] = checksum; + } catch (e) { + console.error("Unable to generateChecksum file ", file.path, e); + } +}); + +writeFileSync(dstPath, JSON.stringify(data, null, 2)); diff --git a/frontend.code-workspace b/frontend.code-workspace index e835d072e1..3522812927 100644 --- a/frontend.code-workspace +++ b/frontend.code-workspace @@ -66,6 +66,11 @@ "task": "Backend | build SAAS + dnsmasq", "tooltip": "🛠️ Start the \"backend docker build SAAS + dnsmasq\" task" }, + { + "label": "Docker : ReBuild-SAAS + dnsmasq", + "task": "Backend | rebuild SAAS + dnsmasq", + "tooltip": "🛠️ Start the \"backend docker rebuild SAAS + dnsmasq\" task" + }, { "label": "Docker : Build-EE + dnsmasq", "task": "Backend | build EE + dnsmasq", @@ -102,11 +107,21 @@ "task": "Frontend | install", "tooltip": "🛠️ Start the \"frontend install packages\" task" }, + { + "label": "Update yarn.lock", + "task": "Frontend | update yarn.lock", + "tooltip": "🛠️ Start the \"frontend update yarn.lock\" task" + }, { "label": "Build", "task": "Frontend | build", "tooltip": "🛠️ Start the \"frontend build\" task" }, + { + "label": "Build and start prod", + "task": "Frontend | build-and-start-prod", + "tooltip": "🛠️ Start the \"frontend build and start production\" task" + }, { "label": "Start", "task": "Frontend | start", @@ -119,6 +134,27 @@ } ], "tooltip": "🛠️ Client tasks" + }, + { + "label": "Tests", + "tasks": [ + { + "label": "translations", + "task": "Test | frontend-translations", + "tooltip": "🛠️ Start the \"frontend translation tests\" task" + }, + { + "label": "spellcheck", + "task": "Test | frontend-translations-spellcheck", + "tooltip": "🛠️ Start the \"frontend translation spellcheck tests\" task" + }, + { + "label": "spellcheck-force-save", + "task": "Test | frontend-translations-spellcheck-force-save", + "tooltip": "🛠️ Start the \"frontend translation spellcheck tests\" task" + } + ], + "tooltip": "🛠️ Client tests tasks" } ] }, diff --git a/graph.svg b/graph.svg new file mode 100644 index 0000000000..05d9341c8a --- /dev/null +++ b/graph.svg @@ -0,0 +1,355 @@ + + + + + + +G + + + +client/src/components/panels/InvitePanel/index.js + +client/src/components/panels/InvitePanel/index.js + + + +client/src/components/panels/InvitePanel/sub-components/InviteInput.js + +client/src/components/panels/InvitePanel/sub-components/InviteInput.js + + + +client/src/components/panels/InvitePanel/index.js->client/src/components/panels/InvitePanel/sub-components/InviteInput.js + + + + + +client/src/components/panels/index.js + +client/src/components/panels/index.js + + + +client/src/components/panels/InvitePanel/sub-components/InviteInput.js->client/src/components/panels/index.js + + + + + +client/src/components/panels/index.js->client/src/components/panels/InvitePanel/index.js + + + + + +client/src/components/panels/SharingPanel/index.js + +client/src/components/panels/SharingPanel/index.js + + + +client/src/components/panels/index.js->client/src/components/panels/SharingPanel/index.js + + + + + +client/src/components/panels/SharingPanel/index.js->client/src/components/panels/index.js + + + + + +client/src/helpers/desktop.js + +client/src/helpers/desktop.js + + + +client/src/store/index.js + +client/src/store/index.js + + + +client/src/helpers/desktop.js->client/src/store/index.js + + + + + +client/src/store/HotkeyStore.js + +client/src/store/HotkeyStore.js + + + +client/src/store/index.js->client/src/store/HotkeyStore.js + + + + + +client/src/pages/FormGallery/TilesView/StyledTileView.js + +client/src/pages/FormGallery/TilesView/StyledTileView.js + + + +client/src/pages/FormGallery/TilesView/sub-components/TileContent.js + +client/src/pages/FormGallery/TilesView/sub-components/TileContent.js + + + +client/src/pages/FormGallery/TilesView/StyledTileView.js->client/src/pages/FormGallery/TilesView/sub-components/TileContent.js + + + + + +client/src/pages/FormGallery/TilesView/sub-components/TileContent.js->client/src/pages/FormGallery/TilesView/StyledTileView.js + + + + + +client/src/pages/PortalSettings/utils/index.js + +client/src/pages/PortalSettings/utils/index.js + + + +client/src/pages/PortalSettings/utils/resetSessionStorage.js + +client/src/pages/PortalSettings/utils/resetSessionStorage.js + + + +client/src/pages/PortalSettings/utils/index.js->client/src/pages/PortalSettings/utils/resetSessionStorage.js + + + + + +client/src/pages/PortalSettings/utils/resetSessionStorage.js->client/src/pages/PortalSettings/utils/index.js + + + + + +client/src/store/HotkeyStore.js->client/src/helpers/desktop.js + + + + + +common/store/AuthStore.js + +common/store/AuthStore.js + + + +common/store/CurrentQuotaStore.js + +common/store/CurrentQuotaStore.js + + + +common/store/AuthStore.js->common/store/CurrentQuotaStore.js + + + + + +common/store/CurrentTariffStatusStore.js + +common/store/CurrentTariffStatusStore.js + + + +common/store/AuthStore.js->common/store/CurrentTariffStatusStore.js + + + + + +common/store/CurrentQuotaStore.js->common/store/AuthStore.js + + + + + +common/store/CurrentTariffStatusStore.js->common/store/AuthStore.js + + + + + +components/ColorTheme/ColorTheme.js + +components/ColorTheme/ColorTheme.js + + + +components/ColorTheme/styled/index.js + +components/ColorTheme/styled/index.js + + + +components/ColorTheme/ColorTheme.js->components/ColorTheme/styled/index.js + + + + + +components/ColorTheme/styled/mainButton.js + +components/ColorTheme/styled/mainButton.js + + + +components/ColorTheme/styled/index.js->components/ColorTheme/styled/mainButton.js + + + + + +components/ColorTheme/styled/mobileProgressBar.js + +components/ColorTheme/styled/mobileProgressBar.js + + + +components/ColorTheme/styled/index.js->components/ColorTheme/styled/mobileProgressBar.js + + + + + +components/ColorTheme/index.js + +components/ColorTheme/index.js + + + +components/ColorTheme/index.js->components/ColorTheme/ColorTheme.js + + + + + +components/main-button/styled-main-button.js + +components/main-button/styled-main-button.js + + + +components/ColorTheme/styled/mainButton.js->components/main-button/styled-main-button.js + + + + + +components/main-button-mobile/styled-main-button.js + +components/main-button-mobile/styled-main-button.js + + + +components/ColorTheme/styled/mobileProgressBar.js->components/main-button-mobile/styled-main-button.js + + + + + +components/drop-down/index.js + +components/drop-down/index.js + + + +components/main-button/styled-main-button.js->components/drop-down/index.js + + + + + +components/drop-down-item/index.js + +components/drop-down-item/index.js + + + +components/main-button-mobile/styled-main-button.js->components/drop-down-item/index.js + + + + + +components/main-button-mobile/styled-main-button.js->components/drop-down/index.js + + + + + +components/floating-button/index.js + +components/floating-button/index.js + + + +components/main-button-mobile/styled-main-button.js->components/floating-button/index.js + + + + + +components/toggle-button/index.js + +components/toggle-button/index.js + + + +components/drop-down-item/index.js->components/toggle-button/index.js + + + + + +components/toggle-button/index.js->components/ColorTheme/index.js + + + + + +components/drop-down/index.js->components/drop-down-item/index.js + + + + + +components/floating-button/floating-button.js + +components/floating-button/floating-button.js + + + +components/floating-button/floating-button.js->components/ColorTheme/index.js + + + + + +components/floating-button/index.js->components/floating-button/floating-button.js + + + + + diff --git a/i18next/client.babel b/i18next/client.babel index 366020d770..21a5504169 100644 --- a/i18next/client.babel +++ b/i18next/client.babel @@ -21837,366 +21837,6 @@ - - MoveToTrashFolder - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - - - MoveToTrashFolderFromPersonal - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - - - MoveToTrashItems - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - MoveToTrashTitle @@ -22682,126 +22322,6 @@ DeleteProfileEverDialog - - DeleteGroupUsersSuccessMessage - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - DeleteMyDocumentsUser @@ -26917,6 +26437,126 @@ Errors + + AccessDenied + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + Error401Text @@ -28117,6 +27757,126 @@ + + PortalRestriction + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + @@ -28243,7 +28003,7 @@ - AddMembersDescription + AdditionalLinks @@ -28363,7 +28123,7 @@ - AddNewExternalLink + AddMembersDescription @@ -31362,6 +31122,126 @@ + + CopyGeneralLink + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + CopyItem @@ -31602,6 +31482,126 @@ + + CopyLink + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + CopyLinkPassword @@ -31842,6 +31842,126 @@ + + CreateAndCopy + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + CreateNewLink @@ -32322,6 +32442,126 @@ + + DeleteGeneralLink + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + DeleteLink @@ -33282,6 +33522,246 @@ + + EditAdditionalLink + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + + + EditGeneralLink + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + EditLink @@ -34242,126 +34722,6 @@ - - EmptyFolderHeader - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - EmptyRecycleBin @@ -36522,6 +36882,246 @@ + + GeneralLink + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + + + GeneralLinkDeletedSuccessfully + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + GoToMyRooms @@ -37482,246 +38082,6 @@ - - LinkAddedSuccessfully - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - - - LinkCreatedSuccessfully - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - LinkDeletedSuccessfully @@ -38322,246 +38682,6 @@ - - LinkForRoomMembers - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - - - Links - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - LinkSuccessfullyCopied @@ -38682,6 +38802,126 @@ + + LinkSuccessfullyCreatedAndCopied + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + LinkValidUntil @@ -43842,6 +44082,126 @@ + + RevokeLink + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + RoomAvailableViaExternalLink @@ -44922,6 +45282,126 @@ + + RoomsPinned + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + RoomsRemoved @@ -45042,6 +45522,126 @@ + + RoomsUnpinned + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + RoomUnpinned @@ -48647,126 +49247,6 @@ - - ConnectEmpty - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - DisplayFavorites @@ -50087,133 +50567,13 @@ - - UploadPluginsHere - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - FormGallery - EmptyScreenDescription + Categories @@ -50333,7 +50693,7 @@ - GalleryEmptyScreenDescription + EmptyFormGalleryScreenDescription @@ -50453,7 +50813,127 @@ - GalleryEmptyScreenHeader + ErrorViewDescription + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + + + ErrorViewHeader @@ -51172,6 +51652,126 @@ + + SuggestChanges + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + TemplateInfo @@ -51292,6 +51892,126 @@ + + ViewAllTemplates + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + @@ -60302,6 +61022,126 @@ + + GalleryEmptyScreenText + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + HistoryEmptyScreenText @@ -60782,246 +61622,6 @@ - - LinksToViewingIcon - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - - - PendingInvitations - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - Properties @@ -61742,126 +62342,6 @@ - - SystemProperties - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - Users @@ -61982,126 +62462,6 @@ - - UsersInRoom - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - Versions @@ -62707,6 +63067,126 @@ + + InvitationLanguage + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + InviteAccountSearchPlaceholder @@ -63547,6 +64027,126 @@ + + ResetChange + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + SendInvitation @@ -65232,126 +65832,6 @@ - - Destroy - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - EmbedCodeSuccessfullyCopied @@ -66192,126 +66672,6 @@ - - FolderId - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - FrameId @@ -85932,6 +86292,246 @@ + + DesktopTheme + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + + + DesktopThemeDescription + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + EditPhoto @@ -86172,6 +86772,126 @@ + + ErrorAccountAlreadyUse + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + FileManagement @@ -88332,126 +89052,6 @@ - - TfaLoginSettings - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - TwoFactorDescription @@ -89909,251 +90509,6 @@ - - SelectFolder - - - FolderContents - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - - - NotAvailableFolder - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - - - SendInviteDialog @@ -91962,246 +92317,6 @@ - - AdminsMessageDescription - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - - - AdminsMessageHelper - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - AdminsMessageMobileDescription @@ -94602,246 +94717,6 @@ - - AutoBackupHelp - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - - - AutoBackupHelpNote - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - AutoSavePeriod @@ -99042,126 +98917,6 @@ - - CustomTitles - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - CustomTitlesDescription @@ -99282,246 +99037,6 @@ - - CustomTitlesFrom - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - - - CustomTitlesSettingsDescription - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - CustomTitlesSettingsNavDescription @@ -99642,366 +99157,6 @@ - - CustomTitlesSettingsTooltip - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - - - CustomTitlesSettingsTooltipDescription - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - - - CustomTitlesText - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - CustomTitlesWelcome @@ -101922,246 +101077,6 @@ - - DNSSettingsTooltipMain - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - - - DNSSettingsTooltipStandalone - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - DocumentService @@ -102282,126 +101197,6 @@ - - DocumentServiceLocationHeader - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - DocumentServiceLocationHeaderHelp @@ -102522,126 +101317,6 @@ - - DocumentServiceLocationHeaderInfo - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - DocumentServiceLocationUrlApi @@ -105042,246 +103717,6 @@ - - IPSecurityDescription - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - - - IPSecurityHelper - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - IPSecurityMobileDescription @@ -105642,126 +104077,6 @@ - - LanguageAndTimeZoneSettingsDescription - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - LanguageAndTimeZoneSettingsNavDescription @@ -105882,246 +104197,6 @@ - - LanguageTimeSettingsTooltip - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - - - LanguageTimeSettingsTooltipDescription - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - Lifetime @@ -108162,126 +106237,6 @@ - - ManualBackupHelp - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - MaxCopies @@ -109002,366 +106957,6 @@ - - PleaseNote - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - - - PleaseNoteDescription - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - - - Plugins - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - PortalAccess @@ -109482,126 +107077,6 @@ - - PortalAccessSubTitle - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - PortalDeactivation @@ -110442,126 +107917,6 @@ - - PortalIntegration - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - PortalNameEmpty @@ -111042,126 +108397,6 @@ - - PortalRenamingDescription - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - PortalRenamingDescriptionText @@ -111402,126 +108637,6 @@ - - PortalRenamingMobile - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - PortalRenamingModalText @@ -111882,126 +108997,6 @@ - - PortalRenamingSettingsTooltip - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - PortalSecurityTitle @@ -112842,126 +109837,6 @@ - - RestoreDefaultButton - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - RoomsModule @@ -113802,246 +110677,6 @@ - - SessionLifetimeDescription - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - - - SessionLifetimeHelper - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - SessionLifetimeMobileDescription @@ -114522,366 +111157,6 @@ - - SettingPasswordStrength - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - - - SettingPasswordStrengthDescription - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - - - SettingPasswordStrengthHelper - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - SettingPasswordStrengthMobileDescription @@ -118362,246 +114637,6 @@ - - TrustedMailDescription - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - - - TrustedMailHelper - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - TrustedMailMobileDescription @@ -119082,126 +115117,6 @@ - - TwoFactorAuthDescription - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - TwoFactorAuthEnableDescription @@ -119322,126 +115237,6 @@ - - TwoFactorAuthHelper - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - TwoFactorAuthMobileDescription @@ -119562,126 +115357,6 @@ - - TwoFactorAuthNote - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - TwoFactorAuthSave @@ -131217,126 +126892,6 @@ - - Price - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - @@ -132182,126 +127737,6 @@ - - HelpText - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - Host @@ -135187,126 +130622,6 @@ - - FolderSelection - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - FolderTitleBoxNet @@ -148642,126 +143957,6 @@ - - Webhook - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - WebhookCreationHint @@ -150447,6 +145642,246 @@ + + ExpandFunctionality + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + + + GoToRepo + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + Metadata @@ -150928,7 +146363,367 @@ - Plugins + PluginSamples + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + + + PluginSDK + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + + + PluginSDKDescription + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + + + PluginSDKInstruction diff --git a/i18next/common.babel b/i18next/common.babel index d26cc83c6e..4ca387da9b 100644 --- a/i18next/common.babel +++ b/i18next/common.babel @@ -1222,126 +1222,6 @@ - - AddFilter - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - Address @@ -10943,127 +10823,7 @@ - DescriptionOfTheEveryoneRole - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - - - DescriptionOfTheRoleQueue + Description @@ -16222,6 +15982,126 @@ + + Free + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + FreeProFeatures @@ -16942,6 +16822,126 @@ + + GoBack + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + GracePeriodActivated @@ -17422,6 +17422,126 @@ + + Homepage + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + Hotkeys @@ -18022,6 +18142,246 @@ + + IncorrectFirstName + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + + + IncorrectLastName + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + IncorrectLocalPart @@ -22582,6 +22942,126 @@ + + More + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + MoveTo @@ -27143,7 +27623,7 @@ - Plugin + Plugins @@ -28102,6 +28582,126 @@ + + PublicRoomLabel + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + PunycodeDomain @@ -28462,6 +29062,126 @@ + + ReadInstructions + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + ReconnectStorage @@ -30022,6 +30742,126 @@ + + RestoreTo + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + Review @@ -31102,6 +31942,126 @@ + + SaveToPublicRoom + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + Search @@ -32782,126 +33742,6 @@ - - SettingsDocSpace - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - SettingsGeneral @@ -33262,6 +34102,126 @@ + + SignInWithApple + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + SignInWithFacebook @@ -34102,6 +35062,966 @@ + + SignUpWithApple + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + + + SignUpWithFacebook + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + + + SignUpWithGoogle + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + + + SignUpWithLinkedIn + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + + + SignUpWithMicrosoft + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + + + SignUpWithSso + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + + + SignUpWithTwitter + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + + + SignUpWithZoom + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + Size @@ -37702,6 +39622,246 @@ + + UploadDate + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + + + Uploader + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + UseLikePro diff --git a/i18next/editor.babel b/i18next/editor.babel index 8dd2ad1825..c20c919a08 100644 --- a/i18next/editor.babel +++ b/i18next/editor.babel @@ -627,6 +627,126 @@ + + ErrorConnectionLost + + + + + + ar-SA + false + + + az-Latn-AZ + false + + + bg-BG + false + + + cs-CZ + false + + + de-DE + false + + + el-GR + false + + + en-US + false + + + es-ES + false + + + fi-FI + false + + + fr-FR + false + + + hy-AM + false + + + it-IT + false + + + ja-JP + false + + + ko-KR + false + + + lo-LA + false + + + lv-LV + false + + + nl-NL + false + + + pl-PL + false + + + pt-BR + false + + + pt-PT + false + + + ro-RO + false + + + ru-RU + false + + + sk-SK + false + + + sl-SI + false + + + tr-TR + false + + + uk-UA + false + + + vi-VN + false + + + zh-CN + false + + + FileLocation diff --git a/i18next/login.babel b/i18next/login.babel index 329621a452..6f2b19842c 100644 --- a/i18next/login.babel +++ b/i18next/login.babel @@ -2547,126 +2547,6 @@ - - ErrorInvalidHeader - - - - - - ar-SA - false - - - az-Latn-AZ - false - - - bg-BG - false - - - cs-CZ - false - - - de-DE - false - - - el-GR - false - - - en-US - false - - - es-ES - false - - - fi-FI - false - - - fr-FR - false - - - hy-AM - false - - - it-IT - false - - - ja-JP - false - - - ko-KR - false - - - lo-LA - false - - - lv-LV - false - - - nl-NL - false - - - pl-PL - false - - - pt-BR - false - - - pt-PT - false - - - ro-RO - false - - - ru-RU - false - - - sk-SK - false - - - sl-SI - false - - - tr-TR - false - - - uk-UA - false - - - vi-VN - false - - - zh-CN - false - - - ErrorInvalidText diff --git a/package.json b/package.json index e7adbc8983..40d5d2e5d6 100644 --- a/package.json +++ b/package.json @@ -12,18 +12,20 @@ "yarn": ">=3" }, "scripts": { - "build": "yarn workspaces foreach -vptiR --from '{@docspace/client,@docspace/login,@docspace/editor}' run build", + "build": "node ./common/scripts/before-build.js && yarn workspaces foreach -vptiR --from '{@docspace/client,@docspace/login,@docspace/editor}' run build", "bump": "yarn version apply --all", "clean": "yarn workspaces foreach -vptiR run clean", "deploy": "shx rm -rf ../publish/web && yarn workspaces foreach -ptR --from '{@docspace/client,@docspace/login,@docspace/editor}' run deploy && shx cp -r public ../publish/web/ && node common/scripts/minify-common-locales.js", - "start": "yarn workspaces foreach -vptiR --from '{@docspace/client,@docspace/login,@docspace/editor}' run start", + "start": "node ./common/scripts/before-build.js && yarn workspaces foreach -vptiR --from '{@docspace/client,@docspace/login,@docspace/editor}' run start", "start-prod": "yarn workspaces foreach -vptiR --from '{@docspace/client,@docspace/login,@docspace/editor}' run start-prod", "storybook": "yarn workspace @docspace/components storybook", "storybook-build": "yarn workspace @docspace/components run storybook-build", "storybook-serve": "yarn workspace @docspace/components run storybook-serve", "test": "yarn workspace @docspace/components test", "wipe": "shx rm -rf node_modules yarn.lock packages/**/node_modules", - "licenses-audit": "yarn licenses audit --output-csv=licenses.csv --config=licenses.config.js --summary" + "licenses-audit": "yarn licenses audit --output-csv=licenses.csv --config=licenses.config.js --summary", + "check-circular": "yarn madge --circular ./packages", + "check-circular:graph": "yarn madge --circular --image graph.svg ./packages" }, "old-scripts": { "build:test": "yarn workspaces foreach -vptiR --from '{@docspace/client,@docspace/login,@docspace/editor}' run build:test", @@ -35,6 +37,7 @@ }, "devDependencies": { "he": "^1.2.0", + "madge": "^6.1.0", "shx": "^0.3.4", "terser": "^5.16.6" }, diff --git a/packages/client/index.d.ts b/packages/client/index.d.ts new file mode 100644 index 0000000000..c3ab6153bb --- /dev/null +++ b/packages/client/index.d.ts @@ -0,0 +1,6 @@ +interface Window { + zESettings?: any; + zE?: { + apply: Function; + }; +} diff --git a/packages/client/public/index.html b/packages/client/public/index.html index 1b77f8946c..c79ff9a608 100644 --- a/packages/client/public/index.html +++ b/packages/client/public/index.html @@ -69,10 +69,11 @@ To begin the development, run `npm start` or `yarn start`. To create a production bundle, use `npm run build` or `yarn build`. --> - + + + ${scripts} diff --git a/packages/editor/webpack/webpack.client.js b/packages/editor/webpack/webpack.client.js index 2edc8bcdee..1df223b56f 100644 --- a/packages/editor/webpack/webpack.client.js +++ b/packages/editor/webpack/webpack.client.js @@ -1,7 +1,7 @@ const { merge } = require("webpack-merge"); const path = require("path"); -const ModuleFederationPlugin = require("webpack").container - .ModuleFederationPlugin; +const ModuleFederationPlugin = + require("webpack").container.ModuleFederationPlugin; const DefinePlugin = require("webpack").DefinePlugin; const { WebpackManifestPlugin } = require("webpack-manifest-plugin"); const { CleanWebpackPlugin } = require("clean-webpack-plugin"); @@ -9,8 +9,10 @@ const ExternalTemplateRemotesPlugin = require("external-remotes-plugin"); const CopyPlugin = require("copy-webpack-plugin"); const TerserPlugin = require("terser-webpack-plugin"); const minifyJson = require("@docspace/common/utils/minifyJson"); +const runtime = require("../../runtime.json"); +const dateHash = runtime?.date || ""; -const beforeBuild = require("@docspace/common/utils/beforeBuild"); +//const beforeBuild = require("@docspace/common/utils/beforeBuild"); const sharedDeps = require("@docspace/common/constants/sharedDependencies"); const baseConfig = require("./webpack.base.js"); @@ -159,6 +161,16 @@ module.exports = (env, argv) => { IS_DEVELOPMENT: argv.mode !== "production", PORT: process.env.PORT || 5013, IS_PERSONAL: env.personal || false, + BROWSER_DETECTOR_URL: JSON.stringify( + `/static/scripts/browserDetector.js?hash=${ + runtime.checksums["browserDetector.js"] || dateHash + }` + ), + CONFIG_URL: JSON.stringify( + `/static/scripts/config.json?hash=${ + runtime.checksums["config.json"] || dateHash + }` + ), }), ]; diff --git a/packages/editor/webpack/webpack.server.js b/packages/editor/webpack/webpack.server.js index e63dd69a93..ef4fbde019 100644 --- a/packages/editor/webpack/webpack.server.js +++ b/packages/editor/webpack/webpack.server.js @@ -4,6 +4,8 @@ const path = require("path"); const DefinePlugin = require("webpack").DefinePlugin; const TerserPlugin = require("terser-webpack-plugin"); const CopyPlugin = require("copy-webpack-plugin"); +const runtime = require("../../runtime.json"); +const dateHash = runtime?.date || ""; const serverConfig = { target: "node", @@ -74,6 +76,16 @@ module.exports = (env, argv) => { IS_DEVELOPMENT: argv.mode !== "production", PORT: 5013, IS_PERSONAL: env.personal || false, + BROWSER_DETECTOR_URL: JSON.stringify( + `/static/scripts/browserDetector.js?hash=${ + runtime.checksums["browserDetector.js"] || dateHash + }` + ), + CONFIG_URL: JSON.stringify( + `/static/scripts/config.json?hash=${ + runtime.checksums["config.json"] || dateHash + }` + ), }), ]; diff --git a/packages/login/index.d.ts b/packages/login/index.d.ts index cd52450503..209fe79e02 100644 --- a/packages/login/index.d.ts +++ b/packages/login/index.d.ts @@ -165,6 +165,8 @@ declare global { var PORT: number; var IS_PERSONAL: boolean; var IS_ROOMS_MODE: boolean; + var BROWSER_DETECTOR_URL: string; + var CONFIG_URL: string; type assetsType = { [key: string]: string } | undefined; diff --git a/packages/login/src/server/lib/template.ts b/packages/login/src/server/lib/template.ts index d48331c5e3..2fc46fa848 100644 --- a/packages/login/src/server/lib/template.ts +++ b/packages/login/src/server/lib/template.ts @@ -69,7 +69,7 @@ const template: Template = ( ${clientScripts} + ${scripts} diff --git a/packages/login/webpack/webpack.client.js b/packages/login/webpack/webpack.client.js index 9a2a0bb27d..13decfa023 100644 --- a/packages/login/webpack/webpack.client.js +++ b/packages/login/webpack/webpack.client.js @@ -1,20 +1,22 @@ const { merge } = require("webpack-merge"); const path = require("path"); -const ModuleFederationPlugin = require("webpack").container - .ModuleFederationPlugin; +const ModuleFederationPlugin = + require("webpack").container.ModuleFederationPlugin; const DefinePlugin = require("webpack").DefinePlugin; const { WebpackManifestPlugin } = require("webpack-manifest-plugin"); const { CleanWebpackPlugin } = require("clean-webpack-plugin"); const ExternalTemplateRemotesPlugin = require("external-remotes-plugin"); const CopyPlugin = require("copy-webpack-plugin"); const TerserPlugin = require("terser-webpack-plugin"); -const combineUrl = require("@docspace/common/utils/combineUrl"); +//const combineUrl = require("@docspace/common/utils/combineUrl"); const minifyJson = require("@docspace/common/utils/minifyJson"); const sharedDeps = require("@docspace/common/constants/sharedDependencies"); -const beforeBuild = require("@docspace/common/utils/beforeBuild"); +//const beforeBuild = require("@docspace/common/utils/beforeBuild"); const baseConfig = require("./webpack.base.js"); +const runtime = require("../../runtime.json"); const pkg = require("../package.json"); const deps = pkg.dependencies || {}; +const dateHash = runtime?.date || ""; for (let dep in sharedDeps) { sharedDeps[dep].eager = true; @@ -161,6 +163,16 @@ module.exports = (env, argv) => { PORT: process.env.PORT || 5011, IS_PERSONAL: env.personal || false, IS_ROOMS_MODE: env.rooms || false, + BROWSER_DETECTOR_URL: JSON.stringify( + `/static/scripts/browserDetector.js?hash=${ + runtime.checksums["browserDetector.js"] || dateHash + }` + ), + CONFIG_URL: JSON.stringify( + `/static/scripts/config.json?hash=${ + runtime.checksums["config.json"] || dateHash + }` + ), }), ]; diff --git a/packages/login/webpack/webpack.server.js b/packages/login/webpack/webpack.server.js index 436c03351d..9a6d719509 100644 --- a/packages/login/webpack/webpack.server.js +++ b/packages/login/webpack/webpack.server.js @@ -4,6 +4,8 @@ const path = require("path"); const DefinePlugin = require("webpack").DefinePlugin; const TerserPlugin = require("terser-webpack-plugin"); const CopyPlugin = require("copy-webpack-plugin"); +const runtime = require("../../runtime.json"); +const dateHash = runtime?.date || ""; const serverConfig = { target: "node", @@ -74,6 +76,16 @@ module.exports = (env, argv) => { PORT: process.env.PORT || 5011, IS_PERSONAL: env.personal || false, IS_ROOMS_MODE: env.rooms || false, + BROWSER_DETECTOR_URL: JSON.stringify( + `/static/scripts/browserDetector.js?hash=${ + runtime.checksums["browserDetector.js"] || dateHash + }` + ), + CONFIG_URL: JSON.stringify( + `/static/scripts/config.json?hash=${ + runtime.checksums["config.json"] || dateHash + }` + ), }), ]; diff --git a/packages/shared/coverage/clover.xml b/packages/shared/coverage/clover.xml new file mode 100644 index 0000000000..2efb668847 --- /dev/null +++ b/packages/shared/coverage/clover.xml @@ -0,0 +1,982 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/shared/coverage/coverage-final.json b/packages/shared/coverage/coverage-final.json new file mode 100644 index 0000000000..79ed194010 --- /dev/null +++ b/packages/shared/coverage/coverage-final.json @@ -0,0 +1,51 @@ +{"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\aside\\Aside.styled.tsx": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\aside\\Aside.styled.tsx","statementMap":{"0":{"start":{"line":11,"column":18},"end":{"line":18,"column":61}},"1":{"start":{"line":18,"column":24},"end":{"line":18,"column":61}},"2":{"start":{"line":20,"column":20},"end":{"line":88,"column":1}},"3":{"start":{"line":21,"column":33},"end":{"line":21,"column":66}},"4":{"start":{"line":22,"column":23},"end":{"line":22,"column":47}},"5":{"start":{"line":25,"column":20},"end":{"line":25,"column":41}},"6":{"start":{"line":28,"column":4},"end":{"line":40,"column":9}},"7":{"start":{"line":42,"column":27},"end":{"line":42,"column":55}},"8":{"start":{"line":43,"column":23},"end":{"line":43,"column":53}},"9":{"start":{"line":44,"column":24},"end":{"line":44,"column":36}},"10":{"start":{"line":51,"column":6},"end":{"line":61,"column":11}},"11":{"start":{"line":71,"column":40},"end":{"line":71,"column":68}},"12":{"start":{"line":79,"column":6},"end":{"line":81,"column":41}},"13":{"start":{"line":85,"column":27},"end":{"line":85,"column":51}},"14":{"start":{"line":89,"column":0},"end":{"line":89,"column":43}},"15":{"start":{"line":91,"column":31},"end":{"line":138,"column":1}},"16":{"start":{"line":107,"column":4},"end":{"line":107,"column":79}},"17":{"start":{"line":115,"column":6},"end":{"line":117,"column":24}},"18":{"start":{"line":128,"column":6},"end":{"line":136,"column":11}},"19":{"start":{"line":140,"column":0},"end":{"line":140,"column":54}},"20":{"start":{"line":142,"column":24},"end":{"line":149,"column":1}},"21":{"start":{"line":147,"column":23},"end":{"line":147,"column":55}},"22":{"start":{"line":151,"column":0},"end":{"line":151,"column":47}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":11,"column":18},"end":{"line":11,"column":19}},"loc":{"start":{"line":18,"column":24},"end":{"line":18,"column":61}},"line":18},"1":{"name":"(anonymous_1)","decl":{"start":{"line":21,"column":22},"end":{"line":21,"column":23}},"loc":{"start":{"line":21,"column":33},"end":{"line":21,"column":66}},"line":21},"2":{"name":"(anonymous_2)","decl":{"start":{"line":22,"column":12},"end":{"line":22,"column":13}},"loc":{"start":{"line":22,"column":23},"end":{"line":22,"column":47}},"line":22},"3":{"name":"(anonymous_3)","decl":{"start":{"line":25,"column":9},"end":{"line":25,"column":10}},"loc":{"start":{"line":25,"column":20},"end":{"line":25,"column":41}},"line":25},"4":{"name":"(anonymous_4)","decl":{"start":{"line":27,"column":4},"end":{"line":27,"column":5}},"loc":{"start":{"line":28,"column":4},"end":{"line":40,"column":9}},"line":28},"5":{"name":"(anonymous_5)","decl":{"start":{"line":42,"column":16},"end":{"line":42,"column":17}},"loc":{"start":{"line":42,"column":27},"end":{"line":42,"column":55}},"line":42},"6":{"name":"(anonymous_6)","decl":{"start":{"line":43,"column":11},"end":{"line":43,"column":12}},"loc":{"start":{"line":43,"column":23},"end":{"line":43,"column":53}},"line":43},"7":{"name":"(anonymous_7)","decl":{"start":{"line":44,"column":13},"end":{"line":44,"column":14}},"loc":{"start":{"line":44,"column":24},"end":{"line":44,"column":36}},"line":44},"8":{"name":"(anonymous_8)","decl":{"start":{"line":50,"column":6},"end":{"line":50,"column":7}},"loc":{"start":{"line":51,"column":6},"end":{"line":61,"column":11}},"line":51},"9":{"name":"(anonymous_9)","decl":{"start":{"line":71,"column":28},"end":{"line":71,"column":29}},"loc":{"start":{"line":71,"column":40},"end":{"line":71,"column":68}},"line":71},"10":{"name":"(anonymous_10)","decl":{"start":{"line":78,"column":22},"end":{"line":78,"column":23}},"loc":{"start":{"line":79,"column":6},"end":{"line":81,"column":41}},"line":79},"11":{"name":"(anonymous_11)","decl":{"start":{"line":85,"column":16},"end":{"line":85,"column":17}},"loc":{"start":{"line":85,"column":27},"end":{"line":85,"column":51}},"line":85},"12":{"name":"(anonymous_12)","decl":{"start":{"line":106,"column":4},"end":{"line":106,"column":5}},"loc":{"start":{"line":107,"column":4},"end":{"line":107,"column":79}},"line":107},"13":{"name":"(anonymous_13)","decl":{"start":{"line":114,"column":6},"end":{"line":114,"column":7}},"loc":{"start":{"line":115,"column":6},"end":{"line":117,"column":24}},"line":115},"14":{"name":"(anonymous_14)","decl":{"start":{"line":127,"column":6},"end":{"line":127,"column":7}},"loc":{"start":{"line":128,"column":6},"end":{"line":136,"column":11}},"line":128},"15":{"name":"(anonymous_15)","decl":{"start":{"line":147,"column":12},"end":{"line":147,"column":13}},"loc":{"start":{"line":147,"column":23},"end":{"line":147,"column":55}},"line":147}},"branchMap":{"0":{"loc":{"start":{"line":28,"column":4},"end":{"line":40,"column":9}},"type":"cond-expr","locations":[{"start":{"line":29,"column":8},"end":{"line":34,"column":9}},{"start":{"line":35,"column":8},"end":{"line":40,"column":9}}],"line":28},"1":{"loc":{"start":{"line":32,"column":14},"end":{"line":32,"column":68}},"type":"cond-expr","locations":[{"start":{"line":32,"column":30},"end":{"line":32,"column":33}},{"start":{"line":32,"column":36},"end":{"line":32,"column":68}}],"line":32},"2":{"loc":{"start":{"line":32,"column":36},"end":{"line":32,"column":68}},"type":"cond-expr","locations":[{"start":{"line":32,"column":50},"end":{"line":32,"column":57}},{"start":{"line":32,"column":60},"end":{"line":32,"column":68}}],"line":32},"3":{"loc":{"start":{"line":38,"column":14},"end":{"line":38,"column":66}},"type":"cond-expr","locations":[{"start":{"line":38,"column":30},"end":{"line":38,"column":33}},{"start":{"line":38,"column":36},"end":{"line":38,"column":66}}],"line":38},"4":{"loc":{"start":{"line":38,"column":36},"end":{"line":38,"column":66}},"type":"cond-expr","locations":[{"start":{"line":38,"column":50},"end":{"line":38,"column":56}},{"start":{"line":38,"column":59},"end":{"line":38,"column":66}}],"line":38},"5":{"loc":{"start":{"line":43,"column":23},"end":{"line":43,"column":53}},"type":"cond-expr","locations":[{"start":{"line":43,"column":37},"end":{"line":43,"column":43}},{"start":{"line":43,"column":46},"end":{"line":43,"column":53}}],"line":43},"6":{"loc":{"start":{"line":51,"column":6},"end":{"line":61,"column":11}},"type":"cond-expr","locations":[{"start":{"line":52,"column":10},"end":{"line":56,"column":11}},{"start":{"line":57,"column":10},"end":{"line":61,"column":11}}],"line":51},"7":{"loc":{"start":{"line":54,"column":16},"end":{"line":54,"column":70}},"type":"cond-expr","locations":[{"start":{"line":54,"column":32},"end":{"line":54,"column":35}},{"start":{"line":54,"column":38},"end":{"line":54,"column":70}}],"line":54},"8":{"loc":{"start":{"line":54,"column":38},"end":{"line":54,"column":70}},"type":"cond-expr","locations":[{"start":{"line":54,"column":52},"end":{"line":54,"column":59}},{"start":{"line":54,"column":62},"end":{"line":54,"column":70}}],"line":54},"9":{"loc":{"start":{"line":59,"column":16},"end":{"line":59,"column":68}},"type":"cond-expr","locations":[{"start":{"line":59,"column":32},"end":{"line":59,"column":35}},{"start":{"line":59,"column":38},"end":{"line":59,"column":68}}],"line":59},"10":{"loc":{"start":{"line":59,"column":38},"end":{"line":59,"column":68}},"type":"cond-expr","locations":[{"start":{"line":59,"column":52},"end":{"line":59,"column":58}},{"start":{"line":59,"column":61},"end":{"line":59,"column":68}}],"line":59},"11":{"loc":{"start":{"line":71,"column":40},"end":{"line":71,"column":68}},"type":"cond-expr","locations":[{"start":{"line":71,"column":56},"end":{"line":71,"column":59}},{"start":{"line":71,"column":62},"end":{"line":71,"column":68}}],"line":71},"12":{"loc":{"start":{"line":79,"column":6},"end":{"line":81,"column":41}},"type":"cond-expr","locations":[{"start":{"line":80,"column":10},"end":{"line":80,"column":36}},{"start":{"line":81,"column":10},"end":{"line":81,"column":41}}],"line":79},"13":{"loc":{"start":{"line":107,"column":4},"end":{"line":107,"column":79}},"type":"cond-expr","locations":[{"start":{"line":107,"column":47},"end":{"line":107,"column":62}},{"start":{"line":107,"column":65},"end":{"line":107,"column":79}}],"line":107},"14":{"loc":{"start":{"line":115,"column":6},"end":{"line":117,"column":24}},"type":"cond-expr","locations":[{"start":{"line":116,"column":10},"end":{"line":116,"column":25}},{"start":{"line":117,"column":10},"end":{"line":117,"column":24}}],"line":115},"15":{"loc":{"start":{"line":128,"column":6},"end":{"line":136,"column":11}},"type":"cond-expr","locations":[{"start":{"line":129,"column":10},"end":{"line":132,"column":11}},{"start":{"line":133,"column":10},"end":{"line":136,"column":11}}],"line":128}},"s":{"0":1,"1":1,"2":1,"3":1,"4":1,"5":1,"6":1,"7":1,"8":1,"9":1,"10":1,"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1},"f":{"0":1,"1":1,"2":1,"3":1,"4":1,"5":1,"6":1,"7":1,"8":1,"9":1,"10":1,"11":1,"12":1,"13":1,"14":1,"15":1},"b":{"0":[0,1],"1":[0,0],"2":[0,0],"3":[1,0],"4":[0,0],"5":[0,1],"6":[0,1],"7":[0,0],"8":[0,0],"9":[1,0],"10":[0,0],"11":[1,0],"12":[0,1],"13":[0,1],"14":[0,1],"15":[0,1]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"d07cff35b94e56f6e6e9f717de5d64eb68ce43d2"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\aside\\index.tsx": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\aside\\index.tsx","statementMap":{"0":{"start":{"line":13,"column":18},"end":{"line":101,"column":1}},"1":{"start":{"line":23,"column":6},"end":{"line":23,"column":11}},"2":{"start":{"line":24,"column":25},"end":{"line":24,"column":59}},"3":{"start":{"line":25,"column":21},"end":{"line":25,"column":59}},"4":{"start":{"line":26,"column":18},"end":{"line":26,"column":51}},"5":{"start":{"line":27,"column":24},"end":{"line":27,"column":39}},"6":{"start":{"line":29,"column":19},"end":{"line":64,"column":3}},"7":{"start":{"line":31,"column":6},"end":{"line":31,"column":38}},"8":{"start":{"line":31,"column":31},"end":{"line":31,"column":38}},"9":{"start":{"line":33,"column":21},"end":{"line":33,"column":47}},"10":{"start":{"line":35,"column":6},"end":{"line":61,"column":7}},"11":{"start":{"line":36,"column":21},"end":{"line":36,"column":66}},"12":{"start":{"line":38,"column":8},"end":{"line":38,"column":47}},"13":{"start":{"line":40,"column":8},"end":{"line":40,"column":54}},"14":{"start":{"line":42,"column":8},"end":{"line":44,"column":13}},"15":{"start":{"line":46,"column":8},"end":{"line":46,"column":52}},"16":{"start":{"line":48,"column":8},"end":{"line":48,"column":31}},"17":{"start":{"line":49,"column":13},"end":{"line":61,"column":7}},"18":{"start":{"line":50,"column":21},"end":{"line":50,"column":79}},"19":{"start":{"line":52,"column":8},"end":{"line":53,"column":74}},"20":{"start":{"line":53,"column":10},"end":{"line":53,"column":74}},"21":{"start":{"line":55,"column":8},"end":{"line":58,"column":15}},"22":{"start":{"line":56,"column":10},"end":{"line":58,"column":15}},"23":{"start":{"line":60,"column":8},"end":{"line":60,"column":52}},"24":{"start":{"line":66,"column":2},"end":{"line":75,"column":17}},"25":{"start":{"line":67,"column":4},"end":{"line":70,"column":5}},"26":{"start":{"line":68,"column":6},"end":{"line":68,"column":66}},"27":{"start":{"line":69,"column":6},"end":{"line":69,"column":66}},"28":{"start":{"line":71,"column":4},"end":{"line":74,"column":6}},"29":{"start":{"line":72,"column":6},"end":{"line":72,"column":69}},"30":{"start":{"line":73,"column":6},"end":{"line":73,"column":69}},"31":{"start":{"line":77,"column":2},"end":{"line":100,"column":4}},"32":{"start":{"line":103,"column":0},"end":{"line":107,"column":2}},"33":{"start":{"line":109,"column":14},"end":{"line":109,"column":35}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":13,"column":18},"end":{"line":13,"column":19}},"loc":{"start":{"line":13,"column":41},"end":{"line":101,"column":1}},"line":13},"1":{"name":"(anonymous_1)","decl":{"start":{"line":30,"column":4},"end":{"line":30,"column":5}},"loc":{"start":{"line":30,"column":18},"end":{"line":62,"column":5}},"line":30},"2":{"name":"(anonymous_2)","decl":{"start":{"line":66,"column":18},"end":{"line":66,"column":19}},"loc":{"start":{"line":66,"column":24},"end":{"line":75,"column":3}},"line":66},"3":{"name":"(anonymous_3)","decl":{"start":{"line":71,"column":11},"end":{"line":71,"column":12}},"loc":{"start":{"line":71,"column":17},"end":{"line":74,"column":5}},"line":71}},"branchMap":{"0":{"loc":{"start":{"line":31,"column":6},"end":{"line":31,"column":38}},"type":"if","locations":[{"start":{"line":31,"column":6},"end":{"line":31,"column":38}},{"start":{},"end":{}}],"line":31},"1":{"loc":{"start":{"line":35,"column":6},"end":{"line":61,"column":7}},"type":"if","locations":[{"start":{"line":35,"column":6},"end":{"line":61,"column":7}},{"start":{"line":49,"column":13},"end":{"line":61,"column":7}}],"line":35},"2":{"loc":{"start":{"line":49,"column":13},"end":{"line":61,"column":7}},"type":"if","locations":[{"start":{"line":49,"column":13},"end":{"line":61,"column":7}},{"start":{},"end":{}}],"line":49},"3":{"loc":{"start":{"line":50,"column":21},"end":{"line":50,"column":79}},"type":"cond-expr","locations":[{"start":{"line":50,"column":54},"end":{"line":50,"column":55}},{"start":{"line":50,"column":58},"end":{"line":50,"column":79}}],"line":50},"4":{"loc":{"start":{"line":52,"column":8},"end":{"line":53,"column":74}},"type":"if","locations":[{"start":{"line":52,"column":8},"end":{"line":53,"column":74}},{"start":{},"end":{}}],"line":52},"5":{"loc":{"start":{"line":55,"column":8},"end":{"line":58,"column":15}},"type":"if","locations":[{"start":{"line":55,"column":8},"end":{"line":58,"column":15}},{"start":{},"end":{}}],"line":55},"6":{"loc":{"start":{"line":67,"column":4},"end":{"line":70,"column":5}},"type":"if","locations":[{"start":{"line":67,"column":4},"end":{"line":70,"column":5}},{"start":{},"end":{}}],"line":67},"7":{"loc":{"start":{"line":67,"column":8},"end":{"line":67,"column":29}},"type":"binary-expr","locations":[{"start":{"line":67,"column":8},"end":{"line":67,"column":20}},{"start":{"line":67,"column":24},"end":{"line":67,"column":29}}],"line":67},"8":{"loc":{"start":{"line":88,"column":7},"end":{"line":92,"column":7}},"type":"cond-expr","locations":[{"start":{"line":89,"column":8},"end":{"line":89,"column":16}},{"start":{"line":91,"column":8},"end":{"line":91,"column":75}}],"line":88},"9":{"loc":{"start":{"line":94,"column":7},"end":{"line":98,"column":7}},"type":"binary-expr","locations":[{"start":{"line":94,"column":7},"end":{"line":94,"column":14}},{"start":{"line":95,"column":8},"end":{"line":97,"column":33}}],"line":94}},"s":{"0":1,"1":1,"2":1,"3":1,"4":1,"5":1,"6":1,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":1,"25":1,"26":0,"27":0,"28":1,"29":1,"30":1,"31":1,"32":1,"33":1},"f":{"0":1,"1":0,"2":1,"3":1},"b":{"0":[0,0],"1":[0,0],"2":[0,0],"3":[0,0],"4":[0,0],"5":[0,0],"6":[0,1],"7":[1,0],"8":[0,1],"9":[1,1]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"39f8246369dfe409010bdba1a61cc746f4cf1a4a"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\avatar\\Avatar.enums.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\avatar\\Avatar.enums.ts","statementMap":{},"fnMap":{},"branchMap":{},"s":{},"f":{},"b":{},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"9a55b7e0a064b3ecec87d4f1bef575e132b1314c"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\avatar\\Avatar.styled.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\avatar\\Avatar.styled.ts","statementMap":{"0":{"start":{"line":10,"column":18},"end":{"line":13,"column":1}},"1":{"start":{"line":12,"column":30},"end":{"line":12,"column":67}},"2":{"start":{"line":14,"column":0},"end":{"line":14,"column":41}},"3":{"start":{"line":16,"column":22},"end":{"line":41,"column":1}},"4":{"start":{"line":21,"column":4},"end":{"line":23,"column":59}},"5":{"start":{"line":25,"column":23},"end":{"line":25,"column":62}},"6":{"start":{"line":27,"column":4},"end":{"line":27,"column":52}},"7":{"start":{"line":28,"column":30},"end":{"line":28,"column":75}},"8":{"start":{"line":29,"column":23},"end":{"line":29,"column":62}},"9":{"start":{"line":30,"column":22},"end":{"line":30,"column":60}},"10":{"start":{"line":37,"column":27},"end":{"line":37,"column":64}},"11":{"start":{"line":42,"column":0},"end":{"line":42,"column":45}},"12":{"start":{"line":44,"column":22},"end":{"line":65,"column":1}},"13":{"start":{"line":45,"column":30},"end":{"line":45,"column":76}},"14":{"start":{"line":46,"column":23},"end":{"line":46,"column":63}},"15":{"start":{"line":49,"column":4},"end":{"line":53,"column":54}},"16":{"start":{"line":56,"column":26},"end":{"line":56,"column":71}},"17":{"start":{"line":57,"column":24},"end":{"line":57,"column":67}},"18":{"start":{"line":59,"column":6},"end":{"line":59,"column":50}},"19":{"start":{"line":60,"column":25},"end":{"line":60,"column":69}},"20":{"start":{"line":62,"column":25},"end":{"line":62,"column":67}},"21":{"start":{"line":66,"column":0},"end":{"line":66,"column":45}},"22":{"start":{"line":68,"column":19},"end":{"line":69,"column":59}},"23":{"start":{"line":69,"column":2},"end":{"line":69,"column":59}},"24":{"start":{"line":70,"column":20},"end":{"line":71,"column":60}},"25":{"start":{"line":71,"column":2},"end":{"line":71,"column":60}},"26":{"start":{"line":73,"column":20},"end":{"line":106,"column":1}},"27":{"start":{"line":79,"column":4},"end":{"line":81,"column":37}},"28":{"start":{"line":83,"column":23},"end":{"line":83,"column":41}},"29":{"start":{"line":89,"column":4},"end":{"line":93,"column":10}},"30":{"start":{"line":95,"column":4},"end":{"line":99,"column":10}},"31":{"start":{"line":101,"column":4},"end":{"line":105,"column":10}},"32":{"start":{"line":107,"column":0},"end":{"line":107,"column":43}},"33":{"start":{"line":109,"column":22},"end":{"line":115,"column":51}},"34":{"start":{"line":115,"column":6},"end":{"line":115,"column":51}},"35":{"start":{"line":117,"column":20},"end":{"line":127,"column":1}},"36":{"start":{"line":119,"column":22},"end":{"line":119,"column":64}},"37":{"start":{"line":120,"column":21},"end":{"line":120,"column":62}},"38":{"start":{"line":121,"column":20},"end":{"line":121,"column":60}},"39":{"start":{"line":122,"column":26},"end":{"line":122,"column":72}},"40":{"start":{"line":123,"column":28},"end":{"line":123,"column":75}},"41":{"start":{"line":124,"column":26},"end":{"line":124,"column":78}},"42":{"start":{"line":129,"column":0},"end":{"line":129,"column":43}},"43":{"start":{"line":131,"column":20},"end":{"line":138,"column":1}},"44":{"start":{"line":132,"column":22},"end":{"line":132,"column":52}},"45":{"start":{"line":133,"column":23},"end":{"line":133,"column":54}},"46":{"start":{"line":134,"column":30},"end":{"line":134,"column":67}},"47":{"start":{"line":136,"column":24},"end":{"line":136,"column":74}},"48":{"start":{"line":139,"column":0},"end":{"line":139,"column":43}},"49":{"start":{"line":141,"column":26},"end":{"line":156,"column":1}},"50":{"start":{"line":153,"column":25},"end":{"line":153,"column":54}},"51":{"start":{"line":157,"column":0},"end":{"line":157,"column":49}},"52":{"start":{"line":159,"column":19},"end":{"line":160,"column":26}},"53":{"start":{"line":160,"column":2},"end":{"line":160,"column":26}},"54":{"start":{"line":161,"column":20},"end":{"line":162,"column":27}},"55":{"start":{"line":162,"column":2},"end":{"line":162,"column":27}},"56":{"start":{"line":164,"column":21},"end":{"line":209,"column":1}},"57":{"start":{"line":166,"column":22},"end":{"line":166,"column":39}},"58":{"start":{"line":167,"column":26},"end":{"line":167,"column":43}},"59":{"start":{"line":168,"column":23},"end":{"line":168,"column":41}},"60":{"start":{"line":169,"column":28},"end":{"line":169,"column":50}},"61":{"start":{"line":176,"column":25},"end":{"line":176,"column":62}},"62":{"start":{"line":179,"column":27},"end":{"line":179,"column":66}},"63":{"start":{"line":182,"column":25},"end":{"line":182,"column":63}},"64":{"start":{"line":188,"column":25},"end":{"line":188,"column":54}},"65":{"start":{"line":191,"column":27},"end":{"line":191,"column":58}},"66":{"start":{"line":194,"column":25},"end":{"line":194,"column":55}},"67":{"start":{"line":200,"column":25},"end":{"line":200,"column":54}},"68":{"start":{"line":203,"column":27},"end":{"line":203,"column":58}},"69":{"start":{"line":206,"column":25},"end":{"line":206,"column":55}},"70":{"start":{"line":210,"column":0},"end":{"line":210,"column":44}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":12,"column":19},"end":{"line":12,"column":20}},"loc":{"start":{"line":12,"column":30},"end":{"line":12,"column":67}},"line":12},"1":{"name":"(anonymous_1)","decl":{"start":{"line":20,"column":4},"end":{"line":20,"column":5}},"loc":{"start":{"line":21,"column":4},"end":{"line":23,"column":59}},"line":21},"2":{"name":"(anonymous_2)","decl":{"start":{"line":25,"column":12},"end":{"line":25,"column":13}},"loc":{"start":{"line":25,"column":23},"end":{"line":25,"column":62}},"line":25},"3":{"name":"(anonymous_3)","decl":{"start":{"line":26,"column":22},"end":{"line":26,"column":23}},"loc":{"start":{"line":27,"column":4},"end":{"line":27,"column":52}},"line":27},"4":{"name":"(anonymous_4)","decl":{"start":{"line":28,"column":19},"end":{"line":28,"column":20}},"loc":{"start":{"line":28,"column":30},"end":{"line":28,"column":75}},"line":28},"5":{"name":"(anonymous_5)","decl":{"start":{"line":29,"column":12},"end":{"line":29,"column":13}},"loc":{"start":{"line":29,"column":23},"end":{"line":29,"column":62}},"line":29},"6":{"name":"(anonymous_6)","decl":{"start":{"line":30,"column":11},"end":{"line":30,"column":12}},"loc":{"start":{"line":30,"column":22},"end":{"line":30,"column":60}},"line":30},"7":{"name":"(anonymous_7)","decl":{"start":{"line":37,"column":16},"end":{"line":37,"column":17}},"loc":{"start":{"line":37,"column":27},"end":{"line":37,"column":64}},"line":37},"8":{"name":"(anonymous_8)","decl":{"start":{"line":45,"column":19},"end":{"line":45,"column":20}},"loc":{"start":{"line":45,"column":30},"end":{"line":45,"column":76}},"line":45},"9":{"name":"(anonymous_9)","decl":{"start":{"line":46,"column":12},"end":{"line":46,"column":13}},"loc":{"start":{"line":46,"column":23},"end":{"line":46,"column":63}},"line":46},"10":{"name":"(anonymous_10)","decl":{"start":{"line":48,"column":22},"end":{"line":48,"column":23}},"loc":{"start":{"line":49,"column":4},"end":{"line":53,"column":54}},"line":49},"11":{"name":"(anonymous_11)","decl":{"start":{"line":56,"column":15},"end":{"line":56,"column":16}},"loc":{"start":{"line":56,"column":26},"end":{"line":56,"column":71}},"line":56},"12":{"name":"(anonymous_12)","decl":{"start":{"line":57,"column":13},"end":{"line":57,"column":14}},"loc":{"start":{"line":57,"column":24},"end":{"line":57,"column":67}},"line":57},"13":{"name":"(anonymous_13)","decl":{"start":{"line":58,"column":14},"end":{"line":58,"column":15}},"loc":{"start":{"line":59,"column":6},"end":{"line":59,"column":50}},"line":59},"14":{"name":"(anonymous_14)","decl":{"start":{"line":60,"column":14},"end":{"line":60,"column":15}},"loc":{"start":{"line":60,"column":25},"end":{"line":60,"column":69}},"line":60},"15":{"name":"(anonymous_15)","decl":{"start":{"line":62,"column":14},"end":{"line":62,"column":15}},"loc":{"start":{"line":62,"column":25},"end":{"line":62,"column":67}},"line":62},"16":{"name":"(anonymous_16)","decl":{"start":{"line":68,"column":19},"end":{"line":68,"column":20}},"loc":{"start":{"line":69,"column":2},"end":{"line":69,"column":59}},"line":69},"17":{"name":"(anonymous_17)","decl":{"start":{"line":70,"column":20},"end":{"line":70,"column":21}},"loc":{"start":{"line":71,"column":2},"end":{"line":71,"column":60}},"line":71},"18":{"name":"(anonymous_18)","decl":{"start":{"line":78,"column":4},"end":{"line":78,"column":5}},"loc":{"start":{"line":79,"column":4},"end":{"line":81,"column":37}},"line":79},"19":{"name":"(anonymous_19)","decl":{"start":{"line":83,"column":12},"end":{"line":83,"column":13}},"loc":{"start":{"line":83,"column":23},"end":{"line":83,"column":41}},"line":83},"20":{"name":"(anonymous_20)","decl":{"start":{"line":88,"column":12},"end":{"line":88,"column":13}},"loc":{"start":{"line":89,"column":4},"end":{"line":93,"column":10}},"line":89},"21":{"name":"(anonymous_21)","decl":{"start":{"line":94,"column":11},"end":{"line":94,"column":12}},"loc":{"start":{"line":95,"column":4},"end":{"line":99,"column":10}},"line":95},"22":{"name":"(anonymous_22)","decl":{"start":{"line":100,"column":15},"end":{"line":100,"column":16}},"loc":{"start":{"line":101,"column":4},"end":{"line":105,"column":10}},"line":101},"23":{"name":"(anonymous_23)","decl":{"start":{"line":109,"column":22},"end":{"line":109,"column":23}},"loc":{"start":{"line":115,"column":6},"end":{"line":115,"column":51}},"line":115},"24":{"name":"(anonymous_24)","decl":{"start":{"line":119,"column":11},"end":{"line":119,"column":12}},"loc":{"start":{"line":119,"column":22},"end":{"line":119,"column":64}},"line":119},"25":{"name":"(anonymous_25)","decl":{"start":{"line":120,"column":10},"end":{"line":120,"column":11}},"loc":{"start":{"line":120,"column":21},"end":{"line":120,"column":62}},"line":120},"26":{"name":"(anonymous_26)","decl":{"start":{"line":121,"column":9},"end":{"line":121,"column":10}},"loc":{"start":{"line":121,"column":20},"end":{"line":121,"column":60}},"line":121},"27":{"name":"(anonymous_27)","decl":{"start":{"line":122,"column":15},"end":{"line":122,"column":16}},"loc":{"start":{"line":122,"column":26},"end":{"line":122,"column":72}},"line":122},"28":{"name":"(anonymous_28)","decl":{"start":{"line":123,"column":17},"end":{"line":123,"column":18}},"loc":{"start":{"line":123,"column":28},"end":{"line":123,"column":75}},"line":123},"29":{"name":"(anonymous_29)","decl":{"start":{"line":124,"column":15},"end":{"line":124,"column":16}},"loc":{"start":{"line":124,"column":26},"end":{"line":124,"column":78}},"line":124},"30":{"name":"(anonymous_30)","decl":{"start":{"line":132,"column":11},"end":{"line":132,"column":12}},"loc":{"start":{"line":132,"column":22},"end":{"line":132,"column":52}},"line":132},"31":{"name":"(anonymous_31)","decl":{"start":{"line":133,"column":12},"end":{"line":133,"column":13}},"loc":{"start":{"line":133,"column":23},"end":{"line":133,"column":54}},"line":133},"32":{"name":"(anonymous_32)","decl":{"start":{"line":134,"column":19},"end":{"line":134,"column":20}},"loc":{"start":{"line":134,"column":30},"end":{"line":134,"column":67}},"line":134},"33":{"name":"(anonymous_33)","decl":{"start":{"line":136,"column":13},"end":{"line":136,"column":14}},"loc":{"start":{"line":136,"column":24},"end":{"line":136,"column":74}},"line":136},"34":{"name":"(anonymous_34)","decl":{"start":{"line":153,"column":14},"end":{"line":153,"column":15}},"loc":{"start":{"line":153,"column":25},"end":{"line":153,"column":54}},"line":153},"35":{"name":"(anonymous_35)","decl":{"start":{"line":159,"column":19},"end":{"line":159,"column":20}},"loc":{"start":{"line":160,"column":2},"end":{"line":160,"column":26}},"line":160},"36":{"name":"(anonymous_36)","decl":{"start":{"line":161,"column":20},"end":{"line":161,"column":21}},"loc":{"start":{"line":162,"column":2},"end":{"line":162,"column":27}},"line":162},"37":{"name":"(anonymous_37)","decl":{"start":{"line":166,"column":11},"end":{"line":166,"column":12}},"loc":{"start":{"line":166,"column":22},"end":{"line":166,"column":39}},"line":166},"38":{"name":"(anonymous_38)","decl":{"start":{"line":167,"column":15},"end":{"line":167,"column":16}},"loc":{"start":{"line":167,"column":26},"end":{"line":167,"column":43}},"line":167},"39":{"name":"(anonymous_39)","decl":{"start":{"line":168,"column":12},"end":{"line":168,"column":13}},"loc":{"start":{"line":168,"column":23},"end":{"line":168,"column":41}},"line":168},"40":{"name":"(anonymous_40)","decl":{"start":{"line":169,"column":17},"end":{"line":169,"column":18}},"loc":{"start":{"line":169,"column":28},"end":{"line":169,"column":50}},"line":169},"41":{"name":"(anonymous_41)","decl":{"start":{"line":176,"column":14},"end":{"line":176,"column":15}},"loc":{"start":{"line":176,"column":25},"end":{"line":176,"column":62}},"line":176},"42":{"name":"(anonymous_42)","decl":{"start":{"line":179,"column":16},"end":{"line":179,"column":17}},"loc":{"start":{"line":179,"column":27},"end":{"line":179,"column":66}},"line":179},"43":{"name":"(anonymous_43)","decl":{"start":{"line":182,"column":14},"end":{"line":182,"column":15}},"loc":{"start":{"line":182,"column":25},"end":{"line":182,"column":63}},"line":182},"44":{"name":"(anonymous_44)","decl":{"start":{"line":188,"column":14},"end":{"line":188,"column":15}},"loc":{"start":{"line":188,"column":25},"end":{"line":188,"column":54}},"line":188},"45":{"name":"(anonymous_45)","decl":{"start":{"line":191,"column":16},"end":{"line":191,"column":17}},"loc":{"start":{"line":191,"column":27},"end":{"line":191,"column":58}},"line":191},"46":{"name":"(anonymous_46)","decl":{"start":{"line":194,"column":14},"end":{"line":194,"column":15}},"loc":{"start":{"line":194,"column":25},"end":{"line":194,"column":55}},"line":194},"47":{"name":"(anonymous_47)","decl":{"start":{"line":200,"column":14},"end":{"line":200,"column":15}},"loc":{"start":{"line":200,"column":25},"end":{"line":200,"column":54}},"line":200},"48":{"name":"(anonymous_48)","decl":{"start":{"line":203,"column":16},"end":{"line":203,"column":17}},"loc":{"start":{"line":203,"column":27},"end":{"line":203,"column":58}},"line":203},"49":{"name":"(anonymous_49)","decl":{"start":{"line":206,"column":14},"end":{"line":206,"column":15}},"loc":{"start":{"line":206,"column":25},"end":{"line":206,"column":55}},"line":206}},"branchMap":{"0":{"loc":{"start":{"line":21,"column":4},"end":{"line":23,"column":59}},"type":"cond-expr","locations":[{"start":{"line":22,"column":8},"end":{"line":22,"column":58}},{"start":{"line":23,"column":8},"end":{"line":23,"column":59}}],"line":21},"1":{"loc":{"start":{"line":49,"column":4},"end":{"line":53,"column":54}},"type":"cond-expr","locations":[{"start":{"line":50,"column":8},"end":{"line":50,"column":42}},{"start":{"line":51,"column":8},"end":{"line":53,"column":54}}],"line":49},"2":{"loc":{"start":{"line":51,"column":8},"end":{"line":53,"column":54}},"type":"cond-expr","locations":[{"start":{"line":52,"column":10},"end":{"line":52,"column":59}},{"start":{"line":53,"column":10},"end":{"line":53,"column":54}}],"line":51},"3":{"loc":{"start":{"line":79,"column":4},"end":{"line":81,"column":37}},"type":"cond-expr","locations":[{"start":{"line":80,"column":8},"end":{"line":80,"column":37}},{"start":{"line":81,"column":8},"end":{"line":81,"column":37}}],"line":79},"4":{"loc":{"start":{"line":89,"column":4},"end":{"line":93,"column":10}},"type":"binary-expr","locations":[{"start":{"line":89,"column":5},"end":{"line":89,"column":34}},{"start":{"line":90,"column":6},"end":{"line":90,"column":56}},{"start":{"line":91,"column":5},"end":{"line":91,"column":37}},{"start":{"line":92,"column":6},"end":{"line":92,"column":59}},{"start":{"line":93,"column":4},"end":{"line":93,"column":10}}],"line":89},"5":{"loc":{"start":{"line":95,"column":4},"end":{"line":99,"column":10}},"type":"binary-expr","locations":[{"start":{"line":95,"column":5},"end":{"line":95,"column":34}},{"start":{"line":96,"column":6},"end":{"line":96,"column":55}},{"start":{"line":97,"column":5},"end":{"line":97,"column":37}},{"start":{"line":98,"column":6},"end":{"line":98,"column":58}},{"start":{"line":99,"column":4},"end":{"line":99,"column":10}}],"line":95},"6":{"loc":{"start":{"line":101,"column":4},"end":{"line":105,"column":10}},"type":"binary-expr","locations":[{"start":{"line":101,"column":5},"end":{"line":101,"column":34}},{"start":{"line":102,"column":6},"end":{"line":102,"column":55}},{"start":{"line":103,"column":5},"end":{"line":103,"column":37}},{"start":{"line":104,"column":6},"end":{"line":104,"column":58}},{"start":{"line":105,"column":4},"end":{"line":105,"column":10}}],"line":101},"7":{"loc":{"start":{"line":136,"column":24},"end":{"line":136,"column":74}},"type":"binary-expr","locations":[{"start":{"line":136,"column":24},"end":{"line":136,"column":39}},{"start":{"line":136,"column":43},"end":{"line":136,"column":74}}],"line":136}},"s":{"0":1,"1":0,"2":1,"3":1,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"26":1,"27":1,"28":1,"29":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"42":1,"43":1,"44":0,"45":0,"46":0,"47":0,"48":1,"49":1,"50":0,"51":1,"52":1,"53":2,"54":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"61":1,"62":1,"63":1,"64":1,"65":1,"66":1,"67":1,"68":1,"69":1,"70":1},"f":{"0":0,"1":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":1,"9":1,"10":1,"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"26":1,"27":1,"28":1,"29":1,"30":0,"31":0,"32":0,"33":0,"34":0,"35":2,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1,"48":1,"49":1},"b":{"0":[0,0],"1":[0,1],"2":[1,0],"3":[0,1],"4":[1,1,0,0,0],"5":[1,1,0,0,0],"6":[1,1,0,0,0],"7":[0,0]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"8f001ee799796806cbc17ffd29e739f160fa2309"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\avatar\\index.tsx": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\avatar\\index.tsx","statementMap":{"0":{"start":{"line":33,"column":32},"end":{"line":35,"column":1}},"1":{"start":{"line":36,"column":24},"end":{"line":38,"column":1}},"2":{"start":{"line":39,"column":20},"end":{"line":55,"column":1}},"3":{"start":{"line":40,"column":2},"end":{"line":54,"column":3}},"4":{"start":{"line":42,"column":6},"end":{"line":47,"column":8}},"5":{"start":{"line":49,"column":6},"end":{"line":51,"column":8}},"6":{"start":{"line":53,"column":6},"end":{"line":53,"column":18}},"7":{"start":{"line":57,"column":20},"end":{"line":64,"column":20}},"8":{"start":{"line":58,"column":2},"end":{"line":64,"column":20}},"9":{"start":{"line":61,"column":43},"end":{"line":61,"column":71}},"10":{"start":{"line":66,"column":17},"end":{"line":72,"column":68}},"11":{"start":{"line":72,"column":6},"end":{"line":72,"column":68}},"12":{"start":{"line":74,"column":19},"end":{"line":165,"column":1}},"13":{"start":{"line":86,"column":23},"end":{"line":86,"column":33}},"14":{"start":{"line":88,"column":29},"end":{"line":88,"column":61}},"15":{"start":{"line":90,"column":18},"end":{"line":90,"column":23}},"16":{"start":{"line":91,"column":15},"end":{"line":91,"column":20}},"17":{"start":{"line":93,"column":2},"end":{"line":94,"column":51}},"18":{"start":{"line":93,"column":46},"end":{"line":93,"column":63}},"19":{"start":{"line":94,"column":7},"end":{"line":94,"column":51}},"20":{"start":{"line":94,"column":37},"end":{"line":94,"column":51}},"21":{"start":{"line":96,"column":24},"end":{"line":110,"column":3}},"22":{"start":{"line":112,"column":19},"end":{"line":112,"column":36}},"23":{"start":{"line":114,"column":26},"end":{"line":114,"column":75}},"24":{"start":{"line":115,"column":23},"end":{"line":115,"column":70}},"25":{"start":{"line":117,"column":28},"end":{"line":121,"column":46}},"26":{"start":{"line":121,"column":8},"end":{"line":121,"column":46}},"27":{"start":{"line":123,"column":2},"end":{"line":164,"column":4}},"28":{"start":{"line":167,"column":15},"end":{"line":167,"column":31}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":39,"column":20},"end":{"line":39,"column":21}},"loc":{"start":{"line":39,"column":42},"end":{"line":55,"column":1}},"line":39},"1":{"name":"(anonymous_1)","decl":{"start":{"line":57,"column":20},"end":{"line":57,"column":21}},"loc":{"start":{"line":58,"column":2},"end":{"line":64,"column":20}},"line":58},"2":{"name":"(anonymous_2)","decl":{"start":{"line":61,"column":6},"end":{"line":61,"column":7}},"loc":{"start":{"line":61,"column":43},"end":{"line":61,"column":71}},"line":61},"3":{"name":"(anonymous_3)","decl":{"start":{"line":66,"column":17},"end":{"line":66,"column":18}},"loc":{"start":{"line":72,"column":6},"end":{"line":72,"column":68}},"line":72},"4":{"name":"(anonymous_4)","decl":{"start":{"line":74,"column":19},"end":{"line":74,"column":20}},"loc":{"start":{"line":85,"column":19},"end":{"line":165,"column":1}},"line":85},"5":{"name":"(anonymous_5)","decl":{"start":{"line":117,"column":28},"end":{"line":117,"column":29}},"loc":{"start":{"line":121,"column":8},"end":{"line":121,"column":46}},"line":121}},"branchMap":{"0":{"loc":{"start":{"line":40,"column":2},"end":{"line":54,"column":3}},"type":"switch","locations":[{"start":{"line":41,"column":4},"end":{"line":47,"column":8}},{"start":{"line":48,"column":4},"end":{"line":51,"column":8}},{"start":{"line":52,"column":4},"end":{"line":53,"column":18}}],"line":40},"1":{"loc":{"start":{"line":81,"column":2},"end":{"line":81,"column":25}},"type":"default-arg","locations":[{"start":{"line":81,"column":20},"end":{"line":81,"column":25}}],"line":81},"2":{"loc":{"start":{"line":93,"column":2},"end":{"line":94,"column":51}},"type":"if","locations":[{"start":{"line":93,"column":2},"end":{"line":94,"column":51}},{"start":{"line":94,"column":7},"end":{"line":94,"column":51}}],"line":93},"3":{"loc":{"start":{"line":94,"column":7},"end":{"line":94,"column":51}},"type":"if","locations":[{"start":{"line":94,"column":7},"end":{"line":94,"column":51}},{"start":{},"end":{}}],"line":94},"4":{"loc":{"start":{"line":96,"column":24},"end":{"line":110,"column":3}},"type":"cond-expr","locations":[{"start":{"line":97,"column":4},"end":{"line":103,"column":5}},{"start":{"line":104,"column":6},"end":{"line":110,"column":3}}],"line":96},"5":{"loc":{"start":{"line":97,"column":4},"end":{"line":103,"column":5}},"type":"cond-expr","locations":[{"start":{"line":98,"column":6},"end":{"line":100,"column":26}},{"start":{"line":102,"column":6},"end":{"line":102,"column":56}}],"line":97},"6":{"loc":{"start":{"line":104,"column":6},"end":{"line":110,"column":3}},"type":"cond-expr","locations":[{"start":{"line":105,"column":4},"end":{"line":105,"column":48}},{"start":{"line":106,"column":6},"end":{"line":110,"column":3}}],"line":104},"7":{"loc":{"start":{"line":106,"column":6},"end":{"line":110,"column":3}},"type":"cond-expr","locations":[{"start":{"line":107,"column":4},"end":{"line":107,"column":29}},{"start":{"line":109,"column":4},"end":{"line":109,"column":43}}],"line":106},"8":{"loc":{"start":{"line":114,"column":26},"end":{"line":114,"column":75}},"type":"cond-expr","locations":[{"start":{"line":114,"column":40},"end":{"line":114,"column":70}},{"start":{"line":114,"column":73},"end":{"line":114,"column":75}}],"line":114},"9":{"loc":{"start":{"line":115,"column":23},"end":{"line":115,"column":70}},"type":"cond-expr","locations":[{"start":{"line":115,"column":54},"end":{"line":115,"column":60}},{"start":{"line":115,"column":63},"end":{"line":115,"column":70}}],"line":115},"10":{"loc":{"start":{"line":127,"column":18},"end":{"line":127,"column":32}},"type":"binary-expr","locations":[{"start":{"line":127,"column":18},"end":{"line":127,"column":26}},{"start":{"line":127,"column":30},"end":{"line":127,"column":32}}],"line":127},"11":{"loc":{"start":{"line":132,"column":7},"end":{"line":162,"column":7}},"type":"cond-expr","locations":[{"start":{"line":133,"column":8},"end":{"line":140,"column":24}},{"start":{"line":142,"column":8},"end":{"line":161,"column":9}}],"line":132},"12":{"loc":{"start":{"line":132,"column":7},"end":{"line":132,"column":32}},"type":"binary-expr","locations":[{"start":{"line":132,"column":7},"end":{"line":132,"column":14}},{"start":{"line":132,"column":18},"end":{"line":132,"column":32}}],"line":132},"13":{"loc":{"start":{"line":142,"column":8},"end":{"line":161,"column":9}},"type":"binary-expr","locations":[{"start":{"line":142,"column":8},"end":{"line":142,"column":21}},{"start":{"line":143,"column":10},"end":{"line":160,"column":13}}],"line":142},"14":{"loc":{"start":{"line":152,"column":13},"end":{"line":159,"column":13}},"type":"binary-expr","locations":[{"start":{"line":152,"column":13},"end":{"line":152,"column":24}},{"start":{"line":153,"column":14},"end":{"line":158,"column":16}}],"line":152}},"s":{"0":1,"1":1,"2":1,"3":1,"4":0,"5":0,"6":1,"7":1,"8":1,"9":2,"10":1,"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":0,"19":1,"20":0,"21":1,"22":1,"23":1,"24":1,"25":1,"26":0,"27":1,"28":1},"f":{"0":1,"1":1,"2":2,"3":1,"4":1,"5":0},"b":{"0":[0,0,1],"1":[1],"2":[0,1],"3":[0,1],"4":[0,1],"5":[0,0],"6":[1,0],"7":[0,0],"8":[0,1],"9":[0,1],"10":[1,0],"11":[0,1],"12":[1,0],"13":[1,1],"14":[1,0]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"40bce57f5c62f1777dffd654362d1781f59e450d"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\avatar\\svg\\index.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\avatar\\svg\\index.ts","statementMap":{},"fnMap":{},"branchMap":{},"s":{},"f":{},"b":{},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"972acde41d6aa3b428e3fcf21c77864034f12063"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\box\\Box.styled.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\box\\Box.styled.ts","statementMap":{"0":{"start":{"line":11,"column":26},"end":{"line":12,"column":35}},"1":{"start":{"line":12,"column":2},"end":{"line":12,"column":35}},"2":{"start":{"line":13,"column":24},"end":{"line":13,"column":77}},"3":{"start":{"line":13,"column":48},"end":{"line":13,"column":77}},"4":{"start":{"line":14,"column":23},"end":{"line":14,"column":73}},"5":{"start":{"line":14,"column":46},"end":{"line":14,"column":73}},"6":{"start":{"line":15,"column":24},"end":{"line":16,"column":34}},"7":{"start":{"line":16,"column":2},"end":{"line":16,"column":34}},"8":{"start":{"line":18,"column":20},"end":{"line":63,"column":1}},"9":{"start":{"line":24,"column":17},"end":{"line":24,"column":19}},"10":{"start":{"line":26,"column":2},"end":{"line":28,"column":3}},"11":{"start":{"line":27,"column":4},"end":{"line":27,"column":36}},"12":{"start":{"line":30,"column":2},"end":{"line":36,"column":6}},"13":{"start":{"line":31,"column":4},"end":{"line":36,"column":6}},"14":{"start":{"line":38,"column":2},"end":{"line":44,"column":6}},"15":{"start":{"line":39,"column":4},"end":{"line":44,"column":6}},"16":{"start":{"line":46,"column":2},"end":{"line":52,"column":6}},"17":{"start":{"line":47,"column":4},"end":{"line":52,"column":6}},"18":{"start":{"line":54,"column":2},"end":{"line":60,"column":6}},"19":{"start":{"line":55,"column":4},"end":{"line":60,"column":6}},"20":{"start":{"line":62,"column":2},"end":{"line":62,"column":27}},"21":{"start":{"line":65,"column":21},"end":{"line":65,"column":72}},"22":{"start":{"line":65,"column":46},"end":{"line":65,"column":72}},"23":{"start":{"line":66,"column":23},"end":{"line":66,"column":73}},"24":{"start":{"line":66,"column":46},"end":{"line":66,"column":73}},"25":{"start":{"line":67,"column":27},"end":{"line":68,"column":37}},"26":{"start":{"line":68,"column":2},"end":{"line":68,"column":37}},"27":{"start":{"line":69,"column":18},"end":{"line":69,"column":60}},"28":{"start":{"line":69,"column":40},"end":{"line":69,"column":60}},"29":{"start":{"line":70,"column":22},"end":{"line":70,"column":69}},"30":{"start":{"line":70,"column":44},"end":{"line":70,"column":69}},"31":{"start":{"line":71,"column":22},"end":{"line":71,"column":69}},"32":{"start":{"line":71,"column":44},"end":{"line":71,"column":69}},"33":{"start":{"line":72,"column":20},"end":{"line":72,"column":68}},"34":{"start":{"line":72,"column":44},"end":{"line":72,"column":68}},"35":{"start":{"line":73,"column":28},"end":{"line":74,"column":39}},"36":{"start":{"line":74,"column":2},"end":{"line":74,"column":39}},"37":{"start":{"line":75,"column":26},"end":{"line":76,"column":35}},"38":{"start":{"line":76,"column":2},"end":{"line":76,"column":35}},"39":{"start":{"line":77,"column":25},"end":{"line":78,"column":33}},"40":{"start":{"line":78,"column":2},"end":{"line":78,"column":33}},"41":{"start":{"line":79,"column":20},"end":{"line":79,"column":68}},"42":{"start":{"line":79,"column":44},"end":{"line":79,"column":68}},"43":{"start":{"line":80,"column":22},"end":{"line":80,"column":76}},"44":{"start":{"line":80,"column":48},"end":{"line":80,"column":76}},"45":{"start":{"line":81,"column":21},"end":{"line":81,"column":72}},"46":{"start":{"line":81,"column":46},"end":{"line":81,"column":72}},"47":{"start":{"line":82,"column":23},"end":{"line":82,"column":73}},"48":{"start":{"line":82,"column":46},"end":{"line":82,"column":73}},"49":{"start":{"line":83,"column":19},"end":{"line":83,"column":64}},"50":{"start":{"line":83,"column":42},"end":{"line":83,"column":64}},"51":{"start":{"line":85,"column":18},"end":{"line":143,"column":1}},"52":{"start":{"line":86,"column":15},"end":{"line":86,"column":74}},"53":{"start":{"line":88,"column":15},"end":{"line":88,"column":68}},"54":{"start":{"line":90,"column":15},"end":{"line":90,"column":65}},"55":{"start":{"line":92,"column":15},"end":{"line":92,"column":76}},"56":{"start":{"line":94,"column":4},"end":{"line":95,"column":65}},"57":{"start":{"line":98,"column":15},"end":{"line":98,"column":67}},"58":{"start":{"line":100,"column":15},"end":{"line":100,"column":65}},"59":{"start":{"line":102,"column":15},"end":{"line":102,"column":77}},"60":{"start":{"line":104,"column":15},"end":{"line":104,"column":58}},"61":{"start":{"line":106,"column":15},"end":{"line":106,"column":62}},"62":{"start":{"line":108,"column":15},"end":{"line":108,"column":62}},"63":{"start":{"line":110,"column":15},"end":{"line":110,"column":64}},"64":{"start":{"line":112,"column":4},"end":{"line":112,"column":69}},"65":{"start":{"line":114,"column":15},"end":{"line":114,"column":74}},"66":{"start":{"line":116,"column":15},"end":{"line":116,"column":71}},"67":{"start":{"line":118,"column":4},"end":{"line":124,"column":5}},"68":{"start":{"line":127,"column":15},"end":{"line":127,"column":70}},"69":{"start":{"line":129,"column":4},"end":{"line":135,"column":5}},"70":{"start":{"line":137,"column":4},"end":{"line":140,"column":5}},"71":{"start":{"line":142,"column":15},"end":{"line":142,"column":61}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":11,"column":26},"end":{"line":11,"column":27}},"loc":{"start":{"line":12,"column":2},"end":{"line":12,"column":35}},"line":12},"1":{"name":"(anonymous_1)","decl":{"start":{"line":13,"column":24},"end":{"line":13,"column":25}},"loc":{"start":{"line":13,"column":48},"end":{"line":13,"column":77}},"line":13},"2":{"name":"(anonymous_2)","decl":{"start":{"line":14,"column":23},"end":{"line":14,"column":24}},"loc":{"start":{"line":14,"column":46},"end":{"line":14,"column":73}},"line":14},"3":{"name":"(anonymous_3)","decl":{"start":{"line":15,"column":24},"end":{"line":15,"column":25}},"loc":{"start":{"line":16,"column":2},"end":{"line":16,"column":34}},"line":16},"4":{"name":"(anonymous_4)","decl":{"start":{"line":18,"column":20},"end":{"line":18,"column":21}},"loc":{"start":{"line":23,"column":5},"end":{"line":63,"column":1}},"line":23},"5":{"name":"(anonymous_5)","decl":{"start":{"line":65,"column":21},"end":{"line":65,"column":22}},"loc":{"start":{"line":65,"column":46},"end":{"line":65,"column":72}},"line":65},"6":{"name":"(anonymous_6)","decl":{"start":{"line":66,"column":23},"end":{"line":66,"column":24}},"loc":{"start":{"line":66,"column":46},"end":{"line":66,"column":73}},"line":66},"7":{"name":"(anonymous_7)","decl":{"start":{"line":67,"column":27},"end":{"line":67,"column":28}},"loc":{"start":{"line":68,"column":2},"end":{"line":68,"column":37}},"line":68},"8":{"name":"(anonymous_8)","decl":{"start":{"line":69,"column":18},"end":{"line":69,"column":19}},"loc":{"start":{"line":69,"column":40},"end":{"line":69,"column":60}},"line":69},"9":{"name":"(anonymous_9)","decl":{"start":{"line":70,"column":22},"end":{"line":70,"column":23}},"loc":{"start":{"line":70,"column":44},"end":{"line":70,"column":69}},"line":70},"10":{"name":"(anonymous_10)","decl":{"start":{"line":71,"column":22},"end":{"line":71,"column":23}},"loc":{"start":{"line":71,"column":44},"end":{"line":71,"column":69}},"line":71},"11":{"name":"(anonymous_11)","decl":{"start":{"line":72,"column":20},"end":{"line":72,"column":21}},"loc":{"start":{"line":72,"column":44},"end":{"line":72,"column":68}},"line":72},"12":{"name":"(anonymous_12)","decl":{"start":{"line":73,"column":28},"end":{"line":73,"column":29}},"loc":{"start":{"line":74,"column":2},"end":{"line":74,"column":39}},"line":74},"13":{"name":"(anonymous_13)","decl":{"start":{"line":75,"column":26},"end":{"line":75,"column":27}},"loc":{"start":{"line":76,"column":2},"end":{"line":76,"column":35}},"line":76},"14":{"name":"(anonymous_14)","decl":{"start":{"line":77,"column":25},"end":{"line":77,"column":26}},"loc":{"start":{"line":78,"column":2},"end":{"line":78,"column":33}},"line":78},"15":{"name":"(anonymous_15)","decl":{"start":{"line":79,"column":20},"end":{"line":79,"column":21}},"loc":{"start":{"line":79,"column":44},"end":{"line":79,"column":68}},"line":79},"16":{"name":"(anonymous_16)","decl":{"start":{"line":80,"column":22},"end":{"line":80,"column":23}},"loc":{"start":{"line":80,"column":48},"end":{"line":80,"column":76}},"line":80},"17":{"name":"(anonymous_17)","decl":{"start":{"line":81,"column":21},"end":{"line":81,"column":22}},"loc":{"start":{"line":81,"column":46},"end":{"line":81,"column":72}},"line":81},"18":{"name":"(anonymous_18)","decl":{"start":{"line":82,"column":23},"end":{"line":82,"column":24}},"loc":{"start":{"line":82,"column":46},"end":{"line":82,"column":73}},"line":82},"19":{"name":"(anonymous_19)","decl":{"start":{"line":83,"column":19},"end":{"line":83,"column":20}},"loc":{"start":{"line":83,"column":42},"end":{"line":83,"column":64}},"line":83},"20":{"name":"(anonymous_20)","decl":{"start":{"line":86,"column":4},"end":{"line":86,"column":5}},"loc":{"start":{"line":86,"column":15},"end":{"line":86,"column":74}},"line":86},"21":{"name":"(anonymous_21)","decl":{"start":{"line":88,"column":4},"end":{"line":88,"column":5}},"loc":{"start":{"line":88,"column":15},"end":{"line":88,"column":68}},"line":88},"22":{"name":"(anonymous_22)","decl":{"start":{"line":90,"column":4},"end":{"line":90,"column":5}},"loc":{"start":{"line":90,"column":15},"end":{"line":90,"column":65}},"line":90},"23":{"name":"(anonymous_23)","decl":{"start":{"line":92,"column":4},"end":{"line":92,"column":5}},"loc":{"start":{"line":92,"column":15},"end":{"line":92,"column":76}},"line":92},"24":{"name":"(anonymous_24)","decl":{"start":{"line":93,"column":4},"end":{"line":93,"column":5}},"loc":{"start":{"line":94,"column":4},"end":{"line":95,"column":65}},"line":94},"25":{"name":"(anonymous_25)","decl":{"start":{"line":98,"column":4},"end":{"line":98,"column":5}},"loc":{"start":{"line":98,"column":15},"end":{"line":98,"column":67}},"line":98},"26":{"name":"(anonymous_26)","decl":{"start":{"line":100,"column":4},"end":{"line":100,"column":5}},"loc":{"start":{"line":100,"column":15},"end":{"line":100,"column":65}},"line":100},"27":{"name":"(anonymous_27)","decl":{"start":{"line":102,"column":4},"end":{"line":102,"column":5}},"loc":{"start":{"line":102,"column":15},"end":{"line":102,"column":77}},"line":102},"28":{"name":"(anonymous_28)","decl":{"start":{"line":104,"column":4},"end":{"line":104,"column":5}},"loc":{"start":{"line":104,"column":15},"end":{"line":104,"column":58}},"line":104},"29":{"name":"(anonymous_29)","decl":{"start":{"line":106,"column":4},"end":{"line":106,"column":5}},"loc":{"start":{"line":106,"column":15},"end":{"line":106,"column":62}},"line":106},"30":{"name":"(anonymous_30)","decl":{"start":{"line":108,"column":4},"end":{"line":108,"column":5}},"loc":{"start":{"line":108,"column":15},"end":{"line":108,"column":62}},"line":108},"31":{"name":"(anonymous_31)","decl":{"start":{"line":110,"column":4},"end":{"line":110,"column":5}},"loc":{"start":{"line":110,"column":15},"end":{"line":110,"column":64}},"line":110},"32":{"name":"(anonymous_32)","decl":{"start":{"line":111,"column":4},"end":{"line":111,"column":5}},"loc":{"start":{"line":112,"column":4},"end":{"line":112,"column":69}},"line":112},"33":{"name":"(anonymous_33)","decl":{"start":{"line":114,"column":4},"end":{"line":114,"column":5}},"loc":{"start":{"line":114,"column":15},"end":{"line":114,"column":74}},"line":114},"34":{"name":"(anonymous_34)","decl":{"start":{"line":116,"column":4},"end":{"line":116,"column":5}},"loc":{"start":{"line":116,"column":15},"end":{"line":116,"column":71}},"line":116},"35":{"name":"(anonymous_35)","decl":{"start":{"line":117,"column":4},"end":{"line":117,"column":5}},"loc":{"start":{"line":118,"column":4},"end":{"line":124,"column":5}},"line":118},"36":{"name":"(anonymous_36)","decl":{"start":{"line":127,"column":4},"end":{"line":127,"column":5}},"loc":{"start":{"line":127,"column":15},"end":{"line":127,"column":70}},"line":127},"37":{"name":"(anonymous_37)","decl":{"start":{"line":128,"column":4},"end":{"line":128,"column":5}},"loc":{"start":{"line":129,"column":4},"end":{"line":135,"column":5}},"line":129},"38":{"name":"(anonymous_38)","decl":{"start":{"line":136,"column":4},"end":{"line":136,"column":5}},"loc":{"start":{"line":137,"column":4},"end":{"line":140,"column":5}},"line":137},"39":{"name":"(anonymous_39)","decl":{"start":{"line":142,"column":4},"end":{"line":142,"column":5}},"loc":{"start":{"line":142,"column":15},"end":{"line":142,"column":61}},"line":142}},"branchMap":{"0":{"loc":{"start":{"line":22,"column":2},"end":{"line":22,"column":49}},"type":"default-arg","locations":[{"start":{"line":22,"column":44},"end":{"line":22,"column":49}}],"line":22},"1":{"loc":{"start":{"line":26,"column":2},"end":{"line":28,"column":3}},"type":"if","locations":[{"start":{"line":26,"column":2},"end":{"line":28,"column":3}},{"start":{},"end":{}}],"line":26},"2":{"loc":{"start":{"line":30,"column":2},"end":{"line":36,"column":6}},"type":"if","locations":[{"start":{"line":30,"column":2},"end":{"line":36,"column":6}},{"start":{},"end":{}}],"line":30},"3":{"loc":{"start":{"line":38,"column":2},"end":{"line":44,"column":6}},"type":"if","locations":[{"start":{"line":38,"column":2},"end":{"line":44,"column":6}},{"start":{},"end":{}}],"line":38},"4":{"loc":{"start":{"line":46,"column":2},"end":{"line":52,"column":6}},"type":"if","locations":[{"start":{"line":46,"column":2},"end":{"line":52,"column":6}},{"start":{},"end":{}}],"line":46},"5":{"loc":{"start":{"line":54,"column":2},"end":{"line":60,"column":6}},"type":"if","locations":[{"start":{"line":54,"column":2},"end":{"line":60,"column":6}},{"start":{},"end":{}}],"line":54},"6":{"loc":{"start":{"line":86,"column":15},"end":{"line":86,"column":74}},"type":"binary-expr","locations":[{"start":{"line":86,"column":15},"end":{"line":86,"column":33}},{"start":{"line":86,"column":37},"end":{"line":86,"column":74}}],"line":86},"7":{"loc":{"start":{"line":88,"column":15},"end":{"line":88,"column":68}},"type":"binary-expr","locations":[{"start":{"line":88,"column":15},"end":{"line":88,"column":31}},{"start":{"line":88,"column":35},"end":{"line":88,"column":68}}],"line":88},"8":{"loc":{"start":{"line":90,"column":15},"end":{"line":90,"column":65}},"type":"binary-expr","locations":[{"start":{"line":90,"column":15},"end":{"line":90,"column":30}},{"start":{"line":90,"column":34},"end":{"line":90,"column":65}}],"line":90},"9":{"loc":{"start":{"line":92,"column":15},"end":{"line":92,"column":76}},"type":"binary-expr","locations":[{"start":{"line":92,"column":15},"end":{"line":92,"column":35}},{"start":{"line":92,"column":39},"end":{"line":92,"column":76}}],"line":92},"10":{"loc":{"start":{"line":94,"column":4},"end":{"line":95,"column":65}},"type":"binary-expr","locations":[{"start":{"line":94,"column":4},"end":{"line":94,"column":20}},{"start":{"line":95,"column":4},"end":{"line":95,"column":65}}],"line":94},"11":{"loc":{"start":{"line":98,"column":15},"end":{"line":98,"column":67}},"type":"binary-expr","locations":[{"start":{"line":98,"column":15},"end":{"line":98,"column":32}},{"start":{"line":98,"column":36},"end":{"line":98,"column":67}}],"line":98},"12":{"loc":{"start":{"line":100,"column":15},"end":{"line":100,"column":65}},"type":"binary-expr","locations":[{"start":{"line":100,"column":15},"end":{"line":100,"column":30}},{"start":{"line":100,"column":34},"end":{"line":100,"column":65}}],"line":100},"13":{"loc":{"start":{"line":102,"column":15},"end":{"line":102,"column":77}},"type":"binary-expr","locations":[{"start":{"line":102,"column":15},"end":{"line":102,"column":34}},{"start":{"line":102,"column":38},"end":{"line":102,"column":77}}],"line":102},"14":{"loc":{"start":{"line":104,"column":15},"end":{"line":104,"column":58}},"type":"binary-expr","locations":[{"start":{"line":104,"column":15},"end":{"line":104,"column":29}},{"start":{"line":104,"column":33},"end":{"line":104,"column":58}}],"line":104},"15":{"loc":{"start":{"line":106,"column":15},"end":{"line":106,"column":62}},"type":"binary-expr","locations":[{"start":{"line":106,"column":15},"end":{"line":106,"column":29}},{"start":{"line":106,"column":33},"end":{"line":106,"column":62}}],"line":106},"16":{"loc":{"start":{"line":108,"column":15},"end":{"line":108,"column":62}},"type":"binary-expr","locations":[{"start":{"line":108,"column":15},"end":{"line":108,"column":29}},{"start":{"line":108,"column":33},"end":{"line":108,"column":62}}],"line":108},"17":{"loc":{"start":{"line":110,"column":15},"end":{"line":110,"column":64}},"type":"binary-expr","locations":[{"start":{"line":110,"column":15},"end":{"line":110,"column":31}},{"start":{"line":110,"column":35},"end":{"line":110,"column":64}}],"line":110},"18":{"loc":{"start":{"line":112,"column":4},"end":{"line":112,"column":69}},"type":"binary-expr","locations":[{"start":{"line":112,"column":4},"end":{"line":112,"column":24}},{"start":{"line":112,"column":28},"end":{"line":112,"column":69}}],"line":112},"19":{"loc":{"start":{"line":114,"column":15},"end":{"line":114,"column":74}},"type":"binary-expr","locations":[{"start":{"line":114,"column":15},"end":{"line":114,"column":33}},{"start":{"line":114,"column":37},"end":{"line":114,"column":74}}],"line":114},"20":{"loc":{"start":{"line":116,"column":15},"end":{"line":116,"column":71}},"type":"binary-expr","locations":[{"start":{"line":116,"column":15},"end":{"line":116,"column":32}},{"start":{"line":116,"column":36},"end":{"line":116,"column":71}}],"line":116},"21":{"loc":{"start":{"line":118,"column":4},"end":{"line":124,"column":5}},"type":"binary-expr","locations":[{"start":{"line":118,"column":4},"end":{"line":118,"column":20}},{"start":{"line":119,"column":4},"end":{"line":124,"column":5}}],"line":118},"22":{"loc":{"start":{"line":127,"column":15},"end":{"line":127,"column":70}},"type":"binary-expr","locations":[{"start":{"line":127,"column":15},"end":{"line":127,"column":33}},{"start":{"line":127,"column":37},"end":{"line":127,"column":70}}],"line":127},"23":{"loc":{"start":{"line":129,"column":4},"end":{"line":135,"column":5}},"type":"binary-expr","locations":[{"start":{"line":129,"column":4},"end":{"line":129,"column":21}},{"start":{"line":130,"column":4},"end":{"line":135,"column":5}}],"line":129},"24":{"loc":{"start":{"line":137,"column":4},"end":{"line":140,"column":5}},"type":"binary-expr","locations":[{"start":{"line":137,"column":4},"end":{"line":137,"column":19}},{"start":{"line":138,"column":4},"end":{"line":140,"column":5}}],"line":137},"25":{"loc":{"start":{"line":142,"column":15},"end":{"line":142,"column":61}},"type":"binary-expr","locations":[{"start":{"line":142,"column":15},"end":{"line":142,"column":30}},{"start":{"line":142,"column":34},"end":{"line":142,"column":61}}],"line":142}},"s":{"0":1,"1":0,"2":1,"3":0,"4":1,"5":0,"6":1,"7":0,"8":1,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":1,"22":1,"23":1,"24":0,"25":1,"26":0,"27":1,"28":0,"29":1,"30":0,"31":1,"32":0,"33":1,"34":0,"35":1,"36":0,"37":1,"38":0,"39":1,"40":0,"41":1,"42":0,"43":1,"44":0,"45":1,"46":0,"47":1,"48":0,"49":1,"50":0,"51":1,"52":1,"53":1,"54":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"61":1,"62":1,"63":1,"64":1,"65":1,"66":1,"67":1,"68":1,"69":1,"70":1,"71":1},"f":{"0":0,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"26":1,"27":1,"28":1,"29":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1},"b":{"0":[0],"1":[0,0],"2":[0,0],"3":[0,0],"4":[0,0],"5":[0,0],"6":[1,0],"7":[1,0],"8":[1,0],"9":[1,0],"10":[1,0],"11":[1,1],"12":[1,0],"13":[1,0],"14":[1,0],"15":[1,0],"16":[1,0],"17":[1,0],"18":[1,0],"19":[1,0],"20":[1,0],"21":[1,0],"22":[1,0],"23":[1,0],"24":[1,0],"25":[1,0]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"e50e10a939bbf11999b1637bc9308f38555ce614"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\box\\index.tsx": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\box\\index.tsx","statementMap":{"0":{"start":{"line":6,"column":17},"end":{"line":6,"column":22}},"1":{"start":{"line":7,"column":2},"end":{"line":7,"column":69}},"2":{"start":{"line":10,"column":0},"end":{"line":12,"column":2}}},"fnMap":{"0":{"name":"Box","decl":{"start":{"line":5,"column":9},"end":{"line":5,"column":12}},"loc":{"start":{"line":5,"column":30},"end":{"line":8,"column":1}},"line":5}},"branchMap":{"0":{"loc":{"start":{"line":7,"column":35},"end":{"line":7,"column":46}},"type":"binary-expr","locations":[{"start":{"line":7,"column":35},"end":{"line":7,"column":37}},{"start":{"line":7,"column":41},"end":{"line":7,"column":46}}],"line":7}},"s":{"0":1,"1":1,"2":1},"f":{"0":1},"b":{"0":[1,1]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"654056413143c2b838055298bf9392f38e247ca3"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\icon-button\\IconButton.styled.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\icon-button\\IconButton.styled.ts","statementMap":{"0":{"start":{"line":5,"column":20},"end":{"line":59,"column":1}},"1":{"start":{"line":6,"column":23},"end":{"line":6,"column":62}},"2":{"start":{"line":7,"column":24},"end":{"line":7,"column":63}},"3":{"start":{"line":9,"column":4},"end":{"line":9,"column":66}},"4":{"start":{"line":14,"column":4},"end":{"line":34,"column":5}},"5":{"start":{"line":37,"column":4},"end":{"line":58,"column":5}},"6":{"start":{"line":61,"column":0},"end":{"line":61,"column":43}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":6,"column":11},"end":{"line":6,"column":12}},"loc":{"start":{"line":6,"column":23},"end":{"line":6,"column":62}},"line":6},"1":{"name":"(anonymous_1)","decl":{"start":{"line":7,"column":12},"end":{"line":7,"column":13}},"loc":{"start":{"line":7,"column":24},"end":{"line":7,"column":63}},"line":7},"2":{"name":"(anonymous_2)","decl":{"start":{"line":8,"column":12},"end":{"line":8,"column":13}},"loc":{"start":{"line":9,"column":4},"end":{"line":9,"column":66}},"line":9},"3":{"name":"(anonymous_3)","decl":{"start":{"line":13,"column":4},"end":{"line":13,"column":5}},"loc":{"start":{"line":14,"column":4},"end":{"line":34,"column":5}},"line":14},"4":{"name":"(anonymous_4)","decl":{"start":{"line":36,"column":4},"end":{"line":36,"column":5}},"loc":{"start":{"line":37,"column":4},"end":{"line":58,"column":5}},"line":37}},"branchMap":{"0":{"loc":{"start":{"line":6,"column":23},"end":{"line":6,"column":62}},"type":"cond-expr","locations":[{"start":{"line":6,"column":36},"end":{"line":6,"column":53}},{"start":{"line":6,"column":56},"end":{"line":6,"column":62}}],"line":6},"1":{"loc":{"start":{"line":7,"column":24},"end":{"line":7,"column":63}},"type":"cond-expr","locations":[{"start":{"line":7,"column":37},"end":{"line":7,"column":54}},{"start":{"line":7,"column":57},"end":{"line":7,"column":63}}],"line":7},"2":{"loc":{"start":{"line":9,"column":4},"end":{"line":9,"column":66}},"type":"cond-expr","locations":[{"start":{"line":9,"column":45},"end":{"line":9,"column":54}},{"start":{"line":9,"column":57},"end":{"line":9,"column":66}}],"line":9},"3":{"loc":{"start":{"line":9,"column":4},"end":{"line":9,"column":42}},"type":"binary-expr","locations":[{"start":{"line":9,"column":4},"end":{"line":9,"column":20}},{"start":{"line":9,"column":24},"end":{"line":9,"column":42}}],"line":9},"4":{"loc":{"start":{"line":14,"column":4},"end":{"line":34,"column":5}},"type":"binary-expr","locations":[{"start":{"line":14,"column":4},"end":{"line":14,"column":18}},{"start":{"line":15,"column":4},"end":{"line":34,"column":5}}],"line":14},"5":{"loc":{"start":{"line":22,"column":20},"end":{"line":22,"column":63}},"type":"binary-expr","locations":[{"start":{"line":22,"column":20},"end":{"line":22,"column":31}},{"start":{"line":22,"column":35},"end":{"line":22,"column":63}}],"line":22},"6":{"loc":{"start":{"line":28,"column":22},"end":{"line":30,"column":64}},"type":"cond-expr","locations":[{"start":{"line":29,"column":16},"end":{"line":29,"column":44}},{"start":{"line":30,"column":16},"end":{"line":30,"column":64}}],"line":28},"7":{"loc":{"start":{"line":30,"column":16},"end":{"line":30,"column":64}},"type":"binary-expr","locations":[{"start":{"line":30,"column":16},"end":{"line":30,"column":27}},{"start":{"line":30,"column":31},"end":{"line":30,"column":64}}],"line":30},"8":{"loc":{"start":{"line":37,"column":4},"end":{"line":58,"column":5}},"type":"binary-expr","locations":[{"start":{"line":37,"column":4},"end":{"line":37,"column":16}},{"start":{"line":38,"column":4},"end":{"line":38,"column":19}},{"start":{"line":39,"column":4},"end":{"line":58,"column":5}}],"line":37},"9":{"loc":{"start":{"line":46,"column":18},"end":{"line":46,"column":61}},"type":"binary-expr","locations":[{"start":{"line":46,"column":18},"end":{"line":46,"column":29}},{"start":{"line":46,"column":33},"end":{"line":46,"column":61}}],"line":46},"10":{"loc":{"start":{"line":52,"column":20},"end":{"line":54,"column":64}},"type":"cond-expr","locations":[{"start":{"line":53,"column":16},"end":{"line":53,"column":44}},{"start":{"line":54,"column":16},"end":{"line":54,"column":64}}],"line":52},"11":{"loc":{"start":{"line":54,"column":16},"end":{"line":54,"column":64}},"type":"binary-expr","locations":[{"start":{"line":54,"column":16},"end":{"line":54,"column":27}},{"start":{"line":54,"column":31},"end":{"line":54,"column":64}}],"line":54}},"s":{"0":2,"1":2,"2":2,"3":2,"4":2,"5":2,"6":2},"f":{"0":2,"1":2,"2":2,"3":2,"4":2},"b":{"0":[2,0],"1":[2,0],"2":[2,0],"3":[2,2],"4":[2,0],"5":[0,0],"6":[0,0],"7":[0,0],"8":[2,2,2],"9":[2,1],"10":[0,2],"11":[2,1]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"dd06b11a3de71d9fb7d5536ba32839e6ba80845a"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\icon-button\\index.tsx": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\icon-button\\index.tsx","statementMap":{"0":{"start":{"line":7,"column":19},"end":{"line":141,"column":1}},"1":{"start":{"line":35,"column":48},"end":{"line":35,"column":72}},"2":{"start":{"line":36,"column":50},"end":{"line":38,"column":13}},"3":{"start":{"line":40,"column":29},"end":{"line":52,"column":3}},"4":{"start":{"line":41,"column":4},"end":{"line":41,"column":27}},"5":{"start":{"line":41,"column":20},"end":{"line":41,"column":27}},"6":{"start":{"line":43,"column":4},"end":{"line":49,"column":5}},"7":{"start":{"line":44,"column":6},"end":{"line":44,"column":52}},"8":{"start":{"line":45,"column":6},"end":{"line":45,"column":47}},"9":{"start":{"line":47,"column":6},"end":{"line":47,"column":35}},"10":{"start":{"line":48,"column":6},"end":{"line":48,"column":47}},"11":{"start":{"line":51,"column":4},"end":{"line":51,"column":22}},"12":{"start":{"line":54,"column":29},"end":{"line":61,"column":3}},"13":{"start":{"line":55,"column":4},"end":{"line":55,"column":27}},"14":{"start":{"line":55,"column":20},"end":{"line":55,"column":27}},"15":{"start":{"line":57,"column":4},"end":{"line":57,"column":33}},"16":{"start":{"line":58,"column":4},"end":{"line":58,"column":31}},"17":{"start":{"line":60,"column":4},"end":{"line":60,"column":22}},"18":{"start":{"line":63,"column":28},"end":{"line":75,"column":3}},"19":{"start":{"line":64,"column":4},"end":{"line":64,"column":27}},"20":{"start":{"line":64,"column":20},"end":{"line":64,"column":27}},"21":{"start":{"line":66,"column":4},"end":{"line":72,"column":5}},"22":{"start":{"line":67,"column":6},"end":{"line":67,"column":52}},"23":{"start":{"line":68,"column":6},"end":{"line":68,"column":47}},"24":{"start":{"line":70,"column":6},"end":{"line":70,"column":35}},"25":{"start":{"line":71,"column":6},"end":{"line":71,"column":47}},"26":{"start":{"line":74,"column":4},"end":{"line":74,"column":21}},"27":{"start":{"line":77,"column":26},"end":{"line":98,"column":3}},"28":{"start":{"line":78,"column":4},"end":{"line":78,"column":27}},"29":{"start":{"line":78,"column":20},"end":{"line":78,"column":27}},"30":{"start":{"line":80,"column":4},"end":{"line":97,"column":5}},"31":{"start":{"line":82,"column":8},"end":{"line":88,"column":9}},"32":{"start":{"line":83,"column":10},"end":{"line":83,"column":56}},"33":{"start":{"line":84,"column":10},"end":{"line":84,"column":51}},"34":{"start":{"line":86,"column":10},"end":{"line":86,"column":39}},"35":{"start":{"line":87,"column":10},"end":{"line":87,"column":51}},"36":{"start":{"line":90,"column":8},"end":{"line":90,"column":23}},"37":{"start":{"line":91,"column":8},"end":{"line":91,"column":14}},"38":{"start":{"line":93,"column":8},"end":{"line":93,"column":23}},"39":{"start":{"line":94,"column":8},"end":{"line":94,"column":14}},"40":{"start":{"line":96,"column":8},"end":{"line":96,"column":14}},"41":{"start":{"line":100,"column":24},"end":{"line":103,"column":3}},"42":{"start":{"line":101,"column":4},"end":{"line":101,"column":27}},"43":{"start":{"line":101,"column":20},"end":{"line":101,"column":27}},"44":{"start":{"line":102,"column":4},"end":{"line":102,"column":17}},"45":{"start":{"line":105,"column":2},"end":{"line":108,"column":24}},"46":{"start":{"line":106,"column":4},"end":{"line":106,"column":33}},"47":{"start":{"line":107,"column":4},"end":{"line":107,"column":37}},"48":{"start":{"line":110,"column":2},"end":{"line":140,"column":4}},"49":{"start":{"line":143,"column":0},"end":{"line":150,"column":2}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":7,"column":19},"end":{"line":7,"column":20}},"loc":{"start":{"line":34,"column":23},"end":{"line":141,"column":1}},"line":34},"1":{"name":"(anonymous_1)","decl":{"start":{"line":40,"column":29},"end":{"line":40,"column":30}},"loc":{"start":{"line":40,"column":54},"end":{"line":52,"column":3}},"line":40},"2":{"name":"(anonymous_2)","decl":{"start":{"line":54,"column":29},"end":{"line":54,"column":30}},"loc":{"start":{"line":54,"column":54},"end":{"line":61,"column":3}},"line":54},"3":{"name":"(anonymous_3)","decl":{"start":{"line":63,"column":28},"end":{"line":63,"column":29}},"loc":{"start":{"line":63,"column":69},"end":{"line":75,"column":3}},"line":63},"4":{"name":"(anonymous_4)","decl":{"start":{"line":77,"column":26},"end":{"line":77,"column":27}},"loc":{"start":{"line":77,"column":67},"end":{"line":98,"column":3}},"line":77},"5":{"name":"(anonymous_5)","decl":{"start":{"line":100,"column":24},"end":{"line":100,"column":25}},"loc":{"start":{"line":100,"column":65},"end":{"line":103,"column":3}},"line":100},"6":{"name":"(anonymous_6)","decl":{"start":{"line":105,"column":18},"end":{"line":105,"column":19}},"loc":{"start":{"line":105,"column":24},"end":{"line":108,"column":3}},"line":105}},"branchMap":{"0":{"loc":{"start":{"line":41,"column":4},"end":{"line":41,"column":27}},"type":"if","locations":[{"start":{"line":41,"column":4},"end":{"line":41,"column":27}},{"start":{},"end":{}}],"line":41},"1":{"loc":{"start":{"line":43,"column":4},"end":{"line":49,"column":5}},"type":"if","locations":[{"start":{"line":43,"column":4},"end":{"line":49,"column":5}},{"start":{"line":46,"column":11},"end":{"line":49,"column":5}}],"line":43},"2":{"loc":{"start":{"line":44,"column":25},"end":{"line":44,"column":50}},"type":"binary-expr","locations":[{"start":{"line":44,"column":25},"end":{"line":44,"column":38}},{"start":{"line":44,"column":42},"end":{"line":44,"column":50}}],"line":44},"3":{"loc":{"start":{"line":45,"column":26},"end":{"line":45,"column":45}},"type":"binary-expr","locations":[{"start":{"line":45,"column":26},"end":{"line":45,"column":36}},{"start":{"line":45,"column":40},"end":{"line":45,"column":45}}],"line":45},"4":{"loc":{"start":{"line":48,"column":26},"end":{"line":48,"column":45}},"type":"binary-expr","locations":[{"start":{"line":48,"column":26},"end":{"line":48,"column":36}},{"start":{"line":48,"column":40},"end":{"line":48,"column":45}}],"line":48},"5":{"loc":{"start":{"line":55,"column":4},"end":{"line":55,"column":27}},"type":"if","locations":[{"start":{"line":55,"column":4},"end":{"line":55,"column":27}},{"start":{},"end":{}}],"line":55},"6":{"loc":{"start":{"line":64,"column":4},"end":{"line":64,"column":27}},"type":"if","locations":[{"start":{"line":64,"column":4},"end":{"line":64,"column":27}},{"start":{},"end":{}}],"line":64},"7":{"loc":{"start":{"line":66,"column":4},"end":{"line":72,"column":5}},"type":"if","locations":[{"start":{"line":66,"column":4},"end":{"line":72,"column":5}},{"start":{"line":69,"column":11},"end":{"line":72,"column":5}}],"line":66},"8":{"loc":{"start":{"line":67,"column":25},"end":{"line":67,"column":50}},"type":"binary-expr","locations":[{"start":{"line":67,"column":25},"end":{"line":67,"column":38}},{"start":{"line":67,"column":42},"end":{"line":67,"column":50}}],"line":67},"9":{"loc":{"start":{"line":68,"column":26},"end":{"line":68,"column":45}},"type":"binary-expr","locations":[{"start":{"line":68,"column":26},"end":{"line":68,"column":36}},{"start":{"line":68,"column":40},"end":{"line":68,"column":45}}],"line":68},"10":{"loc":{"start":{"line":71,"column":26},"end":{"line":71,"column":45}},"type":"binary-expr","locations":[{"start":{"line":71,"column":26},"end":{"line":71,"column":36}},{"start":{"line":71,"column":40},"end":{"line":71,"column":45}}],"line":71},"11":{"loc":{"start":{"line":78,"column":4},"end":{"line":78,"column":27}},"type":"if","locations":[{"start":{"line":78,"column":4},"end":{"line":78,"column":27}},{"start":{},"end":{}}],"line":78},"12":{"loc":{"start":{"line":80,"column":4},"end":{"line":97,"column":5}},"type":"switch","locations":[{"start":{"line":81,"column":6},"end":{"line":91,"column":14}},{"start":{"line":92,"column":6},"end":{"line":94,"column":14}},{"start":{"line":95,"column":6},"end":{"line":96,"column":14}}],"line":80},"13":{"loc":{"start":{"line":82,"column":8},"end":{"line":88,"column":9}},"type":"if","locations":[{"start":{"line":82,"column":8},"end":{"line":88,"column":9}},{"start":{"line":85,"column":15},"end":{"line":88,"column":9}}],"line":82},"14":{"loc":{"start":{"line":83,"column":29},"end":{"line":83,"column":54}},"type":"binary-expr","locations":[{"start":{"line":83,"column":29},"end":{"line":83,"column":42}},{"start":{"line":83,"column":46},"end":{"line":83,"column":54}}],"line":83},"15":{"loc":{"start":{"line":84,"column":30},"end":{"line":84,"column":49}},"type":"binary-expr","locations":[{"start":{"line":84,"column":30},"end":{"line":84,"column":40}},{"start":{"line":84,"column":44},"end":{"line":84,"column":49}}],"line":84},"16":{"loc":{"start":{"line":87,"column":30},"end":{"line":87,"column":49}},"type":"binary-expr","locations":[{"start":{"line":87,"column":30},"end":{"line":87,"column":40}},{"start":{"line":87,"column":44},"end":{"line":87,"column":49}}],"line":87},"17":{"loc":{"start":{"line":101,"column":4},"end":{"line":101,"column":27}},"type":"if","locations":[{"start":{"line":101,"column":4},"end":{"line":101,"column":27}},{"start":{},"end":{}}],"line":101},"18":{"loc":{"start":{"line":107,"column":24},"end":{"line":107,"column":35}},"type":"binary-expr","locations":[{"start":{"line":107,"column":24},"end":{"line":107,"column":29}},{"start":{"line":107,"column":33},"end":{"line":107,"column":35}}],"line":107},"19":{"loc":{"start":{"line":121,"column":19},"end":{"line":121,"column":63}},"type":"binary-expr","locations":[{"start":{"line":121,"column":19},"end":{"line":121,"column":48}},{"start":{"line":121,"column":52},"end":{"line":121,"column":63}}],"line":121},"20":{"loc":{"start":{"line":133,"column":7},"end":{"line":138,"column":7}},"type":"binary-expr","locations":[{"start":{"line":133,"column":7},"end":{"line":133,"column":15}},{"start":{"line":134,"column":8},"end":{"line":137,"column":10}}],"line":133}},"s":{"0":2,"1":2,"2":2,"3":2,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":2,"13":0,"14":0,"15":0,"16":0,"17":0,"18":2,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":2,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":2,"42":0,"43":0,"44":0,"45":2,"46":1,"47":1,"48":2,"49":2},"f":{"0":2,"1":0,"2":0,"3":0,"4":0,"5":0,"6":1},"b":{"0":[0,0],"1":[0,0],"2":[0,0],"3":[0,0],"4":[0,0],"5":[0,0],"6":[0,0],"7":[0,0],"8":[0,0],"9":[0,0],"10":[0,0],"11":[0,0],"12":[0,0,0],"13":[0,0],"14":[0,0],"15":[0,0],"16":[0,0],"17":[0,0],"18":[1,1],"19":[2,2],"20":[2,2]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"f919bc08fbdd1057aad8d7e42bae577fcdffd220"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\link\\Link.enums.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\link\\Link.enums.ts","statementMap":{},"fnMap":{},"branchMap":{},"s":{},"f":{},"b":{},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"a65e588178ca6aea31821dcec0bba3982634ac11"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\link\\Link.styled.tsx": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\link\\Link.styled.tsx","statementMap":{"0":{"start":{"line":9,"column":17},"end":{"line":11,"column":1}},"1":{"start":{"line":10,"column":23},"end":{"line":10,"column":73}},"2":{"start":{"line":13,"column":19},"end":{"line":19,"column":1}},"3":{"start":{"line":16,"column":4},"end":{"line":18,"column":45}},"4":{"start":{"line":21,"column":17},"end":{"line":25,"column":73}},"5":{"start":{"line":25,"column":54},"end":{"line":25,"column":73}},"6":{"start":{"line":27,"column":19},"end":{"line":57,"column":1}},"7":{"start":{"line":28,"column":32},"end":{"line":28,"column":63}},"8":{"start":{"line":31,"column":4},"end":{"line":35,"column":20}},"9":{"start":{"line":37,"column":23},"end":{"line":37,"column":46}},"10":{"start":{"line":39,"column":24},"end":{"line":39,"column":75}},"11":{"start":{"line":41,"column":4},"end":{"line":41,"column":69}},"12":{"start":{"line":46,"column":17},"end":{"line":46,"column":45}},"13":{"start":{"line":49,"column":15},"end":{"line":49,"column":62}},"14":{"start":{"line":52,"column":4},"end":{"line":56,"column":5}},"15":{"start":{"line":59,"column":0},"end":{"line":61,"column":2}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":10,"column":11},"end":{"line":10,"column":12}},"loc":{"start":{"line":10,"column":23},"end":{"line":10,"column":73}},"line":10},"1":{"name":"(anonymous_1)","decl":{"start":{"line":15,"column":21},"end":{"line":15,"column":22}},"loc":{"start":{"line":16,"column":4},"end":{"line":18,"column":45}},"line":16},"2":{"name":"(anonymous_2)","decl":{"start":{"line":21,"column":17},"end":{"line":21,"column":18}},"loc":{"start":{"line":25,"column":54},"end":{"line":25,"column":73}},"line":25},"3":{"name":"(anonymous_3)","decl":{"start":{"line":28,"column":21},"end":{"line":28,"column":22}},"loc":{"start":{"line":28,"column":32},"end":{"line":28,"column":63}},"line":28},"4":{"name":"(anonymous_4)","decl":{"start":{"line":30,"column":4},"end":{"line":30,"column":5}},"loc":{"start":{"line":31,"column":4},"end":{"line":35,"column":20}},"line":31},"5":{"name":"(anonymous_5)","decl":{"start":{"line":37,"column":12},"end":{"line":37,"column":13}},"loc":{"start":{"line":37,"column":23},"end":{"line":37,"column":46}},"line":37},"6":{"name":"(anonymous_6)","decl":{"start":{"line":39,"column":13},"end":{"line":39,"column":14}},"loc":{"start":{"line":39,"column":24},"end":{"line":39,"column":75}},"line":39},"7":{"name":"(anonymous_7)","decl":{"start":{"line":40,"column":17},"end":{"line":40,"column":18}},"loc":{"start":{"line":41,"column":4},"end":{"line":41,"column":69}},"line":41},"8":{"name":"(anonymous_8)","decl":{"start":{"line":46,"column":6},"end":{"line":46,"column":7}},"loc":{"start":{"line":46,"column":17},"end":{"line":46,"column":45}},"line":46},"9":{"name":"(anonymous_9)","decl":{"start":{"line":49,"column":4},"end":{"line":49,"column":5}},"loc":{"start":{"line":49,"column":15},"end":{"line":49,"column":62}},"line":49},"10":{"name":"(anonymous_10)","decl":{"start":{"line":51,"column":4},"end":{"line":51,"column":5}},"loc":{"start":{"line":52,"column":4},"end":{"line":56,"column":5}},"line":52}},"branchMap":{"0":{"loc":{"start":{"line":10,"column":23},"end":{"line":10,"column":73}},"type":"cond-expr","locations":[{"start":{"line":10,"column":37},"end":{"line":10,"column":48}},{"start":{"line":10,"column":51},"end":{"line":10,"column":73}}],"line":10},"1":{"loc":{"start":{"line":16,"column":4},"end":{"line":18,"column":45}},"type":"cond-expr","locations":[{"start":{"line":17,"column":8},"end":{"line":17,"column":50}},{"start":{"line":18,"column":8},"end":{"line":18,"column":45}}],"line":16},"2":{"loc":{"start":{"line":31,"column":4},"end":{"line":35,"column":20}},"type":"cond-expr","locations":[{"start":{"line":32,"column":8},"end":{"line":34,"column":9}},{"start":{"line":35,"column":8},"end":{"line":35,"column":20}}],"line":31},"3":{"loc":{"start":{"line":39,"column":24},"end":{"line":39,"column":75}},"type":"binary-expr","locations":[{"start":{"line":39,"column":24},"end":{"line":39,"column":47}},{"start":{"line":39,"column":51},"end":{"line":39,"column":75}}],"line":39},"4":{"loc":{"start":{"line":41,"column":4},"end":{"line":41,"column":69}},"type":"cond-expr","locations":[{"start":{"line":41,"column":23},"end":{"line":41,"column":39}},{"start":{"line":41,"column":42},"end":{"line":41,"column":69}}],"line":41},"5":{"loc":{"start":{"line":46,"column":17},"end":{"line":46,"column":45}},"type":"binary-expr","locations":[{"start":{"line":46,"column":17},"end":{"line":46,"column":31}},{"start":{"line":46,"column":35},"end":{"line":46,"column":45}}],"line":46},"6":{"loc":{"start":{"line":49,"column":15},"end":{"line":49,"column":62}},"type":"binary-expr","locations":[{"start":{"line":49,"column":15},"end":{"line":49,"column":29}},{"start":{"line":49,"column":33},"end":{"line":49,"column":48}},{"start":{"line":49,"column":52},"end":{"line":49,"column":62}}],"line":49},"7":{"loc":{"start":{"line":52,"column":4},"end":{"line":56,"column":5}},"type":"binary-expr","locations":[{"start":{"line":52,"column":4},"end":{"line":52,"column":24}},{"start":{"line":53,"column":4},"end":{"line":56,"column":5}}],"line":52}},"s":{"0":1,"1":2,"2":1,"3":1,"4":1,"5":1,"6":1,"7":1,"8":1,"9":1,"10":1,"11":1,"12":1,"13":1,"14":1,"15":1},"f":{"0":2,"1":1,"2":1,"3":1,"4":1,"5":1,"6":1,"7":1,"8":1,"9":1,"10":1},"b":{"0":[2,0],"1":[1,0],"2":[0,1],"3":[1,0],"4":[0,1],"5":[1,1],"6":[1,1,0],"7":[1,0]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"229858b54c7596d95f29e63a68c26c843c074bf1"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\link\\index.tsx": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\link\\index.tsx","statementMap":{"0":{"start":{"line":9,"column":13},"end":{"line":29,"column":1}},"1":{"start":{"line":16,"column":2},"end":{"line":28,"column":4}},"2":{"start":{"line":31,"column":0},"end":{"line":44,"column":2}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":9,"column":13},"end":{"line":9,"column":14}},"loc":{"start":{"line":15,"column":17},"end":{"line":29,"column":1}},"line":15}},"branchMap":{"0":{"loc":{"start":{"line":21,"column":16},"end":{"line":21,"column":39}},"type":"binary-expr","locations":[{"start":{"line":21,"column":16},"end":{"line":21,"column":30}},{"start":{"line":21,"column":34},"end":{"line":21,"column":39}}],"line":21}},"s":{"0":1,"1":1,"2":1},"f":{"0":1},"b":{"0":[1,1]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"1dc101821633488128f8da9b912b644dcba8f4d7"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\portal\\index.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\portal\\index.ts","statementMap":{"0":{"start":{"line":11,"column":15},"end":{"line":31,"column":1}},"1":{"start":{"line":12,"column":32},"end":{"line":12,"column":55}},"2":{"start":{"line":14,"column":19},"end":{"line":20,"column":8}},"3":{"start":{"line":15,"column":4},"end":{"line":19,"column":6}},"4":{"start":{"line":22,"column":2},"end":{"line":26,"column":26}},"5":{"start":{"line":23,"column":4},"end":{"line":25,"column":5}},"6":{"start":{"line":24,"column":6},"end":{"line":24,"column":23}},"7":{"start":{"line":28,"column":2},"end":{"line":30,"column":11}},"8":{"start":{"line":33,"column":0},"end":{"line":36,"column":2}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":11,"column":15},"end":{"line":11,"column":16}},"loc":{"start":{"line":11,"column":64},"end":{"line":31,"column":1}},"line":11},"1":{"name":"(anonymous_1)","decl":{"start":{"line":14,"column":37},"end":{"line":14,"column":38}},"loc":{"start":{"line":14,"column":43},"end":{"line":20,"column":3}},"line":14},"2":{"name":"(anonymous_2)","decl":{"start":{"line":22,"column":18},"end":{"line":22,"column":19}},"loc":{"start":{"line":22,"column":24},"end":{"line":26,"column":3}},"line":22}},"branchMap":{"0":{"loc":{"start":{"line":16,"column":6},"end":{"line":18,"column":35}},"type":"binary-expr","locations":[{"start":{"line":16,"column":6},"end":{"line":16,"column":35}},{"start":{"line":17,"column":6},"end":{"line":17,"column":21}},{"start":{"line":18,"column":6},"end":{"line":18,"column":35}}],"line":16},"1":{"loc":{"start":{"line":23,"column":4},"end":{"line":25,"column":5}},"type":"if","locations":[{"start":{"line":23,"column":4},"end":{"line":25,"column":5}},{"start":{},"end":{}}],"line":23},"2":{"loc":{"start":{"line":23,"column":8},"end":{"line":23,"column":30}},"type":"binary-expr","locations":[{"start":{"line":23,"column":8},"end":{"line":23,"column":18}},{"start":{"line":23,"column":22},"end":{"line":23,"column":30}}],"line":23},"3":{"loc":{"start":{"line":28,"column":9},"end":{"line":30,"column":10}},"type":"cond-expr","locations":[{"start":{"line":29,"column":6},"end":{"line":29,"column":63}},{"start":{"line":30,"column":6},"end":{"line":30,"column":10}}],"line":28},"4":{"loc":{"start":{"line":28,"column":9},"end":{"line":28,"column":27}},"type":"binary-expr","locations":[{"start":{"line":28,"column":9},"end":{"line":28,"column":16}},{"start":{"line":28,"column":20},"end":{"line":28,"column":27}}],"line":28},"5":{"loc":{"start":{"line":29,"column":37},"end":{"line":29,"column":62}},"type":"binary-expr","locations":[{"start":{"line":29,"column":37},"end":{"line":29,"column":45}},{"start":{"line":29,"column":49},"end":{"line":29,"column":62}}],"line":29}},"s":{"0":2,"1":2,"2":2,"3":2,"4":2,"5":2,"6":1,"7":2,"8":2},"f":{"0":2,"1":2,"2":2},"b":{"0":[2,2,2],"1":[1,1],"2":[2,2],"3":[1,1],"4":[2,2],"5":[1,1]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"f8ac4d045a53217fc85768ffa8491d76e7f0eee8"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\scrollbar\\Scrollbar.enums.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\scrollbar\\Scrollbar.enums.ts","statementMap":{},"fnMap":{},"branchMap":{},"s":{},"f":{},"b":{},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"f7f3c59ce5656d9b7faf3e9769e4f12e1c0b38e0"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\scrollbar\\Scrollbar.styled.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\scrollbar\\Scrollbar.styled.ts","statementMap":{"0":{"start":{"line":5,"column":24},"end":{"line":30,"column":1}},"1":{"start":{"line":11,"column":6},"end":{"line":13,"column":55}},"2":{"start":{"line":21,"column":8},"end":{"line":21,"column":58}},"3":{"start":{"line":26,"column":6},"end":{"line":28,"column":57}},"4":{"start":{"line":32,"column":0},"end":{"line":34,"column":2}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":10,"column":24},"end":{"line":10,"column":25}},"loc":{"start":{"line":11,"column":6},"end":{"line":13,"column":55}},"line":11},"1":{"name":"(anonymous_1)","decl":{"start":{"line":20,"column":26},"end":{"line":20,"column":27}},"loc":{"start":{"line":21,"column":8},"end":{"line":21,"column":58}},"line":21},"2":{"name":"(anonymous_2)","decl":{"start":{"line":25,"column":24},"end":{"line":25,"column":25}},"loc":{"start":{"line":26,"column":6},"end":{"line":28,"column":57}},"line":26}},"branchMap":{"0":{"loc":{"start":{"line":11,"column":6},"end":{"line":13,"column":55}},"type":"cond-expr","locations":[{"start":{"line":12,"column":10},"end":{"line":12,"column":21}},{"start":{"line":13,"column":10},"end":{"line":13,"column":55}}],"line":11},"1":{"loc":{"start":{"line":26,"column":6},"end":{"line":28,"column":57}},"type":"cond-expr","locations":[{"start":{"line":27,"column":10},"end":{"line":27,"column":21}},{"start":{"line":28,"column":10},"end":{"line":28,"column":57}}],"line":26}},"s":{"0":2,"1":2,"2":2,"3":2,"4":2},"f":{"0":2,"1":2,"2":2},"b":{"0":[0,2],"1":[0,2]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"f6a485dae1a8d4f99ce164408c08dc5ff433936e"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\scrollbar\\index.tsx": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\scrollbar\\index.tsx","statementMap":{"0":{"start":{"line":12,"column":23},"end":{"line":98,"column":1}},"1":{"start":{"line":100,"column":18},"end":{"line":243,"column":2}},"2":{"start":{"line":110,"column":6},"end":{"line":110,"column":11}},"3":{"start":{"line":112,"column":37},"end":{"line":112,"column":47}},"4":{"start":{"line":114,"column":37},"end":{"line":114,"column":69}},"5":{"start":{"line":116,"column":40},"end":{"line":116,"column":55}},"6":{"start":{"line":117,"column":40},"end":{"line":117,"column":55}},"7":{"start":{"line":118,"column":18},"end":{"line":118,"column":68}},"8":{"start":{"line":120,"column":16},"end":{"line":120,"column":44}},"9":{"start":{"line":122,"column":24},"end":{"line":122,"column":51}},"10":{"start":{"line":124,"column":20},"end":{"line":128,"column":3}},"11":{"start":{"line":125,"column":4},"end":{"line":125,"column":55}},"12":{"start":{"line":125,"column":25},"end":{"line":125,"column":55}},"13":{"start":{"line":127,"column":4},"end":{"line":127,"column":25}},"14":{"start":{"line":130,"column":20},"end":{"line":134,"column":3}},"15":{"start":{"line":131,"column":4},"end":{"line":133,"column":23}},"16":{"start":{"line":132,"column":6},"end":{"line":132,"column":28}},"17":{"start":{"line":136,"column":24},"end":{"line":136,"column":41}},"18":{"start":{"line":136,"column":30},"end":{"line":136,"column":41}},"19":{"start":{"line":138,"column":23},"end":{"line":141,"column":3}},"20":{"start":{"line":139,"column":4},"end":{"line":139,"column":28}},"21":{"start":{"line":139,"column":21},"end":{"line":139,"column":28}},"22":{"start":{"line":140,"column":4},"end":{"line":140,"column":16}},"23":{"start":{"line":143,"column":23},"end":{"line":147,"column":3}},"24":{"start":{"line":144,"column":4},"end":{"line":144,"column":16}},"25":{"start":{"line":146,"column":4},"end":{"line":146,"column":25}},"26":{"start":{"line":149,"column":23},"end":{"line":153,"column":3}},"27":{"start":{"line":150,"column":4},"end":{"line":150,"column":16}},"28":{"start":{"line":152,"column":4},"end":{"line":152,"column":26}},"29":{"start":{"line":155,"column":33},"end":{"line":157,"column":8}},"30":{"start":{"line":158,"column":33},"end":{"line":158,"column":79}},"31":{"start":{"line":159,"column":31},"end":{"line":164,"column":8}},"32":{"start":{"line":167,"column":25},"end":{"line":179,"column":3}},"33":{"start":{"line":170,"column":44},"end":{"line":170,"column":52}},"34":{"start":{"line":171,"column":4},"end":{"line":178,"column":6}},"35":{"start":{"line":181,"column":2},"end":{"line":185,"column":9}},"36":{"start":{"line":182,"column":4},"end":{"line":184,"column":6}},"37":{"start":{"line":183,"column":6},"end":{"line":183,"column":57}},"38":{"start":{"line":183,"column":27},"end":{"line":183,"column":57}},"39":{"start":{"line":187,"column":27},"end":{"line":191,"column":8}},"40":{"start":{"line":193,"column":2},"end":{"line":242,"column":4}},"41":{"start":{"line":245,"column":0},"end":{"line":245,"column":36}},"42":{"start":{"line":247,"column":0},"end":{"line":251,"column":2}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":100,"column":35},"end":{"line":100,"column":36}},"loc":{"start":{"line":100,"column":67},"end":{"line":243,"column":1}},"line":100},"1":{"name":"(anonymous_1)","decl":{"start":{"line":124,"column":20},"end":{"line":124,"column":21}},"loc":{"start":{"line":124,"column":26},"end":{"line":128,"column":3}},"line":124},"2":{"name":"(anonymous_2)","decl":{"start":{"line":130,"column":20},"end":{"line":130,"column":21}},"loc":{"start":{"line":130,"column":26},"end":{"line":134,"column":3}},"line":130},"3":{"name":"(anonymous_3)","decl":{"start":{"line":131,"column":33},"end":{"line":131,"column":34}},"loc":{"start":{"line":131,"column":39},"end":{"line":133,"column":5}},"line":131},"4":{"name":"(anonymous_4)","decl":{"start":{"line":136,"column":24},"end":{"line":136,"column":25}},"loc":{"start":{"line":136,"column":30},"end":{"line":136,"column":41}},"line":136},"5":{"name":"(anonymous_5)","decl":{"start":{"line":138,"column":23},"end":{"line":138,"column":24}},"loc":{"start":{"line":138,"column":29},"end":{"line":141,"column":3}},"line":138},"6":{"name":"(anonymous_6)","decl":{"start":{"line":143,"column":23},"end":{"line":143,"column":24}},"loc":{"start":{"line":143,"column":29},"end":{"line":147,"column":3}},"line":143},"7":{"name":"(anonymous_7)","decl":{"start":{"line":149,"column":23},"end":{"line":149,"column":24}},"loc":{"start":{"line":149,"column":29},"end":{"line":153,"column":3}},"line":149},"8":{"name":"(anonymous_8)","decl":{"start":{"line":167,"column":25},"end":{"line":167,"column":26}},"loc":{"start":{"line":169,"column":8},"end":{"line":179,"column":3}},"line":169},"9":{"name":"(anonymous_9)","decl":{"start":{"line":181,"column":12},"end":{"line":181,"column":13}},"loc":{"start":{"line":181,"column":18},"end":{"line":185,"column":3}},"line":181},"10":{"name":"(anonymous_10)","decl":{"start":{"line":182,"column":11},"end":{"line":182,"column":12}},"loc":{"start":{"line":182,"column":17},"end":{"line":184,"column":5}},"line":182}},"branchMap":{"0":{"loc":{"start":{"line":122,"column":24},"end":{"line":122,"column":51}},"type":"binary-expr","locations":[{"start":{"line":122,"column":24},"end":{"line":122,"column":45}},{"start":{"line":122,"column":49},"end":{"line":122,"column":51}}],"line":122},"1":{"loc":{"start":{"line":125,"column":4},"end":{"line":125,"column":55}},"type":"if","locations":[{"start":{"line":125,"column":4},"end":{"line":125,"column":55}},{"start":{},"end":{}}],"line":125},"2":{"loc":{"start":{"line":139,"column":4},"end":{"line":139,"column":28}},"type":"if","locations":[{"start":{"line":139,"column":4},"end":{"line":139,"column":28}},{"start":{},"end":{}}],"line":139},"3":{"loc":{"start":{"line":155,"column":33},"end":{"line":157,"column":8}},"type":"cond-expr","locations":[{"start":{"line":156,"column":6},"end":{"line":156,"column":37}},{"start":{"line":157,"column":6},"end":{"line":157,"column":8}}],"line":155},"4":{"loc":{"start":{"line":158,"column":33},"end":{"line":158,"column":79}},"type":"cond-expr","locations":[{"start":{"line":158,"column":44},"end":{"line":158,"column":74}},{"start":{"line":158,"column":77},"end":{"line":158,"column":79}}],"line":158},"5":{"loc":{"start":{"line":159,"column":31},"end":{"line":164,"column":8}},"type":"cond-expr","locations":[{"start":{"line":160,"column":6},"end":{"line":163,"column":7}},{"start":{"line":164,"column":6},"end":{"line":164,"column":8}}],"line":159},"6":{"loc":{"start":{"line":161,"column":17},"end":{"line":161,"column":37}},"type":"cond-expr","locations":[{"start":{"line":161,"column":32},"end":{"line":161,"column":33}},{"start":{"line":161,"column":36},"end":{"line":161,"column":37}}],"line":161},"7":{"loc":{"start":{"line":174,"column":19},"end":{"line":174,"column":74}},"type":"binary-expr","locations":[{"start":{"line":174,"column":19},"end":{"line":174,"column":60}},{"start":{"line":174,"column":64},"end":{"line":174,"column":74}}],"line":174},"8":{"loc":{"start":{"line":174,"column":42},"end":{"line":174,"column":59}},"type":"binary-expr","locations":[{"start":{"line":174,"column":42},"end":{"line":174,"column":53}},{"start":{"line":174,"column":57},"end":{"line":174,"column":59}}],"line":174},"9":{"loc":{"start":{"line":183,"column":6},"end":{"line":183,"column":57}},"type":"if","locations":[{"start":{"line":183,"column":6},"end":{"line":183,"column":57}},{"start":{},"end":{}}],"line":183},"10":{"loc":{"start":{"line":187,"column":27},"end":{"line":191,"column":8}},"type":"cond-expr","locations":[{"start":{"line":188,"column":6},"end":{"line":190,"column":7}},{"start":{"line":191,"column":6},"end":{"line":191,"column":8}}],"line":187},"11":{"loc":{"start":{"line":210,"column":24},"end":{"line":210,"column":63}},"type":"binary-expr","locations":[{"start":{"line":210,"column":24},"end":{"line":210,"column":30}},{"start":{"line":210,"column":35},"end":{"line":210,"column":62}}],"line":210},"12":{"loc":{"start":{"line":210,"column":35},"end":{"line":210,"column":62}},"type":"cond-expr","locations":[{"start":{"line":210,"column":48},"end":{"line":210,"column":53}},{"start":{"line":210,"column":56},"end":{"line":210,"column":62}}],"line":210},"13":{"loc":{"start":{"line":211,"column":23},"end":{"line":211,"column":61}},"type":"binary-expr","locations":[{"start":{"line":211,"column":23},"end":{"line":211,"column":28}},{"start":{"line":211,"column":33},"end":{"line":211,"column":60}}],"line":211},"14":{"loc":{"start":{"line":211,"column":33},"end":{"line":211,"column":60}},"type":"cond-expr","locations":[{"start":{"line":211,"column":46},"end":{"line":211,"column":51}},{"start":{"line":211,"column":54},"end":{"line":211,"column":60}}],"line":211},"15":{"loc":{"start":{"line":227,"column":22},"end":{"line":227,"column":41}},"type":"cond-expr","locations":[{"start":{"line":227,"column":30},"end":{"line":227,"column":35}},{"start":{"line":227,"column":38},"end":{"line":227,"column":41}}],"line":227},"16":{"loc":{"start":{"line":228,"column":23},"end":{"line":228,"column":42}},"type":"cond-expr","locations":[{"start":{"line":228,"column":31},"end":{"line":228,"column":34}},{"start":{"line":228,"column":37},"end":{"line":228,"column":42}}],"line":228}},"s":{"0":2,"1":2,"2":2,"3":2,"4":2,"5":2,"6":2,"7":2,"8":2,"9":2,"10":2,"11":0,"12":0,"13":0,"14":2,"15":0,"16":0,"17":2,"18":0,"19":2,"20":0,"21":0,"22":0,"23":2,"24":0,"25":0,"26":2,"27":0,"28":0,"29":2,"30":2,"31":2,"32":2,"33":4,"34":4,"35":2,"36":2,"37":2,"38":0,"39":2,"40":2,"41":2,"42":2},"f":{"0":2,"1":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":4,"9":2,"10":2},"b":{"0":[2,0],"1":[0,0],"2":[0,0],"3":[0,2],"4":[0,2],"5":[0,2],"6":[0,0],"7":[4,0],"8":[4,4],"9":[0,2],"10":[0,2],"11":[2,2],"12":[0,2],"13":[2,0],"14":[0,0],"15":[0,2],"16":[0,2]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"4ac80dd09c1ce55c2a91dce4162d739ad1ff5e97"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\text\\Text.styled.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\text\\Text.styled.ts","statementMap":{"0":{"start":{"line":8,"column":25},"end":{"line":21,"column":1}},"1":{"start":{"line":9,"column":28},"end":{"line":9,"column":50}},"2":{"start":{"line":11,"column":4},"end":{"line":11,"column":78}},"3":{"start":{"line":13,"column":4},"end":{"line":13,"column":62}},"4":{"start":{"line":15,"column":4},"end":{"line":20,"column":5}},"5":{"start":{"line":23,"column":17},"end":{"line":58,"column":1}},"6":{"start":{"line":24,"column":26},"end":{"line":24,"column":76}},"7":{"start":{"line":28,"column":4},"end":{"line":32,"column":37}},"8":{"start":{"line":35,"column":4},"end":{"line":38,"column":5}},"9":{"start":{"line":40,"column":4},"end":{"line":43,"column":5}},"10":{"start":{"line":45,"column":4},"end":{"line":52,"column":9}},"11":{"start":{"line":54,"column":4},"end":{"line":57,"column":5}},"12":{"start":{"line":59,"column":19},"end":{"line":65,"column":1}},"13":{"start":{"line":64,"column":15},"end":{"line":64,"column":45}},"14":{"start":{"line":67,"column":0},"end":{"line":67,"column":42}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":9,"column":17},"end":{"line":9,"column":18}},"loc":{"start":{"line":9,"column":28},"end":{"line":9,"column":50}},"line":9},"1":{"name":"(anonymous_1)","decl":{"start":{"line":10,"column":16},"end":{"line":10,"column":17}},"loc":{"start":{"line":11,"column":4},"end":{"line":11,"column":78}},"line":11},"2":{"name":"(anonymous_2)","decl":{"start":{"line":12,"column":11},"end":{"line":12,"column":12}},"loc":{"start":{"line":13,"column":4},"end":{"line":13,"column":62}},"line":13},"3":{"name":"(anonymous_3)","decl":{"start":{"line":14,"column":4},"end":{"line":14,"column":5}},"loc":{"start":{"line":15,"column":4},"end":{"line":20,"column":5}},"line":15},"4":{"name":"(anonymous_4)","decl":{"start":{"line":24,"column":15},"end":{"line":24,"column":16}},"loc":{"start":{"line":24,"column":26},"end":{"line":24,"column":76}},"line":24},"5":{"name":"(anonymous_5)","decl":{"start":{"line":27,"column":17},"end":{"line":27,"column":18}},"loc":{"start":{"line":28,"column":4},"end":{"line":32,"column":37}},"line":28},"6":{"name":"(anonymous_6)","decl":{"start":{"line":34,"column":4},"end":{"line":34,"column":5}},"loc":{"start":{"line":35,"column":4},"end":{"line":38,"column":5}},"line":35},"7":{"name":"(anonymous_7)","decl":{"start":{"line":39,"column":4},"end":{"line":39,"column":5}},"loc":{"start":{"line":40,"column":4},"end":{"line":43,"column":5}},"line":40},"8":{"name":"(anonymous_8)","decl":{"start":{"line":44,"column":4},"end":{"line":44,"column":5}},"loc":{"start":{"line":45,"column":4},"end":{"line":52,"column":9}},"line":45},"9":{"name":"(anonymous_9)","decl":{"start":{"line":53,"column":4},"end":{"line":53,"column":5}},"loc":{"start":{"line":54,"column":4},"end":{"line":57,"column":5}},"line":54},"10":{"name":"(anonymous_10)","decl":{"start":{"line":64,"column":4},"end":{"line":64,"column":5}},"loc":{"start":{"line":64,"column":15},"end":{"line":64,"column":45}},"line":64}},"branchMap":{"0":{"loc":{"start":{"line":11,"column":24},"end":{"line":11,"column":45}},"type":"binary-expr","locations":[{"start":{"line":11,"column":24},"end":{"line":11,"column":39}},{"start":{"line":11,"column":43},"end":{"line":11,"column":45}}],"line":11},"1":{"loc":{"start":{"line":13,"column":4},"end":{"line":13,"column":62}},"type":"cond-expr","locations":[{"start":{"line":13,"column":22},"end":{"line":13,"column":37}},{"start":{"line":13,"column":40},"end":{"line":13,"column":62}}],"line":13},"2":{"loc":{"start":{"line":15,"column":4},"end":{"line":20,"column":5}},"type":"binary-expr","locations":[{"start":{"line":15,"column":4},"end":{"line":15,"column":18}},{"start":{"line":16,"column":4},"end":{"line":20,"column":5}}],"line":15},"3":{"loc":{"start":{"line":28,"column":4},"end":{"line":32,"column":37}},"type":"cond-expr","locations":[{"start":{"line":29,"column":8},"end":{"line":29,"column":28}},{"start":{"line":30,"column":8},"end":{"line":32,"column":37}}],"line":28},"4":{"loc":{"start":{"line":30,"column":8},"end":{"line":32,"column":37}},"type":"cond-expr","locations":[{"start":{"line":31,"column":10},"end":{"line":31,"column":13}},{"start":{"line":32,"column":10},"end":{"line":32,"column":37}}],"line":30},"5":{"loc":{"start":{"line":35,"column":4},"end":{"line":38,"column":5}},"type":"binary-expr","locations":[{"start":{"line":35,"column":4},"end":{"line":35,"column":18}},{"start":{"line":36,"column":4},"end":{"line":38,"column":5}}],"line":35},"6":{"loc":{"start":{"line":40,"column":4},"end":{"line":43,"column":5}},"type":"binary-expr","locations":[{"start":{"line":40,"column":4},"end":{"line":40,"column":25}},{"start":{"line":41,"column":4},"end":{"line":43,"column":5}}],"line":40},"7":{"loc":{"start":{"line":45,"column":4},"end":{"line":52,"column":9}},"type":"cond-expr","locations":[{"start":{"line":46,"column":8},"end":{"line":48,"column":9}},{"start":{"line":49,"column":8},"end":{"line":52,"column":9}}],"line":45},"8":{"loc":{"start":{"line":49,"column":8},"end":{"line":52,"column":9}},"type":"binary-expr","locations":[{"start":{"line":49,"column":8},"end":{"line":49,"column":21}},{"start":{"line":50,"column":8},"end":{"line":52,"column":9}}],"line":49},"9":{"loc":{"start":{"line":54,"column":4},"end":{"line":57,"column":5}},"type":"binary-expr","locations":[{"start":{"line":54,"column":4},"end":{"line":54,"column":20}},{"start":{"line":55,"column":4},"end":{"line":57,"column":5}}],"line":54},"10":{"loc":{"start":{"line":64,"column":15},"end":{"line":64,"column":45}},"type":"binary-expr","locations":[{"start":{"line":64,"column":15},"end":{"line":64,"column":29}},{"start":{"line":64,"column":33},"end":{"line":64,"column":45}}],"line":64}},"s":{"0":4,"1":2,"2":2,"3":2,"4":2,"5":4,"6":2,"7":2,"8":2,"9":2,"10":2,"11":2,"12":4,"13":2,"14":4},"f":{"0":2,"1":2,"2":2,"3":2,"4":2,"5":2,"6":2,"7":2,"8":2,"9":2,"10":2},"b":{"0":[2,0],"1":[0,2],"2":[2,0],"3":[0,2],"4":[0,2],"5":[2,0],"6":[2,0],"7":[0,2],"8":[2,0],"9":[2,0],"10":[2,0]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"46e3eb0539f07d5ab9e3c28e1a3ad85c2d6d7d9f"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\text\\index.tsx": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\text\\index.tsx","statementMap":{"0":{"start":{"line":6,"column":17},"end":{"line":28,"column":1}},"1":{"start":{"line":16,"column":2},"end":{"line":27,"column":4}},"2":{"start":{"line":30,"column":0},"end":{"line":38,"column":2}},"3":{"start":{"line":40,"column":13},"end":{"line":40,"column":44}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":6,"column":17},"end":{"line":6,"column":18}},"loc":{"start":{"line":15,"column":17},"end":{"line":28,"column":1}},"line":15}},"branchMap":{"0":{"loc":{"start":{"line":22,"column":10},"end":{"line":22,"column":31}},"type":"cond-expr","locations":[{"start":{"line":22,"column":23},"end":{"line":22,"column":26}},{"start":{"line":22,"column":29},"end":{"line":22,"column":31}}],"line":22},"1":{"loc":{"start":{"line":22,"column":10},"end":{"line":22,"column":20}},"type":"binary-expr","locations":[{"start":{"line":22,"column":10},"end":{"line":22,"column":13}},{"start":{"line":22,"column":17},"end":{"line":22,"column":20}}],"line":22}},"s":{"0":4,"1":2,"2":4,"3":4},"f":{"0":2},"b":{"0":[1,1],"1":[2,2]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"744b2152980c697602afb2b24e02dfa7c92d146a"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\tooltip\\Tooltip.constants.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\tooltip\\Tooltip.constants.ts","statementMap":{"0":{"start":{"line":1,"column":30},"end":{"line":1,"column":31}}},"fnMap":{},"branchMap":{},"s":{"0":2},"f":{},"b":{},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"7b07e43559f9369d01306d0d75f191d39f26307a"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\tooltip\\Tooltip.styled.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\tooltip\\Tooltip.styled.ts","statementMap":{"0":{"start":{"line":5,"column":22},"end":{"line":78,"column":1}},"1":{"start":{"line":8,"column":6},"end":{"line":8,"column":59}},"2":{"start":{"line":9,"column":32},"end":{"line":9,"column":64}},"3":{"start":{"line":10,"column":37},"end":{"line":10,"column":69}},"4":{"start":{"line":11,"column":40},"end":{"line":11,"column":72}},"5":{"start":{"line":12,"column":29},"end":{"line":12,"column":58}},"6":{"start":{"line":13,"column":34},"end":{"line":13,"column":63}},"7":{"start":{"line":14,"column":37},"end":{"line":14,"column":66}},"8":{"start":{"line":15,"column":26},"end":{"line":15,"column":53}},"9":{"start":{"line":17,"column":6},"end":{"line":19,"column":9}},"10":{"start":{"line":20,"column":24},"end":{"line":20,"column":53}},"11":{"start":{"line":27,"column":26},"end":{"line":27,"column":55}},"12":{"start":{"line":31,"column":27},"end":{"line":31,"column":60}},"13":{"start":{"line":34,"column":27},"end":{"line":34,"column":59}},"14":{"start":{"line":36,"column":8},"end":{"line":36,"column":61}},"15":{"start":{"line":80,"column":0},"end":{"line":82,"column":2}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":7,"column":24},"end":{"line":7,"column":25}},"loc":{"start":{"line":8,"column":6},"end":{"line":8,"column":59}},"line":8},"1":{"name":"(anonymous_1)","decl":{"start":{"line":9,"column":21},"end":{"line":9,"column":22}},"loc":{"start":{"line":9,"column":32},"end":{"line":9,"column":64}},"line":9},"2":{"name":"(anonymous_2)","decl":{"start":{"line":10,"column":26},"end":{"line":10,"column":27}},"loc":{"start":{"line":10,"column":37},"end":{"line":10,"column":69}},"line":10},"3":{"name":"(anonymous_3)","decl":{"start":{"line":11,"column":29},"end":{"line":11,"column":30}},"loc":{"start":{"line":11,"column":40},"end":{"line":11,"column":72}},"line":11},"4":{"name":"(anonymous_4)","decl":{"start":{"line":12,"column":18},"end":{"line":12,"column":19}},"loc":{"start":{"line":12,"column":29},"end":{"line":12,"column":58}},"line":12},"5":{"name":"(anonymous_5)","decl":{"start":{"line":13,"column":23},"end":{"line":13,"column":24}},"loc":{"start":{"line":13,"column":34},"end":{"line":13,"column":63}},"line":13},"6":{"name":"(anonymous_6)","decl":{"start":{"line":14,"column":26},"end":{"line":14,"column":27}},"loc":{"start":{"line":14,"column":37},"end":{"line":14,"column":66}},"line":14},"7":{"name":"(anonymous_7)","decl":{"start":{"line":15,"column":15},"end":{"line":15,"column":16}},"loc":{"start":{"line":15,"column":26},"end":{"line":15,"column":53}},"line":15},"8":{"name":"(anonymous_8)","decl":{"start":{"line":16,"column":17},"end":{"line":16,"column":18}},"loc":{"start":{"line":17,"column":6},"end":{"line":19,"column":9}},"line":17},"9":{"name":"(anonymous_9)","decl":{"start":{"line":20,"column":13},"end":{"line":20,"column":14}},"loc":{"start":{"line":20,"column":24},"end":{"line":20,"column":53}},"line":20},"10":{"name":"(anonymous_10)","decl":{"start":{"line":27,"column":15},"end":{"line":27,"column":16}},"loc":{"start":{"line":27,"column":26},"end":{"line":27,"column":55}},"line":27},"11":{"name":"(anonymous_11)","decl":{"start":{"line":31,"column":16},"end":{"line":31,"column":17}},"loc":{"start":{"line":31,"column":27},"end":{"line":31,"column":60}},"line":31},"12":{"name":"(anonymous_12)","decl":{"start":{"line":34,"column":16},"end":{"line":34,"column":17}},"loc":{"start":{"line":34,"column":27},"end":{"line":34,"column":59}},"line":34},"13":{"name":"(anonymous_13)","decl":{"start":{"line":35,"column":26},"end":{"line":35,"column":27}},"loc":{"start":{"line":36,"column":8},"end":{"line":36,"column":61}},"line":36}},"branchMap":{"0":{"loc":{"start":{"line":8,"column":6},"end":{"line":8,"column":59}},"type":"cond-expr","locations":[{"start":{"line":8,"column":20},"end":{"line":8,"column":31}},{"start":{"line":8,"column":34},"end":{"line":8,"column":59}}],"line":8},"1":{"loc":{"start":{"line":18,"column":8},"end":{"line":18,"column":78}},"type":"cond-expr","locations":[{"start":{"line":18,"column":29},"end":{"line":18,"column":47}},{"start":{"line":18,"column":50},"end":{"line":18,"column":78}}],"line":18},"2":{"loc":{"start":{"line":36,"column":8},"end":{"line":36,"column":61}},"type":"cond-expr","locations":[{"start":{"line":36,"column":22},"end":{"line":36,"column":33}},{"start":{"line":36,"column":36},"end":{"line":36,"column":61}}],"line":36}},"s":{"0":2,"1":1,"2":1,"3":1,"4":1,"5":1,"6":1,"7":1,"8":1,"9":1,"10":1,"11":1,"12":1,"13":1,"14":1,"15":2},"f":{"0":1,"1":1,"2":1,"3":1,"4":1,"5":1,"6":1,"7":1,"8":1,"9":1,"10":1,"11":1,"12":1,"13":1},"b":{"0":[0,1],"1":[0,1],"2":[0,1]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"c92e0af1fd52d5bff10060e6284ec53d5ca30520"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\tooltip\\Tooltip.types.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\tooltip\\Tooltip.types.ts","statementMap":{},"fnMap":{},"branchMap":{},"s":{},"f":{},"b":{},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"184dbd586d61e27a8f4ea0c50bdaa0ff9ace67b6"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\tooltip\\index.tsx": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\components\\tooltip\\index.tsx","statementMap":{"0":{"start":{"line":17,"column":16},"end":{"line":98,"column":1}},"1":{"start":{"line":37,"column":28},"end":{"line":42,"column":3}},"2":{"start":{"line":44,"column":21},"end":{"line":47,"column":3}},"3":{"start":{"line":49,"column":22},"end":{"line":52,"column":3}},"4":{"start":{"line":54,"column":24},"end":{"line":93,"column":3}},"5":{"start":{"line":55,"column":4},"end":{"line":92,"column":20}},"6":{"start":{"line":95,"column":18},"end":{"line":95,"column":33}},"7":{"start":{"line":97,"column":2},"end":{"line":97,"column":38}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":17,"column":16},"end":{"line":17,"column":17}},"loc":{"start":{"line":36,"column":20},"end":{"line":98,"column":1}},"line":36},"1":{"name":"(anonymous_1)","decl":{"start":{"line":54,"column":24},"end":{"line":54,"column":25}},"loc":{"start":{"line":55,"column":4},"end":{"line":92,"column":20}},"line":55}},"branchMap":{"0":{"loc":{"start":{"line":19,"column":2},"end":{"line":19,"column":15}},"type":"default-arg","locations":[{"start":{"line":19,"column":10},"end":{"line":19,"column":15}}],"line":19},"1":{"loc":{"start":{"line":33,"column":2},"end":{"line":33,"column":16}},"type":"default-arg","locations":[{"start":{"line":33,"column":12},"end":{"line":33,"column":16}}],"line":33},"2":{"loc":{"start":{"line":82,"column":17},"end":{"line":82,"column":46}},"type":"binary-expr","locations":[{"start":{"line":82,"column":17},"end":{"line":82,"column":28}},{"start":{"line":82,"column":32},"end":{"line":82,"column":46}}],"line":82}},"s":{"0":2,"1":1,"2":1,"3":1,"4":1,"5":1,"6":1,"7":1},"f":{"0":1,"1":1},"b":{"0":[1],"1":[1],"2":[1,1]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"efbf9d9dc3dd9f986a0c0a57b386b9182c5f16b9"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\constants\\commonStyles.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\constants\\commonStyles.ts","statementMap":{"0":{"start":{"line":3,"column":21},"end":{"line":11,"column":1}}},"fnMap":{},"branchMap":{},"s":{"0":8},"f":{},"b":{},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"f70d267dba36f51beede5bdaf1b04e691727c742"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\constants\\globalColors.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\constants\\globalColors.ts","statementMap":{"0":{"start":{"line":1,"column":21},"end":{"line":62,"column":1}}},"fnMap":{},"branchMap":{},"s":{"0":8},"f":{},"b":{},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"82cb241791db38939b155a3785e7aea1b2becfda"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\constants\\index.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\constants\\index.ts","statementMap":{"0":{"start":{"line":7,"column":27},"end":{"line":19,"column":2}},"1":{"start":{"line":21,"column":24},"end":{"line":21,"column":38}},"2":{"start":{"line":23,"column":36},"end":{"line":23,"column":42}},"3":{"start":{"line":24,"column":32},"end":{"line":24,"column":35}},"4":{"start":{"line":32,"column":31},"end":{"line":36,"column":2}},"5":{"start":{"line":38,"column":25},"end":{"line":50,"column":2}}},"fnMap":{},"branchMap":{},"s":{"0":8,"1":8,"2":8,"3":8,"4":8,"5":8},"f":{},"b":{},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"671a7c4cc2bc7f31e020eec5a833117e0835f2e5"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\enums\\index.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\enums\\index.ts","statementMap":{},"fnMap":{},"branchMap":{},"s":{},"f":{},"b":{},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"e0f242ef7be47f1e9d2cb2c595d65a6ea38908cd"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\themes\\base.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\themes\\base.ts","statementMap":{"0":{"start":{"line":55,"column":4},"end":{"line":55,"column":16}},"1":{"start":{"line":57,"column":28},"end":{"line":3183,"column":1}},"2":{"start":{"line":58,"column":2},"end":{"line":3182,"column":4}},"3":{"start":{"line":3185,"column":13},"end":{"line":3185,"column":27}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":57,"column":28},"end":{"line":57,"column":29}},"loc":{"start":{"line":57,"column":34},"end":{"line":3183,"column":1}},"line":57}},"branchMap":{},"s":{"0":7,"1":7,"2":7,"3":7},"f":{"0":7},"b":{},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"69bee461cfbae778e1a56e75eabfb1cdfff91359"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\themes\\commonTheme.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\themes\\commonTheme.ts","statementMap":{"0":{"start":{"line":1,"column":27},"end":{"line":26,"column":1}},"1":{"start":{"line":6,"column":4},"end":{"line":12,"column":5}},"2":{"start":{"line":11,"column":6},"end":{"line":11,"column":26}},"3":{"start":{"line":14,"column":22},"end":{"line":14,"column":23}},"4":{"start":{"line":16,"column":4},"end":{"line":18,"column":5}},"5":{"start":{"line":17,"column":6},"end":{"line":17,"column":52}},"6":{"start":{"line":20,"column":4},"end":{"line":22,"column":5}},"7":{"start":{"line":21,"column":6},"end":{"line":21,"column":33}},"8":{"start":{"line":24,"column":4},"end":{"line":24,"column":58}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":5,"column":2},"end":{"line":5,"column":3}},"loc":{"start":{"line":5,"column":43},"end":{"line":25,"column":3}},"line":5}},"branchMap":{"0":{"loc":{"start":{"line":6,"column":4},"end":{"line":12,"column":5}},"type":"if","locations":[{"start":{"line":6,"column":4},"end":{"line":12,"column":5}},{"start":{},"end":{}}],"line":6},"1":{"loc":{"start":{"line":7,"column":6},"end":{"line":9,"column":50}},"type":"binary-expr","locations":[{"start":{"line":7,"column":6},"end":{"line":7,"column":19}},{"start":{"line":8,"column":6},"end":{"line":8,"column":28}},{"start":{"line":9,"column":7},"end":{"line":9,"column":11}},{"start":{"line":9,"column":15},"end":{"line":9,"column":49}}],"line":7},"2":{"loc":{"start":{"line":16,"column":4},"end":{"line":18,"column":5}},"type":"if","locations":[{"start":{"line":16,"column":4},"end":{"line":18,"column":5}},{"start":{},"end":{}}],"line":16},"3":{"loc":{"start":{"line":20,"column":4},"end":{"line":22,"column":5}},"type":"if","locations":[{"start":{"line":20,"column":4},"end":{"line":22,"column":5}},{"start":{},"end":{}}],"line":20}},"s":{"0":7,"1":3,"2":3,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0},"f":{"0":3},"b":{"0":[3,0],"1":[3,3,3,3],"2":[0,0],"3":[0,0]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"b15dca38e4ce2b12443a8430c97ee6c95df178a2"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\themes\\dark.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\themes\\dark.ts","statementMap":{"0":{"start":{"line":37,"column":4},"end":{"line":37,"column":16}},"1":{"start":{"line":39,"column":24},"end":{"line":3170,"column":1}}},"fnMap":{},"branchMap":{},"s":{"0":7,"1":7},"f":{},"b":{},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"e93ae603d2a386110a04ac745c7c443c9af5a2db"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\themes\\index.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\themes\\index.ts","statementMap":{},"fnMap":{},"branchMap":{},"s":{},"f":{},"b":{},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"85763e7d8f5144734e46c794487b11aede71a60b"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\array.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\array.ts","statementMap":{"0":{"start":{"line":5,"column":28},"end":{"line":7,"column":1}},"1":{"start":{"line":6,"column":2},"end":{"line":6,"column":54}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":5,"column":28},"end":{"line":5,"column":29}},"loc":{"start":{"line":5,"column":64},"end":{"line":7,"column":1}},"line":5}},"branchMap":{},"s":{"0":7,"1":0},"f":{"0":0},"b":{},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"fa3ea2a6919a73acc67d58a5edd0858eb67c5118"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\banner.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\banner.ts","statementMap":{"0":{"start":{"line":8,"column":2},"end":{"line":22,"column":3}},"1":{"start":{"line":9,"column":4},"end":{"line":9,"column":25}},"2":{"start":{"line":9,"column":14},"end":{"line":9,"column":25}},"3":{"start":{"line":11,"column":19},"end":{"line":11,"column":66}},"4":{"start":{"line":13,"column":21},"end":{"line":13,"column":35}},"5":{"start":{"line":15,"column":4},"end":{"line":17,"column":5}},"6":{"start":{"line":16,"column":6},"end":{"line":16,"column":29}},"7":{"start":{"line":19,"column":4},"end":{"line":19,"column":20}},"8":{"start":{"line":21,"column":4},"end":{"line":21,"column":15}},"9":{"start":{"line":25,"column":34},"end":{"line":94,"column":1}},"10":{"start":{"line":26,"column":14},"end":{"line":26,"column":51}},"11":{"start":{"line":27,"column":18},"end":{"line":27,"column":53}},"12":{"start":{"line":28,"column":16},"end":{"line":28,"column":64}},"13":{"start":{"line":30,"column":23},"end":{"line":34,"column":15}},"14":{"start":{"line":36,"column":27},"end":{"line":40,"column":14}},"15":{"start":{"line":42,"column":33},"end":{"line":46,"column":14}},"16":{"start":{"line":48,"column":27},"end":{"line":86,"column":3}},"17":{"start":{"line":49,"column":4},"end":{"line":49,"column":40}},"18":{"start":{"line":49,"column":33},"end":{"line":49,"column":40}},"19":{"start":{"line":51,"column":35},"end":{"line":51,"column":62}},"20":{"start":{"line":53,"column":21},"end":{"line":53,"column":72}},"21":{"start":{"line":55,"column":21},"end":{"line":57,"column":34}},"22":{"start":{"line":57,"column":21},"end":{"line":57,"column":33}},"23":{"start":{"line":59,"column":22},"end":{"line":59,"column":54}},"24":{"start":{"line":61,"column":4},"end":{"line":61,"column":27}},"25":{"start":{"line":61,"column":20},"end":{"line":61,"column":27}},"26":{"start":{"line":63,"column":19},"end":{"line":63,"column":40}},"27":{"start":{"line":65,"column":19},"end":{"line":65,"column":47}},"28":{"start":{"line":67,"column":16},"end":{"line":67,"column":61}},"29":{"start":{"line":68,"column":4},"end":{"line":70,"column":5}},"30":{"start":{"line":69,"column":6},"end":{"line":69,"column":17}},"31":{"start":{"line":71,"column":23},"end":{"line":71,"column":36}},"32":{"start":{"line":74,"column":6},"end":{"line":76,"column":14}},"33":{"start":{"line":78,"column":4},"end":{"line":83,"column":5}},"34":{"start":{"line":79,"column":6},"end":{"line":82,"column":9}},"35":{"start":{"line":80,"column":8},"end":{"line":80,"column":28}},"36":{"start":{"line":80,"column":21},"end":{"line":80,"column":28}},"37":{"start":{"line":81,"column":8},"end":{"line":81,"column":23}},"38":{"start":{"line":85,"column":4},"end":{"line":85,"column":33}},"39":{"start":{"line":88,"column":2},"end":{"line":93,"column":4}}},"fnMap":{"0":{"name":"getLanguage","decl":{"start":{"line":7,"column":16},"end":{"line":7,"column":27}},"loc":{"start":{"line":7,"column":41},"end":{"line":23,"column":1}},"line":7},"1":{"name":"(anonymous_1)","decl":{"start":{"line":25,"column":34},"end":{"line":25,"column":35}},"loc":{"start":{"line":25,"column":40},"end":{"line":94,"column":1}},"line":25},"2":{"name":"(anonymous_2)","decl":{"start":{"line":48,"column":27},"end":{"line":48,"column":28}},"loc":{"start":{"line":48,"column":39},"end":{"line":86,"column":3}},"line":48},"3":{"name":"(anonymous_3)","decl":{"start":{"line":57,"column":14},"end":{"line":57,"column":15}},"loc":{"start":{"line":57,"column":21},"end":{"line":57,"column":33}},"line":57},"4":{"name":"(anonymous_4)","decl":{"start":{"line":79,"column":32},"end":{"line":79,"column":33}},"loc":{"start":{"line":79,"column":42},"end":{"line":82,"column":7}},"line":79}},"branchMap":{"0":{"loc":{"start":{"line":9,"column":4},"end":{"line":9,"column":25}},"type":"if","locations":[{"start":{"line":9,"column":4},"end":{"line":9,"column":25}},{"start":{},"end":{}}],"line":9},"1":{"loc":{"start":{"line":11,"column":19},"end":{"line":11,"column":66}},"type":"cond-expr","locations":[{"start":{"line":11,"column":56},"end":{"line":11,"column":60}},{"start":{"line":11,"column":63},"end":{"line":11,"column":66}}],"line":11},"2":{"loc":{"start":{"line":11,"column":19},"end":{"line":11,"column":53}},"type":"binary-expr","locations":[{"start":{"line":11,"column":19},"end":{"line":11,"column":34}},{"start":{"line":11,"column":38},"end":{"line":11,"column":53}}],"line":11},"3":{"loc":{"start":{"line":15,"column":4},"end":{"line":17,"column":5}},"type":"if","locations":[{"start":{"line":15,"column":4},"end":{"line":17,"column":5}},{"start":{},"end":{}}],"line":15},"4":{"loc":{"start":{"line":15,"column":8},"end":{"line":15,"column":74}},"type":"binary-expr","locations":[{"start":{"line":15,"column":8},"end":{"line":15,"column":29}},{"start":{"line":15,"column":33},"end":{"line":15,"column":74}}],"line":15},"5":{"loc":{"start":{"line":28,"column":16},"end":{"line":28,"column":64}},"type":"cond-expr","locations":[{"start":{"line":28,"column":26},"end":{"line":28,"column":57}},{"start":{"line":28,"column":60},"end":{"line":28,"column":64}}],"line":28},"6":{"loc":{"start":{"line":30,"column":23},"end":{"line":34,"column":15}},"type":"cond-expr","locations":[{"start":{"line":31,"column":6},"end":{"line":31,"column":14}},{"start":{"line":32,"column":6},"end":{"line":34,"column":15}}],"line":30},"7":{"loc":{"start":{"line":32,"column":6},"end":{"line":34,"column":15}},"type":"cond-expr","locations":[{"start":{"line":33,"column":8},"end":{"line":33,"column":25}},{"start":{"line":34,"column":8},"end":{"line":34,"column":15}}],"line":32},"8":{"loc":{"start":{"line":32,"column":6},"end":{"line":32,"column":30}},"type":"binary-expr","locations":[{"start":{"line":32,"column":6},"end":{"line":32,"column":13}},{"start":{"line":32,"column":17},"end":{"line":32,"column":30}}],"line":32},"9":{"loc":{"start":{"line":36,"column":27},"end":{"line":40,"column":14}},"type":"cond-expr","locations":[{"start":{"line":37,"column":6},"end":{"line":37,"column":13}},{"start":{"line":38,"column":6},"end":{"line":40,"column":14}}],"line":36},"10":{"loc":{"start":{"line":38,"column":6},"end":{"line":40,"column":14}},"type":"cond-expr","locations":[{"start":{"line":39,"column":8},"end":{"line":39,"column":32}},{"start":{"line":40,"column":8},"end":{"line":40,"column":14}}],"line":38},"11":{"loc":{"start":{"line":42,"column":33},"end":{"line":46,"column":14}},"type":"cond-expr","locations":[{"start":{"line":43,"column":6},"end":{"line":43,"column":13}},{"start":{"line":44,"column":6},"end":{"line":46,"column":14}}],"line":42},"12":{"loc":{"start":{"line":44,"column":6},"end":{"line":46,"column":14}},"type":"cond-expr","locations":[{"start":{"line":45,"column":8},"end":{"line":45,"column":32}},{"start":{"line":46,"column":8},"end":{"line":46,"column":14}}],"line":44},"13":{"loc":{"start":{"line":49,"column":4},"end":{"line":49,"column":40}},"type":"if","locations":[{"start":{"line":49,"column":4},"end":{"line":49,"column":40}},{"start":{},"end":{}}],"line":49},"14":{"loc":{"start":{"line":51,"column":35},"end":{"line":51,"column":62}},"type":"binary-expr","locations":[{"start":{"line":51,"column":35},"end":{"line":51,"column":54}},{"start":{"line":51,"column":58},"end":{"line":51,"column":62}}],"line":51},"15":{"loc":{"start":{"line":53,"column":33},"end":{"line":53,"column":71}},"type":"cond-expr","locations":[{"start":{"line":53,"column":59},"end":{"line":53,"column":65}},{"start":{"line":53,"column":68},"end":{"line":53,"column":71}}],"line":53},"16":{"loc":{"start":{"line":55,"column":22},"end":{"line":55,"column":55}},"type":"binary-expr","locations":[{"start":{"line":55,"column":22},"end":{"line":55,"column":49}},{"start":{"line":55,"column":53},"end":{"line":55,"column":55}}],"line":55},"17":{"loc":{"start":{"line":61,"column":4},"end":{"line":61,"column":27}},"type":"if","locations":[{"start":{"line":61,"column":4},"end":{"line":61,"column":27}},{"start":{},"end":{}}],"line":61},"18":{"loc":{"start":{"line":67,"column":23},"end":{"line":67,"column":60}},"type":"binary-expr","locations":[{"start":{"line":67,"column":23},"end":{"line":67,"column":55}},{"start":{"line":67,"column":59},"end":{"line":67,"column":60}}],"line":67},"19":{"loc":{"start":{"line":68,"column":4},"end":{"line":70,"column":5}},"type":"if","locations":[{"start":{"line":68,"column":4},"end":{"line":70,"column":5}},{"start":{},"end":{}}],"line":68},"20":{"loc":{"start":{"line":74,"column":6},"end":{"line":76,"column":14}},"type":"cond-expr","locations":[{"start":{"line":75,"column":10},"end":{"line":75,"column":99}},{"start":{"line":76,"column":10},"end":{"line":76,"column":14}}],"line":74},"21":{"loc":{"start":{"line":74,"column":6},"end":{"line":74,"column":59}},"type":"binary-expr","locations":[{"start":{"line":74,"column":6},"end":{"line":74,"column":16}},{"start":{"line":74,"column":20},"end":{"line":74,"column":59}}],"line":74},"22":{"loc":{"start":{"line":78,"column":4},"end":{"line":83,"column":5}},"type":"if","locations":[{"start":{"line":78,"column":4},"end":{"line":83,"column":5}},{"start":{},"end":{}}],"line":78},"23":{"loc":{"start":{"line":80,"column":8},"end":{"line":80,"column":28}},"type":"if","locations":[{"start":{"line":80,"column":8},"end":{"line":80,"column":28}},{"start":{},"end":{}}],"line":80}},"s":{"0":0,"1":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":7,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0},"f":{"0":0,"1":0,"2":0,"3":0,"4":0},"b":{"0":[0,0],"1":[0,0],"2":[0,0],"3":[0,0],"4":[0,0],"5":[0,0],"6":[0,0],"7":[0,0],"8":[0,0],"9":[0,0],"10":[0,0],"11":[0,0],"12":[0,0],"13":[0,0],"14":[0,0],"15":[0,0],"16":[0,0],"17":[0,0],"18":[0,0],"19":[0,0],"20":[0,0],"21":[0,0],"22":[0,0],"23":[0,0]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"6b6ad62cec8febe33f43d70244340a2a05e312b3"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\classNames.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\classNames.ts","statementMap":{"0":{"start":{"line":2,"column":2},"end":{"line":27,"column":3}},"1":{"start":{"line":3,"column":39},"end":{"line":3,"column":41}},"2":{"start":{"line":5,"column":4},"end":{"line":24,"column":5}},"3":{"start":{"line":5,"column":17},"end":{"line":5,"column":18}},"4":{"start":{"line":6,"column":24},"end":{"line":6,"column":31}},"5":{"start":{"line":8,"column":6},"end":{"line":23,"column":7}},"6":{"start":{"line":9,"column":8},"end":{"line":11,"column":9}},"7":{"start":{"line":10,"column":10},"end":{"line":10,"column":34}},"8":{"start":{"line":12,"column":8},"end":{"line":22,"column":9}},"9":{"start":{"line":13,"column":29},"end":{"line":17,"column":15}},"10":{"start":{"line":16,"column":16},"end":{"line":16,"column":34}},"11":{"start":{"line":19,"column":10},"end":{"line":21,"column":22}},"12":{"start":{"line":20,"column":54},"end":{"line":20,"column":57}},"13":{"start":{"line":26,"column":4},"end":{"line":26,"column":29}},"14":{"start":{"line":29,"column":2},"end":{"line":29,"column":14}}},"fnMap":{"0":{"name":"classNames","decl":{"start":{"line":1,"column":16},"end":{"line":1,"column":26}},"loc":{"start":{"line":1,"column":64},"end":{"line":30,"column":1}},"line":1},"1":{"name":"(anonymous_1)","decl":{"start":{"line":15,"column":44},"end":{"line":15,"column":45}},"loc":{"start":{"line":16,"column":16},"end":{"line":16,"column":34}},"line":16},"2":{"name":"(anonymous_2)","decl":{"start":{"line":20,"column":47},"end":{"line":20,"column":48}},"loc":{"start":{"line":20,"column":54},"end":{"line":20,"column":57}},"line":20}},"branchMap":{"0":{"loc":{"start":{"line":2,"column":2},"end":{"line":27,"column":3}},"type":"if","locations":[{"start":{"line":2,"column":2},"end":{"line":27,"column":3}},{"start":{},"end":{}}],"line":2},"1":{"loc":{"start":{"line":8,"column":6},"end":{"line":23,"column":7}},"type":"if","locations":[{"start":{"line":8,"column":6},"end":{"line":23,"column":7}},{"start":{},"end":{}}],"line":8},"2":{"loc":{"start":{"line":9,"column":8},"end":{"line":11,"column":9}},"type":"if","locations":[{"start":{"line":9,"column":8},"end":{"line":11,"column":9}},{"start":{},"end":{}}],"line":9},"3":{"loc":{"start":{"line":9,"column":12},"end":{"line":9,"column":74}},"type":"binary-expr","locations":[{"start":{"line":9,"column":12},"end":{"line":9,"column":41}},{"start":{"line":9,"column":45},"end":{"line":9,"column":74}}],"line":9},"4":{"loc":{"start":{"line":12,"column":8},"end":{"line":22,"column":9}},"type":"if","locations":[{"start":{"line":12,"column":8},"end":{"line":22,"column":9}},{"start":{},"end":{}}],"line":12},"5":{"loc":{"start":{"line":13,"column":29},"end":{"line":17,"column":15}},"type":"cond-expr","locations":[{"start":{"line":14,"column":14},"end":{"line":14,"column":23}},{"start":{"line":15,"column":14},"end":{"line":17,"column":15}}],"line":13},"6":{"loc":{"start":{"line":16,"column":16},"end":{"line":16,"column":34}},"type":"cond-expr","locations":[{"start":{"line":16,"column":24},"end":{"line":16,"column":27}},{"start":{"line":16,"column":30},"end":{"line":16,"column":34}}],"line":16},"7":{"loc":{"start":{"line":19,"column":20},"end":{"line":21,"column":21}},"type":"cond-expr","locations":[{"start":{"line":20,"column":14},"end":{"line":20,"column":59}},{"start":{"line":21,"column":14},"end":{"line":21,"column":21}}],"line":19}},"s":{"0":4,"1":4,"2":4,"3":4,"4":8,"5":8,"6":4,"7":4,"8":4,"9":0,"10":0,"11":0,"12":0,"13":4,"14":0},"f":{"0":4,"1":0,"2":0},"b":{"0":[4,0],"1":[4,4],"2":[4,0],"3":[4,0],"4":[0,4],"5":[0,0],"6":[0,0],"7":[0,0]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"ab0b858fc67ff45c524e994b01fffb0eab43af1d"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\common-icons-style.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\common-icons-style.ts","statementMap":{"0":{"start":{"line":19,"column":21},"end":{"line":70,"column":1}},"1":{"start":{"line":20,"column":2},"end":{"line":69,"column":3}},"2":{"start":{"line":22,"column":6},"end":{"line":27,"column":10}},"3":{"start":{"line":29,"column":6},"end":{"line":38,"column":6}},"4":{"start":{"line":40,"column":6},"end":{"line":49,"column":6}},"5":{"start":{"line":51,"column":6},"end":{"line":60,"column":6}},"6":{"start":{"line":63,"column":6},"end":{"line":68,"column":10}},"7":{"start":{"line":72,"column":26},"end":{"line":76,"column":1}},"8":{"start":{"line":75,"column":15},"end":{"line":75,"column":39}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":19,"column":21},"end":{"line":19,"column":22}},"loc":{"start":{"line":19,"column":45},"end":{"line":70,"column":1}},"line":19},"1":{"name":"(anonymous_1)","decl":{"start":{"line":75,"column":4},"end":{"line":75,"column":5}},"loc":{"start":{"line":75,"column":15},"end":{"line":75,"column":39}},"line":75}},"branchMap":{"0":{"loc":{"start":{"line":20,"column":2},"end":{"line":69,"column":3}},"type":"switch","locations":[{"start":{"line":21,"column":4},"end":{"line":27,"column":10}},{"start":{"line":28,"column":4},"end":{"line":38,"column":6}},{"start":{"line":39,"column":4},"end":{"line":49,"column":6}},{"start":{"line":50,"column":4},"end":{"line":60,"column":6}},{"start":{"line":61,"column":4},"end":{"line":61,"column":26}},{"start":{"line":62,"column":4},"end":{"line":68,"column":10}}],"line":20}},"s":{"0":7,"1":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":7,"8":0},"f":{"0":0,"1":0},"b":{"0":[0,0,0,0,0,0]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"8293ebf2bb1c60b63985ca867c840206f69ddffc"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\context.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\context.ts","statementMap":{"0":{"start":{"line":3,"column":21},"end":{"line":3,"column":23}},"1":{"start":{"line":5,"column":23},"end":{"line":5,"column":56}},"2":{"start":{"line":7,"column":38},"end":{"line":7,"column":45}}},"fnMap":{},"branchMap":{},"s":{"0":7,"1":7,"2":7},"f":{},"b":{},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"8397fe1844af10c767f14c29569f97b5c4fe1d5a"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\cookie.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\cookie.ts","statementMap":{"0":{"start":{"line":4,"column":18},"end":{"line":10,"column":3}},"1":{"start":{"line":11,"column":2},"end":{"line":11,"column":62}}},"fnMap":{"0":{"name":"getCookie","decl":{"start":{"line":3,"column":16},"end":{"line":3,"column":25}},"loc":{"start":{"line":3,"column":40},"end":{"line":12,"column":1}},"line":3}},"branchMap":{"0":{"loc":{"start":{"line":11,"column":9},"end":{"line":11,"column":61}},"type":"cond-expr","locations":[{"start":{"line":11,"column":19},"end":{"line":11,"column":49}},{"start":{"line":11,"column":52},"end":{"line":11,"column":61}}],"line":11}},"s":{"0":0,"1":0},"f":{"0":0},"b":{"0":[0,0]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"b7bfe5f384a45ea30b5a391ff0d02ccdeb1998c6"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\device.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\device.ts","statementMap":{"0":{"start":{"line":4,"column":2},"end":{"line":4,"column":39}},"1":{"start":{"line":7,"column":20},"end":{"line":11,"column":1}},"2":{"start":{"line":13,"column":22},"end":{"line":13,"column":53}},"3":{"start":{"line":15,"column":26},"end":{"line":15,"column":57}},"4":{"start":{"line":17,"column":22},"end":{"line":17,"column":60}},"5":{"start":{"line":19,"column":23},"end":{"line":19,"column":55}},"6":{"start":{"line":21,"column":38},"end":{"line":23,"column":5}},"7":{"start":{"line":25,"column":24},"end":{"line":27,"column":1}},"8":{"start":{"line":26,"column":2},"end":{"line":26,"column":42}},"9":{"start":{"line":29,"column":24},"end":{"line":32,"column":1}},"10":{"start":{"line":30,"column":21},"end":{"line":30,"column":47}},"11":{"start":{"line":31,"column":2},"end":{"line":31,"column":63}},"12":{"start":{"line":34,"column":25},"end":{"line":39,"column":1}},"13":{"start":{"line":35,"column":2},"end":{"line":37,"column":3}},"14":{"start":{"line":36,"column":4},"end":{"line":36,"column":45}},"15":{"start":{"line":38,"column":2},"end":{"line":38,"column":15}},"16":{"start":{"line":41,"column":29},"end":{"line":45,"column":1}}},"fnMap":{"0":{"name":"checkIsSSR","decl":{"start":{"line":3,"column":16},"end":{"line":3,"column":26}},"loc":{"start":{"line":3,"column":29},"end":{"line":5,"column":1}},"line":3},"1":{"name":"(anonymous_1)","decl":{"start":{"line":25,"column":24},"end":{"line":25,"column":25}},"loc":{"start":{"line":25,"column":30},"end":{"line":27,"column":1}},"line":25},"2":{"name":"(anonymous_2)","decl":{"start":{"line":29,"column":24},"end":{"line":29,"column":25}},"loc":{"start":{"line":29,"column":47},"end":{"line":32,"column":1}},"line":29},"3":{"name":"(anonymous_3)","decl":{"start":{"line":34,"column":25},"end":{"line":34,"column":26}},"loc":{"start":{"line":34,"column":31},"end":{"line":39,"column":1}},"line":34}},"branchMap":{"0":{"loc":{"start":{"line":29,"column":25},"end":{"line":29,"column":42}},"type":"default-arg","locations":[{"start":{"line":29,"column":33},"end":{"line":29,"column":42}}],"line":29},"1":{"loc":{"start":{"line":30,"column":21},"end":{"line":30,"column":47}},"type":"binary-expr","locations":[{"start":{"line":30,"column":21},"end":{"line":30,"column":26}},{"start":{"line":30,"column":30},"end":{"line":30,"column":47}}],"line":30},"2":{"loc":{"start":{"line":31,"column":9},"end":{"line":31,"column":62}},"type":"binary-expr","locations":[{"start":{"line":31,"column":9},"end":{"line":31,"column":33}},{"start":{"line":31,"column":37},"end":{"line":31,"column":62}}],"line":31},"3":{"loc":{"start":{"line":35,"column":2},"end":{"line":37,"column":3}},"type":"if","locations":[{"start":{"line":35,"column":2},"end":{"line":37,"column":3}},{"start":{},"end":{}}],"line":35},"4":{"loc":{"start":{"line":42,"column":2},"end":{"line":44,"column":60}},"type":"binary-expr","locations":[{"start":{"line":42,"column":2},"end":{"line":42,"column":31}},{"start":{"line":43,"column":2},"end":{"line":43,"column":34}},{"start":{"line":44,"column":3},"end":{"line":44,"column":27}},{"start":{"line":44,"column":31},"end":{"line":44,"column":59}}],"line":42}},"s":{"0":0,"1":7,"2":7,"3":7,"4":7,"5":7,"6":7,"7":7,"8":2,"9":7,"10":0,"11":0,"12":7,"13":0,"14":0,"15":0,"16":7},"f":{"0":0,"1":2,"2":0,"3":0},"b":{"0":[0],"1":[0,0],"2":[0,0],"3":[0,0],"4":[7,7,7,7]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"0730d6dc11f71a72a4629ee88bba0f4f84aee76c"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\domHelpers.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\domHelpers.ts","statementMap":{"0":{"start":{"line":2,"column":51},"end":{"line":2,"column":55}},"1":{"start":{"line":7,"column":16},"end":{"line":7,"column":22}},"2":{"start":{"line":8,"column":14},"end":{"line":8,"column":22}},"3":{"start":{"line":9,"column":14},"end":{"line":9,"column":31}},"4":{"start":{"line":10,"column":14},"end":{"line":10,"column":47}},"5":{"start":{"line":11,"column":14},"end":{"line":11,"column":62}},"6":{"start":{"line":12,"column":14},"end":{"line":12,"column":65}},"7":{"start":{"line":14,"column":4},"end":{"line":14,"column":35}},"8":{"start":{"line":18,"column":4},"end":{"line":35,"column":5}},"9":{"start":{"line":19,"column":19},"end":{"line":19,"column":45}},"10":{"start":{"line":21,"column":6},"end":{"line":34,"column":8}},"11":{"start":{"line":37,"column":4},"end":{"line":40,"column":6}},"12":{"start":{"line":44,"column":4},"end":{"line":53,"column":5}},"13":{"start":{"line":45,"column":18},"end":{"line":45,"column":32}},"14":{"start":{"line":47,"column":6},"end":{"line":50,"column":7}},"15":{"start":{"line":48,"column":22},"end":{"line":48,"column":42}},"16":{"start":{"line":49,"column":8},"end":{"line":49,"column":78}},"17":{"start":{"line":52,"column":6},"end":{"line":52,"column":19}},"18":{"start":{"line":54,"column":4},"end":{"line":54,"column":13}},"19":{"start":{"line":58,"column":4},"end":{"line":66,"column":5}},"20":{"start":{"line":59,"column":6},"end":{"line":59,"column":42}},"21":{"start":{"line":60,"column":6},"end":{"line":60,"column":38}},"22":{"start":{"line":61,"column":27},"end":{"line":61,"column":46}},"23":{"start":{"line":62,"column":6},"end":{"line":62,"column":37}},"24":{"start":{"line":63,"column":6},"end":{"line":63,"column":43}},"25":{"start":{"line":65,"column":6},"end":{"line":65,"column":26}},"26":{"start":{"line":67,"column":4},"end":{"line":67,"column":13}},"27":{"start":{"line":71,"column":4},"end":{"line":79,"column":5}},"28":{"start":{"line":72,"column":6},"end":{"line":72,"column":42}},"29":{"start":{"line":73,"column":6},"end":{"line":73,"column":38}},"30":{"start":{"line":74,"column":28},"end":{"line":74,"column":48}},"31":{"start":{"line":75,"column":6},"end":{"line":75,"column":37}},"32":{"start":{"line":76,"column":6},"end":{"line":76,"column":43}},"33":{"start":{"line":78,"column":6},"end":{"line":78,"column":27}},"34":{"start":{"line":80,"column":4},"end":{"line":80,"column":13}},"35":{"start":{"line":84,"column":4},"end":{"line":92,"column":5}},"36":{"start":{"line":85,"column":20},"end":{"line":85,"column":40}},"37":{"start":{"line":86,"column":6},"end":{"line":91,"column":8}},"38":{"start":{"line":93,"column":4},"end":{"line":94,"column":43}},"39":{"start":{"line":94,"column":6},"end":{"line":94,"column":43}},"40":{"start":{"line":96,"column":22},"end":{"line":96,"column":51}},"41":{"start":{"line":97,"column":4},"end":{"line":97,"column":48}},"42":{"start":{"line":98,"column":4},"end":{"line":98,"column":41}},"43":{"start":{"line":100,"column":27},"end":{"line":100,"column":72}},"44":{"start":{"line":101,"column":4},"end":{"line":101,"column":41}},"45":{"start":{"line":103,"column":4},"end":{"line":103,"column":51}},"46":{"start":{"line":105,"column":4},"end":{"line":105,"column":26}},"47":{"start":{"line":109,"column":4},"end":{"line":109,"column":38}},"48":{"start":{"line":111,"column":4},"end":{"line":111,"column":21}},"49":{"start":{"line":113,"column":4},"end":{"line":113,"column":23}},"50":{"start":{"line":117,"column":4},"end":{"line":117,"column":62}},"51":{"start":{"line":121,"column":4},"end":{"line":121,"column":23}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":6,"column":2},"end":{"line":6,"column":3}},"loc":{"start":{"line":6,"column":23},"end":{"line":15,"column":3}},"line":6},"1":{"name":"(anonymous_1)","decl":{"start":{"line":17,"column":2},"end":{"line":17,"column":3}},"loc":{"start":{"line":17,"column":36},"end":{"line":41,"column":3}},"line":17},"2":{"name":"(anonymous_2)","decl":{"start":{"line":43,"column":2},"end":{"line":43,"column":3}},"loc":{"start":{"line":43,"column":56},"end":{"line":55,"column":3}},"line":43},"3":{"name":"(anonymous_3)","decl":{"start":{"line":57,"column":2},"end":{"line":57,"column":3}},"loc":{"start":{"line":57,"column":58},"end":{"line":68,"column":3}},"line":57},"4":{"name":"(anonymous_4)","decl":{"start":{"line":70,"column":2},"end":{"line":70,"column":3}},"loc":{"start":{"line":70,"column":59},"end":{"line":81,"column":3}},"line":70},"5":{"name":"(anonymous_5)","decl":{"start":{"line":83,"column":2},"end":{"line":83,"column":3}},"loc":{"start":{"line":83,"column":50},"end":{"line":106,"column":3}},"line":83},"6":{"name":"(anonymous_6)","decl":{"start":{"line":108,"column":2},"end":{"line":108,"column":3}},"loc":{"start":{"line":108,"column":26},"end":{"line":114,"column":3}},"line":108},"7":{"name":"(anonymous_7)","decl":{"start":{"line":116,"column":2},"end":{"line":116,"column":3}},"loc":{"start":{"line":116,"column":24},"end":{"line":118,"column":3}},"line":116},"8":{"name":"(anonymous_8)","decl":{"start":{"line":120,"column":2},"end":{"line":120,"column":3}},"loc":{"start":{"line":120,"column":28},"end":{"line":122,"column":3}},"line":120}},"branchMap":{"0":{"loc":{"start":{"line":11,"column":14},"end":{"line":11,"column":62}},"type":"binary-expr","locations":[{"start":{"line":11,"column":14},"end":{"line":11,"column":28}},{"start":{"line":11,"column":32},"end":{"line":11,"column":45}},{"start":{"line":11,"column":49},"end":{"line":11,"column":62}}],"line":11},"1":{"loc":{"start":{"line":12,"column":14},"end":{"line":12,"column":65}},"type":"binary-expr","locations":[{"start":{"line":12,"column":14},"end":{"line":12,"column":29}},{"start":{"line":12,"column":33},"end":{"line":12,"column":47}},{"start":{"line":12,"column":51},"end":{"line":12,"column":65}}],"line":12},"2":{"loc":{"start":{"line":18,"column":4},"end":{"line":35,"column":5}},"type":"if","locations":[{"start":{"line":18,"column":4},"end":{"line":35,"column":5}},{"start":{},"end":{}}],"line":18},"3":{"loc":{"start":{"line":24,"column":11},"end":{"line":27,"column":13}},"type":"binary-expr","locations":[{"start":{"line":24,"column":11},"end":{"line":24,"column":29}},{"start":{"line":25,"column":12},"end":{"line":25,"column":46}},{"start":{"line":26,"column":12},"end":{"line":26,"column":35}},{"start":{"line":27,"column":12},"end":{"line":27,"column":13}}],"line":24},"4":{"loc":{"start":{"line":30,"column":11},"end":{"line":33,"column":13}},"type":"binary-expr","locations":[{"start":{"line":30,"column":11},"end":{"line":30,"column":29}},{"start":{"line":31,"column":12},"end":{"line":31,"column":47}},{"start":{"line":32,"column":12},"end":{"line":32,"column":36}},{"start":{"line":33,"column":12},"end":{"line":33,"column":13}}],"line":30},"5":{"loc":{"start":{"line":44,"column":4},"end":{"line":53,"column":5}},"type":"if","locations":[{"start":{"line":44,"column":4},"end":{"line":53,"column":5}},{"start":{},"end":{}}],"line":44},"6":{"loc":{"start":{"line":47,"column":6},"end":{"line":50,"column":7}},"type":"if","locations":[{"start":{"line":47,"column":6},"end":{"line":50,"column":7}},{"start":{},"end":{}}],"line":47},"7":{"loc":{"start":{"line":58,"column":4},"end":{"line":66,"column":5}},"type":"if","locations":[{"start":{"line":58,"column":4},"end":{"line":66,"column":5}},{"start":{},"end":{}}],"line":58},"8":{"loc":{"start":{"line":71,"column":4},"end":{"line":79,"column":5}},"type":"if","locations":[{"start":{"line":71,"column":4},"end":{"line":79,"column":5}},{"start":{},"end":{}}],"line":71},"9":{"loc":{"start":{"line":84,"column":4},"end":{"line":92,"column":5}},"type":"if","locations":[{"start":{"line":84,"column":4},"end":{"line":92,"column":5}},{"start":{},"end":{}}],"line":84},"10":{"loc":{"start":{"line":93,"column":4},"end":{"line":94,"column":43}},"type":"if","locations":[{"start":{"line":93,"column":4},"end":{"line":94,"column":43}},{"start":{},"end":{}}],"line":93},"11":{"loc":{"start":{"line":109,"column":18},"end":{"line":109,"column":37}},"type":"binary-expr","locations":[{"start":{"line":109,"column":18},"end":{"line":109,"column":29}},{"start":{"line":109,"column":33},"end":{"line":109,"column":37}}],"line":109},"12":{"loc":{"start":{"line":117,"column":18},"end":{"line":117,"column":61}},"type":"cond-expr","locations":[{"start":{"line":117,"column":39},"end":{"line":117,"column":54}},{"start":{"line":117,"column":57},"end":{"line":117,"column":61}}],"line":117}},"s":{"0":7,"1":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0},"f":{"0":0,"1":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0},"b":{"0":[0,0,0],"1":[0,0,0],"2":[0,0],"3":[0,0,0,0],"4":[0,0,0,0],"5":[0,0],"6":[0,0],"7":[0,0],"8":[0,0],"9":[0,0],"10":[0,0],"11":[0,0],"12":[0,0]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"ea16026b70d5947e1d02a6ff88d58f7e50fa6878"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\event.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\event.ts","statementMap":{"0":{"start":{"line":1,"column":30},"end":{"line":10,"column":1}},"1":{"start":{"line":5,"column":2},"end":{"line":9,"column":3}},"2":{"start":{"line":6,"column":4},"end":{"line":6,"column":48}},"3":{"start":{"line":8,"column":4},"end":{"line":8,"column":51}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":1,"column":30},"end":{"line":1,"column":31}},"loc":{"start":{"line":4,"column":5},"end":{"line":10,"column":1}},"line":4}},"branchMap":{"0":{"loc":{"start":{"line":5,"column":2},"end":{"line":9,"column":3}},"type":"if","locations":[{"start":{"line":5,"column":2},"end":{"line":9,"column":3}},{"start":{"line":7,"column":9},"end":{"line":9,"column":3}}],"line":5}},"s":{"0":7,"1":0,"2":0,"3":0},"f":{"0":0},"b":{"0":[0,0]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"ce374a2bd07ff41b7efbb57fc0f28b9795db03ce"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\getCorrectDate.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\getCorrectDate.ts","statementMap":{"0":{"start":{"line":4,"column":2},"end":{"line":4,"column":67}},"1":{"start":{"line":4,"column":56},"end":{"line":4,"column":67}},"2":{"start":{"line":6,"column":18},"end":{"line":6,"column":57}},"3":{"start":{"line":7,"column":18},"end":{"line":7,"column":58}},"4":{"start":{"line":9,"column":22},"end":{"line":9,"column":45}},"5":{"start":{"line":11,"column":2},"end":{"line":11,"column":21}}},"fnMap":{"0":{"name":"getCorrectDate","decl":{"start":{"line":3,"column":24},"end":{"line":3,"column":38}},"loc":{"start":{"line":3,"column":69},"end":{"line":12,"column":1}},"line":3}},"branchMap":{"0":{"loc":{"start":{"line":4,"column":2},"end":{"line":4,"column":67}},"type":"if","locations":[{"start":{"line":4,"column":2},"end":{"line":4,"column":67}},{"start":{},"end":{}}],"line":4},"1":{"loc":{"start":{"line":4,"column":6},"end":{"line":4,"column":54}},"type":"binary-expr","locations":[{"start":{"line":4,"column":6},"end":{"line":4,"column":11}},{"start":{"line":4,"column":15},"end":{"line":4,"column":54}}],"line":4}},"s":{"0":0,"1":0,"2":0,"3":0,"4":0,"5":0},"f":{"0":0},"b":{"0":[0,0],"1":[0,0]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"a15d8d584918720355b4ffcc6d0be2d928167519"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\index.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\index.ts","statementMap":{"0":{"start":{"line":69,"column":28},"end":{"line":71,"column":1}},"1":{"start":{"line":70,"column":2},"end":{"line":70,"column":62}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":69,"column":28},"end":{"line":69,"column":29}},"loc":{"start":{"line":69,"column":34},"end":{"line":71,"column":1}},"line":69}},"branchMap":{"0":{"loc":{"start":{"line":70,"column":9},"end":{"line":70,"column":61}},"type":"cond-expr","locations":[{"start":{"line":70,"column":44},"end":{"line":70,"column":51}},{"start":{"line":70,"column":54},"end":{"line":70,"column":61}}],"line":70}},"s":{"0":7,"1":0},"f":{"0":0},"b":{"0":[0,0]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"4ab5ee095f1b5c2ce4b81acbeca763dd3577d1ad"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\objectUtils.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\objectUtils.ts","statementMap":{"0":{"start":{"line":4,"column":4},"end":{"line":4,"column":55}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":2,"column":2},"end":{"line":2,"column":3}},"loc":{"start":{"line":2,"column":59},"end":{"line":5,"column":3}},"line":2}},"branchMap":{"0":{"loc":{"start":{"line":4,"column":11},"end":{"line":4,"column":54}},"type":"cond-expr","locations":[{"start":{"line":4,"column":34},"end":{"line":4,"column":48}},{"start":{"line":4,"column":51},"end":{"line":4,"column":54}}],"line":4}},"s":{"0":0},"f":{"0":0},"b":{"0":[0,0]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"4ecb5582bc3339eadaaa762a8d739b92e2b872eb"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\rtlUtils.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\rtlUtils.ts","statementMap":{"0":{"start":{"line":4,"column":35},"end":{"line":20,"column":1}},"1":{"start":{"line":8,"column":2},"end":{"line":8,"column":80}},"2":{"start":{"line":8,"column":25},"end":{"line":8,"column":80}},"3":{"start":{"line":10,"column":2},"end":{"line":10,"column":60}},"4":{"start":{"line":10,"column":36},"end":{"line":10,"column":60}},"5":{"start":{"line":12,"column":2},"end":{"line":19,"column":3}},"6":{"start":{"line":14,"column":6},"end":{"line":14,"column":21}},"7":{"start":{"line":16,"column":6},"end":{"line":16,"column":20}},"8":{"start":{"line":18,"column":6},"end":{"line":18,"column":30}},"9":{"start":{"line":24,"column":41},"end":{"line":40,"column":1}},"10":{"start":{"line":28,"column":2},"end":{"line":28,"column":52}},"11":{"start":{"line":28,"column":36},"end":{"line":28,"column":52}},"12":{"start":{"line":30,"column":19},"end":{"line":30,"column":38}},"13":{"start":{"line":31,"column":2},"end":{"line":31,"column":45}},"14":{"start":{"line":31,"column":29},"end":{"line":31,"column":45}},"15":{"start":{"line":33,"column":26},"end":{"line":33,"column":37}},"16":{"start":{"line":34,"column":25},"end":{"line":34,"column":36}},"17":{"start":{"line":36,"column":2},"end":{"line":36,"column":31}},"18":{"start":{"line":37,"column":2},"end":{"line":37,"column":32}},"19":{"start":{"line":39,"column":2},"end":{"line":39,"column":28}},"20":{"start":{"line":43,"column":38},"end":{"line":76,"column":1}},"21":{"start":{"line":47,"column":2},"end":{"line":47,"column":59}},"22":{"start":{"line":47,"column":36},"end":{"line":47,"column":59}},"23":{"start":{"line":49,"column":26},"end":{"line":49,"column":52}},"24":{"start":{"line":51,"column":2},"end":{"line":73,"column":3}},"25":{"start":{"line":54,"column":6},"end":{"line":54,"column":29}},"26":{"start":{"line":58,"column":6},"end":{"line":58,"column":68}},"27":{"start":{"line":59,"column":6},"end":{"line":59,"column":12}},"28":{"start":{"line":63,"column":6},"end":{"line":63,"column":55}},"29":{"start":{"line":64,"column":6},"end":{"line":64,"column":12}},"30":{"start":{"line":68,"column":6},"end":{"line":68,"column":68}},"31":{"start":{"line":69,"column":6},"end":{"line":69,"column":68}},"32":{"start":{"line":70,"column":6},"end":{"line":70,"column":12}},"33":{"start":{"line":75,"column":2},"end":{"line":75,"column":35}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":4,"column":35},"end":{"line":4,"column":36}},"loc":{"start":{"line":7,"column":5},"end":{"line":20,"column":1}},"line":7},"1":{"name":"(anonymous_1)","decl":{"start":{"line":24,"column":41},"end":{"line":24,"column":42}},"loc":{"start":{"line":27,"column":5},"end":{"line":40,"column":1}},"line":27},"2":{"name":"(anonymous_2)","decl":{"start":{"line":43,"column":38},"end":{"line":43,"column":39}},"loc":{"start":{"line":46,"column":5},"end":{"line":76,"column":1}},"line":46}},"branchMap":{"0":{"loc":{"start":{"line":8,"column":2},"end":{"line":8,"column":80}},"type":"if","locations":[{"start":{"line":8,"column":2},"end":{"line":8,"column":80}},{"start":{},"end":{}}],"line":8},"1":{"loc":{"start":{"line":8,"column":32},"end":{"line":8,"column":79}},"type":"cond-expr","locations":[{"start":{"line":8,"column":63},"end":{"line":8,"column":70}},{"start":{"line":8,"column":73},"end":{"line":8,"column":79}}],"line":8},"2":{"loc":{"start":{"line":10,"column":2},"end":{"line":10,"column":60}},"type":"if","locations":[{"start":{"line":10,"column":2},"end":{"line":10,"column":60}},{"start":{},"end":{}}],"line":10},"3":{"loc":{"start":{"line":12,"column":2},"end":{"line":19,"column":3}},"type":"switch","locations":[{"start":{"line":13,"column":4},"end":{"line":14,"column":21}},{"start":{"line":15,"column":4},"end":{"line":16,"column":20}},{"start":{"line":17,"column":4},"end":{"line":18,"column":30}}],"line":12},"4":{"loc":{"start":{"line":28,"column":2},"end":{"line":28,"column":52}},"type":"if","locations":[{"start":{"line":28,"column":2},"end":{"line":28,"column":52}},{"start":{},"end":{}}],"line":28},"5":{"loc":{"start":{"line":31,"column":2},"end":{"line":31,"column":45}},"type":"if","locations":[{"start":{"line":31,"column":2},"end":{"line":31,"column":45}},{"start":{},"end":{}}],"line":31},"6":{"loc":{"start":{"line":47,"column":2},"end":{"line":47,"column":59}},"type":"if","locations":[{"start":{"line":47,"column":2},"end":{"line":47,"column":59}},{"start":{},"end":{}}],"line":47},"7":{"loc":{"start":{"line":51,"column":2},"end":{"line":73,"column":3}},"type":"switch","locations":[{"start":{"line":53,"column":4},"end":{"line":55,"column":5}},{"start":{"line":57,"column":4},"end":{"line":60,"column":5}},{"start":{"line":62,"column":4},"end":{"line":65,"column":5}},{"start":{"line":67,"column":4},"end":{"line":71,"column":5}},{"start":{"line":72,"column":4},"end":{"line":72,"column":12}}],"line":51}},"s":{"0":7,"1":2,"2":0,"3":2,"4":2,"5":0,"6":0,"7":0,"8":0,"9":7,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":7,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0},"f":{"0":2,"1":0,"2":0},"b":{"0":[0,2],"1":[0,0],"2":[2,0],"3":[0,0,0],"4":[0,0],"5":[0,0],"6":[0,0],"7":[0,0,0,0,0]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"3a4d33ee5c6704ccd701eb25b0fd1b2746b4c86c"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\trimSeparator.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\trimSeparator.ts","statementMap":{"0":{"start":{"line":4,"column":2},"end":{"line":4,"column":74}},"1":{"start":{"line":4,"column":61},"end":{"line":4,"column":74}},"2":{"start":{"line":6,"column":17},"end":{"line":6,"column":29}},"3":{"start":{"line":7,"column":37},"end":{"line":7,"column":39}},"4":{"start":{"line":9,"column":2},"end":{"line":17,"column":3}},"5":{"start":{"line":9,"column":19},"end":{"line":9,"column":20}},"6":{"start":{"line":10,"column":15},"end":{"line":10,"column":27}},"7":{"start":{"line":12,"column":4},"end":{"line":16,"column":5}},"8":{"start":{"line":13,"column":6},"end":{"line":13,"column":67}},"9":{"start":{"line":13,"column":51},"end":{"line":13,"column":67}},"10":{"start":{"line":14,"column":11},"end":{"line":16,"column":5}},"11":{"start":{"line":15,"column":6},"end":{"line":15,"column":22}},"12":{"start":{"line":19,"column":2},"end":{"line":19,"column":59}},"13":{"start":{"line":19,"column":46},"end":{"line":19,"column":59}},"14":{"start":{"line":21,"column":2},"end":{"line":21,"column":16}}},"fnMap":{"0":{"name":"trimSeparator","decl":{"start":{"line":3,"column":16},"end":{"line":3,"column":29}},"loc":{"start":{"line":3,"column":57},"end":{"line":22,"column":1}},"line":3}},"branchMap":{"0":{"loc":{"start":{"line":4,"column":2},"end":{"line":4,"column":74}},"type":"if","locations":[{"start":{"line":4,"column":2},"end":{"line":4,"column":74}},{"start":{},"end":{}}],"line":4},"1":{"loc":{"start":{"line":4,"column":6},"end":{"line":4,"column":59}},"type":"binary-expr","locations":[{"start":{"line":4,"column":6},"end":{"line":4,"column":12}},{"start":{"line":4,"column":16},"end":{"line":4,"column":37}},{"start":{"line":4,"column":41},"end":{"line":4,"column":59}}],"line":4},"2":{"loc":{"start":{"line":12,"column":4},"end":{"line":16,"column":5}},"type":"if","locations":[{"start":{"line":12,"column":4},"end":{"line":16,"column":5}},{"start":{"line":14,"column":11},"end":{"line":16,"column":5}}],"line":12},"3":{"loc":{"start":{"line":12,"column":8},"end":{"line":12,"column":44}},"type":"binary-expr","locations":[{"start":{"line":12,"column":8},"end":{"line":12,"column":23}},{"start":{"line":12,"column":27},"end":{"line":12,"column":44}}],"line":12},"4":{"loc":{"start":{"line":13,"column":6},"end":{"line":13,"column":67}},"type":"if","locations":[{"start":{"line":13,"column":6},"end":{"line":13,"column":67}},{"start":{},"end":{}}],"line":13},"5":{"loc":{"start":{"line":14,"column":11},"end":{"line":16,"column":5}},"type":"if","locations":[{"start":{"line":14,"column":11},"end":{"line":16,"column":5}},{"start":{},"end":{}}],"line":14},"6":{"loc":{"start":{"line":19,"column":2},"end":{"line":19,"column":59}},"type":"if","locations":[{"start":{"line":19,"column":2},"end":{"line":19,"column":59}},{"start":{},"end":{}}],"line":19}},"s":{"0":0,"1":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0},"f":{"0":0},"b":{"0":[0,0],"1":[0,0,0],"2":[0,0],"3":[0,0],"4":[0,0],"5":[0,0],"6":[0,0]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"a864f549ecb38a7030b903c0696d4e49f54d8f88"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\useClickOutside.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\useClickOutside.ts","statementMap":{"0":{"start":{"line":4,"column":31},"end":{"line":20,"column":1}},"1":{"start":{"line":9,"column":2},"end":{"line":19,"column":30}},"2":{"start":{"line":10,"column":31},"end":{"line":14,"column":5}},"3":{"start":{"line":11,"column":6},"end":{"line":11,"column":26}},"4":{"start":{"line":12,"column":21},"end":{"line":12,"column":44}},"5":{"start":{"line":13,"column":6},"end":{"line":13,"column":66}},"6":{"start":{"line":13,"column":56},"end":{"line":13,"column":66}},"7":{"start":{"line":15,"column":4},"end":{"line":15,"column":63}},"8":{"start":{"line":16,"column":4},"end":{"line":18,"column":6}},"9":{"start":{"line":17,"column":6},"end":{"line":17,"column":68}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":4,"column":31},"end":{"line":4,"column":32}},"loc":{"start":{"line":8,"column":5},"end":{"line":20,"column":1}},"line":8},"1":{"name":"(anonymous_1)","decl":{"start":{"line":9,"column":12},"end":{"line":9,"column":13}},"loc":{"start":{"line":9,"column":18},"end":{"line":19,"column":3}},"line":9},"2":{"name":"(anonymous_2)","decl":{"start":{"line":10,"column":31},"end":{"line":10,"column":32}},"loc":{"start":{"line":10,"column":50},"end":{"line":14,"column":5}},"line":10},"3":{"name":"(anonymous_3)","decl":{"start":{"line":16,"column":11},"end":{"line":16,"column":12}},"loc":{"start":{"line":16,"column":17},"end":{"line":18,"column":5}},"line":16}},"branchMap":{"0":{"loc":{"start":{"line":13,"column":6},"end":{"line":13,"column":66}},"type":"if","locations":[{"start":{"line":13,"column":6},"end":{"line":13,"column":66}},{"start":{},"end":{}}],"line":13},"1":{"loc":{"start":{"line":13,"column":10},"end":{"line":13,"column":54}},"type":"binary-expr","locations":[{"start":{"line":13,"column":10},"end":{"line":13,"column":21}},{"start":{"line":13,"column":25},"end":{"line":13,"column":54}}],"line":13}},"s":{"0":7,"1":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0},"f":{"0":0,"1":0,"2":0,"3":0},"b":{"0":[0,0],"1":[0,0]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"89ca2bcd66c0579499660167bbcb99a3a68b32d5"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\useId.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\useId.ts","statementMap":{"0":{"start":{"line":3,"column":9},"end":{"line":3,"column":10}},"1":{"start":{"line":4,"column":14},"end":{"line":6,"column":1}},"2":{"start":{"line":5,"column":2},"end":{"line":5,"column":10}},"3":{"start":{"line":7,"column":28},"end":{"line":7,"column":33}},"4":{"start":{"line":10,"column":2},"end":{"line":12,"column":17}},"5":{"start":{"line":14,"column":31},"end":{"line":14,"column":42}},"6":{"start":{"line":16,"column":14},"end":{"line":33,"column":1}},"7":{"start":{"line":17,"column":22},"end":{"line":19,"column":3}},"8":{"start":{"line":21,"column":2},"end":{"line":28,"column":9}},"9":{"start":{"line":22,"column":4},"end":{"line":25,"column":5}},"10":{"start":{"line":23,"column":6},"end":{"line":23,"column":14}},"11":{"start":{"line":24,"column":6},"end":{"line":24,"column":16}},"12":{"start":{"line":27,"column":4},"end":{"line":27,"column":33}},"13":{"start":{"line":30,"column":17},"end":{"line":30,"column":52}},"14":{"start":{"line":32,"column":2},"end":{"line":32,"column":30}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":4,"column":14},"end":{"line":4,"column":15}},"loc":{"start":{"line":4,"column":20},"end":{"line":6,"column":1}},"line":4},"1":{"name":"(anonymous_1)","decl":{"start":{"line":16,"column":14},"end":{"line":16,"column":15}},"loc":{"start":{"line":16,"column":67},"end":{"line":33,"column":1}},"line":16},"2":{"name":"(anonymous_2)","decl":{"start":{"line":21,"column":25},"end":{"line":21,"column":26}},"loc":{"start":{"line":21,"column":31},"end":{"line":28,"column":3}},"line":21}},"branchMap":{"0":{"loc":{"start":{"line":10,"column":2},"end":{"line":12,"column":17}},"type":"cond-expr","locations":[{"start":{"line":11,"column":6},"end":{"line":11,"column":23}},{"start":{"line":12,"column":6},"end":{"line":12,"column":17}}],"line":10},"1":{"loc":{"start":{"line":10,"column":2},"end":{"line":10,"column":73}},"type":"binary-expr","locations":[{"start":{"line":10,"column":2},"end":{"line":10,"column":33}},{"start":{"line":10,"column":37},"end":{"line":10,"column":73}}],"line":10},"2":{"loc":{"start":{"line":16,"column":45},"end":{"line":16,"column":62}},"type":"default-arg","locations":[{"start":{"line":16,"column":54},"end":{"line":16,"column":62}}],"line":16},"3":{"loc":{"start":{"line":18,"column":4},"end":{"line":18,"column":45}},"type":"cond-expr","locations":[{"start":{"line":18,"column":28},"end":{"line":18,"column":33}},{"start":{"line":18,"column":36},"end":{"line":18,"column":45}}],"line":18},"4":{"loc":{"start":{"line":22,"column":4},"end":{"line":25,"column":5}},"type":"if","locations":[{"start":{"line":22,"column":4},"end":{"line":25,"column":5}},{"start":{},"end":{}}],"line":22},"5":{"loc":{"start":{"line":30,"column":17},"end":{"line":30,"column":52}},"type":"cond-expr","locations":[{"start":{"line":30,"column":36},"end":{"line":30,"column":38}},{"start":{"line":30,"column":41},"end":{"line":30,"column":52}}],"line":30},"6":{"loc":{"start":{"line":32,"column":9},"end":{"line":32,"column":29}},"type":"binary-expr","locations":[{"start":{"line":32,"column":9},"end":{"line":32,"column":19}},{"start":{"line":32,"column":23},"end":{"line":32,"column":29}}],"line":32}},"s":{"0":7,"1":7,"2":0,"3":7,"4":7,"5":7,"6":7,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0},"f":{"0":0,"1":0,"2":0},"b":{"0":[7,0],"1":[7,7],"2":[0],"3":[0,0],"4":[0,0],"5":[0,0],"6":[0,0]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"0c2387b9d4b5ae50258b153d4ea5ec20ac3adf0f"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\email\\email.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\email\\email.ts","statementMap":{"0":{"start":{"line":17,"column":28},"end":{"line":46,"column":1}},"1":{"start":{"line":21,"column":23},"end":{"line":21,"column":51}},"2":{"start":{"line":23,"column":2},"end":{"line":31,"column":3}},"3":{"start":{"line":24,"column":4},"end":{"line":30,"column":7}},"4":{"start":{"line":33,"column":2},"end":{"line":41,"column":3}},"5":{"start":{"line":34,"column":4},"end":{"line":40,"column":7}},"6":{"start":{"line":43,"column":22},"end":{"line":43,"column":37}},"7":{"start":{"line":45,"column":2},"end":{"line":45,"column":21}},"8":{"start":{"line":68,"column":4},"end":{"line":68,"column":27}},"9":{"start":{"line":69,"column":4},"end":{"line":69,"column":23}},"10":{"start":{"line":70,"column":4},"end":{"line":70,"column":35}},"11":{"start":{"line":73,"column":12},"end":{"line":75,"column":3}},"12":{"start":{"line":74,"column":4},"end":{"line":74,"column":42}},"13":{"start":{"line":78,"column":4},"end":{"line":82,"column":5}},"14":{"start":{"line":79,"column":6},"end":{"line":81,"column":8}},"15":{"start":{"line":84,"column":4},"end":{"line":87,"column":5}},"16":{"start":{"line":85,"column":21},"end":{"line":85,"column":39}},"17":{"start":{"line":86,"column":6},"end":{"line":86,"column":70}},"18":{"start":{"line":89,"column":4},"end":{"line":89,"column":17}},"19":{"start":{"line":93,"column":17},"end":{"line":130,"column":1}},"20":{"start":{"line":94,"column":16},"end":{"line":94,"column":18}},"21":{"start":{"line":95,"column":17},"end":{"line":95,"column":45}},"22":{"start":{"line":96,"column":12},"end":{"line":96,"column":25}},"23":{"start":{"line":97,"column":13},"end":{"line":97,"column":18}},"24":{"start":{"line":98,"column":22},"end":{"line":98,"column":23}},"25":{"start":{"line":100,"column":2},"end":{"line":123,"column":3}},"26":{"start":{"line":101,"column":4},"end":{"line":122,"column":5}},"27":{"start":{"line":104,"column":8},"end":{"line":111,"column":9}},"28":{"start":{"line":105,"column":21},"end":{"line":105,"column":59}},"29":{"start":{"line":106,"column":10},"end":{"line":106,"column":29}},"30":{"start":{"line":107,"column":10},"end":{"line":109,"column":11}},"31":{"start":{"line":108,"column":12},"end":{"line":108,"column":29}},"32":{"start":{"line":110,"column":10},"end":{"line":110,"column":36}},"33":{"start":{"line":112,"column":8},"end":{"line":112,"column":14}},"34":{"start":{"line":114,"column":8},"end":{"line":119,"column":9}},"35":{"start":{"line":118,"column":10},"end":{"line":118,"column":23}},"36":{"start":{"line":120,"column":8},"end":{"line":120,"column":14}},"37":{"start":{"line":125,"column":2},"end":{"line":127,"column":3}},"38":{"start":{"line":126,"column":4},"end":{"line":126,"column":41}},"39":{"start":{"line":129,"column":2},"end":{"line":129,"column":15}},"40":{"start":{"line":132,"column":24},"end":{"line":152,"column":1}},"41":{"start":{"line":133,"column":13},"end":{"line":133,"column":35}},"42":{"start":{"line":134,"column":13},"end":{"line":134,"column":30}},"43":{"start":{"line":135,"column":16},"end":{"line":135,"column":46}},"44":{"start":{"line":140,"column":2},"end":{"line":145,"column":3}},"45":{"start":{"line":141,"column":4},"end":{"line":141,"column":71}},"46":{"start":{"line":142,"column":4},"end":{"line":142,"column":28}},"47":{"start":{"line":144,"column":4},"end":{"line":144,"column":16}},"48":{"start":{"line":147,"column":17},"end":{"line":149,"column":11}},"49":{"start":{"line":151,"column":2},"end":{"line":151,"column":16}},"50":{"start":{"line":154,"column":20},"end":{"line":272,"column":1}},"51":{"start":{"line":158,"column":17},"end":{"line":158,"column":19}},"52":{"start":{"line":160,"column":2},"end":{"line":171,"column":3}},"53":{"start":{"line":165,"column":4},"end":{"line":170,"column":7}},"54":{"start":{"line":173,"column":2},"end":{"line":190,"column":3}},"55":{"start":{"line":184,"column":4},"end":{"line":189,"column":7}},"56":{"start":{"line":192,"column":2},"end":{"line":204,"column":3}},"57":{"start":{"line":198,"column":4},"end":{"line":203,"column":7}},"58":{"start":{"line":206,"column":2},"end":{"line":217,"column":3}},"59":{"start":{"line":211,"column":4},"end":{"line":216,"column":7}},"60":{"start":{"line":219,"column":2},"end":{"line":231,"column":3}},"61":{"start":{"line":225,"column":4},"end":{"line":230,"column":7}},"62":{"start":{"line":233,"column":2},"end":{"line":245,"column":3}},"63":{"start":{"line":239,"column":4},"end":{"line":244,"column":7}},"64":{"start":{"line":247,"column":2},"end":{"line":259,"column":3}},"65":{"start":{"line":253,"column":4},"end":{"line":258,"column":7}},"66":{"start":{"line":261,"column":2},"end":{"line":269,"column":3}},"67":{"start":{"line":262,"column":4},"end":{"line":268,"column":7}},"68":{"start":{"line":271,"column":2},"end":{"line":271,"column":16}},"69":{"start":{"line":274,"column":24},"end":{"line":294,"column":1}},"70":{"start":{"line":275,"column":24},"end":{"line":275,"column":44}},"71":{"start":{"line":276,"column":24},"end":{"line":276,"column":69}},"72":{"start":{"line":278,"column":17},"end":{"line":278,"column":19}},"73":{"start":{"line":280,"column":2},"end":{"line":289,"column":3}},"74":{"start":{"line":281,"column":4},"end":{"line":285,"column":7}},"75":{"start":{"line":287,"column":30},"end":{"line":287,"column":65}},"76":{"start":{"line":288,"column":4},"end":{"line":288,"column":68}},"77":{"start":{"line":288,"column":34},"end":{"line":288,"column":68}},"78":{"start":{"line":291,"column":2},"end":{"line":293,"column":35}},"79":{"start":{"line":301,"column":30},"end":{"line":324,"column":1}},"80":{"start":{"line":305,"column":2},"end":{"line":306,"column":43}},"81":{"start":{"line":306,"column":4},"end":{"line":306,"column":43}},"82":{"start":{"line":308,"column":32},"end":{"line":308,"column":34}},"83":{"start":{"line":310,"column":2},"end":{"line":312,"column":3}},"84":{"start":{"line":311,"column":4},"end":{"line":311,"column":24}},"85":{"start":{"line":314,"column":16},"end":{"line":314,"column":29}},"86":{"start":{"line":317,"column":12},"end":{"line":317,"column":24}},"87":{"start":{"line":319,"column":2},"end":{"line":321,"column":3}},"88":{"start":{"line":320,"column":4},"end":{"line":320,"column":58}},"89":{"start":{"line":323,"column":2},"end":{"line":323,"column":22}},"90":{"start":{"line":331,"column":33},"end":{"line":341,"column":1}},"91":{"start":{"line":332,"column":17},"end":{"line":332,"column":65}},"92":{"start":{"line":333,"column":2},"end":{"line":333,"column":28}},"93":{"start":{"line":333,"column":15},"end":{"line":333,"column":28}},"94":{"start":{"line":335,"column":2},"end":{"line":340,"column":4}},"95":{"start":{"line":349,"column":28},"end":{"line":361,"column":1}},"96":{"start":{"line":350,"column":24},"end":{"line":350,"column":43}},"97":{"start":{"line":351,"column":2},"end":{"line":351,"column":37}},"98":{"start":{"line":353,"column":18},"end":{"line":353,"column":53}},"99":{"start":{"line":354,"column":18},"end":{"line":354,"column":53}},"100":{"start":{"line":356,"column":2},"end":{"line":358,"column":3}},"101":{"start":{"line":357,"column":4},"end":{"line":357,"column":17}},"102":{"start":{"line":360,"column":2},"end":{"line":360,"column":41}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":17,"column":28},"end":{"line":17,"column":29}},"loc":{"start":{"line":20,"column":5},"end":{"line":46,"column":1}},"line":20},"1":{"name":"(anonymous_1)","decl":{"start":{"line":59,"column":2},"end":{"line":59,"column":3}},"loc":{"start":{"line":67,"column":4},"end":{"line":71,"column":3}},"line":67},"2":{"name":"(anonymous_2)","decl":{"start":{"line":73,"column":12},"end":{"line":73,"column":13}},"loc":{"start":{"line":73,"column":18},"end":{"line":75,"column":3}},"line":73},"3":{"name":"(anonymous_3)","decl":{"start":{"line":77,"column":2},"end":{"line":77,"column":3}},"loc":{"start":{"line":77,"column":70},"end":{"line":90,"column":3}},"line":77},"4":{"name":"(anonymous_4)","decl":{"start":{"line":93,"column":17},"end":{"line":93,"column":18}},"loc":{"start":{"line":93,"column":34},"end":{"line":130,"column":1}},"line":93},"5":{"name":"(anonymous_5)","decl":{"start":{"line":132,"column":24},"end":{"line":132,"column":25}},"loc":{"start":{"line":132,"column":41},"end":{"line":152,"column":1}},"line":132},"6":{"name":"(anonymous_6)","decl":{"start":{"line":154,"column":20},"end":{"line":154,"column":21}},"loc":{"start":{"line":157,"column":5},"end":{"line":272,"column":1}},"line":157},"7":{"name":"(anonymous_7)","decl":{"start":{"line":274,"column":24},"end":{"line":274,"column":25}},"loc":{"start":{"line":274,"column":65},"end":{"line":294,"column":1}},"line":274},"8":{"name":"(anonymous_8)","decl":{"start":{"line":301,"column":30},"end":{"line":301,"column":31}},"loc":{"start":{"line":304,"column":5},"end":{"line":324,"column":1}},"line":304},"9":{"name":"(anonymous_9)","decl":{"start":{"line":331,"column":33},"end":{"line":331,"column":34}},"loc":{"start":{"line":331,"column":53},"end":{"line":341,"column":1}},"line":331},"10":{"name":"(anonymous_10)","decl":{"start":{"line":349,"column":28},"end":{"line":349,"column":29}},"loc":{"start":{"line":349,"column":64},"end":{"line":361,"column":1}},"line":349}},"branchMap":{"0":{"loc":{"start":{"line":19,"column":2},"end":{"line":19,"column":75}},"type":"default-arg","locations":[{"start":{"line":19,"column":56},"end":{"line":19,"column":75}}],"line":19},"1":{"loc":{"start":{"line":23,"column":2},"end":{"line":31,"column":3}},"type":"if","locations":[{"start":{"line":23,"column":2},"end":{"line":31,"column":3}},{"start":{},"end":{}}],"line":23},"2":{"loc":{"start":{"line":33,"column":2},"end":{"line":41,"column":3}},"type":"if","locations":[{"start":{"line":33,"column":2},"end":{"line":41,"column":3}},{"start":{},"end":{}}],"line":33},"3":{"loc":{"start":{"line":68,"column":16},"end":{"line":68,"column":26}},"type":"binary-expr","locations":[{"start":{"line":68,"column":16},"end":{"line":68,"column":20}},{"start":{"line":68,"column":24},"end":{"line":68,"column":26}}],"line":68},"4":{"loc":{"start":{"line":78,"column":4},"end":{"line":82,"column":5}},"type":"if","locations":[{"start":{"line":78,"column":4},"end":{"line":82,"column":5}},{"start":{},"end":{}}],"line":78},"5":{"loc":{"start":{"line":78,"column":8},"end":{"line":78,"column":57}},"type":"binary-expr","locations":[{"start":{"line":78,"column":8},"end":{"line":78,"column":32}},{"start":{"line":78,"column":36},"end":{"line":78,"column":57}}],"line":78},"6":{"loc":{"start":{"line":80,"column":8},"end":{"line":80,"column":80}},"type":"binary-expr","locations":[{"start":{"line":80,"column":8},"end":{"line":80,"column":23}},{"start":{"line":80,"column":27},"end":{"line":80,"column":53}},{"start":{"line":80,"column":57},"end":{"line":80,"column":80}}],"line":80},"7":{"loc":{"start":{"line":84,"column":4},"end":{"line":87,"column":5}},"type":"if","locations":[{"start":{"line":84,"column":4},"end":{"line":87,"column":5}},{"start":{},"end":{}}],"line":84},"8":{"loc":{"start":{"line":86,"column":13},"end":{"line":86,"column":69}},"type":"binary-expr","locations":[{"start":{"line":86,"column":13},"end":{"line":86,"column":40}},{"start":{"line":86,"column":44},"end":{"line":86,"column":69}}],"line":86},"9":{"loc":{"start":{"line":101,"column":4},"end":{"line":122,"column":5}},"type":"switch","locations":[{"start":{"line":102,"column":6},"end":{"line":102,"column":15}},{"start":{"line":103,"column":6},"end":{"line":112,"column":14}},{"start":{"line":113,"column":6},"end":{"line":120,"column":14}},{"start":{"line":121,"column":6},"end":{"line":121,"column":14}}],"line":101},"10":{"loc":{"start":{"line":104,"column":8},"end":{"line":111,"column":9}},"type":"if","locations":[{"start":{"line":104,"column":8},"end":{"line":111,"column":9}},{"start":{},"end":{}}],"line":104},"11":{"loc":{"start":{"line":107,"column":10},"end":{"line":109,"column":11}},"type":"if","locations":[{"start":{"line":107,"column":10},"end":{"line":109,"column":11}},{"start":{},"end":{}}],"line":107},"12":{"loc":{"start":{"line":114,"column":8},"end":{"line":119,"column":9}},"type":"if","locations":[{"start":{"line":114,"column":8},"end":{"line":119,"column":9}},{"start":{},"end":{}}],"line":114},"13":{"loc":{"start":{"line":115,"column":10},"end":{"line":116,"column":42}},"type":"binary-expr","locations":[{"start":{"line":115,"column":10},"end":{"line":115,"column":43}},{"start":{"line":116,"column":10},"end":{"line":116,"column":42}}],"line":115},"14":{"loc":{"start":{"line":125,"column":2},"end":{"line":127,"column":3}},"type":"if","locations":[{"start":{"line":125,"column":2},"end":{"line":127,"column":3}},{"start":{},"end":{}}],"line":125},"15":{"loc":{"start":{"line":135,"column":16},"end":{"line":135,"column":46}},"type":"binary-expr","locations":[{"start":{"line":135,"column":16},"end":{"line":135,"column":29}},{"start":{"line":135,"column":33},"end":{"line":135,"column":46}}],"line":135},"16":{"loc":{"start":{"line":140,"column":2},"end":{"line":145,"column":3}},"type":"if","locations":[{"start":{"line":140,"column":2},"end":{"line":145,"column":3}},{"start":{"line":143,"column":9},"end":{"line":145,"column":3}}],"line":140},"17":{"loc":{"start":{"line":147,"column":17},"end":{"line":149,"column":11}},"type":"cond-expr","locations":[{"start":{"line":148,"column":6},"end":{"line":148,"column":72}},{"start":{"line":149,"column":6},"end":{"line":149,"column":11}}],"line":147},"18":{"loc":{"start":{"line":160,"column":2},"end":{"line":171,"column":3}},"type":"if","locations":[{"start":{"line":160,"column":2},"end":{"line":171,"column":3}},{"start":{},"end":{}}],"line":160},"19":{"loc":{"start":{"line":161,"column":4},"end":{"line":163,"column":44}},"type":"binary-expr","locations":[{"start":{"line":161,"column":4},"end":{"line":161,"column":34}},{"start":{"line":162,"column":4},"end":{"line":162,"column":29}},{"start":{"line":163,"column":4},"end":{"line":163,"column":44}}],"line":161},"20":{"loc":{"start":{"line":173,"column":2},"end":{"line":190,"column":3}},"type":"if","locations":[{"start":{"line":173,"column":2},"end":{"line":190,"column":3}},{"start":{},"end":{}}],"line":173},"21":{"loc":{"start":{"line":174,"column":4},"end":{"line":182,"column":5}},"type":"binary-expr","locations":[{"start":{"line":174,"column":4},"end":{"line":178,"column":5}},{"start":{"line":179,"column":4},"end":{"line":179,"column":29}},{"start":{"line":180,"column":4},"end":{"line":182,"column":5}}],"line":174},"22":{"loc":{"start":{"line":175,"column":6},"end":{"line":177,"column":34}},"type":"binary-expr","locations":[{"start":{"line":175,"column":6},"end":{"line":175,"column":27}},{"start":{"line":176,"column":6},"end":{"line":176,"column":33}},{"start":{"line":177,"column":6},"end":{"line":177,"column":34}}],"line":175},"23":{"loc":{"start":{"line":192,"column":2},"end":{"line":204,"column":3}},"type":"if","locations":[{"start":{"line":192,"column":2},"end":{"line":204,"column":3}},{"start":{},"end":{}}],"line":192},"24":{"loc":{"start":{"line":193,"column":4},"end":{"line":196,"column":73}},"type":"binary-expr","locations":[{"start":{"line":193,"column":4},"end":{"line":193,"column":26}},{"start":{"line":194,"column":4},"end":{"line":194,"column":29}},{"start":{"line":195,"column":4},"end":{"line":195,"column":43}},{"start":{"line":196,"column":4},"end":{"line":196,"column":73}}],"line":193},"25":{"loc":{"start":{"line":206,"column":2},"end":{"line":217,"column":3}},"type":"if","locations":[{"start":{"line":206,"column":2},"end":{"line":217,"column":3}},{"start":{},"end":{}}],"line":206},"26":{"loc":{"start":{"line":207,"column":4},"end":{"line":209,"column":68}},"type":"binary-expr","locations":[{"start":{"line":207,"column":4},"end":{"line":207,"column":32}},{"start":{"line":208,"column":4},"end":{"line":208,"column":29}},{"start":{"line":209,"column":4},"end":{"line":209,"column":68}}],"line":207},"27":{"loc":{"start":{"line":219,"column":2},"end":{"line":231,"column":3}},"type":"if","locations":[{"start":{"line":219,"column":2},"end":{"line":231,"column":3}},{"start":{},"end":{}}],"line":219},"28":{"loc":{"start":{"line":220,"column":4},"end":{"line":223,"column":67}},"type":"binary-expr","locations":[{"start":{"line":220,"column":4},"end":{"line":220,"column":35}},{"start":{"line":221,"column":4},"end":{"line":221,"column":28}},{"start":{"line":222,"column":4},"end":{"line":222,"column":34}},{"start":{"line":223,"column":4},"end":{"line":223,"column":67}}],"line":220},"29":{"loc":{"start":{"line":233,"column":2},"end":{"line":245,"column":3}},"type":"if","locations":[{"start":{"line":233,"column":2},"end":{"line":245,"column":3}},{"start":{},"end":{}}],"line":233},"30":{"loc":{"start":{"line":234,"column":4},"end":{"line":237,"column":76}},"type":"binary-expr","locations":[{"start":{"line":234,"column":4},"end":{"line":234,"column":32}},{"start":{"line":235,"column":4},"end":{"line":235,"column":28}},{"start":{"line":236,"column":5},"end":{"line":236,"column":48}},{"start":{"line":237,"column":6},"end":{"line":237,"column":75}}],"line":234},"31":{"loc":{"start":{"line":247,"column":2},"end":{"line":259,"column":3}},"type":"if","locations":[{"start":{"line":247,"column":2},"end":{"line":259,"column":3}},{"start":{},"end":{}}],"line":247},"32":{"loc":{"start":{"line":248,"column":4},"end":{"line":251,"column":63}},"type":"binary-expr","locations":[{"start":{"line":248,"column":4},"end":{"line":248,"column":24}},{"start":{"line":249,"column":4},"end":{"line":249,"column":28}},{"start":{"line":250,"column":5},"end":{"line":250,"column":36}},{"start":{"line":251,"column":6},"end":{"line":251,"column":62}}],"line":248},"33":{"loc":{"start":{"line":261,"column":2},"end":{"line":269,"column":3}},"type":"if","locations":[{"start":{"line":261,"column":2},"end":{"line":269,"column":3}},{"start":{},"end":{}}],"line":261},"34":{"loc":{"start":{"line":261,"column":6},"end":{"line":261,"column":65}},"type":"binary-expr","locations":[{"start":{"line":261,"column":6},"end":{"line":261,"column":30}},{"start":{"line":261,"column":34},"end":{"line":261,"column":65}}],"line":261},"35":{"loc":{"start":{"line":280,"column":2},"end":{"line":289,"column":3}},"type":"if","locations":[{"start":{"line":280,"column":2},"end":{"line":289,"column":3}},{"start":{"line":286,"column":9},"end":{"line":289,"column":3}}],"line":280},"36":{"loc":{"start":{"line":280,"column":6},"end":{"line":280,"column":66}},"type":"binary-expr","locations":[{"start":{"line":280,"column":6},"end":{"line":280,"column":20}},{"start":{"line":280,"column":25},"end":{"line":280,"column":43}},{"start":{"line":280,"column":47},"end":{"line":280,"column":65}}],"line":280},"37":{"loc":{"start":{"line":288,"column":4},"end":{"line":288,"column":68}},"type":"if","locations":[{"start":{"line":288,"column":4},"end":{"line":288,"column":68}},{"start":{},"end":{}}],"line":288},"38":{"loc":{"start":{"line":291,"column":9},"end":{"line":293,"column":34}},"type":"cond-expr","locations":[{"start":{"line":292,"column":6},"end":{"line":292,"column":66}},{"start":{"line":293,"column":6},"end":{"line":293,"column":34}}],"line":291},"39":{"loc":{"start":{"line":291,"column":9},"end":{"line":291,"column":79}},"type":"binary-expr","locations":[{"start":{"line":291,"column":9},"end":{"line":291,"column":22}},{"start":{"line":291,"column":26},"end":{"line":291,"column":49}},{"start":{"line":291,"column":53},"end":{"line":291,"column":79}}],"line":291},"40":{"loc":{"start":{"line":303,"column":2},"end":{"line":303,"column":75}},"type":"default-arg","locations":[{"start":{"line":303,"column":56},"end":{"line":303,"column":75}}],"line":303},"41":{"loc":{"start":{"line":305,"column":2},"end":{"line":306,"column":43}},"type":"if","locations":[{"start":{"line":305,"column":2},"end":{"line":306,"column":43}},{"start":{},"end":{}}],"line":305},"42":{"loc":{"start":{"line":310,"column":2},"end":{"line":312,"column":3}},"type":"if","locations":[{"start":{"line":310,"column":2},"end":{"line":312,"column":3}},{"start":{},"end":{}}],"line":310},"43":{"loc":{"start":{"line":310,"column":6},"end":{"line":310,"column":25}},"type":"binary-expr","locations":[{"start":{"line":310,"column":6},"end":{"line":310,"column":10}},{"start":{"line":310,"column":14},"end":{"line":310,"column":25}}],"line":310},"44":{"loc":{"start":{"line":333,"column":2},"end":{"line":333,"column":28}},"type":"if","locations":[{"start":{"line":333,"column":2},"end":{"line":333,"column":28}},{"start":{},"end":{}}],"line":333},"45":{"loc":{"start":{"line":336,"column":4},"end":{"line":339,"column":30}},"type":"binary-expr","locations":[{"start":{"line":336,"column":4},"end":{"line":336,"column":10}},{"start":{"line":337,"column":4},"end":{"line":337,"column":22}},{"start":{"line":338,"column":4},"end":{"line":338,"column":28}},{"start":{"line":339,"column":4},"end":{"line":339,"column":30}}],"line":336},"46":{"loc":{"start":{"line":356,"column":2},"end":{"line":358,"column":3}},"type":"if","locations":[{"start":{"line":356,"column":2},"end":{"line":358,"column":3}},{"start":{},"end":{}}],"line":356},"47":{"loc":{"start":{"line":356,"column":6},"end":{"line":356,"column":46}},"type":"binary-expr","locations":[{"start":{"line":356,"column":6},"end":{"line":356,"column":24}},{"start":{"line":356,"column":28},"end":{"line":356,"column":46}}],"line":356}},"s":{"0":9,"1":26,"2":25,"3":1,"4":24,"5":3,"6":21,"7":21,"8":43,"9":43,"10":43,"11":43,"12":21,"13":7,"14":3,"15":4,"16":3,"17":3,"18":1,"19":9,"20":25,"21":25,"22":25,"23":25,"24":25,"25":25,"26":632,"27":29,"28":28,"29":28,"30":28,"31":28,"32":28,"33":29,"34":21,"35":21,"36":21,"37":25,"38":1,"39":25,"40":9,"41":29,"42":29,"43":29,"44":29,"45":12,"46":12,"47":17,"48":29,"49":29,"50":9,"51":24,"52":24,"53":0,"54":24,"55":0,"56":24,"57":0,"58":24,"59":0,"60":24,"61":0,"62":24,"63":0,"64":24,"65":0,"66":24,"67":0,"68":24,"69":9,"70":29,"71":29,"72":29,"73":29,"74":5,"75":24,"76":24,"77":0,"78":29,"79":9,"80":27,"81":1,"82":26,"83":26,"84":1,"85":25,"86":25,"87":25,"88":29,"89":25,"90":9,"91":10,"92":10,"93":2,"94":8,"95":9,"96":8,"97":8,"98":8,"99":8,"100":8,"101":1,"102":7},"f":{"0":26,"1":43,"2":21,"3":7,"4":25,"5":29,"6":24,"7":29,"8":27,"9":10,"10":8},"b":{"0":[8],"1":[1,24],"2":[3,21],"3":[43,22],"4":[3,4],"5":[7,4],"6":[3,3,3],"7":[3,1],"8":[3,3],"9":[29,29,21,582],"10":[28,1],"11":[28,0],"12":[21,0],"13":[21,21],"14":[1,24],"15":[29,19],"16":[12,17],"17":[12,17],"18":[0,24],"19":[24,7,7],"20":[0,24],"21":[24,7,7],"22":[24,7,7],"23":[0,24],"24":[24,7,7,0],"25":[0,24],"26":[24,7,7],"27":[0,24],"28":[24,7,7,7],"29":[0,24],"30":[24,7,7,7],"31":[0,24],"32":[24,7,7,7],"33":[0,24],"34":[24,24],"35":[5,24],"36":[29,26,12],"37":[0,24],"38":[26,3],"39":[29,26,26],"40":[1],"41":[1,26],"42":[1,25],"43":[26,25],"44":[2,8],"45":[8,8,8,7],"46":[1,7],"47":[8,7]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"f65869bd9fdbc859b072c16263b448b5871ce647"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\email\\emailSettings.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\email\\emailSettings.ts","statementMap":{"0":{"start":{"line":5,"column":4},"end":{"line":5,"column":37}},"1":{"start":{"line":6,"column":4},"end":{"line":6,"column":40}},"2":{"start":{"line":7,"column":4},"end":{"line":7,"column":31}},"3":{"start":{"line":8,"column":4},"end":{"line":8,"column":37}},"4":{"start":{"line":9,"column":4},"end":{"line":9,"column":29}},"5":{"start":{"line":10,"column":4},"end":{"line":10,"column":27}},"6":{"start":{"line":11,"column":4},"end":{"line":11,"column":38}},"7":{"start":{"line":14,"column":18},"end":{"line":38,"column":3}},"8":{"start":{"line":18,"column":22},"end":{"line":18,"column":52}},"9":{"start":{"line":19,"column":22},"end":{"line":19,"column":52}},"10":{"start":{"line":20,"column":31},"end":{"line":28,"column":5}},"11":{"start":{"line":29,"column":23},"end":{"line":29,"column":48}},"12":{"start":{"line":30,"column":4},"end":{"line":36,"column":5}},"13":{"start":{"line":30,"column":17},"end":{"line":30,"column":18}},"14":{"start":{"line":31,"column":27},"end":{"line":31,"column":48}},"15":{"start":{"line":33,"column":6},"end":{"line":35,"column":7}},"16":{"start":{"line":34,"column":8},"end":{"line":34,"column":21}},"17":{"start":{"line":37,"column":4},"end":{"line":37,"column":16}},"18":{"start":{"line":41,"column":4},"end":{"line":41,"column":37}},"19":{"start":{"line":45,"column":4},"end":{"line":51,"column":5}},"20":{"start":{"line":46,"column":6},"end":{"line":46,"column":40}},"21":{"start":{"line":48,"column":6},"end":{"line":50,"column":8}},"22":{"start":{"line":55,"column":4},"end":{"line":55,"column":40}},"23":{"start":{"line":59,"column":4},"end":{"line":65,"column":5}},"24":{"start":{"line":60,"column":6},"end":{"line":60,"column":43}},"25":{"start":{"line":62,"column":6},"end":{"line":64,"column":8}},"26":{"start":{"line":69,"column":4},"end":{"line":69,"column":31}},"27":{"start":{"line":73,"column":4},"end":{"line":79,"column":5}},"28":{"start":{"line":74,"column":6},"end":{"line":74,"column":34}},"29":{"start":{"line":76,"column":6},"end":{"line":78,"column":8}},"30":{"start":{"line":83,"column":4},"end":{"line":83,"column":38}},"31":{"start":{"line":87,"column":4},"end":{"line":93,"column":5}},"32":{"start":{"line":88,"column":6},"end":{"line":88,"column":41}},"33":{"start":{"line":90,"column":6},"end":{"line":92,"column":8}},"34":{"start":{"line":97,"column":4},"end":{"line":97,"column":29}},"35":{"start":{"line":101,"column":4},"end":{"line":107,"column":5}},"36":{"start":{"line":102,"column":6},"end":{"line":102,"column":32}},"37":{"start":{"line":104,"column":6},"end":{"line":106,"column":8}},"38":{"start":{"line":111,"column":4},"end":{"line":111,"column":27}},"39":{"start":{"line":115,"column":4},"end":{"line":121,"column":5}},"40":{"start":{"line":116,"column":6},"end":{"line":116,"column":30}},"41":{"start":{"line":118,"column":6},"end":{"line":120,"column":8}},"42":{"start":{"line":125,"column":4},"end":{"line":125,"column":38}},"43":{"start":{"line":129,"column":4},"end":{"line":135,"column":5}},"44":{"start":{"line":130,"column":6},"end":{"line":130,"column":41}},"45":{"start":{"line":132,"column":6},"end":{"line":134,"column":8}},"46":{"start":{"line":139,"column":4},"end":{"line":147,"column":6}},"47":{"start":{"line":151,"column":4},"end":{"line":151,"column":36}},"48":{"start":{"line":152,"column":4},"end":{"line":152,"column":39}},"49":{"start":{"line":153,"column":4},"end":{"line":153,"column":30}},"50":{"start":{"line":154,"column":4},"end":{"line":154,"column":38}},"51":{"start":{"line":155,"column":4},"end":{"line":155,"column":28}},"52":{"start":{"line":156,"column":4},"end":{"line":156,"column":26}},"53":{"start":{"line":157,"column":4},"end":{"line":157,"column":37}},"54":{"start":{"line":160,"column":17},"end":{"line":176,"column":3}},"55":{"start":{"line":161,"column":4},"end":{"line":161,"column":59}},"56":{"start":{"line":161,"column":43},"end":{"line":161,"column":59}},"57":{"start":{"line":163,"column":4},"end":{"line":163,"column":74}},"58":{"start":{"line":163,"column":38},"end":{"line":163,"column":74}},"59":{"start":{"line":165,"column":28},"end":{"line":165,"column":47}},"60":{"start":{"line":166,"column":4},"end":{"line":173,"column":7}},"61":{"start":{"line":168,"column":6},"end":{"line":169,"column":15}},"62":{"start":{"line":169,"column":8},"end":{"line":169,"column":15}},"63":{"start":{"line":172,"column":6},"end":{"line":172,"column":43}},"64":{"start":{"line":175,"column":4},"end":{"line":175,"column":27}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":4,"column":2},"end":{"line":4,"column":3}},"loc":{"start":{"line":4,"column":16},"end":{"line":12,"column":3}},"line":4},"1":{"name":"(anonymous_1)","decl":{"start":{"line":14,"column":18},"end":{"line":14,"column":19}},"loc":{"start":{"line":17,"column":7},"end":{"line":38,"column":3}},"line":17},"2":{"name":"(anonymous_2)","decl":{"start":{"line":40,"column":2},"end":{"line":40,"column":3}},"loc":{"start":{"line":40,"column":28},"end":{"line":42,"column":3}},"line":40},"3":{"name":"(anonymous_3)","decl":{"start":{"line":44,"column":2},"end":{"line":44,"column":3}},"loc":{"start":{"line":44,"column":33},"end":{"line":52,"column":3}},"line":44},"4":{"name":"(anonymous_4)","decl":{"start":{"line":54,"column":2},"end":{"line":54,"column":3}},"loc":{"start":{"line":54,"column":31},"end":{"line":56,"column":3}},"line":54},"5":{"name":"(anonymous_5)","decl":{"start":{"line":58,"column":2},"end":{"line":58,"column":3}},"loc":{"start":{"line":58,"column":36},"end":{"line":66,"column":3}},"line":58},"6":{"name":"(anonymous_6)","decl":{"start":{"line":68,"column":2},"end":{"line":68,"column":3}},"loc":{"start":{"line":68,"column":22},"end":{"line":70,"column":3}},"line":68},"7":{"name":"(anonymous_7)","decl":{"start":{"line":72,"column":2},"end":{"line":72,"column":3}},"loc":{"start":{"line":72,"column":27},"end":{"line":80,"column":3}},"line":72},"8":{"name":"(anonymous_8)","decl":{"start":{"line":82,"column":2},"end":{"line":82,"column":3}},"loc":{"start":{"line":82,"column":29},"end":{"line":84,"column":3}},"line":82},"9":{"name":"(anonymous_9)","decl":{"start":{"line":86,"column":2},"end":{"line":86,"column":3}},"loc":{"start":{"line":86,"column":34},"end":{"line":94,"column":3}},"line":86},"10":{"name":"(anonymous_10)","decl":{"start":{"line":96,"column":2},"end":{"line":96,"column":3}},"loc":{"start":{"line":96,"column":20},"end":{"line":98,"column":3}},"line":96},"11":{"name":"(anonymous_11)","decl":{"start":{"line":100,"column":2},"end":{"line":100,"column":3}},"loc":{"start":{"line":100,"column":25},"end":{"line":108,"column":3}},"line":100},"12":{"name":"(anonymous_12)","decl":{"start":{"line":110,"column":2},"end":{"line":110,"column":3}},"loc":{"start":{"line":110,"column":18},"end":{"line":112,"column":3}},"line":110},"13":{"name":"(anonymous_13)","decl":{"start":{"line":114,"column":2},"end":{"line":114,"column":3}},"loc":{"start":{"line":114,"column":23},"end":{"line":122,"column":3}},"line":114},"14":{"name":"(anonymous_14)","decl":{"start":{"line":124,"column":2},"end":{"line":124,"column":3}},"loc":{"start":{"line":124,"column":29},"end":{"line":126,"column":3}},"line":124},"15":{"name":"(anonymous_15)","decl":{"start":{"line":128,"column":2},"end":{"line":128,"column":3}},"loc":{"start":{"line":128,"column":34},"end":{"line":136,"column":3}},"line":128},"16":{"name":"(anonymous_16)","decl":{"start":{"line":138,"column":2},"end":{"line":138,"column":3}},"loc":{"start":{"line":138,"column":13},"end":{"line":148,"column":3}},"line":138},"17":{"name":"(anonymous_17)","decl":{"start":{"line":150,"column":2},"end":{"line":150,"column":3}},"loc":{"start":{"line":150,"column":23},"end":{"line":158,"column":3}},"line":150},"18":{"name":"(anonymous_18)","decl":{"start":{"line":160,"column":17},"end":{"line":160,"column":18}},"loc":{"start":{"line":160,"column":68},"end":{"line":176,"column":3}},"line":160},"19":{"name":"(anonymous_19)","decl":{"start":{"line":166,"column":34},"end":{"line":166,"column":35}},"loc":{"start":{"line":166,"column":61},"end":{"line":173,"column":5}},"line":166}},"branchMap":{"0":{"loc":{"start":{"line":33,"column":6},"end":{"line":35,"column":7}},"type":"if","locations":[{"start":{"line":33,"column":6},"end":{"line":35,"column":7}},{"start":{},"end":{}}],"line":33},"1":{"loc":{"start":{"line":45,"column":4},"end":{"line":51,"column":5}},"type":"if","locations":[{"start":{"line":45,"column":4},"end":{"line":51,"column":5}},{"start":{"line":47,"column":11},"end":{"line":51,"column":5}}],"line":45},"2":{"loc":{"start":{"line":45,"column":8},"end":{"line":45,"column":57}},"type":"binary-expr","locations":[{"start":{"line":45,"column":8},"end":{"line":45,"column":27}},{"start":{"line":45,"column":31},"end":{"line":45,"column":57}}],"line":45},"3":{"loc":{"start":{"line":59,"column":4},"end":{"line":65,"column":5}},"type":"if","locations":[{"start":{"line":59,"column":4},"end":{"line":65,"column":5}},{"start":{"line":61,"column":11},"end":{"line":65,"column":5}}],"line":59},"4":{"loc":{"start":{"line":59,"column":8},"end":{"line":59,"column":57}},"type":"binary-expr","locations":[{"start":{"line":59,"column":8},"end":{"line":59,"column":27}},{"start":{"line":59,"column":31},"end":{"line":59,"column":57}}],"line":59},"5":{"loc":{"start":{"line":73,"column":4},"end":{"line":79,"column":5}},"type":"if","locations":[{"start":{"line":73,"column":4},"end":{"line":79,"column":5}},{"start":{"line":75,"column":11},"end":{"line":79,"column":5}}],"line":73},"6":{"loc":{"start":{"line":73,"column":8},"end":{"line":73,"column":57}},"type":"binary-expr","locations":[{"start":{"line":73,"column":8},"end":{"line":73,"column":27}},{"start":{"line":73,"column":31},"end":{"line":73,"column":57}}],"line":73},"7":{"loc":{"start":{"line":87,"column":4},"end":{"line":93,"column":5}},"type":"if","locations":[{"start":{"line":87,"column":4},"end":{"line":93,"column":5}},{"start":{"line":89,"column":11},"end":{"line":93,"column":5}}],"line":87},"8":{"loc":{"start":{"line":87,"column":8},"end":{"line":87,"column":57}},"type":"binary-expr","locations":[{"start":{"line":87,"column":8},"end":{"line":87,"column":27}},{"start":{"line":87,"column":31},"end":{"line":87,"column":57}}],"line":87},"9":{"loc":{"start":{"line":101,"column":4},"end":{"line":107,"column":5}},"type":"if","locations":[{"start":{"line":101,"column":4},"end":{"line":107,"column":5}},{"start":{"line":103,"column":11},"end":{"line":107,"column":5}}],"line":101},"10":{"loc":{"start":{"line":101,"column":8},"end":{"line":101,"column":57}},"type":"binary-expr","locations":[{"start":{"line":101,"column":8},"end":{"line":101,"column":27}},{"start":{"line":101,"column":31},"end":{"line":101,"column":57}}],"line":101},"11":{"loc":{"start":{"line":115,"column":4},"end":{"line":121,"column":5}},"type":"if","locations":[{"start":{"line":115,"column":4},"end":{"line":121,"column":5}},{"start":{"line":117,"column":11},"end":{"line":121,"column":5}}],"line":115},"12":{"loc":{"start":{"line":115,"column":8},"end":{"line":115,"column":57}},"type":"binary-expr","locations":[{"start":{"line":115,"column":8},"end":{"line":115,"column":27}},{"start":{"line":115,"column":31},"end":{"line":115,"column":57}}],"line":115},"13":{"loc":{"start":{"line":129,"column":4},"end":{"line":135,"column":5}},"type":"if","locations":[{"start":{"line":129,"column":4},"end":{"line":135,"column":5}},{"start":{"line":131,"column":11},"end":{"line":135,"column":5}}],"line":129},"14":{"loc":{"start":{"line":129,"column":8},"end":{"line":129,"column":57}},"type":"binary-expr","locations":[{"start":{"line":129,"column":8},"end":{"line":129,"column":27}},{"start":{"line":129,"column":31},"end":{"line":129,"column":57}}],"line":129},"15":{"loc":{"start":{"line":161,"column":4},"end":{"line":161,"column":59}},"type":"if","locations":[{"start":{"line":161,"column":4},"end":{"line":161,"column":59}},{"start":{},"end":{}}],"line":161},"16":{"loc":{"start":{"line":163,"column":4},"end":{"line":163,"column":74}},"type":"if","locations":[{"start":{"line":163,"column":4},"end":{"line":163,"column":74}},{"start":{},"end":{}}],"line":163},"17":{"loc":{"start":{"line":168,"column":6},"end":{"line":169,"column":15}},"type":"if","locations":[{"start":{"line":168,"column":6},"end":{"line":169,"column":15}},{"start":{},"end":{}}],"line":168},"18":{"loc":{"start":{"line":168,"column":10},"end":{"line":168,"column":77}},"type":"binary-expr","locations":[{"start":{"line":168,"column":10},"end":{"line":168,"column":35}},{"start":{"line":168,"column":39},"end":{"line":168,"column":77}}],"line":168}},"s":{"0":41,"1":41,"2":41,"3":41,"4":41,"5":41,"6":41,"7":9,"8":2,"9":2,"10":2,"11":2,"12":2,"13":2,"14":11,"15":11,"16":1,"17":1,"18":42,"19":56,"20":55,"21":1,"22":35,"23":56,"24":55,"25":1,"26":59,"27":52,"28":51,"29":1,"30":36,"31":54,"32":53,"33":1,"34":33,"35":52,"36":51,"37":1,"38":21,"39":52,"40":51,"41":1,"42":40,"43":54,"44":53,"45":1,"46":3,"47":9,"48":9,"49":9,"50":9,"51":9,"52":9,"53":9,"54":9,"55":10,"56":6,"57":4,"58":0,"59":4,"60":4,"61":29,"62":18,"63":11,"64":4},"f":{"0":41,"1":2,"2":42,"3":56,"4":35,"5":56,"6":59,"7":52,"8":36,"9":54,"10":33,"11":52,"12":21,"13":52,"14":40,"15":54,"16":3,"17":9,"18":10,"19":29},"b":{"0":[1,10],"1":[55,1],"2":[56,56],"3":[55,1],"4":[56,56],"5":[51,1],"6":[52,52],"7":[53,1],"8":[54,54],"9":[51,1],"10":[52,52],"11":[51,1],"12":[52,52],"13":[53,1],"14":[54,54],"15":[6,4],"16":[0,4],"17":[18,11],"18":[29,28]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"04a5819d12b0769ee5c40afda6883b3f77cd4aee"} +,"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\email\\index.ts": {"path":"C:\\GitHub\\docspace\\client\\packages\\shared\\utils\\email\\index.ts","statementMap":{},"fnMap":{},"branchMap":{},"s":{},"f":{},"b":{},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"1332c8d25d73ded1a2e0e7651b09e4ee90175cf7"} +} diff --git a/packages/shared/coverage/lcov-report/base.css b/packages/shared/coverage/lcov-report/base.css new file mode 100644 index 0000000000..f418035b46 --- /dev/null +++ b/packages/shared/coverage/lcov-report/base.css @@ -0,0 +1,224 @@ +body, html { + margin:0; padding: 0; + height: 100%; +} +body { + font-family: Helvetica Neue, Helvetica, Arial; + font-size: 14px; + color:#333; +} +.small { font-size: 12px; } +*, *:after, *:before { + -webkit-box-sizing:border-box; + -moz-box-sizing:border-box; + box-sizing:border-box; + } +h1 { font-size: 20px; margin: 0;} +h2 { font-size: 14px; } +pre { + font: 12px/1.4 Consolas, "Liberation Mono", Menlo, Courier, monospace; + margin: 0; + padding: 0; + -moz-tab-size: 2; + -o-tab-size: 2; + tab-size: 2; +} +a { color:#0074D9; text-decoration:none; } +a:hover { text-decoration:underline; } +.strong { font-weight: bold; } +.space-top1 { padding: 10px 0 0 0; } +.pad2y { padding: 20px 0; } +.pad1y { padding: 10px 0; } +.pad2x { padding: 0 20px; } +.pad2 { padding: 20px; } +.pad1 { padding: 10px; } +.space-left2 { padding-left:55px; } +.space-right2 { padding-right:20px; } +.center { text-align:center; } +.clearfix { display:block; } +.clearfix:after { + content:''; + display:block; + height:0; + clear:both; + visibility:hidden; + } +.fl { float: left; } +@media only screen and (max-width:640px) { + .col3 { width:100%; max-width:100%; } + .hide-mobile { display:none!important; } +} + +.quiet { + color: #7f7f7f; + color: rgba(0,0,0,0.5); +} +.quiet a { opacity: 0.7; } + +.fraction { + font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; + font-size: 10px; + color: #555; + background: #E8E8E8; + padding: 4px 5px; + border-radius: 3px; + vertical-align: middle; +} + +div.path a:link, div.path a:visited { color: #333; } +table.coverage { + border-collapse: collapse; + margin: 10px 0 0 0; + padding: 0; +} + +table.coverage td { + margin: 0; + padding: 0; + vertical-align: top; +} +table.coverage td.line-count { + text-align: right; + padding: 0 5px 0 20px; +} +table.coverage td.line-coverage { + text-align: right; + padding-right: 10px; + min-width:20px; +} + +table.coverage td span.cline-any { + display: inline-block; + padding: 0 5px; + width: 100%; +} +.missing-if-branch { + display: inline-block; + margin-right: 5px; + border-radius: 3px; + position: relative; + padding: 0 4px; + background: #333; + color: yellow; +} + +.skip-if-branch { + display: none; + margin-right: 10px; + position: relative; + padding: 0 4px; + background: #ccc; + color: white; +} +.missing-if-branch .typ, .skip-if-branch .typ { + color: inherit !important; +} +.coverage-summary { + border-collapse: collapse; + width: 100%; +} +.coverage-summary tr { border-bottom: 1px solid #bbb; } +.keyline-all { border: 1px solid #ddd; } +.coverage-summary td, .coverage-summary th { padding: 10px; } +.coverage-summary tbody { border: 1px solid #bbb; } +.coverage-summary td { border-right: 1px solid #bbb; } +.coverage-summary td:last-child { border-right: none; } +.coverage-summary th { + text-align: left; + font-weight: normal; + white-space: nowrap; +} +.coverage-summary th.file { border-right: none !important; } +.coverage-summary th.pct { } +.coverage-summary th.pic, +.coverage-summary th.abs, +.coverage-summary td.pct, +.coverage-summary td.abs { text-align: right; } +.coverage-summary td.file { white-space: nowrap; } +.coverage-summary td.pic { min-width: 120px !important; } +.coverage-summary tfoot td { } + +.coverage-summary .sorter { + height: 10px; + width: 7px; + display: inline-block; + margin-left: 0.5em; + background: url(sort-arrow-sprite.png) no-repeat scroll 0 0 transparent; +} +.coverage-summary .sorted .sorter { + background-position: 0 -20px; +} +.coverage-summary .sorted-desc .sorter { + background-position: 0 -10px; +} +.status-line { height: 10px; } +/* yellow */ +.cbranch-no { background: yellow !important; color: #111; } +/* dark red */ +.red.solid, .status-line.low, .low .cover-fill { background:#C21F39 } +.low .chart { border:1px solid #C21F39 } +.highlighted, +.highlighted .cstat-no, .highlighted .fstat-no, .highlighted .cbranch-no{ + background: #C21F39 !important; +} +/* medium red */ +.cstat-no, .fstat-no, .cbranch-no, .cbranch-no { background:#F6C6CE } +/* light red */ +.low, .cline-no { background:#FCE1E5 } +/* light green */ +.high, .cline-yes { background:rgb(230,245,208) } +/* medium green */ +.cstat-yes { background:rgb(161,215,106) } +/* dark green */ +.status-line.high, .high .cover-fill { background:rgb(77,146,33) } +.high .chart { border:1px solid rgb(77,146,33) } +/* dark yellow (gold) */ +.status-line.medium, .medium .cover-fill { background: #f9cd0b; } +.medium .chart { border:1px solid #f9cd0b; } +/* light yellow */ +.medium { background: #fff4c2; } + +.cstat-skip { background: #ddd; color: #111; } +.fstat-skip { background: #ddd; color: #111 !important; } +.cbranch-skip { background: #ddd !important; color: #111; } + +span.cline-neutral { background: #eaeaea; } + +.coverage-summary td.empty { + opacity: .5; + padding-top: 4px; + padding-bottom: 4px; + line-height: 1; + color: #888; +} + +.cover-fill, .cover-empty { + display:inline-block; + height: 12px; +} +.chart { + line-height: 0; +} +.cover-empty { + background: white; +} +.cover-full { + border-right: none !important; +} +pre.prettyprint { + border: none !important; + padding: 0 !important; + margin: 0 !important; +} +.com { color: #999 !important; } +.ignore-none { color: #999; font-weight: normal; } + +.wrapper { + min-height: 100%; + height: auto !important; + height: 100%; + margin: 0 auto -48px; +} +.footer, .push { + height: 48px; +} diff --git a/packages/shared/coverage/lcov-report/block-navigation.js b/packages/shared/coverage/lcov-report/block-navigation.js new file mode 100644 index 0000000000..cc12130231 --- /dev/null +++ b/packages/shared/coverage/lcov-report/block-navigation.js @@ -0,0 +1,87 @@ +/* eslint-disable */ +var jumpToCode = (function init() { + // Classes of code we would like to highlight in the file view + var missingCoverageClasses = ['.cbranch-no', '.cstat-no', '.fstat-no']; + + // Elements to highlight in the file listing view + var fileListingElements = ['td.pct.low']; + + // We don't want to select elements that are direct descendants of another match + var notSelector = ':not(' + missingCoverageClasses.join('):not(') + ') > '; // becomes `:not(a):not(b) > ` + + // Selecter that finds elements on the page to which we can jump + var selector = + fileListingElements.join(', ') + + ', ' + + notSelector + + missingCoverageClasses.join(', ' + notSelector); // becomes `:not(a):not(b) > a, :not(a):not(b) > b` + + // The NodeList of matching elements + var missingCoverageElements = document.querySelectorAll(selector); + + var currentIndex; + + function toggleClass(index) { + missingCoverageElements + .item(currentIndex) + .classList.remove('highlighted'); + missingCoverageElements.item(index).classList.add('highlighted'); + } + + function makeCurrent(index) { + toggleClass(index); + currentIndex = index; + missingCoverageElements.item(index).scrollIntoView({ + behavior: 'smooth', + block: 'center', + inline: 'center' + }); + } + + function goToPrevious() { + var nextIndex = 0; + if (typeof currentIndex !== 'number' || currentIndex === 0) { + nextIndex = missingCoverageElements.length - 1; + } else if (missingCoverageElements.length > 1) { + nextIndex = currentIndex - 1; + } + + makeCurrent(nextIndex); + } + + function goToNext() { + var nextIndex = 0; + + if ( + typeof currentIndex === 'number' && + currentIndex < missingCoverageElements.length - 1 + ) { + nextIndex = currentIndex + 1; + } + + makeCurrent(nextIndex); + } + + return function jump(event) { + if ( + document.getElementById('fileSearch') === document.activeElement && + document.activeElement != null + ) { + // if we're currently focused on the search input, we don't want to navigate + return; + } + + switch (event.which) { + case 78: // n + case 74: // j + goToNext(); + break; + case 66: // b + case 75: // k + case 80: // p + goToPrevious(); + break; + } + }; +})(); +window.addEventListener('keydown', jumpToCode); diff --git a/packages/shared/coverage/lcov-report/components/aside/Aside.styled.tsx.html b/packages/shared/coverage/lcov-report/components/aside/Aside.styled.tsx.html new file mode 100644 index 0000000000..35a55d0426 --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/aside/Aside.styled.tsx.html @@ -0,0 +1,544 @@ + + + + + + Code coverage report for components/aside/Aside.styled.tsx + + + + + + + + + +
+
+

All files / components/aside Aside.styled.tsx

+
+ +
+ 100% + Statements + 23/23 +
+ + +
+ 31.25% + Branches + 10/32 +
+ + +
+ 100% + Functions + 16/16 +
+ + +
+ 100% + Lines + 23/23 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101 +102 +103 +104 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124 +125 +126 +127 +128 +129 +130 +131 +132 +133 +134 +135 +136 +137 +138 +139 +140 +141 +142 +143 +144 +145 +146 +147 +148 +149 +150 +151 +152 +153 +154  +  +  +  +  +  +  +  +  +  +1x +  +  +  +  +  +  +1x +  +1x +1x +1x +  +  +1x +  +  +1x +  +  +  +  +  +  +  +  +  +  +  +  +  +1x +1x +1x +  +  +  +  +  +  +1x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +1x +  +  +  +  +  +  +  +1x +  +  +  +  +  +1x +  +  +  +1x +  +1x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +1x +  +  +  +  +  +  +  +1x +  +  +  +  +  +  +  +  +  +  +  +  +1x +  +  +  +  +  +  +  +  +  +  +  +1x +  +1x +  +  +  +  +1x +  +  +  +1x +  +  + 
import React from "react";
+import styled, { css } from "styled-components";
+ 
+import CrossReactSvg from "PUBLIC_DIR/images/cross.react.svg";
+ 
+import { Base } from "../../themes";
+import { MOBILE_FOOTER_HEIGHT } from "../../constants";
+import { tablet, mobile } from "../../utils";
+import { StyledAsideProps } from "./Aside.types";
+ 
+const Container = ({
+  visible,
+  scale,
+  zIndex,
+  contentPaddingBottom,
+  forwardRef,
+  ...props
+}: StyledAsideProps) => <aside ref={forwardRef} {...props} />;
+ 
+const StyledAside = styled(Container)`
+  background-color: ${(props) => props.theme.aside.backgroundColor};
+  height: ${(props) => props.theme.aside.height};
+ 
+  position: fixed;
+  top: ${(props) => props.theme.aside.top};
+ 
+  ${(props) =>
+    props.theme.interfaceDirection === "rtl"
+      ? css`
+          left: ${props.theme.aside.right};
+          transform: translateX(
+            ${props.visible ? "0" : props.scale ? "-100%" : "-480px"}
+          );
+        `
+      : css`
+          right: ${props.theme.aside.right};
+          transform: translateX(
+            ${props.visible ? "0" : props.scale ? "100%" : "480px"}
+          );
+        `}
+ 
+  transition: ${(props) => props.theme.aside.transition};
+  width: ${(props) => (props.scale ? "100%" : "480px")};
+  z-index: ${(props) => props.zIndex};
+  box-sizing: border-box;
+ 
+  @media ${tablet} {
+    max-width: calc(100% - 69px);
+ 
+    ${(props) =>
+      props.theme.interfaceDirection === "rtl"
+        ? css`
+            transform: translateX(
+              ${props.visible ? "0" : props.scale ? "-100%" : "-480px"}
+            );
+          `
+        : css`
+            transform: translateX(
+              ${props.visible ? "0" : props.scale ? "100%" : "480px"}
+            );
+          `}
+  }
+ 
+  @media ${mobile} {
+    bottom: 0;
+    top: unset;
+    height: ${`calc(100% - ${MOBILE_FOOTER_HEIGHT})`};
+ 
+    width: 100%;
+    max-width: 100%;
+    transform: translateY(${(props) => (props.visible ? "0" : "100%")});
+    aside:not(:first-child) {
+      height: 100%;
+    }
+  }
+ 
+  &.modal-dialog-aside {
+    padding-bottom: ${(props) =>
+      props.contentPaddingBottom
+        ? props.contentPaddingBottom
+        : props.theme.aside.paddingBottom};
+ 
+    .modal-dialog-aside-footer {
+      position: fixed;
+      bottom: ${(props) => props.theme.aside.bottom};
+    }
+  }
+`;
+StyledAside.defaultProps = { theme: Base };
+ 
+const StyledControlContainer = styled.div`
+  display: flex;
+ 
+  width: 17px;
+  height: 17px;
+  position: absolute;
+ 
+  cursor: pointer;
+ 
+  align-items: center;
+  justify-content: center;
+  z-index: 450;
+ 
+  top: 18px;
+ 
+  ${(props) =>
+    props.theme.interfaceDirection === "rtl" ? `right: -27px;` : `left: -27px;`}
+ 
+  @media ${tablet} {
+    display: flex;
+ 
+    top: 18px;
+ 
+    ${(props) =>
+      props.theme.interfaceDirection === "rtl"
+        ? `right: -27px;`
+        : `left: -27px;`}
+  }
+ 
+  @media ${mobile} {
+    display: flex;
+ 
+    top: -27px;
+    right: 10px;
+    left: unset;
+ 
+    ${(props) =>
+      props.theme.interfaceDirection === "rtl"
+        ? css`
+            right: unset;
+            left: 10px;
+          `
+        : css`
+            right: 10px;
+            left: unset;
+          `}
+  }
+`;
+ 
+StyledControlContainer.defaultProps = { theme: Base };
+ 
+const StyledCrossIcon = styled(CrossReactSvg)`
+  width: 17px;
+  height: 17px;
+  z-index: 455;
+  path {
+    fill: ${(props) => props.theme.catalog.control.fill};
+  }
+`;
+ 
+StyledCrossIcon.defaultProps = { theme: Base };
+ 
+export { StyledAside, StyledControlContainer, StyledCrossIcon };
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/aside/index.html b/packages/shared/coverage/lcov-report/components/aside/index.html new file mode 100644 index 0000000000..be9ff7ae91 --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/aside/index.html @@ -0,0 +1,131 @@ + + + + + + Code coverage report for components/aside + + + + + + + + + +
+
+

All files components/aside

+
+ +
+ 66.66% + Statements + 38/57 +
+ + +
+ 28.84% + Branches + 15/52 +
+ + +
+ 95% + Functions + 19/20 +
+ + +
+ 67.85% + Lines + 38/56 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
Aside.styled.tsx +
+
100%23/2331.25%10/32100%16/16100%23/23
index.tsx +
+
44.11%15/3425%5/2075%3/445.45%15/33
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/aside/index.tsx.html b/packages/shared/coverage/lcov-report/components/aside/index.tsx.html new file mode 100644 index 0000000000..7f23c9aa66 --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/aside/index.tsx.html @@ -0,0 +1,418 @@ + + + + + + Code coverage report for components/aside/index.tsx + + + + + + + + + +
+
+

All files / components/aside index.tsx

+
+ +
+ 44.11% + Statements + 15/34 +
+ + +
+ 25% + Branches + 5/20 +
+ + +
+ 75% + Functions + 3/4 +
+ + +
+ 45.45% + Lines + 15/33 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101 +102 +103 +104 +105 +106 +107 +108 +109 +110 +111 +112  +  +  +  +  +  +  +  +  +  +  +  +1x +  +  +  +  +  +  +  +  +  +1x +1x +1x +1x +1x +  +1x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +1x +1x +  +  +  +1x +1x +1x +  +  +  +1x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +1x +  +  +  +  +  +1x +  +  + 
import React from "react";
+import { isMobileOnly, isIOS } from "react-device-detect";
+ 
+import { Scrollbar, ScrollbarType } from "../scrollbar";
+ 
+import {
+  StyledAside,
+  StyledControlContainer,
+  StyledCrossIcon,
+} from "./Aside.styled";
+import { AsideProps } from "./Aside.types";
+ 
+const AsidePure = (props: AsideProps) => {
+  const {
+    visible,
+    children,
+    scale,
+    zIndex,
+    className,
+    contentPaddingBottom,
+    withoutBodyScroll,
+    onClose,
+  } = props;
+  const [windowHeight] = React.useState(window.innerHeight);
+  const contentRef = React.useRef<HTMLElement | null>(null);
+  const diffRef = React.useRef<number | null>(null);
+  const visualPageTop = React.useRef(0);
+ 
+  const onResize = React.useCallback(
+    (e: Event) => {
+      if (!contentRef.current) return;
+ 
+      const target = e.target as VisualViewport;
+ 
+      if (e?.type === "resize") {
+        const diff = windowHeight - target.height - target.pageTop;
+ 
+        visualPageTop.current = target.pageTop;
+ 
+        contentRef.current.style.bottom = `${diff}px`;
+ 
+        contentRef.current.style.height = `${
+          target.height - 64 + target.pageTop
+        }px`;
+ 
+        contentRef.current.style.position = "fixed";
+ 
+        diffRef.current = diff;
+      } else if (e?.type === "scroll") {
+        const diff = window.visualViewport?.pageTop ? 0 : visualPageTop.current;
+ 
+        if (diffRef.current)
+          contentRef.current.style.bottom = `${diffRef.current + diff}px`;
+ 
+        if (window.visualViewport)
+          contentRef.current.style.height = `${
+            window.visualViewport.height - 64 + diff
+          }px`;
+ 
+        contentRef.current.style.position = "fixed";
+      }
+    },
+    [windowHeight],
+  );
+ 
+  React.useEffect(() => {
+    Iif (isMobileOnly && isIOS) {
+      window.visualViewport?.addEventListener("resize", onResize);
+      window.visualViewport?.addEventListener("scroll", onResize);
+    }
+    return () => {
+      window.visualViewport?.removeEventListener("resize", onResize);
+      window.visualViewport?.removeEventListener("scroll", onResize);
+    };
+  }, [onResize]);
+ 
+  return (
+    <StyledAside
+      visible={visible}
+      scale={scale}
+      zIndex={zIndex}
+      contentPaddingBottom={contentPaddingBottom}
+      className={`${className} not-selectable aside`}
+      forwardRef={contentRef}
+      data-testid="aside"
+    >
+      {/* <CloseButton  displayType="aside" zIndex={zIndex}/> */}
+      {withoutBodyScroll ? (
+        children
+      ) : (
+        <Scrollbar stype={ScrollbarType.mediumBlack}>{children}</Scrollbar>
+      )}
+ 
+      {visible && (
+        <StyledControlContainer className="close-button" onClick={onClose}>
+          <StyledCrossIcon />
+        </StyledControlContainer>
+      )}
+    </StyledAside>
+  );
+};
+ 
+AsidePure.defaultProps = {
+  scale: false,
+  zIndex: 400,
+  withoutBodyScroll: false,
+};
+ 
+const Aside = React.memo(AsidePure);
+ 
+export { Aside };
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/avatar/Avatar.enums.ts.html b/packages/shared/coverage/lcov-report/components/avatar/Avatar.enums.ts.html new file mode 100644 index 0000000000..a74b5779f0 --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/avatar/Avatar.enums.ts.html @@ -0,0 +1,139 @@ + + + + + + Code coverage report for components/avatar/Avatar.enums.ts + + + + + + + + + +
+
+

All files / components/avatar Avatar.enums.ts

+
+ +
+ 0% + Statements + 0/0 +
+ + +
+ 0% + Branches + 0/0 +
+ + +
+ 0% + Functions + 0/0 +
+ + +
+ 0% + Lines + 0/0 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  + 
export const enum AvatarRole {
+  owner = "owner",
+  admin = "admin",
+  guest = "guest",
+  user = "user",
+  manager = "manager",
+  collaborator = "collaborator",
+  none = "",
+}
+ 
+export const enum AvatarSize {
+  max = "max",
+  big = "big",
+  medium = "medium",
+  base = "base",
+  small = "small",
+  min = "min",
+}
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/avatar/Avatar.styled.ts.html b/packages/shared/coverage/lcov-report/components/avatar/Avatar.styled.ts.html new file mode 100644 index 0000000000..20106e4970 --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/avatar/Avatar.styled.ts.html @@ -0,0 +1,748 @@ + + + + + + Code coverage report for components/avatar/Avatar.styled.ts + + + + + + + + + +
+
+

All files / components/avatar Avatar.styled.ts

+
+ +
+ 81.69% + Statements + 58/71 +
+ + +
+ 36% + Branches + 9/25 +
+ + +
+ 74% + Functions + 37/50 +
+ + +
+ 81.69% + Lines + 58/71 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101 +102 +103 +104 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124 +125 +126 +127 +128 +129 +130 +131 +132 +133 +134 +135 +136 +137 +138 +139 +140 +141 +142 +143 +144 +145 +146 +147 +148 +149 +150 +151 +152 +153 +154 +155 +156 +157 +158 +159 +160 +161 +162 +163 +164 +165 +166 +167 +168 +169 +170 +171 +172 +173 +174 +175 +176 +177 +178 +179 +180 +181 +182 +183 +184 +185 +186 +187 +188 +189 +190 +191 +192 +193 +194 +195 +196 +197 +198 +199 +200 +201 +202 +203 +204 +205 +206 +207 +208 +209 +210 +211 +212 +213 +214 +215 +216 +217 +218 +219 +220 +221 +222  +  +  +  +  +  +  +  +  +1x +  +  +  +1x +  +1x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +1x +  +1x +1x +1x +  +  +1x +  +  +  +  +  +  +1x +1x +  +1x +1x +  +1x +  +  +  +1x +  +1x +1x +1x +1x +  +1x +  +  +  +  +  +1x +  +  +  +1x +  +  +  +  +  +1x +  +  +  +  +  +1x +  +  +  +  +  +1x +  +  +  +  +  +1x +  +1x +  +  +  +  +  +1x +  +1x +  +1x +1x +1x +1x +1x +1x +  +  +  +  +1x +  +1x +  +  +  +  +  +  +  +1x +  +1x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +1x +  +1x +2x +1x +1x +  +1x +  +1x +1x +1x +1x +  +  +  +  +  +  +1x +  +  +1x +  +  +1x +  +  +  +  +  +1x +  +  +1x +  +  +1x +  +  +  +  +  +1x +  +  +1x +  +  +1x +  +  +  +1x +  +  +  +  +  +  +  +  +  +  +  + 
import styled from "styled-components";
+ 
+import { ThemeType, Base } from "../../themes";
+import { NoUserSelect } from "../../constants";
+import { commonIconsStyles } from "../../utils";
+ 
+import { CameraReactSvg } from "./svg";
+import { AvatarSize } from "./Avatar.enums";
+ 
+const EmptyIcon = styled(CameraReactSvg)`
+  ${commonIconsStyles}
+  border-radius: ${(props) => props.theme.avatar.image.borderRadius};
+`;
+EmptyIcon.defaultProps = { theme: Base };
+ 
+const EditContainer = styled.div`
+  position: absolute;
+  display: flex;
+ 
+  ${(props) =>
+    props.theme.interfaceDirection === "rtl"
+      ? `left: ${props.theme.avatar.editContainer.right};`
+      : `right: ${props.theme.avatar.editContainer.right};`}
+ 
+  bottom: ${(props) => props.theme.avatar.editContainer.bottom};
+  background-color: ${(props) =>
+    props.theme.avatar.editContainer.backgroundColor};
+  border-radius: ${(props) => props.theme.avatar.editContainer.borderRadius};
+  height: ${(props) => props.theme.avatar.editContainer.height};
+  width: ${(props) => props.theme.avatar.editContainer.width};
+  align-items: center;
+  justify-content: center;
+ 
+  .edit_icon {
+    svg {
+      path {
+        fill: ${(props) => props.theme.avatar.editContainer.fill};
+      }
+    }
+  }
+`;
+EditContainer.defaultProps = { theme: Base };
+ 
+const AvatarWrapper = styled.div<{ source: string; userName: string }>`
+  border-radius: ${(props) => props.theme.avatar.imageContainer.borderRadius};
+  height: ${(props) => props.theme.avatar.imageContainer.height};
+ 
+  background-color: ${(props) =>
+    props.source
+      ? props.theme.avatar.icon.background
+      : props.userName
+        ? props.theme.avatar.imageContainer.backgroundImage
+        : props.theme.avatar.imageContainer.background};
+ 
+  & > svg {
+    display: ${(props) => props.theme.avatar.imageContainer.svg.display};
+    width: ${(props) => props.theme.avatar.imageContainer.svg.width} !important;
+    height: ${(props) =>
+      props.theme.avatar.imageContainer.svg.height} !important;
+    margin: ${(props) => props.theme.avatar.imageContainer.svg.margin};
+    path {
+      fill: ${(props) => props.theme.avatar.imageContainer.svg.fill};
+    }
+  }
+`;
+AvatarWrapper.defaultProps = { theme: Base };
+ 
+const rightStyle = (props: { size: AvatarSize; theme: ThemeType }) =>
+  props.theme.avatar.roleWrapperContainer.right[props.size];
+const bottomStyle = (props: { size: AvatarSize; theme: ThemeType }) =>
+  props.theme.avatar.roleWrapperContainer.bottom[props.size];
+ 
+const RoleWrapper = styled.div<{
+  size: AvatarSize;
+  theme: ThemeType;
+}>`
+  position: absolute;
+  ${(props) =>
+    props.theme.interfaceDirection === "rtl"
+      ? `left: ${rightStyle(props)};`
+      : `right ${rightStyle(props)};`}
+ 
+  bottom: ${(props) => bottomStyle(props)};
+ 
+  display: flex;
+  align-items: center;
+ 
+  height: ${(props) =>
+    (props.size === AvatarSize.max &&
+      props.theme.avatar.roleWrapperContainer.height.max) ||
+    (props.size === AvatarSize.medium &&
+      props.theme.avatar.roleWrapperContainer.height.medium) ||
+    "16px"};
+  width: ${(props) =>
+    (props.size === AvatarSize.max &&
+      props.theme.avatar.roleWrapperContainer.width.max) ||
+    (props.size === AvatarSize.medium &&
+      props.theme.avatar.roleWrapperContainer.width.medium) ||
+    "16px"};
+  min-width: ${(props) =>
+    (props.size === AvatarSize.max &&
+      props.theme.avatar.roleWrapperContainer.width.max) ||
+    (props.size === AvatarSize.medium &&
+      props.theme.avatar.roleWrapperContainer.width.medium) ||
+    "16px"};
+`;
+RoleWrapper.defaultProps = { theme: Base };
+ 
+const fontSizeStyle = ({
+  size,
+  theme,
+}: {
+  size: AvatarSize;
+  theme: ThemeType;
+}) => theme.avatar.initialsContainer.fontSize[size];
+ 
+const NamedAvatar = styled.div<{ size: AvatarSize }>`
+  position: absolute;
+  color: ${(props) => props.theme.avatar.initialsContainer.color};
+  left: ${(props) => props.theme.avatar.initialsContainer.left};
+  top: ${(props) => props.theme.avatar.initialsContainer.top};
+  transform: ${(props) => props.theme.avatar.initialsContainer.transform};
+  font-weight: ${(props) => props.theme.avatar.initialsContainer.fontWeight};
+  font-size: ${(props) => props.theme.getCorrectFontSize(fontSizeStyle(props))};
+ 
+  ${NoUserSelect}
+`;
+ 
+NamedAvatar.defaultProps = { theme: Base };
+ 
+const StyledImage = styled.img<{ isDefault?: boolean }>`
+  width: ${(props) => props.theme.avatar.image.width};
+  height: ${(props) => props.theme.avatar.image.height};
+  border-radius: ${(props) => props.theme.avatar.image.borderRadius};
+  // @ts-expect-error TS(2339): Property 'isDefault' does not exist on type 'Theme... Remove this comment to see the full error message
+  content: ${(props) => props.isDefault && props.theme.avatar.defaultImage};
+  ${NoUserSelect};
+`;
+StyledImage.defaultProps = { theme: Base };
+ 
+const StyledIconWrapper = styled.div`
+  width: 100%;
+  height: 100%;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+ 
+  .icon,
+  .icon:hover {
+    width: 50%;
+    height: 50%;
+    path {
+      fill: ${(props) => props.theme.avatar.icon.color};
+    }
+  }
+`;
+StyledIconWrapper.defaultProps = { theme: Base };
+ 
+const widthStyle = ({ size, theme }: { size: AvatarSize; theme: ThemeType }) =>
+  theme.avatar.width[size];
+const heightStyle = ({ size, theme }: { size: AvatarSize; theme: ThemeType }) =>
+  theme.avatar.height[size];
+ 
+const StyledAvatar = styled.div<{ size: AvatarSize; theme: ThemeType }>`
+  position: relative;
+  width: ${(props) => widthStyle(props)};
+  min-width: ${(props) => widthStyle(props)};
+  height: ${(props) => heightStyle(props)};
+  font-family: ${(props) => props.theme.fontFamily};
+  font-style: normal;
+ 
+  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
+ 
+  .admin_icon {
+    rect:nth-child(1) {
+      fill: ${(props) => props.theme.avatar.administrator.fill};
+    }
+    rect:nth-child(2) {
+      stroke: ${(props) => props.theme.avatar.administrator.stroke};
+    }
+    path {
+      fill: ${(props) => props.theme.avatar.administrator.color};
+    }
+  }
+ 
+  .guest_icon {
+    rect:nth-child(1) {
+      fill: ${(props) => props.theme.avatar.guest.fill};
+    }
+    rect:nth-child(2) {
+      stroke: ${(props) => props.theme.avatar.guest.stroke};
+    }
+    path {
+      fill: ${(props) => props.theme.avatar.guest.color};
+    }
+  }
+ 
+  .owner_icon {
+    rect:nth-child(1) {
+      fill: ${(props) => props.theme.avatar.owner.fill};
+    }
+    rect:nth-child(2) {
+      stroke: ${(props) => props.theme.avatar.owner.stroke};
+    }
+    path {
+      fill: ${(props) => props.theme.avatar.owner.color};
+    }
+  }
+`;
+StyledAvatar.defaultProps = { theme: Base };
+ 
+export {
+  EmptyIcon,
+  EditContainer,
+  AvatarWrapper,
+  RoleWrapper,
+  NamedAvatar,
+  StyledImage,
+  StyledIconWrapper,
+  StyledAvatar,
+};
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/avatar/index.html b/packages/shared/coverage/lcov-report/components/avatar/index.html new file mode 100644 index 0000000000..35d405db53 --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/avatar/index.html @@ -0,0 +1,146 @@ + + + + + + Code coverage report for components/avatar + + + + + + + + + +
+
+

All files components/avatar

+
+ +
+ 82% + Statements + 82/100 +
+ + +
+ 41.81% + Branches + 23/55 +
+ + +
+ 75% + Functions + 42/56 +
+ + +
+ 83.67% + Lines + 82/98 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
Avatar.enums.ts +
+
0%0/00%0/00%0/00%0/0
Avatar.styled.ts +
+
81.69%58/7136%9/2574%37/5081.69%58/71
index.tsx +
+
82.75%24/2946.66%14/3083.33%5/688.88%24/27
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/avatar/index.tsx.html b/packages/shared/coverage/lcov-report/components/avatar/index.tsx.html new file mode 100644 index 0000000000..179a7adfa6 --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/avatar/index.tsx.html @@ -0,0 +1,592 @@ + + + + + + Code coverage report for components/avatar/index.tsx + + + + + + + + + +
+
+

All files / components/avatar index.tsx

+
+ +
+ 82.75% + Statements + 24/29 +
+ + +
+ 46.66% + Branches + 14/30 +
+ + +
+ 83.33% + Functions + 5/6 +
+ + +
+ 88.88% + Lines + 24/27 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101 +102 +103 +104 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124 +125 +126 +127 +128 +129 +130 +131 +132 +133 +134 +135 +136 +137 +138 +139 +140 +141 +142 +143 +144 +145 +146 +147 +148 +149 +150 +151 +152 +153 +154 +155 +156 +157 +158 +159 +160 +161 +162 +163 +164 +165 +166 +167 +168 +169 +170  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +1x +  +  +1x +  +  +1x +1x +  +  +  +  +  +  +  +  +  +  +  +  +1x +  +  +  +1x +1x +  +  +2x +  +  +  +  +1x +  +  +  +  +  +1x +  +1x +  +  +  +  +  +  +  +  +  +  +  +1x +  +1x +  +1x +1x +  +1x +1x +  +1x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +1x +  +1x +1x +  +1x +  +  +  +  +  +1x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +1x +  +  + 
import React, { memo } from "react";
+ 
+import styled, { useTheme } from "styled-components";
+ 
+import PencilReactSvgUrl from "PUBLIC_DIR/images/pencil.react.svg?url";
+ 
+import { IconSizeType, commonIconsStyles } from "../../utils";
+ 
+import { IconButton } from "../icon-button";
+import { Text } from "../text";
+import { Tooltip } from "../tooltip";
+ 
+import {
+  EmptyIcon,
+  EditContainer,
+  AvatarWrapper,
+  RoleWrapper,
+  NamedAvatar,
+  StyledImage,
+  StyledAvatar,
+  StyledIconWrapper,
+} from "./Avatar.styled";
+ 
+import { AdministratorReactSvg, OwnerReactSvg } from "./svg";
+import { AvatarProps } from "./Avatar.types";
+import { AvatarRole, AvatarSize } from "./Avatar.enums";
+ 
+export { AvatarRole, AvatarSize };
+ 
+// const StyledGuestIcon = styled(GuestReactSvg)`
+//   ${commonIconsStyles}
+// `;
+const StyledAdministratorIcon = styled(AdministratorReactSvg)`
+  ${commonIconsStyles}
+`;
+const StyledOwnerIcon = styled(OwnerReactSvg)`
+  ${commonIconsStyles}
+`;
+const getRoleIcon = (role: AvatarRole) => {
+  switch (role) {
+    case "admin":
+      return (
+        <StyledAdministratorIcon
+          size={IconSizeType.scale}
+          className="admin_icon"
+        />
+      );
+    case "owner":
+      return (
+        <StyledOwnerIcon size={IconSizeType.scale} className="owner_icon" />
+      );
+    default:
+      return null;
+  }
+};
+ 
+const getInitials = (userName: string) =>
+  userName
+    .split(/\s/)
+    .reduce(
+      (response: string, word: string) => (response += word.slice(0, 1)),
+      "",
+    )
+    .substring(0, 2);
+ 
+const Initials = ({
+  userName,
+  size,
+}: {
+  userName: string;
+  size: AvatarSize;
+}) => <NamedAvatar size={size}>{getInitials(userName)}</NamedAvatar>;
+ 
+const AvatarPure = ({
+  size,
+  source,
+  userName,
+  role,
+  editing,
+  editAction,
+  isDefaultSource = false,
+  hideRoleIcon,
+  tooltipContent,
+  withTooltip,
+}: AvatarProps) => {
+  const defaultTheme = useTheme();
+ 
+  const interfaceDirection = defaultTheme?.interfaceDirection;
+ 
+  let isDefault = false;
+  let isIcon = false;
+ 
+  Iif (source?.includes("default_user_photo")) isDefault = true;
+  else Iif (source?.includes(".svg")) isIcon = true;
+ 
+  const avatarContent = source ? (
+    isIcon ? (
+      <StyledIconWrapper>
+        <IconButton iconName={source} className="icon" isDisabled />
+      </StyledIconWrapper>
+    ) : (
+      <StyledImage src={source} isDefault={isDefault} />
+    )
+  ) : userName ? (
+    <Initials userName={userName} size={size} />
+  ) : isDefaultSource ? (
+    <StyledImage isDefault />
+  ) : (
+    <EmptyIcon size={IconSizeType.scale} />
+  );
+ 
+  const roleIcon = getRoleIcon(role);
+ 
+  const uniqueTooltipId = withTooltip ? `roleTooltip_${Math.random()}` : "";
+  const tooltipPlace = interfaceDirection === "rtl" ? "left" : "right";
+ 
+  const getTooltipContent = ({
+    content,
+  }: {
+    [key: string]: string | number;
+  }) => <Text fontSize="12px">{content}</Text>;
+ 
+  return (
+    <StyledAvatar size={size} data-testid="avatar">
+      <AvatarWrapper
+        source={source}
+        userName={userName || ""}
+        className="avatar-wrapper"
+      >
+        {avatarContent}
+      </AvatarWrapper>
+      {editing && size === "max" ? (
+        <EditContainer>
+          <IconButton
+            className="edit_icon"
+            iconName={PencilReactSvgUrl}
+            onClick={editAction}
+            size={16}
+          />
+        </EditContainer>
+      ) : (
+        !hideRoleIcon && (
+          <>
+            <RoleWrapper
+              size={size}
+              data-tooltip-id={uniqueTooltipId}
+              data-tooltip-content={tooltipContent}
+              className="avatar_role-wrapper"
+            >
+              {roleIcon}
+            </RoleWrapper>
+            {withTooltip && (
+              <Tooltip
+                float
+                id={uniqueTooltipId}
+                getContent={getTooltipContent}
+                place={tooltipPlace}
+              />
+            )}
+          </>
+        )
+      )}
+    </StyledAvatar>
+  );
+};
+ 
+const Avatar = memo(AvatarPure);
+ 
+export { Avatar };
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/avatar/svg/index.html b/packages/shared/coverage/lcov-report/components/avatar/svg/index.html new file mode 100644 index 0000000000..d9b7bc9077 --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/avatar/svg/index.html @@ -0,0 +1,116 @@ + + + + + + Code coverage report for components/avatar/svg + + + + + + + + + +
+
+

All files components/avatar/svg

+
+ +
+ 0% + Statements + 0/0 +
+ + +
+ 0% + Branches + 0/0 +
+ + +
+ 0% + Functions + 0/0 +
+ + +
+ 0% + Lines + 0/0 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
index.ts +
+
0%0/00%0/00%0/00%0/0
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/avatar/svg/index.ts.html b/packages/shared/coverage/lcov-report/components/avatar/svg/index.ts.html new file mode 100644 index 0000000000..7d345ff870 --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/avatar/svg/index.ts.html @@ -0,0 +1,97 @@ + + + + + + Code coverage report for components/avatar/svg/index.ts + + + + + + + + + +
+
+

All files / components/avatar/svg index.ts

+
+ +
+ 0% + Statements + 0/0 +
+ + +
+ 0% + Branches + 0/0 +
+ + +
+ 0% + Functions + 0/0 +
+ + +
+ 0% + Lines + 0/0 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5  +  +  +  + 
export { default as CameraReactSvg } from "PUBLIC_DIR/images/camera.react.svg";
+export { default as AdministratorReactSvg } from "PUBLIC_DIR/images/administrator.react.svg";
+export { default as OwnerReactSvg } from "PUBLIC_DIR/images/owner.react.svg";
+export { default as GuestReactSvg } from "PUBLIC_DIR/images/guest.react.svg";
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/box/Box.styled.ts.html b/packages/shared/coverage/lcov-report/components/box/Box.styled.ts.html new file mode 100644 index 0000000000..ad39c580d1 --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/box/Box.styled.ts.html @@ -0,0 +1,520 @@ + + + + + + Code coverage report for components/box/Box.styled.ts + + + + + + + + + +
+
+

All files / components/box Box.styled.ts

+
+ +
+ 58.33% + Statements + 42/72 +
+ + +
+ 41.17% + Branches + 21/51 +
+ + +
+ 52.5% + Functions + 21/40 +
+ + +
+ 69.49% + Lines + 41/59 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101 +102 +103 +104 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124 +125 +126 +127 +128 +129 +130 +131 +132 +133 +134 +135 +136 +137 +138 +139 +140 +141 +142 +143 +144 +145 +146  +  +  +  +  +  +  +  +  +  +1x +  +1x +1x +1x +  +  +1x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +1x +1x +1x +  +1x +1x +1x +1x +1x +  +1x +  +1x +  +1x +1x +1x +1x +1x +  +1x +1x +  +1x +  +1x +  +1x +  +1x +  +  +  +1x +  +1x +  +1x +  +1x +  +1x +  +1x +  +1x +  +1x +  +1x +  +1x +  +1x +  +  +  +  +  +  +  +  +1x +  +1x +  +  +  +  +  +  +  +1x +  +  +  +  +1x +  +  +  + 
import styled from "styled-components";
+import { TInterfaceDirection } from "../../types";
+import {
+  getCorrectBorderRadius,
+  getCorrectFourValuesStyle,
+  getCorrectTextAlign,
+} from "../../utils";
+ 
+import { BoxProps } from "./Box.types";
+ 
+const alignContentStyle = (alignContent: string) =>
+  `align-content: ${alignContent};`;
+const alignItemsStyle = (alignItems: string) => `align-items: ${alignItems};`;
+const alignSelfStyle = (alignSelf: string) => `align-self: ${alignSelf};`;
+const backgroundStyle = (backgroundProp: string) =>
+  `background: ${backgroundProp};`;
+ 
+const borderStyle = (
+  borderProp:
+    | string
+    | { style: string; width: string; color: string; radius?: string },
+  interfaceDirection: TInterfaceDirection = "ltr",
+) => {
+  const styles = [];
+ 
+  if (typeof borderProp === "string") {
+    return `border: ${borderProp};`;
+  }
+ 
+  if (borderProp.style)
+    styles.push(
+      `border-style: ${getCorrectFourValuesStyle(
+        borderProp.style,
+        interfaceDirection,
+      )};`,
+    );
+ 
+  if (borderProp.width)
+    styles.push(
+      `border-width: ${getCorrectFourValuesStyle(
+        borderProp.width,
+        interfaceDirection,
+      )};`,
+    );
+ 
+  if (borderProp.color)
+    styles.push(
+      `border-color: ${getCorrectFourValuesStyle(
+        borderProp.color,
+        interfaceDirection,
+      )};`,
+    );
+ 
+  if (borderProp.radius)
+    styles.push(
+      `border-radius: ${getCorrectBorderRadius(
+        borderProp.radius,
+        interfaceDirection,
+      )};`,
+    );
+ 
+  return styles.join("\n");
+};
+ 
+const displayStyle = (displayProp: string) => `display: ${displayProp};`;
+const flexBasisStyle = (flexBasis: string) => `flex-basis: ${flexBasis};`;
+const flexDirectionStyle = (flexDirection: string) =>
+  `flex-direction: ${flexDirection};`;
+const flexStyle = (flexProp: string) => `flex: ${flexProp};`;
+const flexWrapStyle = (flexWrap: string) => `flex-wrap: ${flexWrap};`;
+const gridAreaStyle = (gridArea: string) => `grid-area: ${gridArea};`;
+const heightStyle = (heightProp: string) => `height: ${heightProp};`;
+const justifyContentStyle = (justifyContent: string) =>
+  `justify-content: ${justifyContent};`;
+const justifyItemsStyle = (justifyItems: string) =>
+  `justify-items: ${justifyItems};`;
+const justifySelfStyle = (justifySelf: string) =>
+  `justify-self: ${justifySelf};`;
+const marginStyle = (marginProp: string) => `margin: ${marginProp};`;
+const overflowStyle = (overflowProp: string) => `overflow: ${overflowProp};`;
+const paddingStyle = (paddingProp: string) => `padding: ${paddingProp};`;
+const textAlignStyle = (textAlign: string) => `text-align: ${textAlign};`;
+const widthStyle = (widthProp: string) => `width: ${widthProp};`;
+ 
+const StyledBox = styled.div<BoxProps>`
+  ${(props) => props.alignContent && alignContentStyle(props.alignContent)}
+ 
+  ${(props) => props.alignItems && alignItemsStyle(props.alignItems)}
+  
+  ${(props) => props.alignSelf && alignSelfStyle(props.alignSelf)}
+  
+  ${(props) => props.backgroundProp && backgroundStyle(props.backgroundProp)}
+  ${(props) =>
+    props.borderProp &&
+    borderStyle(props.borderProp, props.theme.interfaceDirection)}
+  box-sizing: border-box;
+ 
+  ${(props) => props.displayProp && displayStyle(props.displayProp)}
+ 
+  ${(props) => props.flexBasis && flexBasisStyle(props.flexBasis)}
+  
+  ${(props) => props.flexDirection && flexDirectionStyle(props.flexDirection)}
+  
+  ${(props) => props.flexProp && flexStyle(props.flexProp)}
+  
+  ${(props) => props.flexWrap && flexWrapStyle(props.flexWrap)}
+  
+  ${(props) => props.gridArea && gridAreaStyle(props.gridArea)}
+  
+  ${(props) => props.heightProp && heightStyle(props.heightProp)}
+  ${(props) =>
+    props.justifyContent && justifyContentStyle(props.justifyContent)}
+  
+  ${(props) => props.justifyItems && justifyItemsStyle(props.justifyItems)}
+  
+  ${(props) => props.justifySelf && justifySelfStyle(props.justifySelf)}
+  ${(props) =>
+    props.marginProp &&
+    marginStyle(
+      getCorrectFourValuesStyle(
+        props.marginProp,
+        props.theme.interfaceDirection,
+      ),
+    )}
+  outline: none;
+ 
+  ${(props) => props.overflowProp && overflowStyle(props.overflowProp)}
+  ${(props) =>
+    props.paddingProp &&
+    paddingStyle(
+      getCorrectFourValuesStyle(
+        props.paddingProp,
+        props.theme.interfaceDirection,
+      ),
+    )}
+  ${(props) =>
+    props.textAlign &&
+    textAlignStyle(
+      getCorrectTextAlign(props.textAlign, props.theme.interfaceDirection),
+    )}
+  
+  ${(props) => props.widthProp && widthStyle(props.widthProp)}
+`;
+ 
+export { StyledBox };
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/box/index.html b/packages/shared/coverage/lcov-report/components/box/index.html new file mode 100644 index 0000000000..0298d41b03 --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/box/index.html @@ -0,0 +1,131 @@ + + + + + + Code coverage report for components/box + + + + + + + + + +
+
+

All files components/box

+
+ +
+ 60% + Statements + 45/75 +
+ + +
+ 43.39% + Branches + 23/53 +
+ + +
+ 53.65% + Functions + 22/41 +
+ + +
+ 70.96% + Lines + 44/62 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
Box.styled.ts +
+
58.33%42/7241.17%21/5152.5%21/4069.49%41/59
index.tsx +
+
100%3/3100%2/2100%1/1100%3/3
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/box/index.tsx.html b/packages/shared/coverage/lcov-report/components/box/index.tsx.html new file mode 100644 index 0000000000..3e8306318d --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/box/index.tsx.html @@ -0,0 +1,127 @@ + + + + + + Code coverage report for components/box/index.tsx + + + + + + + + + +
+
+

All files / components/box index.tsx

+
+ +
+ 100% + Statements + 3/3 +
+ + +
+ 100% + Branches + 2/2 +
+ + +
+ 100% + Functions + 1/1 +
+ + +
+ 100% + Lines + 3/3 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15  +  +  +  +  +1x +1x +  +  +1x +  +  +  +  + 
import React from "react";
+import { BoxProps } from "./Box.types";
+import { StyledBox } from "./Box.styled";
+ 
+function Box(props: BoxProps) {
+  const { as } = props;
+  return <StyledBox {...props} as={as || "div"} data-testid="box" />;
+}
+ 
+Box.defaultProps = {
+  displayProp: "block",
+};
+ 
+export { Box };
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/icon-button/IconButton.styled.ts.html b/packages/shared/coverage/lcov-report/components/icon-button/IconButton.styled.ts.html new file mode 100644 index 0000000000..517ea1f9a5 --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/icon-button/IconButton.styled.ts.html @@ -0,0 +1,274 @@ + + + + + + Code coverage report for components/icon-button/IconButton.styled.ts + + + + + + + + + +
+
+

All files / components/icon-button IconButton.styled.ts

+
+ +
+ 100% + Statements + 7/7 +
+ + +
+ 56% + Branches + 14/25 +
+ + +
+ 100% + Functions + 5/5 +
+ + +
+ 100% + Lines + 7/7 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64  +  +  +  +2x +2x +2x +  +2x +  +  +  +  +2x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +2x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +2x +  +  + 
import styled, { css } from "styled-components";
+import { Base } from "../../themes";
+import { IconButtonProps } from "./IconButton.types";
+ 
+const StyledOuter = styled.div<IconButtonProps>`
+  width: ${(props) => (props.size ? `${props.size}px` : "20px")};
+  height: ${(props) => (props.size ? `${props.size}px` : "20px")};
+  cursor: ${(props) =>
+    props.isDisabled || !props.isClickable ? "default" : "pointer"};
+  line-height: 0;
+  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
+ 
+  ${(props) =>
+    props.isStroke &&
+    css`
+      svg {
+        &:not(:root) {
+          width: 100%;
+          height: 100%;
+        }
+        path {
+          stroke: ${props.color || props.theme.iconButton.color};
+        }
+      }
+      &:hover {
+        svg {
+          path {
+            stroke: ${props.isDisabled
+              ? props.theme.iconButton.color
+              : props.color || props.theme.iconButton.hoverColor};
+          }
+        }
+      }
+    `}
+ 
+  ${(props) =>
+    props.isFill &&
+    !props.isStroke &&
+    css`
+      svg {
+        &:not(:root) {
+          width: 100%;
+          height: 100%;
+        }
+        path {
+          fill: ${props.color || props.theme.iconButton.color};
+        }
+      }
+      &:hover {
+        svg {
+          path {
+            fill: ${props.isDisabled
+              ? props.theme.iconButton.color
+              : props.color || props.theme.iconButton.hoverColor};
+          }
+        }
+      }
+    `}
+`;
+ 
+StyledOuter.defaultProps = { theme: Base };
+ 
+export default StyledOuter;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/icon-button/index.html b/packages/shared/coverage/lcov-report/components/icon-button/index.html new file mode 100644 index 0000000000..66069fbe3f --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/icon-button/index.html @@ -0,0 +1,131 @@ + + + + + + Code coverage report for components/icon-button + + + + + + + + + +
+
+

All files components/icon-button

+
+ +
+ 35.08% + Statements + 20/57 +
+ + +
+ 29.41% + Branches + 20/68 +
+ + +
+ 58.33% + Functions + 7/12 +
+ + +
+ 38.46% + Lines + 20/52 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
IconButton.styled.ts +
+
100%7/756%14/25100%5/5100%7/7
index.tsx +
+
26%13/5013.95%6/4328.57%2/728.88%13/45
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/icon-button/index.tsx.html b/packages/shared/coverage/lcov-report/components/icon-button/index.tsx.html new file mode 100644 index 0000000000..4d9de78dd7 --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/icon-button/index.tsx.html @@ -0,0 +1,541 @@ + + + + + + Code coverage report for components/icon-button/index.tsx + + + + + + + + + +
+
+

All files / components/icon-button index.tsx

+
+ +
+ 26% + Statements + 13/50 +
+ + +
+ 13.95% + Branches + 6/43 +
+ + +
+ 28.57% + Functions + 2/7 +
+ + +
+ 28.88% + Lines + 13/45 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101 +102 +103 +104 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124 +125 +126 +127 +128 +129 +130 +131 +132 +133 +134 +135 +136 +137 +138 +139 +140 +141 +142 +143 +144 +145 +146 +147 +148 +149 +150 +151 +152 +153  +  +  +  +  +  +2x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +2x +2x +  +  +  +2x +  +  +  +  +  +  +  +  +  +  +  +  +  +2x +  +  +  +  +  +  +  +  +2x +  +  +  +  +  +  +  +  +  +  +  +  +  +2x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +2x +  +  +  +  +2x +1x +1x +  +  +2x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +2x +  +  +  +  +  +  +  +  +  + 
import React from "react";
+import { ReactSVG } from "react-svg";
+ 
+import StyledOuter from "./IconButton.styled";
+import { IconButtonProps } from "./IconButton.types";
+ 
+const IconButton = ({
+  iconName,
+  iconHoverName,
+  iconClickName,
+  iconNode,
+ 
+  color,
+  hoverColor,
+  clickColor,
+ 
+  isDisabled,
+  isFill,
+  isClickable,
+  className,
+  size,
+  title,
+  id,
+  style,
+  dataTip,
+ 
+  onMouseEnter,
+  onMouseLeave,
+  onMouseDown,
+  onMouseUp,
+  onClick,
+ 
+  ...rest
+}: IconButtonProps) => {
+  const [currentIconName, setCurrentIconName] = React.useState(iconName);
+  const [currentIconColor, setCurrentIconColor] = React.useState<
+    string | undefined
+  >(iconName);
+ 
+  const onMouseEnterAction = (e: React.MouseEvent) => {
+    if (isDisabled) return;
+ 
+    if (!("ontouchstart" in document.documentElement)) {
+      setCurrentIconName(iconHoverName || iconName);
+      setCurrentIconColor(hoverColor || color);
+    } else {
+      setCurrentIconName(iconName);
+      setCurrentIconColor(hoverColor || color);
+    }
+ 
+    onMouseEnter?.(e);
+  };
+ 
+  const onMouseLeaveAction = (e: React.MouseEvent) => {
+    if (isDisabled) return;
+ 
+    setCurrentIconName(iconName);
+    setCurrentIconColor(color);
+ 
+    onMouseLeave?.(e);
+  };
+ 
+  const onMouseDownAction = (e: React.MouseEvent<HTMLDivElement>) => {
+    if (isDisabled) return;
+ 
+    if (!("ontouchstart" in document.documentElement)) {
+      setCurrentIconName(iconClickName || iconName);
+      setCurrentIconColor(clickColor || color);
+    } else {
+      setCurrentIconName(iconName);
+      setCurrentIconColor(clickColor || color);
+    }
+ 
+    onMouseDown?.(e);
+  };
+ 
+  const onMouseUpAction = (e: React.MouseEvent<HTMLDivElement>) => {
+    if (isDisabled) return;
+ 
+    switch (e.nativeEvent.button) {
+      case 1: // Left click
+        if (!("ontouchstart" in document.documentElement)) {
+          setCurrentIconName(iconHoverName || iconName);
+          setCurrentIconColor(hoverColor || color);
+        } else {
+          setCurrentIconName(iconName);
+          setCurrentIconColor(hoverColor || color);
+        }
+ 
+        onMouseUp?.(e);
+        break;
+      case 2: // Right click
+        onMouseUp?.(e);
+        break;
+      default:
+        break;
+    }
+  };
+ 
+  const onClickAction = (e: React.MouseEvent<HTMLDivElement>) => {
+    if (isDisabled) return;
+    onClick?.(e);
+  };
+ 
+  React.useEffect(() => {
+    setCurrentIconName(iconName);
+    setCurrentIconColor(color || "");
+  }, [iconName, color]);
+ 
+  return (
+    <StyledOuter
+      className={className}
+      size={size}
+      title={title}
+      isDisabled={isDisabled}
+      onMouseEnter={onMouseEnterAction}
+      onMouseLeave={onMouseLeaveAction}
+      onMouseDown={onMouseDownAction}
+      onMouseUp={onMouseUpAction}
+      onClick={onClickAction}
+      isClickable={typeof onClick === "function" || isClickable}
+      data-tip={dataTip}
+      data-event="click focus"
+      data-for={id}
+      id={id}
+      style={style}
+      color={currentIconColor}
+      isFill={isFill}
+      iconName={iconName}
+      data-testid="icon-button"
+      {...rest}
+    >
+      {iconNode || (
+        <ReactSVG
+          className="icon-button_svg not-selectable"
+          src={currentIconName}
+        />
+      )}
+    </StyledOuter>
+  );
+};
+ 
+IconButton.defaultProps = {
+  size: 25,
+  isFill: true,
+  isStroke: false,
+  isDisabled: false,
+  isClickable: false,
+  dataTip: "",
+};
+ 
+export { IconButton };
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/link/Link.enums.ts.html b/packages/shared/coverage/lcov-report/components/link/Link.enums.ts.html new file mode 100644 index 0000000000..701e5c81fd --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/link/Link.enums.ts.html @@ -0,0 +1,118 @@ + + + + + + Code coverage report for components/link/Link.enums.ts + + + + + + + + + +
+
+

All files / components/link Link.enums.ts

+
+ +
+ 0% + Statements + 0/0 +
+ + +
+ 0% + Branches + 0/0 +
+ + +
+ 0% + Functions + 0/0 +
+ + +
+ 0% + Lines + 0/0 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12  +  +  +  +  +  +  +  +  +  +  + 
export const enum LinkType {
+  page = "page",
+  action = "action",
+}
+ 
+export const enum LinkTarget {
+  blank = "_blank",
+  self = "_self",
+  parent = "_parent",
+  top = "_top",
+}
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/link/Link.styled.tsx.html b/packages/shared/coverage/lcov-report/components/link/Link.styled.tsx.html new file mode 100644 index 0000000000..c6b9cba8c4 --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/link/Link.styled.tsx.html @@ -0,0 +1,274 @@ + + + + + + Code coverage report for components/link/Link.styled.tsx + + + + + + + + + +
+
+

All files / components/link Link.styled.tsx

+
+ +
+ 100% + Statements + 16/16 +
+ + +
+ 58.82% + Branches + 10/17 +
+ + +
+ 100% + Functions + 11/11 +
+ + +
+ 100% + Lines + 16/16 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64  +  +  +  +  +  +  +  +1x +2x +  +  +1x +  +  +1x +  +  +  +  +1x +  +  +  +1x +  +1x +1x +  +  +1x +  +  +  +  +  +1x +  +1x +  +1x +  +  +  +  +1x +  +  +1x +  +  +1x +  +  +  +  +  +  +1x +  +  +  +  + 
import React from "react";
+import styled, { css } from "styled-components";
+ 
+import { Text } from "../text";
+import { Base } from "../../themes";
+import { NoUserSelect } from "../../constants";
+import { LinkProps } from "./Link.types";
+ 
+const colorCss = css<LinkProps>`
+  color: ${(props) => (props.color ? props.color : props.theme.link.color)};
+`;
+ 
+const hoveredCss = css<LinkProps>`
+  ${colorCss};
+  text-decoration: ${(props) =>
+    props.type === "page"
+      ? props.theme.link.hover.page.textDecoration
+      : props.theme.link.hover.textDecoration};
+`;
+ 
+const PureText = ({
+  type,
+  color,
+  ...props
+}: LinkProps & { tag: string; truncate: boolean }) => <Text {...props} />;
+ 
+const StyledText = styled(PureText)`
+  text-decoration: ${(props) => props.theme.link.textDecoration};
+ 
+  ${(props) =>
+    props.enableUserSelect
+      ? css`
+          user-select: text;
+        `
+      : NoUserSelect}
+ 
+  cursor: ${(props) => props.theme.link.cursor};
+  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
+  opacity: ${(props) => props.isSemitransparent && props.theme.link.opacity};
+  line-height: ${(props) =>
+    props.lineHeight ? props.lineHeight : props.theme.link.lineHeight};
+ 
+  ${colorCss};
+ 
+  &:hover {
+    ${(props) => !props.noHover && hoveredCss};
+  }
+ 
+  ${(props) => !props.noHover && props.isHovered && hoveredCss}
+ 
+  ${(props) =>
+    props.isTextOverflow &&
+    css`
+      display: ${props.theme.link.display};
+      max-width: 100%;
+    `}
+`;
+ 
+StyledText.defaultProps = {
+  theme: Base,
+};
+ 
+export default StyledText;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/link/index.html b/packages/shared/coverage/lcov-report/components/link/index.html new file mode 100644 index 0000000000..dc50dea058 --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/link/index.html @@ -0,0 +1,146 @@ + + + + + + Code coverage report for components/link + + + + + + + + + +
+
+

All files components/link

+
+ +
+ 100% + Statements + 19/19 +
+ + +
+ 63.15% + Branches + 12/19 +
+ + +
+ 100% + Functions + 12/12 +
+ + +
+ 100% + Lines + 19/19 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
Link.enums.ts +
+
0%0/00%0/00%0/00%0/0
Link.styled.tsx +
+
100%16/1658.82%10/17100%11/11100%16/16
index.tsx +
+
100%3/3100%2/2100%1/1100%3/3
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/link/index.tsx.html b/packages/shared/coverage/lcov-report/components/link/index.tsx.html new file mode 100644 index 0000000000..0266704b74 --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/link/index.tsx.html @@ -0,0 +1,223 @@ + + + + + + Code coverage report for components/link/index.tsx + + + + + + + + + +
+
+

All files / components/link index.tsx

+
+ +
+ 100% + Statements + 3/3 +
+ + +
+ 100% + Branches + 2/2 +
+ + +
+ 100% + Functions + 1/1 +
+ + +
+ 100% + Lines + 3/3 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47  +  +  +  +  +  +  +  +1x +  +  +  +  +  +  +1x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +1x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  + 
import React from "react";
+ 
+import StyledText from "./Link.styled";
+import { LinkProps } from "./Link.types";
+import { LinkType, LinkTarget } from "./Link.enums";
+ 
+export { LinkType, LinkTarget };
+ 
+const Link = ({
+  isTextOverflow,
+  children,
+  noHover,
+  enableUserSelect,
+  ...rest
+}: LinkProps) => {
+  return (
+    <StyledText
+      tag="a"
+      isTextOverflow={isTextOverflow}
+      noHover={noHover}
+      truncate={isTextOverflow || false}
+      enableUserSelect={enableUserSelect}
+      data-testid="link"
+      {...rest}
+    >
+      {children}
+    </StyledText>
+  );
+};
+ 
+Link.defaultProps = {
+  className: "",
+  fontSize: "13px",
+  href: undefined,
+  isBold: false,
+  isHovered: false,
+  isSemitransparent: false,
+  isTextOverflow: false,
+  noHover: false,
+  rel: "noopener noreferrer",
+  tabIndex: -1,
+  type: LinkType.page,
+  enableUserSelect: false,
+};
+ 
+export { Link };
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/portal/index.html b/packages/shared/coverage/lcov-report/components/portal/index.html new file mode 100644 index 0000000000..d2b498e6a2 --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/portal/index.html @@ -0,0 +1,116 @@ + + + + + + Code coverage report for components/portal + + + + + + + + + +
+
+

All files components/portal

+
+ +
+ 100% + Statements + 9/9 +
+ + +
+ 100% + Branches + 13/13 +
+ + +
+ 100% + Functions + 3/3 +
+ + +
+ 100% + Lines + 9/9 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
index.ts +
+
100%9/9100%13/13100%3/3100%9/9
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/portal/index.ts.html b/packages/shared/coverage/lcov-report/components/portal/index.ts.html new file mode 100644 index 0000000000..dc1f231050 --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/portal/index.ts.html @@ -0,0 +1,199 @@ + + + + + + Code coverage report for components/portal/index.ts + + + + + + + + + +
+
+

All files / components/portal index.ts

+
+ +
+ 100% + Statements + 9/9 +
+ + +
+ 100% + Branches + 13/13 +
+ + +
+ 100% + Functions + 3/3 +
+ + +
+ 100% + Lines + 9/9 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39  +  +  +  +  +  +  +  +  +  +2x +2x +  +2x +2x +  +  +  +  +  +  +2x +2x +1x +  +  +  +2x +  +  +  +  +2x +  +  +  +  +  + 
import React from "react";
+ 
+import ReactDOM from "react-dom";
+ 
+interface PortalProps {
+  visible?: boolean;
+  element: React.ReactNode;
+  appendTo?: HTMLElement;
+}
+ 
+const Portal = ({ visible, element, appendTo }: PortalProps) => {
+  const [mounted, setMounted] = React.useState(visible);
+ 
+  const domExist = React.useCallback(() => {
+    return !!(
+      typeof window !== "undefined" &&
+      window.document &&
+      window.document.createElement
+    );
+  }, []);
+ 
+  React.useEffect(() => {
+    if (domExist() && !mounted) {
+      setMounted(true);
+    }
+  }, [domExist, mounted]);
+ 
+  return element && mounted
+    ? ReactDOM.createPortal(element, appendTo || document.body)
+    : null;
+};
+ 
+Portal.defaultProps = {
+  visible: false,
+  appendTo: null,
+};
+ 
+export { Portal };
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/scrollbar/Scrollbar.enums.ts.html b/packages/shared/coverage/lcov-report/components/scrollbar/Scrollbar.enums.ts.html new file mode 100644 index 0000000000..d368b01f7a --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/scrollbar/Scrollbar.enums.ts.html @@ -0,0 +1,103 @@ + + + + + + Code coverage report for components/scrollbar/Scrollbar.enums.ts + + + + + + + + + +
+
+

All files / components/scrollbar Scrollbar.enums.ts

+
+ +
+ 0% + Statements + 0/0 +
+ + +
+ 0% + Branches + 0/0 +
+ + +
+ 0% + Functions + 0/0 +
+ + +
+ 0% + Lines + 0/0 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7  +  +  +  +  +  + 
export const enum ScrollbarType {
+  smallWhite = "smallWhite",
+  smallBlack = "smallBlack",
+  mediumBlack = "mediumBlack",
+  preMediumBlack = "preMediumBlack",
+}
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/scrollbar/Scrollbar.styled.ts.html b/packages/shared/coverage/lcov-report/components/scrollbar/Scrollbar.styled.ts.html new file mode 100644 index 0000000000..d1d1421ca1 --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/scrollbar/Scrollbar.styled.ts.html @@ -0,0 +1,193 @@ + + + + + + Code coverage report for components/scrollbar/Scrollbar.styled.ts + + + + + + + + + +
+
+

All files / components/scrollbar Scrollbar.styled.ts

+
+ +
+ 100% + Statements + 5/5 +
+ + +
+ 50% + Branches + 2/4 +
+ + +
+ 100% + Functions + 3/3 +
+ + +
+ 100% + Lines + 5/5 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37  +  +  +  +2x +  +  +  +  +  +2x +  +  +  +  +  +  +  +  +  +2x +  +  +  +  +2x +  +  +  +  +  +2x +  +  +  +  + 
import Scrollbar from "react-scrollbars-custom";
+import styled from "styled-components";
+import { Base } from "../../themes";
+ 
+const StyledScrollbar = styled(Scrollbar)`
+  .scroll-body {
+    position: relative;
+  }
+  .nav-thumb-vertical {
+    background-color: ${(props) =>
+      props.color
+        ? props.color
+        : props.theme.scrollbar.backgroundColorVertical} !important;
+    z-index: 201;
+    position: relative;
+ 
+    :hover,
+    :active,
+    &.dragging {
+      background-color: ${(props) =>
+        props.theme.scrollbar.hoverBackgroundColorVertical} !important;
+    }
+  }
+  .nav-thumb-horizontal {
+    background-color: ${(props) =>
+      props.color
+        ? props.color
+        : props.theme.scrollbar.backgroundColorHorizontal} !important;
+  }
+`;
+ 
+StyledScrollbar.defaultProps = {
+  theme: Base,
+};
+ 
+export default StyledScrollbar;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/scrollbar/index.html b/packages/shared/coverage/lcov-report/components/scrollbar/index.html new file mode 100644 index 0000000000..8da13a6652 --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/scrollbar/index.html @@ -0,0 +1,146 @@ + + + + + + Code coverage report for components/scrollbar + + + + + + + + + +
+
+

All files components/scrollbar

+
+ +
+ 70.83% + Statements + 34/48 +
+ + +
+ 44.73% + Branches + 17/38 +
+ + +
+ 50% + Functions + 7/14 +
+ + +
+ 77.27% + Lines + 34/44 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
Scrollbar.enums.ts +
+
0%0/00%0/00%0/00%0/0
Scrollbar.styled.ts +
+
100%5/550%2/4100%3/3100%5/5
index.tsx +
+
67.44%29/4344.11%15/3436.36%4/1174.35%29/39
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/scrollbar/index.tsx.html b/packages/shared/coverage/lcov-report/components/scrollbar/index.tsx.html new file mode 100644 index 0000000000..d06ebd13a1 --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/scrollbar/index.tsx.html @@ -0,0 +1,844 @@ + + + + + + Code coverage report for components/scrollbar/index.tsx + + + + + + + + + +
+
+

All files / components/scrollbar index.tsx

+
+ +
+ 67.44% + Statements + 29/43 +
+ + +
+ 44.11% + Branches + 15/34 +
+ + +
+ 36.36% + Functions + 4/11 +
+ + +
+ 74.35% + Lines + 29/39 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101 +102 +103 +104 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124 +125 +126 +127 +128 +129 +130 +131 +132 +133 +134 +135 +136 +137 +138 +139 +140 +141 +142 +143 +144 +145 +146 +147 +148 +149 +150 +151 +152 +153 +154 +155 +156 +157 +158 +159 +160 +161 +162 +163 +164 +165 +166 +167 +168 +169 +170 +171 +172 +173 +174 +175 +176 +177 +178 +179 +180 +181 +182 +183 +184 +185 +186 +187 +188 +189 +190 +191 +192 +193 +194 +195 +196 +197 +198 +199 +200 +201 +202 +203 +204 +205 +206 +207 +208 +209 +210 +211 +212 +213 +214 +215 +216 +217 +218 +219 +220 +221 +222 +223 +224 +225 +226 +227 +228 +229 +230 +231 +232 +233 +234 +235 +236 +237 +238 +239 +240 +241 +242 +243 +244 +245 +246 +247 +248 +249 +250 +251 +252 +253 +254  +  +  +  +  +  +  +  +  +  +  +2x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +2x +  +  +  +  +  +  +  +  +  +2x +  +2x +  +2x +  +2x +2x +2x +  +2x +  +2x +  +2x +  +  +  +  +  +2x +  +  +  +  +  +2x +  +2x +  +  +  +  +2x +  +  +  +  +  +2x +  +  +  +  +  +2x +  +  +2x +2x +  +  +  +  +  +  +  +2x +  +  +4x +4x +  +  +  +  +  +  +  +  +  +2x +2x +2x +  +  +  +2x +  +  +  +  +  +2x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +2x +  +2x +  +  +  +  +  +  + 
import React, { useEffect, useRef, useState } from "react";
+import { DefaultTheme, useTheme } from "styled-components";
+ 
+import { classNames, isMobile } from "../../utils/index";
+ 
+import StyledScrollbar from "./Scrollbar.styled";
+import { ScrollbarType } from "./Scrollbar.enums";
+import { ScrollbarProps } from "./Scrollbar.types";
+ 
+export { ScrollbarType };
+ 
+const scrollbarTypes = {
+  smallWhite: {
+    thumbV: {
+      width: "2px",
+      marginLeft: "2px",
+      borderRadius: "inherit",
+    },
+    thumbH: {
+      height: "2px",
+      marginTop: "2px",
+      borderRadius: "inherit",
+    },
+    trackV: {
+      width: "2px",
+      background: "transparent",
+    },
+    trackH: {
+      height: "2px",
+      background: "transparent",
+    },
+    content: { outline: "none", WebkitOverflowScrolling: "auto" },
+  },
+  smallBlack: {
+    thumbV: {
+      width: "3px",
+      marginLeft: "2px",
+      borderRadius: "inherit",
+    },
+    thumbH: {
+      height: "3px",
+      marginTop: "2px",
+      borderRadius: "inherit",
+    },
+    trackV: {
+      width: "3px",
+      background: "transparent",
+    },
+    trackH: {
+      height: "3px",
+      background: "transparent",
+    },
+    content: { outline: "none", WebkitOverflowScrolling: "auto" },
+  },
+  mediumBlack: {
+    thumbV: {
+      width: "8px",
+      borderRadius: "inherit",
+    },
+    thumbH: {
+      height: "8px",
+      borderRadius: "inherit",
+    },
+    trackV: {
+      width: "8px",
+      background: "transparent",
+    },
+    trackH: {
+      height: "8px",
+      background: "transparent",
+    },
+    content: {
+      outline: "none",
+      WebkitOverflowScrolling: "auto",
+    },
+  },
+  preMediumBlack: {
+    thumbV: {
+      width: "5px",
+      borderRadius: "inherit",
+      cursor: "default",
+    },
+    thumbH: {
+      height: "5px",
+      borderRadius: "inherit",
+      cursor: "default",
+    },
+    trackV: {
+      width: "5px",
+      background: "transparent",
+    },
+    trackH: {
+      height: "5px",
+      background: "transparent",
+    },
+    content: { outline: "none", WebkitOverflowScrolling: "auto" },
+  },
+};
+ 
+const Scrollbar = React.forwardRef((props: ScrollbarProps, ref) => {
+  const {
+    id,
+    onScroll,
+    autoHide,
+    hideTrackTimer,
+    scrollClass,
+    stype,
+    noScrollY,
+    ...rest
+  } = props;
+ 
+  const defaultTheme: DefaultTheme = useTheme();
+ 
+  const interfaceDirection: string = defaultTheme?.interfaceDirection;
+ 
+  const [isScrolling, setIsScrolling] = useState(false);
+  const [isMouseOver, setIsMouseOver] = useState(false);
+  const timerId = useRef<null | ReturnType<typeof setTimeout>>(null);
+ 
+  const isRtl = interfaceDirection === "rtl";
+ 
+  const scrollbarType = scrollbarTypes[stype] ?? {};
+ 
+  const showTrack = () => {
+    if (timerId.current) clearTimeout(timerId.current);
+ 
+    setIsScrolling(true);
+  };
+ 
+  const hideTrack = () => {
+    timerId.current = setTimeout(() => {
+      setIsScrolling(false);
+    }, hideTrackTimer);
+  };
+ 
+  const onScrollStart = () => showTrack();
+ 
+  const onScrollStop = () => {
+    if (isMouseOver) return;
+    hideTrack();
+  };
+ 
+  const onMouseEnter = () => {
+    showTrack();
+ 
+    setIsMouseOver(true);
+  };
+ 
+  const onMouseLeave = () => {
+    hideTrack();
+ 
+    setIsMouseOver(false);
+  };
+ 
+  const scrollAutoHideHandlers = autoHide
+    ? { onScrollStart, onScrollStop }
+    : {};
+  const tracksAutoHideHandlers = autoHide ? { onMouseEnter, onMouseLeave } : {};
+  const tracksAutoHideStyles = autoHide
+    ? {
+        opacity: !isScrolling ? 0 : 1,
+        transition: "opacity 0.4s ease-in-out",
+      }
+    : {};
+ 
+  // onScroll handler placed here on Scroller element to get native event instead of parameters that library put
+  const renderScroller = (libProps: {
+    elementRef: React.RefObject<HTMLDivElement>;
+  }) => {
+    const { elementRef, ...restLibProps } = libProps;
+    return (
+      <div
+        {...restLibProps}
+        className={classNames("scroller", scrollClass || "") || "scroller"}
+        ref={elementRef}
+        onScroll={onScroll}
+      />
+    );
+  };
+ 
+  useEffect(() => {
+    return () => {
+      Iif (timerId.current) clearTimeout(timerId.current);
+    };
+  }, []);
+ 
+  const disableScrolling = noScrollY
+    ? {
+        height: "0",
+      }
+    : {};
+ 
+  return (
+    <StyledScrollbar
+      {...rest}
+      id={id}
+      data-testid="scrollbar"
+      disableTracksWidthCompensation
+      rtl={isRtl}
+      ref={ref}
+      {...scrollAutoHideHandlers}
+      onScrollStart={onScrollStart}
+      wrapperProps={{ className: "scroll-wrapper" }}
+      scrollerProps={{ renderer: renderScroller }}
+      contentProps={{
+        tabIndex: -1,
+        className: "scroll-body",
+        style: {
+          ...scrollbarType.content,
+          paddingRight: !isRtl && (isMobile() ? "8px" : "17px"),
+          paddingLeft: isRtl && (isMobile() ? "8px" : "17px"),
+        },
+      }}
+      thumbYProps={{
+        className: "nav-thumb-vertical",
+        style: scrollbarType.thumbV,
+      }}
+      thumbXProps={{
+        className: "nav-thumb-horizontal",
+        style: scrollbarType.thumbH,
+      }}
+      // Add 1px margin to vertical track to avoid scrollbar lib crashing when event.clientX equals 0
+      trackYProps={{
+        style: {
+          ...scrollbarType.trackV,
+          ...tracksAutoHideStyles,
+          marginLeft: isRtl ? "1px" : "0",
+          marginRight: isRtl ? "0" : "1px",
+          ...disableScrolling,
+        },
+        ...tracksAutoHideHandlers,
+      }}
+      trackXProps={{
+        style: {
+          ...scrollbarType.trackH,
+          ...tracksAutoHideStyles,
+          direction: "ltr",
+        },
+        ...tracksAutoHideHandlers,
+      }}
+    />
+  );
+});
+ 
+Scrollbar.displayName = "Scrollbar";
+ 
+Scrollbar.defaultProps = {
+  stype: ScrollbarType.mediumBlack,
+  autoHide: false,
+  hideTrackTimer: 500,
+};
+ 
+export { Scrollbar };
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/text/Text.styled.ts.html b/packages/shared/coverage/lcov-report/components/text/Text.styled.ts.html new file mode 100644 index 0000000000..72a6c69b56 --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/text/Text.styled.ts.html @@ -0,0 +1,292 @@ + + + + + + Code coverage report for components/text/Text.styled.ts + + + + + + + + + +
+
+

All files / components/text Text.styled.ts

+
+ +
+ 100% + Statements + 15/15 +
+ + +
+ 50% + Branches + 11/22 +
+ + +
+ 100% + Functions + 11/11 +
+ + +
+ 100% + Lines + 15/15 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70  +  +  +  +  +  +  +4x +2x +  +2x +  +2x +  +2x +  +  +  +  +  +  +  +4x +2x +  +  +  +2x +  +  +  +  +  +  +2x +  +  +  +  +2x +  +  +  +  +2x +  +  +  +  +  +  +  +  +2x +  +  +  +  +4x +  +  +  +  +2x +  +  +4x +  +  + 
import styled, { css } from "styled-components";
+ 
+import { Base } from "../../themes";
+import { NoUserSelect } from "../../constants";
+import { getCorrectTextAlign } from "../../utils";
+import { StyledTextProps, TextProps } from "./Text.types";
+ 
+const commonTextStyles = css<TextProps & StyledTextProps>`
+  font-family: ${(props) => props.theme.fontFamily};
+  text-align: ${(props) =>
+    getCorrectTextAlign(props.textAlign || "", props.theme.interfaceDirection)};
+  color: ${(props) =>
+    props.colorProp ? props.colorProp : props.theme.text.color};
+  ${(props) =>
+    props.truncate &&
+    css`
+      white-space: nowrap;
+      overflow: hidden;
+      text-overflow: ellipsis;
+    `}
+`;
+ 
+const styleCss = css<TextProps & StyledTextProps>`
+  font-size: ${(props) => props.theme.getCorrectFontSize(props.fontSizeProp)};
+  outline: 0 !important;
+  margin: 0;
+  font-weight: ${(props) =>
+    props.fontWeightProp
+      ? props.fontWeightProp
+      : props.isBold
+        ? 700
+        : props.theme.text.fontWeight};
+ 
+  ${(props) =>
+    props.isItalic &&
+    css`
+      font-style: italic;
+    `}
+  ${(props) =>
+    props.backgroundColor &&
+    css`
+      background-color: ${props.backgroundColor};
+    `}
+  ${(props) =>
+    props.isInline
+      ? css`
+          display: inline-block;
+        `
+      : props.display &&
+        css`
+          display: ${props.display};
+        `}
+  ${(props) =>
+    props.lineHeight &&
+    css`
+      line-height: ${props.lineHeight};
+    `}
+`;
+const StyledText = styled.p<TextProps & StyledTextProps>`
+  ${styleCss};
+ 
+  ${commonTextStyles};
+ 
+  ${(props) => props.noSelect && NoUserSelect}
+`;
+ 
+StyledText.defaultProps = { theme: Base };
+ 
+export default StyledText;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/text/index.html b/packages/shared/coverage/lcov-report/components/text/index.html new file mode 100644 index 0000000000..d6b8104c86 --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/text/index.html @@ -0,0 +1,131 @@ + + + + + + Code coverage report for components/text + + + + + + + + + +
+
+

All files components/text

+
+ +
+ 100% + Statements + 19/19 +
+ + +
+ 57.69% + Branches + 15/26 +
+ + +
+ 100% + Functions + 12/12 +
+ + +
+ 100% + Lines + 19/19 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
Text.styled.ts +
+
100%15/1550%11/22100%11/11100%15/15
index.tsx +
+
100%4/4100%4/4100%1/1100%4/4
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/text/index.tsx.html b/packages/shared/coverage/lcov-report/components/text/index.tsx.html new file mode 100644 index 0000000000..a0fbc9b2b5 --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/text/index.tsx.html @@ -0,0 +1,211 @@ + + + + + + Code coverage report for components/text/index.tsx + + + + + + + + + +
+
+

All files / components/text index.tsx

+
+ +
+ 100% + Statements + 4/4 +
+ + +
+ 100% + Branches + 4/4 +
+ + +
+ 100% + Functions + 1/1 +
+ + +
+ 100% + Lines + 4/4 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43  +  +  +  +  +4x +  +  +  +  +  +  +  +  +  +2x +  +  +  +  +  +  +  +  +  +  +  +  +  +4x +  +  +  +  +  +  +  +  +  +4x +  +  + 
import React from "react";
+ 
+import StyledText from "./Text.styled";
+import { TextProps } from "./Text.types";
+ 
+const TextPure = ({
+  title,
+  tag,
+  as,
+  fontSize,
+  fontWeight,
+  color,
+  textAlign,
+  ...rest
+}: TextProps) => {
+  return (
+    <StyledText
+      fontSizeProp={fontSize}
+      fontWeightProp={fontWeight}
+      colorProp={color}
+      textAlign={textAlign}
+      as={!as && tag ? tag : as}
+      title={title}
+      data-testid="text"
+      {...rest}
+    />
+  );
+};
+ 
+TextPure.defaultProps = {
+  textAlign: "left",
+  fontSize: "13px",
+  truncate: false,
+  isBold: false,
+  isInline: false,
+  isItalic: false,
+  noSelect: false,
+};
+ 
+const Text = React.memo<TextProps>(TextPure);
+ 
+export { Text };
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/tooltip/Tooltip.constants.ts.html b/packages/shared/coverage/lcov-report/components/tooltip/Tooltip.constants.ts.html new file mode 100644 index 0000000000..c634386f13 --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/tooltip/Tooltip.constants.ts.html @@ -0,0 +1,88 @@ + + + + + + Code coverage report for components/tooltip/Tooltip.constants.ts + + + + + + + + + +
+
+

All files / components/tooltip Tooltip.constants.ts

+
+ +
+ 100% + Statements + 1/1 +
+ + +
+ 100% + Branches + 0/0 +
+ + +
+ 100% + Functions + 0/0 +
+ + +
+ 100% + Lines + 1/1 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +22x + 
export const DEFAULT_OFFSET = 4;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/tooltip/Tooltip.styled.ts.html b/packages/shared/coverage/lcov-report/components/tooltip/Tooltip.styled.ts.html new file mode 100644 index 0000000000..e19a6709da --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/tooltip/Tooltip.styled.ts.html @@ -0,0 +1,337 @@ + + + + + + Code coverage report for components/tooltip/Tooltip.styled.ts + + + + + + + + + +
+
+

All files / components/tooltip Tooltip.styled.ts

+
+ +
+ 100% + Statements + 16/16 +
+ + +
+ 50% + Branches + 3/6 +
+ + +
+ 100% + Functions + 14/14 +
+ + +
+ 100% + Lines + 16/16 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85  +  +  +  +2x +  +  +1x +1x +1x +1x +1x +1x +1x +1x +  +1x +  +  +1x +  +  +  +  +  +  +1x +  +  +  +1x +  +  +1x +  +1x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +2x +  +  +  +  + 
import styled from "styled-components";
+ 
+import { Base } from "../../themes";
+ 
+const StyledTooltip = styled.div<{ maxWidthProp?: string; color?: string }>`
+  .__react_component_tooltip {
+    background-color: ${(props) =>
+      props.color ? props.color : props.theme.tooltip.color} !important;
+    border-radius: ${(props) => props.theme.tooltip.borderRadius};
+    -moz-border-radius: ${(props) => props.theme.tooltip.borderRadius};
+    -webkit-border-radius: ${(props) => props.theme.tooltip.borderRadius};
+    box-shadow: ${(props) => props.theme.tooltip.boxShadow};
+    -moz-box-shadow: ${(props) => props.theme.tooltip.boxShadow};
+    -webkit-box-shadow: ${(props) => props.theme.tooltip.boxShadow};
+    padding: ${(props) => props.theme.tooltip.padding};
+    max-width: ${(props) =>
+      `min(100vw, ${
+        props.maxWidthProp ? props.maxWidthProp : props.theme.tooltip.maxWidth
+      })`};
+    color: ${(props) => props.theme.tooltip.textColor} !important;
+    z-index: 999;
+ 
+    box-sizing: border-box;
+ 
+    p,
+    span {
+      color: ${(props) => props.theme.tooltip.textColor} !important;
+    }
+ 
+    &:before {
+      border: ${(props) => props.theme.tooltip.before.border};
+    }
+    &:after {
+      border: ${(props) => props.theme.tooltip.after.border};
+      background-color: ${(props) =>
+        props.color ? props.color : props.theme.tooltip.color} !important;
+    }
+  }
+ 
+  .__react_component_tooltip.place-left::after {
+    border-left: none !important;
+  }
+ 
+  .__react_component_tooltip.place-right::after {
+    border-right: none !important;
+  }
+ 
+  .__react_component_tooltip.place-top::after {
+    border-top: none !important;
+  }
+ 
+  .__react_component_tooltip.place-bottom::after {
+    border-bottom: none !important;
+  }
+ 
+  .__react_component_tooltip.place-left::before {
+    background: none !important;
+  }
+ 
+  .__react_component_tooltip.place-right::before {
+    background: none !important;
+  }
+ 
+  .__react_component_tooltip.place-top::before {
+    background: none !important;
+  }
+ 
+  .__react_component_tooltip.place-bottom::before {
+    background: none !important;
+  }
+ 
+  .__react_component_tooltip.place-bottom::after,
+  .__react_component_tooltip.place-top::after,
+  .__react_component_tooltip.place-right::after,
+  .__react_component_tooltip.place-left::after {
+    display: none;
+  }
+`;
+ 
+StyledTooltip.defaultProps = {
+  theme: Base,
+};
+ 
+export default StyledTooltip;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/tooltip/Tooltip.types.ts.html b/packages/shared/coverage/lcov-report/components/tooltip/Tooltip.types.ts.html new file mode 100644 index 0000000000..2d5c9cd0ea --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/tooltip/Tooltip.types.ts.html @@ -0,0 +1,253 @@ + + + + + + Code coverage report for components/tooltip/Tooltip.types.ts + + + + + + + + + +
+
+

All files / components/tooltip Tooltip.types.ts

+
+ +
+ 0% + Statements + 0/0 +
+ + +
+ 0% + Branches + 0/0 +
+ + +
+ 0% + Functions + 0/0 +
+ + +
+ 0% + Lines + 0/0 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  + 
export type TTooltipPlace =
+  | "top"
+  | "top-start"
+  | "top-end"
+  | "right"
+  | "right-start"
+  | "right-end"
+  | "bottom"
+  | "bottom-start"
+  | "bottom-end"
+  | "left"
+  | "left-start"
+  | "left-end";
+ 
+export type TFallbackAxisSideDirection = "none" | "start" | "end";
+ 
+export interface TooltipProps {
+  /** Used as HTML id property  */
+  id?: string;
+  /** Global tooltip placement */
+  place?: TTooltipPlace;
+  /** Whether to allow fallback to the perpendicular axis of the preferred placement, and if so, which side direction along the axis to prefer. */
+  fallbackAxisSideDirection?: TFallbackAxisSideDirection;
+  /** Sets a callback function that generates the tip content dynamically */
+  getContent?: (content: {
+    [key: string]: string | number;
+  }) => React.ReactNode | string;
+  /** A function to be called after the tooltip is hidden */
+  afterHide?: () => {};
+  /** A function to be called after the tooltip is shown */
+  afterShow?: () => {};
+  /** Space between the tooltip element and anchor element (arrow not included in calculation) */
+  offset?: number;
+  /** Child elements */
+  children?: React.ReactNode | string;
+  /** Accepts class */
+  className?: string;
+  /** Accepts css style */
+  style?: React.CSSProperties;
+  /** Background color of the tooltip  */
+  color?: string;
+  /** Maximum width of the tooltip */
+  maxWidth?: string;
+  /** The tooltip can be controlled or uncontrolled, this attribute cannot be used to handle show and hide tooltip outside tooltip */
+  isOpen?: boolean;
+  /** Allow interaction with elements inside the tooltip */
+  clickable?: boolean;
+  /** Controls whether the tooltip should open when clicking (true) or hovering (false) the anchor element */
+  openOnClick?: boolean;
+  /** Tooltip will follow the mouse position when it moves inside the anchor element */
+  float?: boolean;
+  /** The selector for the anchor elements */
+  anchorSelect?: string;
+  /** Tooltip arrow will not be shown */
+  noArrow?: boolean;
+}
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/tooltip/index.html b/packages/shared/coverage/lcov-report/components/tooltip/index.html new file mode 100644 index 0000000000..3d3272b39c --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/tooltip/index.html @@ -0,0 +1,161 @@ + + + + + + Code coverage report for components/tooltip + + + + + + + + + +
+
+

All files components/tooltip

+
+ +
+ 100% + Statements + 25/25 +
+ + +
+ 70% + Branches + 7/10 +
+ + +
+ 100% + Functions + 16/16 +
+ + +
+ 100% + Lines + 25/25 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
Tooltip.constants.ts +
+
100%1/1100%0/0100%0/0100%1/1
Tooltip.styled.ts +
+
100%16/1650%3/6100%14/14100%16/16
Tooltip.types.ts +
+
0%0/00%0/00%0/00%0/0
index.tsx +
+
100%8/8100%4/4100%2/2100%8/8
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/components/tooltip/index.tsx.html b/packages/shared/coverage/lcov-report/components/tooltip/index.tsx.html new file mode 100644 index 0000000000..e08823f627 --- /dev/null +++ b/packages/shared/coverage/lcov-report/components/tooltip/index.tsx.html @@ -0,0 +1,385 @@ + + + + + + Code coverage report for components/tooltip/index.tsx + + + + + + + + + +
+
+

All files / components/tooltip index.tsx

+
+ +
+ 100% + Statements + 8/8 +
+ + +
+ 100% + Branches + 4/4 +
+ + +
+ 100% + Functions + 2/2 +
+ + +
+ 100% + Lines + 8/8 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +2x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +1x +  +  +  +  +  +  +1x +  +  +  +  +1x +  +  +  +  +1x +1x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +1x +  +1x +  +  +  + 
import React from "react";
+import { flip, shift, offset } from "@floating-ui/dom";
+import { Tooltip as ReactTooltip } from "react-tooltip";
+ 
+import { Portal } from "../portal";
+ 
+import StyledTooltip from "./Tooltip.styled";
+import {
+  TooltipProps,
+  TFallbackAxisSideDirection,
+  TTooltipPlace,
+} from "./Tooltip.types";
+import { DEFAULT_OFFSET } from "./Tooltip.constants";
+ 
+export { TFallbackAxisSideDirection, TTooltipPlace };
+ 
+const Tooltip = ({
+  id,
+  place = "top",
+  getContent,
+  children,
+  afterShow,
+  afterHide,
+  className,
+  style,
+  color,
+  maxWidth,
+  anchorSelect,
+  clickable,
+  openOnClick,
+  isOpen,
+  float,
+  noArrow = true,
+  fallbackAxisSideDirection,
+  ...rest
+}: TooltipProps) => {
+  const globalCloseEvents = {
+    escape: true,
+    resize: true,
+    scroll: true,
+    clickOutsideAnchor: true,
+  };
+ 
+  const openEvents = {
+    click: openOnClick,
+    mouseenter: !openOnClick,
+  };
+ 
+  const closeEvents = {
+    click: openOnClick,
+    mouseleave: !openOnClick,
+  };
+ 
+  const renderTooltip = () => (
+    <StyledTooltip
+      className={className}
+      style={style}
+      color={color}
+      maxWidthProp={maxWidth}
+      data-testid="tooltip"
+    >
+      <ReactTooltip
+        id={id}
+        opacity={1}
+        float={float}
+        place={place}
+        isOpen={isOpen}
+        noArrow={noArrow}
+        render={getContent}
+        clickable={clickable}
+        afterShow={afterShow}
+        afterHide={afterHide}
+        offset={rest.offset}
+        openEvents={openEvents}
+        positionStrategy="fixed"
+        closeEvents={closeEvents}
+        openOnClick={openOnClick}
+        anchorSelect={anchorSelect}
+        className="__react_component_tooltip"
+        globalCloseEvents={globalCloseEvents}
+        middlewares={[
+          offset(rest.offset ?? DEFAULT_OFFSET),
+          flip({
+            crossAxis: false,
+            fallbackAxisSideDirection,
+          }),
+          shift(),
+        ]}
+      >
+        {children}
+      </ReactTooltip>
+    </StyledTooltip>
+  );
+ 
+  const tooltip = renderTooltip();
+ 
+  return <Portal element={tooltip} />;
+};
+ 
+export { Tooltip };
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/constants/commonStyles.ts.html b/packages/shared/coverage/lcov-report/constants/commonStyles.ts.html new file mode 100644 index 0000000000..5c9fd219ad --- /dev/null +++ b/packages/shared/coverage/lcov-report/constants/commonStyles.ts.html @@ -0,0 +1,124 @@ + + + + + + Code coverage report for constants/commonStyles.ts + + + + + + + + + +
+
+

All files / constants commonStyles.ts

+
+ +
+ 100% + Statements + 1/1 +
+ + +
+ 100% + Branches + 0/0 +
+ + +
+ 100% + Functions + 0/0 +
+ + +
+ 100% + Lines + 1/1 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14  +  +8x +  +  +  +  +  +  +  +  +  +  + 
import { css } from "styled-components";
+ 
+const NoUserSelect = css`
+  -webkit-touch-callout: none;
+  -webkit-user-select: none;
+  -moz-user-select: none;
+  -o-user-select: none;
+  user-select: none;
+  -ms-user-select: none;
+  -khtml-user-select: none;
+`;
+ 
+export default NoUserSelect;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/constants/globalColors.ts.html b/packages/shared/coverage/lcov-report/constants/globalColors.ts.html new file mode 100644 index 0000000000..976d2d5e5f --- /dev/null +++ b/packages/shared/coverage/lcov-report/constants/globalColors.ts.html @@ -0,0 +1,277 @@ + + + + + + Code coverage report for constants/globalColors.ts + + + + + + + + + +
+
+

All files / constants globalColors.ts

+
+ +
+ 100% + Statements + 1/1 +
+ + +
+ 100% + Branches + 0/0 +
+ + +
+ 100% + Functions + 0/0 +
+ + +
+ 100% + Lines + 1/1 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +658x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  + 
const globalColors = {
+  black: "#333",
+  darkBlack: "#000",
+  white: "#FFF",
+  whiteSolitude: "#E4E7EB",
+  grayLight: "#F8F9F9",
+  grayMaxLight: "#eeeeee",
+  grayLightMid: "#ECEEF1",
+  graySilver: "#D8D8D8",
+  grayMid: "#D0D5DA",
+  gray: "#A3A9AE",
+  grayMain: "#657077",
+  shuttleGrey: "#63686A",
+  veryLightGrey: "#CACACA",
+  darkSilver: "#bbb",
+  silver: "#CCCCCC",
+  lightHover: "#F3F4F4",
+  veryDarkGrey: "#3D3D3D",
+ 
+  blueMain: "#2DA7DB",
+  blueHover: "#3DB8EC",
+  blueActive: "#1F97CA",
+  blueDisabled: "#A6DCF2",
+  blueCharcoal: "#1F2933",
+  blueLightMid: "#265A8F",
+  strongBlue: "#316AC5",
+ 
+  blueDenim: "#5299E0",
+  blueDenimTransparent: "rgba(82, 153, 224, 0.85)",
+  blueMaya: "#4A8ACA",
+  blueSky: "#96C1EC",
+ 
+  lightGrayishBlue: "#DEE2E6",
+  lightGrayishStrongBlue: "#DFE2E3",
+  cyanBlueDarkShade: "#555F65",
+ 
+  orangeMain: "#ED7309",
+  orangeHover: "#FF8932",
+  orangePressed: "#C96C27",
+  orangeDisabled: "#FFCCA6",
+  lightMediumGoldenrod: "#EFEFB2",
+  lightCumulus: "#F8F7BF",
+ 
+  link: "#316DAA",
+  errorColor: "#C96C27",
+ 
+  warningColor: "#f1ca92",
+  red: "#c30",
+  darkRed: "#A60000",
+  activeSuccess: "#E3F7BE",
+  activeError: "#F7CDBE",
+  activeInfo: "#F8F7BF",
+  activeWarning: "#F7E6BE",
+ 
+  hoverSuccess: "#E3F7BE",
+  hoverError: "#F7CDBE",
+  hoverInfo: "#F8F7BF",
+  hoverWarning: "#F7E6BE",
+ 
+  lightErrorStatus: "#F24724",
+  darkErrorStatus: "#E06451",
+};
+ 
+export default globalColors;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/constants/index.html b/packages/shared/coverage/lcov-report/constants/index.html new file mode 100644 index 0000000000..0e3d4b8b63 --- /dev/null +++ b/packages/shared/coverage/lcov-report/constants/index.html @@ -0,0 +1,146 @@ + + + + + + Code coverage report for constants + + + + + + + + + +
+
+

All files constants

+
+ +
+ 100% + Statements + 8/8 +
+ + +
+ 100% + Branches + 0/0 +
+ + +
+ 100% + Functions + 0/0 +
+ + +
+ 100% + Lines + 8/8 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
commonStyles.ts +
+
100%1/1100%0/0100%0/0100%1/1
globalColors.ts +
+
100%1/1100%0/0100%0/0100%1/1
index.ts +
+
100%6/6100%0/0100%0/0100%6/6
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/constants/index.ts.html b/packages/shared/coverage/lcov-report/constants/index.ts.html new file mode 100644 index 0000000000..549096ef03 --- /dev/null +++ b/packages/shared/coverage/lcov-report/constants/index.ts.html @@ -0,0 +1,235 @@ + + + + + + Code coverage report for constants/index.ts + + + + + + + + + +
+
+

All files / constants index.ts

+
+ +
+ 100% + Statements + 6/6 +
+ + +
+ 100% + Branches + 0/0 +
+ + +
+ 100% + Functions + 0/0 +
+ + +
+ 100% + Lines + 6/6 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51  +  +  +  +  +  +8x +  +  +  +  +  +  +  +  +  +  +  +  +  +8x +  +8x +8x +  +  +  +  +  +  +  +8x +  +  +  +  +  +8x +  +  +  +  +  +  +  +  +  +  +  +  + 
import globalColors from "./globalColors";
+ 
+import NoUserSelect from "./commonStyles";
+ 
+export { globalColors, NoUserSelect };
+ 
+export const LoaderStyle = Object.freeze({
+  title: "",
+  width: "100%",
+  height: "32",
+  backgroundColor: "#000000",
+  foregroundColor: "#000000",
+  backgroundOpacity: 0.1,
+  foregroundOpacity: 0.15,
+  borderRadius: "3",
+  radius: "3",
+  speed: 2,
+  animate: true,
+});
+ 
+export const LANGUAGE = "asc_language";
+ 
+export const MOBILE_FOOTER_HEIGHT = "64px";
+export const INFO_PANEL_WIDTH = 400;
+ 
+// TODO: REMOVE NEXT LINES LATER
+ 
+/**
+ * Enum for type of email value errors.
+ * @readonly
+ */
+export const parseErrorTypes = Object.freeze({
+  None: 0,
+  EmptyRecipients: 1,
+  IncorrectEmail: 2,
+});
+ 
+export const errorKeys = Object.freeze({
+  LocalDomain: "LocalDomain",
+  IncorrectDomain: "IncorrectDomain",
+  DomainIpAddress: "DomainIpAddress",
+  PunycodeDomain: "PunycodeDomain",
+  PunycodeLocalPart: "PunycodeLocalPart",
+  IncorrectLocalPart: "IncorrectLocalPart",
+  SpacesInLocalPart: "SpacesInLocalPart",
+  MaxLengthExceeded: "MaxLengthExceeded",
+  IncorrectEmail: "IncorrectEmail",
+  ManyEmails: "ManyEmails",
+  EmptyEmail: "EmptyEmail",
+});
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/enums/index.html b/packages/shared/coverage/lcov-report/enums/index.html new file mode 100644 index 0000000000..f40b09b3e1 --- /dev/null +++ b/packages/shared/coverage/lcov-report/enums/index.html @@ -0,0 +1,116 @@ + + + + + + Code coverage report for enums + + + + + + + + + +
+
+

All files enums

+
+ +
+ 0% + Statements + 0/0 +
+ + +
+ 0% + Branches + 0/0 +
+ + +
+ 0% + Functions + 0/0 +
+ + +
+ 0% + Lines + 0/0 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
index.ts +
+
0%0/00%0/00%0/00%0/0
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/enums/index.ts.html b/packages/shared/coverage/lcov-report/enums/index.ts.html new file mode 100644 index 0000000000..a5dc3d1c68 --- /dev/null +++ b/packages/shared/coverage/lcov-report/enums/index.ts.html @@ -0,0 +1,154 @@ + + + + + + Code coverage report for enums/index.ts + + + + + + + + + +
+
+

All files / enums index.ts

+
+ +
+ 0% + Statements + 0/0 +
+ + +
+ 0% + Branches + 0/0 +
+ + +
+ 0% + Functions + 0/0 +
+ + +
+ 0% + Lines + 0/0 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  + 
/**
+ * Enum for type of email value errors.
+ * @readonly
+ */
+export const enum ParseErrorTypes {
+  None = 0,
+  EmptyRecipients = 1,
+  IncorrectEmail = 2,
+}
+ 
+export const enum ErrorKeys {
+  LocalDomain = "LocalDomain",
+  IncorrectDomain = "IncorrectDomain",
+  DomainIpAddress = "DomainIpAddress",
+  PunycodeDomain = "PunycodeDomain",
+  PunycodeLocalPart = "PunycodeLocalPart",
+  IncorrectLocalPart = "IncorrectLocalPart",
+  SpacesInLocalPart = "SpacesInLocalPart",
+  MaxLengthExceeded = "MaxLengthExceeded",
+  IncorrectEmail = "IncorrectEmail",
+  ManyEmails = "ManyEmails",
+  EmptyEmail = "EmptyEmail",
+}
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/favicon.png b/packages/shared/coverage/lcov-report/favicon.png new file mode 100644 index 0000000000..c1525b811a Binary files /dev/null and b/packages/shared/coverage/lcov-report/favicon.png differ diff --git a/packages/shared/coverage/lcov-report/index.html b/packages/shared/coverage/lcov-report/index.html new file mode 100644 index 0000000000..733f340399 --- /dev/null +++ b/packages/shared/coverage/lcov-report/index.html @@ -0,0 +1,326 @@ + + + + + + Code coverage report for All files + + + + + + + + + +
+
+

All files

+
+ +
+ 61.66% + Statements + 510/827 +
+ + +
+ 45.08% + Branches + 303/672 +
+ + +
+ 67.95% + Functions + 176/259 +
+ + +
+ 64.53% + Lines + 504/781 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
components/aside +
+
66.66%38/5728.84%15/5295%19/2067.85%38/56
components/avatar +
+
82%82/10041.81%23/5575%42/5683.67%82/98
components/avatar/svg +
+
0%0/00%0/00%0/00%0/0
components/box +
+
60%45/7543.39%23/5353.65%22/4170.96%44/62
components/icon-button +
+
35.08%20/5729.41%20/6858.33%7/1238.46%20/52
components/link +
+
100%19/1963.15%12/19100%12/12100%19/19
components/portal +
+
100%9/9100%13/13100%3/3100%9/9
components/scrollbar +
+
70.83%34/4844.73%17/3850%7/1477.27%34/44
components/text +
+
100%19/1957.69%15/26100%12/12100%19/19
components/tooltip +
+
100%25/2570%7/10100%16/16100%25/25
constants +
+
100%8/8100%0/0100%0/0100%8/8
enums +
+
0%0/00%0/00%0/00%0/0
themes +
+
60%9/1550%5/10100%2/260%9/15
utils +
+
19.38%44/2278.47%15/1777.5%3/4019.9%42/211
utils/email +
+
94.04%158/16891.39%138/151100%31/3195.09%155/163
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/prettify.css b/packages/shared/coverage/lcov-report/prettify.css new file mode 100644 index 0000000000..b317a7cda3 --- /dev/null +++ b/packages/shared/coverage/lcov-report/prettify.css @@ -0,0 +1 @@ +.pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} diff --git a/packages/shared/coverage/lcov-report/prettify.js b/packages/shared/coverage/lcov-report/prettify.js new file mode 100644 index 0000000000..b3225238f2 --- /dev/null +++ b/packages/shared/coverage/lcov-report/prettify.js @@ -0,0 +1,2 @@ +/* eslint-disable */ +window.PR_SHOULD_USE_CONTINUATION=true;(function(){var h=["break,continue,do,else,for,if,return,while"];var u=[h,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"];var p=[u,"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"];var l=[p,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"];var x=[p,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"];var R=[x,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"];var r="all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes";var w=[p,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"];var s="caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END";var I=[h,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"];var f=[h,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"];var H=[h,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"];var A=[l,R,w,s+I,f,H];var e=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/;var C="str";var z="kwd";var j="com";var O="typ";var G="lit";var L="pun";var F="pln";var m="tag";var E="dec";var J="src";var P="atn";var n="atv";var N="nocode";var M="(?:^^\\.?|[+-]|\\!|\\!=|\\!==|\\#|\\%|\\%=|&|&&|&&=|&=|\\(|\\*|\\*=|\\+=|\\,|\\-=|\\->|\\/|\\/=|:|::|\\;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|\\?|\\@|\\[|\\^|\\^=|\\^\\^|\\^\\^=|\\{|\\||\\|=|\\|\\||\\|\\|=|\\~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*";function k(Z){var ad=0;var S=false;var ac=false;for(var V=0,U=Z.length;V122)){if(!(al<65||ag>90)){af.push([Math.max(65,ag)|32,Math.min(al,90)|32])}if(!(al<97||ag>122)){af.push([Math.max(97,ag)&~32,Math.min(al,122)&~32])}}}}af.sort(function(av,au){return(av[0]-au[0])||(au[1]-av[1])});var ai=[];var ap=[NaN,NaN];for(var ar=0;arat[0]){if(at[1]+1>at[0]){an.push("-")}an.push(T(at[1]))}}an.push("]");return an.join("")}function W(al){var aj=al.source.match(new RegExp("(?:\\[(?:[^\\x5C\\x5D]|\\\\[\\s\\S])*\\]|\\\\u[A-Fa-f0-9]{4}|\\\\x[A-Fa-f0-9]{2}|\\\\[0-9]+|\\\\[^ux0-9]|\\(\\?[:!=]|[\\(\\)\\^]|[^\\x5B\\x5C\\(\\)\\^]+)","g"));var ah=aj.length;var an=[];for(var ak=0,am=0;ak=2&&ai==="["){aj[ak]=X(ag)}else{if(ai!=="\\"){aj[ak]=ag.replace(/[a-zA-Z]/g,function(ao){var ap=ao.charCodeAt(0);return"["+String.fromCharCode(ap&~32,ap|32)+"]"})}}}}return aj.join("")}var aa=[];for(var V=0,U=Z.length;V=0;){S[ac.charAt(ae)]=Y}}var af=Y[1];var aa=""+af;if(!ag.hasOwnProperty(aa)){ah.push(af);ag[aa]=null}}ah.push(/[\0-\uffff]/);V=k(ah)})();var X=T.length;var W=function(ah){var Z=ah.sourceCode,Y=ah.basePos;var ad=[Y,F];var af=0;var an=Z.match(V)||[];var aj={};for(var ae=0,aq=an.length;ae=5&&"lang-"===ap.substring(0,5);if(am&&!(ai&&typeof ai[1]==="string")){am=false;ap=J}if(!am){aj[ag]=ap}}var ab=af;af+=ag.length;if(!am){ad.push(Y+ab,ap)}else{var al=ai[1];var ak=ag.indexOf(al);var ac=ak+al.length;if(ai[2]){ac=ag.length-ai[2].length;ak=ac-al.length}var ar=ap.substring(5);B(Y+ab,ag.substring(0,ak),W,ad);B(Y+ab+ak,al,q(ar,al),ad);B(Y+ab+ac,ag.substring(ac),W,ad)}}ah.decorations=ad};return W}function i(T){var W=[],S=[];if(T.tripleQuotedStrings){W.push([C,/^(?:\'\'\'(?:[^\'\\]|\\[\s\S]|\'{1,2}(?=[^\']))*(?:\'\'\'|$)|\"\"\"(?:[^\"\\]|\\[\s\S]|\"{1,2}(?=[^\"]))*(?:\"\"\"|$)|\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$))/,null,"'\""])}else{if(T.multiLineStrings){W.push([C,/^(?:\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$)|\`(?:[^\\\`]|\\[\s\S])*(?:\`|$))/,null,"'\"`"])}else{W.push([C,/^(?:\'(?:[^\\\'\r\n]|\\.)*(?:\'|$)|\"(?:[^\\\"\r\n]|\\.)*(?:\"|$))/,null,"\"'"])}}if(T.verbatimStrings){S.push([C,/^@\"(?:[^\"]|\"\")*(?:\"|$)/,null])}var Y=T.hashComments;if(Y){if(T.cStyleComments){if(Y>1){W.push([j,/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,null,"#"])}else{W.push([j,/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\r\n]*)/,null,"#"])}S.push([C,/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,null])}else{W.push([j,/^#[^\r\n]*/,null,"#"])}}if(T.cStyleComments){S.push([j,/^\/\/[^\r\n]*/,null]);S.push([j,/^\/\*[\s\S]*?(?:\*\/|$)/,null])}if(T.regexLiterals){var X=("/(?=[^/*])(?:[^/\\x5B\\x5C]|\\x5C[\\s\\S]|\\x5B(?:[^\\x5C\\x5D]|\\x5C[\\s\\S])*(?:\\x5D|$))+/");S.push(["lang-regex",new RegExp("^"+M+"("+X+")")])}var V=T.types;if(V){S.push([O,V])}var U=(""+T.keywords).replace(/^ | $/g,"");if(U.length){S.push([z,new RegExp("^(?:"+U.replace(/[\s,]+/g,"|")+")\\b"),null])}W.push([F,/^\s+/,null," \r\n\t\xA0"]);S.push([G,/^@[a-z_$][a-z_$@0-9]*/i,null],[O,/^(?:[@_]?[A-Z]+[a-z][A-Za-z_$@0-9]*|\w+_t\b)/,null],[F,/^[a-z_$][a-z_$@0-9]*/i,null],[G,new RegExp("^(?:0x[a-f0-9]+|(?:\\d(?:_\\d+)*\\d*(?:\\.\\d*)?|\\.\\d\\+)(?:e[+\\-]?\\d+)?)[a-z]*","i"),null,"0123456789"],[F,/^\\[\s\S]?/,null],[L,/^.[^\s\w\.$@\'\"\`\/\#\\]*/,null]);return g(W,S)}var K=i({keywords:A,hashComments:true,cStyleComments:true,multiLineStrings:true,regexLiterals:true});function Q(V,ag){var U=/(?:^|\s)nocode(?:\s|$)/;var ab=/\r\n?|\n/;var ac=V.ownerDocument;var S;if(V.currentStyle){S=V.currentStyle.whiteSpace}else{if(window.getComputedStyle){S=ac.defaultView.getComputedStyle(V,null).getPropertyValue("white-space")}}var Z=S&&"pre"===S.substring(0,3);var af=ac.createElement("LI");while(V.firstChild){af.appendChild(V.firstChild)}var W=[af];function ae(al){switch(al.nodeType){case 1:if(U.test(al.className)){break}if("BR"===al.nodeName){ad(al);if(al.parentNode){al.parentNode.removeChild(al)}}else{for(var an=al.firstChild;an;an=an.nextSibling){ae(an)}}break;case 3:case 4:if(Z){var am=al.nodeValue;var aj=am.match(ab);if(aj){var ai=am.substring(0,aj.index);al.nodeValue=ai;var ah=am.substring(aj.index+aj[0].length);if(ah){var ak=al.parentNode;ak.insertBefore(ac.createTextNode(ah),al.nextSibling)}ad(al);if(!ai){al.parentNode.removeChild(al)}}}break}}function ad(ak){while(!ak.nextSibling){ak=ak.parentNode;if(!ak){return}}function ai(al,ar){var aq=ar?al.cloneNode(false):al;var ao=al.parentNode;if(ao){var ap=ai(ao,1);var an=al.nextSibling;ap.appendChild(aq);for(var am=an;am;am=an){an=am.nextSibling;ap.appendChild(am)}}return aq}var ah=ai(ak.nextSibling,0);for(var aj;(aj=ah.parentNode)&&aj.nodeType===1;){ah=aj}W.push(ah)}for(var Y=0;Y=S){ah+=2}if(V>=ap){Z+=2}}}var t={};function c(U,V){for(var S=V.length;--S>=0;){var T=V[S];if(!t.hasOwnProperty(T)){t[T]=U}else{if(window.console){console.warn("cannot override language handler %s",T)}}}}function q(T,S){if(!(T&&t.hasOwnProperty(T))){T=/^\s*]*(?:>|$)/],[j,/^<\!--[\s\S]*?(?:-\->|$)/],["lang-",/^<\?([\s\S]+?)(?:\?>|$)/],["lang-",/^<%([\s\S]+?)(?:%>|$)/],[L,/^(?:<[%?]|[%?]>)/],["lang-",/^]*>([\s\S]+?)<\/xmp\b[^>]*>/i],["lang-js",/^]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\s\S]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]),["default-markup","htm","html","mxml","xhtml","xml","xsl"]);c(g([[F,/^[\s]+/,null," \t\r\n"],[n,/^(?:\"[^\"]*\"?|\'[^\']*\'?)/,null,"\"'"]],[[m,/^^<\/?[a-z](?:[\w.:-]*\w)?|\/?>$/i],[P,/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^>\'\"\s]*(?:[^>\'\"\s\/]|\/(?=\s)))/],[L,/^[=<>\/]+/],["lang-js",/^on\w+\s*=\s*\"([^\"]+)\"/i],["lang-js",/^on\w+\s*=\s*\'([^\']+)\'/i],["lang-js",/^on\w+\s*=\s*([^\"\'>\s]+)/i],["lang-css",/^style\s*=\s*\"([^\"]+)\"/i],["lang-css",/^style\s*=\s*\'([^\']+)\'/i],["lang-css",/^style\s*=\s*([^\"\'>\s]+)/i]]),["in.tag"]);c(g([],[[n,/^[\s\S]+/]]),["uq.val"]);c(i({keywords:l,hashComments:true,cStyleComments:true,types:e}),["c","cc","cpp","cxx","cyc","m"]);c(i({keywords:"null,true,false"}),["json"]);c(i({keywords:R,hashComments:true,cStyleComments:true,verbatimStrings:true,types:e}),["cs"]);c(i({keywords:x,cStyleComments:true}),["java"]);c(i({keywords:H,hashComments:true,multiLineStrings:true}),["bsh","csh","sh"]);c(i({keywords:I,hashComments:true,multiLineStrings:true,tripleQuotedStrings:true}),["cv","py"]);c(i({keywords:s,hashComments:true,multiLineStrings:true,regexLiterals:true}),["perl","pl","pm"]);c(i({keywords:f,hashComments:true,multiLineStrings:true,regexLiterals:true}),["rb"]);c(i({keywords:w,cStyleComments:true,regexLiterals:true}),["js"]);c(i({keywords:r,hashComments:3,cStyleComments:true,multilineStrings:true,tripleQuotedStrings:true,regexLiterals:true}),["coffee"]);c(g([],[[C,/^[\s\S]+/]]),["regex"]);function d(V){var U=V.langExtension;try{var S=a(V.sourceNode);var T=S.sourceCode;V.sourceCode=T;V.spans=S.spans;V.basePos=0;q(U,T)(V);D(V)}catch(W){if("console" in window){console.log(W&&W.stack?W.stack:W)}}}function y(W,V,U){var S=document.createElement("PRE");S.innerHTML=W;if(U){Q(S,U)}var T={langExtension:V,numberLines:U,sourceNode:S};d(T);return S.innerHTML}function b(ad){function Y(af){return document.getElementsByTagName(af)}var ac=[Y("pre"),Y("code"),Y("xmp")];var T=[];for(var aa=0;aa=0){var ah=ai.match(ab);var am;if(!ah&&(am=o(aj))&&"CODE"===am.tagName){ah=am.className.match(ab)}if(ah){ah=ah[1]}var al=false;for(var ak=aj.parentNode;ak;ak=ak.parentNode){if((ak.tagName==="pre"||ak.tagName==="code"||ak.tagName==="xmp")&&ak.className&&ak.className.indexOf("prettyprint")>=0){al=true;break}}if(!al){var af=aj.className.match(/\blinenums\b(?::(\d+))?/);af=af?af[1]&&af[1].length?+af[1]:true:false;if(af){Q(aj,af)}S={langExtension:ah,sourceNode:aj,numberLines:af};d(S)}}}if(X]*(?:>|$)/],[PR.PR_COMMENT,/^<\!--[\s\S]*?(?:-\->|$)/],[PR.PR_PUNCTUATION,/^(?:<[%?]|[%?]>)/],["lang-",/^<\?([\s\S]+?)(?:\?>|$)/],["lang-",/^<%([\s\S]+?)(?:%>|$)/],["lang-",/^]*>([\s\S]+?)<\/xmp\b[^>]*>/i],["lang-handlebars",/^]*type\s*=\s*['"]?text\/x-handlebars-template['"]?\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-js",/^]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\s\S]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i],[PR.PR_DECLARATION,/^{{[#^>/]?\s*[\w.][^}]*}}/],[PR.PR_DECLARATION,/^{{&?\s*[\w.][^}]*}}/],[PR.PR_DECLARATION,/^{{{>?\s*[\w.][^}]*}}}/],[PR.PR_COMMENT,/^{{![^}]*}}/]]),["handlebars","hbs"]);PR.registerLangHandler(PR.createSimpleLexer([[PR.PR_PLAIN,/^[ \t\r\n\f]+/,null," \t\r\n\f"]],[[PR.PR_STRING,/^\"(?:[^\n\r\f\\\"]|\\(?:\r\n?|\n|\f)|\\[\s\S])*\"/,null],[PR.PR_STRING,/^\'(?:[^\n\r\f\\\']|\\(?:\r\n?|\n|\f)|\\[\s\S])*\'/,null],["lang-css-str",/^url\(([^\)\"\']*)\)/i],[PR.PR_KEYWORD,/^(?:url|rgb|\!important|@import|@page|@media|@charset|inherit)(?=[^\-\w]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|(?:\\[0-9a-f]+ ?))(?:[_a-z0-9\-]|\\(?:\\[0-9a-f]+ ?))*)\s*:/i],[PR.PR_COMMENT,/^\/\*[^*]*\*+(?:[^\/*][^*]*\*+)*\//],[PR.PR_COMMENT,/^(?:)/],[PR.PR_LITERAL,/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],[PR.PR_LITERAL,/^#(?:[0-9a-f]{3}){1,2}/i],[PR.PR_PLAIN,/^-?(?:[_a-z]|(?:\\[\da-f]+ ?))(?:[_a-z\d\-]|\\(?:\\[\da-f]+ ?))*/i],[PR.PR_PUNCTUATION,/^[^\s\w\'\"]+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[[PR.PR_KEYWORD,/^-?(?:[_a-z]|(?:\\[\da-f]+ ?))(?:[_a-z\d\-]|\\(?:\\[\da-f]+ ?))*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[[PR.PR_STRING,/^[^\)\"\']+/]]),["css-str"]); diff --git a/packages/shared/coverage/lcov-report/sort-arrow-sprite.png b/packages/shared/coverage/lcov-report/sort-arrow-sprite.png new file mode 100644 index 0000000000..6ed68316eb Binary files /dev/null and b/packages/shared/coverage/lcov-report/sort-arrow-sprite.png differ diff --git a/packages/shared/coverage/lcov-report/sorter.js b/packages/shared/coverage/lcov-report/sorter.js new file mode 100644 index 0000000000..2bb296a8ca --- /dev/null +++ b/packages/shared/coverage/lcov-report/sorter.js @@ -0,0 +1,196 @@ +/* eslint-disable */ +var addSorting = (function() { + 'use strict'; + var cols, + currentSort = { + index: 0, + desc: false + }; + + // returns the summary table element + function getTable() { + return document.querySelector('.coverage-summary'); + } + // returns the thead element of the summary table + function getTableHeader() { + return getTable().querySelector('thead tr'); + } + // returns the tbody element of the summary table + function getTableBody() { + return getTable().querySelector('tbody'); + } + // returns the th element for nth column + function getNthColumn(n) { + return getTableHeader().querySelectorAll('th')[n]; + } + + function onFilterInput() { + const searchValue = document.getElementById('fileSearch').value; + const rows = document.getElementsByTagName('tbody')[0].children; + for (let i = 0; i < rows.length; i++) { + const row = rows[i]; + if ( + row.textContent + .toLowerCase() + .includes(searchValue.toLowerCase()) + ) { + row.style.display = ''; + } else { + row.style.display = 'none'; + } + } + } + + // loads the search box + function addSearchBox() { + var template = document.getElementById('filterTemplate'); + var templateClone = template.content.cloneNode(true); + templateClone.getElementById('fileSearch').oninput = onFilterInput; + template.parentElement.appendChild(templateClone); + } + + // loads all columns + function loadColumns() { + var colNodes = getTableHeader().querySelectorAll('th'), + colNode, + cols = [], + col, + i; + + for (i = 0; i < colNodes.length; i += 1) { + colNode = colNodes[i]; + col = { + key: colNode.getAttribute('data-col'), + sortable: !colNode.getAttribute('data-nosort'), + type: colNode.getAttribute('data-type') || 'string' + }; + cols.push(col); + if (col.sortable) { + col.defaultDescSort = col.type === 'number'; + colNode.innerHTML = + colNode.innerHTML + ''; + } + } + return cols; + } + // attaches a data attribute to every tr element with an object + // of data values keyed by column name + function loadRowData(tableRow) { + var tableCols = tableRow.querySelectorAll('td'), + colNode, + col, + data = {}, + i, + val; + for (i = 0; i < tableCols.length; i += 1) { + colNode = tableCols[i]; + col = cols[i]; + val = colNode.getAttribute('data-value'); + if (col.type === 'number') { + val = Number(val); + } + data[col.key] = val; + } + return data; + } + // loads all row data + function loadData() { + var rows = getTableBody().querySelectorAll('tr'), + i; + + for (i = 0; i < rows.length; i += 1) { + rows[i].data = loadRowData(rows[i]); + } + } + // sorts the table using the data for the ith column + function sortByIndex(index, desc) { + var key = cols[index].key, + sorter = function(a, b) { + a = a.data[key]; + b = b.data[key]; + return a < b ? -1 : a > b ? 1 : 0; + }, + finalSorter = sorter, + tableBody = document.querySelector('.coverage-summary tbody'), + rowNodes = tableBody.querySelectorAll('tr'), + rows = [], + i; + + if (desc) { + finalSorter = function(a, b) { + return -1 * sorter(a, b); + }; + } + + for (i = 0; i < rowNodes.length; i += 1) { + rows.push(rowNodes[i]); + tableBody.removeChild(rowNodes[i]); + } + + rows.sort(finalSorter); + + for (i = 0; i < rows.length; i += 1) { + tableBody.appendChild(rows[i]); + } + } + // removes sort indicators for current column being sorted + function removeSortIndicators() { + var col = getNthColumn(currentSort.index), + cls = col.className; + + cls = cls.replace(/ sorted$/, '').replace(/ sorted-desc$/, ''); + col.className = cls; + } + // adds sort indicators for current column being sorted + function addSortIndicators() { + getNthColumn(currentSort.index).className += currentSort.desc + ? ' sorted-desc' + : ' sorted'; + } + // adds event listeners for all sorter widgets + function enableUI() { + var i, + el, + ithSorter = function ithSorter(i) { + var col = cols[i]; + + return function() { + var desc = col.defaultDescSort; + + if (currentSort.index === i) { + desc = !currentSort.desc; + } + sortByIndex(i, desc); + removeSortIndicators(); + currentSort.index = i; + currentSort.desc = desc; + addSortIndicators(); + }; + }; + for (i = 0; i < cols.length; i += 1) { + if (cols[i].sortable) { + // add the click event handler on the th so users + // dont have to click on those tiny arrows + el = getNthColumn(i).querySelector('.sorter').parentElement; + if (el.addEventListener) { + el.addEventListener('click', ithSorter(i)); + } else { + el.attachEvent('onclick', ithSorter(i)); + } + } + } + } + // adds sorting functionality to the UI + return function() { + if (!getTable()) { + return; + } + cols = loadColumns(); + loadData(); + addSearchBox(); + addSortIndicators(); + enableUI(); + }; +})(); + +window.addEventListener('load', addSorting); diff --git a/packages/shared/coverage/lcov-report/themes/base.ts.html b/packages/shared/coverage/lcov-report/themes/base.ts.html new file mode 100644 index 0000000000..54ceafdc50 --- /dev/null +++ b/packages/shared/coverage/lcov-report/themes/base.ts.html @@ -0,0 +1,9652 @@ + + + + + + Code coverage report for themes/base.ts + + + + + + + + + +
+
+

All files / themes base.ts

+
+ +
+ 100% + Statements + 4/4 +
+ + +
+ 100% + Branches + 0/0 +
+ + +
+ 100% + Functions + 1/1 +
+ + +
+ 100% + Lines + 4/4 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101 +102 +103 +104 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124 +125 +126 +127 +128 +129 +130 +131 +132 +133 +134 +135 +136 +137 +138 +139 +140 +141 +142 +143 +144 +145 +146 +147 +148 +149 +150 +151 +152 +153 +154 +155 +156 +157 +158 +159 +160 +161 +162 +163 +164 +165 +166 +167 +168 +169 +170 +171 +172 +173 +174 +175 +176 +177 +178 +179 +180 +181 +182 +183 +184 +185 +186 +187 +188 +189 +190 +191 +192 +193 +194 +195 +196 +197 +198 +199 +200 +201 +202 +203 +204 +205 +206 +207 +208 +209 +210 +211 +212 +213 +214 +215 +216 +217 +218 +219 +220 +221 +222 +223 +224 +225 +226 +227 +228 +229 +230 +231 +232 +233 +234 +235 +236 +237 +238 +239 +240 +241 +242 +243 +244 +245 +246 +247 +248 +249 +250 +251 +252 +253 +254 +255 +256 +257 +258 +259 +260 +261 +262 +263 +264 +265 +266 +267 +268 +269 +270 +271 +272 +273 +274 +275 +276 +277 +278 +279 +280 +281 +282 +283 +284 +285 +286 +287 +288 +289 +290 +291 +292 +293 +294 +295 +296 +297 +298 +299 +300 +301 +302 +303 +304 +305 +306 +307 +308 +309 +310 +311 +312 +313 +314 +315 +316 +317 +318 +319 +320 +321 +322 +323 +324 +325 +326 +327 +328 +329 +330 +331 +332 +333 +334 +335 +336 +337 +338 +339 +340 +341 +342 +343 +344 +345 +346 +347 +348 +349 +350 +351 +352 +353 +354 +355 +356 +357 +358 +359 +360 +361 +362 +363 +364 +365 +366 +367 +368 +369 +370 +371 +372 +373 +374 +375 +376 +377 +378 +379 +380 +381 +382 +383 +384 +385 +386 +387 +388 +389 +390 +391 +392 +393 +394 +395 +396 +397 +398 +399 +400 +401 +402 +403 +404 +405 +406 +407 +408 +409 +410 +411 +412 +413 +414 +415 +416 +417 +418 +419 +420 +421 +422 +423 +424 +425 +426 +427 +428 +429 +430 +431 +432 +433 +434 +435 +436 +437 +438 +439 +440 +441 +442 +443 +444 +445 +446 +447 +448 +449 +450 +451 +452 +453 +454 +455 +456 +457 +458 +459 +460 +461 +462 +463 +464 +465 +466 +467 +468 +469 +470 +471 +472 +473 +474 +475 +476 +477 +478 +479 +480 +481 +482 +483 +484 +485 +486 +487 +488 +489 +490 +491 +492 +493 +494 +495 +496 +497 +498 +499 +500 +501 +502 +503 +504 +505 +506 +507 +508 +509 +510 +511 +512 +513 +514 +515 +516 +517 +518 +519 +520 +521 +522 +523 +524 +525 +526 +527 +528 +529 +530 +531 +532 +533 +534 +535 +536 +537 +538 +539 +540 +541 +542 +543 +544 +545 +546 +547 +548 +549 +550 +551 +552 +553 +554 +555 +556 +557 +558 +559 +560 +561 +562 +563 +564 +565 +566 +567 +568 +569 +570 +571 +572 +573 +574 +575 +576 +577 +578 +579 +580 +581 +582 +583 +584 +585 +586 +587 +588 +589 +590 +591 +592 +593 +594 +595 +596 +597 +598 +599 +600 +601 +602 +603 +604 +605 +606 +607 +608 +609 +610 +611 +612 +613 +614 +615 +616 +617 +618 +619 +620 +621 +622 +623 +624 +625 +626 +627 +628 +629 +630 +631 +632 +633 +634 +635 +636 +637 +638 +639 +640 +641 +642 +643 +644 +645 +646 +647 +648 +649 +650 +651 +652 +653 +654 +655 +656 +657 +658 +659 +660 +661 +662 +663 +664 +665 +666 +667 +668 +669 +670 +671 +672 +673 +674 +675 +676 +677 +678 +679 +680 +681 +682 +683 +684 +685 +686 +687 +688 +689 +690 +691 +692 +693 +694 +695 +696 +697 +698 +699 +700 +701 +702 +703 +704 +705 +706 +707 +708 +709 +710 +711 +712 +713 +714 +715 +716 +717 +718 +719 +720 +721 +722 +723 +724 +725 +726 +727 +728 +729 +730 +731 +732 +733 +734 +735 +736 +737 +738 +739 +740 +741 +742 +743 +744 +745 +746 +747 +748 +749 +750 +751 +752 +753 +754 +755 +756 +757 +758 +759 +760 +761 +762 +763 +764 +765 +766 +767 +768 +769 +770 +771 +772 +773 +774 +775 +776 +777 +778 +779 +780 +781 +782 +783 +784 +785 +786 +787 +788 +789 +790 +791 +792 +793 +794 +795 +796 +797 +798 +799 +800 +801 +802 +803 +804 +805 +806 +807 +808 +809 +810 +811 +812 +813 +814 +815 +816 +817 +818 +819 +820 +821 +822 +823 +824 +825 +826 +827 +828 +829 +830 +831 +832 +833 +834 +835 +836 +837 +838 +839 +840 +841 +842 +843 +844 +845 +846 +847 +848 +849 +850 +851 +852 +853 +854 +855 +856 +857 +858 +859 +860 +861 +862 +863 +864 +865 +866 +867 +868 +869 +870 +871 +872 +873 +874 +875 +876 +877 +878 +879 +880 +881 +882 +883 +884 +885 +886 +887 +888 +889 +890 +891 +892 +893 +894 +895 +896 +897 +898 +899 +900 +901 +902 +903 +904 +905 +906 +907 +908 +909 +910 +911 +912 +913 +914 +915 +916 +917 +918 +919 +920 +921 +922 +923 +924 +925 +926 +927 +928 +929 +930 +931 +932 +933 +934 +935 +936 +937 +938 +939 +940 +941 +942 +943 +944 +945 +946 +947 +948 +949 +950 +951 +952 +953 +954 +955 +956 +957 +958 +959 +960 +961 +962 +963 +964 +965 +966 +967 +968 +969 +970 +971 +972 +973 +974 +975 +976 +977 +978 +979 +980 +981 +982 +983 +984 +985 +986 +987 +988 +989 +990 +991 +992 +993 +994 +995 +996 +997 +998 +999 +1000 +1001 +1002 +1003 +1004 +1005 +1006 +1007 +1008 +1009 +1010 +1011 +1012 +1013 +1014 +1015 +1016 +1017 +1018 +1019 +1020 +1021 +1022 +1023 +1024 +1025 +1026 +1027 +1028 +1029 +1030 +1031 +1032 +1033 +1034 +1035 +1036 +1037 +1038 +1039 +1040 +1041 +1042 +1043 +1044 +1045 +1046 +1047 +1048 +1049 +1050 +1051 +1052 +1053 +1054 +1055 +1056 +1057 +1058 +1059 +1060 +1061 +1062 +1063 +1064 +1065 +1066 +1067 +1068 +1069 +1070 +1071 +1072 +1073 +1074 +1075 +1076 +1077 +1078 +1079 +1080 +1081 +1082 +1083 +1084 +1085 +1086 +1087 +1088 +1089 +1090 +1091 +1092 +1093 +1094 +1095 +1096 +1097 +1098 +1099 +1100 +1101 +1102 +1103 +1104 +1105 +1106 +1107 +1108 +1109 +1110 +1111 +1112 +1113 +1114 +1115 +1116 +1117 +1118 +1119 +1120 +1121 +1122 +1123 +1124 +1125 +1126 +1127 +1128 +1129 +1130 +1131 +1132 +1133 +1134 +1135 +1136 +1137 +1138 +1139 +1140 +1141 +1142 +1143 +1144 +1145 +1146 +1147 +1148 +1149 +1150 +1151 +1152 +1153 +1154 +1155 +1156 +1157 +1158 +1159 +1160 +1161 +1162 +1163 +1164 +1165 +1166 +1167 +1168 +1169 +1170 +1171 +1172 +1173 +1174 +1175 +1176 +1177 +1178 +1179 +1180 +1181 +1182 +1183 +1184 +1185 +1186 +1187 +1188 +1189 +1190 +1191 +1192 +1193 +1194 +1195 +1196 +1197 +1198 +1199 +1200 +1201 +1202 +1203 +1204 +1205 +1206 +1207 +1208 +1209 +1210 +1211 +1212 +1213 +1214 +1215 +1216 +1217 +1218 +1219 +1220 +1221 +1222 +1223 +1224 +1225 +1226 +1227 +1228 +1229 +1230 +1231 +1232 +1233 +1234 +1235 +1236 +1237 +1238 +1239 +1240 +1241 +1242 +1243 +1244 +1245 +1246 +1247 +1248 +1249 +1250 +1251 +1252 +1253 +1254 +1255 +1256 +1257 +1258 +1259 +1260 +1261 +1262 +1263 +1264 +1265 +1266 +1267 +1268 +1269 +1270 +1271 +1272 +1273 +1274 +1275 +1276 +1277 +1278 +1279 +1280 +1281 +1282 +1283 +1284 +1285 +1286 +1287 +1288 +1289 +1290 +1291 +1292 +1293 +1294 +1295 +1296 +1297 +1298 +1299 +1300 +1301 +1302 +1303 +1304 +1305 +1306 +1307 +1308 +1309 +1310 +1311 +1312 +1313 +1314 +1315 +1316 +1317 +1318 +1319 +1320 +1321 +1322 +1323 +1324 +1325 +1326 +1327 +1328 +1329 +1330 +1331 +1332 +1333 +1334 +1335 +1336 +1337 +1338 +1339 +1340 +1341 +1342 +1343 +1344 +1345 +1346 +1347 +1348 +1349 +1350 +1351 +1352 +1353 +1354 +1355 +1356 +1357 +1358 +1359 +1360 +1361 +1362 +1363 +1364 +1365 +1366 +1367 +1368 +1369 +1370 +1371 +1372 +1373 +1374 +1375 +1376 +1377 +1378 +1379 +1380 +1381 +1382 +1383 +1384 +1385 +1386 +1387 +1388 +1389 +1390 +1391 +1392 +1393 +1394 +1395 +1396 +1397 +1398 +1399 +1400 +1401 +1402 +1403 +1404 +1405 +1406 +1407 +1408 +1409 +1410 +1411 +1412 +1413 +1414 +1415 +1416 +1417 +1418 +1419 +1420 +1421 +1422 +1423 +1424 +1425 +1426 +1427 +1428 +1429 +1430 +1431 +1432 +1433 +1434 +1435 +1436 +1437 +1438 +1439 +1440 +1441 +1442 +1443 +1444 +1445 +1446 +1447 +1448 +1449 +1450 +1451 +1452 +1453 +1454 +1455 +1456 +1457 +1458 +1459 +1460 +1461 +1462 +1463 +1464 +1465 +1466 +1467 +1468 +1469 +1470 +1471 +1472 +1473 +1474 +1475 +1476 +1477 +1478 +1479 +1480 +1481 +1482 +1483 +1484 +1485 +1486 +1487 +1488 +1489 +1490 +1491 +1492 +1493 +1494 +1495 +1496 +1497 +1498 +1499 +1500 +1501 +1502 +1503 +1504 +1505 +1506 +1507 +1508 +1509 +1510 +1511 +1512 +1513 +1514 +1515 +1516 +1517 +1518 +1519 +1520 +1521 +1522 +1523 +1524 +1525 +1526 +1527 +1528 +1529 +1530 +1531 +1532 +1533 +1534 +1535 +1536 +1537 +1538 +1539 +1540 +1541 +1542 +1543 +1544 +1545 +1546 +1547 +1548 +1549 +1550 +1551 +1552 +1553 +1554 +1555 +1556 +1557 +1558 +1559 +1560 +1561 +1562 +1563 +1564 +1565 +1566 +1567 +1568 +1569 +1570 +1571 +1572 +1573 +1574 +1575 +1576 +1577 +1578 +1579 +1580 +1581 +1582 +1583 +1584 +1585 +1586 +1587 +1588 +1589 +1590 +1591 +1592 +1593 +1594 +1595 +1596 +1597 +1598 +1599 +1600 +1601 +1602 +1603 +1604 +1605 +1606 +1607 +1608 +1609 +1610 +1611 +1612 +1613 +1614 +1615 +1616 +1617 +1618 +1619 +1620 +1621 +1622 +1623 +1624 +1625 +1626 +1627 +1628 +1629 +1630 +1631 +1632 +1633 +1634 +1635 +1636 +1637 +1638 +1639 +1640 +1641 +1642 +1643 +1644 +1645 +1646 +1647 +1648 +1649 +1650 +1651 +1652 +1653 +1654 +1655 +1656 +1657 +1658 +1659 +1660 +1661 +1662 +1663 +1664 +1665 +1666 +1667 +1668 +1669 +1670 +1671 +1672 +1673 +1674 +1675 +1676 +1677 +1678 +1679 +1680 +1681 +1682 +1683 +1684 +1685 +1686 +1687 +1688 +1689 +1690 +1691 +1692 +1693 +1694 +1695 +1696 +1697 +1698 +1699 +1700 +1701 +1702 +1703 +1704 +1705 +1706 +1707 +1708 +1709 +1710 +1711 +1712 +1713 +1714 +1715 +1716 +1717 +1718 +1719 +1720 +1721 +1722 +1723 +1724 +1725 +1726 +1727 +1728 +1729 +1730 +1731 +1732 +1733 +1734 +1735 +1736 +1737 +1738 +1739 +1740 +1741 +1742 +1743 +1744 +1745 +1746 +1747 +1748 +1749 +1750 +1751 +1752 +1753 +1754 +1755 +1756 +1757 +1758 +1759 +1760 +1761 +1762 +1763 +1764 +1765 +1766 +1767 +1768 +1769 +1770 +1771 +1772 +1773 +1774 +1775 +1776 +1777 +1778 +1779 +1780 +1781 +1782 +1783 +1784 +1785 +1786 +1787 +1788 +1789 +1790 +1791 +1792 +1793 +1794 +1795 +1796 +1797 +1798 +1799 +1800 +1801 +1802 +1803 +1804 +1805 +1806 +1807 +1808 +1809 +1810 +1811 +1812 +1813 +1814 +1815 +1816 +1817 +1818 +1819 +1820 +1821 +1822 +1823 +1824 +1825 +1826 +1827 +1828 +1829 +1830 +1831 +1832 +1833 +1834 +1835 +1836 +1837 +1838 +1839 +1840 +1841 +1842 +1843 +1844 +1845 +1846 +1847 +1848 +1849 +1850 +1851 +1852 +1853 +1854 +1855 +1856 +1857 +1858 +1859 +1860 +1861 +1862 +1863 +1864 +1865 +1866 +1867 +1868 +1869 +1870 +1871 +1872 +1873 +1874 +1875 +1876 +1877 +1878 +1879 +1880 +1881 +1882 +1883 +1884 +1885 +1886 +1887 +1888 +1889 +1890 +1891 +1892 +1893 +1894 +1895 +1896 +1897 +1898 +1899 +1900 +1901 +1902 +1903 +1904 +1905 +1906 +1907 +1908 +1909 +1910 +1911 +1912 +1913 +1914 +1915 +1916 +1917 +1918 +1919 +1920 +1921 +1922 +1923 +1924 +1925 +1926 +1927 +1928 +1929 +1930 +1931 +1932 +1933 +1934 +1935 +1936 +1937 +1938 +1939 +1940 +1941 +1942 +1943 +1944 +1945 +1946 +1947 +1948 +1949 +1950 +1951 +1952 +1953 +1954 +1955 +1956 +1957 +1958 +1959 +1960 +1961 +1962 +1963 +1964 +1965 +1966 +1967 +1968 +1969 +1970 +1971 +1972 +1973 +1974 +1975 +1976 +1977 +1978 +1979 +1980 +1981 +1982 +1983 +1984 +1985 +1986 +1987 +1988 +1989 +1990 +1991 +1992 +1993 +1994 +1995 +1996 +1997 +1998 +1999 +2000 +2001 +2002 +2003 +2004 +2005 +2006 +2007 +2008 +2009 +2010 +2011 +2012 +2013 +2014 +2015 +2016 +2017 +2018 +2019 +2020 +2021 +2022 +2023 +2024 +2025 +2026 +2027 +2028 +2029 +2030 +2031 +2032 +2033 +2034 +2035 +2036 +2037 +2038 +2039 +2040 +2041 +2042 +2043 +2044 +2045 +2046 +2047 +2048 +2049 +2050 +2051 +2052 +2053 +2054 +2055 +2056 +2057 +2058 +2059 +2060 +2061 +2062 +2063 +2064 +2065 +2066 +2067 +2068 +2069 +2070 +2071 +2072 +2073 +2074 +2075 +2076 +2077 +2078 +2079 +2080 +2081 +2082 +2083 +2084 +2085 +2086 +2087 +2088 +2089 +2090 +2091 +2092 +2093 +2094 +2095 +2096 +2097 +2098 +2099 +2100 +2101 +2102 +2103 +2104 +2105 +2106 +2107 +2108 +2109 +2110 +2111 +2112 +2113 +2114 +2115 +2116 +2117 +2118 +2119 +2120 +2121 +2122 +2123 +2124 +2125 +2126 +2127 +2128 +2129 +2130 +2131 +2132 +2133 +2134 +2135 +2136 +2137 +2138 +2139 +2140 +2141 +2142 +2143 +2144 +2145 +2146 +2147 +2148 +2149 +2150 +2151 +2152 +2153 +2154 +2155 +2156 +2157 +2158 +2159 +2160 +2161 +2162 +2163 +2164 +2165 +2166 +2167 +2168 +2169 +2170 +2171 +2172 +2173 +2174 +2175 +2176 +2177 +2178 +2179 +2180 +2181 +2182 +2183 +2184 +2185 +2186 +2187 +2188 +2189 +2190 +2191 +2192 +2193 +2194 +2195 +2196 +2197 +2198 +2199 +2200 +2201 +2202 +2203 +2204 +2205 +2206 +2207 +2208 +2209 +2210 +2211 +2212 +2213 +2214 +2215 +2216 +2217 +2218 +2219 +2220 +2221 +2222 +2223 +2224 +2225 +2226 +2227 +2228 +2229 +2230 +2231 +2232 +2233 +2234 +2235 +2236 +2237 +2238 +2239 +2240 +2241 +2242 +2243 +2244 +2245 +2246 +2247 +2248 +2249 +2250 +2251 +2252 +2253 +2254 +2255 +2256 +2257 +2258 +2259 +2260 +2261 +2262 +2263 +2264 +2265 +2266 +2267 +2268 +2269 +2270 +2271 +2272 +2273 +2274 +2275 +2276 +2277 +2278 +2279 +2280 +2281 +2282 +2283 +2284 +2285 +2286 +2287 +2288 +2289 +2290 +2291 +2292 +2293 +2294 +2295 +2296 +2297 +2298 +2299 +2300 +2301 +2302 +2303 +2304 +2305 +2306 +2307 +2308 +2309 +2310 +2311 +2312 +2313 +2314 +2315 +2316 +2317 +2318 +2319 +2320 +2321 +2322 +2323 +2324 +2325 +2326 +2327 +2328 +2329 +2330 +2331 +2332 +2333 +2334 +2335 +2336 +2337 +2338 +2339 +2340 +2341 +2342 +2343 +2344 +2345 +2346 +2347 +2348 +2349 +2350 +2351 +2352 +2353 +2354 +2355 +2356 +2357 +2358 +2359 +2360 +2361 +2362 +2363 +2364 +2365 +2366 +2367 +2368 +2369 +2370 +2371 +2372 +2373 +2374 +2375 +2376 +2377 +2378 +2379 +2380 +2381 +2382 +2383 +2384 +2385 +2386 +2387 +2388 +2389 +2390 +2391 +2392 +2393 +2394 +2395 +2396 +2397 +2398 +2399 +2400 +2401 +2402 +2403 +2404 +2405 +2406 +2407 +2408 +2409 +2410 +2411 +2412 +2413 +2414 +2415 +2416 +2417 +2418 +2419 +2420 +2421 +2422 +2423 +2424 +2425 +2426 +2427 +2428 +2429 +2430 +2431 +2432 +2433 +2434 +2435 +2436 +2437 +2438 +2439 +2440 +2441 +2442 +2443 +2444 +2445 +2446 +2447 +2448 +2449 +2450 +2451 +2452 +2453 +2454 +2455 +2456 +2457 +2458 +2459 +2460 +2461 +2462 +2463 +2464 +2465 +2466 +2467 +2468 +2469 +2470 +2471 +2472 +2473 +2474 +2475 +2476 +2477 +2478 +2479 +2480 +2481 +2482 +2483 +2484 +2485 +2486 +2487 +2488 +2489 +2490 +2491 +2492 +2493 +2494 +2495 +2496 +2497 +2498 +2499 +2500 +2501 +2502 +2503 +2504 +2505 +2506 +2507 +2508 +2509 +2510 +2511 +2512 +2513 +2514 +2515 +2516 +2517 +2518 +2519 +2520 +2521 +2522 +2523 +2524 +2525 +2526 +2527 +2528 +2529 +2530 +2531 +2532 +2533 +2534 +2535 +2536 +2537 +2538 +2539 +2540 +2541 +2542 +2543 +2544 +2545 +2546 +2547 +2548 +2549 +2550 +2551 +2552 +2553 +2554 +2555 +2556 +2557 +2558 +2559 +2560 +2561 +2562 +2563 +2564 +2565 +2566 +2567 +2568 +2569 +2570 +2571 +2572 +2573 +2574 +2575 +2576 +2577 +2578 +2579 +2580 +2581 +2582 +2583 +2584 +2585 +2586 +2587 +2588 +2589 +2590 +2591 +2592 +2593 +2594 +2595 +2596 +2597 +2598 +2599 +2600 +2601 +2602 +2603 +2604 +2605 +2606 +2607 +2608 +2609 +2610 +2611 +2612 +2613 +2614 +2615 +2616 +2617 +2618 +2619 +2620 +2621 +2622 +2623 +2624 +2625 +2626 +2627 +2628 +2629 +2630 +2631 +2632 +2633 +2634 +2635 +2636 +2637 +2638 +2639 +2640 +2641 +2642 +2643 +2644 +2645 +2646 +2647 +2648 +2649 +2650 +2651 +2652 +2653 +2654 +2655 +2656 +2657 +2658 +2659 +2660 +2661 +2662 +2663 +2664 +2665 +2666 +2667 +2668 +2669 +2670 +2671 +2672 +2673 +2674 +2675 +2676 +2677 +2678 +2679 +2680 +2681 +2682 +2683 +2684 +2685 +2686 +2687 +2688 +2689 +2690 +2691 +2692 +2693 +2694 +2695 +2696 +2697 +2698 +2699 +2700 +2701 +2702 +2703 +2704 +2705 +2706 +2707 +2708 +2709 +2710 +2711 +2712 +2713 +2714 +2715 +2716 +2717 +2718 +2719 +2720 +2721 +2722 +2723 +2724 +2725 +2726 +2727 +2728 +2729 +2730 +2731 +2732 +2733 +2734 +2735 +2736 +2737 +2738 +2739 +2740 +2741 +2742 +2743 +2744 +2745 +2746 +2747 +2748 +2749 +2750 +2751 +2752 +2753 +2754 +2755 +2756 +2757 +2758 +2759 +2760 +2761 +2762 +2763 +2764 +2765 +2766 +2767 +2768 +2769 +2770 +2771 +2772 +2773 +2774 +2775 +2776 +2777 +2778 +2779 +2780 +2781 +2782 +2783 +2784 +2785 +2786 +2787 +2788 +2789 +2790 +2791 +2792 +2793 +2794 +2795 +2796 +2797 +2798 +2799 +2800 +2801 +2802 +2803 +2804 +2805 +2806 +2807 +2808 +2809 +2810 +2811 +2812 +2813 +2814 +2815 +2816 +2817 +2818 +2819 +2820 +2821 +2822 +2823 +2824 +2825 +2826 +2827 +2828 +2829 +2830 +2831 +2832 +2833 +2834 +2835 +2836 +2837 +2838 +2839 +2840 +2841 +2842 +2843 +2844 +2845 +2846 +2847 +2848 +2849 +2850 +2851 +2852 +2853 +2854 +2855 +2856 +2857 +2858 +2859 +2860 +2861 +2862 +2863 +2864 +2865 +2866 +2867 +2868 +2869 +2870 +2871 +2872 +2873 +2874 +2875 +2876 +2877 +2878 +2879 +2880 +2881 +2882 +2883 +2884 +2885 +2886 +2887 +2888 +2889 +2890 +2891 +2892 +2893 +2894 +2895 +2896 +2897 +2898 +2899 +2900 +2901 +2902 +2903 +2904 +2905 +2906 +2907 +2908 +2909 +2910 +2911 +2912 +2913 +2914 +2915 +2916 +2917 +2918 +2919 +2920 +2921 +2922 +2923 +2924 +2925 +2926 +2927 +2928 +2929 +2930 +2931 +2932 +2933 +2934 +2935 +2936 +2937 +2938 +2939 +2940 +2941 +2942 +2943 +2944 +2945 +2946 +2947 +2948 +2949 +2950 +2951 +2952 +2953 +2954 +2955 +2956 +2957 +2958 +2959 +2960 +2961 +2962 +2963 +2964 +2965 +2966 +2967 +2968 +2969 +2970 +2971 +2972 +2973 +2974 +2975 +2976 +2977 +2978 +2979 +2980 +2981 +2982 +2983 +2984 +2985 +2986 +2987 +2988 +2989 +2990 +2991 +2992 +2993 +2994 +2995 +2996 +2997 +2998 +2999 +3000 +3001 +3002 +3003 +3004 +3005 +3006 +3007 +3008 +3009 +3010 +3011 +3012 +3013 +3014 +3015 +3016 +3017 +3018 +3019 +3020 +3021 +3022 +3023 +3024 +3025 +3026 +3027 +3028 +3029 +3030 +3031 +3032 +3033 +3034 +3035 +3036 +3037 +3038 +3039 +3040 +3041 +3042 +3043 +3044 +3045 +3046 +3047 +3048 +3049 +3050 +3051 +3052 +3053 +3054 +3055 +3056 +3057 +3058 +3059 +3060 +3061 +3062 +3063 +3064 +3065 +3066 +3067 +3068 +3069 +3070 +3071 +3072 +3073 +3074 +3075 +3076 +3077 +3078 +3079 +3080 +3081 +3082 +3083 +3084 +3085 +3086 +3087 +3088 +3089 +3090 +3091 +3092 +3093 +3094 +3095 +3096 +3097 +3098 +3099 +3100 +3101 +3102 +3103 +3104 +3105 +3106 +3107 +3108 +3109 +3110 +3111 +3112 +3113 +3114 +3115 +3116 +3117 +3118 +3119 +3120 +3121 +3122 +3123 +3124 +3125 +3126 +3127 +3128 +3129 +3130 +3131 +3132 +3133 +3134 +3135 +3136 +3137 +3138 +3139 +3140 +3141 +3142 +3143 +3144 +3145 +3146 +3147 +3148 +3149 +3150 +3151 +3152 +3153 +3154 +3155 +3156 +3157 +3158 +3159 +3160 +3161 +3162 +3163 +3164 +3165 +3166 +3167 +3168 +3169 +3170 +3171 +3172 +3173 +3174 +3175 +3176 +3177 +3178 +3179 +3180 +3181 +3182 +3183 +3184 +3185 +3186 +3187 +3188 +3189 +3190  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +7x +  +7x +7x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +7x +  +  +  +  + 
import AvatarBaseReactSvgUrl from "PUBLIC_DIR/images/avatar.base.react.svg?url";
+ 
+import { globalColors } from "../constants";
+ 
+import { CommonTheme } from "./commonTheme";
+ 
+const {
+  black,
+  white,
+ 
+  grayLight,
+  grayLightMid,
+  grayMid,
+ 
+  gray,
+  grayMain,
+  shuttleGrey,
+ 
+  blueMain,
+ 
+  blueDenim,
+  blueDenimTransparent,
+  blueMaya,
+  blueSky,
+ 
+  orangeMain,
+ 
+  orangePressed,
+ 
+  link,
+ 
+  warningColor,
+  red,
+  blueLightMid,
+ 
+  cyanBlueDarkShade,
+  lightCumulus,
+  lightMediumGoldenrod,
+  activeSuccess,
+  activeError,
+  activeInfo,
+  activeWarning,
+  hoverSuccess,
+  hoverError,
+  hoverInfo,
+  hoverWarning,
+  darkBlack,
+  silver,
+  lightHover,
+  strongBlue,
+  lightGrayishStrongBlue,
+  darkRed,
+ 
+  lightErrorStatus,
+} = globalColors;
+ 
+export const getBaseTheme = () => {
+  return {
+    ...CommonTheme,
+ 
+    isBase: true,
+    color: black,
+    backgroundColor: white,
+    fontFamily: "Open Sans, sans-serif, Arial",
+    fontSize: "13px",
+ 
+    text: {
+      color: black,
+      disableColor: gray,
+      emailColor: "#a3a9ae",
+      fontWeight: "normal",
+      fontWeightBold: "bold",
+    },
+ 
+    heading: {
+      fontSize: {
+        xlarge: "27px",
+        large: "23px",
+        medium: "21px",
+        small: "19px",
+        xsmall: "15px",
+      },
+ 
+      fontWeight: 600,
+      color: black,
+    },
+ 
+    backgroundAndSubstrateColor: "#F8F9F9",
+ 
+    button: {
+      fontWeight: "600",
+      margin: "0",
+      display: "inline-block",
+      textAlign: "center",
+      textDecoration: "none",
+ 
+      topVerticalAlign: "text-top",
+      middleVerticalAlign: "middle",
+      bottomVerticalAlign: "text-bottom",
+ 
+      borderRadius: "3px",
+      stroke: "none",
+      overflow: "hidden",
+      textOverflow: "ellipsis",
+      whiteSpace: "nowrap",
+      outline: "none",
+      boxSizing: "border-box",
+ 
+      paddingRight: "4px",
+ 
+      height: {
+        extraSmall: "24px",
+        small: "32px",
+        normal: "40px",
+        medium: "44px",
+      },
+ 
+      lineHeight: {
+        extraSmall: "15px",
+        small: "20px",
+        normal: "16px",
+        medium: "22px",
+      },
+ 
+      fontSize: {
+        extraSmall: "12px",
+        small: "13px",
+        normal: "14px",
+        medium: "16px",
+      },
+ 
+      padding: {
+        extraSmall: "0 11.5px",
+        small: "0 28px",
+        normal: "0 28px",
+        medium: "0 32px",
+      },
+ 
+      color: {
+        base: black,
+        baseHover: black,
+        baseActive: black,
+        baseDisabled: grayMid,
+        primary: white,
+        primaryHover: white,
+        primaryActive: white,
+        primaryDisabled: white,
+      },
+ 
+      backgroundColor: {
+        base: white,
+        baseHover: white,
+        baseActive: grayLightMid,
+        baseDisabled: grayLight,
+ 
+        primary: blueDenim,
+        primaryHover: blueDenimTransparent,
+        primaryActive: blueMaya,
+        primaryDisabled: blueSky,
+      },
+ 
+      border: {
+        base: `1px solid ${globalColors.grayMid}`,
+        baseHover: `1px solid ${blueDenim}`,
+        baseActive: `1px solid ${globalColors.grayMid}`,
+        baseDisabled: `1px solid ${globalColors.grayLightMid}`,
+ 
+        primary: `1px solid ${blueDenim}`,
+        primaryHover: `1px solid ${blueDenimTransparent}`,
+        primaryActive: `1px solid ${blueMaya}`,
+        primaryDisabled: `1px solid ${blueSky}`,
+      },
+ 
+      loader: {
+        base: blueDenim,
+        primary: white,
+      },
+    },
+ 
+    helpButton: {
+      width: "100%",
+      backgroundColor: white,
+      maxWidth: "500px",
+      margin: "0",
+      lineHeight: "56px",
+      fontWeight: "700",
+      borderBottom: `1px solid ${globalColors.lightGrayishBlue}`,
+      padding: "0 16px 16px",
+      bodyPadding: "16px 0",
+    },
+ 
+    mainButtonMobile: {
+      textColor: grayMain,
+ 
+      buttonColor: orangeMain,
+      iconFill: white,
+ 
+      circleBackground: white,
+ 
+      mobileProgressBarBackground: "rgb(48%, 58%, 69%, 0.4)",
+ 
+      bar: {
+        errorBackground: orangePressed,
+ 
+        icon: "#A3A9AE",
+      },
+ 
+      buttonWrapper: {
+        background: white,
+        uploadingBackground: grayLightMid,
+      },
+ 
+      buttonOptions: {
+        backgroundColor: blueLightMid,
+        color: white,
+      },
+ 
+      dropDown: {
+        position: "fixed",
+        right: "32px",
+        bottom: "32px",
+ 
+        width: "400px",
+ 
+        zIndex: "202",
+ 
+        mobile: {
+          right: "24px",
+          bottom: "24px",
+ 
+          marginLeft: "24px",
+ 
+          width: "calc(100vw - 48px)",
+        },
+        separatorBackground: white,
+ 
+        buttonColor: white,
+        hoverButtonColor: "#3a6c9e",
+ 
+        backgroundActionMobile: blueLightMid,
+      },
+ 
+      dropDownItem: {
+        padding: "10px",
+      },
+    },
+ 
+    mainButton: {
+      backgroundColor: "#4781D1",
+      disableBackgroundColor: "rgba(71, 129, 209, 0.6)",
+      hoverBackgroundColor: "rgba(71, 129, 209, .85)",
+      clickBackgroundColor: "#4074BC",
+ 
+      padding: "5px 14px 5px 12px",
+      borderRadius: "3px",
+      lineHeight: "22px",
+      fontSize: "16px",
+      fontWeight: 700,
+      textColor: white,
+      textColorDisabled: white,
+ 
+      cornerRoundsTopRight: "0",
+      cornerRoundsBottomRight: "0",
+ 
+      svg: {
+        margin: "auto",
+        height: "100%",
+        fill: white,
+      },
+ 
+      dropDown: {
+        top: "100%",
+      },
+ 
+      arrowDropdown: {
+        borderLeft: "4px solid transparent",
+        borderRight: "4px solid transparent",
+        borderTop: "5px solid white",
+        borderTopDisabled: `5px solid white`,
+        right: "14px",
+        top: "50%",
+        width: "0",
+        height: "0",
+        marginTop: " -1px",
+      },
+    },
+ 
+    socialButton: {
+      fontWeight: "500",
+      textDecoration: "none",
+      padding: "0",
+      borderRadius: "2px",
+      height: "40px",
+      heightSmall: "32px",
+      textAlign: "left",
+      stroke: " none",
+      outline: "none",
+      width: "100%",
+ 
+      background: white,
+      disableBackgroundColor: "#F8F9F9",
+      connectBackground: "#3B72A7",
+      hoverBackground: white,
+      hoverConnectBackground: "#265A8F",
+      activeBackground: "grayMaxLight",
+      hoverBorder: "#1877f2",
+ 
+      boxShadow:
+        "0px 1px 1px rgba(0, 0, 0, 0.24),0px 0px 1px rgba(0, 0, 0, 0.12)",
+      hoverBoxShadow: "none",
+ 
+      color: "rgba(0, 0, 0, 0.54)",
+      disableColor: "#333333",
+      disabledSvgColor: "none",
+      border: "none",
+      text: {
+        width: "100%",
+        height: "16px",
+        margin: "0 11px",
+        fontWeight: "500",
+        fontSize: "14px",
+        lineHeight: "16px",
+        letterSpacing: "0.21875px",
+        overflow: "hidden",
+        textOverflow: "ellipsis",
+        whiteSpace: "nowrap",
+        color: "#A3A9AE",
+        hoverColor: black,
+        connectColor: white,
+      },
+ 
+      svg: {
+        margin: "11px 16px",
+        width: "18px",
+        height: "18px",
+        minWidth: "18px",
+        minHeight: "18px",
+        fill: white,
+      },
+    },
+ 
+    groupButton: {
+      fontSize: "14px",
+      lineHeight: "19px",
+      color: black,
+      disableColor: gray,
+      float: "left",
+      height: "19px",
+      overflow: "hidden",
+      padding: "0px",
+ 
+      separator: {
+        border: `1px solid ${globalColors.grayLightMid}`,
+        width: "0px",
+        height: "24px",
+        margin: "16px 12px 0 12px",
+      },
+ 
+      checkbox: {
+        margin: "16px 0 16px 24px",
+        tabletMargin: "auto 0 auto 16px",
+      },
+    },
+ 
+    groupButtonsMenu: {
+      top: "0",
+      background: white,
+      boxShadow: " 0px 10px 18px -8px rgba(0, 0, 0, 0.100306)",
+      height: "48px",
+      tabletHeight: "56px",
+      padding: "0 18px 19px 0",
+      width: "100%",
+      zIndex: "189",
+      marginTop: "1px",
+ 
+      closeButton: {
+        right: "11px",
+        top: "6px",
+        tabletTop: "10px",
+        width: "20px",
+        height: "20px",
+        padding: "8px",
+        hoverBackgroundColor: cyanBlueDarkShade,
+        backgroundColor: grayMid,
+      },
+    },
+ 
+    iconButton: {
+      color: gray,
+      hoverColor: grayMain,
+    },
+    selectorAddButton: {
+      background: grayLightMid,
+      hoverBackground: lightGrayishStrongBlue,
+      activeBackground: grayMid,
+ 
+      iconColor: grayMain,
+      iconColorHover: grayMain,
+      iconColorActive: grayMain,
+ 
+      border: `none`,
+      boxSizing: "border-box",
+      borderRadius: "3px",
+      height: " 32px",
+      width: "32px",
+      padding: "10px",
+      color: grayMain,
+      hoverColor: black,
+    },
+ 
+    saveCancelButtons: {
+      bottom: "0",
+      width: "100%",
+      left: "0",
+      padding: "8px 24px 8px 16px",
+      marginRight: "8px",
+ 
+      unsavedColor: gray,
+    },
+ 
+    selectedItem: {
+      background: grayLight,
+      border: `1px solid ${globalColors.grayLightMid}`,
+      borderRadius: "3px",
+ 
+      textBox: {
+        padding: "0 8px",
+        height: "32px",
+        alignItems: "center",
+        borderRight: `1px solid ${globalColors.grayLightMid}`,
+      },
+ 
+      text: {
+        color: cyanBlueDarkShade,
+        disabledColor: grayMid,
+      },
+ 
+      closeButton: {
+        alignItems: "center",
+        padding: "0 8px",
+        color: "#979797",
+        colorHover: cyanBlueDarkShade,
+        backgroundColor: grayLightMid,
+      },
+    },
+ 
+    checkbox: {
+      fillColor: white,
+      borderColor: grayMid,
+      arrowColor: black,
+      indeterminateColor: black,
+ 
+      disableArrowColor: grayMid,
+      disableBorderColor: grayLightMid,
+      disableFillColor: grayLight,
+      disableIndeterminateColor: gray,
+ 
+      hoverBorderColor: gray,
+      hoverIndeterminateColor: black,
+ 
+      pressedBorderColor: grayMid,
+      pressedFillColor: grayLightMid,
+ 
+      focusColor: gray,
+ 
+      errorColor: "#F21C0E",
+    },
+ 
+    // slider: {
+    //   sliderBarColorProgress: blueMain,
+    //   sliderBarColorProgressDisabled: grayMid,
+    //   sliderBarColor: grayLightMid,
+    //   sliderBarDisableColor: grayLightMid,
+ 
+    //   sliderBarBorderActive: `1px solid ${globalColors.grayMid}`,
+    //   sliderBarBorderDisable: `1px solid ${globalColors.grayMid}`,
+ 
+    //   thumbFillDisable: grayLightMid,
+    //   thumbFillActive: grayLightMid,
+ 
+    //   thumbBorderColorActive: `1px solid ${globalColors.gray}`,
+    //   thumbBorderColorDisable: `1px solid ${globalColors.grayMid}`,
+ 
+    //   sliderWidth: "202px",
+ 
+    //   arrowHover: blueMain,
+    //   arrowColor: grayMid,
+    // },
+ 
+    viewSelector: {
+      fillColor: white,
+      checkedFillColor: gray,
+      fillColorDisabled: grayLight,
+      disabledFillColor: grayLightMid,
+      disabledFillColorInner: grayMid,
+      hoverBorderColor: gray,
+      borderColor: grayMid,
+    },
+ 
+    radioButton: {
+      textColor: black,
+      textDisableColor: gray,
+ 
+      marginBeforeLabel: "8px",
+ 
+      background: white,
+      disableBackground: grayLight,
+ 
+      fillColor: black,
+      borderColor: grayMid,
+ 
+      disableFillColor: grayMid,
+      disableBorderColor: grayLightMid,
+ 
+      hoverBorderColor: gray,
+    },
+ 
+    requestLoader: {
+      backgroundColor: white,
+      border: `1px solid ${globalColors.veryLightGrey}`,
+      overflow: "hidden",
+      padding: "5px 10px",
+      lineHeight: "16px",
+      borderRadius: "5px",
+      boxShadow: "0 2px 8px rgba(0, 0, 0, 0.3)",
+ 
+      marginRight: "10px",
+      top: "10px",
+      width: "100%",
+    },
+ 
+    row: {
+      minHeight: "47px",
+      width: "100%",
+      borderBottom: globalColors.grayLightMid,
+      backgroundColor: globalColors.lightHover,
+      minWidth: "160px",
+      overflow: "hidden",
+      textOverflow: "ellipsis",
+ 
+      element: {
+        marginRight: "14px",
+        marginLeft: "2px",
+      },
+ 
+      optionButton: {
+        padding: "8px 0px 9px 7px",
+      },
+    },
+ 
+    rowContent: {
+      icons: {
+        height: "19px",
+      },
+ 
+      margin: "0 6px",
+      fontSize: "12px",
+      fontStyle: "normal",
+      fontWeight: "600",
+      height: "56px",
+      maxWidth: " 100%",
+ 
+      sideInfo: {
+        minWidth: "160px",
+        margin: "0 6px",
+        overflow: "hidden",
+        textOverflow: "ellipsis",
+      },
+ 
+      mainWrapper: {
+        minWidth: "140px",
+        marginRight: "8px",
+        marginTop: "8px",
+        width: "95%",
+      },
+    },
+ 
+    badge: {
+      border: "1px solid transparent",
+      padding: "1px",
+      lineHeight: "0.8",
+      overflow: "hidden",
+      color: white,
+      backgroundColor: orangeMain,
+      disableBackgroundColor: "#A3A9AE",
+    },
+ 
+    scrollbar: {
+      backgroundColorVertical: "rgba(0, 0, 0, 0.1)",
+      backgroundColorHorizontal: "rgba(0, 0, 0, 0.1)",
+      hoverBackgroundColorVertical: grayMid,
+    },
+ 
+    modalDialog: {
+      backgroundColor: white,
+      textColor: black,
+      headerBorderColor: globalColors.grayLightMid,
+      footerBorderColor: globalColors.grayLightMid,
+      width: "auto",
+      maxwidth: "560px",
+      margin: " 0 auto",
+      minHeight: "100%",
+ 
+      colorDisabledFileIcons: "#f3f4f4",
+ 
+      content: {
+        backgroundColor: white,
+        modalPadding: "0 12px 12px",
+        modalBorderRadius: "6px",
+        asidePadding: "0 16px 16px",
+        heading: {
+          maxWidth: "calc(100% - 18px)",
+          margin: "0",
+          modalLineHeight: "40px",
+          asideLineHeight: "56px",
+          fontWeight: "700",
+          asideFontSize: "21px",
+          modalFontSize: "18px",
+        },
+      },
+ 
+      header: {
+        borderBottom: `1px solid ${globalColors.lightGrayishBlue}`,
+      },
+ 
+      closeButton: {
+        // backgroundColor: "#9a9ea3",
+        fillColor: white,
+      },
+    },
+ 
+    paging: {
+      button: {
+        marginRight: "8px",
+        maxWidth: "110px",
+      },
+ 
+      page: {
+        marginRight: "8px",
+        width: "110%",
+      },
+ 
+      comboBox: {
+        marginLeft: "auto",
+        marginRight: "0px",
+      },
+    },
+ 
+    input: {
+      color: black,
+      disableColor: grayMid,
+ 
+      backgroundColor: white,
+      disableBackgroundColor: grayLight,
+ 
+      width: {
+        base: "173px",
+        middle: "300px",
+        big: "350px",
+        huge: "500px",
+        large: "550px",
+      },
+ 
+      borderRadius: "3px",
+      boxShadow: "none",
+      boxSizing: "border-box",
+      border: "solid 1px",
+ 
+      borderColor: grayMid,
+      errorBorderColor: "#F21C0E",
+      warningBorderColor: warningColor,
+      disabledBorderColor: grayLightMid,
+ 
+      hoverBorderColor: gray,
+      hoverErrorBorderColor: red,
+      hoverWarningBorderColor: warningColor,
+      hoverDisabledBorderColor: grayLightMid,
+ 
+      focusBorderColor: blueMain,
+      focusErrorBorderColor: red,
+      focusWarningBorderColor: warningColor,
+      focusDisabledBorderColor: grayLightMid,
+    },
+ 
+    fileInput: {
+      width: {
+        base: "173px",
+        middle: "300px",
+        big: "350px",
+        huge: "500px",
+        large: "550px",
+      },
+ 
+      height: {
+        base: "32px",
+        middle: "38px",
+        big: "38px",
+        huge: "39px",
+        large: "44px",
+      },
+ 
+      paddingRight: {
+        base: "37px",
+        middle: "48px",
+        big: "53px",
+        huge: "58px",
+        large: "64px",
+      },
+ 
+      icon: {
+        background: white,
+ 
+        border: "1px solid",
+        borderRadius: "0 3px 3px 0",
+ 
+        width: {
+          base: "30px",
+          middle: "36px",
+          big: "37px",
+          huge: "38px",
+          large: "48px",
+        },
+ 
+        height: {
+          base: "30px",
+          middle: "36px",
+          big: "36px",
+          huge: "37px",
+          large: "42px",
+        },
+      },
+ 
+      iconButton: {
+        width: {
+          base: "15px",
+          middle: "15px",
+          big: "16px",
+          huge: "16px",
+          large: "16px",
+        },
+      },
+    },
+ 
+    passwordInput: {
+      disableColor: grayMid,
+      color: gray,
+ 
+      iconColor: grayMid,
+      hoverIconColor: gray,
+ 
+      hoverColor: gray,
+ 
+      lineHeight: "32px",
+ 
+      tooltipTextColor: black,
+ 
+      text: {
+        lineHeight: "14px",
+        marginTop: "-2px",
+      },
+ 
+      link: {
+        marginTop: "-6px",
+ 
+        tablet: {
+          width: "100%",
+          marginLeft: "0px",
+          marginTop: "-1px",
+        },
+      },
+ 
+      progress: {
+        borderRadius: "2px",
+        marginTop: "-2px",
+      },
+ 
+      newPassword: {
+        margin: "0 16px",
+ 
+        svg: {
+          overflow: "hidden",
+          marginBottom: "4px",
+        },
+      },
+    },
+ 
+    searchInput: {
+      fontSize: "14px",
+      fontWeight: "600",
+ 
+      iconColor: grayMid,
+      hoverIconColor: grayMid,
+    },
+ 
+    inputPhone: {
+      activeBorderColor: "#2da7db",
+      inactiveBorderColor: "#d0d5da",
+      errorBorderColor: "#f21c0e",
+      backgroundColor: "#fff",
+      color: "#33333",
+      scrollBackground: "#a3a9ae",
+      placeholderColor: "#a3a9ae",
+      dialCodeColor: "#a3a9ae",
+      width: "320px",
+      height: "44px",
+    },
+ 
+    textInput: {
+      fontWeight: "normal",
+      placeholderColor: gray,
+      disablePlaceholderColor: grayMid,
+ 
+      transition: "all 0.2s ease 0s",
+      appearance: "none",
+      display: "flex",
+      flex: "1 1 0%",
+      outline: "none",
+      overflow: "hidden",
+      opacity: "1",
+ 
+      lineHeight: {
+        base: "20px",
+        middle: "20px",
+        big: "20px",
+        huge: "21px",
+        large: "20px",
+      },
+ 
+      fontSize: {
+        base: "13px",
+        middle: "14px",
+        big: "16px",
+        huge: "18px",
+        large: "16px",
+      },
+ 
+      padding: {
+        base: "5px 6px",
+        middle: "8px 12px",
+        big: "8px 16px",
+        huge: "8px 20px",
+        large: "11px 12px",
+      },
+    },
+ 
+    inputBlock: {
+      height: "100%",
+      paddingRight: "8px",
+      paddingLeft: "1px",
+ 
+      display: "flex",
+      alignItems: "center",
+      padding: "2px 0px 2px 2px",
+      margin: "0",
+ 
+      borderColor: blueMain,
+ 
+      iconColor: grayMid,
+      hoverIconColor: grayMid,
+    },
+ 
+    textArea: {
+      disabledColor: grayLight,
+ 
+      focusBorderColor: blueMain,
+      focusErrorBorderColor: red,
+      focusOutline: "none",
+ 
+      scrollWidth: "100%",
+      scrollHeight: "91px",
+ 
+      numerationColor: "#A3A9AE",
+ 
+      copyIconFilter:
+        "invert(71%) sepia(1%) saturate(1597%) hue-rotate(166deg) brightness(100%) contrast(73%)",
+    },
+ 
+    link: {
+      color: black,
+      lineHeight: "calc(100% + 6px)",
+      opacity: "0.5",
+      textDecoration: "none",
+      cursor: "pointer",
+      display: "inline-block",
+ 
+      hover: {
+        textDecoration: "underline dashed",
+        page: { textDecoration: "underline" },
+      },
+    },
+ 
+    linkWithDropdown: {
+      paddingRight: "20px",
+      semiTransparentOpacity: "0.5",
+      textDecoration: "none",
+      disableColor: gray,
+ 
+      svg: {
+        opacity: "1",
+        semiTransparentOpacity: "0.5",
+      },
+ 
+      text: { maxWidth: "100%" },
+ 
+      span: { maxWidth: "300px" },
+ 
+      expander: {
+        iconColor: black,
+      },
+ 
+      color: {
+        default: "#A3A9AE",
+        hover: "#555F65",
+        active: "#333333",
+        focus: "#333333",
+      },
+ 
+      background: {
+        default: "transparent",
+        hover: "#ECEEF1",
+        active: "#D0D5DA",
+        focus: "#DFE2E3",
+      },
+ 
+      caret: {
+        width: "5px",
+        minWidth: "5px",
+        height: "4px",
+        minHeight: "4px",
+        marginLeft: "5px",
+        marginTop: "-4px",
+        right: "6px",
+        top: "0",
+        bottom: "0",
+        isOpenBottom: "-1px",
+        margin: "auto",
+        opacity: "0",
+        transform: "scale(1, -1)",
+      },
+    },
+ 
+    tooltip: {
+      borderRadius: "6px",
+      boxShadow: "0px 10px 15px rgba(4, 15, 27, 0.13)",
+      opacity: "1",
+      padding: "8px 12px",
+      pointerEvents: "auto",
+      maxWidth: "340px",
+      color: "#F8F7BF",
+      textColor: black,
+ 
+      before: {
+        border: "none",
+      },
+      after: {
+        border: "none",
+      },
+    },
+ 
+    tabsContainer: {
+      scrollbar: {
+        width: "100%",
+        height: "44px",
+      },
+ 
+      label: {
+        height: " 32px",
+        borderRadius: "16px",
+        minWidth: "fit-content",
+        marginRight: "8px",
+        width: "fit-content",
+ 
+        backgroundColor: blueLightMid,
+        hoverBackgroundColor: grayLight,
+        disableBackgroundColor: grayLightMid,
+ 
+        title: {
+          margin: "7px 15px 7px 15px",
+          overflow: "hidden",
+          color: white,
+          hoverColor: black,
+          disableColor: grayMid,
+        },
+      },
+    },
+ 
+    fieldContainer: {
+      horizontal: {
+        margin: "0 0 16px 0",
+ 
+        label: {
+          lineHeight: "32px",
+          margin: "0",
+        },
+ 
+        body: {
+          flexGrow: "1",
+        },
+ 
+        iconButton: {
+          marginTop: "10px",
+          marginLeft: "8px",
+        },
+      },
+ 
+      vertical: {
+        margin: "0 0 16px 0",
+ 
+        label: {
+          lineHeight: "20px",
+          height: "20px",
+        },
+ 
+        labelIcon: {
+          width: "100%",
+          margin: "0 0 4px 0",
+        },
+ 
+        body: {
+          width: "100%",
+        },
+ 
+        iconButton: {
+          margin: "0",
+          padding: "0px 8px",
+          width: "12px",
+          height: "12px",
+        },
+      },
+ 
+      errorLabel: {
+        color: "#F21C0E",
+      },
+    },
+ 
+    avatar: {
+      defaultImage: `url("${AvatarBaseReactSvgUrl}")`,
+      initialsContainer: {
+        color: white,
+        left: "50%",
+        top: "50%",
+        transform: "translate(-50%, -50%)",
+        fontWeight: "600",
+ 
+        fontSize: {
+          min: "12px",
+          small: "12px",
+          base: "16px",
+          medium: "20px",
+          big: "34px",
+          max: "72px",
+        },
+      },
+ 
+      roleWrapperContainer: {
+        right: {
+          min: "-5px",
+          small: "-2px",
+          base: "-2px",
+          medium: "-4px",
+          big: "3px",
+          max: "0px",
+        },
+ 
+        bottom: {
+          min: "-5px",
+          small: "3px",
+          base: "4px",
+          medium: "6px",
+          big: "3px",
+          max: "0px",
+        },
+ 
+        width: {
+          medium: "16px",
+          max: "24px",
+        },
+ 
+        height: {
+          medium: "16px",
+          max: "24px",
+        },
+      },
+ 
+      imageContainer: {
+        backgroundImage: blueMain,
+        background: grayMid,
+        borderRadius: "50%",
+        height: "100%",
+ 
+        svg: {
+          display: "block",
+          width: "50%",
+          height: "100%",
+          margin: "auto",
+          fill: white,
+        },
+      },
+ 
+      administrator: {
+        fill: orangeMain,
+        stroke: darkBlack,
+        color: white,
+      },
+ 
+      guest: {
+        fill: "#3B72A7",
+        stroke: darkBlack,
+        color: white,
+      },
+ 
+      owner: {
+        fill: "#EDC409",
+        stroke: darkBlack,
+        color: white,
+      },
+ 
+      editContainer: {
+        right: "0px",
+        bottom: "0px",
+        fill: white,
+        backgroundColor: blueLightMid,
+        borderRadius: "50%",
+        height: "32px",
+        width: "32px",
+      },
+ 
+      image: {
+        width: "100%",
+        height: "100%",
+        borderRadius: "50%",
+      },
+ 
+      icon: {
+        background: "#ECEEF1",
+        color: "#A3A9AE",
+      },
+ 
+      width: {
+        min: "32px",
+        small: "36px",
+        base: "40px",
+        medium: "48px",
+        big: "80px",
+        max: "124px",
+      },
+ 
+      height: {
+        min: "32px",
+        small: "36px",
+        base: "40px",
+        medium: "48px",
+        big: "80px",
+        max: "124px",
+      },
+    },
+ 
+    avatarEditor: {
+      minWidth: "208px",
+      maxWidth: "300px",
+      width: "max-content",
+    },
+ 
+    avatarEditorBody: {
+      maxWidth: "400px",
+ 
+      selectLink: {
+        color: black,
+        linkColor: link,
+      },
+ 
+      slider: {
+        width: "100%",
+        margin: "24px 0",
+        backgroundColor: "transparent",
+ 
+        runnableTrack: {
+          background: grayLightMid,
+          focusBackground: grayLightMid,
+          border: `1.4px solid ${grayLightMid}`,
+          borderRadius: "5.6px",
+          width: "100%",
+          height: "8px",
+        },
+ 
+        sliderThumb: {
+          marginTop: "-9.4px",
+          width: "24px",
+          height: "24px",
+          background: blueMain,
+          disabledBackground: "#A6DCF2",
+          borderWidth: "6px",
+          borderStyle: "solid",
+          borderColor: `${white}`,
+          borderRadius: "30px",
+          boxShadow: "0px 5px 20px rgba(4, 15, 27, 0.13)",
+        },
+ 
+        thumb: {
+          width: "24px",
+          height: "24px",
+          background: blueMain,
+          border: `6px solid ${white}`,
+          borderRadius: "30px",
+          marginTop: "0px",
+          boxShadow: "0px 5px 20px rgba(4, 15, 27, 0.13)",
+        },
+ 
+        rangeTrack: {
+          background: grayLightMid,
+          border: `1.4px solid ${grayLightMid}`,
+          borderRadius: "5.6px",
+          width: "100%",
+          height: "8px",
+        },
+ 
+        rangeThumb: {
+          width: "14px",
+          height: "14px",
+          background: blueMain,
+          border: `6px solid ${white}`,
+          borderRadius: "30px",
+          boxShadow: "0px 5px 20px rgba(4, 15, 27, 0.13)",
+        },
+ 
+        track: {
+          background: "transparent",
+          borderColor: "transparent",
+          borderWidth: "10.2px 0",
+          color: "transparent",
+          width: "100%",
+          height: "8px",
+        },
+ 
+        trackNumber: {
+          color: "#A3A9AE",
+        },
+ 
+        fillLower: {
+          background: grayLightMid,
+          focusBackground: grayLightMid,
+          border: `1.4px solid ${grayLightMid}`,
+          borderRadius: "11.2px",
+        },
+ 
+        fillUpper: {
+          background: grayLightMid,
+          focusBackground: grayLightMid,
+          border: `1.4px solid ${grayLightMid}`,
+          borderRadius: "11.2px",
+        },
+      },
+ 
+      dropZone: {
+        border: `1px dashed ${silver}`,
+      },
+ 
+      container: {
+        miniPreview: {
+          width: "160px",
+          border: `1px solid ${grayLightMid}`,
+          borderRadius: "6px",
+          padding: "8px",
+        },
+ 
+        buttons: {
+          height: "32px",
+          background: gray,
+ 
+          mobileWidth: "40px",
+          mobileHeight: "100%",
+          mobileBackground: "none",
+        },
+ 
+        button: {
+          background: gray,
+          fill: white,
+          hoverFill: white,
+          padding: "0 12px",
+          height: "40px",
+          borderRadius: "6px",
+        },
+ 
+        zoom: {
+          height: "56px",
+ 
+          mobileHeight: "24px",
+          marginTop: "16px",
+        },
+      },
+    },
+ 
+    backdrop: {
+      backgroundColor: "rgba(6, 22, 38, 0.2)",
+      unsetBackgroundColor: "unset",
+    },
+ 
+    treeMenu: {
+      disabledColor: "#767676",
+    },
+ 
+    treeNode: {
+      background: "#f3f4f4",
+      disableColor: "#A3A9AE",
+ 
+      dragging: {
+        draggable: {
+          background: lightCumulus,
+          hoverBackgroundColor: lightMediumGoldenrod,
+          borderRadius: "3px",
+        },
+ 
+        title: {
+          width: "85%",
+        },
+      },
+      icon: {
+        color: grayMain,
+      },
+ 
+      draggable: {
+        color: cyanBlueDarkShade,
+        dragOverBackgroundColor: strongBlue,
+        border: `1px ${strongBlue} solid`,
+        dragOverColor: white,
+ 
+        gapTop: {
+          borderTop: `2px blue solid`,
+        },
+ 
+        gapBottom: {
+          borderBottom: `2px blue solid`,
+        },
+      },
+ 
+      contentWrapper: {
+        color: darkRed,
+      },
+ 
+      title: {
+        color: cyanBlueDarkShade,
+      },
+ 
+      selected: {
+        background: lightGrayishStrongBlue,
+        hoverBackgroundColor: lightGrayishStrongBlue,
+        borderRadius: "3px",
+      },
+ 
+      checkbox: {
+        border: `2px solid ${white}`,
+        borderTop: 0,
+        borderLeft: 0,
+      },
+    },
+ 
+    progressBar: {
+      backgroundColor: "#DADDDF",
+ 
+      percent: {
+        background: "#4781D1",
+      },
+    },
+ 
+    dropDown: {
+      fontWeight: "600",
+      fontSize: "13px",
+      zIndex: "400",
+      background: white,
+      borderRadius: "6px",
+      boxShadow: "0px 5px 20px rgba(0, 0, 0, 0.13)",
+      border: "none",
+    },
+ 
+    dropDownItem: {
+      color: black,
+      disableColor: gray,
+      backgroundColor: white,
+      hoverBackgroundColor: grayLight,
+      hoverDisabledBackgroundColor: white,
+      selectedBackgroundColor: lightHover,
+      fontWeight: "600",
+      fontSize: "13px",
+      width: "100%",
+      maxWidth: "500px",
+      border: "0px",
+      margin: "0px",
+      padding: "0px 12px",
+      tabletPadding: "0px 16px",
+      lineHeight: "32px",
+      tabletLineHeight: "36px",
+ 
+      icon: {
+        width: "16px",
+        marginRight: "8px",
+        lineHeight: "10px",
+ 
+        color: black,
+        disableColor: gray,
+      },
+ 
+      separator: {
+        padding: "0px 16px",
+        borderBottom: `1px solid ${globalColors.grayLightMid}`,
+        margin: " 4px 16px 4px",
+        lineHeight: "1px",
+        height: "1px",
+        width: "calc(100% - 32px)",
+      },
+    },
+ 
+    toast: {
+      active: {
+        success: activeSuccess,
+        error: activeError,
+        info: activeInfo,
+        warning: activeWarning,
+      },
+      hover: {
+        success: hoverSuccess,
+        error: hoverError,
+        info: hoverInfo,
+        warning: hoverWarning,
+      },
+      border: {
+        success: "none",
+        error: "none",
+        info: "none",
+        warning: "none",
+      },
+ 
+      zIndex: "9999",
+      position: "fixed",
+      padding: "4px",
+      width: "320px",
+      color: white,
+      top: "16px",
+      right: "24px",
+      marginTop: "0px",
+ 
+      closeButton: {
+        color: white,
+        fontWeight: "700",
+        fontSize: "14px",
+        background: "transparent",
+        padding: "0",
+        opacity: "0.7",
+        hoverOpacity: "1",
+        transition: "0.3s ease",
+      },
+ 
+      main: {
+        marginBottom: "1rem",
+        boxShadow: "0px 10px 16px -12px rgba(0, 0, 0, 0.3)",
+        maxHeight: "800px",
+        overflow: "hidden",
+        borderRadius: "6px",
+        color: darkBlack,
+        margin: "0 0 12px",
+        padding: "12px",
+        minHeight: "32px",
+        width: "100%",
+        right: "0",
+        transition: "0.3s",
+      },
+    },
+ 
+    toastr: {
+      svg: {
+        width: "16px",
+        minWidth: "16px",
+        height: "16px",
+        minHeight: "16px",
+        color: {
+          success: black,
+          error: black,
+          info: black,
+          warning: black,
+        },
+      },
+ 
+      text: {
+        lineHeight: " 1.3",
+        fontSize: "12px",
+        color: black,
+      },
+ 
+      title: {
+        fontWeight: "600",
+        margin: "0",
+        marginBottom: "5px",
+        lineHeight: "16px",
+        color: {
+          success: darkBlack,
+          error: darkBlack,
+          info: darkBlack,
+          warning: darkBlack,
+        },
+        fontSize: "12px",
+      },
+ 
+      closeButtonColor: black,
+    },
+ 
+    loader: {
+      color: shuttleGrey,
+      size: "40px",
+      marginRight: "2px",
+      borderRadius: "50%",
+    },
+ 
+    rombsLoader: {
+      blue: {
+        colorStep_1: "#F2CBBF",
+        colorStep_2: "#fff",
+        colorStep_3: "#E6E4E4",
+        colorStep_4: "#D2D2D2",
+      },
+      red: {
+        colorStep_1: "#BFE8F8",
+        colorStep_2: "#fff",
+        colorStep_3: "#EFEFEF",
+      },
+      green: {
+        colorStep_1: "#CBE0AC",
+        colorStep_2: "#fff",
+        colorStep_3: "#EFEFEF",
+        colorStep_4: "#E6E4E4",
+      },
+    },
+ 
+    dialogLoader: {
+      borderBottom: "1px solid rgb(222, 226, 230)",
+    },
+ 
+    // dropDownItem: {
+    //   width: "100%",
+    //   maxWidth: "240px",
+    //   border: "none",
+    //   cursor: "pointer",
+    //   padding: "0px 16px",
+    //   lineHeight: "32px",
+    //   textAlign: "left",
+    //   background: "none",
+    //   textDecoration: "none",
+    //   fontStyle: "normal",
+    //   fontWeight: "600",
+    //   fontSize: "13px",
+ 
+    //   whiteSpace: "nowrap",
+    //   overflow: "hidden",
+    //   textOverflow: "ellipsis",
+ 
+    //   outline: "none",
+    //   color: black,
+    //   textTransform: "none",
+ 
+    //   hoverBackgroundColor: grayLight,
+    //   noHoverBackgroundColor: white,
+ 
+    //   header: {
+    //     color: gray,
+    //     hoverCursor: "default",
+    //     hoverBackgroundColor: "white",
+    //     textTransform: "uppercase",
+    //   },
+ 
+    //   disabled: {
+    //     color: gray,
+    //     hoverCursor: "default",
+    //     hoverBackgroundColor: "white",
+    //   },
+ 
+    //   separator: {
+    //     padding: "0px 16px",
+    //     border: `0.5px solid ${grayLightMid}`,
+    //     cursor: "default",
+    //     margin: "6px 16px 6px",
+    //     lineHeight: "1px",
+    //     height: "1px",
+    //     width: "calc(100% - 32px)",
+    //   },
+ 
+    //   tablet: { lineHeight: "36px" },
+ 
+    comboBox: {
+      padding: "6px 0px",
+      background: lightGrayishStrongBlue,
+ 
+      width: {
+        base: "173px",
+        middle: "300px",
+        big: "350px",
+        huge: "500px",
+      },
+ 
+      arrow: {
+        width: "6px",
+        flex: "0 0 6px",
+        marginTopWithBorder: "5px",
+        marginTop: "12px",
+        marginRight: "8px",
+        marginLeft: "auto",
+      },
+ 
+      button: {
+        height: "18px",
+        heightWithBorder: "30px",
+        heightModernView: "28px",
+ 
+        paddingLeft: "16px",
+        paddingRightNoArrow: "16px",
+        paddingRight: "8px",
+ 
+        selectPaddingLeft: "8px",
+        selectPaddingRightNoArrow: "14px",
+        selectPaddingRight: "6px",
+ 
+        color: black,
+        disabledColor: grayMid,
+        background: white,
+        backgroundWithBorder: "none",
+        backgroundModernView: "none",
+ 
+        border: `1px solid ${grayMid}`,
+        borderRadius: "3px",
+        borderColor: blueMain,
+        openBorderColor: blueMain,
+        disabledBorderColor: grayLightMid,
+        disabledBackground: grayLight,
+ 
+        hoverBorderColor: gray,
+        hoverBorderColorOpen: blueMain,
+        hoverDisabledBorderColor: grayLightMid,
+ 
+        hoverBackgroundModernView: "#ECEEF1",
+        activeBackgroundModernView: "#D0D5DA",
+        focusBackgroundModernView: "#DFE2E3",
+      },
+ 
+      label: {
+        marginRightWithBorder: "8px",
+        marginRight: "4px",
+ 
+        disabledColor: grayMid,
+        color: black,
+        selectedColor: black,
+        maxWidth: "175px",
+ 
+        lineHeightWithoutBorder: "16px",
+        lineHeightTextDecoration: "underline dashed",
+      },
+ 
+      childrenButton: {
+        marginRight: "8px",
+        width: "16px",
+        height: "16px",
+ 
+        defaultDisabledColor: grayMid,
+        defaultColor: gray,
+        disabledColor: grayMid,
+        color: black,
+      },
+    },
+ 
+    toggleContent: {
+      headingHeight: "24px",
+      headingLineHeight: "26px",
+      hoverBorderBottom: "1px dashed",
+      contentPadding: "10px 0px 0px 0px",
+      arrowMargin: "4px 8px 4px 0px",
+      transform: "rotate(180deg)",
+      iconColor: black,
+ 
+      childrenContent: {
+        color: black,
+        paddingTop: "6px",
+      },
+    },
+ 
+    toggleButton: {
+      fillColorDefault: "#4781D1",
+      fillColorOff: "#D0D5DA",
+      hoverFillColorOff: "#A3A9AE",
+      fillCircleColor: white,
+      fillCircleColorOff: white,
+    },
+ 
+    contextMenuButton: {
+      content: {
+        width: "100%",
+        backgroundColor: white,
+        padding: "0 16px 16px",
+      },
+ 
+      headerContent: {
+        maxWidth: "500px",
+        margin: "0",
+        lineHeight: "56px",
+        fontWeight: "700",
+        borderBottom: `1px solid ${globalColors.lightGrayishBlue}`,
+      },
+ 
+      bodyContent: {
+        padding: "16px 0",
+      },
+    },
+ 
+    calendar: {
+      color: "#333333",
+      disabledColor: "#DFE2E3",
+      pastColor: "#A3A9AE",
+      onHoverBackground: "#f3f4f4",
+      titleColor: "#555F65",
+      outlineColor: "#eceef1",
+      arrowColor: "#555f65",
+      disabledArrow: "#A3A9AE",
+      weekdayColor: "#A3A9AE",
+      accent: "#4781d1",
+      boxShadow: "0px 12px 40px rgba(4, 15, 27, 0.12)",
+    },
+ 
+    datePicker: {
+      width: "115px",
+      dropDownPadding: "16px 16px 16px 17px",
+      contentPadding: "0 16px 16px",
+      bodyPadding: "16px 0",
+      backgroundColor: white,
+      inputBorder: blueMain,
+      iconPadding: "8px 8px 7px 0px",
+ 
+      contentMaxWidth: "500px",
+      contentLineHeight: "56px",
+      contentFontWeight: "700",
+ 
+      borderBottom: `1px solid ${globalColors.lightGrayishBlue}`,
+    },
+ 
+    aside: {
+      backgroundColor: white,
+      height: "100%",
+      overflowX: "hidden",
+      overflowY: "auto",
+      position: "fixed",
+      right: "0",
+      top: "0",
+      bottom: "16px",
+      paddingBottom: "64px",
+      transition: "transform 0.3s ease-in-out",
+    },
+ 
+    dragAndDrop: {
+      height: "100%",
+      border: `1px solid ${globalColors.darkSilver}`,
+      transparentBorder: "1px solid transparent",
+      acceptBackground: lightMediumGoldenrod,
+      background: lightCumulus,
+    },
+ 
+    // phoneInput: {
+    //   width: "304px",
+    //   height: "44px",
+    //   itemTextColor: black,
+    //   itemBackgroundColor: white,
+    //   itemHoverColor: grayLightMid,
+    //   scrollBackground: "rgba(0, 0, 0, 0.1)",
+    //   placeholderColor: gray,
+    // },
+ 
+    // squareButton: {
+    //   height: "32px",
+    //   width: "32px",
+    //   color: gray,
+    //   backgroundColor: white,
+    //   border: `1px solid ${grayMid}`,
+    //   borderRadius: "3px",
+    //   outline: "none",
+    //   hover: {
+    //     backgroundColor: white,
+    //     border: `1px solid ${gray}`,
+    //   },
+    //   click: {
+    //     backgroundColor: grayLightMid,
+    //     border: `1px solid ${gray}`,
+    //   },
+    //   disable: {
+    //     backgroundColor: grayLight,
+    //     border: `1px solid ${grayLightMid}`,
+    //   },
+    //   crossShape: {
+    //     color: graySilver,
+    //     disable: {
+    //       color: gray,
+    //     },
+    //   },
+    // },
+ 
+    // roundButton: {
+    //   height: "40px",
+    //   width: "40px",
+    //   backgroundColor: grayLight,
+    //   borderRadius: {
+    //     plus: "112px",
+    //     minus: "81px",
+    //   },
+    //   borderStyle: "none",
+    //   outline: "none",
+    //   hover: {
+    //     backgroundColor: grayLightMid,
+    //   },
+    //   click: {
+    //     backgroundColor: grayMid,
+    //   },
+    //   disable: {
+    //     backgroundColor: grayLight,
+    //   },
+    //   plus: {
+    //     color: grayMid,
+    //     disable: {
+    //       color: black,
+    //     },
+    //   },
+    // },
+ 
+    catalog: {
+      background: "#f8f9f9",
+ 
+      header: {
+        borderBottom: "1px solid #eceef1",
+        iconFill: "#657077",
+      },
+      control: {
+        background: "#9a9ea3",
+        fill: "#ffffff",
+      },
+ 
+      headerBurgerColor: "#657077",
+ 
+      verticalLine: "1px solid #eceef1",
+ 
+      profile: {
+        borderTop: "1px solid #eceef1",
+        background: "#f3f4f4",
+      },
+ 
+      paymentAlert: {
+        color: "#ed7309",
+        warningColor: "#F21C0E",
+      },
+ 
+      teamTrainingAlert: {
+        titleColor: "#388BDE",
+        borderColor: "#388BDE",
+        linkColor: "#5299E0",
+      },
+    },
+ 
+    alertComponent: {
+      descriptionColor: "#555F65",
+      iconColor: "#657077",
+    },
+ 
+    catalogItem: {
+      container: {
+        width: "100%",
+        height: "36px",
+        padding: "0 12px",
+        marginBottom: "16px",
+        background: "#fff",
+        tablet: {
+          height: "44px",
+          padding: "0 12px",
+          marginBottom: "24px",
+        },
+      },
+      sibling: {
+        active: {
+          background: lightGrayishStrongBlue,
+        },
+        hover: {
+          background: grayLightMid,
+        },
+      },
+      img: {
+        svg: {
+          width: "16px",
+          height: "16px",
+ 
+          fill: "#657077",
+          isActiveFill: "#4781D1",
+          tablet: {
+            width: "20px",
+            height: "20px",
+          },
+        },
+      },
+      text: {
+        width: "100%",
+        marginLeft: "8px",
+        lineHeight: "20px",
+        color: cyanBlueDarkShade,
+        isActiveColor: "#4781D1",
+        fontSize: "13px",
+        fontWeight: 600,
+        tablet: {
+          marginLeft: "12px",
+          lineHeight: "20px",
+          fontSize: "15px",
+          fontWeight: "600",
+        },
+      },
+      initialText: {
+        color: white,
+        width: "16px",
+        lineHeight: "11px",
+        fontSize: "11px",
+        fontWeight: "bold",
+        tablet: {
+          width: "20px",
+          lineHeight: "19px",
+          fontSize: "11px",
+        },
+      },
+      badgeWrapper: {
+        size: "16px",
+        marginLeft: "8px",
+        marginRight: "-2px",
+        tablet: {
+          width: "44px",
+          height: "44px",
+          marginRight: "-16px",
+        },
+      },
+      badgeWithoutText: {
+        backgroundColor: orangeMain,
+ 
+        size: "8px",
+        position: "-4px",
+      },
+      trashIconFill: "#A3A9AE",
+    },
+ 
+    navigation: {
+      expanderColor: black,
+      background: white,
+      rootFolderTitleColor: "#A3A9AE",
+      publicIcon: black,
+ 
+      icon: {
+        fill: "#316DAA",
+        stroke: "#DFE2E3",
+      },
+    },
+ 
+    nav: {
+      backgroundColor: "#0F4071",
+    },
+ 
+    navItem: {
+      baseColor: "#7A95B0",
+      activeColor: white,
+      separatorColor: "#3E668D",
+ 
+      wrapper: {
+        hoverBackground: "#0d3760",
+      },
+    },
+ 
+    header: {
+      backgroundColor: "#F8F9F9",
+      recoveryColor: "#657077",
+      linkColor: "#657077",
+      productColor: white,
+    },
+ 
+    menuContainer: {
+      background: "#F3F4F4",
+      color: black,
+    },
+ 
+    article: {
+      background: grayLight,
+      pinBorderColor: grayLightMid,
+      catalogItemHeader: "#A3A9AE",
+      catalogItemText: "#555F65",
+      catalogItemActiveBackground: "#DFE2E3",
+      catalogShowText: "#657077",
+    },
+ 
+    section: {
+      toggler: {
+        background: white,
+        fill: gray,
+        boxShadow: "0px 5px 20px rgba(0, 0, 0, 0.13)",
+      },
+ 
+      header: {
+        backgroundColor: white,
+        background: `linear-gradient(180deg,#ffffff 2.81%,rgba(255, 255, 255, 0.91) 63.03%,rgba(255, 255, 255, 0) 100%)`,
+        trashErasureLabelBackground: "#f8f9f9",
+        trashErasureLabelText: "#555f65",
+      },
+    },
+ 
+    infoPanel: {
+      sectionHeaderToggleIcon: gray,
+      sectionHeaderToggleIconActive: "#3B72A7",
+      sectionHeaderToggleBg: "transparent",
+      sectionHeaderToggleBgActive: grayLight,
+ 
+      backgroundColor: white,
+      blurColor: "rgba(6, 22, 38, 0.2)",
+      borderColor: grayLightMid,
+      thumbnailBorderColor: grayLightMid,
+      textColor: black,
+ 
+      closeButtonWrapperPadding: "0px",
+      closeButtonIcon: white,
+      closeButtonSize: "17px",
+      closeButtonBg: "transparent",
+ 
+      links: {
+        iconColor: "#3B72A7",
+        iconErrorColor: "rgba(242, 28, 14, 0.5)", // "#F21C0E",
+        primaryColor: "#555F65",
+      },
+ 
+      members: {
+        iconColor: "#A3A9AE",
+        iconHoverColor: "#657077",
+        isExpectName: "#A3A9AE",
+        subtitleColor: "#a3a9ae",
+        meLabelColor: "#a3a9ae",
+        roleSelectorColor: "#a3a9ae",
+        disabledRoleSelectorColor: "#a3a9ae",
+        roleSelectorArrowColor: "#a3a9ae",
+      },
+ 
+      history: {
+        subtitleColor: "#a3a9ae",
+        fileBlockBg: "#f8f9f9",
+        dateColor: "#A3A9AE",
+        fileExstColor: "#A3A9AE",
+        locationIconColor: "#A3A9AE",
+        folderLabelColor: "#A3A9AE",
+      },
+ 
+      details: {
+        customLogoBorderColor: grayLightMid,
+        commentEditorIconColor: "#333",
+        tagBackground: "#ECEEF1",
+      },
+ 
+      gallery: {
+        borderColor: "#d0d5da",
+        descriptionColor: "#657077",
+      },
+    },
+ 
+    filesArticleBody: {
+      background: lightGrayishStrongBlue,
+      panelBackground: lightGrayishStrongBlue,
+ 
+      fill: grayMain,
+      expanderColor: "dimgray",
+      downloadAppList: {
+        color: "#83888d",
+        winHoverColor: "#3785D3",
+        macHoverColor: "#000",
+        linuxHoverColor: "#FFB800",
+        androidHoverColor: "#9BD71C",
+      },
+      thirdPartyList: {
+        color: "#818b91",
+        linkColor: cyanBlueDarkShade,
+      },
+      devTools: {
+        border: "1px solid #DFE2E3",
+        color: "#A3A9AE",
+      },
+    },
+ 
+    peopleArticleBody: {
+      iconColor: grayMain,
+      expanderColor: "dimgray",
+    },
+ 
+    peopleTableRow: {
+      fill: "#3b72a7",
+ 
+      nameColor: black,
+      pendingNameColor: gray,
+ 
+      sideInfoColor: gray,
+      pendingSideInfoColor: grayMid,
+    },
+ 
+    filterInput: {
+      button: {
+        border: "1px solid #d0d5da",
+        hoverBorder: "1px solid #a3a9ae",
+ 
+        openBackground: "#a3a9ae",
+ 
+        openFill: "#ffffff",
+      },
+ 
+      filter: {
+        background: "#ffffff",
+        border: "1px solid #eceef1",
+        color: "#a3a9ae",
+ 
+        separatorColor: "#eceef1",
+        indicatorColor: "#ED7309",
+ 
+        selectedItem: {
+          background: "#265a8f",
+          border: "#265a8f",
+          color: "#ffffff",
+        },
+      },
+ 
+      sort: {
+        background: "#ffffff",
+        hoverBackground: "#f8f9f9",
+        selectedViewIcon: "#dfe2e3",
+        viewIcon: "#a3a9ae",
+        sortFill: "#657077",
+ 
+        tileSortFill: black,
+        tileSortColor: black,
+      },
+ 
+      selectedItems: {
+        background: "#eceef1",
+        hoverBackground: "#F3F4F4",
+      },
+    },
+ 
+    profileInfo: {
+      color: "#83888d",
+      iconButtonColor: black,
+      linkColor: gray,
+ 
+      tooltipLinkColor: black,
+      iconColor: "#C96C27",
+    },
+ 
+    updateUserForm: {
+      tooltipTextColor: black,
+      borderTop: "1px solid #eceef1",
+    },
+ 
+    tableContainer: {
+      borderRight: `2px solid ${grayMid}`,
+      hoverBorderColor: grayMain,
+      tableCellBorder: `1px solid ${grayLightMid}`,
+ 
+      groupMenu: {
+        background: white,
+        borderBottom: "1px solid transparent",
+        borderRight: `1px solid ${grayMid}`,
+        boxShadow: "0px 5px 20px rgba(4, 15, 27, 7%)",
+      },
+ 
+      header: {
+        background: white,
+        borderBottom: `1px solid ${grayLightMid}`,
+        textColor: gray,
+        activeTextColor: grayMain,
+        hoverTextColor: grayMain,
+ 
+        iconColor: gray,
+        activeIconColor: grayMain,
+        hoverIconColor: grayMain,
+ 
+        borderImageSource: `linear-gradient(to right,${white} 21px,${grayLightMid} 21px,${grayLightMid} calc(100% - 20px),${white} calc(100% - 20px))`,
+        borderHoverImageSource: `linear-gradient(to right,${white} 0px,${grayLightMid} 0px,${grayLightMid} 100% ,${white} 100%)`,
+ 
+        lengthenBorderImageSource: `linear-gradient(to right, ${grayLightMid}, ${grayLightMid})`,
+        hotkeyBorderBottom: `1px solid ${globalColors.blueMain}`,
+ 
+        settingsIconDisableColor: "#D0D5DA",
+      },
+ 
+      tableCell: {
+        border: `1px solid ${grayLightMid}`,
+      },
+    },
+ 
+    filesSection: {
+      rowView: {
+        checkedBackground: "#f3f4f4",
+ 
+        draggingBackground: lightCumulus,
+        draggingHoverBackground: lightMediumGoldenrod,
+ 
+        shareButton: {
+          color: grayMain,
+          fill: grayMain,
+        },
+ 
+        sideColor: gray,
+        linkColor: black,
+        textColor: gray,
+ 
+        editingIconColor: "#3b72a7",
+        shareHoverColor: "#3b72a7",
+        pinColor: "#3b72a7",
+      },
+ 
+      tableView: {
+        fileName: {
+          linkColor: black,
+          textColor: gray,
+        },
+ 
+        row: {
+          checkboxChecked: `linear-gradient(to right, #f3f4f4 24px, ${grayLightMid} 24px)`,
+          checkboxDragging: `linear-gradient(to right, ${lightCumulus} 24px, ${grayLightMid} 24px)`,
+          checkboxDraggingHover: `linear-gradient(to right,rgb(239, 239, 178) 24px, ${grayLightMid} 24px)`,
+ 
+          contextMenuWrapperChecked: `linear-gradient(to left, #f3f4f4 24px, ${grayLightMid} 24px)`,
+          contextMenuWrapperDragging: `border-image-source: linear-gradient(to left, ${lightCumulus} 24px, ${grayLightMid} 24px)`,
+          contextMenuWrapperDraggingHover: `linear-gradient(to left,rgb(239, 239, 178) 24px,${grayLightMid} 24px)`,
+ 
+          backgroundActive: `#F3F4F4`,
+ 
+          borderImageCheckbox: `linear-gradient(to right, ${white} 24px, ${grayLightMid} 24px)`,
+          borderImageContextMenu: `linear-gradient(to left, ${white} 24px, ${grayLightMid} 24px)`,
+ 
+          borderHover: gray,
+          sideColor: gray,
+          shareHoverColor: "#3b72a7",
+ 
+          borderImageRight:
+            "linear-gradient(to right, #ffffff 25px,#eceef1 24px)",
+          borderImageLeft:
+            "linear-gradient(to left, #ffffff 24px,#eceef1 24px)",
+ 
+          borderColor: "#ECEEf1",
+          borderColorTransition: "#f3f4f4",
+        },
+      },
+ 
+      tilesView: {
+        tile: {
+          draggingColor: lightCumulus,
+          draggingHoverColor: lightMediumGoldenrod,
+          checkedColor: "#f3f4f4",
+          roomsCheckedColor: "#f3f4f4",
+          border: `1px solid ${grayMid}`,
+          backgroundBadgeColor: white,
+          backgroundColor: white,
+          borderRadius: "6px",
+          roomsBorderRadius: "12px",
+          bottomBorderRadius: "0 0 6px 6px",
+          roomsBottomBorderRadius: "0 0 12px 12px",
+          upperBorderRadius: "6px 6px 0 0",
+          roomsUpperBorderRadius: "12px 12px 0 0",
+          backgroundColorTop: white,
+        },
+ 
+        sideColor: black,
+        color: black,
+        textColor: gray,
+      },
+ 
+      animationColor: "rgba(82, 153, 224, 0.16)",
+    },
+ 
+    advancedSelector: {
+      footerBorder: `1px solid ${grayLightMid}`,
+ 
+      hoverBackgroundColor: grayLightMid,
+      selectedBackgroundColor: grayLightMid,
+      borderLeft: `1px solid ${grayLightMid}`,
+ 
+      searcher: {
+        hoverBorderColor: grayMid,
+        focusBorderColor: blueMain,
+        placeholderColor: gray,
+      },
+    },
+ 
+    selector: {
+      border: `1px solid ${grayLightMid}`,
+ 
+      breadCrumbs: {
+        prevItemColor: "#A3A9AE",
+        arrowRightColor: "#A3A9AE",
+      },
+ 
+      bodyDescriptionText: "#A3A9AE",
+ 
+      item: {
+        hoverBackground: grayLight,
+        selectedBackground: lightHover,
+      },
+ 
+      emptyScreen: {
+        descriptionColor: cyanBlueDarkShade,
+      },
+    },
+ 
+    floatingButton: {
+      backgroundColor: "#3B72A7",
+      color: white,
+      boxShadow: "0px 5px 20px rgba(0, 0, 0, 0.13)",
+      fill: white,
+ 
+      alert: {
+        fill: "",
+        path: "",
+      },
+    },
+ 
+    mediaViewer: {
+      color: "#d1d1d1",
+      background: "rgba(17, 17, 17, 0.867)",
+      backgroundColor: "rgba(11, 11, 11, 0.7)",
+      fill: white,
+      titleColor: white,
+      iconColor: white,
+ 
+      controlBtn: {
+        backgroundColor: "rgba(200, 200, 200, 0.2)",
+      },
+ 
+      imageViewer: {
+        backgroundColor: "rgba(200, 200, 200, 0.2)",
+        inactiveBackgroundColor: "rgba(11,11,11,0.7)",
+        fill: white,
+      },
+ 
+      progressBar: {
+        background: "#d1d1d1",
+        backgroundColor: "rgba(200, 200, 200, 0.2)",
+      },
+ 
+      scrollButton: {
+        backgroundColor: "rgba(11, 11, 11, 0.7)",
+        background: "rgba(200, 200, 200, 0.2)",
+        border: `solid ${white}`,
+      },
+ 
+      videoViewer: {
+        fill: white,
+        stroke: white,
+        color: "#d1d1d1",
+        colorError: white,
+        backgroundColorError: darkBlack,
+        backgroundColor: "rgba(11, 11, 11, 0.7)",
+        background: "rgba(200, 200, 200, 0.2)",
+      },
+    },
+ 
+    connectCloud: {
+      connectBtnContent: black,
+      connectBtnTextBg: white,
+      connectBtnIconBg: white,
+      connectBtnTextBorder: grayMid,
+      connectBtnIconBorder: grayMid,
+    },
+ 
+    createEditRoomDialog: {
+      commonParam: {
+        descriptionColor: "#a3a9ae",
+        textColor: "#657077",
+      },
+ 
+      roomType: {
+        listItem: {
+          background: "none",
+          borderColor: "#ECEEF1",
+          descriptionText: "#A3A9AE",
+        },
+        dropdownButton: {
+          background: "none",
+          borderColor: "#ECEEF1",
+          isOpenBorderColor: "#2DA7DB",
+          descriptionText: "#A3A9AE",
+        },
+        dropdownItem: {
+          background: "#ffffff",
+          hoverBackground: "#f3f4f4",
+          descriptionText: "#A3A9AE",
+        },
+        displayItem: {
+          background: "#f8f8f8",
+          borderColor: "#f8f8f8",
+          descriptionText: "#555F65",
+        },
+      },
+ 
+      roomTypeDropdown: {
+        desktop: {
+          background: "#ffffff",
+          borderColor: "#d0d5da",
+        },
+        mobile: {
+          background: "#ffffff",
+        },
+      },
+ 
+      permanentSettings: {
+        background: "#f8f9f9",
+        isPrivateIcon: "#35ad17",
+        descriptionColor: "#555f65",
+      },
+ 
+      tagInput: {
+        tagBackground: "#ECEEF1",
+        tagHoverBackground: "#F3F4F4",
+      },
+ 
+      dropdown: {
+        background: "#ffffff",
+        borderColor: "#d0d5da",
+        item: {
+          hoverBackground: "#f3f4f4",
+        },
+      },
+ 
+      isPrivate: {
+        limitations: {
+          background: "#f8f9f9",
+          iconColor: "#ed7309",
+          titleColor: "#ed7309",
+          descriptionColor: "#555f65",
+          linkColor: "#555f65",
+        },
+      },
+ 
+      thirdpartyStorage: {
+        combobox: {
+          background: "#ffffff",
+          dropdownBorderColor: "#d0d5da",
+          hoverDropdownBorderColor: "#a3a9ae",
+          isOpenDropdownBorderColor: "#2DA7DB",
+          arrowFill: "#a3a9ae",
+        },
+        folderInput: {
+          background: "#ffffff",
+          borderColor: "#d0d5da",
+          hoverBorderColor: "#a3a9ae",
+          focusBorderColor: "#35abd8",
+          rootLabelColor: "#a3a9ae",
+          iconFill: "#657177",
+        },
+      },
+ 
+      iconCropper: {
+        gridColor: "#333333",
+        deleteButton: {
+          background: "#f8f9f9",
+          hoverBackground: "#f3f4f4",
+          borderColor: "#f8f9f9",
+          hoverBorderColor: "#f3f4f4",
+          color: "#555f65",
+          iconColor: "#657077",
+        },
+      },
+ 
+      previewTile: {
+        background: "#ffffff",
+        borderColor: "#d0d5da",
+        iconBorderColor: "#eceef1",
+      },
+ 
+      dropzone: {
+        borderColor: "#eceef1",
+        linkMainColor: "#316daa",
+        linkSecondaryColor: "#333333",
+        exstsColor: "#a3a9ae",
+      },
+    },
+ 
+    filesThirdPartyDialog: {
+      border: "1px solid #d1d1d1",
+    },
+ 
+    connectedClouds: {
+      color: "#657077",
+      borderBottom: `1px solid #eceef1`,
+      borderRight: `1px solid #d0d5da`,
+    },
+ 
+    filesModalDialog: {
+      border: `1px solid lightgray`,
+    },
+ 
+    filesDragTooltip: {
+      background: white,
+      boxShadow: "0px 5px 20px rgba(0, 0, 0, 0.13)",
+      color: gray,
+    },
+ 
+    filesEmptyContainer: {
+      linkColor: cyanBlueDarkShade,
+      privateRoom: {
+        linkColor: "#116d9d",
+      },
+    },
+ 
+    emptyContent: {
+      header: {
+        color: "#333333",
+      },
+ 
+      description: {
+        color: cyanBlueDarkShade,
+      },
+      button: {
+        colorLink: "#657077",
+        colorText: "#555F65",
+      },
+    },
+ 
+    filesPanels: {
+      color: black,
+ 
+      aside: {
+        backgroundColor: white,
+      },
+ 
+      addGroups: {
+        iconColor: gray,
+        arrowColor: darkBlack,
+      },
+ 
+      addUsers: {
+        iconColor: gray,
+        arrowColor: darkBlack,
+      },
+ 
+      changeOwner: {
+        iconColor: gray,
+        arrowColor: darkBlack,
+      },
+ 
+      embedding: {
+        textAreaColor: "#AEAEAE",
+        iconColor: black,
+        color: gray,
+      },
+ 
+      versionHistory: {
+        borderTop: `1px solid ${grayLightMid}`,
+      },
+ 
+      content: {
+        backgroundColor: white,
+        fill: gray,
+        disabledFill: grayMid,
+      },
+ 
+      body: {
+        backgroundColor: grayLightMid,
+        fill: black,
+      },
+ 
+      footer: {
+        backgroundColor: white,
+        borderTop: `1px solid ${grayLightMid}`,
+      },
+ 
+      linkRow: {
+        backgroundColor: grayLight,
+        fill: gray,
+        disabledFill: grayMid,
+      },
+ 
+      selectFolder: {
+        color: gray,
+      },
+ 
+      selectFile: {
+        color: gray,
+        background: grayLight,
+        borderBottom: `1px solid ${grayLightMid}`,
+        borderRight: `1px solid ${globalColors.lightGrayishBlue}`,
+ 
+        buttonsBackground: white,
+      },
+ 
+      filesList: {
+        color: gray,
+        backgroundColor: grayLightMid,
+        borderBottom: `1px solid ${grayLightMid}`,
+      },
+ 
+      modalRow: {
+        backgroundColor: grayLightMid,
+        fill: gray,
+        disabledFill: grayMid,
+      },
+ 
+      sharing: {
+        color: gray,
+        fill: gray,
+        loadingFill: grayMid,
+ 
+        borderBottom: "1px solid #eceef1",
+        borderTop: "1px solid #eceef1",
+        externalLinkBackground: "#f8f9f9",
+        externalLinkSvg: "#333333",
+ 
+        internalLinkBorder: "1px dashed #333333",
+ 
+        itemBorder: "1px dashed #333333",
+ 
+        itemOwnerColor: "rgb(163, 169, 174)",
+ 
+        backgroundButtons: "#FFFFFF",
+ 
+        dropdownColor: black,
+ 
+        loader: {
+          foregroundColor: grayLight,
+          backgroundColor: grayLight,
+        },
+      },
+ 
+      upload: {
+        color: gray,
+        tooltipColor: lightCumulus,
+ 
+        shareButton: {
+          color: gray,
+          sharedColor: grayMain,
+        },
+ 
+        loadingButton: {
+          color: blueMain,
+          background: white,
+        },
+      },
+    },
+ 
+    menuItem: {
+      iconWrapper: {
+        width: "16px",
+        height: "16px",
+        header: {
+          width: "auto",
+          height: "auto",
+        },
+      },
+      separator: {
+        borderBottom: `1px solid ${grayLightMid} !important`,
+        margin: "6px 16px 6px 16px !important",
+        height: "1px !important",
+        width: "calc(100% - 32px) !important",
+      },
+      text: {
+        header: {
+          fontSize: "15px",
+          lineHeight: "20px",
+        },
+        mobile: {
+          fontSize: "13px",
+          lineHeight: "36px",
+        },
+        fontSize: "12px",
+        lineHeight: "30px",
+        fontWeight: "600",
+        margin: "0 0 0 8px",
+        color: black,
+      },
+      hover: grayLight,
+      background: "none",
+      svgFill: black,
+      header: {
+        height: "49px",
+        borderBottom: `1px solid ${grayLightMid}`,
+        marginBottom: "6px",
+      },
+      height: "30px",
+      borderBottom: "none",
+      marginBottom: "0",
+      padding: "0 12px",
+      mobile: {
+        height: "36px",
+        padding: "0 16px 6px",
+      },
+    },
+    newContextMenu: {
+      background: white,
+      borderRadius: "6px",
+      mobileBorderRadius: "6px 6px 0 0",
+      boxShadow: "0px 12px 40px rgba(4, 15, 27, 0.12)",
+      padding: "6px 0px",
+      border: "none",
+      devices: {
+        maxHeight: "calc(100vh - 64px)",
+        tabletWidth: "375px",
+        mobileWidth: "100vw",
+        left: 0,
+        right: 0,
+        bottom: 0,
+        margin: "0 auto",
+      },
+    },
+    filesSettings: {
+      color: cyanBlueDarkShade,
+ 
+      linkColor: black,
+    },
+ 
+    filesBadges: {
+      iconColor: gray,
+      hoverIconColor: "#3B72A7",
+ 
+      color: white,
+      backgroundColor: white,
+ 
+      badgeColor: white,
+      badgeBackgroundColor: gray,
+    },
+ 
+    filesEditingWrapper: {
+      color: black,
+      border: `1px solid ${grayMid}`,
+      borderBottom: `1px solid ${grayLightMid}`,
+ 
+      tile: {
+        background: globalColors.lightHover,
+        itemBackground: white,
+        itemBorder: grayMid,
+        itemActiveBorder: blueMain,
+      },
+ 
+      row: {
+        itemBackground: white,
+      },
+ 
+      fill: gray,
+      hoverFill: grayMain,
+    },
+ 
+    filesIcons: {
+      fill: "#3b72a7",
+      hoverFill: "#3b72a7",
+    },
+ 
+    filesQuickButtons: {
+      color: gray,
+      sharedColor: "#3b72a7",
+      hoverColor: "#3b72a7",
+    },
+ 
+    filesSharedButton: {
+      color: gray,
+      sharedColor: grayMain,
+    },
+ 
+    filesPrivateRoom: {
+      borderBottom: "1px solid #d3d3d3",
+      linkColor: "#116d9d",
+      textColor: "#83888D",
+    },
+ 
+    filesVersionHistory: {
+      row: {
+        color: gray,
+        fill: black,
+      },
+ 
+      badge: {
+        color: white,
+        stroke: gray,
+        fill: gray,
+        defaultFill: white,
+        badgeFill: orangeMain,
+      },
+ 
+      versionList: {
+        fill: grayMid,
+        stroke: grayMid,
+        color: grayMid,
+      },
+    },
+ 
+    login: {
+      linkColor: link,
+      textColor: gray,
+      navBackground: "#F8F9F9",
+      headerColor: black,
+      helpButton: "#A3A9AE",
+      orLineColor: "#ECEEF1",
+      orTextColor: "#A3A9AE",
+      titleColor: black,
+ 
+      register: {
+        backgroundColor: grayLight,
+        textColor: link,
+      },
+ 
+      container: {
+        backgroundColor: grayLightMid,
+      },
+ 
+      captcha: {
+        border: `1px solid ${lightErrorStatus}`,
+        color: lightErrorStatus,
+      },
+    },
+ 
+    facebookButton: {
+      background: white,
+      border: "1px solid #1877f2",
+      color: "#1877f2",
+    },
+ 
+    peopleSelector: {
+      textColor: gray,
+    },
+ 
+    peopleWithContent: {
+      color: gray,
+      pendingColor: grayMid,
+    },
+ 
+    peopleDialogs: {
+      modal: {
+        border: `1px solid ${gray}`,
+      },
+ 
+      deleteUser: {
+        textColor: red,
+      },
+ 
+      deleteSelf: {
+        linkColor: link,
+      },
+ 
+      changePassword: {
+        linkColor: link,
+      },
+    },
+ 
+    downloadDialog: {
+      background: "#f8f9f9",
+    },
+ 
+    client: {
+      about: {
+        linkColor: blueMain,
+        border: "1px solid lightgray",
+        logoColor: black,
+      },
+ 
+      comingSoon: {
+        linkColor: cyanBlueDarkShade,
+        linkIconColor: black,
+        backgroundColor: white,
+        foregroundColor: white,
+      },
+ 
+      confirm: {
+        activateUser: {
+          textColor: "#116d9d",
+          textColorError: red,
+        },
+        change: {
+          titleColor: "#116d9d",
+        },
+      },
+ 
+      home: {
+        logoColor: black,
+        textColorError: red,
+      },
+ 
+      payments: {
+        linkColor: link,
+        delayColor: "#F21C0E",
+      },
+ 
+      paymentsEnterprise: {
+        background: grayLight,
+ 
+        buttonBackground: "#edf2f7",
+ 
+        linkColor: link,
+        headerColor: orangePressed,
+      },
+ 
+      settings: {
+        iconFill: black,
+        trashIcon: "#A3A9AE",
+        article: {
+          titleColor: grayMain,
+          fillIcon: "dimgray",
+          expanderColor: "dimgray",
+        },
+ 
+        separatorBorder: `1px solid ${grayLightMid}`,
+ 
+        security: {
+          arrowFill: black,
+          descriptionColor: cyanBlueDarkShade,
+ 
+          admins: {
+            backgroundColor: black,
+            backgroundColorWrapper: blueMain,
+            roleColor: grayMid,
+ 
+            color: link,
+            departmentColor: gray,
+ 
+            tooltipColor: lightCumulus,
+ 
+            nameColor: black,
+            pendingNameColor: gray,
+ 
+            textColor: white,
+            iconColor: blueMain,
+          },
+ 
+          owner: {
+            backgroundColor: grayLight,
+            linkColor: link,
+            departmentColor: gray,
+            tooltipColor: lightCumulus,
+          },
+          auditTrail: {
+            downloadReportDescriptionColor: gray,
+          },
+        },
+ 
+        common: {
+          linkColor: gray,
+          linkColorHelp: link,
+          tooltipLinkColor: black,
+          arrowColor: black,
+          descriptionColor: grayMain,
+          brandingDescriptionColor: "#657077",
+ 
+          whiteLabel: {
+            borderImg: "1px solid #d1d1d1",
+ 
+            backgroundColorWhite: white,
+            backgroundColorLight: "#F8F9F9",
+            backgroundColorDark: "#282828",
+            greenBackgroundColor: "#40865C",
+            blueBackgroundColor: "#446995",
+            orangeBackgroundColor: "#AA5252",
+ 
+            dataFontColor: white,
+            dataFontColorBlack: black,
+          },
+        },
+ 
+        integration: {
+          separatorBorder: `1px solid ${grayMid}`,
+          linkColor: link,
+ 
+          sso: {
+            toggleContentBackground: grayLight,
+            iconButton: black,
+            iconButtonDisabled: gray,
+            border: "1px solid #eceef1",
+          },
+ 
+          smtp: {
+            requirementColor: "#F21C0E",
+          },
+        },
+ 
+        backup: {
+          rectangleBackgroundColor: "#f8f9f9",
+          separatorBorder: "1px solid #eceef1",
+          warningColor: "#f21c0e",
+          textColor: "#A3A9AE",
+          backupCheckedListItemBackground: "#F3F4F4",
+        },
+ 
+        payment: {
+          priceColor: "#555F65",
+          storageSizeTitle: "#A3A9AE",
+ 
+          backgroundColor: "#f8f9f9",
+          linkColor: "#316DAA",
+          tariffText: "#555F65",
+          border: "1px solid #f8f9f9",
+          backgroundBenefitsColor: "#f8f9f9",
+          rectangleColor: "#f3f4f4",
+ 
+          priceContainer: {
+            backgroundText: "#f3f4f4",
+            background: "transparent",
+            border: "1px solid #d0d5da",
+            featureTextColor: "#A3A9AE",
+ 
+            disableColor: "#A3A9AE",
+            trackNumberColor: "#A3A9AE",
+            disablePriceColor: "#A3A9AE",
+          },
+ 
+          benefitsContainer: {
+            iconsColor: "#657077",
+          },
+ 
+          contactContainer: {
+            textColor: "#A3A9AE",
+            linkColor: "#657077",
+          },
+ 
+          warningColor: "#F21C0E",
+          color: "#F97A0B",
+        },
+      },
+ 
+      wizard: {
+        linkColor: "#116d9d",
+        generatePasswordColor: "#657077",
+      },
+    },
+ 
+    campaignsBanner: {
+      border: "1px solid #d1d1d1",
+      color: darkBlack,
+ 
+      btnColor: white,
+      btnBackgroundActive: blueMain,
+    },
+ 
+    tileLoader: {
+      border: `1px solid ${grayMid}`,
+ 
+      background: white,
+    },
+ 
+    errorContainer: {
+      background: white,
+      bodyText: "#A3A9AE",
+    },
+ 
+    editor: {
+      color: "#555f65",
+      background: white,
+    },
+ 
+    submenu: {
+      lineColor: "#eceef1",
+      backgroundColor: white,
+      textColor: "#657077",
+      activeTextColor: "#316DAA",
+      bottomLineColor: "#316DAA",
+    },
+ 
+    hotkeys: {
+      key: {
+        color: grayMain,
+      },
+    },
+ 
+    tag: {
+      color: black,
+      background: "#f3f4f4",
+      hoverBackground: "#eceef1",
+      disabledBackground: "#f8f9f9",
+      defaultTagColor: black,
+      newTagBackground: "#eceef1",
+    },
+ 
+    profile: {
+      main: {
+        background: "#F8F9F9",
+        textColor: black,
+ 
+        descriptionTextColor: "#A3A9AE",
+        pendingEmailTextColor: "#A3A9AE",
+ 
+        mobileRowBackground: "#F8F9F9",
+      },
+      themePreview: {
+        descriptionColor: "#A3A9AE",
+        border: "1px solid #eceef1",
+      },
+      notifications: {
+        textDescriptionColor: "#A3A9AE",
+      },
+    },
+ 
+    activeSessions: {
+      color: "#333",
+      borderColor: "#eceef1",
+      tickIconColor: "#35AD17",
+      removeIconColor: "#A3A9AE",
+      sortHeaderColor: "#d0d5da",
+    },
+ 
+    formWrapper: {
+      background: white,
+      boxShadow: "0px 5px 20px rgba(4, 15, 27, 0.07)",
+    },
+ 
+    preparationPortalProgress: {
+      backgroundColor: "#F3F4F4",
+      colorPercentSmall: "#333333",
+      colorPercentBig: "#FFFFFF",
+      errorTextColor: "#F21C0E",
+      descriptionTextColor: "#A3A9AE",
+    },
+ 
+    codeInput: {
+      background: white,
+      border: "1px solid #d0d5da",
+      color: black,
+      lineColor: "#C4C4C4",
+      disabledBackground: "#F8F9F9",
+      disabledBorder: "1px solid #ECEEF1",
+      disabledColor: "#A3A9AE",
+    },
+ 
+    accessRightSelect: {
+      descriptionColor: gray,
+    },
+ 
+    itemIcon: {
+      borderColor: grayLightMid,
+    },
+ 
+    invitePage: {
+      borderColor: "#eceef1",
+    },
+ 
+    portalUnavailable: {
+      textDescriptionColor: "#A3A9AE",
+    },
+ 
+    deepLink: {
+      navBackground: "#f8f9f9",
+      fileTileBackground: "#f3f4f4",
+    },
+ 
+    emailChips: {
+      borderColor: "#A3A9AE",
+      dashedBorder: "1px dashed #5299E0",
+    },
+ 
+    dialogs: {
+      disableText: "#A3A9AE",
+    },
+ 
+    editLink: {
+      text: {
+        color: "#A3A9AE",
+        errorColor: "#F21C0E",
+      },
+    },
+ 
+    oformGallery: {
+      errorView: {
+        subHeaderTextColor: "#555F65",
+      },
+      submitToGalleryTile: {
+        bodyText: "#555F65",
+        closeIconFill: "#657077",
+      },
+    },
+ 
+    infoBlock: {
+      background: "#F8F9F9",
+      headerColor: "#333",
+      descriptionColor: "#555F65",
+    },
+ 
+    roomIcon: {
+      backgroundArchive: "#A3A9AE",
+      opacityBackground: "1",
+    },
+ 
+    plugins: {
+      borderColor: "#D0D5DA",
+      pluginName: "#5C5C5C",
+      descriptionColor: "#657077",
+    },
+  };
+};
+ 
+const Base = getBaseTheme();
+ 
+export default Base;
+ 
+export type ThemeType = ReturnType<typeof getBaseTheme>;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/themes/commonTheme.ts.html b/packages/shared/coverage/lcov-report/themes/commonTheme.ts.html new file mode 100644 index 0000000000..ac3b57c0c1 --- /dev/null +++ b/packages/shared/coverage/lcov-report/themes/commonTheme.ts.html @@ -0,0 +1,163 @@ + + + + + + Code coverage report for themes/commonTheme.ts + + + + + + + + + +
+
+

All files / themes commonTheme.ts

+
+ +
+ 33.33% + Statements + 3/9 +
+ + +
+ 50% + Branches + 5/10 +
+ + +
+ 100% + Functions + 1/1 +
+ + +
+ 33.33% + Lines + 3/9 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +277x +  +  +  +  +3x +  +  +  +  +3x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  + 
export const CommonTheme = {
+  rtlFontIncreaseValue: 2,
+  interfaceDirection: "ltr",
+ 
+  getCorrectFontSize(currentValue: string) {
+    Eif (
+      !currentValue ||
+      currentValue === "0px" ||
+      (this && this?.interfaceDirection !== "rtl")
+    ) {
+      return currentValue;
+    }
+ 
+    let numberValue = 0;
+ 
+    if (typeof currentValue === "string") {
+      numberValue = +currentValue.replace("px", "");
+    }
+ 
+    if (typeof currentValue === "number") {
+      numberValue = currentValue;
+    }
+ 
+    return `${numberValue + this.rtlFontIncreaseValue}px`;
+  },
+};
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/themes/dark.ts.html b/packages/shared/coverage/lcov-report/themes/dark.ts.html new file mode 100644 index 0000000000..afc41fc5e1 --- /dev/null +++ b/packages/shared/coverage/lcov-report/themes/dark.ts.html @@ -0,0 +1,9601 @@ + + + + + + Code coverage report for themes/dark.ts + + + + + + + + + +
+
+

All files / themes dark.ts

+
+ +
+ 100% + Statements + 2/2 +
+ + +
+ 100% + Branches + 0/0 +
+ + +
+ 100% + Functions + 0/0 +
+ + +
+ 100% + Lines + 2/2 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101 +102 +103 +104 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124 +125 +126 +127 +128 +129 +130 +131 +132 +133 +134 +135 +136 +137 +138 +139 +140 +141 +142 +143 +144 +145 +146 +147 +148 +149 +150 +151 +152 +153 +154 +155 +156 +157 +158 +159 +160 +161 +162 +163 +164 +165 +166 +167 +168 +169 +170 +171 +172 +173 +174 +175 +176 +177 +178 +179 +180 +181 +182 +183 +184 +185 +186 +187 +188 +189 +190 +191 +192 +193 +194 +195 +196 +197 +198 +199 +200 +201 +202 +203 +204 +205 +206 +207 +208 +209 +210 +211 +212 +213 +214 +215 +216 +217 +218 +219 +220 +221 +222 +223 +224 +225 +226 +227 +228 +229 +230 +231 +232 +233 +234 +235 +236 +237 +238 +239 +240 +241 +242 +243 +244 +245 +246 +247 +248 +249 +250 +251 +252 +253 +254 +255 +256 +257 +258 +259 +260 +261 +262 +263 +264 +265 +266 +267 +268 +269 +270 +271 +272 +273 +274 +275 +276 +277 +278 +279 +280 +281 +282 +283 +284 +285 +286 +287 +288 +289 +290 +291 +292 +293 +294 +295 +296 +297 +298 +299 +300 +301 +302 +303 +304 +305 +306 +307 +308 +309 +310 +311 +312 +313 +314 +315 +316 +317 +318 +319 +320 +321 +322 +323 +324 +325 +326 +327 +328 +329 +330 +331 +332 +333 +334 +335 +336 +337 +338 +339 +340 +341 +342 +343 +344 +345 +346 +347 +348 +349 +350 +351 +352 +353 +354 +355 +356 +357 +358 +359 +360 +361 +362 +363 +364 +365 +366 +367 +368 +369 +370 +371 +372 +373 +374 +375 +376 +377 +378 +379 +380 +381 +382 +383 +384 +385 +386 +387 +388 +389 +390 +391 +392 +393 +394 +395 +396 +397 +398 +399 +400 +401 +402 +403 +404 +405 +406 +407 +408 +409 +410 +411 +412 +413 +414 +415 +416 +417 +418 +419 +420 +421 +422 +423 +424 +425 +426 +427 +428 +429 +430 +431 +432 +433 +434 +435 +436 +437 +438 +439 +440 +441 +442 +443 +444 +445 +446 +447 +448 +449 +450 +451 +452 +453 +454 +455 +456 +457 +458 +459 +460 +461 +462 +463 +464 +465 +466 +467 +468 +469 +470 +471 +472 +473 +474 +475 +476 +477 +478 +479 +480 +481 +482 +483 +484 +485 +486 +487 +488 +489 +490 +491 +492 +493 +494 +495 +496 +497 +498 +499 +500 +501 +502 +503 +504 +505 +506 +507 +508 +509 +510 +511 +512 +513 +514 +515 +516 +517 +518 +519 +520 +521 +522 +523 +524 +525 +526 +527 +528 +529 +530 +531 +532 +533 +534 +535 +536 +537 +538 +539 +540 +541 +542 +543 +544 +545 +546 +547 +548 +549 +550 +551 +552 +553 +554 +555 +556 +557 +558 +559 +560 +561 +562 +563 +564 +565 +566 +567 +568 +569 +570 +571 +572 +573 +574 +575 +576 +577 +578 +579 +580 +581 +582 +583 +584 +585 +586 +587 +588 +589 +590 +591 +592 +593 +594 +595 +596 +597 +598 +599 +600 +601 +602 +603 +604 +605 +606 +607 +608 +609 +610 +611 +612 +613 +614 +615 +616 +617 +618 +619 +620 +621 +622 +623 +624 +625 +626 +627 +628 +629 +630 +631 +632 +633 +634 +635 +636 +637 +638 +639 +640 +641 +642 +643 +644 +645 +646 +647 +648 +649 +650 +651 +652 +653 +654 +655 +656 +657 +658 +659 +660 +661 +662 +663 +664 +665 +666 +667 +668 +669 +670 +671 +672 +673 +674 +675 +676 +677 +678 +679 +680 +681 +682 +683 +684 +685 +686 +687 +688 +689 +690 +691 +692 +693 +694 +695 +696 +697 +698 +699 +700 +701 +702 +703 +704 +705 +706 +707 +708 +709 +710 +711 +712 +713 +714 +715 +716 +717 +718 +719 +720 +721 +722 +723 +724 +725 +726 +727 +728 +729 +730 +731 +732 +733 +734 +735 +736 +737 +738 +739 +740 +741 +742 +743 +744 +745 +746 +747 +748 +749 +750 +751 +752 +753 +754 +755 +756 +757 +758 +759 +760 +761 +762 +763 +764 +765 +766 +767 +768 +769 +770 +771 +772 +773 +774 +775 +776 +777 +778 +779 +780 +781 +782 +783 +784 +785 +786 +787 +788 +789 +790 +791 +792 +793 +794 +795 +796 +797 +798 +799 +800 +801 +802 +803 +804 +805 +806 +807 +808 +809 +810 +811 +812 +813 +814 +815 +816 +817 +818 +819 +820 +821 +822 +823 +824 +825 +826 +827 +828 +829 +830 +831 +832 +833 +834 +835 +836 +837 +838 +839 +840 +841 +842 +843 +844 +845 +846 +847 +848 +849 +850 +851 +852 +853 +854 +855 +856 +857 +858 +859 +860 +861 +862 +863 +864 +865 +866 +867 +868 +869 +870 +871 +872 +873 +874 +875 +876 +877 +878 +879 +880 +881 +882 +883 +884 +885 +886 +887 +888 +889 +890 +891 +892 +893 +894 +895 +896 +897 +898 +899 +900 +901 +902 +903 +904 +905 +906 +907 +908 +909 +910 +911 +912 +913 +914 +915 +916 +917 +918 +919 +920 +921 +922 +923 +924 +925 +926 +927 +928 +929 +930 +931 +932 +933 +934 +935 +936 +937 +938 +939 +940 +941 +942 +943 +944 +945 +946 +947 +948 +949 +950 +951 +952 +953 +954 +955 +956 +957 +958 +959 +960 +961 +962 +963 +964 +965 +966 +967 +968 +969 +970 +971 +972 +973 +974 +975 +976 +977 +978 +979 +980 +981 +982 +983 +984 +985 +986 +987 +988 +989 +990 +991 +992 +993 +994 +995 +996 +997 +998 +999 +1000 +1001 +1002 +1003 +1004 +1005 +1006 +1007 +1008 +1009 +1010 +1011 +1012 +1013 +1014 +1015 +1016 +1017 +1018 +1019 +1020 +1021 +1022 +1023 +1024 +1025 +1026 +1027 +1028 +1029 +1030 +1031 +1032 +1033 +1034 +1035 +1036 +1037 +1038 +1039 +1040 +1041 +1042 +1043 +1044 +1045 +1046 +1047 +1048 +1049 +1050 +1051 +1052 +1053 +1054 +1055 +1056 +1057 +1058 +1059 +1060 +1061 +1062 +1063 +1064 +1065 +1066 +1067 +1068 +1069 +1070 +1071 +1072 +1073 +1074 +1075 +1076 +1077 +1078 +1079 +1080 +1081 +1082 +1083 +1084 +1085 +1086 +1087 +1088 +1089 +1090 +1091 +1092 +1093 +1094 +1095 +1096 +1097 +1098 +1099 +1100 +1101 +1102 +1103 +1104 +1105 +1106 +1107 +1108 +1109 +1110 +1111 +1112 +1113 +1114 +1115 +1116 +1117 +1118 +1119 +1120 +1121 +1122 +1123 +1124 +1125 +1126 +1127 +1128 +1129 +1130 +1131 +1132 +1133 +1134 +1135 +1136 +1137 +1138 +1139 +1140 +1141 +1142 +1143 +1144 +1145 +1146 +1147 +1148 +1149 +1150 +1151 +1152 +1153 +1154 +1155 +1156 +1157 +1158 +1159 +1160 +1161 +1162 +1163 +1164 +1165 +1166 +1167 +1168 +1169 +1170 +1171 +1172 +1173 +1174 +1175 +1176 +1177 +1178 +1179 +1180 +1181 +1182 +1183 +1184 +1185 +1186 +1187 +1188 +1189 +1190 +1191 +1192 +1193 +1194 +1195 +1196 +1197 +1198 +1199 +1200 +1201 +1202 +1203 +1204 +1205 +1206 +1207 +1208 +1209 +1210 +1211 +1212 +1213 +1214 +1215 +1216 +1217 +1218 +1219 +1220 +1221 +1222 +1223 +1224 +1225 +1226 +1227 +1228 +1229 +1230 +1231 +1232 +1233 +1234 +1235 +1236 +1237 +1238 +1239 +1240 +1241 +1242 +1243 +1244 +1245 +1246 +1247 +1248 +1249 +1250 +1251 +1252 +1253 +1254 +1255 +1256 +1257 +1258 +1259 +1260 +1261 +1262 +1263 +1264 +1265 +1266 +1267 +1268 +1269 +1270 +1271 +1272 +1273 +1274 +1275 +1276 +1277 +1278 +1279 +1280 +1281 +1282 +1283 +1284 +1285 +1286 +1287 +1288 +1289 +1290 +1291 +1292 +1293 +1294 +1295 +1296 +1297 +1298 +1299 +1300 +1301 +1302 +1303 +1304 +1305 +1306 +1307 +1308 +1309 +1310 +1311 +1312 +1313 +1314 +1315 +1316 +1317 +1318 +1319 +1320 +1321 +1322 +1323 +1324 +1325 +1326 +1327 +1328 +1329 +1330 +1331 +1332 +1333 +1334 +1335 +1336 +1337 +1338 +1339 +1340 +1341 +1342 +1343 +1344 +1345 +1346 +1347 +1348 +1349 +1350 +1351 +1352 +1353 +1354 +1355 +1356 +1357 +1358 +1359 +1360 +1361 +1362 +1363 +1364 +1365 +1366 +1367 +1368 +1369 +1370 +1371 +1372 +1373 +1374 +1375 +1376 +1377 +1378 +1379 +1380 +1381 +1382 +1383 +1384 +1385 +1386 +1387 +1388 +1389 +1390 +1391 +1392 +1393 +1394 +1395 +1396 +1397 +1398 +1399 +1400 +1401 +1402 +1403 +1404 +1405 +1406 +1407 +1408 +1409 +1410 +1411 +1412 +1413 +1414 +1415 +1416 +1417 +1418 +1419 +1420 +1421 +1422 +1423 +1424 +1425 +1426 +1427 +1428 +1429 +1430 +1431 +1432 +1433 +1434 +1435 +1436 +1437 +1438 +1439 +1440 +1441 +1442 +1443 +1444 +1445 +1446 +1447 +1448 +1449 +1450 +1451 +1452 +1453 +1454 +1455 +1456 +1457 +1458 +1459 +1460 +1461 +1462 +1463 +1464 +1465 +1466 +1467 +1468 +1469 +1470 +1471 +1472 +1473 +1474 +1475 +1476 +1477 +1478 +1479 +1480 +1481 +1482 +1483 +1484 +1485 +1486 +1487 +1488 +1489 +1490 +1491 +1492 +1493 +1494 +1495 +1496 +1497 +1498 +1499 +1500 +1501 +1502 +1503 +1504 +1505 +1506 +1507 +1508 +1509 +1510 +1511 +1512 +1513 +1514 +1515 +1516 +1517 +1518 +1519 +1520 +1521 +1522 +1523 +1524 +1525 +1526 +1527 +1528 +1529 +1530 +1531 +1532 +1533 +1534 +1535 +1536 +1537 +1538 +1539 +1540 +1541 +1542 +1543 +1544 +1545 +1546 +1547 +1548 +1549 +1550 +1551 +1552 +1553 +1554 +1555 +1556 +1557 +1558 +1559 +1560 +1561 +1562 +1563 +1564 +1565 +1566 +1567 +1568 +1569 +1570 +1571 +1572 +1573 +1574 +1575 +1576 +1577 +1578 +1579 +1580 +1581 +1582 +1583 +1584 +1585 +1586 +1587 +1588 +1589 +1590 +1591 +1592 +1593 +1594 +1595 +1596 +1597 +1598 +1599 +1600 +1601 +1602 +1603 +1604 +1605 +1606 +1607 +1608 +1609 +1610 +1611 +1612 +1613 +1614 +1615 +1616 +1617 +1618 +1619 +1620 +1621 +1622 +1623 +1624 +1625 +1626 +1627 +1628 +1629 +1630 +1631 +1632 +1633 +1634 +1635 +1636 +1637 +1638 +1639 +1640 +1641 +1642 +1643 +1644 +1645 +1646 +1647 +1648 +1649 +1650 +1651 +1652 +1653 +1654 +1655 +1656 +1657 +1658 +1659 +1660 +1661 +1662 +1663 +1664 +1665 +1666 +1667 +1668 +1669 +1670 +1671 +1672 +1673 +1674 +1675 +1676 +1677 +1678 +1679 +1680 +1681 +1682 +1683 +1684 +1685 +1686 +1687 +1688 +1689 +1690 +1691 +1692 +1693 +1694 +1695 +1696 +1697 +1698 +1699 +1700 +1701 +1702 +1703 +1704 +1705 +1706 +1707 +1708 +1709 +1710 +1711 +1712 +1713 +1714 +1715 +1716 +1717 +1718 +1719 +1720 +1721 +1722 +1723 +1724 +1725 +1726 +1727 +1728 +1729 +1730 +1731 +1732 +1733 +1734 +1735 +1736 +1737 +1738 +1739 +1740 +1741 +1742 +1743 +1744 +1745 +1746 +1747 +1748 +1749 +1750 +1751 +1752 +1753 +1754 +1755 +1756 +1757 +1758 +1759 +1760 +1761 +1762 +1763 +1764 +1765 +1766 +1767 +1768 +1769 +1770 +1771 +1772 +1773 +1774 +1775 +1776 +1777 +1778 +1779 +1780 +1781 +1782 +1783 +1784 +1785 +1786 +1787 +1788 +1789 +1790 +1791 +1792 +1793 +1794 +1795 +1796 +1797 +1798 +1799 +1800 +1801 +1802 +1803 +1804 +1805 +1806 +1807 +1808 +1809 +1810 +1811 +1812 +1813 +1814 +1815 +1816 +1817 +1818 +1819 +1820 +1821 +1822 +1823 +1824 +1825 +1826 +1827 +1828 +1829 +1830 +1831 +1832 +1833 +1834 +1835 +1836 +1837 +1838 +1839 +1840 +1841 +1842 +1843 +1844 +1845 +1846 +1847 +1848 +1849 +1850 +1851 +1852 +1853 +1854 +1855 +1856 +1857 +1858 +1859 +1860 +1861 +1862 +1863 +1864 +1865 +1866 +1867 +1868 +1869 +1870 +1871 +1872 +1873 +1874 +1875 +1876 +1877 +1878 +1879 +1880 +1881 +1882 +1883 +1884 +1885 +1886 +1887 +1888 +1889 +1890 +1891 +1892 +1893 +1894 +1895 +1896 +1897 +1898 +1899 +1900 +1901 +1902 +1903 +1904 +1905 +1906 +1907 +1908 +1909 +1910 +1911 +1912 +1913 +1914 +1915 +1916 +1917 +1918 +1919 +1920 +1921 +1922 +1923 +1924 +1925 +1926 +1927 +1928 +1929 +1930 +1931 +1932 +1933 +1934 +1935 +1936 +1937 +1938 +1939 +1940 +1941 +1942 +1943 +1944 +1945 +1946 +1947 +1948 +1949 +1950 +1951 +1952 +1953 +1954 +1955 +1956 +1957 +1958 +1959 +1960 +1961 +1962 +1963 +1964 +1965 +1966 +1967 +1968 +1969 +1970 +1971 +1972 +1973 +1974 +1975 +1976 +1977 +1978 +1979 +1980 +1981 +1982 +1983 +1984 +1985 +1986 +1987 +1988 +1989 +1990 +1991 +1992 +1993 +1994 +1995 +1996 +1997 +1998 +1999 +2000 +2001 +2002 +2003 +2004 +2005 +2006 +2007 +2008 +2009 +2010 +2011 +2012 +2013 +2014 +2015 +2016 +2017 +2018 +2019 +2020 +2021 +2022 +2023 +2024 +2025 +2026 +2027 +2028 +2029 +2030 +2031 +2032 +2033 +2034 +2035 +2036 +2037 +2038 +2039 +2040 +2041 +2042 +2043 +2044 +2045 +2046 +2047 +2048 +2049 +2050 +2051 +2052 +2053 +2054 +2055 +2056 +2057 +2058 +2059 +2060 +2061 +2062 +2063 +2064 +2065 +2066 +2067 +2068 +2069 +2070 +2071 +2072 +2073 +2074 +2075 +2076 +2077 +2078 +2079 +2080 +2081 +2082 +2083 +2084 +2085 +2086 +2087 +2088 +2089 +2090 +2091 +2092 +2093 +2094 +2095 +2096 +2097 +2098 +2099 +2100 +2101 +2102 +2103 +2104 +2105 +2106 +2107 +2108 +2109 +2110 +2111 +2112 +2113 +2114 +2115 +2116 +2117 +2118 +2119 +2120 +2121 +2122 +2123 +2124 +2125 +2126 +2127 +2128 +2129 +2130 +2131 +2132 +2133 +2134 +2135 +2136 +2137 +2138 +2139 +2140 +2141 +2142 +2143 +2144 +2145 +2146 +2147 +2148 +2149 +2150 +2151 +2152 +2153 +2154 +2155 +2156 +2157 +2158 +2159 +2160 +2161 +2162 +2163 +2164 +2165 +2166 +2167 +2168 +2169 +2170 +2171 +2172 +2173 +2174 +2175 +2176 +2177 +2178 +2179 +2180 +2181 +2182 +2183 +2184 +2185 +2186 +2187 +2188 +2189 +2190 +2191 +2192 +2193 +2194 +2195 +2196 +2197 +2198 +2199 +2200 +2201 +2202 +2203 +2204 +2205 +2206 +2207 +2208 +2209 +2210 +2211 +2212 +2213 +2214 +2215 +2216 +2217 +2218 +2219 +2220 +2221 +2222 +2223 +2224 +2225 +2226 +2227 +2228 +2229 +2230 +2231 +2232 +2233 +2234 +2235 +2236 +2237 +2238 +2239 +2240 +2241 +2242 +2243 +2244 +2245 +2246 +2247 +2248 +2249 +2250 +2251 +2252 +2253 +2254 +2255 +2256 +2257 +2258 +2259 +2260 +2261 +2262 +2263 +2264 +2265 +2266 +2267 +2268 +2269 +2270 +2271 +2272 +2273 +2274 +2275 +2276 +2277 +2278 +2279 +2280 +2281 +2282 +2283 +2284 +2285 +2286 +2287 +2288 +2289 +2290 +2291 +2292 +2293 +2294 +2295 +2296 +2297 +2298 +2299 +2300 +2301 +2302 +2303 +2304 +2305 +2306 +2307 +2308 +2309 +2310 +2311 +2312 +2313 +2314 +2315 +2316 +2317 +2318 +2319 +2320 +2321 +2322 +2323 +2324 +2325 +2326 +2327 +2328 +2329 +2330 +2331 +2332 +2333 +2334 +2335 +2336 +2337 +2338 +2339 +2340 +2341 +2342 +2343 +2344 +2345 +2346 +2347 +2348 +2349 +2350 +2351 +2352 +2353 +2354 +2355 +2356 +2357 +2358 +2359 +2360 +2361 +2362 +2363 +2364 +2365 +2366 +2367 +2368 +2369 +2370 +2371 +2372 +2373 +2374 +2375 +2376 +2377 +2378 +2379 +2380 +2381 +2382 +2383 +2384 +2385 +2386 +2387 +2388 +2389 +2390 +2391 +2392 +2393 +2394 +2395 +2396 +2397 +2398 +2399 +2400 +2401 +2402 +2403 +2404 +2405 +2406 +2407 +2408 +2409 +2410 +2411 +2412 +2413 +2414 +2415 +2416 +2417 +2418 +2419 +2420 +2421 +2422 +2423 +2424 +2425 +2426 +2427 +2428 +2429 +2430 +2431 +2432 +2433 +2434 +2435 +2436 +2437 +2438 +2439 +2440 +2441 +2442 +2443 +2444 +2445 +2446 +2447 +2448 +2449 +2450 +2451 +2452 +2453 +2454 +2455 +2456 +2457 +2458 +2459 +2460 +2461 +2462 +2463 +2464 +2465 +2466 +2467 +2468 +2469 +2470 +2471 +2472 +2473 +2474 +2475 +2476 +2477 +2478 +2479 +2480 +2481 +2482 +2483 +2484 +2485 +2486 +2487 +2488 +2489 +2490 +2491 +2492 +2493 +2494 +2495 +2496 +2497 +2498 +2499 +2500 +2501 +2502 +2503 +2504 +2505 +2506 +2507 +2508 +2509 +2510 +2511 +2512 +2513 +2514 +2515 +2516 +2517 +2518 +2519 +2520 +2521 +2522 +2523 +2524 +2525 +2526 +2527 +2528 +2529 +2530 +2531 +2532 +2533 +2534 +2535 +2536 +2537 +2538 +2539 +2540 +2541 +2542 +2543 +2544 +2545 +2546 +2547 +2548 +2549 +2550 +2551 +2552 +2553 +2554 +2555 +2556 +2557 +2558 +2559 +2560 +2561 +2562 +2563 +2564 +2565 +2566 +2567 +2568 +2569 +2570 +2571 +2572 +2573 +2574 +2575 +2576 +2577 +2578 +2579 +2580 +2581 +2582 +2583 +2584 +2585 +2586 +2587 +2588 +2589 +2590 +2591 +2592 +2593 +2594 +2595 +2596 +2597 +2598 +2599 +2600 +2601 +2602 +2603 +2604 +2605 +2606 +2607 +2608 +2609 +2610 +2611 +2612 +2613 +2614 +2615 +2616 +2617 +2618 +2619 +2620 +2621 +2622 +2623 +2624 +2625 +2626 +2627 +2628 +2629 +2630 +2631 +2632 +2633 +2634 +2635 +2636 +2637 +2638 +2639 +2640 +2641 +2642 +2643 +2644 +2645 +2646 +2647 +2648 +2649 +2650 +2651 +2652 +2653 +2654 +2655 +2656 +2657 +2658 +2659 +2660 +2661 +2662 +2663 +2664 +2665 +2666 +2667 +2668 +2669 +2670 +2671 +2672 +2673 +2674 +2675 +2676 +2677 +2678 +2679 +2680 +2681 +2682 +2683 +2684 +2685 +2686 +2687 +2688 +2689 +2690 +2691 +2692 +2693 +2694 +2695 +2696 +2697 +2698 +2699 +2700 +2701 +2702 +2703 +2704 +2705 +2706 +2707 +2708 +2709 +2710 +2711 +2712 +2713 +2714 +2715 +2716 +2717 +2718 +2719 +2720 +2721 +2722 +2723 +2724 +2725 +2726 +2727 +2728 +2729 +2730 +2731 +2732 +2733 +2734 +2735 +2736 +2737 +2738 +2739 +2740 +2741 +2742 +2743 +2744 +2745 +2746 +2747 +2748 +2749 +2750 +2751 +2752 +2753 +2754 +2755 +2756 +2757 +2758 +2759 +2760 +2761 +2762 +2763 +2764 +2765 +2766 +2767 +2768 +2769 +2770 +2771 +2772 +2773 +2774 +2775 +2776 +2777 +2778 +2779 +2780 +2781 +2782 +2783 +2784 +2785 +2786 +2787 +2788 +2789 +2790 +2791 +2792 +2793 +2794 +2795 +2796 +2797 +2798 +2799 +2800 +2801 +2802 +2803 +2804 +2805 +2806 +2807 +2808 +2809 +2810 +2811 +2812 +2813 +2814 +2815 +2816 +2817 +2818 +2819 +2820 +2821 +2822 +2823 +2824 +2825 +2826 +2827 +2828 +2829 +2830 +2831 +2832 +2833 +2834 +2835 +2836 +2837 +2838 +2839 +2840 +2841 +2842 +2843 +2844 +2845 +2846 +2847 +2848 +2849 +2850 +2851 +2852 +2853 +2854 +2855 +2856 +2857 +2858 +2859 +2860 +2861 +2862 +2863 +2864 +2865 +2866 +2867 +2868 +2869 +2870 +2871 +2872 +2873 +2874 +2875 +2876 +2877 +2878 +2879 +2880 +2881 +2882 +2883 +2884 +2885 +2886 +2887 +2888 +2889 +2890 +2891 +2892 +2893 +2894 +2895 +2896 +2897 +2898 +2899 +2900 +2901 +2902 +2903 +2904 +2905 +2906 +2907 +2908 +2909 +2910 +2911 +2912 +2913 +2914 +2915 +2916 +2917 +2918 +2919 +2920 +2921 +2922 +2923 +2924 +2925 +2926 +2927 +2928 +2929 +2930 +2931 +2932 +2933 +2934 +2935 +2936 +2937 +2938 +2939 +2940 +2941 +2942 +2943 +2944 +2945 +2946 +2947 +2948 +2949 +2950 +2951 +2952 +2953 +2954 +2955 +2956 +2957 +2958 +2959 +2960 +2961 +2962 +2963 +2964 +2965 +2966 +2967 +2968 +2969 +2970 +2971 +2972 +2973 +2974 +2975 +2976 +2977 +2978 +2979 +2980 +2981 +2982 +2983 +2984 +2985 +2986 +2987 +2988 +2989 +2990 +2991 +2992 +2993 +2994 +2995 +2996 +2997 +2998 +2999 +3000 +3001 +3002 +3003 +3004 +3005 +3006 +3007 +3008 +3009 +3010 +3011 +3012 +3013 +3014 +3015 +3016 +3017 +3018 +3019 +3020 +3021 +3022 +3023 +3024 +3025 +3026 +3027 +3028 +3029 +3030 +3031 +3032 +3033 +3034 +3035 +3036 +3037 +3038 +3039 +3040 +3041 +3042 +3043 +3044 +3045 +3046 +3047 +3048 +3049 +3050 +3051 +3052 +3053 +3054 +3055 +3056 +3057 +3058 +3059 +3060 +3061 +3062 +3063 +3064 +3065 +3066 +3067 +3068 +3069 +3070 +3071 +3072 +3073 +3074 +3075 +3076 +3077 +3078 +3079 +3080 +3081 +3082 +3083 +3084 +3085 +3086 +3087 +3088 +3089 +3090 +3091 +3092 +3093 +3094 +3095 +3096 +3097 +3098 +3099 +3100 +3101 +3102 +3103 +3104 +3105 +3106 +3107 +3108 +3109 +3110 +3111 +3112 +3113 +3114 +3115 +3116 +3117 +3118 +3119 +3120 +3121 +3122 +3123 +3124 +3125 +3126 +3127 +3128 +3129 +3130 +3131 +3132 +3133 +3134 +3135 +3136 +3137 +3138 +3139 +3140 +3141 +3142 +3143 +3144 +3145 +3146 +3147 +3148 +3149 +3150 +3151 +3152 +3153 +3154 +3155 +3156 +3157 +3158 +3159 +3160 +3161 +3162 +3163 +3164 +3165 +3166 +3167 +3168 +3169 +3170 +3171 +3172 +3173  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +7x +  +7x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  + 
import AvatarDarkReactSvgUrl from "PUBLIC_DIR/images/avatar.dark.react.svg?url";
+ 
+import { globalColors } from "../constants";
+import { CommonTheme } from "./commonTheme";
+ 
+import { ThemeType } from "./base";
+ 
+const {
+  black,
+  white,
+ 
+  grayLight,
+  grayLightMid,
+  grayMid,
+  graySilver,
+  gray,
+  grayMain,
+  shuttleGrey,
+ 
+  blueMain,
+ 
+  orangePressed,
+ 
+  warningColor,
+  red,
+ 
+  grayMaxLight,
+  cyanBlueDarkShade,
+ 
+  darkBlack,
+  silver,
+  strongBlue,
+ 
+  darkRed,
+ 
+  darkErrorStatus,
+} = globalColors;
+ 
+const Dark: ThemeType = {
+  ...CommonTheme,
+  isBase: false,
+  color: grayMaxLight,
+  backgroundColor: black,
+  fontFamily: "Open Sans, sans-serif, Arial",
+  fontSize: "13px",
+ 
+  text: {
+    color: grayMaxLight,
+    disableColor: "#5c5c5c",
+    emailColor: "#a3a9ae",
+    fontWeight: "normal",
+    fontWeightBold: "bold",
+  },
+ 
+  heading: {
+    fontSize: {
+      xlarge: "27px",
+      large: "23px",
+      medium: "21px",
+      small: "19px",
+      xsmall: "15px",
+    },
+ 
+    fontWeight: 600,
+    color: grayMaxLight,
+  },
+ 
+  backgroundAndSubstrateColor: "#282828",
+ 
+  button: {
+    fontWeight: "600",
+    margin: "0",
+    display: "inline-block",
+    textAlign: "center",
+    textDecoration: "none",
+ 
+    topVerticalAlign: "text-top",
+    middleVerticalAlign: "middle",
+    bottomVerticalAlign: "text-bottom",
+ 
+    borderRadius: "3px",
+    stroke: "none",
+    overflow: "hidden",
+    textOverflow: "ellipsis",
+    whiteSpace: "nowrap",
+    outline: "none",
+    boxSizing: "border-box",
+ 
+    paddingRight: "4px",
+ 
+    height: {
+      extraSmall: "24px",
+      small: "32px",
+      normal: "40px",
+      medium: "44px",
+    },
+ 
+    lineHeight: {
+      extraSmall: "15px",
+      small: "20px",
+      normal: "16px",
+      medium: "22px",
+    },
+ 
+    fontSize: {
+      extraSmall: "12px",
+      small: "13px",
+      normal: "14px",
+      medium: "16px",
+    },
+ 
+    padding: {
+      extraSmall: "0 12px",
+      small: "0 28px",
+      normal: "0 28px",
+      medium: "0 32px",
+    },
+ 
+    color: {
+      base: "#FFFFFF",
+      baseHover: "#FFFFFF",
+      baseActive: "#FFFFFF",
+      baseDisabled: "#474747",
+ 
+      primary: "#FFFFFF",
+      primaryHover: "#FFFFFF",
+      primaryActive: "#FFFFFF",
+      primaryDisabled: "#FFFFFF",
+    },
+ 
+    backgroundColor: {
+      base: "#333333",
+      baseHover: "#333333",
+      baseActive: "#282828",
+      baseDisabled: "#282828",
+ 
+      primary: "#5299E0",
+      primaryHover: "#4D8AC7",
+      primaryActive: "#427CB7",
+      primaryDisabled: "#45709B",
+    },
+ 
+    border: {
+      base: `1px solid #474747`,
+      baseHover: `1px solid #858585`,
+      baseActive: `1px solid #CCCCCC`,
+      baseDisabled: `1px solid #474747`,
+ 
+      primary: `1px solid #5299E0`,
+      primaryHover: `1px solid #4D8AC7`,
+      primaryActive: `1px solid #427CB7`,
+      primaryDisabled: `1px solid #45709B`,
+    },
+ 
+    loader: {
+      base: white,
+      primary: white,
+    },
+  },
+ 
+  helpButton: {
+    width: "100%",
+    backgroundColor: black,
+    maxWidth: "500px",
+    margin: "0",
+    lineHeight: "56px",
+    fontWeight: "700",
+    borderBottom: `1px solid ${globalColors.lightGrayishBlue}`,
+    padding: "0 16px 16px",
+    bodyPadding: "16px 0",
+  },
+ 
+  mainButtonMobile: {
+    textColor: "rgba(255, 255, 255, 0.6)",
+ 
+    buttonColor: "#F58D31",
+    iconFill: black,
+ 
+    circleBackground: black,
+ 
+    mobileProgressBarBackground: "#606060",
+ 
+    bar: {
+      errorBackground: orangePressed,
+ 
+      icon: "#858585",
+    },
+ 
+    buttonWrapper: {
+      background: "#333333",
+      uploadingBackground: "#242424",
+    },
+ 
+    buttonOptions: {
+      backgroundColor: "#242424",
+      color: "#ff0000",
+    },
+ 
+    dropDown: {
+      position: "fixed",
+      right: "32px",
+      bottom: "32px",
+ 
+      width: "400px",
+ 
+      zIndex: "202",
+ 
+      mobile: {
+        right: "24px",
+        bottom: "24px",
+ 
+        marginLeft: "24px",
+ 
+        width: "calc(100vw - 48px)",
+      },
+ 
+      separatorBackground: white,
+ 
+      buttonColor: grayMaxLight,
+ 
+      hoverButtonColor: black,
+ 
+      backgroundActionMobile: "rgba(255, 255, 255, 0.92)",
+    },
+ 
+    dropDownItem: {
+      padding: "10px",
+    },
+  },
+ 
+  mainButton: {
+    backgroundColor: "#4781D1",
+    disableBackgroundColor: "rgba(71, 129, 209, 0.6)",
+    hoverBackgroundColor: "rgba(71, 129, 209, .85)",
+    clickBackgroundColor: "#4074BC",
+ 
+    padding: "5px 14px 5px 12px",
+    borderRadius: "3px",
+    lineHeight: "22px",
+    fontSize: "16px",
+    fontWeight: 700,
+    textColor: white,
+    textColorDisabled: white,
+ 
+    cornerRoundsTopRight: "0",
+    cornerRoundsBottomRight: "0",
+ 
+    svg: {
+      margin: "auto",
+      height: "100%",
+      fill: black,
+    },
+ 
+    dropDown: {
+      top: "100%",
+    },
+ 
+    arrowDropdown: {
+      borderLeft: "4px solid transparent",
+      borderRight: "4px solid transparent",
+      borderTop: `5px solid ${white}`,
+      borderTopDisabled: `5px solid ${black}`,
+      right: "14px",
+      top: "50%",
+      width: "0",
+      height: "0",
+      marginTop: " -1px",
+    },
+  },
+ 
+  socialButton: {
+    fontWeight: "500",
+    textDecoration: "none",
+    padding: "0",
+    borderRadius: "2px",
+    height: "40px",
+    heightSmall: "32px",
+    textAlign: "left",
+    stroke: " none",
+    outline: "none",
+    width: "100%",
+ 
+    background: black,
+    disableBackgroundColor: "rgba(0, 0, 0, 0.08)",
+    connectBackground:
+      "linear-gradient(0deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)), #333333",
+    hoverBackground: "#292929",
+    hoverConnectBackground: "#FFFFFF",
+    activeBackground: "#292929",
+    hoverBorder: "#858585",
+ 
+    boxShadow: "none",
+    hoverBoxShadow: "none",
+ 
+    color: "rgba(0, 0, 0, 0.54)",
+    disableColor: "rgba(0, 0, 0, 0.4)",
+    disabledSvgColor: "#474747",
+ 
+    border: "1px solid #474747",
+    text: {
+      width: "100%",
+      height: "16px",
+      margin: "0 11px",
+      fontWeight: "500",
+      fontSize: "14px",
+      lineHeight: "16px",
+      letterSpacing: "0.21875px",
+      overflow: "hidden",
+      textOverflow: "ellipsis",
+      whiteSpace: "nowrap",
+      color: grayMaxLight,
+      hoverColor: grayMaxLight,
+      connectColor: darkBlack,
+    },
+ 
+    svg: {
+      margin: "11px 16px",
+      width: "18px",
+      height: "18px",
+      minWidth: "18px",
+      minHeight: "18px",
+      fill: darkBlack,
+    },
+  },
+ 
+  groupButton: {
+    fontSize: "14px",
+    lineHeight: "19px",
+    color: "#858585",
+    disableColor: "#474747",
+    float: "left",
+    height: "19px",
+    overflow: "hidden",
+    padding: "0px",
+ 
+    separator: {
+      border: `1px solid #474747`,
+      width: "0px",
+      height: "24px",
+      margin: "16px 12px 0 12px",
+    },
+ 
+    checkbox: {
+      margin: "16px 0 16px 24px",
+      tabletMargin: "auto 0 auto 16px",
+    },
+  },
+ 
+  groupButtonsMenu: {
+    top: "0",
+    background: black,
+    boxShadow: " 0px 10px 18px -8px rgba(0, 0, 0, 0.100306)",
+    height: "48px",
+    tabletHeight: "56px",
+    padding: "0 18px 19px 0",
+    width: "100%",
+    zIndex: "189",
+    marginTop: "1px",
+ 
+    closeButton: {
+      right: "11px",
+      top: "6px",
+      tabletTop: "10px",
+      width: "20px",
+      height: "20px",
+      padding: "8px",
+      hoverBackgroundColor: grayMaxLight,
+      backgroundColor: "#858585",
+    },
+  },
+ 
+  iconButton: { color: "#858585", hoverColor: grayMaxLight },
+  selectorAddButton: {
+    background: "#242424",
+    hoverBackground: "#282828",
+    activeBackground: "#242424",
+ 
+    iconColor: "#858585",
+    iconColorHover: "#FFFFFF",
+    iconColorActive: "#CCCCCC",
+ 
+    border: `none`,
+    boxSizing: "border-box",
+    borderRadius: "3px",
+    height: " 32px",
+    width: "32px",
+    padding: "10px",
+    color: "#858585",
+    hoverColor: grayMaxLight,
+  },
+ 
+  saveCancelButtons: {
+    bottom: "0",
+    width: "100%",
+    left: "0",
+    padding: "8px 24px 8px 16px",
+    marginRight: "8px",
+ 
+    unsavedColor: gray,
+  },
+ 
+  selectedItem: {
+    background: "#242424",
+    border: `1px solid #242424`,
+    borderRadius: "3px",
+ 
+    textBox: {
+      padding: "0 8px",
+      height: "32px",
+      alignItems: "center",
+      borderRight: `1px solid #242424`,
+    },
+ 
+    text: {
+      color: grayMaxLight,
+      disabledColor: "#474747",
+    },
+ 
+    closeButton: {
+      alignItems: "center",
+      padding: "0 8px",
+      color: grayMaxLight,
+      colorHover: grayMaxLight,
+      backgroundColor: "#242424",
+    },
+  },
+ 
+  checkbox: {
+    fillColor: "#282828",
+    borderColor: "#474747",
+    arrowColor: white,
+    indeterminateColor: white,
+ 
+    disableArrowColor: "#474747",
+    disableBorderColor: "#545454",
+    disableFillColor: "#545454",
+    disableIndeterminateColor: "#474747",
+ 
+    hoverBorderColor: "#858585",
+    hoverIndeterminateColor: white,
+ 
+    pressedBorderColor: "#474747",
+    pressedFillColor: black,
+ 
+    focusColor: "#858585",
+ 
+    errorColor: "#E06451",
+  },
+ 
+  // slider: {
+  //   sliderBarColorProgress: blueMain,
+  //   sliderBarColorProgressDisabled: grayMid,
+  //   sliderBarColor: grayLightMid,
+  //   sliderBarDisableColor: grayLightMid,
+ 
+  //   sliderBarBorderActive: `1px solid ${globalColors.grayMid}`,
+  //   sliderBarBorderDisable: `1px solid ${globalColors.grayMid}`,
+ 
+  //   thumbFillDisable: grayLightMid,
+  //   thumbFillActive: grayLightMid,
+ 
+  //   thumbBorderColorActive: `1px solid ${globalColors.gray}`,
+  //   thumbBorderColorDisable: `1px solid ${globalColors.grayMid}`,
+ 
+  //   sliderWidth: "202px",
+ 
+  //   arrowHover: blueMain,
+  //   arrowColor: grayMid,
+  // },
+ 
+  viewSelector: {
+    fillColor: black,
+    checkedFillColor: "#858585",
+    fillColorDisabled: grayLight,
+    disabledFillColor: grayLightMid,
+    disabledFillColorInner: grayMid,
+    hoverBorderColor: "#858585",
+    borderColor: "#474747",
+  },
+ 
+  radioButton: {
+    textColor: grayMaxLight,
+    textDisableColor: "#5c5c5c",
+ 
+    marginBeforeLabel: "8px",
+ 
+    background: "#292929",
+    disableBackground: "#545454",
+ 
+    fillColor: grayMaxLight,
+    disableFillColor: "#474747",
+ 
+    borderColor: "#646464",
+    disableBorderColor: "none",
+    hoverBorderColor: grayMaxLight,
+  },
+ 
+  requestLoader: {
+    backgroundColor: white,
+    border: `1px solid ${globalColors.veryLightGrey}`,
+    overflow: "hidden",
+    padding: "5px 10px",
+    lineHeight: "16px",
+    borderRadius: "5px",
+    boxShadow: "0 2px 8px rgba(0, 0, 0, 0.3)",
+ 
+    marginRight: "10px",
+    top: "10px",
+    width: "100%",
+  },
+ 
+  row: {
+    minHeight: "47px",
+    width: "100%",
+    borderBottom: "#474747",
+    backgroundColor: globalColors.veryDarkGrey,
+    minWidth: "160px",
+    overflow: "hidden",
+    textOverflow: "ellipsis",
+ 
+    element: {
+      marginRight: "14px",
+      marginLeft: "2px",
+    },
+ 
+    optionButton: {
+      padding: "8px 0px 9px 7px",
+    },
+  },
+ 
+  rowContent: {
+    icons: {
+      height: "19px",
+    },
+ 
+    margin: "0 6px",
+    fontSize: "12px",
+    fontStyle: "normal",
+    fontWeight: "600",
+    height: "56px",
+    maxWidth: " 100%",
+ 
+    sideInfo: {
+      minWidth: "160px",
+      margin: "0 6px",
+      overflow: "hidden",
+      textOverflow: "ellipsis",
+    },
+ 
+    mainWrapper: {
+      minWidth: "140px",
+      marginRight: "8px",
+      marginTop: "8px",
+      width: "95%",
+    },
+  },
+ 
+  badge: {
+    border: "1px solid transparent",
+    padding: "1px",
+    lineHeight: "0.8",
+    overflow: "hidden",
+    color: black,
+    backgroundColor: "#F59931",
+    disableBackgroundColor: "#858585",
+  },
+ 
+  scrollbar: {
+    backgroundColorVertical: "rgba(255, 255, 255, 0.1)",
+    backgroundColorHorizontal: "rgba(255, 255, 255, 0.1)",
+    hoverBackgroundColorVertical: "#ADADAD",
+  },
+ 
+  modalDialog: {
+    backgroundColor: black,
+    textColor: white,
+    headerBorderColor: "#474747",
+    footerBorderColor: "#474747",
+    width: "auto",
+    maxwidth: "560px",
+    margin: " 0 auto",
+    minHeight: "100%",
+ 
+    colorDisabledFileIcons: "#5c5c5c",
+ 
+    content: {
+      backgroundColor: black,
+      modalBorderRadius: "6px",
+      modalPadding: "0 12px 12px",
+      asidePadding: "0 16px 16px",
+ 
+      heading: {
+        maxWidth: "calc(100% - 18px)",
+        margin: "0",
+        fontWeight: "700",
+        modalLineHeight: "40px",
+        asideLineHeight: "56px",
+        asideFontSize: "21px",
+        modalFontSize: "18px",
+      },
+    },
+ 
+    header: {
+      borderBottom: `1px solid #474747`,
+    },
+ 
+    closeButton: {
+      // backgroundColor: "#9A9EA3",
+ 
+      fillColor: "#9A9EA3",
+    },
+  },
+ 
+  paging: {
+    button: {
+      marginRight: "8px",
+      maxWidth: "110px",
+    },
+ 
+    page: {
+      marginRight: "8px",
+      width: "110%",
+    },
+ 
+    comboBox: {
+      marginLeft: "auto",
+      marginRight: "0px",
+    },
+  },
+ 
+  input: {
+    color: grayMaxLight,
+    disableColor: "#6c6c6c",
+ 
+    backgroundColor: "#292929",
+    disableBackgroundColor: "#474747",
+ 
+    width: {
+      base: "173px",
+      middle: "300px",
+      big: "350px",
+      huge: "500px",
+      large: "550px",
+    },
+ 
+    borderRadius: "3px",
+    boxShadow: "none",
+    boxSizing: "border-box",
+    border: "solid 1px",
+ 
+    borderColor: "#474747",
+    errorBorderColor: "#E06451",
+    warningBorderColor: warningColor,
+    disabledBorderColor: "#474747",
+ 
+    hoverBorderColor: "#858585",
+    hoverErrorBorderColor: "#E06451",
+    hoverWarningBorderColor: warningColor,
+    hoverDisabledBorderColor: "#474747",
+ 
+    focusBorderColor: grayMaxLight,
+    focusErrorBorderColor: "#E06451",
+    focusWarningBorderColor: warningColor,
+    focusDisabledBorderColor: "#474747",
+  },
+ 
+  fileInput: {
+    width: {
+      base: "173px",
+      middle: "300px",
+      big: "350px",
+      huge: "500px",
+      large: "550px",
+    },
+ 
+    height: {
+      base: "32px",
+      middle: "38px",
+      big: "38px",
+      huge: "39px",
+      large: "44px",
+    },
+ 
+    paddingRight: {
+      base: "37px",
+      middle: "48px",
+      big: "53px",
+      huge: "58px",
+      large: "64px",
+    },
+ 
+    icon: {
+      background: "#292929",
+ 
+      border: "1px solid",
+      borderRadius: "0 3px 3px 0",
+ 
+      width: {
+        base: "30px",
+        middle: "36px",
+        big: "37px",
+        huge: "38px",
+        large: "48px",
+      },
+ 
+      height: {
+        base: "30px",
+        middle: "36px",
+        big: "36px",
+        huge: "37px",
+        large: "42px",
+      },
+    },
+    iconButton: {
+      width: {
+        base: "15px",
+        middle: "15px",
+        big: "16px",
+        huge: "16px",
+        large: "16px",
+      },
+    },
+  },
+ 
+  passwordInput: {
+    color: "#858585",
+    disableColor: "#858585",
+ 
+    tooltipTextColor: black,
+ 
+    iconColor: "#646464",
+    hoverIconColor: "#858585",
+ 
+    hoverColor: gray,
+ 
+    lineHeight: "32px",
+ 
+    text: {
+      lineHeight: "14px",
+      marginTop: "-2px",
+    },
+ 
+    link: {
+      marginTop: "-6px",
+ 
+      tablet: {
+        width: "100%",
+        marginLeft: "0px",
+        marginTop: "-1px",
+      },
+    },
+ 
+    progress: {
+      borderRadius: "2px",
+      marginTop: "-2px",
+    },
+ 
+    newPassword: {
+      margin: "0 16px",
+ 
+      svg: {
+        overflow: "hidden",
+        marginBottom: "4px",
+      },
+    },
+  },
+ 
+  searchInput: {
+    fontSize: "14px",
+    fontWeight: "600",
+ 
+    iconColor: "#646464",
+    hoverIconColor: "#858585",
+  },
+ 
+  inputPhone: {
+    activeBorderColor: "#2da7db",
+    inactiveBorderColor: "#474747",
+    errorBorderColor: "#f21c0e",
+    backgroundColor: "#33333",
+    color: "#fff",
+    scrollBackground: "#858585",
+    placeholderColor: "#858585",
+    dialCodeColor: "#858585",
+    width: "320px",
+    height: "44px",
+  },
+  textInput: {
+    fontWeight: "normal",
+    placeholderColor: "rgba(255, 255, 255, 0.2)",
+    disablePlaceholderColor: "#6c6c6c",
+ 
+    transition: "all 0.2s ease 0s",
+    appearance: "none",
+    display: "flex",
+    flex: "1 1 0%",
+    outline: "none",
+    overflow: "hidden",
+    opacity: "1",
+ 
+    lineHeight: {
+      base: "20px",
+      middle: "20px",
+      big: "20px",
+      huge: "21px",
+      large: "20px",
+    },
+ 
+    fontSize: {
+      base: "13px",
+      middle: "14px",
+      big: "16px",
+      huge: "18px",
+      large: "16px",
+    },
+ 
+    padding: {
+      base: "5px 6px",
+      middle: "8px 12px",
+      big: "8px 16px",
+      huge: "8px 20px",
+      large: "11px 12px",
+    },
+  },
+ 
+  inputBlock: {
+    height: "100%",
+    paddingRight: "8px",
+    paddingLeft: "1px",
+ 
+    display: "flex",
+    alignItems: "center",
+    padding: "2px 0px 2px 2px",
+    margin: "0",
+ 
+    borderColor: grayMaxLight,
+ 
+    iconColor: "#646464",
+    hoverIconColor: "#858585",
+  },
+ 
+  textArea: {
+    disabledColor: "#474747",
+ 
+    focusBorderColor: grayMaxLight,
+    focusErrorBorderColor: "#E06451",
+    focusOutline: "none",
+ 
+    scrollWidth: "100%",
+    scrollHeight: "91px",
+ 
+    numerationColor: "#858585",
+ 
+    copyIconFilter:
+      "invert(62%) sepia(0%) saturate(0%) hue-rotate(119deg) brightness(85%) contrast(87%)",
+  },
+ 
+  link: {
+    color: grayMaxLight,
+    lineHeight: "calc(100% + 6px)",
+    opacity: "0.5",
+    textDecoration: "none",
+    cursor: "pointer",
+    display: "inline-block",
+ 
+    hover: {
+      textDecoration: "underline dashed",
+      page: { textDecoration: "underline" },
+    },
+  },
+ 
+  linkWithDropdown: {
+    paddingRight: "20px",
+    semiTransparentOpacity: "0.5",
+    textDecoration: "none",
+    disableColor: "#5c5c5c",
+ 
+    svg: {
+      opacity: "1",
+      semiTransparentOpacity: "0.5",
+    },
+ 
+    text: { maxWidth: "100%" },
+ 
+    span: { maxWidth: "300px" },
+ 
+    expander: {
+      iconColor: white,
+    },
+    color: {
+      default: "#858585",
+      hover: "#ADADAD",
+      active: "#FFFFFF",
+      focus: "#FFFFFF",
+    },
+ 
+    background: {
+      default: "transparent",
+      hover: "#474747",
+      active: "#282828",
+      focus: "#242424",
+    },
+    caret: {
+      width: "5px",
+      minWidth: "5px",
+      height: "4px",
+      minHeight: "4px",
+      marginLeft: "5px",
+      marginTop: "-4px",
+      right: "6px",
+      top: "0",
+      bottom: "0",
+      isOpenBottom: "-1px",
+      margin: "auto",
+      opacity: "0",
+      transform: "scale(1, -1)",
+    },
+  },
+ 
+  tooltip: {
+    borderRadius: "6px",
+    boxShadow: "0px 10px 15px rgba(4, 15, 27, 0.13)",
+    opacity: "1",
+    padding: "8px 12px",
+    pointerEvents: "auto",
+    maxWidth: "340px",
+    color: "#F5E9BA",
+    textColor: black,
+ 
+    before: {
+      border: "none",
+    },
+    after: {
+      border: "none",
+    },
+  },
+ 
+  tabsContainer: {
+    scrollbar: {
+      width: "100%",
+      height: "44px",
+    },
+ 
+    label: {
+      height: " 32px",
+      borderRadius: "16px",
+      minWidth: "fit-content",
+      marginRight: "8px",
+      width: "fit-content",
+ 
+      backgroundColor: "#d6d6d6",
+      hoverBackgroundColor: "#3D3D3D",
+      disableBackgroundColor: "#292929",
+ 
+      title: {
+        margin: "7px 15px 7px 15px",
+        overflow: "hidden",
+        color: black,
+        hoverColor: "#a4a4a4",
+        disableColor: "#474747",
+      },
+    },
+  },
+ 
+  fieldContainer: {
+    horizontal: {
+      margin: "0 0 16px 0",
+ 
+      label: {
+        lineHeight: "32px",
+        margin: "0",
+      },
+ 
+      body: {
+        flexGrow: "1",
+      },
+ 
+      iconButton: {
+        marginTop: "10px",
+        marginLeft: "8px",
+      },
+    },
+ 
+    vertical: {
+      margin: "0 0 16px 0",
+ 
+      label: {
+        lineHeight: "20px",
+        height: "20px",
+      },
+ 
+      labelIcon: {
+        width: "100%",
+        margin: "0 0 4px 0",
+      },
+ 
+      body: {
+        width: "100%",
+      },
+ 
+      iconButton: {
+        margin: "0",
+        padding: "0px 8px",
+        width: "12px",
+        height: "12px",
+      },
+    },
+ 
+    errorLabel: {
+      color: "#E06451",
+    },
+  },
+ 
+  avatar: {
+    defaultImage: `url("${AvatarDarkReactSvgUrl}")`,
+    initialsContainer: {
+      color: white,
+      left: "50%",
+      top: "50%",
+      transform: "translate(-50%, -50%)",
+      fontWeight: "600",
+ 
+      fontSize: {
+        min: "12px",
+        small: "12px",
+        base: "16px",
+        medium: "20px",
+        big: "34px",
+        max: "72px",
+      },
+    },
+ 
+    roleWrapperContainer: {
+      right: {
+        min: "-5px",
+        small: "-2px",
+        base: "-2px",
+        medium: "-4px",
+        big: "3px",
+        max: "0px",
+      },
+ 
+      bottom: {
+        min: "-5px",
+        small: "3px",
+        base: "4px",
+        medium: "6px",
+        big: "3px",
+        max: "0px",
+      },
+ 
+      width: {
+        medium: "16px",
+        max: "24px",
+      },
+ 
+      height: {
+        medium: "16px",
+        max: "24px",
+      },
+    },
+ 
+    imageContainer: {
+      backgroundImage: "#606060",
+      background: "#606060",
+      borderRadius: "50%",
+      height: "100%",
+ 
+      svg: {
+        display: "block",
+        width: "50%",
+        height: "100%",
+        margin: "auto",
+        fill: "#858585",
+      },
+    },
+ 
+    administrator: {
+      fill: "#F59931",
+      stroke: darkBlack,
+      color: black,
+    },
+ 
+    guest: {
+      fill: "#575757",
+      stroke: darkBlack,
+      color: black,
+    },
+ 
+    owner: {
+      fill: "#EDC409",
+      stroke: darkBlack,
+      color: black,
+    },
+ 
+    editContainer: {
+      right: "0px",
+      bottom: "0px",
+      fill: black,
+      backgroundColor: "#b2b2b2",
+      borderRadius: "50%",
+      height: "32px",
+      width: "32px",
+    },
+ 
+    image: {
+      width: "100%",
+      height: "100%",
+      borderRadius: "50%",
+    },
+ 
+    icon: {
+      background: "#242424",
+      color: "#ADADAD",
+    },
+ 
+    width: {
+      min: "32px",
+      small: "36px",
+      base: "40px",
+      medium: "48px",
+      big: "80px",
+      max: "124px",
+    },
+ 
+    height: {
+      min: "32px",
+      small: "36px",
+      base: "40px",
+      medium: "48px",
+      big: "80px",
+      max: "124px",
+    },
+  },
+ 
+  avatarEditor: {
+    minWidth: "208px",
+    maxWidth: "300px",
+    width: "max-content",
+  },
+ 
+  avatarEditorBody: {
+    maxWidth: "400px",
+ 
+    selectLink: {
+      color: "#474747",
+      linkColor: "#E06A1B",
+    },
+ 
+    slider: {
+      width: "100%",
+      margin: "24px 0",
+      backgroundColor: "transparent",
+ 
+      runnableTrack: {
+        background: "#242424",
+        focusBackground: "#242424",
+        border: `1.4px solid #242424`,
+        borderRadius: "5.6px",
+        width: "100%",
+        height: "8px",
+      },
+ 
+      sliderThumb: {
+        marginTop: "-9.4px",
+        width: "24px",
+        height: "24px",
+        background: grayMaxLight,
+        disabledBackground: "#A6DCF2",
+        borderWidth: "6px",
+        borderStyle: "solid",
+        borderColor: `${black}`,
+        borderRadius: "30px",
+        boxShadow: "0px 5px 20px rgba(4, 15, 27, 0.13)",
+      },
+ 
+      thumb: {
+        width: "24px",
+        height: "24px",
+        background: grayMaxLight,
+        border: `6px solid ${black}`,
+        borderRadius: "30px",
+        marginTop: "0px",
+        boxShadow: "0px 5px 20px rgba(4, 15, 27, 0.13)",
+      },
+ 
+      rangeTrack: {
+        background: "#242424",
+        border: `1.4px solid #242424`,
+        borderRadius: "5.6px",
+        width: "100%",
+        height: "8px",
+      },
+ 
+      rangeThumb: {
+        width: "14px",
+        height: "14px",
+        background: grayMaxLight,
+        border: `6px solid ${black}`,
+        borderRadius: "30px",
+        boxShadow: "0px 5px 20px rgba(4, 15, 27, 0.13)",
+      },
+ 
+      track: {
+        background: "transparent",
+        borderColor: "transparent",
+        borderWidth: "10.2px 0",
+        color: "transparent",
+        width: "100%",
+        height: "8px",
+      },
+ 
+      trackNumber: {
+        color: "#A3A9AE",
+      },
+ 
+      fillLower: {
+        background: "#242424",
+        focusBackground: "#242424",
+        border: `1.4px solid #242424`,
+        borderRadius: "11.2px",
+      },
+ 
+      fillUpper: {
+        background: "#242424",
+        focusBackground: "#242424",
+        border: `1.4px solid #242424`,
+        borderRadius: "11.2px",
+      },
+    },
+ 
+    dropZone: {
+      border: `1px dashed #474747`,
+    },
+ 
+    container: {
+      miniPreview: {
+        width: "160px",
+        border: `1px solid #242424`,
+        borderRadius: "6px",
+        padding: "8px",
+      },
+ 
+      buttons: {
+        height: "32px",
+        background: "#292929",
+        mobileWidth: "40px",
+        mobileHeight: "100%",
+        mobileBackground: "none",
+      },
+ 
+      button: {
+        background: "#b6b6b6",
+        fill: "#858585",
+        hoverFill: grayMaxLight,
+        padding: "0 12px",
+        height: "40px",
+        borderRadius: "6px",
+      },
+ 
+      zoom: {
+        height: "56px",
+ 
+        mobileHeight: "24px",
+        marginTop: "16px",
+      },
+    },
+  },
+ 
+  backdrop: {
+    backgroundColor: "rgba(20, 20, 20, 0.8)",
+    unsetBackgroundColor: "unset",
+  },
+ 
+  treeMenu: {
+    disabledColor: "#5c5c5c",
+  },
+ 
+  treeNode: {
+    background: "#3D3D3D",
+    disableColor: "#858585",
+ 
+    icon: {
+      color: "#ADADAD",
+    },
+ 
+    dragging: {
+      draggable: {
+        background: "rgba(230, 211, 138, 0.12)",
+        hoverBackgroundColor: "rgba(204, 184, 102, 0.2)",
+        borderRadius: "3px",
+      },
+ 
+      title: {
+        width: "85%",
+        // color: "#000",
+      },
+    },
+ 
+    draggable: {
+      color: cyanBlueDarkShade,
+      dragOverBackgroundColor: strongBlue,
+      border: `1px ${strongBlue} solid`,
+      dragOverColor: white,
+ 
+      gapTop: {
+        borderTop: `2px blue solid`,
+      },
+ 
+      gapBottom: {
+        borderBottom: `2px blue solid`,
+      },
+    },
+ 
+    contentWrapper: {
+      color: darkRed,
+    },
+ 
+    title: {
+      color: "#a9a9a9",
+    },
+ 
+    selected: {
+      background: black,
+      hoverBackgroundColor: black,
+      borderRadius: "3px",
+    },
+ 
+    checkbox: {
+      border: `2px solid ${white}`,
+      borderTop: 0,
+      borderLeft: 0,
+    },
+  },
+ 
+  progressBar: {
+    backgroundColor: "#DADDDF",
+ 
+    percent: {
+      background: "#4781D1",
+    },
+  },
+ 
+  dropDown: {
+    fontWeight: "600",
+    fontSize: "13px",
+    zIndex: "400",
+    background: "#333333",
+    borderRadius: "6px",
+    boxShadow:
+      "0px 16px 16px rgba(0, 0, 0, 0.16), 0px 8.1px 6.975px rgba(0, 0, 0, 0.108), 0px 3.2px 2.6px rgba(0, 0, 0, 0.08), 0px 0.7px 0.925px rgba(0, 0, 0, 0.052)",
+    // boxShadowMobile: "0px -4px 60px rgba(0, 0, 0, 0.25)",
+    border: "1px solid #474747",
+  },
+ 
+  dropDownItem: {
+    color: grayMaxLight,
+    disableColor: gray,
+    backgroundColor: black,
+    hoverBackgroundColor: "#3D3D3D",
+    hoverDisabledBackgroundColor: black,
+    selectedBackgroundColor: "#282828",
+    fontWeight: "600",
+    fontSize: "13px",
+    width: "100%",
+    maxWidth: "500px",
+    border: "0px",
+    margin: "0px",
+    padding: "0px 12px",
+    tabletPadding: "0px 16px",
+    lineHeight: "32px",
+    tabletLineHeight: "36px",
+ 
+    icon: {
+      width: "16px",
+      marginRight: "8px",
+      lineHeight: "10px",
+ 
+      color: grayMaxLight,
+      disableColor: gray,
+    },
+ 
+    separator: {
+      padding: "0px 16px",
+      borderBottom: `1px solid #474747`,
+      margin: " 4px 16px 4px",
+      lineHeight: "1px",
+      height: "1px",
+      width: "calc(100% - 32px)",
+    },
+  },
+ 
+  toast: {
+    active: {
+      success: "#292929",
+      error: "#292929",
+      info: "#292929",
+      warning: "#292929",
+    },
+    hover: {
+      success: "#292929",
+      error: "#292929",
+      info: "#292929",
+      warning: "#292929",
+    },
+    border: {
+      success: "2px solid #9de051",
+      error: "2px solid #e0b051",
+      info: "2px solid #e0d751",
+      warning: "2px solid #e07751",
+    },
+ 
+    zIndex: "9999",
+    position: "fixed",
+    padding: "4px",
+    width: "320px",
+    color: grayMaxLight,
+    top: "16px",
+    right: "24px",
+    marginTop: "0px",
+ 
+    closeButton: {
+      color: grayMaxLight,
+      fontWeight: "700",
+      fontSize: "14px",
+      background: "transparent",
+      padding: "0",
+      opacity: "0.7",
+      hoverOpacity: "1",
+      transition: "0.3s ease",
+    },
+ 
+    main: {
+      marginBottom: "1rem",
+      boxShadow: "0px 16px 16px rgba(0, 0, 0, 0.16)",
+      maxHeight: "800px",
+      overflow: "hidden",
+      borderRadius: "6px",
+      color: grayMaxLight,
+      margin: "0 0 12px",
+      padding: "12px",
+      minHeight: "32px",
+      width: "100%",
+      right: "0",
+      transition: "0.3s",
+    },
+  },
+ 
+  toastr: {
+    svg: {
+      width: "16px",
+      minWidth: "16px",
+      height: "16px",
+      minHeight: "16px",
+      color: {
+        success: "#9DE051",
+        error: "#E0B151",
+        info: "#E0D751",
+        warning: "#E07751",
+      },
+    },
+ 
+    text: {
+      lineHeight: " 1.3",
+      fontSize: "12px",
+      color: grayMaxLight,
+    },
+ 
+    title: {
+      fontWeight: "600",
+      margin: "0",
+      marginBottom: "5px",
+      lineHeight: "16px",
+      color: {
+        success: "#9DE051",
+        error: "#E0B151",
+        info: "#E0D751",
+        warning: "#E07751",
+      },
+      fontSize: "12px",
+    },
+ 
+    closeButtonColor: grayMaxLight,
+  },
+ 
+  loader: {
+    color: shuttleGrey,
+    size: "40px",
+    marginRight: "2px",
+    borderRadius: "50%",
+  },
+  rombsLoader: {
+    blue: {
+      colorStep_1: "#333",
+      colorStep_2: "#333",
+      colorStep_3: "#323032",
+      colorStep_4: "#323032",
+    },
+    red: {
+      colorStep_1: "#333",
+      colorStep_2: "#333",
+      colorStep_3: "#323032",
+    },
+    green: {
+      colorStep_1: "#333",
+      colorStep_2: "#333",
+      colorStep_3: "#323032",
+      colorStep_4: "#323032",
+    },
+  },
+  dialogLoader: {
+    borderBottom: "1px solid #292929",
+  },
+ 
+  // dropDownItem: {
+  //   width: "100%",
+  //   maxWidth: "240px",
+  //   border: "none",
+  //   cursor: "pointer",
+  //   padding: "0px 16px",
+  //   lineHeight: "32px",
+  //   textAlign: "left",
+  //   background: "none",
+  //   textDecoration: "none",
+  //   fontStyle: "normal",
+  //   fontWeight: "600",
+  //   fontSize: "13px",
+ 
+  //   whiteSpace: "nowrap",
+  //   overflow: "hidden",
+  //   textOverflow: "ellipsis",
+ 
+  //   outline: "none",
+  //   color: black,
+  //   textTransform: "none",
+ 
+  //   hoverBackgroundColor: grayLight,
+  //   noHoverBackgroundColor: white,
+ 
+  //   header: {
+  //     color: gray,
+  //     hoverCursor: "default",
+  //     hoverBackgroundColor: "white",
+  //     textTransform: "uppercase",
+  //   },
+ 
+  //   disabled: {
+  //     color: gray,
+  //     hoverCursor: "default",
+  //     hoverBackgroundColor: "white",
+  //   },
+ 
+  //   separator: {
+  //     padding: "0px 16px",
+  //     border: `0.5px solid ${grayLightMid}`,
+  //     cursor: "default",
+  //     margin: "6px 16px 6px",
+  //     lineHeight: "1px",
+  //     height: "1px",
+  //     width: "calc(100% - 32px)",
+  //   },
+ 
+  //   tablet: { lineHeight: "36px" },
+ 
+  comboBox: {
+    padding: "6px 0px",
+    background: black,
+ 
+    width: {
+      base: "173px",
+      middle: "300px",
+      big: "350px",
+      huge: "500px",
+    },
+ 
+    arrow: {
+      width: "6px",
+      flex: "0 0 6px",
+      marginTopWithBorder: "5px",
+      marginTop: "12px",
+      marginRight: "8px",
+      marginLeft: "auto",
+    },
+ 
+    button: {
+      height: "18px",
+      heightWithBorder: "30px",
+      heightModernView: "28px",
+ 
+      paddingLeft: "16px",
+      paddingRightNoArrow: "16px",
+      paddingRight: "8px",
+ 
+      selectPaddingLeft: "8px",
+      selectPaddingRightNoArrow: "14px",
+      selectPaddingRight: "8px",
+ 
+      color: "#858585",
+      disabledColor: "#858585",
+      background: "#292929",
+      backgroundWithBorder: "none",
+      backgroundModernView: "none",
+ 
+      border: `1px solid #474747`,
+      borderRadius: "3px",
+ 
+      borderColor: "#474747",
+      openBorderColor: grayMaxLight,
+ 
+      disabledBorderColor: "#474747",
+      disabledBackground: "#474747",
+ 
+      hoverBorderColor: "#858585",
+      hoverBorderColorOpen: grayMaxLight,
+      hoverDisabledBorderColor: "#474747",
+ 
+      hoverBackgroundModernView: "#474747",
+      activeBackgroundModernView: "#282828",
+      focusBackgroundModernView: "#242424",
+    },
+ 
+    label: {
+      marginRightWithBorder: "8px",
+      marginRight: "4px",
+ 
+      disabledColor: "#858585",
+      color: "#858585",
+      selectedColor: white,
+ 
+      maxWidth: "175px",
+ 
+      lineHeightWithoutBorder: "16px",
+      lineHeightTextDecoration: "underline dashed",
+    },
+ 
+    childrenButton: {
+      marginRight: "8px",
+      width: "16px",
+      height: "16px",
+ 
+      defaultDisabledColor: "#858585",
+      defaultColor: white,
+      disabledColor: "#858585",
+      color: white,
+      // selectedColor: white,
+    },
+  },
+ 
+  toggleContent: {
+    headingHeight: "24px",
+    headingLineHeight: "26px",
+    hoverBorderBottom: "1px dashed",
+    contentPadding: "10px 0px 0px 0px",
+    arrowMargin: "4px 8px 4px 0px",
+    transform: "rotate(180deg)",
+    iconColor: white,
+ 
+    childrenContent: {
+      color: black,
+      paddingTop: "6px",
+    },
+  },
+ 
+  toggleButton: {
+    fillColorDefault: "#4781D1",
+    fillColorOff: "#292929",
+    hoverFillColorOff: "#3D3D3D",
+ 
+    fillCircleColor: "#FFFFFF",
+    fillCircleColorOff: "#FFFFFF",
+  },
+ 
+  contextMenuButton: {
+    content: {
+      width: "100%",
+      backgroundColor: black,
+      padding: "0 16px 16px",
+    },
+ 
+    headerContent: {
+      maxWidth: "500px",
+      margin: "0",
+      lineHeight: "56px",
+      fontWeight: "700",
+      borderBottom: `1px solid #474747`,
+    },
+ 
+    bodyContent: {
+      padding: "16px 0",
+    },
+  },
+ 
+  calendar: {
+    color: "#FFFFFF",
+    disabledColor: "#474747",
+    pastColor: "#858585",
+    onHoverBackground: "#3D3D3D",
+    titleColor: "#ADADAD",
+    outlineColor: "#474747",
+    arrowColor: "#F6F9FC",
+    disabledArrow: "#474747",
+    weekdayColor: "#858585",
+    accent: "#4781d1",
+    boxShadow: "0px 12px 40px 0px rgba(0, 0, 0, 0.40)",
+  },
+ 
+  datePicker: {
+    width: "115px",
+    dropDownPadding: "16px 16px 16px 17px",
+    contentPadding: "0 16px 16px",
+    bodyPadding: "16px 0",
+    backgroundColor: black,
+    inputBorder: blueMain,
+    iconPadding: "8px 8px 7px 0px",
+ 
+    contentMaxWidth: "500px",
+    contentLineHeight: "56px",
+    contentFontWeight: "700",
+ 
+    borderBottom: `1px solid ${globalColors.lightGrayishBlue}`,
+  },
+ 
+  aside: {
+    backgroundColor: black,
+    height: "100%",
+    overflowX: "hidden",
+    overflowY: "auto",
+    position: "fixed",
+    right: "0",
+    top: "0",
+    bottom: "16px",
+    paddingBottom: "64px",
+    transition: "transform 0.3s ease-in-out",
+  },
+ 
+  dragAndDrop: {
+    height: "100%",
+    border: `1px solid ${globalColors.darkSilver}`,
+    transparentBorder: "1px solid transparent",
+    acceptBackground: "rgba(204, 184, 102, 0.2)",
+    background: "rgba(230, 211, 138, 0.12)",
+  },
+ 
+  // phoneInput: {
+  //   width: "304px",
+  //   height: "44px",
+  //   itemTextColor: black,
+  //   itemBackgroundColor: white,
+  //   itemHoverColor: grayLightMid,
+  //   scrollBackground: "rgba(0, 0, 0, 0.1)",
+  //   placeholderColor: gray,
+  // },
+ 
+  // squareButton: {
+  //   height: "32px",
+  //   width: "32px",
+  //   color: gray,
+  //   backgroundColor: white,
+  //   border: `1px solid ${grayMid}`,
+  //   borderRadius: "3px",
+  //   outline: "none",
+  //   hover: {
+  //     backgroundColor: white,
+  //     border: `1px solid ${gray}`,
+  //   },
+  //   click: {
+  //     backgroundColor: grayLightMid,
+  //     border: `1px solid ${gray}`,
+  //   },
+  //   disable: {
+  //     backgroundColor: grayLight,
+  //     border: `1px solid ${grayLightMid}`,
+  //   },
+  //   crossShape: {
+  //     color: graySilver,
+  //     disable: {
+  //       color: gray,
+  //     },
+  //   },
+  // },
+ 
+  // roundButton: {
+  //   height: "40px",
+  //   width: "40px",
+  //   backgroundColor: grayLight,
+  //   borderRadius: {
+  //     plus: "112px",
+  //     minus: "81px",
+  //   },
+  //   borderStyle: "none",
+  //   outline: "none",
+  //   hover: {
+  //     backgroundColor: grayLightMid,
+  //   },
+  //   click: {
+  //     backgroundColor: grayMid,
+  //   },
+  //   disable: {
+  //     backgroundColor: grayLight,
+  //   },
+  //   plus: {
+  //     color: grayMid,
+  //     disable: {
+  //       color: black,
+  //     },
+  //   },
+  // },
+  catalog: {
+    background: "#292929",
+ 
+    header: {
+      borderBottom: "1px solid #474747",
+      iconFill: "#a9a9a9",
+    },
+    control: {
+      background: "#a3a3a3",
+      fill: "#ffffff",
+    },
+ 
+    headerBurgerColor: "#606060",
+ 
+    verticalLine: "1px solid #474747",
+ 
+    profile: {
+      borderTop: "1px solid #474747",
+      background: "#3D3D3D",
+    },
+ 
+    paymentAlert: {
+      color: "#ed7309",
+      warningColor: "#E06451",
+    },
+ 
+    teamTrainingAlert: {
+      titleColor: "#FFFFFF",
+      borderColor: "#388BDE",
+      linkColor: "#5299E0",
+    },
+  },
+ 
+  alertComponent: {
+    descriptionColor: "#ADADAD",
+    iconColor: "#ADADAD",
+  },
+ 
+  catalogItem: {
+    container: {
+      width: "100%",
+      height: "36px",
+      padding: "0 12px",
+      background: "#1b1c1d",
+      marginBottom: "16px",
+      tablet: {
+        height: "44px",
+        padding: "0 12px",
+        marginBottom: "24px",
+      },
+    },
+    sibling: {
+      active: {
+        background: black,
+      },
+      hover: {
+        background: black,
+      },
+    },
+    img: {
+      svg: {
+        width: "16px",
+        height: "16px",
+ 
+        fill: "#a9a9a9",
+        isActiveFill: "#FFFFFF",
+        tablet: {
+          width: "20px",
+          height: "20px",
+        },
+      },
+    },
+    text: {
+      width: "100%",
+      marginLeft: "8px",
+      lineHeight: "20px",
+      color: "#a9a9a9",
+      isActiveColor: "#FFFFFF",
+      fontSize: "13px",
+      fontWeight: 600,
+      tablet: {
+        marginLeft: "12px",
+        lineHeight: "20px",
+        fontSize: "14px",
+        fontWeight: "600",
+      },
+    },
+    initialText: {
+      color: black,
+      width: "16px",
+      lineHeight: "15px",
+      fontSize: "9px",
+      fontWeight: "700",
+      tablet: {
+        width: "20px",
+        lineHeight: "19px",
+        fontSize: "11px",
+      },
+    },
+    badgeWrapper: {
+      size: "16px",
+      marginLeft: "8px",
+      marginRight: "-2px",
+      tablet: {
+        width: "44px",
+        height: "44px",
+        marginRight: "-16px",
+      },
+    },
+    badgeWithoutText: {
+      backgroundColor: "#F58D31",
+ 
+      size: "8px",
+      position: "-4px",
+    },
+    trashIconFill: "#858585",
+  },
+ 
+  navigation: {
+    expanderColor: "#eeeeee",
+    background: black,
+    rootFolderTitleColor: "#858585",
+    publicIcon: "#858585",
+ 
+    icon: {
+      fill: "#E06A1B",
+      stroke: "#474747",
+    },
+  },
+ 
+  nav: {
+    backgroundColor: "#292929",
+  },
+ 
+  navItem: {
+    baseColor: "#a9a9a9",
+    activeColor: white,
+    separatorColor: "#474747",
+ 
+    wrapper: {
+      hoverBackground: "#474747",
+    },
+  },
+ 
+  header: {
+    backgroundColor: "#1f1f1f ",
+    recoveryColor: "#4C4C4C",
+    linkColor: "#606060",
+    productColor: "#eeeeee",
+  },
+ 
+  menuContainer: {
+    background: "#3d3d3d",
+    color: "rgba(255, 255, 255, 0.92)",
+  },
+ 
+  article: {
+    background: "#292929",
+    pinBorderColor: "#474747",
+    catalogItemHeader: "#858585",
+    catalogItemText: "rgba(255, 255, 255, 0.6)",
+    catalogItemActiveBackground: "#333333",
+    catalogShowText: "#adadad",
+  },
+ 
+  section: {
+    toggler: {
+      background: white,
+      fill: black,
+      boxShadow: "0px 5px 20px rgba(0, 0, 0, 0.13)",
+    },
+ 
+    header: {
+      backgroundColor: black,
+      background: `linear-gradient(180deg, #333333 2.81%, rgba(51, 51, 51, 0.9) 63.03%, rgba(51, 51, 51, 0) 100%);`,
+      trashErasureLabelBackground: "#292929",
+      trashErasureLabelText: "#ADADAD",
+    },
+  },
+ 
+  infoPanel: {
+    sectionHeaderToggleIcon: "#858585",
+    sectionHeaderToggleIconActive: "#c4c4c4",
+    sectionHeaderToggleBg: "transparent",
+    sectionHeaderToggleBgActive: "#292929",
+ 
+    backgroundColor: black,
+    blurColor: "rgba(20, 20, 20, 0.8)",
+    borderColor: "#292929",
+    thumbnailBorderColor: grayLightMid,
+    textColor: white,
+ 
+    closeButtonWrapperPadding: "6px",
+    closeButtonIcon: black,
+    closeButtonSize: "12px",
+    closeButtonBg: "#a2a2a2",
+ 
+    links: {
+      iconColor: "#858585",
+      iconErrorColor: "rgba(242, 28, 14, 0.5)", // "#F21C0E",
+      primaryColor: "#ADADAD",
+    },
+ 
+    members: {
+      iconColor: "#A3A9AE",
+      iconHoverColor: "#ffffff",
+      isExpectName: "#A3A9AE",
+      subtitleColor: "#a3a9ae",
+      meLabelColor: "#a3a9ae",
+      roleSelectorColor: "#a3a9ae",
+      disabledRoleSelectorColor: "#a3a9ae",
+      roleSelectorArrowColor: "#a3a9ae",
+    },
+ 
+    history: {
+      subtitleColor: "#A3A9AE",
+      fileBlockBg: "#292929",
+      dateColor: "#A3A9AE",
+      fileExstColor: "#A3A9AE",
+      locationIconColor: "#A3A9AE",
+      folderLabelColor: "#A3A9AE",
+    },
+ 
+    details: {
+      customLogoBorderColor: "#474747",
+      commentEditorIconColor: "#eee",
+      tagBackground: "#242424",
+    },
+ 
+    gallery: {
+      borderColor: "#292929",
+      descriptionColor: "#eeeeee",
+    },
+  },
+ 
+  filesArticleBody: {
+    background: black,
+    panelBackground: "#474747",
+ 
+    fill: "#C4C4C4",
+    expanderColor: "#C4C4C4",
+ 
+    downloadAppList: {
+      color: "#C4C4C4",
+      winHoverColor: "#3785D3",
+      macHoverColor: "#000",
+      linuxHoverColor: "#FFB800",
+      androidHoverColor: "#9BD71C",
+    },
+ 
+    thirdPartyList: {
+      color: "#818b91",
+      linkColor: "#DDDDDD",
+    },
+    devTools: {
+      border: "1px solid #474747",
+      color: "#858585",
+    },
+  },
+ 
+  peopleArticleBody: {
+    iconColor: "#C4C4C4",
+    expanderColor: "#C4C4C4",
+  },
+ 
+  peopleTableRow: {
+    fill: graySilver,
+ 
+    nameColor: grayMaxLight,
+    pendingNameColor: "#6f6f6f",
+ 
+    sideInfoColor: "#858585",
+    pendingSideInfoColor: "#5a5a5a",
+  },
+ 
+  filterInput: {
+    button: {
+      border: "1px solid #474747",
+      hoverBorder: "1px solid #858585",
+ 
+      openBackground: "#a3a9ae",
+ 
+      openFill: "#eeeeee",
+    },
+ 
+    filter: {
+      background: "#333333",
+      border: "1px solid #474747",
+      color: "#a3a9ae",
+ 
+      separatorColor: "#474747",
+      indicatorColor: "#F58D31",
+ 
+      selectedItem: {
+        background: "#eeeeee",
+        border: "#eeeeee",
+        color: "#333333",
+      },
+    },
+ 
+    sort: {
+      background: "#333333",
+      hoverBackground: "#292929",
+      selectedViewIcon: "rgba(255, 255, 255, 0.88)",
+      viewIcon: "#858585",
+      sortFill: "rgba(255, 255, 255, 0.6)",
+ 
+      tileSortFill: "#eeeeee",
+      tileSortColor: "#eeeeee",
+    },
+ 
+    selectedItems: {
+      background: "#242424",
+      hoverBackground: "#3d3d3d",
+    },
+  },
+ 
+  profileInfo: {
+    color: "#858585",
+    iconButtonColor: grayMaxLight,
+    linkColor: grayMaxLight,
+ 
+    tooltipLinkColor: "#e06a1b",
+    iconColor: "#C96C27",
+  },
+ 
+  updateUserForm: {
+    tooltipTextColor: black,
+    borderTop: "none",
+  },
+ 
+  tableContainer: {
+    borderRight: "2px solid #474747",
+    hoverBorderColor: "#474747",
+    tableCellBorder: "1px solid #474747",
+ 
+    groupMenu: {
+      background: black,
+      borderBottom: "1px solid #474747",
+      borderRight: "1px solid #474747",
+      boxShadow: "0px 40px 60px rgba(0, 0, 0, 0.12)",
+    },
+ 
+    header: {
+      background: black,
+      borderBottom: "1px solid #474747",
+      textColor: "#858585",
+      activeTextColor: "#858585",
+      hoverTextColor: grayMaxLight,
+ 
+      iconColor: "#858585",
+      activeIconColor: "#858585",
+      hoverIconColor: grayMaxLight,
+ 
+      borderImageSource: `linear-gradient(to right,${black} 21px,#474747 21px,#474747 calc(100% - 20px),${black} calc(100% - 20px))`,
+      borderHoverImageSource: `linear-gradient(to right,${black} 0px,#474747 0px,#474747 100% ,${black} 100%)`,
+      lengthenBorderImageSource: `linear-gradient(to right, #474747, #474747)`,
+      hotkeyBorderBottom: `1px solid ${globalColors.blueMain}`,
+ 
+      settingsIconDisableColor: "#474747",
+    },
+ 
+    tableCell: {
+      border: "1px solid #474747",
+    },
+  },
+  filesSection: {
+    rowView: {
+      checkedBackground: "#3D3D3D",
+ 
+      draggingBackground: "rgba(230, 211, 138, 0.12)",
+      draggingHoverBackground: "rgba(204, 184, 102, 0.2)2",
+ 
+      shareButton: {
+        color: "#858585",
+        fill: "#858585",
+      },
+ 
+      sideColor: "#858585",
+      linkColor: grayMaxLight,
+      textColor: "#858585",
+ 
+      editingIconColor: "#eeeeee",
+      shareHoverColor: "#eeeeee",
+      pinColor: "#FFFFFF",
+    },
+ 
+    tableView: {
+      fileName: {
+        linkColor: grayMaxLight,
+        textColor: "#858585",
+      },
+ 
+      row: {
+        checkboxChecked: `linear-gradient(to right, ${black} 24px, #474747 24px)`,
+        checkboxDragging:
+          "linear-gradient(to right, rgba(230, 211, 138, 0.12) 24px, #474747 24px)",
+        checkboxDraggingHover:
+          "inear-gradient(to right,rgba(204, 184, 102, 0.2) 24px, #474747 24px)",
+ 
+        contextMenuWrapperChecked: `linear-gradient(to left, ${black} 24px, #474747 24px)`,
+        contextMenuWrapperDragging:
+          "border-image-source: linear-gradient(to left, rgba(230, 211, 138, 0.12) 24px, #474747 24px)",
+        contextMenuWrapperDraggingHover:
+          "linear-gradient(to left,rgba(204, 184, 102, 0.2) 24px, #474747 24px)",
+ 
+        backgroundActive: "#3D3D3D",
+ 
+        borderImageCheckbox:
+          "linear-gradient(to right, #474747 24px, #474747 24px)",
+        borderImageContextMenu:
+          "linear-gradient(to left, #474747 24px, #474747 24px)",
+ 
+        borderHover: "#474747",
+        sideColor: gray,
+ 
+        shareHoverColor: "#eeeeee",
+ 
+        borderImageRight:
+          "linear-gradient(to right, #333333 25px, #474747 24px)",
+        borderImageLeft: "linear-gradient(to left, #333333 20px, #474747 24px)",
+ 
+        borderColor: "#474747",
+        borderColorTransition: "#474747",
+      },
+    },
+ 
+    tilesView: {
+      tile: {
+        draggingColor: "rgba(230, 211, 138, 0.12)",
+        draggingHoverColor: "rgba(204, 184, 102, 0.2)",
+        checkedColor: "#3d3d3d",
+        roomsCheckedColor: black,
+        border: "1px solid #474747",
+        backgroundBadgeColor: black,
+        backgroundColor: "#282828",
+        borderRadius: "6px",
+        roomsBorderRadius: "12px",
+        bottomBorderRadius: "0 0 6px 6px",
+        roomsBottomBorderRadius: "0 0 12px 12px",
+        upperBorderRadius: "6px 6px 0 0",
+        roomsUpperBorderRadius: "12px 12px 0 0",
+        backgroundColorTop: "#292929",
+      },
+ 
+      sideColor: grayMaxLight,
+      color: grayMaxLight,
+      textColor: "#858585",
+    },
+ 
+    animationColor: "rgba(82, 153, 224, 0.16)",
+  },
+ 
+  advancedSelector: {
+    footerBorder: "1px solid #474747",
+ 
+    hoverBackgroundColor: "#474747",
+    selectedBackgroundColor: "#474747",
+    borderLeft: "1px solid #474747",
+ 
+    searcher: {
+      hoverBorderColor: "#858585",
+      focusBorderColor: grayMaxLight,
+      placeholderColor: "#474747",
+    },
+  },
+ 
+  selector: {
+    border: `1px solid #474747`,
+ 
+    breadCrumbs: {
+      prevItemColor: "#858585",
+      arrowRightColor: "#858585",
+    },
+ 
+    bodyDescriptionText: "#858585",
+ 
+    item: {
+      hoverBackground: "#3d3d3d",
+      selectedBackground: "#3d3d3d",
+    },
+ 
+    emptyScreen: {
+      descriptionColor: "#ADADAD",
+    },
+  },
+ 
+  floatingButton: {
+    backgroundColor: white,
+    color: black,
+    boxShadow: "0px 12px 24px rgba(0, 0, 0, 0.12)",
+    fill: black,
+ 
+    alert: {
+      fill: "#F58D31",
+      path: black,
+    },
+  },
+ 
+  mediaViewer: {
+    color: "#d1d1d1",
+    background: "rgba(17, 17, 17, 0.867)",
+    backgroundColor: "rgba(11, 11, 11, 0.7)",
+    fill: white,
+    titleColor: white,
+    iconColor: white,
+ 
+    controlBtn: {
+      backgroundColor: "rgba(200, 200, 200, 0.2)",
+    },
+ 
+    imageViewer: {
+      backgroundColor: "rgba(200, 200, 200, 0.2)",
+      inactiveBackgroundColor: "rgba(11,11,11,0.7)",
+      fill: white,
+    },
+ 
+    progressBar: {
+      background: "#d1d1d1",
+      backgroundColor: "rgba(200, 200, 200, 0.2)",
+    },
+ 
+    scrollButton: {
+      backgroundColor: "rgba(11, 11, 11, 0.7)",
+      background: "rgba(200, 200, 200, 0.2)",
+      border: `solid ${white}`,
+    },
+ 
+    videoViewer: {
+      fill: white,
+      stroke: white,
+      color: "#d1d1d1",
+      colorError: white,
+      backgroundColorError: darkBlack,
+      backgroundColor: "rgba(11, 11, 11, 0.7)",
+      background: "rgba(200, 200, 200, 0.2)",
+    },
+  },
+ 
+  connectCloud: {
+    connectBtnContent: silver,
+    connectBtnTextBg: "none",
+    connectBtnIconBg: "#none",
+    connectBtnTextBorder: silver,
+    connectBtnIconBorder: "#474747",
+  },
+ 
+  createEditRoomDialog: {
+    commonParam: {
+      descriptionColor: "#a3a9ae",
+      textColor: "#858585",
+    },
+ 
+    roomType: {
+      listItem: {
+        background: "none",
+        borderColor: "#474747",
+        descriptionText: "#A3A9AE",
+      },
+      dropdownButton: {
+        background: "none",
+        borderColor: "#474747",
+        isOpenBorderColor: "#F97A0B",
+        descriptionText: "#A3A9AE",
+      },
+      dropdownItem: {
+        background: "#333333",
+        hoverBackground: "#474747",
+        descriptionText: "#A3A9AE",
+      },
+      displayItem: {
+        background: "#474747",
+        borderColor: "#474747",
+        descriptionText: "#a3a9ae",
+      },
+    },
+ 
+    roomTypeDropdown: {
+      desktop: {
+        background: "#333333",
+        borderColor: "#474747",
+      },
+      mobile: {
+        background: "#333333",
+      },
+    },
+ 
+    permanentSettings: {
+      background: "#474747",
+      isPrivateIcon: "#35ad17",
+      descriptionColor: "#a3a9ae",
+    },
+ 
+    tagInput: {
+      tagBackground: "#242424",
+      tagHoverBackground: "#3D3D3D",
+    },
+ 
+    dropdown: {
+      background: "#333333",
+      borderColor: "#474747",
+      item: {
+        hoverBackground: "#474747",
+      },
+    },
+ 
+    isPrivate: {
+      limitations: {
+        background: "#474747",
+        iconColor: "#ed7309",
+        titleColor: "#ed7309",
+        descriptionColor: "#a3a9ae",
+        linkColor: "#e8e8e9",
+      },
+    },
+ 
+    thirdpartyStorage: {
+      combobox: {
+        background: "#292929",
+        dropdownBorderColor: "#474747",
+        hoverDropdownBorderColor: "#858585",
+        isOpenDropdownBorderColor: "#e8e8e9",
+        arrowFill: "#474747",
+      },
+      folderInput: {
+        background: "#292929",
+        borderColor: "#474747",
+        hoverBorderColor: "#858585",
+        focusBorderColor: "#e8e8e9",
+        rootLabelColor: "#a3a9ae",
+        iconFill: "#657177",
+      },
+    },
+ 
+    iconCropper: {
+      gridColor: "#333333",
+      deleteButton: {
+        background: "#292929",
+        hoverBackground: "#333333",
+        borderColor: "#292929",
+        hoverBorderColor: "#fafafa",
+        color: "#858585",
+        iconColor: "#e8e8e9",
+      },
+    },
+ 
+    previewTile: {
+      background: "#292929",
+      borderColor: "#474747",
+      iconBorderColor: "#eceef1",
+    },
+ 
+    dropzone: {
+      borderColor: "#474747",
+      linkMainColor: "#F97A0B",
+      linkSecondaryColor: "#ffffff",
+      exstsColor: "#a3a9ae",
+    },
+  },
+ 
+  filesThirdPartyDialog: {
+    border: "1px solid #474747",
+  },
+ 
+  connectedClouds: {
+    color: "#eeeeee",
+    borderBottom: `1px solid #474747`,
+    borderRight: `1px solid #474747`,
+  },
+ 
+  filesModalDialog: {
+    border: `1px solid #474747`,
+  },
+ 
+  filesDragTooltip: {
+    background: black,
+    boxShadow: "0px 5px 20px rgba(0, 0, 0, 0.13)",
+    color: grayMaxLight,
+  },
+ 
+  emptyContent: {
+    header: {
+      color: "#FFFFFF",
+    },
+ 
+    description: {
+      color: "#ADADAD",
+    },
+    button: {
+      colorLink: "#ADADAD",
+      colorText: "#ADADAD",
+    },
+  },
+ 
+  filesEmptyContainer: {
+    linkColor: "#adadad",
+    privateRoom: {
+      linkColor: "#E06A1B",
+    },
+  },
+ 
+  filesPanels: {
+    color: grayMaxLight,
+ 
+    aside: {
+      backgroundColor: black,
+    },
+ 
+    addGroups: {
+      iconColor: gray,
+      arrowColor: darkBlack,
+    },
+ 
+    addUsers: {
+      iconColor: gray,
+      arrowColor: darkBlack,
+    },
+ 
+    changeOwner: {
+      iconColor: gray,
+      arrowColor: darkBlack,
+    },
+ 
+    embedding: {
+      textAreaColor: "#858585",
+      iconColor: grayMaxLight,
+      color: gray,
+    },
+ 
+    versionHistory: {
+      borderTop: "1px solid #474747",
+    },
+ 
+    content: {
+      backgroundColor: black,
+      fill: grayMaxLight,
+      disabledFill: "#5c5c5c",
+    },
+ 
+    body: {
+      backgroundColor: black,
+      fill: grayMaxLight,
+    },
+ 
+    footer: {
+      backgroundColor: black,
+      borderTop: "1px solid #474747",
+    },
+ 
+    linkRow: {
+      backgroundColor: black,
+      fill: grayMaxLight,
+      disabledFill: "#5c5c5c",
+    },
+ 
+    selectFolder: {
+      color: gray,
+    },
+ 
+    selectFile: {
+      color: gray,
+      background: black,
+      borderBottom: "1px solid #474747",
+      borderRight: "1px solid #474747",
+ 
+      buttonsBackground: black,
+    },
+ 
+    filesList: {
+      color: grayMaxLight,
+      backgroundColor: black,
+      borderBottom: "1px solid #474747",
+    },
+ 
+    modalRow: {
+      backgroundColor: black,
+      fill: gray,
+      disabledFill: "#5c5c5c",
+    },
+ 
+    sharing: {
+      color: grayMaxLight,
+ 
+      fill: grayMaxLight,
+      loadingFill: grayMaxLight,
+ 
+      borderBottom: "1px solid #474747",
+      borderTop: "1px solid #474747",
+      externalLinkBackground: "#292929",
+      externalLinkSvg: "#eeeeee",
+ 
+      internalLinkBorder: "1px dashed #eeeeee",
+ 
+      itemBorder: "1px dashed #333333",
+ 
+      itemOwnerColor: "#858585",
+ 
+      backgroundButtons: "#333333",
+ 
+      dropdownColor: grayMaxLight,
+ 
+      loader: {
+        foregroundColor: black,
+        backgroundColor: black,
+      },
+    },
+ 
+    upload: {
+      color: black,
+      tooltipColor: "#F5E9BA",
+ 
+      shareButton: {
+        color: gray,
+        sharedColor: grayMain,
+      },
+ 
+      loadingButton: {
+        color: "#eeeeee",
+        background: black,
+      },
+    },
+  },
+ 
+  menuItem: {
+    iconWrapper: {
+      width: "16px",
+      height: "16px",
+      header: {
+        width: "auto",
+        height: "auto",
+      },
+    },
+    separator: {
+      borderBottom: `1px solid #474747 !important`,
+      margin: "6px 16px 6px 16px !important",
+      height: "1px !important",
+      width: "calc(100% - 32px) !important",
+    },
+    text: {
+      header: {
+        fontSize: "15px",
+        lineHeight: "20px",
+      },
+      mobile: {
+        fontSize: "13px",
+        lineHeight: "36px",
+      },
+      fontSize: "12px",
+      lineHeight: "30px",
+      fontWeight: "600",
+      margin: "0 0 0 8px",
+      color: "#eeeeee",
+    },
+    hover: black,
+    background: "none",
+    svgFill: "#eeeeee",
+    header: {
+      height: "49px",
+      borderBottom: `1px solid #474747`,
+      marginBottom: "6px",
+    },
+    height: "30px",
+    borderBottom: "none",
+    marginBottom: "0",
+    padding: "0 12px",
+    mobile: {
+      height: "36px",
+      padding: "0 16px 6px",
+    },
+  },
+  newContextMenu: {
+    background: black,
+    borderRadius: "6px",
+    mobileBorderRadius: "6px 6px 0 0",
+    boxShadow:
+      "0px 12px 24px rgba(0, 0, 0, 0.12), 0px 8px 16px rgba(0, 0, 0, 0.08), 0px 3.2px 2.6px rgba(0, 0, 0, 0.08)",
+    padding: "6px 0px",
+    border: "1px solid #474747",
+    devices: {
+      maxHeight: "calc(100vh - 64px)",
+      tabletWidth: "375px",
+      mobileWidth: "100vw",
+      left: 0,
+      right: 0,
+      bottom: 0,
+      margin: "0 auto",
+    },
+  },
+  filesSettings: {
+    color: cyanBlueDarkShade,
+ 
+    linkColor: grayMaxLight,
+  },
+ 
+  filesBadges: {
+    iconColor: "#858585",
+    hoverIconColor: grayMaxLight,
+ 
+    color: white,
+    backgroundColor: black,
+ 
+    badgeColor: black,
+    badgeBackgroundColor: "#858585",
+  },
+ 
+  filesEditingWrapper: {
+    color: grayMaxLight,
+    border: "1px solid #474747",
+    borderBottom: "1px solid #474747",
+ 
+    tile: {
+      background: globalColors.black,
+      itemBackground: "#242424",
+      itemBorder: gray,
+      itemActiveBorder: "#eeeeee",
+    },
+ 
+    row: {
+      itemBackground: globalColors.black,
+    },
+ 
+    fill: "#858585",
+    hoverFill: "#eeeeee",
+  },
+ 
+  filesIcons: {
+    fill: "#858585",
+    hoverFill: "#eeeeee",
+  },
+ 
+  filesQuickButtons: {
+    color: "#858585",
+    sharedColor: "#eeeeee",
+    hoverColor: "#eeeeee",
+  },
+ 
+  filesSharedButton: {
+    color: "#858585",
+    sharedColor: "#eeeeee",
+  },
+ 
+  filesPrivateRoom: {
+    borderBottom: "1px solid #d3d3d3",
+    linkColor: "#E06A1B",
+    textColor: "#83888D",
+  },
+ 
+  filesVersionHistory: {
+    row: {
+      color: grayMaxLight,
+      fill: grayMaxLight,
+    },
+ 
+    badge: {
+      color: black,
+      stroke: "#ADADAD",
+      fill: "#ADADAD",
+      defaultFill: black,
+      badgeFill: "#F58D31",
+    },
+ 
+    versionList: {
+      fill: grayMaxLight,
+      stroke: grayMaxLight,
+      color: grayMaxLight,
+    },
+  },
+ 
+  login: {
+    linkColor: "#E06A1B",
+    textColor: "#858585",
+    navBackground: "#282828",
+    headerColor: white,
+    helpButton: "#D8D8D8",
+    orLineColor: "#474747",
+    orTextColor: "#858585",
+    titleColor: white,
+ 
+    register: {
+      backgroundColor: "#292929",
+      textColor: "#E06A1B",
+    },
+ 
+    container: {
+      backgroundColor: "#474747",
+    },
+ 
+    captcha: {
+      border: `1px solid ${darkErrorStatus}`,
+      color: darkErrorStatus,
+    },
+  },
+ 
+  facebookButton: {
+    background: black,
+    border: "1px solid #474747",
+    color: grayMaxLight,
+  },
+ 
+  peopleSelector: {
+    textColor: grayMaxLight,
+  },
+ 
+  peopleWithContent: {
+    color: "#858585",
+    pendingColor: "#474747",
+  },
+ 
+  peopleDialogs: {
+    modal: {
+      border: "1px solid #474747",
+    },
+ 
+    deleteUser: {
+      textColor: red,
+    },
+ 
+    deleteSelf: {
+      linkColor: "#e06a1b",
+    },
+ 
+    changePassword: {
+      linkColor: "#e06a1b",
+    },
+  },
+ 
+  downloadDialog: {
+    background: "#282828",
+  },
+ 
+  client: {
+    about: {
+      linkColor: "#E06A1B",
+      border: "1px solid #474747",
+      logoColor: white,
+    },
+ 
+    comingSoon: {
+      linkColor: "#858585",
+      linkIconColor: black,
+      backgroundColor: black,
+      foregroundColor: black,
+    },
+ 
+    confirm: {
+      activateUser: {
+        textColor: "#E06A1B",
+        textColorError: red,
+      },
+      change: {
+        titleColor: "#E06A1B",
+      },
+    },
+ 
+    home: {
+      logoColor: "rgba(255, 255, 255, 0.92)",
+      textColorError: red,
+    },
+ 
+    payments: {
+      linkColor: "#E06A1B",
+      delayColor: "#F21C0E",
+    },
+ 
+    paymentsEnterprise: {
+      background: black,
+ 
+      buttonBackground: "#292929",
+ 
+      linkColor: "#E06A1B",
+      headerColor: orangePressed,
+    },
+ 
+    settings: {
+      iconFill: white,
+      trashIcon: "#858585",
+      article: {
+        titleColor: "#c4c4c4",
+        fillIcon: "#c4c4c4",
+        expanderColor: "#c4c4c4",
+      },
+ 
+      separatorBorder: "1px solid #474747",
+ 
+      security: {
+        arrowFill: white,
+        descriptionColor: "#858585",
+ 
+        admins: {
+          backgroundColor: black,
+          backgroundColorWrapper: blueMain,
+          roleColor: grayMid,
+ 
+          color: "#E06A1B",
+          departmentColor: "#858585",
+ 
+          tooltipColor: "#F5E9BA",
+ 
+          nameColor: grayMaxLight,
+          pendingNameColor: "#858585",
+ 
+          textColor: black,
+          iconColor: blueMain,
+        },
+ 
+        owner: {
+          backgroundColor: black,
+          linkColor: "#E06A1B",
+          departmentColor: "#858585",
+          tooltipColor: "#F5E9BA",
+        },
+        auditTrail: {
+          downloadReportDescriptionColor: "#858585",
+        },
+      },
+ 
+      common: {
+        linkColor: "#858585",
+        linkColorHelp: "#E06A1B",
+        tooltipLinkColor: "#e06a1b",
+        arrowColor: white,
+        descriptionColor: "#858585",
+        brandingDescriptionColor: "#858585",
+ 
+        whiteLabel: {
+          borderImg: "1px solid #474747",
+ 
+          backgroundColorWhite: white,
+          backgroundColorLight: "#F8F9F9",
+          backgroundColorDark: "#282828",
+          greenBackgroundColor: "#40865C",
+          blueBackgroundColor: "#446995",
+          orangeBackgroundColor: "#AA5252",
+ 
+          dataFontColor: white,
+          dataFontColorBlack: white,
+        },
+      },
+ 
+      integration: {
+        separatorBorder: "1px solid #474747",
+        linkColor: "#E06A1B",
+ 
+        sso: {
+          toggleContentBackground: "#474747",
+          iconButton: white,
+          iconButtonDisabled: "#333",
+          border: "1px solid #474747",
+        },
+ 
+        smtp: {
+          requirementColor: "#E06451",
+        },
+      },
+ 
+      backup: {
+        rectangleBackgroundColor: "#3D3D3D",
+        separatorBorder: "1px solid #474747",
+        warningColor: "#E06451",
+        textColor: "#ADADAD",
+        backupCheckedListItemBackground: "#3D3D3D",
+      },
+ 
+      payment: {
+        priceColor: "#ADADAD",
+        storageSizeTitle: "#A3A9AE",
+ 
+        backgroundColor: "#282828",
+        linkColor: "#316DAA",
+        tariffText: "#858585",
+        border: "1px solid #474747",
+        backgroundBenefitsColor: "#3333",
+        rectangleColor: "#3D3D3D",
+ 
+        priceContainer: {
+          backgroundText: "#3D3D3D",
+          background: "#282828",
+          border: "1px solid #282828",
+          featureTextColor: "#858585",
+          disableColor: "#858585",
+          trackNumberColor: "#858585",
+          disablePriceColor: "#5C5C5C",
+        },
+ 
+        benefitsContainer: {
+          iconsColor: "#858585",
+        },
+        contactContainer: {
+          textColor: "#ADADAD",
+          linkColor: "#858585",
+        },
+        warningColor: "#E06451",
+        color: "#E17415",
+      },
+    },
+ 
+    wizard: {
+      linkColor: "#E06A1B",
+      generatePasswordColor: "#a9a9a9",
+    },
+  },
+ 
+  campaignsBanner: {
+    border: "1px solid #CCCCCC",
+    color: darkBlack,
+ 
+    btnColor: black,
+    btnBackgroundActive: blueMain,
+  },
+ 
+  tileLoader: {
+    border: `none`,
+ 
+    background: "none",
+  },
+ 
+  errorContainer: {
+    background: black,
+    bodyText: "#858585",
+  },
+ 
+  editor: {
+    color: "#eeeeee",
+    background: black,
+  },
+ 
+  submenu: {
+    lineColor: "#474747",
+    backgroundColor: "#333",
+    activeTextColor: "#FFFFFF",
+    textColor: "#ADADAD",
+    bottomLineColor: "#E06A1B",
+  },
+ 
+  hotkeys: {
+    key: {
+      color: "#C4C4C4",
+    },
+  },
+ 
+  tag: {
+    color: white,
+    background: "#474747",
+    hoverBackground: "#282828",
+    disabledBackground: "#858585",
+    defaultTagColor: white,
+    newTagBackground: "#333333",
+  },
+ 
+  profile: {
+    main: {
+      background: "#3D3D3D",
+      textColor: white,
+ 
+      descriptionTextColor: "#858585",
+      pendingEmailTextColor: "#858585",
+ 
+      mobileRowBackground: "#3D3D3D",
+    },
+    themePreview: {
+      descriptionColor: "#ADADAD",
+      border: "1px solid #474747",
+    },
+    notifications: {
+      textDescriptionColor: "#858585",
+    },
+  },
+ 
+  activeSessions: {
+    color: "#eeeeee",
+    borderColor: "#474747",
+    tickIconColor: "#3BA420",
+    removeIconColor: "#A3A9AE",
+    sortHeaderColor: "#474747",
+  },
+ 
+  formWrapper: {
+    background: black,
+    boxShadow: "0px 5px 20px rgba(0, 0, 0, 0.16);",
+  },
+ 
+  preparationPortalProgress: {
+    backgroundColor: "#282828",
+    colorPercentSmall: "#FFFFFF",
+    colorPercentBig: "#333333",
+    errorTextColor: "#E06451",
+    descriptionTextColor: "#858585",
+  },
+ 
+  codeInput: {
+    background: "#282828",
+    border: "1px solid #474747",
+    color: white,
+    lineColor: "#858585",
+    disabledBackground: "#474747",
+    disabledBorder: "1px solid #474747",
+    disabledColor: "#858585",
+  },
+ 
+  accessRightSelect: {
+    descriptionColor: "#858585",
+  },
+ 
+  itemIcon: {
+    borderColor: "#474747",
+  },
+ 
+  invitePage: {
+    borderColor: "#474747",
+  },
+ 
+  portalUnavailable: {
+    textDescriptionColor: "#858585",
+  },
+ 
+  deepLink: {
+    navBackground: "#282828",
+    fileTileBackground: "#3D3D3D",
+  },
+ 
+  emailChips: {
+    borderColor: "#858585",
+    dashedBorder: "1px dashed #fff",
+  },
+ 
+  dialogs: {
+    disableText: "#858585",
+  },
+ 
+  editLink: {
+    text: {
+      color: "#A3A9AE",
+      errorColor: "#F21C0E",
+    },
+  },
+ 
+  oformGallery: {
+    errorView: {
+      subHeaderTextColor: "#ADADAD",
+    },
+    submitToGalleryTile: {
+      bodyText: "#ADADAD",
+      closeIconFill: "#a9a9a9",
+    },
+  },
+ 
+  infoBlock: {
+    background: "#282828",
+    headerColor: "#FFF",
+    descriptionColor: "#ADADAD",
+  },
+ 
+  roomIcon: {
+    backgroundArchive: "#FFFFFF",
+    opacityBackground: "0.1",
+  },
+ 
+  plugins: {
+    borderColor: "#474747",
+    pluginName: "#A3A9AE",
+    descriptionColor: "#ADADAD",
+  },
+};
+ 
+export default Dark;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/themes/index.html b/packages/shared/coverage/lcov-report/themes/index.html new file mode 100644 index 0000000000..4207ea35f0 --- /dev/null +++ b/packages/shared/coverage/lcov-report/themes/index.html @@ -0,0 +1,161 @@ + + + + + + Code coverage report for themes + + + + + + + + + +
+
+

All files themes

+
+ +
+ 60% + Statements + 9/15 +
+ + +
+ 50% + Branches + 5/10 +
+ + +
+ 100% + Functions + 2/2 +
+ + +
+ 60% + Lines + 9/15 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
base.ts +
+
100%4/4100%0/0100%1/1100%4/4
commonTheme.ts +
+
33.33%3/950%5/10100%1/133.33%3/9
dark.ts +
+
100%2/2100%0/0100%0/0100%2/2
index.ts +
+
0%0/00%0/00%0/00%0/0
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/themes/index.ts.html b/packages/shared/coverage/lcov-report/themes/index.ts.html new file mode 100644 index 0000000000..b1a7f6c79c --- /dev/null +++ b/packages/shared/coverage/lcov-report/themes/index.ts.html @@ -0,0 +1,97 @@ + + + + + + Code coverage report for themes/index.ts + + + + + + + + + +
+
+

All files / themes index.ts

+
+ +
+ 0% + Statements + 0/0 +
+ + +
+ 0% + Branches + 0/0 +
+ + +
+ 0% + Functions + 0/0 +
+ + +
+ 0% + Lines + 0/0 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5  +  +  +  + 
import Base, { ThemeType } from "./base";
+import Dark from "./dark";
+ 
+export { Base, Dark, ThemeType };
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/utils/array.ts.html b/packages/shared/coverage/lcov-report/utils/array.ts.html new file mode 100644 index 0000000000..901ce40c1d --- /dev/null +++ b/packages/shared/coverage/lcov-report/utils/array.ts.html @@ -0,0 +1,106 @@ + + + + + + Code coverage report for utils/array.ts + + + + + + + + + +
+
+

All files / utils array.ts

+
+ +
+ 50% + Statements + 1/2 +
+ + +
+ 100% + Branches + 0/0 +
+ + +
+ 0% + Functions + 0/1 +
+ + +
+ 50% + Lines + 1/2 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8  +  +  +  +7x +  +  + 
import differenceWith from "lodash/differenceWith";
+import isEqual from "lodash/isEqual";
+import isEmpty from "lodash/isEmpty";
+ 
+export const isArrayEqual = <T1, T2>(arr1: T1[], arr2: T2[]) => {
+  return isEmpty(differenceWith(arr1, arr2, isEqual));
+};
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/utils/banner.ts.html b/packages/shared/coverage/lcov-report/utils/banner.ts.html new file mode 100644 index 0000000000..11eb04aedc --- /dev/null +++ b/packages/shared/coverage/lcov-report/utils/banner.ts.html @@ -0,0 +1,367 @@ + + + + + + Code coverage report for utils/banner.ts + + + + + + + + + +
+
+

All files / utils banner.ts

+
+ +
+ 2.5% + Statements + 1/40 +
+ + +
+ 0% + Branches + 0/48 +
+ + +
+ 0% + Functions + 0/5 +
+ + +
+ 2.77% + Lines + 1/36 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +7x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  + 
import difference from "lodash/difference";
+ 
+import { LANGUAGE } from "../constants";
+ 
+import { getCookie } from "./cookie";
+ 
+export function getLanguage(lng: string) {
+  try {
+    if (!lng) return lng;
+ 
+    let language = lng === "en-US" || lng === "en-GB" ? "en" : lng;
+ 
+    const splitted = lng.split("-");
+ 
+    if (splitted.length === 2 && splitted[0] === splitted[1].toLowerCase()) {
+      language = splitted[0];
+    }
+ 
+    return language;
+  } catch (error) {
+    return lng;
+  }
+}
+ 
+export const getBannerAttribute = () => {
+  const bar = document.getElementById("bar-banner");
+  const mainBar = document.getElementById("main-bar");
+  const rects = mainBar ? mainBar.getBoundingClientRect() : null;
+ 
+  const headerHeight = bar
+    ? 108 + 50
+    : mainBar && rects?.height
+      ? rects.height + 40
+      : 48 + 50;
+ 
+  const sectionHeaderTop = bar
+    ? "108px"
+    : rects
+      ? `${rects.height + 40}px`
+      : "48px";
+ 
+  const sectionHeaderMarginTop = bar
+    ? "106px"
+    : rects
+      ? `${rects.height + 36}px`
+      : "46px";
+ 
+  const loadLanguagePath = async () => {
+    if (!window?.firebaseHelper) return;
+ 
+    const lng: string[] | string = getCookie(LANGUAGE) || "en";
+ 
+    const language = getLanguage(typeof lng === "object" ? lng[0] : lng);
+ 
+    const localBar = (localStorage.getItem("bar") || "")
+      .split(",")
+      .filter((b) => b.length > 0);
+ 
+    const localItem = localStorage.getItem("barClose");
+ 
+    if (!localItem) return;
+ 
+    const closed = JSON.parse(localItem);
+ 
+    const banner = difference(localBar, closed);
+ 
+    let index = Number(localStorage.getItem("barIndex") || 0);
+    if (index >= banner.length) {
+      index -= 1;
+    }
+    const currentBar = banner[index];
+ 
+    let htmlUrl =
+      currentBar && window.firebaseHelper.config.authDomain
+        ? `https://${window.firebaseHelper.config.authDomain}/${language}/${currentBar}/index.html`
+        : null;
+ 
+    if (htmlUrl) {
+      await fetch(htmlUrl).then((data) => {
+        if (data.ok) return;
+        htmlUrl = null;
+      });
+    }
+ 
+    return [htmlUrl, currentBar];
+  };
+ 
+  return {
+    headerHeight,
+    sectionHeaderTop,
+    sectionHeaderMarginTop,
+    loadLanguagePath,
+  };
+};
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/utils/classNames.ts.html b/packages/shared/coverage/lcov-report/utils/classNames.ts.html new file mode 100644 index 0000000000..d2377048cd --- /dev/null +++ b/packages/shared/coverage/lcov-report/utils/classNames.ts.html @@ -0,0 +1,175 @@ + + + + + + Code coverage report for utils/classNames.ts + + + + + + + + + +
+
+

All files / utils classNames.ts

+
+ +
+ 66.66% + Statements + 10/15 +
+ + +
+ 37.5% + Branches + 6/16 +
+ + +
+ 33.33% + Functions + 1/3 +
+ + +
+ 64.28% + Lines + 9/14 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31  +4x +4x +  +4x +8x +  +8x +4x +4x +  +4x +  +  +  +  +  +  +  +  +  +  +  +  +  +4x +  +  +  +  + 
export function classNames(...args: string[] | number[] | {}[]) {
+  Eif (args) {
+    let classes: (string | number)[] = [];
+ 
+    for (let i = 0; i < args.length; i += 1) {
+      const className = args[i];
+ 
+      if (className) {
+        Eif (typeof className === "string" || typeof className === "number") {
+          classes.push(className);
+        }
+        Iif (typeof className === "object") {
+          const objClasses = Array.isArray(className)
+            ? className
+            : Object.entries(className).map(([key, value]) =>
+                value ? key : null,
+              );
+ 
+          classes = objClasses.length
+            ? classes.concat(objClasses.filter((c) => !!c))
+            : classes;
+        }
+      }
+    }
+ 
+    return classes.join(" ");
+  }
+ 
+  return null;
+}
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/utils/common-icons-style.ts.html b/packages/shared/coverage/lcov-report/utils/common-icons-style.ts.html new file mode 100644 index 0000000000..84dbe68d13 --- /dev/null +++ b/packages/shared/coverage/lcov-report/utils/common-icons-style.ts.html @@ -0,0 +1,319 @@ + + + + + + Code coverage report for utils/common-icons-style.ts + + + + + + + + + +
+
+

All files / utils common-icons-style.ts

+
+ +
+ 22.22% + Statements + 2/9 +
+ + +
+ 0% + Branches + 0/6 +
+ + +
+ 0% + Functions + 0/2 +
+ + +
+ 22.22% + Lines + 2/9 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +7x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +7x +  +  +  +  +  +  + 
import { css } from "styled-components";
+ 
+export const enum IconSizeType {
+  extraSmall = "extraSmall",
+  small = "small",
+  medium = "medium",
+  big = "big",
+  scale = "scale",
+}
+ 
+const enum IconSizes {
+  extraSmall = 8,
+  small = 12,
+  medium = 16,
+  big = 24,
+  scale = "scale",
+}
+ 
+const getSizeStyle = (size: IconSizeType) => {
+  switch (size) {
+    case "scale":
+      return `
+          &:not(:root) {
+            width: 100%;
+            height: 100%;
+          }
+        `;
+    case IconSizeType.extraSmall:
+      return `
+          
+      width: ${IconSizes.extraSmall}px;
+      
+      min-width: ${IconSizes.extraSmall}px;
+      
+      height: ${IconSizes.extraSmall}px;
+      
+      min-height: ${IconSizes.extraSmall}px;
+    `;
+    case IconSizeType.small:
+      return `
+          
+      width: ${IconSizes.small}px;
+      
+      min-width: ${IconSizes.small}px;
+      
+      height: ${IconSizes.small}px;
+      
+      min-height: ${IconSizes.small}px;
+    `;
+    case IconSizeType.medium:
+      return `
+          
+      width: ${IconSizes.medium}px;
+      
+      min-width: ${IconSizes.medium}px;
+      
+      height: ${IconSizes.medium}px;
+      
+      min-height: ${IconSizes.medium}px;
+    `;
+    case IconSizeType.big:
+    default:
+      return `
+          width: ${IconSizes.big}px;
+          min-width: ${IconSizes.big}px;
+          height: ${IconSizes.big}px;
+          min-height: ${IconSizes.big}px;
+        `;
+  }
+};
+ 
+const commonIconsStyles = css<{ size: IconSizeType }>`
+  overflow: hidden;
+  vertical-align: middle;
+  ${(props) => getSizeStyle(props.size)};
+`;
+ 
+export default commonIconsStyles;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/utils/context.ts.html b/packages/shared/coverage/lcov-report/utils/context.ts.html new file mode 100644 index 0000000000..bd3b9f0534 --- /dev/null +++ b/packages/shared/coverage/lcov-report/utils/context.ts.html @@ -0,0 +1,106 @@ + + + + + + Code coverage report for utils/context.ts + + + + + + + + + +
+
+

All files / utils context.ts

+
+ +
+ 100% + Statements + 3/3 +
+ + +
+ 100% + Branches + 0/0 +
+ + +
+ 100% + Functions + 0/0 +
+ + +
+ 100% + Lines + 3/3 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8  +  +7x +  +7x +  +7x + 
import React from "react";
+ 
+const defaultValue = {};
+ 
+export const Context = React.createContext(defaultValue);
+ 
+export const { Provider, Consumer } = Context;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/utils/cookie.ts.html b/packages/shared/coverage/lcov-report/utils/cookie.ts.html new file mode 100644 index 0000000000..6d19d54cf2 --- /dev/null +++ b/packages/shared/coverage/lcov-report/utils/cookie.ts.html @@ -0,0 +1,121 @@ + + + + + + Code coverage report for utils/cookie.ts + + + + + + + + + +
+
+

All files / utils cookie.ts

+
+ +
+ 0% + Statements + 0/2 +
+ + +
+ 0% + Branches + 0/2 +
+ + +
+ 0% + Functions + 0/1 +
+ + +
+ 0% + Lines + 0/2 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13  +  +  +  +  +  +  +  +  +  +  +  + 
/* eslint-disable no-useless-escape */
+/* eslint-disable prefer-template */
+export function getCookie(name: string) {
+  const matches = document.cookie.match(
+    new RegExp(
+      "(?:^|; )" +
+        name.replace(/([\.$?*|{}\(\)\[\]\\\/\+^])/g, "\\$1") +
+        "=([^;]*)",
+    ),
+  );
+  return matches ? decodeURIComponent(matches[1]) : undefined;
+}
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/utils/device.ts.html b/packages/shared/coverage/lcov-report/utils/device.ts.html new file mode 100644 index 0000000000..c7a9b50536 --- /dev/null +++ b/packages/shared/coverage/lcov-report/utils/device.ts.html @@ -0,0 +1,220 @@ + + + + + + Code coverage report for utils/device.ts + + + + + + + + + +
+
+

All files / utils device.ts

+
+ +
+ 64.7% + Statements + 11/17 +
+ + +
+ 36.36% + Branches + 4/11 +
+ + +
+ 25% + Functions + 1/4 +
+ + +
+ 64.7% + Lines + 11/17 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46  +  +  +  +  +  +7x +  +  +  +  +  +7x +  +7x +  +7x +  +7x +  +7x +  +  +  +7x +2x +  +  +7x +  +  +  +  +7x +  +  +  +  +  +  +7x +  +  +  +  + 
import { INFO_PANEL_WIDTH } from "../constants";
+ 
+export function checkIsSSR() {
+  return typeof window === "undefined";
+}
+ 
+export const size = {
+  mobile: 600,
+  // table: is between
+  desktop: 1024,
+};
+ 
+export const mobile = `(max-width: ${size.mobile}px)`;
+ 
+export const mobileMore = `(min-width: ${size.mobile}px)`;
+ 
+export const tablet = `(max-width: ${size.desktop - 0.1}px)`;
+ 
+export const desktop = `(min-width: ${size.desktop}px)`;
+ 
+export const transitionalScreenSize = `(max-width: ${
+  size.desktop + INFO_PANEL_WIDTH
+}px)`;
+ 
+export const isMobile = () => {
+  return window.innerWidth <= size.mobile;
+};
+ 
+export const isTablet = (width = undefined) => {
+  const checkWidth = width || window.innerWidth;
+  return checkWidth > size.mobile && checkWidth < size.desktop;
+};
+ 
+export const isDesktop = () => {
+  if (!checkIsSSR()) {
+    return window.innerWidth >= size.desktop;
+  }
+  return false;
+};
+ 
+export const isTouchDevice = !!(
+  typeof window !== "undefined" &&
+  typeof navigator !== "undefined" &&
+  ("ontouchstart" in window || navigator.maxTouchPoints > 0)
+);
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/utils/domHelpers.ts.html b/packages/shared/coverage/lcov-report/utils/domHelpers.ts.html new file mode 100644 index 0000000000..ec414d270c --- /dev/null +++ b/packages/shared/coverage/lcov-report/utils/domHelpers.ts.html @@ -0,0 +1,454 @@ + + + + + + Code coverage report for utils/domHelpers.ts + + + + + + + + + +
+
+

All files / utils domHelpers.ts

+
+ +
+ 1.92% + Statements + 1/52 +
+ + +
+ 0% + Branches + 0/32 +
+ + +
+ 0% + Functions + 0/9 +
+ + +
+ 1.92% + Lines + 1/52 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101 +102 +103 +104 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124  +7x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  + 
export default class DomHelpers {
+  static calculatedScrollbarWidth: number | null = null;
+ 
+  static zIndex: number;
+ 
+  static getViewport() {
+    const win = window;
+    const d = document;
+    const e = d.documentElement;
+    const g = d.getElementsByTagName("body")[0];
+    const w = win.innerWidth || e.clientWidth || g.clientWidth;
+    const h = win.innerHeight || e.clientHeight || g.clientHeight;
+ 
+    return { width: w, height: h };
+  }
+ 
+  static getOffset(el: HTMLElement) {
+    if (el) {
+      const rect = el.getBoundingClientRect();
+ 
+      return {
+        top:
+          rect.top +
+          (window.pageYOffset ||
+            document.documentElement.scrollTop ||
+            document.body.scrollTop ||
+            0),
+        left:
+          rect.left +
+          (window.pageXOffset ||
+            document.documentElement.scrollLeft ||
+            document.body.scrollLeft ||
+            0),
+      };
+    }
+ 
+    return {
+      top: "auto",
+      left: "auto",
+    };
+  }
+ 
+  static getOuterWidth(el: HTMLElement, margin: string) {
+    if (el) {
+      let width = el.offsetWidth;
+ 
+      if (margin) {
+        const style = getComputedStyle(el);
+        width += parseFloat(style.marginLeft) + parseFloat(style.marginRight);
+      }
+ 
+      return width;
+    }
+    return 0;
+  }
+ 
+  static getHiddenElementOuterWidth(element: HTMLElement) {
+    if (element) {
+      element.style.visibility = "hidden";
+      element.style.display = "block";
+      const elementWidth = element.offsetWidth;
+      element.style.display = "none";
+      element.style.visibility = "visible";
+ 
+      return elementWidth;
+    }
+    return 0;
+  }
+ 
+  static getHiddenElementOuterHeight(element: HTMLElement) {
+    if (element) {
+      element.style.visibility = "hidden";
+      element.style.display = "block";
+      const elementHeight = element.offsetHeight;
+      element.style.display = "none";
+      element.style.visibility = "visible";
+ 
+      return elementHeight;
+    }
+    return 0;
+  }
+ 
+  static calculateScrollbarWidth(el: HTMLElement) {
+    if (el) {
+      const style = getComputedStyle(el);
+      return (
+        el.offsetWidth -
+        el.clientWidth -
+        parseFloat(style.borderLeftWidth) -
+        parseFloat(style.borderRightWidth)
+      );
+    }
+    if (this.calculatedScrollbarWidth != null)
+      return this.calculatedScrollbarWidth;
+ 
+    const scrollDiv = document.createElement("div");
+    scrollDiv.className = "p-scrollbar-measure";
+    document.body.appendChild(scrollDiv);
+ 
+    const scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth;
+    document.body.removeChild(scrollDiv);
+ 
+    this.calculatedScrollbarWidth = scrollbarWidth;
+ 
+    return scrollbarWidth;
+  }
+ 
+  static generateZIndex() {
+    this.zIndex = this.zIndex || 1000;
+ 
+    this.zIndex += 1;
+ 
+    return this.zIndex;
+  }
+ 
+  static revertZIndex() {
+    this.zIndex = this.zIndex > 1000 ? this.zIndex - 1 : 1000;
+  }
+ 
+  static getCurrentZIndex() {
+    return this.zIndex;
+  }
+}
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/utils/email/email.ts.html b/packages/shared/coverage/lcov-report/utils/email/email.ts.html new file mode 100644 index 0000000000..033d198100 --- /dev/null +++ b/packages/shared/coverage/lcov-report/utils/email/email.ts.html @@ -0,0 +1,1168 @@ + + + + + + Code coverage report for utils/email/email.ts + + + + + + + + + +
+
+

All files / utils/email email.ts

+
+ +
+ 91.26% + Statements + 94/103 +
+ + +
+ 89.38% + Branches + 101/113 +
+ + +
+ 100% + Functions + 11/11 +
+ + +
+ 92.07% + Lines + 93/101 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101 +102 +103 +104 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124 +125 +126 +127 +128 +129 +130 +131 +132 +133 +134 +135 +136 +137 +138 +139 +140 +141 +142 +143 +144 +145 +146 +147 +148 +149 +150 +151 +152 +153 +154 +155 +156 +157 +158 +159 +160 +161 +162 +163 +164 +165 +166 +167 +168 +169 +170 +171 +172 +173 +174 +175 +176 +177 +178 +179 +180 +181 +182 +183 +184 +185 +186 +187 +188 +189 +190 +191 +192 +193 +194 +195 +196 +197 +198 +199 +200 +201 +202 +203 +204 +205 +206 +207 +208 +209 +210 +211 +212 +213 +214 +215 +216 +217 +218 +219 +220 +221 +222 +223 +224 +225 +226 +227 +228 +229 +230 +231 +232 +233 +234 +235 +236 +237 +238 +239 +240 +241 +242 +243 +244 +245 +246 +247 +248 +249 +250 +251 +252 +253 +254 +255 +256 +257 +258 +259 +260 +261 +262 +263 +264 +265 +266 +267 +268 +269 +270 +271 +272 +273 +274 +275 +276 +277 +278 +279 +280 +281 +282 +283 +284 +285 +286 +287 +288 +289 +290 +291 +292 +293 +294 +295 +296 +297 +298 +299 +300 +301 +302 +303 +304 +305 +306 +307 +308 +309 +310 +311 +312 +313 +314 +315 +316 +317 +318 +319 +320 +321 +322 +323 +324 +325 +326 +327 +328 +329 +330 +331 +332 +333 +334 +335 +336 +337 +338 +339 +340 +341 +342 +343 +344 +345 +346 +347 +348 +349 +350 +351 +352 +353 +354 +355 +356 +357 +358 +359 +360 +361 +362  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +9x +  +  +  +26x +  +25x +1x +  +  +  +  +  +  +  +  +24x +3x +  +  +  +  +  +  +  +  +21x +  +21x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +43x +43x +43x +  +  +43x +21x +  +  +  +7x +3x +  +  +  +  +4x +3x +3x +  +  +1x +  +  +  +9x +25x +25x +25x +25x +25x +  +25x +632x +  +  +29x +28x +28x +28x +28x +  +28x +  +29x +  +21x +  +  +  +21x +  +21x +  +  +  +  +25x +1x +  +  +25x +  +  +9x +29x +29x +29x +  +  +  +  +29x +12x +12x +  +17x +  +  +29x +  +  +  +29x +  +  +9x +  +  +  +24x +  +24x +  +  +  +  +  +  +  +  +  +  +  +  +24x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +24x +  +  +  +  +  +  +  +  +  +  +  +  +  +24x +  +  +  +  +  +  +  +  +  +  +  +  +24x +  +  +  +  +  +  +  +  +  +  +  +  +  +24x +  +  +  +  +  +  +  +  +  +  +  +  +  +24x +  +  +  +  +  +  +  +  +  +  +  +  +  +24x +  +  +  +  +  +  +  +  +  +24x +  +  +9x +29x +29x +  +29x +  +29x +5x +  +  +  +  +  +24x +24x +  +  +29x +  +  +  +  +  +  +  +  +  +9x +  +  +  +27x +1x +  +26x +  +26x +1x +  +  +25x +  +  +25x +  +25x +29x +  +  +25x +  +  +  +  +  +  +  +9x +10x +10x +  +8x +  +  +  +  +  +  +  +  +  +  +  +  +  +9x +8x +8x +  +8x +8x +  +8x +1x +  +  +7x +  + 
/* eslint-disable @typescript-eslint/no-explicit-any */
+/* eslint-disable @typescript-eslint/no-use-before-define */
+/* eslint-disable no-useless-escape */
+/* eslint-disable no-control-regex */
+import emailAddresses, { ParsedGroup, ParsedMailbox } from "email-addresses";
+import punycode from "punycode";
+ 
+import { ErrorKeys, ParseErrorTypes } from "../../enums";
+ 
+import { EmailSettings } from "./emailSettings";
+ 
+/**
+ * Parse address from string
+ * @param {String} str
+ * @return {Email} result
+ */
+export const parseAddress = (
+  str: string,
+  options: EmailSettings | { [key: string]: boolean } = new EmailSettings(),
+) => {
+  const parsedEmails = parseAddresses(str, options);
+ 
+  if (!parsedEmails.length) {
+    return new Email("", str, [
+      {
+        message: "No one email parsed",
+        type: ParseErrorTypes.EmptyRecipients,
+        errorKey: ErrorKeys.EmptyEmail,
+      },
+    ]);
+  }
+ 
+  if (parsedEmails.length > 1) {
+    return new Email("", str, [
+      {
+        message: "Too many email parsed",
+        type: ParseErrorTypes.IncorrectEmail,
+        errorKey: ErrorKeys.ManyEmails,
+      },
+    ]);
+  }
+ 
+  const resultEmail = parsedEmails[0];
+ 
+  return resultEmail;
+};
+ 
+export class Email {
+  email?: string;
+ 
+  name?: string;
+ 
+  parseErrors?: {
+    message: string | null;
+    type: ParseErrorTypes;
+    errorKey: ErrorKeys;
+  }[];
+ 
+  constructor(
+    name?: string | null,
+    email?: string,
+    parseErrors?: {
+      message: string;
+      type: ParseErrorTypes;
+      errorKey: ErrorKeys;
+    }[],
+  ) {
+    this.name = name || "";
+    this.email = email;
+    this.parseErrors = parseErrors;
+  }
+ 
+  isValid = () => {
+    return this.parseErrors?.length === 0;
+  };
+ 
+  equals(this: any, addr: { [key: string]: string } | string | Email) {
+    if (typeof addr === "object" && addr instanceof Email) {
+      return (
+        "email" in this && this?.email === addr.email && this.name === addr.name
+      );
+    }
+ 
+    if (typeof addr === "string") {
+      const parsed = parseAddress(addr);
+      return this.email === parsed.email && this.name === parsed.name;
+    }
+ 
+    return false;
+  }
+}
+ 
+const getParts = (str: string) => {
+  const parts = [];
+  const newStr = str.replace(/[\s,;]*$/, ",");
+  const n = newStr.length;
+  let flag = false;
+  let boundaryIndex = 0;
+  let index;
+  for (index = 0; index < n; index += 1) {
+    switch (newStr.charAt(index)) {
+      case ",":
+      case ";":
+        if (!flag) {
+          let part = newStr.substring(boundaryIndex, index);
+          part = part.trim();
+          Eif (part) {
+            parts.push(part);
+          }
+          boundaryIndex = index + 1;
+        }
+        break;
+      case '"':
+        Eif (
+          newStr.charAt(index - 1) !== "\\" &&
+          newStr.charAt(index + 1) !== '"'
+        ) {
+          flag = !flag;
+        }
+        break;
+      default:
+    }
+  }
+ 
+  if (!parts.length) {
+    parts.push(str.replace(/,\s*$/, ""));
+  }
+ 
+  return parts;
+};
+ 
+const normalizeString = (str: string) => {
+  const r1 = /^"(.*)"\s*<([^>]+)>$/;
+  const r2 = /^(.*)<([^>]+)>$/;
+  const match = str.match(r1) || str.match(r2);
+ 
+  let name;
+  let email;
+ 
+  if (match) {
+    name = match[1].replace(/\\"/g, '"').replace(/\\\\/g, "\\").trim();
+    email = match[2].trim();
+  } else {
+    email = str;
+  }
+ 
+  const result = name
+    ? `"${name.replace(/\\/g, "\\\\").replace(/"/g, '\\"')}" <${email}>`
+    : email;
+ 
+  return result;
+};
+ 
+const checkErrors = (
+  parsedAddress: ParsedGroup | ParsedMailbox,
+  options: EmailSettings,
+) => {
+  const errors = [];
+ 
+  Iif (
+    !options?.allowLocalDomainName &&
+    "domain" in parsedAddress &&
+    parsedAddress.domain.indexOf(".") === -1
+  ) {
+    errors.push({
+      message: "Local domains are not supported",
+      type: ParseErrorTypes.IncorrectEmail,
+      errorItem: parsedAddress,
+      errorKey: ErrorKeys.LocalDomain,
+    });
+  }
+ 
+  Iif (
+    !(
+      options.allowDomainIp ||
+      options.allowDomainPunycode ||
+      options.allowLocalDomainName
+    ) &&
+    "domain" in parsedAddress &&
+    !/(^((?!-)[a-zA-Z0-9-]{1,63}\.)+[a-zA-Z]{2,63}\.?$)/.test(
+      parsedAddress.domain,
+    )
+  ) {
+    errors.push({
+      message: "Incorrect domain",
+      type: ParseErrorTypes.IncorrectEmail,
+      errorItem: parsedAddress,
+      errorKey: ErrorKeys.IncorrectDomain,
+    });
+  }
+ 
+  Iif (
+    !options.allowDomainIp &&
+    "domain" in parsedAddress &&
+    parsedAddress.domain.indexOf("[") === 0 &&
+    parsedAddress.domain.indexOf("]") === parsedAddress.domain.length - 1
+  ) {
+    errors.push({
+      message: "Domains as ip address are not supported",
+      type: ParseErrorTypes.IncorrectEmail,
+      errorItem: parsedAddress,
+      errorKey: ErrorKeys.DomainIpAddress,
+    });
+  }
+ 
+  Iif (
+    !options.allowDomainPunycode &&
+    "domain" in parsedAddress &&
+    !/^[\x00-\x7F]+$/.test(punycode.toUnicode(parsedAddress.domain))
+  ) {
+    errors.push({
+      message: "Punycode domains are not supported",
+      type: ParseErrorTypes.IncorrectEmail,
+      errorItem: parsedAddress,
+      errorKey: ErrorKeys.PunycodeDomain,
+    });
+  }
+ 
+  Iif (
+    !options.allowLocalPartPunycode &&
+    "local" in parsedAddress &&
+    parsedAddress.local.length > 0 &&
+    !/^[\x00-\x7F]+$/.test(punycode.toUnicode(parsedAddress.local))
+  ) {
+    errors.push({
+      message: "Punycode local part are not supported",
+      type: ParseErrorTypes.IncorrectEmail,
+      errorItem: parsedAddress,
+      errorKey: ErrorKeys.PunycodeLocalPart,
+    });
+  }
+ 
+  Iif (
+    options.allowStrictLocalPart &&
+    "local" in parsedAddress &&
+    (!/^[\x00-\x7F]+$/.test(parsedAddress.local) ||
+      !/^([a-zA-Z0-9]+)([_\-\.\+][a-zA-Z0-9]+)*$/.test(parsedAddress.local))
+  ) {
+    errors.push({
+      message: "Incorrect localpart",
+      type: ParseErrorTypes.IncorrectEmail,
+      errorItem: parsedAddress,
+      errorKey: ErrorKeys.IncorrectLocalPart,
+    });
+  }
+ 
+  Iif (
+    !options.allowSpaces &&
+    "local" in parsedAddress &&
+    (/\s+/.test(parsedAddress.local) ||
+      parsedAddress.local !== parsedAddress.parts.local.tokens)
+  ) {
+    errors.push({
+      message: "Incorrect, localpart contains spaces",
+      type: ParseErrorTypes.IncorrectEmail,
+      errorItem: parsedAddress,
+      errorKey: ErrorKeys.SpacesInLocalPart,
+    });
+  }
+ 
+  Iif ("local" in parsedAddress && parsedAddress.local.length > 64) {
+    errors.push({
+      message:
+        "The maximum total length of a user name or other local-part is 64 characters. See RFC2821",
+      type: ParseErrorTypes.IncorrectEmail,
+      errorItem: parsedAddress,
+      errorKey: ErrorKeys.MaxLengthExceeded,
+    });
+  }
+ 
+  return errors;
+};
+ 
+const parseOneAddress = (str: string, options: EmailSettings) => {
+  const normalizedStr = normalizeString(str);
+  const parsedAddress = emailAddresses.parseOneAddress(normalizedStr);
+ 
+  const errors = [];
+ 
+  if (!parsedAddress || (parsedAddress.name && !options.allowName)) {
+    errors.push({
+      message: "Incorrect email",
+      type: ParseErrorTypes.IncorrectEmail,
+      errorKey: ErrorKeys.IncorrectEmail,
+    });
+  } else {
+    const checkOptionErrors = checkErrors(parsedAddress, options);
+    Iif (checkOptionErrors.length) errors.push(...checkOptionErrors);
+  }
+ 
+  return parsedAddress && "name" in parsedAddress && "address" in parsedAddress
+    ? new Email(parsedAddress.name, parsedAddress.address, errors)
+    : new Email(null, str, errors);
+};
+ 
+/**
+ * Parse addresses from string
+ * @param {String} str
+ * @return {Array} result with array of Email objects
+ */
+export const parseAddresses = (
+  str: string,
+  options: EmailSettings | { [key: string]: boolean } = new EmailSettings(),
+) => {
+  if (!(options instanceof EmailSettings))
+    throw new TypeError("Invalid options");
+ 
+  const resultEmails: Email[] = [];
+ 
+  if (!str || !str.trim()) {
+    return resultEmails;
+  }
+ 
+  const parts = getParts(str);
+ 
+  let i;
+  const n = parts.length;
+ 
+  for (i = 0; i < n; i += 1) {
+    resultEmails.push(parseOneAddress(parts[i], options));
+  }
+ 
+  return resultEmails;
+};
+ 
+/**
+ * Check domain validity
+ * @param {String} domain
+ * @return {Bool} result
+ */
+export const isValidDomainName = (domain: string) => {
+  const parsed = emailAddresses.parseOneAddress(`test@${domain}`);
+  if (!parsed) return false;
+ 
+  return (
+    parsed &&
+    "domain" in parsed &&
+    parsed.domain === domain &&
+    domain.indexOf(".") !== -1
+  );
+};
+ 
+/**
+ * Compare emails
+ * @param {String}/{Object} email1
+ * @param {String}/{Object} email2
+ * @return {Bool} result
+ */
+export const isEqualEmail = (email1: string, email2: string) => {
+  const emailSettings = new EmailSettings();
+  emailSettings.disableAllSettings();
+ 
+  const parsed1 = parseAddress(email1, emailSettings);
+  const parsed2 = parseAddress(email2, emailSettings);
+ 
+  if (!parsed1.isValid() || !parsed2.isValid()) {
+    return false;
+  }
+ 
+  return parsed1.email === parsed2.email;
+};
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/utils/email/emailSettings.ts.html b/packages/shared/coverage/lcov-report/utils/email/emailSettings.ts.html new file mode 100644 index 0000000000..8118bd0665 --- /dev/null +++ b/packages/shared/coverage/lcov-report/utils/email/emailSettings.ts.html @@ -0,0 +1,658 @@ + + + + + + Code coverage report for utils/email/emailSettings.ts + + + + + + + + + +
+
+

All files / utils/email emailSettings.ts

+
+ +
+ 98.46% + Statements + 64/65 +
+ + +
+ 97.36% + Branches + 37/38 +
+ + +
+ 100% + Functions + 20/20 +
+ + +
+ 100% + Lines + 62/62 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101 +102 +103 +104 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124 +125 +126 +127 +128 +129 +130 +131 +132 +133 +134 +135 +136 +137 +138 +139 +140 +141 +142 +143 +144 +145 +146 +147 +148 +149 +150 +151 +152 +153 +154 +155 +156 +157 +158 +159 +160 +161 +162 +163 +164 +165 +166 +167 +168 +169 +170 +171 +172 +173 +174 +175 +176 +177 +178 +179 +180 +181 +182 +183 +184 +185 +186 +187 +188 +189 +190 +191 +192  +  +  +  +41x +41x +41x +41x +41x +41x +41x +  +  +9x +  +  +  +2x +2x +2x +  +  +  +  +  +  +  +  +2x +2x +11x +  +11x +1x +  +  +1x +  +  +  +42x +  +  +  +56x +55x +  +1x +  +  +  +  +  +  +35x +  +  +  +56x +55x +  +1x +  +  +  +  +  +  +59x +  +  +  +52x +51x +  +1x +  +  +  +  +  +  +36x +  +  +  +54x +53x +  +1x +  +  +  +  +  +  +33x +  +  +  +52x +51x +  +1x +  +  +  +  +  +  +21x +  +  +  +52x +51x +  +1x +  +  +  +  +  +  +40x +  +  +  +54x +53x +  +1x +  +  +  +  +  +  +3x +  +  +  +  +  +  +  +  +  +  +  +9x +9x +9x +9x +9x +9x +9x +  +  +9x +10x +  +4x +  +4x +4x +  +29x +18x +  +  +11x +  +  +4x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  + 
/* eslint-disable no-underscore-dangle */
+ 
+export class EmailSettings {
+  constructor() {
+    this.allowDomainPunycode = false;
+    this.allowLocalPartPunycode = false;
+    this.allowDomainIp = false;
+    this.allowStrictLocalPart = true;
+    this.allowSpaces = false;
+    this.allowName = false;
+    this.allowLocalDomainName = false;
+  }
+ 
+  static equals = (
+    settings1: { [key: string]: boolean | string },
+    settings2: { [key: string]: boolean | string },
+  ) => {
+    const instance1 = EmailSettings.parse(settings1);
+    const instance2 = EmailSettings.parse(settings2);
+    const comparedProperties = [
+      "allowDomainPunycode",
+      "allowLocalPartPunycode",
+      "allowDomainIp",
+      "allowStrictLocalPart",
+      "allowSpaces",
+      "allowName",
+      "allowLocalDomainName",
+    ];
+    const propLength = comparedProperties.length;
+    for (let i = 0; i < propLength; i += 1) {
+      const comparedProp = comparedProperties[i];
+      // @ts-expect-error Need review this
+      if (instance1[comparedProp] !== instance2[comparedProp]) {
+        return false;
+      }
+    }
+    return true;
+  };
+ 
+  get allowDomainPunycode() {
+    return this._allowDomainPunycode;
+  }
+ 
+  set allowDomainPunycode(value) {
+    if (value !== undefined && typeof value === "boolean") {
+      this._allowDomainPunycode = value;
+    } else {
+      throw new TypeError(
+        `Invalid value ${value} for allowDomainPunycode option. Use boolean value`,
+      );
+    }
+  }
+ 
+  get allowLocalPartPunycode() {
+    return this._allowLocalPartPunycode;
+  }
+ 
+  set allowLocalPartPunycode(value) {
+    if (value !== undefined && typeof value === "boolean") {
+      this._allowLocalPartPunycode = value;
+    } else {
+      throw new TypeError(
+        `Invalid value ${value} for allowLocalPartPunycode option. Use boolean value`,
+      );
+    }
+  }
+ 
+  get allowDomainIp() {
+    return this._allowDomainIp;
+  }
+ 
+  set allowDomainIp(value) {
+    if (value !== undefined && typeof value === "boolean") {
+      this._allowDomainIp = value;
+    } else {
+      throw new TypeError(
+        `Invalid value ${value} for allowDomainIp option. Use boolean value`,
+      );
+    }
+  }
+ 
+  get allowStrictLocalPart() {
+    return this._allowStrictLocalPart;
+  }
+ 
+  set allowStrictLocalPart(value) {
+    if (value !== undefined && typeof value === "boolean") {
+      this._allowStrictLocalPart = value;
+    } else {
+      throw new TypeError(
+        `Invalid value ${value} for allowStrictLocalPart option. Use boolean value`,
+      );
+    }
+  }
+ 
+  get allowSpaces() {
+    return this._allowSpaces;
+  }
+ 
+  set allowSpaces(value) {
+    if (value !== undefined && typeof value === "boolean") {
+      this._allowSpaces = value;
+    } else {
+      throw new TypeError(
+        `Invalid value ${value} for allowSpaces option. Use boolean value`,
+      );
+    }
+  }
+ 
+  get allowName() {
+    return this._allowName;
+  }
+ 
+  set allowName(value) {
+    if (value !== undefined && typeof value === "boolean") {
+      this._allowName = value;
+    } else {
+      throw new TypeError(
+        `Invalid value ${value} for allowName option. Use boolean value`,
+      );
+    }
+  }
+ 
+  get allowLocalDomainName() {
+    return this._allowLocalDomainName;
+  }
+ 
+  set allowLocalDomainName(value) {
+    if (value !== undefined && typeof value === "boolean") {
+      this._allowLocalDomainName = value;
+    } else {
+      throw new TypeError(
+        `Invalid value ${value} for allowLocalDomainName option. Use boolean value`,
+      );
+    }
+  }
+ 
+  toObject() {
+    return {
+      allowDomainPunycode: this.allowDomainPunycode,
+      allowLocalPartPunycode: this.allowLocalPartPunycode,
+      allowDomainIp: this.allowDomainIp,
+      allowStrictLocalPart: this.allowStrictLocalPart,
+      allowSpaces: this.allowSpaces,
+      allowName: this.allowName,
+      allowLocalDomainName: this.allowLocalDomainName,
+    };
+  }
+ 
+  disableAllSettings() {
+    this.allowDomainPunycode = true;
+    this.allowLocalPartPunycode = true;
+    this.allowDomainIp = true;
+    this.allowStrictLocalPart = false;
+    this.allowSpaces = true;
+    this.allowName = true;
+    this.allowLocalDomainName = true;
+  }
+ 
+  static parse = (settings: { [key: string]: string | boolean }) => {
+    if (settings instanceof EmailSettings) return settings;
+ 
+    Iif (typeof settings !== "object") throw new Error("Invalid argument");
+ 
+    const defaultSettings = new EmailSettings();
+    Object.keys(settings).forEach((key: string | boolean) => {
+      // @ts-expect-error Need review this
+      if (!(key in defaultSettings) || defaultSettings[key] === settings[key])
+        return;
+ 
+      // @ts-expect-error Need review this
+      defaultSettings[key] = settings[key];
+    });
+ 
+    return defaultSettings;
+  };
+ 
+  _allowDomainIp: unknown;
+ 
+  _allowDomainPunycode: unknown;
+ 
+  _allowLocalDomainName: unknown;
+ 
+  _allowLocalPartPunycode: unknown;
+ 
+  _allowName: unknown;
+ 
+  _allowSpaces: unknown;
+ 
+  _allowStrictLocalPart: unknown;
+}
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/utils/email/index.html b/packages/shared/coverage/lcov-report/utils/email/index.html new file mode 100644 index 0000000000..cbe45854d8 --- /dev/null +++ b/packages/shared/coverage/lcov-report/utils/email/index.html @@ -0,0 +1,146 @@ + + + + + + Code coverage report for utils/email + + + + + + + + + +
+
+

All files utils/email

+
+ +
+ 94.04% + Statements + 158/168 +
+ + +
+ 91.39% + Branches + 138/151 +
+ + +
+ 100% + Functions + 31/31 +
+ + +
+ 95.09% + Lines + 155/163 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
email.ts +
+
91.26%94/10389.38%101/113100%11/1192.07%93/101
emailSettings.ts +
+
98.46%64/6597.36%37/38100%20/20100%62/62
index.ts +
+
0%0/00%0/00%0/00%0/0
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/utils/email/index.ts.html b/packages/shared/coverage/lcov-report/utils/email/index.ts.html new file mode 100644 index 0000000000..ea983a03e9 --- /dev/null +++ b/packages/shared/coverage/lcov-report/utils/email/index.ts.html @@ -0,0 +1,109 @@ + + + + + + Code coverage report for utils/email/index.ts + + + + + + + + + +
+
+

All files / utils/email index.ts

+
+ +
+ 0% + Statements + 0/0 +
+ + +
+ 0% + Branches + 0/0 +
+ + +
+ 0% + Functions + 0/0 +
+ + +
+ 0% + Lines + 0/0 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9  +  +  +  +  +  +  +  + 
export {
+  parseAddress,
+  Email,
+  isEqualEmail,
+  isValidDomainName,
+  parseAddresses,
+} from "./email";
+export { EmailSettings } from "./emailSettings";
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/utils/event.ts.html b/packages/shared/coverage/lcov-report/utils/event.ts.html new file mode 100644 index 0000000000..4968f9ebe3 --- /dev/null +++ b/packages/shared/coverage/lcov-report/utils/event.ts.html @@ -0,0 +1,115 @@ + + + + + + Code coverage report for utils/event.ts + + + + + + + + + +
+
+

All files / utils event.ts

+
+ +
+ 25% + Statements + 1/4 +
+ + +
+ 0% + Branches + 0/2 +
+ + +
+ 0% + Functions + 0/1 +
+ + +
+ 25% + Lines + 1/4 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +117x +  +  +  +  +  +  +  +  +  + 
export const handleAnyClick = (
+  subscribe: boolean,
+  handler: (e: MouseEvent | TouchEvent) => void,
+) => {
+  if (subscribe) {
+    document.addEventListener("click", handler);
+  } else {
+    document.removeEventListener("click", handler);
+  }
+};
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/utils/getCorrectDate.ts.html b/packages/shared/coverage/lcov-report/utils/getCorrectDate.ts.html new file mode 100644 index 0000000000..162727e9f7 --- /dev/null +++ b/packages/shared/coverage/lcov-report/utils/getCorrectDate.ts.html @@ -0,0 +1,121 @@ + + + + + + Code coverage report for utils/getCorrectDate.ts + + + + + + + + + +
+
+

All files / utils getCorrectDate.ts

+
+ +
+ 0% + Statements + 0/6 +
+ + +
+ 0% + Branches + 0/4 +
+ + +
+ 0% + Functions + 0/1 +
+ + +
+ 0% + Lines + 0/5 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13  +  +  +  +  +  +  +  +  +  +  +  + 
import moment from "moment";
+ 
+export default function getCorrectDate(locale: string, date: string) {
+  if (!date || date === "0001-01-01T00:00:00.0000000Z") return "—";
+ 
+  const curDate = moment(date).locale(locale).format("L");
+  const curTime = moment(date).locale(locale).format("LT");
+ 
+  const correctDate = `${curDate} ${curTime}`;
+ 
+  return correctDate;
+}
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/utils/index.html b/packages/shared/coverage/lcov-report/utils/index.html new file mode 100644 index 0000000000..ca0c333de9 --- /dev/null +++ b/packages/shared/coverage/lcov-report/utils/index.html @@ -0,0 +1,341 @@ + + + + + + Code coverage report for utils + + + + + + + + + +
+
+

All files utils

+
+ +
+ 19.38% + Statements + 44/227 +
+ + +
+ 8.47% + Branches + 15/177 +
+ + +
+ 7.5% + Functions + 3/40 +
+ + +
+ 19.9% + Lines + 42/211 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
array.ts +
+
50%1/2100%0/00%0/150%1/2
banner.ts +
+
2.5%1/400%0/480%0/52.77%1/36
classNames.ts +
+
66.66%10/1537.5%6/1633.33%1/364.28%9/14
common-icons-style.ts +
+
22.22%2/90%0/60%0/222.22%2/9
context.ts +
+
100%3/3100%0/0100%0/0100%3/3
cookie.ts +
+
0%0/20%0/20%0/10%0/2
device.ts +
+
64.7%11/1736.36%4/1125%1/464.7%11/17
domHelpers.ts +
+
1.92%1/520%0/320%0/91.92%1/52
event.ts +
+
25%1/40%0/20%0/125%1/4
getCorrectDate.ts +
+
0%0/60%0/40%0/10%0/5
index.ts +
+
50%1/20%0/20%0/150%1/2
objectUtils.ts +
+
0%0/10%0/20%0/10%0/1
rtlUtils.ts +
+
17.64%6/3410%2/2033.33%1/317.24%5/29
trimSeparator.ts +
+
0%0/150%0/150%0/10%0/11
useClickOutside.ts +
+
10%1/100%0/40%0/411.11%1/9
useId.ts +
+
40%6/1523.07%3/130%0/340%6/15
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/utils/index.ts.html b/packages/shared/coverage/lcov-report/utils/index.ts.html new file mode 100644 index 0000000000..f4d29b474f --- /dev/null +++ b/packages/shared/coverage/lcov-report/utils/index.ts.html @@ -0,0 +1,298 @@ + + + + + + Code coverage report for utils/index.ts + + + + + + + + + +
+
+

All files / utils index.ts

+
+ +
+ 50% + Statements + 1/2 +
+ + +
+ 0% + Branches + 0/2 +
+ + +
+ 0% + Functions + 0/1 +
+ + +
+ 50% + Lines + 1/2 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +7x +  +  + 
import * as isArrayEqual from "./array";
+ 
+import * as email from "./email";
+ 
+import * as useId from "./useId";
+import {
+  getCorrectTextAlign,
+  getCorrectBorderRadius,
+  getCorrectFourValuesStyle,
+} from "./rtlUtils";
+import * as useClickOutside from "./useClickOutside";
+import * as trimSeparator from "./trimSeparator";
+import * as getCorrectDate from "./getCorrectDate";
+import { handleAnyClick } from "./event";
+import * as DomHelpers from "./domHelpers";
+import * as ObjectUtils from "./objectUtils";
+import {
+  size,
+  mobile,
+  mobileMore,
+  tablet,
+  transitionalScreenSize,
+  isMobile,
+  isTablet,
+  isDesktop,
+  isTouchDevice,
+  checkIsSSR,
+} from "./device";
+import { getCookie } from "./cookie";
+import { Context, Provider, Consumer } from "./context";
+import commonIconsStyles, { IconSizeType } from "./common-icons-style";
+import { classNames } from "./classNames";
+import { getBannerAttribute, getLanguage } from "./banner";
+ 
+export {
+  checkIsSSR,
+  getLanguage,
+  isArrayEqual,
+  getBannerAttribute,
+  classNames,
+  commonIconsStyles,
+  IconSizeType,
+  Context,
+  Provider,
+  Consumer,
+  getCookie,
+  size,
+  mobile,
+  mobileMore,
+  tablet,
+  transitionalScreenSize,
+  isMobile,
+  isTablet,
+  isDesktop,
+  isTouchDevice,
+  getCorrectTextAlign,
+  getCorrectBorderRadius,
+  getCorrectFourValuesStyle,
+  email,
+  useId,
+  useClickOutside,
+  trimSeparator,
+  getCorrectDate,
+  handleAnyClick,
+  DomHelpers,
+  ObjectUtils,
+};
+ 
+export const getModalType = () => {
+  return window.innerWidth < size.desktop ? "aside" : "modal";
+};
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/utils/objectUtils.ts.html b/packages/shared/coverage/lcov-report/utils/objectUtils.ts.html new file mode 100644 index 0000000000..7beea53808 --- /dev/null +++ b/packages/shared/coverage/lcov-report/utils/objectUtils.ts.html @@ -0,0 +1,103 @@ + + + + + + Code coverage report for utils/objectUtils.ts + + + + + + + + + +
+
+

All files / utils objectUtils.ts

+
+ +
+ 0% + Statements + 0/1 +
+ + +
+ 0% + Branches + 0/2 +
+ + +
+ 0% + Functions + 0/1 +
+ + +
+ 0% + Lines + 0/1 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7  +  +  +  +  +  + 
export default class ObjectUtils {
+  static getJSXElement(obj: unknown, ...params: unknown[]) {
+    // @ts-expect-error Don`t understand this line and class generally
+    return this.isFunction(obj) ? obj(...params) : obj;
+  }
+}
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/utils/rtlUtils.ts.html b/packages/shared/coverage/lcov-report/utils/rtlUtils.ts.html new file mode 100644 index 0000000000..3c0142c42c --- /dev/null +++ b/packages/shared/coverage/lcov-report/utils/rtlUtils.ts.html @@ -0,0 +1,313 @@ + + + + + + Code coverage report for utils/rtlUtils.ts + + + + + + + + + +
+
+

All files / utils rtlUtils.ts

+
+ +
+ 17.64% + Statements + 6/34 +
+ + +
+ 10% + Branches + 2/20 +
+ + +
+ 33.33% + Functions + 1/3 +
+ + +
+ 17.24% + Lines + 5/29 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77  +  +  +7x +  +  +  +2x +  +2x +  +  +  +  +  +  +  +  +  +  +  +  +  +7x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +7x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  + 
import { TInterfaceDirection } from "../types";
+ 
+/* Returns correct text-align value depending on interface direction (ltr/rtl) */
+export const getCorrectTextAlign = (
+  currentTextAlign: string,
+  interfaceDirection: TInterfaceDirection,
+) => {
+  Iif (!currentTextAlign) return interfaceDirection === "rtl" ? "right" : "left";
+ 
+  Eif (interfaceDirection === "ltr") return currentTextAlign;
+ 
+  switch (currentTextAlign) {
+    case "left":
+      return "right";
+    case "right":
+      return "left";
+    default:
+      return currentTextAlign;
+  }
+};
+ 
+/* Returns correct four values style (margin/padding etc) depending on interface direction (ltr/rtl)
+ * Not suitable for border-radius! */
+export const getCorrectFourValuesStyle = (
+  styleStr: string,
+  interfaceDirection: TInterfaceDirection,
+) => {
+  if (interfaceDirection === "ltr") return styleStr;
+ 
+  const styleArr = styleStr.split(" ");
+  if (styleArr.length !== 4) return styleStr;
+ 
+  const styleRightValue = styleArr[1];
+  const styleLeftValue = styleArr[3];
+ 
+  styleArr[1] = styleLeftValue;
+  styleArr[3] = styleRightValue;
+ 
+  return styleArr.join(" ");
+};
+ 
+/* Returns correct border-radius value depending on interface direction (ltr/rtl) */
+export const getCorrectBorderRadius = (
+  borderRadiusStr: string,
+  interfaceDirection: TInterfaceDirection,
+) => {
+  if (interfaceDirection === "ltr") return borderRadiusStr;
+ 
+  const borderRadiusArr = borderRadiusStr.split(" ");
+ 
+  switch (borderRadiusArr.length) {
+    // [10px] => "10px"
+    case 1: {
+      return borderRadiusStr;
+    }
+    // [10px 20px] => [20px 10px]
+    case 2: {
+      borderRadiusArr.splice(0, 0, borderRadiusArr.splice(1, 1)[0]);
+      break;
+    }
+    // [10px 20px 30px] => [20px 10px 20px 30px]
+    case 3: {
+      borderRadiusArr.splice(0, 0, borderRadiusArr[1]);
+      break;
+    }
+    // [10px 20px 30px 40px] => [20px 10px 40px 30px]
+    case 4: {
+      borderRadiusArr.splice(0, 0, borderRadiusArr.splice(1, 1)[0]);
+      borderRadiusArr.splice(2, 0, borderRadiusArr.splice(3, 1)[0]);
+      break;
+    }
+    default:
+  }
+ 
+  return borderRadiusArr.join(" ");
+};
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/utils/trimSeparator.ts.html b/packages/shared/coverage/lcov-report/utils/trimSeparator.ts.html new file mode 100644 index 0000000000..9520a3b4c3 --- /dev/null +++ b/packages/shared/coverage/lcov-report/utils/trimSeparator.ts.html @@ -0,0 +1,151 @@ + + + + + + Code coverage report for utils/trimSeparator.ts + + + + + + + + + +
+
+

All files / utils trimSeparator.ts

+
+ +
+ 0% + Statements + 0/15 +
+ + +
+ 0% + Branches + 0/15 +
+ + +
+ 0% + Functions + 0/1 +
+ + +
+ 0% + Lines + 0/11 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  + 
import type { ContextMenuModel } from "../components/context-menu";
+ 
+export function trimSeparator(array: ContextMenuModel[]) {
+  if (!array || !Array.isArray(array) || array.length === 0) return array;
+ 
+  const length = array.length;
+  const result: ContextMenuModel[] = [];
+ 
+  for (let index = 0; index < length; index += 1) {
+    const el = array[index];
+ 
+    if (el?.isSeparator && result.length > 0) {
+      if (!result[result.length - 1]?.isSeparator) result.push(el);
+    } else if (!el?.isSeparator) {
+      result.push(el);
+    }
+  }
+ 
+  if (result[result.length - 1]?.isSeparator) result.pop();
+ 
+  return result;
+}
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/utils/useClickOutside.ts.html b/packages/shared/coverage/lcov-report/utils/useClickOutside.ts.html new file mode 100644 index 0000000000..c875bab743 --- /dev/null +++ b/packages/shared/coverage/lcov-report/utils/useClickOutside.ts.html @@ -0,0 +1,145 @@ + + + + + + Code coverage report for utils/useClickOutside.ts + + + + + + + + + +
+
+

All files / utils useClickOutside.ts

+
+ +
+ 10% + Statements + 1/10 +
+ + +
+ 0% + Branches + 0/4 +
+ + +
+ 0% + Functions + 0/4 +
+ + +
+ 11.11% + Lines + 1/9 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21  +  +  +7x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  + 
/* eslint-disable react-hooks/exhaustive-deps */
+import { useEffect } from "react";
+ 
+export const useClickOutside = (
+  ref: { current: HTMLElement },
+  handler: () => void,
+  ...deps: unknown[]
+) => {
+  useEffect(() => {
+    const handleClickOutside = (e: MouseEvent) => {
+      e.stopPropagation();
+      const target = e.target as HTMLElement;
+      if (ref.current && !ref.current.contains(target)) handler();
+    };
+    document.addEventListener("mousedown", handleClickOutside);
+    return () => {
+      document.removeEventListener("mousedown", handleClickOutside);
+    };
+  }, [ref, handler, ...deps]);
+};
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov-report/utils/useId.ts.html b/packages/shared/coverage/lcov-report/utils/useId.ts.html new file mode 100644 index 0000000000..5abe481fee --- /dev/null +++ b/packages/shared/coverage/lcov-report/utils/useId.ts.html @@ -0,0 +1,190 @@ + + + + + + Code coverage report for utils/useId.ts + + + + + + + + + +
+
+

All files / utils useId.ts

+
+ +
+ 40% + Statements + 6/15 +
+ + +
+ 23.07% + Branches + 3/13 +
+ + +
+ 0% + Functions + 0/3 +
+ + +
+ 40% + Lines + 6/15 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36  +  +7x +7x +  +  +7x +  +  +7x +  +  +  +7x +  +7x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  + 
import React from "react";
+ 
+let ID = 0;
+const genId = () => {
+  ID += 1;
+};
+let serverHandoffComplete = false;
+ 
+const hook =
+  typeof document !== "undefined" && document.createElement !== undefined
+    ? "useLayoutEffect"
+    : "useEffect";
+ 
+const usePassiveLayoutEffect = React[hook];
+ 
+const useId = (fallbackId?: string | number, prefix = "prefix") => {
+  const [id, setId] = React.useState<number | void | undefined>(
+    serverHandoffComplete ? genId : undefined,
+  );
+ 
+  usePassiveLayoutEffect(() => {
+    if (id === undefined) {
+      ID += 1;
+      setId(ID);
+    }
+ 
+    serverHandoffComplete = true;
+  }, []);
+ 
+  const calcId = id === undefined ? id : prefix + id;
+ 
+  return fallbackId || calcId;
+};
+ 
+export default useId;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/packages/shared/coverage/lcov.info b/packages/shared/coverage/lcov.info new file mode 100644 index 0000000000..ffc9616a48 --- /dev/null +++ b/packages/shared/coverage/lcov.info @@ -0,0 +1,2421 @@ +TN: +SF:components\aside\Aside.styled.tsx +FN:11,(anonymous_0) +FN:21,(anonymous_1) +FN:22,(anonymous_2) +FN:25,(anonymous_3) +FN:27,(anonymous_4) +FN:42,(anonymous_5) +FN:43,(anonymous_6) +FN:44,(anonymous_7) +FN:50,(anonymous_8) +FN:71,(anonymous_9) +FN:78,(anonymous_10) +FN:85,(anonymous_11) +FN:106,(anonymous_12) +FN:114,(anonymous_13) +FN:127,(anonymous_14) +FN:147,(anonymous_15) +FNF:16 +FNH:16 +FNDA:1,(anonymous_0) +FNDA:1,(anonymous_1) +FNDA:1,(anonymous_2) +FNDA:1,(anonymous_3) +FNDA:1,(anonymous_4) +FNDA:1,(anonymous_5) +FNDA:1,(anonymous_6) +FNDA:1,(anonymous_7) +FNDA:1,(anonymous_8) +FNDA:1,(anonymous_9) +FNDA:1,(anonymous_10) +FNDA:1,(anonymous_11) +FNDA:1,(anonymous_12) +FNDA:1,(anonymous_13) +FNDA:1,(anonymous_14) +FNDA:1,(anonymous_15) +DA:11,1 +DA:18,1 +DA:20,1 +DA:21,1 +DA:22,1 +DA:25,1 +DA:28,1 +DA:42,1 +DA:43,1 +DA:44,1 +DA:51,1 +DA:71,1 +DA:79,1 +DA:85,1 +DA:89,1 +DA:91,1 +DA:107,1 +DA:115,1 +DA:128,1 +DA:140,1 +DA:142,1 +DA:147,1 +DA:151,1 +LF:23 +LH:23 +BRDA:28,0,0,0 +BRDA:28,0,1,1 +BRDA:32,1,0,0 +BRDA:32,1,1,0 +BRDA:32,2,0,0 +BRDA:32,2,1,0 +BRDA:38,3,0,1 +BRDA:38,3,1,0 +BRDA:38,4,0,0 +BRDA:38,4,1,0 +BRDA:43,5,0,0 +BRDA:43,5,1,1 +BRDA:51,6,0,0 +BRDA:51,6,1,1 +BRDA:54,7,0,0 +BRDA:54,7,1,0 +BRDA:54,8,0,0 +BRDA:54,8,1,0 +BRDA:59,9,0,1 +BRDA:59,9,1,0 +BRDA:59,10,0,0 +BRDA:59,10,1,0 +BRDA:71,11,0,1 +BRDA:71,11,1,0 +BRDA:79,12,0,0 +BRDA:79,12,1,1 +BRDA:107,13,0,0 +BRDA:107,13,1,1 +BRDA:115,14,0,0 +BRDA:115,14,1,1 +BRDA:128,15,0,0 +BRDA:128,15,1,1 +BRF:32 +BRH:10 +end_of_record +TN: +SF:components\aside\index.tsx +FN:13,(anonymous_0) +FN:30,(anonymous_1) +FN:66,(anonymous_2) +FN:71,(anonymous_3) +FNF:4 +FNH:3 +FNDA:1,(anonymous_0) +FNDA:0,(anonymous_1) +FNDA:1,(anonymous_2) +FNDA:1,(anonymous_3) +DA:13,1 +DA:23,1 +DA:24,1 +DA:25,1 +DA:26,1 +DA:27,1 +DA:29,1 +DA:31,0 +DA:33,0 +DA:35,0 +DA:36,0 +DA:38,0 +DA:40,0 +DA:42,0 +DA:46,0 +DA:48,0 +DA:49,0 +DA:50,0 +DA:52,0 +DA:53,0 +DA:55,0 +DA:56,0 +DA:60,0 +DA:66,1 +DA:67,1 +DA:68,0 +DA:69,0 +DA:71,1 +DA:72,1 +DA:73,1 +DA:77,1 +DA:103,1 +DA:109,1 +LF:33 +LH:15 +BRDA:31,0,0,0 +BRDA:31,0,1,0 +BRDA:35,1,0,0 +BRDA:35,1,1,0 +BRDA:49,2,0,0 +BRDA:49,2,1,0 +BRDA:50,3,0,0 +BRDA:50,3,1,0 +BRDA:52,4,0,0 +BRDA:52,4,1,0 +BRDA:55,5,0,0 +BRDA:55,5,1,0 +BRDA:67,6,0,0 +BRDA:67,6,1,1 +BRDA:67,7,0,1 +BRDA:67,7,1,0 +BRDA:88,8,0,0 +BRDA:88,8,1,1 +BRDA:94,9,0,1 +BRDA:94,9,1,1 +BRF:20 +BRH:5 +end_of_record +TN: +SF:components\avatar\Avatar.enums.ts +FNF:0 +FNH:0 +LF:0 +LH:0 +BRF:0 +BRH:0 +end_of_record +TN: +SF:components\avatar\Avatar.styled.ts +FN:12,(anonymous_0) +FN:20,(anonymous_1) +FN:25,(anonymous_2) +FN:26,(anonymous_3) +FN:28,(anonymous_4) +FN:29,(anonymous_5) +FN:30,(anonymous_6) +FN:37,(anonymous_7) +FN:45,(anonymous_8) +FN:46,(anonymous_9) +FN:48,(anonymous_10) +FN:56,(anonymous_11) +FN:57,(anonymous_12) +FN:58,(anonymous_13) +FN:60,(anonymous_14) +FN:62,(anonymous_15) +FN:68,(anonymous_16) +FN:70,(anonymous_17) +FN:78,(anonymous_18) +FN:83,(anonymous_19) +FN:88,(anonymous_20) +FN:94,(anonymous_21) +FN:100,(anonymous_22) +FN:109,(anonymous_23) +FN:119,(anonymous_24) +FN:120,(anonymous_25) +FN:121,(anonymous_26) +FN:122,(anonymous_27) +FN:123,(anonymous_28) +FN:124,(anonymous_29) +FN:132,(anonymous_30) +FN:133,(anonymous_31) +FN:134,(anonymous_32) +FN:136,(anonymous_33) +FN:153,(anonymous_34) +FN:159,(anonymous_35) +FN:161,(anonymous_36) +FN:166,(anonymous_37) +FN:167,(anonymous_38) +FN:168,(anonymous_39) +FN:169,(anonymous_40) +FN:176,(anonymous_41) +FN:179,(anonymous_42) +FN:182,(anonymous_43) +FN:188,(anonymous_44) +FN:191,(anonymous_45) +FN:194,(anonymous_46) +FN:200,(anonymous_47) +FN:203,(anonymous_48) +FN:206,(anonymous_49) +FNF:50 +FNH:37 +FNDA:0,(anonymous_0) +FNDA:0,(anonymous_1) +FNDA:0,(anonymous_2) +FNDA:0,(anonymous_3) +FNDA:0,(anonymous_4) +FNDA:0,(anonymous_5) +FNDA:0,(anonymous_6) +FNDA:0,(anonymous_7) +FNDA:1,(anonymous_8) +FNDA:1,(anonymous_9) +FNDA:1,(anonymous_10) +FNDA:1,(anonymous_11) +FNDA:1,(anonymous_12) +FNDA:1,(anonymous_13) +FNDA:1,(anonymous_14) +FNDA:1,(anonymous_15) +FNDA:1,(anonymous_16) +FNDA:1,(anonymous_17) +FNDA:1,(anonymous_18) +FNDA:1,(anonymous_19) +FNDA:1,(anonymous_20) +FNDA:1,(anonymous_21) +FNDA:1,(anonymous_22) +FNDA:1,(anonymous_23) +FNDA:1,(anonymous_24) +FNDA:1,(anonymous_25) +FNDA:1,(anonymous_26) +FNDA:1,(anonymous_27) +FNDA:1,(anonymous_28) +FNDA:1,(anonymous_29) +FNDA:0,(anonymous_30) +FNDA:0,(anonymous_31) +FNDA:0,(anonymous_32) +FNDA:0,(anonymous_33) +FNDA:0,(anonymous_34) +FNDA:2,(anonymous_35) +FNDA:1,(anonymous_36) +FNDA:1,(anonymous_37) +FNDA:1,(anonymous_38) +FNDA:1,(anonymous_39) +FNDA:1,(anonymous_40) +FNDA:1,(anonymous_41) +FNDA:1,(anonymous_42) +FNDA:1,(anonymous_43) +FNDA:1,(anonymous_44) +FNDA:1,(anonymous_45) +FNDA:1,(anonymous_46) +FNDA:1,(anonymous_47) +FNDA:1,(anonymous_48) +FNDA:1,(anonymous_49) +DA:10,1 +DA:12,0 +DA:14,1 +DA:16,1 +DA:21,0 +DA:25,0 +DA:27,0 +DA:28,0 +DA:29,0 +DA:30,0 +DA:37,0 +DA:42,1 +DA:44,1 +DA:45,1 +DA:46,1 +DA:49,1 +DA:56,1 +DA:57,1 +DA:59,1 +DA:60,1 +DA:62,1 +DA:66,1 +DA:68,1 +DA:69,1 +DA:70,1 +DA:71,1 +DA:73,1 +DA:79,1 +DA:83,1 +DA:89,1 +DA:95,1 +DA:101,1 +DA:107,1 +DA:109,1 +DA:115,1 +DA:117,1 +DA:119,1 +DA:120,1 +DA:121,1 +DA:122,1 +DA:123,1 +DA:124,1 +DA:129,1 +DA:131,1 +DA:132,0 +DA:133,0 +DA:134,0 +DA:136,0 +DA:139,1 +DA:141,1 +DA:153,0 +DA:157,1 +DA:159,1 +DA:160,2 +DA:161,1 +DA:162,1 +DA:164,1 +DA:166,1 +DA:167,1 +DA:168,1 +DA:169,1 +DA:176,1 +DA:179,1 +DA:182,1 +DA:188,1 +DA:191,1 +DA:194,1 +DA:200,1 +DA:203,1 +DA:206,1 +DA:210,1 +LF:71 +LH:58 +BRDA:21,0,0,0 +BRDA:21,0,1,0 +BRDA:49,1,0,0 +BRDA:49,1,1,1 +BRDA:51,2,0,1 +BRDA:51,2,1,0 +BRDA:79,3,0,0 +BRDA:79,3,1,1 +BRDA:89,4,0,1 +BRDA:89,4,1,1 +BRDA:89,4,2,0 +BRDA:89,4,3,0 +BRDA:89,4,4,0 +BRDA:95,5,0,1 +BRDA:95,5,1,1 +BRDA:95,5,2,0 +BRDA:95,5,3,0 +BRDA:95,5,4,0 +BRDA:101,6,0,1 +BRDA:101,6,1,1 +BRDA:101,6,2,0 +BRDA:101,6,3,0 +BRDA:101,6,4,0 +BRDA:136,7,0,0 +BRDA:136,7,1,0 +BRF:25 +BRH:9 +end_of_record +TN: +SF:components\avatar\index.tsx +FN:39,(anonymous_0) +FN:57,(anonymous_1) +FN:61,(anonymous_2) +FN:66,(anonymous_3) +FN:74,(anonymous_4) +FN:117,(anonymous_5) +FNF:6 +FNH:5 +FNDA:1,(anonymous_0) +FNDA:1,(anonymous_1) +FNDA:2,(anonymous_2) +FNDA:1,(anonymous_3) +FNDA:1,(anonymous_4) +FNDA:0,(anonymous_5) +DA:33,1 +DA:36,1 +DA:39,1 +DA:40,1 +DA:42,0 +DA:49,0 +DA:53,1 +DA:57,1 +DA:58,1 +DA:61,2 +DA:66,1 +DA:72,1 +DA:74,1 +DA:86,1 +DA:88,1 +DA:90,1 +DA:91,1 +DA:93,1 +DA:94,1 +DA:96,1 +DA:112,1 +DA:114,1 +DA:115,1 +DA:117,1 +DA:121,0 +DA:123,1 +DA:167,1 +LF:27 +LH:24 +BRDA:40,0,0,0 +BRDA:40,0,1,0 +BRDA:40,0,2,1 +BRDA:81,1,0,1 +BRDA:93,2,0,0 +BRDA:93,2,1,1 +BRDA:94,3,0,0 +BRDA:94,3,1,1 +BRDA:96,4,0,0 +BRDA:96,4,1,1 +BRDA:97,5,0,0 +BRDA:97,5,1,0 +BRDA:104,6,0,1 +BRDA:104,6,1,0 +BRDA:106,7,0,0 +BRDA:106,7,1,0 +BRDA:114,8,0,0 +BRDA:114,8,1,1 +BRDA:115,9,0,0 +BRDA:115,9,1,1 +BRDA:127,10,0,1 +BRDA:127,10,1,0 +BRDA:132,11,0,0 +BRDA:132,11,1,1 +BRDA:132,12,0,1 +BRDA:132,12,1,0 +BRDA:142,13,0,1 +BRDA:142,13,1,1 +BRDA:152,14,0,1 +BRDA:152,14,1,0 +BRF:30 +BRH:14 +end_of_record +TN: +SF:components\avatar\svg\index.ts +FNF:0 +FNH:0 +LF:0 +LH:0 +BRF:0 +BRH:0 +end_of_record +TN: +SF:components\box\Box.styled.ts +FN:11,(anonymous_0) +FN:13,(anonymous_1) +FN:14,(anonymous_2) +FN:15,(anonymous_3) +FN:18,(anonymous_4) +FN:65,(anonymous_5) +FN:66,(anonymous_6) +FN:67,(anonymous_7) +FN:69,(anonymous_8) +FN:70,(anonymous_9) +FN:71,(anonymous_10) +FN:72,(anonymous_11) +FN:73,(anonymous_12) +FN:75,(anonymous_13) +FN:77,(anonymous_14) +FN:79,(anonymous_15) +FN:80,(anonymous_16) +FN:81,(anonymous_17) +FN:82,(anonymous_18) +FN:83,(anonymous_19) +FN:86,(anonymous_20) +FN:88,(anonymous_21) +FN:90,(anonymous_22) +FN:92,(anonymous_23) +FN:93,(anonymous_24) +FN:98,(anonymous_25) +FN:100,(anonymous_26) +FN:102,(anonymous_27) +FN:104,(anonymous_28) +FN:106,(anonymous_29) +FN:108,(anonymous_30) +FN:110,(anonymous_31) +FN:111,(anonymous_32) +FN:114,(anonymous_33) +FN:116,(anonymous_34) +FN:117,(anonymous_35) +FN:127,(anonymous_36) +FN:128,(anonymous_37) +FN:136,(anonymous_38) +FN:142,(anonymous_39) +FNF:40 +FNH:21 +FNDA:0,(anonymous_0) +FNDA:0,(anonymous_1) +FNDA:0,(anonymous_2) +FNDA:0,(anonymous_3) +FNDA:0,(anonymous_4) +FNDA:1,(anonymous_5) +FNDA:0,(anonymous_6) +FNDA:0,(anonymous_7) +FNDA:0,(anonymous_8) +FNDA:0,(anonymous_9) +FNDA:0,(anonymous_10) +FNDA:0,(anonymous_11) +FNDA:0,(anonymous_12) +FNDA:0,(anonymous_13) +FNDA:0,(anonymous_14) +FNDA:0,(anonymous_15) +FNDA:0,(anonymous_16) +FNDA:0,(anonymous_17) +FNDA:0,(anonymous_18) +FNDA:0,(anonymous_19) +FNDA:1,(anonymous_20) +FNDA:1,(anonymous_21) +FNDA:1,(anonymous_22) +FNDA:1,(anonymous_23) +FNDA:1,(anonymous_24) +FNDA:1,(anonymous_25) +FNDA:1,(anonymous_26) +FNDA:1,(anonymous_27) +FNDA:1,(anonymous_28) +FNDA:1,(anonymous_29) +FNDA:1,(anonymous_30) +FNDA:1,(anonymous_31) +FNDA:1,(anonymous_32) +FNDA:1,(anonymous_33) +FNDA:1,(anonymous_34) +FNDA:1,(anonymous_35) +FNDA:1,(anonymous_36) +FNDA:1,(anonymous_37) +FNDA:1,(anonymous_38) +FNDA:1,(anonymous_39) +DA:11,1 +DA:12,0 +DA:13,1 +DA:14,1 +DA:15,1 +DA:16,0 +DA:18,1 +DA:24,0 +DA:26,0 +DA:27,0 +DA:30,0 +DA:31,0 +DA:38,0 +DA:39,0 +DA:46,0 +DA:47,0 +DA:54,0 +DA:55,0 +DA:62,0 +DA:65,1 +DA:66,1 +DA:67,1 +DA:68,0 +DA:69,1 +DA:70,1 +DA:71,1 +DA:72,1 +DA:73,1 +DA:74,0 +DA:75,1 +DA:76,0 +DA:77,1 +DA:78,0 +DA:79,1 +DA:80,1 +DA:81,1 +DA:82,1 +DA:83,1 +DA:85,1 +DA:86,1 +DA:88,1 +DA:90,1 +DA:92,1 +DA:94,1 +DA:98,1 +DA:100,1 +DA:102,1 +DA:104,1 +DA:106,1 +DA:108,1 +DA:110,1 +DA:112,1 +DA:114,1 +DA:116,1 +DA:118,1 +DA:127,1 +DA:129,1 +DA:137,1 +DA:142,1 +LF:59 +LH:41 +BRDA:22,0,0,0 +BRDA:26,1,0,0 +BRDA:26,1,1,0 +BRDA:30,2,0,0 +BRDA:30,2,1,0 +BRDA:38,3,0,0 +BRDA:38,3,1,0 +BRDA:46,4,0,0 +BRDA:46,4,1,0 +BRDA:54,5,0,0 +BRDA:54,5,1,0 +BRDA:86,6,0,1 +BRDA:86,6,1,0 +BRDA:88,7,0,1 +BRDA:88,7,1,0 +BRDA:90,8,0,1 +BRDA:90,8,1,0 +BRDA:92,9,0,1 +BRDA:92,9,1,0 +BRDA:94,10,0,1 +BRDA:94,10,1,0 +BRDA:98,11,0,1 +BRDA:98,11,1,1 +BRDA:100,12,0,1 +BRDA:100,12,1,0 +BRDA:102,13,0,1 +BRDA:102,13,1,0 +BRDA:104,14,0,1 +BRDA:104,14,1,0 +BRDA:106,15,0,1 +BRDA:106,15,1,0 +BRDA:108,16,0,1 +BRDA:108,16,1,0 +BRDA:110,17,0,1 +BRDA:110,17,1,0 +BRDA:112,18,0,1 +BRDA:112,18,1,0 +BRDA:114,19,0,1 +BRDA:114,19,1,0 +BRDA:116,20,0,1 +BRDA:116,20,1,0 +BRDA:118,21,0,1 +BRDA:118,21,1,0 +BRDA:127,22,0,1 +BRDA:127,22,1,0 +BRDA:129,23,0,1 +BRDA:129,23,1,0 +BRDA:137,24,0,1 +BRDA:137,24,1,0 +BRDA:142,25,0,1 +BRDA:142,25,1,0 +BRF:51 +BRH:21 +end_of_record +TN: +SF:components\box\index.tsx +FN:5,Box +FNF:1 +FNH:1 +FNDA:1,Box +DA:6,1 +DA:7,1 +DA:10,1 +LF:3 +LH:3 +BRDA:7,0,0,1 +BRDA:7,0,1,1 +BRF:2 +BRH:2 +end_of_record +TN: +SF:components\icon-button\IconButton.styled.ts +FN:6,(anonymous_0) +FN:7,(anonymous_1) +FN:8,(anonymous_2) +FN:13,(anonymous_3) +FN:36,(anonymous_4) +FNF:5 +FNH:5 +FNDA:2,(anonymous_0) +FNDA:2,(anonymous_1) +FNDA:2,(anonymous_2) +FNDA:2,(anonymous_3) +FNDA:2,(anonymous_4) +DA:5,2 +DA:6,2 +DA:7,2 +DA:9,2 +DA:14,2 +DA:37,2 +DA:61,2 +LF:7 +LH:7 +BRDA:6,0,0,2 +BRDA:6,0,1,0 +BRDA:7,1,0,2 +BRDA:7,1,1,0 +BRDA:9,2,0,2 +BRDA:9,2,1,0 +BRDA:9,3,0,2 +BRDA:9,3,1,2 +BRDA:14,4,0,2 +BRDA:14,4,1,0 +BRDA:22,5,0,0 +BRDA:22,5,1,0 +BRDA:28,6,0,0 +BRDA:28,6,1,0 +BRDA:30,7,0,0 +BRDA:30,7,1,0 +BRDA:37,8,0,2 +BRDA:37,8,1,2 +BRDA:37,8,2,2 +BRDA:46,9,0,2 +BRDA:46,9,1,1 +BRDA:52,10,0,0 +BRDA:52,10,1,2 +BRDA:54,11,0,2 +BRDA:54,11,1,1 +BRF:25 +BRH:14 +end_of_record +TN: +SF:components\icon-button\index.tsx +FN:7,(anonymous_0) +FN:40,(anonymous_1) +FN:54,(anonymous_2) +FN:63,(anonymous_3) +FN:77,(anonymous_4) +FN:100,(anonymous_5) +FN:105,(anonymous_6) +FNF:7 +FNH:2 +FNDA:2,(anonymous_0) +FNDA:0,(anonymous_1) +FNDA:0,(anonymous_2) +FNDA:0,(anonymous_3) +FNDA:0,(anonymous_4) +FNDA:0,(anonymous_5) +FNDA:1,(anonymous_6) +DA:7,2 +DA:35,2 +DA:36,2 +DA:40,2 +DA:41,0 +DA:43,0 +DA:44,0 +DA:45,0 +DA:47,0 +DA:48,0 +DA:51,0 +DA:54,2 +DA:55,0 +DA:57,0 +DA:58,0 +DA:60,0 +DA:63,2 +DA:64,0 +DA:66,0 +DA:67,0 +DA:68,0 +DA:70,0 +DA:71,0 +DA:74,0 +DA:77,2 +DA:78,0 +DA:80,0 +DA:82,0 +DA:83,0 +DA:84,0 +DA:86,0 +DA:87,0 +DA:90,0 +DA:91,0 +DA:93,0 +DA:94,0 +DA:96,0 +DA:100,2 +DA:101,0 +DA:102,0 +DA:105,2 +DA:106,1 +DA:107,1 +DA:110,2 +DA:143,2 +LF:45 +LH:13 +BRDA:41,0,0,0 +BRDA:41,0,1,0 +BRDA:43,1,0,0 +BRDA:43,1,1,0 +BRDA:44,2,0,0 +BRDA:44,2,1,0 +BRDA:45,3,0,0 +BRDA:45,3,1,0 +BRDA:48,4,0,0 +BRDA:48,4,1,0 +BRDA:55,5,0,0 +BRDA:55,5,1,0 +BRDA:64,6,0,0 +BRDA:64,6,1,0 +BRDA:66,7,0,0 +BRDA:66,7,1,0 +BRDA:67,8,0,0 +BRDA:67,8,1,0 +BRDA:68,9,0,0 +BRDA:68,9,1,0 +BRDA:71,10,0,0 +BRDA:71,10,1,0 +BRDA:78,11,0,0 +BRDA:78,11,1,0 +BRDA:80,12,0,0 +BRDA:80,12,1,0 +BRDA:80,12,2,0 +BRDA:82,13,0,0 +BRDA:82,13,1,0 +BRDA:83,14,0,0 +BRDA:83,14,1,0 +BRDA:84,15,0,0 +BRDA:84,15,1,0 +BRDA:87,16,0,0 +BRDA:87,16,1,0 +BRDA:101,17,0,0 +BRDA:101,17,1,0 +BRDA:107,18,0,1 +BRDA:107,18,1,1 +BRDA:121,19,0,2 +BRDA:121,19,1,2 +BRDA:133,20,0,2 +BRDA:133,20,1,2 +BRF:43 +BRH:6 +end_of_record +TN: +SF:components\link\Link.enums.ts +FNF:0 +FNH:0 +LF:0 +LH:0 +BRF:0 +BRH:0 +end_of_record +TN: +SF:components\link\Link.styled.tsx +FN:10,(anonymous_0) +FN:15,(anonymous_1) +FN:21,(anonymous_2) +FN:28,(anonymous_3) +FN:30,(anonymous_4) +FN:37,(anonymous_5) +FN:39,(anonymous_6) +FN:40,(anonymous_7) +FN:46,(anonymous_8) +FN:49,(anonymous_9) +FN:51,(anonymous_10) +FNF:11 +FNH:11 +FNDA:2,(anonymous_0) +FNDA:1,(anonymous_1) +FNDA:1,(anonymous_2) +FNDA:1,(anonymous_3) +FNDA:1,(anonymous_4) +FNDA:1,(anonymous_5) +FNDA:1,(anonymous_6) +FNDA:1,(anonymous_7) +FNDA:1,(anonymous_8) +FNDA:1,(anonymous_9) +FNDA:1,(anonymous_10) +DA:9,1 +DA:10,2 +DA:13,1 +DA:16,1 +DA:21,1 +DA:25,1 +DA:27,1 +DA:28,1 +DA:31,1 +DA:37,1 +DA:39,1 +DA:41,1 +DA:46,1 +DA:49,1 +DA:52,1 +DA:59,1 +LF:16 +LH:16 +BRDA:10,0,0,2 +BRDA:10,0,1,0 +BRDA:16,1,0,1 +BRDA:16,1,1,0 +BRDA:31,2,0,0 +BRDA:31,2,1,1 +BRDA:39,3,0,1 +BRDA:39,3,1,0 +BRDA:41,4,0,0 +BRDA:41,4,1,1 +BRDA:46,5,0,1 +BRDA:46,5,1,1 +BRDA:49,6,0,1 +BRDA:49,6,1,1 +BRDA:49,6,2,0 +BRDA:52,7,0,1 +BRDA:52,7,1,0 +BRF:17 +BRH:10 +end_of_record +TN: +SF:components\link\index.tsx +FN:9,(anonymous_0) +FNF:1 +FNH:1 +FNDA:1,(anonymous_0) +DA:9,1 +DA:16,1 +DA:31,1 +LF:3 +LH:3 +BRDA:21,0,0,1 +BRDA:21,0,1,1 +BRF:2 +BRH:2 +end_of_record +TN: +SF:components\portal\index.ts +FN:11,(anonymous_0) +FN:14,(anonymous_1) +FN:22,(anonymous_2) +FNF:3 +FNH:3 +FNDA:2,(anonymous_0) +FNDA:2,(anonymous_1) +FNDA:2,(anonymous_2) +DA:11,2 +DA:12,2 +DA:14,2 +DA:15,2 +DA:22,2 +DA:23,2 +DA:24,1 +DA:28,2 +DA:33,2 +LF:9 +LH:9 +BRDA:16,0,0,2 +BRDA:16,0,1,2 +BRDA:16,0,2,2 +BRDA:23,1,0,1 +BRDA:23,1,1,1 +BRDA:23,2,0,2 +BRDA:23,2,1,2 +BRDA:28,3,0,1 +BRDA:28,3,1,1 +BRDA:28,4,0,2 +BRDA:28,4,1,2 +BRDA:29,5,0,1 +BRDA:29,5,1,1 +BRF:13 +BRH:13 +end_of_record +TN: +SF:components\scrollbar\Scrollbar.enums.ts +FNF:0 +FNH:0 +LF:0 +LH:0 +BRF:0 +BRH:0 +end_of_record +TN: +SF:components\scrollbar\Scrollbar.styled.ts +FN:10,(anonymous_0) +FN:20,(anonymous_1) +FN:25,(anonymous_2) +FNF:3 +FNH:3 +FNDA:2,(anonymous_0) +FNDA:2,(anonymous_1) +FNDA:2,(anonymous_2) +DA:5,2 +DA:11,2 +DA:21,2 +DA:26,2 +DA:32,2 +LF:5 +LH:5 +BRDA:11,0,0,0 +BRDA:11,0,1,2 +BRDA:26,1,0,0 +BRDA:26,1,1,2 +BRF:4 +BRH:2 +end_of_record +TN: +SF:components\scrollbar\index.tsx +FN:100,(anonymous_0) +FN:124,(anonymous_1) +FN:130,(anonymous_2) +FN:131,(anonymous_3) +FN:136,(anonymous_4) +FN:138,(anonymous_5) +FN:143,(anonymous_6) +FN:149,(anonymous_7) +FN:167,(anonymous_8) +FN:181,(anonymous_9) +FN:182,(anonymous_10) +FNF:11 +FNH:4 +FNDA:2,(anonymous_0) +FNDA:0,(anonymous_1) +FNDA:0,(anonymous_2) +FNDA:0,(anonymous_3) +FNDA:0,(anonymous_4) +FNDA:0,(anonymous_5) +FNDA:0,(anonymous_6) +FNDA:0,(anonymous_7) +FNDA:4,(anonymous_8) +FNDA:2,(anonymous_9) +FNDA:2,(anonymous_10) +DA:12,2 +DA:100,2 +DA:110,2 +DA:112,2 +DA:114,2 +DA:116,2 +DA:117,2 +DA:118,2 +DA:120,2 +DA:122,2 +DA:124,2 +DA:125,0 +DA:127,0 +DA:130,2 +DA:131,0 +DA:132,0 +DA:136,2 +DA:138,2 +DA:139,0 +DA:140,0 +DA:143,2 +DA:144,0 +DA:146,0 +DA:149,2 +DA:150,0 +DA:152,0 +DA:155,2 +DA:158,2 +DA:159,2 +DA:167,2 +DA:170,4 +DA:171,4 +DA:181,2 +DA:182,2 +DA:183,2 +DA:187,2 +DA:193,2 +DA:245,2 +DA:247,2 +LF:39 +LH:29 +BRDA:122,0,0,2 +BRDA:122,0,1,0 +BRDA:125,1,0,0 +BRDA:125,1,1,0 +BRDA:139,2,0,0 +BRDA:139,2,1,0 +BRDA:155,3,0,0 +BRDA:155,3,1,2 +BRDA:158,4,0,0 +BRDA:158,4,1,2 +BRDA:159,5,0,0 +BRDA:159,5,1,2 +BRDA:161,6,0,0 +BRDA:161,6,1,0 +BRDA:174,7,0,4 +BRDA:174,7,1,0 +BRDA:174,8,0,4 +BRDA:174,8,1,4 +BRDA:183,9,0,0 +BRDA:183,9,1,2 +BRDA:187,10,0,0 +BRDA:187,10,1,2 +BRDA:210,11,0,2 +BRDA:210,11,1,2 +BRDA:210,12,0,0 +BRDA:210,12,1,2 +BRDA:211,13,0,2 +BRDA:211,13,1,0 +BRDA:211,14,0,0 +BRDA:211,14,1,0 +BRDA:227,15,0,0 +BRDA:227,15,1,2 +BRDA:228,16,0,0 +BRDA:228,16,1,2 +BRF:34 +BRH:15 +end_of_record +TN: +SF:components\text\Text.styled.ts +FN:9,(anonymous_0) +FN:10,(anonymous_1) +FN:12,(anonymous_2) +FN:14,(anonymous_3) +FN:24,(anonymous_4) +FN:27,(anonymous_5) +FN:34,(anonymous_6) +FN:39,(anonymous_7) +FN:44,(anonymous_8) +FN:53,(anonymous_9) +FN:64,(anonymous_10) +FNF:11 +FNH:11 +FNDA:2,(anonymous_0) +FNDA:2,(anonymous_1) +FNDA:2,(anonymous_2) +FNDA:2,(anonymous_3) +FNDA:2,(anonymous_4) +FNDA:2,(anonymous_5) +FNDA:2,(anonymous_6) +FNDA:2,(anonymous_7) +FNDA:2,(anonymous_8) +FNDA:2,(anonymous_9) +FNDA:2,(anonymous_10) +DA:8,4 +DA:9,2 +DA:11,2 +DA:13,2 +DA:15,2 +DA:23,4 +DA:24,2 +DA:28,2 +DA:35,2 +DA:40,2 +DA:45,2 +DA:54,2 +DA:59,4 +DA:64,2 +DA:67,4 +LF:15 +LH:15 +BRDA:11,0,0,2 +BRDA:11,0,1,0 +BRDA:13,1,0,0 +BRDA:13,1,1,2 +BRDA:15,2,0,2 +BRDA:15,2,1,0 +BRDA:28,3,0,0 +BRDA:28,3,1,2 +BRDA:30,4,0,0 +BRDA:30,4,1,2 +BRDA:35,5,0,2 +BRDA:35,5,1,0 +BRDA:40,6,0,2 +BRDA:40,6,1,0 +BRDA:45,7,0,0 +BRDA:45,7,1,2 +BRDA:49,8,0,2 +BRDA:49,8,1,0 +BRDA:54,9,0,2 +BRDA:54,9,1,0 +BRDA:64,10,0,2 +BRDA:64,10,1,0 +BRF:22 +BRH:11 +end_of_record +TN: +SF:components\text\index.tsx +FN:6,(anonymous_0) +FNF:1 +FNH:1 +FNDA:2,(anonymous_0) +DA:6,4 +DA:16,2 +DA:30,4 +DA:40,4 +LF:4 +LH:4 +BRDA:22,0,0,1 +BRDA:22,0,1,1 +BRDA:22,1,0,2 +BRDA:22,1,1,2 +BRF:4 +BRH:4 +end_of_record +TN: +SF:components\tooltip\Tooltip.constants.ts +FNF:0 +FNH:0 +DA:1,2 +LF:1 +LH:1 +BRF:0 +BRH:0 +end_of_record +TN: +SF:components\tooltip\Tooltip.styled.ts +FN:7,(anonymous_0) +FN:9,(anonymous_1) +FN:10,(anonymous_2) +FN:11,(anonymous_3) +FN:12,(anonymous_4) +FN:13,(anonymous_5) +FN:14,(anonymous_6) +FN:15,(anonymous_7) +FN:16,(anonymous_8) +FN:20,(anonymous_9) +FN:27,(anonymous_10) +FN:31,(anonymous_11) +FN:34,(anonymous_12) +FN:35,(anonymous_13) +FNF:14 +FNH:14 +FNDA:1,(anonymous_0) +FNDA:1,(anonymous_1) +FNDA:1,(anonymous_2) +FNDA:1,(anonymous_3) +FNDA:1,(anonymous_4) +FNDA:1,(anonymous_5) +FNDA:1,(anonymous_6) +FNDA:1,(anonymous_7) +FNDA:1,(anonymous_8) +FNDA:1,(anonymous_9) +FNDA:1,(anonymous_10) +FNDA:1,(anonymous_11) +FNDA:1,(anonymous_12) +FNDA:1,(anonymous_13) +DA:5,2 +DA:8,1 +DA:9,1 +DA:10,1 +DA:11,1 +DA:12,1 +DA:13,1 +DA:14,1 +DA:15,1 +DA:17,1 +DA:20,1 +DA:27,1 +DA:31,1 +DA:34,1 +DA:36,1 +DA:80,2 +LF:16 +LH:16 +BRDA:8,0,0,0 +BRDA:8,0,1,1 +BRDA:18,1,0,0 +BRDA:18,1,1,1 +BRDA:36,2,0,0 +BRDA:36,2,1,1 +BRF:6 +BRH:3 +end_of_record +TN: +SF:components\tooltip\Tooltip.types.ts +FNF:0 +FNH:0 +LF:0 +LH:0 +BRF:0 +BRH:0 +end_of_record +TN: +SF:components\tooltip\index.tsx +FN:17,(anonymous_0) +FN:54,(anonymous_1) +FNF:2 +FNH:2 +FNDA:1,(anonymous_0) +FNDA:1,(anonymous_1) +DA:17,2 +DA:37,1 +DA:44,1 +DA:49,1 +DA:54,1 +DA:55,1 +DA:95,1 +DA:97,1 +LF:8 +LH:8 +BRDA:19,0,0,1 +BRDA:33,1,0,1 +BRDA:82,2,0,1 +BRDA:82,2,1,1 +BRF:4 +BRH:4 +end_of_record +TN: +SF:constants\commonStyles.ts +FNF:0 +FNH:0 +DA:3,8 +LF:1 +LH:1 +BRF:0 +BRH:0 +end_of_record +TN: +SF:constants\globalColors.ts +FNF:0 +FNH:0 +DA:1,8 +LF:1 +LH:1 +BRF:0 +BRH:0 +end_of_record +TN: +SF:constants\index.ts +FNF:0 +FNH:0 +DA:7,8 +DA:21,8 +DA:23,8 +DA:24,8 +DA:32,8 +DA:38,8 +LF:6 +LH:6 +BRF:0 +BRH:0 +end_of_record +TN: +SF:enums\index.ts +FNF:0 +FNH:0 +LF:0 +LH:0 +BRF:0 +BRH:0 +end_of_record +TN: +SF:themes\base.ts +FN:57,(anonymous_0) +FNF:1 +FNH:1 +FNDA:7,(anonymous_0) +DA:55,7 +DA:57,7 +DA:58,7 +DA:3185,7 +LF:4 +LH:4 +BRF:0 +BRH:0 +end_of_record +TN: +SF:themes\commonTheme.ts +FN:5,(anonymous_0) +FNF:1 +FNH:1 +FNDA:3,(anonymous_0) +DA:1,7 +DA:6,3 +DA:11,3 +DA:14,0 +DA:16,0 +DA:17,0 +DA:20,0 +DA:21,0 +DA:24,0 +LF:9 +LH:3 +BRDA:6,0,0,3 +BRDA:6,0,1,0 +BRDA:7,1,0,3 +BRDA:7,1,1,3 +BRDA:7,1,2,3 +BRDA:7,1,3,3 +BRDA:16,2,0,0 +BRDA:16,2,1,0 +BRDA:20,3,0,0 +BRDA:20,3,1,0 +BRF:10 +BRH:5 +end_of_record +TN: +SF:themes\dark.ts +FNF:0 +FNH:0 +DA:37,7 +DA:39,7 +LF:2 +LH:2 +BRF:0 +BRH:0 +end_of_record +TN: +SF:themes\index.ts +FNF:0 +FNH:0 +LF:0 +LH:0 +BRF:0 +BRH:0 +end_of_record +TN: +SF:utils\array.ts +FN:5,(anonymous_0) +FNF:1 +FNH:0 +FNDA:0,(anonymous_0) +DA:5,7 +DA:6,0 +LF:2 +LH:1 +BRF:0 +BRH:0 +end_of_record +TN: +SF:utils\banner.ts +FN:7,getLanguage +FN:25,(anonymous_1) +FN:48,(anonymous_2) +FN:57,(anonymous_3) +FN:79,(anonymous_4) +FNF:5 +FNH:0 +FNDA:0,getLanguage +FNDA:0,(anonymous_1) +FNDA:0,(anonymous_2) +FNDA:0,(anonymous_3) +FNDA:0,(anonymous_4) +DA:8,0 +DA:9,0 +DA:11,0 +DA:13,0 +DA:15,0 +DA:16,0 +DA:19,0 +DA:21,0 +DA:25,7 +DA:26,0 +DA:27,0 +DA:28,0 +DA:30,0 +DA:36,0 +DA:42,0 +DA:48,0 +DA:49,0 +DA:51,0 +DA:53,0 +DA:55,0 +DA:57,0 +DA:59,0 +DA:61,0 +DA:63,0 +DA:65,0 +DA:67,0 +DA:68,0 +DA:69,0 +DA:71,0 +DA:74,0 +DA:78,0 +DA:79,0 +DA:80,0 +DA:81,0 +DA:85,0 +DA:88,0 +LF:36 +LH:1 +BRDA:9,0,0,0 +BRDA:9,0,1,0 +BRDA:11,1,0,0 +BRDA:11,1,1,0 +BRDA:11,2,0,0 +BRDA:11,2,1,0 +BRDA:15,3,0,0 +BRDA:15,3,1,0 +BRDA:15,4,0,0 +BRDA:15,4,1,0 +BRDA:28,5,0,0 +BRDA:28,5,1,0 +BRDA:30,6,0,0 +BRDA:30,6,1,0 +BRDA:32,7,0,0 +BRDA:32,7,1,0 +BRDA:32,8,0,0 +BRDA:32,8,1,0 +BRDA:36,9,0,0 +BRDA:36,9,1,0 +BRDA:38,10,0,0 +BRDA:38,10,1,0 +BRDA:42,11,0,0 +BRDA:42,11,1,0 +BRDA:44,12,0,0 +BRDA:44,12,1,0 +BRDA:49,13,0,0 +BRDA:49,13,1,0 +BRDA:51,14,0,0 +BRDA:51,14,1,0 +BRDA:53,15,0,0 +BRDA:53,15,1,0 +BRDA:55,16,0,0 +BRDA:55,16,1,0 +BRDA:61,17,0,0 +BRDA:61,17,1,0 +BRDA:67,18,0,0 +BRDA:67,18,1,0 +BRDA:68,19,0,0 +BRDA:68,19,1,0 +BRDA:74,20,0,0 +BRDA:74,20,1,0 +BRDA:74,21,0,0 +BRDA:74,21,1,0 +BRDA:78,22,0,0 +BRDA:78,22,1,0 +BRDA:80,23,0,0 +BRDA:80,23,1,0 +BRF:48 +BRH:0 +end_of_record +TN: +SF:utils\classNames.ts +FN:1,classNames +FN:15,(anonymous_1) +FN:20,(anonymous_2) +FNF:3 +FNH:1 +FNDA:4,classNames +FNDA:0,(anonymous_1) +FNDA:0,(anonymous_2) +DA:2,4 +DA:3,4 +DA:5,4 +DA:6,8 +DA:8,8 +DA:9,4 +DA:10,4 +DA:12,4 +DA:13,0 +DA:16,0 +DA:19,0 +DA:20,0 +DA:26,4 +DA:29,0 +LF:14 +LH:9 +BRDA:2,0,0,4 +BRDA:2,0,1,0 +BRDA:8,1,0,4 +BRDA:8,1,1,4 +BRDA:9,2,0,4 +BRDA:9,2,1,0 +BRDA:9,3,0,4 +BRDA:9,3,1,0 +BRDA:12,4,0,0 +BRDA:12,4,1,4 +BRDA:13,5,0,0 +BRDA:13,5,1,0 +BRDA:16,6,0,0 +BRDA:16,6,1,0 +BRDA:19,7,0,0 +BRDA:19,7,1,0 +BRF:16 +BRH:6 +end_of_record +TN: +SF:utils\common-icons-style.ts +FN:19,(anonymous_0) +FN:75,(anonymous_1) +FNF:2 +FNH:0 +FNDA:0,(anonymous_0) +FNDA:0,(anonymous_1) +DA:19,7 +DA:20,0 +DA:22,0 +DA:29,0 +DA:40,0 +DA:51,0 +DA:63,0 +DA:72,7 +DA:75,0 +LF:9 +LH:2 +BRDA:20,0,0,0 +BRDA:20,0,1,0 +BRDA:20,0,2,0 +BRDA:20,0,3,0 +BRDA:20,0,4,0 +BRDA:20,0,5,0 +BRF:6 +BRH:0 +end_of_record +TN: +SF:utils\context.ts +FNF:0 +FNH:0 +DA:3,7 +DA:5,7 +DA:7,7 +LF:3 +LH:3 +BRF:0 +BRH:0 +end_of_record +TN: +SF:utils\cookie.ts +FN:3,getCookie +FNF:1 +FNH:0 +FNDA:0,getCookie +DA:4,0 +DA:11,0 +LF:2 +LH:0 +BRDA:11,0,0,0 +BRDA:11,0,1,0 +BRF:2 +BRH:0 +end_of_record +TN: +SF:utils\device.ts +FN:3,checkIsSSR +FN:25,(anonymous_1) +FN:29,(anonymous_2) +FN:34,(anonymous_3) +FNF:4 +FNH:1 +FNDA:0,checkIsSSR +FNDA:2,(anonymous_1) +FNDA:0,(anonymous_2) +FNDA:0,(anonymous_3) +DA:4,0 +DA:7,7 +DA:13,7 +DA:15,7 +DA:17,7 +DA:19,7 +DA:21,7 +DA:25,7 +DA:26,2 +DA:29,7 +DA:30,0 +DA:31,0 +DA:34,7 +DA:35,0 +DA:36,0 +DA:38,0 +DA:41,7 +LF:17 +LH:11 +BRDA:29,0,0,0 +BRDA:30,1,0,0 +BRDA:30,1,1,0 +BRDA:31,2,0,0 +BRDA:31,2,1,0 +BRDA:35,3,0,0 +BRDA:35,3,1,0 +BRDA:42,4,0,7 +BRDA:42,4,1,7 +BRDA:42,4,2,7 +BRDA:42,4,3,7 +BRF:11 +BRH:4 +end_of_record +TN: +SF:utils\domHelpers.ts +FN:6,(anonymous_0) +FN:17,(anonymous_1) +FN:43,(anonymous_2) +FN:57,(anonymous_3) +FN:70,(anonymous_4) +FN:83,(anonymous_5) +FN:108,(anonymous_6) +FN:116,(anonymous_7) +FN:120,(anonymous_8) +FNF:9 +FNH:0 +FNDA:0,(anonymous_0) +FNDA:0,(anonymous_1) +FNDA:0,(anonymous_2) +FNDA:0,(anonymous_3) +FNDA:0,(anonymous_4) +FNDA:0,(anonymous_5) +FNDA:0,(anonymous_6) +FNDA:0,(anonymous_7) +FNDA:0,(anonymous_8) +DA:2,7 +DA:7,0 +DA:8,0 +DA:9,0 +DA:10,0 +DA:11,0 +DA:12,0 +DA:14,0 +DA:18,0 +DA:19,0 +DA:21,0 +DA:37,0 +DA:44,0 +DA:45,0 +DA:47,0 +DA:48,0 +DA:49,0 +DA:52,0 +DA:54,0 +DA:58,0 +DA:59,0 +DA:60,0 +DA:61,0 +DA:62,0 +DA:63,0 +DA:65,0 +DA:67,0 +DA:71,0 +DA:72,0 +DA:73,0 +DA:74,0 +DA:75,0 +DA:76,0 +DA:78,0 +DA:80,0 +DA:84,0 +DA:85,0 +DA:86,0 +DA:93,0 +DA:94,0 +DA:96,0 +DA:97,0 +DA:98,0 +DA:100,0 +DA:101,0 +DA:103,0 +DA:105,0 +DA:109,0 +DA:111,0 +DA:113,0 +DA:117,0 +DA:121,0 +LF:52 +LH:1 +BRDA:11,0,0,0 +BRDA:11,0,1,0 +BRDA:11,0,2,0 +BRDA:12,1,0,0 +BRDA:12,1,1,0 +BRDA:12,1,2,0 +BRDA:18,2,0,0 +BRDA:18,2,1,0 +BRDA:24,3,0,0 +BRDA:24,3,1,0 +BRDA:24,3,2,0 +BRDA:24,3,3,0 +BRDA:30,4,0,0 +BRDA:30,4,1,0 +BRDA:30,4,2,0 +BRDA:30,4,3,0 +BRDA:44,5,0,0 +BRDA:44,5,1,0 +BRDA:47,6,0,0 +BRDA:47,6,1,0 +BRDA:58,7,0,0 +BRDA:58,7,1,0 +BRDA:71,8,0,0 +BRDA:71,8,1,0 +BRDA:84,9,0,0 +BRDA:84,9,1,0 +BRDA:93,10,0,0 +BRDA:93,10,1,0 +BRDA:109,11,0,0 +BRDA:109,11,1,0 +BRDA:117,12,0,0 +BRDA:117,12,1,0 +BRF:32 +BRH:0 +end_of_record +TN: +SF:utils\event.ts +FN:1,(anonymous_0) +FNF:1 +FNH:0 +FNDA:0,(anonymous_0) +DA:1,7 +DA:5,0 +DA:6,0 +DA:8,0 +LF:4 +LH:1 +BRDA:5,0,0,0 +BRDA:5,0,1,0 +BRF:2 +BRH:0 +end_of_record +TN: +SF:utils\getCorrectDate.ts +FN:3,getCorrectDate +FNF:1 +FNH:0 +FNDA:0,getCorrectDate +DA:4,0 +DA:6,0 +DA:7,0 +DA:9,0 +DA:11,0 +LF:5 +LH:0 +BRDA:4,0,0,0 +BRDA:4,0,1,0 +BRDA:4,1,0,0 +BRDA:4,1,1,0 +BRF:4 +BRH:0 +end_of_record +TN: +SF:utils\index.ts +FN:69,(anonymous_0) +FNF:1 +FNH:0 +FNDA:0,(anonymous_0) +DA:69,7 +DA:70,0 +LF:2 +LH:1 +BRDA:70,0,0,0 +BRDA:70,0,1,0 +BRF:2 +BRH:0 +end_of_record +TN: +SF:utils\objectUtils.ts +FN:2,(anonymous_0) +FNF:1 +FNH:0 +FNDA:0,(anonymous_0) +DA:4,0 +LF:1 +LH:0 +BRDA:4,0,0,0 +BRDA:4,0,1,0 +BRF:2 +BRH:0 +end_of_record +TN: +SF:utils\rtlUtils.ts +FN:4,(anonymous_0) +FN:24,(anonymous_1) +FN:43,(anonymous_2) +FNF:3 +FNH:1 +FNDA:2,(anonymous_0) +FNDA:0,(anonymous_1) +FNDA:0,(anonymous_2) +DA:4,7 +DA:8,2 +DA:10,2 +DA:12,0 +DA:14,0 +DA:16,0 +DA:18,0 +DA:24,7 +DA:28,0 +DA:30,0 +DA:31,0 +DA:33,0 +DA:34,0 +DA:36,0 +DA:37,0 +DA:39,0 +DA:43,7 +DA:47,0 +DA:49,0 +DA:51,0 +DA:54,0 +DA:58,0 +DA:59,0 +DA:63,0 +DA:64,0 +DA:68,0 +DA:69,0 +DA:70,0 +DA:75,0 +LF:29 +LH:5 +BRDA:8,0,0,0 +BRDA:8,0,1,2 +BRDA:8,1,0,0 +BRDA:8,1,1,0 +BRDA:10,2,0,2 +BRDA:10,2,1,0 +BRDA:12,3,0,0 +BRDA:12,3,1,0 +BRDA:12,3,2,0 +BRDA:28,4,0,0 +BRDA:28,4,1,0 +BRDA:31,5,0,0 +BRDA:31,5,1,0 +BRDA:47,6,0,0 +BRDA:47,6,1,0 +BRDA:51,7,0,0 +BRDA:51,7,1,0 +BRDA:51,7,2,0 +BRDA:51,7,3,0 +BRDA:51,7,4,0 +BRF:20 +BRH:2 +end_of_record +TN: +SF:utils\trimSeparator.ts +FN:3,trimSeparator +FNF:1 +FNH:0 +FNDA:0,trimSeparator +DA:4,0 +DA:6,0 +DA:7,0 +DA:9,0 +DA:10,0 +DA:12,0 +DA:13,0 +DA:14,0 +DA:15,0 +DA:19,0 +DA:21,0 +LF:11 +LH:0 +BRDA:4,0,0,0 +BRDA:4,0,1,0 +BRDA:4,1,0,0 +BRDA:4,1,1,0 +BRDA:4,1,2,0 +BRDA:12,2,0,0 +BRDA:12,2,1,0 +BRDA:12,3,0,0 +BRDA:12,3,1,0 +BRDA:13,4,0,0 +BRDA:13,4,1,0 +BRDA:14,5,0,0 +BRDA:14,5,1,0 +BRDA:19,6,0,0 +BRDA:19,6,1,0 +BRF:15 +BRH:0 +end_of_record +TN: +SF:utils\useClickOutside.ts +FN:4,(anonymous_0) +FN:9,(anonymous_1) +FN:10,(anonymous_2) +FN:16,(anonymous_3) +FNF:4 +FNH:0 +FNDA:0,(anonymous_0) +FNDA:0,(anonymous_1) +FNDA:0,(anonymous_2) +FNDA:0,(anonymous_3) +DA:4,7 +DA:9,0 +DA:10,0 +DA:11,0 +DA:12,0 +DA:13,0 +DA:15,0 +DA:16,0 +DA:17,0 +LF:9 +LH:1 +BRDA:13,0,0,0 +BRDA:13,0,1,0 +BRDA:13,1,0,0 +BRDA:13,1,1,0 +BRF:4 +BRH:0 +end_of_record +TN: +SF:utils\useId.ts +FN:4,(anonymous_0) +FN:16,(anonymous_1) +FN:21,(anonymous_2) +FNF:3 +FNH:0 +FNDA:0,(anonymous_0) +FNDA:0,(anonymous_1) +FNDA:0,(anonymous_2) +DA:3,7 +DA:4,7 +DA:5,0 +DA:7,7 +DA:10,7 +DA:14,7 +DA:16,7 +DA:17,0 +DA:21,0 +DA:22,0 +DA:23,0 +DA:24,0 +DA:27,0 +DA:30,0 +DA:32,0 +LF:15 +LH:6 +BRDA:10,0,0,7 +BRDA:10,0,1,0 +BRDA:10,1,0,7 +BRDA:10,1,1,7 +BRDA:16,2,0,0 +BRDA:18,3,0,0 +BRDA:18,3,1,0 +BRDA:22,4,0,0 +BRDA:22,4,1,0 +BRDA:30,5,0,0 +BRDA:30,5,1,0 +BRDA:32,6,0,0 +BRDA:32,6,1,0 +BRF:13 +BRH:3 +end_of_record +TN: +SF:utils\email\email.ts +FN:17,(anonymous_0) +FN:59,(anonymous_1) +FN:73,(anonymous_2) +FN:77,(anonymous_3) +FN:93,(anonymous_4) +FN:132,(anonymous_5) +FN:154,(anonymous_6) +FN:274,(anonymous_7) +FN:301,(anonymous_8) +FN:331,(anonymous_9) +FN:349,(anonymous_10) +FNF:11 +FNH:11 +FNDA:26,(anonymous_0) +FNDA:43,(anonymous_1) +FNDA:21,(anonymous_2) +FNDA:7,(anonymous_3) +FNDA:25,(anonymous_4) +FNDA:29,(anonymous_5) +FNDA:24,(anonymous_6) +FNDA:29,(anonymous_7) +FNDA:27,(anonymous_8) +FNDA:10,(anonymous_9) +FNDA:8,(anonymous_10) +DA:17,9 +DA:21,26 +DA:23,25 +DA:24,1 +DA:33,24 +DA:34,3 +DA:43,21 +DA:45,21 +DA:68,43 +DA:69,43 +DA:70,43 +DA:73,43 +DA:74,21 +DA:78,7 +DA:79,3 +DA:84,4 +DA:85,3 +DA:86,3 +DA:89,1 +DA:93,9 +DA:94,25 +DA:95,25 +DA:96,25 +DA:97,25 +DA:98,25 +DA:100,25 +DA:101,632 +DA:104,29 +DA:105,28 +DA:106,28 +DA:107,28 +DA:108,28 +DA:110,28 +DA:112,29 +DA:114,21 +DA:118,21 +DA:120,21 +DA:125,25 +DA:126,1 +DA:129,25 +DA:132,9 +DA:133,29 +DA:134,29 +DA:135,29 +DA:140,29 +DA:141,12 +DA:142,12 +DA:144,17 +DA:147,29 +DA:151,29 +DA:154,9 +DA:158,24 +DA:160,24 +DA:165,0 +DA:173,24 +DA:184,0 +DA:192,24 +DA:198,0 +DA:206,24 +DA:211,0 +DA:219,24 +DA:225,0 +DA:233,24 +DA:239,0 +DA:247,24 +DA:253,0 +DA:261,24 +DA:262,0 +DA:271,24 +DA:274,9 +DA:275,29 +DA:276,29 +DA:278,29 +DA:280,29 +DA:281,5 +DA:287,24 +DA:288,24 +DA:291,29 +DA:301,9 +DA:305,27 +DA:306,1 +DA:308,26 +DA:310,26 +DA:311,1 +DA:314,25 +DA:317,25 +DA:319,25 +DA:320,29 +DA:323,25 +DA:331,9 +DA:332,10 +DA:333,10 +DA:335,8 +DA:349,9 +DA:350,8 +DA:351,8 +DA:353,8 +DA:354,8 +DA:356,8 +DA:357,1 +DA:360,7 +LF:101 +LH:93 +BRDA:19,0,0,8 +BRDA:23,1,0,1 +BRDA:23,1,1,24 +BRDA:33,2,0,3 +BRDA:33,2,1,21 +BRDA:68,3,0,43 +BRDA:68,3,1,22 +BRDA:78,4,0,3 +BRDA:78,4,1,4 +BRDA:78,5,0,7 +BRDA:78,5,1,4 +BRDA:80,6,0,3 +BRDA:80,6,1,3 +BRDA:80,6,2,3 +BRDA:84,7,0,3 +BRDA:84,7,1,1 +BRDA:86,8,0,3 +BRDA:86,8,1,3 +BRDA:101,9,0,29 +BRDA:101,9,1,29 +BRDA:101,9,2,21 +BRDA:101,9,3,582 +BRDA:104,10,0,28 +BRDA:104,10,1,1 +BRDA:107,11,0,28 +BRDA:107,11,1,0 +BRDA:114,12,0,21 +BRDA:114,12,1,0 +BRDA:115,13,0,21 +BRDA:115,13,1,21 +BRDA:125,14,0,1 +BRDA:125,14,1,24 +BRDA:135,15,0,29 +BRDA:135,15,1,19 +BRDA:140,16,0,12 +BRDA:140,16,1,17 +BRDA:147,17,0,12 +BRDA:147,17,1,17 +BRDA:160,18,0,0 +BRDA:160,18,1,24 +BRDA:161,19,0,24 +BRDA:161,19,1,7 +BRDA:161,19,2,7 +BRDA:173,20,0,0 +BRDA:173,20,1,24 +BRDA:174,21,0,24 +BRDA:174,21,1,7 +BRDA:174,21,2,7 +BRDA:175,22,0,24 +BRDA:175,22,1,7 +BRDA:175,22,2,7 +BRDA:192,23,0,0 +BRDA:192,23,1,24 +BRDA:193,24,0,24 +BRDA:193,24,1,7 +BRDA:193,24,2,7 +BRDA:193,24,3,0 +BRDA:206,25,0,0 +BRDA:206,25,1,24 +BRDA:207,26,0,24 +BRDA:207,26,1,7 +BRDA:207,26,2,7 +BRDA:219,27,0,0 +BRDA:219,27,1,24 +BRDA:220,28,0,24 +BRDA:220,28,1,7 +BRDA:220,28,2,7 +BRDA:220,28,3,7 +BRDA:233,29,0,0 +BRDA:233,29,1,24 +BRDA:234,30,0,24 +BRDA:234,30,1,7 +BRDA:234,30,2,7 +BRDA:234,30,3,7 +BRDA:247,31,0,0 +BRDA:247,31,1,24 +BRDA:248,32,0,24 +BRDA:248,32,1,7 +BRDA:248,32,2,7 +BRDA:248,32,3,7 +BRDA:261,33,0,0 +BRDA:261,33,1,24 +BRDA:261,34,0,24 +BRDA:261,34,1,24 +BRDA:280,35,0,5 +BRDA:280,35,1,24 +BRDA:280,36,0,29 +BRDA:280,36,1,26 +BRDA:280,36,2,12 +BRDA:288,37,0,0 +BRDA:288,37,1,24 +BRDA:291,38,0,26 +BRDA:291,38,1,3 +BRDA:291,39,0,29 +BRDA:291,39,1,26 +BRDA:291,39,2,26 +BRDA:303,40,0,1 +BRDA:305,41,0,1 +BRDA:305,41,1,26 +BRDA:310,42,0,1 +BRDA:310,42,1,25 +BRDA:310,43,0,26 +BRDA:310,43,1,25 +BRDA:333,44,0,2 +BRDA:333,44,1,8 +BRDA:336,45,0,8 +BRDA:336,45,1,8 +BRDA:336,45,2,8 +BRDA:336,45,3,7 +BRDA:356,46,0,1 +BRDA:356,46,1,7 +BRDA:356,47,0,8 +BRDA:356,47,1,7 +BRF:113 +BRH:101 +end_of_record +TN: +SF:utils\email\emailSettings.ts +FN:4,(anonymous_0) +FN:14,(anonymous_1) +FN:40,(anonymous_2) +FN:44,(anonymous_3) +FN:54,(anonymous_4) +FN:58,(anonymous_5) +FN:68,(anonymous_6) +FN:72,(anonymous_7) +FN:82,(anonymous_8) +FN:86,(anonymous_9) +FN:96,(anonymous_10) +FN:100,(anonymous_11) +FN:110,(anonymous_12) +FN:114,(anonymous_13) +FN:124,(anonymous_14) +FN:128,(anonymous_15) +FN:138,(anonymous_16) +FN:150,(anonymous_17) +FN:160,(anonymous_18) +FN:166,(anonymous_19) +FNF:20 +FNH:20 +FNDA:41,(anonymous_0) +FNDA:2,(anonymous_1) +FNDA:42,(anonymous_2) +FNDA:56,(anonymous_3) +FNDA:35,(anonymous_4) +FNDA:56,(anonymous_5) +FNDA:59,(anonymous_6) +FNDA:52,(anonymous_7) +FNDA:36,(anonymous_8) +FNDA:54,(anonymous_9) +FNDA:33,(anonymous_10) +FNDA:52,(anonymous_11) +FNDA:21,(anonymous_12) +FNDA:52,(anonymous_13) +FNDA:40,(anonymous_14) +FNDA:54,(anonymous_15) +FNDA:3,(anonymous_16) +FNDA:9,(anonymous_17) +FNDA:10,(anonymous_18) +FNDA:29,(anonymous_19) +DA:5,41 +DA:6,41 +DA:7,41 +DA:8,41 +DA:9,41 +DA:10,41 +DA:11,41 +DA:14,9 +DA:18,2 +DA:19,2 +DA:20,2 +DA:29,2 +DA:30,2 +DA:31,11 +DA:33,11 +DA:34,1 +DA:37,1 +DA:41,42 +DA:45,56 +DA:46,55 +DA:48,1 +DA:55,35 +DA:59,56 +DA:60,55 +DA:62,1 +DA:69,59 +DA:73,52 +DA:74,51 +DA:76,1 +DA:83,36 +DA:87,54 +DA:88,53 +DA:90,1 +DA:97,33 +DA:101,52 +DA:102,51 +DA:104,1 +DA:111,21 +DA:115,52 +DA:116,51 +DA:118,1 +DA:125,40 +DA:129,54 +DA:130,53 +DA:132,1 +DA:139,3 +DA:151,9 +DA:152,9 +DA:153,9 +DA:154,9 +DA:155,9 +DA:156,9 +DA:157,9 +DA:160,9 +DA:161,10 +DA:163,4 +DA:165,4 +DA:166,4 +DA:168,29 +DA:169,18 +DA:172,11 +DA:175,4 +LF:62 +LH:62 +BRDA:33,0,0,1 +BRDA:33,0,1,10 +BRDA:45,1,0,55 +BRDA:45,1,1,1 +BRDA:45,2,0,56 +BRDA:45,2,1,56 +BRDA:59,3,0,55 +BRDA:59,3,1,1 +BRDA:59,4,0,56 +BRDA:59,4,1,56 +BRDA:73,5,0,51 +BRDA:73,5,1,1 +BRDA:73,6,0,52 +BRDA:73,6,1,52 +BRDA:87,7,0,53 +BRDA:87,7,1,1 +BRDA:87,8,0,54 +BRDA:87,8,1,54 +BRDA:101,9,0,51 +BRDA:101,9,1,1 +BRDA:101,10,0,52 +BRDA:101,10,1,52 +BRDA:115,11,0,51 +BRDA:115,11,1,1 +BRDA:115,12,0,52 +BRDA:115,12,1,52 +BRDA:129,13,0,53 +BRDA:129,13,1,1 +BRDA:129,14,0,54 +BRDA:129,14,1,54 +BRDA:161,15,0,6 +BRDA:161,15,1,4 +BRDA:163,16,0,0 +BRDA:163,16,1,4 +BRDA:168,17,0,18 +BRDA:168,17,1,11 +BRDA:168,18,0,29 +BRDA:168,18,1,28 +BRF:38 +BRH:37 +end_of_record +TN: +SF:utils\email\index.ts +FNF:0 +FNH:0 +LF:0 +LH:0 +BRF:0 +BRH:0 +end_of_record diff --git a/public/images/form-gallery-error.svg b/public/images/form-gallery-error.svg new file mode 100644 index 0000000000..cec66d489d --- /dev/null +++ b/public/images/form-gallery-error.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/github.dark.react.svg b/public/images/github.dark.react.svg new file mode 100644 index 0000000000..bcce7bd112 --- /dev/null +++ b/public/images/github.dark.react.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/images/github.light.react.svg b/public/images/github.light.react.svg new file mode 100644 index 0000000000..71d5fc1675 --- /dev/null +++ b/public/images/github.light.react.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/images/icons/24/dps.svg b/public/images/icons/24/dps.svg new file mode 100644 index 0000000000..9f2b848206 --- /dev/null +++ b/public/images/icons/24/dps.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/24/dpt.svg b/public/images/icons/24/dpt.svg new file mode 100644 index 0000000000..d53797b467 --- /dev/null +++ b/public/images/icons/24/dpt.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/24/et.svg b/public/images/icons/24/et.svg new file mode 100644 index 0000000000..438066d433 --- /dev/null +++ b/public/images/icons/24/et.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/images/icons/24/ett.svg b/public/images/icons/24/ett.svg new file mode 100644 index 0000000000..bb923d6cdd --- /dev/null +++ b/public/images/icons/24/ett.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/images/icons/24/mhtml.svg b/public/images/icons/24/mhtml.svg new file mode 100644 index 0000000000..95e1a9aad8 --- /dev/null +++ b/public/images/icons/24/mhtml.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/24/stw.svg b/public/images/icons/24/stw.svg new file mode 100644 index 0000000000..1a9e2190fb --- /dev/null +++ b/public/images/icons/24/stw.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/24/sxc.svg b/public/images/icons/24/sxc.svg new file mode 100644 index 0000000000..2ec3fbfeda --- /dev/null +++ b/public/images/icons/24/sxc.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/24/sxi.svg b/public/images/icons/24/sxi.svg new file mode 100644 index 0000000000..de5d5e7cff --- /dev/null +++ b/public/images/icons/24/sxi.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/24/sxw.svg b/public/images/icons/24/sxw.svg new file mode 100644 index 0000000000..0e5f6c15e3 --- /dev/null +++ b/public/images/icons/24/sxw.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/24/wps.svg b/public/images/icons/24/wps.svg new file mode 100644 index 0000000000..1ee3fec61b --- /dev/null +++ b/public/images/icons/24/wps.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/24/wpt.svg b/public/images/icons/24/wpt.svg new file mode 100644 index 0000000000..6f6c44594e --- /dev/null +++ b/public/images/icons/24/wpt.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/32/dps.svg b/public/images/icons/32/dps.svg new file mode 100644 index 0000000000..c42f3cd5bc --- /dev/null +++ b/public/images/icons/32/dps.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/32/dpt.svg b/public/images/icons/32/dpt.svg new file mode 100644 index 0000000000..14f30138f2 --- /dev/null +++ b/public/images/icons/32/dpt.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/32/et.svg b/public/images/icons/32/et.svg new file mode 100644 index 0000000000..e9a38f5a77 --- /dev/null +++ b/public/images/icons/32/et.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/images/icons/32/ett.svg b/public/images/icons/32/ett.svg new file mode 100644 index 0000000000..a2a04d3a02 --- /dev/null +++ b/public/images/icons/32/ett.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/images/icons/32/mhtml.svg b/public/images/icons/32/mhtml.svg new file mode 100644 index 0000000000..d1a69b00a3 --- /dev/null +++ b/public/images/icons/32/mhtml.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/32/stw.svg b/public/images/icons/32/stw.svg new file mode 100644 index 0000000000..4a0f44c6da --- /dev/null +++ b/public/images/icons/32/stw.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/32/sxc.svg b/public/images/icons/32/sxc.svg new file mode 100644 index 0000000000..19337c72d3 --- /dev/null +++ b/public/images/icons/32/sxc.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/32/sxi.svg b/public/images/icons/32/sxi.svg new file mode 100644 index 0000000000..61a07110e7 --- /dev/null +++ b/public/images/icons/32/sxi.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/32/sxw.svg b/public/images/icons/32/sxw.svg new file mode 100644 index 0000000000..375e570b82 --- /dev/null +++ b/public/images/icons/32/sxw.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/32/wps.svg b/public/images/icons/32/wps.svg new file mode 100644 index 0000000000..8446c29c26 --- /dev/null +++ b/public/images/icons/32/wps.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/32/wpt.svg b/public/images/icons/32/wpt.svg new file mode 100644 index 0000000000..6d6aa001b6 --- /dev/null +++ b/public/images/icons/32/wpt.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/64/dps.svg b/public/images/icons/64/dps.svg new file mode 100644 index 0000000000..185d53cff1 --- /dev/null +++ b/public/images/icons/64/dps.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/64/dpt.svg b/public/images/icons/64/dpt.svg new file mode 100644 index 0000000000..06fc613ae2 --- /dev/null +++ b/public/images/icons/64/dpt.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/64/et.svg b/public/images/icons/64/et.svg new file mode 100644 index 0000000000..4c957c8e08 --- /dev/null +++ b/public/images/icons/64/et.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/images/icons/64/ett.svg b/public/images/icons/64/ett.svg new file mode 100644 index 0000000000..76289b30be --- /dev/null +++ b/public/images/icons/64/ett.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/images/icons/64/mhtml.svg b/public/images/icons/64/mhtml.svg new file mode 100644 index 0000000000..f0dae96eea --- /dev/null +++ b/public/images/icons/64/mhtml.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/images/icons/64/stw.svg b/public/images/icons/64/stw.svg new file mode 100644 index 0000000000..e05c5d0ad8 --- /dev/null +++ b/public/images/icons/64/stw.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/64/sxc.svg b/public/images/icons/64/sxc.svg new file mode 100644 index 0000000000..4a721efb5a --- /dev/null +++ b/public/images/icons/64/sxc.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/images/icons/64/sxi.svg b/public/images/icons/64/sxi.svg new file mode 100644 index 0000000000..b242495540 --- /dev/null +++ b/public/images/icons/64/sxi.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/64/sxw.svg b/public/images/icons/64/sxw.svg new file mode 100644 index 0000000000..dabd51b758 --- /dev/null +++ b/public/images/icons/64/sxw.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/64/wps.svg b/public/images/icons/64/wps.svg new file mode 100644 index 0000000000..f1937a916e --- /dev/null +++ b/public/images/icons/64/wps.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/64/wpt.svg b/public/images/icons/64/wpt.svg new file mode 100644 index 0000000000..23c78e6a2f --- /dev/null +++ b/public/images/icons/64/wpt.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/96/dps.svg b/public/images/icons/96/dps.svg new file mode 100644 index 0000000000..46bc521644 --- /dev/null +++ b/public/images/icons/96/dps.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/96/dpt.svg b/public/images/icons/96/dpt.svg new file mode 100644 index 0000000000..5489735cf4 --- /dev/null +++ b/public/images/icons/96/dpt.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/96/et.svg b/public/images/icons/96/et.svg new file mode 100644 index 0000000000..ae72c0275e --- /dev/null +++ b/public/images/icons/96/et.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/96/ett.svg b/public/images/icons/96/ett.svg new file mode 100644 index 0000000000..f3146c209c --- /dev/null +++ b/public/images/icons/96/ett.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/96/mhtml.svg b/public/images/icons/96/mhtml.svg new file mode 100644 index 0000000000..1144414e5a --- /dev/null +++ b/public/images/icons/96/mhtml.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/96/stw.svg b/public/images/icons/96/stw.svg new file mode 100644 index 0000000000..5950e8d89d --- /dev/null +++ b/public/images/icons/96/stw.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/96/sxc.svg b/public/images/icons/96/sxc.svg new file mode 100644 index 0000000000..482b066bba --- /dev/null +++ b/public/images/icons/96/sxc.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/96/sxi.svg b/public/images/icons/96/sxi.svg new file mode 100644 index 0000000000..bad69721fb --- /dev/null +++ b/public/images/icons/96/sxi.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/96/sxw.svg b/public/images/icons/96/sxw.svg new file mode 100644 index 0000000000..8fec2e1ba5 --- /dev/null +++ b/public/images/icons/96/sxw.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/96/wps.svg b/public/images/icons/96/wps.svg new file mode 100644 index 0000000000..e00b0bf016 --- /dev/null +++ b/public/images/icons/96/wps.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/icons/96/wpt.svg b/public/images/icons/96/wpt.svg new file mode 100644 index 0000000000..f255ae2b7b --- /dev/null +++ b/public/images/icons/96/wpt.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/thirdparties/box.svg b/public/images/thirdparties/box.svg index d5cda33a1e..12b96315e9 100644 --- a/public/images/thirdparties/box.svg +++ b/public/images/thirdparties/box.svg @@ -1,3 +1,5 @@ - - + + + + diff --git a/public/images/thirdparties/facebook.svg b/public/images/thirdparties/facebook.svg index 873bbf1011..31265dac29 100644 --- a/public/images/thirdparties/facebook.svg +++ b/public/images/thirdparties/facebook.svg @@ -1,10 +1,12 @@ - - - - - - - - - + + + + + + + + + + + diff --git a/public/images/thirdparties/firebase.svg b/public/images/thirdparties/firebase.svg index f9c7047b79..70d00569ee 100644 --- a/public/images/thirdparties/firebase.svg +++ b/public/images/thirdparties/firebase.svg @@ -1,23 +1,23 @@ - - - + + + - - + + - + - + - + - + - + diff --git a/public/images/thirdparties/google.svg b/public/images/thirdparties/google.svg index 82cfec0e7e..a2825a220a 100644 --- a/public/images/thirdparties/google.svg +++ b/public/images/thirdparties/google.svg @@ -1,8 +1,10 @@ - - - - - - - + + + + + + + + + diff --git a/public/images/thirdparties/linkedin.svg b/public/images/thirdparties/linkedin.svg index 93c1bc4862..2939f5decb 100644 --- a/public/images/thirdparties/linkedin.svg +++ b/public/images/thirdparties/linkedin.svg @@ -1,11 +1,13 @@ - - - - - - - - - - + + + + + + + + + + + + diff --git a/public/images/thirdparties/s3.svg b/public/images/thirdparties/s3.svg index ec6ff2666b..6cfe8eb783 100644 --- a/public/images/thirdparties/s3.svg +++ b/public/images/thirdparties/s3.svg @@ -1,5 +1,7 @@ - - - - + + + + + + diff --git a/public/images/thirdparties/selectel.svg b/public/images/thirdparties/selectel.svg index de7f47c180..085e410058 100644 --- a/public/images/thirdparties/selectel.svg +++ b/public/images/thirdparties/selectel.svg @@ -1,8 +1,10 @@ - - - - - - - + + + + + + + + + diff --git a/public/images/thirdparties/twitter.svg b/public/images/thirdparties/twitter.svg index e50f5c48d6..4e6fc318d0 100644 --- a/public/images/thirdparties/twitter.svg +++ b/public/images/thirdparties/twitter.svg @@ -1,10 +1,12 @@ - - - - - - - - - + + + + + + + + + + + diff --git a/public/locales/ar-SA/Common.json b/public/locales/ar-SA/Common.json index dff041e97d..91fa077dc9 100644 --- a/public/locales/ar-SA/Common.json +++ b/public/locales/ar-SA/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "هل تريد تفعيل الميزات المميزة؟", "Active": "نشط", "AddButton": "إضافة", - "AddFilter": "إضافة فلتر", "Address": "العنوان", "AddUsers": "إضافة مستخدمين", "AdvancedFilter": "خيارات البحث", @@ -118,6 +117,7 @@ "FeedbackAndSupport": "التقييم والدعم", "FillFormButton": "إملأ النموذج", "FirstName": "الاسم الأول", + "Free": "مجانًا", "FreeProFeatures": "الوصول المجاني إلى الميزات المتطورة", "FreeStartupPlan": "خطة {{planName}} المجانية", "FullAccess": "الوصول الكامل", @@ -194,7 +194,7 @@ "PerUserMonth": "<1>{{currencySymbol}}<1>{{price}} لكل مشرف/قوة المستخدم / شهر", "Petabyte": "بيتابايت", "Phone": "هاتف", - "Plugin": "إضافة ", + "Plugins": "الإضافات", "PowerUser": "قوة المستخدم", "PreparationPortalTitle": "جاري استعادة البوابة", "Preview": "معاينة ", diff --git a/public/locales/az/Common.json b/public/locales/az/Common.json index 4b4a3d738b..2932a1eab6 100644 --- a/public/locales/az/Common.json +++ b/public/locales/az/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "Premium funksiyalar aktivləşdirilsin?", "Active": "Aktiv", "AddButton": "Əlavə edin", - "AddFilter": "Filtr əlavə edin", "Address": "Ünvan", "AddUsers": "İstifadəçilərin əlavə edin", "AdvancedFilter": "Axtarış seçimləri", @@ -83,8 +82,6 @@ "Culture_zh-CN": "中文(简体,中国)", "Date": "Tarix", "Delete": "Silin", - "DescriptionOfTheEveryoneRole": "Forma bu otağın bütün iştirakçılarının doldurması üçün açıqdır.", - "DescriptionOfTheRoleQueue": "Birinci rolda olan istifadəçilər tərəfindən doldurulmuş hər bir forma aşağıda sadalanan növbəti istifadəçilərə ötürüləcək.", "Disconnect": "Bağlantını kəs", "DocSpaceAdmin": "DocSpace admini", "DocSpaceOwner": "DocSpace sahibi", @@ -118,6 +115,7 @@ "FeedbackAndSupport": "Rəy və Dəstək", "FillFormButton": "Formu doldurun", "FirstName": "Ad", + "Free": "Ödənişsiz", "FreeProFeatures": "Pro xüsusiyyətlərə pulsuz gir", "FreeStartupPlan": "Pulsuz {{planName}} planı", "FullAccess": "Tam giriş", @@ -197,7 +195,7 @@ "PerUserMonth": "Admin/ekspert istifadəçi /aylıq <1>{{currencySymbol}}<1>{{price}}", "Petabyte": "PB", "Phone": "Nömrə", - "Plugin": "Plugin", + "Plugins": "Pluginlər", "PowerUser": "Ekspert istifadəçi", "PreparationPortalTitle": "Portalın bərpası davam edir", "Preview": "Öncədən bax", diff --git a/public/locales/bg/Common.json b/public/locales/bg/Common.json index bda2ed03dc..bf3326d670 100644 --- a/public/locales/bg/Common.json +++ b/public/locales/bg/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "Да активирате премиум функции?", "Active": "Активен", "AddButton": "Добави", - "AddFilter": "Добави филтър", "Address": "Адрес", "AddUsers": "Добави потребители", "AdvancedFilter": "Опции за търсене", @@ -83,8 +82,6 @@ "Culture_zh-CN": "中文(简体,中国)", "Date": "Дата", "Delete": "Изтрий", - "DescriptionOfTheEveryoneRole": "Формулярът е достъпен за попълване от всички участници в тази стая.", - "DescriptionOfTheRoleQueue": "Всеки формуляр, попълнен от първостепенни потребители, ще отиде на свой ред при следващите потребители, изброени по-долу.", "Disconnect": "Прекъсни връзката", "DocSpaceAdmin": "Администратор на DocSpace", "DocSpaceOwner": "DocSpace собственик", @@ -118,6 +115,7 @@ "FeedbackAndSupport": "Обратна връзка и поддръжка", "FillFormButton": "Попълнете формуляра", "FirstName": "Име", + "Free": "Безплатно", "FreeProFeatures": "Безплатен достъп до професионални функции", "FreeStartupPlan": "Безплатен план за {{planName}}", "FullAccess": "Пълен достъп", @@ -197,7 +195,7 @@ "PerUserMonth": "<1>{{currencySymbol}}<1>{{price}} на администратор/опитен потребител /месец", "Petabyte": "PB", "Phone": "Телефон", - "Plugin": "Плъгин", + "Plugins": "Плъгини", "PowerUser": "Опитен потребител", "PreparationPortalTitle": "Възстановяването на портала е в ход.", "Preview": "Преглед", diff --git a/public/locales/cs/Common.json b/public/locales/cs/Common.json index 70b40f85e4..26dc5781a4 100644 --- a/public/locales/cs/Common.json +++ b/public/locales/cs/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "Aktivovat prémiové funkce?", "Active": "Aktivní", "AddButton": "Přidat", - "AddFilter": "Přidat filtr", "Address": "Adresa", "AddUsers": "Přidat uživatele", "AdvancedFilter": "Možnosti hledání", @@ -83,8 +82,6 @@ "Culture_zh-CN": "中文(简体,中国)", "Date": "Datum", "Delete": "Smazat", - "DescriptionOfTheEveryoneRole": "Formulář mohou vyplnit všichni účastníci této místnosti.", - "DescriptionOfTheRoleQueue": "Každý formulář vyplněný uživateli z první role přejde postupně na další uživatele uvedené níže.", "Disconnect": "Odpojit", "DocSpaceAdmin": "Správce prostoru DocSpace", "DocSpaceOwner": "Majitel DocSpace", @@ -118,6 +115,7 @@ "FeedbackAndSupport": "Zpětná vazba a technická podpora", "FillFormButton": "Vyplňte formulář", "FirstName": "Křestní jméno", + "Free": "Volno", "FreeProFeatures": "Bezplatný přístup k profesionálním funkcím", "FreeStartupPlan": "Bezplatný tarif {{planName}}", "FullAccess": "Plný přístup", @@ -197,7 +195,7 @@ "PerUserMonth": "<1>{{currencySymbol}}<1>{{price}} za administrátora/pověřeného uživatele /měsíc", "Petabyte": "PB", "Phone": "Telefon", - "Plugin": "Zásuvný modul", + "Plugins": "Zásuvné moduly", "PowerUser": "Mocný uživatel", "PreparationPortalTitle": "Probíhá obnova portálu", "Preview": "Náhled", diff --git a/public/locales/de/Common.json b/public/locales/de/Common.json index 65c9d7d65f..a658f920c4 100644 --- a/public/locales/de/Common.json +++ b/public/locales/de/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "Möchten Sie Premium-Funktionen aktivieren?", "Active": "Aktiv", "AddButton": "Hinzufügen", - "AddFilter": "Filter hinzufügen", "Address": "Adresse", "AddUsers": "Benutzer hinzufügen", "AdvancedFilter": "Suchoptionen", @@ -83,8 +82,6 @@ "Culture_zh-CN": "中文(简体,中国)", "Date": "Datum", "Delete": "Löschen", - "DescriptionOfTheEveryoneRole": "Das Formular kann von allen Teilnehmern dieses Raumes ausgefüllt werden.", - "DescriptionOfTheRoleQueue": "Jedes von Benutzern der ersten Rolle ausgefüllte Formular wird der Reihe nach an die unten aufgeführten Benutzer weitergeleitet.", "Disconnect": "Trennen Sie die Verbindung", "DocSpaceAdmin": "DocSpace-Verwaltung", "DocSpaceOwner": "DocSpace-Besitzer", @@ -118,6 +115,7 @@ "FeedbackAndSupport": "Feedback und Support", "FillFormButton": "Formular ausfüllen", "FirstName": "Vorname", + "Free": "Kostenlos", "FreeProFeatures": "Kostenloser Zugang zu den Profi-Funktionen", "FreeStartupPlan": "Kostenloser {{planName}} Plan", "FullAccess": "Voller Zugriff", @@ -197,7 +195,7 @@ "PerUserMonth": "<1>{{currencySymbol}}<1>{{price}} pro Admin/Power-Benutzer/Monat", "Petabyte": "PB", "Phone": "Telefon", - "Plugin": "Plugin", + "Plugins": "Plugins", "PowerUser": "Power-Benutzer", "PreparationPortalTitle": "Wiederherstellung des Portals ist im Gange", "Preview": "Vorschau", diff --git a/public/locales/el-GR/Common.json b/public/locales/el-GR/Common.json index b3f9de71bd..a0d7c689dd 100644 --- a/public/locales/el-GR/Common.json +++ b/public/locales/el-GR/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "Ενεργοποίηση premium λειτουργιών;", "Active": "Ενεργό", "AddButton": "Προσθήκη", - "AddFilter": "Προσθήκη φίλτρου", "Address": "Διεύθυνση", "AddUsers": "Προσθήκη χρηστών", "AdvancedFilter": "Επιλογές αναζήτησης", @@ -83,8 +82,6 @@ "Culture_zh-CN": "中文(简体,中国)", "Date": "Ημερομηνία", "Delete": "Διαγραφή", - "DescriptionOfTheEveryoneRole": "Η φόρμα είναι διαθέσιμη για συμπλήρωση από όλους τους συμμετέχοντες αυτού του δωματίου.", - "DescriptionOfTheRoleQueue": "Κάθε φόρμα που συμπληρώνεται από χρήστες του πρώτου ρόλου θα πηγαίνει με τη σειρά στους επόμενους χρήστες που αναφέρονται παρακάτω.", "Disconnect": "Αποσύνδεση", "DocSpaceAdmin": "Διαχειριστής DocSpace", "DocSpaceOwner": "Ιδιοκτήτης DocSpace", @@ -118,6 +115,7 @@ "FeedbackAndSupport": "Ανατροφοδότηση & Υποστήριξη", "FillFormButton": "Συμπληρώστε τη φόρμα", "FirstName": "Όνομα", + "Free": "Δωρεάν", "FreeProFeatures": "Δωρεάν πρόσβαση στις pro λειτουργίες", "FreeStartupPlan": "Δωρεάν πρόγραμμα {{planName}}", "FullAccess": "Πλήρης πρόσβαση", @@ -197,7 +195,7 @@ "PerUserMonth": "<1>{{currencySymbol}}<1>{{price}} ανά διαχειριστή/χρήστη ισχύος /μήνα", "Petabyte": "PB", "Phone": "Τηλέφωνο", - "Plugin": "Πρόσθετο", + "Plugins": "Πρόσθετα", "PowerUser": "Χρήστης ισχύος", "PreparationPortalTitle": "Η αποκατάσταση της πύλης βρίσκεται σε εξέλιξη", "Preview": "Προεπισκόπηση", diff --git a/public/locales/en/Common.json b/public/locales/en/Common.json index 41589a4245..1eaa471320 100644 --- a/public/locales/en/Common.json +++ b/public/locales/en/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "Activate premium features?", "Active": "Active", "AddButton": "Add", - "AddFilter": "Add filter", "Address": "Address", "AddUsers": "Add users", "AdvancedFilter": "Search options", @@ -91,8 +90,6 @@ "DEC": "DEC", "Delete": "Delete", "Description": "Description", - "DescriptionOfTheEveryoneRole": "The form is available for filling out by all participants of this room.", - "DescriptionOfTheRoleQueue": "Each form filled out by users from the first role will go in turn to the next users listed below.", "Disable": "Disable", "Disconnect": "Disconnect", "DocSpaceAdmin": "DocSpace admin", @@ -136,12 +133,14 @@ "FeedbackAndSupport": "Feedback & Support", "FillFormButton": "Fill in the form", "FirstName": "First name", + "Free": "Free", "FreeProFeatures": "Free access to pro features", "FreeStartupPlan": "Free {{planName}} plan", "FRI": "FRI", "FullAccess": "Full access", "GetMoreOptions": "Get more security and branding options", "Gigabyte": "GB", + "GoBack": "Go back", "GracePeriodActivated": "Grace period activated", "HasFullAccess": "He has full access to the room", "HelpCenter": "Help Center", @@ -191,8 +190,8 @@ "MeLabel": "Me", "Member": "Member", "Members": "Members", - "More": "More", "MON": "MON", + "More": "More", "MoveTo": "Move to", "Name": "Name", "NeedPassword": "You need a password to access the room", @@ -245,7 +244,7 @@ "PerUserMonth": "<1>{{currencySymbol}}<1>{{price}} per admin/power user /month", "Petabyte": "PB", "Phone": "Phone", - "Plugin": "Plugin", + "Plugins": "Plugins", "PowerUser": "Power user", "PreparationPortalTitle": "Portal restoring is underway", "Preview": "Preview", @@ -257,6 +256,7 @@ "PunycodeDomain": "Punycode domains are not supported", "PunycodeLocalPart": "Punycode local part is not supported", "QuotaPaidUserLimitError": "The paid user limit has been reached.", + "ReadInstructions": "Read instructions", "ReconnectStorage": "Reconnect storage", "RecoverDescribeYourProblemPlaceholder": "Describe your problem", "RecoverTitle": "Access recovery", @@ -280,6 +280,7 @@ "SAT": "SAT", "SaveButton": "Save", "SaveHereButton": "Save here", + "SaveToPublicRoom": "Save to Public room", "Search": "Search", "SearchEmptyRoomsDescription": "No rooms match this filter. Try a different one or clear filter to view all rooms.", "SelectAction": "Select", @@ -343,8 +344,8 @@ "UnexpectedError": "An unexpected error occurred. Try again later or contact support.", "Unknown": "Unknown", "UnknownError": "Unknown error", - "Uploader": "Uploader", "UploadDate": "Upload date", + "Uploader": "Uploader", "UseLikePro": "Use ONLYOFFICE like a pro", "User": "User", "UsersInvited": "Users invited", diff --git a/public/locales/es/Common.json b/public/locales/es/Common.json index 0a7b1e703c..87f7147b72 100644 --- a/public/locales/es/Common.json +++ b/public/locales/es/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "¿Activar las características premium?", "Active": "Activo", "AddButton": "Añadir", - "AddFilter": "Añadir filtro", "Address": "Dirección", "AddUsers": "Añadir usuarios", "AdvancedFilter": "Opciones de búsqueda", @@ -83,8 +82,6 @@ "Culture_zh-CN": "中文(简体,中国)", "Date": "Fecha", "Delete": "Eliminar", - "DescriptionOfTheEveryoneRole": "El formulario está disponible para que lo rellenen todos los participantes de esta sala.", - "DescriptionOfTheRoleQueue": "Cada formulario rellenado por los usuarios del primer rol irá a su vez a los siguientes usuarios de la lista.", "Disconnect": "Desconectar", "DocSpaceAdmin": "Administrador de DocSpace", "DocSpaceOwner": "Propietario de DocSpace", @@ -118,6 +115,7 @@ "FeedbackAndSupport": "Sugerencias y ayuda", "FillFormButton": "Rellenar el formulario", "FirstName": "Nombre", + "Free": "Gratis", "FreeProFeatures": "Acceso gratuito a funciones profesionales", "FreeStartupPlan": "Plan gratuito {{planName}}", "FullAccess": "Acceso total", @@ -197,7 +195,7 @@ "PerUserMonth": "<1>{{currencySymbol}}<1>{{price}} por administrador/usuario avanzado/mes", "Petabyte": "PB", "Phone": "Teléfono", - "Plugin": "Plugin", + "Plugins": "Plugins", "PowerUser": "Usuario avanzado", "PreparationPortalTitle": "Restauración de portal está en progreso", "Preview": "Vista previa", diff --git a/public/locales/fi/Common.json b/public/locales/fi/Common.json index 5f7ce5c663..b501371089 100644 --- a/public/locales/fi/Common.json +++ b/public/locales/fi/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "Aktivoi premiumtoiminnot?", "Active": "Aktiivinen", "AddButton": "Lisää", - "AddFilter": "Lisää suodatin", "Address": "Osoite", "AddUsers": "Lisää käyttäjiä", "AdvancedFilter": "Hakuvaihtoehdot", @@ -83,8 +82,6 @@ "Culture_zh-CN": "中文(简体,中国)", "Date": "Päivämäärä", "Delete": "Poista", - "DescriptionOfTheEveryoneRole": "Lomakkeen voivat täyttää kaikki tämän huoneen osallistujat.", - "DescriptionOfTheRoleQueue": "Jokainen ensimmäisen roolin käyttäjien täyttämä lomake siirtyy vuorotellen alla luetelluille käyttäjille.", "Disconnect": "Katkaise", "DocSpaceAdmin": "DocSpace- järjestelmänvalvoja", "DocSpaceOwner": "DocSpace omistaja", @@ -118,6 +115,7 @@ "FeedbackAndSupport": "Palaute & Tuki", "FillFormButton": "Täytä lomake", "FirstName": "Etunimi", + "Free": "Ilmainen", "FreeProFeatures": "Ilmainen pääsy ammattilaistoimintoihin", "FreeStartupPlan": "Ilmainen {{planName}}ohjelma", "FullAccess": "Täysi pääsy", @@ -197,7 +195,7 @@ "PerUserMonth": "<1>{{currencySymbol}}<1>{{price}} per ylläpitäjä/tehokäyttäjä /kuukausi", "Petabyte": "PB", "Phone": "Puhelin", - "Plugin": "Kytkentä", + "Plugins": "Kytkennät", "PowerUser": "Tehokäyttäjä", "PreparationPortalTitle": "Portaalin palautus on käynnissä.", "Preview": "Esikatselu", diff --git a/public/locales/fr/Common.json b/public/locales/fr/Common.json index 4582aaf725..c2f9818857 100644 --- a/public/locales/fr/Common.json +++ b/public/locales/fr/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "Activer les fonctions premium ?", "Active": "Actif", "AddButton": "Ajouter", - "AddFilter": "Ajouter un filtre", "Address": "Adresse", "AddUsers": "Ajouter des utilisateurs", "AdvancedFilter": "Options de recherche", @@ -83,8 +82,6 @@ "Culture_zh-CN": "中文(简体,中国)", "Date": "Date", "Delete": "Supprimer", - "DescriptionOfTheEveryoneRole": "Le formulaire est à la disposition de tous les participants de cette salle.", - "DescriptionOfTheRoleQueue": "Chaque formulaire rempli par les utilisateurs du premier rôle sera transmis à son tour à l'utilisateur suivant dans la liste.", "Disconnect": "Déconnecter", "DocSpaceAdmin": "Administrateur de DocSpace", "DocSpaceOwner": "Propriétaire de DocSpace", @@ -118,6 +115,7 @@ "FeedbackAndSupport": "Commentaires & assistance", "FillFormButton": "Remplissez le formulaire", "FirstName": "Prénom", + "Free": "Gratuit", "FreeProFeatures": "Accès gratuit aux fonctionnalités professionnelles", "FreeStartupPlan": "Plan gratuit {{planName}}", "FullAccess": "Accès complet", @@ -197,7 +195,7 @@ "PerUserMonth": "<1>{{currencySymbol}}<1>{{price}} par administrateur/utilisateur avancé /mois", "Petabyte": "Po", "Phone": "Téléphone", - "Plugin": "Module complémentaire", + "Plugins": "Modules complémentaires", "PowerUser": "Utilisateur avancé", "PreparationPortalTitle": "Restauration du portail est en cours.", "Preview": "Aperçu", diff --git a/public/locales/hy-AM/Common.json b/public/locales/hy-AM/Common.json index 894de5db40..e5279f9077 100644 --- a/public/locales/hy-AM/Common.json +++ b/public/locales/hy-AM/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "Ակտիվացնե՞լ պրեմիում գործառույթները:", "Active": "Ակտիվ", "AddButton": "Հավելել", - "AddFilter": "Հավելել զտիչ", "Address": "Հասցե", "AddUsers": "Հավելել օգտվողներ", "AdvancedFilter": "Որոնման ընտրանքներ", @@ -83,8 +82,6 @@ "Culture_zh-CN": "中文(简体,中国)", "Date": "Ամիս-ամսաթիվ", "Delete": "Ջնջել", - "DescriptionOfTheEveryoneRole": "Ձևաթուղթը հասանելի է այս սենյակի բոլոր մասնակիցների համար:", - "DescriptionOfTheRoleQueue": "Առաջին դերից օգտվողների կողմից լրացված յուրաքանչյուր ձևաթուղթ հերթով կուղղվի ստորև թվարկված հաջորդ օգտվողներին:", "Disconnect": "Ապակապակցել", "DocSpaceAdmin": "DocSpace-ի ադմինիստրատոր", "DocSpaceOwner": "DocSpace-ի տնօրինող", @@ -118,6 +115,7 @@ "FeedbackAndSupport": "Հետադարձ կապ և աջակցություն", "FillFormButton": "Լրացրեք ձևը", "FirstName": "Անուն", + "Free": "Անվճար", "FreeProFeatures": "Անվճար մուտք դեպի պրոֆեսիոնալ հատկություններ", "FreeStartupPlan": "Անվճար {{planName}} ծրագիր", "FullAccess": "Լրիվ մատչում", @@ -197,7 +195,7 @@ "PerUserMonth": "<1>{{currencySymbol}}<1>{{price}} մեկ ադմինիստրատորի / փորձառու օգտագործողի / ամսվա համար", "Petabyte": "PB", "Phone": "Հեռախոս", - "Plugin": "Միացնել", + "Plugins": "Միացումներ", "PowerUser": "Փորձառու օգտագործող", "PreparationPortalTitle": "Պորտալի վերականգնումն ընթացքի մեջ է", "Preview": "Նախադիտել", diff --git a/public/locales/it/Common.json b/public/locales/it/Common.json index 2a6ea16a30..205123c457 100644 --- a/public/locales/it/Common.json +++ b/public/locales/it/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "Attivare le funzionalità premium?", "Active": "Attivo", "AddButton": "Salva", - "AddFilter": "Aggiungi filtro", "Address": "Indirizzo", "AddUsers": "Aggiungi utenti", "AdvancedFilter": "Opzioni di ricerca", @@ -83,8 +82,6 @@ "Culture_zh-CN": "中文(简体,中国)", "Date": "Data", "Delete": "Elimina", - "DescriptionOfTheEveryoneRole": "Il modulo può essere compilato da tutti i partecipanti di questa stanza.", - "DescriptionOfTheRoleQueue": "Ogni modulo compilato dagli utenti del primo ruolo passerà a sua volta agli utenti successivi elencati di seguito.", "Disconnect": "Scollega", "DocSpaceAdmin": "Amministratore di DocSpace", "DocSpaceOwner": "Proprietario di DocSpace", @@ -118,6 +115,7 @@ "FeedbackAndSupport": "Feedback & Supporto", "FillFormButton": "Compilare il modulo", "FirstName": "Nome", + "Free": "Gratuito", "FreeProFeatures": "Accesso gratuito alle funzionalità professionali", "FreeStartupPlan": "Piano {{planName}} gratuito", "FullAccess": "Accesso completo", @@ -197,7 +195,7 @@ "PerUserMonth": "<1>{{currencySymbol}}<1>{{price}} per amministratore/utente esperto /mese", "Petabyte": "PB", "Phone": "Telefono", - "Plugin": "Plugin", + "Plugins": "Plugin", "PowerUser": "Utente esperto", "PreparationPortalTitle": "Ripristino portale in corso.", "Preview": "Anteprima", diff --git a/public/locales/ja-JP/Common.json b/public/locales/ja-JP/Common.json index 9d7b548329..80ec28f9f7 100644 --- a/public/locales/ja-JP/Common.json +++ b/public/locales/ja-JP/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "プレミアム機能を有効にしますか?", "Active": "アクティブ", "AddButton": "追加", - "AddFilter": "フィルターの追加", "Address": "アドレス", "AddUsers": "ユーザーの追加", "AdvancedFilter": "検索オプション", @@ -116,6 +115,7 @@ "FeedbackAndSupport": "フィードバック&サポート", "FillFormButton": "フォームへの入力", "FirstName": "名", + "Free": "無料", "FreeProFeatures": "プロ機能への無料アクセス", "FreeStartupPlan": "無料の {{planName}} プラン", "FullAccess": "フルアクセス可能", @@ -192,7 +192,7 @@ "PerUserMonth": "<1>{{currencySymbol}}<1>{{price}} 管理者 / パワーユザーあたり / 月額", "Petabyte": "PB", "Phone": "電話", - "Plugin": "プラグイン", + "Plugins": "プラグイン", "PowerUser": "パワーユーザー", "PreparationPortalTitle": "ポータルの復元が実施中です。", "Preview": "プレビュー", diff --git a/public/locales/ko-KR/Common.json b/public/locales/ko-KR/Common.json index 79f35af99c..7c10eabcea 100644 --- a/public/locales/ko-KR/Common.json +++ b/public/locales/ko-KR/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "프리미엄 기능을 활성화하시겠습니까?", "Active": "활성", "AddButton": "추가", - "AddFilter": "필터 추가", "Address": "주소", "AddUsers": "사용자 추가", "AdvancedFilter": "검색 옵션", @@ -83,8 +82,6 @@ "Culture_zh-CN": "中文(简体,中国)", "Date": "날짜", "Delete": "삭제", - "DescriptionOfTheEveryoneRole": "이 방의 모든 참가자가 작성할 수 있는 양식입니다.", - "DescriptionOfTheRoleQueue": "첫 번째 역할의 사용자가 작성한 각 양식은 아래 나열된 다음 사용자에게 차례로 전달됩니다.", "Disconnect": "연결 해제", "DocSpaceAdmin": "DocSpace 관리자", "DocSpaceOwner": "DocSpace 소유자", @@ -117,6 +114,7 @@ "FeedbackAndSupport": "피드백 및 지원", "FillFormButton": "양식을 작성해주세요", "FirstName": "이름", + "Free": "무료", "FreeProFeatures": "프로 기능에 대한 무료 액세스", "FreeStartupPlan": "무료 {{planName}} 요금제", "FullAccess": "전체 액세스", @@ -196,7 +194,7 @@ "PerUserMonth": "<1>{{currencySymbol}}<1>{{price}}/관리자, 고급 사용자, 월", "Petabyte": "PB", "Phone": "휴대전화", - "Plugin": "플러그인", + "Plugins": "플러그인", "PowerUser": "고급 사용자", "PreparationPortalTitle": "포털 복원이 진행 중입니다", "Preview": "미리 보기", diff --git a/public/locales/lo-LA/Common.json b/public/locales/lo-LA/Common.json index ca5a4b979f..82ef43f40c 100644 --- a/public/locales/lo-LA/Common.json +++ b/public/locales/lo-LA/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "ເປີດໃຊ້ຄຸນສົມບັດພຣີມຽມ ບໍ່? ", "Active": "ການເຄື່ອນໄຫວ", "AddButton": "ບັນທຶກ", - "AddFilter": "ເພີ່ມການຄົ້ນຫາ", "Address": "ທີ່ຢູ່", "AddUsers": "ເພີ່ມຜູ້ໃຊ້", "AdvancedFilter": "ຕົວເລືອກການຊອກຫາ", @@ -115,6 +114,7 @@ "FeedbackAndSupport": "ຄຳ ຄິດເຫັນແລະການສະ ໜັບ ສະ ໜູນ", "FillFormButton": "ຕື່ມຂໍ້ມູນໃສ່ໃນແບບຟອມ", "FirstName": "ຊື່ແທ້", + "Free": "ຟຣີ", "FreeProFeatures": "ເຂົ້າເຖິງຄຸນສົມບັດມືອາຊີບໄດ້ຟຣີ", "FreeStartupPlan": "{{ planName }} ຟຣີ", "FullAccess": "ການເຂົ້າເຖິງເຕັມຮູບແບບ", @@ -191,7 +191,7 @@ "PerUserMonth": "<1>{{ currencySymbol }}<1>{{price}} ຕໍ່ຜູ້ໃຊ້ admin/ເດືອນ ຫຼື ຜູ້ໃຊ້ທົ່ວໄປ/ຕໍ່ເດືອນ", "Petabyte": "PB", "Phone": "ໂທລະສັບ", - "Plugin": "ປລັກອິນ", + "Plugins": "ປລັກອິນ", "PowerUser": "ຜູ້ໃຊ້ພະລັງງານ", "PreparationPortalTitle": "ກໍາລັງດໍາເນີນການກູ້ຄືນພອດທັອນ", "Preview": "ເບິ່ງຕົວຢ່າງ", diff --git a/public/locales/lv/Common.json b/public/locales/lv/Common.json index 25100adee8..9514ecd475 100644 --- a/public/locales/lv/Common.json +++ b/public/locales/lv/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "Vai aktivizēt Premium funkcijas?", "Active": "Aktīvs", "AddButton": "Pievienot", - "AddFilter": "Pievienot filtru", "Address": "Adrese", "AddUsers": "Pievienot lietotājus", "AdvancedFilter": "Meklēšanas nosacījumi", @@ -83,8 +82,6 @@ "Culture_zh-CN": "中文(简体,中国)", "Date": "Datums", "Delete": "Dzēst", - "DescriptionOfTheEveryoneRole": "Veidlapu var aizpildīt visi šīs telpas dalībnieki.", - "DescriptionOfTheRoleQueue": "Katra veidlapa, ko aizpildījuši pirmās lomas lietotāji, pēc kārtas tiks nodota nākamajiem tālāk norādītajiem lietotājiem.", "Disconnect": "Atvienot", "DocSpaceAdmin": "DocSpace administrators", "DocSpaceOwner": "DocSpace īpašnieks", @@ -117,6 +114,7 @@ "FeedbackAndSupport": "Feedback & Support", "FillFormButton": "Aizpildiet veidlapu", "FirstName": "Vārds", + "Free": "Bezmaksas", "FreeProFeatures": "Bezmaksas piekļuve profesionālajām funkcijām", "FreeStartupPlan": "Bezmaksas {{planName}} plāns", "FullAccess": "Pilna piekļuve", @@ -196,7 +194,7 @@ "PerUserMonth": "<1>{{currencySymbol}} <1>{{price}} vienam administratoram/prasmīgam lietotājam /mēnesī", "Petabyte": "PB", "Phone": "Tālrunis", - "Plugin": "Spraudnis", + "Plugins": "Spraudņi", "PowerUser": "Prasmīgs lietotājs", "PreparationPortalTitle": "Notiek portāla atjaunošana.", "Preview": "Priekšskatīt", diff --git a/public/locales/nl/Common.json b/public/locales/nl/Common.json index 664c46e0c8..391c44448c 100644 --- a/public/locales/nl/Common.json +++ b/public/locales/nl/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "Premium functionaliteiten activeren?", "Active": "Actief", "AddButton": "Toevoegen", - "AddFilter": "Filter toevoegen", "Address": "Adres", "AddUsers": "Gebruikers toevoegen", "AdvancedFilter": "Zoekopties", @@ -83,8 +82,6 @@ "Culture_zh-CN": "中文(简体,中国)", "Date": "Datum", "Delete": "Verwijder", - "DescriptionOfTheEveryoneRole": "Het formulier kan door alle deelnemers van deze kamer worden ingevuld.", - "DescriptionOfTheRoleQueue": "Elk formulier dat door gebruikers van de eerste rol wordt ingevuld, gaat op zijn beurt naar de volgende gebruikers in de lijst.", "Disconnect": "Loskoppelen", "DocSpaceAdmin": "DocSpace beheerder", "DocSpaceOwner": "DocSpace eigenaar", @@ -118,6 +115,7 @@ "FeedbackAndSupport": "Feedback en Support", "FillFormButton": "Vul het formulier in", "FirstName": "Voornaam", + "Free": "Gratis", "FreeProFeatures": "Gratis toegang tot pro functionaliteiten", "FreeStartupPlan": "Gratis {{planName}} plan", "FullAccess": "Volledige toegang", @@ -197,7 +195,7 @@ "PerUserMonth": "<1>{{currencySymbol}}<1>{{price}} per beheerder/power user /maand", "Petabyte": "PB", "Phone": "Telefoon", - "Plugin": "Plug-in", + "Plugins": "Plugins", "PowerUser": "Power user", "PreparationPortalTitle": "Portaal herstel is bezig.", "Preview": "Preview", diff --git a/public/locales/pl/Common.json b/public/locales/pl/Common.json index 78eba154de..3512d773cd 100644 --- a/public/locales/pl/Common.json +++ b/public/locales/pl/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "Aktywować funkcje premium?", "Active": "Aktywny", "AddButton": "Dodaj", - "AddFilter": "Dodaj filtr", "Address": "Alamat", "AddUsers": "Dodaj użytkowników", "AdvancedFilter": "Opções de pesquisa", @@ -83,8 +82,6 @@ "Culture_zh-CN": "中文(简体,中国)", "Date": "Data", "Delete": "Usuń", - "DescriptionOfTheEveryoneRole": "Dany formularz mogą wypełnić wszyscy członkowie tego pokoju.", - "DescriptionOfTheRoleQueue": "Wszystkie formularze wypełnione przez użytkowników z pierwszej roli trafią następnie do kolejnych użytkowników wymienionych poniżej.", "Disconnect": "Rozłącz", "DocSpaceAdmin": "Administrator DocSpace", "DocSpaceOwner": "Właściciel DocSpace", @@ -118,6 +115,7 @@ "FeedbackAndSupport": "Opinie i wsparcie", "FillFormButton": "Wypełnij formularz", "FirstName": "Imię", + "Free": "Darmowy", "FreeProFeatures": "Darmowy dostęp do funkcji pro", "FreeStartupPlan": "Darmowy plan {{planName}}", "FullAccess": "Pełen dostęp", @@ -197,7 +195,7 @@ "PerUserMonth": "<1>{{currencySymbol}}<1>{{price}} na administratora/użytkownika z większą liczbą uprawnień /miesięcznie", "Petabyte": "PB", "Phone": "Telefon", - "Plugin": "Wtyczka", + "Plugins": "Wtyczki", "PowerUser": "Użytkownik z większą liczbą uprawnień", "PreparationPortalTitle": "Odtwarzanie portalu jest w toku.", "Preview": "Podgląd", diff --git a/public/locales/pt-BR/Common.json b/public/locales/pt-BR/Common.json index 343b9295bc..a7ab3995d3 100644 --- a/public/locales/pt-BR/Common.json +++ b/public/locales/pt-BR/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "Ativar recursos premium?", "Active": "Ativar", "AddButton": "Salvar", - "AddFilter": "Adicionar filtro", "Address": "Endereço", "AddUsers": "Adicionar Usuários", "AdvancedFilter": "Opções de pesquisa", @@ -83,8 +82,6 @@ "Culture_zh-CN": "中文(简体,中国)", "Date": "Data", "Delete": "Excluir", - "DescriptionOfTheEveryoneRole": "O formulário está disponível para preenchimento por todos os participantes desta sala.", - "DescriptionOfTheRoleQueue": "Cada formulário preenchido pelos usuários da primeira função irá, por sua vez, para os próximos usuários listados abaixo.", "Disconnect": "Desconectar", "DocSpaceAdmin": "Administrador do DocSpace", "DocSpaceOwner": "Proprietário do DocSpace", @@ -118,6 +115,7 @@ "FeedbackAndSupport": "Feedback e Suporte", "FillFormButton": "Preencher o formulário", "FirstName": "Primeiro nome", + "Free": "Grátis", "FreeProFeatures": "Acesso gratuito a recursos profissionais", "FreeStartupPlan": "Plano gratuito {{planName}}", "FullAccess": "Acesso total", @@ -197,7 +195,7 @@ "PerUserMonth": "<1>{{currencySymbol}}<1>{{price}} por administrador/usuário avançado/mês", "Petabyte": "PB", "Phone": "Telefone", - "Plugin": "Plugin", + "Plugins": "Plugins", "PowerUser": "Usuário avançado", "PreparationPortalTitle": "Restauração do portal está em andamento.", "Preview": "Pré-visualizar", diff --git a/public/locales/pt/Common.json b/public/locales/pt/Common.json index 9ff401eb44..560501262d 100644 --- a/public/locales/pt/Common.json +++ b/public/locales/pt/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "Ativar as funcionalidades premium?", "Active": "Ativo", "AddButton": "Adicionar", - "AddFilter": "Adicionar filtro", "Address": "Endereço", "AddUsers": "Adicionar utilizadores", "AdvancedFilter": "Opções de Procura", @@ -83,8 +82,6 @@ "Culture_zh-CN": "中文(简体,中国)", "Date": "Data", "Delete": "Eliminar", - "DescriptionOfTheEveryoneRole": "O formulário está disponível para ser preenchido por todos os participantes nesta sala.", - "DescriptionOfTheRoleQueue": "Cada formulário preenchido pelos utilizadores da primeira função será enviado para os utilizadores seguintes listados abaixo.", "Disconnect": "Desligar", "DocSpaceAdmin": "Administrador do DocSpace", "DocSpaceOwner": "Proprietário do DocSpace ", @@ -118,6 +115,7 @@ "FeedbackAndSupport": "Feedback e Suporte", "FillFormButton": "Preencha o formulário", "FirstName": "Primeiro nome", + "Free": "Grátis", "FreeProFeatures": "Acesso gratuito às funcionalidades profissionais", "FreeStartupPlan": "Plano gratuito {{planName}}", "FullAccess": "Acesso total", @@ -197,7 +195,7 @@ "PerUserMonth": "<1>{{currencySymbol}}<1>{{price}} por administrador/utilizadores com poder utilizador /mês", "Petabyte": "PB", "Phone": "Telemóvel", - "Plugin": "Plugin", + "Plugins": "Plugins", "PowerUser": "Utilizador com poder", "PreparationPortalTitle": "A restauração do Portal está em curso", "Preview": "Pré-visualizar", diff --git a/public/locales/ro/Common.json b/public/locales/ro/Common.json index dcf0c325f5..d95685f643 100644 --- a/public/locales/ro/Common.json +++ b/public/locales/ro/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "Doriți să activați caracteristicile premium?", "Active": "Activ", "AddButton": "Salvează", - "AddFilter": "Adăugați filtru", "Address": "Adresă", "AddUsers": "Adăugați utilizatorii", "AdvancedFilter": "Opțiuni de căutare", @@ -116,6 +115,7 @@ "FeedbackAndSupport": "Feedback și asistența", "FillFormButton": "Completați formularul", "FirstName": "Prenume", + "Free": "Gratuit", "FreeProFeatures": "Acces gratuit la caracteristicile Pro", "FreeStartupPlan": "Abonament {{planName}} gratuit", "FullAccess": "Acces complet", @@ -192,7 +192,7 @@ "PerUserMonth": "<1>{{currencySymbol}}<1>{{price}} per administrator/utilizator avansat /lună", "Petabyte": "PO", "Phone": "Telefon", - "Plugin": "Plugin", + "Plugins": "Pluginuri", "PowerUser": "Utilizator avansat", "PreparationPortalTitle": "Restaurarea portalului este în curs de desfășurare", "Preview": "Previzualizare", diff --git a/public/locales/ru/Common.json b/public/locales/ru/Common.json index 0b6362bcd1..8fbaada3b0 100644 --- a/public/locales/ru/Common.json +++ b/public/locales/ru/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "Подключить премиум-функции?", "Active": "Активный", "AddButton": "Добавить", - "AddFilter": "Добавить фильтр", "Address": "Адрес", "AddUsers": "Добавить пользователей", "AdvancedFilter": "Параметры поиска", @@ -90,8 +89,6 @@ "DayOfTheWeek": "День недели", "DEC": "Дек", "Delete": "Удалить", - "DescriptionOfTheEveryoneRole": "Форма доступна для заполнения всеми участниками этой комнаты.", - "DescriptionOfTheRoleQueue": "Каждая форма, заполненная пользователями с первой ролью, будет передана по очереди следующим пользователям, указанным ниже.", "Disconnect": "Отключить", "DocSpaceAdmin": "Администратор DocSpace", "DocSpaceOwner": "Владелец DocSpace", @@ -134,12 +131,14 @@ "FeedbackAndSupport": "Обратная связь и поддержка", "FillFormButton": "Заполнить форму", "FirstName": "Имя", + "Free": "Бесплатно", "FreeProFeatures": "Бесплатный доступ к профессиональным функциональным возможностям", "FreeStartupPlan": "Бесплатный {{planName}} план", "FRI": "ПТ", "FullAccess": "Полный доступ", "GetMoreOptions": "Получите больше возможностей безопасности и брендинга", "Gigabyte": "Гб", + "GoBack": "Назад", "GracePeriodActivated": "Активирован льготный период", "HasFullAccess": "У него есть полный доступ в комнату", "HelpCenter": "Справочный центр", @@ -226,7 +225,7 @@ "PerUserMonth": "<1>{{currencySymbol}}<1>{{price}} за администратора/опытного пользователя /месяц", "Petabyte": "Пб", "Phone": "Телефон", - "Plugin": "Плагин", + "Plugins": "Плагины", "PowerUser": "Опытный пользователь", "PreparationPortalTitle": "Выполняется восстановление портала", "Preview": "Просмотр", diff --git a/public/locales/sk/Common.json b/public/locales/sk/Common.json index 2a32ec0d89..cdd336c8ca 100644 --- a/public/locales/sk/Common.json +++ b/public/locales/sk/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "Aktivovať prémiové funkcie?", "Active": "Aktívne", "AddButton": "Pridať", - "AddFilter": "Pridať filter", "Address": "Adresa", "AddUsers": "Pridať používateľov", "AdvancedFilter": "Možnosti vyhľadávania", @@ -83,8 +82,6 @@ "Culture_zh-CN": "中文(简体,中国)", "Date": "Dátum", "Delete": "Odstrániť", - "DescriptionOfTheEveryoneRole": "Formulár môžu vyplniť všetci účastníci tejto miestnosti.", - "DescriptionOfTheRoleQueue": "Každý formulár vyplnený používateľmi, ktorí majú prvú rolu, bude postupne posunutý na ďalších používateľov uvedených nižšie.", "Disconnect": "Odpojiť", "DocSpaceAdmin": "Administrátor DocSpace", "DocSpaceOwner": "Vlastník DocSpace", @@ -118,6 +115,7 @@ "FeedbackAndSupport": "Spätná väzba a Podpora", "FillFormButton": "Vyplň formu", "FirstName": "Krstné meno", + "Free": "Zadarmo", "FreeProFeatures": "Bezplatný prístup k profesionálnym funkciám", "FreeStartupPlan": "Bezplatný {{planName}} plán", "FullAccess": "Úplný prístup", @@ -197,7 +195,7 @@ "PerUserMonth": "<1>{{currencySymbol}}<1>{{price}} za administrátora/mesiac", "Petabyte": "PB", "Phone": "Telefón", - "Plugin": "Plugin", + "Plugins": "Pluginy", "PowerUser": "Pokročilý používateľ", "PreparationPortalTitle": "Prebieha obnova portálu.", "Preview": "Náhľad", diff --git a/public/locales/sl/Common.json b/public/locales/sl/Common.json index c8978586e8..3562ea46b3 100644 --- a/public/locales/sl/Common.json +++ b/public/locales/sl/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "Želite aktivirati premium funkcije?", "Active": "Aktivno", "AddButton": "Dodaj", - "AddFilter": "Dodaj filter", "Address": "Naslov", "AddUsers": "Dodaj uporabnike", "AdvancedFilter": "Možnosti iskanja", @@ -83,8 +82,6 @@ "Culture_zh-CN": "中文(简体,中国)", "Date": "Datum", "Delete": "Izbriši", - "DescriptionOfTheEveryoneRole": "Obrazec je na voljo za izpolnjevanje vsem udeležencem te sobe.", - "DescriptionOfTheRoleQueue": "Vsak obrazec, ki ga izpolnijo uporabniki iz prve skupine, bo šel k naslednjim uporabnikom, navedenim spodaj.", "Disconnect": "Prekinitev", "DocSpaceAdmin": "DocSpace skrbnik", "DocSpaceOwner": "DocSpace lastnik", @@ -118,6 +115,7 @@ "FeedbackAndSupport": "Povratne informacije & Pomoč", "FillFormButton": "Izpolni obrazec", "FirstName": "Ime", + "Free": "Brezplačen", "FreeProFeatures": "Brezplačen dostop do profesionalnih funkcij", "FreeStartupPlan": "Brezplačen {{planName}} paket", "FullAccess": "Poln dostop", @@ -197,7 +195,7 @@ "PerUserMonth": "<1>{{currencySymbol}}<1>{{price}} na skrbnika/naprednega uporabnika/mesec", "Petabyte": "PB", "Phone": "Telefon", - "Plugin": "Vtičnik", + "Plugins": "Vtičniki", "PowerUser": "Napredni uporabnik", "PreparationPortalTitle": "Obnavljanje portala je v teku", "Preview": "Predogled", diff --git a/public/locales/tr/Common.json b/public/locales/tr/Common.json index c7c256e465..84d1d12e2a 100644 --- a/public/locales/tr/Common.json +++ b/public/locales/tr/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "Premium özellikler etkinleştirilsin mi?", "Active": "Etkin", "AddButton": "Ekle", - "AddFilter": "Filtre Ekle", "Address": "Adres", "AddUsers": "Kullanıcılar ekle", "AdvancedFilter": "Arama seçenekleri", @@ -83,8 +82,6 @@ "Culture_zh-CN": "中文(简体,中国)", "Date": "Tarih", "Delete": "Sil", - "DescriptionOfTheEveryoneRole": "Formu, bu odanın tüm katılımcıları doldurabilir.", - "DescriptionOfTheRoleQueue": "İlk roldeki kullanıcılar tarafından doldurulan her form, aşağıda listelenen sonraki kullanıcılara aktarılacaktır.", "Disconnect": "Bağlantıyı kes", "DocSpaceAdmin": "DocSpace yöneticisi", "DocSpaceOwner": "DocSpace sahibi", @@ -118,6 +115,7 @@ "FeedbackAndSupport": "Geri Bildirim & Destek", "FillFormButton": "Formu doldurun", "FirstName": "İsim", + "Free": "Ücretsiz", "FreeProFeatures": "Profesyonel özelliklere ücretsiz erişim", "FreeStartupPlan": "Ücretsiz {{planName}} planı", "FullAccess": "Tam erişim", @@ -197,7 +195,7 @@ "PerUserMonth": "Yönetici/uzman kullanıcı /ay başına <1>{{price}}<1>{{currencySymbol}}", "Petabyte": "PB", "Phone": "Telefon", - "Plugin": "Eklenti", + "Plugins": "Eklentiler", "PowerUser": "Uzman kullanıcı", "PreparationPortalTitle": "Portal geri yükleme yapılıyor.", "Preview": "Önizleme", diff --git a/public/locales/uk-UA/Common.json b/public/locales/uk-UA/Common.json index 46101fc012..49012f3b8c 100644 --- a/public/locales/uk-UA/Common.json +++ b/public/locales/uk-UA/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "Активувати функції преміум?", "Active": "Активний", "AddButton": "Активний", - "AddFilter": "Додати фільтр", "Address": "Адреса", "AddUsers": "Додати користувачів", "AdvancedFilter": "Параметри пошуку", @@ -83,8 +82,6 @@ "Culture_zh-CN": "中文(简体,中国)", "Date": "Дата", "Delete": "Видалити", - "DescriptionOfTheEveryoneRole": "Форма може бути заповнена всіма учасниками в цій кімнаті.", - "DescriptionOfTheRoleQueue": "Кожна форма, заповнена користувачами першої ролі, буде передана наступним користувачам, указаним нижче.", "Disconnect": "Відключити", "DocSpaceAdmin": "Адміністратор DocSpace", "DocSpaceOwner": "Власник DocSpace", @@ -118,6 +115,7 @@ "FeedbackAndSupport": "Відгуки і підтримка", "FillFormButton": "Заповнити форму", "FirstName": "Ім'я", + "Free": "Безкоштовно", "FreeProFeatures": "Безплатний доступ до професійних функцій", "FreeStartupPlan": "Безкоштовний план {{planName}}", "FullAccess": "Повний доступ", @@ -197,7 +195,7 @@ "PerUserMonth": "<1>{{price}}<1>{{currencySymbol}} за адміністратора / досвідченого користувача на місяць", "Petabyte": "ПБ", "Phone": "Телефон", - "Plugin": "Плагін", + "Plugins": "Плагіни", "PowerUser": "Досвідчений користувач", "PreparationPortalTitle": "Портал відновлюється.", "Preview": "Попередній перегляд", diff --git a/public/locales/vi/Common.json b/public/locales/vi/Common.json index 5d835d3cd8..5867945262 100644 --- a/public/locales/vi/Common.json +++ b/public/locales/vi/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "Kích hoạt các tính năng cao cấp?", "Active": "Đang hoạt động", "AddButton": "Thêm vào", - "AddFilter": "Thêm bộ lọc", "Address": "Địa chỉ", "AddUsers": "Thêm người dùng", "AdvancedFilter": "Tùy chọn tìm kiếm", @@ -83,8 +82,6 @@ "Culture_zh-CN": "中文(简体,中国)", "Date": "Ngày", "Delete": "Xóa bỏ", - "DescriptionOfTheEveryoneRole": "Tất cả những người tham gia phòng này đều có thể điền vào biểu mẫu này.", - "DescriptionOfTheRoleQueue": "Mỗi biểu mẫu do người dùng từ vai trò đầu tiên điền sẽ lần lượt chuyển đến những người dùng tiếp theo được liệt kê bên dưới.", "Disconnect": "Ngắt kết nối", "DocSpaceAdmin": "Quản trị viên DocSpace", "DocSpaceOwner": "Chủ sở hữu DocSpace", @@ -118,6 +115,7 @@ "FeedbackAndSupport": "Phản hồi & Hỗ trợ", "FillFormButton": "Điền vào mẫu", "FirstName": "Tên", + "Free": "Miễn phí", "FreeProFeatures": "Truy cập miễn phí vào các tính năng pro", "FreeStartupPlan": "Gói dịch vụ miễn phí {{planName}}", "FullAccess": "Toàn quyền truy cập", @@ -197,7 +195,7 @@ "PerUserMonth": "<1>{{price}} <1>{{currencySymbol}} mỗi quản trị viên/người dùng cấp cao/tháng", "Petabyte": "PB", "Phone": "Điện thoại", - "Plugin": "Plugin", + "Plugins": "Plugins", "PowerUser": "Người dùng cấp cao", "PreparationPortalTitle": "Đang tiến hành khôi phục cổng.", "Preview": "Xem trước", diff --git a/public/locales/zh-CN/Common.json b/public/locales/zh-CN/Common.json index 94cd8095e8..ec2e73a9c8 100644 --- a/public/locales/zh-CN/Common.json +++ b/public/locales/zh-CN/Common.json @@ -9,7 +9,6 @@ "ActivatePremiumFeatures": "要激活高级功能吗?", "Active": "活动", "AddButton": "添加", - "AddFilter": "添加过滤条件", "Address": "地址", "AddUsers": "添加用户", "AdvancedFilter": "搜索选项", @@ -116,6 +115,7 @@ "FeedbackAndSupport": "反馈和支持", "FillFormButton": "\"填写表单,", "FirstName": "名字", + "Free": "免费", "FreeProFeatures": "免费使用专业功能", "FreeStartupPlan": "免费 {{planName}} 版本", "FullAccess": "完全访问权限", @@ -192,7 +192,7 @@ "PerUserMonth": "<1>{{currencySymbol}}<1>{{price}} 每个管理员/高级用户/月", "Petabyte": "PB", "Phone": "电话", - "Plugin": "插件", + "Plugins": "插件", "PowerUser": "高级用户", "PreparationPortalTitle": "门户恢复正在进行中。", "Preview": "预览", diff --git a/public/scripts/browserDetector.js b/public/scripts/browserDetector.js index fd02742d22..a1048aeb41 100644 --- a/public/scripts/browserDetector.js +++ b/public/scripts/browserDetector.js @@ -1123,9 +1123,7 @@ } `; - const version = browserInfo.version; - - const title = `You are using an old version of the app ${version}. Please update ONLYOFFICE Desktop Editors to the latest version to connect to DocSpace.`; + const title = `You are using an old version of the app. Please update ONLYOFFICE Desktop Editors to the latest version to connect to DocSpace.`; const header = `Can’t connect to ${window.location.host}`; const body = ` @@ -1189,7 +1187,7 @@ `; document.head.innerHTML += styles; - document.title = `You are using an old version of the app ${version}. Please update ONLYOFFICE Desktop Editors to the latest version to connect to DocSpace.`; + document.title = `You are using an old version of the app. Please update ONLYOFFICE Desktop Editors to the latest version to connect to DocSpace.`; document.body.innerHTML = body; return; diff --git a/public/scripts/config.json b/public/scripts/config.json index ea3d9589ed..d3c79319b3 100644 --- a/public/scripts/config.json +++ b/public/scripts/config.json @@ -9,7 +9,7 @@ }, "wrongPortalNameUrl": "", "thumbnails1280x720": false, - "pdfViewer": true, + "pdfViewer": false, "pdfViewerUrl": "sdkjs/pdf/src/engine/viewer.js", "imageThumbnails": false, "editor": { diff --git a/yarn.lock b/yarn.lock index 31617c1fa3..b3361d3ac7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -108,395 +108,395 @@ __metadata: linkType: hard "@aws-sdk/client-cloudwatch-logs@npm:^3.297.0": - version: 3.449.0 - resolution: "@aws-sdk/client-cloudwatch-logs@npm:3.449.0" + version: 3.454.0 + resolution: "@aws-sdk/client-cloudwatch-logs@npm:3.454.0" dependencies: "@aws-crypto/sha256-browser": 3.0.0 "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/client-sts": 3.449.0 - "@aws-sdk/core": 3.445.0 - "@aws-sdk/credential-provider-node": 3.449.0 - "@aws-sdk/middleware-host-header": 3.449.0 - "@aws-sdk/middleware-logger": 3.449.0 - "@aws-sdk/middleware-recursion-detection": 3.449.0 - "@aws-sdk/middleware-signing": 3.449.0 - "@aws-sdk/middleware-user-agent": 3.449.0 - "@aws-sdk/region-config-resolver": 3.433.0 - "@aws-sdk/types": 3.449.0 - "@aws-sdk/util-endpoints": 3.449.0 - "@aws-sdk/util-user-agent-browser": 3.449.0 - "@aws-sdk/util-user-agent-node": 3.449.0 - "@smithy/config-resolver": ^2.0.16 - "@smithy/fetch-http-handler": ^2.2.4 - "@smithy/hash-node": ^2.0.12 - "@smithy/invalid-dependency": ^2.0.12 - "@smithy/middleware-content-length": ^2.0.14 - "@smithy/middleware-endpoint": ^2.1.3 - "@smithy/middleware-retry": ^2.0.18 - "@smithy/middleware-serde": ^2.0.12 - "@smithy/middleware-stack": ^2.0.6 - "@smithy/node-config-provider": ^2.1.3 - "@smithy/node-http-handler": ^2.1.8 - "@smithy/protocol-http": ^3.0.8 - "@smithy/smithy-client": ^2.1.12 - "@smithy/types": ^2.4.0 - "@smithy/url-parser": ^2.0.12 - "@smithy/util-base64": ^2.0.0 + "@aws-sdk/client-sts": 3.454.0 + "@aws-sdk/core": 3.451.0 + "@aws-sdk/credential-provider-node": 3.451.0 + "@aws-sdk/middleware-host-header": 3.451.0 + "@aws-sdk/middleware-logger": 3.451.0 + "@aws-sdk/middleware-recursion-detection": 3.451.0 + "@aws-sdk/middleware-signing": 3.451.0 + "@aws-sdk/middleware-user-agent": 3.451.0 + "@aws-sdk/region-config-resolver": 3.451.0 + "@aws-sdk/types": 3.451.0 + "@aws-sdk/util-endpoints": 3.451.0 + "@aws-sdk/util-user-agent-browser": 3.451.0 + "@aws-sdk/util-user-agent-node": 3.451.0 + "@smithy/config-resolver": ^2.0.18 + "@smithy/fetch-http-handler": ^2.2.6 + "@smithy/hash-node": ^2.0.15 + "@smithy/invalid-dependency": ^2.0.13 + "@smithy/middleware-content-length": ^2.0.15 + "@smithy/middleware-endpoint": ^2.2.0 + "@smithy/middleware-retry": ^2.0.20 + "@smithy/middleware-serde": ^2.0.13 + "@smithy/middleware-stack": ^2.0.7 + "@smithy/node-config-provider": ^2.1.5 + "@smithy/node-http-handler": ^2.1.9 + "@smithy/protocol-http": ^3.0.9 + "@smithy/smithy-client": ^2.1.15 + "@smithy/types": ^2.5.0 + "@smithy/url-parser": ^2.0.13 + "@smithy/util-base64": ^2.0.1 "@smithy/util-body-length-browser": ^2.0.0 "@smithy/util-body-length-node": ^2.1.0 - "@smithy/util-defaults-mode-browser": ^2.0.16 - "@smithy/util-defaults-mode-node": ^2.0.21 - "@smithy/util-endpoints": ^1.0.2 - "@smithy/util-retry": ^2.0.5 - "@smithy/util-utf8": ^2.0.0 + "@smithy/util-defaults-mode-browser": ^2.0.19 + "@smithy/util-defaults-mode-node": ^2.0.25 + "@smithy/util-endpoints": ^1.0.4 + "@smithy/util-retry": ^2.0.6 + "@smithy/util-utf8": ^2.0.2 tslib: ^2.5.0 uuid: ^8.3.2 - checksum: 83ff6ab33a175deb9418812390c557409b71937e3a53745db292214f92bcd3a5deb09ff09e4c3cd5500568c9aadac6217093bf244c0e98fff8ce58ae48e4da68 + checksum: 9f7f4f165b455182f2b1389c250da99a7d7708b1bdc4bb9bffb08893b9fb70a06008105c2660f6bd0d5d0b99d31da849ee9cf1ba6e9176e4e7f96c76a9fffb15 languageName: node linkType: hard -"@aws-sdk/client-sso@npm:3.449.0": - version: 3.449.0 - resolution: "@aws-sdk/client-sso@npm:3.449.0" +"@aws-sdk/client-sso@npm:3.451.0": + version: 3.451.0 + resolution: "@aws-sdk/client-sso@npm:3.451.0" dependencies: "@aws-crypto/sha256-browser": 3.0.0 "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/core": 3.445.0 - "@aws-sdk/middleware-host-header": 3.449.0 - "@aws-sdk/middleware-logger": 3.449.0 - "@aws-sdk/middleware-recursion-detection": 3.449.0 - "@aws-sdk/middleware-user-agent": 3.449.0 - "@aws-sdk/region-config-resolver": 3.433.0 - "@aws-sdk/types": 3.449.0 - "@aws-sdk/util-endpoints": 3.449.0 - "@aws-sdk/util-user-agent-browser": 3.449.0 - "@aws-sdk/util-user-agent-node": 3.449.0 - "@smithy/config-resolver": ^2.0.16 - "@smithy/fetch-http-handler": ^2.2.4 - "@smithy/hash-node": ^2.0.12 - "@smithy/invalid-dependency": ^2.0.12 - "@smithy/middleware-content-length": ^2.0.14 - "@smithy/middleware-endpoint": ^2.1.3 - "@smithy/middleware-retry": ^2.0.18 - "@smithy/middleware-serde": ^2.0.12 - "@smithy/middleware-stack": ^2.0.6 - "@smithy/node-config-provider": ^2.1.3 - "@smithy/node-http-handler": ^2.1.8 - "@smithy/protocol-http": ^3.0.8 - "@smithy/smithy-client": ^2.1.12 - "@smithy/types": ^2.4.0 - "@smithy/url-parser": ^2.0.12 - "@smithy/util-base64": ^2.0.0 + "@aws-sdk/core": 3.451.0 + "@aws-sdk/middleware-host-header": 3.451.0 + "@aws-sdk/middleware-logger": 3.451.0 + "@aws-sdk/middleware-recursion-detection": 3.451.0 + "@aws-sdk/middleware-user-agent": 3.451.0 + "@aws-sdk/region-config-resolver": 3.451.0 + "@aws-sdk/types": 3.451.0 + "@aws-sdk/util-endpoints": 3.451.0 + "@aws-sdk/util-user-agent-browser": 3.451.0 + "@aws-sdk/util-user-agent-node": 3.451.0 + "@smithy/config-resolver": ^2.0.18 + "@smithy/fetch-http-handler": ^2.2.6 + "@smithy/hash-node": ^2.0.15 + "@smithy/invalid-dependency": ^2.0.13 + "@smithy/middleware-content-length": ^2.0.15 + "@smithy/middleware-endpoint": ^2.2.0 + "@smithy/middleware-retry": ^2.0.20 + "@smithy/middleware-serde": ^2.0.13 + "@smithy/middleware-stack": ^2.0.7 + "@smithy/node-config-provider": ^2.1.5 + "@smithy/node-http-handler": ^2.1.9 + "@smithy/protocol-http": ^3.0.9 + "@smithy/smithy-client": ^2.1.15 + "@smithy/types": ^2.5.0 + "@smithy/url-parser": ^2.0.13 + "@smithy/util-base64": ^2.0.1 "@smithy/util-body-length-browser": ^2.0.0 "@smithy/util-body-length-node": ^2.1.0 - "@smithy/util-defaults-mode-browser": ^2.0.16 - "@smithy/util-defaults-mode-node": ^2.0.21 - "@smithy/util-endpoints": ^1.0.2 - "@smithy/util-retry": ^2.0.5 - "@smithy/util-utf8": ^2.0.0 + "@smithy/util-defaults-mode-browser": ^2.0.19 + "@smithy/util-defaults-mode-node": ^2.0.25 + "@smithy/util-endpoints": ^1.0.4 + "@smithy/util-retry": ^2.0.6 + "@smithy/util-utf8": ^2.0.2 tslib: ^2.5.0 - checksum: de51ad3655941f18a92515a334349e35aa85936ae6cc2a0cd41990d6eccd643fbb9f960ecd9d3a23dd597f1a32056217eac90e489bc820deabb8adf1b7d072e6 + checksum: 5ab78bf7704acad673eb2f97b7c9873e4e045e8476f827fc5f6e6f46ca37674f04efc1e168cdc4b3b0c5be1e6ada8e1a76fb4963a7af48560423a60b855f6005 languageName: node linkType: hard -"@aws-sdk/client-sts@npm:3.449.0": - version: 3.449.0 - resolution: "@aws-sdk/client-sts@npm:3.449.0" +"@aws-sdk/client-sts@npm:3.454.0": + version: 3.454.0 + resolution: "@aws-sdk/client-sts@npm:3.454.0" dependencies: "@aws-crypto/sha256-browser": 3.0.0 "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/core": 3.445.0 - "@aws-sdk/credential-provider-node": 3.449.0 - "@aws-sdk/middleware-host-header": 3.449.0 - "@aws-sdk/middleware-logger": 3.449.0 - "@aws-sdk/middleware-recursion-detection": 3.449.0 - "@aws-sdk/middleware-sdk-sts": 3.449.0 - "@aws-sdk/middleware-signing": 3.449.0 - "@aws-sdk/middleware-user-agent": 3.449.0 - "@aws-sdk/region-config-resolver": 3.433.0 - "@aws-sdk/types": 3.449.0 - "@aws-sdk/util-endpoints": 3.449.0 - "@aws-sdk/util-user-agent-browser": 3.449.0 - "@aws-sdk/util-user-agent-node": 3.449.0 - "@smithy/config-resolver": ^2.0.16 - "@smithy/fetch-http-handler": ^2.2.4 - "@smithy/hash-node": ^2.0.12 - "@smithy/invalid-dependency": ^2.0.12 - "@smithy/middleware-content-length": ^2.0.14 - "@smithy/middleware-endpoint": ^2.1.3 - "@smithy/middleware-retry": ^2.0.18 - "@smithy/middleware-serde": ^2.0.12 - "@smithy/middleware-stack": ^2.0.6 - "@smithy/node-config-provider": ^2.1.3 - "@smithy/node-http-handler": ^2.1.8 - "@smithy/protocol-http": ^3.0.8 - "@smithy/smithy-client": ^2.1.12 - "@smithy/types": ^2.4.0 - "@smithy/url-parser": ^2.0.12 - "@smithy/util-base64": ^2.0.0 + "@aws-sdk/core": 3.451.0 + "@aws-sdk/credential-provider-node": 3.451.0 + "@aws-sdk/middleware-host-header": 3.451.0 + "@aws-sdk/middleware-logger": 3.451.0 + "@aws-sdk/middleware-recursion-detection": 3.451.0 + "@aws-sdk/middleware-sdk-sts": 3.451.0 + "@aws-sdk/middleware-signing": 3.451.0 + "@aws-sdk/middleware-user-agent": 3.451.0 + "@aws-sdk/region-config-resolver": 3.451.0 + "@aws-sdk/types": 3.451.0 + "@aws-sdk/util-endpoints": 3.451.0 + "@aws-sdk/util-user-agent-browser": 3.451.0 + "@aws-sdk/util-user-agent-node": 3.451.0 + "@smithy/config-resolver": ^2.0.18 + "@smithy/fetch-http-handler": ^2.2.6 + "@smithy/hash-node": ^2.0.15 + "@smithy/invalid-dependency": ^2.0.13 + "@smithy/middleware-content-length": ^2.0.15 + "@smithy/middleware-endpoint": ^2.2.0 + "@smithy/middleware-retry": ^2.0.20 + "@smithy/middleware-serde": ^2.0.13 + "@smithy/middleware-stack": ^2.0.7 + "@smithy/node-config-provider": ^2.1.5 + "@smithy/node-http-handler": ^2.1.9 + "@smithy/protocol-http": ^3.0.9 + "@smithy/smithy-client": ^2.1.15 + "@smithy/types": ^2.5.0 + "@smithy/url-parser": ^2.0.13 + "@smithy/util-base64": ^2.0.1 "@smithy/util-body-length-browser": ^2.0.0 "@smithy/util-body-length-node": ^2.1.0 - "@smithy/util-defaults-mode-browser": ^2.0.16 - "@smithy/util-defaults-mode-node": ^2.0.21 - "@smithy/util-endpoints": ^1.0.2 - "@smithy/util-retry": ^2.0.5 - "@smithy/util-utf8": ^2.0.0 + "@smithy/util-defaults-mode-browser": ^2.0.19 + "@smithy/util-defaults-mode-node": ^2.0.25 + "@smithy/util-endpoints": ^1.0.4 + "@smithy/util-retry": ^2.0.6 + "@smithy/util-utf8": ^2.0.2 fast-xml-parser: 4.2.5 tslib: ^2.5.0 - checksum: 3086648f0a3017efb4f069fad26f0f7ffc8942328c197d1c895cfa983fa069f35093b718b76ac3cd3225a83286303532a060b63ce0fcca20ff264855c1a98bd6 + checksum: 92e687abc8dcd5f6ddf911fe5800f04eeb11164214327072334275b04725ac77ee2170247b69df645ff756ed9f2b27916921d442fb393dc46084c114b5f76f54 languageName: node linkType: hard -"@aws-sdk/core@npm:3.445.0": - version: 3.445.0 - resolution: "@aws-sdk/core@npm:3.445.0" +"@aws-sdk/core@npm:3.451.0": + version: 3.451.0 + resolution: "@aws-sdk/core@npm:3.451.0" dependencies: - "@smithy/smithy-client": ^2.1.12 + "@smithy/smithy-client": ^2.1.15 tslib: ^2.5.0 - checksum: ebe9c231167278cb1d4d782255ef0df561509f00ab01ec69421d23b870c3191d4d8762fab7c5ae7b032999d0b58472e5225ade5fd51665c18b9d73850cf75da2 + checksum: 20e36a0280ba6848222099eb30d3a09683563edf8eca48746529c9c2ae89dd7ab5d6a01ab05cd21b4bdd4f16117d41dc89e07d4d71f0abbcf50dcc5e85ef992d languageName: node linkType: hard -"@aws-sdk/credential-provider-env@npm:3.449.0": - version: 3.449.0 - resolution: "@aws-sdk/credential-provider-env@npm:3.449.0" +"@aws-sdk/credential-provider-env@npm:3.451.0": + version: 3.451.0 + resolution: "@aws-sdk/credential-provider-env@npm:3.451.0" dependencies: - "@aws-sdk/types": 3.449.0 + "@aws-sdk/types": 3.451.0 "@smithy/property-provider": ^2.0.0 - "@smithy/types": ^2.4.0 + "@smithy/types": ^2.5.0 tslib: ^2.5.0 - checksum: 8164bb3bd69553fcfb8e015e9f7e18e96a44a3596f9cf7bb0b6cd942c0827dcf5010ec4a7383f3b26c659d9a04b47a33e33ff7548b1a44b65a66b3d9f427e8e2 + checksum: 20268e3d30317ab92cfce042fbaf751959d8da8e5669b822f8089df26bf5ea4972bab04eb0653fd903a4ab6c41118fae57f589a7e05fd3022e0154cb0cd71ed7 languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:3.449.0": - version: 3.449.0 - resolution: "@aws-sdk/credential-provider-ini@npm:3.449.0" +"@aws-sdk/credential-provider-ini@npm:3.451.0": + version: 3.451.0 + resolution: "@aws-sdk/credential-provider-ini@npm:3.451.0" dependencies: - "@aws-sdk/credential-provider-env": 3.449.0 - "@aws-sdk/credential-provider-process": 3.449.0 - "@aws-sdk/credential-provider-sso": 3.449.0 - "@aws-sdk/credential-provider-web-identity": 3.449.0 - "@aws-sdk/types": 3.449.0 + "@aws-sdk/credential-provider-env": 3.451.0 + "@aws-sdk/credential-provider-process": 3.451.0 + "@aws-sdk/credential-provider-sso": 3.451.0 + "@aws-sdk/credential-provider-web-identity": 3.451.0 + "@aws-sdk/types": 3.451.0 "@smithy/credential-provider-imds": ^2.0.0 "@smithy/property-provider": ^2.0.0 "@smithy/shared-ini-file-loader": ^2.0.6 - "@smithy/types": ^2.4.0 + "@smithy/types": ^2.5.0 tslib: ^2.5.0 - checksum: 75b88307ffc0978e35c202d1aa972d1a9f5cfbf266e94771e08fea519fd141174cd2385fb2011d8b5d2c7eeb7e991c26e5aea3d5aa2ff5c0653942376af52bce + checksum: 6d549724209f24c2e21fa88f318c7faaa9e2e58c854fcabc257b71cd2e6f849d38eaa932e16b44bf56c420183fd4ae804ac44c7584808af868ae7316fde2c3b1 languageName: node linkType: hard -"@aws-sdk/credential-provider-node@npm:3.449.0": - version: 3.449.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.449.0" +"@aws-sdk/credential-provider-node@npm:3.451.0": + version: 3.451.0 + resolution: "@aws-sdk/credential-provider-node@npm:3.451.0" dependencies: - "@aws-sdk/credential-provider-env": 3.449.0 - "@aws-sdk/credential-provider-ini": 3.449.0 - "@aws-sdk/credential-provider-process": 3.449.0 - "@aws-sdk/credential-provider-sso": 3.449.0 - "@aws-sdk/credential-provider-web-identity": 3.449.0 - "@aws-sdk/types": 3.449.0 + "@aws-sdk/credential-provider-env": 3.451.0 + "@aws-sdk/credential-provider-ini": 3.451.0 + "@aws-sdk/credential-provider-process": 3.451.0 + "@aws-sdk/credential-provider-sso": 3.451.0 + "@aws-sdk/credential-provider-web-identity": 3.451.0 + "@aws-sdk/types": 3.451.0 "@smithy/credential-provider-imds": ^2.0.0 "@smithy/property-provider": ^2.0.0 "@smithy/shared-ini-file-loader": ^2.0.6 - "@smithy/types": ^2.4.0 + "@smithy/types": ^2.5.0 tslib: ^2.5.0 - checksum: dffa7a00d57b15ff74def561b354c3ba76ed46738f4efe9ff35d2d5dc6c55170f92659d8d9a1fca5fefdef92c73fb565c0f55da2d11a4f210ee74121d692ec09 + checksum: 19dd93776250fd4e55a70daaca311f1f0bb27e5b195713e3f9d8e8431411e637c917a46bbd41dcf2044a93e0fdea02ebb238863f8c49684bf3e63aff928b5a6b languageName: node linkType: hard -"@aws-sdk/credential-provider-process@npm:3.449.0": - version: 3.449.0 - resolution: "@aws-sdk/credential-provider-process@npm:3.449.0" +"@aws-sdk/credential-provider-process@npm:3.451.0": + version: 3.451.0 + resolution: "@aws-sdk/credential-provider-process@npm:3.451.0" dependencies: - "@aws-sdk/types": 3.449.0 + "@aws-sdk/types": 3.451.0 "@smithy/property-provider": ^2.0.0 "@smithy/shared-ini-file-loader": ^2.0.6 - "@smithy/types": ^2.4.0 + "@smithy/types": ^2.5.0 tslib: ^2.5.0 - checksum: 8084ccbf6393b241b43ee18403282b03c9421bbbc8cda8253bad4115a9847840eee85c48d2b51215b8b76f21b8952db298a26117e6e5c864b2c5e61c2319b230 + checksum: 2c01b893d03f9a001bb970553bad14061e807445ec96002bb85d37445fa28403a5adbfc68036f01fc20d7c5310e88ccbcd96cd54d5ba9326640a18d6c96b93a2 languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:3.449.0": - version: 3.449.0 - resolution: "@aws-sdk/credential-provider-sso@npm:3.449.0" +"@aws-sdk/credential-provider-sso@npm:3.451.0": + version: 3.451.0 + resolution: "@aws-sdk/credential-provider-sso@npm:3.451.0" dependencies: - "@aws-sdk/client-sso": 3.449.0 - "@aws-sdk/token-providers": 3.449.0 - "@aws-sdk/types": 3.449.0 + "@aws-sdk/client-sso": 3.451.0 + "@aws-sdk/token-providers": 3.451.0 + "@aws-sdk/types": 3.451.0 "@smithy/property-provider": ^2.0.0 "@smithy/shared-ini-file-loader": ^2.0.6 - "@smithy/types": ^2.4.0 + "@smithy/types": ^2.5.0 tslib: ^2.5.0 - checksum: d80a7cf0664c5c4a9d421b3e66b4c75f4d82ff99982af121fe19a6465b84969777fdb960c844a8d6352c3bd96acff3ae5f89723c37ec3e0716c80f06025a3745 + checksum: 34483b4a213cac1f4859978319b38ef7f69a0d090de49a98d987486da2691a4cf5f474601ce338497d030156b1616a455a8d0bb79a4abbdbe8873a91e451ead2 languageName: node linkType: hard -"@aws-sdk/credential-provider-web-identity@npm:3.449.0": - version: 3.449.0 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.449.0" +"@aws-sdk/credential-provider-web-identity@npm:3.451.0": + version: 3.451.0 + resolution: "@aws-sdk/credential-provider-web-identity@npm:3.451.0" dependencies: - "@aws-sdk/types": 3.449.0 + "@aws-sdk/types": 3.451.0 "@smithy/property-provider": ^2.0.0 - "@smithy/types": ^2.4.0 + "@smithy/types": ^2.5.0 tslib: ^2.5.0 - checksum: 63d58bc68b413c8277b23f0016cc034970a9a0435051d790c4d57516d891948d964483acc3e66bb4830a8d76de8bc80d68c008f19e53f819aa15740c52504a22 + checksum: 2f677b9e4f727b6c24ed64d1ba23f524d8d136394dc62376db7b60acf57938a911d178bcdc33688a0cb17b5f55e2cc4aa455473a4393864568cacd202a50ce44 languageName: node linkType: hard -"@aws-sdk/middleware-host-header@npm:3.449.0": - version: 3.449.0 - resolution: "@aws-sdk/middleware-host-header@npm:3.449.0" +"@aws-sdk/middleware-host-header@npm:3.451.0": + version: 3.451.0 + resolution: "@aws-sdk/middleware-host-header@npm:3.451.0" dependencies: - "@aws-sdk/types": 3.449.0 - "@smithy/protocol-http": ^3.0.8 - "@smithy/types": ^2.4.0 + "@aws-sdk/types": 3.451.0 + "@smithy/protocol-http": ^3.0.9 + "@smithy/types": ^2.5.0 tslib: ^2.5.0 - checksum: 7470a19e08c726e5044821c9d5572717121091f24d18930563bf7a6e3abec9429b9c17328f68922d8fbf246b924b7ef0d5e0636b35849b0b21571e890084ada6 + checksum: ba06894d88f5fdd06762de839e7542b1605c73474d7bf93e6b0b74a62e77c5f3f4dd612daaf76e9eff59447c95a73cfa69b29f9856f7282227eea31173db99ca languageName: node linkType: hard -"@aws-sdk/middleware-logger@npm:3.449.0": - version: 3.449.0 - resolution: "@aws-sdk/middleware-logger@npm:3.449.0" +"@aws-sdk/middleware-logger@npm:3.451.0": + version: 3.451.0 + resolution: "@aws-sdk/middleware-logger@npm:3.451.0" dependencies: - "@aws-sdk/types": 3.449.0 - "@smithy/types": ^2.4.0 + "@aws-sdk/types": 3.451.0 + "@smithy/types": ^2.5.0 tslib: ^2.5.0 - checksum: d90ed870889ced4c39e12dd0f03c480e0b28de07a14147b478c6aa6fb84c7cb57369b3bc1ae9a249fc3a2b5539a9055bff752420c5ef4645afbda27ca8904384 + checksum: 34342389013ab83407c34eb58a5e162fb7b294050030f494a2b538e85492828a2719642365af1f7e5b89f847888fd936469c4bdb6843b81887edb89896b0a926 languageName: node linkType: hard -"@aws-sdk/middleware-recursion-detection@npm:3.449.0": - version: 3.449.0 - resolution: "@aws-sdk/middleware-recursion-detection@npm:3.449.0" +"@aws-sdk/middleware-recursion-detection@npm:3.451.0": + version: 3.451.0 + resolution: "@aws-sdk/middleware-recursion-detection@npm:3.451.0" dependencies: - "@aws-sdk/types": 3.449.0 - "@smithy/protocol-http": ^3.0.8 - "@smithy/types": ^2.4.0 + "@aws-sdk/types": 3.451.0 + "@smithy/protocol-http": ^3.0.9 + "@smithy/types": ^2.5.0 tslib: ^2.5.0 - checksum: a92890fc1d76fb431f6e250a9ba7042ccf3d4ea90eac29b99b9aee16a3a77a1c55cf826403424482d54cdcf3fb05dc05ad7b909c9bd7687e1838921f665063b3 + checksum: 70625b5c9e9f61d4c58a05a8aa616ec31c7bb23f45e8187fffe30003861fd3fe0bce96e6b120b4bb3937c0c66e04c96c8e024a4c42dd0524f0a0b6dc73b7e1d5 languageName: node linkType: hard -"@aws-sdk/middleware-sdk-sts@npm:3.449.0": - version: 3.449.0 - resolution: "@aws-sdk/middleware-sdk-sts@npm:3.449.0" +"@aws-sdk/middleware-sdk-sts@npm:3.451.0": + version: 3.451.0 + resolution: "@aws-sdk/middleware-sdk-sts@npm:3.451.0" dependencies: - "@aws-sdk/middleware-signing": 3.449.0 - "@aws-sdk/types": 3.449.0 - "@smithy/types": ^2.4.0 + "@aws-sdk/middleware-signing": 3.451.0 + "@aws-sdk/types": 3.451.0 + "@smithy/types": ^2.5.0 tslib: ^2.5.0 - checksum: e5dfca029da4dc676ce9b034d8425198fcb40bbdc6a9e8f49976a3042b1f7a5de5dee6dd8e2ec12b05ff5e448537ab2268540770d2bcc70f75a3d4393491edf3 + checksum: 8aef507f62ffc342bbf70f3ecb24e96d286526aa23040a13a1f4761059b1a57f3d2bed9b14caef0bde53dd440584ef9fea6947ff18cfdae7498b028beefa9ec5 languageName: node linkType: hard -"@aws-sdk/middleware-signing@npm:3.449.0": - version: 3.449.0 - resolution: "@aws-sdk/middleware-signing@npm:3.449.0" +"@aws-sdk/middleware-signing@npm:3.451.0": + version: 3.451.0 + resolution: "@aws-sdk/middleware-signing@npm:3.451.0" dependencies: - "@aws-sdk/types": 3.449.0 + "@aws-sdk/types": 3.451.0 "@smithy/property-provider": ^2.0.0 - "@smithy/protocol-http": ^3.0.8 + "@smithy/protocol-http": ^3.0.9 "@smithy/signature-v4": ^2.0.0 - "@smithy/types": ^2.4.0 - "@smithy/util-middleware": ^2.0.5 + "@smithy/types": ^2.5.0 + "@smithy/util-middleware": ^2.0.6 tslib: ^2.5.0 - checksum: d33347563f8cc4332609eef5639299a7beca94e50491c398996a16d8c272182fc9595f579915749e4050d3b6a3161c190f3049fa63c5d89952f551a7b877f6e8 + checksum: 6a2900bdad76733fec5155af97f9f2b3448451bf15357d0dfbc35f646a321120dc6b5d5e3c5690b0bfc5294044c139ce28b3a07c149f33dd9572399f5ae0999d languageName: node linkType: hard -"@aws-sdk/middleware-user-agent@npm:3.449.0": - version: 3.449.0 - resolution: "@aws-sdk/middleware-user-agent@npm:3.449.0" +"@aws-sdk/middleware-user-agent@npm:3.451.0": + version: 3.451.0 + resolution: "@aws-sdk/middleware-user-agent@npm:3.451.0" dependencies: - "@aws-sdk/types": 3.449.0 - "@aws-sdk/util-endpoints": 3.449.0 - "@smithy/protocol-http": ^3.0.8 - "@smithy/types": ^2.4.0 + "@aws-sdk/types": 3.451.0 + "@aws-sdk/util-endpoints": 3.451.0 + "@smithy/protocol-http": ^3.0.9 + "@smithy/types": ^2.5.0 tslib: ^2.5.0 - checksum: 3aa57fc8d9e2dcd3525888c94b0d8682ae144b30b2b9197c9bed2f1db44ee82c2f5a8e0301a8c6e9c322a359e341398731fdb6529961bdc42691a7212afb9fcd + checksum: d547fb999a6f657d8806165102b57a082a4e5464666c928148292e233be38a53209c1b9a39eac7e0c403a77e0336159b9a72e89daad86365306421058b0c4f92 languageName: node linkType: hard -"@aws-sdk/region-config-resolver@npm:3.433.0": - version: 3.433.0 - resolution: "@aws-sdk/region-config-resolver@npm:3.433.0" +"@aws-sdk/region-config-resolver@npm:3.451.0": + version: 3.451.0 + resolution: "@aws-sdk/region-config-resolver@npm:3.451.0" dependencies: - "@smithy/node-config-provider": ^2.1.3 - "@smithy/types": ^2.4.0 + "@smithy/node-config-provider": ^2.1.5 + "@smithy/types": ^2.5.0 "@smithy/util-config-provider": ^2.0.0 - "@smithy/util-middleware": ^2.0.5 + "@smithy/util-middleware": ^2.0.6 tslib: ^2.5.0 - checksum: 80a80707c2c991c16e6a52bde426704337b119d89cdedd70af72a7c52d2ee285a6cdcd355e45cb630e6d2dc3a7f57749b3276b9fff851d57c57916ef5ee2616f + checksum: df1e324d873399ff022b29a0a7d03e840aadbb0a42fad0f7f1a11f041d5f37319ecefc58038d62eff998e627b07752c96ab5879b2a34ebd088e45fc9c7a12303 languageName: node linkType: hard -"@aws-sdk/token-providers@npm:3.449.0": - version: 3.449.0 - resolution: "@aws-sdk/token-providers@npm:3.449.0" +"@aws-sdk/token-providers@npm:3.451.0": + version: 3.451.0 + resolution: "@aws-sdk/token-providers@npm:3.451.0" dependencies: "@aws-crypto/sha256-browser": 3.0.0 "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/middleware-host-header": 3.449.0 - "@aws-sdk/middleware-logger": 3.449.0 - "@aws-sdk/middleware-recursion-detection": 3.449.0 - "@aws-sdk/middleware-user-agent": 3.449.0 - "@aws-sdk/region-config-resolver": 3.433.0 - "@aws-sdk/types": 3.449.0 - "@aws-sdk/util-endpoints": 3.449.0 - "@aws-sdk/util-user-agent-browser": 3.449.0 - "@aws-sdk/util-user-agent-node": 3.449.0 - "@smithy/config-resolver": ^2.0.16 - "@smithy/fetch-http-handler": ^2.2.4 - "@smithy/hash-node": ^2.0.12 - "@smithy/invalid-dependency": ^2.0.12 - "@smithy/middleware-content-length": ^2.0.14 - "@smithy/middleware-endpoint": ^2.1.3 - "@smithy/middleware-retry": ^2.0.18 - "@smithy/middleware-serde": ^2.0.12 - "@smithy/middleware-stack": ^2.0.6 - "@smithy/node-config-provider": ^2.1.3 - "@smithy/node-http-handler": ^2.1.8 + "@aws-sdk/middleware-host-header": 3.451.0 + "@aws-sdk/middleware-logger": 3.451.0 + "@aws-sdk/middleware-recursion-detection": 3.451.0 + "@aws-sdk/middleware-user-agent": 3.451.0 + "@aws-sdk/region-config-resolver": 3.451.0 + "@aws-sdk/types": 3.451.0 + "@aws-sdk/util-endpoints": 3.451.0 + "@aws-sdk/util-user-agent-browser": 3.451.0 + "@aws-sdk/util-user-agent-node": 3.451.0 + "@smithy/config-resolver": ^2.0.18 + "@smithy/fetch-http-handler": ^2.2.6 + "@smithy/hash-node": ^2.0.15 + "@smithy/invalid-dependency": ^2.0.13 + "@smithy/middleware-content-length": ^2.0.15 + "@smithy/middleware-endpoint": ^2.2.0 + "@smithy/middleware-retry": ^2.0.20 + "@smithy/middleware-serde": ^2.0.13 + "@smithy/middleware-stack": ^2.0.7 + "@smithy/node-config-provider": ^2.1.5 + "@smithy/node-http-handler": ^2.1.9 "@smithy/property-provider": ^2.0.0 - "@smithy/protocol-http": ^3.0.8 + "@smithy/protocol-http": ^3.0.9 "@smithy/shared-ini-file-loader": ^2.0.6 - "@smithy/smithy-client": ^2.1.12 - "@smithy/types": ^2.4.0 - "@smithy/url-parser": ^2.0.12 - "@smithy/util-base64": ^2.0.0 + "@smithy/smithy-client": ^2.1.15 + "@smithy/types": ^2.5.0 + "@smithy/url-parser": ^2.0.13 + "@smithy/util-base64": ^2.0.1 "@smithy/util-body-length-browser": ^2.0.0 "@smithy/util-body-length-node": ^2.1.0 - "@smithy/util-defaults-mode-browser": ^2.0.16 - "@smithy/util-defaults-mode-node": ^2.0.21 - "@smithy/util-endpoints": ^1.0.2 - "@smithy/util-retry": ^2.0.5 - "@smithy/util-utf8": ^2.0.0 + "@smithy/util-defaults-mode-browser": ^2.0.19 + "@smithy/util-defaults-mode-node": ^2.0.25 + "@smithy/util-endpoints": ^1.0.4 + "@smithy/util-retry": ^2.0.6 + "@smithy/util-utf8": ^2.0.2 tslib: ^2.5.0 - checksum: 582d3874ce315aa2e58fc02536065de60f73c8bd05d7ee83eb151a8e00cfc10f95a2767c19c44b64dac4a39874cbc4a8106c8c2bd99dcf03ddacaa5f37ed0792 + checksum: 1c2d3927e33eedcfc0482744f065c44f632d13fb7a03152dd4d5b04546ab06fed6373f2e8432caf332c0ab93ac9a64bf88cc5071702f6f1adacc8aed53ed3e3b languageName: node linkType: hard -"@aws-sdk/types@npm:3.449.0, @aws-sdk/types@npm:^3.222.0": - version: 3.449.0 - resolution: "@aws-sdk/types@npm:3.449.0" +"@aws-sdk/types@npm:3.451.0, @aws-sdk/types@npm:^3.222.0": + version: 3.451.0 + resolution: "@aws-sdk/types@npm:3.451.0" dependencies: - "@smithy/types": ^2.4.0 + "@smithy/types": ^2.5.0 tslib: ^2.5.0 - checksum: df63355242cdc05066249b1548025dbc5c209f7fe65a76d50fccfcff731045b48a7aafafed795cbe2db1120757e8bfd7adb82d852c57563648084c7be4e1d4de + checksum: 0f66eccf707ece1f21af6c8099a6b13191a119f48dacebd8794d74263628b95dcf0bfa479493ec1774c902fe7bb8867cfcbd1cf7d908653fe0e0759168970d19 languageName: node linkType: hard -"@aws-sdk/util-endpoints@npm:3.449.0": - version: 3.449.0 - resolution: "@aws-sdk/util-endpoints@npm:3.449.0" +"@aws-sdk/util-endpoints@npm:3.451.0": + version: 3.451.0 + resolution: "@aws-sdk/util-endpoints@npm:3.451.0" dependencies: - "@aws-sdk/types": 3.449.0 - "@smithy/util-endpoints": ^1.0.2 + "@aws-sdk/types": 3.451.0 + "@smithy/util-endpoints": ^1.0.4 tslib: ^2.5.0 - checksum: 7890ca9d73fcf255165355d404fd86649bf68632cf47ce944240a39010624d7550673641cb9795fe74dd73cb16bfe852416f15e09314d3533d004ae05147ae9f + checksum: ebb558cadb896754f2f0078b31720441bf8d8f4735372950a00c677b2db1a9076a3aefa3c14148e39708b593f148a12930e1b29ecce6e4ed653ea10ab26f3c80 languageName: node linkType: hard @@ -509,32 +509,32 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-user-agent-browser@npm:3.449.0": - version: 3.449.0 - resolution: "@aws-sdk/util-user-agent-browser@npm:3.449.0" +"@aws-sdk/util-user-agent-browser@npm:3.451.0": + version: 3.451.0 + resolution: "@aws-sdk/util-user-agent-browser@npm:3.451.0" dependencies: - "@aws-sdk/types": 3.449.0 - "@smithy/types": ^2.4.0 + "@aws-sdk/types": 3.451.0 + "@smithy/types": ^2.5.0 bowser: ^2.11.0 tslib: ^2.5.0 - checksum: ed30cda022e74294af6c1e358c7331920d400cef58734a18f4eee0e9836ccd099fd23174bd8fe951bdfb06e31471ce2242483978d55d9589081d3b675ef7692a + checksum: 83e6a74aca3575b385db09787021bbd40589afdff0fcad1d4ea33c7a4711f3147d61fa6465a629838d8d093609d43097bedb4bfc6e12e3695179f4c244b691e3 languageName: node linkType: hard -"@aws-sdk/util-user-agent-node@npm:3.449.0": - version: 3.449.0 - resolution: "@aws-sdk/util-user-agent-node@npm:3.449.0" +"@aws-sdk/util-user-agent-node@npm:3.451.0": + version: 3.451.0 + resolution: "@aws-sdk/util-user-agent-node@npm:3.451.0" dependencies: - "@aws-sdk/types": 3.449.0 - "@smithy/node-config-provider": ^2.1.3 - "@smithy/types": ^2.4.0 + "@aws-sdk/types": 3.451.0 + "@smithy/node-config-provider": ^2.1.5 + "@smithy/types": ^2.5.0 tslib: ^2.5.0 peerDependencies: aws-crt: ">=1.0.0" peerDependenciesMeta: aws-crt: optional: true - checksum: 0cd0aeef35f216d9c9125449b33e74b2ab69ca59dee3e5e398656c830e00d8c45f50ae568150fdaf202ad21ddbaafa31166cfc6dab1cd498f8e406c0edc8310b + checksum: 94ccacf05776b558f965d8081602435565be59a62e0ec61946a49c2519f742ae2552df407b9ba9b37d8cbac1ef8ea5538bb72c96bc1e1c55ab9ecb6be187fe67 languageName: node linkType: hard @@ -548,8 +548,8 @@ __metadata: linkType: hard "@babel/cli@npm:^7.21.0": - version: 7.23.0 - resolution: "@babel/cli@npm:7.23.0" + version: 7.23.4 + resolution: "@babel/cli@npm:7.23.4" dependencies: "@jridgewell/trace-mapping": ^0.3.17 "@nicolo-ribaudo/chokidar-2": 2.1.8-no-fsevents.3 @@ -570,17 +570,17 @@ __metadata: bin: babel: ./bin/babel.js babel-external-helpers: ./bin/babel-external-helpers.js - checksum: beeb189560bf9c4ea951ef637eefa5214654678fb09c4aaa6695921037059c1e1553c610fe95fbd19a9cdfd9f5598a812fc13df40a6b9a9ea899e43fc6c42052 + checksum: 5a4f296cdf0b15a8578a860ad42675a358d888e11088c91ee5e510b48598d1dd88d83686d6fe6744c0a9cbcddfd34e79bc75ea425ced8ec9a2531e08c2655279 languageName: node linkType: hard -"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.16.7, @babel/code-frame@npm:^7.21.4, @babel/code-frame@npm:^7.22.13, @babel/code-frame@npm:^7.8.3": - version: 7.22.13 - resolution: "@babel/code-frame@npm:7.22.13" +"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.16.7, @babel/code-frame@npm:^7.21.4, @babel/code-frame@npm:^7.22.13, @babel/code-frame@npm:^7.23.4, @babel/code-frame@npm:^7.8.3": + version: 7.23.4 + resolution: "@babel/code-frame@npm:7.23.4" dependencies: - "@babel/highlight": ^7.22.13 + "@babel/highlight": ^7.23.4 chalk: ^2.4.2 - checksum: 22e342c8077c8b77eeb11f554ecca2ba14153f707b85294fcf6070b6f6150aae88a7b7436dd88d8c9289970585f3fe5b9b941c5aa3aa26a6d5a8ef3f292da058 + checksum: 29999d08c3dbd803f3c296dae7f4f40af1f9e381d6bbc76e5a75327c4b8b023bcb2e209843d292f5d71c3b5c845df1da959d415ed862d6a68e0ad6c5c9622d37 languageName: node linkType: hard @@ -675,15 +675,15 @@ __metadata: languageName: node linkType: hard -"@babel/generator@npm:^7.12.11, @babel/generator@npm:^7.21.5, @babel/generator@npm:^7.23.3, @babel/generator@npm:^7.4.0, @babel/generator@npm:^7.9.0": - version: 7.23.3 - resolution: "@babel/generator@npm:7.23.3" +"@babel/generator@npm:^7.12.11, @babel/generator@npm:^7.21.5, @babel/generator@npm:^7.23.3, @babel/generator@npm:^7.23.4, @babel/generator@npm:^7.4.0, @babel/generator@npm:^7.9.0": + version: 7.23.4 + resolution: "@babel/generator@npm:7.23.4" dependencies: - "@babel/types": ^7.23.3 + "@babel/types": ^7.23.4 "@jridgewell/gen-mapping": ^0.3.2 "@jridgewell/trace-mapping": ^0.3.17 jsesc: ^2.5.1 - checksum: b6e71cca852d4e1aa01a28a30b8c74ffc3b8d56ccb7ae3ee783028ee015f63ad861a2e386c3eb490a9a8634db485a503a33521680f4af510151e90346c46da17 + checksum: 7403717002584eaeb58559f4d0de19b79e924ef2735711278f7cb5206d081428bf3960578566d6fa4102b7b30800d44f70acffea5ecef83f0cb62361c2a23062 languageName: node linkType: hard @@ -921,10 +921,10 @@ __metadata: languageName: node linkType: hard -"@babel/helper-string-parser@npm:^7.21.5, @babel/helper-string-parser@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-string-parser@npm:7.22.5" - checksum: 836851ca5ec813077bbb303acc992d75a360267aa3b5de7134d220411c852a6f17de7c0d0b8c8dcc0f567f67874c00f4528672b2a4f1bc978a3ada64c8c78467 +"@babel/helper-string-parser@npm:^7.21.5, @babel/helper-string-parser@npm:^7.23.4": + version: 7.23.4 + resolution: "@babel/helper-string-parser@npm:7.23.4" + checksum: c0641144cf1a7e7dc93f3d5f16d5327465b6cf5d036b48be61ecba41e1eece161b48f46b7f960951b67f8c3533ce506b16dece576baef4d8b3b49f8c65410f90 languageName: node linkType: hard @@ -954,33 +954,33 @@ __metadata: linkType: hard "@babel/helpers@npm:^7.21.5, @babel/helpers@npm:^7.23.2, @babel/helpers@npm:^7.9.0": - version: 7.23.2 - resolution: "@babel/helpers@npm:7.23.2" + version: 7.23.4 + resolution: "@babel/helpers@npm:7.23.4" dependencies: "@babel/template": ^7.22.15 - "@babel/traverse": ^7.23.2 - "@babel/types": ^7.23.0 - checksum: aaf4828df75ec460eaa70e5c9f66e6dadc28dae3728ddb7f6c13187dbf38030e142194b83d81aa8a31bbc35a5529a5d7d3f3cf59d5d0b595f5dd7f9d8f1ced8e + "@babel/traverse": ^7.23.4 + "@babel/types": ^7.23.4 + checksum: 85677834f2698d0a468db59c062b011ebdd65fc12bab96eeaae64084d3ce3268427ce2dbc23c2db2ddb8a305c79ea223c2c9f7bbd1fb3f6d2fa5e978c0eb1cea languageName: node linkType: hard -"@babel/highlight@npm:^7.22.13": - version: 7.22.20 - resolution: "@babel/highlight@npm:7.22.20" +"@babel/highlight@npm:^7.23.4": + version: 7.23.4 + resolution: "@babel/highlight@npm:7.23.4" dependencies: "@babel/helper-validator-identifier": ^7.22.20 chalk: ^2.4.2 js-tokens: ^4.0.0 - checksum: 84bd034dca309a5e680083cd827a766780ca63cef37308404f17653d32366ea76262bd2364b2d38776232f2d01b649f26721417d507e8b4b6da3e4e739f6d134 + checksum: 643acecdc235f87d925979a979b539a5d7d1f31ae7db8d89047269082694122d11aa85351304c9c978ceeb6d250591ccadb06c366f358ccee08bb9c122476b89 languageName: node linkType: hard -"@babel/parser@npm:^7.0.0, @babel/parser@npm:^7.1.0, @babel/parser@npm:^7.13.16, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.21.5, @babel/parser@npm:^7.21.8, @babel/parser@npm:^7.22.15, @babel/parser@npm:^7.23.3, @babel/parser@npm:^7.4.3, @babel/parser@npm:^7.7.0, @babel/parser@npm:^7.9.0": - version: 7.23.3 - resolution: "@babel/parser@npm:7.23.3" +"@babel/parser@npm:^7.0.0, @babel/parser@npm:^7.1.0, @babel/parser@npm:^7.13.16, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.21.4, @babel/parser@npm:^7.21.5, @babel/parser@npm:^7.21.8, @babel/parser@npm:^7.22.15, @babel/parser@npm:^7.23.3, @babel/parser@npm:^7.23.4, @babel/parser@npm:^7.4.3, @babel/parser@npm:^7.7.0, @babel/parser@npm:^7.9.0": + version: 7.23.4 + resolution: "@babel/parser@npm:7.23.4" bin: parser: ./bin/babel-parser.js - checksum: 4aa7366e401b5467192c1dbf2bef99ac0958c45ef69ed6704abbae68f98fab6409a527b417d1528fddc49d7664450670528adc7f45abb04db5fafca7ed766d57 + checksum: 1d90e17d966085b8ea12f357ffcc76568969364481254f0ae3e7ed579e9421d31c7fd3876ccb3b215a5b2ada48251b0c2d0f21ba225ee194f0e18295b49085f2 languageName: node linkType: hard @@ -1566,8 +1566,8 @@ __metadata: linkType: hard "@babel/plugin-transform-async-generator-functions@npm:^7.23.3": - version: 7.23.3 - resolution: "@babel/plugin-transform-async-generator-functions@npm:7.23.3" + version: 7.23.4 + resolution: "@babel/plugin-transform-async-generator-functions@npm:7.23.4" dependencies: "@babel/helper-environment-visitor": ^7.22.20 "@babel/helper-plugin-utils": ^7.22.5 @@ -1575,7 +1575,7 @@ __metadata: "@babel/plugin-syntax-async-generators": ^7.8.4 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 39407e5d92905a824d6ef115af70755b26a6b458639686092d7e05d0701f7ff42e995e2c5aab28d6ab5311752190667766417e58834b54c98fac78c857e30320 + checksum: e2fc132c9033711d55209f4781e1fc73f0f4da5e0ca80a2da73dec805166b73c92a6e83571a8994cd2c893a28302e24107e90856202b24781bab734f800102bb languageName: node linkType: hard @@ -1604,13 +1604,13 @@ __metadata: linkType: hard "@babel/plugin-transform-block-scoping@npm:^7.21.0, @babel/plugin-transform-block-scoping@npm:^7.23.3, @babel/plugin-transform-block-scoping@npm:^7.8.3": - version: 7.23.3 - resolution: "@babel/plugin-transform-block-scoping@npm:7.23.3" + version: 7.23.4 + resolution: "@babel/plugin-transform-block-scoping@npm:7.23.4" dependencies: "@babel/helper-plugin-utils": ^7.22.5 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 2bad9491502942266ddacd76e026ee2095e71c2a6aa3d038343d65f8db67a2a2262701b2db23a30b7f06ab49710cbf0ab5bedbb930a9f39780cb366aecd30540 + checksum: fc4b2100dd9f2c47d694b4b35ae8153214ccb4e24ef545c259a9db17211b18b6a430f22799b56db8f6844deaeaa201af45a03331d0c80cc28b0c4e3c814570e4 languageName: node linkType: hard @@ -1627,15 +1627,15 @@ __metadata: linkType: hard "@babel/plugin-transform-class-static-block@npm:^7.23.3": - version: 7.23.3 - resolution: "@babel/plugin-transform-class-static-block@npm:7.23.3" + version: 7.23.4 + resolution: "@babel/plugin-transform-class-static-block@npm:7.23.4" dependencies: "@babel/helper-create-class-features-plugin": ^7.22.15 "@babel/helper-plugin-utils": ^7.22.5 "@babel/plugin-syntax-class-static-block": ^7.14.5 peerDependencies: "@babel/core": ^7.12.0 - checksum: 1325e1d1989efbef4d48505e5c0c416d118be0e615c12a8d5581af032d0bc6ae00525c8fb4af68ba9098fa1578ec7738db0a9d362193b8507660d2a24124ddf4 + checksum: c8bfaba19a674fc2eb54edad71e958647360474e3163e8226f1acd63e4e2dbec32a171a0af596c1dc5359aee402cc120fea7abd1fb0e0354b6527f0fc9e8aa1e languageName: node linkType: hard @@ -1705,14 +1705,14 @@ __metadata: linkType: hard "@babel/plugin-transform-dynamic-import@npm:^7.23.3": - version: 7.23.3 - resolution: "@babel/plugin-transform-dynamic-import@npm:7.23.3" + version: 7.23.4 + resolution: "@babel/plugin-transform-dynamic-import@npm:7.23.4" dependencies: "@babel/helper-plugin-utils": ^7.22.5 "@babel/plugin-syntax-dynamic-import": ^7.8.3 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: d1d379dbb1c22c02aa2f5a3f2f1885840aabc21b42e3d42746599f66004239f1ac830012552e6d42113e4defe0625fbf4865864ee3d52963e80125f8c9dad406 + checksum: 57a722604c430d9f3dacff22001a5f31250e34785d4969527a2ae9160fa86858d0892c5b9ff7a06a04076f8c76c9e6862e0541aadca9c057849961343aab0845 languageName: node linkType: hard @@ -1729,14 +1729,14 @@ __metadata: linkType: hard "@babel/plugin-transform-export-namespace-from@npm:^7.23.3": - version: 7.23.3 - resolution: "@babel/plugin-transform-export-namespace-from@npm:7.23.3" + version: 7.23.4 + resolution: "@babel/plugin-transform-export-namespace-from@npm:7.23.4" dependencies: "@babel/helper-plugin-utils": ^7.22.5 "@babel/plugin-syntax-export-namespace-from": ^7.8.3 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: c65e21e5b54135378cfbe7563e884d778ea0864b5950c7db85f984170f20c2e110675c8407b1803ffe587401e5990fbd53eb159c3b3a6d7593ae6f9ffdb83cc4 + checksum: 9f770a81bfd03b48d6ba155d452946fd56d6ffe5b7d871e9ec2a0b15e0f424273b632f3ed61838b90015b25bbda988896b7a46c7d964fbf8f6feb5820b309f93 languageName: node linkType: hard @@ -1789,14 +1789,14 @@ __metadata: linkType: hard "@babel/plugin-transform-json-strings@npm:^7.23.3": - version: 7.23.3 - resolution: "@babel/plugin-transform-json-strings@npm:7.23.3" + version: 7.23.4 + resolution: "@babel/plugin-transform-json-strings@npm:7.23.4" dependencies: "@babel/helper-plugin-utils": ^7.22.5 "@babel/plugin-syntax-json-strings": ^7.8.3 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: a5949613b8883a64ad2a0eb41d26a80ac226ea03db7cef8f57f4ca18045fdc834aee420548272a633510e7aa88ec3cb4e15d2e27ddc45f9ef5db09228f0478c1 + checksum: f9019820233cf8955d8ba346df709a0683c120fe86a24ed1c9f003f2db51197b979efc88f010d558a12e1491210fc195a43cd1c7fee5e23b92da38f793a875de languageName: node linkType: hard @@ -1812,14 +1812,14 @@ __metadata: linkType: hard "@babel/plugin-transform-logical-assignment-operators@npm:^7.23.3": - version: 7.23.3 - resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.23.3" + version: 7.23.4 + resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.23.4" dependencies: "@babel/helper-plugin-utils": ^7.22.5 "@babel/plugin-syntax-logical-assignment-operators": ^7.10.4 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: cbab57a2bb6d5ddd621b91684845e576664862a6d7697fa9dddb796238330dd3dac21cda223f7b1553c9f650e0eebcd5d9bb1e478ed9ba937ce06dc6d0fbd0f6 + checksum: 2ae1dc9b4ff3bf61a990ff3accdecb2afe3a0ca649b3e74c010078d1cdf29ea490f50ac0a905306a2bcf9ac177889a39ac79bdcc3a0fdf220b3b75fac18d39b5 languageName: node linkType: hard @@ -1909,32 +1909,32 @@ __metadata: linkType: hard "@babel/plugin-transform-nullish-coalescing-operator@npm:^7.23.3": - version: 7.23.3 - resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.23.3" + version: 7.23.4 + resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.23.4" dependencies: "@babel/helper-plugin-utils": ^7.22.5 "@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: ea844a12a3ae5647d6d2ae0685fde48ae53e724ef9ce5d9fbf36e8f1ff0107f76a5349ef34c2a06984b3836c001748caf9701afb172bd7ba71a5dff79e16b434 + checksum: a27d73ea134d3d9560a6b2e26ab60012fba15f1db95865aa0153c18f5ec82cfef6a7b3d8df74e3c2fca81534fa5efeb6cacaf7b08bdb7d123e3dafdd079886a3 languageName: node linkType: hard "@babel/plugin-transform-numeric-separator@npm:^7.23.3": - version: 7.23.3 - resolution: "@babel/plugin-transform-numeric-separator@npm:7.23.3" + version: 7.23.4 + resolution: "@babel/plugin-transform-numeric-separator@npm:7.23.4" dependencies: "@babel/helper-plugin-utils": ^7.22.5 "@babel/plugin-syntax-numeric-separator": ^7.10.4 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: f5515532fac2bbf9da082eedc16fd597fb8b787e7a6d256d53dcd9daa054b8f695a312bfec888dd34c03d63dcc2c65c8249ac33c2e23bd3d4d246ce4d44d141d + checksum: 6ba0e5db3c620a3ec81f9e94507c821f483c15f196868df13fa454cbac719a5449baf73840f5b6eb7d77311b24a2cf8e45db53700d41727f693d46f7caf3eec3 languageName: node linkType: hard "@babel/plugin-transform-object-rest-spread@npm:^7.23.3": - version: 7.23.3 - resolution: "@babel/plugin-transform-object-rest-spread@npm:7.23.3" + version: 7.23.4 + resolution: "@babel/plugin-transform-object-rest-spread@npm:7.23.4" dependencies: "@babel/compat-data": ^7.23.3 "@babel/helper-compilation-targets": ^7.22.15 @@ -1943,7 +1943,7 @@ __metadata: "@babel/plugin-transform-parameters": ^7.23.3 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: acd42344a1be3abaf0a4ece15d6445df34d281f3be797c94c16a382799d4567995aad16406265b992ba43115a34721f67a3f0898360f7e26bce55fa9720dad7a + checksum: 73fec495e327ca3959c1c03d07a621be09df00036c69fff0455af9a008291677ee9d368eec48adacdc6feac703269a649747568b4af4c4e9f134aa71cc5b378d languageName: node linkType: hard @@ -1960,27 +1960,27 @@ __metadata: linkType: hard "@babel/plugin-transform-optional-catch-binding@npm:^7.23.3": - version: 7.23.3 - resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.23.3" + version: 7.23.4 + resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.23.4" dependencies: "@babel/helper-plugin-utils": ^7.22.5 "@babel/plugin-syntax-optional-catch-binding": ^7.8.3 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 2c59c78cf8c7070be84f1087116508211323dacd93581529b95b31927b2fab67dd11aca363584e99bebc7e4e20720f2b59d99ade7e8cf1577732eef609a34c45 + checksum: d50b5ee142cdb088d8b5de1ccf7cea85b18b85d85b52f86618f6e45226372f01ad4cdb29abd4fd35ea99a71fefb37009e0107db7a787dcc21d4d402f97470faf languageName: node linkType: hard "@babel/plugin-transform-optional-chaining@npm:^7.23.3": - version: 7.23.3 - resolution: "@babel/plugin-transform-optional-chaining@npm:7.23.3" + version: 7.23.4 + resolution: "@babel/plugin-transform-optional-chaining@npm:7.23.4" dependencies: "@babel/helper-plugin-utils": ^7.22.5 "@babel/helper-skip-transparent-expression-wrappers": ^7.22.5 "@babel/plugin-syntax-optional-chaining": ^7.8.3 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 98529b9d10b5502ceb87259b538e5649d111ec1582c4c49c620f3181d53489c1ff887075fb208245baa43fa45ae85c9950f0db47be00e55b52c9bcd36271d701 + checksum: e7a4c08038288057b7a08d68c4d55396ada9278095509ca51ed8dfb72a7f13f26bdd7c5185de21079fe0a9d60d22c227cb32e300d266c1bda40f70eee9f4bc1e languageName: node linkType: hard @@ -2008,8 +2008,8 @@ __metadata: linkType: hard "@babel/plugin-transform-private-property-in-object@npm:^7.23.3": - version: 7.23.3 - resolution: "@babel/plugin-transform-private-property-in-object@npm:7.23.3" + version: 7.23.4 + resolution: "@babel/plugin-transform-private-property-in-object@npm:7.23.4" dependencies: "@babel/helper-annotate-as-pure": ^7.22.5 "@babel/helper-create-class-features-plugin": ^7.22.15 @@ -2017,7 +2017,7 @@ __metadata: "@babel/plugin-syntax-private-property-in-object": ^7.14.5 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 2d2edd9d1da4bf6b5e2c0894aa8782c3e035b18fcdc7a995a627cced121cab326d5a9f273eec8df6cba44ed7a9797f013e3e82f2a1ec59881037e57e990f2f2a + checksum: fb7adfe94ea97542f250a70de32bddbc3e0b802381c92be947fec83ebffda57e68533c4d0697152719a3496fdd3ebf3798d451c024cd4ac848fc15ac26b70aa7 languageName: node linkType: hard @@ -2099,17 +2099,17 @@ __metadata: linkType: hard "@babel/plugin-transform-react-jsx@npm:^7.12.1, @babel/plugin-transform-react-jsx@npm:^7.19.0, @babel/plugin-transform-react-jsx@npm:^7.22.15, @babel/plugin-transform-react-jsx@npm:^7.22.5, @babel/plugin-transform-react-jsx@npm:^7.9.1": - version: 7.22.15 - resolution: "@babel/plugin-transform-react-jsx@npm:7.22.15" + version: 7.23.4 + resolution: "@babel/plugin-transform-react-jsx@npm:7.23.4" dependencies: "@babel/helper-annotate-as-pure": ^7.22.5 "@babel/helper-module-imports": ^7.22.15 "@babel/helper-plugin-utils": ^7.22.5 - "@babel/plugin-syntax-jsx": ^7.22.5 - "@babel/types": ^7.22.15 + "@babel/plugin-syntax-jsx": ^7.23.3 + "@babel/types": ^7.23.4 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 3899054e89550c3a0ef041af7c47ee266e2e934f498ee80fefeda778a6aa177b48aa8b4d2a8bf5848de977fec564571699ab952d9fa089c4c19b45ddb121df09 + checksum: d8b8c52e8e22e833bf77c8d1a53b0a57d1fd52ba9596a319d572de79446a8ed9d95521035bc1175c1589d1a6a34600d2e678fa81d81bac8fac121137097f1f0a languageName: node linkType: hard @@ -2163,8 +2163,8 @@ __metadata: linkType: hard "@babel/plugin-transform-runtime@npm:^7.12.1, @babel/plugin-transform-runtime@npm:^7.21.0": - version: 7.23.3 - resolution: "@babel/plugin-transform-runtime@npm:7.23.3" + version: 7.23.4 + resolution: "@babel/plugin-transform-runtime@npm:7.23.4" dependencies: "@babel/helper-module-imports": ^7.22.15 "@babel/helper-plugin-utils": ^7.22.5 @@ -2174,7 +2174,7 @@ __metadata: semver: ^6.3.1 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: e8f8a49d69e2b7423587901564f243b98fdddf9c3186e48e9a02a65abe8f9a7dac097187c0f4df3ae1c40d43b56c66483da7da65af81d0254aee0d32075fba2c + checksum: a1693d27cd5ce17d0917280942a62bbf4ee27f6f0fe7beb33789bdc699cda21e5253997663248b32e8e36c01ccd202f96246413b9328b70a05d4cf64faa3191e languageName: node linkType: hard @@ -2235,8 +2235,8 @@ __metadata: linkType: hard "@babel/plugin-transform-typescript@npm:^7.23.3, @babel/plugin-transform-typescript@npm:^7.9.0": - version: 7.23.3 - resolution: "@babel/plugin-transform-typescript@npm:7.23.3" + version: 7.23.4 + resolution: "@babel/plugin-transform-typescript@npm:7.23.4" dependencies: "@babel/helper-annotate-as-pure": ^7.22.5 "@babel/helper-create-class-features-plugin": ^7.22.15 @@ -2244,7 +2244,7 @@ __metadata: "@babel/plugin-syntax-typescript": ^7.23.3 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 01ba1d5d41c6b41c139fc6f2df744a82e7572335209976a75f0007ebbaea02dcb3265c44123afe09cc3f4aafb177bcb967a20af0218a95eae4fd883f6dd9d0d6 + checksum: 1cd8426763296d27547924022d6aa35ae9c6b93e4f3110af6123d03eec7b7fa319a6965165e13215ba30ac37ef2cca67dadbe15d1f1508b3d1a06423a0592d3a languageName: node linkType: hard @@ -2664,12 +2664,12 @@ __metadata: linkType: hard "@babel/runtime-corejs3@npm:^7.10.2": - version: 7.23.2 - resolution: "@babel/runtime-corejs3@npm:7.23.2" + version: 7.23.4 + resolution: "@babel/runtime-corejs3@npm:7.23.4" dependencies: core-js-pure: ^3.30.2 regenerator-runtime: ^0.14.0 - checksum: 922f25c47996a8af604cea82441e41be8b11910e96c662511e54120078f4c64258c045a28a311467a8f14a0c17f46a1f057f7c0501e567869a4343a6ce017962 + checksum: 9b7fcfea7e638e9c701a48e49579c4003073d74178af504867142136751f65e73731259858198cad152bfe5974d1e460a292dac8cbcca4b7c0a87cbf1285da1c languageName: node linkType: hard @@ -2683,11 +2683,11 @@ __metadata: linkType: hard "@babel/runtime@npm:^7.0.0, @babel/runtime@npm:^7.1.2, @babel/runtime@npm:^7.10.1, @babel/runtime@npm:^7.10.2, @babel/runtime@npm:^7.11.1, @babel/runtime@npm:^7.12.0, @babel/runtime@npm:^7.12.13, @babel/runtime@npm:^7.12.18, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.13.10, @babel/runtime@npm:^7.17.2, @babel/runtime@npm:^7.17.8, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.20.0, @babel/runtime@npm:^7.20.7, @babel/runtime@npm:^7.21.0, @babel/runtime@npm:^7.22.5, @babel/runtime@npm:^7.3.1, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.7.2, @babel/runtime@npm:^7.7.6, @babel/runtime@npm:^7.7.7, @babel/runtime@npm:^7.8.4, @babel/runtime@npm:^7.8.7, @babel/runtime@npm:^7.9.2": - version: 7.23.2 - resolution: "@babel/runtime@npm:7.23.2" + version: 7.23.4 + resolution: "@babel/runtime@npm:7.23.4" dependencies: regenerator-runtime: ^0.14.0 - checksum: 6c4df4839ec75ca10175f636d6362f91df8a3137f86b38f6cd3a4c90668a0fe8e9281d320958f4fbd43b394988958585a17c3aab2a4ea6bf7316b22916a371fb + checksum: 8eb6a6b2367f7d60e7f7dd83f477cc2e2fdb169e5460694d7614ce5c730e83324bcf29251b70940068e757ad1ee56ff8073a372260d90cad55f18a825caf97cd languageName: node linkType: hard @@ -2702,21 +2702,21 @@ __metadata: languageName: node linkType: hard -"@babel/traverse@npm:^7.1.0, @babel/traverse@npm:^7.1.6, @babel/traverse@npm:^7.21.5, @babel/traverse@npm:^7.23.2, @babel/traverse@npm:^7.23.3, @babel/traverse@npm:^7.4.3, @babel/traverse@npm:^7.4.5, @babel/traverse@npm:^7.7.0, @babel/traverse@npm:^7.9.0": - version: 7.23.3 - resolution: "@babel/traverse@npm:7.23.3" +"@babel/traverse@npm:^7.1.0, @babel/traverse@npm:^7.1.6, @babel/traverse@npm:^7.21.5, @babel/traverse@npm:^7.23.3, @babel/traverse@npm:^7.23.4, @babel/traverse@npm:^7.4.3, @babel/traverse@npm:^7.4.5, @babel/traverse@npm:^7.7.0, @babel/traverse@npm:^7.9.0": + version: 7.23.4 + resolution: "@babel/traverse@npm:7.23.4" dependencies: - "@babel/code-frame": ^7.22.13 - "@babel/generator": ^7.23.3 + "@babel/code-frame": ^7.23.4 + "@babel/generator": ^7.23.4 "@babel/helper-environment-visitor": ^7.22.20 "@babel/helper-function-name": ^7.23.0 "@babel/helper-hoist-variables": ^7.22.5 "@babel/helper-split-export-declaration": ^7.22.6 - "@babel/parser": ^7.23.3 - "@babel/types": ^7.23.3 + "@babel/parser": ^7.23.4 + "@babel/types": ^7.23.4 debug: ^4.1.0 globals: ^11.1.0 - checksum: f4e0c05f2f82368b9be7e1fed38cfcc2e1074967a8b76ac837b89661adbd391e99d0b1fd8c31215ffc3a04d2d5d7ee5e627914a09082db84ec5606769409fe2b + checksum: e8c9cd92cfd6fec9cf3969604edea5a58c2d55275b88b9de06f0d94de43b64b04d57168554b617159d62c840a8700e6d4c7954d2e6ed69cfb918202ac01561e9 languageName: node linkType: hard @@ -2738,14 +2738,14 @@ __metadata: languageName: node linkType: hard -"@babel/types@npm:^7.0.0, @babel/types@npm:^7.12.6, @babel/types@npm:^7.2.0, @babel/types@npm:^7.20.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.21.5, @babel/types@npm:^7.22.15, @babel/types@npm:^7.22.19, @babel/types@npm:^7.22.5, @babel/types@npm:^7.23.0, @babel/types@npm:^7.23.3, @babel/types@npm:^7.4.0, @babel/types@npm:^7.4.4, @babel/types@npm:^7.7.0, @babel/types@npm:^7.8.3, @babel/types@npm:^7.9.0": - version: 7.23.3 - resolution: "@babel/types@npm:7.23.3" +"@babel/types@npm:^7.0.0, @babel/types@npm:^7.12.6, @babel/types@npm:^7.2.0, @babel/types@npm:^7.20.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.21.5, @babel/types@npm:^7.22.15, @babel/types@npm:^7.22.19, @babel/types@npm:^7.22.5, @babel/types@npm:^7.23.0, @babel/types@npm:^7.23.3, @babel/types@npm:^7.23.4, @babel/types@npm:^7.4.0, @babel/types@npm:^7.4.4, @babel/types@npm:^7.7.0, @babel/types@npm:^7.8.3, @babel/types@npm:^7.9.0": + version: 7.23.4 + resolution: "@babel/types@npm:7.23.4" dependencies: - "@babel/helper-string-parser": ^7.22.5 + "@babel/helper-string-parser": ^7.23.4 "@babel/helper-validator-identifier": ^7.22.20 to-fast-properties: ^2.0.0 - checksum: b96f1ec495351aeb2a5f98dd494aafa17df02a351548ae96999460f35c933261c839002a34c1e83552ff0d9f5e94d0b5b8e105d38131c7c9b0f5a6588676f35d + checksum: 8a1ab20da663d202b1c090fdef4b157d3c7d8cb1cf60ea548f887d7b674935371409804d6cba52f870c22ced7685fcb41b0578d3edde720990de00cbb328da54 languageName: node linkType: hard @@ -3117,6 +3117,16 @@ __metadata: languageName: node linkType: hard +"@dependents/detective-less@npm:^3.0.1": + version: 3.0.2 + resolution: "@dependents/detective-less@npm:3.0.2" + dependencies: + gonzales-pe: ^4.3.0 + node-source-walk: ^5.0.1 + checksum: 2c263ab64fcd1f76117bc35f2b29a150c64bd2b105c96a909a63ce2f2baf07efd93d9ae80e612161d003fb71fbe46598292375f5cc3f447a1b83cfb545dc8f8f + languageName: node + linkType: hard + "@discoveryjs/json-ext@npm:0.5.7, @discoveryjs/json-ext@npm:^0.5.0, @discoveryjs/json-ext@npm:^0.5.3": version: 0.5.7 resolution: "@discoveryjs/json-ext@npm:0.5.7" @@ -3206,7 +3216,7 @@ __metadata: react-player: ^1.15.3 react-router: ^6.10.0 react-router-dom: ^6.10.0 - react-tooltip: ^5.21.1 + react-tooltip: ^5.23.0 react-viewer: ^3.2.2 react-virtualized-auto-sizer: ^1.0.7 react-window: ^1.8.8 @@ -3307,7 +3317,7 @@ __metadata: react-svg: ^12.1.0 react-text-mask: ^5.5.0 react-toastify: ^7.0.4 - react-tooltip: ^5.21.1 + react-tooltip: ^5.23.0 react-transition-group: ^4.4.5 react-values: ^0.3.3 react-virtualized: ^9.22.3 @@ -3840,10 +3850,10 @@ __metadata: languageName: node linkType: hard -"@eslint/js@npm:8.53.0": - version: 8.53.0 - resolution: "@eslint/js@npm:8.53.0" - checksum: e0d5cfb0000aaee237c8e6d6d6e366faa60b1ef7f928ce17778373aa44d3b886368f6d5e1f97f913f0f16801aad016db8b8df78418c9d18825c15590328028af +"@eslint/js@npm:8.54.0": + version: 8.54.0 + resolution: "@eslint/js@npm:8.54.0" + checksum: 6d88a6f711ef0133566b5340e3178a178fbb297585766460f195d0a9db85688f1e5cf8559fd5748aeb3131e2096c66595b323d8edab22df015acda68f1ebde92 languageName: node linkType: hard @@ -4297,12 +4307,12 @@ __metadata: linkType: hard "@grpc/grpc-js@npm:^1.3.2": - version: 1.9.9 - resolution: "@grpc/grpc-js@npm:1.9.9" + version: 1.9.11 + resolution: "@grpc/grpc-js@npm:1.9.11" dependencies: "@grpc/proto-loader": ^0.7.8 "@types/node": ">=12.12.47" - checksum: 71183a483b4a302f6c09b81db282c2d58f2a10624f22f7891b8039f0cd18a65d0c55b729e2ec76beba6daccc9bcf905cf63e9d0959dfe62da456c6b7b731424c + checksum: ed11ebcb0f8c34e2ada1d16ac2eef2465e1812871dd42bf40a405dfa06e2bfe895e680aff10644f9d51c33ce1ee1882ee466237ee478365c5ed265c0d7c5c015 languageName: node linkType: hard @@ -5793,10 +5803,10 @@ __metadata: languageName: node linkType: hard -"@remix-run/router@npm:1.11.0": - version: 1.11.0 - resolution: "@remix-run/router@npm:1.11.0" - checksum: 1966436ab3ab982862195e4871790644ce21e01511aa3f4350436296224e4dec2e6ee35f1f4cb83db69f7aa0e8ad4a0a01928b05359ae654edc8e2aa82bf754b +"@remix-run/router@npm:1.12.0": + version: 1.12.0 + resolution: "@remix-run/router@npm:1.12.0" + checksum: 0528a5c9dac443f90aef30b65fed39c6654b5c2db1d01d700b212d783958935b4d800250530430d78eacf03f3baa104edeae75a29cfb13b3180cbfca3352e645 languageName: node linkType: hard @@ -5814,86 +5824,86 @@ __metadata: languageName: node linkType: hard -"@smithy/abort-controller@npm:^2.0.12": - version: 2.0.12 - resolution: "@smithy/abort-controller@npm:2.0.12" +"@smithy/abort-controller@npm:^2.0.13": + version: 2.0.13 + resolution: "@smithy/abort-controller@npm:2.0.13" dependencies: - "@smithy/types": ^2.4.0 + "@smithy/types": ^2.5.0 tslib: ^2.5.0 - checksum: 187bbe7819271de99c8218d0df08d7b56131a7563e1822ef3142ecdad258201c9cc792e222d59145f6f59f6260e3c4ae2ef09b76370daa393797fad1b3d56551 + checksum: 6f62555669d7fec47427343b82b135cf5a87613a7479e32e6324e9090a7b4e2b3da1be0a916848478062841e619c48ba5f71f5ba8ce9be73115cb293776aa9aa languageName: node linkType: hard -"@smithy/config-resolver@npm:^2.0.16, @smithy/config-resolver@npm:^2.0.17": - version: 2.0.17 - resolution: "@smithy/config-resolver@npm:2.0.17" +"@smithy/config-resolver@npm:^2.0.18": + version: 2.0.18 + resolution: "@smithy/config-resolver@npm:2.0.18" dependencies: - "@smithy/node-config-provider": ^2.1.4 - "@smithy/types": ^2.4.0 + "@smithy/node-config-provider": ^2.1.5 + "@smithy/types": ^2.5.0 "@smithy/util-config-provider": ^2.0.0 - "@smithy/util-middleware": ^2.0.5 + "@smithy/util-middleware": ^2.0.6 tslib: ^2.5.0 - checksum: 35a3f2319640d618ce468cbd7b0d358b5610963212bf19e071899c41f7150ea58492ea95982b842e218c119cc8669b1f198371d8854c7af59a07dc2be7712877 + checksum: 40d89b243143baf61e2ab7495a97594b33a15ca7b498fc40b04c1b19f754eab95ab840733f6c63e7ac42b282c96d0925d256cdf399c915a0e24e75a7c6258a10 languageName: node linkType: hard -"@smithy/credential-provider-imds@npm:^2.0.0, @smithy/credential-provider-imds@npm:^2.1.0": - version: 2.1.0 - resolution: "@smithy/credential-provider-imds@npm:2.1.0" +"@smithy/credential-provider-imds@npm:^2.0.0, @smithy/credential-provider-imds@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/credential-provider-imds@npm:2.1.1" dependencies: - "@smithy/node-config-provider": ^2.1.4 - "@smithy/property-provider": ^2.0.13 - "@smithy/types": ^2.4.0 - "@smithy/url-parser": ^2.0.12 + "@smithy/node-config-provider": ^2.1.5 + "@smithy/property-provider": ^2.0.14 + "@smithy/types": ^2.5.0 + "@smithy/url-parser": ^2.0.13 tslib: ^2.5.0 - checksum: bee818bc42fa9648160be08f384316964f6758f6667c01a8cd5052e38fe78f7523e4e0135583f76887cd73d13db22566025e4d3388235169e4c76989b29c71cd + checksum: 110c4185b39849c9baac6355deac959fbe6ff5bfcaeb6cafd6ff3c30b98fffe618d3b08aa2ef538b8f6f1f84e0f56b7f2d7f60c603967f5410768e8da002f8e9 languageName: node linkType: hard -"@smithy/eventstream-codec@npm:^2.0.12": - version: 2.0.12 - resolution: "@smithy/eventstream-codec@npm:2.0.12" +"@smithy/eventstream-codec@npm:^2.0.13": + version: 2.0.13 + resolution: "@smithy/eventstream-codec@npm:2.0.13" dependencies: "@aws-crypto/crc32": 3.0.0 - "@smithy/types": ^2.4.0 + "@smithy/types": ^2.5.0 "@smithy/util-hex-encoding": ^2.0.0 tslib: ^2.5.0 - checksum: 38e457645512d06e9b74bdb8b33df8b712e96b97e59b7cd51c9d31686ba71b7f4e094615dedcca7a1790fdb7e52f3e0791af7d7b66ca46e0556544827a311d5b + checksum: fdae10c869061e6335903d9f0d80dbd0bb9fb5af484c97e5c9490a59ce3d27ca0bba8683149ee2dee7045c84c4d8c014b411611164535bb53936e1fef21ed8bc languageName: node linkType: hard -"@smithy/fetch-http-handler@npm:^2.2.4, @smithy/fetch-http-handler@npm:^2.2.5": - version: 2.2.5 - resolution: "@smithy/fetch-http-handler@npm:2.2.5" +"@smithy/fetch-http-handler@npm:^2.2.6": + version: 2.2.6 + resolution: "@smithy/fetch-http-handler@npm:2.2.6" dependencies: - "@smithy/protocol-http": ^3.0.8 - "@smithy/querystring-builder": ^2.0.12 - "@smithy/types": ^2.4.0 + "@smithy/protocol-http": ^3.0.9 + "@smithy/querystring-builder": ^2.0.13 + "@smithy/types": ^2.5.0 "@smithy/util-base64": ^2.0.1 tslib: ^2.5.0 - checksum: 6f1b2fab177666d1901bfb57f533585539ff319bffdb60989501793b1ea3bd224a4e47973a0fd3b748004c3c85069d96de33621dca4da9d4df077ebfb9c7afdb + checksum: 2bc59c5bd9ad5ffe72f1a686853444318118a0ac833acf6029114236804480ac3d9a9d41e0d92cea0263a2aa7d76a82dd8b6850ecfea2e4eeed30e1d8225ccc3 languageName: node linkType: hard -"@smithy/hash-node@npm:^2.0.12": - version: 2.0.14 - resolution: "@smithy/hash-node@npm:2.0.14" +"@smithy/hash-node@npm:^2.0.15": + version: 2.0.15 + resolution: "@smithy/hash-node@npm:2.0.15" dependencies: - "@smithy/types": ^2.4.0 + "@smithy/types": ^2.5.0 "@smithy/util-buffer-from": ^2.0.0 "@smithy/util-utf8": ^2.0.2 tslib: ^2.5.0 - checksum: 2ea44f9e3181050344b77f3cabea5a891edaedd0d67f601f4b37ce66f42364c69aaf430c2513607143a4a4cfce528b19f9f83105b51ea88c2bc1cf19feb70cb3 + checksum: c3a2efed56ee6f58811d3a87a6e272a9c5fd82db527ea2c72cfe39401b61417676f2d7f952926be7b51ece134e662a8608a4ff4c2c500eb756a91a41384b716e languageName: node linkType: hard -"@smithy/invalid-dependency@npm:^2.0.12": - version: 2.0.12 - resolution: "@smithy/invalid-dependency@npm:2.0.12" +"@smithy/invalid-dependency@npm:^2.0.13": + version: 2.0.13 + resolution: "@smithy/invalid-dependency@npm:2.0.13" dependencies: - "@smithy/types": ^2.4.0 + "@smithy/types": ^2.5.0 tslib: ^2.5.0 - checksum: 3b8a218ad67d3eca06d1646f21e52bf7704449fec714a0c113ab5db100605b05b37b12facd00b92df1203d5bec66ff4ed5e763691ac7c098b85854f194eefb58 + checksum: f744eb38f5ee77d0b8ef5c57dfabf9befda4626f68808742e8b42754eba05e1def3e2a24e0daf2940b5454f52460af14e871dd8431b0237e87cb300be6704057 languageName: node linkType: hard @@ -5906,202 +5916,202 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-content-length@npm:^2.0.14": - version: 2.0.14 - resolution: "@smithy/middleware-content-length@npm:2.0.14" +"@smithy/middleware-content-length@npm:^2.0.15": + version: 2.0.15 + resolution: "@smithy/middleware-content-length@npm:2.0.15" dependencies: - "@smithy/protocol-http": ^3.0.8 - "@smithy/types": ^2.4.0 + "@smithy/protocol-http": ^3.0.9 + "@smithy/types": ^2.5.0 tslib: ^2.5.0 - checksum: ff289f3c7ec4dbf53297e5968196444a387ddd3e67cb8426e40cadc096e7a5127e30315520761aa53a98daecfde0e6ecc195a722d4b31b7662f63b3286474224 + checksum: f22a35e175f09b929655eb1445dc0954b2f1580bffc41b91cd01f67bf0e41367e510919f213c239157083b2a25f1aa0b9cc60b1b6832f3e03d4e00ec3228e7cb languageName: node linkType: hard -"@smithy/middleware-endpoint@npm:^2.1.3": - version: 2.1.5 - resolution: "@smithy/middleware-endpoint@npm:2.1.5" +"@smithy/middleware-endpoint@npm:^2.2.0": + version: 2.2.0 + resolution: "@smithy/middleware-endpoint@npm:2.2.0" dependencies: - "@smithy/middleware-serde": ^2.0.12 - "@smithy/node-config-provider": ^2.1.4 - "@smithy/shared-ini-file-loader": ^2.2.3 - "@smithy/types": ^2.4.0 - "@smithy/url-parser": ^2.0.12 - "@smithy/util-middleware": ^2.0.5 + "@smithy/middleware-serde": ^2.0.13 + "@smithy/node-config-provider": ^2.1.5 + "@smithy/shared-ini-file-loader": ^2.2.4 + "@smithy/types": ^2.5.0 + "@smithy/url-parser": ^2.0.13 + "@smithy/util-middleware": ^2.0.6 tslib: ^2.5.0 - checksum: 274ec6bb27ce57619c73dc164e68ebdb35f0473c786bc8aa808fbd02bd929a5d78a16492e9a2516cacff1311f523785489e904488b6bd301749f54154d801be1 + checksum: 2cf37d0859b2bb24deeca9e9907be38f120be56967970c0adbb443a9e126fd9889012b2d871df1fa1a1b2367f80b097f3f152d6bf8e4fdaf01fc6c714a1cc963 languageName: node linkType: hard -"@smithy/middleware-retry@npm:^2.0.18": - version: 2.0.19 - resolution: "@smithy/middleware-retry@npm:2.0.19" +"@smithy/middleware-retry@npm:^2.0.20": + version: 2.0.20 + resolution: "@smithy/middleware-retry@npm:2.0.20" dependencies: - "@smithy/node-config-provider": ^2.1.4 - "@smithy/protocol-http": ^3.0.8 - "@smithy/service-error-classification": ^2.0.5 - "@smithy/types": ^2.4.0 - "@smithy/util-middleware": ^2.0.5 - "@smithy/util-retry": ^2.0.5 + "@smithy/node-config-provider": ^2.1.5 + "@smithy/protocol-http": ^3.0.9 + "@smithy/service-error-classification": ^2.0.6 + "@smithy/types": ^2.5.0 + "@smithy/util-middleware": ^2.0.6 + "@smithy/util-retry": ^2.0.6 tslib: ^2.5.0 uuid: ^8.3.2 - checksum: 2cd787fa8272a1048e558dd80e59af0d2fd0169b408633e7867ed8bc6356d11ae758cdb261758d18f9def98d57b15978580082c9a653b8c56c58f3480fb63e81 + checksum: 8b76aaeba90dd80409a615f5c866ae8490b537bcc21c0bb5371026a891b7c74ac0a1647175bd1752b2c3d6a1b443eddddf2dc093b24da585d924e957dea18113 languageName: node linkType: hard -"@smithy/middleware-serde@npm:^2.0.12": - version: 2.0.12 - resolution: "@smithy/middleware-serde@npm:2.0.12" - dependencies: - "@smithy/types": ^2.4.0 - tslib: ^2.5.0 - checksum: 5e8b04511c017bcadbf1a6efc6c71588586cabaa130df10562a74159d128e56965581799e80a0645557bab03df8bea187b21cb1fd536e17cf73148e5b678925f - languageName: node - linkType: hard - -"@smithy/middleware-stack@npm:^2.0.6": - version: 2.0.6 - resolution: "@smithy/middleware-stack@npm:2.0.6" - dependencies: - "@smithy/types": ^2.4.0 - tslib: ^2.5.0 - checksum: 3626b71364b83d091751cd6ad7f7bc655a1746f970c63ea3205c2bc171a596a734394d556fcf66f1458b8151fe54cab5bf774ee66b4d40c3dd9d9e7d9114f905 - languageName: node - linkType: hard - -"@smithy/node-config-provider@npm:^2.1.3, @smithy/node-config-provider@npm:^2.1.4": - version: 2.1.4 - resolution: "@smithy/node-config-provider@npm:2.1.4" - dependencies: - "@smithy/property-provider": ^2.0.13 - "@smithy/shared-ini-file-loader": ^2.2.3 - "@smithy/types": ^2.4.0 - tslib: ^2.5.0 - checksum: 17e8c029dddf77f568973d8b6ffd0abeec3d1914b4634e2e31b4b3f5908a92461b22876f712ad05cbf7eb2b77ee96c40b768a76104a78b17ffb3792673d8c58f - languageName: node - linkType: hard - -"@smithy/node-http-handler@npm:^2.1.8": - version: 2.1.8 - resolution: "@smithy/node-http-handler@npm:2.1.8" - dependencies: - "@smithy/abort-controller": ^2.0.12 - "@smithy/protocol-http": ^3.0.8 - "@smithy/querystring-builder": ^2.0.12 - "@smithy/types": ^2.4.0 - tslib: ^2.5.0 - checksum: 17e51b8c0b2dc7dcf7e32bc2cbd836220f86355b4d630f0b94fad4ed79dfa737b4ecbb7c72752b59e6849ca342c4a3ade89846e0276d986a72d25ed280ce3a8c - languageName: node - linkType: hard - -"@smithy/property-provider@npm:^2.0.0, @smithy/property-provider@npm:^2.0.13": +"@smithy/middleware-serde@npm:^2.0.13": version: 2.0.13 - resolution: "@smithy/property-provider@npm:2.0.13" + resolution: "@smithy/middleware-serde@npm:2.0.13" dependencies: - "@smithy/types": ^2.4.0 + "@smithy/types": ^2.5.0 tslib: ^2.5.0 - checksum: 62443ec94d4dafaa0c2f285957264b3b548fd5a164ebd1ef02e4286c55d3e07e4d22d695fc2857ad0b1e406d01bf27271e9d7c3c05465638da0226ae4305d3d7 + checksum: 549bdc9d2a79ee746572d631c0f10f700fa251a46ca289271ce1904027b483ac617f2e01c43b3f7f202395588f6607f436b32930318a83ecd6004a0b869ccf09 languageName: node linkType: hard -"@smithy/protocol-http@npm:^3.0.8": - version: 3.0.8 - resolution: "@smithy/protocol-http@npm:3.0.8" +"@smithy/middleware-stack@npm:^2.0.7": + version: 2.0.7 + resolution: "@smithy/middleware-stack@npm:2.0.7" dependencies: - "@smithy/types": ^2.4.0 + "@smithy/types": ^2.5.0 tslib: ^2.5.0 - checksum: deb4f7d863bcc67724555b3a1ffb8e605a3df63cde9f40234813f072184bb68f5c33388c1934f56576b08a877bb8c9c0bfb849deb0526b55a9410678040fa019 + checksum: 46405edb32290c1d6e291352a943687afcdacbaea413494f86b61b99b7a85ffc8f8f5aaf58f14ecc3c7cd80535231047d748e5d9ee3c38cd1b02c20daea938aa languageName: node linkType: hard -"@smithy/querystring-builder@npm:^2.0.12": - version: 2.0.12 - resolution: "@smithy/querystring-builder@npm:2.0.12" +"@smithy/node-config-provider@npm:^2.1.5": + version: 2.1.5 + resolution: "@smithy/node-config-provider@npm:2.1.5" dependencies: - "@smithy/types": ^2.4.0 + "@smithy/property-provider": ^2.0.14 + "@smithy/shared-ini-file-loader": ^2.2.4 + "@smithy/types": ^2.5.0 + tslib: ^2.5.0 + checksum: 813a0b0fa9758cc181074e1b3c1d7d3a9598e7bbbbed5da24eb38ec3053a8c00d675ee293d245d84cb601ade2e83e3faa054e68131307973419f93828abeb780 + languageName: node + linkType: hard + +"@smithy/node-http-handler@npm:^2.1.9": + version: 2.1.9 + resolution: "@smithy/node-http-handler@npm:2.1.9" + dependencies: + "@smithy/abort-controller": ^2.0.13 + "@smithy/protocol-http": ^3.0.9 + "@smithy/querystring-builder": ^2.0.13 + "@smithy/types": ^2.5.0 + tslib: ^2.5.0 + checksum: 43f85155bcf08cfe2d2ca91decae932def73e41925151d4c5e039db5c2f3cd9ab0fcf04b05958e8861d1a0df7d4f9667e4434800db3408024c23832a2395d148 + languageName: node + linkType: hard + +"@smithy/property-provider@npm:^2.0.0, @smithy/property-provider@npm:^2.0.14": + version: 2.0.14 + resolution: "@smithy/property-provider@npm:2.0.14" + dependencies: + "@smithy/types": ^2.5.0 + tslib: ^2.5.0 + checksum: 44cd1b4eeb07be4b88c6a2e8a1f4cd6b56e40f1f457b64f596fc2f46ce7c4991230b0c9654cb4489f93897678b81457a1cac104f566d9856cfbc92a66efa1a2e + languageName: node + linkType: hard + +"@smithy/protocol-http@npm:^3.0.9": + version: 3.0.9 + resolution: "@smithy/protocol-http@npm:3.0.9" + dependencies: + "@smithy/types": ^2.5.0 + tslib: ^2.5.0 + checksum: d10f57da9c60f1b0806ae10b0482ee97b227b76151c55daebc57c7dab55dbee2329b3f36d6d7811b547994b8c2db5dddff0aedead9eede459856b5bc5b104723 + languageName: node + linkType: hard + +"@smithy/querystring-builder@npm:^2.0.13": + version: 2.0.13 + resolution: "@smithy/querystring-builder@npm:2.0.13" + dependencies: + "@smithy/types": ^2.5.0 "@smithy/util-uri-escape": ^2.0.0 tslib: ^2.5.0 - checksum: d7d0608ac14d8ccd2b418743fc91be9c77b75a302a7552f666a81454fa1764e2162fb2c2f7655cf24045ae44416252362111b9612ea9759dbc1f27f75a71aa42 + checksum: 453cdd8b28b310bd9d591f54e884c68b2215c03684aa7b8ae9844e57709e3f22c5ee5abc6441d8446023a7c4197232b7b7aa6fa7068af9f2654491a9a7c35ce6 languageName: node linkType: hard -"@smithy/querystring-parser@npm:^2.0.12": - version: 2.0.12 - resolution: "@smithy/querystring-parser@npm:2.0.12" +"@smithy/querystring-parser@npm:^2.0.13": + version: 2.0.13 + resolution: "@smithy/querystring-parser@npm:2.0.13" dependencies: - "@smithy/types": ^2.4.0 + "@smithy/types": ^2.5.0 tslib: ^2.5.0 - checksum: 889dad387fda7db289d0360cbc38901d2c726d164c56915c76ee125bb8059f8a86e28442841000112c3b8a5a3c7701da391f961350969ea5242c6cdf55f296cf + checksum: aaaa21dcdaa44d5d3d734512e3fe8591fff9713dc32da129aa836d938f5469286952eba997adc68fb2f9d8655b0e02a4bba7a6163ff22f799880c913b74396dd languageName: node linkType: hard -"@smithy/service-error-classification@npm:^2.0.5": - version: 2.0.5 - resolution: "@smithy/service-error-classification@npm:2.0.5" +"@smithy/service-error-classification@npm:^2.0.6": + version: 2.0.6 + resolution: "@smithy/service-error-classification@npm:2.0.6" dependencies: - "@smithy/types": ^2.4.0 - checksum: cd4b9fcc5cd940035ca4f3e832f8480d75eb81c90501bdb5c9295c5fd26487ca2e2f3d3efa9a322faeaedf10d6d8324327cd3341fc05d38f8605006ad836abaa + "@smithy/types": ^2.5.0 + checksum: 07be989a2d3e17e14f8c7824bf9342632ec5ed1e4e0b4f2d242442f49a50058db5cbb7b8419b684126bf5c4ba08f6bce3360f43d73bd2def15771a1af7c1c95f languageName: node linkType: hard -"@smithy/shared-ini-file-loader@npm:^2.0.6, @smithy/shared-ini-file-loader@npm:^2.2.3": - version: 2.2.3 - resolution: "@smithy/shared-ini-file-loader@npm:2.2.3" +"@smithy/shared-ini-file-loader@npm:^2.0.6, @smithy/shared-ini-file-loader@npm:^2.2.4": + version: 2.2.4 + resolution: "@smithy/shared-ini-file-loader@npm:2.2.4" dependencies: - "@smithy/types": ^2.4.0 + "@smithy/types": ^2.5.0 tslib: ^2.5.0 - checksum: b80e0a194fb2e04a2c8868b8098083d4e2efbe33f1a59a325c0afb6e676a5825e8346d7dc8078ce88f0aacd82d9516e4c1eab7a6b6d636c7f91591c0627a4af4 + checksum: 790cc9c1e0d39ec179fcb97f612205770112ed14fa6626b2dee81ef140d6fa0d89a87825ccddda35475f9de9e6b8b70228565b2ed90c1487de20b603cc79505a languageName: node linkType: hard "@smithy/signature-v4@npm:^2.0.0": - version: 2.0.14 - resolution: "@smithy/signature-v4@npm:2.0.14" + version: 2.0.15 + resolution: "@smithy/signature-v4@npm:2.0.15" dependencies: - "@smithy/eventstream-codec": ^2.0.12 + "@smithy/eventstream-codec": ^2.0.13 "@smithy/is-array-buffer": ^2.0.0 - "@smithy/types": ^2.4.0 + "@smithy/types": ^2.5.0 "@smithy/util-hex-encoding": ^2.0.0 - "@smithy/util-middleware": ^2.0.5 + "@smithy/util-middleware": ^2.0.6 "@smithy/util-uri-escape": ^2.0.0 "@smithy/util-utf8": ^2.0.2 tslib: ^2.5.0 - checksum: 84005cf45e744717ffc02d40d18867797cbcd9d14155db37999a8aba6add41921e1fd1a4746cdf60bcb20abb1445a73da46497c7be91b3a4b869a01feca7af5c + checksum: 94f9bacb933dd9dcfd0a94846170c1e72970a0970d01db480c64160263e54184e631511269607e34e298ba8e0001d831d7f9f2ec11d321c33616407cf70d06bb languageName: node linkType: hard -"@smithy/smithy-client@npm:^2.1.12, @smithy/smithy-client@npm:^2.1.14": - version: 2.1.14 - resolution: "@smithy/smithy-client@npm:2.1.14" +"@smithy/smithy-client@npm:^2.1.15": + version: 2.1.15 + resolution: "@smithy/smithy-client@npm:2.1.15" dependencies: - "@smithy/middleware-stack": ^2.0.6 - "@smithy/types": ^2.4.0 - "@smithy/util-stream": ^2.0.19 + "@smithy/middleware-stack": ^2.0.7 + "@smithy/types": ^2.5.0 + "@smithy/util-stream": ^2.0.20 tslib: ^2.5.0 - checksum: 4e9096a09cf2a07ccbbf274769a8f5987818263f7300b92501fcc2c205b07057f2dfc774481c9ca8d8a1f84109801908f8acb65cf4f3825b6971083f8eb00620 + checksum: ad9aa105748866f22147d5e357759edd4cc4e263269b50ad4d9d2f4ec211297d90bd768cd4f182eb8230a32134166b38532b24a8884589e75c417a6e964eaa6d languageName: node linkType: hard -"@smithy/types@npm:^2.4.0": - version: 2.4.0 - resolution: "@smithy/types@npm:2.4.0" +"@smithy/types@npm:^2.5.0": + version: 2.5.0 + resolution: "@smithy/types@npm:2.5.0" dependencies: tslib: ^2.5.0 - checksum: 936690f8ba9323c05a1046102f83d7ed76c5c2f2405ca22e8bfed8d66a5ba12d74a187c10d93b085d6822b98edaec7b6309a4401f036099bf239a0bf5cdcf00d + checksum: 9e03dcf6c9ae7239218ccecae0a04d5f0aaab42e17a326590becfd68f1b15ba1291ed408501efab4a20a0542d995b5a859ab58ca83cd4f3e2dbf430785e207a6 languageName: node linkType: hard -"@smithy/url-parser@npm:^2.0.12": - version: 2.0.12 - resolution: "@smithy/url-parser@npm:2.0.12" +"@smithy/url-parser@npm:^2.0.13": + version: 2.0.13 + resolution: "@smithy/url-parser@npm:2.0.13" dependencies: - "@smithy/querystring-parser": ^2.0.12 - "@smithy/types": ^2.4.0 + "@smithy/querystring-parser": ^2.0.13 + "@smithy/types": ^2.5.0 tslib: ^2.5.0 - checksum: 40324cee758137342573e9f7bf685bc7c3f8284ff2f15d3c68a244dacf26f62cd92b234f220ddfc2963038ef766dd73c3f70642c592a49bd10432c5432fb1ab6 + checksum: 96b64d0740aa8ce365316a361f5549c55fee92218e6d5673750ce8036bb68a9c200f2a39a945e548815c5206a5f28cb0022155e60d357fbb4a6bb41381d4b622 languageName: node linkType: hard -"@smithy/util-base64@npm:^2.0.0, @smithy/util-base64@npm:^2.0.1": +"@smithy/util-base64@npm:^2.0.1": version: 2.0.1 resolution: "@smithy/util-base64@npm:2.0.1" dependencies: @@ -6148,42 +6158,42 @@ __metadata: languageName: node linkType: hard -"@smithy/util-defaults-mode-browser@npm:^2.0.16": - version: 2.0.18 - resolution: "@smithy/util-defaults-mode-browser@npm:2.0.18" +"@smithy/util-defaults-mode-browser@npm:^2.0.19": + version: 2.0.19 + resolution: "@smithy/util-defaults-mode-browser@npm:2.0.19" dependencies: - "@smithy/property-provider": ^2.0.13 - "@smithy/smithy-client": ^2.1.14 - "@smithy/types": ^2.4.0 + "@smithy/property-provider": ^2.0.14 + "@smithy/smithy-client": ^2.1.15 + "@smithy/types": ^2.5.0 bowser: ^2.11.0 tslib: ^2.5.0 - checksum: e54bf484abae7d3895e70ef3f00e22e87ec8c6eb796f8031862c49c4bb76916a4a554c1584487f445d06b7b9603dfc92f871c67102478673c55c5785f1154f64 + checksum: 13b1f9fed2a9bbb9f755b192e1ddaccdb5624f104f89c0f0404c48ad1eafb006733f9b930692e50261c8479821cdcce08cfb71771ea5c0d112638bd4d23ba24d languageName: node linkType: hard -"@smithy/util-defaults-mode-node@npm:^2.0.21": - version: 2.0.24 - resolution: "@smithy/util-defaults-mode-node@npm:2.0.24" +"@smithy/util-defaults-mode-node@npm:^2.0.25": + version: 2.0.25 + resolution: "@smithy/util-defaults-mode-node@npm:2.0.25" dependencies: - "@smithy/config-resolver": ^2.0.17 - "@smithy/credential-provider-imds": ^2.1.0 - "@smithy/node-config-provider": ^2.1.4 - "@smithy/property-provider": ^2.0.13 - "@smithy/smithy-client": ^2.1.14 - "@smithy/types": ^2.4.0 + "@smithy/config-resolver": ^2.0.18 + "@smithy/credential-provider-imds": ^2.1.1 + "@smithy/node-config-provider": ^2.1.5 + "@smithy/property-provider": ^2.0.14 + "@smithy/smithy-client": ^2.1.15 + "@smithy/types": ^2.5.0 tslib: ^2.5.0 - checksum: 1a7d1cd1c04e13d606dd1f29d9a63e1a5ddb64a8dd6e730e975f8eeacaa824ccf6a69b9055aa5393eb18e4a6932ef7632317d95db1e4d652f317392e0e729bb7 + checksum: 8e82f7f0c4260475e172f5baaf449155150c7d5ccb7939ccee3a061831b58998c55046cfd89761c06e43637e3e50805ca38277c5410f59b0906323e748285b80 languageName: node linkType: hard -"@smithy/util-endpoints@npm:^1.0.2": - version: 1.0.3 - resolution: "@smithy/util-endpoints@npm:1.0.3" +"@smithy/util-endpoints@npm:^1.0.4": + version: 1.0.4 + resolution: "@smithy/util-endpoints@npm:1.0.4" dependencies: - "@smithy/node-config-provider": ^2.1.4 - "@smithy/types": ^2.4.0 + "@smithy/node-config-provider": ^2.1.5 + "@smithy/types": ^2.5.0 tslib: ^2.5.0 - checksum: 474431360e6659c048a082e6e52af65bc1075b294191a187021b13191b2cb5001ddb7839696e3c5dfd16fb6ec3729c20735f41d803d2faf6a50ace96d57c566f + checksum: 8c121070c0207b728e498a9d0b6082fcc83098b0ab33fde9b0b2db1bef724affc8712d9ae251bc155f595b7ca61a61529b519597c549808129d51bfdef9ad119 languageName: node linkType: hard @@ -6196,40 +6206,40 @@ __metadata: languageName: node linkType: hard -"@smithy/util-middleware@npm:^2.0.5": - version: 2.0.5 - resolution: "@smithy/util-middleware@npm:2.0.5" +"@smithy/util-middleware@npm:^2.0.6": + version: 2.0.6 + resolution: "@smithy/util-middleware@npm:2.0.6" dependencies: - "@smithy/types": ^2.4.0 + "@smithy/types": ^2.5.0 tslib: ^2.5.0 - checksum: 9d001723e7472c0d78619320235f66d1de42f16e13d1189697f8e447d05643047ab97965525b147eaafbb0e169563ecb5b806da2d02bd4ce0b652b72df4d9131 + checksum: bf31193bbd08691c23e18da069fe95e2e989fcfde87133d183d469dc6e34d76918d56d68f5e5ff15d4f58575e7426ca6f952d248e51421739a2968c51e42e5b7 languageName: node linkType: hard -"@smithy/util-retry@npm:^2.0.5": - version: 2.0.5 - resolution: "@smithy/util-retry@npm:2.0.5" +"@smithy/util-retry@npm:^2.0.6": + version: 2.0.6 + resolution: "@smithy/util-retry@npm:2.0.6" dependencies: - "@smithy/service-error-classification": ^2.0.5 - "@smithy/types": ^2.4.0 + "@smithy/service-error-classification": ^2.0.6 + "@smithy/types": ^2.5.0 tslib: ^2.5.0 - checksum: e7169b458a9c194104e16014b2829deddb9ee4175fd17bd933d0ab9ec9df065cf23816b605eafb6604da1111e3280c5fea4da98dd8ec5f5f3e1c30e166119808 + checksum: c37d163f83981ca58c7d924b178a09e18abc915ffb5efb20fcc4e662ad909938296fd295244ed84a209e84e56d66a629a9eba655306ca401c1a3b91c4433ff22 languageName: node linkType: hard -"@smithy/util-stream@npm:^2.0.19": - version: 2.0.19 - resolution: "@smithy/util-stream@npm:2.0.19" +"@smithy/util-stream@npm:^2.0.20": + version: 2.0.20 + resolution: "@smithy/util-stream@npm:2.0.20" dependencies: - "@smithy/fetch-http-handler": ^2.2.5 - "@smithy/node-http-handler": ^2.1.8 - "@smithy/types": ^2.4.0 + "@smithy/fetch-http-handler": ^2.2.6 + "@smithy/node-http-handler": ^2.1.9 + "@smithy/types": ^2.5.0 "@smithy/util-base64": ^2.0.1 "@smithy/util-buffer-from": ^2.0.0 "@smithy/util-hex-encoding": ^2.0.0 "@smithy/util-utf8": ^2.0.2 tslib: ^2.5.0 - checksum: cf817edd4cbafbbbd6dd94befa2b44f66514ddb03e2963d32f3f0648ee72d262abdc032988bac2bbe59498aa08743ff4d80e41066e77adb4101f34a7a00edb3c + checksum: 24aeaa4cbb69c1faecf35a5c15631beae92742b0deb140fd565053aa995bd5587fef3150e58cc87d16896bf35ebefd5afcc894daee0dde4d44deafd4a158ff22 languageName: node linkType: hard @@ -6242,7 +6252,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-utf8@npm:^2.0.0, @smithy/util-utf8@npm:^2.0.2": +"@smithy/util-utf8@npm:^2.0.2": version: 2.0.2 resolution: "@smithy/util-utf8@npm:2.0.2" dependencies: @@ -8136,15 +8146,15 @@ __metadata: linkType: hard "@types/babel__core@npm:^7.0.0, @types/babel__core@npm:^7.1.0": - version: 7.20.4 - resolution: "@types/babel__core@npm:7.20.4" + version: 7.20.5 + resolution: "@types/babel__core@npm:7.20.5" dependencies: "@babel/parser": ^7.20.7 "@babel/types": ^7.20.7 "@types/babel__generator": "*" "@types/babel__template": "*" "@types/babel__traverse": "*" - checksum: 75ed6072213423d2b827740d68bbf96f5a7050ce8bd842dde0ceec8d352d06e847166bac757df4beba55525b65f8727c0432adeb5cb4f83aa42e155ac555767e + checksum: a3226f7930b635ee7a5e72c8d51a357e799d19cbf9d445710fa39ab13804f79ab1a54b72ea7d8e504659c7dfc50675db974b526142c754398d7413aa4bc30845 languageName: node linkType: hard @@ -8196,11 +8206,11 @@ __metadata: linkType: hard "@types/cheerio@npm:^0.22.22": - version: 0.22.34 - resolution: "@types/cheerio@npm:0.22.34" + version: 0.22.35 + resolution: "@types/cheerio@npm:0.22.35" dependencies: "@types/node": "*" - checksum: 8795f4ddc68f394d140513817a996dbe148872a7e30218f32cea90e7fb36802726450c7174c0b7cd27bd8bf179f20d2c0a43a9064547df3c51b8960711582a13 + checksum: 34ef8f0f754bd022e7d686c7295fdba997766a796257add2377be256f215f2e12fe74218125570e61344dbd3de0a952495181981af1eeb8eebeb5cf886c62f1f languageName: node linkType: hard @@ -8214,12 +8224,12 @@ __metadata: linkType: hard "@types/connect-history-api-fallback@npm:^1.3.5": - version: 1.5.3 - resolution: "@types/connect-history-api-fallback@npm:1.5.3" + version: 1.5.4 + resolution: "@types/connect-history-api-fallback@npm:1.5.4" dependencies: "@types/express-serve-static-core": "*" "@types/node": "*" - checksum: 97a0cdd9a657ec6a7b287d880e0413344ffbfd0fb5ede8a81381d8627cb8c7863051dc22af477de87376a39b6f414aad9b592958d242a866f191f436e7b1a42c + checksum: e1dee43b8570ffac02d2d47a2b4ba80d3ca0dd1840632dafb221da199e59dbe3778d3d7303c9e23c6b401f37c076935a5bc2aeae1c4e5feaefe1c371fe2073fd languageName: node linkType: hard @@ -8498,6 +8508,13 @@ __metadata: languageName: node linkType: hard +"@types/json5@npm:^0.0.29": + version: 0.0.29 + resolution: "@types/json5@npm:0.0.29" + checksum: e60b153664572116dfea673c5bda7778dbff150498f44f998e34b5886d8afc47f16799280e4b6e241c0472aef1bc36add771c569c68fc5125fc2ae519a3eb9ac + languageName: node + linkType: hard + "@types/jsonfile@npm:*": version: 6.1.4 resolution: "@types/jsonfile@npm:6.1.4" @@ -8508,9 +8525,9 @@ __metadata: linkType: hard "@types/lodash@npm:^4.14.167": - version: 4.14.201 - resolution: "@types/lodash@npm:4.14.201" - checksum: 484be655298e9b2dc2d218ea934071b2ea31e4a531c561dd220dbda65237e8d08c20dc2d457ac24f29be7fe167415bf7bb9360ea0d80bdb8b0f0ec8d8db92fae + version: 4.14.202 + resolution: "@types/lodash@npm:4.14.202" + checksum: a91acf3564a568c6f199912f3eb2c76c99c5a0d7e219394294213b3f2d54f672619f0fde4da22b29dc5d4c31457cd799acc2e5cb6bd90f9af04a1578483b6ff7 languageName: node linkType: hard @@ -8522,9 +8539,9 @@ __metadata: linkType: hard "@types/luxon@npm:^3.3.1": - version: 3.3.4 - resolution: "@types/luxon@npm:3.3.4" - checksum: aa4862bd62d748e7966f9a0ec76058e9d74397ee426c7d64f61c677d83de0303c303cc78515001833df3f4ad16c95f572b0e2ffaee6e55bc50b80857e8437f3a + version: 3.3.5 + resolution: "@types/luxon@npm:3.3.5" + checksum: 7fd31c673600dd494dedefe8c405d2e6957c0ba101f8445f7eaf9afcf4a1fa1ca649cab01c9777523ff9de58c3c35e2589a1a004a0c629cd7953033115ac74f5 languageName: node linkType: hard @@ -8608,36 +8625,36 @@ __metadata: linkType: hard "@types/node-forge@npm:^1.3.0": - version: 1.3.9 - resolution: "@types/node-forge@npm:1.3.9" + version: 1.3.10 + resolution: "@types/node-forge@npm:1.3.10" dependencies: "@types/node": "*" - checksum: 4ffab54136960b0944af942a44206470e98766b89b867b6126ebc65c6f21463fd9ea20b26714216e153fbbee7ca5ce689db9067ea286a92b34368a5e2f77601f + checksum: 363af42c83956c7e2483a71e398a02101ef6a55b4d86386c276315ca98bad02d6050b99fdbe13debcd1bcda250086b4a5b5c15a6fb2953d32420d269865ca7f8 languageName: node linkType: hard "@types/node@npm:*, @types/node@npm:>=12.12.47, @types/node@npm:>=13.7.0": - version: 20.9.0 - resolution: "@types/node@npm:20.9.0" + version: 20.9.3 + resolution: "@types/node@npm:20.9.3" dependencies: undici-types: ~5.26.4 - checksum: bfd927da6bff8a32051fa44bb47ca32a56d2c8bc8ba0170770f181cc1fa3c0b05863c9b930f0ba8604a48d5eb0d319166601709ca53bf2deae0025d8b6c6b8a3 + checksum: 0cfbfd2a8bd18acc75aa4d7685c7dcf56344f48addd4041d306dc194f3132f8014d56fd49fcb26bcdf400b883f9527e5e2beaf52dfce029cef15c69b8ed2e72a languageName: node linkType: hard "@types/node@npm:^16.0.0": - version: 16.18.61 - resolution: "@types/node@npm:16.18.61" - checksum: fdd162829eddc9b0b82a1ec485ba3876428ff3bd94c5869b13f4a36eb2aa9bddd22ea7e8ee3b2faa91a0f70ff08d8fd8d4be7dd0d143f8ee776907d6a1d2ed25 + version: 16.18.63 + resolution: "@types/node@npm:16.18.63" + checksum: 5600ad585e8bf68359cfbff965ebd6f04f22130232d057949c88840bf8acf6a05fbac343f69deac417439c47e8e5e396fdb049f575382f534bb98c0e8ac62a46 languageName: node linkType: hard "@types/node@npm:^18.15.5": - version: 18.18.9 - resolution: "@types/node@npm:18.18.9" + version: 18.18.11 + resolution: "@types/node@npm:18.18.11" dependencies: undici-types: ~5.26.4 - checksum: 629ce20357586144031cb43d601617eef45e59460dea6b1e123f708e6885664f44d54f65e5b72b2614af5b8613f3652ced832649c0b991accbc6a85139befa51 + checksum: e4c2c5b792023c86248013589820d157ced46a35dcd60b15a3133a8f67f6b54c8870f245ecccbe7a12c49f1991ea84401946ddbb3f44894ec042642233e616d5 languageName: node linkType: hard @@ -8672,9 +8689,9 @@ __metadata: linkType: hard "@types/prop-types@npm:*": - version: 15.7.10 - resolution: "@types/prop-types@npm:15.7.10" - checksum: 39ecc2d9e439ed16b32937a08d98b84ed4a70f53bcd52c8564c0cd7a36fe1004ca83a1fb94b13c1b7a5c048760f06445c3c6a91a6972c8eff652c0b50c9424b1 + version: 15.7.11 + resolution: "@types/prop-types@npm:15.7.11" + checksum: 7519ff11d06fbf6b275029fe03fff9ec377b4cb6e864cac34d87d7146c7f5a7560fd164bdc1d2dbe00b60c43713631251af1fd3d34d46c69cd354602bc0c7c54 languageName: node linkType: hard @@ -8718,11 +8735,11 @@ __metadata: linkType: hard "@types/react-dom@npm:*, @types/react-dom@npm:^18.0.11": - version: 18.2.15 - resolution: "@types/react-dom@npm:18.2.15" + version: 18.2.16 + resolution: "@types/react-dom@npm:18.2.16" dependencies: "@types/react": "*" - checksum: 8e9631600c21ff561328e38a951d1991b3b3b20f538af4c0efbd1327c883a5573a63f50e1b945c34fa51b114b30e1ca5e62317bd54f21e063d6697b4be843a03 + checksum: 0d79f6e121155003840414e3cb1f5d70eef3a7f03450f7837c806b319b9e737880e368def615e2bf49159ed4041899e77b1002902e1285dd656783d2a836eb73 languageName: node linkType: hard @@ -8745,13 +8762,13 @@ __metadata: linkType: hard "@types/react@npm:*, @types/react@npm:>=16, @types/react@npm:^18.0.28": - version: 18.2.37 - resolution: "@types/react@npm:18.2.37" + version: 18.2.38 + resolution: "@types/react@npm:18.2.38" dependencies: "@types/prop-types": "*" "@types/scheduler": "*" csstype: ^3.0.2 - checksum: 2d2599f1a09e4f678509161fea8baeaf76d21deee460f4f3ccc1ca431ebe85f896d7d0b906127de17e97ed57240cec61955eb97d0b5d9cbf4e97fd6620b1acdb + checksum: 71f8c167173d32252be8b2d3c1c76b3570b94d2fbbd139da86d146be453626f5777e12c2781559119637520dbef9f91cffe968f67b5901618f29226d49fad326 languageName: node linkType: hard @@ -8763,16 +8780,16 @@ __metadata: linkType: hard "@types/scheduler@npm:*": - version: 0.16.6 - resolution: "@types/scheduler@npm:0.16.6" - checksum: 4cec89727584a50c66a07c322469a4d9e64f5b0117691f36afd4ceae75741c0038a6e107c05e515511d5358b5897becbe065b6e4560664cb1b16f6754915043d + version: 0.16.7 + resolution: "@types/scheduler@npm:0.16.7" + checksum: 70684e998202d30c43427e0410c785878f63108f6b9a2e490b78dfb75e21834884a7d553a93de6ab887a6f02e49509981d49ab01f746fd3791de48bb5cbd6bc5 languageName: node linkType: hard "@types/semver@npm:^7.3.12, @types/semver@npm:^7.3.4": - version: 7.5.5 - resolution: "@types/semver@npm:7.5.5" - checksum: 533e6c93d1262d65f449423d94a445f7f3db0672e7429f21b6a1636d6051dbab3a2989ddcda9b79c69bb37830931d09fc958a65305a891357f5cea3257c297f5 + version: 7.5.6 + resolution: "@types/semver@npm:7.5.6" + checksum: 563a0120ec0efcc326567db2ed920d5d98346f3638b6324ea6b50222b96f02a8add3c51a916b6897b51523aad8ac227d21d3dcf8913559f1bfc6c15b14d23037 languageName: node linkType: hard @@ -8823,13 +8840,13 @@ __metadata: linkType: hard "@types/styled-components@npm:^5.1.26": - version: 5.1.30 - resolution: "@types/styled-components@npm:5.1.30" + version: 5.1.31 + resolution: "@types/styled-components@npm:5.1.31" dependencies: "@types/hoist-non-react-statics": "*" "@types/react": "*" csstype: ^3.0.2 - checksum: 22948191a2de0187ab20383c1d9a6b7c9dfda9e6d58f104e03fd8bb8f3ee150b800806e90efa888f1d0fbb53d404613e4b6cccf0c77eb4287e8b1aeb1d7c1cb5 + checksum: bfa93d2a65705e82f25bfdb4868b56133f69162816bbe904c767c6b8de2ae6b056faba1e7b7fe8cbc08195f815b95a1c5b80a7e9f72145b155c4e1b933d79b57 languageName: node linkType: hard @@ -8870,9 +8887,9 @@ __metadata: linkType: hard "@types/trusted-types@npm:^2.0.2": - version: 2.0.6 - resolution: "@types/trusted-types@npm:2.0.6" - checksum: 04250c7175e565b4d32cc2fd9ac1824ab9f0b2cfa82a7978581ffa1c96d7ed4166dc2415b4670cfcb734b389c49c3e9fc028b06ff325d77cc9e6f06bb05e273e + version: 2.0.7 + resolution: "@types/trusted-types@npm:2.0.7" + checksum: 8e4202766a65877efcf5d5a41b7dd458480b36195e580a3b1085ad21e948bc417d55d6f8af1fd2a7ad008015d4117d5fdfe432731157da3c68678487174e4ba3 languageName: node linkType: hard @@ -8907,11 +8924,11 @@ __metadata: linkType: hard "@types/ws@npm:*, @types/ws@npm:^8.5.1, @types/ws@npm:^8.5.4": - version: 8.5.9 - resolution: "@types/ws@npm:8.5.9" + version: 8.5.10 + resolution: "@types/ws@npm:8.5.10" dependencies: "@types/node": "*" - checksum: 83f436b731d2cdc49a45ced31a0a65cdd2e39c24d7b882776c26efa190dad6553e266d624c7a7089f36ad3ed471e02e729f3219282c80689b435f665df4a2b0b + checksum: 3ec416ea2be24042ebd677932a462cf16d2080393d8d7d0b1b3f5d6eaa4a7387aaf0eefb99193c0bfd29444857cf2e0c3ac89899e130550dc6c14ada8a46d25e languageName: node linkType: hard @@ -8932,20 +8949,20 @@ __metadata: linkType: hard "@types/yargs@npm:^15.0.0": - version: 15.0.18 - resolution: "@types/yargs@npm:15.0.18" + version: 15.0.19 + resolution: "@types/yargs@npm:15.0.19" dependencies: "@types/yargs-parser": "*" - checksum: 52bd812d25f0ee0943506b6189fd14211ca233ff061d2003406a6148ce6a58148f4033bb9bc6b6dc598665354b81e0750cbaf6c695f70f29abb1ae45742d92d3 + checksum: 6a509db36304825674f4f00300323dce2b4d850e75819c3db87e9e9f213ac2c4c6ed3247a3e4eed6e8e45b3f191b133a356d3391dd694d9ea27a0507d914ef4c languageName: node linkType: hard "@types/yargs@npm:^17.0.8": - version: 17.0.31 - resolution: "@types/yargs@npm:17.0.31" + version: 17.0.32 + resolution: "@types/yargs@npm:17.0.32" dependencies: "@types/yargs-parser": "*" - checksum: a7f4fe5b05162790cbcbccceb22821e2cb3e49d95a4d8403352f258744cd504124f3ab502eddb2262f5d2d9cc6a0547851ae44621b14fe4c505d8f1434c2a19e + checksum: 4505bdebe8716ff383640c6e928f855b5d337cb3c68c81f7249fc6b983d0aa48de3eee26062b84f37e0d75a5797bc745e0c6e76f42f81771252a758c638f36ba languageName: node linkType: hard @@ -8959,6 +8976,13 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/types@npm:4.33.0": + version: 4.33.0 + resolution: "@typescript-eslint/types@npm:4.33.0" + checksum: 3baae1ca35872421b4eb60f5d3f3f32dc1d513f2ae0a67dee28c7d159fd7a43ed0d11a8a5a0f0c2d38507ffa036fc7c511cb0f18a5e8ac524b3ebde77390ec53 + languageName: node + linkType: hard + "@typescript-eslint/types@npm:5.62.0": version: 5.62.0 resolution: "@typescript-eslint/types@npm:5.62.0" @@ -8966,7 +8990,7 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:5.62.0": +"@typescript-eslint/typescript-estree@npm:5.62.0, @typescript-eslint/typescript-estree@npm:^5.55.0": version: 5.62.0 resolution: "@typescript-eslint/typescript-estree@npm:5.62.0" dependencies: @@ -8984,6 +9008,24 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/typescript-estree@npm:^4.33.0": + version: 4.33.0 + resolution: "@typescript-eslint/typescript-estree@npm:4.33.0" + dependencies: + "@typescript-eslint/types": 4.33.0 + "@typescript-eslint/visitor-keys": 4.33.0 + debug: ^4.3.1 + globby: ^11.0.3 + is-glob: ^4.0.1 + semver: ^7.3.5 + tsutils: ^3.21.0 + peerDependenciesMeta: + typescript: + optional: true + checksum: 2566984390c76bd95f43240057215c068c69769e406e27aba41e9f21fd300074d6772e4983fa58fe61e80eb5550af1548d2e31e80550d92ba1d051bb00fe6f5c + languageName: node + linkType: hard + "@typescript-eslint/utils@npm:^5.10.0, @typescript-eslint/utils@npm:^5.45.0": version: 5.62.0 resolution: "@typescript-eslint/utils@npm:5.62.0" @@ -9002,6 +9044,16 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/visitor-keys@npm:4.33.0": + version: 4.33.0 + resolution: "@typescript-eslint/visitor-keys@npm:4.33.0" + dependencies: + "@typescript-eslint/types": 4.33.0 + eslint-visitor-keys: ^2.0.0 + checksum: 59953e474ad4610c1aa23b2b1a964445e2c6201521da6367752f37939d854352bbfced5c04ea539274065e012b1337ba3ffa49c2647a240a4e87155378ba9873 + languageName: node + linkType: hard + "@typescript-eslint/visitor-keys@npm:5.62.0": version: 5.62.0 resolution: "@typescript-eslint/visitor-keys@npm:5.62.0" @@ -9803,6 +9855,13 @@ __metadata: languageName: node linkType: hard +"any-promise@npm:^1.1.0": + version: 1.3.0 + resolution: "any-promise@npm:1.3.0" + checksum: 0ee8a9bdbe882c90464d75d1f55cf027f5458650c4bd1f0467e65aec38ccccda07ca5844969ee77ed46d04e7dded3eaceb027e8d32f385688523fe305fa7e1de + languageName: node + linkType: hard + "anymatch@npm:^2.0.0": version: 2.0.0 resolution: "anymatch@npm:2.0.0" @@ -9823,6 +9882,13 @@ __metadata: languageName: node linkType: hard +"app-module-path@npm:^2.2.0": + version: 2.2.0 + resolution: "app-module-path@npm:2.2.0" + checksum: b52aa49cfa809efbad41b514222e8ef3f8ee9e147f5eccf79280b45eddcc61f7aeb302b0049474e3f42072dd53a28348c57dd96f36cd461d2e31cc8ab1ef56b5 + languageName: node + linkType: hard + "app-root-dir@npm:^1.0.2": version: 1.0.2 resolution: "app-root-dir@npm:1.0.2" @@ -9928,9 +9994,9 @@ __metadata: linkType: hard "array-equal@npm:^1.0.0": - version: 1.0.0 - resolution: "array-equal@npm:1.0.0" - checksum: 3f68045806357db9b2fa1ad583e42a659de030633118a0cd35ee4975cb20db3b9a3d36bbec9b5afe70011cf989eefd215c12fe0ce08c498f770859ca6e70688a + version: 1.0.2 + resolution: "array-equal@npm:1.0.2" + checksum: 5c37df0cad330516d1255663dfa4fa761fb0ea63878f535aa70dfefe5499853a8b372faf0a27b91781ca1230f4b4333bbeb751e9b1748527d96df2bee30032ea languageName: node linkType: hard @@ -10124,6 +10190,27 @@ __metadata: languageName: node linkType: hard +"ast-module-types@npm:^2.7.1": + version: 2.7.1 + resolution: "ast-module-types@npm:2.7.1" + checksum: 6238647bcf34eeff2a1390cb60388da8a5064dd598acf48d68f8d972d9a332dc8d0382a5a7c511b16470e314b313bcbb95de4b0b669515393e043282c0489538 + languageName: node + linkType: hard + +"ast-module-types@npm:^3.0.0": + version: 3.0.0 + resolution: "ast-module-types@npm:3.0.0" + checksum: c6ef35d9b286f84c7942aeb0e2b50e389e0b6f44ee3b6d2c46aeed4852dbca0681dde8c3c0ec1d456dad5dbc84fced2e1c607b10b4b4c3b065b901b40f45bbe7 + languageName: node + linkType: hard + +"ast-module-types@npm:^4.0.0": + version: 4.0.0 + resolution: "ast-module-types@npm:4.0.0" + checksum: 12705ff906e57d1440a2ff82f30cf5b3c93e1734076ea5868936477d5812a6fc257eb1e44fb2b7f8c22f7483987251d72251d2a295542f64df8768434f3f06db + languageName: node + linkType: hard + "ast-types@npm:0.15.2": version: 0.15.2 resolution: "ast-types@npm:0.15.2" @@ -10257,13 +10344,13 @@ __metadata: linkType: hard "axios@npm:^1.6.0": - version: 1.6.1 - resolution: "axios@npm:1.6.1" + version: 1.6.2 + resolution: "axios@npm:1.6.2" dependencies: follow-redirects: ^1.15.0 form-data: ^4.0.0 proxy-from-env: ^1.1.0 - checksum: 573f03f59b7487d54551b16f5e155d1d130ad4864ed32d1da93d522b78a57123b34e3bde37f822a65ee297e79f1db840f9ad6514addff50d3cbf5caeed39e8dc + checksum: 4a7429e2b784be0f2902ca2680964391eae7236faa3967715f30ea45464b98ae3f1c6f631303b13dfe721b17126b01f486c7644b9ef276bfc63112db9fd379f8 languageName: node linkType: hard @@ -11117,9 +11204,9 @@ __metadata: linkType: hard "caniuse-lite@npm:^1.0.30001541": - version: 1.0.30001561 - resolution: "caniuse-lite@npm:1.0.30001561" - checksum: 949829fe037e23346595614e01d362130245920503a12677f2506ce68e1240360113d6383febed41e8aa38cd0f5fd9c69c21b0af65a71c0246d560db489f1373 + version: 1.0.30001563 + resolution: "caniuse-lite@npm:1.0.30001563" + checksum: c90a1e6efc72fc73ad4a756011242211406883b36dde3a01726e7246281dcbceaf78e1ee61d1298624c4a69cf81c12b41e8d2a2f1b7c89ed84c9333026a0bfbd languageName: node linkType: hard @@ -11203,7 +11290,7 @@ __metadata: languageName: node linkType: hard -"chalk@npm:^4.0.0, chalk@npm:^4.0.2, chalk@npm:^4.1.0, chalk@npm:^4.1.2": +"chalk@npm:^4.0.0, chalk@npm:^4.0.2, chalk@npm:^4.1.0, chalk@npm:^4.1.1, chalk@npm:^4.1.2": version: 4.1.2 resolution: "chalk@npm:4.1.2" dependencies: @@ -11592,7 +11679,7 @@ __metadata: languageName: node linkType: hard -"color-name@npm:^1.0.0, color-name@npm:~1.1.4": +"color-name@npm:^1.0.0, color-name@npm:^1.1.4, color-name@npm:~1.1.4": version: 1.1.4 resolution: "color-name@npm:1.1.4" checksum: b0445859521eb4021cd0fb0cc1a75cecf67fceecae89b63f62b201cca8d345baf8b952c966862a9d9a2632987d4f6581f0ec8d957dfacece86f0a7919316f610 @@ -11717,7 +11804,7 @@ __metadata: languageName: node linkType: hard -"commander@npm:^2.19.0, commander@npm:^2.20.0": +"commander@npm:^2.16.0, commander@npm:^2.19.0, commander@npm:^2.20.0, commander@npm:^2.20.3, commander@npm:^2.8.1": version: 2.20.3 resolution: "commander@npm:2.20.3" checksum: ab8c07884e42c3a8dbc5dd9592c606176c7eb5c1ca5ff274bcf907039b2c41de3626f684ea75ccf4d361ba004bbaff1f577d5384c155f3871e456bdf27becf9e @@ -11752,6 +11839,13 @@ __metadata: languageName: node linkType: hard +"commander@npm:^9.5.0": + version: 9.5.0 + resolution: "commander@npm:9.5.0" + checksum: c7a3e27aa59e913b54a1bafd366b88650bc41d6651f0cbe258d4ff09d43d6a7394232a4dadd0bf518b3e696fdf595db1028a0d82c785b88bd61f8a440cecfade + languageName: node + linkType: hard + "commist@npm:^1.0.0": version: 1.1.0 resolution: "commist@npm:1.1.0" @@ -11777,9 +11871,9 @@ __metadata: linkType: hard "component-emitter@npm:^1.2.1": - version: 1.3.0 - resolution: "component-emitter@npm:1.3.0" - checksum: b3c46de38ffd35c57d1c02488355be9f218e582aec72d72d1b8bbec95a3ac1b38c96cd6e03ff015577e68f550fbb361a3bfdbd9bb248be9390b7b3745691be6b + version: 1.3.1 + resolution: "component-emitter@npm:1.3.1" + checksum: 94550aa462c7bd5a61c1bc480e28554aa306066930152d1b1844a0dd3845d4e5db7e261ddec62ae184913b3e59b55a2ad84093b9d3596a8f17c341514d6c483d languageName: node linkType: hard @@ -12021,18 +12115,18 @@ __metadata: linkType: hard "core-js-compat@npm:^3.25.1, core-js-compat@npm:^3.31.0, core-js-compat@npm:^3.33.1, core-js-compat@npm:^3.6.2": - version: 3.33.2 - resolution: "core-js-compat@npm:3.33.2" + version: 3.33.3 + resolution: "core-js-compat@npm:3.33.3" dependencies: browserslist: ^4.22.1 - checksum: 4206d3ff282a9188399e9003301fa4b96844152afcea7b9c9accc653542f40f581f77bf079b8be67f614e305da1f29e868a49ceebb6dbe3f5fb4a28bd2dbf431 + checksum: cb121e83f0f5f18b2b75428cdfb19524936a18459f1e0358f9124c8ff8b75d6a5901495cb996560cfde3a416103973f78eb5947777bb8b2fd877cdf84471465d languageName: node linkType: hard "core-js-pure@npm:^3.23.3, core-js-pure@npm:^3.30.2": - version: 3.33.2 - resolution: "core-js-pure@npm:3.33.2" - checksum: 601704482885e94a445b02d8b1e4da72f8f40a6eb54ef2f97e7bd912a9233119372b21a44ca9c7b39cd5597c281cde3a8ac629b696cfdf5ddd93ecda4f5a543f + version: 3.33.3 + resolution: "core-js-pure@npm:3.33.3" + checksum: 369f01a8b544f413da96c606039c1b9beea57fd7252b56524fcfa4276103e3e6a0f857452ed9cc5638e9d203763e2a6f8466c6915c95b64b88b3aa976467b325 languageName: node linkType: hard @@ -12044,9 +12138,9 @@ __metadata: linkType: hard "core-js@npm:^3.0.1, core-js@npm:^3.6.5, core-js@npm:^3.8.2": - version: 3.33.2 - resolution: "core-js@npm:3.33.2" - checksum: 71de081acbd060ff985afdcdf2552de4a00ab3ac4695c77f3535b72ddf4526920dcd0cb73e72e57c2ae16e384838a6d55790e138f0a19d60afcf851f89d0064d + version: 3.33.3 + resolution: "core-js@npm:3.33.3" + checksum: 070b9c696f5a9b22bab0208daf9fcdffbc3b4f4c89ed2be512b7d99d4be363accfbb26fa6eec7261055d89e8ea0a5bcfccad5923fe43f1f2eafca9f568cc5596 languageName: node linkType: hard @@ -12431,6 +12525,13 @@ __metadata: languageName: node linkType: hard +"debounce@npm:^1.2.1": + version: 1.2.1 + resolution: "debounce@npm:1.2.1" + checksum: 682a89506d9e54fb109526f4da255c5546102fbb8e3ae75eef3b04effaf5d4853756aee97475cd4650641869794e44f410eeb20ace2b18ea592287ab2038519e + languageName: node + linkType: hard + "debug@npm:2.6.9, debug@npm:^2.2.0, debug@npm:^2.3.3, debug@npm:^2.6.9": version: 2.6.9 resolution: "debug@npm:2.6.9" @@ -12440,7 +12541,7 @@ __metadata: languageName: node linkType: hard -"debug@npm:4, debug@npm:^4.0.0, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.4, debug@npm:~4.3.1, debug@npm:~4.3.2": +"debug@npm:4, debug@npm:^4.0.0, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4, debug@npm:~4.3.1, debug@npm:~4.3.2": version: 4.3.4 resolution: "debug@npm:4.3.4" dependencies: @@ -12745,6 +12846,21 @@ __metadata: languageName: node linkType: hard +"dependency-tree@npm:^9.0.0": + version: 9.0.0 + resolution: "dependency-tree@npm:9.0.0" + dependencies: + commander: ^2.20.3 + debug: ^4.3.1 + filing-cabinet: ^3.0.1 + precinct: ^9.0.0 + typescript: ^4.0.0 + bin: + dependency-tree: bin/cli.js + checksum: 38f95ec248f350f3ed443e0aac520c8ad979b3801262a1e67f6a5972c14f972887150d88972fb9e2630cef8c75efcd82719f93a55f9fc3207e64174ab9d3b0f3 + languageName: node + linkType: hard + "dequal@npm:^2.0.0, dequal@npm:^2.0.2": version: 2.0.3 resolution: "dequal@npm:2.0.3" @@ -12809,6 +12925,191 @@ __metadata: languageName: node linkType: hard +"detective-amd@npm:^3.1.0": + version: 3.1.2 + resolution: "detective-amd@npm:3.1.2" + dependencies: + ast-module-types: ^3.0.0 + escodegen: ^2.0.0 + get-amd-module-type: ^3.0.0 + node-source-walk: ^4.2.0 + bin: + detective-amd: bin/cli.js + checksum: 0b71555edad8e85c9a2ae85e2799d5faf2bdfe0de969587c9288ca76e717494678e34f444dffe32ffdd432e85ce50ca7017a5d0441a4855677a45a40c4590c74 + languageName: node + linkType: hard + +"detective-amd@npm:^4.0.1, detective-amd@npm:^4.1.0": + version: 4.2.0 + resolution: "detective-amd@npm:4.2.0" + dependencies: + ast-module-types: ^4.0.0 + escodegen: ^2.0.0 + get-amd-module-type: ^4.1.0 + node-source-walk: ^5.0.1 + bin: + detective-amd: bin/cli.js + checksum: c1e829a3202045796105680c9fe90ac61f63b0ccecc12cc30c7204c9e7ec22a4e2c3e2357719b9346a4e3579eba778cdce9a050e642938e2a4c8b57b091278e4 + languageName: node + linkType: hard + +"detective-cjs@npm:^3.1.1": + version: 3.1.3 + resolution: "detective-cjs@npm:3.1.3" + dependencies: + ast-module-types: ^3.0.0 + node-source-walk: ^4.0.0 + checksum: a691cb4afbbfea59d9aae0ee00752ec1a825a7ef18fc9178b53664975f162f3b537268590def009d9ce1cccfc5bc4f38cf775df08d0872aaacc05d96c72de85a + languageName: node + linkType: hard + +"detective-cjs@npm:^4.0.0, detective-cjs@npm:^4.1.0": + version: 4.1.0 + resolution: "detective-cjs@npm:4.1.0" + dependencies: + ast-module-types: ^4.0.0 + node-source-walk: ^5.0.1 + checksum: 17e40183959e9f377333a9fd03dcf4cbabf1b7a9f588882311066ecaaad68ad16765a7b63ffc096fc91d2a3c14ac044ed1823257c76105c9cb96dfc141a806e2 + languageName: node + linkType: hard + +"detective-es6@npm:^2.2.1": + version: 2.2.2 + resolution: "detective-es6@npm:2.2.2" + dependencies: + node-source-walk: ^4.0.0 + checksum: 9ee9909c089f5dcd1f89eccd347d509197996280ba24e2e08742bbc5ca3eef655ff07b4edfd76b52d6b4376ba03b8ec17d621c9f9c4382a6ba233dc1b1d00d33 + languageName: node + linkType: hard + +"detective-es6@npm:^3.0.0, detective-es6@npm:^3.0.1": + version: 3.0.1 + resolution: "detective-es6@npm:3.0.1" + dependencies: + node-source-walk: ^5.0.0 + checksum: 881a0c16b49504c212e61a521231ebbb4299a6102b178230959c74d2ca22d5f7538dfaf9518d01fb568ff93eadcf61d865d4428c9fed893dd4c91a7f29d515c5 + languageName: node + linkType: hard + +"detective-less@npm:^1.0.2": + version: 1.0.2 + resolution: "detective-less@npm:1.0.2" + dependencies: + debug: ^4.0.0 + gonzales-pe: ^4.2.3 + node-source-walk: ^4.0.0 + checksum: 858936fbad87423bd5d7502ff5fafca023e7c99e4006ed01b31c12c4b5ff8697edce91419798479d857efec68ee8f022fcac64de5530db6a64012be600a2249e + languageName: node + linkType: hard + +"detective-postcss@npm:^4.0.0": + version: 4.0.0 + resolution: "detective-postcss@npm:4.0.0" + dependencies: + debug: ^4.1.1 + is-url: ^1.2.4 + postcss: ^8.1.7 + postcss-values-parser: ^2.0.1 + checksum: e4c9fed31613df43466357fb104c4c5cdaf45a12909f7c1174161a45ebb2ebe77bb0843b3c0c117b68f55c9acb4e0578668298594c7f0108dfb73e54aaec8513 + languageName: node + linkType: hard + +"detective-postcss@npm:^6.1.0, detective-postcss@npm:^6.1.1": + version: 6.1.3 + resolution: "detective-postcss@npm:6.1.3" + dependencies: + is-url: ^1.2.4 + postcss: ^8.4.23 + postcss-values-parser: ^6.0.2 + checksum: 54c58227d5a1ec27e1b2b23bd992d823d0161d80e3d8ff6b202094e9841d53e88ac96a4d4cc9762ba4f09a9e038832b5d7c7a45b5e373c1c995c424a8289857b + languageName: node + linkType: hard + +"detective-sass@npm:^3.0.1": + version: 3.0.2 + resolution: "detective-sass@npm:3.0.2" + dependencies: + gonzales-pe: ^4.3.0 + node-source-walk: ^4.0.0 + checksum: 7489e5ae7dbed2eba89855cea21ad32321e8e92bd9f2d3b925e7feec0dd9aa8b4b865296525275938e573a3be9759715490038103cbc970570a1c48c4f2fd23d + languageName: node + linkType: hard + +"detective-sass@npm:^4.0.1, detective-sass@npm:^4.1.1": + version: 4.1.3 + resolution: "detective-sass@npm:4.1.3" + dependencies: + gonzales-pe: ^4.3.0 + node-source-walk: ^5.0.1 + checksum: 91681e90037cc935f38b2867fab2aa5585848491b3a269dfb44b37721146ff83f57a540d964b15db22dc1f232623568bedfd13470ec7363e6111991d4d3fe573 + languageName: node + linkType: hard + +"detective-scss@npm:^2.0.1": + version: 2.0.2 + resolution: "detective-scss@npm:2.0.2" + dependencies: + gonzales-pe: ^4.3.0 + node-source-walk: ^4.0.0 + checksum: 515ff1b8946ec92baead48ef435efe1ea0f33ee1d98a7537dd700f1d06dd192f9ea0971c10343adcb08b561ab296d01c18a1f62d0b63163a8f4c09885a956e1a + languageName: node + linkType: hard + +"detective-scss@npm:^3.0.0, detective-scss@npm:^3.0.1": + version: 3.1.1 + resolution: "detective-scss@npm:3.1.1" + dependencies: + gonzales-pe: ^4.3.0 + node-source-walk: ^5.0.1 + checksum: 3d9c0468216c822c25572e700b9aba1e2e2797d336b6b84fd455d83ce849263324855008d1e58d6ccdf9c7a4f099e31277b99e885407cd19674e0bb10fc458cd + languageName: node + linkType: hard + +"detective-stylus@npm:^1.0.0": + version: 1.0.3 + resolution: "detective-stylus@npm:1.0.3" + checksum: 2723da93545f3a55a2a7eaa76b50712457af3c93c2b003e95d02f4c240d5e5206a5df99209a4f5b54128c11fc4270c2de1d7316b4f7d02b359483ae74f5a6637 + languageName: node + linkType: hard + +"detective-stylus@npm:^2.0.1": + version: 2.0.1 + resolution: "detective-stylus@npm:2.0.1" + checksum: c701ba6df3e6b5346aa5dd37b8329a9069a20fd7d075933e2e3b819a75922a2adab809143591151e7337183d59c980e6bc64ad6e51ce96de864575221c1b9506 + languageName: node + linkType: hard + +"detective-stylus@npm:^3.0.0": + version: 3.0.0 + resolution: "detective-stylus@npm:3.0.0" + checksum: e82eda490406d289f7b22050423ad69eb1c0f0d88414adaa292de4ab533be3c50d4cf512a9fefba426f3ad20789f0c0db3b0d32f70162112ca89034bbc5ca9d3 + languageName: node + linkType: hard + +"detective-typescript@npm:^7.0.0": + version: 7.0.2 + resolution: "detective-typescript@npm:7.0.2" + dependencies: + "@typescript-eslint/typescript-estree": ^4.33.0 + ast-module-types: ^2.7.1 + node-source-walk: ^4.2.0 + typescript: ^3.9.10 + checksum: 77703410baa242029dc5e7d02cca7a26278dea498ec1c3320f92efa08a85263affc3b102fc2b09952ece1d2c851a3808733d7bfa9ed11944a7c0f39920e33ec9 + languageName: node + linkType: hard + +"detective-typescript@npm:^9.0.0, detective-typescript@npm:^9.1.1": + version: 9.1.1 + resolution: "detective-typescript@npm:9.1.1" + dependencies: + "@typescript-eslint/typescript-estree": ^5.55.0 + ast-module-types: ^4.0.0 + node-source-walk: ^5.0.1 + typescript: ^4.9.5 + checksum: 5f50801f622740d4e9d724ce04518ceb81591215bf18c18c5d22f6f3948df49dfb0a8bbe3596dac47220a37028bc2879ccd7a968f265217c9855817bda4622f5 + languageName: node + linkType: hard + "devlop@npm:^1.0.0, devlop@npm:^1.1.0": version: 1.1.0 resolution: "devlop@npm:1.1.0" @@ -12876,6 +13177,7 @@ __metadata: resolution: "docspace@workspace:." dependencies: he: ^1.2.0 + madge: ^6.1.0 shx: ^0.3.4 terser: ^5.16.6 languageName: unknown @@ -13146,9 +13448,9 @@ __metadata: linkType: hard "electron-to-chromium@npm:^1.4.535": - version: 1.4.581 - resolution: "electron-to-chromium@npm:1.4.581" - checksum: 9f7e890d756a043a500628fae40636e8f33fa88f01540621e55d2c380d3b0ff63b1b836818c1cf1cce9528a7a5d98d01ca4ecd3dd8d28dc88d3c8218460f9212 + version: 1.4.589 + resolution: "electron-to-chromium@npm:1.4.589" + checksum: 64639fe45950cadc8adf90d3d2d101d3d68431fc41a16b33be3a7ee00ba0d6c335770df862d210311fc7eb9752356966ae67f1b9e9442cf99e5b2667f706bf4b languageName: node linkType: hard @@ -13273,7 +13575,7 @@ __metadata: languageName: node linkType: hard -"enhanced-resolve@npm:^5.10.0, enhanced-resolve@npm:^5.15.0": +"enhanced-resolve@npm:^5.10.0, enhanced-resolve@npm:^5.15.0, enhanced-resolve@npm:^5.8.3": version: 5.15.0 resolution: "enhanced-resolve@npm:5.15.0" dependencies: @@ -13816,7 +14118,7 @@ __metadata: languageName: node linkType: hard -"eslint-visitor-keys@npm:^2.1.0": +"eslint-visitor-keys@npm:^2.0.0, eslint-visitor-keys@npm:^2.1.0": version: 2.1.0 resolution: "eslint-visitor-keys@npm:2.1.0" checksum: e3081d7dd2611a35f0388bbdc2f5da60b3a3c5b8b6e928daffff7391146b434d691577aa95064c8b7faad0b8a680266bcda0a42439c18c717b80e6718d7e267d @@ -13831,13 +14133,13 @@ __metadata: linkType: hard "eslint@npm:^8.36.0": - version: 8.53.0 - resolution: "eslint@npm:8.53.0" + version: 8.54.0 + resolution: "eslint@npm:8.54.0" dependencies: "@eslint-community/eslint-utils": ^4.2.0 "@eslint-community/regexpp": ^4.6.1 "@eslint/eslintrc": ^2.1.3 - "@eslint/js": 8.53.0 + "@eslint/js": 8.54.0 "@humanwhocodes/config-array": ^0.11.13 "@humanwhocodes/module-importer": ^1.0.1 "@nodelib/fs.walk": ^1.2.8 @@ -13874,7 +14176,7 @@ __metadata: text-table: ^0.2.0 bin: eslint: bin/eslint.js - checksum: 2da808655c7aa4b33f8970ba30d96b453c3071cc4d6cd60d367163430677e32ff186b65270816b662d29139283138bff81f28dddeb2e73265495245a316ed02c + checksum: 7e876e9da2a18a017271cf3733d05a3dfbbe469272d75753408c6ea5b1646c71c6bb18cb91e10ca930144c32c1ce3701e222f1ae6784a3975a69f8f8aa68e49f languageName: node linkType: hard @@ -14463,6 +14765,29 @@ __metadata: languageName: node linkType: hard +"filing-cabinet@npm:^3.0.1": + version: 3.3.1 + resolution: "filing-cabinet@npm:3.3.1" + dependencies: + app-module-path: ^2.2.0 + commander: ^2.20.3 + debug: ^4.3.3 + enhanced-resolve: ^5.8.3 + is-relative-path: ^1.0.2 + module-definition: ^3.3.1 + module-lookup-amd: ^7.0.1 + resolve: ^1.21.0 + resolve-dependency-path: ^2.0.0 + sass-lookup: ^3.0.0 + stylus-lookup: ^3.0.1 + tsconfig-paths: ^3.10.1 + typescript: ^3.9.7 + bin: + filing-cabinet: bin/cli.js + checksum: f6511c2e93e236c0d882244b49936a2c8cb2fde47e0d1a0a93345ce171995c2734670c38ed1c0aceaee9ed4958fcce48bfbbb687efe4dedf04b6ea46b0a8c1c0 + languageName: node + linkType: hard + "fill-range@npm:^4.0.0": version: 4.0.0 resolution: "fill-range@npm:4.0.0" @@ -14634,10 +14959,17 @@ __metadata: languageName: node linkType: hard +"flatten@npm:^1.0.2": + version: 1.0.3 + resolution: "flatten@npm:1.0.3" + checksum: 5c57379816f1692aaa79fbc6390e0a0644e5e8442c5783ed57c6d315468eddbc53a659eaa03c9bb1e771b0f4a9bd8dd8a2620286bf21fd6538a7857321fdfb20 + languageName: node + linkType: hard + "flow-parser@npm:0.*": - version: 0.221.0 - resolution: "flow-parser@npm:0.221.0" - checksum: 455b188b829efb87c5116412408f52e927672898dc508f9198ca793004708e70df7e8a157f6ad06860bc32ad9dc0d7df976ec091c5fa244ab3f4f626fb947dd5 + version: 0.222.0 + resolution: "flow-parser@npm:0.222.0" + checksum: 286fbd397e86eca7c2aaf7d280e2385670d261f986b24122471b153d8c646d924b3679807103aacb6e60282ad7ed8fb0f4112ecff89f6d0995b59021f73c0c40 languageName: node linkType: hard @@ -15014,6 +15346,26 @@ __metadata: languageName: node linkType: hard +"get-amd-module-type@npm:^3.0.0": + version: 3.0.2 + resolution: "get-amd-module-type@npm:3.0.2" + dependencies: + ast-module-types: ^3.0.0 + node-source-walk: ^4.2.2 + checksum: d16fac5037f63027992e6ebd2d642e6d4feef2f8fa71ff3da6aa76006e05b3dcd4aa6044b4c5966f13ba5d412fd7c1367d910df86b58f9c13f53cbb35d2e4b72 + languageName: node + linkType: hard + +"get-amd-module-type@npm:^4.1.0": + version: 4.1.0 + resolution: "get-amd-module-type@npm:4.1.0" + dependencies: + ast-module-types: ^4.0.0 + node-source-walk: ^5.0.1 + checksum: dd3f58e88efb6a2224bb38325fe21b1ab417ba105b7f90d49089141b0eb3c24aab1866a2e2bf370430bbfc7ef226fc0a2a5c657e161d1d42d8a243f44ebd4fbe + languageName: node + linkType: hard + "get-caller-file@npm:^2.0.1, get-caller-file@npm:^2.0.5": version: 2.0.5 resolution: "get-caller-file@npm:2.0.5" @@ -15047,6 +15399,13 @@ __metadata: languageName: node linkType: hard +"get-own-enumerable-property-symbols@npm:^3.0.0": + version: 3.0.2 + resolution: "get-own-enumerable-property-symbols@npm:3.0.2" + checksum: 8f0331f14159f939830884799f937343c8c0a2c330506094bc12cbee3665d88337fe97a4ea35c002cc2bdba0f5d9975ad7ec3abb925015cdf2a93e76d4759ede + languageName: node + linkType: hard + "get-package-type@npm:^0.1.0": version: 0.1.0 resolution: "get-package-type@npm:0.1.0" @@ -15294,6 +15653,17 @@ __metadata: languageName: node linkType: hard +"gonzales-pe@npm:^4.2.3, gonzales-pe@npm:^4.3.0": + version: 4.3.0 + resolution: "gonzales-pe@npm:4.3.0" + dependencies: + minimist: ^1.2.5 + bin: + gonzales: bin/gonzales.js + checksum: 49d60fc49ad35639e5d55923c1516d3ec2e4de5e6e5913ec3458a479b66623e54a060d568295349b0bb9f96ee970c473ff984d4b82a5cfeaf736c55f0d6dc3b7 + languageName: node + linkType: hard + "good-listener@npm:^1.2.2": version: 1.2.2 resolution: "good-listener@npm:1.2.2" @@ -15719,7 +16089,7 @@ __metadata: languageName: node linkType: hard -"html-escaper@npm:^2.0.0": +"html-escaper@npm:^2.0.0, html-escaper@npm:^2.0.2": version: 2.0.2 resolution: "html-escaper@npm:2.0.2" checksum: d2df2da3ad40ca9ee3a39c5cc6475ef67c8f83c234475f24d8e9ce0dc80a2c82df8e1d6fa78ddd1e9022a586ea1bd247a615e80a5cd9273d90111ddda7d9e974 @@ -16014,11 +16384,11 @@ __metadata: linkType: hard "i18next-http-backend@npm:^2.2.2": - version: 2.4.1 - resolution: "i18next-http-backend@npm:2.4.1" + version: 2.4.2 + resolution: "i18next-http-backend@npm:2.4.2" dependencies: cross-fetch: 4.0.0 - checksum: e2bb5013c5e9b34b36a6699b8b5cad410691d44ea2dc4537867f8b4732b01e6ecbffe91ee9449d1aa4a3f256c728fc5183740e1ce87cb5183ca9520649269f5b + checksum: 90b71a024691988ae98781cfa9a6e1c25ee63b0206027939df85c55f46b91c41faaacea6f8a9f868a484bea9ee85377e1aae21a889b2dd970af9ac825120579c languageName: node linkType: hard @@ -16089,9 +16459,9 @@ __metadata: linkType: hard "ignore@npm:^5.2.0, ignore@npm:^5.2.4": - version: 5.2.4 - resolution: "ignore@npm:5.2.4" - checksum: 3d4c309c6006e2621659311783eaea7ebcd41fe4ca1d78c91c473157ad6666a57a2df790fe0d07a12300d9aac2888204d7be8d59f9aaf665b1c7fcdb432517ef + version: 5.3.0 + resolution: "ignore@npm:5.3.0" + checksum: 2736da6621f14ced652785cb05d86301a66d70248597537176612bd0c8630893564bd5f6421f8806b09e8472e75c591ef01672ab8059c07c6eb2c09cefe04bf9 languageName: node linkType: hard @@ -16150,6 +16520,13 @@ __metadata: languageName: node linkType: hard +"indexes-of@npm:^1.0.1": + version: 1.0.1 + resolution: "indexes-of@npm:1.0.1" + checksum: 4f9799b1739a62f3e02d09f6f4162cf9673025282af7fa36e790146e7f4e216dad3e776a25b08536c093209c9fcb5ea7bd04b082d42686a45f58ff401d6da32e + languageName: node + linkType: hard + "infer-owner@npm:^1.0.4": version: 1.0.4 resolution: "infer-owner@npm:1.0.4" @@ -16633,6 +17010,13 @@ __metadata: languageName: node linkType: hard +"is-obj@npm:^1.0.1": + version: 1.0.1 + resolution: "is-obj@npm:1.0.1" + checksum: 3ccf0efdea12951e0b9c784e2b00e77e87b2f8bd30b42a498548a8afcc11b3287342a2030c308e473e93a7a19c9ea7854c99a8832a476591c727df2a9c79796c + languageName: node + linkType: hard + "is-path-cwd@npm:^2.0.0, is-path-cwd@npm:^2.2.0": version: 2.2.0 resolution: "is-path-cwd@npm:2.2.0" @@ -16719,6 +17103,20 @@ __metadata: languageName: node linkType: hard +"is-regexp@npm:^1.0.0": + version: 1.0.0 + resolution: "is-regexp@npm:1.0.0" + checksum: be692828e24cba479ec33644326fa98959ec68ba77965e0291088c1a741feaea4919d79f8031708f85fd25e39de002b4520622b55460660b9c369e6f7187faef + languageName: node + linkType: hard + +"is-relative-path@npm:^1.0.2": + version: 1.0.2 + resolution: "is-relative-path@npm:1.0.2" + checksum: 6c2ccffd3c0a3e3990535d0571370883d558b825b51940085f3446ec338857f4552f44521dfec3e83b7e067de08c0b0369de290208a91200bcae2c569533e340 + languageName: node + linkType: hard + "is-set@npm:^2.0.1, is-set@npm:^2.0.2": version: 2.0.2 resolution: "is-set@npm:2.0.2" @@ -16797,6 +17195,20 @@ __metadata: languageName: node linkType: hard +"is-url-superb@npm:^4.0.0": + version: 4.0.0 + resolution: "is-url-superb@npm:4.0.0" + checksum: fd55e91c96349acb0d688f95fcb1ac67450e5db934976e3a8ff13ef446841e779a6f4d18b15f02331f05a3429c8fdaba2382ac1ab444059e86e9ffcde1ec8db0 + languageName: node + linkType: hard + +"is-url@npm:^1.2.4": + version: 1.2.4 + resolution: "is-url@npm:1.2.4" + checksum: 100e74b3b1feab87a43ef7653736e88d997eb7bd32e71fd3ebc413e58c1cbe56269699c776aaea84244b0567f2a7d68dfaa512a062293ed2f9fdecb394148432 + languageName: node + linkType: hard + "is-weakmap@npm:^2.0.1": version: 2.0.1 resolution: "is-weakmap@npm:2.0.1" @@ -17809,7 +18221,7 @@ __metadata: languageName: node linkType: hard -"json5@npm:^1.0.1": +"json5@npm:^1.0.1, json5@npm:^1.0.2": version: 1.0.2 resolution: "json5@npm:1.0.2" dependencies: @@ -18212,13 +18624,6 @@ __metadata: languageName: node linkType: hard -"lodash.flatten@npm:^4.4.0": - version: 4.4.0 - resolution: "lodash.flatten@npm:4.4.0" - checksum: 0ac34a393d4b795d4b7421153d27c13ae67e08786c9cbb60ff5b732210d46f833598eee3fb3844bb10070e8488efe390ea53bb567377e0cb47e9e630bf0811cb - languageName: node - linkType: hard - "lodash.flattendeep@npm:^4.4.0": version: 4.4.0 resolution: "lodash.flattendeep@npm:4.4.0" @@ -18233,13 +18638,6 @@ __metadata: languageName: node linkType: hard -"lodash.invokemap@npm:^4.6.0": - version: 4.6.0 - resolution: "lodash.invokemap@npm:4.6.0" - checksum: 646ceebbefbcb6da301f8c2868254680fd0bcdc6ada470495d9ae49c9c32938829c1b38a38c95d0258409a9655f85db404b16e648381c7450b7ed3d9c52d8808 - languageName: node - linkType: hard - "lodash.isarguments@npm:^3.0.0": version: 3.1.0 resolution: "lodash.isarguments@npm:3.1.0" @@ -18352,13 +18750,6 @@ __metadata: languageName: node linkType: hard -"lodash.pullall@npm:^4.2.0": - version: 4.2.0 - resolution: "lodash.pullall@npm:4.2.0" - checksum: 7a5fbaedf186ec197ce1e0b9ba1d88a89773ebaf6a8291c7d273838cac59cb3b339cf36ef00e94172862ee84d2304c38face161846f08f5581d0553dcbdcd090 - languageName: node - linkType: hard - "lodash.sortby@npm:^4.7.0": version: 4.7.0 resolution: "lodash.sortby@npm:4.7.0" @@ -18373,13 +18764,6 @@ __metadata: languageName: node linkType: hard -"lodash.uniqby@npm:^4.7.0": - version: 4.7.0 - resolution: "lodash.uniqby@npm:4.7.0" - checksum: 659264545a95726d1493123345aad8cbf56e17810fa9a0b029852c6d42bc80517696af09d99b23bef1845d10d95e01b8b4a1da578f22aeba7a30d3e0022a4938 - languageName: node - linkType: hard - "lodash@npm:4.17.21, lodash@npm:^4, lodash@npm:^4.0.1, lodash@npm:^4.17.11, lodash@npm:^4.17.13, lodash@npm:^4.17.15, lodash@npm:^4.17.19, lodash@npm:^4.17.20, lodash@npm:^4.17.21": version: 4.17.21 resolution: "lodash@npm:4.17.21" @@ -18463,11 +18847,9 @@ __metadata: linkType: hard "lru-cache@npm:^10.0.1, lru-cache@npm:^9.1.1 || ^10.0.0": - version: 10.0.2 - resolution: "lru-cache@npm:10.0.2" - dependencies: - semver: ^7.3.5 - checksum: 83ad0e899d79f48574bdda131fe8157c6d65cbd073a6e78e0d1a3467a85dce1ef4d8dc9fd618a56c57a068271501c81d54471e13f84dd121e046b155ed061ed4 + version: 10.0.3 + resolution: "lru-cache@npm:10.0.3" + checksum: e4b100c5a6b2ac778c0f63711499b5098686205c57907d8c04a413270d37089112d9bd0192dfa36940eb5d94b88c7db54fdb6fd23319c8f89903cfd4323ea06c languageName: node linkType: hard @@ -18496,6 +18878,43 @@ __metadata: languageName: node linkType: hard +"madge@npm:^6.1.0": + version: 6.1.0 + resolution: "madge@npm:6.1.0" + dependencies: + chalk: ^4.1.1 + commander: ^7.2.0 + commondir: ^1.0.1 + debug: ^4.3.1 + dependency-tree: ^9.0.0 + detective-amd: ^4.0.1 + detective-cjs: ^4.0.0 + detective-es6: ^3.0.0 + detective-less: ^1.0.2 + detective-postcss: ^6.1.0 + detective-sass: ^4.0.1 + detective-scss: ^3.0.0 + detective-stylus: ^2.0.1 + detective-typescript: ^9.0.0 + ora: ^5.4.1 + pluralize: ^8.0.0 + precinct: ^8.1.0 + pretty-ms: ^7.0.1 + rc: ^1.2.7 + stream-to-array: ^2.3.0 + ts-graphviz: ^1.5.0 + walkdir: ^0.4.1 + peerDependencies: + typescript: ^3.9.5 || ^4.9.5 || ^5 + peerDependenciesMeta: + typescript: + optional: true + bin: + madge: bin/cli.js + checksum: cb8a629c1eb837640ca2416dbd2236f1ea8657eb188725ff42294718dd1769ece5ec635ef02c344c72e3b4faab3cd8f084b043ce8ecccf4018915738b3329096 + languageName: node + linkType: hard + "make-dir@npm:^2.0.0, make-dir@npm:^2.1.0": version: 2.1.0 resolution: "make-dir@npm:2.1.0" @@ -20103,6 +20522,45 @@ __metadata: languageName: node linkType: hard +"module-definition@npm:^3.3.1": + version: 3.4.0 + resolution: "module-definition@npm:3.4.0" + dependencies: + ast-module-types: ^3.0.0 + node-source-walk: ^4.0.0 + bin: + module-definition: bin/cli.js + checksum: 5cbfd38aab1a9169b5c31924e208e430a87a1b1512ab9736a9a368d950e3cc8e2f5cf642e37fe74123e25402cae50bfb8fdf1f5f0fd3d4d9270df705a2360bfa + languageName: node + linkType: hard + +"module-definition@npm:^4.1.0": + version: 4.1.0 + resolution: "module-definition@npm:4.1.0" + dependencies: + ast-module-types: ^4.0.0 + node-source-walk: ^5.0.1 + bin: + module-definition: bin/cli.js + checksum: d9b6397c9ba04b08bc035fd87a3652900530b9a5d6e5263f8a1e05c927dfc103fdffcecd7071a9fd6cd7813fc9feafbbe828f5277e5b706e5de82831153ef0fb + languageName: node + linkType: hard + +"module-lookup-amd@npm:^7.0.1": + version: 7.0.1 + resolution: "module-lookup-amd@npm:7.0.1" + dependencies: + commander: ^2.8.1 + debug: ^4.1.0 + glob: ^7.1.6 + requirejs: ^2.3.5 + requirejs-config-file: ^4.0.0 + bin: + lookup-amd: bin/cli.js + checksum: 911abd6b8fb1d82cfae4ef38050981d4eb7e710bfeba898903c5c49a4d3a44b3cacb6201ddf9930a39fae3473faf9b96d39930cfa8766dbf0da86689108895b1 + languageName: node + linkType: hard + "moment@npm:^2.29.1, moment@npm:^2.29.4": version: 2.29.4 resolution: "moment@npm:2.29.4" @@ -20403,13 +20861,13 @@ __metadata: linkType: hard "node-gyp-build@npm:^4.3.0": - version: 4.6.1 - resolution: "node-gyp-build@npm:4.6.1" + version: 4.7.0 + resolution: "node-gyp-build@npm:4.7.0" bin: node-gyp-build: bin.js node-gyp-build-optional: optional.js node-gyp-build-test: build-test.js - checksum: c3676d337b36803bc7792e35bf7fdcda7cdcb7e289b8f9855a5535702a82498eb976842fefcf487258c58005ca32ce3d537fbed91280b04409161dcd7232a882 + checksum: 5b0417487c8b30c36e23974f968fe4c166dc9ee0707ec17a74ff6c8265af9ec9e2bab9ca36c5113b828fdb384f405fcd546231c215c721559a776a07b5c0b98b languageName: node linkType: hard @@ -20460,6 +20918,24 @@ __metadata: languageName: node linkType: hard +"node-source-walk@npm:^4.0.0, node-source-walk@npm:^4.2.0, node-source-walk@npm:^4.2.2": + version: 4.3.0 + resolution: "node-source-walk@npm:4.3.0" + dependencies: + "@babel/parser": ^7.0.0 + checksum: 124bcec61f73141a5f13e63f773beb00c9a9620e9eec6d7505b9de8fa884797f3eb0b9e9d225bb324930234ae03b28a4a7a231e2c2f23d71405d4a562b404e34 + languageName: node + linkType: hard + +"node-source-walk@npm:^5.0.0, node-source-walk@npm:^5.0.1": + version: 5.0.2 + resolution: "node-source-walk@npm:5.0.2" + dependencies: + "@babel/parser": ^7.21.4 + checksum: 1031bc0871bb77ace33bd09fb1e9ef7589b03e6a2fa441b8e684023102362da6dba77d6b9b086dc1f995c7e69e3517666d5316c3831b9d9ff077cb36d57179e8 + languageName: node + linkType: hard + "nodemon@npm:^2.0.22": version: 2.0.22 resolution: "nodemon@npm:2.0.22" @@ -21080,6 +21556,13 @@ __metadata: languageName: node linkType: hard +"parse-ms@npm:^2.1.0": + version: 2.1.0 + resolution: "parse-ms@npm:2.1.0" + checksum: d5c66c76cca8df5bd0574e2d11b9c3752893b59b466e74308d4a2f09760dc5436a1633f549cad300fc8c3c19154d14959a3b8333d3b2f7bd75898fe18149d564 + languageName: node + linkType: hard + "parse-srcset@npm:^1.0.2": version: 1.0.2 resolution: "parse-srcset@npm:1.0.2" @@ -21382,27 +21865,34 @@ __metadata: languageName: node linkType: hard -"playwright-core@npm:1.39.0": - version: 1.39.0 - resolution: "playwright-core@npm:1.39.0" +"playwright-core@npm:1.40.0": + version: 1.40.0 + resolution: "playwright-core@npm:1.40.0" bin: playwright-core: cli.js - checksum: 556e78dee4f9890facf2af8249972e0d6e01a5ae98737b0f6b0166c660a95ffee4cb79350335b1ef96430a0ef01d3669daae9099fa46c8d403d11c623988238b + checksum: 57de5c91a4c404b120ed2af8541b21cdedcbc4f27477341157666d356bbee3b3fab8e61d020f0f450708fa2e8f6dc244b9224cb1985d5426e609cebed15af095 languageName: node linkType: hard "playwright@npm:^1.32.0": - version: 1.39.0 - resolution: "playwright@npm:1.39.0" + version: 1.40.0 + resolution: "playwright@npm:1.40.0" dependencies: fsevents: 2.3.2 - playwright-core: 1.39.0 + playwright-core: 1.40.0 dependenciesMeta: fsevents: optional: true bin: playwright: cli.js - checksum: 96d8ca5aa25465c1c5d554d0d6071981d55e22477800ff8f5d47a53ca75193d60ece2df538a01b7165b3277dd5493c67603a5acda713029df7fbd95ce2417bc9 + checksum: 7ba49e5376a6cfd1d32048dbdb2fd38e09182aa2e4619fdb23d3e6530fa6987f2f3fd34ad1d9d906fb4ec2da69ee7536eeb881982d60750fde809183caa607fc + languageName: node + linkType: hard + +"pluralize@npm:^8.0.0": + version: 8.0.0 + resolution: "pluralize@npm:8.0.0" + checksum: 08931d4a6a4a5561a7f94f67a31c17e6632cb21e459ab3ff4f6f629d9a822984cf8afef2311d2005fbea5d7ef26016ebb090db008e2d8bce39d0a9a9d218736e languageName: node linkType: hard @@ -21518,6 +22008,30 @@ __metadata: languageName: node linkType: hard +"postcss-values-parser@npm:^2.0.1": + version: 2.0.1 + resolution: "postcss-values-parser@npm:2.0.1" + dependencies: + flatten: ^1.0.2 + indexes-of: ^1.0.1 + uniq: ^1.0.1 + checksum: 050877880937e15af8d18bf48902e547e2123d7cc32c1f215b392642bc5e2598a87a341995d62f38e450aab4186b8afeb2c9541934806d458ad8b117020b2ebf + languageName: node + linkType: hard + +"postcss-values-parser@npm:^6.0.2": + version: 6.0.2 + resolution: "postcss-values-parser@npm:6.0.2" + dependencies: + color-name: ^1.1.4 + is-url-superb: ^4.0.0 + quote-unquote: ^1.0.0 + peerDependencies: + postcss: ^8.2.9 + checksum: 615fea3d7996b3fae84a8674fb0e7c6bd0bc006beddb126692c2e43112b772625329c5f10121b00d69fe7a24f7f18dd25e24745574556735c4e9671774df0eb1 + languageName: node + linkType: hard + "postcss@npm:^7.0.39": version: 7.0.39 resolution: "postcss@npm:7.0.39" @@ -21528,7 +22042,7 @@ __metadata: languageName: node linkType: hard -"postcss@npm:^8.3.11, postcss@npm:^8.4.21": +"postcss@npm:^8.1.7, postcss@npm:^8.3.11, postcss@npm:^8.4.21, postcss@npm:^8.4.23": version: 8.4.31 resolution: "postcss@npm:8.4.31" dependencies: @@ -21539,6 +22053,51 @@ __metadata: languageName: node linkType: hard +"precinct@npm:^8.1.0": + version: 8.3.1 + resolution: "precinct@npm:8.3.1" + dependencies: + commander: ^2.20.3 + debug: ^4.3.3 + detective-amd: ^3.1.0 + detective-cjs: ^3.1.1 + detective-es6: ^2.2.1 + detective-less: ^1.0.2 + detective-postcss: ^4.0.0 + detective-sass: ^3.0.1 + detective-scss: ^2.0.1 + detective-stylus: ^1.0.0 + detective-typescript: ^7.0.0 + module-definition: ^3.3.1 + node-source-walk: ^4.2.0 + bin: + precinct: bin/cli.js + checksum: 16ba57e545fc53481b3a194f9d7843cefd562ce5e847280355eed360ca4c55def4d03d501776fb49fdf79bfe84a03ec6138003d8387c0426f6a68e1931688399 + languageName: node + linkType: hard + +"precinct@npm:^9.0.0": + version: 9.2.1 + resolution: "precinct@npm:9.2.1" + dependencies: + "@dependents/detective-less": ^3.0.1 + commander: ^9.5.0 + detective-amd: ^4.1.0 + detective-cjs: ^4.1.0 + detective-es6: ^3.0.1 + detective-postcss: ^6.1.1 + detective-sass: ^4.1.1 + detective-scss: ^3.0.1 + detective-stylus: ^3.0.0 + detective-typescript: ^9.1.1 + module-definition: ^4.1.0 + node-source-walk: ^5.0.1 + bin: + precinct: bin/cli.js + checksum: 0352553cca8aff0baa04412429bbe3fab278e9e574fd9bcb2b1bb87dc3ed608f3e08b66c86aee90eed6bac5c4091fe78753ae094d54b01a803189d3259817fe7 + languageName: node + linkType: hard + "prefix-style@npm:2.0.1": version: 2.0.1 resolution: "prefix-style@npm:2.0.1" @@ -21619,6 +22178,15 @@ __metadata: languageName: node linkType: hard +"pretty-ms@npm:^7.0.1": + version: 7.0.1 + resolution: "pretty-ms@npm:7.0.1" + dependencies: + parse-ms: ^2.1.0 + checksum: d76c4920283b48be91f1d3797a2ce4bd51187d58d2a609ae993c028f73c92d16439449d857af57ccad91ae3a38b30c87307f5589749a056102ebb494c686957e + languageName: node + linkType: hard + "prismjs@npm:^1.8.4": version: 1.29.0 resolution: "prismjs@npm:1.29.0" @@ -21950,6 +22518,13 @@ __metadata: languageName: node linkType: hard +"quote-unquote@npm:^1.0.0": + version: 1.0.0 + resolution: "quote-unquote@npm:1.0.0" + checksum: 955a2ead534f5b6a3f8d4dc5a4b95ac6468213d3fb11f8c1592a0a56345c45a3d14d5ca04d3de2bc9891493fcac38c03dfa91c48a6159aef50124e9c5afcea49 + languageName: node + linkType: hard + "raf@npm:^3.1.0, raf@npm:^3.4.1": version: 3.4.1 resolution: "raf@npm:3.4.1" @@ -22091,7 +22666,7 @@ __metadata: languageName: node linkType: hard -"rc@npm:^1.0.1, rc@npm:^1.1.6": +"rc@npm:^1.0.1, rc@npm:^1.1.6, rc@npm:^1.2.7": version: 1.2.8 resolution: "rc@npm:1.2.8" dependencies: @@ -22426,8 +23001,8 @@ __metadata: linkType: hard "react-i18next@npm:^13.2.1": - version: 13.4.0 - resolution: "react-i18next@npm:13.4.0" + version: 13.5.0 + resolution: "react-i18next@npm:13.5.0" dependencies: "@babel/runtime": ^7.22.5 html-parse-stringify: ^3.0.1 @@ -22439,7 +23014,7 @@ __metadata: optional: true react-native: optional: true - checksum: faaeff03da3cec00598d193f211141b1ce52a4f95f93d742edfdb4162368767e81f2f7842660d5b8ac1d0e2013b9bf0c0c2b671cbb363bda103519ef34641d7d + checksum: 2f68ccd24daf72ddd2d11a526fb3c2b66c11ea4fcd2e24ac7aed42bf57ec7bffa7455ad1dc93679968ff629e9b1896465cdf6d1a61c29b92138ef88098e8dcba languageName: node linkType: hard @@ -22500,15 +23075,14 @@ __metadata: linkType: hard "react-markdown@npm:^9.0.0": - version: 9.0.0 - resolution: "react-markdown@npm:9.0.0" + version: 9.0.1 + resolution: "react-markdown@npm:9.0.1" dependencies: "@types/hast": ^3.0.0 devlop: ^1.0.0 hast-util-to-jsx-runtime: ^2.0.0 html-url-attributes: ^3.0.0 mdast-util-to-hast: ^13.0.0 - micromark-util-sanitize-uri: ^2.0.0 remark-parse: ^11.0.0 remark-rehype: ^11.0.0 unified: ^11.0.0 @@ -22517,7 +23091,7 @@ __metadata: peerDependencies: "@types/react": ">=18" react: ">=18" - checksum: 7057f60f0657d5c6210f02a2c80d537176d0d29c141e4b52a8f8fa335ee454248c37c29caf27e8bd28a180bc8e14b5522f63e2a61e3ec3ea5201a58ad43f43c6 + checksum: ca1daa650d48b84a5a9771683cdb3f3d2d418247ce0faf73ede3207c65f2a21cdebb9df37afda67f6fc8f0f0a7b9ce00eb239781954a4d6c7ad88ea4df068add languageName: node linkType: hard @@ -22617,26 +23191,26 @@ __metadata: linkType: hard "react-router-dom@npm:^6.10.0": - version: 6.18.0 - resolution: "react-router-dom@npm:6.18.0" + version: 6.19.0 + resolution: "react-router-dom@npm:6.19.0" dependencies: - "@remix-run/router": 1.11.0 - react-router: 6.18.0 + "@remix-run/router": 1.12.0 + react-router: 6.19.0 peerDependencies: react: ">=16.8" react-dom: ">=16.8" - checksum: ca5c9a9f748f4ff9677d25762970fc59cb216568aad0ebc668b22398222a940f767680bc9a3e65a92e940d3fe05731eda8a4b352ccbf1054904b3b785a9f5e6f + checksum: 04453ca48eb900a4a6aa8b8e48368fa78d4ce8a9b69df108d9f53071a904349b18672a66c94252eb847ae4369e30bbe4ec7244bb6529b10fd474774e48f03669 languageName: node linkType: hard -"react-router@npm:6.18.0, react-router@npm:^6.10.0": - version: 6.18.0 - resolution: "react-router@npm:6.18.0" +"react-router@npm:6.19.0, react-router@npm:^6.10.0": + version: 6.19.0 + resolution: "react-router@npm:6.19.0" dependencies: - "@remix-run/router": 1.11.0 + "@remix-run/router": 1.12.0 peerDependencies: react: ">=16.8" - checksum: 03e9a23c5b75d8813720745e2952bb9e62ec310d238cde4f19e0ce73582701fa5e04cf609ff9ced978e9e6c531b5e333b9aee35371e6c4743afc2829e32e926a + checksum: f7e3396b8f4299638029dc726cb02d9c05c8906dc5277e5f9d899ef113d8cec49dfab7d34cd496826f8c1a95666141f3eede446c4438ef56720fdb72c66473fb languageName: node linkType: hard @@ -22793,16 +23367,16 @@ __metadata: languageName: node linkType: hard -"react-tooltip@npm:^5.21.1": - version: 5.22.0 - resolution: "react-tooltip@npm:5.22.0" +"react-tooltip@npm:^5.23.0": + version: 5.23.0 + resolution: "react-tooltip@npm:5.23.0" dependencies: "@floating-ui/dom": ^1.0.0 classnames: ^2.3.0 peerDependencies: react: ">=16.14.0" react-dom: ">=16.14.0" - checksum: 8b93473a55bbc657966e5f8c129ca1c498ff5ae2688d8a9f44ad171c6f0761f45b6bea06ffd86d1931753b2148e2230eb2cf08635c7d619adcf4998647ffa720 + checksum: 03db3e7c1ccade26d95ec2418c0374f510e3ae7620be871900e02f5f749d539df688035867c89fcd480c5636d3048b6d580554bd291f708371d057aac54894a4 languageName: node linkType: hard @@ -23400,6 +23974,26 @@ __metadata: languageName: node linkType: hard +"requirejs-config-file@npm:^4.0.0": + version: 4.0.0 + resolution: "requirejs-config-file@npm:4.0.0" + dependencies: + esprima: ^4.0.0 + stringify-object: ^3.2.1 + checksum: 61ac1c419a8978df9484211827047f0a43d48a97e242ebca9628a2e52da8c739ee068bd67dc4d5dc5fd7be6d1c9a863006bb02df691c86914921fe12713fbebb + languageName: node + linkType: hard + +"requirejs@npm:^2.3.5": + version: 2.3.6 + resolution: "requirejs@npm:2.3.6" + bin: + r.js: ./bin/r.js + r_js: ./bin/r.js + checksum: 7c3c006bf5e1887d93ac7adb7f600328918d23cf3d28282a505a2873d4ddde499c7ec560e55cee3440d17fe1205cb4dcb72b07f35b39e8940372eca850e49b62 + languageName: node + linkType: hard + "requires-port@npm:^1.0.0": version: 1.0.0 resolution: "requires-port@npm:1.0.0" @@ -23439,6 +24033,13 @@ __metadata: languageName: node linkType: hard +"resolve-dependency-path@npm:^2.0.0": + version: 2.0.0 + resolution: "resolve-dependency-path@npm:2.0.0" + checksum: 161296969a0a7853ebb7710847154ffb5bd11a51c370b67a0d0c89cacfcb57063d204587617fd030ea227bfd19a3c4af79d39e9d20ae0fbe354c27598d1ea8a8 + languageName: node + linkType: hard + "resolve-from@npm:^3.0.0": version: 3.0.0 resolution: "resolve-from@npm:3.0.0" @@ -23474,7 +24075,7 @@ __metadata: languageName: node linkType: hard -"resolve@npm:^1.1.6, resolve@npm:^1.10.0, resolve@npm:^1.12.0, resolve@npm:^1.14.2, resolve@npm:^1.3.2, resolve@npm:^1.8.1, resolve@npm:^1.9.0": +"resolve@npm:^1.1.6, resolve@npm:^1.10.0, resolve@npm:^1.12.0, resolve@npm:^1.14.2, resolve@npm:^1.21.0, resolve@npm:^1.3.2, resolve@npm:^1.8.1, resolve@npm:^1.9.0": version: 1.22.8 resolution: "resolve@npm:1.22.8" dependencies: @@ -23507,7 +24108,7 @@ __metadata: languageName: node linkType: hard -"resolve@patch:resolve@^1.1.6#~builtin, resolve@patch:resolve@^1.10.0#~builtin, resolve@patch:resolve@^1.12.0#~builtin, resolve@patch:resolve@^1.14.2#~builtin, resolve@patch:resolve@^1.3.2#~builtin, resolve@patch:resolve@^1.8.1#~builtin, resolve@patch:resolve@^1.9.0#~builtin": +"resolve@patch:resolve@^1.1.6#~builtin, resolve@patch:resolve@^1.10.0#~builtin, resolve@patch:resolve@^1.12.0#~builtin, resolve@patch:resolve@^1.14.2#~builtin, resolve@patch:resolve@^1.21.0#~builtin, resolve@patch:resolve@^1.3.2#~builtin, resolve@patch:resolve@^1.8.1#~builtin, resolve@patch:resolve@^1.9.0#~builtin": version: 1.22.8 resolution: "resolve@patch:resolve@npm%3A1.22.8#~builtin::version=1.22.8&hash=07638b" dependencies: @@ -23825,6 +24426,17 @@ __metadata: languageName: node linkType: hard +"sass-lookup@npm:^3.0.0": + version: 3.0.0 + resolution: "sass-lookup@npm:3.0.0" + dependencies: + commander: ^2.16.0 + bin: + sass-lookup: bin/cli.js + checksum: fd4bf1ad9c54111617dec30dd90aff083e87c96aef50aff6cec443ad2fbbfa65da09f6e67a7e5ef99fa39dff65c937dc7358f18d319e083c6031f21def85ce6d + languageName: node + linkType: hard + "sass@npm:^1.59.3": version: 1.69.5 resolution: "sass@npm:1.69.5" @@ -24893,6 +25505,15 @@ __metadata: languageName: node linkType: hard +"stream-to-array@npm:^2.3.0": + version: 2.3.0 + resolution: "stream-to-array@npm:2.3.0" + dependencies: + any-promise: ^1.1.0 + checksum: 7feaf63b38399b850615e6ffcaa951e96e4c8f46745dbce4b553a94c5dc43966933813747014935a3ff97793e7f30a65270bde19f82b2932871a1879229a77cf + languageName: node + linkType: hard + "strict-uri-encode@npm:^2.0.0": version: 2.0.0 resolution: "strict-uri-encode@npm:2.0.0" @@ -25022,6 +25643,17 @@ __metadata: languageName: node linkType: hard +"stringify-object@npm:^3.2.1": + version: 3.3.0 + resolution: "stringify-object@npm:3.3.0" + dependencies: + get-own-enumerable-property-symbols: ^3.0.0 + is-obj: ^1.0.1 + is-regexp: ^1.0.0 + checksum: 6827a3f35975cfa8572e8cd3ed4f7b262def260af18655c6fde549334acdac49ddba69f3c861ea5a6e9c5a4990fe4ae870b9c0e6c31019430504c94a83b7a154 + languageName: node + linkType: hard + "strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1": version: 6.0.1 resolution: "strip-ansi@npm:6.0.1" @@ -25184,6 +25816,18 @@ __metadata: languageName: node linkType: hard +"stylus-lookup@npm:^3.0.1": + version: 3.0.2 + resolution: "stylus-lookup@npm:3.0.2" + dependencies: + commander: ^2.8.1 + debug: ^4.1.0 + bin: + stylus-lookup: bin/cli.js + checksum: 460e9b6e7e662e2cf98d41ee670cb5da9ec8b8dbc1d4574de29ac422c632d5c7933772822fc12792f2ee9f9c2f62b3f60ed5850690e7c780ab7b6f07010199e4 + languageName: node + linkType: hard + "supports-color@npm:8.1.1, supports-color@npm:^8.0.0": version: 8.1.1 resolution: "supports-color@npm:8.1.1" @@ -25745,6 +26389,13 @@ __metadata: languageName: node linkType: hard +"ts-graphviz@npm:^1.5.0": + version: 1.8.1 + resolution: "ts-graphviz@npm:1.8.1" + checksum: c560fc3a70fc7743bb1cacd21fdeb68661e78132cad4c0cb53c071d2485b1e5975350f0a754c2a797912e9d9022dc375b47e6b023a2eafe4b824c0bb9b7d58ed + languageName: node + linkType: hard + "ts-toolbelt@npm:^9.6.0": version: 9.6.0 resolution: "ts-toolbelt@npm:9.6.0" @@ -25752,6 +26403,18 @@ __metadata: languageName: node linkType: hard +"tsconfig-paths@npm:^3.10.1": + version: 3.14.2 + resolution: "tsconfig-paths@npm:3.14.2" + dependencies: + "@types/json5": ^0.0.29 + json5: ^1.0.2 + minimist: ^1.2.6 + strip-bom: ^3.0.0 + checksum: a6162eaa1aed680537f93621b82399c7856afd10ec299867b13a0675e981acac4e0ec00896860480efc59fc10fd0b16fdc928c0b885865b52be62cadac692447 + languageName: node + linkType: hard + "tslib@npm:^1.11.1, tslib@npm:^1.8.1": version: 1.14.1 resolution: "tslib@npm:1.14.1" @@ -25918,15 +26581,25 @@ __metadata: linkType: hard "types-ramda@npm:^0.29.4": - version: 0.29.5 - resolution: "types-ramda@npm:0.29.5" + version: 0.29.6 + resolution: "types-ramda@npm:0.29.6" dependencies: ts-toolbelt: ^9.6.0 - checksum: 0013eec508b74ed98a3de25f9617c2f246ed387dbda084ae37d9f10c5ccac0bb0243a966e861262c918feef8322347616852abf30440a252335e50d9592590e9 + checksum: 1ac472aae8ca6f4b73668a7aeaac1560286f5176149ce8fd18e8f4dfb5485e46b13ca6ef626f1de94f42bf96509e0e21bfed98f0ff41d9e6ab51b7cfb36aed20 languageName: node linkType: hard -"typescript@npm:^4.9.5": +"typescript@npm:^3.9.10, typescript@npm:^3.9.7": + version: 3.9.10 + resolution: "typescript@npm:3.9.10" + bin: + tsc: bin/tsc + tsserver: bin/tsserver + checksum: 46c842e2cd4797b88b66ef06c9c41dd21da48b95787072ccf39d5f2aa3124361bc4c966aa1c7f709fae0509614d76751455b5231b12dbb72eb97a31369e1ff92 + languageName: node + linkType: hard + +"typescript@npm:^4.0.0, typescript@npm:^4.9.5": version: 4.9.5 resolution: "typescript@npm:4.9.5" bin: @@ -25936,7 +26609,17 @@ __metadata: languageName: node linkType: hard -"typescript@patch:typescript@^4.9.5#~builtin": +"typescript@patch:typescript@^3.9.10#~builtin, typescript@patch:typescript@^3.9.7#~builtin": + version: 3.9.10 + resolution: "typescript@patch:typescript@npm%3A3.9.10#~builtin::version=3.9.10&hash=701156" + bin: + tsc: bin/tsc + tsserver: bin/tsserver + checksum: dc7141ab555b23a8650a6787f98845fc11692063d02b75ff49433091b3af2fe3d773650dea18389d7c21f47d620fb3b110ea363dab4ab039417a6ccbbaf96fc2 + languageName: node + linkType: hard + +"typescript@patch:typescript@^4.0.0#~builtin, typescript@patch:typescript@^4.9.5#~builtin": version: 4.9.5 resolution: "typescript@patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=701156" bin: @@ -26075,6 +26758,13 @@ __metadata: languageName: node linkType: hard +"uniq@npm:^1.0.1": + version: 1.0.1 + resolution: "uniq@npm:1.0.1" + checksum: 8206535f83745ea83f9da7035f3b983fd6ed5e35b8ed7745441944e4065b616bc67cf0d0a23a86b40ee0074426f0607f0a138f9b78e124eb6a7a6a6966055709 + languageName: node + linkType: hard + "unique-filename@npm:^1.1.1": version: 1.1.1 resolution: "unique-filename@npm:1.1.1" @@ -26606,6 +27296,13 @@ __metadata: languageName: node linkType: hard +"walkdir@npm:^0.4.1": + version: 0.4.1 + resolution: "walkdir@npm:0.4.1" + checksum: 71045c21dc19aae3321f897b6e9e507cf8039202665c35a0b908eecccaf25636aab769b31cbd61ef8267237fe22fc316923a691ecc2d9d38840a15c59c0f2594 + languageName: node + linkType: hard + "walker@npm:^1.0.7, walker@npm:^1.0.8, walker@npm:~1.0.5": version: 1.0.8 resolution: "walker@npm:1.0.8" @@ -26667,29 +27364,25 @@ __metadata: linkType: hard "webpack-bundle-analyzer@npm:^4.9.1": - version: 4.9.1 - resolution: "webpack-bundle-analyzer@npm:4.9.1" + version: 4.10.1 + resolution: "webpack-bundle-analyzer@npm:4.10.1" dependencies: "@discoveryjs/json-ext": 0.5.7 acorn: ^8.0.4 acorn-walk: ^8.0.0 commander: ^7.2.0 + debounce: ^1.2.1 escape-string-regexp: ^4.0.0 gzip-size: ^6.0.0 + html-escaper: ^2.0.2 is-plain-object: ^5.0.0 - lodash.debounce: ^4.0.8 - lodash.escape: ^4.0.1 - lodash.flatten: ^4.4.0 - lodash.invokemap: ^4.6.0 - lodash.pullall: ^4.2.0 - lodash.uniqby: ^4.7.0 opener: ^1.5.2 picocolors: ^1.0.0 sirv: ^2.0.3 ws: ^7.3.1 bin: webpack-bundle-analyzer: lib/bin/analyzer.js - checksum: 7e891c28d5a903242893e55ecc714fa01d7ad6bedade143235c07091b235915349812fa048968462781d59187507962f38b6c61ed7d25fb836ba0ac0ee919a39 + checksum: 77f48f10a493b1cc95674526472978a2de32412ddbf556bd3903738f14890611426f19477352993efe5a9fd6ca16711eb912d986f2221b17ba6eeca1b6f71fb6 languageName: node linkType: hard