@govtechsg/oobee 0.10.76 → 0.10.78-alpha1
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/.github/workflows/publish.yml +8 -1
- package/INTEGRATION.md +50 -3
- package/dist/cli.js +252 -0
- package/dist/combine.js +221 -0
- package/dist/constants/cliFunctions.js +306 -0
- package/dist/constants/common.js +1669 -0
- package/dist/constants/constants.js +913 -0
- package/dist/constants/errorMeta.json +319 -0
- package/dist/constants/itemTypeDescription.js +7 -0
- package/dist/constants/oobeeAi.js +121 -0
- package/dist/constants/questions.js +151 -0
- package/dist/constants/sampleData.js +176 -0
- package/dist/crawlers/commonCrawlerFunc.js +428 -0
- package/dist/crawlers/crawlDomain.js +613 -0
- package/dist/crawlers/crawlIntelligentSitemap.js +135 -0
- package/dist/crawlers/crawlLocalFile.js +151 -0
- package/dist/crawlers/crawlSitemap.js +303 -0
- package/dist/crawlers/custom/escapeCssSelector.js +10 -0
- package/dist/crawlers/custom/evaluateAltText.js +11 -0
- package/dist/crawlers/custom/extractAndGradeText.js +44 -0
- package/dist/crawlers/custom/extractText.js +27 -0
- package/dist/crawlers/custom/findElementByCssSelector.js +36 -0
- package/dist/crawlers/custom/flagUnlabelledClickableElements.js +963 -0
- package/dist/crawlers/custom/framesCheck.js +37 -0
- package/dist/crawlers/custom/getAxeConfiguration.js +111 -0
- package/dist/crawlers/custom/gradeReadability.js +23 -0
- package/dist/crawlers/custom/utils.js +1024 -0
- package/dist/crawlers/custom/xPathToCss.js +147 -0
- package/dist/crawlers/guards/urlGuard.js +71 -0
- package/dist/crawlers/pdfScanFunc.js +276 -0
- package/dist/crawlers/runCustom.js +89 -0
- package/dist/exclusions.txt +7 -0
- package/dist/generateHtmlReport.js +144 -0
- package/dist/index.js +62 -0
- package/dist/logs.js +84 -0
- package/dist/mergeAxeResults.js +1588 -0
- package/dist/npmIndex.js +640 -0
- package/dist/proxyService.js +360 -0
- package/dist/runGenerateJustHtmlReport.js +16 -0
- package/dist/screenshotFunc/htmlScreenshotFunc.js +355 -0
- package/dist/screenshotFunc/pdfScreenshotFunc.js +645 -0
- package/dist/services/s3Uploader.js +127 -0
- package/dist/static/ejs/partials/components/allIssues/AllIssues.ejs +9 -0
- package/dist/static/ejs/partials/components/allIssues/CategoryBadges.ejs +82 -0
- package/dist/static/ejs/partials/components/allIssues/FilterBar.ejs +33 -0
- package/dist/static/ejs/partials/components/allIssues/IssuesTable.ejs +41 -0
- package/dist/static/ejs/partials/components/header/SiteInfo.ejs +119 -0
- package/dist/static/ejs/partials/components/header/aboutScanModal/AboutScanModal.ejs +15 -0
- package/dist/static/ejs/partials/components/header/aboutScanModal/ScanConfiguration.ejs +44 -0
- package/dist/static/ejs/partials/components/header/aboutScanModal/ScanDetails.ejs +142 -0
- package/dist/static/ejs/partials/components/prioritiseIssues/IssueDetailCard.ejs +36 -0
- package/dist/static/ejs/partials/components/prioritiseIssues/PrioritiseIssues.ejs +47 -0
- package/dist/static/ejs/partials/components/ruleModal/ruleOffcanvas.ejs +196 -0
- package/dist/static/ejs/partials/components/scannedPagesSegmentedTabs.ejs +48 -0
- package/dist/static/ejs/partials/components/screenshotLightbox.ejs +13 -0
- package/dist/static/ejs/partials/components/shared/InfoAlert.ejs +3 -0
- package/dist/static/ejs/partials/components/summaryScanAbout.ejs +141 -0
- package/dist/static/ejs/partials/components/summaryScanResults.ejs +16 -0
- package/dist/static/ejs/partials/components/summaryTable.ejs +20 -0
- package/dist/static/ejs/partials/components/summaryWcagCompliance.ejs +94 -0
- package/dist/static/ejs/partials/components/topTen.ejs +6 -0
- package/dist/static/ejs/partials/components/wcagCompliance/FailedCriteria.ejs +47 -0
- package/dist/static/ejs/partials/components/wcagCompliance/WcagCompliance.ejs +16 -0
- package/dist/static/ejs/partials/components/wcagCompliance/WcagGaugeBar.ejs +16 -0
- package/dist/static/ejs/partials/components/wcagCoverageDetails.ejs +18 -0
- package/dist/static/ejs/partials/footer.ejs +24 -0
- package/dist/static/ejs/partials/header.ejs +14 -0
- package/dist/static/ejs/partials/main.ejs +29 -0
- package/dist/static/ejs/partials/scripts/allIssues/AllIssues.ejs +376 -0
- package/dist/static/ejs/partials/scripts/bootstrap.ejs +8 -0
- package/dist/static/ejs/partials/scripts/categorySummary.ejs +141 -0
- package/dist/static/ejs/partials/scripts/decodeUnzipParse.ejs +3 -0
- package/dist/static/ejs/partials/scripts/header/SiteInfo.ejs +44 -0
- package/dist/static/ejs/partials/scripts/header/aboutScanModal/AboutScanModal.ejs +51 -0
- package/dist/static/ejs/partials/scripts/header/aboutScanModal/ScanConfiguration.ejs +127 -0
- package/dist/static/ejs/partials/scripts/header/aboutScanModal/ScanDetails.ejs +60 -0
- package/dist/static/ejs/partials/scripts/highlightjs.ejs +335 -0
- package/dist/static/ejs/partials/scripts/popper.ejs +7 -0
- package/dist/static/ejs/partials/scripts/prioritiseIssues/IssueDetailCard.ejs +137 -0
- package/dist/static/ejs/partials/scripts/prioritiseIssues/PrioritiseIssues.ejs +214 -0
- package/dist/static/ejs/partials/scripts/prioritiseIssues/wcagSvgMap.ejs +861 -0
- package/dist/static/ejs/partials/scripts/ruleModal/constants.ejs +957 -0
- package/dist/static/ejs/partials/scripts/ruleModal/itemCardRenderer.ejs +353 -0
- package/dist/static/ejs/partials/scripts/ruleModal/pageAccordionBuilder.ejs +468 -0
- package/dist/static/ejs/partials/scripts/ruleModal/ruleOffcanvas.ejs +306 -0
- package/dist/static/ejs/partials/scripts/ruleModal/utilities.ejs +483 -0
- package/dist/static/ejs/partials/scripts/scannedPagesSegmentedTabs.ejs +35 -0
- package/dist/static/ejs/partials/scripts/screenshotLightbox.ejs +75 -0
- package/dist/static/ejs/partials/scripts/summaryScanResults.ejs +14 -0
- package/dist/static/ejs/partials/scripts/summaryTable.ejs +78 -0
- package/dist/static/ejs/partials/scripts/topTen.ejs +61 -0
- package/dist/static/ejs/partials/scripts/utils.ejs +453 -0
- package/dist/static/ejs/partials/scripts/wcagCompliance/FailedCriteria.ejs +103 -0
- package/dist/static/ejs/partials/scripts/wcagCompliance/WcagGaugeBar.ejs +47 -0
- package/dist/static/ejs/partials/scripts/wcagCompliance.ejs +15 -0
- package/dist/static/ejs/partials/scripts/wcagCoverageDetails.ejs +75 -0
- package/dist/static/ejs/partials/styles/allIssues/AllIssues.ejs +384 -0
- package/dist/static/ejs/partials/styles/bootstrap.ejs +12391 -0
- package/dist/static/ejs/partials/styles/header/SiteInfo.ejs +121 -0
- package/dist/static/ejs/partials/styles/header/aboutScanModal/AboutScanModal.ejs +82 -0
- package/dist/static/ejs/partials/styles/header/aboutScanModal/ScanConfiguration.ejs +50 -0
- package/dist/static/ejs/partials/styles/header/aboutScanModal/ScanDetails.ejs +149 -0
- package/dist/static/ejs/partials/styles/header.ejs +7 -0
- package/dist/static/ejs/partials/styles/highlightjs.ejs +54 -0
- package/dist/static/ejs/partials/styles/prioritiseIssues/IssueDetailCard.ejs +141 -0
- package/dist/static/ejs/partials/styles/prioritiseIssues/PrioritiseIssues.ejs +204 -0
- package/dist/static/ejs/partials/styles/ruleModal/ruleOffcanvas.ejs +456 -0
- package/dist/static/ejs/partials/styles/scannedPagesSegmentedTabs.ejs +46 -0
- package/dist/static/ejs/partials/styles/shared/InfoAlert.ejs +12 -0
- package/dist/static/ejs/partials/styles/styles.ejs +1607 -0
- package/dist/static/ejs/partials/styles/summaryBootstrap.ejs +12458 -0
- package/dist/static/ejs/partials/styles/topTenCard.ejs +44 -0
- package/dist/static/ejs/partials/styles/wcagCompliance/FailedCriteria.ejs +59 -0
- package/dist/static/ejs/partials/styles/wcagCompliance/WcagGaugeBar.ejs +62 -0
- package/dist/static/ejs/partials/styles/wcagCompliance.ejs +36 -0
- package/dist/static/ejs/partials/styles/wcagCoverageDetails.ejs +33 -0
- package/dist/static/ejs/partials/summaryHeader.ejs +70 -0
- package/dist/static/ejs/partials/summaryMain.ejs +49 -0
- package/dist/static/ejs/report.ejs +226 -0
- package/dist/static/ejs/summary.ejs +47 -0
- package/dist/types/types.js +1 -0
- package/dist/utils.js +1070 -0
- package/examples/oobee-cypress-integration-js/cypress/support/e2e.js +36 -6
- package/examples/oobee-cypress-integration-js/cypress.config.js +45 -1
- package/examples/oobee-cypress-integration-ts/cypress.config.ts +47 -1
- package/examples/oobee-cypress-integration-ts/src/cypress/support/e2e.ts +36 -6
- package/examples/oobee-playwright-integration-js/oobee-playwright-demo.js +2 -1
- package/examples/oobee-playwright-integration-ts/src/oobee-playwright-demo.ts +2 -1
- package/examples/oobee-scan-html-demo.js +51 -0
- package/examples/oobee-scan-page-demo.js +40 -0
- package/package.json +9 -3
- package/src/constants/common.ts +2 -2
- package/src/constants/constants.ts +3 -1
- package/src/crawlers/crawlDomain.ts +1 -0
- package/src/crawlers/runCustom.ts +0 -1
- package/src/mergeAxeResults.ts +43 -22
- package/src/npmIndex.ts +500 -131
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
<style>
|
|
2
|
+
.page-links {
|
|
3
|
+
width: 65%;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
#top-ten-card .page-links {
|
|
7
|
+
display: flex;
|
|
8
|
+
align-items: center;
|
|
9
|
+
gap: .25rem;
|
|
10
|
+
flex: 1 1 auto;
|
|
11
|
+
min-width: 0;
|
|
12
|
+
overflow: hidden;
|
|
13
|
+
text-overflow: ellipsis;
|
|
14
|
+
white-space: nowrap;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
#top-ten-card .page-links .link-text {
|
|
18
|
+
color: var(--a11y-majorelle-blue);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
#top-ten-card .issues-badge {
|
|
22
|
+
flex: 0 0 auto;
|
|
23
|
+
white-space: nowrap;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
@media (max-width: 480px) {
|
|
27
|
+
#top-ten-card .page-links {
|
|
28
|
+
line-clamp: 2;
|
|
29
|
+
-webkit-line-clamp: 2;
|
|
30
|
+
|
|
31
|
+
display: -webkit-box;
|
|
32
|
+
-webkit-box-orient: vertical;
|
|
33
|
+
overflow: hidden;
|
|
34
|
+
text-overflow: ellipsis;
|
|
35
|
+
white-space: normal;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
@supports (line-clamp: 2) {
|
|
39
|
+
#top-ten-card .page-links {
|
|
40
|
+
display: block;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
</style>
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
<style>
|
|
2
|
+
#failedCriteriaCard {
|
|
3
|
+
display: flex;
|
|
4
|
+
flex-direction: column;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
#failedCriteriaCard li:not(:last-of-type) {
|
|
8
|
+
border-bottom: 1px solid var(--chinese-silver);
|
|
9
|
+
padding-bottom: 0.5rem;
|
|
10
|
+
margin-bottom: 0.5rem;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.wcag-row-column {
|
|
14
|
+
display: flex;
|
|
15
|
+
flex-direction: column;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.view-all-link {
|
|
19
|
+
align-self: center;
|
|
20
|
+
padding: 0.5rem 0;
|
|
21
|
+
border: none;
|
|
22
|
+
background: transparent;
|
|
23
|
+
color: var(--a11y-majorelle-blue);
|
|
24
|
+
font-size: 1rem;
|
|
25
|
+
cursor: pointer;
|
|
26
|
+
display: flex;
|
|
27
|
+
align-items: center;
|
|
28
|
+
gap: 0.5rem;
|
|
29
|
+
transition: color 0.2s ease;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.modal-title {
|
|
33
|
+
border-bottom: none;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.view-all-link:hover {
|
|
37
|
+
text-decoration: underline;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.view-all-link svg {
|
|
41
|
+
flex-shrink: 0;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
#failedCriteriaModal li:not(:last-of-type) {
|
|
45
|
+
border-bottom: 1px solid var(--chinese-silver);
|
|
46
|
+
padding-bottom: 0.5rem;
|
|
47
|
+
margin-bottom: 0.5rem;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
@media (max-width: 768px) {
|
|
51
|
+
.failed-criteria-list {
|
|
52
|
+
max-height: 300px;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.failed-criteria-item {
|
|
56
|
+
padding: 0.5rem 0.75rem;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
</style>
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
<style>
|
|
2
|
+
.wcag-gauge {
|
|
3
|
+
--size: 140;
|
|
4
|
+
--thickness: 0.35rem;
|
|
5
|
+
width: calc(var(--size) * 1px);
|
|
6
|
+
position: relative;
|
|
7
|
+
padding-bottom: calc(var(--size) * 0.18px);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.gauge-track,
|
|
11
|
+
.gauge-fill {
|
|
12
|
+
fill: none;
|
|
13
|
+
stroke-width: var(--thickness);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.gauge-track {
|
|
17
|
+
stroke: var(--bright-gray);
|
|
18
|
+
}
|
|
19
|
+
.gauge-fill {
|
|
20
|
+
stroke: var(--deep-green-cyan-turquoise);
|
|
21
|
+
transition: stroke-dashoffset 300ms ease;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.gauge-fill.bad {
|
|
25
|
+
stroke: var(--light-carmine-pink);
|
|
26
|
+
}
|
|
27
|
+
.gauge-fill.good {
|
|
28
|
+
stroke: var(--deep-green-cyan-turquoise);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.gauge-center {
|
|
32
|
+
position: absolute;
|
|
33
|
+
left: 50%;
|
|
34
|
+
top: 50%;
|
|
35
|
+
transform: translate(-50%, -50%);
|
|
36
|
+
text-align: center;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.gauge-number {
|
|
40
|
+
font-weight: 700;
|
|
41
|
+
font-size: 16px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.gauge-caption {
|
|
45
|
+
position: absolute;
|
|
46
|
+
left: 50%;
|
|
47
|
+
top: 80%;
|
|
48
|
+
transform: translate(-50%, -50%);
|
|
49
|
+
width: 100%;
|
|
50
|
+
text-align: center;
|
|
51
|
+
margin: 0;
|
|
52
|
+
font-size: 14px;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.gauge-value-number {
|
|
56
|
+
font-size: 24px;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.gauge-value-number.perfect-score {
|
|
60
|
+
color: var(--deep-green-cyan-turquoise);
|
|
61
|
+
}
|
|
62
|
+
</style>
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<style>
|
|
2
|
+
.wcag-title {
|
|
3
|
+
margin-bottom: 0.5rem;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.wcag-card {
|
|
7
|
+
padding: 1.5rem;
|
|
8
|
+
flex: 1;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.wcag-row {
|
|
12
|
+
display: flex;
|
|
13
|
+
justify-content: space-between;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.wcag-sub {
|
|
17
|
+
font-size: 1.125rem !important;
|
|
18
|
+
margin-bottom: 0rem;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.wcag-link {
|
|
22
|
+
font-size: 1rem;
|
|
23
|
+
border: 0;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.wcag-status {
|
|
27
|
+
margin-bottom: 0.3rem;
|
|
28
|
+
color: var(--light-carmine-pink);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
@media (max-width: 992px){
|
|
32
|
+
.wcag-row {
|
|
33
|
+
flex-wrap: wrap;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
</style>
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<style>
|
|
2
|
+
#wcagCoverage .wcag-box {
|
|
3
|
+
border: 1px solid var(--divider, --bright-gray);
|
|
4
|
+
border-radius: 12px;
|
|
5
|
+
padding: 14px;
|
|
6
|
+
background: var(--true-white, #fff);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
#wcagCoverage .wcag-grid {
|
|
10
|
+
display: grid;
|
|
11
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
12
|
+
gap: 10px 18px;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
#wcagCoverage .wcag-grid a {
|
|
16
|
+
color: var(--a11y-majorelle-blue, #5735DF);
|
|
17
|
+
text-decoration: none;
|
|
18
|
+
}
|
|
19
|
+
#wcagCoverage .wcag-grid a:hover,
|
|
20
|
+
#wcagCoverage .wcag-grid a:focus-visible {
|
|
21
|
+
text-decoration: underline;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
@media (max-width: 992px) {
|
|
25
|
+
#wcagCoverage .wcag-grid {
|
|
26
|
+
grid-template-columns: repeat(2, minmax(0,1fr));
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
@media (max-width: 576px) {
|
|
31
|
+
#wcagCoverage .wcag-grid { grid-template-columns: 1fr; }
|
|
32
|
+
}
|
|
33
|
+
</style>
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
<header aria-label="Report header" id="header">
|
|
2
|
+
<div class="z-2 flex-row justify-content-between px-3 py-4">
|
|
3
|
+
<div class="d-flex align-items-center">
|
|
4
|
+
<svg
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
width="48"
|
|
7
|
+
height="48"
|
|
8
|
+
viewBox="0 0 48 48"
|
|
9
|
+
fill="none"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
>
|
|
12
|
+
<circle cx="24" cy="24" r="24" fill="#9021a6" />
|
|
13
|
+
<path
|
|
14
|
+
d="M16.2528 24.9725V23.832C16.2528 21.5526 14.4057 19.7056 12.1264 19.7056C9.84708 19.7056 8 21.5526 8 23.832V27.0721C8 29.2906 9.74991 31.0986 11.9448 31.1939V29.2806C11.9448 26.905 13.8772 24.9725 16.2528 24.9725Z"
|
|
15
|
+
fill="white"
|
|
16
|
+
/>
|
|
17
|
+
<path
|
|
18
|
+
d="M12.308 29.28V31.1979H16.2528V25.3352C14.0779 25.3352 12.308 27.1051 12.308 29.28Z"
|
|
19
|
+
fill="white"
|
|
20
|
+
/>
|
|
21
|
+
<path d="M22.8201 25.3289H18.6937V31.1997H22.8201V25.3289Z" fill="white" />
|
|
22
|
+
<path
|
|
23
|
+
d="M22.8201 17.6016C20.5408 17.6016 18.6937 19.4486 18.6937 21.728V24.9672H22.8201V17.6016Z"
|
|
24
|
+
fill="white"
|
|
25
|
+
/>
|
|
26
|
+
<path
|
|
27
|
+
d="M29.3876 17.6016C27.1082 17.6016 25.2612 19.4486 25.2612 21.728V24.9672H29.3876V17.6016Z"
|
|
28
|
+
fill="white"
|
|
29
|
+
/>
|
|
30
|
+
<path d="M29.3876 25.3289H25.2612V31.1997H29.3876V25.3289Z" fill="white" />
|
|
31
|
+
<path
|
|
32
|
+
d="M36.3182 31.199C38.5976 31.199 40.4446 29.3519 40.4446 27.0726V25.3281H36.3182V31.199Z"
|
|
33
|
+
fill="white"
|
|
34
|
+
/>
|
|
35
|
+
<path
|
|
36
|
+
d="M40.4446 19.7056C38.1653 19.7056 36.3182 21.5526 36.3182 23.832V24.9644H40.4446V19.7056Z"
|
|
37
|
+
fill="white"
|
|
38
|
+
/>
|
|
39
|
+
<path
|
|
40
|
+
d="M35.955 23.832C35.955 21.5526 34.1079 19.7056 31.8286 19.7056V22.844C31.8286 23.6195 32.0429 24.3441 32.4143 24.9644H35.955V23.832Z"
|
|
41
|
+
fill="white"
|
|
42
|
+
/>
|
|
43
|
+
<path
|
|
44
|
+
d="M35.955 26.9709V25.3281H32.6595C33.4123 26.3261 34.6083 26.9709 35.955 26.9709Z"
|
|
45
|
+
fill="white"
|
|
46
|
+
/>
|
|
47
|
+
</svg>
|
|
48
|
+
|
|
49
|
+
<h1 class="d-inline mb-0 ms-3">Oobee Scan Summary</h1>
|
|
50
|
+
</div>
|
|
51
|
+
<%#
|
|
52
|
+
<div class="toggleWrapper">
|
|
53
|
+
<input tabindex="0" type="checkbox" class="dm" id="dm" />
|
|
54
|
+
<label for="dm" class="toggle">
|
|
55
|
+
<span class="toggle__handler">
|
|
56
|
+
<span class="crater crater--1"></span>
|
|
57
|
+
<span class="crater crater--2"></span>
|
|
58
|
+
<span class="crater crater--3"></span>
|
|
59
|
+
</span>
|
|
60
|
+
<span class="star star--1"></span>
|
|
61
|
+
<span class="star star--2"></span>
|
|
62
|
+
<span class="star star--3"></span>
|
|
63
|
+
<span class="star star--4"></span>
|
|
64
|
+
<span class="star star--5"></span>
|
|
65
|
+
<span class="star star--6"></span>
|
|
66
|
+
</label>
|
|
67
|
+
</div>
|
|
68
|
+
%>
|
|
69
|
+
</div>
|
|
70
|
+
</header>
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
<div class="flex-grow-1 align-items-stretch">
|
|
2
|
+
<main aria-label="Report main content" class="d-flex flex-column flex-grow-1">
|
|
3
|
+
<div class="row m-0 py-4 px-3 d-flex" style="flex-wrap: nowrap">
|
|
4
|
+
<div id="aboutScanDiv" class="pe-md-2 d-flex" style="flex: 1; flex-basis: 300px">
|
|
5
|
+
<div id="scanabout-compliance-card" class="card h-100" style="width: -webkit-fill-available">
|
|
6
|
+
<div class="card-body"><%- include("components/summaryScanAbout") %></div>
|
|
7
|
+
</div>
|
|
8
|
+
</div>
|
|
9
|
+
<div id="scanResultsDiv" class="ps-md-2" style="flex: 2; margin-left: 10px">
|
|
10
|
+
<div id="summary-scan-results-card" class="card h-100">
|
|
11
|
+
<div class="card-body">
|
|
12
|
+
<h2>Scan results</h2>
|
|
13
|
+
<div class="d-flex justify-content-between align-items-center">
|
|
14
|
+
<span class="fw-bold"> WCAG (A & AA) Passes </span>
|
|
15
|
+
<span aria-label="Pass percentage" class="ms-2">
|
|
16
|
+
<%= wcagPassPercentage.totalWcagChecksAA - wcagPassPercentage.totalWcagViolationsAA %> / <%= wcagPassPercentage.totalWcagChecksAA %> of automated checks
|
|
17
|
+
</span>
|
|
18
|
+
</div>
|
|
19
|
+
<div class="wcag-compliance-passes-bar mb-5 d-flex">
|
|
20
|
+
<svg width="500" role="none" height="6" fill="none" xmlns="http://www.w3.org/2000/svg"
|
|
21
|
+
style="display: flex; width: 100%; position: absolute">
|
|
22
|
+
<rect width="100%" height="10" rx="3" fill="#E7ECEE" style="justify-content: left"></rect>
|
|
23
|
+
<rect width="<%= wcagPassPercentage.passPercentageAA %>%" height="6" rx="3" fill="#9021a6" style="">
|
|
24
|
+
</rect>
|
|
25
|
+
</svg>
|
|
26
|
+
</div>
|
|
27
|
+
<ul class="unbulleted-list">
|
|
28
|
+
<% Object.keys(items).forEach((category)=> { %> <%- include("components/summaryScanResults", { category:
|
|
29
|
+
category }) %>
|
|
30
|
+
<% }) %>
|
|
31
|
+
</ul>
|
|
32
|
+
</div>
|
|
33
|
+
</div>
|
|
34
|
+
</div>
|
|
35
|
+
</div>
|
|
36
|
+
<div class="mx-3">
|
|
37
|
+
<h2 class="mb-2">Summary of issues:</h2>
|
|
38
|
+
<p>
|
|
39
|
+
Only
|
|
40
|
+
<a href="https://go.gov.sg/oobee-details" target="_blank">20 WCAG 2.2 Success Criteria (A & AA)</a>
|
|
41
|
+
can be automatically checked so
|
|
42
|
+
<a aria-label="Manual testing guide" href="https://go.gov.sg/a11y-manual-testing" target="_blank">manual
|
|
43
|
+
testing</a>
|
|
44
|
+
is still required. For more details, please refer to the HTML report.
|
|
45
|
+
</p>
|
|
46
|
+
</div>
|
|
47
|
+
<%- include("components/summaryTable") %>
|
|
48
|
+
</main>
|
|
49
|
+
</div>
|
|
@@ -0,0 +1,226 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en" id="accessibility-site-report">
|
|
3
|
+
<head lang="en">
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
|
+
<title>Accessibility Site Report</title>
|
|
7
|
+
<!-- [TESTCODE] Font Awesome CDN -->
|
|
8
|
+
<link
|
|
9
|
+
rel="stylesheet"
|
|
10
|
+
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
|
|
11
|
+
integrity="sha512-..."
|
|
12
|
+
crossorigin="anonymous"
|
|
13
|
+
/>
|
|
14
|
+
<link
|
|
15
|
+
rel="icon"
|
|
16
|
+
type="image/svg+xml"
|
|
17
|
+
href="data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.5 6C11.7707 6 10 11.1369 10 19.23V28.77C10 36.8631 11.7707 42 23.5 42C35.2293 42 37 36.8631 37 28.77V19.23C37 11.1369 35.2293 6 23.5 6ZM25.4903 14.5985V35.0562H21.5097V12.9438H27.8925L25.4903 14.5985Z' fill='%239021A6'/%3E%3C/svg%3E
|
|
18
|
+
"
|
|
19
|
+
/>
|
|
20
|
+
<%- include('partials/scripts/decodeUnzipParse') %>
|
|
21
|
+
<%- include('partials/styles/bootstrap') %>
|
|
22
|
+
<%- include('partials/styles/highlightjs') %>
|
|
23
|
+
<%- include('partials/styles/styles') %>
|
|
24
|
+
<%- include('partials/styles/header/SiteInfo') %>
|
|
25
|
+
<%- include('partials/styles/wcagCompliance/WcagGaugeBar') %>
|
|
26
|
+
<%- include('partials/styles/header') %>
|
|
27
|
+
<%- include('partials/styles/wcagCompliance') %>
|
|
28
|
+
<%- include('partials/styles/wcagCompliance/FailedCriteria') %>
|
|
29
|
+
<%- include('partials/styles/shared/InfoAlert') %>
|
|
30
|
+
<%- include('partials/styles/prioritiseIssues/PrioritiseIssues') %>
|
|
31
|
+
<%- include('partials/styles/prioritiseIssues/IssueDetailCard') %>
|
|
32
|
+
<%- include('partials/styles/ruleModal/ruleOffcanvas') %>
|
|
33
|
+
<%- include('partials/styles/allIssues/AllIssues') %>
|
|
34
|
+
<%- include('partials/styles/topTenCard') %>
|
|
35
|
+
<%- include('partials/styles/header/aboutScanModal/AboutScanModal') %>
|
|
36
|
+
<%- include('partials/styles/header/aboutScanModal/ScanDetails') %>
|
|
37
|
+
<%- include('partials/styles/header/aboutScanModal/ScanConfiguration') %>
|
|
38
|
+
<%- include('partials/styles/wcagCoverageDetails') %>
|
|
39
|
+
<%- include('partials/styles/scannedPagesSegmentedTabs') %>
|
|
40
|
+
</head>
|
|
41
|
+
|
|
42
|
+
<body class="d-flex flex-column align-items-center">
|
|
43
|
+
<%- include('partials/header') %>
|
|
44
|
+
<%- include('partials/main') %>
|
|
45
|
+
<%- include('partials/scripts/popper') %>
|
|
46
|
+
<%- include('partials/scripts/bootstrap') %>
|
|
47
|
+
<%- include('partials/scripts/highlightjs') %>
|
|
48
|
+
<%- include('partials/scripts/utils') %>
|
|
49
|
+
<%- include('partials/scripts/header/SiteInfo') %>
|
|
50
|
+
<%- include('partials/scripts/ruleModal/ruleOffcanvas') %>
|
|
51
|
+
<%- include('partials/scripts/allIssues/AllIssues') %>
|
|
52
|
+
<%- include('partials/scripts/screenshotLightbox')%>
|
|
53
|
+
<%- include('partials/scripts/scannedPagesSegmentedTabs')%>
|
|
54
|
+
<%- include('partials/scripts/header/aboutScanModal/AboutScanModal')%>
|
|
55
|
+
<%- include('partials/scripts/wcagCoverageDetails')%>
|
|
56
|
+
<%- include('partials/scripts/header/aboutScanModal/ScanDetails')%>
|
|
57
|
+
<%- include('partials/scripts/header/aboutScanModal/ScanConfiguration')%>
|
|
58
|
+
<%- include('partials/scripts/topTen')%>
|
|
59
|
+
<%- include('partials/scripts/wcagCompliance/WcagGaugeBar') %>
|
|
60
|
+
<%- include('partials/scripts/wcagCompliance') %>
|
|
61
|
+
<%- include('partials/scripts/wcagCompliance/FailedCriteria') %>
|
|
62
|
+
<%- include('partials/scripts/prioritiseIssues/wcagSvgMap') %>
|
|
63
|
+
<%- include('partials/scripts/prioritiseIssues/IssueDetailCard') %>
|
|
64
|
+
<%- include('partials/scripts/prioritiseIssues/PrioritiseIssues') %>
|
|
65
|
+
<script>
|
|
66
|
+
function initTooltips() {
|
|
67
|
+
const tooltipTriggerList = [].slice.call(
|
|
68
|
+
document.querySelectorAll('[data-bs-toggle="tooltip"]'),
|
|
69
|
+
);
|
|
70
|
+
tooltipTriggerList.map(tooltipTriggerEl => {
|
|
71
|
+
const tooltip = new bootstrap.Tooltip(tooltipTriggerEl);
|
|
72
|
+
tooltipTriggerEl.addEventListener('mouseleave', () => tooltip.hide());
|
|
73
|
+
return tooltip;
|
|
74
|
+
});
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
const scanDataCategorySelector = () => {
|
|
78
|
+
const formattedCategoryTitles = {
|
|
79
|
+
mustFix: 'Must Fix',
|
|
80
|
+
goodToFix: 'Good to Fix',
|
|
81
|
+
needsReview: 'Manual Review Required',
|
|
82
|
+
passed: 'Passed',
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
const scategoryList = document.getElementById('categorySelector');
|
|
86
|
+
|
|
87
|
+
Object.keys(scanItems).forEach(category => {
|
|
88
|
+
if (["mustFix", "goodToFix", "needsReview"].includes(category)) { // skip other keys like pagesScanned, etc
|
|
89
|
+
const categoryData = scanItems[category];
|
|
90
|
+
const listItem = document.createElement('div');
|
|
91
|
+
listItem.className = 'col-md-4 px-2';
|
|
92
|
+
|
|
93
|
+
const button = document.createElement('button');
|
|
94
|
+
button.setAttribute('aria-labelledby', `${category}Title ${category}ItemsInformation`);
|
|
95
|
+
button.setAttribute('aria-describedby', `${category}AriaDescription`);
|
|
96
|
+
button.id = `${category}Selector`;
|
|
97
|
+
button.className = `h-100 category-selector ${category}`;
|
|
98
|
+
button.addEventListener('click', event => changeSelectedCategory(event, category));
|
|
99
|
+
button.addEventListener('focus', () =>
|
|
100
|
+
document
|
|
101
|
+
.getElementById(`${category}Description`)
|
|
102
|
+
.dispatchEvent(new MouseEvent('mouseover')),
|
|
103
|
+
);
|
|
104
|
+
button.addEventListener('blur', () =>
|
|
105
|
+
document
|
|
106
|
+
.getElementById(`${category}Description`)
|
|
107
|
+
.dispatchEvent(new MouseEvent('mouseout')),
|
|
108
|
+
);
|
|
109
|
+
button.addEventListener('mousedown', event => event.preventDefault());
|
|
110
|
+
|
|
111
|
+
const divFlex = document.createElement('div');
|
|
112
|
+
divFlex.className = 'd-flex align-items-center mb-3';
|
|
113
|
+
|
|
114
|
+
const spanTitle = document.createElement('span');
|
|
115
|
+
spanTitle.id = `${category}Title`;
|
|
116
|
+
spanTitle.className = 'd-flex align-items-center category-name fw-bold d-inline mb-0';
|
|
117
|
+
spanTitle.textContent = formattedCategoryTitles[category];
|
|
118
|
+
|
|
119
|
+
const svgIcon = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
|
|
120
|
+
svgIcon.setAttribute('tabindex', '-1');
|
|
121
|
+
svgIcon.id = `${category}Description`;
|
|
122
|
+
svgIcon.setAttribute('class', 'ms-2');
|
|
123
|
+
svgIcon.setAttribute('data-bs-toggle', 'tooltip');
|
|
124
|
+
svgIcon.setAttribute('data-bs-placement', 'top');
|
|
125
|
+
svgIcon.setAttribute('title', categoryData.description);
|
|
126
|
+
svgIcon.setAttribute('width', '14');
|
|
127
|
+
svgIcon.setAttribute('height', '14');
|
|
128
|
+
svgIcon.setAttribute('viewBox', '0 0 14 14');
|
|
129
|
+
svgIcon.setAttribute('fill', 'none');
|
|
130
|
+
|
|
131
|
+
const clipPath = document.createElementNS('http://www.w3.org/2000/svg', 'clipPath');
|
|
132
|
+
clipPath.className = 'clip0_1630_1670';
|
|
133
|
+
|
|
134
|
+
const rect = document.createElementNS('http://www.w3.org/2000/svg', 'rect');
|
|
135
|
+
rect.setAttribute('width', '14');
|
|
136
|
+
rect.setAttribute('height', '14');
|
|
137
|
+
rect.setAttribute('fill', 'white');
|
|
138
|
+
|
|
139
|
+
const path = document.createElementNS('http://www.w3.org/2000/svg', 'path');
|
|
140
|
+
path.setAttribute(
|
|
141
|
+
'd',
|
|
142
|
+
'M11.9528 2.05329C9.22079 -0.68205 4.78867 -0.68477 2.0533 2.04718C-0.682042 4.7792 -0.684795 9.21135 2.04722 11.9467C4.77917 14.6821 9.21135 14.6848 11.9467 11.9528C14.682 9.22085 14.6848 4.78863 11.9528 2.05329ZM7.00216 11.2406C6.6319 11.2406 6.33174 10.9405 6.33174 10.5702C6.33174 10.1999 6.63187 9.89976 7.00216 9.89976C7.37243 9.89976 7.67259 10.1999 7.67259 10.5702C7.67255 10.9405 7.37243 11.2406 7.00216 11.2406ZM8.09214 7.20401C7.70918 7.42788 7.67645 7.7033 7.6748 8.49691C7.6747 8.54938 7.67453 8.60233 7.67423 8.65558C7.67185 9.03068 7.36712 9.33312 6.99253 9.33312C6.99105 9.33312 6.98957 9.33312 6.98813 9.33312C6.61159 9.33074 6.3083 9.02356 6.31066 8.64699C6.31099 8.59568 6.31109 8.54468 6.31119 8.49415C6.31287 7.67852 6.31492 6.66352 7.40395 6.02694C8.27777 5.51613 8.3879 5.18059 8.28543 4.74029C8.16503 4.2231 7.69273 4.08907 7.32418 4.1312C7.20042 4.14541 6.58322 4.24724 6.58322 4.85783C6.58322 5.23431 6.27795 5.5396 5.90141 5.5396C5.52487 5.5396 5.21964 5.23431 5.21964 4.85783C5.21964 3.76416 6.02107 2.90831 7.16859 2.77656C8.35043 2.64099 9.35515 3.32135 9.61338 4.4312C9.99939 6.08915 8.61379 6.89911 8.09214 7.20401Z',
|
|
143
|
+
);
|
|
144
|
+
path.setAttribute('fill', '#c9c8c6');
|
|
145
|
+
|
|
146
|
+
clipPath.appendChild(rect);
|
|
147
|
+
svgIcon.appendChild(clipPath);
|
|
148
|
+
svgIcon.appendChild(path);
|
|
149
|
+
|
|
150
|
+
divFlex.appendChild(spanTitle);
|
|
151
|
+
divFlex.appendChild(svgIcon);
|
|
152
|
+
|
|
153
|
+
const spanInfo = document.createElement('span');
|
|
154
|
+
spanInfo.id = `${category}ItemsInformation`;
|
|
155
|
+
spanInfo.className = 'category-information';
|
|
156
|
+
|
|
157
|
+
if (categoryData.totalItems !== 0) {
|
|
158
|
+
spanInfo.textContent = `${categoryData.rules.length} ${categoryData.rules.length === 1 ? 'issue' : 'issues'} / ${categoryData.totalItems} ${categoryData.totalItems === 1 ? 'occurrence' : 'occurrences'}`;
|
|
159
|
+
} else if (categoryData.totalItems === 0) {
|
|
160
|
+
spanInfo.textContent = `0 issues`;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
button.appendChild(divFlex);
|
|
164
|
+
button.appendChild(spanInfo);
|
|
165
|
+
listItem.appendChild(button);
|
|
166
|
+
scategoryList.appendChild(listItem);
|
|
167
|
+
}
|
|
168
|
+
});
|
|
169
|
+
|
|
170
|
+
const categoryList = document.getElementById('issueTypeListbox');
|
|
171
|
+
|
|
172
|
+
Object.keys(scanItems).forEach(category => {
|
|
173
|
+
if (["mustFix", "goodToFix", "needsReview"].includes(category)) { // skip other keys like pagesScanned, etc
|
|
174
|
+
|
|
175
|
+
const categoryData = scanItems[category];
|
|
176
|
+
const rulesLength = categoryData.rules ? categoryData.rules.length : 0;
|
|
177
|
+
|
|
178
|
+
const listItem = document.createElement('li');
|
|
179
|
+
listItem.tabIndex = -1;
|
|
180
|
+
listItem.id = `${category}DropdownSelector`;
|
|
181
|
+
listItem.className = `${category} category-selector d-flex flex-row align-items-center gap-2 position-relative`;
|
|
182
|
+
listItem.role = 'option';
|
|
183
|
+
|
|
184
|
+
const spanTitle = document.createElement('span');
|
|
185
|
+
spanTitle.id = `${category}Title`;
|
|
186
|
+
spanTitle.className = 'd-flex align-items-center category-name fw-bold d-inline mb-0';
|
|
187
|
+
spanTitle.textContent = formattedCategoryTitles[category];
|
|
188
|
+
|
|
189
|
+
const spanInfo = document.createElement('span');
|
|
190
|
+
spanInfo.id = `${category}ItemsInformation`;
|
|
191
|
+
spanInfo.className = 'category-information';
|
|
192
|
+
|
|
193
|
+
if (categoryData.totalItems !== 0) {
|
|
194
|
+
spanInfo.textContent = `(${categoryData.rules.length} ${categoryData.rules.length === 1 ? 'issue' : 'issues'})`;
|
|
195
|
+
} else if (categoryData.totalItems === 0) {
|
|
196
|
+
spanInfo.textContent = `(0 issues)`;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
listItem.appendChild(spanTitle);
|
|
200
|
+
listItem.appendChild(spanInfo);
|
|
201
|
+
categoryList.appendChild(listItem);
|
|
202
|
+
}
|
|
203
|
+
});
|
|
204
|
+
};
|
|
205
|
+
|
|
206
|
+
document.addEventListener('DOMContentLoaded', () => {
|
|
207
|
+
scanDataPromise.then(() => {
|
|
208
|
+
scanItemsPromise.then(() => {
|
|
209
|
+
initTooltips();
|
|
210
|
+
scanDataCategorySelector();
|
|
211
|
+
}).error(e => {
|
|
212
|
+
console.error("Failed to load scanItems: ", e);
|
|
213
|
+
});
|
|
214
|
+
}).error(e => {
|
|
215
|
+
console.error("Failed to load scanData: ", e);
|
|
216
|
+
});
|
|
217
|
+
});
|
|
218
|
+
|
|
219
|
+
</script>
|
|
220
|
+
<!-- Checks if js runs -->
|
|
221
|
+
<script>
|
|
222
|
+
document.getElementById('jsOn').classList.remove('d-none');
|
|
223
|
+
document.getElementById('jsOffMessage').classList.add('d-none');
|
|
224
|
+
</script>
|
|
225
|
+
</body>
|
|
226
|
+
</html>
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en" id="accessibility-site-report">
|
|
3
|
+
<head lang="en">
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
|
+
<title>Oobee Scan Summary</title>
|
|
7
|
+
<link
|
|
8
|
+
rel="icon"
|
|
9
|
+
type="image/svg+xml"
|
|
10
|
+
href="data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.5 6C11.7707 6 10 11.1369 10 19.23V28.77C10 36.8631 11.7707 42 23.5 42C35.2293 42 37 36.8631 37 28.77V19.23C37 11.1369 35.2293 6 23.5 6ZM25.4903 14.5985V35.0562H21.5097V12.9438H27.8925L25.4903 14.5985Z' fill='%239021A6'/%3E%3C/svg%3E
|
|
11
|
+
"
|
|
12
|
+
/>
|
|
13
|
+
<%- include('partials/styles/summaryBootstrap') %> <%- include('partials/styles/highlightjs') %>
|
|
14
|
+
<%- include('partials/styles/styles') %>
|
|
15
|
+
</head>
|
|
16
|
+
<body class="d-flex flex-column">
|
|
17
|
+
<%- include('partials/summaryHeader') %> <%- include('partials/summaryMain') %> <%-
|
|
18
|
+
include('partials/scripts/popper') %> <%- include('partials/scripts/bootstrap') %> <%-
|
|
19
|
+
include('partials/scripts/highlightjs') %> <%- include('partials/scripts/utils') %> <%-
|
|
20
|
+
include('partials/scripts/ruleModal/ruleOffcanvas') %> <%- include('partials/scripts/summaryScanResults')
|
|
21
|
+
%>
|
|
22
|
+
<script>
|
|
23
|
+
const scanItems = <%- JSON.stringify(
|
|
24
|
+
{
|
|
25
|
+
...items,
|
|
26
|
+
passed: {
|
|
27
|
+
rules: items.passed.rules.map(r => delete r.pagesAffected),
|
|
28
|
+
...items.passed
|
|
29
|
+
},
|
|
30
|
+
}
|
|
31
|
+
) %>
|
|
32
|
+
</script>
|
|
33
|
+
<%- include('partials/scripts/summaryTable') %>
|
|
34
|
+
<script>
|
|
35
|
+
document.addEventListener('DOMContentLoaded', function () {
|
|
36
|
+
var tooltipTriggerList = [].slice.call(
|
|
37
|
+
document.querySelectorAll('[data-bs-toggle="tooltip"]'),
|
|
38
|
+
);
|
|
39
|
+
var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) {
|
|
40
|
+
const tooltip = new bootstrap.Tooltip(tooltipTriggerEl);
|
|
41
|
+
tooltipTriggerEl.addEventListener('mouseleave', () => tooltip.hide());
|
|
42
|
+
return tooltip;
|
|
43
|
+
});
|
|
44
|
+
});
|
|
45
|
+
</script>
|
|
46
|
+
</body>
|
|
47
|
+
</html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|