@allurereport/web-classic 3.0.0-beta.8 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc.js +46 -0
- package/.eslintrc.cjs +16 -119
- package/dist/multi/10.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/222.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/26.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/302.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/304.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/369.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/389.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/498.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/60.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/643.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/671.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/725.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/770.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/848.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/853.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/872.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/895.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/920.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/979.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/991.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/JetBrainsMono_vf.woff +0 -0
- package/dist/multi/JetBrainsMono_vf.woff2 +0 -0
- package/dist/multi/app-897d4cad2ca206583e32.js +2 -0
- package/dist/multi/app-897d4cad2ca206583e32.js.LICENSE.txt +25 -0
- package/dist/multi/manifest.json +26 -25
- package/dist/multi/pt-root-ui_vf.woff +0 -0
- package/dist/multi/pt-root-ui_vf.woff2 +0 -0
- package/dist/multi/styles-cf5cd8299b71a6d78e3e.css +284 -0
- package/dist/single/app-db9badbaf3040ca25425.js +2 -0
- package/dist/single/app-db9badbaf3040ca25425.js.LICENSE.txt +25 -0
- package/dist/single/manifest.json +1 -8
- package/package.json +50 -49
- package/postcss.config.js +5 -0
- package/src/assets/scss/_common.scss +142 -0
- package/src/assets/scss/code.scss +71 -0
- package/src/assets/scss/day.scss +51 -0
- package/src/assets/scss/fonts.scss +3 -0
- package/src/assets/scss/index.scss +9 -0
- package/src/assets/scss/night.scss +61 -0
- package/src/assets/scss/palette.scss +393 -0
- package/src/assets/scss/theme.scss +326 -0
- package/src/assets/scss/typography.scss +218 -0
- package/src/assets/scss/vars.scss +8 -0
- package/src/components/ArrowButton/index.tsx +36 -0
- package/src/components/ArrowButton/styles.scss +35 -0
- package/src/components/BaseLayout/index.tsx +23 -0
- package/src/components/BaseLayout/styles.scss +63 -0
- package/src/components/Behaviors/BehaviorsList.tsx +67 -0
- package/src/components/Behaviors/index.tsx +60 -0
- package/src/components/Behaviors/styles.scss +196 -0
- package/src/components/Categories/CategoriesList.tsx +67 -0
- package/src/components/Categories/index.tsx +60 -0
- package/src/components/Categories/styles.scss +196 -0
- package/src/components/Footer/FooterLogo.tsx +15 -0
- package/src/components/Footer/FooterVersion.tsx +33 -0
- package/src/components/Footer/index.tsx +13 -0
- package/src/components/Footer/styles.scss +14 -0
- package/src/components/Graphs/index.tsx +2 -0
- package/src/components/Header/index.tsx +14 -0
- package/src/components/Header/styles.scss +26 -0
- package/src/components/HeaderActions/Filters.tsx +90 -0
- package/src/components/HeaderActions/HeaderActions.tsx +58 -0
- package/src/components/HeaderActions/SortBy.tsx +128 -0
- package/src/components/HeaderActions/styles.scss +82 -0
- package/src/components/LanguagePicker/index.tsx +41 -0
- package/src/components/LanguagePicker/styles.scss +3 -0
- package/src/components/MainReport/index.tsx +19 -0
- package/src/components/Metadata/index.tsx +121 -0
- package/src/components/Metadata/styles.scss +146 -0
- package/src/components/MetadataButton/index.tsx +32 -0
- package/src/components/MetadataButton/styles.scss +53 -0
- package/src/components/Modal/index.tsx +174 -0
- package/src/components/Modal/styles.scss +126 -0
- package/src/components/Overview/Overview.module.scss +29 -0
- package/src/components/Overview/index.tsx +105 -0
- package/src/components/Packages/PackagesList.tsx +67 -0
- package/src/components/Packages/index.tsx +59 -0
- package/src/components/Packages/styles.scss +196 -0
- package/src/components/ReportBody/Filters.tsx +92 -0
- package/src/components/ReportBody/HeaderActions.tsx +21 -0
- package/src/components/ReportBody/SortBy.tsx +132 -0
- package/src/components/ReportBody/context.tsx +106 -0
- package/src/components/ReportBody/index.tsx +69 -0
- package/src/components/ReportBody/styles.scss +64 -0
- package/src/components/ReportHeader/ReportHeaderLabelList.tsx +12 -0
- package/src/components/ReportHeader/ReportHeaderLogo.tsx +14 -0
- package/src/components/ReportHeader/ReportHeaderPie.tsx +14 -0
- package/src/components/ReportHeader/index.tsx +33 -0
- package/src/components/ReportHeader/styles.scss +49 -0
- package/src/components/ReportMetadata/MetadataItem.tsx +45 -0
- package/src/components/ReportMetadata/MetadataSummary.tsx +80 -0
- package/src/components/ReportMetadata/MetadataTestType.tsx +16 -0
- package/src/components/ReportMetadata/MetadataWithIcon.tsx +21 -0
- package/src/components/ReportMetadata/index.tsx +46 -0
- package/src/components/ReportMetadata/styles.scss +99 -0
- package/src/components/SideBySide/index.tsx +54 -0
- package/src/components/SideBySide/styles.scss +59 -0
- package/src/components/SideNav/SideNav.tsx +78 -0
- package/src/components/{side-nav → SideNav}/styles.scss +54 -46
- package/src/components/Suites/index.tsx +62 -0
- package/src/components/Suites/styles.scss +10 -0
- package/src/components/Tabs/index.tsx +33 -0
- package/src/components/Tabs/styles.scss +56 -0
- package/src/components/TestResult/TestResultAttachmentsView/index.tsx +27 -0
- package/src/components/TestResult/TestResultAttachmentsView/styles.scss +12 -0
- package/src/components/TestResult/TestResultDescription/index.tsx +27 -0
- package/src/components/TestResult/TestResultDescription/styles.scss +12 -0
- package/src/components/TestResult/TestResultDropdown/index.tsx +23 -0
- package/src/components/TestResult/TestResultDropdown/styles.scss +34 -0
- package/src/components/TestResult/TestResultEmpty/index.tsx +33 -0
- package/src/components/TestResult/TestResultEmpty/styles.scss +25 -0
- package/src/components/TestResult/TestResultError/index.tsx +48 -0
- package/src/components/TestResult/TestResultError/styles.scss +51 -0
- package/src/components/TestResult/TestResultHeader/index.tsx +53 -0
- package/src/components/TestResult/TestResultHeader/styles.scss +43 -0
- package/src/components/TestResult/TestResultHistory/TestResultHistoryItem.tsx +67 -0
- package/src/components/TestResult/TestResultHistory/index.tsx +26 -0
- package/src/components/TestResult/TestResultHistory/styles.scss +63 -0
- package/src/components/TestResult/TestResultInfo/TestResultInfoStatuses.tsx +30 -0
- package/src/components/TestResult/TestResultInfo/index.tsx +79 -0
- package/src/components/TestResult/TestResultInfo/styles.scss +50 -0
- package/src/components/TestResult/TestResultLinks/index.tsx +56 -0
- package/src/components/TestResult/TestResultLinks/styles.scss +30 -0
- package/src/components/TestResult/TestResultMetadata/index.tsx +27 -0
- package/src/components/TestResult/TestResultMetadata/styles.scss +8 -0
- package/src/components/TestResult/TestResultNavigation/index.tsx +80 -0
- package/src/components/TestResult/TestResultNavigation/styles.scss +48 -0
- package/src/components/TestResult/TestResultOverview.tsx +40 -0
- package/src/components/TestResult/TestResultParameters/index.tsx +30 -0
- package/src/components/TestResult/TestResultParameters/styles.scss +8 -0
- package/src/components/TestResult/TestResultPrevStatuses/index.tsx +49 -0
- package/src/components/TestResult/TestResultPrevStatuses/styles.scss +57 -0
- package/src/components/TestResult/TestResultRetriesView/TestResultRetriesItem.tsx +65 -0
- package/src/components/TestResult/TestResultRetriesView/index.tsx +27 -0
- package/src/components/TestResult/TestResultRetriesView/styles.scss +69 -0
- package/src/components/TestResult/TestResultSetup/index.tsx +49 -0
- package/src/components/TestResult/TestResultSeverity/index.tsx +27 -0
- package/src/components/TestResult/TestResultSeverity/styles.scss +29 -0
- package/src/components/TestResult/TestResultStatus/index.tsx +26 -0
- package/src/components/TestResult/TestResultStatus/styles.scss +36 -0
- package/src/components/TestResult/TestResultSteps/HtmlAttachmentPreview.tsx +38 -0
- package/src/components/TestResult/TestResultSteps/attachment.tsx +68 -0
- package/src/components/TestResult/TestResultSteps/attachmentCode.tsx +20 -0
- package/src/components/TestResult/TestResultSteps/attachmentImage.tsx +32 -0
- package/src/components/TestResult/TestResultSteps/attachmentVideo.tsx +15 -0
- package/src/components/TestResult/TestResultSteps/index.tsx +49 -0
- package/src/components/TestResult/TestResultSteps/styles.scss +221 -0
- package/src/components/TestResult/TestResultSteps/testResultAttachment.tsx +77 -0
- package/src/components/TestResult/TestResultSteps/testResultAttachmentInfo.tsx +83 -0
- package/src/components/TestResult/TestResultSteps/testResultStep.tsx +78 -0
- package/src/components/TestResult/TestResultSteps/testResultStepInfo.tsx +30 -0
- package/src/components/TestResult/TestResultSteps/wrongAttachment.tsx +8 -0
- package/src/components/TestResult/TestResultTabs/index.tsx +59 -0
- package/src/components/TestResult/TestResultTabs/styles.scss +76 -0
- package/src/components/TestResult/TestResultTeardown/index.tsx +49 -0
- package/src/components/{testresult → TestResult}/TestResultView.js +1 -1
- package/src/components/TestResult/index.tsx +54 -0
- package/src/components/TestResultView/index.tsx +31 -0
- package/src/components/ThemeButton/ThemeButton.tsx +20 -0
- package/src/components/Timeline/index.tsx +2 -0
- package/src/components/Tree/Tree.tsx +76 -0
- package/src/components/Tree/TreeHeader.tsx +82 -0
- package/src/components/Tree/TreeItem.tsx +49 -0
- package/src/components/Tree/TreeItemIcon.tsx +32 -0
- package/src/components/Tree/index.tsx +60 -0
- package/src/components/Tree/styles.scss +185 -0
- package/src/index.html +27 -4
- package/src/index.tsx +60 -0
- package/src/stores/behaviors.ts +127 -0
- package/src/stores/categories.ts +127 -0
- package/src/stores/chart.ts +32 -0
- package/src/stores/charts.ts +22 -0
- package/src/stores/envInfo.ts +34 -0
- package/src/stores/index.ts +4 -0
- package/src/stores/locale.ts +84 -0
- package/src/stores/packages.ts +127 -0
- package/src/stores/router.ts +55 -0
- package/src/stores/stats.ts +36 -0
- package/src/stores/tabs.ts +7 -0
- package/src/stores/testResults.ts +66 -0
- package/src/stores/theme.ts +30 -0
- package/src/stores/tree.ts +127 -0
- package/src/stores/trend.ts +36 -0
- package/src/stores/types.ts +5 -0
- package/src/translations/am.json +128 -0
- package/src/translations/az.json +116 -205
- package/src/translations/br.json +9 -0
- package/src/translations/constants.ts +124 -0
- package/src/translations/de.json +113 -190
- package/src/translations/en.json +118 -203
- package/src/translations/es.json +106 -196
- package/src/translations/fr.json +107 -205
- package/src/translations/he.json +104 -190
- package/src/translations/it.json +119 -0
- package/src/translations/ja.json +104 -195
- package/src/translations/ka.json +119 -0
- package/src/translations/kr.json +104 -195
- package/src/translations/nl.json +107 -205
- package/src/translations/pl.json +105 -208
- package/src/translations/pt.json +119 -0
- package/src/translations/ru.json +102 -200
- package/src/translations/sv.json +107 -210
- package/src/translations/tr.json +107 -205
- package/src/translations/zh.json +105 -177
- package/src/types/globals.d.ts +13 -0
- package/src/types/window.d.ts +8 -0
- package/src/utils/attachments.ts +156 -0
- package/src/utils/copyToClipboard.ts +16 -0
- package/src/utils/isMac.ts +8 -0
- package/src/utils/navigate.ts +7 -0
- package/src/utils/statuses.ts +55 -0
- package/src/utils/time.ts +17 -0
- package/src/utils/treeFilters.ts +139 -0
- package/test/dummy.test.ts +7 -0
- package/test/utils/treeFilters.test.ts +448 -0
- package/tsconfig.json +25 -0
- package/types.d.ts +83 -1
- package/vitest.config.ts +18 -0
- package/webpack.config.js +42 -56
- package/.babelrc.cjs +0 -18
- package/dist/multi/154.app-4abea52a.js +0 -1
- package/dist/multi/216.app-4abea52a.js +0 -1
- package/dist/multi/232.app-4abea52a.js +0 -1
- package/dist/multi/250.app-4abea52a.js +0 -1
- package/dist/multi/256.app-4abea52a.js +0 -1
- package/dist/multi/301.app-4abea52a.js +0 -1
- package/dist/multi/323.app-4abea52a.js +0 -1
- package/dist/multi/353.app-4abea52a.js +0 -1
- package/dist/multi/411d15fc5bb62472eea6ead4fb276ca9.ico +0 -0
- package/dist/multi/564.app-4abea52a.js +0 -1
- package/dist/multi/594.app-4abea52a.js +0 -1
- package/dist/multi/623.app-4abea52a.js +0 -1
- package/dist/multi/7.app-4abea52a.js +0 -1
- package/dist/multi/729.app-4abea52a.js +0 -1
- package/dist/multi/783.app-4abea52a.js +0 -1
- package/dist/multi/826.app-4abea52a.js +0 -1
- package/dist/multi/925.app-4abea52a.js +0 -1
- package/dist/multi/app-4abea52a.js +0 -2
- package/dist/multi/app-4abea52a.js.LICENSE.txt +0 -29
- package/dist/multi/checkmark-c8e83eb1.svg +0 -8
- package/dist/multi/sort-down-icon-2f1625c8.svg +0 -8
- package/dist/multi/sort-icon-dc2db9af.svg +0 -8
- package/dist/multi/sort-up-icon-e10d3fa9.svg +0 -8
- package/dist/multi/sprite.svg +0 -4
- package/dist/multi/styles-4abea52a.css +0 -558
- package/dist/multi/vertical-5e6d1df4.png +0 -0
- package/dist/single/411d15fc5bb62472eea6ead4fb276ca9.ico +0 -0
- package/dist/single/app-69c4b948.js +0 -2
- package/dist/single/app-69c4b948.js.LICENSE.txt +0 -29
- package/dist/single/checkmark-c8e83eb1.svg +0 -8
- package/dist/single/sort-down-icon-2f1625c8.svg +0 -8
- package/dist/single/sort-icon-dc2db9af.svg +0 -8
- package/dist/single/sort-up-icon-e10d3fa9.svg +0 -8
- package/dist/single/sprite.svg +0 -4
- package/dist/single/styles-69c4b948.css +0 -558
- package/src/app.js +0 -69
- package/src/assets/icons/allure-logo.svg +0 -45
- package/src/assets/icons/bamboo.svg +0 -31
- package/src/assets/icons/bitbucket.svg +0 -10
- package/src/assets/icons/bomb.svg +0 -7
- package/src/assets/icons/broken.svg +0 -10
- package/src/assets/icons/bug.svg +0 -10
- package/src/assets/icons/chevron-down.svg +0 -10
- package/src/assets/icons/chevron-left.svg +0 -10
- package/src/assets/icons/chevron-right-fat.svg +0 -10
- package/src/assets/icons/chevron-right.svg +0 -10
- package/src/assets/icons/chevron-up.svg +0 -10
- package/src/assets/icons/circleci.svg +0 -1
- package/src/assets/icons/close.svg +0 -10
- package/src/assets/icons/collapse.svg +0 -5
- package/src/assets/icons/compare.svg +0 -10
- package/src/assets/icons/copy.svg +0 -11
- package/src/assets/icons/csv.svg +0 -13
- package/src/assets/icons/download.svg +0 -11
- package/src/assets/icons/draggable.svg +0 -15
- package/src/assets/icons/expand.svg +0 -5
- package/src/assets/icons/failed.svg +0 -10
- package/src/assets/icons/file.svg +0 -3
- package/src/assets/icons/folder.svg +0 -10
- package/src/assets/icons/github.svg +0 -4
- package/src/assets/icons/gitlab.svg +0 -12
- package/src/assets/icons/graphs.svg +0 -11
- package/src/assets/icons/history.svg +0 -11
- package/src/assets/icons/image.svg +0 -3
- package/src/assets/icons/info.svg +0 -12
- package/src/assets/icons/jenkins.svg +0 -327
- package/src/assets/icons/jobs.svg +0 -12
- package/src/assets/icons/link.svg +0 -11
- package/src/assets/icons/list.svg +0 -13
- package/src/assets/icons/maximize.svg +0 -11
- package/src/assets/icons/new-broken.svg +0 -6
- package/src/assets/icons/new-failed.svg +0 -6
- package/src/assets/icons/new-passed.svg +0 -5
- package/src/assets/icons/overview.svg +0 -5
- package/src/assets/icons/passed.svg +0 -10
- package/src/assets/icons/pdf.svg +0 -13
- package/src/assets/icons/refresh.svg +0 -4
- package/src/assets/icons/retries.svg +0 -11
- package/src/assets/icons/save.svg +0 -10
- package/src/assets/icons/skipped.svg +0 -3
- package/src/assets/icons/sort-down.svg +0 -10
- package/src/assets/icons/sort-up.svg +0 -10
- package/src/assets/icons/sort.svg +0 -11
- package/src/assets/icons/table.svg +0 -10
- package/src/assets/icons/task.svg +0 -11
- package/src/assets/icons/teamcity.svg +0 -40
- package/src/assets/icons/timeline.svg +0 -12
- package/src/assets/icons/tree.svg +0 -10
- package/src/assets/icons/txt.svg +0 -11
- package/src/assets/icons/unknown.svg +0 -10
- package/src/behaviors/ClipboardBehavior.js +0 -34
- package/src/behaviors/DownloadBehavior.js +0 -42
- package/src/behaviors/GaBehavior.js +0 -27
- package/src/behaviors/LoadBehavior.js +0 -18
- package/src/behaviors/TooltipBehavior.js +0 -25
- package/src/behaviors/index.js +0 -7
- package/src/blocks/alert/styles.scss +0 -8
- package/src/blocks/arrow/styles.scss +0 -21
- package/src/blocks/attachment-row/attachment-row.hbs +0 -34
- package/src/blocks/attachment-row/styles.scss +0 -71
- package/src/blocks/bar/styles.scss +0 -22
- package/src/blocks/button/styles.scss +0 -60
- package/src/blocks/clipboard-copy/clipboard-copy.hbs +0 -5
- package/src/blocks/executor-icon/bamboo.svg +0 -31
- package/src/blocks/executor-icon/bitbucket.svg +0 -10
- package/src/blocks/executor-icon/circleci.svg +0 -1
- package/src/blocks/executor-icon/default-icon.png +0 -0
- package/src/blocks/executor-icon/github.svg +0 -4
- package/src/blocks/executor-icon/gitlab.svg +0 -12
- package/src/blocks/executor-icon/jenkins.svg +0 -327
- package/src/blocks/executor-icon/styles.scss +0 -15
- package/src/blocks/executor-icon/teamcity.svg +0 -40
- package/src/blocks/island/styles.scss +0 -7
- package/src/blocks/label/styles.scss +0 -15
- package/src/blocks/link/styles.scss +0 -10
- package/src/blocks/pane/styles.scss +0 -52
- package/src/blocks/pane-header/pane-header.hbs +0 -15
- package/src/blocks/parameters-table/parameters-table.hbs +0 -10
- package/src/blocks/parameters-table/styles.scss +0 -22
- package/src/blocks/spinner/styles.scss +0 -30
- package/src/blocks/splash/styles.scss +0 -13
- package/src/blocks/status-details/status-details.hbs +0 -13
- package/src/blocks/status-details/styles.scss +0 -32
- package/src/blocks/step-stats/step-stats.hbs +0 -15
- package/src/blocks/step-stats/styles.scss +0 -19
- package/src/blocks/table/sort-down-icon.svg +0 -1
- package/src/blocks/table/sort-icon.svg +0 -1
- package/src/blocks/table/sort-up-icon.svg +0 -1
- package/src/blocks/table/sortable-col.hbs +0 -4
- package/src/blocks/table/styles.scss +0 -64
- package/src/blocks/tabs/styles.scss +0 -29
- package/src/blocks/tabs/tabs.hbs +0 -5
- package/src/blocks/text/styles.scss +0 -5
- package/src/blocks/widget/draggable.svg +0 -1
- package/src/blocks/widget/styles.scss +0 -76
- package/src/components/attachment/AttachmentView.hbs +0 -58
- package/src/components/attachment/AttachmentView.js +0 -90
- package/src/components/attachment/styles.scss +0 -78
- package/src/components/empty/EmptyView.hbs +0 -3
- package/src/components/empty/EmptyView.js +0 -18
- package/src/components/empty/styles.scss +0 -4
- package/src/components/error-splash/ErrorSplashView.hbs +0 -4
- package/src/components/error-splash/ErrorSplashView.js +0 -19
- package/src/components/error-splash/styles.scss +0 -4
- package/src/components/graph-base/BaseChartView.hbs +0 -5
- package/src/components/graph-base/BaseChartView.js +0 -78
- package/src/components/graph-base/styles.scss +0 -66
- package/src/components/graph-duration-chart/DurationChartView.js +0 -100
- package/src/components/graph-pie-chart/PieChartView.js +0 -155
- package/src/components/graph-severity-chart/SeverityChartView.js +0 -100
- package/src/components/graph-trend-chart/TrendChartView.js +0 -202
- package/src/components/graph-trend-chart/styles.scss +0 -16
- package/src/components/graph-trend-chart/trend-tooltip.hbs +0 -9
- package/src/components/language-select/LanguageSelectView.hbs +0 -5
- package/src/components/language-select/LanguageSelectView.js +0 -42
- package/src/components/language-select/checkmark.svg +0 -1
- package/src/components/language-select/styles.scss +0 -34
- package/src/components/loader/LoaderView.hbs +0 -6
- package/src/components/loader/LoaderView.js +0 -21
- package/src/components/loader/styles.scss +0 -26
- package/src/components/marks-toggle/MarksToggleView.hbs +0 -14
- package/src/components/marks-toggle/MarksToggleView.js +0 -41
- package/src/components/marks-toggle/styles.scss +0 -38
- package/src/components/modal/styles.scss +0 -31
- package/src/components/node-search/NodeSearchView.hbs +0 -4
- package/src/components/node-search/NodeSearchView.js +0 -32
- package/src/components/node-search/styles.scss +0 -29
- package/src/components/node-sorter/NodeSorterView.hbs +0 -22
- package/src/components/node-sorter/NodeSorterView.js +0 -43
- package/src/components/node-sorter/styles.scss +0 -26
- package/src/components/popover/PopoverView.js +0 -8
- package/src/components/popover/styles.scss +0 -32
- package/src/components/side-by-side/SideBySideView.hbs +0 -2
- package/src/components/side-by-side/SideBySideView.js +0 -42
- package/src/components/side-by-side/styles.scss +0 -59
- package/src/components/side-by-side/vertical.png +0 -0
- package/src/components/status-toggle/StatusToggleView.hbs +0 -16
- package/src/components/status-toggle/StatusToggleView.js +0 -42
- package/src/components/status-toggle/styles.scss +0 -35
- package/src/components/testresult-execution/TestResultExecutionView.hbs +0 -13
- package/src/components/testresult-execution/TestResultExecutionView.js +0 -85
- package/src/components/testresult-execution/stages-block.hbs +0 -47
- package/src/components/testresult-execution/steps-list.hbs +0 -31
- package/src/components/testresult-execution/styles.scss +0 -70
- package/src/components/testresult-overview/TestResultOverviewView.hbs +0 -8
- package/src/components/testresult-overview/TestResultOverviewView.js +0 -46
- package/src/components/testresult-overview/styles.scss +0 -22
- package/src/components/testresult-tree/TestResultTreeView.js +0 -60
- package/src/components/tooltip/TooltipView.js +0 -111
- package/src/components/tooltip/styles.scss +0 -43
- package/src/components/tree/TreeView.hbs +0 -9
- package/src/components/tree/TreeView.js +0 -200
- package/src/components/tree/styles.scss +0 -141
- package/src/components/tree/tree-group.hbs +0 -36
- package/src/components/tree/tree-leaf.hbs +0 -53
- package/src/components/tree/tree-time.hbs +0 -6
- package/src/components/tree-view-container/TreeViewContainer.hbs +0 -34
- package/src/components/tree-view-container/TreeViewContainer.js +0 -103
- package/src/components/tree-view-container/styles.scss +0 -38
- package/src/components/widget-status/WidgetStatusView.hbs +0 -21
- package/src/components/widget-status/WidgetStatusView.js +0 -17
- package/src/components/widgets-grid/WidgetsGridView.js +0 -90
- package/src/components/widgets-grid/styles.scss +0 -34
- package/src/data/localstorage/LocalStorageModel.js +0 -23
- package/src/data/testresult/TestResultModel.js +0 -36
- package/src/data/tree/TreeCollection.js +0 -153
- package/src/data/tree/comparator.js +0 -63
- package/src/data/tree/filter.js +0 -66
- package/src/data/trend/TrendCollection.js +0 -36
- package/src/data/widgets/WidgetsModel.js +0 -25
- package/src/decorators/index.js +0 -53
- package/src/helpers/allure-icon.js +0 -228
- package/src/helpers/and.js +0 -3
- package/src/helpers/angle.js +0 -15
- package/src/helpers/arrow.js +0 -17
- package/src/helpers/b.js +0 -6
- package/src/helpers/concat.js +0 -3
- package/src/helpers/date.js +0 -11
- package/src/helpers/default.js +0 -8
- package/src/helpers/duration.js +0 -60
- package/src/helpers/eq.js +0 -3
- package/src/helpers/fileicon.js +0 -5
- package/src/helpers/filesize.js +0 -8
- package/src/helpers/gt.js +0 -3
- package/src/helpers/inc.js +0 -3
- package/src/helpers/is-def.js +0 -3
- package/src/helpers/job-icon.js +0 -8
- package/src/helpers/linky.js +0 -7
- package/src/helpers/not.js +0 -3
- package/src/helpers/or.js +0 -3
- package/src/helpers/sort-class.js +0 -6
- package/src/helpers/statistic-bar.js +0 -12
- package/src/helpers/status-bar.js +0 -14
- package/src/helpers/t.js +0 -5
- package/src/helpers/text-with-links.js +0 -18
- package/src/helpers/time.js +0 -18
- package/src/helpers/timeago.js +0 -10
- package/src/layouts/application/AppLayout.hbs +0 -2
- package/src/layouts/application/AppLayout.js +0 -50
- package/src/layouts/application/styles.scss +0 -17
- package/src/layouts/error/ErrorLayout.js +0 -11
- package/src/layouts/overview/OverviewLayout.js +0 -8
- package/src/layouts/testresult/TestResultLayout.js +0 -43
- package/src/layouts/tree/TreeLayout.js +0 -45
- package/src/pluginApi.js +0 -26
- package/src/plugins/.eslintrc +0 -5
- package/src/plugins/default/index.js +0 -11
- package/src/plugins/screen-diff/index.js +0 -186
- package/src/plugins/screen-diff/styles.css +0 -30
- package/src/plugins/tab-behaviors/index.js +0 -239
- package/src/plugins/tab-category/index.js +0 -15
- package/src/plugins/tab-graph/GraphCollection.js +0 -12
- package/src/plugins/tab-graph/GraphLayout.js +0 -17
- package/src/plugins/tab-graph/index.js +0 -8
- package/src/plugins/tab-packages/index.js +0 -137
- package/src/plugins/tab-suites/index.js +0 -15
- package/src/plugins/tab-timeline/TimelineLayout.js +0 -18
- package/src/plugins/tab-timeline/TimelineView.hbs +0 -17
- package/src/plugins/tab-timeline/TimelineView.js +0 -250
- package/src/plugins/tab-timeline/index.js +0 -12
- package/src/plugins/tab-timeline/styles.scss +0 -76
- package/src/plugins/testresult-category/CategoryView.hbs +0 -6
- package/src/plugins/testresult-category/CategoryView.js +0 -17
- package/src/plugins/testresult-category/index.js +0 -3
- package/src/plugins/testresult-description/DescriptionView.hbs +0 -4
- package/src/plugins/testresult-description/DescriptionView.js +0 -16
- package/src/plugins/testresult-description/index.js +0 -3
- package/src/plugins/testresult-duration/DurationView.hbs +0 -7
- package/src/plugins/testresult-duration/DurationView.js +0 -16
- package/src/plugins/testresult-duration/index.js +0 -3
- package/src/plugins/testresult-history/HistoryView.hbs +0 -27
- package/src/plugins/testresult-history/HistoryView.js +0 -33
- package/src/plugins/testresult-history/index.js +0 -3
- package/src/plugins/testresult-history/styles.scss +0 -10
- package/src/plugins/testresult-links/LinksView.hbs +0 -17
- package/src/plugins/testresult-links/LinksView.js +0 -17
- package/src/plugins/testresult-links/index.js +0 -3
- package/src/plugins/testresult-links/styles.scss +0 -19
- package/src/plugins/testresult-owner/OwnerView.hbs +0 -4
- package/src/plugins/testresult-owner/OwnerView.js +0 -17
- package/src/plugins/testresult-owner/index.js +0 -3
- package/src/plugins/testresult-parameters/ParametersView.hbs +0 -13
- package/src/plugins/testresult-parameters/ParametersView.js +0 -22
- package/src/plugins/testresult-parameters/index.js +0 -3
- package/src/plugins/testresult-parameters/styles.scss +0 -8
- package/src/plugins/testresult-retries/RetriesView.hbs +0 -13
- package/src/plugins/testresult-retries/RetriesView.js +0 -28
- package/src/plugins/testresult-retries/index.js +0 -3
- package/src/plugins/testresult-retries/styles.scss +0 -11
- package/src/plugins/testresult-severity/SeverityView.hbs +0 -4
- package/src/plugins/testresult-severity/SeverityView.js +0 -17
- package/src/plugins/testresult-severity/index.js +0 -3
- package/src/plugins/testresult-tags/TagsView.hbs +0 -5
- package/src/plugins/testresult-tags/TagsView.js +0 -17
- package/src/plugins/testresult-tags/index.js +0 -3
- package/src/plugins/widget-categories/index.js +0 -12
- package/src/plugins/widget-categories-trend/CategoriesTrendWidgetView.hbs +0 -4
- package/src/plugins/widget-categories-trend/CategoriesTrendWidgetView.js +0 -33
- package/src/plugins/widget-categories-trend/index.js +0 -4
- package/src/plugins/widget-categories-trend/styles.scss +0 -6
- package/src/plugins/widget-duration/DurationWidgetView.hbs +0 -4
- package/src/plugins/widget-duration/DurationWidgetView.js +0 -23
- package/src/plugins/widget-duration/index.js +0 -3
- package/src/plugins/widget-duration-trend/DurationTrendWidgetView.hbs +0 -4
- package/src/plugins/widget-duration-trend/DurationTrendWidgetView.js +0 -49
- package/src/plugins/widget-duration-trend/index.js +0 -4
- package/src/plugins/widget-duration-trend/styles.scss +0 -6
- package/src/plugins/widget-environment/EnvironmentWidget.hbs +0 -27
- package/src/plugins/widget-environment/EnvironmentWidget.js +0 -25
- package/src/plugins/widget-environment/index.js +0 -3
- package/src/plugins/widget-executor/ExecutorsWidgetView.hbs +0 -40
- package/src/plugins/widget-executor/ExecutorsWidgetView.js +0 -8
- package/src/plugins/widget-executor/index.js +0 -3
- package/src/plugins/widget-history-trend/HistoryTrendWidgetView.hbs +0 -4
- package/src/plugins/widget-history-trend/HistoryTrendWidgetView.js +0 -30
- package/src/plugins/widget-history-trend/index.js +0 -6
- package/src/plugins/widget-history-trend/styles.scss +0 -6
- package/src/plugins/widget-launch/LaunchesWidgetView.hbs +0 -23
- package/src/plugins/widget-launch/LaunchesWidgetView.js +0 -8
- package/src/plugins/widget-launch/index.js +0 -3
- package/src/plugins/widget-retry-trend/RetryTrendWidgetView.hbs +0 -4
- package/src/plugins/widget-retry-trend/RetryTrendWidgetView.js +0 -33
- package/src/plugins/widget-retry-trend/index.js +0 -4
- package/src/plugins/widget-retry-trend/styles.scss +0 -6
- package/src/plugins/widget-severity/SeverityWidgetView.hbs +0 -4
- package/src/plugins/widget-severity/SeverityWidgetView.js +0 -23
- package/src/plugins/widget-severity/index.js +0 -3
- package/src/plugins/widget-status/StatusWidgetView.hbs +0 -4
- package/src/plugins/widget-status/StatusWidgetView.js +0 -44
- package/src/plugins/widget-status/index.js +0 -3
- package/src/plugins/widget-suites/index.js +0 -12
- package/src/plugins/widget-summary/SummaryWidgetView.hbs +0 -20
- package/src/plugins/widget-summary/SummaryWidgetView.js +0 -33
- package/src/plugins/widget-summary/index.js +0 -3
- package/src/plugins/widget-summary/styles.scss +0 -14
- package/src/router.js +0 -52
- package/src/utils/arrays.js +0 -3
- package/src/utils/attachmentType.js +0 -101
- package/src/utils/clipboard.js +0 -38
- package/src/utils/escape.js +0 -5
- package/src/utils/gtag.js +0 -8
- package/src/utils/highlight.js +0 -14
- package/src/utils/hotkeys.js +0 -25
- package/src/utils/loading.js +0 -9
- package/src/utils/marks.js +0 -1
- package/src/utils/pluginsRegistry.js +0 -56
- package/src/utils/settings.js +0 -4
- package/src/utils/settingsFactory.js +0 -149
- package/src/utils/sorting.js +0 -21
- package/src/utils/translation.js +0 -63
- package/webpack/utils.js +0 -10
- /package/src/components/{modal → Modal}/ModalView.hbs +0 -0
- /package/src/components/{modal → Modal}/ModalView.js +0 -0
- /package/src/components/{side-nav → SideNav}/SideNavView.hbs +0 -0
- /package/src/components/{side-nav → SideNav}/SideNavView.js +0 -0
- /package/src/components/{testresult → TestResult}/TestResultView.hbs +0 -0
- /package/src/components/{testresult → TestResult}/styles.scss +0 -0
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 128.01 128.01">
|
|
2
|
-
<defs>
|
|
3
|
-
<linearGradient id="linear-gradient" x1="66.73" y1="-662.84" x2="26.4" y2="-613.01" gradientTransform="matrix(1, 0, 0, -1, 0, -585.01)" gradientUnits="userSpaceOnUse">
|
|
4
|
-
<stop offset="0.06" stop-color="#0cb0f2"/>
|
|
5
|
-
<stop offset="0.21" stop-color="#10adf2"/>
|
|
6
|
-
<stop offset="0.37" stop-color="#1ea5f3"/>
|
|
7
|
-
<stop offset="0.54" stop-color="#3497f5"/>
|
|
8
|
-
<stop offset="0.71" stop-color="#5283f7"/>
|
|
9
|
-
<stop offset="0.88" stop-color="#796af9"/>
|
|
10
|
-
<stop offset="0.97" stop-color="#905cfb"/>
|
|
11
|
-
</linearGradient>
|
|
12
|
-
<linearGradient id="linear-gradient-2" x1="20.9" y1="-706.33" x2="41.11" y2="-659.59" gradientTransform="matrix(1, 0, 0, -1, 0, -585.01)" gradientUnits="userSpaceOnUse">
|
|
13
|
-
<stop offset="0.06" stop-color="#0cb0f2"/>
|
|
14
|
-
<stop offset="0.2" stop-color="#0db2ee"/>
|
|
15
|
-
<stop offset="0.35" stop-color="#12b7e0"/>
|
|
16
|
-
<stop offset="0.51" stop-color="#19c0ca"/>
|
|
17
|
-
<stop offset="0.68" stop-color="#23ccac"/>
|
|
18
|
-
<stop offset="0.85" stop-color="#30dc85"/>
|
|
19
|
-
<stop offset="0.97" stop-color="#3bea62"/>
|
|
20
|
-
</linearGradient>
|
|
21
|
-
<linearGradient id="linear-gradient-3" x1="48.62" y1="-644.91" x2="88.12" y2="-594.24" xlink:href="#linear-gradient-2"/>
|
|
22
|
-
<linearGradient id="linear-gradient-4" x1="63.99" y1="-609.92" x2="63.99" y2="-689.92" gradientTransform="matrix(1, 0, 0, -1, 0, -585.01)" gradientUnits="userSpaceOnUse">
|
|
23
|
-
<stop offset="0"/>
|
|
24
|
-
<stop offset="1"/>
|
|
25
|
-
</linearGradient>
|
|
26
|
-
</defs>
|
|
27
|
-
<title>icon_TeamCity</title>
|
|
28
|
-
<g>
|
|
29
|
-
<path d="M45.92,2.92a25,25,0,0,0-5.53-2c-25.7-6.1-44.8,19.1-34.3,42,0.1,0.1,18.7,40.9,21.7,47.4,0,0,34.2-15.7,41.2-31.8,6.48-15-4.45-42.38-6.45-46.49Z" fill="url(#linear-gradient)"/>
|
|
30
|
-
<path d="M123.19,48.43a24.36,24.36,0,0,0-8.6-8c-0.1,0-24.1-13.2-24.1-13.2S8.09,75,8,75.13c-9.3,10.6-11.4,27.4-.7,42a25.22,25.22,0,0,0,13,9.2c9.7,3,18.3,1.8,25.5-2,0.2-.1,67.7-35.9,67.9-36.1C126.89,81.33,133,63.73,123.19,48.43Z" fill="#0cb0f2"/>
|
|
31
|
-
<path d="M38.42,37.94l-22,27S8,75,7.89,75.13c-9.3,10.6-11.4,27.4-.7,42a25.22,25.22,0,0,0,13,9.2c9.7,3,18.4,1.8,25.6-2,0,0,1.7-.9,4.6-2.5C59.53,116.89,72.14,83.68,80.74,58Z" fill="url(#linear-gradient-2)"/>
|
|
32
|
-
<path d="M73,63.93L90.49,27a0.1,0.1,0,0,1,.1-0.1c0.1-.3,1.5-3.9,1.6-4.1a17,17,0,0,0-1.8-15.9,14.29,14.29,0,0,0-8.9-6.3,16.4,16.4,0,0,0-17.1,5.7c-0.1.1-3.9,4.5-3.9,4.5l-28,34.5Z" fill="url(#linear-gradient-3)"/>
|
|
33
|
-
</g>
|
|
34
|
-
<g>
|
|
35
|
-
<rect x="23.99" y="23.93" width="80" height="80" fill="url(#linear-gradient-4)"/>
|
|
36
|
-
<polygon points="42.79 41.63 31.99 41.63 31.99 34.63 61.29 34.63 61.29 41.63 50.59 41.63 50.59 69.22 42.79 69.22 42.79 41.63" fill="#fff"/>
|
|
37
|
-
<path d="M61.29,52h0c0-10,7.4-18.1,18.1-18.1,6.5,0,10.5,2.2,13.7,5.4l-4.9,5.6c-2.7-2.4-5.4-3.9-8.9-3.9-5.8,0-10.1,4.9-10.1,10.8v0.1c0,6,4.1,10.9,10.1,10.9,4,0,6.4-1.6,9.1-4.1l4.9,4.9c-3.6,3.8-7.5,6.2-14.2,6.2A17.41,17.41,0,0,1,61.29,52" fill="#fff"/>
|
|
38
|
-
<rect x="31.99" y="87.93" width="29.3" height="5.3" fill="#fff"/>
|
|
39
|
-
</g>
|
|
40
|
-
</svg>
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_310_8)">
|
|
3
|
-
<path d="M15 11H17V20H15V11Z" fill="currentColor"/>
|
|
4
|
-
<path d="M13 2H19V4H13V2Z" fill="currentColor"/>
|
|
5
|
-
<path d="M28 8.99999L26.58 7.58999L24.33 9.83999C22.4882 7.71302 19.8977 6.37742 17.0968 6.1107C14.2959 5.84397 11.4999 6.66663 9.28979 8.40774C7.07965 10.1488 5.62527 12.6745 5.22886 15.46C4.83244 18.2456 5.52446 21.0767 7.16113 23.3653C8.7978 25.6538 11.2533 27.2239 14.0174 27.7491C16.7815 28.2744 19.6417 27.7145 22.0038 26.1858C24.3658 24.6571 26.0481 22.2771 26.701 19.5403C27.354 16.8036 26.9274 13.9204 25.51 11.49L28 8.99999ZM16 26C14.22 26 12.4799 25.4722 10.9999 24.4832C9.51983 23.4943 8.36627 22.0887 7.68509 20.4441C7.0039 18.7996 6.82567 16.99 7.17293 15.2442C7.5202 13.4983 8.37737 11.8947 9.63604 10.636C10.8947 9.37736 12.4984 8.52019 14.2442 8.17292C15.99 7.82566 17.7996 8.00389 19.4442 8.68508C21.0887 9.36626 22.4943 10.5198 23.4832 11.9999C24.4722 13.4799 25 15.22 25 17C25 19.3869 24.0518 21.6761 22.364 23.364C20.6761 25.0518 18.3869 26 16 26Z" fill="currentColor"/>
|
|
6
|
-
</g>
|
|
7
|
-
<defs>
|
|
8
|
-
<clipPath id="clip0_310_8">
|
|
9
|
-
<rect width="32" height="32" fill="white"/>
|
|
10
|
-
</clipPath>
|
|
11
|
-
</defs>
|
|
12
|
-
</svg>
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_53_88)">
|
|
3
|
-
<path d="M23 9.005H29C29.5304 9.005 30.0391 8.79429 30.4142 8.41922C30.7893 8.04415 31 7.53544 31 7.005V3.005C31 2.47457 30.7893 1.96586 30.4142 1.59079C30.0391 1.21572 29.5304 1.005 29 1.005H23C22.4696 1.005 21.9609 1.21572 21.5858 1.59079C21.2107 1.96586 21 2.47457 21 3.005V4.005H11V3.005C11 2.47457 10.7893 1.96586 10.4142 1.59079C10.0391 1.21572 9.53043 1.005 9 1.005H3C2.46957 1.005 1.96086 1.21572 1.58579 1.59079C1.21071 1.96586 1 2.47457 1 3.005V7.005C1 7.53544 1.21071 8.04415 1.58579 8.41922C1.96086 8.79429 2.46957 9.005 3 9.005H9C9.53043 9.005 10.0391 8.79429 10.4142 8.41922C10.7893 8.04415 11 7.53544 11 7.005V6.005H15V26.005C15.0005 26.5353 15.2114 27.0437 15.5864 27.4186C15.9613 27.7936 16.4697 28.0045 17 28.005H21V29.005C21 29.5354 21.2107 30.0441 21.5858 30.4192C21.9609 30.7943 22.4696 31.005 23 31.005H29C29.5304 31.005 30.0391 30.7943 30.4142 30.4192C30.7893 30.0441 31 29.5354 31 29.005V25.005C31 24.4746 30.7893 23.9659 30.4142 23.5908C30.0391 23.2157 29.5304 23.005 29 23.005H23C22.4696 23.005 21.9609 23.2157 21.5858 23.5908C21.2107 23.9659 21 24.4746 21 25.005V26.005H17V17.005H21V18.005C21 18.5354 21.2107 19.0441 21.5858 19.4192C21.9609 19.7943 22.4696 20.005 23 20.005H29C29.5304 20.005 30.0391 19.7943 30.4142 19.4192C30.7893 19.0441 31 18.5354 31 18.005V14.005C31 13.4746 30.7893 12.9659 30.4142 12.5908C30.0391 12.2157 29.5304 12.005 29 12.005H23C22.4696 12.005 21.9609 12.2157 21.5858 12.5908C21.2107 12.9659 21 13.4746 21 14.005V15.005H17V6.005H21V7.005C21 7.53544 21.2107 8.04415 21.5858 8.41922C21.9609 8.79429 22.4696 9.005 23 9.005ZM23 3.005H29V7.005H23V3.005ZM9 7.005H3V3.005H9V7.005ZM23 25.005H29V29.005H23V25.005ZM23 14.005H29V18.005H23V14.005Z" fill="currentColor"/>
|
|
4
|
-
</g>
|
|
5
|
-
<defs>
|
|
6
|
-
<clipPath id="clip0_53_88">
|
|
7
|
-
<rect width="32" height="32" fill="white"/>
|
|
8
|
-
</clipPath>
|
|
9
|
-
</defs>
|
|
10
|
-
</svg>
|
package/src/assets/icons/txt.svg
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_473_39)">
|
|
3
|
-
<path d="M22 14V10C22.0035 9.86858 21.9785 9.73795 21.9268 9.61711C21.875 9.49627 21.7976 9.38809 21.7 9.3L14.7 2.3C14.612 2.20235 14.5038 2.12495 14.3829 2.07316C14.2621 2.02137 14.1314 1.99641 14 2H4C3.47005 2.00159 2.96227 2.21281 2.58753 2.58754C2.2128 2.96227 2.00158 3.47006 2 4V28C2 28.5304 2.21071 29.0391 2.58579 29.4142C2.96086 29.7893 3.46957 30 4 30H20V28H4V4H12V10C12.0016 10.53 12.2128 11.0377 12.5875 11.4125C12.9623 11.7872 13.4701 11.9984 14 12H20V14H22ZM14 10V4.4L19.6 10H14Z" fill="currentColor"/>
|
|
4
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M6 16H8H10H12V18H10V26H8V18H6V16ZM21 16H23H25H27V18H25V26H23V18H21V16ZM12.8955 16L15.4936 20.5L12.3181 26H14.6275L16.6483 22.5L18.669 26H20.9784L17.803 20.5L20.401 16H18.0916L16.6483 18.5L15.2049 16H12.8955ZM11.9889 26.5702L12 26.551V26.5767L11.9889 26.5702Z" fill="currentColor"/>
|
|
5
|
-
</g>
|
|
6
|
-
<defs>
|
|
7
|
-
<clipPath id="clip0_473_39">
|
|
8
|
-
<rect width="32" height="32" fill="white"/>
|
|
9
|
-
</clipPath>
|
|
10
|
-
</defs>
|
|
11
|
-
</svg>
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_202_14)">
|
|
3
|
-
<path d="M16 2C13.2311 2 10.5243 2.82109 8.22202 4.35943C5.91973 5.89777 4.12532 8.08427 3.06569 10.6424C2.00607 13.2006 1.72882 16.0155 2.26901 18.7313C2.80921 21.447 4.14258 23.9416 6.10051 25.8995C8.05845 27.8574 10.553 29.1908 13.2687 29.731C15.9845 30.2712 18.7994 29.9939 21.3576 28.9343C23.9157 27.8747 26.1022 26.0803 27.6406 23.778C29.1789 21.4757 30 18.7689 30 16C30 12.287 28.525 8.72601 25.8995 6.1005C23.274 3.475 19.713 2 16 2ZM16 25C15.7033 25 15.4133 24.912 15.1667 24.7472C14.92 24.5824 14.7277 24.3481 14.6142 24.074C14.5007 23.7999 14.471 23.4983 14.5288 23.2074C14.5867 22.9164 14.7296 22.6491 14.9393 22.4393C15.1491 22.2296 15.4164 22.0867 15.7074 22.0288C15.9983 21.9709 16.2999 22.0007 16.574 22.1142C16.8481 22.2277 17.0824 22.42 17.2472 22.6666C17.412 22.9133 17.5 23.2033 17.5 23.5C17.5 23.8978 17.342 24.2794 17.0607 24.5607C16.7794 24.842 16.3978 25 16 25ZM17.142 17.246V19.747H14.892V15H17.017C17.6473 15 18.2518 14.7496 18.6974 14.3039C19.1431 13.8583 19.3935 13.2538 19.3935 12.6235C19.3935 11.9932 19.1431 11.3887 18.6974 10.9431C18.2518 10.4974 17.6473 10.247 17.017 10.247H15.517C14.8874 10.2478 14.2837 10.4983 13.8385 10.9435C13.3933 11.3887 13.1428 11.9924 13.142 12.622V13.26H10.892V12.622C10.8936 11.3961 11.3815 10.221 12.2486 9.35445C13.1157 8.48791 14.2911 8.00079 15.517 8H17.017C18.2307 8.00278 19.3947 8.48263 20.2577 9.33602C21.1207 10.1894 21.6136 11.3479 21.63 12.5615C21.6464 13.7751 21.185 14.9465 20.3454 15.8229C19.5057 16.6993 18.3552 17.2104 17.142 17.246Z" fill="currentColor"/>
|
|
4
|
-
</g>
|
|
5
|
-
<defs>
|
|
6
|
-
<clipPath id="clip0_202_14">
|
|
7
|
-
<rect width="32" height="32" fill="white"/>
|
|
8
|
-
</clipPath>
|
|
9
|
-
</defs>
|
|
10
|
-
</svg>
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { Behavior } from "backbone.marionette";
|
|
2
|
-
import TooltipView from "@/components/tooltip/TooltipView.js";
|
|
3
|
-
import { on } from "@/decorators/index.js";
|
|
4
|
-
import translate from "@/helpers/t.js";
|
|
5
|
-
import copy from "@/utils/clipboard.js";
|
|
6
|
-
|
|
7
|
-
export default class ClipboardBehavior extends Behavior {
|
|
8
|
-
initialize() {
|
|
9
|
-
this.tooltip = new TooltipView({
|
|
10
|
-
position: "left",
|
|
11
|
-
});
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
@on("mouseenter [data-copy]")
|
|
15
|
-
onTipHover(e) {
|
|
16
|
-
const el = this.$(e.currentTarget);
|
|
17
|
-
this.tooltip.show(translate("controls.clipboard"), el);
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
@on("mouseleave [data-copy]")
|
|
21
|
-
onTipLeave() {
|
|
22
|
-
this.tooltip.hide();
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
@on("click [data-copy]")
|
|
26
|
-
onCopyableClick(e) {
|
|
27
|
-
const el = this.$(e.currentTarget);
|
|
28
|
-
if (copy(el.data("copy"))) {
|
|
29
|
-
this.tooltip.show(translate("controls.clipboardSuccess"), el);
|
|
30
|
-
} else {
|
|
31
|
-
this.tooltip.show(translate("controls.clipboardError"), el);
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import { reportDataUrl } from "@allurereport/web-commons";
|
|
2
|
-
import { Behavior } from "backbone.marionette";
|
|
3
|
-
import TooltipView from "@/components/tooltip/TooltipView.js";
|
|
4
|
-
import { on } from "@/decorators/index.js";
|
|
5
|
-
|
|
6
|
-
export default class DownloadBehavior extends Behavior {
|
|
7
|
-
initialize() {
|
|
8
|
-
this.tooltip = new TooltipView({
|
|
9
|
-
position: "left",
|
|
10
|
-
});
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
@on("click [data-download]")
|
|
14
|
-
onDownloadableClick(e) {
|
|
15
|
-
e.preventDefault();
|
|
16
|
-
e.stopPropagation();
|
|
17
|
-
const el = this.$(e.currentTarget);
|
|
18
|
-
const path = el.data("download");
|
|
19
|
-
if (!path) {
|
|
20
|
-
return;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
const contentType = el.data("download-type") || "application/octet-stream";
|
|
24
|
-
const target = el.data("download-target") === "_blank";
|
|
25
|
-
|
|
26
|
-
reportDataUrl(`${path}`, contentType)
|
|
27
|
-
.then((href) => {
|
|
28
|
-
const link = document.createElement("a");
|
|
29
|
-
link.setAttribute("href", href);
|
|
30
|
-
link.setAttribute("download", path);
|
|
31
|
-
if (target) {
|
|
32
|
-
link.setAttribute("target", "_blank");
|
|
33
|
-
}
|
|
34
|
-
document.body.appendChild(link);
|
|
35
|
-
link.click();
|
|
36
|
-
document.body.removeChild(link);
|
|
37
|
-
})
|
|
38
|
-
.catch((error) => {
|
|
39
|
-
this.tooltip.show(`Download error: ${error}`, el);
|
|
40
|
-
});
|
|
41
|
-
}
|
|
42
|
-
}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { Behavior } from "backbone.marionette";
|
|
2
|
-
import { on } from "@/decorators/index.js";
|
|
3
|
-
import gtag from "@/utils/gtag.js";
|
|
4
|
-
|
|
5
|
-
export default class GaBehavior extends Behavior {
|
|
6
|
-
initialize() {}
|
|
7
|
-
|
|
8
|
-
@on("click [data-ga4-event]")
|
|
9
|
-
onDataEventClick(e) {
|
|
10
|
-
const el = this.$(e.currentTarget);
|
|
11
|
-
const event = el.data("ga4-event");
|
|
12
|
-
const dataAttributes = el.data();
|
|
13
|
-
const eventParams = Object.keys(dataAttributes)
|
|
14
|
-
.filter((key) => key.startsWith("ga4Param"))
|
|
15
|
-
.map((key) => {
|
|
16
|
-
const value = dataAttributes[key];
|
|
17
|
-
const gaKey = key
|
|
18
|
-
.substring(8)
|
|
19
|
-
.split(/\.?(?=[A-Z])/)
|
|
20
|
-
.join("_")
|
|
21
|
-
.toLowerCase();
|
|
22
|
-
return { [gaKey]: value };
|
|
23
|
-
})
|
|
24
|
-
.reduce((a, b) => Object.assign(a, b), {});
|
|
25
|
-
gtag(event, eventParams);
|
|
26
|
-
}
|
|
27
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { Behavior } from "backbone.marionette";
|
|
2
|
-
|
|
3
|
-
export default class LoadBehavior extends Behavior {
|
|
4
|
-
initialize() {
|
|
5
|
-
const renderView = this.view.render.bind(this.view);
|
|
6
|
-
this.loaded = false;
|
|
7
|
-
this.view.render = () => {
|
|
8
|
-
if (this.loaded) {
|
|
9
|
-
renderView();
|
|
10
|
-
} else {
|
|
11
|
-
this.view.loadData().then(() => {
|
|
12
|
-
this.loaded = true;
|
|
13
|
-
renderView();
|
|
14
|
-
});
|
|
15
|
-
}
|
|
16
|
-
};
|
|
17
|
-
}
|
|
18
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { Behavior } from "backbone.marionette";
|
|
2
|
-
import { escapeExpression as escape } from "handlebars/runtime.js";
|
|
3
|
-
import TooltipView from "@/components/tooltip/TooltipView.js";
|
|
4
|
-
import { on } from "@/decorators/index.js";
|
|
5
|
-
|
|
6
|
-
export default class TooltipBehavior extends Behavior {
|
|
7
|
-
initialize() {
|
|
8
|
-
this.tooltip = new TooltipView(this.options);
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
onDestroy() {
|
|
12
|
-
this.tooltip.hide();
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
@on("mouseenter [data-tooltip]")
|
|
16
|
-
onTipHover(e) {
|
|
17
|
-
const el = this.$(e.currentTarget);
|
|
18
|
-
this.tooltip.show(escape(el.data("tooltip")), el);
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
@on("mouseleave [data-tooltip]")
|
|
22
|
-
onTipLeave() {
|
|
23
|
-
this.tooltip.hide();
|
|
24
|
-
}
|
|
25
|
-
}
|
package/src/behaviors/index.js
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import ClipboardBehavior from "./ClipboardBehavior.js";
|
|
2
|
-
import DownloadBehavior from "./DownloadBehavior.js";
|
|
3
|
-
import GaBehavior from "./GaBehavior.js";
|
|
4
|
-
import LoadBehavior from "./LoadBehavior.js";
|
|
5
|
-
import TooltipBehavior from "./TooltipBehavior.js";
|
|
6
|
-
|
|
7
|
-
export { LoadBehavior, TooltipBehavior, ClipboardBehavior, GaBehavior, DownloadBehavior };
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
.block__arrow {
|
|
2
|
-
visibility: visible;
|
|
3
|
-
transition: transform 0.1s;
|
|
4
|
-
font-weight: initial;
|
|
5
|
-
vertical-align: middle;
|
|
6
|
-
line-height: normal;
|
|
7
|
-
|
|
8
|
-
&__expanded {
|
|
9
|
-
transform: rotate(90deg);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
[dir="rtl"] .block__arrow {
|
|
14
|
-
transform: scaleX(-1);
|
|
15
|
-
filter: FlipH;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.angle {
|
|
19
|
-
width: 20px;
|
|
20
|
-
display: flex;
|
|
21
|
-
}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
<div>
|
|
2
|
-
<div class="attachment-row" data-uid="{{uid}}">
|
|
3
|
-
<span class="attachment-row__arrow block__arrow">{{angle}}</span>
|
|
4
|
-
<div class="attachment-row__icon">
|
|
5
|
-
<span data-tooltip="{{type}}" class="attachment-icon">
|
|
6
|
-
{{allure-icon (fileicon type) noTooltip=true width="12px" height="12px"}}
|
|
7
|
-
</span>
|
|
8
|
-
</div>
|
|
9
|
-
<div class="attachment-row__name long-line">
|
|
10
|
-
{{#if name}}
|
|
11
|
-
{{name}}
|
|
12
|
-
{{else}}
|
|
13
|
-
{{source}}
|
|
14
|
-
{{/if}}
|
|
15
|
-
</div>
|
|
16
|
-
<div class="attachment-row__control attachment-row__link">
|
|
17
|
-
<div class="link"
|
|
18
|
-
data-download="data/attachments/{{source}}"
|
|
19
|
-
data-download-target="_blank"
|
|
20
|
-
data-download-type="{{type}}"
|
|
21
|
-
data-tooltip="Open attachment in new tab">
|
|
22
|
-
{{allure-icon "save" noTooltip=true width="12px" height="12px"}} {{filesize size}}
|
|
23
|
-
</div>
|
|
24
|
-
</div>
|
|
25
|
-
<div class="attachment-row__control attachment-row__fullscreen">
|
|
26
|
-
<a class="link">
|
|
27
|
-
{{allure-icon "maximize" noTooltip=true width="12px" height="12px"}}
|
|
28
|
-
</a>
|
|
29
|
-
</div>
|
|
30
|
-
</div>
|
|
31
|
-
<div class="attachment-row__preview">
|
|
32
|
-
<div class="attachment-row__content {{b 'attachment' uid }}"></div>
|
|
33
|
-
</div>
|
|
34
|
-
</div>
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
@import "../../variables.scss";
|
|
2
|
-
|
|
3
|
-
.attachment-row {
|
|
4
|
-
padding: 5px $gap-size 5px 18px;
|
|
5
|
-
cursor: pointer;
|
|
6
|
-
font-size: smaller;
|
|
7
|
-
display: flex;
|
|
8
|
-
gap: 4px;
|
|
9
|
-
position: sticky;
|
|
10
|
-
top: 0;
|
|
11
|
-
align-items: center;
|
|
12
|
-
|
|
13
|
-
&:hover {
|
|
14
|
-
background: $hover-color;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
&_selected {
|
|
18
|
-
&,
|
|
19
|
-
&:hover {
|
|
20
|
-
background: $pane-bg-color;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
&:hover {
|
|
24
|
-
background: $hover-color;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
&_selected > &__arrow {
|
|
29
|
-
transform: rotate(90deg);
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
&__arrow {
|
|
33
|
-
left: 7px;
|
|
34
|
-
top: 4px;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
&__name {
|
|
38
|
-
flex: 1;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
&__control {
|
|
42
|
-
padding-left: $gap-size;
|
|
43
|
-
display: inline-block;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
&__icon {
|
|
47
|
-
display: flex;
|
|
48
|
-
align-items: center;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
&__preview {
|
|
52
|
-
margin-bottom: 7px;
|
|
53
|
-
margin-left: 40px;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
&__content {
|
|
57
|
-
background-color: $attachment-bg;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
&__content > div {
|
|
61
|
-
padding: 5px;
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.hljs {
|
|
66
|
-
background: inherit;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
.attachment-icon {
|
|
70
|
-
display: flex;
|
|
71
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
@import "../../variables.scss";
|
|
2
|
-
@import "../../mixins.scss";
|
|
3
|
-
|
|
4
|
-
.bar {
|
|
5
|
-
height: 18px;
|
|
6
|
-
overflow: hidden;
|
|
7
|
-
border-radius: 3px;
|
|
8
|
-
background: #eee;
|
|
9
|
-
display: inline-flex;
|
|
10
|
-
width: 100%;
|
|
11
|
-
&__fill {
|
|
12
|
-
display: inline-block;
|
|
13
|
-
overflow: hidden;
|
|
14
|
-
height: 18px;
|
|
15
|
-
background: $brand-blue;
|
|
16
|
-
text-align: center;
|
|
17
|
-
color: #fff;
|
|
18
|
-
font-size: 12px;
|
|
19
|
-
line-height: 18px;
|
|
20
|
-
@include status-bg-bright();
|
|
21
|
-
}
|
|
22
|
-
}
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
@import "../../variables.scss";
|
|
2
|
-
|
|
3
|
-
$button-border-radius: 3px;
|
|
4
|
-
$button-border-color: rgba(0, 0, 0, 0.2);
|
|
5
|
-
$button-border-hover: rgba(0, 0, 0, 0.3);
|
|
6
|
-
|
|
7
|
-
$button-bg-pressed: rgba(0, 0, 0, 0.05);
|
|
8
|
-
$button-bg-checked: #e8e8e8;
|
|
9
|
-
|
|
10
|
-
$button-inverse-border-color: #666666;
|
|
11
|
-
$button-inverse-color: #737373;
|
|
12
|
-
$button-inverse-border-hover: #737373;
|
|
13
|
-
|
|
14
|
-
.button {
|
|
15
|
-
padding: 0 13px;
|
|
16
|
-
font-size: 13px;
|
|
17
|
-
line-height: 26px;
|
|
18
|
-
overflow: hidden;
|
|
19
|
-
background: transparent;
|
|
20
|
-
border: 1px solid $button-border-color;
|
|
21
|
-
border-radius: $button-border-radius;
|
|
22
|
-
outline: none;
|
|
23
|
-
box-sizing: content-box;
|
|
24
|
-
|
|
25
|
-
&:hover {
|
|
26
|
-
border-color: $button-border-hover;
|
|
27
|
-
}
|
|
28
|
-
&:active {
|
|
29
|
-
background: $button-bg-pressed;
|
|
30
|
-
}
|
|
31
|
-
&_active {
|
|
32
|
-
background: $button-bg-checked;
|
|
33
|
-
}
|
|
34
|
-
&_inverse {
|
|
35
|
-
color: $button-inverse-color;
|
|
36
|
-
border-color: $button-inverse-border-color;
|
|
37
|
-
|
|
38
|
-
&:hover {
|
|
39
|
-
border-color: $button-inverse-border-hover;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.button-group {
|
|
45
|
-
display: flex;
|
|
46
|
-
.button {
|
|
47
|
-
border-radius: 0;
|
|
48
|
-
border-right-width: 0;
|
|
49
|
-
&:last-child {
|
|
50
|
-
border-right-width: 1px;
|
|
51
|
-
border-radius: 0 $button-border-radius $button-border-radius 0;
|
|
52
|
-
}
|
|
53
|
-
&:first-child {
|
|
54
|
-
border-radius: $button-border-radius 0 0 $button-border-radius;
|
|
55
|
-
}
|
|
56
|
-
&:hover + .button {
|
|
57
|
-
border-left-color: $button-border-hover;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
|
|
3
|
-
<g>
|
|
4
|
-
<title>background</title>
|
|
5
|
-
<rect fill="none" id="canvas_background" height="202" width="202" y="-1" x="-1"/>
|
|
6
|
-
<g display="none" overflow="visible" y="0" x="0" height="100%" width="100%" id="canvasGrid">
|
|
7
|
-
<rect fill="url(#gridpattern)" stroke-width="0" y="19.622145" x="61.378059" height="400" width="580"/>
|
|
8
|
-
</g>
|
|
9
|
-
</g>
|
|
10
|
-
<g>
|
|
11
|
-
<title>Layer 1</title>
|
|
12
|
-
<g stroke="null" id="svg_62">
|
|
13
|
-
<g stroke="null" transform="matrix(1.861673452141284,0,0,1.861673452141284,-13127.843153378715,-13264.447356877272) " id="svg_61">
|
|
14
|
-
<title stroke="null" transform="translate(-0.2685726284980774,9.094947017729282e-13) translate(3.2228715419769287,9.094947017729282e-13) translate(9.094947017729282e-13,9.094947017729282e-13) translate(-6.483190536499023,-3.2415952682495117) translate(-47.84577178955078,-49.380184173583984) translate(-9.094947017729282e-13,-9.094947017729282e-13) translate(-434.96026611328125,-337.7338562011719) translate(7279,0) translate(0,7369) ">Layer 1</title>
|
|
15
|
-
<style stroke="null" transform="translate(-0.2685726284980774,9.094947017729282e-13) translate(3.2228715419769287,9.094947017729282e-13) translate(9.094947017729282e-13,9.094947017729282e-13) translate(-6.483190536499023,-3.2415952682495117) translate(-47.84577178955078,-49.380184173583984) translate(-9.094947017729282e-13,-9.094947017729282e-13) translate(-434.96026611328125,-337.7338562011719) translate(7279,0) translate(0,7369) " type="text/css">.st0{fill:#205081;}</style>
|
|
16
|
-
<g stroke="null" id="svg_46">
|
|
17
|
-
<g stroke="null" id="svg_47" transform="matrix(0.6944444113307533,0,0,0.6944444113307533,-343.74998807907116,15.277777247958717) ">
|
|
18
|
-
<path stroke="null" class="st0" d="m10655.408403,10310.598235c2.60001,1.6 8.20001,3.3 15.9,3.3l0,0c3.70001,0 7.4,-0.4 10.4,-1.2c0.3,-0.1 0.6,-0.4 0.6,-0.7c0.5,-5.8 2.1,-11.6 4.8,-16.8c0.1,-0.2 0.1,-0.4 0,-0.6c-0.1,-0.2 -0.2,-0.4 -0.4,-0.5c-3,-1.4 -6.2,-3.3 -9.1,-5.4c-4.5,-3.2 -8.2,-6.9 -10.9,-10.6c-0.2,-0.3 -0.5,-0.4 -0.9,-0.3c-0.29999,0.1 -0.6,0.3 -0.6,0.7c-1,5.1 -2.4,10.3 -4.1,15.7c-1.8,5.5 -3.8,10.6 -6,15.4c-0.2,0.3 -0.1,0.8 0.3,1z" id="svg_55"/>
|
|
19
|
-
<path stroke="null" class="st0" d="m10688.708403,10339.798235c0.2,-0.3 0.3,-0.7 0.1,-1c-2.4,-4 -4.2,-8.3 -5.29999,-12.9c-0.3,-1.1 -0.5,-2.3 -0.70001,-3.5c0,-0.2 -0.2,-0.4 -0.29999,-0.6c-0.20001,-0.1 -0.4,-0.2 -0.60001,-0.1c-3.29999,0.6 -6.89999,1 -10.5,1c-5.5,0 -10.7,-0.7 -15.1,-2.2c-0.29999,-0.1 -0.7,0 -0.9,0.2c-0.2,0.2 -0.29999,0.6 -0.1,0.9c2.20001,4.7 4.20001,9.8 5.9,15.1c1.8,5.5 3.2,10.8 4.2,16c0.10001,0.4 0.4,0.7 0.8,0.7c0,0 0,0 0.1,0c3.1,-0.3 8.6,-2.1 14.8,-6.7c2.9,-2 5.6,-4.5 7.6,-6.9z" id="svg_54"/>
|
|
20
|
-
<path stroke="null" class="st0" d="m10734.108413,10249.098235c-0.3,-0.6 -0.8,-1 -1.4,-1.1l-39.8,-8.3c-0.8,-0.2 -1.6,0.2 -2.1,0.9c-0.4,0.7 -0.4,1.6 0.1,2.2l6,8.1c-3.3,2.9 -6.9,5.8 -10.7,8.6c-4.6,3.4 -9.3,6.4 -13.9,8.9c-0.4,0.2 -0.5,0.7 -0.4,1.1c1.2,2.8 4.7,7.5 10.9,12c3,2.2 6.2,4 9.1,5.2c0.1,0 0.2,0.1 0.3,0.1c0.2,0 0.5,-0.1 0.6,-0.3c4.1,-4.8 9.1,-8.6 14.8,-11.3l2,10.1c0.2,0.8 0.79999,1.4 1.6,1.6c0.1,0 0.2,0 0.3,0c0.7,0 1.29999,-0.4 1.7,-1l20.7,-35c0.4,-0.6 0.5,-1.3 0.2,-1.8z" id="svg_53"/>
|
|
21
|
-
<path stroke="null" class="st0" d="m10710.008413,10356.898235c-5.5,-2.2 -10.5,-5.6 -14.70001,-9.8c-0.2,-0.2 -0.4,-0.2 -0.6,-0.2c-0.2,0 -0.4,0.1 -0.6,0.3c-2.3,2.4 -5,4.9 -7.9,7c-4.5,3.2 -9.1,5.7 -13.4,7.1c-0.29999,0.1 -0.5,0.4 -0.6,0.7c0,0.3 0.1,0.6 0.4,0.8c4.5,2.5 9.1,5.5 13.7,8.8c4.70001,3.4 9.1,7 13,10.7c0.20001,0.1 0.4,0.2 0.6,0.2c0.20001,0 0.4,-0.1 0.5,-0.2c2.4,-2.1 5.70001,-6.9 8.10001,-14.2c1.2,-3.6 1.89999,-7.1 2.1,-10.3c-0.1,-0.4 -0.3,-0.8 -0.6,-0.9z" id="svg_52"/>
|
|
22
|
-
<path stroke="null" class="st0" d="m10798.908403,10320.198235c-2.6,-1.6 -8.2,-3.3 -15.89999,-3.3c-3.8,0 -7.4,0.4 -10.4,1.2c-0.3,0.1 -0.6,0.4 -0.6,0.7c-0.5,5.8 -2.10001,11.6 -4.8,16.8c-0.1,0.2 -0.1,0.4 0,0.7c0.1,0.2 0.2,0.4 0.4,0.5c3,1.4 6.2,3.3 9.1,5.4c4.5,3.2 8.2,6.9 10.9,10.6c0.2,0.2 0.4,0.3 0.7,0.3c0.1,0 0.1,0 0.2,0c0.3,-0.1 0.6,-0.3 0.6,-0.7c1,-5.1 2.4,-10.3 4.1,-15.7c1.8,-5.5 3.8,-10.6 6,-15.4c0.2,-0.5 0.1,-0.9 -0.3,-1.1l-0.00001,0z" id="svg_51"/>
|
|
23
|
-
<path stroke="null" class="st0" d="m10765.608413,10290.898235c-0.20001,0.3 -0.3,0.7 -0.1,1c2.39999,4 4.2,8.3 5.29999,12.9c0.3,1.1 0.5,2.3 0.70001,3.5c0,0.2 0.2,0.4 0.29999,0.6c0.20001,0.1 0.4,0.2 0.6,0.1c3.3,-0.6 6.9,-1 10.5,-1c5.5,0 10.70001,0.7 15.10001,2.2c0.1,0 0.2,0 0.29999,0c0,0 0,0 0,0c0.5,0 0.8,-0.4 0.8,-0.8c0,-0.2 -0.1,-0.4 -0.2,-0.5c-2.2,-4.6 -4.1,-9.7 -5.8,-15c-1.8,-5.5 -3.2,-10.8 -4.2,-16c-0.1,-0.4 -0.5,-0.7 -0.9,-0.7c-3.1,0.3 -8.5,2.1 -14.8,6.7c-2.9,2.1 -5.6,4.6 -7.6,7l0.00001,0z" id="svg_50"/>
|
|
24
|
-
<path stroke="null" class="st0" d="m10744.308403,10274.098235c5.5,2.2 10.5,5.6 14.70001,9.8c0.2,0.2 0.39999,0.2 0.6,0.2c0,0 0,0 0,0c0.2,0 0.4,-0.1 0.6,-0.3c2.3,-2.4 5,-4.9 7.9,-7c4.5,-3.2 9.1,-5.7 13.4,-7.1c0.29999,-0.1 0.5,-0.4 0.6,-0.7c0,-0.3 -0.1,-0.6 -0.4,-0.8c-4.5,-2.5 -9.1,-5.5 -13.7,-8.8c-4.70001,-3.4 -9.10001,-7 -13,-10.7c-0.3,-0.3 -0.8,-0.3 -1.10001,0c-2.39999,2.1 -5.7,6.9 -8.1,14.2c-1.2,3.6 -1.9,7.1 -2.1,10.3c0.1,0.4 0.3,0.8 0.6,0.9z" id="svg_49"/>
|
|
25
|
-
<path stroke="null" class="st0" d="m10771.508413,10349.298235c-3,-2.2 -6.20001,-4 -9.10001,-5.2c-0.29999,-0.1 -0.7,0 -0.89999,0.2c-4.10001,4.8 -9.10001,8.6 -14.8,11.3l-2,-10.1c-0.2,-0.8 -0.8,-1.4 -1.6,-1.6c-0.8,-0.1 -1.6,0.2 -2,0.9l-20.70001,35c-0.29999,0.5 -0.39999,1.2 -0.1,1.8c0.3,0.6 0.8,1 1.4,1.1l39.8,8.3c0.1,0 0.3,0 0.4,0c1.1,0 2,-0.9 2,-2c0,-0.5 -0.2,-1 -0.5,-1.4l-5.8,-8c3.3,-2.9 6.9,-5.8 10.7,-8.6c4.6,-3.4 9.3,-6.4 13.9,-8.9c0.4,-0.2 0.5,-0.7 0.4,-1.1c-1.4,-2.5 -4.9,-7.2 -11.1,-11.7l0.00001,0z" id="svg_48"/>
|
|
26
|
-
</g>
|
|
27
|
-
</g>
|
|
28
|
-
</g>
|
|
29
|
-
</g>
|
|
30
|
-
</g>
|
|
31
|
-
</svg>
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<svg width="24px" height="24px" viewBox="0 0 0.48 0.48" xmlns="http://www.w3.org/2000/svg" fill="none">
|
|
2
|
-
<path fill="#2684FF" fill-rule="evenodd" d="M0.042 0.065A0.013 0.013 0 0 1 0.052 0.06l0.376 0a0.013 0.013 0 0 1 0.013 0.015l-0.054 0.334a0.013 0.013 0 0 1 -0.013 0.011H0.111a0.018 0.018 0 0 1 -0.017 -0.014l-0.055 -0.331a0.013 0.013 0 0 1 0.003 -0.01zm0.156 0.234H0.282l0.02 -0.118H0.176l0.022 0.118z" clip-rule="evenodd"/>
|
|
3
|
-
<path fill="url(#bitbucket-color-16__paint0_linear_707_135)" d="M0.424 0.181H0.303l-0.02 0.118H0.198L0.1 0.416c0.003 0.003 0.007 0.004 0.011 0.004h0.263a0.013 0.013 0 0 0 0.013 -0.011l0.037 -0.228z"/>
|
|
4
|
-
<defs>
|
|
5
|
-
<path id="bitbucket-color-16__paint0_linear_707_135" x1="11.544" x2="6.918" y1="4.676" y2="11.282" gradientUnits="userSpaceOnUse" d="">
|
|
6
|
-
<stop offset=".18" stop-color="#0052CC"/>
|
|
7
|
-
<stop offset="1" stop-color="#2684FF"/>
|
|
8
|
-
</path>
|
|
9
|
-
</defs>
|
|
10
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg width="24px" height="24px" viewBox="0 0 24 24" role="img" xmlns="http://www.w3.org/2000/svg"><title>CircleCI icon</title><path d="M8.963 12c0-1.584 1.284-2.855 2.855-2.855 1.572 0 2.856 1.284 2.856 2.855 0 1.572-1.284 2.856-2.856 2.856-1.57 0-2.855-1.284-2.855-2.856zm2.855-12C6.215 0 1.522 3.84.19 9.025c-.01.036-.01.07-.01.12 0 .313.252.576.575.576H5.59c.23 0 .433-.13.517-.333.997-2.16 3.18-3.672 5.712-3.672 3.466 0 6.286 2.82 6.286 6.287 0 3.47-2.82 6.29-6.29 6.29-2.53 0-4.714-1.5-5.71-3.673-.097-.19-.29-.336-.517-.336H.755c-.312 0-.575.253-.575.576 0 .037.014.072.014.12C1.514 20.16 6.214 24 11.818 24c6.624 0 12-5.375 12-12 0-6.623-5.376-12-12-12z"/></svg>
|
|
Binary file
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<title>GitHub icon</title>
|
|
3
|
-
<path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/>
|
|
4
|
-
</svg>
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 60 55" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g fill="none" fill-rule="evenodd">
|
|
3
|
-
<path d="m59.682 31.392l-3.35-10.26-6.627-20.352c-.34-1.04-1.821-1.04-2.173 0l-6.627 20.339h-22.02l-6.627-20.339c-.34-1.04-1.821-1.04-2.173 0l-6.616 20.339-3.35 10.272c-.303.932.025 1.96.826 2.541l28.951 20.968 28.951-20.968c.801-.581 1.141-1.609.837-2.541" fill="#fc6d26"/>
|
|
4
|
-
<path d="m29.901 54.887l11.01-33.767h-22.02z" fill="#e24329"/>
|
|
5
|
-
<path d="m29.893 54.887l-11.01-33.767h-15.417z" fill="#fc6d26"/>
|
|
6
|
-
<path d="m3.462 21.13l-3.35 10.26c-.303.931.025 1.96.826 2.541l28.951 20.968-26.426-33.769" fill="#fca326"/>
|
|
7
|
-
<path d="m3.466 21.13h15.429l-6.64-20.339c-.34-1.041-1.821-1.041-2.173 0l-6.616 20.339" fill="#e24329"/>
|
|
8
|
-
<path d="m29.901 54.887l11.01-33.767h15.429z" fill="#fc6d26"/>
|
|
9
|
-
<path d="m56.33 21.13l3.35 10.26c.303.931-.024 1.96-.826 2.541l-28.951 20.956 26.426-33.757" fill="#fca326"/>
|
|
10
|
-
<path d="m56.34 21.13h-15.428l6.627-20.339c.34-1.041 1.821-1.041 2.173 0l6.628 20.339" fill="#e24329"/>
|
|
11
|
-
</g>
|
|
12
|
-
</svg>
|