From 5724312e64cbdec7a50124e52983167dce3698f0 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 4 Dec 2024 16:39:59 +0000 Subject: [PATCH 01/82] feat: added post coverage comment github PR feat: added post faliure comment github PR --- .github/workflows/pull-request.yml | 51 ++++++++++++++++++++++++++++-- 1 file changed, 49 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 1fdf43c..4cfe020 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -50,8 +50,8 @@ jobs: run: npm run prettier - name: Run lit-analyzer run: npm run lint:lit-analyzer - - name: Run tests - run: npm run test -- --debug + - name: Run tests and generate coverage + run: npm run test -- --coverage --debug - name: Test tsdoc run: npm run docs - name: Check for modified files @@ -67,6 +67,53 @@ jobs: git add -A git commit -m '[automated commit] lint format and import sort' git push + - name: Post coverage comment + if: always() + uses: actions/github-script@v6 + with: + script: | + const fs = require('fs'); + const coverage = fs.readFileSync("coverage/lcov-report/index.html", "utf8"); + const coverageData = coverage + .split('') + .pop() + ?.split("
")[0] + .replaceAll(/]*>([^<]*)<\/a>/g, "$1"); + const commentBody = ` + ## Test Coverage Report +
+ + Code Coverage Report + + + ${coverageData} +
+
+ `; + github.rest.issues.createComment({ + issue_number: context.issue.number, + owner: context.repo.owner, + repo: context.repo.repo, + body: commentBody + }); + - name: Post failure comment + if: failure() + uses: actions/github-script@v6 + with: + script: | + const failedSteps = context.payload.workflow_run.jobs.filter(job => job.conclusion === 'failure'); + const failedStepsDetails = failedSteps.map(step => `- ${step.name}: ${step.conclusion}`).join('\n'); + const commentBody = ` + ## Code Quality Checks Failed + The following checks failed: + ${failedStepsDetails} + `; + github.rest.issues.createComment({ + issue_number: context.issue.number, + owner: context.repo.owner, + repo: context.repo.repo, + body: commentBody + }); generate-localizations: name: Generate localizations. needs: [code-quality] From 41baea693e2857f30b0dfda5fcca25115020ff9e Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 4 Dec 2024 16:47:51 +0000 Subject: [PATCH 02/82] BREAKING CHANGE --- src/components/fab/fab.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/fab/fab.ts b/src/components/fab/fab.ts index c9dc83a..4fb8c04 100644 --- a/src/components/fab/fab.ts +++ b/src/components/fab/fab.ts @@ -56,7 +56,8 @@ export class ZetaFab extends Flavored(BaseButton) { @property({ type: String, reflect: true }) size: "small" | "large" = "small"; private getLabel() { - return this.label ? html`
${this.label}
` : nothing; + // return this.label ? html`
${this.label}
` : nothing; + return nothing; } protected render() { return html` From 0b4649eb5a3920aa7e2b2e6ecf191ec1ee1d4c30 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 4 Dec 2024 17:06:50 +0000 Subject: [PATCH 03/82] steps > jobs --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 4cfe020..c843465 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -101,7 +101,7 @@ jobs: uses: actions/github-script@v6 with: script: | - const failedSteps = context.payload.workflow_run.jobs.filter(job => job.conclusion === 'failure'); + const failedSteps = steps.git-check.filter(step => step.conclusion === 'failure'); const failedStepsDetails = failedSteps.map(step => `- ${step.name}: ${step.conclusion}`).join('\n'); const commentBody = ` ## Code Quality Checks Failed From baa261ec22a85d62e9fcb3f3ae0565a83f3ec27d Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 4 Dec 2024 17:17:42 +0000 Subject: [PATCH 04/82] added ids --- .github/workflows/pull-request.yml | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index c843465..28aeef8 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -23,6 +23,7 @@ jobs: node-version: 18.x.x cache: "npm" - name: Install dependencies + id: install-dependencies run: npm ci - name: Store Playwright's Version id: store-playwright-version @@ -43,21 +44,28 @@ jobs: if: steps.cache-playwright-browsers.outputs.cache-hit != 'true' run: npx playwright install --with-deps - name: Run custom elements manifest analyzer + id: run-custom-elements-manifest-analyzer run: npm run analyze - name: Run eslint + id: run-eslint run: npm run lint - name: Run prettier + id: run-prettier run: npm run prettier - name: Run lit-analyzer + id: run-lit-analyzer run: npm run lint:lit-analyzer - name: Run tests and generate coverage run: npm run test -- --coverage --debug + id: run-tests-and-generate-coverage - name: Test tsdoc run: npm run docs + id: test-tsdoc - name: Check for modified files id: git-check run: echo "modified=$(if [ -n "$(git status --porcelain)" ]; then echo "true"; else echo "false"; fi)" >> $GITHUB_ENV - name: Update changes in GitHub repository + id: update-changes-in-github-repository env: MODIFIED: ${{ steps.git-check.outputs.modified }} if: env.MODIFIED == 'true' @@ -101,7 +109,17 @@ jobs: uses: actions/github-script@v6 with: script: | - const failedSteps = steps.git-check.filter(step => step.conclusion === 'failure'); + const failedSteps = [ + { name: 'Install dependencies', conclusion: '${{ steps.install-dependencies.outcome }}' }, + { name: 'Run custom elements manifest analyzer', conclusion: '${{ steps.run-custom-elements-manifest-analyzer.outcome }}' }, + { name: 'Run eslint', conclusion: '${{ steps.run-eslint.outcome }}' }, + { name: 'Run prettier', conclusion: '${{ steps.run-prettier.outcome }}' }, + { name: 'Run lit-analyzer', conclusion: '${{ steps.run-lit-analyzer.outcome }}' }, + { name: 'Run tests and generate coverage', conclusion: '${{ steps.run-tests-and-generate-coverage.outcome }}' }, + { name: 'Test tsdoc', conclusion: '${{ steps.test-tsdoc.outcome }}' }, + { name: 'Check for modified files', conclusion: '${{ steps.git-check.outcome }}' }, + { name: 'Update changes in GitHub repository', conclusion: '${{ steps.update-changes-in-github-repository.outcome }}' } + ].filter(step => step.conclusion === 'failure'); const failedStepsDetails = failedSteps.map(step => `- ${step.name}: ${step.conclusion}`).join('\n'); const commentBody = ` ## Code Quality Checks Failed From fa04bbe595b43edaeb18a60ae554aa04c3aa852d Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 4 Dec 2024 17:25:02 +0000 Subject: [PATCH 05/82] replace old comment --- .github/workflows/pull-request.yml | 42 +++++++++++++++++++++++++----- 1 file changed, 36 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 28aeef8..e0c4a0a 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -98,12 +98,27 @@ jobs: `; - github.rest.issues.createComment({ + const { data: comments } = await github.rest.issues.listComments({ issue_number: context.issue.number, owner: context.repo.owner, - repo: context.repo.repo, - body: commentBody + repo: context.repo.repo }); + const comment = comments.find(comment => comment.body.includes('## Test Coverage Report')); + if (comment) { + await github.rest.issues.updateComment({ + comment_id: comment.id, + owner: context.repo.owner, + repo: context.repo.repo, + body: commentBody + }); + } else { + await github.rest.issues.createComment({ + issue_number: context.issue.number, + owner: context.repo.owner, + repo: context.repo.repo, + body: commentBody + }); + } - name: Post failure comment if: failure() uses: actions/github-script@v6 @@ -126,12 +141,27 @@ jobs: The following checks failed: ${failedStepsDetails} `; - github.rest.issues.createComment({ + const { data: comments } = await github.rest.issues.listComments({ issue_number: context.issue.number, owner: context.repo.owner, - repo: context.repo.repo, - body: commentBody + repo: context.repo.repo }); + const comment = comments.find(comment => comment.body.includes('## Code Quality Checks Failed')); + if (comment) { + await github.rest.issues.updateComment({ + comment_id: comment.id, + owner: context.repo.owner, + repo: context.repo.repo, + body: commentBody + }); + } else { + await github.rest.issues.createComment({ + issue_number: context.issue.number, + owner: context.repo.owner, + repo: context.repo.repo, + body: commentBody + }); + } generate-localizations: name: Generate localizations. needs: [code-quality] From 3919f2d15f548688a29b88e1532b7e2f107ea5ec Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 4 Dec 2024 17:30:06 +0000 Subject: [PATCH 06/82] reverted fab --- src/components/fab/fab.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/fab/fab.ts b/src/components/fab/fab.ts index 4fb8c04..c9dc83a 100644 --- a/src/components/fab/fab.ts +++ b/src/components/fab/fab.ts @@ -56,8 +56,7 @@ export class ZetaFab extends Flavored(BaseButton) { @property({ type: String, reflect: true }) size: "small" | "large" = "small"; private getLabel() { - // return this.label ? html`
${this.label}
` : nothing; - return nothing; + return this.label ? html`
${this.label}
` : nothing; } protected render() { return html` From 020eeaf8e52d5e7ac63f04f94361c9ef5cfd56ed Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 4 Dec 2024 17:35:30 +0000 Subject: [PATCH 07/82] commented out avatar to test action --- src/test/avatar/avatar.test.ts | 132 ++++++++++++++++----------------- 1 file changed, 66 insertions(+), 66 deletions(-) diff --git a/src/test/avatar/avatar.test.ts b/src/test/avatar/avatar.test.ts index 1ea00f8..28f74e1 100644 --- a/src/test/avatar/avatar.test.ts +++ b/src/test/avatar/avatar.test.ts @@ -1,87 +1,87 @@ -import { fixture, html, expect } from "@open-wc/testing"; -import type { ZetaAvatar } from "../../components/avatar/avatar.js"; -import "../../components/avatar/avatar.js"; +// import { fixture, html, expect } from "@open-wc/testing"; +// import type { ZetaAvatar } from "../../components/avatar/avatar.js"; +// import "../../components/avatar/avatar.js"; -import type { ZetaIcon } from "../../components/icon/icon.js"; -import type { ZetaIconIndicator } from "../../components/badges/indicators/indicators.js"; -import { getSlotText } from "../utils.js"; +// import type { ZetaIcon } from "../../components/icon/icon.js"; +// import type { ZetaIconIndicator } from "../../components/badges/indicators/indicators.js"; +// import { getSlotText } from "../utils.js"; -describe("zeta-avatar", () => { - // let subject: ZetaAvatar; +// describe("zeta-avatar", () => { +// // let subject: ZetaAvatar; - // const createComponent = (template = ``) => { - // // prettier-ignore - // return fixture(html`${unsafeStatic(template)}`); - // }; +// // const createComponent = (template = ``) => { +// // // prettier-ignore +// // return fixture(html`${unsafeStatic(template)}`); +// // }; - // beforeEach(async () => { - // subject = await createComponent(); - // }); +// // beforeEach(async () => { +// // subject = await createComponent(); +// // }); - // describe("Accessibility Tests", () => {}); +// // describe("Accessibility Tests", () => {}); - describe("Content Tests", () => { - it("renders the avatar with a custom size", async () => { - const avatar: ZetaAvatar = await fixture(html``); - await expect(avatar.size).to.equal("xl"); - }); +// describe("Content Tests", () => { +// it("renders the avatar with a custom size", async () => { +// const avatar: ZetaAvatar = await fixture(html``); +// await expect(avatar.size).to.equal("xl"); +// }); - it("renders the avatar with the ring", async () => { - const avatar: ZetaAvatar = await fixture(html``); - return expect(avatar.showRing).to.be.true; - }); +// it("renders the avatar with the ring", async () => { +// const avatar: ZetaAvatar = await fixture(html``); +// return expect(avatar.showRing).to.be.true; +// }); - it("renders the avatar without the ring", async () => { - const avatar: ZetaAvatar = await fixture(html``); - return expect(avatar.showRing).to.be.false; - }); +// it("renders the avatar without the ring", async () => { +// const avatar: ZetaAvatar = await fixture(html``); +// return expect(avatar.showRing).to.be.false; +// }); - it("renders the avatar with the close icon", async () => { - const avatar: ZetaAvatar = await fixture(html``); - return expect(avatar.showClose).to.be.true; - }); +// it("renders the avatar with the close icon", async () => { +// const avatar: ZetaAvatar = await fixture(html``); +// return expect(avatar.showClose).to.be.true; +// }); - it("renders the avatar without the close icon", async () => { - const avatar: ZetaAvatar = await fixture(html``); - return expect(avatar.showClose).to.be.false; - }); +// it("renders the avatar without the close icon", async () => { +// const avatar: ZetaAvatar = await fixture(html``); +// return expect(avatar.showClose).to.be.false; +// }); - it("renders the avatar with an image", async () => { - const url = "https://example.com/image.jpg"; - const avatar: ZetaAvatar = await fixture(html``); - const slot: HTMLSlotElement | null | undefined = avatar.shadowRoot?.querySelector("#CONTENT_SLOT"); - const img = slot?.assignedElements()[0] as HTMLImageElement; +// it("renders the avatar with an image", async () => { +// const url = "https://example.com/image.jpg"; +// const avatar: ZetaAvatar = await fixture(html``); +// const slot: HTMLSlotElement | null | undefined = avatar.shadowRoot?.querySelector("#CONTENT_SLOT"); +// const img = slot?.assignedElements()[0] as HTMLImageElement; - expect(img).to.exist; - return await expect(img?.src).to.equal(url); - }); +// expect(img).to.exist; +// return await expect(img?.src).to.equal(url); +// }); - it("renders the avatar with an icon", async () => { - const iconName = "user"; - const avatar: ZetaAvatar = await fixture(html`${iconName}`); - const slot: HTMLSlotElement | null | undefined = avatar.shadowRoot?.querySelector("#CONTENT_SLOT"); - const icon = slot?.assignedElements()[0] as ZetaIcon; +// it("renders the avatar with an icon", async () => { +// const iconName = "user"; +// const avatar: ZetaAvatar = await fixture(html`${iconName}`); +// const slot: HTMLSlotElement | null | undefined = avatar.shadowRoot?.querySelector("#CONTENT_SLOT"); +// const icon = slot?.assignedElements()[0] as ZetaIcon; - expect(icon).to.exist; - await expect(getSlotText(icon)).to.equal(iconName); - }); +// expect(icon).to.exist; +// await expect(getSlotText(icon)).to.equal(iconName); +// }); - it("renders the badge on the avatar", async () => { - const avatar: ZetaAvatar = await fixture(html``); - const slot: HTMLSlotElement | null | undefined = avatar.shadowRoot?.querySelector("#STATUS_SLOT"); +// it("renders the badge on the avatar", async () => { +// const avatar: ZetaAvatar = await fixture(html``); +// const slot: HTMLSlotElement | null | undefined = avatar.shadowRoot?.querySelector("#STATUS_SLOT"); - const badge = slot?.assignedElements()[0] as ZetaIconIndicator; - expect(badge).to.exist; - }); - }); +// const badge = slot?.assignedElements()[0] as ZetaIconIndicator; +// expect(badge).to.exist; +// }); +// }); - // describe("Dimensions Tests", () => {}); +// // describe("Dimensions Tests", () => {}); - // describe("Styling Tests", () => {}); +// // describe("Styling Tests", () => {}); - // describe("Interaction Tests", () => {}); +// // describe("Interaction Tests", () => {}); - // describe("Golden Tests", () => {}); +// // describe("Golden Tests", () => {}); - // describe("Performance Tests", () => {}); -}); +// // describe("Performance Tests", () => {}); +// }); From ea678e4bc252102c112ac1c0234b6ba2805a1000 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 4 Dec 2024 17:43:33 +0000 Subject: [PATCH 08/82] changed git ignore so that coverage can be seen by github action --- .gitignore | 2 +- coverage/lcov-report/base.css | 224 + coverage/lcov-report/block-navigation.js | 87 + coverage/lcov-report/favicon.png | Bin 0 -> 445 bytes coverage/lcov-report/index.html | 1181 +++ coverage/lcov-report/prettify.css | 1 + coverage/lcov-report/prettify.js | 2 + coverage/lcov-report/sort-arrow-sprite.png | Bin 0 -> 138 bytes coverage/lcov-report/sorter.js | 196 + coverage/lcov.info | 8235 ++++++++++++++++++++ 10 files changed, 9927 insertions(+), 1 deletion(-) create mode 100644 coverage/lcov-report/base.css create mode 100644 coverage/lcov-report/block-navigation.js create mode 100644 coverage/lcov-report/favicon.png create mode 100644 coverage/lcov-report/index.html create mode 100644 coverage/lcov-report/prettify.css create mode 100644 coverage/lcov-report/prettify.js create mode 100644 coverage/lcov-report/sort-arrow-sprite.png create mode 100644 coverage/lcov-report/sorter.js create mode 100644 coverage/lcov.info diff --git a/.gitignore b/.gitignore index 9fc7c28..f49d841 100644 --- a/.gitignore +++ b/.gitignore @@ -66,7 +66,7 @@ pids lib-cov # Coverage directory used by tools like istanbul -coverage +coverage/lcov-report/src *.lcov # nyc test coverage diff --git a/coverage/lcov-report/base.css b/coverage/lcov-report/base.css new file mode 100644 index 0000000..f418035 --- /dev/null +++ b/coverage/lcov-report/base.css @@ -0,0 +1,224 @@ +body, html { + margin:0; padding: 0; + height: 100%; +} +body { + font-family: Helvetica Neue, Helvetica, Arial; + font-size: 14px; + color:#333; +} +.small { font-size: 12px; } +*, *:after, *:before { + -webkit-box-sizing:border-box; + -moz-box-sizing:border-box; + box-sizing:border-box; + } +h1 { font-size: 20px; margin: 0;} +h2 { font-size: 14px; } +pre { + font: 12px/1.4 Consolas, "Liberation Mono", Menlo, Courier, monospace; + margin: 0; + padding: 0; + -moz-tab-size: 2; + -o-tab-size: 2; + tab-size: 2; +} +a { color:#0074D9; text-decoration:none; } +a:hover { text-decoration:underline; } +.strong { font-weight: bold; } +.space-top1 { padding: 10px 0 0 0; } +.pad2y { padding: 20px 0; } +.pad1y { padding: 10px 0; } +.pad2x { padding: 0 20px; } +.pad2 { padding: 20px; } +.pad1 { padding: 10px; } +.space-left2 { padding-left:55px; } +.space-right2 { padding-right:20px; } +.center { text-align:center; } +.clearfix { display:block; } +.clearfix:after { + content:''; + display:block; + height:0; + clear:both; + visibility:hidden; + } +.fl { float: left; } +@media only screen and (max-width:640px) { + .col3 { width:100%; max-width:100%; } + .hide-mobile { display:none!important; } +} + +.quiet { + color: #7f7f7f; + color: rgba(0,0,0,0.5); +} +.quiet a { opacity: 0.7; } + +.fraction { + font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; + font-size: 10px; + color: #555; + background: #E8E8E8; + padding: 4px 5px; + border-radius: 3px; + vertical-align: middle; +} + +div.path a:link, div.path a:visited { color: #333; } +table.coverage { + border-collapse: collapse; + margin: 10px 0 0 0; + padding: 0; +} + +table.coverage td { + margin: 0; + padding: 0; + vertical-align: top; +} +table.coverage td.line-count { + text-align: right; + padding: 0 5px 0 20px; +} +table.coverage td.line-coverage { + text-align: right; + padding-right: 10px; + min-width:20px; +} + +table.coverage td span.cline-any { + display: inline-block; + padding: 0 5px; + width: 100%; +} +.missing-if-branch { + display: inline-block; + margin-right: 5px; + border-radius: 3px; + position: relative; + padding: 0 4px; + background: #333; + color: yellow; +} + +.skip-if-branch { + display: none; + margin-right: 10px; + position: relative; + padding: 0 4px; + background: #ccc; + color: white; +} +.missing-if-branch .typ, .skip-if-branch .typ { + color: inherit !important; +} +.coverage-summary { + border-collapse: collapse; + width: 100%; +} +.coverage-summary tr { border-bottom: 1px solid #bbb; } +.keyline-all { border: 1px solid #ddd; } +.coverage-summary td, .coverage-summary th { padding: 10px; } +.coverage-summary tbody { border: 1px solid #bbb; } +.coverage-summary td { border-right: 1px solid #bbb; } +.coverage-summary td:last-child { border-right: none; } +.coverage-summary th { + text-align: left; + font-weight: normal; + white-space: nowrap; +} +.coverage-summary th.file { border-right: none !important; } +.coverage-summary th.pct { } +.coverage-summary th.pic, +.coverage-summary th.abs, +.coverage-summary td.pct, +.coverage-summary td.abs { text-align: right; } +.coverage-summary td.file { white-space: nowrap; } +.coverage-summary td.pic { min-width: 120px !important; } +.coverage-summary tfoot td { } + +.coverage-summary .sorter { + height: 10px; + width: 7px; + display: inline-block; + margin-left: 0.5em; + background: url(sort-arrow-sprite.png) no-repeat scroll 0 0 transparent; +} +.coverage-summary .sorted .sorter { + background-position: 0 -20px; +} +.coverage-summary .sorted-desc .sorter { + background-position: 0 -10px; +} +.status-line { height: 10px; } +/* yellow */ +.cbranch-no { background: yellow !important; color: #111; } +/* dark red */ +.red.solid, .status-line.low, .low .cover-fill { background:#C21F39 } +.low .chart { border:1px solid #C21F39 } +.highlighted, +.highlighted .cstat-no, .highlighted .fstat-no, .highlighted .cbranch-no{ + background: #C21F39 !important; +} +/* medium red */ +.cstat-no, .fstat-no, .cbranch-no, .cbranch-no { background:#F6C6CE } +/* light red */ +.low, .cline-no { background:#FCE1E5 } +/* light green */ +.high, .cline-yes { background:rgb(230,245,208) } +/* medium green */ +.cstat-yes { background:rgb(161,215,106) } +/* dark green */ +.status-line.high, .high .cover-fill { background:rgb(77,146,33) } +.high .chart { border:1px solid rgb(77,146,33) } +/* dark yellow (gold) */ +.status-line.medium, .medium .cover-fill { background: #f9cd0b; } +.medium .chart { border:1px solid #f9cd0b; } +/* light yellow */ +.medium { background: #fff4c2; } + +.cstat-skip { background: #ddd; color: #111; } +.fstat-skip { background: #ddd; color: #111 !important; } +.cbranch-skip { background: #ddd !important; color: #111; } + +span.cline-neutral { background: #eaeaea; } + +.coverage-summary td.empty { + opacity: .5; + padding-top: 4px; + padding-bottom: 4px; + line-height: 1; + color: #888; +} + +.cover-fill, .cover-empty { + display:inline-block; + height: 12px; +} +.chart { + line-height: 0; +} +.cover-empty { + background: white; +} +.cover-full { + border-right: none !important; +} +pre.prettyprint { + border: none !important; + padding: 0 !important; + margin: 0 !important; +} +.com { color: #999 !important; } +.ignore-none { color: #999; font-weight: normal; } + +.wrapper { + min-height: 100%; + height: auto !important; + height: 100%; + margin: 0 auto -48px; +} +.footer, .push { + height: 48px; +} diff --git a/coverage/lcov-report/block-navigation.js b/coverage/lcov-report/block-navigation.js new file mode 100644 index 0000000..cc12130 --- /dev/null +++ b/coverage/lcov-report/block-navigation.js @@ -0,0 +1,87 @@ +/* eslint-disable */ +var jumpToCode = (function init() { + // Classes of code we would like to highlight in the file view + var missingCoverageClasses = ['.cbranch-no', '.cstat-no', '.fstat-no']; + + // Elements to highlight in the file listing view + var fileListingElements = ['td.pct.low']; + + // We don't want to select elements that are direct descendants of another match + var notSelector = ':not(' + missingCoverageClasses.join('):not(') + ') > '; // becomes `:not(a):not(b) > ` + + // Selecter that finds elements on the page to which we can jump + var selector = + fileListingElements.join(', ') + + ', ' + + notSelector + + missingCoverageClasses.join(', ' + notSelector); // becomes `:not(a):not(b) > a, :not(a):not(b) > b` + + // The NodeList of matching elements + var missingCoverageElements = document.querySelectorAll(selector); + + var currentIndex; + + function toggleClass(index) { + missingCoverageElements + .item(currentIndex) + .classList.remove('highlighted'); + missingCoverageElements.item(index).classList.add('highlighted'); + } + + function makeCurrent(index) { + toggleClass(index); + currentIndex = index; + missingCoverageElements.item(index).scrollIntoView({ + behavior: 'smooth', + block: 'center', + inline: 'center' + }); + } + + function goToPrevious() { + var nextIndex = 0; + if (typeof currentIndex !== 'number' || currentIndex === 0) { + nextIndex = missingCoverageElements.length - 1; + } else if (missingCoverageElements.length > 1) { + nextIndex = currentIndex - 1; + } + + makeCurrent(nextIndex); + } + + function goToNext() { + var nextIndex = 0; + + if ( + typeof currentIndex === 'number' && + currentIndex < missingCoverageElements.length - 1 + ) { + nextIndex = currentIndex + 1; + } + + makeCurrent(nextIndex); + } + + return function jump(event) { + if ( + document.getElementById('fileSearch') === document.activeElement && + document.activeElement != null + ) { + // if we're currently focused on the search input, we don't want to navigate + return; + } + + switch (event.which) { + case 78: // n + case 74: // j + goToNext(); + break; + case 66: // b + case 75: // k + case 80: // p + goToPrevious(); + break; + } + }; +})(); +window.addEventListener('keydown', jumpToCode); diff --git a/coverage/lcov-report/favicon.png b/coverage/lcov-report/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..c1525b811a167671e9de1fa78aab9f5c0b61cef7 GIT binary patch literal 445 zcmV;u0Yd(XP))rP{nL}Ln%S7`m{0DjX9TLF* zFCb$4Oi7vyLOydb!7n&^ItCzb-%BoB`=x@N2jll2Nj`kauio%aw_@fe&*}LqlFT43 z8doAAe))z_%=P%v^@JHp3Hjhj^6*Kr_h|g_Gr?ZAa&y>wxHE99Gk>A)2MplWz2xdG zy8VD2J|Uf#EAw*bo5O*PO_}X2Tob{%bUoO2G~T`@%S6qPyc}VkhV}UifBuRk>%5v( z)x7B{I~z*k<7dv#5tC+m{km(D087J4O%+<<;K|qwefb6@GSX45wCK}Sn*> + + + + Code coverage report for All files + + + + + + + + + +
+
+

All files

+
+ +
+ 91.22% + Statements + 5565/6100 +
+ + +
+ 84.46% + Branches + 587/695 +
+ + +
+ 76.31% + Functions + 261/342 +
+ + +
+ 91.22% + Lines + 5565/6100 +
+ + +
+

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

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
src +
+
98.5%263/26789.47%17/1980%8/1098.5%263/267
src/components +
+
81.48%44/5487.5%7/850%3/681.48%44/54
src/components/accordion +
+
57.89%33/570%0/10%0/357.89%33/57
src/components/action-menu +
+
96.03%97/10183.33%10/1285.71%6/796.03%97/101
src/components/avatar +
+
98.48%65/66100%2/2100%2/298.48%65/66
src/components/avatar-rail +
+
81.08%30/37100%0/00%0/281.08%30/37
src/components/badges/indicators +
+
94.73%72/7672.72%8/1180%4/594.73%72/76
src/components/badges/label +
+
76.19%32/420%0/10%0/276.19%32/42
src/components/badges/priority-pill +
+
84.09%37/440%0/10%0/184.09%37/44
src/components/badges/status-label +
+
65.57%40/610%0/10%0/265.57%40/61
src/components/badges/tag +
+
97.77%44/4550%2/4100%2/297.77%44/45
src/components/badges/workcloud-indicator +
+
56.25%27/48100%3/350%2/456.25%27/48
src/components/bottom-sheets +
+
100%65/65100%13/13100%3/3100%65/65
src/components/breadcrumbs +
+
90.12%73/8170%7/1075%3/490.12%73/81
src/components/breadcrumbs/breadcrumb-item +
+
100%33/3350%1/2100%1/1100%33/33
src/components/button +
+
95.31%122/12873.33%11/1575%6/895.31%122/128
src/components/button-group +
+
87.87%29/330%0/10%0/287.87%29/33
src/components/button-group/button-group-item +
+
45.45%35/770%0/10%0/445.45%35/77
src/components/button/icon-button +
+
100%28/2850%1/2100%1/1100%28/28
src/components/card +
+
93.54%29/310%0/10%0/193.54%29/31
src/components/card/card-body +
+
91.3%21/23100%0/00%0/191.3%21/23
src/components/card/card-footer +
+
91.3%21/23100%0/00%0/191.3%21/23
src/components/card/card-header +
+
100%42/42100%1/1100%1/1100%42/42
src/components/checkbox +
+
100%33/33100%2/2100%2/2100%33/33
src/components/chips/assist-chip +
+
94.59%35/3750%2/4100%2/294.59%35/37
src/components/chips/base-chips +
+
81.81%9/11100%2/250%1/281.81%9/11
src/components/chips/filter-chip +
+
86.66%39/4566.66%4/666.66%2/386.66%39/45
src/components/chips/input-chip +
+
100%29/2950%1/2100%1/1100%29/29
src/components/chips/status-chip +
+
85.18%23/270%0/10%0/285.18%23/27
src/components/dialog +
+
95.68%133/13936.36%4/1157.14%4/795.68%133/139
src/components/dropdown +
+
79.35%123/15578.26%18/2366.66%6/979.35%123/155
src/components/dropdown/dropdown-menu +
+
90.95%171/18881.81%27/3387.5%7/890.95%171/188
src/components/dropdown/menu-item +
+
86.66%39/4550%1/250%1/286.66%39/45
src/components/fab +
+
100%76/7693.33%14/15100%5/5100%76/76
src/components/file-upload +
+
60%93/15550%2/422.22%2/960%93/155
src/components/global-header +
+
100%52/5240%2/5100%2/2100%52/52
src/components/grid-menu-item +
+
100%41/4150%2/4100%2/2100%41/41
src/components/icon +
+
100%40/4090.9%10/11100%3/3100%40/40
src/components/in-page-banner +
+
95.77%68/7142.85%3/7100%3/395.77%68/71
src/components/list +
+
86.66%26/30100%0/00%0/286.66%26/30
src/components/list/list-item +
+
100%40/40100%1/1100%1/1100%40/40
src/components/navigation-bar +
+
100%30/30100%2/2100%2/2100%30/30
src/components/navigation-drawer +
+
100%62/6266.66%2/3100%2/2100%62/62
src/components/navigation-drawer/navigation-drawer-footer +
+
82.95%73/8850%2/450%2/482.95%73/88
src/components/navigation-drawer/navigation-drawer-header +
+
56.25%27/48100%0/00%0/256.25%27/48
src/components/navigation-drawer/navigation-drawer-item +
+
100%45/4566.66%2/3100%2/2100%45/45
src/components/navigation-drawer/navigation-drawer-sub-item +
+
100%38/3866.66%2/3100%2/2100%38/38
src/components/navigation-profile +
+
100%35/3550%1/2100%1/1100%35/35
src/components/navigation-rail +
+
100%74/7460%3/5100%3/3100%74/74
src/components/pagination +
+
98.54%135/13792.3%24/26100%7/798.54%135/137
src/components/progress-indicators/progress-bar +
+
92.64%63/6842.85%3/7100%3/392.64%63/68
src/components/progress-indicators/progress-circle +
+
99.2%125/12685.71%18/21100%7/799.2%125/126
src/components/radio-button +
+
100%65/65100%10/10100%7/7100%65/65
src/components/search +
+
82.4%89/10886.66%13/1580%8/1082.4%89/108
src/components/segmented-control +
+
93.75%120/12873.91%17/23100%8/893.75%120/128
src/components/slider +
+
82.29%265/32289.18%33/3785.71%18/2182.29%265/322
src/components/slider/range-selector +
+
98.85%172/17496.42%27/2891.66%11/1298.85%172/174
src/components/slider/slider-input-field +
+
98.71%154/15691.66%11/1288.88%8/998.71%154/156
src/components/snackbar +
+
97.77%88/9083.33%10/12100%3/397.77%88/90
src/components/stepper +
+
100%75/7562.5%5/8100%3/3100%75/75
src/components/stepper-input +
+
100%98/9895.23%20/21100%4/4100%98/98
src/components/switch +
+
94.05%95/10190%9/1075%3/494.05%95/101
src/components/system-banner +
+
66.12%41/620%0/10%0/266.12%41/62
src/components/tab-bar +
+
92.85%26/28100%0/00%0/192.85%26/28
src/components/tab-bar/tab-item +
+
83.87%26/310%0/10%0/283.87%26/31
src/components/text-input +
+
100%147/14795.83%46/48100%10/10100%147/147
src/components/tooltip +
+
71.05%27/380%0/10%0/271.05%27/38
src/components/top-appbar +
+
100%49/49100%7/7100%3/3100%49/49
src/components/upload-item +
+
100%67/6788.88%8/9100%4/4100%67/67
src/mixins +
+
95.62%699/731100%110/11079.59%39/4995.62%699/731
src/test +
+
100%148/148100%22/22100%14/14100%148/148
src/test/text-input +
+
100%55/55100%2/2100%1/1100%55/55
+
+
+
+
+ + + + + + + \ No newline at end of file diff --git a/coverage/lcov-report/prettify.css b/coverage/lcov-report/prettify.css new file mode 100644 index 0000000..b317a7c --- /dev/null +++ b/coverage/lcov-report/prettify.css @@ -0,0 +1 @@ +.pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} diff --git a/coverage/lcov-report/prettify.js b/coverage/lcov-report/prettify.js new file mode 100644 index 0000000..b322523 --- /dev/null +++ b/coverage/lcov-report/prettify.js @@ -0,0 +1,2 @@ +/* eslint-disable */ +window.PR_SHOULD_USE_CONTINUATION=true;(function(){var h=["break,continue,do,else,for,if,return,while"];var u=[h,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"];var p=[u,"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"];var l=[p,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"];var x=[p,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"];var R=[x,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"];var r="all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes";var w=[p,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"];var s="caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END";var I=[h,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"];var f=[h,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"];var H=[h,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"];var A=[l,R,w,s+I,f,H];var e=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/;var C="str";var z="kwd";var j="com";var O="typ";var G="lit";var L="pun";var F="pln";var m="tag";var E="dec";var J="src";var P="atn";var n="atv";var N="nocode";var M="(?:^^\\.?|[+-]|\\!|\\!=|\\!==|\\#|\\%|\\%=|&|&&|&&=|&=|\\(|\\*|\\*=|\\+=|\\,|\\-=|\\->|\\/|\\/=|:|::|\\;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|\\?|\\@|\\[|\\^|\\^=|\\^\\^|\\^\\^=|\\{|\\||\\|=|\\|\\||\\|\\|=|\\~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*";function k(Z){var ad=0;var S=false;var ac=false;for(var V=0,U=Z.length;V122)){if(!(al<65||ag>90)){af.push([Math.max(65,ag)|32,Math.min(al,90)|32])}if(!(al<97||ag>122)){af.push([Math.max(97,ag)&~32,Math.min(al,122)&~32])}}}}af.sort(function(av,au){return(av[0]-au[0])||(au[1]-av[1])});var ai=[];var ap=[NaN,NaN];for(var ar=0;arat[0]){if(at[1]+1>at[0]){an.push("-")}an.push(T(at[1]))}}an.push("]");return an.join("")}function W(al){var aj=al.source.match(new RegExp("(?:\\[(?:[^\\x5C\\x5D]|\\\\[\\s\\S])*\\]|\\\\u[A-Fa-f0-9]{4}|\\\\x[A-Fa-f0-9]{2}|\\\\[0-9]+|\\\\[^ux0-9]|\\(\\?[:!=]|[\\(\\)\\^]|[^\\x5B\\x5C\\(\\)\\^]+)","g"));var ah=aj.length;var an=[];for(var ak=0,am=0;ak=2&&ai==="["){aj[ak]=X(ag)}else{if(ai!=="\\"){aj[ak]=ag.replace(/[a-zA-Z]/g,function(ao){var ap=ao.charCodeAt(0);return"["+String.fromCharCode(ap&~32,ap|32)+"]"})}}}}return aj.join("")}var aa=[];for(var V=0,U=Z.length;V=0;){S[ac.charAt(ae)]=Y}}var af=Y[1];var aa=""+af;if(!ag.hasOwnProperty(aa)){ah.push(af);ag[aa]=null}}ah.push(/[\0-\uffff]/);V=k(ah)})();var X=T.length;var W=function(ah){var Z=ah.sourceCode,Y=ah.basePos;var ad=[Y,F];var af=0;var an=Z.match(V)||[];var aj={};for(var ae=0,aq=an.length;ae=5&&"lang-"===ap.substring(0,5);if(am&&!(ai&&typeof ai[1]==="string")){am=false;ap=J}if(!am){aj[ag]=ap}}var ab=af;af+=ag.length;if(!am){ad.push(Y+ab,ap)}else{var al=ai[1];var ak=ag.indexOf(al);var ac=ak+al.length;if(ai[2]){ac=ag.length-ai[2].length;ak=ac-al.length}var ar=ap.substring(5);B(Y+ab,ag.substring(0,ak),W,ad);B(Y+ab+ak,al,q(ar,al),ad);B(Y+ab+ac,ag.substring(ac),W,ad)}}ah.decorations=ad};return W}function i(T){var W=[],S=[];if(T.tripleQuotedStrings){W.push([C,/^(?:\'\'\'(?:[^\'\\]|\\[\s\S]|\'{1,2}(?=[^\']))*(?:\'\'\'|$)|\"\"\"(?:[^\"\\]|\\[\s\S]|\"{1,2}(?=[^\"]))*(?:\"\"\"|$)|\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$))/,null,"'\""])}else{if(T.multiLineStrings){W.push([C,/^(?:\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$)|\`(?:[^\\\`]|\\[\s\S])*(?:\`|$))/,null,"'\"`"])}else{W.push([C,/^(?:\'(?:[^\\\'\r\n]|\\.)*(?:\'|$)|\"(?:[^\\\"\r\n]|\\.)*(?:\"|$))/,null,"\"'"])}}if(T.verbatimStrings){S.push([C,/^@\"(?:[^\"]|\"\")*(?:\"|$)/,null])}var Y=T.hashComments;if(Y){if(T.cStyleComments){if(Y>1){W.push([j,/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,null,"#"])}else{W.push([j,/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\r\n]*)/,null,"#"])}S.push([C,/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,null])}else{W.push([j,/^#[^\r\n]*/,null,"#"])}}if(T.cStyleComments){S.push([j,/^\/\/[^\r\n]*/,null]);S.push([j,/^\/\*[\s\S]*?(?:\*\/|$)/,null])}if(T.regexLiterals){var X=("/(?=[^/*])(?:[^/\\x5B\\x5C]|\\x5C[\\s\\S]|\\x5B(?:[^\\x5C\\x5D]|\\x5C[\\s\\S])*(?:\\x5D|$))+/");S.push(["lang-regex",new RegExp("^"+M+"("+X+")")])}var V=T.types;if(V){S.push([O,V])}var U=(""+T.keywords).replace(/^ | $/g,"");if(U.length){S.push([z,new RegExp("^(?:"+U.replace(/[\s,]+/g,"|")+")\\b"),null])}W.push([F,/^\s+/,null," \r\n\t\xA0"]);S.push([G,/^@[a-z_$][a-z_$@0-9]*/i,null],[O,/^(?:[@_]?[A-Z]+[a-z][A-Za-z_$@0-9]*|\w+_t\b)/,null],[F,/^[a-z_$][a-z_$@0-9]*/i,null],[G,new RegExp("^(?:0x[a-f0-9]+|(?:\\d(?:_\\d+)*\\d*(?:\\.\\d*)?|\\.\\d\\+)(?:e[+\\-]?\\d+)?)[a-z]*","i"),null,"0123456789"],[F,/^\\[\s\S]?/,null],[L,/^.[^\s\w\.$@\'\"\`\/\#\\]*/,null]);return g(W,S)}var K=i({keywords:A,hashComments:true,cStyleComments:true,multiLineStrings:true,regexLiterals:true});function Q(V,ag){var U=/(?:^|\s)nocode(?:\s|$)/;var ab=/\r\n?|\n/;var ac=V.ownerDocument;var S;if(V.currentStyle){S=V.currentStyle.whiteSpace}else{if(window.getComputedStyle){S=ac.defaultView.getComputedStyle(V,null).getPropertyValue("white-space")}}var Z=S&&"pre"===S.substring(0,3);var af=ac.createElement("LI");while(V.firstChild){af.appendChild(V.firstChild)}var W=[af];function ae(al){switch(al.nodeType){case 1:if(U.test(al.className)){break}if("BR"===al.nodeName){ad(al);if(al.parentNode){al.parentNode.removeChild(al)}}else{for(var an=al.firstChild;an;an=an.nextSibling){ae(an)}}break;case 3:case 4:if(Z){var am=al.nodeValue;var aj=am.match(ab);if(aj){var ai=am.substring(0,aj.index);al.nodeValue=ai;var ah=am.substring(aj.index+aj[0].length);if(ah){var ak=al.parentNode;ak.insertBefore(ac.createTextNode(ah),al.nextSibling)}ad(al);if(!ai){al.parentNode.removeChild(al)}}}break}}function ad(ak){while(!ak.nextSibling){ak=ak.parentNode;if(!ak){return}}function ai(al,ar){var aq=ar?al.cloneNode(false):al;var ao=al.parentNode;if(ao){var ap=ai(ao,1);var an=al.nextSibling;ap.appendChild(aq);for(var am=an;am;am=an){an=am.nextSibling;ap.appendChild(am)}}return aq}var ah=ai(ak.nextSibling,0);for(var aj;(aj=ah.parentNode)&&aj.nodeType===1;){ah=aj}W.push(ah)}for(var Y=0;Y=S){ah+=2}if(V>=ap){Z+=2}}}var t={};function c(U,V){for(var S=V.length;--S>=0;){var T=V[S];if(!t.hasOwnProperty(T)){t[T]=U}else{if(window.console){console.warn("cannot override language handler %s",T)}}}}function q(T,S){if(!(T&&t.hasOwnProperty(T))){T=/^\s*]*(?:>|$)/],[j,/^<\!--[\s\S]*?(?:-\->|$)/],["lang-",/^<\?([\s\S]+?)(?:\?>|$)/],["lang-",/^<%([\s\S]+?)(?:%>|$)/],[L,/^(?:<[%?]|[%?]>)/],["lang-",/^]*>([\s\S]+?)<\/xmp\b[^>]*>/i],["lang-js",/^]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\s\S]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]),["default-markup","htm","html","mxml","xhtml","xml","xsl"]);c(g([[F,/^[\s]+/,null," \t\r\n"],[n,/^(?:\"[^\"]*\"?|\'[^\']*\'?)/,null,"\"'"]],[[m,/^^<\/?[a-z](?:[\w.:-]*\w)?|\/?>$/i],[P,/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^>\'\"\s]*(?:[^>\'\"\s\/]|\/(?=\s)))/],[L,/^[=<>\/]+/],["lang-js",/^on\w+\s*=\s*\"([^\"]+)\"/i],["lang-js",/^on\w+\s*=\s*\'([^\']+)\'/i],["lang-js",/^on\w+\s*=\s*([^\"\'>\s]+)/i],["lang-css",/^style\s*=\s*\"([^\"]+)\"/i],["lang-css",/^style\s*=\s*\'([^\']+)\'/i],["lang-css",/^style\s*=\s*([^\"\'>\s]+)/i]]),["in.tag"]);c(g([],[[n,/^[\s\S]+/]]),["uq.val"]);c(i({keywords:l,hashComments:true,cStyleComments:true,types:e}),["c","cc","cpp","cxx","cyc","m"]);c(i({keywords:"null,true,false"}),["json"]);c(i({keywords:R,hashComments:true,cStyleComments:true,verbatimStrings:true,types:e}),["cs"]);c(i({keywords:x,cStyleComments:true}),["java"]);c(i({keywords:H,hashComments:true,multiLineStrings:true}),["bsh","csh","sh"]);c(i({keywords:I,hashComments:true,multiLineStrings:true,tripleQuotedStrings:true}),["cv","py"]);c(i({keywords:s,hashComments:true,multiLineStrings:true,regexLiterals:true}),["perl","pl","pm"]);c(i({keywords:f,hashComments:true,multiLineStrings:true,regexLiterals:true}),["rb"]);c(i({keywords:w,cStyleComments:true,regexLiterals:true}),["js"]);c(i({keywords:r,hashComments:3,cStyleComments:true,multilineStrings:true,tripleQuotedStrings:true,regexLiterals:true}),["coffee"]);c(g([],[[C,/^[\s\S]+/]]),["regex"]);function d(V){var U=V.langExtension;try{var S=a(V.sourceNode);var T=S.sourceCode;V.sourceCode=T;V.spans=S.spans;V.basePos=0;q(U,T)(V);D(V)}catch(W){if("console" in window){console.log(W&&W.stack?W.stack:W)}}}function y(W,V,U){var S=document.createElement("PRE");S.innerHTML=W;if(U){Q(S,U)}var T={langExtension:V,numberLines:U,sourceNode:S};d(T);return S.innerHTML}function b(ad){function Y(af){return document.getElementsByTagName(af)}var ac=[Y("pre"),Y("code"),Y("xmp")];var T=[];for(var aa=0;aa=0){var ah=ai.match(ab);var am;if(!ah&&(am=o(aj))&&"CODE"===am.tagName){ah=am.className.match(ab)}if(ah){ah=ah[1]}var al=false;for(var ak=aj.parentNode;ak;ak=ak.parentNode){if((ak.tagName==="pre"||ak.tagName==="code"||ak.tagName==="xmp")&&ak.className&&ak.className.indexOf("prettyprint")>=0){al=true;break}}if(!al){var af=aj.className.match(/\blinenums\b(?::(\d+))?/);af=af?af[1]&&af[1].length?+af[1]:true:false;if(af){Q(aj,af)}S={langExtension:ah,sourceNode:aj,numberLines:af};d(S)}}}if(X]*(?:>|$)/],[PR.PR_COMMENT,/^<\!--[\s\S]*?(?:-\->|$)/],[PR.PR_PUNCTUATION,/^(?:<[%?]|[%?]>)/],["lang-",/^<\?([\s\S]+?)(?:\?>|$)/],["lang-",/^<%([\s\S]+?)(?:%>|$)/],["lang-",/^]*>([\s\S]+?)<\/xmp\b[^>]*>/i],["lang-handlebars",/^]*type\s*=\s*['"]?text\/x-handlebars-template['"]?\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-js",/^]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\s\S]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i],[PR.PR_DECLARATION,/^{{[#^>/]?\s*[\w.][^}]*}}/],[PR.PR_DECLARATION,/^{{&?\s*[\w.][^}]*}}/],[PR.PR_DECLARATION,/^{{{>?\s*[\w.][^}]*}}}/],[PR.PR_COMMENT,/^{{![^}]*}}/]]),["handlebars","hbs"]);PR.registerLangHandler(PR.createSimpleLexer([[PR.PR_PLAIN,/^[ \t\r\n\f]+/,null," \t\r\n\f"]],[[PR.PR_STRING,/^\"(?:[^\n\r\f\\\"]|\\(?:\r\n?|\n|\f)|\\[\s\S])*\"/,null],[PR.PR_STRING,/^\'(?:[^\n\r\f\\\']|\\(?:\r\n?|\n|\f)|\\[\s\S])*\'/,null],["lang-css-str",/^url\(([^\)\"\']*)\)/i],[PR.PR_KEYWORD,/^(?:url|rgb|\!important|@import|@page|@media|@charset|inherit)(?=[^\-\w]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|(?:\\[0-9a-f]+ ?))(?:[_a-z0-9\-]|\\(?:\\[0-9a-f]+ ?))*)\s*:/i],[PR.PR_COMMENT,/^\/\*[^*]*\*+(?:[^\/*][^*]*\*+)*\//],[PR.PR_COMMENT,/^(?:)/],[PR.PR_LITERAL,/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],[PR.PR_LITERAL,/^#(?:[0-9a-f]{3}){1,2}/i],[PR.PR_PLAIN,/^-?(?:[_a-z]|(?:\\[\da-f]+ ?))(?:[_a-z\d\-]|\\(?:\\[\da-f]+ ?))*/i],[PR.PR_PUNCTUATION,/^[^\s\w\'\"]+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[[PR.PR_KEYWORD,/^-?(?:[_a-z]|(?:\\[\da-f]+ ?))(?:[_a-z\d\-]|\\(?:\\[\da-f]+ ?))*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[[PR.PR_STRING,/^[^\)\"\']+/]]),["css-str"]); diff --git a/coverage/lcov-report/sort-arrow-sprite.png b/coverage/lcov-report/sort-arrow-sprite.png new file mode 100644 index 0000000000000000000000000000000000000000..6ed68316eb3f65dec9063332d2f69bf3093bbfab GIT binary patch literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^>_9Bd!3HEZxJ@+%Qh}Z>jv*C{$p!i!8j}?a+@3A= zIAGwzjijN=FBi!|L1t?LM;Q;gkwn>2cAy-KV{dn nf0J1DIvEHQu*n~6U}x}qyky7vi4|9XhBJ7&`njxgN@xNA8m%nc literal 0 HcmV?d00001 diff --git a/coverage/lcov-report/sorter.js b/coverage/lcov-report/sorter.js new file mode 100644 index 0000000..2bb296a --- /dev/null +++ b/coverage/lcov-report/sorter.js @@ -0,0 +1,196 @@ +/* eslint-disable */ +var addSorting = (function() { + 'use strict'; + var cols, + currentSort = { + index: 0, + desc: false + }; + + // returns the summary table element + function getTable() { + return document.querySelector('.coverage-summary'); + } + // returns the thead element of the summary table + function getTableHeader() { + return getTable().querySelector('thead tr'); + } + // returns the tbody element of the summary table + function getTableBody() { + return getTable().querySelector('tbody'); + } + // returns the th element for nth column + function getNthColumn(n) { + return getTableHeader().querySelectorAll('th')[n]; + } + + function onFilterInput() { + const searchValue = document.getElementById('fileSearch').value; + const rows = document.getElementsByTagName('tbody')[0].children; + for (let i = 0; i < rows.length; i++) { + const row = rows[i]; + if ( + row.textContent + .toLowerCase() + .includes(searchValue.toLowerCase()) + ) { + row.style.display = ''; + } else { + row.style.display = 'none'; + } + } + } + + // loads the search box + function addSearchBox() { + var template = document.getElementById('filterTemplate'); + var templateClone = template.content.cloneNode(true); + templateClone.getElementById('fileSearch').oninput = onFilterInput; + template.parentElement.appendChild(templateClone); + } + + // loads all columns + function loadColumns() { + var colNodes = getTableHeader().querySelectorAll('th'), + colNode, + cols = [], + col, + i; + + for (i = 0; i < colNodes.length; i += 1) { + colNode = colNodes[i]; + col = { + key: colNode.getAttribute('data-col'), + sortable: !colNode.getAttribute('data-nosort'), + type: colNode.getAttribute('data-type') || 'string' + }; + cols.push(col); + if (col.sortable) { + col.defaultDescSort = col.type === 'number'; + colNode.innerHTML = + colNode.innerHTML + ''; + } + } + return cols; + } + // attaches a data attribute to every tr element with an object + // of data values keyed by column name + function loadRowData(tableRow) { + var tableCols = tableRow.querySelectorAll('td'), + colNode, + col, + data = {}, + i, + val; + for (i = 0; i < tableCols.length; i += 1) { + colNode = tableCols[i]; + col = cols[i]; + val = colNode.getAttribute('data-value'); + if (col.type === 'number') { + val = Number(val); + } + data[col.key] = val; + } + return data; + } + // loads all row data + function loadData() { + var rows = getTableBody().querySelectorAll('tr'), + i; + + for (i = 0; i < rows.length; i += 1) { + rows[i].data = loadRowData(rows[i]); + } + } + // sorts the table using the data for the ith column + function sortByIndex(index, desc) { + var key = cols[index].key, + sorter = function(a, b) { + a = a.data[key]; + b = b.data[key]; + return a < b ? -1 : a > b ? 1 : 0; + }, + finalSorter = sorter, + tableBody = document.querySelector('.coverage-summary tbody'), + rowNodes = tableBody.querySelectorAll('tr'), + rows = [], + i; + + if (desc) { + finalSorter = function(a, b) { + return -1 * sorter(a, b); + }; + } + + for (i = 0; i < rowNodes.length; i += 1) { + rows.push(rowNodes[i]); + tableBody.removeChild(rowNodes[i]); + } + + rows.sort(finalSorter); + + for (i = 0; i < rows.length; i += 1) { + tableBody.appendChild(rows[i]); + } + } + // removes sort indicators for current column being sorted + function removeSortIndicators() { + var col = getNthColumn(currentSort.index), + cls = col.className; + + cls = cls.replace(/ sorted$/, '').replace(/ sorted-desc$/, ''); + col.className = cls; + } + // adds sort indicators for current column being sorted + function addSortIndicators() { + getNthColumn(currentSort.index).className += currentSort.desc + ? ' sorted-desc' + : ' sorted'; + } + // adds event listeners for all sorter widgets + function enableUI() { + var i, + el, + ithSorter = function ithSorter(i) { + var col = cols[i]; + + return function() { + var desc = col.defaultDescSort; + + if (currentSort.index === i) { + desc = !currentSort.desc; + } + sortByIndex(i, desc); + removeSortIndicators(); + currentSort.index = i; + currentSort.desc = desc; + addSortIndicators(); + }; + }; + for (i = 0; i < cols.length; i += 1) { + if (cols[i].sortable) { + // add the click event handler on the th so users + // dont have to click on those tiny arrows + el = getNthColumn(i).querySelector('.sorter').parentElement; + if (el.addEventListener) { + el.addEventListener('click', ithSorter(i)); + } else { + el.attachEvent('onclick', ithSorter(i)); + } + } + } + } + // adds sorting functionality to the UI + return function() { + if (!getTable()) { + return; + } + cols = loadColumns(); + loadData(); + addSearchBox(); + addSortIndicators(); + enableUI(); + }; +})(); + +window.addEventListener('load', addSorting); diff --git a/coverage/lcov.info b/coverage/lcov.info new file mode 100644 index 0000000..7ec9201 --- /dev/null +++ b/coverage/lcov.info @@ -0,0 +1,8235 @@ +TN: +SF:src\events.ts +FN:8,ZetaEvent +FN:21,toEvent +FN:38,ZetaSliderEvent +FN:53,ZetaRangeSliderEvent +FN:66,ZetaPageEvent +FN:74,ZetaCloseEvent +FN:83,ZetaPopupEvent +FN:92,ZetaCancelUploadEvent +FN:101,ZetaChangeEvent +FN:112,ZetaInputEvent +FNF:10 +FNH:8 +FNDA:20,ZetaEvent +FNDA:18,toEvent +FNDA:5,ZetaSliderEvent +FNDA:4,ZetaRangeSliderEvent +FNDA:2,ZetaPageEvent +FNDA:2,ZetaCloseEvent +FNDA:5,ZetaPopupEvent +FNDA:2,ZetaCancelUploadEvent +FNDA:0,ZetaChangeEvent +FNDA:0,ZetaInputEvent +DA:1,42 +DA:2,42 +DA:3,42 +DA:4,42 +DA:5,42 +DA:6,42 +DA:7,42 +DA:8,42 +DA:9,20 +DA:10,20 +DA:11,20 +DA:12,20 +DA:13,20 +DA:14,20 +DA:15,20 +DA:16,20 +DA:17,20 +DA:18,20 +DA:19,20 +DA:20,20 +DA:21,42 +DA:22,18 +DA:23,18 +DA:24,18 +DA:25,18 +DA:26,18 +DA:27,18 +DA:28,18 +DA:29,42 +DA:30,42 +DA:31,42 +DA:32,42 +DA:33,42 +DA:34,42 +DA:35,42 +DA:36,42 +DA:37,42 +DA:38,42 +DA:39,5 +DA:40,5 +DA:41,42 +DA:42,42 +DA:43,42 +DA:44,42 +DA:45,42 +DA:46,42 +DA:47,42 +DA:48,42 +DA:49,42 +DA:50,42 +DA:51,42 +DA:52,42 +DA:53,42 +DA:54,4 +DA:55,4 +DA:56,42 +DA:57,42 +DA:58,42 +DA:59,42 +DA:60,42 +DA:61,42 +DA:62,42 +DA:63,42 +DA:64,42 +DA:65,42 +DA:66,42 +DA:67,2 +DA:68,2 +DA:69,42 +DA:70,42 +DA:71,42 +DA:72,42 +DA:73,42 +DA:74,42 +DA:75,2 +DA:76,2 +DA:77,42 +DA:78,42 +DA:79,42 +DA:80,42 +DA:81,42 +DA:82,42 +DA:83,42 +DA:84,5 +DA:85,5 +DA:86,5 +DA:87,42 +DA:88,42 +DA:89,42 +DA:90,42 +DA:91,42 +DA:92,42 +DA:93,2 +DA:94,2 +DA:95,42 +DA:96,42 +DA:97,42 +DA:98,42 +DA:99,42 +DA:100,42 +DA:101,42 +DA:102,0 +DA:103,0 +DA:104,42 +DA:105,42 +DA:106,42 +DA:107,42 +DA:108,42 +DA:109,42 +DA:110,42 +DA:111,42 +DA:112,42 +DA:113,0 +DA:114,0 +DA:115,42 +DA:116,42 +DA:117,42 +DA:118,42 +DA:119,42 +DA:120,42 +DA:121,42 +DA:122,42 +DA:123,42 +DA:124,42 +LF:124 +LH:120 +BRDA:8,0,0,20 +BRDA:17,1,0,6 +BRDA:17,2,0,6 +BRDA:17,3,0,6 +BRDA:18,4,0,6 +BRDA:18,5,0,6 +BRDA:18,6,0,6 +BRDA:19,7,0,6 +BRDA:19,8,0,0 +BRDA:19,9,0,0 +BRDA:21,10,0,18 +BRDA:83,11,0,5 +BRDA:17,12,0,14 +BRDA:18,13,0,14 +BRDA:74,14,0,2 +BRDA:66,15,0,2 +BRDA:92,16,0,2 +BRDA:53,17,0,4 +BRDA:38,18,0,5 +BRF:19 +BRH:17 +end_of_record +TN: +SF:src\index.ts +FNF:0 +FNH:0 +DA:1,3 +DA:2,3 +DA:3,3 +DA:4,3 +DA:5,3 +DA:6,3 +DA:7,3 +DA:8,3 +DA:9,3 +DA:10,3 +DA:11,3 +DA:12,3 +DA:13,3 +DA:14,3 +DA:15,3 +DA:16,3 +DA:17,3 +DA:18,3 +DA:19,3 +DA:20,3 +DA:21,3 +DA:22,3 +DA:23,3 +DA:24,3 +DA:25,3 +DA:26,3 +DA:27,3 +DA:28,3 +DA:29,3 +DA:30,3 +DA:31,3 +DA:32,3 +DA:33,3 +DA:34,3 +DA:35,3 +DA:36,3 +DA:37,3 +DA:38,3 +DA:39,3 +DA:40,3 +DA:41,3 +DA:42,3 +DA:43,3 +DA:44,3 +DA:45,3 +DA:46,3 +DA:47,3 +DA:48,3 +DA:49,3 +DA:50,3 +DA:51,3 +DA:52,3 +DA:53,3 +DA:54,3 +DA:55,3 +DA:56,3 +DA:57,3 +DA:58,3 +DA:59,3 +DA:60,3 +DA:61,3 +DA:62,3 +DA:63,3 +DA:64,3 +DA:65,3 +DA:66,3 +DA:67,3 +DA:68,3 +DA:69,3 +DA:70,3 +DA:71,3 +DA:72,3 +DA:73,3 +DA:74,3 +DA:75,3 +DA:76,3 +DA:77,3 +DA:78,3 +DA:79,3 +DA:80,3 +DA:81,3 +DA:82,3 +DA:83,3 +DA:84,3 +DA:85,3 +DA:86,3 +DA:87,3 +DA:88,3 +DA:89,3 +DA:90,3 +DA:91,3 +DA:92,3 +DA:93,3 +DA:94,3 +DA:95,3 +DA:96,3 +DA:97,3 +DA:98,3 +DA:99,3 +DA:100,3 +DA:101,3 +DA:102,3 +DA:103,3 +DA:104,3 +DA:105,3 +DA:106,3 +DA:107,3 +DA:108,3 +DA:109,3 +DA:110,3 +DA:111,3 +DA:112,3 +DA:113,3 +DA:114,3 +DA:115,3 +DA:116,3 +DA:117,3 +DA:118,3 +DA:119,3 +DA:120,3 +DA:121,3 +DA:122,3 +DA:123,3 +DA:124,3 +DA:125,3 +DA:126,3 +DA:127,3 +DA:128,3 +DA:129,3 +DA:130,3 +DA:131,3 +DA:132,3 +DA:133,3 +DA:134,3 +DA:135,3 +DA:136,3 +DA:137,3 +DA:138,3 +DA:139,3 +DA:140,3 +DA:141,3 +DA:142,3 +DA:143,3 +LF:143 +LH:143 +BRF:0 +BRH:0 +end_of_record +TN: +SF:src\components\base-toggle-form-element.ts +FN:8, +FN:14,handleChange +FN:18,focus +FN:22,blur +FN:26,key +FN:34,render +FNF:6 +FNH:3 +FNDA:6, +FNDA:4,handleChange +FNDA:0,focus +FNDA:0,blur +FNDA:0,key +FNDA:46,render +DA:1,6 +DA:2,6 +DA:3,6 +DA:4,6 +DA:5,6 +DA:6,6 +DA:7,6 +DA:8,6 +DA:9,6 +DA:10,6 +DA:11,6 +DA:12,6 +DA:13,6 +DA:14,6 +DA:15,4 +DA:16,4 +DA:17,6 +DA:18,6 +DA:19,0 +DA:20,0 +DA:21,6 +DA:22,6 +DA:23,0 +DA:24,0 +DA:25,6 +DA:26,6 +DA:27,0 +DA:28,0 +DA:29,0 +DA:30,0 +DA:31,0 +DA:32,0 +DA:33,6 +DA:34,6 +DA:35,46 +DA:36,46 +DA:37,46 +DA:38,46 +DA:39,46 +DA:40,46 +DA:41,46 +DA:42,46 +DA:43,46 +DA:44,24 +DA:45,46 +DA:46,46 +DA:47,46 +DA:48,46 +DA:49,46 +DA:50,46 +DA:51,46 +DA:52,6 +DA:53,6 +DA:54,6 +LF:54 +LH:44 +BRDA:8,0,0,6 +BRDA:53,1,0,0 +BRDA:14,2,0,8 +BRDA:34,3,0,49 +BRDA:39,4,0,3 +BRDA:44,5,0,3 +BRDA:44,6,0,25 +BRDA:43,7,0,27 +BRF:8 +BRH:7 +end_of_record +TN: +SF:src\components\accordion\accordion.ts +FN:20,ZetaAccordion +FN:34,toggleOpen +FN:38,render +FNF:3 +FNH:0 +FNDA:0,ZetaAccordion +FNDA:0,toggleOpen +FNDA:0,render +DA:1,3 +DA:2,3 +DA:3,3 +DA:4,3 +DA:5,3 +DA:6,3 +DA:7,3 +DA:8,3 +DA:9,3 +DA:10,3 +DA:11,3 +DA:12,3 +DA:13,3 +DA:14,3 +DA:15,3 +DA:16,3 +DA:17,3 +DA:18,3 +DA:19,3 +DA:20,3 +DA:21,0 +DA:22,0 +DA:23,0 +DA:24,0 +DA:25,0 +DA:26,0 +DA:27,0 +DA:28,0 +DA:29,0 +DA:30,0 +DA:31,0 +DA:32,0 +DA:33,3 +DA:34,3 +DA:35,0 +DA:36,0 +DA:37,3 +DA:38,3 +DA:39,0 +DA:40,0 +DA:41,0 +DA:42,0 +DA:43,0 +DA:44,0 +DA:45,0 +DA:46,0 +DA:47,0 +DA:48,0 +DA:49,3 +DA:50,3 +DA:51,3 +DA:52,3 +DA:53,3 +DA:54,3 +DA:55,3 +DA:56,3 +DA:57,3 +LF:57 +LH:33 +BRDA:50,0,0,0 +BRF:1 +BRH:0 +end_of_record +TN: +SF:src\components\action-menu\action-menu-button.ts +FN:18,ZetaActionMenuButton +FN:27,onClick +FN:47,firstUpdated +FN:51,handleClick +FN:60,handleOutsideClick +FN:67,renderItems +FN:75,render +FNF:7 +FNH:6 +FNDA:6,ZetaActionMenuButton +FNDA:0,onClick +FNDA:6,firstUpdated +FNDA:5,handleClick +FNDA:51,handleOutsideClick +FNDA:16,renderItems +FNDA:16,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,4 +DA:18,4 +DA:19,6 +DA:20,6 +DA:21,6 +DA:22,6 +DA:23,6 +DA:24,6 +DA:25,6 +DA:26,6 +DA:27,6 +DA:28,0 +DA:29,0 +DA:30,6 +DA:31,6 +DA:32,6 +DA:33,6 +DA:34,6 +DA:35,6 +DA:36,6 +DA:37,6 +DA:38,6 +DA:39,6 +DA:40,6 +DA:41,6 +DA:42,4 +DA:43,4 +DA:44,4 +DA:45,4 +DA:46,4 +DA:47,4 +DA:48,6 +DA:49,6 +DA:50,4 +DA:51,4 +DA:52,5 +DA:53,5 +DA:54,5 +DA:55,5 +DA:56,0 +DA:57,0 +DA:58,5 +DA:59,4 +DA:60,4 +DA:61,51 +DA:62,5 +DA:63,5 +DA:64,5 +DA:65,51 +DA:66,4 +DA:67,4 +DA:68,16 +DA:69,16 +DA:70,16 +DA:71,16 +DA:72,16 +DA:73,16 +DA:74,4 +DA:75,4 +DA:76,16 +DA:77,16 +DA:78,16 +DA:79,16 +DA:80,16 +DA:81,5 +DA:82,16 +DA:83,16 +DA:84,16 +DA:85,16 +DA:86,16 +DA:87,16 +DA:88,16 +DA:89,16 +DA:90,16 +DA:91,16 +DA:92,16 +DA:93,4 +DA:94,4 +DA:95,4 +DA:96,4 +DA:97,4 +DA:98,4 +DA:99,4 +DA:100,4 +DA:101,4 +LF:101 +LH:97 +BRDA:94,0,0,0 +BRDA:18,1,0,6 +BRDA:47,2,0,6 +BRDA:51,3,0,5 +BRDA:55,4,0,0 +BRDA:60,5,0,51 +BRDA:61,6,0,10 +BRDA:61,7,0,5 +BRDA:67,8,0,16 +BRDA:68,9,0,16 +BRDA:75,10,0,16 +BRDA:80,11,0,5 +BRF:12 +BRH:10 +end_of_record +TN: +SF:src\components\avatar\avatar.ts +FN:25,ZetaAvatar +FN:42,render +FNF:2 +FNH:2 +FNDA:5,ZetaAvatar +FNDA:5,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,4 +DA:18,4 +DA:19,4 +DA:20,4 +DA:21,4 +DA:22,4 +DA:23,4 +DA:24,4 +DA:25,4 +DA:26,5 +DA:27,5 +DA:28,5 +DA:29,5 +DA:30,5 +DA:31,5 +DA:32,5 +DA:33,5 +DA:34,5 +DA:35,5 +DA:36,5 +DA:37,5 +DA:38,5 +DA:39,5 +DA:40,5 +DA:41,4 +DA:42,4 +DA:43,5 +DA:44,5 +DA:45,5 +DA:46,5 +DA:47,5 +DA:48,5 +DA:49,5 +DA:50,0 +DA:51,5 +DA:52,5 +DA:53,5 +DA:54,5 +DA:55,5 +DA:56,5 +DA:57,5 +DA:58,4 +DA:59,4 +DA:60,4 +DA:61,4 +DA:62,4 +DA:63,4 +DA:64,4 +DA:65,4 +DA:66,4 +LF:66 +LH:65 +BRDA:25,0,0,5 +BRDA:42,1,0,5 +BRF:2 +BRH:2 +end_of_record +TN: +SF:src\components\avatar-rail\avatar-rail.ts +FN:14,ZetaAvatarRail +FN:26,render +FNF:2 +FNH:0 +FNDA:0,ZetaAvatarRail +FNDA:0,render +DA:1,3 +DA:2,3 +DA:3,3 +DA:4,3 +DA:5,3 +DA:6,3 +DA:7,3 +DA:8,3 +DA:9,3 +DA:10,3 +DA:11,3 +DA:12,3 +DA:13,3 +DA:14,3 +DA:15,0 +DA:16,0 +DA:17,0 +DA:18,0 +DA:19,0 +DA:20,3 +DA:21,3 +DA:22,3 +DA:23,3 +DA:24,3 +DA:25,3 +DA:26,3 +DA:27,0 +DA:28,0 +DA:29,3 +DA:30,3 +DA:31,3 +DA:32,3 +DA:33,3 +DA:34,3 +DA:35,3 +DA:36,3 +DA:37,3 +LF:37 +LH:30 +BRF:0 +BRH:0 +end_of_record +TN: +SF:src\components\badges\indicators\indicators.ts +FN:16,ZetaIndicator +FN:38,getBody +FN:46,render +FN:55,ZetaIconIndicator +FN:64,ZetaNotificationIndicator +FNF:5 +FNH:4 +FNDA:19,ZetaIndicator +FNDA:22,getBody +FNDA:22,render +FNDA:0,ZetaIconIndicator +FNDA:19,ZetaNotificationIndicator +DA:1,7 +DA:2,7 +DA:3,7 +DA:4,7 +DA:5,7 +DA:6,7 +DA:7,7 +DA:8,7 +DA:9,7 +DA:10,7 +DA:11,7 +DA:12,7 +DA:13,7 +DA:14,7 +DA:15,7 +DA:16,7 +DA:17,19 +DA:18,19 +DA:19,19 +DA:20,19 +DA:21,19 +DA:22,19 +DA:23,19 +DA:24,19 +DA:25,19 +DA:26,19 +DA:27,19 +DA:28,19 +DA:29,19 +DA:30,19 +DA:31,19 +DA:32,19 +DA:33,19 +DA:34,19 +DA:35,7 +DA:36,7 +DA:37,7 +DA:38,7 +DA:39,22 +DA:40,0 +DA:41,22 +DA:42,22 +DA:43,22 +DA:44,22 +DA:45,7 +DA:46,7 +DA:47,22 +DA:48,22 +DA:49,22 +DA:50,7 +DA:51,7 +DA:52,7 +DA:53,7 +DA:54,7 +DA:55,7 +DA:56,0 +DA:57,0 +DA:58,0 +DA:59,7 +DA:60,7 +DA:61,7 +DA:62,7 +DA:63,7 +DA:64,7 +DA:65,19 +DA:66,19 +DA:67,19 +DA:68,7 +DA:69,7 +DA:70,7 +DA:71,7 +DA:72,7 +DA:73,7 +DA:74,7 +DA:75,7 +DA:76,7 +LF:76 +LH:72 +BRDA:36,0,0,0 +BRDA:16,1,0,19 +BRDA:38,2,0,22 +BRDA:39,3,0,0 +BRDA:46,4,0,22 +BRDA:47,5,0,18 +BRDA:48,6,0,18 +BRDA:48,7,0,0 +BRDA:64,8,0,19 +BRDA:47,9,0,4 +BRDA:48,10,0,4 +BRF:11 +BRH:8 +end_of_record +TN: +SF:src\components\badges\label\label.ts +FN:16,ZetaLabel +FN:29,render +FNF:2 +FNH:0 +FNDA:0,ZetaLabel +FNDA:0,render +DA:1,3 +DA:2,3 +DA:3,3 +DA:4,3 +DA:5,3 +DA:6,3 +DA:7,3 +DA:8,3 +DA:9,3 +DA:10,3 +DA:11,3 +DA:12,3 +DA:13,3 +DA:14,3 +DA:15,3 +DA:16,3 +DA:17,0 +DA:18,0 +DA:19,0 +DA:20,0 +DA:21,3 +DA:22,3 +DA:23,3 +DA:24,3 +DA:25,3 +DA:26,3 +DA:27,3 +DA:28,3 +DA:29,3 +DA:30,0 +DA:31,0 +DA:32,0 +DA:33,0 +DA:34,0 +DA:35,0 +DA:36,3 +DA:37,3 +DA:38,3 +DA:39,3 +DA:40,3 +DA:41,3 +DA:42,3 +LF:42 +LH:32 +BRDA:27,0,0,0 +BRF:1 +BRH:0 +end_of_record +TN: +SF:src\components\badges\priority-pill\priority-pill.ts +FN:30,render +FNF:1 +FNH:0 +FNDA:0,render +DA:1,3 +DA:2,3 +DA:3,3 +DA:4,3 +DA:5,3 +DA:6,3 +DA:7,3 +DA:8,3 +DA:9,3 +DA:10,3 +DA:11,3 +DA:12,3 +DA:13,3 +DA:14,3 +DA:15,3 +DA:16,3 +DA:17,3 +DA:18,3 +DA:19,3 +DA:20,3 +DA:21,3 +DA:22,3 +DA:23,3 +DA:24,3 +DA:25,3 +DA:26,3 +DA:27,3 +DA:28,3 +DA:29,3 +DA:30,3 +DA:31,0 +DA:32,0 +DA:33,0 +DA:34,0 +DA:35,0 +DA:36,0 +DA:37,0 +DA:38,3 +DA:39,3 +DA:40,3 +DA:41,3 +DA:42,3 +DA:43,3 +DA:44,3 +LF:44 +LH:37 +BRDA:28,0,0,0 +BRF:1 +BRH:0 +end_of_record +TN: +SF:src\components\badges\status-label\status-label.ts +FN:19,ZetaStatusLabel +FN:35,render +FNF:2 +FNH:0 +FNDA:0,ZetaStatusLabel +FNDA:0,render +DA:1,3 +DA:2,3 +DA:3,3 +DA:4,3 +DA:5,3 +DA:6,3 +DA:7,3 +DA:8,3 +DA:9,3 +DA:10,3 +DA:11,3 +DA:12,3 +DA:13,3 +DA:14,3 +DA:15,3 +DA:16,3 +DA:17,3 +DA:18,3 +DA:19,3 +DA:20,0 +DA:21,0 +DA:22,3 +DA:23,3 +DA:24,3 +DA:25,3 +DA:26,3 +DA:27,3 +DA:28,3 +DA:29,3 +DA:30,3 +DA:31,3 +DA:32,3 +DA:33,3 +DA:34,3 +DA:35,3 +DA:36,0 +DA:37,0 +DA:38,0 +DA:39,0 +DA:40,0 +DA:41,0 +DA:42,0 +DA:43,0 +DA:44,0 +DA:45,0 +DA:46,0 +DA:47,0 +DA:48,0 +DA:49,0 +DA:50,0 +DA:51,0 +DA:52,0 +DA:53,0 +DA:54,0 +DA:55,3 +DA:56,3 +DA:57,3 +DA:58,3 +DA:59,3 +DA:60,3 +DA:61,3 +LF:61 +LH:40 +BRDA:33,0,0,0 +BRF:1 +BRH:0 +end_of_record +TN: +SF:src\components\badges\tag\tag.ts +FN:15,ZetaTag +FN:24,render +FNF:2 +FNH:2 +FNDA:5,ZetaTag +FNDA:9,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,5 +DA:17,5 +DA:18,5 +DA:19,5 +DA:20,5 +DA:21,4 +DA:22,4 +DA:23,4 +DA:24,4 +DA:25,9 +DA:26,9 +DA:27,0 +DA:28,9 +DA:29,9 +DA:30,9 +DA:31,9 +DA:32,9 +DA:33,9 +DA:34,9 +DA:35,9 +DA:36,9 +DA:37,9 +DA:38,9 +DA:39,4 +DA:40,4 +DA:41,4 +DA:42,4 +DA:43,4 +DA:44,4 +DA:45,4 +LF:45 +LH:44 +BRDA:22,0,0,0 +BRDA:15,1,0,5 +BRDA:24,2,0,9 +BRDA:26,3,0,0 +BRF:4 +BRH:2 +end_of_record +TN: +SF:src\components\badges\workcloud-indicator\workcloud-indicator.ts +FN:8,OverwriteStyles +FN:10, +FN:18,ZetaWorkcloudIndicator +FN:32,render +FNF:4 +FNH:2 +FNDA:3,OverwriteStyles +FNDA:3, +FNDA:0,ZetaWorkcloudIndicator +FNDA:0,render +DA:1,3 +DA:2,3 +DA:3,3 +DA:4,3 +DA:5,3 +DA:6,3 +DA:7,3 +DA:8,3 +DA:9,3 +DA:10,3 +DA:11,3 +DA:12,3 +DA:13,3 +DA:14,3 +DA:15,3 +DA:16,3 +DA:17,3 +DA:18,3 +DA:19,0 +DA:20,0 +DA:21,0 +DA:22,0 +DA:23,0 +DA:24,0 +DA:25,0 +DA:26,0 +DA:27,0 +DA:28,0 +DA:29,0 +DA:30,0 +DA:31,3 +DA:32,3 +DA:33,0 +DA:34,0 +DA:35,0 +DA:36,0 +DA:37,0 +DA:38,0 +DA:39,0 +DA:40,0 +DA:41,0 +DA:42,3 +DA:43,3 +DA:44,3 +DA:45,3 +DA:46,3 +DA:47,3 +DA:48,3 +LF:48 +LH:27 +BRDA:8,0,0,3 +BRDA:10,1,0,3 +BRDA:10,2,0,3 +BRF:3 +BRH:3 +end_of_record +TN: +SF:src\components\bottom-sheets\bottom-sheet.ts +FN:14,ZetaBottomSheet +FN:35,ZetaBottomSheet.setLayout +FN:48,render +FNF:3 +FNH:3 +FNDA:18,ZetaBottomSheet +FNDA:63,ZetaBottomSheet.setLayout +FNDA:45,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,18 +DA:16,18 +DA:17,18 +DA:18,18 +DA:19,18 +DA:20,18 +DA:21,18 +DA:22,18 +DA:23,18 +DA:24,18 +DA:25,18 +DA:26,18 +DA:27,18 +DA:28,18 +DA:29,18 +DA:30,18 +DA:31,18 +DA:32,18 +DA:33,18 +DA:34,18 +DA:35,18 +DA:36,63 +DA:37,63 +DA:38,15 +DA:39,15 +DA:40,63 +DA:41,15 +DA:42,15 +DA:43,48 +DA:44,33 +DA:45,33 +DA:46,63 +DA:47,4 +DA:48,4 +DA:49,45 +DA:50,45 +DA:51,45 +DA:52,45 +DA:53,45 +DA:54,45 +DA:55,45 +DA:56,45 +DA:57,45 +DA:58,45 +DA:59,45 +DA:60,4 +DA:61,4 +DA:62,4 +DA:63,4 +DA:64,4 +DA:65,4 +LF:65 +LH:65 +BRDA:14,0,0,18 +BRDA:35,1,0,63 +BRDA:37,2,0,45 +BRDA:37,3,0,15 +BRDA:40,4,0,48 +BRDA:40,5,0,30 +BRDA:40,6,0,15 +BRDA:43,7,0,33 +BRDA:48,8,0,45 +BRDA:54,9,0,27 +BRDA:54,10,0,18 +BRDA:54,11,0,9 +BRDA:54,12,0,36 +BRF:13 +BRH:13 +end_of_record +TN: +SF:src\components\breadcrumbs\breadcrumb.ts +FN:17,ZetaBreadcrumb +FN:33,ZetaBreadcrumb.handleClick +FN:41,ZetaBreadcrumb.handleSlotChange +FN:69,render +FNF:4 +FNH:3 +FNDA:3,ZetaBreadcrumb +FNDA:0,ZetaBreadcrumb.handleClick +FNDA:6,ZetaBreadcrumb.handleSlotChange +FNDA:6,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,4 +DA:18,3 +DA:19,3 +DA:20,3 +DA:21,3 +DA:22,3 +DA:23,3 +DA:24,3 +DA:25,3 +DA:26,3 +DA:27,3 +DA:28,3 +DA:29,3 +DA:30,3 +DA:31,3 +DA:32,3 +DA:33,3 +DA:34,0 +DA:35,0 +DA:36,0 +DA:37,0 +DA:38,0 +DA:39,0 +DA:40,3 +DA:41,3 +DA:42,6 +DA:43,6 +DA:44,3 +DA:45,3 +DA:46,3 +DA:47,3 +DA:48,3 +DA:49,3 +DA:50,3 +DA:51,0 +DA:52,0 +DA:53,3 +DA:54,3 +DA:55,3 +DA:56,3 +DA:57,3 +DA:58,18 +DA:59,18 +DA:60,3 +DA:61,3 +DA:62,3 +DA:63,3 +DA:64,3 +DA:65,3 +DA:66,3 +DA:67,6 +DA:68,4 +DA:69,4 +DA:70,6 +DA:71,6 +DA:72,6 +DA:73,6 +DA:74,6 +DA:75,4 +DA:76,4 +DA:77,4 +DA:78,4 +DA:79,4 +DA:80,4 +DA:81,4 +LF:81 +LH:73 +BRDA:18,0,0,0 +BRDA:17,1,0,3 +BRDA:41,2,0,6 +BRDA:43,3,0,3 +BRDA:45,4,0,0 +BRDA:50,5,0,0 +BRDA:57,6,0,18 +BRDA:58,7,0,3 +BRDA:59,8,0,9 +BRDA:69,9,0,6 +BRF:10 +BRH:7 +end_of_record +TN: +SF:src\components\breadcrumbs\breadcrumb-item\breadcrumb-item.ts +FN:19,render +FNF:1 +FNH:1 +FNDA:18,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,4 +DA:18,4 +DA:19,4 +DA:20,18 +DA:21,18 +DA:22,18 +DA:23,18 +DA:24,18 +DA:25,18 +DA:26,18 +DA:27,4 +DA:28,4 +DA:29,4 +DA:30,4 +DA:31,4 +DA:32,4 +DA:33,4 +LF:33 +LH:33 +BRDA:17,0,0,0 +BRDA:19,1,0,18 +BRF:2 +BRH:1 +end_of_record +TN: +SF:src\components\button\base-button.ts +FN:8, +FN:18,BaseButton +FN:31,focus +FN:35,blur +FN:39,click +FN:44,_handleClick +FNF:6 +FNH:4 +FNDA:15, +FNDA:116,BaseButton +FNDA:0,focus +FNDA:0,blur +FNDA:21,click +FNDA:17,_handleClick +DA:1,15 +DA:2,15 +DA:3,15 +DA:4,15 +DA:5,15 +DA:6,15 +DA:7,15 +DA:8,15 +DA:9,15 +DA:10,15 +DA:11,15 +DA:12,15 +DA:13,15 +DA:14,15 +DA:15,15 +DA:16,15 +DA:17,15 +DA:18,15 +DA:19,116 +DA:20,116 +DA:21,116 +DA:22,15 +DA:23,15 +DA:24,15 +DA:25,15 +DA:26,15 +DA:27,15 +DA:28,15 +DA:29,15 +DA:30,15 +DA:31,15 +DA:32,0 +DA:33,0 +DA:34,15 +DA:35,15 +DA:36,0 +DA:37,0 +DA:38,15 +DA:39,15 +DA:40,21 +DA:41,21 +DA:42,15 +DA:43,15 +DA:44,15 +DA:45,17 +DA:46,0 +DA:47,0 +DA:48,17 +DA:49,2 +DA:50,2 +DA:51,2 +DA:52,17 +DA:53,17 +DA:54,15 +DA:55,15 +DA:56,15 +DA:57,15 +DA:58,15 +LF:58 +LH:52 +BRDA:8,0,0,15 +BRDA:57,1,0,0 +BRDA:18,2,0,121 +BRDA:39,3,0,31 +BRDA:44,4,0,27 +BRDA:45,5,0,10 +BRDA:48,6,0,12 +BRDA:40,7,0,27 +BRF:8 +BRH:7 +end_of_record +TN: +SF:src\components\button\button.ts +FN:26,ZetaButton +FN:39,render +FNF:2 +FNH:2 +FNDA:100,ZetaButton +FNDA:122,render +DA:1,14 +DA:2,14 +DA:3,14 +DA:4,14 +DA:5,14 +DA:6,14 +DA:7,14 +DA:8,14 +DA:9,14 +DA:10,14 +DA:11,14 +DA:12,14 +DA:13,14 +DA:14,14 +DA:15,14 +DA:16,14 +DA:17,14 +DA:18,14 +DA:19,14 +DA:20,14 +DA:21,14 +DA:22,14 +DA:23,14 +DA:24,14 +DA:25,14 +DA:26,14 +DA:27,100 +DA:28,100 +DA:29,100 +DA:30,100 +DA:31,100 +DA:32,100 +DA:33,100 +DA:34,100 +DA:35,100 +DA:36,100 +DA:37,100 +DA:38,14 +DA:39,14 +DA:40,122 +DA:41,122 +DA:42,122 +DA:43,122 +DA:44,122 +DA:45,122 +DA:46,122 +DA:47,122 +DA:48,122 +DA:49,122 +DA:50,122 +DA:51,122 +DA:52,122 +DA:53,122 +DA:54,122 +DA:55,122 +DA:56,122 +DA:57,105 +DA:58,17 +DA:59,17 +DA:60,122 +DA:61,122 +DA:62,122 +DA:63,122 +DA:64,14 +DA:65,14 +DA:66,14 +DA:67,14 +DA:68,14 +DA:69,14 +DA:70,14 +LF:70 +LH:70 +BRDA:26,0,0,100 +BRDA:31,1,0,0 +BRDA:39,2,0,122 +BRDA:41,3,0,0 +BRDA:44,4,0,0 +BRDA:57,5,0,17 +BRDA:56,6,0,105 +BRF:7 +BRH:4 +end_of_record +TN: +SF:src\components\button-group\button-group.ts +FN:18,ZetaButtonGroup +FN:22,render +FNF:2 +FNH:0 +FNDA:0,ZetaButtonGroup +FNDA:0,render +DA:1,3 +DA:2,3 +DA:3,3 +DA:4,3 +DA:5,3 +DA:6,3 +DA:7,3 +DA:8,3 +DA:9,3 +DA:10,3 +DA:11,3 +DA:12,3 +DA:13,3 +DA:14,3 +DA:15,3 +DA:16,3 +DA:17,3 +DA:18,3 +DA:19,0 +DA:20,0 +DA:21,3 +DA:22,3 +DA:23,0 +DA:24,0 +DA:25,3 +DA:26,3 +DA:27,3 +DA:28,3 +DA:29,3 +DA:30,3 +DA:31,3 +DA:32,3 +DA:33,3 +LF:33 +LH:29 +BRDA:26,0,0,0 +BRF:1 +BRH:0 +end_of_record +TN: +SF:src\components\button-group\button-group-item\button-group-item.ts +FN:20,ZetaButtonGroupItem +FN:44,focus +FN:48,blur +FN:52,render +FNF:4 +FNH:0 +FNDA:0,ZetaButtonGroupItem +FNDA:0,focus +FNDA:0,blur +FNDA:0,render +DA:1,3 +DA:2,3 +DA:3,3 +DA:4,3 +DA:5,3 +DA:6,3 +DA:7,3 +DA:8,3 +DA:9,3 +DA:10,3 +DA:11,3 +DA:12,3 +DA:13,3 +DA:14,3 +DA:15,3 +DA:16,3 +DA:17,3 +DA:18,3 +DA:19,3 +DA:20,3 +DA:21,0 +DA:22,0 +DA:23,0 +DA:24,0 +DA:25,0 +DA:26,0 +DA:27,0 +DA:28,0 +DA:29,0 +DA:30,0 +DA:31,0 +DA:32,0 +DA:33,0 +DA:34,0 +DA:35,0 +DA:36,0 +DA:37,0 +DA:38,0 +DA:39,0 +DA:40,0 +DA:41,0 +DA:42,0 +DA:43,3 +DA:44,3 +DA:45,0 +DA:46,0 +DA:47,3 +DA:48,3 +DA:49,0 +DA:50,0 +DA:51,3 +DA:52,3 +DA:53,0 +DA:54,0 +DA:55,0 +DA:56,0 +DA:57,0 +DA:58,0 +DA:59,0 +DA:60,0 +DA:61,0 +DA:62,0 +DA:63,0 +DA:64,0 +DA:65,0 +DA:66,0 +DA:67,0 +DA:68,0 +DA:69,3 +DA:70,3 +DA:71,3 +DA:72,3 +DA:73,3 +DA:74,3 +DA:75,3 +DA:76,3 +DA:77,3 +LF:77 +LH:35 +BRDA:70,0,0,0 +BRF:1 +BRH:0 +end_of_record +TN: +SF:src\components\button\icon-button\icon-button.ts +FN:17,ZetaIconButton +FNF:1 +FNH:1 +FNDA:85,ZetaIconButton +DA:1,9 +DA:2,9 +DA:3,9 +DA:4,9 +DA:5,9 +DA:6,9 +DA:7,9 +DA:8,9 +DA:9,9 +DA:10,9 +DA:11,9 +DA:12,9 +DA:13,9 +DA:14,9 +DA:15,9 +DA:16,9 +DA:17,9 +DA:18,85 +DA:19,85 +DA:20,85 +DA:21,85 +DA:22,9 +DA:23,9 +DA:24,9 +DA:25,9 +DA:26,9 +DA:27,9 +DA:28,9 +LF:28 +LH:28 +BRDA:17,0,0,85 +BRDA:19,1,0,0 +BRF:2 +BRH:1 +end_of_record +TN: +SF:src\components\card\card.ts +FN:20,render +FNF:1 +FNH:0 +FNDA:0,render +DA:1,3 +DA:2,3 +DA:3,3 +DA:4,3 +DA:5,3 +DA:6,3 +DA:7,3 +DA:8,3 +DA:9,3 +DA:10,3 +DA:11,3 +DA:12,3 +DA:13,3 +DA:14,3 +DA:15,3 +DA:16,3 +DA:17,3 +DA:18,3 +DA:19,3 +DA:20,3 +DA:21,0 +DA:22,0 +DA:23,3 +DA:24,3 +DA:25,3 +DA:26,3 +DA:27,3 +DA:28,3 +DA:29,3 +DA:30,3 +DA:31,3 +LF:31 +LH:29 +BRDA:24,0,0,0 +BRF:1 +BRH:0 +end_of_record +TN: +SF:src\components\card\card-body\card-body.ts +FN:12,render +FNF:1 +FNH:0 +FNDA:0,render +DA:1,3 +DA:2,3 +DA:3,3 +DA:4,3 +DA:5,3 +DA:6,3 +DA:7,3 +DA:8,3 +DA:9,3 +DA:10,3 +DA:11,3 +DA:12,3 +DA:13,0 +DA:14,0 +DA:15,3 +DA:16,3 +DA:17,3 +DA:18,3 +DA:19,3 +DA:20,3 +DA:21,3 +DA:22,3 +DA:23,3 +LF:23 +LH:21 +BRF:0 +BRH:0 +end_of_record +TN: +SF:src\components\card\card-footer\card-footer.ts +FN:12,render +FNF:1 +FNH:0 +FNDA:0,render +DA:1,3 +DA:2,3 +DA:3,3 +DA:4,3 +DA:5,3 +DA:6,3 +DA:7,3 +DA:8,3 +DA:9,3 +DA:10,3 +DA:11,3 +DA:12,3 +DA:13,0 +DA:14,0 +DA:15,3 +DA:16,3 +DA:17,3 +DA:18,3 +DA:19,3 +DA:20,3 +DA:21,3 +DA:22,3 +DA:23,3 +LF:23 +LH:21 +BRF:0 +BRH:0 +end_of_record +TN: +SF:src\components\card\card-header\card-header.ts +FN:20,render +FNF:1 +FNH:1 +FNDA:5,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,4 +DA:18,4 +DA:19,4 +DA:20,4 +DA:21,5 +DA:22,5 +DA:23,5 +DA:24,5 +DA:25,5 +DA:26,5 +DA:27,5 +DA:28,5 +DA:29,5 +DA:30,5 +DA:31,5 +DA:32,5 +DA:33,5 +DA:34,4 +DA:35,4 +DA:36,4 +DA:37,4 +DA:38,4 +DA:39,4 +DA:40,4 +DA:41,4 +DA:42,4 +LF:42 +LH:42 +BRDA:20,0,0,5 +BRF:1 +BRH:1 +end_of_record +TN: +SF:src\components\checkbox\checkbox.ts +FN:15,ZetaCheckbox +FN:23,click +FNF:2 +FNH:2 +FNDA:12,ZetaCheckbox +FNDA:3,click +DA:1,5 +DA:2,5 +DA:3,5 +DA:4,5 +DA:5,5 +DA:6,5 +DA:7,5 +DA:8,5 +DA:9,5 +DA:10,5 +DA:11,5 +DA:12,5 +DA:13,5 +DA:14,5 +DA:15,5 +DA:16,12 +DA:17,12 +DA:18,12 +DA:19,5 +DA:20,5 +DA:21,5 +DA:22,5 +DA:23,5 +DA:24,3 +DA:25,3 +DA:26,5 +DA:27,5 +DA:28,5 +DA:29,5 +DA:30,5 +DA:31,5 +DA:32,5 +DA:33,5 +LF:33 +LH:33 +BRDA:15,0,0,12 +BRDA:23,1,0,3 +BRF:2 +BRH:2 +end_of_record +TN: +SF:src\components\chips\assist-chip\assist-chip.ts +FN:20,getIcon +FN:28,render +FNF:2 +FNH:2 +FNDA:3,getIcon +FNDA:3,render +DA:1,3 +DA:2,3 +DA:3,3 +DA:4,3 +DA:5,3 +DA:6,3 +DA:7,3 +DA:8,3 +DA:9,3 +DA:10,3 +DA:11,3 +DA:12,3 +DA:13,3 +DA:14,3 +DA:15,3 +DA:16,3 +DA:17,3 +DA:18,3 +DA:19,3 +DA:20,3 +DA:21,3 +DA:22,3 +DA:23,3 +DA:24,0 +DA:25,0 +DA:26,3 +DA:27,3 +DA:28,3 +DA:29,3 +DA:30,3 +DA:31,3 +DA:32,3 +DA:33,3 +DA:34,3 +DA:35,3 +DA:36,3 +DA:37,3 +LF:37 +LH:35 +BRDA:18,0,0,0 +BRDA:20,1,0,3 +BRDA:23,2,0,0 +BRDA:28,3,0,3 +BRF:4 +BRH:2 +end_of_record +TN: +SF:src\components\chips\base-chips\base-chip.ts +FN:6, +FN:8,render +FNF:2 +FNH:1 +FNDA:3, +FNDA:0,render +DA:1,3 +DA:2,3 +DA:3,3 +DA:4,3 +DA:5,3 +DA:6,3 +DA:7,3 +DA:8,3 +DA:9,0 +DA:10,0 +DA:11,3 +LF:11 +LH:9 +BRDA:6,0,0,3 +BRDA:6,1,0,3 +BRF:2 +BRH:2 +end_of_record +TN: +SF:src\components\chips\filter-chip\filter-chip.ts +FN:18,getIcon +FN:26,clickHanlder +FN:34,render +FNF:3 +FNH:2 +FNDA:4,getIcon +FNDA:0,clickHanlder +FNDA:4,render +DA:1,3 +DA:2,3 +DA:3,3 +DA:4,3 +DA:5,3 +DA:6,3 +DA:7,3 +DA:8,3 +DA:9,3 +DA:10,3 +DA:11,3 +DA:12,3 +DA:13,3 +DA:14,3 +DA:15,3 +DA:16,3 +DA:17,3 +DA:18,3 +DA:19,4 +DA:20,1 +DA:21,4 +DA:22,3 +DA:23,3 +DA:24,4 +DA:25,3 +DA:26,3 +DA:27,0 +DA:28,0 +DA:29,0 +DA:30,0 +DA:31,0 +DA:32,0 +DA:33,3 +DA:34,3 +DA:35,4 +DA:36,4 +DA:37,4 +DA:38,4 +DA:39,3 +DA:40,3 +DA:41,3 +DA:42,3 +DA:43,3 +DA:44,3 +DA:45,3 +LF:45 +LH:39 +BRDA:16,0,0,0 +BRDA:18,1,0,4 +BRDA:19,2,0,1 +BRDA:20,3,0,0 +BRDA:21,4,0,3 +BRDA:34,5,0,4 +BRF:6 +BRH:4 +end_of_record +TN: +SF:src\components\chips\input-chip\input-chip.ts +FN:16,render +FNF:1 +FNH:1 +FNDA:2,render +DA:1,3 +DA:2,3 +DA:3,3 +DA:4,3 +DA:5,3 +DA:6,3 +DA:7,3 +DA:8,3 +DA:9,3 +DA:10,3 +DA:11,3 +DA:12,3 +DA:13,3 +DA:14,3 +DA:15,3 +DA:16,3 +DA:17,2 +DA:18,2 +DA:19,2 +DA:20,2 +DA:21,2 +DA:22,2 +DA:23,3 +DA:24,3 +DA:25,3 +DA:26,3 +DA:27,3 +DA:28,3 +DA:29,3 +LF:29 +LH:29 +BRDA:14,0,0,0 +BRDA:16,1,0,2 +BRF:2 +BRH:1 +end_of_record +TN: +SF:src\components\chips\status-chip\status-chip.ts +FN:12,ZetaStatusChip +FN:18,render +FNF:2 +FNH:0 +FNDA:0,ZetaStatusChip +FNDA:0,render +DA:1,3 +DA:2,3 +DA:3,3 +DA:4,3 +DA:5,3 +DA:6,3 +DA:7,3 +DA:8,3 +DA:9,3 +DA:10,3 +DA:11,3 +DA:12,3 +DA:13,0 +DA:14,0 +DA:15,3 +DA:16,3 +DA:17,3 +DA:18,3 +DA:19,0 +DA:20,0 +DA:21,3 +DA:22,3 +DA:23,3 +DA:24,3 +DA:25,3 +DA:26,3 +DA:27,3 +LF:27 +LH:23 +BRDA:16,0,0,0 +BRF:1 +BRH:0 +end_of_record +TN: +SF:src\components\dialog\dialog.ts +FN:31,ZetaDialog +FN:41,ZetaDialog.handleSubmit +FN:81,ZetaDialog.handleActionButtonChange +FN:53,get title +FN:57,set title +FN:102,render +FN:115,btn +FNF:7 +FNH:4 +FNDA:5,ZetaDialog +FNDA:0,ZetaDialog.handleSubmit +FNDA:4,ZetaDialog.handleActionButtonChange +FNDA:6,get title +FNDA:0,set title +FNDA:4,render +FNDA:0,btn +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,4 +DA:18,4 +DA:19,4 +DA:20,4 +DA:21,4 +DA:22,4 +DA:23,4 +DA:24,4 +DA:25,4 +DA:26,4 +DA:27,4 +DA:28,4 +DA:29,4 +DA:30,4 +DA:31,4 +DA:32,5 +DA:33,5 +DA:34,5 +DA:35,4 +DA:36,4 +DA:37,4 +DA:38,4 +DA:39,4 +DA:40,4 +DA:41,4 +DA:42,3 +DA:43,3 +DA:44,3 +DA:45,3 +DA:46,3 +DA:47,3 +DA:48,3 +DA:49,4 +DA:50,4 +DA:51,4 +DA:52,4 +DA:53,4 +DA:54,6 +DA:55,6 +DA:56,4 +DA:57,4 +DA:58,0 +DA:59,0 +DA:60,4 +DA:61,4 +DA:62,4 +DA:63,4 +DA:64,4 +DA:65,4 +DA:66,4 +DA:67,4 +DA:68,4 +DA:69,4 +DA:70,4 +DA:71,4 +DA:72,4 +DA:73,4 +DA:74,4 +DA:75,4 +DA:76,4 +DA:77,4 +DA:78,4 +DA:79,4 +DA:80,4 +DA:81,4 +DA:82,7 +DA:83,7 +DA:84,7 +DA:85,3 +DA:86,3 +DA:87,3 +DA:88,3 +DA:89,7 +DA:90,3 +DA:91,3 +DA:92,3 +DA:93,3 +DA:94,7 +DA:95,3 +DA:96,3 +DA:97,3 +DA:98,3 +DA:99,7 +DA:100,7 +DA:101,4 +DA:102,4 +DA:103,4 +DA:104,4 +DA:105,4 +DA:106,4 +DA:107,4 +DA:108,4 +DA:109,4 +DA:110,4 +DA:111,4 +DA:112,4 +DA:113,4 +DA:114,4 +DA:115,4 +DA:116,4 +DA:117,4 +DA:118,0 +DA:119,0 +DA:120,0 +DA:121,0 +DA:122,4 +DA:123,4 +DA:124,4 +DA:125,4 +DA:126,4 +DA:127,4 +DA:128,4 +DA:129,4 +DA:130,4 +DA:131,4 +DA:132,4 +DA:133,4 +DA:134,4 +DA:135,4 +DA:136,4 +DA:137,4 +DA:138,4 +DA:139,4 +LF:139 +LH:133 +BRDA:132,0,0,0 +BRDA:31,1,0,5 +BRDA:81,2,0,4 +BRDA:84,3,0,0 +BRDA:84,4,0,0 +BRDA:89,5,0,0 +BRDA:89,6,0,0 +BRDA:94,7,0,0 +BRDA:94,8,0,0 +BRDA:53,9,0,6 +BRDA:102,10,0,4 +BRF:11 +BRH:4 +end_of_record +TN: +SF:src\components\dropdown\droppable.ts +FN:13,ZetaDroppable +FN:55,ZetaDroppable.topVisible +FN:59,ZetaDroppable.bottomVisible +FN:63,ZetaDroppable.alignHorizontally +FN:77,ZetaDroppable.alignVertically +FN:87,ZetaDroppable.setDroppablePosition +FN:45,getDroppablePosition +FN:125,updated +FN:141,render +FNF:9 +FNH:6 +FNDA:22,ZetaDroppable +FNDA:0,ZetaDroppable.topVisible +FNDA:0,ZetaDroppable.bottomVisible +FNDA:13,ZetaDroppable.alignHorizontally +FNDA:0,ZetaDroppable.alignVertically +FNDA:15,ZetaDroppable.setDroppablePosition +FNDA:28,getDroppablePosition +FNDA:51,updated +FNDA:51,render +DA:1,6 +DA:2,6 +DA:3,6 +DA:4,6 +DA:5,6 +DA:6,6 +DA:7,6 +DA:8,6 +DA:9,6 +DA:10,6 +DA:11,6 +DA:12,6 +DA:13,6 +DA:14,22 +DA:15,22 +DA:16,22 +DA:17,22 +DA:18,22 +DA:19,22 +DA:20,22 +DA:21,22 +DA:22,22 +DA:23,22 +DA:24,22 +DA:25,22 +DA:26,22 +DA:27,22 +DA:28,22 +DA:29,22 +DA:30,22 +DA:31,22 +DA:32,22 +DA:33,15 +DA:34,15 +DA:35,15 +DA:36,15 +DA:37,15 +DA:38,15 +DA:39,15 +DA:40,15 +DA:41,15 +DA:42,7 +DA:43,22 +DA:44,22 +DA:45,22 +DA:46,28 +DA:47,28 +DA:48,28 +DA:49,28 +DA:50,28 +DA:51,28 +DA:52,28 +DA:53,28 +DA:54,22 +DA:55,22 +DA:56,0 +DA:57,0 +DA:58,22 +DA:59,22 +DA:60,0 +DA:61,0 +DA:62,22 +DA:63,22 +DA:64,13 +DA:65,13 +DA:66,13 +DA:67,13 +DA:68,1 +DA:69,1 +DA:70,13 +DA:71,1 +DA:72,12 +DA:73,11 +DA:74,11 +DA:75,13 +DA:76,22 +DA:77,22 +DA:78,0 +DA:79,0 +DA:80,0 +DA:81,0 +DA:82,0 +DA:83,0 +DA:84,0 +DA:85,0 +DA:86,22 +DA:87,22 +DA:88,15 +DA:89,15 +DA:90,15 +DA:91,15 +DA:92,13 +DA:93,13 +DA:94,0 +DA:95,0 +DA:96,0 +DA:97,0 +DA:98,13 +DA:99,0 +DA:100,0 +DA:101,0 +DA:102,0 +DA:103,13 +DA:104,0 +DA:105,0 +DA:106,0 +DA:107,13 +DA:108,13 +DA:109,13 +DA:110,13 +DA:111,13 +DA:112,0 +DA:113,0 +DA:114,0 +DA:115,0 +DA:116,0 +DA:117,0 +DA:118,0 +DA:119,0 +DA:120,0 +DA:121,13 +DA:122,13 +DA:123,15 +DA:124,6 +DA:125,6 +DA:126,51 +DA:127,15 +DA:128,15 +DA:129,51 +DA:130,51 +DA:131,51 +DA:132,51 +DA:133,40 +DA:134,40 +DA:135,51 +DA:136,24 +DA:137,24 +DA:138,24 +DA:139,51 +DA:140,6 +DA:141,6 +DA:142,51 +DA:143,15 +DA:144,15 +DA:145,36 +DA:146,51 +DA:147,6 +DA:148,6 +DA:149,6 +DA:150,6 +DA:151,6 +DA:152,6 +DA:153,6 +DA:154,6 +DA:155,6 +LF:155 +LH:123 +BRDA:148,0,0,0 +BRDA:13,1,0,22 +BRDA:63,2,0,20 +BRDA:67,3,0,8 +BRDA:70,4,0,19 +BRDA:70,5,0,8 +BRDA:72,6,0,18 +BRDA:87,7,0,15 +BRDA:93,8,0,0 +BRDA:98,9,0,0 +BRDA:103,10,0,0 +BRDA:111,11,0,0 +BRDA:41,12,0,7 +BRDA:45,13,0,28 +BRDA:125,14,0,51 +BRDA:126,15,0,15 +BRDA:135,16,0,24 +BRDA:141,17,0,51 +BRDA:142,18,0,15 +BRDA:144,19,0,36 +BRDA:91,20,0,13 +BRDA:32,21,0,15 +BRDA:132,22,0,40 +BRF:23 +BRH:18 +end_of_record +TN: +SF:src\components\dropdown\dropdown-menu\dropdown-menu-button.ts +FN:23,ZetaDropdownMenuButton +FN:58,handleChange +FN:62,firstUpdated +FN:77,handleItemClick +FN:94,handleClick +FN:105,handleOutsideClick +FN:111,renderItems +FN:161,render +FNF:8 +FNH:7 +FNDA:9,ZetaDropdownMenuButton +FNDA:0,handleChange +FNDA:9,firstUpdated +FNDA:5,handleItemClick +FNDA:15,handleClick +FNDA:326,handleOutsideClick +FNDA:26,renderItems +FNDA:26,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,4 +DA:18,4 +DA:19,4 +DA:20,4 +DA:21,4 +DA:22,4 +DA:23,4 +DA:24,9 +DA:25,9 +DA:26,9 +DA:27,9 +DA:28,9 +DA:29,9 +DA:30,9 +DA:31,9 +DA:32,9 +DA:33,9 +DA:34,9 +DA:35,9 +DA:36,9 +DA:37,9 +DA:38,9 +DA:39,9 +DA:40,9 +DA:41,9 +DA:42,9 +DA:43,9 +DA:44,9 +DA:45,9 +DA:46,9 +DA:47,9 +DA:48,9 +DA:49,9 +DA:50,9 +DA:51,9 +DA:52,9 +DA:53,4 +DA:54,4 +DA:55,4 +DA:56,4 +DA:57,4 +DA:58,4 +DA:59,0 +DA:60,0 +DA:61,4 +DA:62,4 +DA:63,9 +DA:64,9 +DA:65,9 +DA:66,0 +DA:67,0 +DA:68,0 +DA:69,0 +DA:70,0 +DA:71,0 +DA:72,0 +DA:73,0 +DA:74,9 +DA:75,9 +DA:76,4 +DA:77,4 +DA:78,5 +DA:79,2 +DA:80,2 +DA:81,5 +DA:82,2 +DA:83,0 +DA:84,2 +DA:85,2 +DA:86,2 +DA:87,2 +DA:88,3 +DA:89,1 +DA:90,1 +DA:91,5 +DA:92,5 +DA:93,4 +DA:94,4 +DA:95,15 +DA:96,15 +DA:97,8 +DA:98,8 +DA:99,15 +DA:100,7 +DA:101,7 +DA:102,7 +DA:103,15 +DA:104,4 +DA:105,4 +DA:106,326 +DA:107,5 +DA:108,5 +DA:109,326 +DA:110,4 +DA:111,4 +DA:112,26 +DA:113,2 +DA:114,6 +DA:115,6 +DA:116,1 +DA:117,1 +DA:118,0 +DA:119,0 +DA:120,6 +DA:121,6 +DA:122,6 +DA:123,6 +DA:124,6 +DA:125,6 +DA:126,2 +DA:127,26 +DA:128,3 +DA:129,9 +DA:130,9 +DA:131,9 +DA:132,2 +DA:133,2 +DA:134,0 +DA:135,0 +DA:136,9 +DA:137,9 +DA:138,9 +DA:139,9 +DA:140,9 +DA:141,9 +DA:142,9 +DA:143,9 +DA:144,3 +DA:145,24 +DA:146,21 +DA:147,25 +DA:148,25 +DA:149,2 +DA:150,2 +DA:151,0 +DA:152,0 +DA:153,25 +DA:154,25 +DA:155,25 +DA:156,25 +DA:157,21 +DA:158,21 +DA:159,26 +DA:160,4 +DA:161,4 +DA:162,26 +DA:163,26 +DA:164,26 +DA:165,26 +DA:166,26 +DA:167,8 +DA:168,26 +DA:169,26 +DA:170,26 +DA:171,26 +DA:172,26 +DA:173,26 +DA:174,26 +DA:175,26 +DA:176,26 +DA:177,26 +DA:178,26 +DA:179,26 +DA:180,4 +DA:181,4 +DA:182,4 +DA:183,4 +DA:184,4 +DA:185,4 +DA:186,4 +DA:187,4 +DA:188,4 +LF:188 +LH:171 +BRDA:181,0,0,0 +BRDA:23,1,0,9 +BRDA:62,2,0,9 +BRDA:64,3,0,9 +BRDA:65,4,0,0 +BRDA:77,5,0,5 +BRDA:78,6,0,2 +BRDA:81,7,0,3 +BRDA:81,8,0,2 +BRDA:82,9,0,0 +BRDA:88,10,0,1 +BRDA:94,11,0,15 +BRDA:96,12,0,8 +BRDA:99,13,0,7 +BRDA:105,14,0,326 +BRDA:106,15,0,29 +BRDA:106,16,0,5 +BRDA:111,17,0,26 +BRDA:112,18,0,2 +BRDA:127,19,0,24 +BRDA:127,20,0,3 +BRDA:145,21,0,21 +BRDA:113,22,0,6 +BRDA:115,23,0,1 +BRDA:117,24,0,0 +BRDA:128,25,0,9 +BRDA:131,26,0,2 +BRDA:133,27,0,0 +BRDA:146,28,0,25 +BRDA:148,29,0,2 +BRDA:150,30,0,0 +BRDA:161,31,0,26 +BRDA:166,32,0,8 +BRF:33 +BRH:27 +end_of_record +TN: +SF:src\components\dropdown\menu-item\dropdown-menu-item.ts +FN:16,key +FN:24,render +FNF:2 +FNH:1 +FNDA:0,key +FNDA:29,render +DA:1,7 +DA:2,7 +DA:3,7 +DA:4,7 +DA:5,7 +DA:6,7 +DA:7,7 +DA:8,7 +DA:9,7 +DA:10,7 +DA:11,7 +DA:12,7 +DA:13,7 +DA:14,7 +DA:15,7 +DA:16,7 +DA:17,0 +DA:18,0 +DA:19,0 +DA:20,0 +DA:21,0 +DA:22,0 +DA:23,7 +DA:24,7 +DA:25,29 +DA:26,29 +DA:27,29 +DA:28,29 +DA:29,29 +DA:30,29 +DA:31,29 +DA:32,29 +DA:33,29 +DA:34,29 +DA:35,29 +DA:36,29 +DA:37,7 +DA:38,7 +DA:39,7 +DA:40,7 +DA:41,7 +DA:42,7 +DA:43,7 +DA:44,7 +DA:45,7 +LF:45 +LH:39 +BRDA:38,0,0,0 +BRDA:24,1,0,29 +BRF:2 +BRH:1 +end_of_record +TN: +SF:src\components\fab\fab.ts +FN:20,ZetaFab +FN:37,get round +FN:40,set round +FN:58,getLabel +FN:61,render +FNF:5 +FNH:5 +FNDA:16,ZetaFab +FNDA:61,get round +FNDA:3,set round +FNDA:21,getLabel +FNDA:21,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,4 +DA:18,4 +DA:19,4 +DA:20,4 +DA:21,16 +DA:22,16 +DA:23,16 +DA:24,16 +DA:25,16 +DA:26,16 +DA:27,16 +DA:28,16 +DA:29,16 +DA:30,16 +DA:31,16 +DA:32,16 +DA:33,16 +DA:34,16 +DA:35,16 +DA:36,16 +DA:37,16 +DA:38,61 +DA:39,61 +DA:40,16 +DA:41,3 +DA:42,3 +DA:43,3 +DA:44,3 +DA:45,16 +DA:46,16 +DA:47,16 +DA:48,16 +DA:49,16 +DA:50,16 +DA:51,16 +DA:52,16 +DA:53,16 +DA:54,16 +DA:55,16 +DA:56,16 +DA:57,4 +DA:58,4 +DA:59,21 +DA:60,21 +DA:61,4 +DA:62,21 +DA:63,21 +DA:64,21 +DA:65,21 +DA:66,21 +DA:67,21 +DA:68,21 +DA:69,21 +DA:70,4 +DA:71,4 +DA:72,4 +DA:73,4 +DA:74,4 +DA:75,4 +DA:76,4 +LF:76 +LH:76 +BRDA:20,0,0,16 +BRDA:22,1,0,0 +BRDA:37,2,0,61 +BRDA:40,3,0,3 +BRDA:41,4,0,2 +BRDA:41,5,0,1 +BRDA:41,6,0,1 +BRDA:58,7,0,21 +BRDA:59,8,0,13 +BRDA:59,9,0,8 +BRDA:61,10,0,21 +BRDA:65,11,0,1 +BRDA:65,12,0,20 +BRDA:67,13,0,1 +BRDA:67,14,0,20 +BRF:15 +BRH:14 +end_of_record +TN: +SF:src\components\file-upload\file-upload.ts +FN:17,ZetaFileUpload +FN:90,ZetaFileUpload.dropHandler +FN:103,ZetaFileUpload.dragOverHandler +FN:114,ZetaFileUpload.dragLeaveHandler +FN:120,ZetaFileUpload.mouseLeaveHandler +FN:124,ZetaFileUpload.openFileInput +FN:52,checkTypes +FN:74,typesEqual +FN:128,render +FNF:9 +FNH:2 +FNDA:1,ZetaFileUpload +FNDA:0,ZetaFileUpload.dropHandler +FNDA:0,ZetaFileUpload.dragOverHandler +FNDA:0,ZetaFileUpload.dragLeaveHandler +FNDA:0,ZetaFileUpload.mouseLeaveHandler +FNDA:0,ZetaFileUpload.openFileInput +FNDA:0,checkTypes +FNDA:0,typesEqual +FNDA:1,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,4 +DA:18,1 +DA:19,1 +DA:20,1 +DA:21,1 +DA:22,1 +DA:23,1 +DA:24,1 +DA:25,1 +DA:26,1 +DA:27,1 +DA:28,1 +DA:29,1 +DA:30,1 +DA:31,1 +DA:32,1 +DA:33,1 +DA:34,1 +DA:35,1 +DA:36,1 +DA:37,1 +DA:38,1 +DA:39,1 +DA:40,1 +DA:41,1 +DA:42,1 +DA:43,1 +DA:44,1 +DA:45,1 +DA:46,1 +DA:47,1 +DA:48,1 +DA:49,1 +DA:50,1 +DA:51,1 +DA:52,1 +DA:53,0 +DA:54,0 +DA:55,0 +DA:56,0 +DA:57,0 +DA:58,0 +DA:59,0 +DA:60,0 +DA:61,0 +DA:62,0 +DA:63,0 +DA:64,0 +DA:65,0 +DA:66,0 +DA:67,0 +DA:68,0 +DA:69,0 +DA:70,0 +DA:71,0 +DA:72,0 +DA:73,1 +DA:74,1 +DA:75,0 +DA:76,0 +DA:77,0 +DA:78,0 +DA:79,0 +DA:80,0 +DA:81,0 +DA:82,0 +DA:83,0 +DA:84,0 +DA:85,0 +DA:86,0 +DA:87,0 +DA:88,0 +DA:89,1 +DA:90,1 +DA:91,0 +DA:92,0 +DA:93,0 +DA:94,0 +DA:95,0 +DA:96,0 +DA:97,0 +DA:98,0 +DA:99,0 +DA:100,0 +DA:101,0 +DA:102,1 +DA:103,1 +DA:104,0 +DA:105,0 +DA:106,0 +DA:107,0 +DA:108,0 +DA:109,0 +DA:110,0 +DA:111,0 +DA:112,0 +DA:113,1 +DA:114,1 +DA:115,0 +DA:116,0 +DA:117,0 +DA:118,0 +DA:119,1 +DA:120,1 +DA:121,0 +DA:122,0 +DA:123,1 +DA:124,1 +DA:125,0 +DA:126,0 +DA:127,4 +DA:128,4 +DA:129,1 +DA:130,1 +DA:131,1 +DA:132,1 +DA:133,1 +DA:134,1 +DA:135,1 +DA:136,1 +DA:137,1 +DA:138,1 +DA:139,1 +DA:140,1 +DA:141,1 +DA:142,1 +DA:143,1 +DA:144,1 +DA:145,1 +DA:146,1 +DA:147,4 +DA:148,4 +DA:149,4 +DA:150,4 +DA:151,4 +DA:152,4 +DA:153,4 +DA:154,4 +DA:155,4 +LF:155 +LH:93 +BRDA:148,0,0,0 +BRDA:17,1,0,1 +BRDA:128,2,0,1 +BRDA:142,3,0,0 +BRF:4 +BRH:2 +end_of_record +TN: +SF:src\components\global-header\global-header.ts +FN:20,ZetaGlobalHeader +FN:27,render +FNF:2 +FNH:2 +FNDA:3,ZetaGlobalHeader +FNDA:3,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,4 +DA:18,4 +DA:19,4 +DA:20,4 +DA:21,3 +DA:22,3 +DA:23,3 +DA:24,3 +DA:25,3 +DA:26,4 +DA:27,4 +DA:28,3 +DA:29,3 +DA:30,3 +DA:31,3 +DA:32,3 +DA:33,3 +DA:34,3 +DA:35,3 +DA:36,3 +DA:37,3 +DA:38,3 +DA:39,3 +DA:40,3 +DA:41,3 +DA:42,3 +DA:43,3 +DA:44,4 +DA:45,4 +DA:46,4 +DA:47,4 +DA:48,4 +DA:49,4 +DA:50,4 +DA:51,4 +DA:52,4 +LF:52 +LH:52 +BRDA:45,0,0,0 +BRDA:20,1,0,3 +BRDA:27,2,0,3 +BRDA:35,3,0,0 +BRDA:41,4,0,0 +BRF:5 +BRH:2 +end_of_record +TN: +SF:src\components\grid-menu-item\grid-menu-item.ts +FN:18,ZetaGridMenuItem +FN:22,render +FNF:2 +FNH:2 +FNDA:43,ZetaGridMenuItem +FNDA:43,render +DA:1,6 +DA:2,6 +DA:3,6 +DA:4,6 +DA:5,6 +DA:6,6 +DA:7,6 +DA:8,6 +DA:9,6 +DA:10,6 +DA:11,6 +DA:12,6 +DA:13,6 +DA:14,6 +DA:15,6 +DA:16,6 +DA:17,6 +DA:18,6 +DA:19,43 +DA:20,43 +DA:21,6 +DA:22,6 +DA:23,43 +DA:24,43 +DA:25,43 +DA:26,43 +DA:27,43 +DA:28,43 +DA:29,43 +DA:30,43 +DA:31,43 +DA:32,43 +DA:33,6 +DA:34,6 +DA:35,6 +DA:36,6 +DA:37,6 +DA:38,6 +DA:39,6 +DA:40,6 +DA:41,6 +LF:41 +LH:41 +BRDA:34,0,0,0 +BRDA:18,1,0,43 +BRDA:22,2,0,43 +BRDA:25,3,0,0 +BRF:4 +BRH:2 +end_of_record +TN: +SF:src\components\icon\icon.ts +FN:12,ZetaIcon +FN:27,ZetaIcon.sizeIsNum +FN:29,render +FNF:3 +FNH:3 +FNDA:314,ZetaIcon +FNDA:631,ZetaIcon.sizeIsNum +FNDA:631,render +DA:1,34 +DA:2,34 +DA:3,34 +DA:4,34 +DA:5,34 +DA:6,34 +DA:7,34 +DA:8,34 +DA:9,34 +DA:10,34 +DA:11,34 +DA:12,34 +DA:13,314 +DA:14,314 +DA:15,314 +DA:16,314 +DA:17,314 +DA:18,314 +DA:19,314 +DA:20,314 +DA:21,314 +DA:22,314 +DA:23,314 +DA:24,314 +DA:25,314 +DA:26,314 +DA:27,314 +DA:28,34 +DA:29,34 +DA:30,631 +DA:31,631 +DA:32,631 +DA:33,631 +DA:34,631 +DA:35,631 +DA:36,631 +DA:37,631 +DA:38,631 +DA:39,34 +DA:40,34 +LF:40 +LH:40 +BRDA:39,0,0,0 +BRDA:12,1,0,314 +BRDA:27,2,0,631 +BRDA:29,3,0,631 +BRDA:30,4,0,16 +BRDA:33,5,0,92 +BRDA:34,6,0,2 +BRDA:37,7,0,314 +BRDA:30,8,0,615 +BRDA:33,9,0,539 +BRDA:34,10,0,629 +BRF:11 +BRH:10 +end_of_record +TN: +SF:src\components\in-page-banner\in-page-banner.ts +FN:22,ZetaInPageBanner +FN:35,ZetaInPageBanner.getIcon +FN:48,render +FNF:3 +FNH:3 +FNDA:3,ZetaInPageBanner +FNDA:3,ZetaInPageBanner.getIcon +FNDA:3,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,4 +DA:18,4 +DA:19,4 +DA:20,4 +DA:21,4 +DA:22,4 +DA:23,3 +DA:24,3 +DA:25,3 +DA:26,3 +DA:27,3 +DA:28,3 +DA:29,3 +DA:30,3 +DA:31,3 +DA:32,3 +DA:33,3 +DA:34,3 +DA:35,3 +DA:36,3 +DA:37,3 +DA:38,0 +DA:39,3 +DA:40,0 +DA:41,3 +DA:42,0 +DA:43,3 +DA:44,3 +DA:45,3 +DA:46,3 +DA:47,4 +DA:48,4 +DA:49,3 +DA:50,3 +DA:51,3 +DA:52,3 +DA:53,3 +DA:54,3 +DA:55,3 +DA:56,3 +DA:57,3 +DA:58,3 +DA:59,3 +DA:60,3 +DA:61,3 +DA:62,3 +DA:63,3 +DA:64,3 +DA:65,4 +DA:66,4 +DA:67,4 +DA:68,4 +DA:69,4 +DA:70,4 +DA:71,4 +LF:71 +LH:68 +BRDA:33,0,0,0 +BRDA:22,1,0,3 +BRDA:35,2,0,3 +BRDA:37,3,0,0 +BRDA:39,4,0,0 +BRDA:41,5,0,0 +BRDA:48,6,0,3 +BRF:7 +BRH:3 +end_of_record +TN: +SF:src\components\list\list.ts +FN:15,ZetaList +FN:19,render +FNF:2 +FNH:0 +FNDA:0,ZetaList +FNDA:0,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,0 +DA:17,0 +DA:18,4 +DA:19,4 +DA:20,0 +DA:21,0 +DA:22,4 +DA:23,4 +DA:24,4 +DA:25,4 +DA:26,4 +DA:27,4 +DA:28,4 +DA:29,4 +DA:30,4 +LF:30 +LH:26 +BRF:0 +BRH:0 +end_of_record +TN: +SF:src\components\list\list-item\list-item.ts +FN:19,render +FNF:1 +FNH:1 +FNDA:18,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,4 +DA:18,4 +DA:19,4 +DA:20,18 +DA:21,18 +DA:22,18 +DA:23,18 +DA:24,18 +DA:25,18 +DA:26,18 +DA:27,18 +DA:28,18 +DA:29,18 +DA:30,18 +DA:31,18 +DA:32,4 +DA:33,4 +DA:34,4 +DA:35,4 +DA:36,4 +DA:37,4 +DA:38,4 +DA:39,4 +DA:40,4 +LF:40 +LH:40 +BRDA:19,0,0,18 +BRF:1 +BRH:1 +end_of_record +TN: +SF:src\components\navigation-bar\navigation-bar.ts +FN:15,ZetaNavigationBar +FN:18,render +FNF:2 +FNH:2 +FNDA:5,ZetaNavigationBar +FNDA:5,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,5 +DA:17,4 +DA:18,4 +DA:19,5 +DA:20,5 +DA:21,4 +DA:22,4 +DA:23,4 +DA:24,4 +DA:25,4 +DA:26,4 +DA:27,4 +DA:28,4 +DA:29,4 +DA:30,4 +LF:30 +LH:30 +BRDA:15,0,0,5 +BRDA:18,1,0,5 +BRF:2 +BRH:2 +end_of_record +TN: +SF:src\components\navigation-drawer\navigation-drawer.ts +FN:26,ZetaNavigationDrawer +FN:41,render +FNF:2 +FNH:2 +FNDA:1,ZetaNavigationDrawer +FNDA:1,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,4 +DA:18,4 +DA:19,4 +DA:20,4 +DA:21,4 +DA:22,4 +DA:23,4 +DA:24,4 +DA:25,4 +DA:26,4 +DA:27,1 +DA:28,1 +DA:29,1 +DA:30,1 +DA:31,1 +DA:32,1 +DA:33,1 +DA:34,1 +DA:35,4 +DA:36,4 +DA:37,4 +DA:38,4 +DA:39,4 +DA:40,4 +DA:41,4 +DA:42,1 +DA:43,1 +DA:44,1 +DA:45,1 +DA:46,1 +DA:47,1 +DA:48,1 +DA:49,1 +DA:50,1 +DA:51,1 +DA:52,1 +DA:53,1 +DA:54,4 +DA:55,4 +DA:56,4 +DA:57,4 +DA:58,4 +DA:59,4 +DA:60,4 +DA:61,4 +DA:62,4 +LF:62 +LH:62 +BRDA:55,0,0,0 +BRDA:26,1,0,1 +BRDA:41,2,0,1 +BRF:3 +BRH:2 +end_of_record +TN: +SF:src\components\navigation-drawer\navigation-drawer-footer\navigation-drawer-footer.ts +FN:19,ZetaNavigationDrawerFooter +FN:63,getLogoFooter +FN:72,render +FN:54,ZetaNavigationDrawerFooter.handleSlotChange +FNF:4 +FNH:2 +FNDA:1,ZetaNavigationDrawerFooter +FNDA:0,getLogoFooter +FNDA:1,render +FNDA:0,ZetaNavigationDrawerFooter.handleSlotChange +DA:1,5 +DA:2,5 +DA:3,5 +DA:4,5 +DA:5,5 +DA:6,5 +DA:7,5 +DA:8,5 +DA:9,5 +DA:10,5 +DA:11,5 +DA:12,5 +DA:13,5 +DA:14,5 +DA:15,5 +DA:16,5 +DA:17,5 +DA:18,5 +DA:19,5 +DA:20,1 +DA:21,1 +DA:22,1 +DA:23,1 +DA:24,1 +DA:25,1 +DA:26,1 +DA:27,1 +DA:28,1 +DA:29,1 +DA:30,1 +DA:31,1 +DA:32,1 +DA:33,1 +DA:34,1 +DA:35,1 +DA:36,1 +DA:37,1 +DA:38,1 +DA:39,1 +DA:40,1 +DA:41,1 +DA:42,1 +DA:43,1 +DA:44,1 +DA:45,1 +DA:46,1 +DA:47,1 +DA:48,1 +DA:49,1 +DA:50,1 +DA:51,1 +DA:52,1 +DA:53,1 +DA:54,1 +DA:55,0 +DA:56,0 +DA:57,0 +DA:58,0 +DA:59,0 +DA:60,0 +DA:61,0 +DA:62,5 +DA:63,5 +DA:64,0 +DA:65,0 +DA:66,0 +DA:67,0 +DA:68,0 +DA:69,0 +DA:70,0 +DA:71,5 +DA:72,5 +DA:73,1 +DA:74,1 +DA:75,1 +DA:76,1 +DA:77,0 +DA:78,1 +DA:79,1 +DA:80,5 +DA:81,5 +DA:82,5 +DA:83,5 +DA:84,5 +DA:85,5 +DA:86,5 +DA:87,5 +DA:88,5 +LF:88 +LH:73 +BRDA:19,0,0,1 +BRDA:45,1,0,0 +BRDA:72,2,0,1 +BRDA:76,3,0,0 +BRF:4 +BRH:2 +end_of_record +TN: +SF:src\components\navigation-drawer\navigation-drawer-header\navigation-drawer-header.ts +FN:16,ZetaNavigationDrawerHeader +FN:26,render +FNF:2 +FNH:0 +FNDA:0,ZetaNavigationDrawerHeader +FNDA:0,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,0 +DA:18,0 +DA:19,0 +DA:20,0 +DA:21,0 +DA:22,0 +DA:23,0 +DA:24,0 +DA:25,4 +DA:26,4 +DA:27,0 +DA:28,0 +DA:29,0 +DA:30,0 +DA:31,0 +DA:32,0 +DA:33,0 +DA:34,0 +DA:35,0 +DA:36,0 +DA:37,0 +DA:38,0 +DA:39,0 +DA:40,4 +DA:41,4 +DA:42,4 +DA:43,4 +DA:44,4 +DA:45,4 +DA:46,4 +DA:47,4 +DA:48,4 +LF:48 +LH:27 +BRF:0 +BRH:0 +end_of_record +TN: +SF:src\components\navigation-drawer\navigation-drawer-item\navigation-drawer-item.ts +FN:18,ZetaNavigationDrawerItem +FN:25,render +FNF:2 +FNH:2 +FNDA:1,ZetaNavigationDrawerItem +FNDA:1,render +DA:1,5 +DA:2,5 +DA:3,5 +DA:4,5 +DA:5,5 +DA:6,5 +DA:7,5 +DA:8,5 +DA:9,5 +DA:10,5 +DA:11,5 +DA:12,5 +DA:13,5 +DA:14,5 +DA:15,5 +DA:16,5 +DA:17,5 +DA:18,5 +DA:19,1 +DA:20,1 +DA:21,1 +DA:22,1 +DA:23,1 +DA:24,5 +DA:25,5 +DA:26,1 +DA:27,1 +DA:28,1 +DA:29,1 +DA:30,1 +DA:31,1 +DA:32,1 +DA:33,1 +DA:34,1 +DA:35,1 +DA:36,1 +DA:37,5 +DA:38,5 +DA:39,5 +DA:40,5 +DA:41,5 +DA:42,5 +DA:43,5 +DA:44,5 +DA:45,5 +LF:45 +LH:45 +BRDA:38,0,0,0 +BRDA:18,1,0,1 +BRDA:25,2,0,1 +BRF:3 +BRH:2 +end_of_record +TN: +SF:src\components\navigation-drawer\navigation-drawer-sub-item\navigation-drawer-sub-item.ts +FN:15,ZetaNavigationDrawerSubItem +FN:22,render +FNF:2 +FNH:2 +FNDA:1,ZetaNavigationDrawerSubItem +FNDA:1,render +DA:1,5 +DA:2,5 +DA:3,5 +DA:4,5 +DA:5,5 +DA:6,5 +DA:7,5 +DA:8,5 +DA:9,5 +DA:10,5 +DA:11,5 +DA:12,5 +DA:13,5 +DA:14,5 +DA:15,5 +DA:16,1 +DA:17,1 +DA:18,1 +DA:19,1 +DA:20,1 +DA:21,5 +DA:22,5 +DA:23,1 +DA:24,1 +DA:25,1 +DA:26,1 +DA:27,1 +DA:28,1 +DA:29,1 +DA:30,5 +DA:31,5 +DA:32,5 +DA:33,5 +DA:34,5 +DA:35,5 +DA:36,5 +DA:37,5 +DA:38,5 +LF:38 +LH:38 +BRDA:31,0,0,0 +BRDA:15,1,0,1 +BRDA:22,2,0,1 +BRF:3 +BRH:2 +end_of_record +TN: +SF:src\components\navigation-profile\navigation-profile.ts +FN:16,render +FNF:1 +FNH:1 +FNDA:1,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,1 +DA:18,1 +DA:19,1 +DA:20,1 +DA:21,1 +DA:22,1 +DA:23,1 +DA:24,1 +DA:25,1 +DA:26,1 +DA:27,4 +DA:28,4 +DA:29,4 +DA:30,4 +DA:31,4 +DA:32,4 +DA:33,4 +DA:34,4 +DA:35,4 +LF:35 +LH:35 +BRDA:28,0,0,0 +BRDA:16,1,0,1 +BRF:2 +BRH:1 +end_of_record +TN: +SF:src\components\navigation-rail\navigation-rail-item.ts +FN:19,ZetaNavigationRailItem +FN:31,render +FNF:2 +FNH:2 +FNDA:8,ZetaNavigationRailItem +FNDA:9,render +DA:1,5 +DA:2,5 +DA:3,5 +DA:4,5 +DA:5,5 +DA:6,5 +DA:7,5 +DA:8,5 +DA:9,5 +DA:10,5 +DA:11,5 +DA:12,5 +DA:13,5 +DA:14,5 +DA:15,5 +DA:16,5 +DA:17,5 +DA:18,5 +DA:19,5 +DA:20,8 +DA:21,8 +DA:22,8 +DA:23,8 +DA:24,8 +DA:25,8 +DA:26,8 +DA:27,8 +DA:28,8 +DA:29,8 +DA:30,5 +DA:31,5 +DA:32,9 +DA:33,9 +DA:34,9 +DA:35,9 +DA:36,9 +DA:37,9 +DA:38,9 +DA:39,5 +DA:40,5 +DA:41,5 +DA:42,5 +DA:43,5 +DA:44,5 +DA:45,5 +DA:46,5 +DA:47,5 +LF:47 +LH:47 +BRDA:40,0,0,0 +BRDA:19,1,0,8 +BRDA:31,2,0,9 +BRF:3 +BRH:2 +end_of_record +TN: +SF:src\components\navigation-rail\navigation-rail.ts +FN:16,render +FNF:1 +FNH:1 +FNDA:2,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,2 +DA:18,2 +DA:19,4 +DA:20,4 +DA:21,4 +DA:22,4 +DA:23,4 +DA:24,4 +DA:25,4 +DA:26,4 +DA:27,4 +LF:27 +LH:27 +BRDA:20,0,0,0 +BRDA:16,1,0,2 +BRF:2 +BRH:1 +end_of_record +TN: +SF:src\components\pagination\pagination.ts +FN:22,ZetaPagination +FN:47,ZetaPagination.range +FN:55,ZetaPagination.handlePageChange +FN:62,ZetaPagination.result +FN:37,set currentPage +FN:94,getIconButton +FN:108,render +FNF:7 +FNH:7 +FNDA:10,ZetaPagination +FNDA:10,ZetaPagination.range +FNDA:2,ZetaPagination.handlePageChange +FNDA:10,ZetaPagination.result +FNDA:7,set currentPage +FNDA:40,getIconButton +FNDA:10,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,4 +DA:18,4 +DA:19,4 +DA:20,4 +DA:21,4 +DA:22,4 +DA:23,10 +DA:24,10 +DA:25,10 +DA:26,10 +DA:27,10 +DA:28,10 +DA:29,10 +DA:30,10 +DA:31,10 +DA:32,10 +DA:33,10 +DA:34,10 +DA:35,10 +DA:36,10 +DA:37,10 +DA:38,7 +DA:39,2 +DA:40,7 +DA:41,1 +DA:42,5 +DA:43,4 +DA:44,4 +DA:45,7 +DA:46,10 +DA:47,10 +DA:48,10 +DA:49,10 +DA:50,10 +DA:51,10 +DA:52,10 +DA:53,10 +DA:54,10 +DA:55,10 +DA:56,2 +DA:57,2 +DA:58,2 +DA:59,10 +DA:60,10 +DA:61,10 +DA:62,10 +DA:63,10 +DA:64,10 +DA:65,10 +DA:66,10 +DA:67,10 +DA:68,10 +DA:69,10 +DA:70,10 +DA:71,1 +DA:72,1 +DA:73,9 +DA:74,10 +DA:75,6 +DA:76,6 +DA:77,6 +DA:78,6 +DA:79,3 +DA:80,10 +DA:81,2 +DA:82,2 +DA:83,2 +DA:84,2 +DA:85,1 +DA:86,10 +DA:87,1 +DA:88,1 +DA:89,1 +DA:90,0 +DA:91,0 +DA:92,10 +DA:93,4 +DA:94,4 +DA:95,40 +DA:96,40 +DA:97,40 +DA:98,40 +DA:99,40 +DA:100,40 +DA:101,40 +DA:102,40 +DA:103,40 +DA:104,40 +DA:105,40 +DA:106,40 +DA:107,4 +DA:108,4 +DA:109,10 +DA:110,10 +DA:111,10 +DA:112,10 +DA:113,10 +DA:114,10 +DA:115,10 +DA:116,10 +DA:117,68 +DA:118,68 +DA:119,68 +DA:120,68 +DA:121,10 +DA:122,68 +DA:123,58 +DA:124,58 +DA:125,10 +DA:126,10 +DA:127,10 +DA:128,10 +DA:129,10 +DA:130,10 +DA:131,4 +DA:132,4 +DA:133,4 +DA:134,4 +DA:135,4 +DA:136,4 +DA:137,4 +LF:137 +LH:135 +BRDA:23,0,0,0 +BRDA:22,1,0,10 +BRDA:47,2,0,10 +BRDA:49,3,0,48 +BRDA:55,4,0,2 +BRDA:62,5,0,10 +BRDA:70,6,0,1 +BRDA:72,7,0,9 +BRDA:74,8,0,6 +BRDA:74,9,0,6 +BRDA:78,10,0,3 +BRDA:80,11,0,2 +BRDA:84,12,0,1 +BRDA:86,13,0,1 +BRDA:89,14,0,0 +BRDA:37,15,0,7 +BRDA:38,16,0,2 +BRDA:40,17,0,5 +BRDA:40,18,0,1 +BRDA:42,19,0,4 +BRDA:94,20,0,40 +BRDA:100,21,0,2 +BRDA:108,22,0,10 +BRDA:116,23,0,68 +BRDA:120,24,0,10 +BRDA:122,25,0,58 +BRF:26 +BRH:24 +end_of_record +TN: +SF:src\components\progress-indicators\progress-bar\progress-bar.ts +FN:13,ZetaProgressBar +FN:33,getBufferingDots +FN:45,render +FNF:3 +FNH:3 +FNDA:1,ZetaProgressBar +FNDA:1,getBufferingDots +FNDA:1,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,1 +DA:15,1 +DA:16,1 +DA:17,1 +DA:18,1 +DA:19,1 +DA:20,1 +DA:21,1 +DA:22,4 +DA:23,4 +DA:24,4 +DA:25,4 +DA:26,4 +DA:27,4 +DA:28,4 +DA:29,4 +DA:30,4 +DA:31,4 +DA:32,4 +DA:33,4 +DA:34,1 +DA:35,0 +DA:36,0 +DA:37,0 +DA:38,0 +DA:39,0 +DA:40,1 +DA:41,1 +DA:42,1 +DA:43,1 +DA:44,4 +DA:45,4 +DA:46,1 +DA:47,1 +DA:48,1 +DA:49,1 +DA:50,1 +DA:51,1 +DA:52,1 +DA:53,1 +DA:54,1 +DA:55,1 +DA:56,1 +DA:57,1 +DA:58,1 +DA:59,1 +DA:60,4 +DA:61,4 +DA:62,4 +DA:63,4 +DA:64,4 +DA:65,4 +DA:66,4 +DA:67,4 +DA:68,4 +LF:68 +LH:63 +BRDA:61,0,0,0 +BRDA:13,1,0,1 +BRDA:33,2,0,1 +BRDA:34,3,0,0 +BRDA:45,4,0,1 +BRDA:51,5,0,0 +BRDA:54,6,0,0 +BRF:7 +BRH:3 +end_of_record +TN: +SF:src\components\progress-indicators\progress-circle\progress-circle.ts +FN:17,ZetaProgressCircle +FN:48,ZetaProgressCircle.getStrokeDasharray +FN:53,ZetaProgressCircle.getStrokeDashoffset +FN:58,ZetaProgressCircle.renderUploading +FN:79,type.styleMap.padding +FN:31,set progress +FN:94,render +FNF:7 +FNH:7 +FNDA:9,ZetaProgressCircle +FNDA:20,ZetaProgressCircle.getStrokeDasharray +FNDA:10,ZetaProgressCircle.getStrokeDashoffset +FNDA:10,ZetaProgressCircle.renderUploading +FNDA:1,type.styleMap.padding +FNDA:5,set progress +FNDA:10,render +DA:1,5 +DA:2,5 +DA:3,5 +DA:4,5 +DA:5,5 +DA:6,5 +DA:7,5 +DA:8,5 +DA:9,5 +DA:10,5 +DA:11,5 +DA:12,5 +DA:13,5 +DA:14,5 +DA:15,5 +DA:16,5 +DA:17,5 +DA:18,9 +DA:19,9 +DA:20,9 +DA:21,9 +DA:22,9 +DA:23,9 +DA:24,9 +DA:25,9 +DA:26,9 +DA:27,9 +DA:28,9 +DA:29,9 +DA:30,9 +DA:31,9 +DA:32,5 +DA:33,2 +DA:34,2 +DA:35,2 +DA:36,3 +DA:37,5 +DA:38,1 +DA:39,1 +DA:40,1 +DA:41,2 +DA:42,2 +DA:43,5 +DA:44,9 +DA:45,9 +DA:46,9 +DA:47,9 +DA:48,9 +DA:49,20 +DA:50,20 +DA:51,20 +DA:52,9 +DA:53,9 +DA:54,10 +DA:55,10 +DA:56,10 +DA:57,9 +DA:58,9 +DA:59,10 +DA:60,4 +DA:61,4 +DA:62,4 +DA:63,4 +DA:64,4 +DA:65,4 +DA:66,4 +DA:67,4 +DA:68,4 +DA:69,4 +DA:70,4 +DA:71,4 +DA:72,4 +DA:73,4 +DA:74,4 +DA:75,4 +DA:76,0 +DA:77,4 +DA:78,4 +DA:79,4 +DA:80,1 +DA:81,4 +DA:82,4 +DA:83,4 +DA:84,4 +DA:85,4 +DA:86,4 +DA:87,4 +DA:88,6 +DA:89,6 +DA:90,6 +DA:91,6 +DA:92,10 +DA:93,5 +DA:94,5 +DA:95,10 +DA:96,10 +DA:97,10 +DA:98,10 +DA:99,10 +DA:100,10 +DA:101,10 +DA:102,10 +DA:103,10 +DA:104,10 +DA:105,10 +DA:106,10 +DA:107,10 +DA:108,10 +DA:109,10 +DA:110,10 +DA:111,10 +DA:112,10 +DA:113,10 +DA:114,10 +DA:115,10 +DA:116,10 +DA:117,10 +DA:118,10 +DA:119,10 +DA:120,5 +DA:121,5 +DA:122,5 +DA:123,5 +DA:124,5 +DA:125,5 +DA:126,5 +LF:126 +LH:125 +BRDA:18,0,0,0 +BRDA:17,1,0,9 +BRDA:48,2,0,20 +BRDA:53,3,0,10 +BRDA:58,4,0,10 +BRDA:75,5,0,0 +BRDA:87,6,0,6 +BRDA:31,7,0,5 +BRDA:32,8,0,3 +BRDA:32,9,0,4 +BRDA:37,10,0,1 +BRDA:40,11,0,2 +BRDA:94,12,0,10 +BRDA:98,13,0,6 +BRDA:109,14,0,0 +BRDA:59,15,0,4 +BRDA:79,16,0,3 +BRDA:32,17,0,2 +BRDA:35,18,0,3 +BRDA:37,19,0,3 +BRDA:98,20,0,4 +BRF:21 +BRH:18 +end_of_record +TN: +SF:src\components\radio-button\radio-button-controller.ts +FN:5,RadioButtonController +FN:8,hostConnected +FN:12,hostDisconnected +FN:15,handleChange +FN:24,get radios +FNF:5 +FNH:5 +FNDA:9,RadioButtonController +FNDA:12,hostConnected +FNDA:9,hostDisconnected +FNDA:15,handleChange +FNDA:4,get radios +DA:1,5 +DA:2,5 +DA:3,5 +DA:4,5 +DA:5,5 +DA:6,9 +DA:7,5 +DA:8,5 +DA:9,12 +DA:10,12 +DA:11,12 +DA:12,5 +DA:13,9 +DA:14,9 +DA:15,5 +DA:16,15 +DA:17,4 +DA:18,8 +DA:19,4 +DA:20,4 +DA:21,4 +DA:22,4 +DA:23,15 +DA:24,5 +DA:25,4 +DA:26,4 +DA:27,4 +DA:28,5 +DA:29,5 +DA:30,5 +DA:31,5 +LF:31 +LH:31 +BRDA:5,0,0,9 +BRDA:8,1,0,12 +BRDA:12,2,0,9 +BRDA:15,3,0,15 +BRDA:16,4,0,4 +BRDA:17,5,0,8 +BRDA:18,6,0,4 +BRDA:24,7,0,4 +BRF:8 +BRH:8 +end_of_record +TN: +SF:src\components\radio-button\radio-button.ts +FN:17,ZetaRadioButton +FN:23,handleChange +FNF:2 +FNH:2 +FNDA:9,ZetaRadioButton +FNDA:3,handleChange +DA:1,5 +DA:2,5 +DA:3,5 +DA:4,5 +DA:5,5 +DA:6,5 +DA:7,5 +DA:8,5 +DA:9,5 +DA:10,5 +DA:11,5 +DA:12,5 +DA:13,5 +DA:14,5 +DA:15,5 +DA:16,5 +DA:17,5 +DA:18,9 +DA:19,9 +DA:20,9 +DA:21,9 +DA:22,5 +DA:23,5 +DA:24,3 +DA:25,3 +DA:26,3 +DA:27,5 +DA:28,5 +DA:29,5 +DA:30,5 +DA:31,5 +DA:32,5 +DA:33,5 +DA:34,5 +LF:34 +LH:34 +BRDA:17,0,0,9 +BRDA:23,1,0,3 +BRF:2 +BRH:2 +end_of_record +TN: +SF:src\components\search\search.ts +FN:21,ZetaSearch +FN:58,ZetaSearch.resetInput +FN:62,ZetaSearch.handleSpeechRecognition +FN:79,ZetaSearch.renderRightIcon +FN:88,ZetaSearch.renderCancelIcon +FN:37,set round +FN:43,handleChange +FN:47,focus +FN:51,blur +FN:92,render +FNF:10 +FNH:8 +FNDA:12,ZetaSearch +FNDA:1,ZetaSearch.resetInput +FNDA:0,ZetaSearch.handleSpeechRecognition +FNDA:17,ZetaSearch.renderRightIcon +FNDA:17,ZetaSearch.renderCancelIcon +FNDA:0,set round +FNDA:1,handleChange +FNDA:2,focus +FNDA:1,blur +FNDA:17,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,4 +DA:18,4 +DA:19,4 +DA:20,4 +DA:21,4 +DA:22,12 +DA:23,12 +DA:24,12 +DA:25,12 +DA:26,12 +DA:27,12 +DA:28,12 +DA:29,12 +DA:30,12 +DA:31,12 +DA:32,12 +DA:33,12 +DA:34,12 +DA:35,12 +DA:36,12 +DA:37,12 +DA:38,0 +DA:39,0 +DA:40,0 +DA:41,0 +DA:42,12 +DA:43,12 +DA:44,1 +DA:45,1 +DA:46,12 +DA:47,12 +DA:48,2 +DA:49,2 +DA:50,12 +DA:51,12 +DA:52,1 +DA:53,1 +DA:54,12 +DA:55,12 +DA:56,12 +DA:57,12 +DA:58,12 +DA:59,1 +DA:60,1 +DA:61,12 +DA:62,12 +DA:63,0 +DA:64,0 +DA:65,0 +DA:66,0 +DA:67,0 +DA:68,0 +DA:69,0 +DA:70,0 +DA:71,0 +DA:72,0 +DA:73,0 +DA:74,0 +DA:75,0 +DA:76,0 +DA:77,0 +DA:78,12 +DA:79,12 +DA:80,17 +DA:81,2 +DA:82,2 +DA:83,17 +DA:84,15 +DA:85,15 +DA:86,17 +DA:87,12 +DA:88,12 +DA:89,17 +DA:90,17 +DA:91,4 +DA:92,4 +DA:93,17 +DA:94,17 +DA:95,17 +DA:96,17 +DA:97,17 +DA:98,17 +DA:99,17 +DA:100,4 +DA:101,4 +DA:102,4 +DA:103,4 +DA:104,4 +DA:105,4 +DA:106,4 +DA:107,4 +DA:108,4 +LF:108 +LH:89 +BRDA:101,0,0,0 +BRDA:21,1,0,12 +BRDA:58,2,0,1 +BRDA:79,3,0,17 +BRDA:80,4,0,4 +BRDA:80,5,0,2 +BRDA:81,6,0,0 +BRDA:83,7,0,15 +BRDA:88,8,0,17 +BRDA:89,9,0,2 +BRDA:89,10,0,15 +BRDA:43,11,0,1 +BRDA:47,12,0,2 +BRDA:51,13,0,1 +BRDA:92,14,0,17 +BRF:15 +BRH:13 +end_of_record +TN: +SF:src\components\segmented-control\segmented-control.ts +FN:31,ZetaSegmentedControl +FN:40,Promise.then.item.active +FN:50,findSegmentedItem +FN:60,firstUpdated +FN:69,Promise.then.initComplete +FN:74,render +FNF:6 +FNH:6 +FNDA:4,ZetaSegmentedControl +FNDA:1,Promise.then.item.active +FNDA:3,findSegmentedItem +FNDA:4,firstUpdated +FNDA:4,Promise.then.initComplete +FNDA:9,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,4 +DA:18,4 +DA:19,4 +DA:20,4 +DA:21,4 +DA:22,4 +DA:23,4 +DA:24,4 +DA:25,4 +DA:26,4 +DA:27,4 +DA:28,4 +DA:29,4 +DA:30,4 +DA:31,4 +DA:32,4 +DA:33,4 +DA:34,1 +DA:35,1 +DA:36,1 +DA:37,3 +DA:38,3 +DA:39,1 +DA:40,1 +DA:41,0 +DA:42,1 +DA:43,3 +DA:44,2 +DA:45,2 +DA:46,1 +DA:47,4 +DA:48,4 +DA:49,4 +DA:50,4 +DA:51,3 +DA:52,3 +DA:53,3 +DA:54,0 +DA:55,0 +DA:56,0 +DA:57,0 +DA:58,3 +DA:59,4 +DA:60,4 +DA:61,4 +DA:62,12 +DA:63,0 +DA:64,0 +DA:65,4 +DA:66,4 +DA:67,4 +DA:68,4 +DA:69,4 +DA:70,0 +DA:71,4 +DA:72,4 +DA:73,4 +DA:74,4 +DA:75,9 +DA:76,9 +DA:77,9 +DA:78,9 +DA:79,9 +DA:80,9 +DA:81,9 +DA:82,9 +DA:83,9 +DA:84,9 +DA:85,9 +DA:86,9 +DA:87,9 +DA:88,9 +DA:89,4 +DA:90,4 +DA:91,4 +DA:92,4 +DA:93,4 +DA:94,4 +DA:95,4 +DA:96,4 +DA:97,4 +LF:97 +LH:89 +BRDA:90,0,0,0 +BRDA:31,1,0,4 +BRDA:33,2,0,1 +BRDA:34,3,0,0 +BRDA:36,4,0,3 +BRDA:38,5,0,1 +BRDA:43,6,0,2 +BRDA:40,7,0,1 +BRDA:50,8,0,3 +BRDA:53,9,0,0 +BRDA:60,10,0,4 +BRDA:61,11,0,12 +BRDA:62,12,0,0 +BRDA:69,13,0,4 +BRDA:74,14,0,9 +BRDA:79,15,0,0 +BRDA:81,16,0,5 +BRDA:82,17,0,5 +BRDA:82,18,0,4 +BRDA:83,19,0,5 +BRF:20 +BRH:15 +end_of_record +TN: +SF:src\components\segmented-control\segmented-item.ts +FN:14,ZetaSegmentedItem +FN:20,render +FNF:2 +FNH:2 +FNDA:11,ZetaSegmentedItem +FNDA:11,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,11 +DA:16,11 +DA:17,11 +DA:18,11 +DA:19,4 +DA:20,4 +DA:21,11 +DA:22,11 +DA:23,4 +DA:24,4 +DA:25,4 +DA:26,4 +DA:27,4 +DA:28,4 +DA:29,4 +DA:30,4 +DA:31,4 +LF:31 +LH:31 +BRDA:24,0,0,0 +BRDA:14,1,0,11 +BRDA:20,2,0,11 +BRF:3 +BRH:2 +end_of_record +TN: +SF:src\components\slider\slider.ts +FN:20,ZetaSlider +FN:136,ZetaSlider.onHandleMoved +FN:154,ZetaSlider.moveHandle +FN:159,ZetaSlider.mouseDownHandler +FN:185,ZetaSlider.dragHandler +FN:214,ZetaSlider.trackClickHandler +FN:224,ZetaSlider.snapHandle +FN:250,ZetaSlider.updateSelectedArea +FN:259,ZetaSlider.getSteps +FN:67,convertValueToProgress +FN:75,getHandleProgress +FN:86,getHandlePosition +FN:91,getHandleValue +FN:99,convertProgressToValue +FN:106,roundToStepValue +FN:114,setStyles +FN:125,removeStyles +FN:279,updated +FN:302,render +FN:169,dragHandler +FN:171,onMouseUp +FNF:21 +FNH:18 +FNDA:44,ZetaSlider +FNDA:4,ZetaSlider.onHandleMoved +FNDA:79,ZetaSlider.moveHandle +FNDA:4,ZetaSlider.mouseDownHandler +FNDA:3,ZetaSlider.dragHandler +FNDA:0,ZetaSlider.trackClickHandler +FNDA:0,ZetaSlider.snapHandle +FNDA:79,ZetaSlider.updateSelectedArea +FNDA:56,ZetaSlider.getSteps +FNDA:76,convertValueToProgress +FNDA:91,getHandleProgress +FNDA:76,getHandlePosition +FNDA:12,getHandleValue +FNDA:12,convertProgressToValue +FNDA:0,roundToStepValue +FNDA:4,setStyles +FNDA:4,removeStyles +FNDA:56,updated +FNDA:56,render +FNDA:3,dragHandler +FNDA:4,onMouseUp +DA:1,6 +DA:2,6 +DA:3,6 +DA:4,6 +DA:5,6 +DA:6,6 +DA:7,6 +DA:8,6 +DA:9,6 +DA:10,6 +DA:11,6 +DA:12,6 +DA:13,6 +DA:14,6 +DA:15,6 +DA:16,6 +DA:17,6 +DA:18,6 +DA:19,6 +DA:20,6 +DA:21,44 +DA:22,44 +DA:23,44 +DA:24,44 +DA:25,44 +DA:26,44 +DA:27,44 +DA:28,44 +DA:29,44 +DA:30,44 +DA:31,44 +DA:32,44 +DA:33,44 +DA:34,44 +DA:35,44 +DA:36,44 +DA:37,44 +DA:38,44 +DA:39,44 +DA:40,44 +DA:41,44 +DA:42,44 +DA:43,44 +DA:44,44 +DA:45,44 +DA:46,44 +DA:47,44 +DA:48,44 +DA:49,44 +DA:50,44 +DA:51,44 +DA:52,44 +DA:53,44 +DA:54,44 +DA:55,44 +DA:56,44 +DA:57,44 +DA:58,44 +DA:59,44 +DA:60,44 +DA:61,44 +DA:62,44 +DA:63,44 +DA:64,44 +DA:65,44 +DA:66,44 +DA:67,44 +DA:68,76 +DA:69,76 +DA:70,76 +DA:71,76 +DA:72,76 +DA:73,44 +DA:74,44 +DA:75,44 +DA:76,91 +DA:77,91 +DA:78,91 +DA:79,91 +DA:80,91 +DA:81,91 +DA:82,91 +DA:83,44 +DA:84,44 +DA:85,44 +DA:86,44 +DA:87,76 +DA:88,76 +DA:89,44 +DA:90,44 +DA:91,44 +DA:92,12 +DA:93,12 +DA:94,12 +DA:95,12 +DA:96,12 +DA:97,44 +DA:98,44 +DA:99,44 +DA:100,12 +DA:101,12 +DA:102,12 +DA:103,12 +DA:104,44 +DA:105,44 +DA:106,44 +DA:107,0 +DA:108,0 +DA:109,0 +DA:110,0 +DA:111,0 +DA:112,0 +DA:113,44 +DA:114,44 +DA:115,4 +DA:116,4 +DA:117,4 +DA:118,4 +DA:119,4 +DA:120,4 +DA:121,2 +DA:122,2 +DA:123,4 +DA:124,44 +DA:125,44 +DA:126,4 +DA:127,4 +DA:128,4 +DA:129,2 +DA:130,2 +DA:131,4 +DA:132,44 +DA:133,44 +DA:134,44 +DA:135,44 +DA:136,44 +DA:137,4 +DA:138,4 +DA:139,4 +DA:140,2 +DA:141,2 +DA:142,2 +DA:143,2 +DA:144,2 +DA:145,2 +DA:146,2 +DA:147,2 +DA:148,2 +DA:149,2 +DA:150,2 +DA:151,2 +DA:152,4 +DA:153,44 +DA:154,44 +DA:155,79 +DA:156,79 +DA:157,79 +DA:158,44 +DA:159,44 +DA:160,4 +DA:161,4 +DA:162,4 +DA:163,4 +DA:164,4 +DA:165,4 +DA:166,2 +DA:167,2 +DA:168,4 +DA:169,4 +DA:170,4 +DA:171,4 +DA:172,4 +DA:173,4 +DA:174,4 +DA:175,4 +DA:176,4 +DA:177,4 +DA:178,4 +DA:179,4 +DA:180,4 +DA:181,4 +DA:182,4 +DA:183,4 +DA:184,44 +DA:185,44 +DA:186,3 +DA:187,3 +DA:188,3 +DA:189,3 +DA:190,3 +DA:191,3 +DA:192,3 +DA:193,3 +DA:194,3 +DA:195,2 +DA:196,1 +DA:197,1 +DA:198,1 +DA:199,1 +DA:200,1 +DA:201,2 +DA:202,3 +DA:203,3 +DA:204,3 +DA:205,3 +DA:206,3 +DA:207,3 +DA:208,3 +DA:209,3 +DA:210,3 +DA:211,3 +DA:212,3 +DA:213,44 +DA:214,44 +DA:215,0 +DA:216,0 +DA:217,0 +DA:218,0 +DA:219,0 +DA:220,0 +DA:221,0 +DA:222,44 +DA:223,44 +DA:224,44 +DA:225,0 +DA:226,0 +DA:227,0 +DA:228,0 +DA:229,0 +DA:230,0 +DA:231,0 +DA:232,0 +DA:233,0 +DA:234,0 +DA:235,0 +DA:236,0 +DA:237,0 +DA:238,0 +DA:239,0 +DA:240,0 +DA:241,0 +DA:242,0 +DA:243,0 +DA:244,0 +DA:245,0 +DA:246,0 +DA:247,0 +DA:248,44 +DA:249,44 +DA:250,44 +DA:251,79 +DA:252,42 +DA:253,42 +DA:254,79 +DA:255,37 +DA:256,37 +DA:257,79 +DA:258,44 +DA:259,44 +DA:260,56 +DA:261,0 +DA:262,0 +DA:263,0 +DA:264,0 +DA:265,0 +DA:266,0 +DA:267,0 +DA:268,0 +DA:269,0 +DA:270,0 +DA:271,0 +DA:272,0 +DA:273,0 +DA:274,0 +DA:275,0 +DA:276,0 +DA:277,56 +DA:278,6 +DA:279,6 +DA:280,56 +DA:281,36 +DA:282,36 +DA:283,36 +DA:284,0 +DA:285,0 +DA:286,36 +DA:287,36 +DA:288,56 +DA:289,20 +DA:290,20 +DA:291,20 +DA:292,20 +DA:293,0 +DA:294,0 +DA:295,0 +DA:296,20 +DA:297,20 +DA:298,20 +DA:299,20 +DA:300,56 +DA:301,6 +DA:302,6 +DA:303,56 +DA:304,56 +DA:305,56 +DA:306,56 +DA:307,56 +DA:308,56 +DA:309,20 +DA:310,56 +DA:311,56 +DA:312,56 +DA:313,56 +DA:314,6 +DA:315,6 +DA:316,6 +DA:317,6 +DA:318,6 +DA:319,6 +DA:320,6 +DA:321,6 +DA:322,6 +LF:322 +LH:265 +BRDA:315,0,0,0 +BRDA:20,1,0,44 +BRDA:154,2,0,79 +BRDA:250,3,0,79 +BRDA:254,4,0,37 +BRDA:259,5,0,56 +BRDA:260,6,0,0 +BRDA:67,7,0,76 +BRDA:75,8,0,91 +BRDA:86,9,0,76 +BRDA:279,10,0,56 +BRDA:280,11,0,36 +BRDA:292,12,0,0 +BRDA:302,13,0,56 +BRDA:309,14,0,36 +BRDA:136,15,0,32 +BRDA:137,16,0,28 +BRDA:139,17,0,30 +BRDA:159,18,0,32 +BRDA:165,19,0,30 +BRDA:169,20,0,31 +BRDA:171,21,0,32 +BRDA:185,22,0,31 +BRDA:194,23,0,30 +BRDA:195,24,0,29 +BRDA:251,25,0,42 +BRDA:91,26,0,40 +BRDA:99,27,0,40 +BRDA:114,28,0,32 +BRDA:120,29,0,30 +BRDA:125,30,0,32 +BRDA:128,31,0,30 +BRDA:283,32,0,0 +BRDA:288,33,0,20 +BRDA:308,34,0,20 +BRDA:307,35,0,37 +BRDA:309,36,0,18 +BRF:37 +BRH:33 +end_of_record +TN: +SF:src\components\slider\range-selector\range-selector.ts +FN:25,ZetaRangeSelector +FN:61,ZetaRangeSelector.sliderChange +FN:71,onValueUpdated +FN:84,isError +FN:88,handleInputChange +FN:98,updateVisibleInputs +FN:103,updateHiddenInput +FN:110,handleChange +FN:114,firstUpdated +FN:118,getLabel +FN:126,getInput +FN:143,render +FNF:12 +FNH:11 +FNDA:14,ZetaRangeSelector +FNDA:1,ZetaRangeSelector.sliderChange +FNDA:3,onValueUpdated +FNDA:6,isError +FNDA:2,handleInputChange +FNDA:1,updateVisibleInputs +FNDA:17,updateHiddenInput +FNDA:0,handleChange +FNDA:14,firstUpdated +FNDA:33,getLabel +FNDA:66,getInput +FNDA:33,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,4 +DA:18,4 +DA:19,4 +DA:20,4 +DA:21,4 +DA:22,4 +DA:23,4 +DA:24,4 +DA:25,4 +DA:26,14 +DA:27,14 +DA:28,14 +DA:29,14 +DA:30,14 +DA:31,14 +DA:32,14 +DA:33,14 +DA:34,14 +DA:35,14 +DA:36,14 +DA:37,14 +DA:38,14 +DA:39,14 +DA:40,14 +DA:41,14 +DA:42,14 +DA:43,14 +DA:44,14 +DA:45,14 +DA:46,14 +DA:47,14 +DA:48,14 +DA:49,14 +DA:50,14 +DA:51,14 +DA:52,14 +DA:53,14 +DA:54,14 +DA:55,14 +DA:56,14 +DA:57,14 +DA:58,14 +DA:59,14 +DA:60,14 +DA:61,14 +DA:62,1 +DA:63,1 +DA:64,1 +DA:65,1 +DA:66,1 +DA:67,4 +DA:68,4 +DA:69,4 +DA:70,4 +DA:71,4 +DA:72,3 +DA:73,3 +DA:74,3 +DA:75,3 +DA:76,3 +DA:77,3 +DA:78,3 +DA:79,2 +DA:80,2 +DA:81,3 +DA:82,3 +DA:83,4 +DA:84,4 +DA:85,6 +DA:86,6 +DA:87,4 +DA:88,4 +DA:89,2 +DA:90,2 +DA:91,1 +DA:92,1 +DA:93,1 +DA:94,1 +DA:95,2 +DA:96,2 +DA:97,4 +DA:98,4 +DA:99,1 +DA:100,1 +DA:101,1 +DA:102,4 +DA:103,4 +DA:104,17 +DA:105,17 +DA:106,17 +DA:107,17 +DA:108,17 +DA:109,4 +DA:110,4 +DA:111,0 +DA:112,0 +DA:113,4 +DA:114,4 +DA:115,14 +DA:116,14 +DA:117,4 +DA:118,4 +DA:119,33 +DA:120,2 +DA:121,33 +DA:122,31 +DA:123,31 +DA:124,33 +DA:125,4 +DA:126,4 +DA:127,66 +DA:128,66 +DA:129,66 +DA:130,66 +DA:131,66 +DA:132,66 +DA:133,66 +DA:134,66 +DA:135,66 +DA:136,66 +DA:137,66 +DA:138,66 +DA:139,66 +DA:140,66 +DA:141,66 +DA:142,4 +DA:143,4 +DA:144,33 +DA:145,33 +DA:146,33 +DA:147,33 +DA:148,33 +DA:149,33 +DA:150,33 +DA:151,33 +DA:152,33 +DA:153,33 +DA:154,33 +DA:155,33 +DA:156,33 +DA:157,33 +DA:158,33 +DA:159,33 +DA:160,33 +DA:161,33 +DA:162,33 +DA:163,33 +DA:164,33 +DA:165,33 +DA:166,4 +DA:167,4 +DA:168,4 +DA:169,4 +DA:170,4 +DA:171,4 +DA:172,4 +DA:173,4 +DA:174,4 +LF:174 +LH:172 +BRDA:167,0,0,0 +BRDA:25,1,0,14 +BRDA:61,2,0,1 +BRDA:71,3,0,3 +BRDA:78,4,0,2 +BRDA:84,5,0,6 +BRDA:88,6,0,2 +BRDA:90,7,0,1 +BRDA:98,8,0,1 +BRDA:103,9,0,17 +BRDA:114,10,0,14 +BRDA:118,11,0,33 +BRDA:119,12,0,2 +BRDA:121,13,0,31 +BRDA:126,14,0,66 +BRDA:129,15,0,62 +BRDA:131,16,0,33 +BRDA:131,17,0,33 +BRDA:133,18,0,33 +BRDA:133,19,0,33 +BRDA:134,20,0,33 +BRDA:134,21,0,33 +BRDA:135,22,0,33 +BRDA:135,23,0,33 +BRDA:137,24,0,33 +BRDA:137,25,0,33 +BRDA:138,26,0,2 +BRDA:143,27,0,33 +BRF:28 +BRH:27 +end_of_record +TN: +SF:src\components\slider\slider-input-field\slider-input-field.ts +FN:23,ZetaSliderInputField +FN:85,updateVisibleInputs +FN:89,updateHiddenInput +FN:96,handleChange +FN:100,firstUpdated +FN:104,getLabel +FN:112,render +FN:58,ZetaSliderInputField.sliderChange +FN:79,ZetaSliderInputField.handleInputChange +FNF:9 +FNH:8 +FNDA:14,ZetaSliderInputField +FNDA:2,updateVisibleInputs +FNDA:17,updateHiddenInput +FNDA:0,handleChange +FNDA:14,firstUpdated +FNDA:31,getLabel +FNDA:31,render +FNDA:2,ZetaSliderInputField.sliderChange +FNDA:1,ZetaSliderInputField.handleInputChange +DA:1,6 +DA:2,6 +DA:3,6 +DA:4,6 +DA:5,6 +DA:6,6 +DA:7,6 +DA:8,6 +DA:9,6 +DA:10,6 +DA:11,6 +DA:12,6 +DA:13,6 +DA:14,6 +DA:15,6 +DA:16,6 +DA:17,6 +DA:18,6 +DA:19,6 +DA:20,6 +DA:21,6 +DA:22,6 +DA:23,6 +DA:24,14 +DA:25,14 +DA:26,14 +DA:27,14 +DA:28,14 +DA:29,14 +DA:30,14 +DA:31,14 +DA:32,14 +DA:33,14 +DA:34,14 +DA:35,14 +DA:36,14 +DA:37,14 +DA:38,14 +DA:39,14 +DA:40,14 +DA:41,14 +DA:42,14 +DA:43,14 +DA:44,14 +DA:45,14 +DA:46,14 +DA:47,14 +DA:48,14 +DA:49,14 +DA:50,14 +DA:51,14 +DA:52,14 +DA:53,14 +DA:54,14 +DA:55,14 +DA:56,14 +DA:57,14 +DA:58,14 +DA:59,2 +DA:60,2 +DA:61,2 +DA:62,2 +DA:63,2 +DA:64,14 +DA:65,14 +DA:66,14 +DA:67,14 +DA:68,14 +DA:69,14 +DA:70,14 +DA:71,14 +DA:72,14 +DA:73,14 +DA:74,14 +DA:75,14 +DA:76,14 +DA:77,14 +DA:78,14 +DA:79,14 +DA:80,1 +DA:81,1 +DA:82,1 +DA:83,1 +DA:84,6 +DA:85,6 +DA:86,2 +DA:87,2 +DA:88,6 +DA:89,6 +DA:90,17 +DA:91,17 +DA:92,17 +DA:93,17 +DA:94,17 +DA:95,6 +DA:96,6 +DA:97,0 +DA:98,0 +DA:99,6 +DA:100,6 +DA:101,14 +DA:102,14 +DA:103,6 +DA:104,6 +DA:105,31 +DA:106,28 +DA:107,31 +DA:108,3 +DA:109,3 +DA:110,31 +DA:111,6 +DA:112,6 +DA:113,31 +DA:114,31 +DA:115,31 +DA:116,31 +DA:117,31 +DA:118,31 +DA:119,31 +DA:120,31 +DA:121,31 +DA:122,31 +DA:123,31 +DA:124,31 +DA:125,31 +DA:126,31 +DA:127,31 +DA:128,31 +DA:129,31 +DA:130,31 +DA:131,31 +DA:132,31 +DA:133,31 +DA:134,31 +DA:135,31 +DA:136,31 +DA:137,31 +DA:138,31 +DA:139,31 +DA:140,31 +DA:141,31 +DA:142,31 +DA:143,31 +DA:144,31 +DA:145,31 +DA:146,31 +DA:147,31 +DA:148,6 +DA:149,6 +DA:150,6 +DA:151,6 +DA:152,6 +DA:153,6 +DA:154,6 +DA:155,6 +DA:156,6 +LF:156 +LH:154 +BRDA:149,0,0,0 +BRDA:23,1,0,14 +BRDA:58,2,0,2 +BRDA:79,3,0,1 +BRDA:85,4,0,2 +BRDA:89,5,0,17 +BRDA:100,6,0,14 +BRDA:104,7,0,31 +BRDA:105,8,0,28 +BRDA:107,9,0,3 +BRDA:112,10,0,31 +BRDA:134,11,0,3 +BRF:12 +BRH:11 +end_of_record +TN: +SF:src\components\snackbar\snackbar.ts +FN:19,ZetaSnackbar +FN:31,set round +FN:64,render +FNF:3 +FNH:3 +FNDA:27,ZetaSnackbar +FNDA:3,set round +FNDA:64,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,4 +DA:18,4 +DA:19,4 +DA:20,27 +DA:21,27 +DA:22,27 +DA:23,27 +DA:24,27 +DA:25,27 +DA:26,27 +DA:27,27 +DA:28,27 +DA:29,27 +DA:30,27 +DA:31,27 +DA:32,3 +DA:33,3 +DA:34,3 +DA:35,3 +DA:36,27 +DA:37,27 +DA:38,27 +DA:39,27 +DA:40,27 +DA:41,27 +DA:42,27 +DA:43,27 +DA:44,27 +DA:45,27 +DA:46,27 +DA:47,27 +DA:48,27 +DA:49,27 +DA:50,27 +DA:51,4 +DA:52,4 +DA:53,4 +DA:54,4 +DA:55,4 +DA:56,4 +DA:57,4 +DA:58,4 +DA:59,4 +DA:60,4 +DA:61,4 +DA:62,4 +DA:63,4 +DA:64,4 +DA:65,64 +DA:66,64 +DA:67,64 +DA:68,64 +DA:69,64 +DA:70,64 +DA:71,64 +DA:72,64 +DA:73,64 +DA:74,64 +DA:75,64 +DA:76,0 +DA:77,0 +DA:78,64 +DA:79,64 +DA:80,64 +DA:81,64 +DA:82,4 +DA:83,4 +DA:84,4 +DA:85,4 +DA:86,4 +DA:87,4 +DA:88,4 +DA:89,4 +DA:90,4 +LF:90 +LH:88 +BRDA:83,0,0,0 +BRDA:19,1,0,27 +BRDA:31,2,0,3 +BRDA:32,3,0,1 +BRDA:32,4,0,2 +BRDA:32,5,0,2 +BRDA:32,6,0,2 +BRDA:64,7,0,64 +BRDA:71,8,0,37 +BRDA:71,9,0,27 +BRDA:75,10,0,0 +BRDA:74,11,0,3 +BRF:12 +BRH:10 +end_of_record +TN: +SF:src\components\stepper\stepper.ts +FN:19,ZetaStepper +FN:29,ZetaStepper.renderSteps +FN:60,render +FNF:3 +FNH:3 +FNDA:3,ZetaStepper +FNDA:1,ZetaStepper.renderSteps +FNDA:1,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,4 +DA:18,4 +DA:19,4 +DA:20,3 +DA:21,3 +DA:22,3 +DA:23,3 +DA:24,3 +DA:25,3 +DA:26,3 +DA:27,3 +DA:28,3 +DA:29,3 +DA:30,1 +DA:31,1 +DA:32,3 +DA:33,3 +DA:34,3 +DA:35,3 +DA:36,3 +DA:37,3 +DA:38,3 +DA:39,3 +DA:40,3 +DA:41,3 +DA:42,3 +DA:43,3 +DA:44,3 +DA:45,3 +DA:46,3 +DA:47,3 +DA:48,3 +DA:49,3 +DA:50,3 +DA:51,3 +DA:52,3 +DA:53,3 +DA:54,3 +DA:55,3 +DA:56,3 +DA:57,1 +DA:58,1 +DA:59,4 +DA:60,4 +DA:61,1 +DA:62,1 +DA:63,1 +DA:64,1 +DA:65,1 +DA:66,1 +DA:67,4 +DA:68,4 +DA:69,4 +DA:70,4 +DA:71,4 +DA:72,4 +DA:73,4 +DA:74,4 +DA:75,4 +LF:75 +LH:75 +BRDA:68,0,0,0 +BRDA:19,1,0,3 +BRDA:29,2,0,1 +BRDA:31,3,0,3 +BRDA:39,4,0,0 +BRDA:40,5,0,1 +BRDA:51,6,0,0 +BRDA:60,7,0,1 +BRF:8 +BRH:5 +end_of_record +TN: +SF:src\components\stepper-input\stepper-input.ts +FN:21,ZetaStepperInput +FN:45,ZetaStepperInput.handleOnChange +FN:32,set value +FN:59,render +FNF:4 +FNH:4 +FNDA:9,ZetaStepperInput +FNDA:3,ZetaStepperInput.handleOnChange +FNDA:7,set value +FNDA:10,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,4 +DA:18,4 +DA:19,4 +DA:20,4 +DA:21,4 +DA:22,9 +DA:23,9 +DA:24,9 +DA:25,9 +DA:26,9 +DA:27,9 +DA:28,9 +DA:29,9 +DA:30,9 +DA:31,9 +DA:32,9 +DA:33,7 +DA:34,7 +DA:35,1 +DA:36,7 +DA:37,2 +DA:38,6 +DA:39,2 +DA:40,2 +DA:41,2 +DA:42,2 +DA:43,7 +DA:44,9 +DA:45,9 +DA:46,3 +DA:47,1 +DA:48,3 +DA:49,1 +DA:50,1 +DA:51,1 +DA:52,1 +DA:53,3 +DA:54,3 +DA:55,3 +DA:56,9 +DA:57,9 +DA:58,4 +DA:59,4 +DA:60,10 +DA:61,10 +DA:62,10 +DA:63,10 +DA:64,10 +DA:65,10 +DA:66,10 +DA:67,10 +DA:68,10 +DA:69,10 +DA:70,10 +DA:71,10 +DA:72,10 +DA:73,10 +DA:74,10 +DA:75,10 +DA:76,10 +DA:77,10 +DA:78,10 +DA:79,10 +DA:80,10 +DA:81,10 +DA:82,10 +DA:83,10 +DA:84,10 +DA:85,10 +DA:86,10 +DA:87,10 +DA:88,10 +DA:89,10 +DA:90,10 +DA:91,10 +DA:92,4 +DA:93,4 +DA:94,4 +DA:95,4 +DA:96,4 +DA:97,4 +DA:98,4 +LF:98 +LH:98 +BRDA:22,0,0,0 +BRDA:21,1,0,9 +BRDA:45,2,0,3 +BRDA:46,3,0,1 +BRDA:46,4,0,1 +BRDA:48,5,0,2 +BRDA:48,6,0,1 +BRDA:48,7,0,2 +BRDA:32,8,0,7 +BRDA:34,9,0,6 +BRDA:34,10,0,1 +BRDA:36,11,0,6 +BRDA:36,12,0,2 +BRDA:36,13,0,2 +BRDA:38,14,0,4 +BRDA:38,15,0,2 +BRDA:38,16,0,4 +BRDA:59,17,0,10 +BRDA:73,18,0,3 +BRDA:74,19,0,3 +BRDA:76,20,0,3 +BRF:21 +BRH:20 +end_of_record +TN: +SF:src\components\switch\switch.ts +FN:41,ZetaSwitch +FN:56,handleChange +FN:61,key +FN:71,render +FNF:4 +FNH:3 +FNDA:22,ZetaSwitch +FNDA:2,handleChange +FNDA:0,key +FNDA:41,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,4 +DA:18,4 +DA:19,4 +DA:20,4 +DA:21,4 +DA:22,4 +DA:23,4 +DA:24,4 +DA:25,4 +DA:26,4 +DA:27,4 +DA:28,4 +DA:29,4 +DA:30,4 +DA:31,4 +DA:32,4 +DA:33,4 +DA:34,4 +DA:35,4 +DA:36,4 +DA:37,4 +DA:38,4 +DA:39,4 +DA:40,4 +DA:41,4 +DA:42,22 +DA:43,22 +DA:44,22 +DA:45,4 +DA:46,4 +DA:47,4 +DA:48,4 +DA:49,4 +DA:50,4 +DA:51,4 +DA:52,4 +DA:53,4 +DA:54,4 +DA:55,4 +DA:56,4 +DA:57,2 +DA:58,2 +DA:59,2 +DA:60,4 +DA:61,4 +DA:62,0 +DA:63,0 +DA:64,0 +DA:65,0 +DA:66,0 +DA:67,0 +DA:68,4 +DA:69,4 +DA:70,4 +DA:71,4 +DA:72,41 +DA:73,41 +DA:74,41 +DA:75,41 +DA:76,41 +DA:77,41 +DA:78,41 +DA:79,41 +DA:80,41 +DA:81,41 +DA:82,38 +DA:83,38 +DA:84,41 +DA:85,41 +DA:86,38 +DA:87,38 +DA:88,38 +DA:89,41 +DA:90,41 +DA:91,41 +DA:92,41 +DA:93,41 +DA:94,41 +DA:95,4 +DA:96,4 +DA:97,4 +DA:98,4 +DA:99,4 +DA:100,4 +DA:101,4 +LF:101 +LH:95 +BRDA:69,0,0,0 +BRDA:41,1,0,22 +BRDA:56,2,0,2 +BRDA:58,3,0,1 +BRDA:58,4,0,1 +BRDA:71,5,0,41 +BRDA:78,6,0,8 +BRDA:78,7,0,33 +BRDA:81,8,0,38 +BRDA:85,9,0,38 +BRF:10 +BRH:9 +end_of_record +TN: +SF:src\components\system-banner\system-banner.ts +FN:19,ZetaSystemBanner +FN:39,render +FNF:2 +FNH:0 +FNDA:0,ZetaSystemBanner +FNDA:0,render +DA:1,3 +DA:2,3 +DA:3,3 +DA:4,3 +DA:5,3 +DA:6,3 +DA:7,3 +DA:8,3 +DA:9,3 +DA:10,3 +DA:11,3 +DA:12,3 +DA:13,3 +DA:14,3 +DA:15,3 +DA:16,3 +DA:17,3 +DA:18,3 +DA:19,3 +DA:20,0 +DA:21,0 +DA:22,0 +DA:23,0 +DA:24,0 +DA:25,3 +DA:26,3 +DA:27,3 +DA:28,3 +DA:29,3 +DA:30,3 +DA:31,3 +DA:32,3 +DA:33,3 +DA:34,3 +DA:35,3 +DA:36,3 +DA:37,3 +DA:38,3 +DA:39,3 +DA:40,0 +DA:41,0 +DA:42,0 +DA:43,0 +DA:44,0 +DA:45,0 +DA:46,0 +DA:47,0 +DA:48,0 +DA:49,0 +DA:50,0 +DA:51,0 +DA:52,0 +DA:53,0 +DA:54,0 +DA:55,0 +DA:56,3 +DA:57,3 +DA:58,3 +DA:59,3 +DA:60,3 +DA:61,3 +DA:62,3 +LF:62 +LH:41 +BRDA:37,0,0,0 +BRF:1 +BRH:0 +end_of_record +TN: +SF:src\components\tab-bar\tab-bar.ts +FN:17,render +FNF:1 +FNH:0 +FNDA:0,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,4 +DA:18,0 +DA:19,0 +DA:20,4 +DA:21,4 +DA:22,4 +DA:23,4 +DA:24,4 +DA:25,4 +DA:26,4 +DA:27,4 +DA:28,4 +LF:28 +LH:26 +BRF:0 +BRH:0 +end_of_record +TN: +SF:src\components\tab-bar\tab-item\tab-item.ts +FN:15,ZetaTabItem +FN:19,render +FNF:2 +FNH:0 +FNDA:0,ZetaTabItem +FNDA:0,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,0 +DA:17,0 +DA:18,4 +DA:19,4 +DA:20,0 +DA:21,0 +DA:22,0 +DA:23,4 +DA:24,4 +DA:25,4 +DA:26,4 +DA:27,4 +DA:28,4 +DA:29,4 +DA:30,4 +DA:31,4 +LF:31 +LH:26 +BRDA:24,0,0,0 +BRF:1 +BRH:0 +end_of_record +TN: +SF:src\components\text-input\text-input.ts +FN:22,ZetaTextInput +FN:68,focus +FN:72,blur +FN:76,handleChange +FN:80,render +FN:88,renderInput +FN:105,renderLeftIcon +FN:111,renderRightIcon +FN:132,renderPrefix +FN:136,renderSuffix +FNF:10 +FNH:10 +FNDA:21,ZetaTextInput +FNDA:3,focus +FNDA:1,blur +FNDA:2,handleChange +FNDA:22,render +FNDA:22,renderInput +FNDA:22,renderLeftIcon +FNDA:22,renderRightIcon +FNDA:22,renderPrefix +FNDA:22,renderSuffix +DA:1,7 +DA:2,7 +DA:3,7 +DA:4,7 +DA:5,7 +DA:6,7 +DA:7,7 +DA:8,7 +DA:9,7 +DA:10,7 +DA:11,7 +DA:12,7 +DA:13,7 +DA:14,7 +DA:15,7 +DA:16,7 +DA:17,7 +DA:18,7 +DA:19,7 +DA:20,7 +DA:21,7 +DA:22,7 +DA:23,21 +DA:24,21 +DA:25,21 +DA:26,21 +DA:27,7 +DA:28,7 +DA:29,7 +DA:30,7 +DA:31,7 +DA:32,7 +DA:33,7 +DA:34,7 +DA:35,7 +DA:36,7 +DA:37,7 +DA:38,7 +DA:39,7 +DA:40,7 +DA:41,7 +DA:42,7 +DA:43,7 +DA:44,7 +DA:45,7 +DA:46,7 +DA:47,7 +DA:48,7 +DA:49,7 +DA:50,7 +DA:51,7 +DA:52,7 +DA:53,7 +DA:54,7 +DA:55,7 +DA:56,7 +DA:57,7 +DA:58,7 +DA:59,7 +DA:60,7 +DA:61,7 +DA:62,7 +DA:63,7 +DA:64,7 +DA:65,7 +DA:66,7 +DA:67,7 +DA:68,7 +DA:69,3 +DA:70,3 +DA:71,7 +DA:72,7 +DA:73,1 +DA:74,1 +DA:75,7 +DA:76,7 +DA:77,2 +DA:78,2 +DA:79,7 +DA:80,7 +DA:81,22 +DA:82,1 +DA:83,22 +DA:84,21 +DA:85,21 +DA:86,22 +DA:87,7 +DA:88,7 +DA:89,22 +DA:90,22 +DA:91,22 +DA:92,22 +DA:93,22 +DA:94,22 +DA:95,22 +DA:96,22 +DA:97,5 +DA:98,5 +DA:99,5 +DA:100,17 +DA:101,22 +DA:102,22 +DA:103,22 +DA:104,7 +DA:105,7 +DA:106,22 +DA:107,2 +DA:108,20 +DA:109,22 +DA:110,7 +DA:111,7 +DA:112,22 +DA:113,1 +DA:114,21 +DA:115,3 +DA:116,3 +DA:117,1 +DA:118,1 +DA:119,3 +DA:120,3 +DA:121,3 +DA:122,3 +DA:123,3 +DA:124,18 +DA:125,18 +DA:126,2 +DA:127,2 +DA:128,16 +DA:129,16 +DA:130,22 +DA:131,7 +DA:132,7 +DA:133,22 +DA:134,22 +DA:135,7 +DA:136,7 +DA:137,22 +DA:138,22 +DA:139,7 +DA:140,7 +DA:141,7 +DA:142,7 +DA:143,7 +DA:144,7 +DA:145,7 +DA:146,7 +DA:147,7 +LF:147 +LH:147 +BRDA:20,0,0,0 +BRDA:22,1,0,21 +BRDA:68,2,0,3 +BRDA:72,3,0,1 +BRDA:76,4,0,2 +BRDA:80,5,0,22 +BRDA:81,6,0,1 +BRDA:83,7,0,21 +BRDA:88,8,0,22 +BRDA:96,9,0,18 +BRDA:96,10,0,5 +BRDA:98,11,0,4 +BRDA:98,12,0,1 +BRDA:99,13,0,4 +BRDA:99,14,0,1 +BRDA:99,15,0,17 +BRDA:105,16,0,22 +BRDA:106,17,0,2 +BRDA:106,18,0,2 +BRDA:106,19,0,2 +BRDA:107,20,0,20 +BRDA:111,21,0,22 +BRDA:112,22,0,1 +BRDA:112,23,0,1 +BRDA:112,24,0,1 +BRDA:113,25,0,21 +BRDA:114,26,0,19 +BRDA:114,27,0,3 +BRDA:123,28,0,1 +BRDA:123,29,0,2 +BRDA:123,30,0,18 +BRDA:125,31,0,17 +BRDA:125,32,0,2 +BRDA:127,33,0,1 +BRDA:127,34,0,1 +BRDA:127,35,0,16 +BRDA:116,36,0,1 +BRDA:118,37,0,0 +BRDA:132,38,0,22 +BRDA:133,39,0,1 +BRDA:133,40,0,1 +BRDA:133,41,0,1 +BRDA:133,42,0,21 +BRDA:136,43,0,22 +BRDA:137,44,0,1 +BRDA:137,45,0,1 +BRDA:137,46,0,1 +BRDA:137,47,0,21 +BRF:48 +BRH:46 +end_of_record +TN: +SF:src\components\tooltip\tooltip.ts +FN:13,ZetaTooltip +FN:22,render +FNF:2 +FNH:0 +FNDA:0,ZetaTooltip +FNDA:0,render +DA:1,3 +DA:2,3 +DA:3,3 +DA:4,3 +DA:5,3 +DA:6,3 +DA:7,3 +DA:8,3 +DA:9,3 +DA:10,3 +DA:11,3 +DA:12,3 +DA:13,3 +DA:14,0 +DA:15,0 +DA:16,3 +DA:17,3 +DA:18,3 +DA:19,3 +DA:20,3 +DA:21,3 +DA:22,3 +DA:23,0 +DA:24,0 +DA:25,0 +DA:26,0 +DA:27,0 +DA:28,0 +DA:29,0 +DA:30,0 +DA:31,0 +DA:32,3 +DA:33,3 +DA:34,3 +DA:35,3 +DA:36,3 +DA:37,3 +DA:38,3 +LF:38 +LH:27 +BRDA:20,0,0,0 +BRF:1 +BRH:0 +end_of_record +TN: +SF:src\components\top-appbar\top-appbar.ts +FN:16,ZetaTopAppbar +FN:23,getTitle +FN:29,render +FNF:3 +FNH:3 +FNDA:6,ZetaTopAppbar +FNDA:6,getTitle +FNDA:6,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,6 +DA:18,6 +DA:19,6 +DA:20,6 +DA:21,6 +DA:22,4 +DA:23,4 +DA:24,6 +DA:25,6 +DA:26,6 +DA:27,6 +DA:28,4 +DA:29,4 +DA:30,6 +DA:31,6 +DA:32,6 +DA:33,6 +DA:34,6 +DA:35,6 +DA:36,6 +DA:37,6 +DA:38,6 +DA:39,6 +DA:40,6 +DA:41,4 +DA:42,4 +DA:43,4 +DA:44,4 +DA:45,4 +DA:46,4 +DA:47,4 +DA:48,4 +DA:49,4 +LF:49 +LH:49 +BRDA:16,0,0,6 +BRDA:23,1,0,6 +BRDA:29,2,0,6 +BRDA:34,3,0,5 +BRDA:34,4,0,1 +BRDA:37,5,0,1 +BRDA:37,6,0,5 +BRF:7 +BRH:7 +end_of_record +TN: +SF:src\components\upload-item\upload-item.ts +FN:22,ZetaUploadItem +FN:29,getTrailingContent +FN:40,onCancelClicked +FN:44,render +FNF:4 +FNH:4 +FNDA:5,ZetaUploadItem +FNDA:5,getTrailingContent +FNDA:1,onCancelClicked +FNDA:5,render +DA:1,4 +DA:2,4 +DA:3,4 +DA:4,4 +DA:5,4 +DA:6,4 +DA:7,4 +DA:8,4 +DA:9,4 +DA:10,4 +DA:11,4 +DA:12,4 +DA:13,4 +DA:14,4 +DA:15,4 +DA:16,4 +DA:17,4 +DA:18,4 +DA:19,4 +DA:20,4 +DA:21,4 +DA:22,4 +DA:23,5 +DA:24,5 +DA:25,5 +DA:26,5 +DA:27,5 +DA:28,4 +DA:29,4 +DA:30,5 +DA:31,5 +DA:32,2 +DA:33,5 +DA:34,1 +DA:35,5 +DA:36,2 +DA:37,5 +DA:38,5 +DA:39,4 +DA:40,4 +DA:41,1 +DA:42,1 +DA:43,4 +DA:44,4 +DA:45,5 +DA:46,5 +DA:47,5 +DA:48,5 +DA:49,5 +DA:50,5 +DA:51,5 +DA:52,5 +DA:53,5 +DA:54,5 +DA:55,5 +DA:56,5 +DA:57,5 +DA:58,5 +DA:59,4 +DA:60,4 +DA:61,4 +DA:62,4 +DA:63,4 +DA:64,4 +DA:65,4 +DA:66,4 +DA:67,4 +LF:67 +LH:67 +BRDA:60,0,0,0 +BRDA:22,1,0,5 +BRDA:29,2,0,5 +BRDA:31,3,0,2 +BRDA:33,4,0,1 +BRDA:35,5,0,2 +BRDA:40,6,0,1 +BRDA:44,7,0,5 +BRDA:54,8,0,1 +BRF:9 +BRH:8 +end_of_record +TN: +SF:src\mixins\contour.ts +FN:18,Contourable +FN:29, +FNF:2 +FNH:2 +FNDA:237,Contourable +FNDA:237, +DA:1,43 +DA:2,43 +DA:3,43 +DA:4,43 +DA:5,43 +DA:6,43 +DA:7,43 +DA:8,43 +DA:9,43 +DA:10,43 +DA:11,43 +DA:12,43 +DA:13,43 +DA:14,43 +DA:15,43 +DA:16,43 +DA:17,43 +DA:18,43 +DA:19,237 +DA:20,237 +DA:21,237 +DA:22,237 +DA:23,237 +DA:24,237 +DA:25,237 +DA:26,237 +DA:27,237 +DA:28,237 +DA:29,237 +DA:30,237 +DA:31,237 +DA:32,237 +DA:33,237 +DA:34,237 +DA:35,237 +DA:36,237 +DA:37,237 +DA:38,237 +DA:39,237 +DA:40,237 +DA:41,237 +DA:42,237 +DA:43,237 +DA:44,237 +DA:45,237 +DA:46,237 +DA:47,237 +DA:48,237 +DA:49,237 +LF:49 +LH:49 +BRDA:18,0,0,237 +BRDA:29,1,0,237 +BRDA:30,2,0,163 +BRF:3 +BRH:3 +end_of_record +TN: +SF:src\mixins\flavor.ts +FN:21,Flavored +FN:22,FlavoredClass +FN:36, +FNF:3 +FNH:3 +FNDA:26,Flavored +FNDA:131,FlavoredClass +FNDA:26, +DA:1,42 +DA:2,42 +DA:3,42 +DA:4,42 +DA:5,42 +DA:6,42 +DA:7,42 +DA:8,42 +DA:9,42 +DA:10,42 +DA:11,42 +DA:12,42 +DA:13,42 +DA:14,42 +DA:15,42 +DA:16,42 +DA:17,42 +DA:18,42 +DA:19,42 +DA:20,42 +DA:21,42 +DA:22,26 +DA:23,131 +DA:24,131 +DA:25,131 +DA:26,131 +DA:27,131 +DA:28,131 +DA:29,131 +DA:30,131 +DA:31,131 +DA:32,131 +DA:33,131 +DA:34,131 +DA:35,26 +DA:36,26 +DA:37,26 +DA:38,26 +DA:39,26 +DA:40,26 +LF:40 +LH:40 +BRDA:21,0,0,26 +BRDA:22,1,0,145 +BRDA:36,2,0,26 +BRDA:36,3,0,26 +BRF:4 +BRH:4 +end_of_record +TN: +SF:src\mixins\form-field.ts +FN:44,FormField +FN:52,FormFieldClass +FN:77,get isCheckable +FN:111,get checked +FN:114,set checked +FN:138,checkValidity +FN:142,reportValidity +FN:146,get validity +FN:150,get validationMessage +FN:154,getValue +FN:165,connectedCallback +FN:179,firstUpdated +FN:186,disconnectedCallback +FN:191,formResetCallback +FN:195,setToInitialValues +FN:201,handleInput +FN:206,_setValue +FN:218,_handleChange +FN:230,handleChange +FN:249,render +FNF:20 +FNH:14 +FNDA:35,FormField +FNDA:113,FormFieldClass +FNDA:663,get isCheckable +FNDA:684,get checked +FNDA:61,set checked +FNDA:0,checkValidity +FNDA:0,reportValidity +FNDA:0,get validity +FNDA:0,get validationMessage +FNDA:244,getValue +FNDA:115,connectedCallback +FNDA:69,firstUpdated +FNDA:106,disconnectedCallback +FNDA:0,formResetCallback +FNDA:69,setToInitialValues +FNDA:60,handleInput +FNDA:129,_setValue +FNDA:12,_handleChange +FNDA:0,handleChange +FNDA:216,render +DA:1,12 +DA:2,12 +DA:3,12 +DA:4,12 +DA:5,12 +DA:6,12 +DA:7,12 +DA:8,12 +DA:9,12 +DA:10,12 +DA:11,12 +DA:12,12 +DA:13,12 +DA:14,12 +DA:15,12 +DA:16,12 +DA:17,12 +DA:18,12 +DA:19,12 +DA:20,12 +DA:21,12 +DA:22,12 +DA:23,12 +DA:24,12 +DA:25,12 +DA:26,12 +DA:27,12 +DA:28,12 +DA:29,12 +DA:30,12 +DA:31,12 +DA:32,12 +DA:33,12 +DA:34,12 +DA:35,12 +DA:36,12 +DA:37,12 +DA:38,12 +DA:39,12 +DA:40,12 +DA:41,12 +DA:42,12 +DA:43,12 +DA:44,12 +DA:45,35 +DA:46,35 +DA:47,35 +DA:48,35 +DA:49,35 +DA:50,35 +DA:51,35 +DA:52,35 +DA:53,113 +DA:54,113 +DA:55,113 +DA:56,113 +DA:57,35 +DA:58,35 +DA:59,35 +DA:60,35 +DA:61,35 +DA:62,35 +DA:63,35 +DA:64,35 +DA:65,35 +DA:66,35 +DA:67,35 +DA:68,35 +DA:69,35 +DA:70,35 +DA:71,35 +DA:72,35 +DA:73,35 +DA:74,35 +DA:75,35 +DA:76,35 +DA:77,35 +DA:78,663 +DA:79,663 +DA:80,35 +DA:81,35 +DA:82,35 +DA:83,35 +DA:84,35 +DA:85,35 +DA:86,35 +DA:87,35 +DA:88,35 +DA:89,35 +DA:90,35 +DA:91,35 +DA:92,35 +DA:93,35 +DA:94,35 +DA:95,35 +DA:96,35 +DA:97,35 +DA:98,35 +DA:99,35 +DA:100,35 +DA:101,35 +DA:102,35 +DA:103,35 +DA:104,35 +DA:105,35 +DA:106,35 +DA:107,35 +DA:108,35 +DA:109,35 +DA:110,35 +DA:111,35 +DA:112,684 +DA:113,684 +DA:114,35 +DA:115,61 +DA:116,61 +DA:117,61 +DA:118,35 +DA:119,35 +DA:120,35 +DA:121,35 +DA:122,35 +DA:123,35 +DA:124,35 +DA:125,35 +DA:126,35 +DA:127,35 +DA:128,35 +DA:129,35 +DA:130,35 +DA:131,35 +DA:132,35 +DA:133,35 +DA:134,35 +DA:135,35 +DA:136,35 +DA:137,35 +DA:138,35 +DA:139,0 +DA:140,0 +DA:141,35 +DA:142,35 +DA:143,0 +DA:144,0 +DA:145,35 +DA:146,35 +DA:147,0 +DA:148,0 +DA:149,35 +DA:150,35 +DA:151,0 +DA:152,0 +DA:153,35 +DA:154,35 +DA:155,244 +DA:156,102 +DA:157,19 +DA:158,102 +DA:159,83 +DA:160,83 +DA:161,102 +DA:162,142 +DA:163,244 +DA:164,35 +DA:165,35 +DA:166,115 +DA:167,115 +DA:168,6 +DA:169,6 +DA:170,115 +DA:171,115 +DA:172,115 +DA:173,115 +DA:174,115 +DA:175,45 +DA:176,45 +DA:177,115 +DA:178,35 +DA:179,35 +DA:180,69 +DA:181,69 +DA:182,69 +DA:183,69 +DA:184,69 +DA:185,35 +DA:186,35 +DA:187,106 +DA:188,106 +DA:189,106 +DA:190,35 +DA:191,35 +DA:192,0 +DA:193,0 +DA:194,35 +DA:195,35 +DA:196,69 +DA:197,69 +DA:198,35 +DA:199,35 +DA:200,35 +DA:201,35 +DA:202,60 +DA:203,60 +DA:204,60 +DA:205,35 +DA:206,35 +DA:207,129 +DA:208,129 +DA:209,129 +DA:210,57 +DA:211,57 +DA:212,129 +DA:213,72 +DA:214,72 +DA:215,72 +DA:216,129 +DA:217,35 +DA:218,35 +DA:219,12 +DA:220,12 +DA:221,12 +DA:222,35 +DA:223,35 +DA:224,35 +DA:225,35 +DA:226,35 +DA:227,35 +DA:228,35 +DA:229,35 +DA:230,35 +DA:231,35 +DA:232,35 +DA:233,35 +DA:234,35 +DA:235,35 +DA:236,35 +DA:237,35 +DA:238,35 +DA:239,35 +DA:240,35 +DA:241,35 +DA:242,35 +DA:243,35 +DA:244,35 +DA:245,35 +DA:246,35 +DA:247,35 +DA:248,35 +DA:249,35 +DA:250,216 +DA:251,216 +DA:252,216 +DA:253,216 +DA:254,216 +DA:255,87 +DA:256,87 +DA:257,87 +DA:258,87 +DA:259,87 +DA:260,87 +DA:261,87 +DA:262,87 +DA:263,87 +DA:264,87 +DA:265,87 +DA:266,87 +DA:267,87 +DA:268,87 +DA:269,87 +DA:270,216 +DA:271,216 +DA:272,1 +DA:273,1 +DA:274,1 +DA:275,1 +DA:276,1 +DA:277,1 +DA:278,1 +DA:279,1 +DA:280,1 +DA:281,1 +DA:282,1 +DA:283,1 +DA:284,1 +DA:285,1 +DA:286,1 +DA:287,216 +DA:288,216 +DA:289,216 +DA:290,216 +DA:291,26 +DA:292,26 +DA:293,26 +DA:294,26 +DA:295,26 +DA:296,26 +DA:297,26 +DA:298,26 +DA:299,26 +DA:300,26 +DA:301,26 +DA:302,26 +DA:303,26 +DA:304,26 +DA:305,26 +DA:306,26 +DA:307,216 +DA:308,216 +DA:309,31 +DA:310,31 +DA:311,31 +DA:312,31 +DA:313,31 +DA:314,31 +DA:315,31 +DA:316,31 +DA:317,31 +DA:318,31 +DA:319,31 +DA:320,31 +DA:321,31 +DA:322,216 +DA:323,216 +DA:324,216 +DA:325,33 +DA:326,33 +DA:327,33 +DA:328,33 +DA:329,33 +DA:330,33 +DA:331,33 +DA:332,33 +DA:333,33 +DA:334,33 +DA:335,33 +DA:336,33 +DA:337,33 +DA:338,33 +DA:339,216 +DA:340,216 +DA:341,38 +DA:342,38 +DA:343,38 +DA:344,38 +DA:345,38 +DA:346,38 +DA:347,38 +DA:348,38 +DA:349,38 +DA:350,38 +DA:351,38 +DA:352,38 +DA:353,38 +DA:354,38 +DA:355,38 +DA:356,216 +DA:357,216 +DA:358,216 +DA:359,216 +DA:360,216 +DA:361,216 +DA:362,216 +DA:363,216 +DA:364,216 +DA:365,216 +DA:366,216 +DA:367,216 +DA:368,216 +DA:369,216 +DA:370,216 +DA:371,216 +DA:372,216 +DA:373,216 +DA:374,216 +DA:375,216 +DA:376,216 +DA:377,35 +DA:378,35 +DA:379,35 +LF:379 +LH:369 +BRDA:44,0,0,35 +BRDA:52,1,0,136 +BRDA:77,2,0,686 +BRDA:78,3,0,476 +BRDA:111,4,0,707 +BRDA:114,5,0,91 +BRDA:116,6,0,46 +BRDA:116,7,0,46 +BRDA:116,8,0,75 +BRDA:154,9,0,267 +BRDA:156,10,0,42 +BRDA:157,11,0,32 +BRDA:158,12,0,106 +BRDA:161,13,0,165 +BRDA:165,14,0,138 +BRDA:167,15,0,29 +BRDA:179,16,0,97 +BRDA:186,17,0,129 +BRDA:195,18,0,97 +BRDA:201,19,0,83 +BRDA:206,20,0,152 +BRDA:212,21,0,95 +BRDA:218,22,0,40 +BRDA:249,23,0,239 +BRDA:257,24,0,30 +BRDA:257,25,0,103 +BRDA:262,26,0,31 +BRDA:263,27,0,23 +BRDA:265,28,0,71 +BRDA:265,29,0,62 +BRDA:266,30,0,30 +BRDA:266,31,0,103 +BRDA:271,32,0,24 +BRDA:288,33,0,44 +BRDA:289,34,0,47 +BRDA:290,35,0,49 +BRDA:308,36,0,54 +BRDA:324,37,0,56 +BRDA:340,38,0,61 +BRDA:116,39,0,46 +BRDA:155,40,0,125 +BRDA:174,41,0,68 +BRDA:188,42,0,62 +BRDA:209,43,0,80 +BRDA:253,44,0,88 +BRDA:254,45,0,110 +BRDA:293,46,0,23 +BRDA:296,47,0,23 +BRDA:298,48,0,23 +BRDA:299,49,0,23 +BRDA:303,50,0,44 +BRDA:327,51,0,23 +BRDA:331,52,0,23 +BRDA:333,53,0,23 +BRDA:335,54,0,37 +BRDA:183,55,0,67 +BRDA:343,56,0,23 +BRDA:346,57,0,26 +BRDA:346,58,0,58 +BRDA:348,59,0,23 +BRDA:349,60,0,25 +BRDA:353,61,0,56 +BRDA:311,62,0,23 +BRDA:315,63,0,23 +BRDA:317,64,0,23 +BRDA:319,65,0,37 +BRDA:262,66,0,102 +BRDA:273,67,0,23 +BRDA:276,68,0,23 +BRDA:278,69,0,23 +BRDA:283,70,0,23 +BRDA:349,71,0,59 +BRF:72 +BRH:72 +end_of_record +TN: +SF:src\mixins\interactive.ts +FN:18,Interactive +FN:19,InteractiveClass +FN:49,InteractiveClass._handleFocus +FN:36,disconnectedCallback +FN:80, +FNF:5 +FNH:5 +FNDA:79,Interactive +FNDA:267,InteractiveClass +FNDA:2,InteractiveClass._handleFocus +FNDA:260,disconnectedCallback +FNDA:79, +DA:1,42 +DA:2,42 +DA:3,42 +DA:4,42 +DA:5,42 +DA:6,42 +DA:7,42 +DA:8,42 +DA:9,42 +DA:10,42 +DA:11,42 +DA:12,42 +DA:13,42 +DA:14,42 +DA:15,42 +DA:16,42 +DA:17,42 +DA:18,42 +DA:19,79 +DA:20,267 +DA:21,267 +DA:22,267 +DA:23,267 +DA:24,267 +DA:25,267 +DA:26,267 +DA:27,57 +DA:28,57 +DA:29,267 +DA:30,210 +DA:31,210 +DA:32,210 +DA:33,210 +DA:34,267 +DA:35,267 +DA:36,267 +DA:37,260 +DA:38,260 +DA:39,260 +DA:40,54 +DA:41,54 +DA:42,260 +DA:43,206 +DA:44,206 +DA:45,260 +DA:46,260 +DA:47,267 +DA:48,267 +DA:49,267 +DA:50,2 +DA:51,0 +DA:52,0 +DA:53,0 +DA:54,0 +DA:55,0 +DA:56,0 +DA:57,0 +DA:58,0 +DA:59,0 +DA:60,2 +DA:61,2 +DA:62,267 +DA:63,267 +DA:64,267 +DA:65,267 +DA:66,267 +DA:67,267 +DA:68,267 +DA:69,267 +DA:70,267 +DA:71,267 +DA:72,267 +DA:73,267 +DA:74,267 +DA:75,267 +DA:76,267 +DA:77,267 +DA:78,267 +DA:79,79 +DA:80,79 +DA:81,79 +DA:82,79 +DA:83,79 +LF:83 +LH:74 +BRDA:18,0,0,79 +BRDA:19,1,0,275 +BRDA:26,2,0,65 +BRDA:36,3,0,268 +BRDA:39,4,0,62 +BRDA:80,5,0,79 +BRDA:29,6,0,218 +BRDA:42,7,0,214 +BRDA:80,8,0,79 +BRDA:49,9,0,255 +BRDA:50,10,0,253 +BRF:11 +BRH:11 +end_of_record +TN: +SF:src\mixins\mixins.ts +FNF:0 +FNH:0 +DA:1,42 +DA:2,42 +DA:3,42 +DA:4,42 +DA:5,42 +DA:6,42 +DA:7,42 +LF:7 +LH:7 +BRF:0 +BRH:0 +end_of_record +TN: +SF:src\mixins\navigate.ts +FN:17,Navigate +FN:24, +FNF:2 +FNH:2 +FNDA:9,Navigate +FNDA:9, +DA:1,42 +DA:2,42 +DA:3,42 +DA:4,42 +DA:5,42 +DA:6,42 +DA:7,42 +DA:8,42 +DA:9,42 +DA:10,42 +DA:11,42 +DA:12,42 +DA:13,42 +DA:14,42 +DA:15,42 +DA:16,42 +DA:17,42 +DA:18,9 +DA:19,9 +DA:20,9 +DA:21,9 +DA:22,9 +DA:23,9 +DA:24,9 +DA:25,9 +DA:26,9 +DA:27,9 +DA:28,9 +DA:29,9 +DA:30,9 +DA:31,9 +DA:32,9 +DA:33,9 +DA:34,9 +LF:34 +LH:34 +BRDA:17,0,0,9 +BRDA:24,1,0,9 +BRDA:25,2,0,4 +BRF:3 +BRH:3 +end_of_record +TN: +SF:src\mixins\popup.ts +FN:26,Popup +FN:27,PopupClass +FN:35,get open +FN:39,showModal +FN:43,show +FN:48,_show +FN:59,hide +FN:65,cancel +FN:69,_onClose +FN:73,_onCancel +FN:77,onBarrierClicked +FN:86,firstUpdated +FN:96,disconnectedCallback +FN:103, +FNF:14 +FNH:10 +FNDA:8,Popup +FNDA:6,PopupClass +FNDA:14,get open +FNDA:0,showModal +FNDA:3,show +FNDA:3,_show +FNDA:2,hide +FNDA:0,cancel +FNDA:2,_onClose +FNDA:0,_onCancel +FNDA:0,onBarrierClicked +FNDA:4,firstUpdated +FNDA:4,disconnectedCallback +FNDA:8, +DA:1,42 +DA:2,42 +DA:3,42 +DA:4,42 +DA:5,42 +DA:6,42 +DA:7,42 +DA:8,42 +DA:9,42 +DA:10,42 +DA:11,42 +DA:12,42 +DA:13,42 +DA:14,42 +DA:15,42 +DA:16,42 +DA:17,42 +DA:18,42 +DA:19,42 +DA:20,42 +DA:21,42 +DA:22,42 +DA:23,42 +DA:24,42 +DA:25,42 +DA:26,42 +DA:27,8 +DA:28,6 +DA:29,6 +DA:30,6 +DA:31,6 +DA:32,8 +DA:33,8 +DA:34,8 +DA:35,8 +DA:36,14 +DA:37,14 +DA:38,8 +DA:39,8 +DA:40,0 +DA:41,0 +DA:42,8 +DA:43,8 +DA:44,3 +DA:45,3 +DA:46,8 +DA:47,8 +DA:48,8 +DA:49,3 +DA:50,3 +DA:51,0 +DA:52,3 +DA:53,3 +DA:54,3 +DA:55,3 +DA:56,3 +DA:57,3 +DA:58,8 +DA:59,8 +DA:60,2 +DA:61,2 +DA:62,2 +DA:63,2 +DA:64,8 +DA:65,8 +DA:66,0 +DA:67,0 +DA:68,8 +DA:69,8 +DA:70,2 +DA:71,2 +DA:72,8 +DA:73,8 +DA:74,0 +DA:75,0 +DA:76,8 +DA:77,8 +DA:78,0 +DA:79,0 +DA:80,0 +DA:81,0 +DA:82,0 +DA:83,0 +DA:84,8 +DA:85,8 +DA:86,8 +DA:87,4 +DA:88,4 +DA:89,4 +DA:90,4 +DA:91,4 +DA:92,4 +DA:93,4 +DA:94,4 +DA:95,8 +DA:96,8 +DA:97,4 +DA:98,4 +DA:99,4 +DA:100,4 +DA:101,4 +DA:102,8 +DA:103,8 +DA:104,8 +DA:105,8 +DA:106,8 +DA:107,8 +DA:108,8 +DA:109,8 +DA:110,8 +DA:111,8 +DA:112,8 +DA:113,8 +LF:113 +LH:100 +BRDA:26,0,0,8 +BRDA:27,1,0,12 +BRDA:35,2,0,20 +BRDA:36,3,0,8 +BRDA:36,4,0,18 +BRDA:43,5,0,10 +BRDA:48,6,0,10 +BRDA:50,7,0,7 +BRDA:59,8,0,9 +BRDA:69,9,0,9 +BRDA:86,10,0,10 +BRDA:96,11,0,10 +BRDA:103,12,0,8 +BRF:13 +BRH:13 +end_of_record +TN: +SF:src\mixins\size.ts +FN:18,Size +FN:19,InteractiveClass +FN:23, +FNF:3 +FNH:3 +FNDA:41,Size +FNDA:183,InteractiveClass +FNDA:41, +DA:1,42 +DA:2,42 +DA:3,42 +DA:4,42 +DA:5,42 +DA:6,42 +DA:7,42 +DA:8,42 +DA:9,42 +DA:10,42 +DA:11,42 +DA:12,42 +DA:13,42 +DA:14,42 +DA:15,42 +DA:16,42 +DA:17,42 +DA:18,42 +DA:19,41 +DA:20,183 +DA:21,183 +DA:22,41 +DA:23,41 +DA:24,41 +DA:25,41 +DA:26,41 +LF:26 +LH:26 +BRDA:18,0,0,41 +BRDA:19,1,0,207 +BRDA:23,2,0,41 +BRDA:23,3,0,41 +BRF:4 +BRH:4 +end_of_record +TN: +SF:src\test\utils.ts +FN:9,toRGB +FN:21,getCssVarValue +FN:31,getCssVarColorValue +FN:40,getSlotTextNode +FN:51,getSlot +FN:61,getSlottedIconName +FN:72,getSlotText +FN:86,getIconColor +FN:95,getMiddleOfElement +FN:113, +FN:113,hover +FN:125,down +FN:135,up +FN:139,click +FNF:14 +FNH:14 +FNDA:82,toRGB +FNDA:90,getCssVarValue +FNDA:79,getCssVarColorValue +FNDA:29,getSlotTextNode +FNDA:2,getSlot +FNDA:2,getSlottedIconName +FNDA:13,getSlotText +FNDA:16,getIconColor +FNDA:8,getMiddleOfElement +FNDA:15, +FNDA:8,hover +FNDA:2,down +FNDA:2,up +FNDA:2,click +DA:1,15 +DA:2,15 +DA:3,15 +DA:4,15 +DA:5,15 +DA:6,15 +DA:7,15 +DA:8,15 +DA:9,15 +DA:10,82 +DA:11,82 +DA:12,82 +DA:13,82 +DA:14,15 +DA:15,15 +DA:16,15 +DA:17,15 +DA:18,15 +DA:19,15 +DA:20,15 +DA:21,15 +DA:22,90 +DA:23,90 +DA:24,15 +DA:25,15 +DA:26,15 +DA:27,15 +DA:28,15 +DA:29,15 +DA:30,15 +DA:31,15 +DA:32,79 +DA:33,79 +DA:34,15 +DA:35,15 +DA:36,15 +DA:37,15 +DA:38,15 +DA:39,15 +DA:40,15 +DA:41,29 +DA:42,29 +DA:43,29 +DA:44,29 +DA:45,1 +DA:46,29 +DA:47,28 +DA:48,28 +DA:49,29 +DA:50,15 +DA:51,15 +DA:52,2 +DA:53,2 +DA:54,15 +DA:55,15 +DA:56,15 +DA:57,15 +DA:58,15 +DA:59,15 +DA:60,15 +DA:61,15 +DA:62,2 +DA:63,2 +DA:64,2 +DA:65,2 +DA:66,15 +DA:67,15 +DA:68,15 +DA:69,15 +DA:70,15 +DA:71,15 +DA:72,15 +DA:73,13 +DA:74,13 +DA:75,13 +DA:76,13 +DA:77,13 +DA:78,13 +DA:79,13 +DA:80,15 +DA:81,15 +DA:82,15 +DA:83,15 +DA:84,15 +DA:85,15 +DA:86,15 +DA:87,16 +DA:88,16 +DA:89,15 +DA:90,15 +DA:91,15 +DA:92,15 +DA:93,15 +DA:94,15 +DA:95,15 +DA:96,8 +DA:97,8 +DA:98,8 +DA:99,8 +DA:100,8 +DA:101,8 +DA:102,8 +DA:103,15 +DA:104,15 +DA:105,15 +DA:106,15 +DA:107,15 +DA:108,15 +DA:109,15 +DA:110,15 +DA:111,15 +DA:112,15 +DA:113,15 +DA:114,8 +DA:115,8 +DA:116,8 +DA:117,8 +DA:118,15 +DA:119,15 +DA:120,15 +DA:121,15 +DA:122,15 +DA:123,15 +DA:124,15 +DA:125,15 +DA:126,2 +DA:127,2 +DA:128,2 +DA:129,15 +DA:130,15 +DA:131,15 +DA:132,15 +DA:133,15 +DA:134,15 +DA:135,15 +DA:136,2 +DA:137,2 +DA:138,15 +DA:139,15 +DA:140,2 +DA:141,2 +DA:142,2 +DA:143,15 +DA:144,15 +DA:145,15 +DA:146,15 +DA:147,15 +DA:148,15 +LF:148 +LH:148 +BRDA:113,0,0,15 +BRDA:9,1,0,82 +BRDA:21,2,0,90 +BRDA:31,3,0,79 +BRDA:40,4,0,29 +BRDA:46,5,0,28 +BRDA:41,6,0,34 +BRDA:43,7,0,44 +BRDA:72,8,0,13 +BRDA:76,9,0,20 +BRDA:77,10,0,20 +BRDA:44,11,0,1 +BRDA:43,12,0,44 +BRDA:51,13,0,2 +BRDA:61,14,0,2 +BRDA:63,15,0,2 +BRDA:86,16,0,16 +BRDA:95,17,0,8 +BRDA:113,18,0,21 +BRDA:125,19,0,16 +BRDA:135,20,0,16 +BRDA:139,21,0,16 +BRF:22 +BRH:22 +end_of_record +TN: +SF:src\test\text-input\setup.ts +FN:23,setup +FNF:1 +FNH:1 +FNDA:20,setup +DA:1,1 +DA:2,1 +DA:3,1 +DA:4,1 +DA:5,1 +DA:6,1 +DA:7,1 +DA:8,1 +DA:9,1 +DA:10,1 +DA:11,1 +DA:12,1 +DA:13,1 +DA:14,1 +DA:15,1 +DA:16,1 +DA:17,1 +DA:18,1 +DA:19,1 +DA:20,1 +DA:21,1 +DA:22,1 +DA:23,20 +DA:24,20 +DA:25,20 +DA:26,20 +DA:27,20 +DA:28,20 +DA:29,20 +DA:30,20 +DA:31,20 +DA:32,20 +DA:33,20 +DA:34,20 +DA:35,20 +DA:36,20 +DA:37,20 +DA:38,20 +DA:39,20 +DA:40,20 +DA:41,20 +DA:42,20 +DA:43,20 +DA:44,20 +DA:45,20 +DA:46,20 +DA:47,20 +DA:48,20 +DA:49,20 +DA:50,20 +DA:51,20 +DA:52,20 +DA:53,20 +DA:54,20 +DA:55,20 +LF:55 +LH:55 +BRDA:23,0,0,20 +BRDA:48,1,0,16 +BRF:2 +BRH:2 +end_of_record From 8271d2486d4c575dcee36dc2a9382b94a616f265 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 4 Dec 2024 17:47:44 +0000 Subject: [PATCH 09/82] removed ## --- .github/workflows/pull-request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index e0c4a0a..72feb36 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -103,7 +103,7 @@ jobs: owner: context.repo.owner, repo: context.repo.repo }); - const comment = comments.find(comment => comment.body.includes('## Test Coverage Report')); + const comment = comments.find(comment => comment.body.includes('Test Coverage Report')); if (comment) { await github.rest.issues.updateComment({ comment_id: comment.id, @@ -146,7 +146,7 @@ jobs: owner: context.repo.owner, repo: context.repo.repo }); - const comment = comments.find(comment => comment.body.includes('## Code Quality Checks Failed')); + const comment = comments.find(comment => comment.body.includes('Code Quality Checks Failed')); if (comment) { await github.rest.issues.updateComment({ comment_id: comment.id, From f79c19f2af8213a14c931dfc01e0f7e7fb268e8f Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 4 Dec 2024 17:56:20 +0000 Subject: [PATCH 10/82] debugging --- .github/workflows/pull-request.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 72feb36..3407b05 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -103,6 +103,8 @@ jobs: owner: context.repo.owner, repo: context.repo.repo }); + console.log(comments); + console.log(coverageData); const comment = comments.find(comment => comment.body.includes('Test Coverage Report')); if (comment) { await github.rest.issues.updateComment({ From 42cf770d556fddb3a86fc3ab03eb564a1a3d05ef Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 4 Dec 2024 18:02:23 +0000 Subject: [PATCH 11/82] reverted gitignore --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f49d841..9fc7c28 100644 --- a/.gitignore +++ b/.gitignore @@ -66,7 +66,7 @@ pids lib-cov # Coverage directory used by tools like istanbul -coverage/lcov-report/src +coverage *.lcov # nyc test coverage From bbc771227008763f20bcb90dfcc281ab6ecd6deb Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 4 Dec 2024 18:04:53 +0000 Subject: [PATCH 12/82] removed coverage --- coverage/lcov-report/base.css | 224 - coverage/lcov-report/block-navigation.js | 87 - coverage/lcov-report/favicon.png | Bin 445 -> 0 bytes coverage/lcov-report/index.html | 1181 --- coverage/lcov-report/prettify.css | 1 - coverage/lcov-report/prettify.js | 2 - coverage/lcov-report/sort-arrow-sprite.png | Bin 138 -> 0 bytes coverage/lcov-report/sorter.js | 196 - coverage/lcov.info | 8235 -------------------- 9 files changed, 9926 deletions(-) delete mode 100644 coverage/lcov-report/base.css delete mode 100644 coverage/lcov-report/block-navigation.js delete mode 100644 coverage/lcov-report/favicon.png delete mode 100644 coverage/lcov-report/index.html delete mode 100644 coverage/lcov-report/prettify.css delete mode 100644 coverage/lcov-report/prettify.js delete mode 100644 coverage/lcov-report/sort-arrow-sprite.png delete mode 100644 coverage/lcov-report/sorter.js delete mode 100644 coverage/lcov.info diff --git a/coverage/lcov-report/base.css b/coverage/lcov-report/base.css deleted file mode 100644 index f418035..0000000 --- a/coverage/lcov-report/base.css +++ /dev/null @@ -1,224 +0,0 @@ -body, html { - margin:0; padding: 0; - height: 100%; -} -body { - font-family: Helvetica Neue, Helvetica, Arial; - font-size: 14px; - color:#333; -} -.small { font-size: 12px; } -*, *:after, *:before { - -webkit-box-sizing:border-box; - -moz-box-sizing:border-box; - box-sizing:border-box; - } -h1 { font-size: 20px; margin: 0;} -h2 { font-size: 14px; } -pre { - font: 12px/1.4 Consolas, "Liberation Mono", Menlo, Courier, monospace; - margin: 0; - padding: 0; - -moz-tab-size: 2; - -o-tab-size: 2; - tab-size: 2; -} -a { color:#0074D9; text-decoration:none; } -a:hover { text-decoration:underline; } -.strong { font-weight: bold; } -.space-top1 { padding: 10px 0 0 0; } -.pad2y { padding: 20px 0; } -.pad1y { padding: 10px 0; } -.pad2x { padding: 0 20px; } -.pad2 { padding: 20px; } -.pad1 { padding: 10px; } -.space-left2 { padding-left:55px; } -.space-right2 { padding-right:20px; } -.center { text-align:center; } -.clearfix { display:block; } -.clearfix:after { - content:''; - display:block; - height:0; - clear:both; - visibility:hidden; - } -.fl { float: left; } -@media only screen and (max-width:640px) { - .col3 { width:100%; max-width:100%; } - .hide-mobile { display:none!important; } -} - -.quiet { - color: #7f7f7f; - color: rgba(0,0,0,0.5); -} -.quiet a { opacity: 0.7; } - -.fraction { - font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; - font-size: 10px; - color: #555; - background: #E8E8E8; - padding: 4px 5px; - border-radius: 3px; - vertical-align: middle; -} - -div.path a:link, div.path a:visited { color: #333; } -table.coverage { - border-collapse: collapse; - margin: 10px 0 0 0; - padding: 0; -} - -table.coverage td { - margin: 0; - padding: 0; - vertical-align: top; -} -table.coverage td.line-count { - text-align: right; - padding: 0 5px 0 20px; -} -table.coverage td.line-coverage { - text-align: right; - padding-right: 10px; - min-width:20px; -} - -table.coverage td span.cline-any { - display: inline-block; - padding: 0 5px; - width: 100%; -} -.missing-if-branch { - display: inline-block; - margin-right: 5px; - border-radius: 3px; - position: relative; - padding: 0 4px; - background: #333; - color: yellow; -} - -.skip-if-branch { - display: none; - margin-right: 10px; - position: relative; - padding: 0 4px; - background: #ccc; - color: white; -} -.missing-if-branch .typ, .skip-if-branch .typ { - color: inherit !important; -} -.coverage-summary { - border-collapse: collapse; - width: 100%; -} -.coverage-summary tr { border-bottom: 1px solid #bbb; } -.keyline-all { border: 1px solid #ddd; } -.coverage-summary td, .coverage-summary th { padding: 10px; } -.coverage-summary tbody { border: 1px solid #bbb; } -.coverage-summary td { border-right: 1px solid #bbb; } -.coverage-summary td:last-child { border-right: none; } -.coverage-summary th { - text-align: left; - font-weight: normal; - white-space: nowrap; -} -.coverage-summary th.file { border-right: none !important; } -.coverage-summary th.pct { } -.coverage-summary th.pic, -.coverage-summary th.abs, -.coverage-summary td.pct, -.coverage-summary td.abs { text-align: right; } -.coverage-summary td.file { white-space: nowrap; } -.coverage-summary td.pic { min-width: 120px !important; } -.coverage-summary tfoot td { } - -.coverage-summary .sorter { - height: 10px; - width: 7px; - display: inline-block; - margin-left: 0.5em; - background: url(sort-arrow-sprite.png) no-repeat scroll 0 0 transparent; -} -.coverage-summary .sorted .sorter { - background-position: 0 -20px; -} -.coverage-summary .sorted-desc .sorter { - background-position: 0 -10px; -} -.status-line { height: 10px; } -/* yellow */ -.cbranch-no { background: yellow !important; color: #111; } -/* dark red */ -.red.solid, .status-line.low, .low .cover-fill { background:#C21F39 } -.low .chart { border:1px solid #C21F39 } -.highlighted, -.highlighted .cstat-no, .highlighted .fstat-no, .highlighted .cbranch-no{ - background: #C21F39 !important; -} -/* medium red */ -.cstat-no, .fstat-no, .cbranch-no, .cbranch-no { background:#F6C6CE } -/* light red */ -.low, .cline-no { background:#FCE1E5 } -/* light green */ -.high, .cline-yes { background:rgb(230,245,208) } -/* medium green */ -.cstat-yes { background:rgb(161,215,106) } -/* dark green */ -.status-line.high, .high .cover-fill { background:rgb(77,146,33) } -.high .chart { border:1px solid rgb(77,146,33) } -/* dark yellow (gold) */ -.status-line.medium, .medium .cover-fill { background: #f9cd0b; } -.medium .chart { border:1px solid #f9cd0b; } -/* light yellow */ -.medium { background: #fff4c2; } - -.cstat-skip { background: #ddd; color: #111; } -.fstat-skip { background: #ddd; color: #111 !important; } -.cbranch-skip { background: #ddd !important; color: #111; } - -span.cline-neutral { background: #eaeaea; } - -.coverage-summary td.empty { - opacity: .5; - padding-top: 4px; - padding-bottom: 4px; - line-height: 1; - color: #888; -} - -.cover-fill, .cover-empty { - display:inline-block; - height: 12px; -} -.chart { - line-height: 0; -} -.cover-empty { - background: white; -} -.cover-full { - border-right: none !important; -} -pre.prettyprint { - border: none !important; - padding: 0 !important; - margin: 0 !important; -} -.com { color: #999 !important; } -.ignore-none { color: #999; font-weight: normal; } - -.wrapper { - min-height: 100%; - height: auto !important; - height: 100%; - margin: 0 auto -48px; -} -.footer, .push { - height: 48px; -} diff --git a/coverage/lcov-report/block-navigation.js b/coverage/lcov-report/block-navigation.js deleted file mode 100644 index cc12130..0000000 --- a/coverage/lcov-report/block-navigation.js +++ /dev/null @@ -1,87 +0,0 @@ -/* eslint-disable */ -var jumpToCode = (function init() { - // Classes of code we would like to highlight in the file view - var missingCoverageClasses = ['.cbranch-no', '.cstat-no', '.fstat-no']; - - // Elements to highlight in the file listing view - var fileListingElements = ['td.pct.low']; - - // We don't want to select elements that are direct descendants of another match - var notSelector = ':not(' + missingCoverageClasses.join('):not(') + ') > '; // becomes `:not(a):not(b) > ` - - // Selecter that finds elements on the page to which we can jump - var selector = - fileListingElements.join(', ') + - ', ' + - notSelector + - missingCoverageClasses.join(', ' + notSelector); // becomes `:not(a):not(b) > a, :not(a):not(b) > b` - - // The NodeList of matching elements - var missingCoverageElements = document.querySelectorAll(selector); - - var currentIndex; - - function toggleClass(index) { - missingCoverageElements - .item(currentIndex) - .classList.remove('highlighted'); - missingCoverageElements.item(index).classList.add('highlighted'); - } - - function makeCurrent(index) { - toggleClass(index); - currentIndex = index; - missingCoverageElements.item(index).scrollIntoView({ - behavior: 'smooth', - block: 'center', - inline: 'center' - }); - } - - function goToPrevious() { - var nextIndex = 0; - if (typeof currentIndex !== 'number' || currentIndex === 0) { - nextIndex = missingCoverageElements.length - 1; - } else if (missingCoverageElements.length > 1) { - nextIndex = currentIndex - 1; - } - - makeCurrent(nextIndex); - } - - function goToNext() { - var nextIndex = 0; - - if ( - typeof currentIndex === 'number' && - currentIndex < missingCoverageElements.length - 1 - ) { - nextIndex = currentIndex + 1; - } - - makeCurrent(nextIndex); - } - - return function jump(event) { - if ( - document.getElementById('fileSearch') === document.activeElement && - document.activeElement != null - ) { - // if we're currently focused on the search input, we don't want to navigate - return; - } - - switch (event.which) { - case 78: // n - case 74: // j - goToNext(); - break; - case 66: // b - case 75: // k - case 80: // p - goToPrevious(); - break; - } - }; -})(); -window.addEventListener('keydown', jumpToCode); diff --git a/coverage/lcov-report/favicon.png b/coverage/lcov-report/favicon.png deleted file mode 100644 index c1525b811a167671e9de1fa78aab9f5c0b61cef7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 445 zcmV;u0Yd(XP))rP{nL}Ln%S7`m{0DjX9TLF* zFCb$4Oi7vyLOydb!7n&^ItCzb-%BoB`=x@N2jll2Nj`kauio%aw_@fe&*}LqlFT43 z8doAAe))z_%=P%v^@JHp3Hjhj^6*Kr_h|g_Gr?ZAa&y>wxHE99Gk>A)2MplWz2xdG zy8VD2J|Uf#EAw*bo5O*PO_}X2Tob{%bUoO2G~T`@%S6qPyc}VkhV}UifBuRk>%5v( z)x7B{I~z*k<7dv#5tC+m{km(D087J4O%+<<;K|qwefb6@GSX45wCK}Sn*> - - - - Code coverage report for All files - - - - - - - - - -
-
-

All files

-
- -
- 91.22% - Statements - 5565/6100 -
- - -
- 84.46% - Branches - 587/695 -
- - -
- 76.31% - Functions - 261/342 -
- - -
- 91.22% - Lines - 5565/6100 -
- - -
-

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

- -
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FileStatementsBranchesFunctionsLines
src -
-
98.5%263/26789.47%17/1980%8/1098.5%263/267
src/components -
-
81.48%44/5487.5%7/850%3/681.48%44/54
src/components/accordion -
-
57.89%33/570%0/10%0/357.89%33/57
src/components/action-menu -
-
96.03%97/10183.33%10/1285.71%6/796.03%97/101
src/components/avatar -
-
98.48%65/66100%2/2100%2/298.48%65/66
src/components/avatar-rail -
-
81.08%30/37100%0/00%0/281.08%30/37
src/components/badges/indicators -
-
94.73%72/7672.72%8/1180%4/594.73%72/76
src/components/badges/label -
-
76.19%32/420%0/10%0/276.19%32/42
src/components/badges/priority-pill -
-
84.09%37/440%0/10%0/184.09%37/44
src/components/badges/status-label -
-
65.57%40/610%0/10%0/265.57%40/61
src/components/badges/tag -
-
97.77%44/4550%2/4100%2/297.77%44/45
src/components/badges/workcloud-indicator -
-
56.25%27/48100%3/350%2/456.25%27/48
src/components/bottom-sheets -
-
100%65/65100%13/13100%3/3100%65/65
src/components/breadcrumbs -
-
90.12%73/8170%7/1075%3/490.12%73/81
src/components/breadcrumbs/breadcrumb-item -
-
100%33/3350%1/2100%1/1100%33/33
src/components/button -
-
95.31%122/12873.33%11/1575%6/895.31%122/128
src/components/button-group -
-
87.87%29/330%0/10%0/287.87%29/33
src/components/button-group/button-group-item -
-
45.45%35/770%0/10%0/445.45%35/77
src/components/button/icon-button -
-
100%28/2850%1/2100%1/1100%28/28
src/components/card -
-
93.54%29/310%0/10%0/193.54%29/31
src/components/card/card-body -
-
91.3%21/23100%0/00%0/191.3%21/23
src/components/card/card-footer -
-
91.3%21/23100%0/00%0/191.3%21/23
src/components/card/card-header -
-
100%42/42100%1/1100%1/1100%42/42
src/components/checkbox -
-
100%33/33100%2/2100%2/2100%33/33
src/components/chips/assist-chip -
-
94.59%35/3750%2/4100%2/294.59%35/37
src/components/chips/base-chips -
-
81.81%9/11100%2/250%1/281.81%9/11
src/components/chips/filter-chip -
-
86.66%39/4566.66%4/666.66%2/386.66%39/45
src/components/chips/input-chip -
-
100%29/2950%1/2100%1/1100%29/29
src/components/chips/status-chip -
-
85.18%23/270%0/10%0/285.18%23/27
src/components/dialog -
-
95.68%133/13936.36%4/1157.14%4/795.68%133/139
src/components/dropdown -
-
79.35%123/15578.26%18/2366.66%6/979.35%123/155
src/components/dropdown/dropdown-menu -
-
90.95%171/18881.81%27/3387.5%7/890.95%171/188
src/components/dropdown/menu-item -
-
86.66%39/4550%1/250%1/286.66%39/45
src/components/fab -
-
100%76/7693.33%14/15100%5/5100%76/76
src/components/file-upload -
-
60%93/15550%2/422.22%2/960%93/155
src/components/global-header -
-
100%52/5240%2/5100%2/2100%52/52
src/components/grid-menu-item -
-
100%41/4150%2/4100%2/2100%41/41
src/components/icon -
-
100%40/4090.9%10/11100%3/3100%40/40
src/components/in-page-banner -
-
95.77%68/7142.85%3/7100%3/395.77%68/71
src/components/list -
-
86.66%26/30100%0/00%0/286.66%26/30
src/components/list/list-item -
-
100%40/40100%1/1100%1/1100%40/40
src/components/navigation-bar -
-
100%30/30100%2/2100%2/2100%30/30
src/components/navigation-drawer -
-
100%62/6266.66%2/3100%2/2100%62/62
src/components/navigation-drawer/navigation-drawer-footer -
-
82.95%73/8850%2/450%2/482.95%73/88
src/components/navigation-drawer/navigation-drawer-header -
-
56.25%27/48100%0/00%0/256.25%27/48
src/components/navigation-drawer/navigation-drawer-item -
-
100%45/4566.66%2/3100%2/2100%45/45
src/components/navigation-drawer/navigation-drawer-sub-item -
-
100%38/3866.66%2/3100%2/2100%38/38
src/components/navigation-profile -
-
100%35/3550%1/2100%1/1100%35/35
src/components/navigation-rail -
-
100%74/7460%3/5100%3/3100%74/74
src/components/pagination -
-
98.54%135/13792.3%24/26100%7/798.54%135/137
src/components/progress-indicators/progress-bar -
-
92.64%63/6842.85%3/7100%3/392.64%63/68
src/components/progress-indicators/progress-circle -
-
99.2%125/12685.71%18/21100%7/799.2%125/126
src/components/radio-button -
-
100%65/65100%10/10100%7/7100%65/65
src/components/search -
-
82.4%89/10886.66%13/1580%8/1082.4%89/108
src/components/segmented-control -
-
93.75%120/12873.91%17/23100%8/893.75%120/128
src/components/slider -
-
82.29%265/32289.18%33/3785.71%18/2182.29%265/322
src/components/slider/range-selector -
-
98.85%172/17496.42%27/2891.66%11/1298.85%172/174
src/components/slider/slider-input-field -
-
98.71%154/15691.66%11/1288.88%8/998.71%154/156
src/components/snackbar -
-
97.77%88/9083.33%10/12100%3/397.77%88/90
src/components/stepper -
-
100%75/7562.5%5/8100%3/3100%75/75
src/components/stepper-input -
-
100%98/9895.23%20/21100%4/4100%98/98
src/components/switch -
-
94.05%95/10190%9/1075%3/494.05%95/101
src/components/system-banner -
-
66.12%41/620%0/10%0/266.12%41/62
src/components/tab-bar -
-
92.85%26/28100%0/00%0/192.85%26/28
src/components/tab-bar/tab-item -
-
83.87%26/310%0/10%0/283.87%26/31
src/components/text-input -
-
100%147/14795.83%46/48100%10/10100%147/147
src/components/tooltip -
-
71.05%27/380%0/10%0/271.05%27/38
src/components/top-appbar -
-
100%49/49100%7/7100%3/3100%49/49
src/components/upload-item -
-
100%67/6788.88%8/9100%4/4100%67/67
src/mixins -
-
95.62%699/731100%110/11079.59%39/4995.62%699/731
src/test -
-
100%148/148100%22/22100%14/14100%148/148
src/test/text-input -
-
100%55/55100%2/2100%1/1100%55/55
-
-
-
- - - - - - - - \ No newline at end of file diff --git a/coverage/lcov-report/prettify.css b/coverage/lcov-report/prettify.css deleted file mode 100644 index b317a7c..0000000 --- a/coverage/lcov-report/prettify.css +++ /dev/null @@ -1 +0,0 @@ -.pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} diff --git a/coverage/lcov-report/prettify.js b/coverage/lcov-report/prettify.js deleted file mode 100644 index b322523..0000000 --- a/coverage/lcov-report/prettify.js +++ /dev/null @@ -1,2 +0,0 @@ -/* eslint-disable */ -window.PR_SHOULD_USE_CONTINUATION=true;(function(){var h=["break,continue,do,else,for,if,return,while"];var u=[h,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"];var p=[u,"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"];var l=[p,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"];var x=[p,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"];var R=[x,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"];var r="all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes";var w=[p,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"];var s="caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END";var I=[h,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"];var f=[h,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"];var H=[h,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"];var A=[l,R,w,s+I,f,H];var e=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/;var C="str";var z="kwd";var j="com";var O="typ";var G="lit";var L="pun";var F="pln";var m="tag";var E="dec";var J="src";var P="atn";var n="atv";var N="nocode";var M="(?:^^\\.?|[+-]|\\!|\\!=|\\!==|\\#|\\%|\\%=|&|&&|&&=|&=|\\(|\\*|\\*=|\\+=|\\,|\\-=|\\->|\\/|\\/=|:|::|\\;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|\\?|\\@|\\[|\\^|\\^=|\\^\\^|\\^\\^=|\\{|\\||\\|=|\\|\\||\\|\\|=|\\~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*";function k(Z){var ad=0;var S=false;var ac=false;for(var V=0,U=Z.length;V122)){if(!(al<65||ag>90)){af.push([Math.max(65,ag)|32,Math.min(al,90)|32])}if(!(al<97||ag>122)){af.push([Math.max(97,ag)&~32,Math.min(al,122)&~32])}}}}af.sort(function(av,au){return(av[0]-au[0])||(au[1]-av[1])});var ai=[];var ap=[NaN,NaN];for(var ar=0;arat[0]){if(at[1]+1>at[0]){an.push("-")}an.push(T(at[1]))}}an.push("]");return an.join("")}function W(al){var aj=al.source.match(new RegExp("(?:\\[(?:[^\\x5C\\x5D]|\\\\[\\s\\S])*\\]|\\\\u[A-Fa-f0-9]{4}|\\\\x[A-Fa-f0-9]{2}|\\\\[0-9]+|\\\\[^ux0-9]|\\(\\?[:!=]|[\\(\\)\\^]|[^\\x5B\\x5C\\(\\)\\^]+)","g"));var ah=aj.length;var an=[];for(var ak=0,am=0;ak=2&&ai==="["){aj[ak]=X(ag)}else{if(ai!=="\\"){aj[ak]=ag.replace(/[a-zA-Z]/g,function(ao){var ap=ao.charCodeAt(0);return"["+String.fromCharCode(ap&~32,ap|32)+"]"})}}}}return aj.join("")}var aa=[];for(var V=0,U=Z.length;V=0;){S[ac.charAt(ae)]=Y}}var af=Y[1];var aa=""+af;if(!ag.hasOwnProperty(aa)){ah.push(af);ag[aa]=null}}ah.push(/[\0-\uffff]/);V=k(ah)})();var X=T.length;var W=function(ah){var Z=ah.sourceCode,Y=ah.basePos;var ad=[Y,F];var af=0;var an=Z.match(V)||[];var aj={};for(var ae=0,aq=an.length;ae=5&&"lang-"===ap.substring(0,5);if(am&&!(ai&&typeof ai[1]==="string")){am=false;ap=J}if(!am){aj[ag]=ap}}var ab=af;af+=ag.length;if(!am){ad.push(Y+ab,ap)}else{var al=ai[1];var ak=ag.indexOf(al);var ac=ak+al.length;if(ai[2]){ac=ag.length-ai[2].length;ak=ac-al.length}var ar=ap.substring(5);B(Y+ab,ag.substring(0,ak),W,ad);B(Y+ab+ak,al,q(ar,al),ad);B(Y+ab+ac,ag.substring(ac),W,ad)}}ah.decorations=ad};return W}function i(T){var W=[],S=[];if(T.tripleQuotedStrings){W.push([C,/^(?:\'\'\'(?:[^\'\\]|\\[\s\S]|\'{1,2}(?=[^\']))*(?:\'\'\'|$)|\"\"\"(?:[^\"\\]|\\[\s\S]|\"{1,2}(?=[^\"]))*(?:\"\"\"|$)|\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$))/,null,"'\""])}else{if(T.multiLineStrings){W.push([C,/^(?:\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$)|\`(?:[^\\\`]|\\[\s\S])*(?:\`|$))/,null,"'\"`"])}else{W.push([C,/^(?:\'(?:[^\\\'\r\n]|\\.)*(?:\'|$)|\"(?:[^\\\"\r\n]|\\.)*(?:\"|$))/,null,"\"'"])}}if(T.verbatimStrings){S.push([C,/^@\"(?:[^\"]|\"\")*(?:\"|$)/,null])}var Y=T.hashComments;if(Y){if(T.cStyleComments){if(Y>1){W.push([j,/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,null,"#"])}else{W.push([j,/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\r\n]*)/,null,"#"])}S.push([C,/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,null])}else{W.push([j,/^#[^\r\n]*/,null,"#"])}}if(T.cStyleComments){S.push([j,/^\/\/[^\r\n]*/,null]);S.push([j,/^\/\*[\s\S]*?(?:\*\/|$)/,null])}if(T.regexLiterals){var X=("/(?=[^/*])(?:[^/\\x5B\\x5C]|\\x5C[\\s\\S]|\\x5B(?:[^\\x5C\\x5D]|\\x5C[\\s\\S])*(?:\\x5D|$))+/");S.push(["lang-regex",new RegExp("^"+M+"("+X+")")])}var V=T.types;if(V){S.push([O,V])}var U=(""+T.keywords).replace(/^ | $/g,"");if(U.length){S.push([z,new RegExp("^(?:"+U.replace(/[\s,]+/g,"|")+")\\b"),null])}W.push([F,/^\s+/,null," \r\n\t\xA0"]);S.push([G,/^@[a-z_$][a-z_$@0-9]*/i,null],[O,/^(?:[@_]?[A-Z]+[a-z][A-Za-z_$@0-9]*|\w+_t\b)/,null],[F,/^[a-z_$][a-z_$@0-9]*/i,null],[G,new RegExp("^(?:0x[a-f0-9]+|(?:\\d(?:_\\d+)*\\d*(?:\\.\\d*)?|\\.\\d\\+)(?:e[+\\-]?\\d+)?)[a-z]*","i"),null,"0123456789"],[F,/^\\[\s\S]?/,null],[L,/^.[^\s\w\.$@\'\"\`\/\#\\]*/,null]);return g(W,S)}var K=i({keywords:A,hashComments:true,cStyleComments:true,multiLineStrings:true,regexLiterals:true});function Q(V,ag){var U=/(?:^|\s)nocode(?:\s|$)/;var ab=/\r\n?|\n/;var ac=V.ownerDocument;var S;if(V.currentStyle){S=V.currentStyle.whiteSpace}else{if(window.getComputedStyle){S=ac.defaultView.getComputedStyle(V,null).getPropertyValue("white-space")}}var Z=S&&"pre"===S.substring(0,3);var af=ac.createElement("LI");while(V.firstChild){af.appendChild(V.firstChild)}var W=[af];function ae(al){switch(al.nodeType){case 1:if(U.test(al.className)){break}if("BR"===al.nodeName){ad(al);if(al.parentNode){al.parentNode.removeChild(al)}}else{for(var an=al.firstChild;an;an=an.nextSibling){ae(an)}}break;case 3:case 4:if(Z){var am=al.nodeValue;var aj=am.match(ab);if(aj){var ai=am.substring(0,aj.index);al.nodeValue=ai;var ah=am.substring(aj.index+aj[0].length);if(ah){var ak=al.parentNode;ak.insertBefore(ac.createTextNode(ah),al.nextSibling)}ad(al);if(!ai){al.parentNode.removeChild(al)}}}break}}function ad(ak){while(!ak.nextSibling){ak=ak.parentNode;if(!ak){return}}function ai(al,ar){var aq=ar?al.cloneNode(false):al;var ao=al.parentNode;if(ao){var ap=ai(ao,1);var an=al.nextSibling;ap.appendChild(aq);for(var am=an;am;am=an){an=am.nextSibling;ap.appendChild(am)}}return aq}var ah=ai(ak.nextSibling,0);for(var aj;(aj=ah.parentNode)&&aj.nodeType===1;){ah=aj}W.push(ah)}for(var Y=0;Y=S){ah+=2}if(V>=ap){Z+=2}}}var t={};function c(U,V){for(var S=V.length;--S>=0;){var T=V[S];if(!t.hasOwnProperty(T)){t[T]=U}else{if(window.console){console.warn("cannot override language handler %s",T)}}}}function q(T,S){if(!(T&&t.hasOwnProperty(T))){T=/^\s*]*(?:>|$)/],[j,/^<\!--[\s\S]*?(?:-\->|$)/],["lang-",/^<\?([\s\S]+?)(?:\?>|$)/],["lang-",/^<%([\s\S]+?)(?:%>|$)/],[L,/^(?:<[%?]|[%?]>)/],["lang-",/^]*>([\s\S]+?)<\/xmp\b[^>]*>/i],["lang-js",/^]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\s\S]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]),["default-markup","htm","html","mxml","xhtml","xml","xsl"]);c(g([[F,/^[\s]+/,null," \t\r\n"],[n,/^(?:\"[^\"]*\"?|\'[^\']*\'?)/,null,"\"'"]],[[m,/^^<\/?[a-z](?:[\w.:-]*\w)?|\/?>$/i],[P,/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^>\'\"\s]*(?:[^>\'\"\s\/]|\/(?=\s)))/],[L,/^[=<>\/]+/],["lang-js",/^on\w+\s*=\s*\"([^\"]+)\"/i],["lang-js",/^on\w+\s*=\s*\'([^\']+)\'/i],["lang-js",/^on\w+\s*=\s*([^\"\'>\s]+)/i],["lang-css",/^style\s*=\s*\"([^\"]+)\"/i],["lang-css",/^style\s*=\s*\'([^\']+)\'/i],["lang-css",/^style\s*=\s*([^\"\'>\s]+)/i]]),["in.tag"]);c(g([],[[n,/^[\s\S]+/]]),["uq.val"]);c(i({keywords:l,hashComments:true,cStyleComments:true,types:e}),["c","cc","cpp","cxx","cyc","m"]);c(i({keywords:"null,true,false"}),["json"]);c(i({keywords:R,hashComments:true,cStyleComments:true,verbatimStrings:true,types:e}),["cs"]);c(i({keywords:x,cStyleComments:true}),["java"]);c(i({keywords:H,hashComments:true,multiLineStrings:true}),["bsh","csh","sh"]);c(i({keywords:I,hashComments:true,multiLineStrings:true,tripleQuotedStrings:true}),["cv","py"]);c(i({keywords:s,hashComments:true,multiLineStrings:true,regexLiterals:true}),["perl","pl","pm"]);c(i({keywords:f,hashComments:true,multiLineStrings:true,regexLiterals:true}),["rb"]);c(i({keywords:w,cStyleComments:true,regexLiterals:true}),["js"]);c(i({keywords:r,hashComments:3,cStyleComments:true,multilineStrings:true,tripleQuotedStrings:true,regexLiterals:true}),["coffee"]);c(g([],[[C,/^[\s\S]+/]]),["regex"]);function d(V){var U=V.langExtension;try{var S=a(V.sourceNode);var T=S.sourceCode;V.sourceCode=T;V.spans=S.spans;V.basePos=0;q(U,T)(V);D(V)}catch(W){if("console" in window){console.log(W&&W.stack?W.stack:W)}}}function y(W,V,U){var S=document.createElement("PRE");S.innerHTML=W;if(U){Q(S,U)}var T={langExtension:V,numberLines:U,sourceNode:S};d(T);return S.innerHTML}function b(ad){function Y(af){return document.getElementsByTagName(af)}var ac=[Y("pre"),Y("code"),Y("xmp")];var T=[];for(var aa=0;aa=0){var ah=ai.match(ab);var am;if(!ah&&(am=o(aj))&&"CODE"===am.tagName){ah=am.className.match(ab)}if(ah){ah=ah[1]}var al=false;for(var ak=aj.parentNode;ak;ak=ak.parentNode){if((ak.tagName==="pre"||ak.tagName==="code"||ak.tagName==="xmp")&&ak.className&&ak.className.indexOf("prettyprint")>=0){al=true;break}}if(!al){var af=aj.className.match(/\blinenums\b(?::(\d+))?/);af=af?af[1]&&af[1].length?+af[1]:true:false;if(af){Q(aj,af)}S={langExtension:ah,sourceNode:aj,numberLines:af};d(S)}}}if(X]*(?:>|$)/],[PR.PR_COMMENT,/^<\!--[\s\S]*?(?:-\->|$)/],[PR.PR_PUNCTUATION,/^(?:<[%?]|[%?]>)/],["lang-",/^<\?([\s\S]+?)(?:\?>|$)/],["lang-",/^<%([\s\S]+?)(?:%>|$)/],["lang-",/^]*>([\s\S]+?)<\/xmp\b[^>]*>/i],["lang-handlebars",/^]*type\s*=\s*['"]?text\/x-handlebars-template['"]?\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-js",/^]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\s\S]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i],[PR.PR_DECLARATION,/^{{[#^>/]?\s*[\w.][^}]*}}/],[PR.PR_DECLARATION,/^{{&?\s*[\w.][^}]*}}/],[PR.PR_DECLARATION,/^{{{>?\s*[\w.][^}]*}}}/],[PR.PR_COMMENT,/^{{![^}]*}}/]]),["handlebars","hbs"]);PR.registerLangHandler(PR.createSimpleLexer([[PR.PR_PLAIN,/^[ \t\r\n\f]+/,null," \t\r\n\f"]],[[PR.PR_STRING,/^\"(?:[^\n\r\f\\\"]|\\(?:\r\n?|\n|\f)|\\[\s\S])*\"/,null],[PR.PR_STRING,/^\'(?:[^\n\r\f\\\']|\\(?:\r\n?|\n|\f)|\\[\s\S])*\'/,null],["lang-css-str",/^url\(([^\)\"\']*)\)/i],[PR.PR_KEYWORD,/^(?:url|rgb|\!important|@import|@page|@media|@charset|inherit)(?=[^\-\w]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|(?:\\[0-9a-f]+ ?))(?:[_a-z0-9\-]|\\(?:\\[0-9a-f]+ ?))*)\s*:/i],[PR.PR_COMMENT,/^\/\*[^*]*\*+(?:[^\/*][^*]*\*+)*\//],[PR.PR_COMMENT,/^(?:)/],[PR.PR_LITERAL,/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],[PR.PR_LITERAL,/^#(?:[0-9a-f]{3}){1,2}/i],[PR.PR_PLAIN,/^-?(?:[_a-z]|(?:\\[\da-f]+ ?))(?:[_a-z\d\-]|\\(?:\\[\da-f]+ ?))*/i],[PR.PR_PUNCTUATION,/^[^\s\w\'\"]+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[[PR.PR_KEYWORD,/^-?(?:[_a-z]|(?:\\[\da-f]+ ?))(?:[_a-z\d\-]|\\(?:\\[\da-f]+ ?))*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[[PR.PR_STRING,/^[^\)\"\']+/]]),["css-str"]); diff --git a/coverage/lcov-report/sort-arrow-sprite.png b/coverage/lcov-report/sort-arrow-sprite.png deleted file mode 100644 index 6ed68316eb3f65dec9063332d2f69bf3093bbfab..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^>_9Bd!3HEZxJ@+%Qh}Z>jv*C{$p!i!8j}?a+@3A= zIAGwzjijN=FBi!|L1t?LM;Q;gkwn>2cAy-KV{dn nf0J1DIvEHQu*n~6U}x}qyky7vi4|9XhBJ7&`njxgN@xNA8m%nc diff --git a/coverage/lcov-report/sorter.js b/coverage/lcov-report/sorter.js deleted file mode 100644 index 2bb296a..0000000 --- a/coverage/lcov-report/sorter.js +++ /dev/null @@ -1,196 +0,0 @@ -/* eslint-disable */ -var addSorting = (function() { - 'use strict'; - var cols, - currentSort = { - index: 0, - desc: false - }; - - // returns the summary table element - function getTable() { - return document.querySelector('.coverage-summary'); - } - // returns the thead element of the summary table - function getTableHeader() { - return getTable().querySelector('thead tr'); - } - // returns the tbody element of the summary table - function getTableBody() { - return getTable().querySelector('tbody'); - } - // returns the th element for nth column - function getNthColumn(n) { - return getTableHeader().querySelectorAll('th')[n]; - } - - function onFilterInput() { - const searchValue = document.getElementById('fileSearch').value; - const rows = document.getElementsByTagName('tbody')[0].children; - for (let i = 0; i < rows.length; i++) { - const row = rows[i]; - if ( - row.textContent - .toLowerCase() - .includes(searchValue.toLowerCase()) - ) { - row.style.display = ''; - } else { - row.style.display = 'none'; - } - } - } - - // loads the search box - function addSearchBox() { - var template = document.getElementById('filterTemplate'); - var templateClone = template.content.cloneNode(true); - templateClone.getElementById('fileSearch').oninput = onFilterInput; - template.parentElement.appendChild(templateClone); - } - - // loads all columns - function loadColumns() { - var colNodes = getTableHeader().querySelectorAll('th'), - colNode, - cols = [], - col, - i; - - for (i = 0; i < colNodes.length; i += 1) { - colNode = colNodes[i]; - col = { - key: colNode.getAttribute('data-col'), - sortable: !colNode.getAttribute('data-nosort'), - type: colNode.getAttribute('data-type') || 'string' - }; - cols.push(col); - if (col.sortable) { - col.defaultDescSort = col.type === 'number'; - colNode.innerHTML = - colNode.innerHTML + ''; - } - } - return cols; - } - // attaches a data attribute to every tr element with an object - // of data values keyed by column name - function loadRowData(tableRow) { - var tableCols = tableRow.querySelectorAll('td'), - colNode, - col, - data = {}, - i, - val; - for (i = 0; i < tableCols.length; i += 1) { - colNode = tableCols[i]; - col = cols[i]; - val = colNode.getAttribute('data-value'); - if (col.type === 'number') { - val = Number(val); - } - data[col.key] = val; - } - return data; - } - // loads all row data - function loadData() { - var rows = getTableBody().querySelectorAll('tr'), - i; - - for (i = 0; i < rows.length; i += 1) { - rows[i].data = loadRowData(rows[i]); - } - } - // sorts the table using the data for the ith column - function sortByIndex(index, desc) { - var key = cols[index].key, - sorter = function(a, b) { - a = a.data[key]; - b = b.data[key]; - return a < b ? -1 : a > b ? 1 : 0; - }, - finalSorter = sorter, - tableBody = document.querySelector('.coverage-summary tbody'), - rowNodes = tableBody.querySelectorAll('tr'), - rows = [], - i; - - if (desc) { - finalSorter = function(a, b) { - return -1 * sorter(a, b); - }; - } - - for (i = 0; i < rowNodes.length; i += 1) { - rows.push(rowNodes[i]); - tableBody.removeChild(rowNodes[i]); - } - - rows.sort(finalSorter); - - for (i = 0; i < rows.length; i += 1) { - tableBody.appendChild(rows[i]); - } - } - // removes sort indicators for current column being sorted - function removeSortIndicators() { - var col = getNthColumn(currentSort.index), - cls = col.className; - - cls = cls.replace(/ sorted$/, '').replace(/ sorted-desc$/, ''); - col.className = cls; - } - // adds sort indicators for current column being sorted - function addSortIndicators() { - getNthColumn(currentSort.index).className += currentSort.desc - ? ' sorted-desc' - : ' sorted'; - } - // adds event listeners for all sorter widgets - function enableUI() { - var i, - el, - ithSorter = function ithSorter(i) { - var col = cols[i]; - - return function() { - var desc = col.defaultDescSort; - - if (currentSort.index === i) { - desc = !currentSort.desc; - } - sortByIndex(i, desc); - removeSortIndicators(); - currentSort.index = i; - currentSort.desc = desc; - addSortIndicators(); - }; - }; - for (i = 0; i < cols.length; i += 1) { - if (cols[i].sortable) { - // add the click event handler on the th so users - // dont have to click on those tiny arrows - el = getNthColumn(i).querySelector('.sorter').parentElement; - if (el.addEventListener) { - el.addEventListener('click', ithSorter(i)); - } else { - el.attachEvent('onclick', ithSorter(i)); - } - } - } - } - // adds sorting functionality to the UI - return function() { - if (!getTable()) { - return; - } - cols = loadColumns(); - loadData(); - addSearchBox(); - addSortIndicators(); - enableUI(); - }; -})(); - -window.addEventListener('load', addSorting); diff --git a/coverage/lcov.info b/coverage/lcov.info deleted file mode 100644 index 7ec9201..0000000 --- a/coverage/lcov.info +++ /dev/null @@ -1,8235 +0,0 @@ -TN: -SF:src\events.ts -FN:8,ZetaEvent -FN:21,toEvent -FN:38,ZetaSliderEvent -FN:53,ZetaRangeSliderEvent -FN:66,ZetaPageEvent -FN:74,ZetaCloseEvent -FN:83,ZetaPopupEvent -FN:92,ZetaCancelUploadEvent -FN:101,ZetaChangeEvent -FN:112,ZetaInputEvent -FNF:10 -FNH:8 -FNDA:20,ZetaEvent -FNDA:18,toEvent -FNDA:5,ZetaSliderEvent -FNDA:4,ZetaRangeSliderEvent -FNDA:2,ZetaPageEvent -FNDA:2,ZetaCloseEvent -FNDA:5,ZetaPopupEvent -FNDA:2,ZetaCancelUploadEvent -FNDA:0,ZetaChangeEvent -FNDA:0,ZetaInputEvent -DA:1,42 -DA:2,42 -DA:3,42 -DA:4,42 -DA:5,42 -DA:6,42 -DA:7,42 -DA:8,42 -DA:9,20 -DA:10,20 -DA:11,20 -DA:12,20 -DA:13,20 -DA:14,20 -DA:15,20 -DA:16,20 -DA:17,20 -DA:18,20 -DA:19,20 -DA:20,20 -DA:21,42 -DA:22,18 -DA:23,18 -DA:24,18 -DA:25,18 -DA:26,18 -DA:27,18 -DA:28,18 -DA:29,42 -DA:30,42 -DA:31,42 -DA:32,42 -DA:33,42 -DA:34,42 -DA:35,42 -DA:36,42 -DA:37,42 -DA:38,42 -DA:39,5 -DA:40,5 -DA:41,42 -DA:42,42 -DA:43,42 -DA:44,42 -DA:45,42 -DA:46,42 -DA:47,42 -DA:48,42 -DA:49,42 -DA:50,42 -DA:51,42 -DA:52,42 -DA:53,42 -DA:54,4 -DA:55,4 -DA:56,42 -DA:57,42 -DA:58,42 -DA:59,42 -DA:60,42 -DA:61,42 -DA:62,42 -DA:63,42 -DA:64,42 -DA:65,42 -DA:66,42 -DA:67,2 -DA:68,2 -DA:69,42 -DA:70,42 -DA:71,42 -DA:72,42 -DA:73,42 -DA:74,42 -DA:75,2 -DA:76,2 -DA:77,42 -DA:78,42 -DA:79,42 -DA:80,42 -DA:81,42 -DA:82,42 -DA:83,42 -DA:84,5 -DA:85,5 -DA:86,5 -DA:87,42 -DA:88,42 -DA:89,42 -DA:90,42 -DA:91,42 -DA:92,42 -DA:93,2 -DA:94,2 -DA:95,42 -DA:96,42 -DA:97,42 -DA:98,42 -DA:99,42 -DA:100,42 -DA:101,42 -DA:102,0 -DA:103,0 -DA:104,42 -DA:105,42 -DA:106,42 -DA:107,42 -DA:108,42 -DA:109,42 -DA:110,42 -DA:111,42 -DA:112,42 -DA:113,0 -DA:114,0 -DA:115,42 -DA:116,42 -DA:117,42 -DA:118,42 -DA:119,42 -DA:120,42 -DA:121,42 -DA:122,42 -DA:123,42 -DA:124,42 -LF:124 -LH:120 -BRDA:8,0,0,20 -BRDA:17,1,0,6 -BRDA:17,2,0,6 -BRDA:17,3,0,6 -BRDA:18,4,0,6 -BRDA:18,5,0,6 -BRDA:18,6,0,6 -BRDA:19,7,0,6 -BRDA:19,8,0,0 -BRDA:19,9,0,0 -BRDA:21,10,0,18 -BRDA:83,11,0,5 -BRDA:17,12,0,14 -BRDA:18,13,0,14 -BRDA:74,14,0,2 -BRDA:66,15,0,2 -BRDA:92,16,0,2 -BRDA:53,17,0,4 -BRDA:38,18,0,5 -BRF:19 -BRH:17 -end_of_record -TN: -SF:src\index.ts -FNF:0 -FNH:0 -DA:1,3 -DA:2,3 -DA:3,3 -DA:4,3 -DA:5,3 -DA:6,3 -DA:7,3 -DA:8,3 -DA:9,3 -DA:10,3 -DA:11,3 -DA:12,3 -DA:13,3 -DA:14,3 -DA:15,3 -DA:16,3 -DA:17,3 -DA:18,3 -DA:19,3 -DA:20,3 -DA:21,3 -DA:22,3 -DA:23,3 -DA:24,3 -DA:25,3 -DA:26,3 -DA:27,3 -DA:28,3 -DA:29,3 -DA:30,3 -DA:31,3 -DA:32,3 -DA:33,3 -DA:34,3 -DA:35,3 -DA:36,3 -DA:37,3 -DA:38,3 -DA:39,3 -DA:40,3 -DA:41,3 -DA:42,3 -DA:43,3 -DA:44,3 -DA:45,3 -DA:46,3 -DA:47,3 -DA:48,3 -DA:49,3 -DA:50,3 -DA:51,3 -DA:52,3 -DA:53,3 -DA:54,3 -DA:55,3 -DA:56,3 -DA:57,3 -DA:58,3 -DA:59,3 -DA:60,3 -DA:61,3 -DA:62,3 -DA:63,3 -DA:64,3 -DA:65,3 -DA:66,3 -DA:67,3 -DA:68,3 -DA:69,3 -DA:70,3 -DA:71,3 -DA:72,3 -DA:73,3 -DA:74,3 -DA:75,3 -DA:76,3 -DA:77,3 -DA:78,3 -DA:79,3 -DA:80,3 -DA:81,3 -DA:82,3 -DA:83,3 -DA:84,3 -DA:85,3 -DA:86,3 -DA:87,3 -DA:88,3 -DA:89,3 -DA:90,3 -DA:91,3 -DA:92,3 -DA:93,3 -DA:94,3 -DA:95,3 -DA:96,3 -DA:97,3 -DA:98,3 -DA:99,3 -DA:100,3 -DA:101,3 -DA:102,3 -DA:103,3 -DA:104,3 -DA:105,3 -DA:106,3 -DA:107,3 -DA:108,3 -DA:109,3 -DA:110,3 -DA:111,3 -DA:112,3 -DA:113,3 -DA:114,3 -DA:115,3 -DA:116,3 -DA:117,3 -DA:118,3 -DA:119,3 -DA:120,3 -DA:121,3 -DA:122,3 -DA:123,3 -DA:124,3 -DA:125,3 -DA:126,3 -DA:127,3 -DA:128,3 -DA:129,3 -DA:130,3 -DA:131,3 -DA:132,3 -DA:133,3 -DA:134,3 -DA:135,3 -DA:136,3 -DA:137,3 -DA:138,3 -DA:139,3 -DA:140,3 -DA:141,3 -DA:142,3 -DA:143,3 -LF:143 -LH:143 -BRF:0 -BRH:0 -end_of_record -TN: -SF:src\components\base-toggle-form-element.ts -FN:8, -FN:14,handleChange -FN:18,focus -FN:22,blur -FN:26,key -FN:34,render -FNF:6 -FNH:3 -FNDA:6, -FNDA:4,handleChange -FNDA:0,focus -FNDA:0,blur -FNDA:0,key -FNDA:46,render -DA:1,6 -DA:2,6 -DA:3,6 -DA:4,6 -DA:5,6 -DA:6,6 -DA:7,6 -DA:8,6 -DA:9,6 -DA:10,6 -DA:11,6 -DA:12,6 -DA:13,6 -DA:14,6 -DA:15,4 -DA:16,4 -DA:17,6 -DA:18,6 -DA:19,0 -DA:20,0 -DA:21,6 -DA:22,6 -DA:23,0 -DA:24,0 -DA:25,6 -DA:26,6 -DA:27,0 -DA:28,0 -DA:29,0 -DA:30,0 -DA:31,0 -DA:32,0 -DA:33,6 -DA:34,6 -DA:35,46 -DA:36,46 -DA:37,46 -DA:38,46 -DA:39,46 -DA:40,46 -DA:41,46 -DA:42,46 -DA:43,46 -DA:44,24 -DA:45,46 -DA:46,46 -DA:47,46 -DA:48,46 -DA:49,46 -DA:50,46 -DA:51,46 -DA:52,6 -DA:53,6 -DA:54,6 -LF:54 -LH:44 -BRDA:8,0,0,6 -BRDA:53,1,0,0 -BRDA:14,2,0,8 -BRDA:34,3,0,49 -BRDA:39,4,0,3 -BRDA:44,5,0,3 -BRDA:44,6,0,25 -BRDA:43,7,0,27 -BRF:8 -BRH:7 -end_of_record -TN: -SF:src\components\accordion\accordion.ts -FN:20,ZetaAccordion -FN:34,toggleOpen -FN:38,render -FNF:3 -FNH:0 -FNDA:0,ZetaAccordion -FNDA:0,toggleOpen -FNDA:0,render -DA:1,3 -DA:2,3 -DA:3,3 -DA:4,3 -DA:5,3 -DA:6,3 -DA:7,3 -DA:8,3 -DA:9,3 -DA:10,3 -DA:11,3 -DA:12,3 -DA:13,3 -DA:14,3 -DA:15,3 -DA:16,3 -DA:17,3 -DA:18,3 -DA:19,3 -DA:20,3 -DA:21,0 -DA:22,0 -DA:23,0 -DA:24,0 -DA:25,0 -DA:26,0 -DA:27,0 -DA:28,0 -DA:29,0 -DA:30,0 -DA:31,0 -DA:32,0 -DA:33,3 -DA:34,3 -DA:35,0 -DA:36,0 -DA:37,3 -DA:38,3 -DA:39,0 -DA:40,0 -DA:41,0 -DA:42,0 -DA:43,0 -DA:44,0 -DA:45,0 -DA:46,0 -DA:47,0 -DA:48,0 -DA:49,3 -DA:50,3 -DA:51,3 -DA:52,3 -DA:53,3 -DA:54,3 -DA:55,3 -DA:56,3 -DA:57,3 -LF:57 -LH:33 -BRDA:50,0,0,0 -BRF:1 -BRH:0 -end_of_record -TN: -SF:src\components\action-menu\action-menu-button.ts -FN:18,ZetaActionMenuButton -FN:27,onClick -FN:47,firstUpdated -FN:51,handleClick -FN:60,handleOutsideClick -FN:67,renderItems -FN:75,render -FNF:7 -FNH:6 -FNDA:6,ZetaActionMenuButton -FNDA:0,onClick -FNDA:6,firstUpdated -FNDA:5,handleClick -FNDA:51,handleOutsideClick -FNDA:16,renderItems -FNDA:16,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,4 -DA:18,4 -DA:19,6 -DA:20,6 -DA:21,6 -DA:22,6 -DA:23,6 -DA:24,6 -DA:25,6 -DA:26,6 -DA:27,6 -DA:28,0 -DA:29,0 -DA:30,6 -DA:31,6 -DA:32,6 -DA:33,6 -DA:34,6 -DA:35,6 -DA:36,6 -DA:37,6 -DA:38,6 -DA:39,6 -DA:40,6 -DA:41,6 -DA:42,4 -DA:43,4 -DA:44,4 -DA:45,4 -DA:46,4 -DA:47,4 -DA:48,6 -DA:49,6 -DA:50,4 -DA:51,4 -DA:52,5 -DA:53,5 -DA:54,5 -DA:55,5 -DA:56,0 -DA:57,0 -DA:58,5 -DA:59,4 -DA:60,4 -DA:61,51 -DA:62,5 -DA:63,5 -DA:64,5 -DA:65,51 -DA:66,4 -DA:67,4 -DA:68,16 -DA:69,16 -DA:70,16 -DA:71,16 -DA:72,16 -DA:73,16 -DA:74,4 -DA:75,4 -DA:76,16 -DA:77,16 -DA:78,16 -DA:79,16 -DA:80,16 -DA:81,5 -DA:82,16 -DA:83,16 -DA:84,16 -DA:85,16 -DA:86,16 -DA:87,16 -DA:88,16 -DA:89,16 -DA:90,16 -DA:91,16 -DA:92,16 -DA:93,4 -DA:94,4 -DA:95,4 -DA:96,4 -DA:97,4 -DA:98,4 -DA:99,4 -DA:100,4 -DA:101,4 -LF:101 -LH:97 -BRDA:94,0,0,0 -BRDA:18,1,0,6 -BRDA:47,2,0,6 -BRDA:51,3,0,5 -BRDA:55,4,0,0 -BRDA:60,5,0,51 -BRDA:61,6,0,10 -BRDA:61,7,0,5 -BRDA:67,8,0,16 -BRDA:68,9,0,16 -BRDA:75,10,0,16 -BRDA:80,11,0,5 -BRF:12 -BRH:10 -end_of_record -TN: -SF:src\components\avatar\avatar.ts -FN:25,ZetaAvatar -FN:42,render -FNF:2 -FNH:2 -FNDA:5,ZetaAvatar -FNDA:5,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,4 -DA:18,4 -DA:19,4 -DA:20,4 -DA:21,4 -DA:22,4 -DA:23,4 -DA:24,4 -DA:25,4 -DA:26,5 -DA:27,5 -DA:28,5 -DA:29,5 -DA:30,5 -DA:31,5 -DA:32,5 -DA:33,5 -DA:34,5 -DA:35,5 -DA:36,5 -DA:37,5 -DA:38,5 -DA:39,5 -DA:40,5 -DA:41,4 -DA:42,4 -DA:43,5 -DA:44,5 -DA:45,5 -DA:46,5 -DA:47,5 -DA:48,5 -DA:49,5 -DA:50,0 -DA:51,5 -DA:52,5 -DA:53,5 -DA:54,5 -DA:55,5 -DA:56,5 -DA:57,5 -DA:58,4 -DA:59,4 -DA:60,4 -DA:61,4 -DA:62,4 -DA:63,4 -DA:64,4 -DA:65,4 -DA:66,4 -LF:66 -LH:65 -BRDA:25,0,0,5 -BRDA:42,1,0,5 -BRF:2 -BRH:2 -end_of_record -TN: -SF:src\components\avatar-rail\avatar-rail.ts -FN:14,ZetaAvatarRail -FN:26,render -FNF:2 -FNH:0 -FNDA:0,ZetaAvatarRail -FNDA:0,render -DA:1,3 -DA:2,3 -DA:3,3 -DA:4,3 -DA:5,3 -DA:6,3 -DA:7,3 -DA:8,3 -DA:9,3 -DA:10,3 -DA:11,3 -DA:12,3 -DA:13,3 -DA:14,3 -DA:15,0 -DA:16,0 -DA:17,0 -DA:18,0 -DA:19,0 -DA:20,3 -DA:21,3 -DA:22,3 -DA:23,3 -DA:24,3 -DA:25,3 -DA:26,3 -DA:27,0 -DA:28,0 -DA:29,3 -DA:30,3 -DA:31,3 -DA:32,3 -DA:33,3 -DA:34,3 -DA:35,3 -DA:36,3 -DA:37,3 -LF:37 -LH:30 -BRF:0 -BRH:0 -end_of_record -TN: -SF:src\components\badges\indicators\indicators.ts -FN:16,ZetaIndicator -FN:38,getBody -FN:46,render -FN:55,ZetaIconIndicator -FN:64,ZetaNotificationIndicator -FNF:5 -FNH:4 -FNDA:19,ZetaIndicator -FNDA:22,getBody -FNDA:22,render -FNDA:0,ZetaIconIndicator -FNDA:19,ZetaNotificationIndicator -DA:1,7 -DA:2,7 -DA:3,7 -DA:4,7 -DA:5,7 -DA:6,7 -DA:7,7 -DA:8,7 -DA:9,7 -DA:10,7 -DA:11,7 -DA:12,7 -DA:13,7 -DA:14,7 -DA:15,7 -DA:16,7 -DA:17,19 -DA:18,19 -DA:19,19 -DA:20,19 -DA:21,19 -DA:22,19 -DA:23,19 -DA:24,19 -DA:25,19 -DA:26,19 -DA:27,19 -DA:28,19 -DA:29,19 -DA:30,19 -DA:31,19 -DA:32,19 -DA:33,19 -DA:34,19 -DA:35,7 -DA:36,7 -DA:37,7 -DA:38,7 -DA:39,22 -DA:40,0 -DA:41,22 -DA:42,22 -DA:43,22 -DA:44,22 -DA:45,7 -DA:46,7 -DA:47,22 -DA:48,22 -DA:49,22 -DA:50,7 -DA:51,7 -DA:52,7 -DA:53,7 -DA:54,7 -DA:55,7 -DA:56,0 -DA:57,0 -DA:58,0 -DA:59,7 -DA:60,7 -DA:61,7 -DA:62,7 -DA:63,7 -DA:64,7 -DA:65,19 -DA:66,19 -DA:67,19 -DA:68,7 -DA:69,7 -DA:70,7 -DA:71,7 -DA:72,7 -DA:73,7 -DA:74,7 -DA:75,7 -DA:76,7 -LF:76 -LH:72 -BRDA:36,0,0,0 -BRDA:16,1,0,19 -BRDA:38,2,0,22 -BRDA:39,3,0,0 -BRDA:46,4,0,22 -BRDA:47,5,0,18 -BRDA:48,6,0,18 -BRDA:48,7,0,0 -BRDA:64,8,0,19 -BRDA:47,9,0,4 -BRDA:48,10,0,4 -BRF:11 -BRH:8 -end_of_record -TN: -SF:src\components\badges\label\label.ts -FN:16,ZetaLabel -FN:29,render -FNF:2 -FNH:0 -FNDA:0,ZetaLabel -FNDA:0,render -DA:1,3 -DA:2,3 -DA:3,3 -DA:4,3 -DA:5,3 -DA:6,3 -DA:7,3 -DA:8,3 -DA:9,3 -DA:10,3 -DA:11,3 -DA:12,3 -DA:13,3 -DA:14,3 -DA:15,3 -DA:16,3 -DA:17,0 -DA:18,0 -DA:19,0 -DA:20,0 -DA:21,3 -DA:22,3 -DA:23,3 -DA:24,3 -DA:25,3 -DA:26,3 -DA:27,3 -DA:28,3 -DA:29,3 -DA:30,0 -DA:31,0 -DA:32,0 -DA:33,0 -DA:34,0 -DA:35,0 -DA:36,3 -DA:37,3 -DA:38,3 -DA:39,3 -DA:40,3 -DA:41,3 -DA:42,3 -LF:42 -LH:32 -BRDA:27,0,0,0 -BRF:1 -BRH:0 -end_of_record -TN: -SF:src\components\badges\priority-pill\priority-pill.ts -FN:30,render -FNF:1 -FNH:0 -FNDA:0,render -DA:1,3 -DA:2,3 -DA:3,3 -DA:4,3 -DA:5,3 -DA:6,3 -DA:7,3 -DA:8,3 -DA:9,3 -DA:10,3 -DA:11,3 -DA:12,3 -DA:13,3 -DA:14,3 -DA:15,3 -DA:16,3 -DA:17,3 -DA:18,3 -DA:19,3 -DA:20,3 -DA:21,3 -DA:22,3 -DA:23,3 -DA:24,3 -DA:25,3 -DA:26,3 -DA:27,3 -DA:28,3 -DA:29,3 -DA:30,3 -DA:31,0 -DA:32,0 -DA:33,0 -DA:34,0 -DA:35,0 -DA:36,0 -DA:37,0 -DA:38,3 -DA:39,3 -DA:40,3 -DA:41,3 -DA:42,3 -DA:43,3 -DA:44,3 -LF:44 -LH:37 -BRDA:28,0,0,0 -BRF:1 -BRH:0 -end_of_record -TN: -SF:src\components\badges\status-label\status-label.ts -FN:19,ZetaStatusLabel -FN:35,render -FNF:2 -FNH:0 -FNDA:0,ZetaStatusLabel -FNDA:0,render -DA:1,3 -DA:2,3 -DA:3,3 -DA:4,3 -DA:5,3 -DA:6,3 -DA:7,3 -DA:8,3 -DA:9,3 -DA:10,3 -DA:11,3 -DA:12,3 -DA:13,3 -DA:14,3 -DA:15,3 -DA:16,3 -DA:17,3 -DA:18,3 -DA:19,3 -DA:20,0 -DA:21,0 -DA:22,3 -DA:23,3 -DA:24,3 -DA:25,3 -DA:26,3 -DA:27,3 -DA:28,3 -DA:29,3 -DA:30,3 -DA:31,3 -DA:32,3 -DA:33,3 -DA:34,3 -DA:35,3 -DA:36,0 -DA:37,0 -DA:38,0 -DA:39,0 -DA:40,0 -DA:41,0 -DA:42,0 -DA:43,0 -DA:44,0 -DA:45,0 -DA:46,0 -DA:47,0 -DA:48,0 -DA:49,0 -DA:50,0 -DA:51,0 -DA:52,0 -DA:53,0 -DA:54,0 -DA:55,3 -DA:56,3 -DA:57,3 -DA:58,3 -DA:59,3 -DA:60,3 -DA:61,3 -LF:61 -LH:40 -BRDA:33,0,0,0 -BRF:1 -BRH:0 -end_of_record -TN: -SF:src\components\badges\tag\tag.ts -FN:15,ZetaTag -FN:24,render -FNF:2 -FNH:2 -FNDA:5,ZetaTag -FNDA:9,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,5 -DA:17,5 -DA:18,5 -DA:19,5 -DA:20,5 -DA:21,4 -DA:22,4 -DA:23,4 -DA:24,4 -DA:25,9 -DA:26,9 -DA:27,0 -DA:28,9 -DA:29,9 -DA:30,9 -DA:31,9 -DA:32,9 -DA:33,9 -DA:34,9 -DA:35,9 -DA:36,9 -DA:37,9 -DA:38,9 -DA:39,4 -DA:40,4 -DA:41,4 -DA:42,4 -DA:43,4 -DA:44,4 -DA:45,4 -LF:45 -LH:44 -BRDA:22,0,0,0 -BRDA:15,1,0,5 -BRDA:24,2,0,9 -BRDA:26,3,0,0 -BRF:4 -BRH:2 -end_of_record -TN: -SF:src\components\badges\workcloud-indicator\workcloud-indicator.ts -FN:8,OverwriteStyles -FN:10, -FN:18,ZetaWorkcloudIndicator -FN:32,render -FNF:4 -FNH:2 -FNDA:3,OverwriteStyles -FNDA:3, -FNDA:0,ZetaWorkcloudIndicator -FNDA:0,render -DA:1,3 -DA:2,3 -DA:3,3 -DA:4,3 -DA:5,3 -DA:6,3 -DA:7,3 -DA:8,3 -DA:9,3 -DA:10,3 -DA:11,3 -DA:12,3 -DA:13,3 -DA:14,3 -DA:15,3 -DA:16,3 -DA:17,3 -DA:18,3 -DA:19,0 -DA:20,0 -DA:21,0 -DA:22,0 -DA:23,0 -DA:24,0 -DA:25,0 -DA:26,0 -DA:27,0 -DA:28,0 -DA:29,0 -DA:30,0 -DA:31,3 -DA:32,3 -DA:33,0 -DA:34,0 -DA:35,0 -DA:36,0 -DA:37,0 -DA:38,0 -DA:39,0 -DA:40,0 -DA:41,0 -DA:42,3 -DA:43,3 -DA:44,3 -DA:45,3 -DA:46,3 -DA:47,3 -DA:48,3 -LF:48 -LH:27 -BRDA:8,0,0,3 -BRDA:10,1,0,3 -BRDA:10,2,0,3 -BRF:3 -BRH:3 -end_of_record -TN: -SF:src\components\bottom-sheets\bottom-sheet.ts -FN:14,ZetaBottomSheet -FN:35,ZetaBottomSheet.setLayout -FN:48,render -FNF:3 -FNH:3 -FNDA:18,ZetaBottomSheet -FNDA:63,ZetaBottomSheet.setLayout -FNDA:45,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,18 -DA:16,18 -DA:17,18 -DA:18,18 -DA:19,18 -DA:20,18 -DA:21,18 -DA:22,18 -DA:23,18 -DA:24,18 -DA:25,18 -DA:26,18 -DA:27,18 -DA:28,18 -DA:29,18 -DA:30,18 -DA:31,18 -DA:32,18 -DA:33,18 -DA:34,18 -DA:35,18 -DA:36,63 -DA:37,63 -DA:38,15 -DA:39,15 -DA:40,63 -DA:41,15 -DA:42,15 -DA:43,48 -DA:44,33 -DA:45,33 -DA:46,63 -DA:47,4 -DA:48,4 -DA:49,45 -DA:50,45 -DA:51,45 -DA:52,45 -DA:53,45 -DA:54,45 -DA:55,45 -DA:56,45 -DA:57,45 -DA:58,45 -DA:59,45 -DA:60,4 -DA:61,4 -DA:62,4 -DA:63,4 -DA:64,4 -DA:65,4 -LF:65 -LH:65 -BRDA:14,0,0,18 -BRDA:35,1,0,63 -BRDA:37,2,0,45 -BRDA:37,3,0,15 -BRDA:40,4,0,48 -BRDA:40,5,0,30 -BRDA:40,6,0,15 -BRDA:43,7,0,33 -BRDA:48,8,0,45 -BRDA:54,9,0,27 -BRDA:54,10,0,18 -BRDA:54,11,0,9 -BRDA:54,12,0,36 -BRF:13 -BRH:13 -end_of_record -TN: -SF:src\components\breadcrumbs\breadcrumb.ts -FN:17,ZetaBreadcrumb -FN:33,ZetaBreadcrumb.handleClick -FN:41,ZetaBreadcrumb.handleSlotChange -FN:69,render -FNF:4 -FNH:3 -FNDA:3,ZetaBreadcrumb -FNDA:0,ZetaBreadcrumb.handleClick -FNDA:6,ZetaBreadcrumb.handleSlotChange -FNDA:6,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,4 -DA:18,3 -DA:19,3 -DA:20,3 -DA:21,3 -DA:22,3 -DA:23,3 -DA:24,3 -DA:25,3 -DA:26,3 -DA:27,3 -DA:28,3 -DA:29,3 -DA:30,3 -DA:31,3 -DA:32,3 -DA:33,3 -DA:34,0 -DA:35,0 -DA:36,0 -DA:37,0 -DA:38,0 -DA:39,0 -DA:40,3 -DA:41,3 -DA:42,6 -DA:43,6 -DA:44,3 -DA:45,3 -DA:46,3 -DA:47,3 -DA:48,3 -DA:49,3 -DA:50,3 -DA:51,0 -DA:52,0 -DA:53,3 -DA:54,3 -DA:55,3 -DA:56,3 -DA:57,3 -DA:58,18 -DA:59,18 -DA:60,3 -DA:61,3 -DA:62,3 -DA:63,3 -DA:64,3 -DA:65,3 -DA:66,3 -DA:67,6 -DA:68,4 -DA:69,4 -DA:70,6 -DA:71,6 -DA:72,6 -DA:73,6 -DA:74,6 -DA:75,4 -DA:76,4 -DA:77,4 -DA:78,4 -DA:79,4 -DA:80,4 -DA:81,4 -LF:81 -LH:73 -BRDA:18,0,0,0 -BRDA:17,1,0,3 -BRDA:41,2,0,6 -BRDA:43,3,0,3 -BRDA:45,4,0,0 -BRDA:50,5,0,0 -BRDA:57,6,0,18 -BRDA:58,7,0,3 -BRDA:59,8,0,9 -BRDA:69,9,0,6 -BRF:10 -BRH:7 -end_of_record -TN: -SF:src\components\breadcrumbs\breadcrumb-item\breadcrumb-item.ts -FN:19,render -FNF:1 -FNH:1 -FNDA:18,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,4 -DA:18,4 -DA:19,4 -DA:20,18 -DA:21,18 -DA:22,18 -DA:23,18 -DA:24,18 -DA:25,18 -DA:26,18 -DA:27,4 -DA:28,4 -DA:29,4 -DA:30,4 -DA:31,4 -DA:32,4 -DA:33,4 -LF:33 -LH:33 -BRDA:17,0,0,0 -BRDA:19,1,0,18 -BRF:2 -BRH:1 -end_of_record -TN: -SF:src\components\button\base-button.ts -FN:8, -FN:18,BaseButton -FN:31,focus -FN:35,blur -FN:39,click -FN:44,_handleClick -FNF:6 -FNH:4 -FNDA:15, -FNDA:116,BaseButton -FNDA:0,focus -FNDA:0,blur -FNDA:21,click -FNDA:17,_handleClick -DA:1,15 -DA:2,15 -DA:3,15 -DA:4,15 -DA:5,15 -DA:6,15 -DA:7,15 -DA:8,15 -DA:9,15 -DA:10,15 -DA:11,15 -DA:12,15 -DA:13,15 -DA:14,15 -DA:15,15 -DA:16,15 -DA:17,15 -DA:18,15 -DA:19,116 -DA:20,116 -DA:21,116 -DA:22,15 -DA:23,15 -DA:24,15 -DA:25,15 -DA:26,15 -DA:27,15 -DA:28,15 -DA:29,15 -DA:30,15 -DA:31,15 -DA:32,0 -DA:33,0 -DA:34,15 -DA:35,15 -DA:36,0 -DA:37,0 -DA:38,15 -DA:39,15 -DA:40,21 -DA:41,21 -DA:42,15 -DA:43,15 -DA:44,15 -DA:45,17 -DA:46,0 -DA:47,0 -DA:48,17 -DA:49,2 -DA:50,2 -DA:51,2 -DA:52,17 -DA:53,17 -DA:54,15 -DA:55,15 -DA:56,15 -DA:57,15 -DA:58,15 -LF:58 -LH:52 -BRDA:8,0,0,15 -BRDA:57,1,0,0 -BRDA:18,2,0,121 -BRDA:39,3,0,31 -BRDA:44,4,0,27 -BRDA:45,5,0,10 -BRDA:48,6,0,12 -BRDA:40,7,0,27 -BRF:8 -BRH:7 -end_of_record -TN: -SF:src\components\button\button.ts -FN:26,ZetaButton -FN:39,render -FNF:2 -FNH:2 -FNDA:100,ZetaButton -FNDA:122,render -DA:1,14 -DA:2,14 -DA:3,14 -DA:4,14 -DA:5,14 -DA:6,14 -DA:7,14 -DA:8,14 -DA:9,14 -DA:10,14 -DA:11,14 -DA:12,14 -DA:13,14 -DA:14,14 -DA:15,14 -DA:16,14 -DA:17,14 -DA:18,14 -DA:19,14 -DA:20,14 -DA:21,14 -DA:22,14 -DA:23,14 -DA:24,14 -DA:25,14 -DA:26,14 -DA:27,100 -DA:28,100 -DA:29,100 -DA:30,100 -DA:31,100 -DA:32,100 -DA:33,100 -DA:34,100 -DA:35,100 -DA:36,100 -DA:37,100 -DA:38,14 -DA:39,14 -DA:40,122 -DA:41,122 -DA:42,122 -DA:43,122 -DA:44,122 -DA:45,122 -DA:46,122 -DA:47,122 -DA:48,122 -DA:49,122 -DA:50,122 -DA:51,122 -DA:52,122 -DA:53,122 -DA:54,122 -DA:55,122 -DA:56,122 -DA:57,105 -DA:58,17 -DA:59,17 -DA:60,122 -DA:61,122 -DA:62,122 -DA:63,122 -DA:64,14 -DA:65,14 -DA:66,14 -DA:67,14 -DA:68,14 -DA:69,14 -DA:70,14 -LF:70 -LH:70 -BRDA:26,0,0,100 -BRDA:31,1,0,0 -BRDA:39,2,0,122 -BRDA:41,3,0,0 -BRDA:44,4,0,0 -BRDA:57,5,0,17 -BRDA:56,6,0,105 -BRF:7 -BRH:4 -end_of_record -TN: -SF:src\components\button-group\button-group.ts -FN:18,ZetaButtonGroup -FN:22,render -FNF:2 -FNH:0 -FNDA:0,ZetaButtonGroup -FNDA:0,render -DA:1,3 -DA:2,3 -DA:3,3 -DA:4,3 -DA:5,3 -DA:6,3 -DA:7,3 -DA:8,3 -DA:9,3 -DA:10,3 -DA:11,3 -DA:12,3 -DA:13,3 -DA:14,3 -DA:15,3 -DA:16,3 -DA:17,3 -DA:18,3 -DA:19,0 -DA:20,0 -DA:21,3 -DA:22,3 -DA:23,0 -DA:24,0 -DA:25,3 -DA:26,3 -DA:27,3 -DA:28,3 -DA:29,3 -DA:30,3 -DA:31,3 -DA:32,3 -DA:33,3 -LF:33 -LH:29 -BRDA:26,0,0,0 -BRF:1 -BRH:0 -end_of_record -TN: -SF:src\components\button-group\button-group-item\button-group-item.ts -FN:20,ZetaButtonGroupItem -FN:44,focus -FN:48,blur -FN:52,render -FNF:4 -FNH:0 -FNDA:0,ZetaButtonGroupItem -FNDA:0,focus -FNDA:0,blur -FNDA:0,render -DA:1,3 -DA:2,3 -DA:3,3 -DA:4,3 -DA:5,3 -DA:6,3 -DA:7,3 -DA:8,3 -DA:9,3 -DA:10,3 -DA:11,3 -DA:12,3 -DA:13,3 -DA:14,3 -DA:15,3 -DA:16,3 -DA:17,3 -DA:18,3 -DA:19,3 -DA:20,3 -DA:21,0 -DA:22,0 -DA:23,0 -DA:24,0 -DA:25,0 -DA:26,0 -DA:27,0 -DA:28,0 -DA:29,0 -DA:30,0 -DA:31,0 -DA:32,0 -DA:33,0 -DA:34,0 -DA:35,0 -DA:36,0 -DA:37,0 -DA:38,0 -DA:39,0 -DA:40,0 -DA:41,0 -DA:42,0 -DA:43,3 -DA:44,3 -DA:45,0 -DA:46,0 -DA:47,3 -DA:48,3 -DA:49,0 -DA:50,0 -DA:51,3 -DA:52,3 -DA:53,0 -DA:54,0 -DA:55,0 -DA:56,0 -DA:57,0 -DA:58,0 -DA:59,0 -DA:60,0 -DA:61,0 -DA:62,0 -DA:63,0 -DA:64,0 -DA:65,0 -DA:66,0 -DA:67,0 -DA:68,0 -DA:69,3 -DA:70,3 -DA:71,3 -DA:72,3 -DA:73,3 -DA:74,3 -DA:75,3 -DA:76,3 -DA:77,3 -LF:77 -LH:35 -BRDA:70,0,0,0 -BRF:1 -BRH:0 -end_of_record -TN: -SF:src\components\button\icon-button\icon-button.ts -FN:17,ZetaIconButton -FNF:1 -FNH:1 -FNDA:85,ZetaIconButton -DA:1,9 -DA:2,9 -DA:3,9 -DA:4,9 -DA:5,9 -DA:6,9 -DA:7,9 -DA:8,9 -DA:9,9 -DA:10,9 -DA:11,9 -DA:12,9 -DA:13,9 -DA:14,9 -DA:15,9 -DA:16,9 -DA:17,9 -DA:18,85 -DA:19,85 -DA:20,85 -DA:21,85 -DA:22,9 -DA:23,9 -DA:24,9 -DA:25,9 -DA:26,9 -DA:27,9 -DA:28,9 -LF:28 -LH:28 -BRDA:17,0,0,85 -BRDA:19,1,0,0 -BRF:2 -BRH:1 -end_of_record -TN: -SF:src\components\card\card.ts -FN:20,render -FNF:1 -FNH:0 -FNDA:0,render -DA:1,3 -DA:2,3 -DA:3,3 -DA:4,3 -DA:5,3 -DA:6,3 -DA:7,3 -DA:8,3 -DA:9,3 -DA:10,3 -DA:11,3 -DA:12,3 -DA:13,3 -DA:14,3 -DA:15,3 -DA:16,3 -DA:17,3 -DA:18,3 -DA:19,3 -DA:20,3 -DA:21,0 -DA:22,0 -DA:23,3 -DA:24,3 -DA:25,3 -DA:26,3 -DA:27,3 -DA:28,3 -DA:29,3 -DA:30,3 -DA:31,3 -LF:31 -LH:29 -BRDA:24,0,0,0 -BRF:1 -BRH:0 -end_of_record -TN: -SF:src\components\card\card-body\card-body.ts -FN:12,render -FNF:1 -FNH:0 -FNDA:0,render -DA:1,3 -DA:2,3 -DA:3,3 -DA:4,3 -DA:5,3 -DA:6,3 -DA:7,3 -DA:8,3 -DA:9,3 -DA:10,3 -DA:11,3 -DA:12,3 -DA:13,0 -DA:14,0 -DA:15,3 -DA:16,3 -DA:17,3 -DA:18,3 -DA:19,3 -DA:20,3 -DA:21,3 -DA:22,3 -DA:23,3 -LF:23 -LH:21 -BRF:0 -BRH:0 -end_of_record -TN: -SF:src\components\card\card-footer\card-footer.ts -FN:12,render -FNF:1 -FNH:0 -FNDA:0,render -DA:1,3 -DA:2,3 -DA:3,3 -DA:4,3 -DA:5,3 -DA:6,3 -DA:7,3 -DA:8,3 -DA:9,3 -DA:10,3 -DA:11,3 -DA:12,3 -DA:13,0 -DA:14,0 -DA:15,3 -DA:16,3 -DA:17,3 -DA:18,3 -DA:19,3 -DA:20,3 -DA:21,3 -DA:22,3 -DA:23,3 -LF:23 -LH:21 -BRF:0 -BRH:0 -end_of_record -TN: -SF:src\components\card\card-header\card-header.ts -FN:20,render -FNF:1 -FNH:1 -FNDA:5,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,4 -DA:18,4 -DA:19,4 -DA:20,4 -DA:21,5 -DA:22,5 -DA:23,5 -DA:24,5 -DA:25,5 -DA:26,5 -DA:27,5 -DA:28,5 -DA:29,5 -DA:30,5 -DA:31,5 -DA:32,5 -DA:33,5 -DA:34,4 -DA:35,4 -DA:36,4 -DA:37,4 -DA:38,4 -DA:39,4 -DA:40,4 -DA:41,4 -DA:42,4 -LF:42 -LH:42 -BRDA:20,0,0,5 -BRF:1 -BRH:1 -end_of_record -TN: -SF:src\components\checkbox\checkbox.ts -FN:15,ZetaCheckbox -FN:23,click -FNF:2 -FNH:2 -FNDA:12,ZetaCheckbox -FNDA:3,click -DA:1,5 -DA:2,5 -DA:3,5 -DA:4,5 -DA:5,5 -DA:6,5 -DA:7,5 -DA:8,5 -DA:9,5 -DA:10,5 -DA:11,5 -DA:12,5 -DA:13,5 -DA:14,5 -DA:15,5 -DA:16,12 -DA:17,12 -DA:18,12 -DA:19,5 -DA:20,5 -DA:21,5 -DA:22,5 -DA:23,5 -DA:24,3 -DA:25,3 -DA:26,5 -DA:27,5 -DA:28,5 -DA:29,5 -DA:30,5 -DA:31,5 -DA:32,5 -DA:33,5 -LF:33 -LH:33 -BRDA:15,0,0,12 -BRDA:23,1,0,3 -BRF:2 -BRH:2 -end_of_record -TN: -SF:src\components\chips\assist-chip\assist-chip.ts -FN:20,getIcon -FN:28,render -FNF:2 -FNH:2 -FNDA:3,getIcon -FNDA:3,render -DA:1,3 -DA:2,3 -DA:3,3 -DA:4,3 -DA:5,3 -DA:6,3 -DA:7,3 -DA:8,3 -DA:9,3 -DA:10,3 -DA:11,3 -DA:12,3 -DA:13,3 -DA:14,3 -DA:15,3 -DA:16,3 -DA:17,3 -DA:18,3 -DA:19,3 -DA:20,3 -DA:21,3 -DA:22,3 -DA:23,3 -DA:24,0 -DA:25,0 -DA:26,3 -DA:27,3 -DA:28,3 -DA:29,3 -DA:30,3 -DA:31,3 -DA:32,3 -DA:33,3 -DA:34,3 -DA:35,3 -DA:36,3 -DA:37,3 -LF:37 -LH:35 -BRDA:18,0,0,0 -BRDA:20,1,0,3 -BRDA:23,2,0,0 -BRDA:28,3,0,3 -BRF:4 -BRH:2 -end_of_record -TN: -SF:src\components\chips\base-chips\base-chip.ts -FN:6, -FN:8,render -FNF:2 -FNH:1 -FNDA:3, -FNDA:0,render -DA:1,3 -DA:2,3 -DA:3,3 -DA:4,3 -DA:5,3 -DA:6,3 -DA:7,3 -DA:8,3 -DA:9,0 -DA:10,0 -DA:11,3 -LF:11 -LH:9 -BRDA:6,0,0,3 -BRDA:6,1,0,3 -BRF:2 -BRH:2 -end_of_record -TN: -SF:src\components\chips\filter-chip\filter-chip.ts -FN:18,getIcon -FN:26,clickHanlder -FN:34,render -FNF:3 -FNH:2 -FNDA:4,getIcon -FNDA:0,clickHanlder -FNDA:4,render -DA:1,3 -DA:2,3 -DA:3,3 -DA:4,3 -DA:5,3 -DA:6,3 -DA:7,3 -DA:8,3 -DA:9,3 -DA:10,3 -DA:11,3 -DA:12,3 -DA:13,3 -DA:14,3 -DA:15,3 -DA:16,3 -DA:17,3 -DA:18,3 -DA:19,4 -DA:20,1 -DA:21,4 -DA:22,3 -DA:23,3 -DA:24,4 -DA:25,3 -DA:26,3 -DA:27,0 -DA:28,0 -DA:29,0 -DA:30,0 -DA:31,0 -DA:32,0 -DA:33,3 -DA:34,3 -DA:35,4 -DA:36,4 -DA:37,4 -DA:38,4 -DA:39,3 -DA:40,3 -DA:41,3 -DA:42,3 -DA:43,3 -DA:44,3 -DA:45,3 -LF:45 -LH:39 -BRDA:16,0,0,0 -BRDA:18,1,0,4 -BRDA:19,2,0,1 -BRDA:20,3,0,0 -BRDA:21,4,0,3 -BRDA:34,5,0,4 -BRF:6 -BRH:4 -end_of_record -TN: -SF:src\components\chips\input-chip\input-chip.ts -FN:16,render -FNF:1 -FNH:1 -FNDA:2,render -DA:1,3 -DA:2,3 -DA:3,3 -DA:4,3 -DA:5,3 -DA:6,3 -DA:7,3 -DA:8,3 -DA:9,3 -DA:10,3 -DA:11,3 -DA:12,3 -DA:13,3 -DA:14,3 -DA:15,3 -DA:16,3 -DA:17,2 -DA:18,2 -DA:19,2 -DA:20,2 -DA:21,2 -DA:22,2 -DA:23,3 -DA:24,3 -DA:25,3 -DA:26,3 -DA:27,3 -DA:28,3 -DA:29,3 -LF:29 -LH:29 -BRDA:14,0,0,0 -BRDA:16,1,0,2 -BRF:2 -BRH:1 -end_of_record -TN: -SF:src\components\chips\status-chip\status-chip.ts -FN:12,ZetaStatusChip -FN:18,render -FNF:2 -FNH:0 -FNDA:0,ZetaStatusChip -FNDA:0,render -DA:1,3 -DA:2,3 -DA:3,3 -DA:4,3 -DA:5,3 -DA:6,3 -DA:7,3 -DA:8,3 -DA:9,3 -DA:10,3 -DA:11,3 -DA:12,3 -DA:13,0 -DA:14,0 -DA:15,3 -DA:16,3 -DA:17,3 -DA:18,3 -DA:19,0 -DA:20,0 -DA:21,3 -DA:22,3 -DA:23,3 -DA:24,3 -DA:25,3 -DA:26,3 -DA:27,3 -LF:27 -LH:23 -BRDA:16,0,0,0 -BRF:1 -BRH:0 -end_of_record -TN: -SF:src\components\dialog\dialog.ts -FN:31,ZetaDialog -FN:41,ZetaDialog.handleSubmit -FN:81,ZetaDialog.handleActionButtonChange -FN:53,get title -FN:57,set title -FN:102,render -FN:115,btn -FNF:7 -FNH:4 -FNDA:5,ZetaDialog -FNDA:0,ZetaDialog.handleSubmit -FNDA:4,ZetaDialog.handleActionButtonChange -FNDA:6,get title -FNDA:0,set title -FNDA:4,render -FNDA:0,btn -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,4 -DA:18,4 -DA:19,4 -DA:20,4 -DA:21,4 -DA:22,4 -DA:23,4 -DA:24,4 -DA:25,4 -DA:26,4 -DA:27,4 -DA:28,4 -DA:29,4 -DA:30,4 -DA:31,4 -DA:32,5 -DA:33,5 -DA:34,5 -DA:35,4 -DA:36,4 -DA:37,4 -DA:38,4 -DA:39,4 -DA:40,4 -DA:41,4 -DA:42,3 -DA:43,3 -DA:44,3 -DA:45,3 -DA:46,3 -DA:47,3 -DA:48,3 -DA:49,4 -DA:50,4 -DA:51,4 -DA:52,4 -DA:53,4 -DA:54,6 -DA:55,6 -DA:56,4 -DA:57,4 -DA:58,0 -DA:59,0 -DA:60,4 -DA:61,4 -DA:62,4 -DA:63,4 -DA:64,4 -DA:65,4 -DA:66,4 -DA:67,4 -DA:68,4 -DA:69,4 -DA:70,4 -DA:71,4 -DA:72,4 -DA:73,4 -DA:74,4 -DA:75,4 -DA:76,4 -DA:77,4 -DA:78,4 -DA:79,4 -DA:80,4 -DA:81,4 -DA:82,7 -DA:83,7 -DA:84,7 -DA:85,3 -DA:86,3 -DA:87,3 -DA:88,3 -DA:89,7 -DA:90,3 -DA:91,3 -DA:92,3 -DA:93,3 -DA:94,7 -DA:95,3 -DA:96,3 -DA:97,3 -DA:98,3 -DA:99,7 -DA:100,7 -DA:101,4 -DA:102,4 -DA:103,4 -DA:104,4 -DA:105,4 -DA:106,4 -DA:107,4 -DA:108,4 -DA:109,4 -DA:110,4 -DA:111,4 -DA:112,4 -DA:113,4 -DA:114,4 -DA:115,4 -DA:116,4 -DA:117,4 -DA:118,0 -DA:119,0 -DA:120,0 -DA:121,0 -DA:122,4 -DA:123,4 -DA:124,4 -DA:125,4 -DA:126,4 -DA:127,4 -DA:128,4 -DA:129,4 -DA:130,4 -DA:131,4 -DA:132,4 -DA:133,4 -DA:134,4 -DA:135,4 -DA:136,4 -DA:137,4 -DA:138,4 -DA:139,4 -LF:139 -LH:133 -BRDA:132,0,0,0 -BRDA:31,1,0,5 -BRDA:81,2,0,4 -BRDA:84,3,0,0 -BRDA:84,4,0,0 -BRDA:89,5,0,0 -BRDA:89,6,0,0 -BRDA:94,7,0,0 -BRDA:94,8,0,0 -BRDA:53,9,0,6 -BRDA:102,10,0,4 -BRF:11 -BRH:4 -end_of_record -TN: -SF:src\components\dropdown\droppable.ts -FN:13,ZetaDroppable -FN:55,ZetaDroppable.topVisible -FN:59,ZetaDroppable.bottomVisible -FN:63,ZetaDroppable.alignHorizontally -FN:77,ZetaDroppable.alignVertically -FN:87,ZetaDroppable.setDroppablePosition -FN:45,getDroppablePosition -FN:125,updated -FN:141,render -FNF:9 -FNH:6 -FNDA:22,ZetaDroppable -FNDA:0,ZetaDroppable.topVisible -FNDA:0,ZetaDroppable.bottomVisible -FNDA:13,ZetaDroppable.alignHorizontally -FNDA:0,ZetaDroppable.alignVertically -FNDA:15,ZetaDroppable.setDroppablePosition -FNDA:28,getDroppablePosition -FNDA:51,updated -FNDA:51,render -DA:1,6 -DA:2,6 -DA:3,6 -DA:4,6 -DA:5,6 -DA:6,6 -DA:7,6 -DA:8,6 -DA:9,6 -DA:10,6 -DA:11,6 -DA:12,6 -DA:13,6 -DA:14,22 -DA:15,22 -DA:16,22 -DA:17,22 -DA:18,22 -DA:19,22 -DA:20,22 -DA:21,22 -DA:22,22 -DA:23,22 -DA:24,22 -DA:25,22 -DA:26,22 -DA:27,22 -DA:28,22 -DA:29,22 -DA:30,22 -DA:31,22 -DA:32,22 -DA:33,15 -DA:34,15 -DA:35,15 -DA:36,15 -DA:37,15 -DA:38,15 -DA:39,15 -DA:40,15 -DA:41,15 -DA:42,7 -DA:43,22 -DA:44,22 -DA:45,22 -DA:46,28 -DA:47,28 -DA:48,28 -DA:49,28 -DA:50,28 -DA:51,28 -DA:52,28 -DA:53,28 -DA:54,22 -DA:55,22 -DA:56,0 -DA:57,0 -DA:58,22 -DA:59,22 -DA:60,0 -DA:61,0 -DA:62,22 -DA:63,22 -DA:64,13 -DA:65,13 -DA:66,13 -DA:67,13 -DA:68,1 -DA:69,1 -DA:70,13 -DA:71,1 -DA:72,12 -DA:73,11 -DA:74,11 -DA:75,13 -DA:76,22 -DA:77,22 -DA:78,0 -DA:79,0 -DA:80,0 -DA:81,0 -DA:82,0 -DA:83,0 -DA:84,0 -DA:85,0 -DA:86,22 -DA:87,22 -DA:88,15 -DA:89,15 -DA:90,15 -DA:91,15 -DA:92,13 -DA:93,13 -DA:94,0 -DA:95,0 -DA:96,0 -DA:97,0 -DA:98,13 -DA:99,0 -DA:100,0 -DA:101,0 -DA:102,0 -DA:103,13 -DA:104,0 -DA:105,0 -DA:106,0 -DA:107,13 -DA:108,13 -DA:109,13 -DA:110,13 -DA:111,13 -DA:112,0 -DA:113,0 -DA:114,0 -DA:115,0 -DA:116,0 -DA:117,0 -DA:118,0 -DA:119,0 -DA:120,0 -DA:121,13 -DA:122,13 -DA:123,15 -DA:124,6 -DA:125,6 -DA:126,51 -DA:127,15 -DA:128,15 -DA:129,51 -DA:130,51 -DA:131,51 -DA:132,51 -DA:133,40 -DA:134,40 -DA:135,51 -DA:136,24 -DA:137,24 -DA:138,24 -DA:139,51 -DA:140,6 -DA:141,6 -DA:142,51 -DA:143,15 -DA:144,15 -DA:145,36 -DA:146,51 -DA:147,6 -DA:148,6 -DA:149,6 -DA:150,6 -DA:151,6 -DA:152,6 -DA:153,6 -DA:154,6 -DA:155,6 -LF:155 -LH:123 -BRDA:148,0,0,0 -BRDA:13,1,0,22 -BRDA:63,2,0,20 -BRDA:67,3,0,8 -BRDA:70,4,0,19 -BRDA:70,5,0,8 -BRDA:72,6,0,18 -BRDA:87,7,0,15 -BRDA:93,8,0,0 -BRDA:98,9,0,0 -BRDA:103,10,0,0 -BRDA:111,11,0,0 -BRDA:41,12,0,7 -BRDA:45,13,0,28 -BRDA:125,14,0,51 -BRDA:126,15,0,15 -BRDA:135,16,0,24 -BRDA:141,17,0,51 -BRDA:142,18,0,15 -BRDA:144,19,0,36 -BRDA:91,20,0,13 -BRDA:32,21,0,15 -BRDA:132,22,0,40 -BRF:23 -BRH:18 -end_of_record -TN: -SF:src\components\dropdown\dropdown-menu\dropdown-menu-button.ts -FN:23,ZetaDropdownMenuButton -FN:58,handleChange -FN:62,firstUpdated -FN:77,handleItemClick -FN:94,handleClick -FN:105,handleOutsideClick -FN:111,renderItems -FN:161,render -FNF:8 -FNH:7 -FNDA:9,ZetaDropdownMenuButton -FNDA:0,handleChange -FNDA:9,firstUpdated -FNDA:5,handleItemClick -FNDA:15,handleClick -FNDA:326,handleOutsideClick -FNDA:26,renderItems -FNDA:26,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,4 -DA:18,4 -DA:19,4 -DA:20,4 -DA:21,4 -DA:22,4 -DA:23,4 -DA:24,9 -DA:25,9 -DA:26,9 -DA:27,9 -DA:28,9 -DA:29,9 -DA:30,9 -DA:31,9 -DA:32,9 -DA:33,9 -DA:34,9 -DA:35,9 -DA:36,9 -DA:37,9 -DA:38,9 -DA:39,9 -DA:40,9 -DA:41,9 -DA:42,9 -DA:43,9 -DA:44,9 -DA:45,9 -DA:46,9 -DA:47,9 -DA:48,9 -DA:49,9 -DA:50,9 -DA:51,9 -DA:52,9 -DA:53,4 -DA:54,4 -DA:55,4 -DA:56,4 -DA:57,4 -DA:58,4 -DA:59,0 -DA:60,0 -DA:61,4 -DA:62,4 -DA:63,9 -DA:64,9 -DA:65,9 -DA:66,0 -DA:67,0 -DA:68,0 -DA:69,0 -DA:70,0 -DA:71,0 -DA:72,0 -DA:73,0 -DA:74,9 -DA:75,9 -DA:76,4 -DA:77,4 -DA:78,5 -DA:79,2 -DA:80,2 -DA:81,5 -DA:82,2 -DA:83,0 -DA:84,2 -DA:85,2 -DA:86,2 -DA:87,2 -DA:88,3 -DA:89,1 -DA:90,1 -DA:91,5 -DA:92,5 -DA:93,4 -DA:94,4 -DA:95,15 -DA:96,15 -DA:97,8 -DA:98,8 -DA:99,15 -DA:100,7 -DA:101,7 -DA:102,7 -DA:103,15 -DA:104,4 -DA:105,4 -DA:106,326 -DA:107,5 -DA:108,5 -DA:109,326 -DA:110,4 -DA:111,4 -DA:112,26 -DA:113,2 -DA:114,6 -DA:115,6 -DA:116,1 -DA:117,1 -DA:118,0 -DA:119,0 -DA:120,6 -DA:121,6 -DA:122,6 -DA:123,6 -DA:124,6 -DA:125,6 -DA:126,2 -DA:127,26 -DA:128,3 -DA:129,9 -DA:130,9 -DA:131,9 -DA:132,2 -DA:133,2 -DA:134,0 -DA:135,0 -DA:136,9 -DA:137,9 -DA:138,9 -DA:139,9 -DA:140,9 -DA:141,9 -DA:142,9 -DA:143,9 -DA:144,3 -DA:145,24 -DA:146,21 -DA:147,25 -DA:148,25 -DA:149,2 -DA:150,2 -DA:151,0 -DA:152,0 -DA:153,25 -DA:154,25 -DA:155,25 -DA:156,25 -DA:157,21 -DA:158,21 -DA:159,26 -DA:160,4 -DA:161,4 -DA:162,26 -DA:163,26 -DA:164,26 -DA:165,26 -DA:166,26 -DA:167,8 -DA:168,26 -DA:169,26 -DA:170,26 -DA:171,26 -DA:172,26 -DA:173,26 -DA:174,26 -DA:175,26 -DA:176,26 -DA:177,26 -DA:178,26 -DA:179,26 -DA:180,4 -DA:181,4 -DA:182,4 -DA:183,4 -DA:184,4 -DA:185,4 -DA:186,4 -DA:187,4 -DA:188,4 -LF:188 -LH:171 -BRDA:181,0,0,0 -BRDA:23,1,0,9 -BRDA:62,2,0,9 -BRDA:64,3,0,9 -BRDA:65,4,0,0 -BRDA:77,5,0,5 -BRDA:78,6,0,2 -BRDA:81,7,0,3 -BRDA:81,8,0,2 -BRDA:82,9,0,0 -BRDA:88,10,0,1 -BRDA:94,11,0,15 -BRDA:96,12,0,8 -BRDA:99,13,0,7 -BRDA:105,14,0,326 -BRDA:106,15,0,29 -BRDA:106,16,0,5 -BRDA:111,17,0,26 -BRDA:112,18,0,2 -BRDA:127,19,0,24 -BRDA:127,20,0,3 -BRDA:145,21,0,21 -BRDA:113,22,0,6 -BRDA:115,23,0,1 -BRDA:117,24,0,0 -BRDA:128,25,0,9 -BRDA:131,26,0,2 -BRDA:133,27,0,0 -BRDA:146,28,0,25 -BRDA:148,29,0,2 -BRDA:150,30,0,0 -BRDA:161,31,0,26 -BRDA:166,32,0,8 -BRF:33 -BRH:27 -end_of_record -TN: -SF:src\components\dropdown\menu-item\dropdown-menu-item.ts -FN:16,key -FN:24,render -FNF:2 -FNH:1 -FNDA:0,key -FNDA:29,render -DA:1,7 -DA:2,7 -DA:3,7 -DA:4,7 -DA:5,7 -DA:6,7 -DA:7,7 -DA:8,7 -DA:9,7 -DA:10,7 -DA:11,7 -DA:12,7 -DA:13,7 -DA:14,7 -DA:15,7 -DA:16,7 -DA:17,0 -DA:18,0 -DA:19,0 -DA:20,0 -DA:21,0 -DA:22,0 -DA:23,7 -DA:24,7 -DA:25,29 -DA:26,29 -DA:27,29 -DA:28,29 -DA:29,29 -DA:30,29 -DA:31,29 -DA:32,29 -DA:33,29 -DA:34,29 -DA:35,29 -DA:36,29 -DA:37,7 -DA:38,7 -DA:39,7 -DA:40,7 -DA:41,7 -DA:42,7 -DA:43,7 -DA:44,7 -DA:45,7 -LF:45 -LH:39 -BRDA:38,0,0,0 -BRDA:24,1,0,29 -BRF:2 -BRH:1 -end_of_record -TN: -SF:src\components\fab\fab.ts -FN:20,ZetaFab -FN:37,get round -FN:40,set round -FN:58,getLabel -FN:61,render -FNF:5 -FNH:5 -FNDA:16,ZetaFab -FNDA:61,get round -FNDA:3,set round -FNDA:21,getLabel -FNDA:21,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,4 -DA:18,4 -DA:19,4 -DA:20,4 -DA:21,16 -DA:22,16 -DA:23,16 -DA:24,16 -DA:25,16 -DA:26,16 -DA:27,16 -DA:28,16 -DA:29,16 -DA:30,16 -DA:31,16 -DA:32,16 -DA:33,16 -DA:34,16 -DA:35,16 -DA:36,16 -DA:37,16 -DA:38,61 -DA:39,61 -DA:40,16 -DA:41,3 -DA:42,3 -DA:43,3 -DA:44,3 -DA:45,16 -DA:46,16 -DA:47,16 -DA:48,16 -DA:49,16 -DA:50,16 -DA:51,16 -DA:52,16 -DA:53,16 -DA:54,16 -DA:55,16 -DA:56,16 -DA:57,4 -DA:58,4 -DA:59,21 -DA:60,21 -DA:61,4 -DA:62,21 -DA:63,21 -DA:64,21 -DA:65,21 -DA:66,21 -DA:67,21 -DA:68,21 -DA:69,21 -DA:70,4 -DA:71,4 -DA:72,4 -DA:73,4 -DA:74,4 -DA:75,4 -DA:76,4 -LF:76 -LH:76 -BRDA:20,0,0,16 -BRDA:22,1,0,0 -BRDA:37,2,0,61 -BRDA:40,3,0,3 -BRDA:41,4,0,2 -BRDA:41,5,0,1 -BRDA:41,6,0,1 -BRDA:58,7,0,21 -BRDA:59,8,0,13 -BRDA:59,9,0,8 -BRDA:61,10,0,21 -BRDA:65,11,0,1 -BRDA:65,12,0,20 -BRDA:67,13,0,1 -BRDA:67,14,0,20 -BRF:15 -BRH:14 -end_of_record -TN: -SF:src\components\file-upload\file-upload.ts -FN:17,ZetaFileUpload -FN:90,ZetaFileUpload.dropHandler -FN:103,ZetaFileUpload.dragOverHandler -FN:114,ZetaFileUpload.dragLeaveHandler -FN:120,ZetaFileUpload.mouseLeaveHandler -FN:124,ZetaFileUpload.openFileInput -FN:52,checkTypes -FN:74,typesEqual -FN:128,render -FNF:9 -FNH:2 -FNDA:1,ZetaFileUpload -FNDA:0,ZetaFileUpload.dropHandler -FNDA:0,ZetaFileUpload.dragOverHandler -FNDA:0,ZetaFileUpload.dragLeaveHandler -FNDA:0,ZetaFileUpload.mouseLeaveHandler -FNDA:0,ZetaFileUpload.openFileInput -FNDA:0,checkTypes -FNDA:0,typesEqual -FNDA:1,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,4 -DA:18,1 -DA:19,1 -DA:20,1 -DA:21,1 -DA:22,1 -DA:23,1 -DA:24,1 -DA:25,1 -DA:26,1 -DA:27,1 -DA:28,1 -DA:29,1 -DA:30,1 -DA:31,1 -DA:32,1 -DA:33,1 -DA:34,1 -DA:35,1 -DA:36,1 -DA:37,1 -DA:38,1 -DA:39,1 -DA:40,1 -DA:41,1 -DA:42,1 -DA:43,1 -DA:44,1 -DA:45,1 -DA:46,1 -DA:47,1 -DA:48,1 -DA:49,1 -DA:50,1 -DA:51,1 -DA:52,1 -DA:53,0 -DA:54,0 -DA:55,0 -DA:56,0 -DA:57,0 -DA:58,0 -DA:59,0 -DA:60,0 -DA:61,0 -DA:62,0 -DA:63,0 -DA:64,0 -DA:65,0 -DA:66,0 -DA:67,0 -DA:68,0 -DA:69,0 -DA:70,0 -DA:71,0 -DA:72,0 -DA:73,1 -DA:74,1 -DA:75,0 -DA:76,0 -DA:77,0 -DA:78,0 -DA:79,0 -DA:80,0 -DA:81,0 -DA:82,0 -DA:83,0 -DA:84,0 -DA:85,0 -DA:86,0 -DA:87,0 -DA:88,0 -DA:89,1 -DA:90,1 -DA:91,0 -DA:92,0 -DA:93,0 -DA:94,0 -DA:95,0 -DA:96,0 -DA:97,0 -DA:98,0 -DA:99,0 -DA:100,0 -DA:101,0 -DA:102,1 -DA:103,1 -DA:104,0 -DA:105,0 -DA:106,0 -DA:107,0 -DA:108,0 -DA:109,0 -DA:110,0 -DA:111,0 -DA:112,0 -DA:113,1 -DA:114,1 -DA:115,0 -DA:116,0 -DA:117,0 -DA:118,0 -DA:119,1 -DA:120,1 -DA:121,0 -DA:122,0 -DA:123,1 -DA:124,1 -DA:125,0 -DA:126,0 -DA:127,4 -DA:128,4 -DA:129,1 -DA:130,1 -DA:131,1 -DA:132,1 -DA:133,1 -DA:134,1 -DA:135,1 -DA:136,1 -DA:137,1 -DA:138,1 -DA:139,1 -DA:140,1 -DA:141,1 -DA:142,1 -DA:143,1 -DA:144,1 -DA:145,1 -DA:146,1 -DA:147,4 -DA:148,4 -DA:149,4 -DA:150,4 -DA:151,4 -DA:152,4 -DA:153,4 -DA:154,4 -DA:155,4 -LF:155 -LH:93 -BRDA:148,0,0,0 -BRDA:17,1,0,1 -BRDA:128,2,0,1 -BRDA:142,3,0,0 -BRF:4 -BRH:2 -end_of_record -TN: -SF:src\components\global-header\global-header.ts -FN:20,ZetaGlobalHeader -FN:27,render -FNF:2 -FNH:2 -FNDA:3,ZetaGlobalHeader -FNDA:3,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,4 -DA:18,4 -DA:19,4 -DA:20,4 -DA:21,3 -DA:22,3 -DA:23,3 -DA:24,3 -DA:25,3 -DA:26,4 -DA:27,4 -DA:28,3 -DA:29,3 -DA:30,3 -DA:31,3 -DA:32,3 -DA:33,3 -DA:34,3 -DA:35,3 -DA:36,3 -DA:37,3 -DA:38,3 -DA:39,3 -DA:40,3 -DA:41,3 -DA:42,3 -DA:43,3 -DA:44,4 -DA:45,4 -DA:46,4 -DA:47,4 -DA:48,4 -DA:49,4 -DA:50,4 -DA:51,4 -DA:52,4 -LF:52 -LH:52 -BRDA:45,0,0,0 -BRDA:20,1,0,3 -BRDA:27,2,0,3 -BRDA:35,3,0,0 -BRDA:41,4,0,0 -BRF:5 -BRH:2 -end_of_record -TN: -SF:src\components\grid-menu-item\grid-menu-item.ts -FN:18,ZetaGridMenuItem -FN:22,render -FNF:2 -FNH:2 -FNDA:43,ZetaGridMenuItem -FNDA:43,render -DA:1,6 -DA:2,6 -DA:3,6 -DA:4,6 -DA:5,6 -DA:6,6 -DA:7,6 -DA:8,6 -DA:9,6 -DA:10,6 -DA:11,6 -DA:12,6 -DA:13,6 -DA:14,6 -DA:15,6 -DA:16,6 -DA:17,6 -DA:18,6 -DA:19,43 -DA:20,43 -DA:21,6 -DA:22,6 -DA:23,43 -DA:24,43 -DA:25,43 -DA:26,43 -DA:27,43 -DA:28,43 -DA:29,43 -DA:30,43 -DA:31,43 -DA:32,43 -DA:33,6 -DA:34,6 -DA:35,6 -DA:36,6 -DA:37,6 -DA:38,6 -DA:39,6 -DA:40,6 -DA:41,6 -LF:41 -LH:41 -BRDA:34,0,0,0 -BRDA:18,1,0,43 -BRDA:22,2,0,43 -BRDA:25,3,0,0 -BRF:4 -BRH:2 -end_of_record -TN: -SF:src\components\icon\icon.ts -FN:12,ZetaIcon -FN:27,ZetaIcon.sizeIsNum -FN:29,render -FNF:3 -FNH:3 -FNDA:314,ZetaIcon -FNDA:631,ZetaIcon.sizeIsNum -FNDA:631,render -DA:1,34 -DA:2,34 -DA:3,34 -DA:4,34 -DA:5,34 -DA:6,34 -DA:7,34 -DA:8,34 -DA:9,34 -DA:10,34 -DA:11,34 -DA:12,34 -DA:13,314 -DA:14,314 -DA:15,314 -DA:16,314 -DA:17,314 -DA:18,314 -DA:19,314 -DA:20,314 -DA:21,314 -DA:22,314 -DA:23,314 -DA:24,314 -DA:25,314 -DA:26,314 -DA:27,314 -DA:28,34 -DA:29,34 -DA:30,631 -DA:31,631 -DA:32,631 -DA:33,631 -DA:34,631 -DA:35,631 -DA:36,631 -DA:37,631 -DA:38,631 -DA:39,34 -DA:40,34 -LF:40 -LH:40 -BRDA:39,0,0,0 -BRDA:12,1,0,314 -BRDA:27,2,0,631 -BRDA:29,3,0,631 -BRDA:30,4,0,16 -BRDA:33,5,0,92 -BRDA:34,6,0,2 -BRDA:37,7,0,314 -BRDA:30,8,0,615 -BRDA:33,9,0,539 -BRDA:34,10,0,629 -BRF:11 -BRH:10 -end_of_record -TN: -SF:src\components\in-page-banner\in-page-banner.ts -FN:22,ZetaInPageBanner -FN:35,ZetaInPageBanner.getIcon -FN:48,render -FNF:3 -FNH:3 -FNDA:3,ZetaInPageBanner -FNDA:3,ZetaInPageBanner.getIcon -FNDA:3,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,4 -DA:18,4 -DA:19,4 -DA:20,4 -DA:21,4 -DA:22,4 -DA:23,3 -DA:24,3 -DA:25,3 -DA:26,3 -DA:27,3 -DA:28,3 -DA:29,3 -DA:30,3 -DA:31,3 -DA:32,3 -DA:33,3 -DA:34,3 -DA:35,3 -DA:36,3 -DA:37,3 -DA:38,0 -DA:39,3 -DA:40,0 -DA:41,3 -DA:42,0 -DA:43,3 -DA:44,3 -DA:45,3 -DA:46,3 -DA:47,4 -DA:48,4 -DA:49,3 -DA:50,3 -DA:51,3 -DA:52,3 -DA:53,3 -DA:54,3 -DA:55,3 -DA:56,3 -DA:57,3 -DA:58,3 -DA:59,3 -DA:60,3 -DA:61,3 -DA:62,3 -DA:63,3 -DA:64,3 -DA:65,4 -DA:66,4 -DA:67,4 -DA:68,4 -DA:69,4 -DA:70,4 -DA:71,4 -LF:71 -LH:68 -BRDA:33,0,0,0 -BRDA:22,1,0,3 -BRDA:35,2,0,3 -BRDA:37,3,0,0 -BRDA:39,4,0,0 -BRDA:41,5,0,0 -BRDA:48,6,0,3 -BRF:7 -BRH:3 -end_of_record -TN: -SF:src\components\list\list.ts -FN:15,ZetaList -FN:19,render -FNF:2 -FNH:0 -FNDA:0,ZetaList -FNDA:0,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,0 -DA:17,0 -DA:18,4 -DA:19,4 -DA:20,0 -DA:21,0 -DA:22,4 -DA:23,4 -DA:24,4 -DA:25,4 -DA:26,4 -DA:27,4 -DA:28,4 -DA:29,4 -DA:30,4 -LF:30 -LH:26 -BRF:0 -BRH:0 -end_of_record -TN: -SF:src\components\list\list-item\list-item.ts -FN:19,render -FNF:1 -FNH:1 -FNDA:18,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,4 -DA:18,4 -DA:19,4 -DA:20,18 -DA:21,18 -DA:22,18 -DA:23,18 -DA:24,18 -DA:25,18 -DA:26,18 -DA:27,18 -DA:28,18 -DA:29,18 -DA:30,18 -DA:31,18 -DA:32,4 -DA:33,4 -DA:34,4 -DA:35,4 -DA:36,4 -DA:37,4 -DA:38,4 -DA:39,4 -DA:40,4 -LF:40 -LH:40 -BRDA:19,0,0,18 -BRF:1 -BRH:1 -end_of_record -TN: -SF:src\components\navigation-bar\navigation-bar.ts -FN:15,ZetaNavigationBar -FN:18,render -FNF:2 -FNH:2 -FNDA:5,ZetaNavigationBar -FNDA:5,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,5 -DA:17,4 -DA:18,4 -DA:19,5 -DA:20,5 -DA:21,4 -DA:22,4 -DA:23,4 -DA:24,4 -DA:25,4 -DA:26,4 -DA:27,4 -DA:28,4 -DA:29,4 -DA:30,4 -LF:30 -LH:30 -BRDA:15,0,0,5 -BRDA:18,1,0,5 -BRF:2 -BRH:2 -end_of_record -TN: -SF:src\components\navigation-drawer\navigation-drawer.ts -FN:26,ZetaNavigationDrawer -FN:41,render -FNF:2 -FNH:2 -FNDA:1,ZetaNavigationDrawer -FNDA:1,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,4 -DA:18,4 -DA:19,4 -DA:20,4 -DA:21,4 -DA:22,4 -DA:23,4 -DA:24,4 -DA:25,4 -DA:26,4 -DA:27,1 -DA:28,1 -DA:29,1 -DA:30,1 -DA:31,1 -DA:32,1 -DA:33,1 -DA:34,1 -DA:35,4 -DA:36,4 -DA:37,4 -DA:38,4 -DA:39,4 -DA:40,4 -DA:41,4 -DA:42,1 -DA:43,1 -DA:44,1 -DA:45,1 -DA:46,1 -DA:47,1 -DA:48,1 -DA:49,1 -DA:50,1 -DA:51,1 -DA:52,1 -DA:53,1 -DA:54,4 -DA:55,4 -DA:56,4 -DA:57,4 -DA:58,4 -DA:59,4 -DA:60,4 -DA:61,4 -DA:62,4 -LF:62 -LH:62 -BRDA:55,0,0,0 -BRDA:26,1,0,1 -BRDA:41,2,0,1 -BRF:3 -BRH:2 -end_of_record -TN: -SF:src\components\navigation-drawer\navigation-drawer-footer\navigation-drawer-footer.ts -FN:19,ZetaNavigationDrawerFooter -FN:63,getLogoFooter -FN:72,render -FN:54,ZetaNavigationDrawerFooter.handleSlotChange -FNF:4 -FNH:2 -FNDA:1,ZetaNavigationDrawerFooter -FNDA:0,getLogoFooter -FNDA:1,render -FNDA:0,ZetaNavigationDrawerFooter.handleSlotChange -DA:1,5 -DA:2,5 -DA:3,5 -DA:4,5 -DA:5,5 -DA:6,5 -DA:7,5 -DA:8,5 -DA:9,5 -DA:10,5 -DA:11,5 -DA:12,5 -DA:13,5 -DA:14,5 -DA:15,5 -DA:16,5 -DA:17,5 -DA:18,5 -DA:19,5 -DA:20,1 -DA:21,1 -DA:22,1 -DA:23,1 -DA:24,1 -DA:25,1 -DA:26,1 -DA:27,1 -DA:28,1 -DA:29,1 -DA:30,1 -DA:31,1 -DA:32,1 -DA:33,1 -DA:34,1 -DA:35,1 -DA:36,1 -DA:37,1 -DA:38,1 -DA:39,1 -DA:40,1 -DA:41,1 -DA:42,1 -DA:43,1 -DA:44,1 -DA:45,1 -DA:46,1 -DA:47,1 -DA:48,1 -DA:49,1 -DA:50,1 -DA:51,1 -DA:52,1 -DA:53,1 -DA:54,1 -DA:55,0 -DA:56,0 -DA:57,0 -DA:58,0 -DA:59,0 -DA:60,0 -DA:61,0 -DA:62,5 -DA:63,5 -DA:64,0 -DA:65,0 -DA:66,0 -DA:67,0 -DA:68,0 -DA:69,0 -DA:70,0 -DA:71,5 -DA:72,5 -DA:73,1 -DA:74,1 -DA:75,1 -DA:76,1 -DA:77,0 -DA:78,1 -DA:79,1 -DA:80,5 -DA:81,5 -DA:82,5 -DA:83,5 -DA:84,5 -DA:85,5 -DA:86,5 -DA:87,5 -DA:88,5 -LF:88 -LH:73 -BRDA:19,0,0,1 -BRDA:45,1,0,0 -BRDA:72,2,0,1 -BRDA:76,3,0,0 -BRF:4 -BRH:2 -end_of_record -TN: -SF:src\components\navigation-drawer\navigation-drawer-header\navigation-drawer-header.ts -FN:16,ZetaNavigationDrawerHeader -FN:26,render -FNF:2 -FNH:0 -FNDA:0,ZetaNavigationDrawerHeader -FNDA:0,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,0 -DA:18,0 -DA:19,0 -DA:20,0 -DA:21,0 -DA:22,0 -DA:23,0 -DA:24,0 -DA:25,4 -DA:26,4 -DA:27,0 -DA:28,0 -DA:29,0 -DA:30,0 -DA:31,0 -DA:32,0 -DA:33,0 -DA:34,0 -DA:35,0 -DA:36,0 -DA:37,0 -DA:38,0 -DA:39,0 -DA:40,4 -DA:41,4 -DA:42,4 -DA:43,4 -DA:44,4 -DA:45,4 -DA:46,4 -DA:47,4 -DA:48,4 -LF:48 -LH:27 -BRF:0 -BRH:0 -end_of_record -TN: -SF:src\components\navigation-drawer\navigation-drawer-item\navigation-drawer-item.ts -FN:18,ZetaNavigationDrawerItem -FN:25,render -FNF:2 -FNH:2 -FNDA:1,ZetaNavigationDrawerItem -FNDA:1,render -DA:1,5 -DA:2,5 -DA:3,5 -DA:4,5 -DA:5,5 -DA:6,5 -DA:7,5 -DA:8,5 -DA:9,5 -DA:10,5 -DA:11,5 -DA:12,5 -DA:13,5 -DA:14,5 -DA:15,5 -DA:16,5 -DA:17,5 -DA:18,5 -DA:19,1 -DA:20,1 -DA:21,1 -DA:22,1 -DA:23,1 -DA:24,5 -DA:25,5 -DA:26,1 -DA:27,1 -DA:28,1 -DA:29,1 -DA:30,1 -DA:31,1 -DA:32,1 -DA:33,1 -DA:34,1 -DA:35,1 -DA:36,1 -DA:37,5 -DA:38,5 -DA:39,5 -DA:40,5 -DA:41,5 -DA:42,5 -DA:43,5 -DA:44,5 -DA:45,5 -LF:45 -LH:45 -BRDA:38,0,0,0 -BRDA:18,1,0,1 -BRDA:25,2,0,1 -BRF:3 -BRH:2 -end_of_record -TN: -SF:src\components\navigation-drawer\navigation-drawer-sub-item\navigation-drawer-sub-item.ts -FN:15,ZetaNavigationDrawerSubItem -FN:22,render -FNF:2 -FNH:2 -FNDA:1,ZetaNavigationDrawerSubItem -FNDA:1,render -DA:1,5 -DA:2,5 -DA:3,5 -DA:4,5 -DA:5,5 -DA:6,5 -DA:7,5 -DA:8,5 -DA:9,5 -DA:10,5 -DA:11,5 -DA:12,5 -DA:13,5 -DA:14,5 -DA:15,5 -DA:16,1 -DA:17,1 -DA:18,1 -DA:19,1 -DA:20,1 -DA:21,5 -DA:22,5 -DA:23,1 -DA:24,1 -DA:25,1 -DA:26,1 -DA:27,1 -DA:28,1 -DA:29,1 -DA:30,5 -DA:31,5 -DA:32,5 -DA:33,5 -DA:34,5 -DA:35,5 -DA:36,5 -DA:37,5 -DA:38,5 -LF:38 -LH:38 -BRDA:31,0,0,0 -BRDA:15,1,0,1 -BRDA:22,2,0,1 -BRF:3 -BRH:2 -end_of_record -TN: -SF:src\components\navigation-profile\navigation-profile.ts -FN:16,render -FNF:1 -FNH:1 -FNDA:1,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,1 -DA:18,1 -DA:19,1 -DA:20,1 -DA:21,1 -DA:22,1 -DA:23,1 -DA:24,1 -DA:25,1 -DA:26,1 -DA:27,4 -DA:28,4 -DA:29,4 -DA:30,4 -DA:31,4 -DA:32,4 -DA:33,4 -DA:34,4 -DA:35,4 -LF:35 -LH:35 -BRDA:28,0,0,0 -BRDA:16,1,0,1 -BRF:2 -BRH:1 -end_of_record -TN: -SF:src\components\navigation-rail\navigation-rail-item.ts -FN:19,ZetaNavigationRailItem -FN:31,render -FNF:2 -FNH:2 -FNDA:8,ZetaNavigationRailItem -FNDA:9,render -DA:1,5 -DA:2,5 -DA:3,5 -DA:4,5 -DA:5,5 -DA:6,5 -DA:7,5 -DA:8,5 -DA:9,5 -DA:10,5 -DA:11,5 -DA:12,5 -DA:13,5 -DA:14,5 -DA:15,5 -DA:16,5 -DA:17,5 -DA:18,5 -DA:19,5 -DA:20,8 -DA:21,8 -DA:22,8 -DA:23,8 -DA:24,8 -DA:25,8 -DA:26,8 -DA:27,8 -DA:28,8 -DA:29,8 -DA:30,5 -DA:31,5 -DA:32,9 -DA:33,9 -DA:34,9 -DA:35,9 -DA:36,9 -DA:37,9 -DA:38,9 -DA:39,5 -DA:40,5 -DA:41,5 -DA:42,5 -DA:43,5 -DA:44,5 -DA:45,5 -DA:46,5 -DA:47,5 -LF:47 -LH:47 -BRDA:40,0,0,0 -BRDA:19,1,0,8 -BRDA:31,2,0,9 -BRF:3 -BRH:2 -end_of_record -TN: -SF:src\components\navigation-rail\navigation-rail.ts -FN:16,render -FNF:1 -FNH:1 -FNDA:2,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,2 -DA:18,2 -DA:19,4 -DA:20,4 -DA:21,4 -DA:22,4 -DA:23,4 -DA:24,4 -DA:25,4 -DA:26,4 -DA:27,4 -LF:27 -LH:27 -BRDA:20,0,0,0 -BRDA:16,1,0,2 -BRF:2 -BRH:1 -end_of_record -TN: -SF:src\components\pagination\pagination.ts -FN:22,ZetaPagination -FN:47,ZetaPagination.range -FN:55,ZetaPagination.handlePageChange -FN:62,ZetaPagination.result -FN:37,set currentPage -FN:94,getIconButton -FN:108,render -FNF:7 -FNH:7 -FNDA:10,ZetaPagination -FNDA:10,ZetaPagination.range -FNDA:2,ZetaPagination.handlePageChange -FNDA:10,ZetaPagination.result -FNDA:7,set currentPage -FNDA:40,getIconButton -FNDA:10,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,4 -DA:18,4 -DA:19,4 -DA:20,4 -DA:21,4 -DA:22,4 -DA:23,10 -DA:24,10 -DA:25,10 -DA:26,10 -DA:27,10 -DA:28,10 -DA:29,10 -DA:30,10 -DA:31,10 -DA:32,10 -DA:33,10 -DA:34,10 -DA:35,10 -DA:36,10 -DA:37,10 -DA:38,7 -DA:39,2 -DA:40,7 -DA:41,1 -DA:42,5 -DA:43,4 -DA:44,4 -DA:45,7 -DA:46,10 -DA:47,10 -DA:48,10 -DA:49,10 -DA:50,10 -DA:51,10 -DA:52,10 -DA:53,10 -DA:54,10 -DA:55,10 -DA:56,2 -DA:57,2 -DA:58,2 -DA:59,10 -DA:60,10 -DA:61,10 -DA:62,10 -DA:63,10 -DA:64,10 -DA:65,10 -DA:66,10 -DA:67,10 -DA:68,10 -DA:69,10 -DA:70,10 -DA:71,1 -DA:72,1 -DA:73,9 -DA:74,10 -DA:75,6 -DA:76,6 -DA:77,6 -DA:78,6 -DA:79,3 -DA:80,10 -DA:81,2 -DA:82,2 -DA:83,2 -DA:84,2 -DA:85,1 -DA:86,10 -DA:87,1 -DA:88,1 -DA:89,1 -DA:90,0 -DA:91,0 -DA:92,10 -DA:93,4 -DA:94,4 -DA:95,40 -DA:96,40 -DA:97,40 -DA:98,40 -DA:99,40 -DA:100,40 -DA:101,40 -DA:102,40 -DA:103,40 -DA:104,40 -DA:105,40 -DA:106,40 -DA:107,4 -DA:108,4 -DA:109,10 -DA:110,10 -DA:111,10 -DA:112,10 -DA:113,10 -DA:114,10 -DA:115,10 -DA:116,10 -DA:117,68 -DA:118,68 -DA:119,68 -DA:120,68 -DA:121,10 -DA:122,68 -DA:123,58 -DA:124,58 -DA:125,10 -DA:126,10 -DA:127,10 -DA:128,10 -DA:129,10 -DA:130,10 -DA:131,4 -DA:132,4 -DA:133,4 -DA:134,4 -DA:135,4 -DA:136,4 -DA:137,4 -LF:137 -LH:135 -BRDA:23,0,0,0 -BRDA:22,1,0,10 -BRDA:47,2,0,10 -BRDA:49,3,0,48 -BRDA:55,4,0,2 -BRDA:62,5,0,10 -BRDA:70,6,0,1 -BRDA:72,7,0,9 -BRDA:74,8,0,6 -BRDA:74,9,0,6 -BRDA:78,10,0,3 -BRDA:80,11,0,2 -BRDA:84,12,0,1 -BRDA:86,13,0,1 -BRDA:89,14,0,0 -BRDA:37,15,0,7 -BRDA:38,16,0,2 -BRDA:40,17,0,5 -BRDA:40,18,0,1 -BRDA:42,19,0,4 -BRDA:94,20,0,40 -BRDA:100,21,0,2 -BRDA:108,22,0,10 -BRDA:116,23,0,68 -BRDA:120,24,0,10 -BRDA:122,25,0,58 -BRF:26 -BRH:24 -end_of_record -TN: -SF:src\components\progress-indicators\progress-bar\progress-bar.ts -FN:13,ZetaProgressBar -FN:33,getBufferingDots -FN:45,render -FNF:3 -FNH:3 -FNDA:1,ZetaProgressBar -FNDA:1,getBufferingDots -FNDA:1,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,1 -DA:15,1 -DA:16,1 -DA:17,1 -DA:18,1 -DA:19,1 -DA:20,1 -DA:21,1 -DA:22,4 -DA:23,4 -DA:24,4 -DA:25,4 -DA:26,4 -DA:27,4 -DA:28,4 -DA:29,4 -DA:30,4 -DA:31,4 -DA:32,4 -DA:33,4 -DA:34,1 -DA:35,0 -DA:36,0 -DA:37,0 -DA:38,0 -DA:39,0 -DA:40,1 -DA:41,1 -DA:42,1 -DA:43,1 -DA:44,4 -DA:45,4 -DA:46,1 -DA:47,1 -DA:48,1 -DA:49,1 -DA:50,1 -DA:51,1 -DA:52,1 -DA:53,1 -DA:54,1 -DA:55,1 -DA:56,1 -DA:57,1 -DA:58,1 -DA:59,1 -DA:60,4 -DA:61,4 -DA:62,4 -DA:63,4 -DA:64,4 -DA:65,4 -DA:66,4 -DA:67,4 -DA:68,4 -LF:68 -LH:63 -BRDA:61,0,0,0 -BRDA:13,1,0,1 -BRDA:33,2,0,1 -BRDA:34,3,0,0 -BRDA:45,4,0,1 -BRDA:51,5,0,0 -BRDA:54,6,0,0 -BRF:7 -BRH:3 -end_of_record -TN: -SF:src\components\progress-indicators\progress-circle\progress-circle.ts -FN:17,ZetaProgressCircle -FN:48,ZetaProgressCircle.getStrokeDasharray -FN:53,ZetaProgressCircle.getStrokeDashoffset -FN:58,ZetaProgressCircle.renderUploading -FN:79,type.styleMap.padding -FN:31,set progress -FN:94,render -FNF:7 -FNH:7 -FNDA:9,ZetaProgressCircle -FNDA:20,ZetaProgressCircle.getStrokeDasharray -FNDA:10,ZetaProgressCircle.getStrokeDashoffset -FNDA:10,ZetaProgressCircle.renderUploading -FNDA:1,type.styleMap.padding -FNDA:5,set progress -FNDA:10,render -DA:1,5 -DA:2,5 -DA:3,5 -DA:4,5 -DA:5,5 -DA:6,5 -DA:7,5 -DA:8,5 -DA:9,5 -DA:10,5 -DA:11,5 -DA:12,5 -DA:13,5 -DA:14,5 -DA:15,5 -DA:16,5 -DA:17,5 -DA:18,9 -DA:19,9 -DA:20,9 -DA:21,9 -DA:22,9 -DA:23,9 -DA:24,9 -DA:25,9 -DA:26,9 -DA:27,9 -DA:28,9 -DA:29,9 -DA:30,9 -DA:31,9 -DA:32,5 -DA:33,2 -DA:34,2 -DA:35,2 -DA:36,3 -DA:37,5 -DA:38,1 -DA:39,1 -DA:40,1 -DA:41,2 -DA:42,2 -DA:43,5 -DA:44,9 -DA:45,9 -DA:46,9 -DA:47,9 -DA:48,9 -DA:49,20 -DA:50,20 -DA:51,20 -DA:52,9 -DA:53,9 -DA:54,10 -DA:55,10 -DA:56,10 -DA:57,9 -DA:58,9 -DA:59,10 -DA:60,4 -DA:61,4 -DA:62,4 -DA:63,4 -DA:64,4 -DA:65,4 -DA:66,4 -DA:67,4 -DA:68,4 -DA:69,4 -DA:70,4 -DA:71,4 -DA:72,4 -DA:73,4 -DA:74,4 -DA:75,4 -DA:76,0 -DA:77,4 -DA:78,4 -DA:79,4 -DA:80,1 -DA:81,4 -DA:82,4 -DA:83,4 -DA:84,4 -DA:85,4 -DA:86,4 -DA:87,4 -DA:88,6 -DA:89,6 -DA:90,6 -DA:91,6 -DA:92,10 -DA:93,5 -DA:94,5 -DA:95,10 -DA:96,10 -DA:97,10 -DA:98,10 -DA:99,10 -DA:100,10 -DA:101,10 -DA:102,10 -DA:103,10 -DA:104,10 -DA:105,10 -DA:106,10 -DA:107,10 -DA:108,10 -DA:109,10 -DA:110,10 -DA:111,10 -DA:112,10 -DA:113,10 -DA:114,10 -DA:115,10 -DA:116,10 -DA:117,10 -DA:118,10 -DA:119,10 -DA:120,5 -DA:121,5 -DA:122,5 -DA:123,5 -DA:124,5 -DA:125,5 -DA:126,5 -LF:126 -LH:125 -BRDA:18,0,0,0 -BRDA:17,1,0,9 -BRDA:48,2,0,20 -BRDA:53,3,0,10 -BRDA:58,4,0,10 -BRDA:75,5,0,0 -BRDA:87,6,0,6 -BRDA:31,7,0,5 -BRDA:32,8,0,3 -BRDA:32,9,0,4 -BRDA:37,10,0,1 -BRDA:40,11,0,2 -BRDA:94,12,0,10 -BRDA:98,13,0,6 -BRDA:109,14,0,0 -BRDA:59,15,0,4 -BRDA:79,16,0,3 -BRDA:32,17,0,2 -BRDA:35,18,0,3 -BRDA:37,19,0,3 -BRDA:98,20,0,4 -BRF:21 -BRH:18 -end_of_record -TN: -SF:src\components\radio-button\radio-button-controller.ts -FN:5,RadioButtonController -FN:8,hostConnected -FN:12,hostDisconnected -FN:15,handleChange -FN:24,get radios -FNF:5 -FNH:5 -FNDA:9,RadioButtonController -FNDA:12,hostConnected -FNDA:9,hostDisconnected -FNDA:15,handleChange -FNDA:4,get radios -DA:1,5 -DA:2,5 -DA:3,5 -DA:4,5 -DA:5,5 -DA:6,9 -DA:7,5 -DA:8,5 -DA:9,12 -DA:10,12 -DA:11,12 -DA:12,5 -DA:13,9 -DA:14,9 -DA:15,5 -DA:16,15 -DA:17,4 -DA:18,8 -DA:19,4 -DA:20,4 -DA:21,4 -DA:22,4 -DA:23,15 -DA:24,5 -DA:25,4 -DA:26,4 -DA:27,4 -DA:28,5 -DA:29,5 -DA:30,5 -DA:31,5 -LF:31 -LH:31 -BRDA:5,0,0,9 -BRDA:8,1,0,12 -BRDA:12,2,0,9 -BRDA:15,3,0,15 -BRDA:16,4,0,4 -BRDA:17,5,0,8 -BRDA:18,6,0,4 -BRDA:24,7,0,4 -BRF:8 -BRH:8 -end_of_record -TN: -SF:src\components\radio-button\radio-button.ts -FN:17,ZetaRadioButton -FN:23,handleChange -FNF:2 -FNH:2 -FNDA:9,ZetaRadioButton -FNDA:3,handleChange -DA:1,5 -DA:2,5 -DA:3,5 -DA:4,5 -DA:5,5 -DA:6,5 -DA:7,5 -DA:8,5 -DA:9,5 -DA:10,5 -DA:11,5 -DA:12,5 -DA:13,5 -DA:14,5 -DA:15,5 -DA:16,5 -DA:17,5 -DA:18,9 -DA:19,9 -DA:20,9 -DA:21,9 -DA:22,5 -DA:23,5 -DA:24,3 -DA:25,3 -DA:26,3 -DA:27,5 -DA:28,5 -DA:29,5 -DA:30,5 -DA:31,5 -DA:32,5 -DA:33,5 -DA:34,5 -LF:34 -LH:34 -BRDA:17,0,0,9 -BRDA:23,1,0,3 -BRF:2 -BRH:2 -end_of_record -TN: -SF:src\components\search\search.ts -FN:21,ZetaSearch -FN:58,ZetaSearch.resetInput -FN:62,ZetaSearch.handleSpeechRecognition -FN:79,ZetaSearch.renderRightIcon -FN:88,ZetaSearch.renderCancelIcon -FN:37,set round -FN:43,handleChange -FN:47,focus -FN:51,blur -FN:92,render -FNF:10 -FNH:8 -FNDA:12,ZetaSearch -FNDA:1,ZetaSearch.resetInput -FNDA:0,ZetaSearch.handleSpeechRecognition -FNDA:17,ZetaSearch.renderRightIcon -FNDA:17,ZetaSearch.renderCancelIcon -FNDA:0,set round -FNDA:1,handleChange -FNDA:2,focus -FNDA:1,blur -FNDA:17,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,4 -DA:18,4 -DA:19,4 -DA:20,4 -DA:21,4 -DA:22,12 -DA:23,12 -DA:24,12 -DA:25,12 -DA:26,12 -DA:27,12 -DA:28,12 -DA:29,12 -DA:30,12 -DA:31,12 -DA:32,12 -DA:33,12 -DA:34,12 -DA:35,12 -DA:36,12 -DA:37,12 -DA:38,0 -DA:39,0 -DA:40,0 -DA:41,0 -DA:42,12 -DA:43,12 -DA:44,1 -DA:45,1 -DA:46,12 -DA:47,12 -DA:48,2 -DA:49,2 -DA:50,12 -DA:51,12 -DA:52,1 -DA:53,1 -DA:54,12 -DA:55,12 -DA:56,12 -DA:57,12 -DA:58,12 -DA:59,1 -DA:60,1 -DA:61,12 -DA:62,12 -DA:63,0 -DA:64,0 -DA:65,0 -DA:66,0 -DA:67,0 -DA:68,0 -DA:69,0 -DA:70,0 -DA:71,0 -DA:72,0 -DA:73,0 -DA:74,0 -DA:75,0 -DA:76,0 -DA:77,0 -DA:78,12 -DA:79,12 -DA:80,17 -DA:81,2 -DA:82,2 -DA:83,17 -DA:84,15 -DA:85,15 -DA:86,17 -DA:87,12 -DA:88,12 -DA:89,17 -DA:90,17 -DA:91,4 -DA:92,4 -DA:93,17 -DA:94,17 -DA:95,17 -DA:96,17 -DA:97,17 -DA:98,17 -DA:99,17 -DA:100,4 -DA:101,4 -DA:102,4 -DA:103,4 -DA:104,4 -DA:105,4 -DA:106,4 -DA:107,4 -DA:108,4 -LF:108 -LH:89 -BRDA:101,0,0,0 -BRDA:21,1,0,12 -BRDA:58,2,0,1 -BRDA:79,3,0,17 -BRDA:80,4,0,4 -BRDA:80,5,0,2 -BRDA:81,6,0,0 -BRDA:83,7,0,15 -BRDA:88,8,0,17 -BRDA:89,9,0,2 -BRDA:89,10,0,15 -BRDA:43,11,0,1 -BRDA:47,12,0,2 -BRDA:51,13,0,1 -BRDA:92,14,0,17 -BRF:15 -BRH:13 -end_of_record -TN: -SF:src\components\segmented-control\segmented-control.ts -FN:31,ZetaSegmentedControl -FN:40,Promise.then.item.active -FN:50,findSegmentedItem -FN:60,firstUpdated -FN:69,Promise.then.initComplete -FN:74,render -FNF:6 -FNH:6 -FNDA:4,ZetaSegmentedControl -FNDA:1,Promise.then.item.active -FNDA:3,findSegmentedItem -FNDA:4,firstUpdated -FNDA:4,Promise.then.initComplete -FNDA:9,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,4 -DA:18,4 -DA:19,4 -DA:20,4 -DA:21,4 -DA:22,4 -DA:23,4 -DA:24,4 -DA:25,4 -DA:26,4 -DA:27,4 -DA:28,4 -DA:29,4 -DA:30,4 -DA:31,4 -DA:32,4 -DA:33,4 -DA:34,1 -DA:35,1 -DA:36,1 -DA:37,3 -DA:38,3 -DA:39,1 -DA:40,1 -DA:41,0 -DA:42,1 -DA:43,3 -DA:44,2 -DA:45,2 -DA:46,1 -DA:47,4 -DA:48,4 -DA:49,4 -DA:50,4 -DA:51,3 -DA:52,3 -DA:53,3 -DA:54,0 -DA:55,0 -DA:56,0 -DA:57,0 -DA:58,3 -DA:59,4 -DA:60,4 -DA:61,4 -DA:62,12 -DA:63,0 -DA:64,0 -DA:65,4 -DA:66,4 -DA:67,4 -DA:68,4 -DA:69,4 -DA:70,0 -DA:71,4 -DA:72,4 -DA:73,4 -DA:74,4 -DA:75,9 -DA:76,9 -DA:77,9 -DA:78,9 -DA:79,9 -DA:80,9 -DA:81,9 -DA:82,9 -DA:83,9 -DA:84,9 -DA:85,9 -DA:86,9 -DA:87,9 -DA:88,9 -DA:89,4 -DA:90,4 -DA:91,4 -DA:92,4 -DA:93,4 -DA:94,4 -DA:95,4 -DA:96,4 -DA:97,4 -LF:97 -LH:89 -BRDA:90,0,0,0 -BRDA:31,1,0,4 -BRDA:33,2,0,1 -BRDA:34,3,0,0 -BRDA:36,4,0,3 -BRDA:38,5,0,1 -BRDA:43,6,0,2 -BRDA:40,7,0,1 -BRDA:50,8,0,3 -BRDA:53,9,0,0 -BRDA:60,10,0,4 -BRDA:61,11,0,12 -BRDA:62,12,0,0 -BRDA:69,13,0,4 -BRDA:74,14,0,9 -BRDA:79,15,0,0 -BRDA:81,16,0,5 -BRDA:82,17,0,5 -BRDA:82,18,0,4 -BRDA:83,19,0,5 -BRF:20 -BRH:15 -end_of_record -TN: -SF:src\components\segmented-control\segmented-item.ts -FN:14,ZetaSegmentedItem -FN:20,render -FNF:2 -FNH:2 -FNDA:11,ZetaSegmentedItem -FNDA:11,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,11 -DA:16,11 -DA:17,11 -DA:18,11 -DA:19,4 -DA:20,4 -DA:21,11 -DA:22,11 -DA:23,4 -DA:24,4 -DA:25,4 -DA:26,4 -DA:27,4 -DA:28,4 -DA:29,4 -DA:30,4 -DA:31,4 -LF:31 -LH:31 -BRDA:24,0,0,0 -BRDA:14,1,0,11 -BRDA:20,2,0,11 -BRF:3 -BRH:2 -end_of_record -TN: -SF:src\components\slider\slider.ts -FN:20,ZetaSlider -FN:136,ZetaSlider.onHandleMoved -FN:154,ZetaSlider.moveHandle -FN:159,ZetaSlider.mouseDownHandler -FN:185,ZetaSlider.dragHandler -FN:214,ZetaSlider.trackClickHandler -FN:224,ZetaSlider.snapHandle -FN:250,ZetaSlider.updateSelectedArea -FN:259,ZetaSlider.getSteps -FN:67,convertValueToProgress -FN:75,getHandleProgress -FN:86,getHandlePosition -FN:91,getHandleValue -FN:99,convertProgressToValue -FN:106,roundToStepValue -FN:114,setStyles -FN:125,removeStyles -FN:279,updated -FN:302,render -FN:169,dragHandler -FN:171,onMouseUp -FNF:21 -FNH:18 -FNDA:44,ZetaSlider -FNDA:4,ZetaSlider.onHandleMoved -FNDA:79,ZetaSlider.moveHandle -FNDA:4,ZetaSlider.mouseDownHandler -FNDA:3,ZetaSlider.dragHandler -FNDA:0,ZetaSlider.trackClickHandler -FNDA:0,ZetaSlider.snapHandle -FNDA:79,ZetaSlider.updateSelectedArea -FNDA:56,ZetaSlider.getSteps -FNDA:76,convertValueToProgress -FNDA:91,getHandleProgress -FNDA:76,getHandlePosition -FNDA:12,getHandleValue -FNDA:12,convertProgressToValue -FNDA:0,roundToStepValue -FNDA:4,setStyles -FNDA:4,removeStyles -FNDA:56,updated -FNDA:56,render -FNDA:3,dragHandler -FNDA:4,onMouseUp -DA:1,6 -DA:2,6 -DA:3,6 -DA:4,6 -DA:5,6 -DA:6,6 -DA:7,6 -DA:8,6 -DA:9,6 -DA:10,6 -DA:11,6 -DA:12,6 -DA:13,6 -DA:14,6 -DA:15,6 -DA:16,6 -DA:17,6 -DA:18,6 -DA:19,6 -DA:20,6 -DA:21,44 -DA:22,44 -DA:23,44 -DA:24,44 -DA:25,44 -DA:26,44 -DA:27,44 -DA:28,44 -DA:29,44 -DA:30,44 -DA:31,44 -DA:32,44 -DA:33,44 -DA:34,44 -DA:35,44 -DA:36,44 -DA:37,44 -DA:38,44 -DA:39,44 -DA:40,44 -DA:41,44 -DA:42,44 -DA:43,44 -DA:44,44 -DA:45,44 -DA:46,44 -DA:47,44 -DA:48,44 -DA:49,44 -DA:50,44 -DA:51,44 -DA:52,44 -DA:53,44 -DA:54,44 -DA:55,44 -DA:56,44 -DA:57,44 -DA:58,44 -DA:59,44 -DA:60,44 -DA:61,44 -DA:62,44 -DA:63,44 -DA:64,44 -DA:65,44 -DA:66,44 -DA:67,44 -DA:68,76 -DA:69,76 -DA:70,76 -DA:71,76 -DA:72,76 -DA:73,44 -DA:74,44 -DA:75,44 -DA:76,91 -DA:77,91 -DA:78,91 -DA:79,91 -DA:80,91 -DA:81,91 -DA:82,91 -DA:83,44 -DA:84,44 -DA:85,44 -DA:86,44 -DA:87,76 -DA:88,76 -DA:89,44 -DA:90,44 -DA:91,44 -DA:92,12 -DA:93,12 -DA:94,12 -DA:95,12 -DA:96,12 -DA:97,44 -DA:98,44 -DA:99,44 -DA:100,12 -DA:101,12 -DA:102,12 -DA:103,12 -DA:104,44 -DA:105,44 -DA:106,44 -DA:107,0 -DA:108,0 -DA:109,0 -DA:110,0 -DA:111,0 -DA:112,0 -DA:113,44 -DA:114,44 -DA:115,4 -DA:116,4 -DA:117,4 -DA:118,4 -DA:119,4 -DA:120,4 -DA:121,2 -DA:122,2 -DA:123,4 -DA:124,44 -DA:125,44 -DA:126,4 -DA:127,4 -DA:128,4 -DA:129,2 -DA:130,2 -DA:131,4 -DA:132,44 -DA:133,44 -DA:134,44 -DA:135,44 -DA:136,44 -DA:137,4 -DA:138,4 -DA:139,4 -DA:140,2 -DA:141,2 -DA:142,2 -DA:143,2 -DA:144,2 -DA:145,2 -DA:146,2 -DA:147,2 -DA:148,2 -DA:149,2 -DA:150,2 -DA:151,2 -DA:152,4 -DA:153,44 -DA:154,44 -DA:155,79 -DA:156,79 -DA:157,79 -DA:158,44 -DA:159,44 -DA:160,4 -DA:161,4 -DA:162,4 -DA:163,4 -DA:164,4 -DA:165,4 -DA:166,2 -DA:167,2 -DA:168,4 -DA:169,4 -DA:170,4 -DA:171,4 -DA:172,4 -DA:173,4 -DA:174,4 -DA:175,4 -DA:176,4 -DA:177,4 -DA:178,4 -DA:179,4 -DA:180,4 -DA:181,4 -DA:182,4 -DA:183,4 -DA:184,44 -DA:185,44 -DA:186,3 -DA:187,3 -DA:188,3 -DA:189,3 -DA:190,3 -DA:191,3 -DA:192,3 -DA:193,3 -DA:194,3 -DA:195,2 -DA:196,1 -DA:197,1 -DA:198,1 -DA:199,1 -DA:200,1 -DA:201,2 -DA:202,3 -DA:203,3 -DA:204,3 -DA:205,3 -DA:206,3 -DA:207,3 -DA:208,3 -DA:209,3 -DA:210,3 -DA:211,3 -DA:212,3 -DA:213,44 -DA:214,44 -DA:215,0 -DA:216,0 -DA:217,0 -DA:218,0 -DA:219,0 -DA:220,0 -DA:221,0 -DA:222,44 -DA:223,44 -DA:224,44 -DA:225,0 -DA:226,0 -DA:227,0 -DA:228,0 -DA:229,0 -DA:230,0 -DA:231,0 -DA:232,0 -DA:233,0 -DA:234,0 -DA:235,0 -DA:236,0 -DA:237,0 -DA:238,0 -DA:239,0 -DA:240,0 -DA:241,0 -DA:242,0 -DA:243,0 -DA:244,0 -DA:245,0 -DA:246,0 -DA:247,0 -DA:248,44 -DA:249,44 -DA:250,44 -DA:251,79 -DA:252,42 -DA:253,42 -DA:254,79 -DA:255,37 -DA:256,37 -DA:257,79 -DA:258,44 -DA:259,44 -DA:260,56 -DA:261,0 -DA:262,0 -DA:263,0 -DA:264,0 -DA:265,0 -DA:266,0 -DA:267,0 -DA:268,0 -DA:269,0 -DA:270,0 -DA:271,0 -DA:272,0 -DA:273,0 -DA:274,0 -DA:275,0 -DA:276,0 -DA:277,56 -DA:278,6 -DA:279,6 -DA:280,56 -DA:281,36 -DA:282,36 -DA:283,36 -DA:284,0 -DA:285,0 -DA:286,36 -DA:287,36 -DA:288,56 -DA:289,20 -DA:290,20 -DA:291,20 -DA:292,20 -DA:293,0 -DA:294,0 -DA:295,0 -DA:296,20 -DA:297,20 -DA:298,20 -DA:299,20 -DA:300,56 -DA:301,6 -DA:302,6 -DA:303,56 -DA:304,56 -DA:305,56 -DA:306,56 -DA:307,56 -DA:308,56 -DA:309,20 -DA:310,56 -DA:311,56 -DA:312,56 -DA:313,56 -DA:314,6 -DA:315,6 -DA:316,6 -DA:317,6 -DA:318,6 -DA:319,6 -DA:320,6 -DA:321,6 -DA:322,6 -LF:322 -LH:265 -BRDA:315,0,0,0 -BRDA:20,1,0,44 -BRDA:154,2,0,79 -BRDA:250,3,0,79 -BRDA:254,4,0,37 -BRDA:259,5,0,56 -BRDA:260,6,0,0 -BRDA:67,7,0,76 -BRDA:75,8,0,91 -BRDA:86,9,0,76 -BRDA:279,10,0,56 -BRDA:280,11,0,36 -BRDA:292,12,0,0 -BRDA:302,13,0,56 -BRDA:309,14,0,36 -BRDA:136,15,0,32 -BRDA:137,16,0,28 -BRDA:139,17,0,30 -BRDA:159,18,0,32 -BRDA:165,19,0,30 -BRDA:169,20,0,31 -BRDA:171,21,0,32 -BRDA:185,22,0,31 -BRDA:194,23,0,30 -BRDA:195,24,0,29 -BRDA:251,25,0,42 -BRDA:91,26,0,40 -BRDA:99,27,0,40 -BRDA:114,28,0,32 -BRDA:120,29,0,30 -BRDA:125,30,0,32 -BRDA:128,31,0,30 -BRDA:283,32,0,0 -BRDA:288,33,0,20 -BRDA:308,34,0,20 -BRDA:307,35,0,37 -BRDA:309,36,0,18 -BRF:37 -BRH:33 -end_of_record -TN: -SF:src\components\slider\range-selector\range-selector.ts -FN:25,ZetaRangeSelector -FN:61,ZetaRangeSelector.sliderChange -FN:71,onValueUpdated -FN:84,isError -FN:88,handleInputChange -FN:98,updateVisibleInputs -FN:103,updateHiddenInput -FN:110,handleChange -FN:114,firstUpdated -FN:118,getLabel -FN:126,getInput -FN:143,render -FNF:12 -FNH:11 -FNDA:14,ZetaRangeSelector -FNDA:1,ZetaRangeSelector.sliderChange -FNDA:3,onValueUpdated -FNDA:6,isError -FNDA:2,handleInputChange -FNDA:1,updateVisibleInputs -FNDA:17,updateHiddenInput -FNDA:0,handleChange -FNDA:14,firstUpdated -FNDA:33,getLabel -FNDA:66,getInput -FNDA:33,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,4 -DA:18,4 -DA:19,4 -DA:20,4 -DA:21,4 -DA:22,4 -DA:23,4 -DA:24,4 -DA:25,4 -DA:26,14 -DA:27,14 -DA:28,14 -DA:29,14 -DA:30,14 -DA:31,14 -DA:32,14 -DA:33,14 -DA:34,14 -DA:35,14 -DA:36,14 -DA:37,14 -DA:38,14 -DA:39,14 -DA:40,14 -DA:41,14 -DA:42,14 -DA:43,14 -DA:44,14 -DA:45,14 -DA:46,14 -DA:47,14 -DA:48,14 -DA:49,14 -DA:50,14 -DA:51,14 -DA:52,14 -DA:53,14 -DA:54,14 -DA:55,14 -DA:56,14 -DA:57,14 -DA:58,14 -DA:59,14 -DA:60,14 -DA:61,14 -DA:62,1 -DA:63,1 -DA:64,1 -DA:65,1 -DA:66,1 -DA:67,4 -DA:68,4 -DA:69,4 -DA:70,4 -DA:71,4 -DA:72,3 -DA:73,3 -DA:74,3 -DA:75,3 -DA:76,3 -DA:77,3 -DA:78,3 -DA:79,2 -DA:80,2 -DA:81,3 -DA:82,3 -DA:83,4 -DA:84,4 -DA:85,6 -DA:86,6 -DA:87,4 -DA:88,4 -DA:89,2 -DA:90,2 -DA:91,1 -DA:92,1 -DA:93,1 -DA:94,1 -DA:95,2 -DA:96,2 -DA:97,4 -DA:98,4 -DA:99,1 -DA:100,1 -DA:101,1 -DA:102,4 -DA:103,4 -DA:104,17 -DA:105,17 -DA:106,17 -DA:107,17 -DA:108,17 -DA:109,4 -DA:110,4 -DA:111,0 -DA:112,0 -DA:113,4 -DA:114,4 -DA:115,14 -DA:116,14 -DA:117,4 -DA:118,4 -DA:119,33 -DA:120,2 -DA:121,33 -DA:122,31 -DA:123,31 -DA:124,33 -DA:125,4 -DA:126,4 -DA:127,66 -DA:128,66 -DA:129,66 -DA:130,66 -DA:131,66 -DA:132,66 -DA:133,66 -DA:134,66 -DA:135,66 -DA:136,66 -DA:137,66 -DA:138,66 -DA:139,66 -DA:140,66 -DA:141,66 -DA:142,4 -DA:143,4 -DA:144,33 -DA:145,33 -DA:146,33 -DA:147,33 -DA:148,33 -DA:149,33 -DA:150,33 -DA:151,33 -DA:152,33 -DA:153,33 -DA:154,33 -DA:155,33 -DA:156,33 -DA:157,33 -DA:158,33 -DA:159,33 -DA:160,33 -DA:161,33 -DA:162,33 -DA:163,33 -DA:164,33 -DA:165,33 -DA:166,4 -DA:167,4 -DA:168,4 -DA:169,4 -DA:170,4 -DA:171,4 -DA:172,4 -DA:173,4 -DA:174,4 -LF:174 -LH:172 -BRDA:167,0,0,0 -BRDA:25,1,0,14 -BRDA:61,2,0,1 -BRDA:71,3,0,3 -BRDA:78,4,0,2 -BRDA:84,5,0,6 -BRDA:88,6,0,2 -BRDA:90,7,0,1 -BRDA:98,8,0,1 -BRDA:103,9,0,17 -BRDA:114,10,0,14 -BRDA:118,11,0,33 -BRDA:119,12,0,2 -BRDA:121,13,0,31 -BRDA:126,14,0,66 -BRDA:129,15,0,62 -BRDA:131,16,0,33 -BRDA:131,17,0,33 -BRDA:133,18,0,33 -BRDA:133,19,0,33 -BRDA:134,20,0,33 -BRDA:134,21,0,33 -BRDA:135,22,0,33 -BRDA:135,23,0,33 -BRDA:137,24,0,33 -BRDA:137,25,0,33 -BRDA:138,26,0,2 -BRDA:143,27,0,33 -BRF:28 -BRH:27 -end_of_record -TN: -SF:src\components\slider\slider-input-field\slider-input-field.ts -FN:23,ZetaSliderInputField -FN:85,updateVisibleInputs -FN:89,updateHiddenInput -FN:96,handleChange -FN:100,firstUpdated -FN:104,getLabel -FN:112,render -FN:58,ZetaSliderInputField.sliderChange -FN:79,ZetaSliderInputField.handleInputChange -FNF:9 -FNH:8 -FNDA:14,ZetaSliderInputField -FNDA:2,updateVisibleInputs -FNDA:17,updateHiddenInput -FNDA:0,handleChange -FNDA:14,firstUpdated -FNDA:31,getLabel -FNDA:31,render -FNDA:2,ZetaSliderInputField.sliderChange -FNDA:1,ZetaSliderInputField.handleInputChange -DA:1,6 -DA:2,6 -DA:3,6 -DA:4,6 -DA:5,6 -DA:6,6 -DA:7,6 -DA:8,6 -DA:9,6 -DA:10,6 -DA:11,6 -DA:12,6 -DA:13,6 -DA:14,6 -DA:15,6 -DA:16,6 -DA:17,6 -DA:18,6 -DA:19,6 -DA:20,6 -DA:21,6 -DA:22,6 -DA:23,6 -DA:24,14 -DA:25,14 -DA:26,14 -DA:27,14 -DA:28,14 -DA:29,14 -DA:30,14 -DA:31,14 -DA:32,14 -DA:33,14 -DA:34,14 -DA:35,14 -DA:36,14 -DA:37,14 -DA:38,14 -DA:39,14 -DA:40,14 -DA:41,14 -DA:42,14 -DA:43,14 -DA:44,14 -DA:45,14 -DA:46,14 -DA:47,14 -DA:48,14 -DA:49,14 -DA:50,14 -DA:51,14 -DA:52,14 -DA:53,14 -DA:54,14 -DA:55,14 -DA:56,14 -DA:57,14 -DA:58,14 -DA:59,2 -DA:60,2 -DA:61,2 -DA:62,2 -DA:63,2 -DA:64,14 -DA:65,14 -DA:66,14 -DA:67,14 -DA:68,14 -DA:69,14 -DA:70,14 -DA:71,14 -DA:72,14 -DA:73,14 -DA:74,14 -DA:75,14 -DA:76,14 -DA:77,14 -DA:78,14 -DA:79,14 -DA:80,1 -DA:81,1 -DA:82,1 -DA:83,1 -DA:84,6 -DA:85,6 -DA:86,2 -DA:87,2 -DA:88,6 -DA:89,6 -DA:90,17 -DA:91,17 -DA:92,17 -DA:93,17 -DA:94,17 -DA:95,6 -DA:96,6 -DA:97,0 -DA:98,0 -DA:99,6 -DA:100,6 -DA:101,14 -DA:102,14 -DA:103,6 -DA:104,6 -DA:105,31 -DA:106,28 -DA:107,31 -DA:108,3 -DA:109,3 -DA:110,31 -DA:111,6 -DA:112,6 -DA:113,31 -DA:114,31 -DA:115,31 -DA:116,31 -DA:117,31 -DA:118,31 -DA:119,31 -DA:120,31 -DA:121,31 -DA:122,31 -DA:123,31 -DA:124,31 -DA:125,31 -DA:126,31 -DA:127,31 -DA:128,31 -DA:129,31 -DA:130,31 -DA:131,31 -DA:132,31 -DA:133,31 -DA:134,31 -DA:135,31 -DA:136,31 -DA:137,31 -DA:138,31 -DA:139,31 -DA:140,31 -DA:141,31 -DA:142,31 -DA:143,31 -DA:144,31 -DA:145,31 -DA:146,31 -DA:147,31 -DA:148,6 -DA:149,6 -DA:150,6 -DA:151,6 -DA:152,6 -DA:153,6 -DA:154,6 -DA:155,6 -DA:156,6 -LF:156 -LH:154 -BRDA:149,0,0,0 -BRDA:23,1,0,14 -BRDA:58,2,0,2 -BRDA:79,3,0,1 -BRDA:85,4,0,2 -BRDA:89,5,0,17 -BRDA:100,6,0,14 -BRDA:104,7,0,31 -BRDA:105,8,0,28 -BRDA:107,9,0,3 -BRDA:112,10,0,31 -BRDA:134,11,0,3 -BRF:12 -BRH:11 -end_of_record -TN: -SF:src\components\snackbar\snackbar.ts -FN:19,ZetaSnackbar -FN:31,set round -FN:64,render -FNF:3 -FNH:3 -FNDA:27,ZetaSnackbar -FNDA:3,set round -FNDA:64,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,4 -DA:18,4 -DA:19,4 -DA:20,27 -DA:21,27 -DA:22,27 -DA:23,27 -DA:24,27 -DA:25,27 -DA:26,27 -DA:27,27 -DA:28,27 -DA:29,27 -DA:30,27 -DA:31,27 -DA:32,3 -DA:33,3 -DA:34,3 -DA:35,3 -DA:36,27 -DA:37,27 -DA:38,27 -DA:39,27 -DA:40,27 -DA:41,27 -DA:42,27 -DA:43,27 -DA:44,27 -DA:45,27 -DA:46,27 -DA:47,27 -DA:48,27 -DA:49,27 -DA:50,27 -DA:51,4 -DA:52,4 -DA:53,4 -DA:54,4 -DA:55,4 -DA:56,4 -DA:57,4 -DA:58,4 -DA:59,4 -DA:60,4 -DA:61,4 -DA:62,4 -DA:63,4 -DA:64,4 -DA:65,64 -DA:66,64 -DA:67,64 -DA:68,64 -DA:69,64 -DA:70,64 -DA:71,64 -DA:72,64 -DA:73,64 -DA:74,64 -DA:75,64 -DA:76,0 -DA:77,0 -DA:78,64 -DA:79,64 -DA:80,64 -DA:81,64 -DA:82,4 -DA:83,4 -DA:84,4 -DA:85,4 -DA:86,4 -DA:87,4 -DA:88,4 -DA:89,4 -DA:90,4 -LF:90 -LH:88 -BRDA:83,0,0,0 -BRDA:19,1,0,27 -BRDA:31,2,0,3 -BRDA:32,3,0,1 -BRDA:32,4,0,2 -BRDA:32,5,0,2 -BRDA:32,6,0,2 -BRDA:64,7,0,64 -BRDA:71,8,0,37 -BRDA:71,9,0,27 -BRDA:75,10,0,0 -BRDA:74,11,0,3 -BRF:12 -BRH:10 -end_of_record -TN: -SF:src\components\stepper\stepper.ts -FN:19,ZetaStepper -FN:29,ZetaStepper.renderSteps -FN:60,render -FNF:3 -FNH:3 -FNDA:3,ZetaStepper -FNDA:1,ZetaStepper.renderSteps -FNDA:1,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,4 -DA:18,4 -DA:19,4 -DA:20,3 -DA:21,3 -DA:22,3 -DA:23,3 -DA:24,3 -DA:25,3 -DA:26,3 -DA:27,3 -DA:28,3 -DA:29,3 -DA:30,1 -DA:31,1 -DA:32,3 -DA:33,3 -DA:34,3 -DA:35,3 -DA:36,3 -DA:37,3 -DA:38,3 -DA:39,3 -DA:40,3 -DA:41,3 -DA:42,3 -DA:43,3 -DA:44,3 -DA:45,3 -DA:46,3 -DA:47,3 -DA:48,3 -DA:49,3 -DA:50,3 -DA:51,3 -DA:52,3 -DA:53,3 -DA:54,3 -DA:55,3 -DA:56,3 -DA:57,1 -DA:58,1 -DA:59,4 -DA:60,4 -DA:61,1 -DA:62,1 -DA:63,1 -DA:64,1 -DA:65,1 -DA:66,1 -DA:67,4 -DA:68,4 -DA:69,4 -DA:70,4 -DA:71,4 -DA:72,4 -DA:73,4 -DA:74,4 -DA:75,4 -LF:75 -LH:75 -BRDA:68,0,0,0 -BRDA:19,1,0,3 -BRDA:29,2,0,1 -BRDA:31,3,0,3 -BRDA:39,4,0,0 -BRDA:40,5,0,1 -BRDA:51,6,0,0 -BRDA:60,7,0,1 -BRF:8 -BRH:5 -end_of_record -TN: -SF:src\components\stepper-input\stepper-input.ts -FN:21,ZetaStepperInput -FN:45,ZetaStepperInput.handleOnChange -FN:32,set value -FN:59,render -FNF:4 -FNH:4 -FNDA:9,ZetaStepperInput -FNDA:3,ZetaStepperInput.handleOnChange -FNDA:7,set value -FNDA:10,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,4 -DA:18,4 -DA:19,4 -DA:20,4 -DA:21,4 -DA:22,9 -DA:23,9 -DA:24,9 -DA:25,9 -DA:26,9 -DA:27,9 -DA:28,9 -DA:29,9 -DA:30,9 -DA:31,9 -DA:32,9 -DA:33,7 -DA:34,7 -DA:35,1 -DA:36,7 -DA:37,2 -DA:38,6 -DA:39,2 -DA:40,2 -DA:41,2 -DA:42,2 -DA:43,7 -DA:44,9 -DA:45,9 -DA:46,3 -DA:47,1 -DA:48,3 -DA:49,1 -DA:50,1 -DA:51,1 -DA:52,1 -DA:53,3 -DA:54,3 -DA:55,3 -DA:56,9 -DA:57,9 -DA:58,4 -DA:59,4 -DA:60,10 -DA:61,10 -DA:62,10 -DA:63,10 -DA:64,10 -DA:65,10 -DA:66,10 -DA:67,10 -DA:68,10 -DA:69,10 -DA:70,10 -DA:71,10 -DA:72,10 -DA:73,10 -DA:74,10 -DA:75,10 -DA:76,10 -DA:77,10 -DA:78,10 -DA:79,10 -DA:80,10 -DA:81,10 -DA:82,10 -DA:83,10 -DA:84,10 -DA:85,10 -DA:86,10 -DA:87,10 -DA:88,10 -DA:89,10 -DA:90,10 -DA:91,10 -DA:92,4 -DA:93,4 -DA:94,4 -DA:95,4 -DA:96,4 -DA:97,4 -DA:98,4 -LF:98 -LH:98 -BRDA:22,0,0,0 -BRDA:21,1,0,9 -BRDA:45,2,0,3 -BRDA:46,3,0,1 -BRDA:46,4,0,1 -BRDA:48,5,0,2 -BRDA:48,6,0,1 -BRDA:48,7,0,2 -BRDA:32,8,0,7 -BRDA:34,9,0,6 -BRDA:34,10,0,1 -BRDA:36,11,0,6 -BRDA:36,12,0,2 -BRDA:36,13,0,2 -BRDA:38,14,0,4 -BRDA:38,15,0,2 -BRDA:38,16,0,4 -BRDA:59,17,0,10 -BRDA:73,18,0,3 -BRDA:74,19,0,3 -BRDA:76,20,0,3 -BRF:21 -BRH:20 -end_of_record -TN: -SF:src\components\switch\switch.ts -FN:41,ZetaSwitch -FN:56,handleChange -FN:61,key -FN:71,render -FNF:4 -FNH:3 -FNDA:22,ZetaSwitch -FNDA:2,handleChange -FNDA:0,key -FNDA:41,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,4 -DA:18,4 -DA:19,4 -DA:20,4 -DA:21,4 -DA:22,4 -DA:23,4 -DA:24,4 -DA:25,4 -DA:26,4 -DA:27,4 -DA:28,4 -DA:29,4 -DA:30,4 -DA:31,4 -DA:32,4 -DA:33,4 -DA:34,4 -DA:35,4 -DA:36,4 -DA:37,4 -DA:38,4 -DA:39,4 -DA:40,4 -DA:41,4 -DA:42,22 -DA:43,22 -DA:44,22 -DA:45,4 -DA:46,4 -DA:47,4 -DA:48,4 -DA:49,4 -DA:50,4 -DA:51,4 -DA:52,4 -DA:53,4 -DA:54,4 -DA:55,4 -DA:56,4 -DA:57,2 -DA:58,2 -DA:59,2 -DA:60,4 -DA:61,4 -DA:62,0 -DA:63,0 -DA:64,0 -DA:65,0 -DA:66,0 -DA:67,0 -DA:68,4 -DA:69,4 -DA:70,4 -DA:71,4 -DA:72,41 -DA:73,41 -DA:74,41 -DA:75,41 -DA:76,41 -DA:77,41 -DA:78,41 -DA:79,41 -DA:80,41 -DA:81,41 -DA:82,38 -DA:83,38 -DA:84,41 -DA:85,41 -DA:86,38 -DA:87,38 -DA:88,38 -DA:89,41 -DA:90,41 -DA:91,41 -DA:92,41 -DA:93,41 -DA:94,41 -DA:95,4 -DA:96,4 -DA:97,4 -DA:98,4 -DA:99,4 -DA:100,4 -DA:101,4 -LF:101 -LH:95 -BRDA:69,0,0,0 -BRDA:41,1,0,22 -BRDA:56,2,0,2 -BRDA:58,3,0,1 -BRDA:58,4,0,1 -BRDA:71,5,0,41 -BRDA:78,6,0,8 -BRDA:78,7,0,33 -BRDA:81,8,0,38 -BRDA:85,9,0,38 -BRF:10 -BRH:9 -end_of_record -TN: -SF:src\components\system-banner\system-banner.ts -FN:19,ZetaSystemBanner -FN:39,render -FNF:2 -FNH:0 -FNDA:0,ZetaSystemBanner -FNDA:0,render -DA:1,3 -DA:2,3 -DA:3,3 -DA:4,3 -DA:5,3 -DA:6,3 -DA:7,3 -DA:8,3 -DA:9,3 -DA:10,3 -DA:11,3 -DA:12,3 -DA:13,3 -DA:14,3 -DA:15,3 -DA:16,3 -DA:17,3 -DA:18,3 -DA:19,3 -DA:20,0 -DA:21,0 -DA:22,0 -DA:23,0 -DA:24,0 -DA:25,3 -DA:26,3 -DA:27,3 -DA:28,3 -DA:29,3 -DA:30,3 -DA:31,3 -DA:32,3 -DA:33,3 -DA:34,3 -DA:35,3 -DA:36,3 -DA:37,3 -DA:38,3 -DA:39,3 -DA:40,0 -DA:41,0 -DA:42,0 -DA:43,0 -DA:44,0 -DA:45,0 -DA:46,0 -DA:47,0 -DA:48,0 -DA:49,0 -DA:50,0 -DA:51,0 -DA:52,0 -DA:53,0 -DA:54,0 -DA:55,0 -DA:56,3 -DA:57,3 -DA:58,3 -DA:59,3 -DA:60,3 -DA:61,3 -DA:62,3 -LF:62 -LH:41 -BRDA:37,0,0,0 -BRF:1 -BRH:0 -end_of_record -TN: -SF:src\components\tab-bar\tab-bar.ts -FN:17,render -FNF:1 -FNH:0 -FNDA:0,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,4 -DA:18,0 -DA:19,0 -DA:20,4 -DA:21,4 -DA:22,4 -DA:23,4 -DA:24,4 -DA:25,4 -DA:26,4 -DA:27,4 -DA:28,4 -LF:28 -LH:26 -BRF:0 -BRH:0 -end_of_record -TN: -SF:src\components\tab-bar\tab-item\tab-item.ts -FN:15,ZetaTabItem -FN:19,render -FNF:2 -FNH:0 -FNDA:0,ZetaTabItem -FNDA:0,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,0 -DA:17,0 -DA:18,4 -DA:19,4 -DA:20,0 -DA:21,0 -DA:22,0 -DA:23,4 -DA:24,4 -DA:25,4 -DA:26,4 -DA:27,4 -DA:28,4 -DA:29,4 -DA:30,4 -DA:31,4 -LF:31 -LH:26 -BRDA:24,0,0,0 -BRF:1 -BRH:0 -end_of_record -TN: -SF:src\components\text-input\text-input.ts -FN:22,ZetaTextInput -FN:68,focus -FN:72,blur -FN:76,handleChange -FN:80,render -FN:88,renderInput -FN:105,renderLeftIcon -FN:111,renderRightIcon -FN:132,renderPrefix -FN:136,renderSuffix -FNF:10 -FNH:10 -FNDA:21,ZetaTextInput -FNDA:3,focus -FNDA:1,blur -FNDA:2,handleChange -FNDA:22,render -FNDA:22,renderInput -FNDA:22,renderLeftIcon -FNDA:22,renderRightIcon -FNDA:22,renderPrefix -FNDA:22,renderSuffix -DA:1,7 -DA:2,7 -DA:3,7 -DA:4,7 -DA:5,7 -DA:6,7 -DA:7,7 -DA:8,7 -DA:9,7 -DA:10,7 -DA:11,7 -DA:12,7 -DA:13,7 -DA:14,7 -DA:15,7 -DA:16,7 -DA:17,7 -DA:18,7 -DA:19,7 -DA:20,7 -DA:21,7 -DA:22,7 -DA:23,21 -DA:24,21 -DA:25,21 -DA:26,21 -DA:27,7 -DA:28,7 -DA:29,7 -DA:30,7 -DA:31,7 -DA:32,7 -DA:33,7 -DA:34,7 -DA:35,7 -DA:36,7 -DA:37,7 -DA:38,7 -DA:39,7 -DA:40,7 -DA:41,7 -DA:42,7 -DA:43,7 -DA:44,7 -DA:45,7 -DA:46,7 -DA:47,7 -DA:48,7 -DA:49,7 -DA:50,7 -DA:51,7 -DA:52,7 -DA:53,7 -DA:54,7 -DA:55,7 -DA:56,7 -DA:57,7 -DA:58,7 -DA:59,7 -DA:60,7 -DA:61,7 -DA:62,7 -DA:63,7 -DA:64,7 -DA:65,7 -DA:66,7 -DA:67,7 -DA:68,7 -DA:69,3 -DA:70,3 -DA:71,7 -DA:72,7 -DA:73,1 -DA:74,1 -DA:75,7 -DA:76,7 -DA:77,2 -DA:78,2 -DA:79,7 -DA:80,7 -DA:81,22 -DA:82,1 -DA:83,22 -DA:84,21 -DA:85,21 -DA:86,22 -DA:87,7 -DA:88,7 -DA:89,22 -DA:90,22 -DA:91,22 -DA:92,22 -DA:93,22 -DA:94,22 -DA:95,22 -DA:96,22 -DA:97,5 -DA:98,5 -DA:99,5 -DA:100,17 -DA:101,22 -DA:102,22 -DA:103,22 -DA:104,7 -DA:105,7 -DA:106,22 -DA:107,2 -DA:108,20 -DA:109,22 -DA:110,7 -DA:111,7 -DA:112,22 -DA:113,1 -DA:114,21 -DA:115,3 -DA:116,3 -DA:117,1 -DA:118,1 -DA:119,3 -DA:120,3 -DA:121,3 -DA:122,3 -DA:123,3 -DA:124,18 -DA:125,18 -DA:126,2 -DA:127,2 -DA:128,16 -DA:129,16 -DA:130,22 -DA:131,7 -DA:132,7 -DA:133,22 -DA:134,22 -DA:135,7 -DA:136,7 -DA:137,22 -DA:138,22 -DA:139,7 -DA:140,7 -DA:141,7 -DA:142,7 -DA:143,7 -DA:144,7 -DA:145,7 -DA:146,7 -DA:147,7 -LF:147 -LH:147 -BRDA:20,0,0,0 -BRDA:22,1,0,21 -BRDA:68,2,0,3 -BRDA:72,3,0,1 -BRDA:76,4,0,2 -BRDA:80,5,0,22 -BRDA:81,6,0,1 -BRDA:83,7,0,21 -BRDA:88,8,0,22 -BRDA:96,9,0,18 -BRDA:96,10,0,5 -BRDA:98,11,0,4 -BRDA:98,12,0,1 -BRDA:99,13,0,4 -BRDA:99,14,0,1 -BRDA:99,15,0,17 -BRDA:105,16,0,22 -BRDA:106,17,0,2 -BRDA:106,18,0,2 -BRDA:106,19,0,2 -BRDA:107,20,0,20 -BRDA:111,21,0,22 -BRDA:112,22,0,1 -BRDA:112,23,0,1 -BRDA:112,24,0,1 -BRDA:113,25,0,21 -BRDA:114,26,0,19 -BRDA:114,27,0,3 -BRDA:123,28,0,1 -BRDA:123,29,0,2 -BRDA:123,30,0,18 -BRDA:125,31,0,17 -BRDA:125,32,0,2 -BRDA:127,33,0,1 -BRDA:127,34,0,1 -BRDA:127,35,0,16 -BRDA:116,36,0,1 -BRDA:118,37,0,0 -BRDA:132,38,0,22 -BRDA:133,39,0,1 -BRDA:133,40,0,1 -BRDA:133,41,0,1 -BRDA:133,42,0,21 -BRDA:136,43,0,22 -BRDA:137,44,0,1 -BRDA:137,45,0,1 -BRDA:137,46,0,1 -BRDA:137,47,0,21 -BRF:48 -BRH:46 -end_of_record -TN: -SF:src\components\tooltip\tooltip.ts -FN:13,ZetaTooltip -FN:22,render -FNF:2 -FNH:0 -FNDA:0,ZetaTooltip -FNDA:0,render -DA:1,3 -DA:2,3 -DA:3,3 -DA:4,3 -DA:5,3 -DA:6,3 -DA:7,3 -DA:8,3 -DA:9,3 -DA:10,3 -DA:11,3 -DA:12,3 -DA:13,3 -DA:14,0 -DA:15,0 -DA:16,3 -DA:17,3 -DA:18,3 -DA:19,3 -DA:20,3 -DA:21,3 -DA:22,3 -DA:23,0 -DA:24,0 -DA:25,0 -DA:26,0 -DA:27,0 -DA:28,0 -DA:29,0 -DA:30,0 -DA:31,0 -DA:32,3 -DA:33,3 -DA:34,3 -DA:35,3 -DA:36,3 -DA:37,3 -DA:38,3 -LF:38 -LH:27 -BRDA:20,0,0,0 -BRF:1 -BRH:0 -end_of_record -TN: -SF:src\components\top-appbar\top-appbar.ts -FN:16,ZetaTopAppbar -FN:23,getTitle -FN:29,render -FNF:3 -FNH:3 -FNDA:6,ZetaTopAppbar -FNDA:6,getTitle -FNDA:6,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,6 -DA:18,6 -DA:19,6 -DA:20,6 -DA:21,6 -DA:22,4 -DA:23,4 -DA:24,6 -DA:25,6 -DA:26,6 -DA:27,6 -DA:28,4 -DA:29,4 -DA:30,6 -DA:31,6 -DA:32,6 -DA:33,6 -DA:34,6 -DA:35,6 -DA:36,6 -DA:37,6 -DA:38,6 -DA:39,6 -DA:40,6 -DA:41,4 -DA:42,4 -DA:43,4 -DA:44,4 -DA:45,4 -DA:46,4 -DA:47,4 -DA:48,4 -DA:49,4 -LF:49 -LH:49 -BRDA:16,0,0,6 -BRDA:23,1,0,6 -BRDA:29,2,0,6 -BRDA:34,3,0,5 -BRDA:34,4,0,1 -BRDA:37,5,0,1 -BRDA:37,6,0,5 -BRF:7 -BRH:7 -end_of_record -TN: -SF:src\components\upload-item\upload-item.ts -FN:22,ZetaUploadItem -FN:29,getTrailingContent -FN:40,onCancelClicked -FN:44,render -FNF:4 -FNH:4 -FNDA:5,ZetaUploadItem -FNDA:5,getTrailingContent -FNDA:1,onCancelClicked -FNDA:5,render -DA:1,4 -DA:2,4 -DA:3,4 -DA:4,4 -DA:5,4 -DA:6,4 -DA:7,4 -DA:8,4 -DA:9,4 -DA:10,4 -DA:11,4 -DA:12,4 -DA:13,4 -DA:14,4 -DA:15,4 -DA:16,4 -DA:17,4 -DA:18,4 -DA:19,4 -DA:20,4 -DA:21,4 -DA:22,4 -DA:23,5 -DA:24,5 -DA:25,5 -DA:26,5 -DA:27,5 -DA:28,4 -DA:29,4 -DA:30,5 -DA:31,5 -DA:32,2 -DA:33,5 -DA:34,1 -DA:35,5 -DA:36,2 -DA:37,5 -DA:38,5 -DA:39,4 -DA:40,4 -DA:41,1 -DA:42,1 -DA:43,4 -DA:44,4 -DA:45,5 -DA:46,5 -DA:47,5 -DA:48,5 -DA:49,5 -DA:50,5 -DA:51,5 -DA:52,5 -DA:53,5 -DA:54,5 -DA:55,5 -DA:56,5 -DA:57,5 -DA:58,5 -DA:59,4 -DA:60,4 -DA:61,4 -DA:62,4 -DA:63,4 -DA:64,4 -DA:65,4 -DA:66,4 -DA:67,4 -LF:67 -LH:67 -BRDA:60,0,0,0 -BRDA:22,1,0,5 -BRDA:29,2,0,5 -BRDA:31,3,0,2 -BRDA:33,4,0,1 -BRDA:35,5,0,2 -BRDA:40,6,0,1 -BRDA:44,7,0,5 -BRDA:54,8,0,1 -BRF:9 -BRH:8 -end_of_record -TN: -SF:src\mixins\contour.ts -FN:18,Contourable -FN:29, -FNF:2 -FNH:2 -FNDA:237,Contourable -FNDA:237, -DA:1,43 -DA:2,43 -DA:3,43 -DA:4,43 -DA:5,43 -DA:6,43 -DA:7,43 -DA:8,43 -DA:9,43 -DA:10,43 -DA:11,43 -DA:12,43 -DA:13,43 -DA:14,43 -DA:15,43 -DA:16,43 -DA:17,43 -DA:18,43 -DA:19,237 -DA:20,237 -DA:21,237 -DA:22,237 -DA:23,237 -DA:24,237 -DA:25,237 -DA:26,237 -DA:27,237 -DA:28,237 -DA:29,237 -DA:30,237 -DA:31,237 -DA:32,237 -DA:33,237 -DA:34,237 -DA:35,237 -DA:36,237 -DA:37,237 -DA:38,237 -DA:39,237 -DA:40,237 -DA:41,237 -DA:42,237 -DA:43,237 -DA:44,237 -DA:45,237 -DA:46,237 -DA:47,237 -DA:48,237 -DA:49,237 -LF:49 -LH:49 -BRDA:18,0,0,237 -BRDA:29,1,0,237 -BRDA:30,2,0,163 -BRF:3 -BRH:3 -end_of_record -TN: -SF:src\mixins\flavor.ts -FN:21,Flavored -FN:22,FlavoredClass -FN:36, -FNF:3 -FNH:3 -FNDA:26,Flavored -FNDA:131,FlavoredClass -FNDA:26, -DA:1,42 -DA:2,42 -DA:3,42 -DA:4,42 -DA:5,42 -DA:6,42 -DA:7,42 -DA:8,42 -DA:9,42 -DA:10,42 -DA:11,42 -DA:12,42 -DA:13,42 -DA:14,42 -DA:15,42 -DA:16,42 -DA:17,42 -DA:18,42 -DA:19,42 -DA:20,42 -DA:21,42 -DA:22,26 -DA:23,131 -DA:24,131 -DA:25,131 -DA:26,131 -DA:27,131 -DA:28,131 -DA:29,131 -DA:30,131 -DA:31,131 -DA:32,131 -DA:33,131 -DA:34,131 -DA:35,26 -DA:36,26 -DA:37,26 -DA:38,26 -DA:39,26 -DA:40,26 -LF:40 -LH:40 -BRDA:21,0,0,26 -BRDA:22,1,0,145 -BRDA:36,2,0,26 -BRDA:36,3,0,26 -BRF:4 -BRH:4 -end_of_record -TN: -SF:src\mixins\form-field.ts -FN:44,FormField -FN:52,FormFieldClass -FN:77,get isCheckable -FN:111,get checked -FN:114,set checked -FN:138,checkValidity -FN:142,reportValidity -FN:146,get validity -FN:150,get validationMessage -FN:154,getValue -FN:165,connectedCallback -FN:179,firstUpdated -FN:186,disconnectedCallback -FN:191,formResetCallback -FN:195,setToInitialValues -FN:201,handleInput -FN:206,_setValue -FN:218,_handleChange -FN:230,handleChange -FN:249,render -FNF:20 -FNH:14 -FNDA:35,FormField -FNDA:113,FormFieldClass -FNDA:663,get isCheckable -FNDA:684,get checked -FNDA:61,set checked -FNDA:0,checkValidity -FNDA:0,reportValidity -FNDA:0,get validity -FNDA:0,get validationMessage -FNDA:244,getValue -FNDA:115,connectedCallback -FNDA:69,firstUpdated -FNDA:106,disconnectedCallback -FNDA:0,formResetCallback -FNDA:69,setToInitialValues -FNDA:60,handleInput -FNDA:129,_setValue -FNDA:12,_handleChange -FNDA:0,handleChange -FNDA:216,render -DA:1,12 -DA:2,12 -DA:3,12 -DA:4,12 -DA:5,12 -DA:6,12 -DA:7,12 -DA:8,12 -DA:9,12 -DA:10,12 -DA:11,12 -DA:12,12 -DA:13,12 -DA:14,12 -DA:15,12 -DA:16,12 -DA:17,12 -DA:18,12 -DA:19,12 -DA:20,12 -DA:21,12 -DA:22,12 -DA:23,12 -DA:24,12 -DA:25,12 -DA:26,12 -DA:27,12 -DA:28,12 -DA:29,12 -DA:30,12 -DA:31,12 -DA:32,12 -DA:33,12 -DA:34,12 -DA:35,12 -DA:36,12 -DA:37,12 -DA:38,12 -DA:39,12 -DA:40,12 -DA:41,12 -DA:42,12 -DA:43,12 -DA:44,12 -DA:45,35 -DA:46,35 -DA:47,35 -DA:48,35 -DA:49,35 -DA:50,35 -DA:51,35 -DA:52,35 -DA:53,113 -DA:54,113 -DA:55,113 -DA:56,113 -DA:57,35 -DA:58,35 -DA:59,35 -DA:60,35 -DA:61,35 -DA:62,35 -DA:63,35 -DA:64,35 -DA:65,35 -DA:66,35 -DA:67,35 -DA:68,35 -DA:69,35 -DA:70,35 -DA:71,35 -DA:72,35 -DA:73,35 -DA:74,35 -DA:75,35 -DA:76,35 -DA:77,35 -DA:78,663 -DA:79,663 -DA:80,35 -DA:81,35 -DA:82,35 -DA:83,35 -DA:84,35 -DA:85,35 -DA:86,35 -DA:87,35 -DA:88,35 -DA:89,35 -DA:90,35 -DA:91,35 -DA:92,35 -DA:93,35 -DA:94,35 -DA:95,35 -DA:96,35 -DA:97,35 -DA:98,35 -DA:99,35 -DA:100,35 -DA:101,35 -DA:102,35 -DA:103,35 -DA:104,35 -DA:105,35 -DA:106,35 -DA:107,35 -DA:108,35 -DA:109,35 -DA:110,35 -DA:111,35 -DA:112,684 -DA:113,684 -DA:114,35 -DA:115,61 -DA:116,61 -DA:117,61 -DA:118,35 -DA:119,35 -DA:120,35 -DA:121,35 -DA:122,35 -DA:123,35 -DA:124,35 -DA:125,35 -DA:126,35 -DA:127,35 -DA:128,35 -DA:129,35 -DA:130,35 -DA:131,35 -DA:132,35 -DA:133,35 -DA:134,35 -DA:135,35 -DA:136,35 -DA:137,35 -DA:138,35 -DA:139,0 -DA:140,0 -DA:141,35 -DA:142,35 -DA:143,0 -DA:144,0 -DA:145,35 -DA:146,35 -DA:147,0 -DA:148,0 -DA:149,35 -DA:150,35 -DA:151,0 -DA:152,0 -DA:153,35 -DA:154,35 -DA:155,244 -DA:156,102 -DA:157,19 -DA:158,102 -DA:159,83 -DA:160,83 -DA:161,102 -DA:162,142 -DA:163,244 -DA:164,35 -DA:165,35 -DA:166,115 -DA:167,115 -DA:168,6 -DA:169,6 -DA:170,115 -DA:171,115 -DA:172,115 -DA:173,115 -DA:174,115 -DA:175,45 -DA:176,45 -DA:177,115 -DA:178,35 -DA:179,35 -DA:180,69 -DA:181,69 -DA:182,69 -DA:183,69 -DA:184,69 -DA:185,35 -DA:186,35 -DA:187,106 -DA:188,106 -DA:189,106 -DA:190,35 -DA:191,35 -DA:192,0 -DA:193,0 -DA:194,35 -DA:195,35 -DA:196,69 -DA:197,69 -DA:198,35 -DA:199,35 -DA:200,35 -DA:201,35 -DA:202,60 -DA:203,60 -DA:204,60 -DA:205,35 -DA:206,35 -DA:207,129 -DA:208,129 -DA:209,129 -DA:210,57 -DA:211,57 -DA:212,129 -DA:213,72 -DA:214,72 -DA:215,72 -DA:216,129 -DA:217,35 -DA:218,35 -DA:219,12 -DA:220,12 -DA:221,12 -DA:222,35 -DA:223,35 -DA:224,35 -DA:225,35 -DA:226,35 -DA:227,35 -DA:228,35 -DA:229,35 -DA:230,35 -DA:231,35 -DA:232,35 -DA:233,35 -DA:234,35 -DA:235,35 -DA:236,35 -DA:237,35 -DA:238,35 -DA:239,35 -DA:240,35 -DA:241,35 -DA:242,35 -DA:243,35 -DA:244,35 -DA:245,35 -DA:246,35 -DA:247,35 -DA:248,35 -DA:249,35 -DA:250,216 -DA:251,216 -DA:252,216 -DA:253,216 -DA:254,216 -DA:255,87 -DA:256,87 -DA:257,87 -DA:258,87 -DA:259,87 -DA:260,87 -DA:261,87 -DA:262,87 -DA:263,87 -DA:264,87 -DA:265,87 -DA:266,87 -DA:267,87 -DA:268,87 -DA:269,87 -DA:270,216 -DA:271,216 -DA:272,1 -DA:273,1 -DA:274,1 -DA:275,1 -DA:276,1 -DA:277,1 -DA:278,1 -DA:279,1 -DA:280,1 -DA:281,1 -DA:282,1 -DA:283,1 -DA:284,1 -DA:285,1 -DA:286,1 -DA:287,216 -DA:288,216 -DA:289,216 -DA:290,216 -DA:291,26 -DA:292,26 -DA:293,26 -DA:294,26 -DA:295,26 -DA:296,26 -DA:297,26 -DA:298,26 -DA:299,26 -DA:300,26 -DA:301,26 -DA:302,26 -DA:303,26 -DA:304,26 -DA:305,26 -DA:306,26 -DA:307,216 -DA:308,216 -DA:309,31 -DA:310,31 -DA:311,31 -DA:312,31 -DA:313,31 -DA:314,31 -DA:315,31 -DA:316,31 -DA:317,31 -DA:318,31 -DA:319,31 -DA:320,31 -DA:321,31 -DA:322,216 -DA:323,216 -DA:324,216 -DA:325,33 -DA:326,33 -DA:327,33 -DA:328,33 -DA:329,33 -DA:330,33 -DA:331,33 -DA:332,33 -DA:333,33 -DA:334,33 -DA:335,33 -DA:336,33 -DA:337,33 -DA:338,33 -DA:339,216 -DA:340,216 -DA:341,38 -DA:342,38 -DA:343,38 -DA:344,38 -DA:345,38 -DA:346,38 -DA:347,38 -DA:348,38 -DA:349,38 -DA:350,38 -DA:351,38 -DA:352,38 -DA:353,38 -DA:354,38 -DA:355,38 -DA:356,216 -DA:357,216 -DA:358,216 -DA:359,216 -DA:360,216 -DA:361,216 -DA:362,216 -DA:363,216 -DA:364,216 -DA:365,216 -DA:366,216 -DA:367,216 -DA:368,216 -DA:369,216 -DA:370,216 -DA:371,216 -DA:372,216 -DA:373,216 -DA:374,216 -DA:375,216 -DA:376,216 -DA:377,35 -DA:378,35 -DA:379,35 -LF:379 -LH:369 -BRDA:44,0,0,35 -BRDA:52,1,0,136 -BRDA:77,2,0,686 -BRDA:78,3,0,476 -BRDA:111,4,0,707 -BRDA:114,5,0,91 -BRDA:116,6,0,46 -BRDA:116,7,0,46 -BRDA:116,8,0,75 -BRDA:154,9,0,267 -BRDA:156,10,0,42 -BRDA:157,11,0,32 -BRDA:158,12,0,106 -BRDA:161,13,0,165 -BRDA:165,14,0,138 -BRDA:167,15,0,29 -BRDA:179,16,0,97 -BRDA:186,17,0,129 -BRDA:195,18,0,97 -BRDA:201,19,0,83 -BRDA:206,20,0,152 -BRDA:212,21,0,95 -BRDA:218,22,0,40 -BRDA:249,23,0,239 -BRDA:257,24,0,30 -BRDA:257,25,0,103 -BRDA:262,26,0,31 -BRDA:263,27,0,23 -BRDA:265,28,0,71 -BRDA:265,29,0,62 -BRDA:266,30,0,30 -BRDA:266,31,0,103 -BRDA:271,32,0,24 -BRDA:288,33,0,44 -BRDA:289,34,0,47 -BRDA:290,35,0,49 -BRDA:308,36,0,54 -BRDA:324,37,0,56 -BRDA:340,38,0,61 -BRDA:116,39,0,46 -BRDA:155,40,0,125 -BRDA:174,41,0,68 -BRDA:188,42,0,62 -BRDA:209,43,0,80 -BRDA:253,44,0,88 -BRDA:254,45,0,110 -BRDA:293,46,0,23 -BRDA:296,47,0,23 -BRDA:298,48,0,23 -BRDA:299,49,0,23 -BRDA:303,50,0,44 -BRDA:327,51,0,23 -BRDA:331,52,0,23 -BRDA:333,53,0,23 -BRDA:335,54,0,37 -BRDA:183,55,0,67 -BRDA:343,56,0,23 -BRDA:346,57,0,26 -BRDA:346,58,0,58 -BRDA:348,59,0,23 -BRDA:349,60,0,25 -BRDA:353,61,0,56 -BRDA:311,62,0,23 -BRDA:315,63,0,23 -BRDA:317,64,0,23 -BRDA:319,65,0,37 -BRDA:262,66,0,102 -BRDA:273,67,0,23 -BRDA:276,68,0,23 -BRDA:278,69,0,23 -BRDA:283,70,0,23 -BRDA:349,71,0,59 -BRF:72 -BRH:72 -end_of_record -TN: -SF:src\mixins\interactive.ts -FN:18,Interactive -FN:19,InteractiveClass -FN:49,InteractiveClass._handleFocus -FN:36,disconnectedCallback -FN:80, -FNF:5 -FNH:5 -FNDA:79,Interactive -FNDA:267,InteractiveClass -FNDA:2,InteractiveClass._handleFocus -FNDA:260,disconnectedCallback -FNDA:79, -DA:1,42 -DA:2,42 -DA:3,42 -DA:4,42 -DA:5,42 -DA:6,42 -DA:7,42 -DA:8,42 -DA:9,42 -DA:10,42 -DA:11,42 -DA:12,42 -DA:13,42 -DA:14,42 -DA:15,42 -DA:16,42 -DA:17,42 -DA:18,42 -DA:19,79 -DA:20,267 -DA:21,267 -DA:22,267 -DA:23,267 -DA:24,267 -DA:25,267 -DA:26,267 -DA:27,57 -DA:28,57 -DA:29,267 -DA:30,210 -DA:31,210 -DA:32,210 -DA:33,210 -DA:34,267 -DA:35,267 -DA:36,267 -DA:37,260 -DA:38,260 -DA:39,260 -DA:40,54 -DA:41,54 -DA:42,260 -DA:43,206 -DA:44,206 -DA:45,260 -DA:46,260 -DA:47,267 -DA:48,267 -DA:49,267 -DA:50,2 -DA:51,0 -DA:52,0 -DA:53,0 -DA:54,0 -DA:55,0 -DA:56,0 -DA:57,0 -DA:58,0 -DA:59,0 -DA:60,2 -DA:61,2 -DA:62,267 -DA:63,267 -DA:64,267 -DA:65,267 -DA:66,267 -DA:67,267 -DA:68,267 -DA:69,267 -DA:70,267 -DA:71,267 -DA:72,267 -DA:73,267 -DA:74,267 -DA:75,267 -DA:76,267 -DA:77,267 -DA:78,267 -DA:79,79 -DA:80,79 -DA:81,79 -DA:82,79 -DA:83,79 -LF:83 -LH:74 -BRDA:18,0,0,79 -BRDA:19,1,0,275 -BRDA:26,2,0,65 -BRDA:36,3,0,268 -BRDA:39,4,0,62 -BRDA:80,5,0,79 -BRDA:29,6,0,218 -BRDA:42,7,0,214 -BRDA:80,8,0,79 -BRDA:49,9,0,255 -BRDA:50,10,0,253 -BRF:11 -BRH:11 -end_of_record -TN: -SF:src\mixins\mixins.ts -FNF:0 -FNH:0 -DA:1,42 -DA:2,42 -DA:3,42 -DA:4,42 -DA:5,42 -DA:6,42 -DA:7,42 -LF:7 -LH:7 -BRF:0 -BRH:0 -end_of_record -TN: -SF:src\mixins\navigate.ts -FN:17,Navigate -FN:24, -FNF:2 -FNH:2 -FNDA:9,Navigate -FNDA:9, -DA:1,42 -DA:2,42 -DA:3,42 -DA:4,42 -DA:5,42 -DA:6,42 -DA:7,42 -DA:8,42 -DA:9,42 -DA:10,42 -DA:11,42 -DA:12,42 -DA:13,42 -DA:14,42 -DA:15,42 -DA:16,42 -DA:17,42 -DA:18,9 -DA:19,9 -DA:20,9 -DA:21,9 -DA:22,9 -DA:23,9 -DA:24,9 -DA:25,9 -DA:26,9 -DA:27,9 -DA:28,9 -DA:29,9 -DA:30,9 -DA:31,9 -DA:32,9 -DA:33,9 -DA:34,9 -LF:34 -LH:34 -BRDA:17,0,0,9 -BRDA:24,1,0,9 -BRDA:25,2,0,4 -BRF:3 -BRH:3 -end_of_record -TN: -SF:src\mixins\popup.ts -FN:26,Popup -FN:27,PopupClass -FN:35,get open -FN:39,showModal -FN:43,show -FN:48,_show -FN:59,hide -FN:65,cancel -FN:69,_onClose -FN:73,_onCancel -FN:77,onBarrierClicked -FN:86,firstUpdated -FN:96,disconnectedCallback -FN:103, -FNF:14 -FNH:10 -FNDA:8,Popup -FNDA:6,PopupClass -FNDA:14,get open -FNDA:0,showModal -FNDA:3,show -FNDA:3,_show -FNDA:2,hide -FNDA:0,cancel -FNDA:2,_onClose -FNDA:0,_onCancel -FNDA:0,onBarrierClicked -FNDA:4,firstUpdated -FNDA:4,disconnectedCallback -FNDA:8, -DA:1,42 -DA:2,42 -DA:3,42 -DA:4,42 -DA:5,42 -DA:6,42 -DA:7,42 -DA:8,42 -DA:9,42 -DA:10,42 -DA:11,42 -DA:12,42 -DA:13,42 -DA:14,42 -DA:15,42 -DA:16,42 -DA:17,42 -DA:18,42 -DA:19,42 -DA:20,42 -DA:21,42 -DA:22,42 -DA:23,42 -DA:24,42 -DA:25,42 -DA:26,42 -DA:27,8 -DA:28,6 -DA:29,6 -DA:30,6 -DA:31,6 -DA:32,8 -DA:33,8 -DA:34,8 -DA:35,8 -DA:36,14 -DA:37,14 -DA:38,8 -DA:39,8 -DA:40,0 -DA:41,0 -DA:42,8 -DA:43,8 -DA:44,3 -DA:45,3 -DA:46,8 -DA:47,8 -DA:48,8 -DA:49,3 -DA:50,3 -DA:51,0 -DA:52,3 -DA:53,3 -DA:54,3 -DA:55,3 -DA:56,3 -DA:57,3 -DA:58,8 -DA:59,8 -DA:60,2 -DA:61,2 -DA:62,2 -DA:63,2 -DA:64,8 -DA:65,8 -DA:66,0 -DA:67,0 -DA:68,8 -DA:69,8 -DA:70,2 -DA:71,2 -DA:72,8 -DA:73,8 -DA:74,0 -DA:75,0 -DA:76,8 -DA:77,8 -DA:78,0 -DA:79,0 -DA:80,0 -DA:81,0 -DA:82,0 -DA:83,0 -DA:84,8 -DA:85,8 -DA:86,8 -DA:87,4 -DA:88,4 -DA:89,4 -DA:90,4 -DA:91,4 -DA:92,4 -DA:93,4 -DA:94,4 -DA:95,8 -DA:96,8 -DA:97,4 -DA:98,4 -DA:99,4 -DA:100,4 -DA:101,4 -DA:102,8 -DA:103,8 -DA:104,8 -DA:105,8 -DA:106,8 -DA:107,8 -DA:108,8 -DA:109,8 -DA:110,8 -DA:111,8 -DA:112,8 -DA:113,8 -LF:113 -LH:100 -BRDA:26,0,0,8 -BRDA:27,1,0,12 -BRDA:35,2,0,20 -BRDA:36,3,0,8 -BRDA:36,4,0,18 -BRDA:43,5,0,10 -BRDA:48,6,0,10 -BRDA:50,7,0,7 -BRDA:59,8,0,9 -BRDA:69,9,0,9 -BRDA:86,10,0,10 -BRDA:96,11,0,10 -BRDA:103,12,0,8 -BRF:13 -BRH:13 -end_of_record -TN: -SF:src\mixins\size.ts -FN:18,Size -FN:19,InteractiveClass -FN:23, -FNF:3 -FNH:3 -FNDA:41,Size -FNDA:183,InteractiveClass -FNDA:41, -DA:1,42 -DA:2,42 -DA:3,42 -DA:4,42 -DA:5,42 -DA:6,42 -DA:7,42 -DA:8,42 -DA:9,42 -DA:10,42 -DA:11,42 -DA:12,42 -DA:13,42 -DA:14,42 -DA:15,42 -DA:16,42 -DA:17,42 -DA:18,42 -DA:19,41 -DA:20,183 -DA:21,183 -DA:22,41 -DA:23,41 -DA:24,41 -DA:25,41 -DA:26,41 -LF:26 -LH:26 -BRDA:18,0,0,41 -BRDA:19,1,0,207 -BRDA:23,2,0,41 -BRDA:23,3,0,41 -BRF:4 -BRH:4 -end_of_record -TN: -SF:src\test\utils.ts -FN:9,toRGB -FN:21,getCssVarValue -FN:31,getCssVarColorValue -FN:40,getSlotTextNode -FN:51,getSlot -FN:61,getSlottedIconName -FN:72,getSlotText -FN:86,getIconColor -FN:95,getMiddleOfElement -FN:113, -FN:113,hover -FN:125,down -FN:135,up -FN:139,click -FNF:14 -FNH:14 -FNDA:82,toRGB -FNDA:90,getCssVarValue -FNDA:79,getCssVarColorValue -FNDA:29,getSlotTextNode -FNDA:2,getSlot -FNDA:2,getSlottedIconName -FNDA:13,getSlotText -FNDA:16,getIconColor -FNDA:8,getMiddleOfElement -FNDA:15, -FNDA:8,hover -FNDA:2,down -FNDA:2,up -FNDA:2,click -DA:1,15 -DA:2,15 -DA:3,15 -DA:4,15 -DA:5,15 -DA:6,15 -DA:7,15 -DA:8,15 -DA:9,15 -DA:10,82 -DA:11,82 -DA:12,82 -DA:13,82 -DA:14,15 -DA:15,15 -DA:16,15 -DA:17,15 -DA:18,15 -DA:19,15 -DA:20,15 -DA:21,15 -DA:22,90 -DA:23,90 -DA:24,15 -DA:25,15 -DA:26,15 -DA:27,15 -DA:28,15 -DA:29,15 -DA:30,15 -DA:31,15 -DA:32,79 -DA:33,79 -DA:34,15 -DA:35,15 -DA:36,15 -DA:37,15 -DA:38,15 -DA:39,15 -DA:40,15 -DA:41,29 -DA:42,29 -DA:43,29 -DA:44,29 -DA:45,1 -DA:46,29 -DA:47,28 -DA:48,28 -DA:49,29 -DA:50,15 -DA:51,15 -DA:52,2 -DA:53,2 -DA:54,15 -DA:55,15 -DA:56,15 -DA:57,15 -DA:58,15 -DA:59,15 -DA:60,15 -DA:61,15 -DA:62,2 -DA:63,2 -DA:64,2 -DA:65,2 -DA:66,15 -DA:67,15 -DA:68,15 -DA:69,15 -DA:70,15 -DA:71,15 -DA:72,15 -DA:73,13 -DA:74,13 -DA:75,13 -DA:76,13 -DA:77,13 -DA:78,13 -DA:79,13 -DA:80,15 -DA:81,15 -DA:82,15 -DA:83,15 -DA:84,15 -DA:85,15 -DA:86,15 -DA:87,16 -DA:88,16 -DA:89,15 -DA:90,15 -DA:91,15 -DA:92,15 -DA:93,15 -DA:94,15 -DA:95,15 -DA:96,8 -DA:97,8 -DA:98,8 -DA:99,8 -DA:100,8 -DA:101,8 -DA:102,8 -DA:103,15 -DA:104,15 -DA:105,15 -DA:106,15 -DA:107,15 -DA:108,15 -DA:109,15 -DA:110,15 -DA:111,15 -DA:112,15 -DA:113,15 -DA:114,8 -DA:115,8 -DA:116,8 -DA:117,8 -DA:118,15 -DA:119,15 -DA:120,15 -DA:121,15 -DA:122,15 -DA:123,15 -DA:124,15 -DA:125,15 -DA:126,2 -DA:127,2 -DA:128,2 -DA:129,15 -DA:130,15 -DA:131,15 -DA:132,15 -DA:133,15 -DA:134,15 -DA:135,15 -DA:136,2 -DA:137,2 -DA:138,15 -DA:139,15 -DA:140,2 -DA:141,2 -DA:142,2 -DA:143,15 -DA:144,15 -DA:145,15 -DA:146,15 -DA:147,15 -DA:148,15 -LF:148 -LH:148 -BRDA:113,0,0,15 -BRDA:9,1,0,82 -BRDA:21,2,0,90 -BRDA:31,3,0,79 -BRDA:40,4,0,29 -BRDA:46,5,0,28 -BRDA:41,6,0,34 -BRDA:43,7,0,44 -BRDA:72,8,0,13 -BRDA:76,9,0,20 -BRDA:77,10,0,20 -BRDA:44,11,0,1 -BRDA:43,12,0,44 -BRDA:51,13,0,2 -BRDA:61,14,0,2 -BRDA:63,15,0,2 -BRDA:86,16,0,16 -BRDA:95,17,0,8 -BRDA:113,18,0,21 -BRDA:125,19,0,16 -BRDA:135,20,0,16 -BRDA:139,21,0,16 -BRF:22 -BRH:22 -end_of_record -TN: -SF:src\test\text-input\setup.ts -FN:23,setup -FNF:1 -FNH:1 -FNDA:20,setup -DA:1,1 -DA:2,1 -DA:3,1 -DA:4,1 -DA:5,1 -DA:6,1 -DA:7,1 -DA:8,1 -DA:9,1 -DA:10,1 -DA:11,1 -DA:12,1 -DA:13,1 -DA:14,1 -DA:15,1 -DA:16,1 -DA:17,1 -DA:18,1 -DA:19,1 -DA:20,1 -DA:21,1 -DA:22,1 -DA:23,20 -DA:24,20 -DA:25,20 -DA:26,20 -DA:27,20 -DA:28,20 -DA:29,20 -DA:30,20 -DA:31,20 -DA:32,20 -DA:33,20 -DA:34,20 -DA:35,20 -DA:36,20 -DA:37,20 -DA:38,20 -DA:39,20 -DA:40,20 -DA:41,20 -DA:42,20 -DA:43,20 -DA:44,20 -DA:45,20 -DA:46,20 -DA:47,20 -DA:48,20 -DA:49,20 -DA:50,20 -DA:51,20 -DA:52,20 -DA:53,20 -DA:54,20 -DA:55,20 -LF:55 -LH:55 -BRDA:23,0,0,20 -BRDA:48,1,0,16 -BRF:2 -BRH:2 -end_of_record From 0af1c0f146535b38c0236cb4d86f09625d1868ed Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 4 Dec 2024 18:13:04 +0000 Subject: [PATCH 13/82] removed some test from fab to test code coverage comment --- src/test/avatar/avatar.test.ts | 132 ++++++++++++++++----------------- src/test/fab/fab.test.ts | 103 +------------------------ 2 files changed, 67 insertions(+), 168 deletions(-) diff --git a/src/test/avatar/avatar.test.ts b/src/test/avatar/avatar.test.ts index 28f74e1..1ea00f8 100644 --- a/src/test/avatar/avatar.test.ts +++ b/src/test/avatar/avatar.test.ts @@ -1,87 +1,87 @@ -// import { fixture, html, expect } from "@open-wc/testing"; -// import type { ZetaAvatar } from "../../components/avatar/avatar.js"; -// import "../../components/avatar/avatar.js"; +import { fixture, html, expect } from "@open-wc/testing"; +import type { ZetaAvatar } from "../../components/avatar/avatar.js"; +import "../../components/avatar/avatar.js"; -// import type { ZetaIcon } from "../../components/icon/icon.js"; -// import type { ZetaIconIndicator } from "../../components/badges/indicators/indicators.js"; -// import { getSlotText } from "../utils.js"; +import type { ZetaIcon } from "../../components/icon/icon.js"; +import type { ZetaIconIndicator } from "../../components/badges/indicators/indicators.js"; +import { getSlotText } from "../utils.js"; -// describe("zeta-avatar", () => { -// // let subject: ZetaAvatar; +describe("zeta-avatar", () => { + // let subject: ZetaAvatar; -// // const createComponent = (template = ``) => { -// // // prettier-ignore -// // return fixture(html`${unsafeStatic(template)}`); -// // }; + // const createComponent = (template = ``) => { + // // prettier-ignore + // return fixture(html`${unsafeStatic(template)}`); + // }; -// // beforeEach(async () => { -// // subject = await createComponent(); -// // }); + // beforeEach(async () => { + // subject = await createComponent(); + // }); -// // describe("Accessibility Tests", () => {}); + // describe("Accessibility Tests", () => {}); -// describe("Content Tests", () => { -// it("renders the avatar with a custom size", async () => { -// const avatar: ZetaAvatar = await fixture(html``); -// await expect(avatar.size).to.equal("xl"); -// }); + describe("Content Tests", () => { + it("renders the avatar with a custom size", async () => { + const avatar: ZetaAvatar = await fixture(html``); + await expect(avatar.size).to.equal("xl"); + }); -// it("renders the avatar with the ring", async () => { -// const avatar: ZetaAvatar = await fixture(html``); -// return expect(avatar.showRing).to.be.true; -// }); + it("renders the avatar with the ring", async () => { + const avatar: ZetaAvatar = await fixture(html``); + return expect(avatar.showRing).to.be.true; + }); -// it("renders the avatar without the ring", async () => { -// const avatar: ZetaAvatar = await fixture(html``); -// return expect(avatar.showRing).to.be.false; -// }); + it("renders the avatar without the ring", async () => { + const avatar: ZetaAvatar = await fixture(html``); + return expect(avatar.showRing).to.be.false; + }); -// it("renders the avatar with the close icon", async () => { -// const avatar: ZetaAvatar = await fixture(html``); -// return expect(avatar.showClose).to.be.true; -// }); + it("renders the avatar with the close icon", async () => { + const avatar: ZetaAvatar = await fixture(html``); + return expect(avatar.showClose).to.be.true; + }); -// it("renders the avatar without the close icon", async () => { -// const avatar: ZetaAvatar = await fixture(html``); -// return expect(avatar.showClose).to.be.false; -// }); + it("renders the avatar without the close icon", async () => { + const avatar: ZetaAvatar = await fixture(html``); + return expect(avatar.showClose).to.be.false; + }); -// it("renders the avatar with an image", async () => { -// const url = "https://example.com/image.jpg"; -// const avatar: ZetaAvatar = await fixture(html``); -// const slot: HTMLSlotElement | null | undefined = avatar.shadowRoot?.querySelector("#CONTENT_SLOT"); -// const img = slot?.assignedElements()[0] as HTMLImageElement; + it("renders the avatar with an image", async () => { + const url = "https://example.com/image.jpg"; + const avatar: ZetaAvatar = await fixture(html``); + const slot: HTMLSlotElement | null | undefined = avatar.shadowRoot?.querySelector("#CONTENT_SLOT"); + const img = slot?.assignedElements()[0] as HTMLImageElement; -// expect(img).to.exist; -// return await expect(img?.src).to.equal(url); -// }); + expect(img).to.exist; + return await expect(img?.src).to.equal(url); + }); -// it("renders the avatar with an icon", async () => { -// const iconName = "user"; -// const avatar: ZetaAvatar = await fixture(html`${iconName}`); -// const slot: HTMLSlotElement | null | undefined = avatar.shadowRoot?.querySelector("#CONTENT_SLOT"); -// const icon = slot?.assignedElements()[0] as ZetaIcon; + it("renders the avatar with an icon", async () => { + const iconName = "user"; + const avatar: ZetaAvatar = await fixture(html`${iconName}`); + const slot: HTMLSlotElement | null | undefined = avatar.shadowRoot?.querySelector("#CONTENT_SLOT"); + const icon = slot?.assignedElements()[0] as ZetaIcon; -// expect(icon).to.exist; -// await expect(getSlotText(icon)).to.equal(iconName); -// }); + expect(icon).to.exist; + await expect(getSlotText(icon)).to.equal(iconName); + }); -// it("renders the badge on the avatar", async () => { -// const avatar: ZetaAvatar = await fixture(html``); -// const slot: HTMLSlotElement | null | undefined = avatar.shadowRoot?.querySelector("#STATUS_SLOT"); + it("renders the badge on the avatar", async () => { + const avatar: ZetaAvatar = await fixture(html``); + const slot: HTMLSlotElement | null | undefined = avatar.shadowRoot?.querySelector("#STATUS_SLOT"); -// const badge = slot?.assignedElements()[0] as ZetaIconIndicator; -// expect(badge).to.exist; -// }); -// }); + const badge = slot?.assignedElements()[0] as ZetaIconIndicator; + expect(badge).to.exist; + }); + }); -// // describe("Dimensions Tests", () => {}); + // describe("Dimensions Tests", () => {}); -// // describe("Styling Tests", () => {}); + // describe("Styling Tests", () => {}); -// // describe("Interaction Tests", () => {}); + // describe("Interaction Tests", () => {}); -// // describe("Golden Tests", () => {}); + // describe("Golden Tests", () => {}); -// // describe("Performance Tests", () => {}); -// }); + // describe("Performance Tests", () => {}); +}); diff --git a/src/test/fab/fab.test.ts b/src/test/fab/fab.test.ts index fdc11b1..9577e97 100644 --- a/src/test/fab/fab.test.ts +++ b/src/test/fab/fab.test.ts @@ -1,6 +1,6 @@ import { expect, fixture, html, unsafeStatic } from "@open-wc/testing"; import type { ZetaFab } from "../../components/fab/fab.js"; -import { getCssVarValue } from "../utils.js"; +// import { getCssVarValue } from "../utils.js"; import "../../components/fab/fab.js"; import "../../index.css"; @@ -29,107 +29,6 @@ describe("zeta-fab", () => { }); }); - describe("Content Tests", () => { - it("renders a button with a label", () => { - expect(subject.shadowRoot?.querySelector("button")).to.exist; - expect(subject.shadowRoot?.querySelector(".label")).to.exist; - }); - - it("renders a button with an icon", () => { - expect(subject.shadowRoot?.querySelector("zeta-icon")).to.exist; - }); - - it("renders no label when label is empty", async () => { - subject.label = ""; - await subject.updateComplete; - expect(subject.shadowRoot?.querySelector(".label")).to.not.exist; - }); - - it("renders an extended fab", async () => { - subject.extended = true; - await subject.updateComplete; - const labelExtentedFab = subject.shadowRoot?.querySelector("button .label"); - const labelDefault = subject.shadowRoot?.querySelector(":host > .label"); - await expect(subject.extended).to.equal(true); - expect(labelExtentedFab).to.exist; - expect(labelDefault).to.not.exist; - }); - - it("renders a default fab", async () => { - const labelExtentedFab = subject.shadowRoot?.querySelector("button .label"); - const labelDefault = subject.shadowRoot?.querySelector(":host > .label"); - await expect(subject.extended).to.equal(false); - expect(labelExtentedFab).to.not.exist; - expect(labelDefault).to.exist; - }); - }); - - describe("Dimensions Tests", () => { - it("renders a small fab", async () => { - const el = subject.shadowRoot?.querySelector("button"); - const height = getComputedStyle(el!).height; - const expectedHeight = parseInt(getCssVarValue(el!, "--spacing-medium")) * 2 + 24 + "px"; - await expect(subject.size).to.equal("small"); - await expect(height).to.equal(expectedHeight); - }); - - it("renders a large fab", async () => { - const fab: ZetaFab = await fixture(html``); - - const el = fab.shadowRoot?.querySelector("button"); - const height = getComputedStyle(el!).height; - const expectedHeight = parseInt(getCssVarValue(el!, "--spacing-xl")) * 2 + 36 + "px"; - await expect(height).to.equal(expectedHeight); - }); - }); - - describe("Styling Tests", () => { - it("renders a full rounded fab", async () => { - const el = subject.shadowRoot?.querySelector("button"); - const borderRadius = getComputedStyle(el!).borderRadius; - const expectedBorderRadius = getCssVarValue(el!, "--radius-full"); - await expect(subject.round).to.equal("full"); - await expect(borderRadius).to.equal(expectedBorderRadius); - }); - - it("renders a rounded small fab", async () => { - const fab: ZetaFab = await fixture(html``); - - const el = fab.shadowRoot?.querySelector("button"); - fab.round = true; - await fab.updateComplete; - const borderRadius = getComputedStyle(el!).borderRadius; - const expectedBorderRadius = getCssVarValue(el!, "--radius-rounded"); - await expect(fab.round).to.equal(true); - await expect(borderRadius).to.equal(expectedBorderRadius); - }); - - it("renders a rounded large fab", async () => { - const fab: ZetaFab = await fixture(html``); - - const el = fab.shadowRoot?.querySelector("button"); - fab.round = true; - await fab.updateComplete; - const borderRadius = getComputedStyle(el!).borderRadius; - const expectedBorderRadius = getCssVarValue(el!, "--radius-large"); - await expect(fab.round).to.equal(true); - await expect(fab.size).to.equal("large"); - await expect(borderRadius).to.equal(expectedBorderRadius); - }); - - it("renders a non-rounded fab", async () => { - const fab: ZetaFab = await fixture(html``); - - const el = fab.shadowRoot?.querySelector("button"); - fab.round = false; - await fab.updateComplete; - const borderRadius = getComputedStyle(el!).borderRadius; - const expectedBorderRadius = getCssVarValue(el!, "--radius-none"); - await expect(fab.round).to.equal(false); - await expect(borderRadius).to.equal(expectedBorderRadius); - }); - }); - // describe("Interaction Tests", () => {}); // describe("Golden Tests", () => {}); From 726b16123a62646bd9fbbeedd6cbcf16e1501066 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 4 Dec 2024 18:18:56 +0000 Subject: [PATCH 14/82] reverted fab change --- src/test/fab/fab.test.ts | 103 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 102 insertions(+), 1 deletion(-) diff --git a/src/test/fab/fab.test.ts b/src/test/fab/fab.test.ts index 9577e97..fdc11b1 100644 --- a/src/test/fab/fab.test.ts +++ b/src/test/fab/fab.test.ts @@ -1,6 +1,6 @@ import { expect, fixture, html, unsafeStatic } from "@open-wc/testing"; import type { ZetaFab } from "../../components/fab/fab.js"; -// import { getCssVarValue } from "../utils.js"; +import { getCssVarValue } from "../utils.js"; import "../../components/fab/fab.js"; import "../../index.css"; @@ -29,6 +29,107 @@ describe("zeta-fab", () => { }); }); + describe("Content Tests", () => { + it("renders a button with a label", () => { + expect(subject.shadowRoot?.querySelector("button")).to.exist; + expect(subject.shadowRoot?.querySelector(".label")).to.exist; + }); + + it("renders a button with an icon", () => { + expect(subject.shadowRoot?.querySelector("zeta-icon")).to.exist; + }); + + it("renders no label when label is empty", async () => { + subject.label = ""; + await subject.updateComplete; + expect(subject.shadowRoot?.querySelector(".label")).to.not.exist; + }); + + it("renders an extended fab", async () => { + subject.extended = true; + await subject.updateComplete; + const labelExtentedFab = subject.shadowRoot?.querySelector("button .label"); + const labelDefault = subject.shadowRoot?.querySelector(":host > .label"); + await expect(subject.extended).to.equal(true); + expect(labelExtentedFab).to.exist; + expect(labelDefault).to.not.exist; + }); + + it("renders a default fab", async () => { + const labelExtentedFab = subject.shadowRoot?.querySelector("button .label"); + const labelDefault = subject.shadowRoot?.querySelector(":host > .label"); + await expect(subject.extended).to.equal(false); + expect(labelExtentedFab).to.not.exist; + expect(labelDefault).to.exist; + }); + }); + + describe("Dimensions Tests", () => { + it("renders a small fab", async () => { + const el = subject.shadowRoot?.querySelector("button"); + const height = getComputedStyle(el!).height; + const expectedHeight = parseInt(getCssVarValue(el!, "--spacing-medium")) * 2 + 24 + "px"; + await expect(subject.size).to.equal("small"); + await expect(height).to.equal(expectedHeight); + }); + + it("renders a large fab", async () => { + const fab: ZetaFab = await fixture(html``); + + const el = fab.shadowRoot?.querySelector("button"); + const height = getComputedStyle(el!).height; + const expectedHeight = parseInt(getCssVarValue(el!, "--spacing-xl")) * 2 + 36 + "px"; + await expect(height).to.equal(expectedHeight); + }); + }); + + describe("Styling Tests", () => { + it("renders a full rounded fab", async () => { + const el = subject.shadowRoot?.querySelector("button"); + const borderRadius = getComputedStyle(el!).borderRadius; + const expectedBorderRadius = getCssVarValue(el!, "--radius-full"); + await expect(subject.round).to.equal("full"); + await expect(borderRadius).to.equal(expectedBorderRadius); + }); + + it("renders a rounded small fab", async () => { + const fab: ZetaFab = await fixture(html``); + + const el = fab.shadowRoot?.querySelector("button"); + fab.round = true; + await fab.updateComplete; + const borderRadius = getComputedStyle(el!).borderRadius; + const expectedBorderRadius = getCssVarValue(el!, "--radius-rounded"); + await expect(fab.round).to.equal(true); + await expect(borderRadius).to.equal(expectedBorderRadius); + }); + + it("renders a rounded large fab", async () => { + const fab: ZetaFab = await fixture(html``); + + const el = fab.shadowRoot?.querySelector("button"); + fab.round = true; + await fab.updateComplete; + const borderRadius = getComputedStyle(el!).borderRadius; + const expectedBorderRadius = getCssVarValue(el!, "--radius-large"); + await expect(fab.round).to.equal(true); + await expect(fab.size).to.equal("large"); + await expect(borderRadius).to.equal(expectedBorderRadius); + }); + + it("renders a non-rounded fab", async () => { + const fab: ZetaFab = await fixture(html``); + + const el = fab.shadowRoot?.querySelector("button"); + fab.round = false; + await fab.updateComplete; + const borderRadius = getComputedStyle(el!).borderRadius; + const expectedBorderRadius = getCssVarValue(el!, "--radius-none"); + await expect(fab.round).to.equal(false); + await expect(borderRadius).to.equal(expectedBorderRadius); + }); + }); + // describe("Interaction Tests", () => {}); // describe("Golden Tests", () => {}); From cfb5243de5963cc0cec6cea05615fa1f8028be94 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 4 Dec 2024 18:21:07 +0000 Subject: [PATCH 15/82] broken fab --- .github/workflows/pull-request.yml | 2 -- src/components/fab/fab.ts | 3 ++- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 3407b05..72feb36 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -103,8 +103,6 @@ jobs: owner: context.repo.owner, repo: context.repo.repo }); - console.log(comments); - console.log(coverageData); const comment = comments.find(comment => comment.body.includes('Test Coverage Report')); if (comment) { await github.rest.issues.updateComment({ diff --git a/src/components/fab/fab.ts b/src/components/fab/fab.ts index c9dc83a..4fb8c04 100644 --- a/src/components/fab/fab.ts +++ b/src/components/fab/fab.ts @@ -56,7 +56,8 @@ export class ZetaFab extends Flavored(BaseButton) { @property({ type: String, reflect: true }) size: "small" | "large" = "small"; private getLabel() { - return this.label ? html`
${this.label}
` : nothing; + // return this.label ? html`
${this.label}
` : nothing; + return nothing; } protected render() { return html` From aa3dcebca44a838b82ca0f6990534718a2a45288 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 4 Dec 2024 18:31:02 +0000 Subject: [PATCH 16/82] added fall back to post failure comment --- .github/workflows/pull-request.yml | 7 +++++-- src/components/fab/fab.ts | 3 +-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 72feb36..542a52d 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -120,7 +120,7 @@ jobs: }); } - name: Post failure comment - if: failure() + if: always() uses: actions/github-script@v6 with: script: | @@ -136,10 +136,13 @@ jobs: { name: 'Update changes in GitHub repository', conclusion: '${{ steps.update-changes-in-github-repository.outcome }}' } ].filter(step => step.conclusion === 'failure'); const failedStepsDetails = failedSteps.map(step => `- ${step.name}: ${step.conclusion}`).join('\n'); - const commentBody = ` + const commentBody = failedSteps.length > 0 ? ` ## Code Quality Checks Failed The following checks failed: ${failedStepsDetails} + `; : ` + ## Code Quality Checks Failed + No checks failed. `; const { data: comments } = await github.rest.issues.listComments({ issue_number: context.issue.number, diff --git a/src/components/fab/fab.ts b/src/components/fab/fab.ts index 4fb8c04..c9dc83a 100644 --- a/src/components/fab/fab.ts +++ b/src/components/fab/fab.ts @@ -56,8 +56,7 @@ export class ZetaFab extends Flavored(BaseButton) { @property({ type: String, reflect: true }) size: "small" | "large" = "small"; private getLabel() { - // return this.label ? html`
${this.label}
` : nothing; - return nothing; + return this.label ? html`
${this.label}
` : nothing; } protected render() { return html` From 984aa9b8338b67da059848dcb7c7735f534c5e7c Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 4 Dec 2024 18:35:15 +0000 Subject: [PATCH 17/82] removed slippery semi colon --- .github/workflows/pull-request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 542a52d..c7fd44c 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -135,12 +135,12 @@ jobs: { name: 'Check for modified files', conclusion: '${{ steps.git-check.outcome }}' }, { name: 'Update changes in GitHub repository', conclusion: '${{ steps.update-changes-in-github-repository.outcome }}' } ].filter(step => step.conclusion === 'failure'); - const failedStepsDetails = failedSteps.map(step => `- ${step.name}: ${step.conclusion}`).join('\n'); + const failedStepsDetails = failedSteps.map(step => `- ${step.name}`).join('\n'); const commentBody = failedSteps.length > 0 ? ` ## Code Quality Checks Failed The following checks failed: ${failedStepsDetails} - `; : ` + ` : ` ## Code Quality Checks Failed No checks failed. `; From dc71dcfdef248874d35ee877b26b0a2f164f8a3c Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 4 Dec 2024 18:41:05 +0000 Subject: [PATCH 18/82] cleaned up comment --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index c7fd44c..81a16c7 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -137,7 +137,7 @@ jobs: ].filter(step => step.conclusion === 'failure'); const failedStepsDetails = failedSteps.map(step => `- ${step.name}`).join('\n'); const commentBody = failedSteps.length > 0 ? ` - ## Code Quality Checks Failed + ## Code Quality Checks The following checks failed: ${failedStepsDetails} ` : ` From c588686434259064269a12003d51fd9952040ce8 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 4 Dec 2024 18:41:58 +0000 Subject: [PATCH 19/82] further cleaning --- .github/workflows/pull-request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 81a16c7..1dd3dd8 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -141,8 +141,8 @@ jobs: The following checks failed: ${failedStepsDetails} ` : ` - ## Code Quality Checks Failed - No checks failed. + ## Code Quality Checks + All code quality checks passed. `; const { data: comments } = await github.rest.issues.listComments({ issue_number: context.issue.number, From eb5592e61ae711e2ff3d6793ce63413150c1d36b Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Thu, 5 Dec 2024 09:09:57 +0000 Subject: [PATCH 20/82] codeql comment test --- .github/workflows/codeql.yml | 37 ++++++++++++++++++++++++++++++ .github/workflows/pull-request.yml | 2 +- 2 files changed, 38 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 7b5379d..985eb37 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -31,6 +31,43 @@ jobs: with: languages: ${{ matrix.language }} - name: Perform CodeQL Analysis + id: perform-codeql-analysis uses: github/codeql-action/analyze@v2 with: category: "/language:${{matrix.language}}" + - name: Post failure comment + if: always() + # if: failure() + uses: actions/github-script@v6 + with: + script: | + const conclusion = ${{ steps.perform-codeql-analysis.conclusion }}; + const outcome = ${{ steps.perform-codeql-analysis.outcome }}; + const sarif = ${{ steps.perform-codeql-analysis.outputs.sarif-output }}; + const commentBody = ` + ## CodeQL Analysis + ${conclusion} + ${outcome} + ${sarif} + `; + const { data: comments } = await github.rest.issues.listComments({ + issue_number: context.issue.number, + owner: context.repo.owner, + repo: context.repo.repo + }); + const comment = comments.find(comment => comment.body.includes('CodeQL Analysis')); + if (comment) { + await github.rest.issues.updateComment({ + comment_id: comment.id, + owner: context.repo.owner, + repo: context.repo.repo, + body: commentBody + }); + } else { + await github.rest.issues.createComment({ + issue_number: context.issue.number, + owner: context.repo.owner, + repo: context.repo.repo, + body: commentBody + }); + } diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 1dd3dd8..650a55b 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -149,7 +149,7 @@ jobs: owner: context.repo.owner, repo: context.repo.repo }); - const comment = comments.find(comment => comment.body.includes('Code Quality Checks Failed')); + const comment = comments.find(comment => comment.body.includes('Code Quality Checks')); if (comment) { await github.rest.issues.updateComment({ comment_id: comment.id, From 3751b75451654b6a4691afeed10f7b996ea4c2de Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Thu, 5 Dec 2024 09:15:14 +0000 Subject: [PATCH 21/82] added quotes --- .github/workflows/codeql.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 985eb37..a6f90b1 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -41,9 +41,9 @@ jobs: uses: actions/github-script@v6 with: script: | - const conclusion = ${{ steps.perform-codeql-analysis.conclusion }}; - const outcome = ${{ steps.perform-codeql-analysis.outcome }}; - const sarif = ${{ steps.perform-codeql-analysis.outputs.sarif-output }}; + const conclusion = '${{ steps.perform-codeql-analysis.conclusion }}'; + const outcome = '${{ steps.perform-codeql-analysis.outcome }}'; + const sarif = '${{ steps.perform-codeql-analysis.outputs.sarif-output }}'; const commentBody = ` ## CodeQL Analysis ${conclusion} From d9fdb872c62b0c077730892f8ef50938a53a85c0 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Thu, 5 Dec 2024 09:23:44 +0000 Subject: [PATCH 22/82] checking db-locations --- .github/workflows/codeql.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index a6f90b1..4cf3034 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -43,7 +43,7 @@ jobs: script: | const conclusion = '${{ steps.perform-codeql-analysis.conclusion }}'; const outcome = '${{ steps.perform-codeql-analysis.outcome }}'; - const sarif = '${{ steps.perform-codeql-analysis.outputs.sarif-output }}'; + const sarif = '${{ steps.perform-codeql-analysis.outputs.db-locations }}'; const commentBody = ` ## CodeQL Analysis ${conclusion} From 04cf9e9fd8f3f8247754e71ffbfc5218ddf96e11 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Thu, 5 Dec 2024 10:07:03 +0000 Subject: [PATCH 23/82] combined both comments --- .github/workflows/codeql.yml | 36 -------------- .github/workflows/pull-request.yml | 79 +++++++++++------------------- 2 files changed, 29 insertions(+), 86 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 4cf3034..dc4e4d0 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -35,39 +35,3 @@ jobs: uses: github/codeql-action/analyze@v2 with: category: "/language:${{matrix.language}}" - - name: Post failure comment - if: always() - # if: failure() - uses: actions/github-script@v6 - with: - script: | - const conclusion = '${{ steps.perform-codeql-analysis.conclusion }}'; - const outcome = '${{ steps.perform-codeql-analysis.outcome }}'; - const sarif = '${{ steps.perform-codeql-analysis.outputs.db-locations }}'; - const commentBody = ` - ## CodeQL Analysis - ${conclusion} - ${outcome} - ${sarif} - `; - const { data: comments } = await github.rest.issues.listComments({ - issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo - }); - const comment = comments.find(comment => comment.body.includes('CodeQL Analysis')); - if (comment) { - await github.rest.issues.updateComment({ - comment_id: comment.id, - owner: context.repo.owner, - repo: context.repo.repo, - body: commentBody - }); - } else { - await github.rest.issues.createComment({ - issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo, - body: commentBody - }); - } diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 650a55b..cd197b2 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -75,81 +75,59 @@ jobs: git add -A git commit -m '[automated commit] lint format and import sort' git push - - name: Post coverage comment + - name: PR checks complete if: always() uses: actions/github-script@v6 with: script: | const fs = require('fs'); + const steps = [ + { name: 'Install dependencies', conclusion: '${{ steps.install-dependencies.outcome }}' }, + { name: 'Run custom elements manifest analyzer', conclusion: '${{ steps.run-custom-elements-manifest-analyzer.outcome }}' }, + { name: 'Run eslint', conclusion: '${{ steps.run-eslint.outcome }}' }, + { name: 'Run prettier', conclusion: '${{ steps.run-prettier.outcome }}' }, + { name: 'Run lit-analyzer', conclusion: '${{ steps.run-lit-analyzer.outcome }}' }, + { name: 'Run tests and generate coverage', conclusion: '${{ steps.run-tests-and-generate-coverage.outcome }}' }, + { name: 'Test tsdoc', conclusion: '${{ steps.test-tsdoc.outcome }}' }, + { name: 'Check for modified files', conclusion: '${{ steps.git-check.outcome }}' }, + { name: 'Update changes in GitHub repository', conclusion: '${{ steps.update-changes-in-github-repository.outcome }}' } + ] + const failedSteps = steps.filter(step => step.conclusion === 'failure'); + const skippedSteps = steps.filter(step => step.conclusion === 'skipped'); + const passedSteps = steps.filter(step => step.conclusion === 'success'); + + const failedStepsDetails = failedSteps.map(step => `- ❌ - ${step.name} failed`).join('\n'); + const skippedStepsDetails = skippedSteps.map(step => `- ⏭️ - ${step.name} skipped`).join('\n'); + const passedStepsDetails = passedSteps.map(step => `- ✅ - ${step.name} passed`).join('\n'); + const coverage = fs.readFileSync("coverage/lcov-report/index.html", "utf8"); const coverageData = coverage .split('') .pop() ?.split("
")[0] .replaceAll(/]*>([^<]*)<\/a>/g, "$1"); + const commentBody = ` - ## Test Coverage Report + ## PR Checks Complete + ${failedSteps.length > 0 ? `${failedStepsDetails}` : ''} + ${skippedSteps.length > 0 ? `${skippedStepsDetails}` : ''} + ${passedSteps.length > 0 ? `${passedStepsDetails}` : ''}
- Code Coverage Report + 📈 - Code Coverage Report ${coverageData}
- `; - const { data: comments } = await github.rest.issues.listComments({ - issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo - }); - const comment = comments.find(comment => comment.body.includes('Test Coverage Report')); - if (comment) { - await github.rest.issues.updateComment({ - comment_id: comment.id, - owner: context.repo.owner, - repo: context.repo.repo, - body: commentBody - }); - } else { - await github.rest.issues.createComment({ - issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo, - body: commentBody - }); - } - - name: Post failure comment - if: always() - uses: actions/github-script@v6 - with: - script: | - const failedSteps = [ - { name: 'Install dependencies', conclusion: '${{ steps.install-dependencies.outcome }}' }, - { name: 'Run custom elements manifest analyzer', conclusion: '${{ steps.run-custom-elements-manifest-analyzer.outcome }}' }, - { name: 'Run eslint', conclusion: '${{ steps.run-eslint.outcome }}' }, - { name: 'Run prettier', conclusion: '${{ steps.run-prettier.outcome }}' }, - { name: 'Run lit-analyzer', conclusion: '${{ steps.run-lit-analyzer.outcome }}' }, - { name: 'Run tests and generate coverage', conclusion: '${{ steps.run-tests-and-generate-coverage.outcome }}' }, - { name: 'Test tsdoc', conclusion: '${{ steps.test-tsdoc.outcome }}' }, - { name: 'Check for modified files', conclusion: '${{ steps.git-check.outcome }}' }, - { name: 'Update changes in GitHub repository', conclusion: '${{ steps.update-changes-in-github-repository.outcome }}' } - ].filter(step => step.conclusion === 'failure'); - const failedStepsDetails = failedSteps.map(step => `- ${step.name}`).join('\n'); - const commentBody = failedSteps.length > 0 ? ` - ## Code Quality Checks - The following checks failed: - ${failedStepsDetails} - ` : ` - ## Code Quality Checks - All code quality checks passed. `; + const { data: comments } = await github.rest.issues.listComments({ issue_number: context.issue.number, owner: context.repo.owner, repo: context.repo.repo }); - const comment = comments.find(comment => comment.body.includes('Code Quality Checks')); + const comment = comments.find(comment => comment.body.includes('PR Checks Complete')); if (comment) { await github.rest.issues.updateComment({ comment_id: comment.id, @@ -165,6 +143,7 @@ jobs: body: commentBody }); } + generate-localizations: name: Generate localizations. needs: [code-quality] From bb367ee737c95cc3179044ef450064a36884f616 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Thu, 5 Dec 2024 10:12:17 +0000 Subject: [PATCH 24/82] updated names --- .github/workflows/pull-request.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index cd197b2..1d7ca89 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -83,11 +83,11 @@ jobs: const fs = require('fs'); const steps = [ { name: 'Install dependencies', conclusion: '${{ steps.install-dependencies.outcome }}' }, - { name: 'Run custom elements manifest analyzer', conclusion: '${{ steps.run-custom-elements-manifest-analyzer.outcome }}' }, - { name: 'Run eslint', conclusion: '${{ steps.run-eslint.outcome }}' }, - { name: 'Run prettier', conclusion: '${{ steps.run-prettier.outcome }}' }, - { name: 'Run lit-analyzer', conclusion: '${{ steps.run-lit-analyzer.outcome }}' }, - { name: 'Run tests and generate coverage', conclusion: '${{ steps.run-tests-and-generate-coverage.outcome }}' }, + { name: 'Custom elements manifest analyzer', conclusion: '${{ steps.run-custom-elements-manifest-analyzer.outcome }}' }, + { name: 'Eslint', conclusion: '${{ steps.run-eslint.outcome }}' }, + { name: 'Prettier', conclusion: '${{ steps.run-prettier.outcome }}' }, + { name: 'Lit-analyzer', conclusion: '${{ steps.run-lit-analyzer.outcome }}' }, + { name: 'Tests and coverage', conclusion: '${{ steps.run-tests-and-generate-coverage.outcome }}' }, { name: 'Test tsdoc', conclusion: '${{ steps.test-tsdoc.outcome }}' }, { name: 'Check for modified files', conclusion: '${{ steps.git-check.outcome }}' }, { name: 'Update changes in GitHub repository', conclusion: '${{ steps.update-changes-in-github-repository.outcome }}' } From 205a28a74cbb61eacb2964284bfac35c8ead8e0f Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Thu, 5 Dec 2024 12:02:17 +0000 Subject: [PATCH 25/82] remove chart column --- .github/workflows/pull-request.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 1d7ca89..48ec647 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -105,7 +105,8 @@ jobs: .split('') .pop() ?.split("
")[0] - .replaceAll(/
]*>([^<]*)<\/a>/g, "$1"); + .replaceAll(/]*>([^<]*)<\/a>/g, "$1") + .replaceAll(/]*class="pic high"[^>]*>[^<]*<\/td>/g, ""); const commentBody = ` ## PR Checks Complete @@ -114,7 +115,7 @@ jobs: ${passedSteps.length > 0 ? `${passedStepsDetails}` : ''}
- 📈 - Code Coverage Report + 📈 - Code Coverage: ${coverageData} From 7db1deef1363b104b054e19a4f07235f3ab29bce Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Thu, 5 Dec 2024 12:04:25 +0000 Subject: [PATCH 26/82] remove header --- .github/workflows/pull-request.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 48ec647..feb40b5 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -106,7 +106,8 @@ jobs: .pop() ?.split("
")[0] .replaceAll(/
]*>([^<]*)<\/a>/g, "$1") - .replaceAll(/]*class="pic high"[^>]*>[^<]*<\/td>/g, ""); + .replaceAll(/]*class="pic high"[^>]*>[^<]*<\/td>/g, "") + .replace("", ""); const commentBody = ` ## PR Checks Complete From 2887ad6287e3ac462b90370fa874db50ef41199d Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Thu, 5 Dec 2024 12:08:14 +0000 Subject: [PATCH 27/82] changed " to ' --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index feb40b5..47eb2c5 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -107,7 +107,7 @@ jobs: ?.split("")[0] .replaceAll(/]*>([^<]*)<\/a>/g, "$1") .replaceAll(/]*class="pic high"[^>]*>[^<]*<\/td>/g, "") - .replace("", ""); + .replace('', ""); const commentBody = ` ## PR Checks Complete From 83b1135f9ff17a3948264c2a67291310099cee7a Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Fri, 13 Dec 2024 10:37:37 +0000 Subject: [PATCH 28/82] testing new github action --- .github/workflows/pull-request.yml | 125 +---------------------------- 1 file changed, 3 insertions(+), 122 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 47eb2c5..2044e20 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -22,129 +22,10 @@ jobs: with: node-version: 18.x.x cache: "npm" - - name: Install dependencies - id: install-dependencies - run: npm ci - - name: Store Playwright's Version - id: store-playwright-version - run: | - PLAYWRIGHT_VERSION=$(npm ls @playwright/test | grep @playwright | sed 's/.*@//') - echo "Playwright's Version: $PLAYWRIGHT_VERSION" - echo "PLAYWRIGHT_VERSION=$PLAYWRIGHT_VERSION" >> $GITHUB_ENV - - name: Cache Playwright Browsers for Playwright's Version - id: cache-playwright-browsers - uses: actions/cache@v3 - env: - PLAYWRIGHT_VERSION: ${{ steps.store-playwright-version.outputs.PLAYWRIGHT_VERSION }} - if: env.PLAYWRIGHT_VERSION == 'true' + - name: Code Quality + uses: ZebraDevs/web-components-code-quality@v1.0.0 with: - path: ~/.cache/ms-playwright - key: playwright-browsers-${{ env.PLAYWRIGHT_VERSION }} - - name: Install playwright browsers - if: steps.cache-playwright-browsers.outputs.cache-hit != 'true' - run: npx playwright install --with-deps - - name: Run custom elements manifest analyzer - id: run-custom-elements-manifest-analyzer - run: npm run analyze - - name: Run eslint - id: run-eslint - run: npm run lint - - name: Run prettier - id: run-prettier - run: npm run prettier - - name: Run lit-analyzer - id: run-lit-analyzer - run: npm run lint:lit-analyzer - - name: Run tests and generate coverage - run: npm run test -- --coverage --debug - id: run-tests-and-generate-coverage - - name: Test tsdoc - run: npm run docs - id: test-tsdoc - - name: Check for modified files - id: git-check - run: echo "modified=$(if [ -n "$(git status --porcelain)" ]; then echo "true"; else echo "false"; fi)" >> $GITHUB_ENV - - name: Update changes in GitHub repository - id: update-changes-in-github-repository - env: - MODIFIED: ${{ steps.git-check.outputs.modified }} - if: env.MODIFIED == 'true' - run: | - git config --global user.name "github-actions" - git config --global user.email "github-actions@github.com" - git add -A - git commit -m '[automated commit] lint format and import sort' - git push - - name: PR checks complete - if: always() - uses: actions/github-script@v6 - with: - script: | - const fs = require('fs'); - const steps = [ - { name: 'Install dependencies', conclusion: '${{ steps.install-dependencies.outcome }}' }, - { name: 'Custom elements manifest analyzer', conclusion: '${{ steps.run-custom-elements-manifest-analyzer.outcome }}' }, - { name: 'Eslint', conclusion: '${{ steps.run-eslint.outcome }}' }, - { name: 'Prettier', conclusion: '${{ steps.run-prettier.outcome }}' }, - { name: 'Lit-analyzer', conclusion: '${{ steps.run-lit-analyzer.outcome }}' }, - { name: 'Tests and coverage', conclusion: '${{ steps.run-tests-and-generate-coverage.outcome }}' }, - { name: 'Test tsdoc', conclusion: '${{ steps.test-tsdoc.outcome }}' }, - { name: 'Check for modified files', conclusion: '${{ steps.git-check.outcome }}' }, - { name: 'Update changes in GitHub repository', conclusion: '${{ steps.update-changes-in-github-repository.outcome }}' } - ] - const failedSteps = steps.filter(step => step.conclusion === 'failure'); - const skippedSteps = steps.filter(step => step.conclusion === 'skipped'); - const passedSteps = steps.filter(step => step.conclusion === 'success'); - - const failedStepsDetails = failedSteps.map(step => `- ❌ - ${step.name} failed`).join('\n'); - const skippedStepsDetails = skippedSteps.map(step => `- ⏭️ - ${step.name} skipped`).join('\n'); - const passedStepsDetails = passedSteps.map(step => `- ✅ - ${step.name} passed`).join('\n'); - - const coverage = fs.readFileSync("coverage/lcov-report/index.html", "utf8"); - const coverageData = coverage - .split('') - .pop() - ?.split("
")[0] - .replaceAll(/
]*>([^<]*)<\/a>/g, "$1") - .replaceAll(/]*class="pic high"[^>]*>[^<]*<\/td>/g, "") - .replace('', ""); - - const commentBody = ` - ## PR Checks Complete - ${failedSteps.length > 0 ? `${failedStepsDetails}` : ''} - ${skippedSteps.length > 0 ? `${skippedStepsDetails}` : ''} - ${passedSteps.length > 0 ? `${passedStepsDetails}` : ''} -
- - 📈 - Code Coverage: - - - ${coverageData} -
-
- `; - - const { data: comments } = await github.rest.issues.listComments({ - issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo - }); - const comment = comments.find(comment => comment.body.includes('PR Checks Complete')); - if (comment) { - await github.rest.issues.updateComment({ - comment_id: comment.id, - owner: context.repo.owner, - repo: context.repo.repo, - body: commentBody - }); - } else { - await github.rest.issues.createComment({ - issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo, - body: commentBody - }); - } + token: ${{ secrets.GITHUB_TOKEN }} generate-localizations: name: Generate localizations. From 6cc67a2de34d031da8629ec5d17f9a47547f11eb Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Fri, 13 Dec 2024 11:49:45 +0000 Subject: [PATCH 29/82] update code quality action version --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 2044e20..36499ba 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -23,7 +23,7 @@ jobs: node-version: 18.x.x cache: "npm" - name: Code Quality - uses: ZebraDevs/web-components-code-quality@v1.0.0 + uses: ZebraDevs/web-components-code-quality@v1.1.0 with: token: ${{ secrets.GITHUB_TOKEN }} From 8db5785a49b702dfa446e65fdbdd355e04c52905 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Fri, 13 Dec 2024 13:37:55 +0000 Subject: [PATCH 30/82] changed version installed typedoc --- .github/workflows/pull-request.yml | 2 +- package-lock.json | 1603 +++------------------------- package.json | 1 + 3 files changed, 172 insertions(+), 1434 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 36499ba..777b103 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -23,7 +23,7 @@ jobs: node-version: 18.x.x cache: "npm" - name: Code Quality - uses: ZebraDevs/web-components-code-quality@v1.1.0 + uses: ZebraDevs/web-components-code-quality@v0.0.3 with: token: ${{ secrets.GITHUB_TOKEN }} diff --git a/package-lock.json b/package-lock.json index 8169fe4..c37f252 100644 --- a/package-lock.json +++ b/package-lock.json @@ -44,7 +44,6 @@ "@web/test-runner-commands": "^0.9.0", "@web/test-runner-playwright": "^0.11.0", "axe-playwright": "^2.0.2", - "axios": "^1.7.9", "cem-plugin-better-lit-types": "^0.2.1", "cem-plugin-custom-jsdoc-tags": "^1.1.2", "command-line-args": "^6.0.1", @@ -62,14 +61,11 @@ "npm-run-all": "^4.1.5", "prettier": "3.4.1", "react": "^18.3.1", - "react-markdown": "^9.0.1", - "remark": "^15.0.1", - "remark-mdx": "^3.1.0", "sinon": "^19.0.2", "storybook": "^8.4.4", - "to-vfile": "^8.0.0", "ts-lit-plugin": "^2.0.2", "ts-morph": "^24.0.0", + "typedoc": "^0.27.4", "typescript": "^5.7.2", "typescript-eslint": "^8.16.0", "vite": "^6.0.2" @@ -1343,6 +1339,18 @@ "resolved": "https://registry.npmjs.org/@fontsource/ibm-plex-sans/-/ibm-plex-sans-5.1.0.tgz", "integrity": "sha512-v2aFHGh33ogG+At6dVNUCX6vWlNAhQ6STWj5WrBKPxVWX1SsAnHNq8sXQBa7WHEt29Irmozuk7GTp6GzFlpwdQ==" }, + "node_modules/@gerrit0/mini-shiki": { + "version": "1.24.3", + "resolved": "https://registry.npmjs.org/@gerrit0/mini-shiki/-/mini-shiki-1.24.3.tgz", + "integrity": "sha512-odxt2MTJvlT5NUmGOPXz5OW4D8SFL2+KeXBkmjVtdOXfA5aRZX6jgP/17jp6wu2r3KdW0wx3Bk5HDehgeV1Yng==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/engine-oniguruma": "^1.24.2", + "@shikijs/types": "^1.24.2", + "@shikijs/vscode-textmate": "^9.3.0" + } + }, "node_modules/@github/catalyst": { "version": "1.7.0", "resolved": "https://registry.npmjs.org/@github/catalyst/-/catalyst-1.7.0.tgz", @@ -2527,6 +2535,35 @@ "win32" ] }, + "node_modules/@shikijs/engine-oniguruma": { + "version": "1.24.2", + "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-1.24.2.tgz", + "integrity": "sha512-ZN6k//aDNWRJs1uKB12pturKHh7GejKugowOFGAuG7TxDRLod1Bd5JhpOikOiFqPmKjKEPtEA6mRCf7q3ulDyQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/types": "1.24.2", + "@shikijs/vscode-textmate": "^9.3.0" + } + }, + "node_modules/@shikijs/types": { + "version": "1.24.2", + "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-1.24.2.tgz", + "integrity": "sha512-bdeWZiDtajGLG9BudI0AHet0b6e7FbR0EsE4jpGaI0YwHm/XJunI9+3uZnzFtX65gsyJ6ngCIWUfA4NWRPnBkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/vscode-textmate": "^9.3.0", + "@types/hast": "^3.0.4" + } + }, + "node_modules/@shikijs/vscode-textmate": { + "version": "9.3.1", + "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-9.3.1.tgz", + "integrity": "sha512-79QfK1393x9Ho60QFyLti+QfdJzRQCVLFb97kOIV7Eo9vQU/roINgk7m24uv0a7AUvN//RDH36FLjjK48v0s9g==", + "dev": true, + "license": "MIT" + }, "node_modules/@sideway/address": { "version": "4.1.5", "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz", @@ -3575,15 +3612,6 @@ "@types/node": "*" } }, - "node_modules/@types/acorn": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@types/acorn/-/acorn-4.0.6.tgz", - "integrity": "sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==", - "dev": true, - "dependencies": { - "@types/estree": "*" - } - }, "node_modules/@types/aria-query": { "version": "5.0.4", "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz", @@ -3717,30 +3745,12 @@ "integrity": "sha512-jBqiORIzKDOToaF63Fm//haOCHuwQuLa2202RK4MozpA6lh93eCBc+/8+wZn5OzjJt3ySdc+74SXWXB55Ewtyw==", "dev": true }, - "node_modules/@types/debug": { - "version": "4.1.12", - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", - "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", - "dev": true, - "dependencies": { - "@types/ms": "*" - } - }, "node_modules/@types/estree": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", "dev": true }, - "node_modules/@types/estree-jsx": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz", - "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==", - "dev": true, - "dependencies": { - "@types/estree": "*" - } - }, "node_modules/@types/express": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/@types/express/-/express-5.0.0.tgz", @@ -3904,15 +3914,6 @@ "@types/koa": "*" } }, - "node_modules/@types/mdast": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", - "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", - "dev": true, - "dependencies": { - "@types/unist": "*" - } - }, "node_modules/@types/mdx": { "version": "2.0.13", "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.13.tgz", @@ -3925,12 +3926,6 @@ "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", "dev": true }, - "node_modules/@types/ms": { - "version": "0.7.34", - "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.34.tgz", - "integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==", - "dev": true - }, "node_modules/@types/node": { "version": "22.10.1", "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.1.tgz", @@ -4308,12 +4303,6 @@ "url": "https://opencollective.com/eslint" } }, - "node_modules/@ungap/structured-clone": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", - "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", - "dev": true - }, "node_modules/@vitest/expect": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-2.0.5.tgz", @@ -5385,16 +5374,6 @@ "@babel/core": "^7.0.0" } }, - "node_modules/bail": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", - "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", @@ -5731,16 +5710,6 @@ } ] }, - "node_modules/ccount": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", - "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/cem-plugin-better-lit-types": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/cem-plugin-better-lit-types/-/cem-plugin-better-lit-types-0.2.1.tgz", @@ -5892,46 +5861,6 @@ "node": ">=10" } }, - "node_modules/character-entities": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", - "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/character-entities-html4": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", - "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/character-entities-legacy": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", - "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/character-reference-invalid": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", - "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/check-error": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/check-error/-/check-error-2.1.1.tgz", @@ -6144,16 +6073,6 @@ "node": ">= 0.8" } }, - "node_modules/comma-separated-tokens": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", - "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/command-line-args": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-6.0.1.tgz", @@ -6428,19 +6347,6 @@ "node": ">=0.10.0" } }, - "node_modules/decode-named-character-reference": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz", - "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==", - "dev": true, - "dependencies": { - "character-entities": "^2.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/dedent": { "version": "1.5.3", "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz", @@ -6682,19 +6588,6 @@ "node": ">=8" } }, - "node_modules/devlop": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", - "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", - "dev": true, - "dependencies": { - "dequal": "^2.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/devtools-protocol": { "version": "0.0.1367902", "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1367902.tgz", @@ -7483,30 +7376,6 @@ "node": ">=4.0" } }, - "node_modules/estree-util-is-identifier-name": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz", - "integrity": "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==", - "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/estree-util-visit": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-2.0.0.tgz", - "integrity": "sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==", - "dev": true, - "dependencies": { - "@types/estree-jsx": "^1.0.0", - "@types/unist": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, "node_modules/estree-walker": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", @@ -7597,12 +7466,6 @@ "integrity": "sha512-+kn8561vHAY+dt+0gMqqj1oY+g5xWrsuGMk4QGxotT2WS545nVqqjs37z6hrYfIuucwqthzwJfCJUEYqixyljg==", "dev": true }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true - }, "node_modules/extract-zip": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", @@ -8405,46 +8268,6 @@ "node": ">= 0.4" } }, - "node_modules/hast-util-to-jsx-runtime": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.2.tgz", - "integrity": "sha512-1ngXYb+V9UT5h+PxNRa1O1FYguZK/XL+gkeqvp7EdHlB9oHUG0eYRo/vY5inBdcqo3RkPMC58/H94HvkbfGdyg==", - "dev": true, - "dependencies": { - "@types/estree": "^1.0.0", - "@types/hast": "^3.0.0", - "@types/unist": "^3.0.0", - "comma-separated-tokens": "^2.0.0", - "devlop": "^1.0.0", - "estree-util-is-identifier-name": "^3.0.0", - "hast-util-whitespace": "^3.0.0", - "mdast-util-mdx-expression": "^2.0.0", - "mdast-util-mdx-jsx": "^3.0.0", - "mdast-util-mdxjs-esm": "^2.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0", - "style-to-object": "^1.0.0", - "unist-util-position": "^5.0.0", - "vfile-message": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/hast-util-whitespace": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", - "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", - "dev": true, - "dependencies": { - "@types/hast": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, "node_modules/homedir-polyfill": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", @@ -8469,16 +8292,6 @@ "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, - "node_modules/html-url-attributes": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/html-url-attributes/-/html-url-attributes-3.0.1.tgz", - "integrity": "sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==", - "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, "node_modules/htmlparser2": { "version": "3.10.1", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", @@ -8692,12 +8505,6 @@ "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", "dev": true }, - "node_modules/inline-style-parser": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.4.tgz", - "integrity": "sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==", - "dev": true - }, "node_modules/internal-ip": { "version": "6.2.0", "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-6.2.0.tgz", @@ -8761,30 +8568,6 @@ "node": ">= 0.10" } }, - "node_modules/is-alphabetical": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz", - "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/is-alphanumerical": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", - "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==", - "dev": true, - "dependencies": { - "is-alphabetical": "^2.0.0", - "is-decimal": "^2.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/is-arguments": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", @@ -8938,16 +8721,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-decimal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", - "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/is-docker": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", @@ -9032,16 +8805,6 @@ "node": ">=0.10.0" } }, - "node_modules/is-hexadecimal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", - "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/is-ip": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/is-ip/-/is-ip-3.1.0.tgz", @@ -9133,18 +8896,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-plain-obj": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", - "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/is-potential-custom-element-name": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", @@ -10950,6 +10701,16 @@ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true }, + "node_modules/linkify-it": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.0.tgz", + "integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "uc.micro": "^2.0.0" + } + }, "node_modules/lit": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/lit/-/lit-3.2.1.tgz", @@ -11181,16 +10942,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/longest-streak": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", - "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/loose-envify": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", @@ -11218,6 +10969,13 @@ "yallist": "^3.0.2" } }, + "node_modules/lunr": { + "version": "2.3.9", + "resolved": "https://registry.npmjs.org/lunr/-/lunr-2.3.9.tgz", + "integrity": "sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==", + "dev": true, + "license": "MIT" + }, "node_modules/lz-string": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", @@ -11285,189 +11043,57 @@ "integrity": "sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==", "dev": true }, - "node_modules/marky": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/marky/-/marky-1.2.5.tgz", - "integrity": "sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==", - "dev": true - }, - "node_modules/mdast-util-from-markdown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz", - "integrity": "sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==", - "dev": true, - "dependencies": { - "@types/mdast": "^4.0.0", - "@types/unist": "^3.0.0", - "decode-named-character-reference": "^1.0.0", - "devlop": "^1.0.0", - "mdast-util-to-string": "^4.0.0", - "micromark": "^4.0.0", - "micromark-util-decode-numeric-character-reference": "^2.0.0", - "micromark-util-decode-string": "^2.0.0", - "micromark-util-normalize-identifier": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0", - "unist-util-stringify-position": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/mdast-util-mdx": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-3.0.0.tgz", - "integrity": "sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==", + "node_modules/markdown-it": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.1.0.tgz", + "integrity": "sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==", "dev": true, + "license": "MIT", "dependencies": { - "mdast-util-from-markdown": "^2.0.0", - "mdast-util-mdx-expression": "^2.0.0", - "mdast-util-mdx-jsx": "^3.0.0", - "mdast-util-mdxjs-esm": "^2.0.0", - "mdast-util-to-markdown": "^2.0.0" + "argparse": "^2.0.1", + "entities": "^4.4.0", + "linkify-it": "^5.0.0", + "mdurl": "^2.0.0", + "punycode.js": "^2.3.1", + "uc.micro": "^2.1.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "bin": { + "markdown-it": "bin/markdown-it.mjs" } }, - "node_modules/mdast-util-mdx-expression": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz", - "integrity": "sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==", + "node_modules/markdown-it/node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", "dev": true, - "dependencies": { - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^3.0.0", - "@types/mdast": "^4.0.0", - "devlop": "^1.0.0", - "mdast-util-from-markdown": "^2.0.0", - "mdast-util-to-markdown": "^2.0.0" + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/mdast-util-mdx-jsx": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.1.3.tgz", - "integrity": "sha512-bfOjvNt+1AcbPLTFMFWY149nJz0OjmewJs3LQQ5pIyVGxP4CdOqNVJL6kTaM5c68p8q82Xv3nCyFfUnuEcH3UQ==", - "dev": true, - "dependencies": { - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^3.0.0", - "@types/mdast": "^4.0.0", - "@types/unist": "^3.0.0", - "ccount": "^2.0.0", - "devlop": "^1.1.0", - "mdast-util-from-markdown": "^2.0.0", - "mdast-util-to-markdown": "^2.0.0", - "parse-entities": "^4.0.0", - "stringify-entities": "^4.0.0", - "unist-util-stringify-position": "^4.0.0", - "vfile-message": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } + "node_modules/marky": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/marky/-/marky-1.2.5.tgz", + "integrity": "sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==", + "dev": true }, - "node_modules/mdast-util-mdxjs-esm": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz", - "integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==", + "node_modules/mdurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz", + "integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==", "dev": true, - "dependencies": { - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^3.0.0", - "@types/mdast": "^4.0.0", - "devlop": "^1.0.0", - "mdast-util-from-markdown": "^2.0.0", - "mdast-util-to-markdown": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } + "license": "MIT" }, - "node_modules/mdast-util-phrasing": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz", - "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==", + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", "dev": true, - "dependencies": { - "@types/mdast": "^4.0.0", - "unist-util-is": "^6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/mdast-util-to-hast": { - "version": "13.2.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.0.tgz", - "integrity": "sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==", - "dev": true, - "dependencies": { - "@types/hast": "^3.0.0", - "@types/mdast": "^4.0.0", - "@ungap/structured-clone": "^1.0.0", - "devlop": "^1.0.0", - "micromark-util-sanitize-uri": "^2.0.0", - "trim-lines": "^3.0.0", - "unist-util-position": "^5.0.0", - "unist-util-visit": "^5.0.0", - "vfile": "^6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/mdast-util-to-markdown": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz", - "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==", - "dev": true, - "dependencies": { - "@types/mdast": "^4.0.0", - "@types/unist": "^3.0.0", - "longest-streak": "^3.0.0", - "mdast-util-phrasing": "^4.0.0", - "mdast-util-to-string": "^4.0.0", - "micromark-util-classify-character": "^2.0.0", - "micromark-util-decode-string": "^2.0.0", - "unist-util-visit": "^5.0.0", - "zwitch": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/mdast-util-to-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", - "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", - "dev": true, - "dependencies": { - "@types/mdast": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "dev": true, - "engines": { - "node": ">= 0.6" + "engines": { + "node": ">= 0.6" } }, "node_modules/memoizerific": { @@ -11476,630 +11102,32 @@ "integrity": "sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==", "dev": true, "dependencies": { - "map-or-similar": "^1.5.0" - } - }, - "node_modules/memorystream": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", - "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", - "dev": true, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/micromark": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.1.tgz", - "integrity": "sha512-eBPdkcoCNvYcxQOAKAlceo5SNdzZWfF+FcSupREAzdAh9rRmE239CEQAiTwIgblwnoM8zzj35sZ5ZwvSEOF6Kw==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "@types/debug": "^4.0.0", - "debug": "^4.0.0", - "decode-named-character-reference": "^1.0.0", - "devlop": "^1.0.0", - "micromark-core-commonmark": "^2.0.0", - "micromark-factory-space": "^2.0.0", - "micromark-util-character": "^2.0.0", - "micromark-util-chunked": "^2.0.0", - "micromark-util-combine-extensions": "^2.0.0", - "micromark-util-decode-numeric-character-reference": "^2.0.0", - "micromark-util-encode": "^2.0.0", - "micromark-util-normalize-identifier": "^2.0.0", - "micromark-util-resolve-all": "^2.0.0", - "micromark-util-sanitize-uri": "^2.0.0", - "micromark-util-subtokenize": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" - } - }, - "node_modules/micromark-core-commonmark": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.2.tgz", - "integrity": "sha512-FKjQKbxd1cibWMM1P9N+H8TwlgGgSkWZMmfuVucLCHaYqeSvJ0hFeHsIa65pA2nYbes0f8LDHPMrd9X7Ujxg9w==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "decode-named-character-reference": "^1.0.0", - "devlop": "^1.0.0", - "micromark-factory-destination": "^2.0.0", - "micromark-factory-label": "^2.0.0", - "micromark-factory-space": "^2.0.0", - "micromark-factory-title": "^2.0.0", - "micromark-factory-whitespace": "^2.0.0", - "micromark-util-character": "^2.0.0", - "micromark-util-chunked": "^2.0.0", - "micromark-util-classify-character": "^2.0.0", - "micromark-util-html-tag-name": "^2.0.0", - "micromark-util-normalize-identifier": "^2.0.0", - "micromark-util-resolve-all": "^2.0.0", - "micromark-util-subtokenize": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" - } - }, - "node_modules/micromark-extension-mdx-expression": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-3.0.0.tgz", - "integrity": "sha512-sI0nwhUDz97xyzqJAbHQhp5TfaxEvZZZ2JDqUo+7NvyIYG6BZ5CPPqj2ogUoPJlmXHBnyZUzISg9+oUmU6tUjQ==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "@types/estree": "^1.0.0", - "devlop": "^1.0.0", - "micromark-factory-mdx-expression": "^2.0.0", - "micromark-factory-space": "^2.0.0", - "micromark-util-character": "^2.0.0", - "micromark-util-events-to-acorn": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" - } - }, - "node_modules/micromark-extension-mdx-jsx": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-3.0.1.tgz", - "integrity": "sha512-vNuFb9czP8QCtAQcEJn0UJQJZA8Dk6DXKBqx+bg/w0WGuSxDxNr7hErW89tHUY31dUW4NqEOWwmEUNhjTFmHkg==", - "dev": true, - "dependencies": { - "@types/acorn": "^4.0.0", - "@types/estree": "^1.0.0", - "devlop": "^1.0.0", - "estree-util-is-identifier-name": "^3.0.0", - "micromark-factory-mdx-expression": "^2.0.0", - "micromark-factory-space": "^2.0.0", - "micromark-util-character": "^2.0.0", - "micromark-util-events-to-acorn": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0", - "vfile-message": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/micromark-extension-mdx-md": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-2.0.0.tgz", - "integrity": "sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==", - "dev": true, - "dependencies": { - "micromark-util-types": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/micromark-extension-mdxjs": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-3.0.0.tgz", - "integrity": "sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==", - "dev": true, - "dependencies": { - "acorn": "^8.0.0", - "acorn-jsx": "^5.0.0", - "micromark-extension-mdx-expression": "^3.0.0", - "micromark-extension-mdx-jsx": "^3.0.0", - "micromark-extension-mdx-md": "^2.0.0", - "micromark-extension-mdxjs-esm": "^3.0.0", - "micromark-util-combine-extensions": "^2.0.0", - "micromark-util-types": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/micromark-extension-mdxjs-esm": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-3.0.0.tgz", - "integrity": "sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==", - "dev": true, - "dependencies": { - "@types/estree": "^1.0.0", - "devlop": "^1.0.0", - "micromark-core-commonmark": "^2.0.0", - "micromark-util-character": "^2.0.0", - "micromark-util-events-to-acorn": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0", - "unist-util-position-from-estree": "^2.0.0", - "vfile-message": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/micromark-factory-destination": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz", - "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-character": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" - } - }, - "node_modules/micromark-factory-label": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz", - "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "devlop": "^1.0.0", - "micromark-util-character": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" - } - }, - "node_modules/micromark-factory-mdx-expression": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-2.0.2.tgz", - "integrity": "sha512-5E5I2pFzJyg2CtemqAbcyCktpHXuJbABnsb32wX2U8IQKhhVFBqkcZR5LRm1WVoFqa4kTueZK4abep7wdo9nrw==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "@types/estree": "^1.0.0", - "devlop": "^1.0.0", - "micromark-factory-space": "^2.0.0", - "micromark-util-character": "^2.0.0", - "micromark-util-events-to-acorn": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0", - "unist-util-position-from-estree": "^2.0.0", - "vfile-message": "^4.0.0" - } - }, - "node_modules/micromark-factory-space": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", - "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-character": "^2.0.0", - "micromark-util-types": "^2.0.0" - } - }, - "node_modules/micromark-factory-title": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz", - "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-factory-space": "^2.0.0", - "micromark-util-character": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" - } - }, - "node_modules/micromark-factory-whitespace": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz", - "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-factory-space": "^2.0.0", - "micromark-util-character": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" - } - }, - "node_modules/micromark-util-character": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", - "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" - } - }, - "node_modules/micromark-util-chunked": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", - "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-symbol": "^2.0.0" - } - }, - "node_modules/micromark-util-classify-character": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz", - "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-character": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" - } - }, - "node_modules/micromark-util-combine-extensions": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz", - "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-chunked": "^2.0.0", - "micromark-util-types": "^2.0.0" - } - }, - "node_modules/micromark-util-decode-numeric-character-reference": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz", - "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-symbol": "^2.0.0" - } - }, - "node_modules/micromark-util-decode-string": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz", - "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "decode-named-character-reference": "^1.0.0", - "micromark-util-character": "^2.0.0", - "micromark-util-decode-numeric-character-reference": "^2.0.0", - "micromark-util-symbol": "^2.0.0" - } - }, - "node_modules/micromark-util-encode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", - "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ] - }, - "node_modules/micromark-util-events-to-acorn": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-2.0.2.tgz", - "integrity": "sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "@types/acorn": "^4.0.0", - "@types/estree": "^1.0.0", - "@types/unist": "^3.0.0", - "devlop": "^1.0.0", - "estree-util-visit": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0", - "vfile-message": "^4.0.0" - } - }, - "node_modules/micromark-util-html-tag-name": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz", - "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ] - }, - "node_modules/micromark-util-normalize-identifier": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz", - "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-symbol": "^2.0.0" - } - }, - "node_modules/micromark-util-resolve-all": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz", - "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-types": "^2.0.0" - } - }, - "node_modules/micromark-util-sanitize-uri": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", - "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-character": "^2.0.0", - "micromark-util-encode": "^2.0.0", - "micromark-util-symbol": "^2.0.0" - } - }, - "node_modules/micromark-util-subtokenize": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.0.3.tgz", - "integrity": "sha512-VXJJuNxYWSoYL6AJ6OQECCFGhIU2GGHMw8tahogePBrjkG8aCCas3ibkp7RnVOSTClg2is05/R7maAhF1XyQMg==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "devlop": "^1.0.0", - "micromark-util-chunked": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" + "map-or-similar": "^1.5.0" } }, - "node_modules/micromark-util-symbol": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", - "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "node_modules/memorystream": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", + "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ] + "engines": { + "node": ">= 0.10.0" + } }, - "node_modules/micromark-util-types": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.1.tgz", - "integrity": "sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==", + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ] + "engines": { + "node": ">= 8" + } }, "node_modules/micromatch": { "version": "4.0.8", @@ -13018,32 +12046,6 @@ "node": ">=6" } }, - "node_modules/parse-entities": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.1.tgz", - "integrity": "sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0", - "character-entities": "^2.0.0", - "character-entities-legacy": "^3.0.0", - "character-reference-invalid": "^2.0.0", - "decode-named-character-reference": "^1.0.0", - "is-alphanumerical": "^2.0.0", - "is-decimal": "^2.0.0", - "is-hexadecimal": "^2.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/parse-entities/node_modules/@types/unist": { - "version": "2.0.11", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", - "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==", - "dev": true - }, "node_modules/parse-json": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", @@ -13531,16 +12533,6 @@ "node": ">= 6" } }, - "node_modules/property-information": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.5.0.tgz", - "integrity": "sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/proxy-agent": { "version": "6.4.0", "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.4.0.tgz", @@ -13594,6 +12586,16 @@ "node": ">=6" } }, + "node_modules/punycode.js": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode.js/-/punycode.js-2.3.1.tgz", + "integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/puppeteer-core": { "version": "23.9.0", "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-23.9.0.tgz", @@ -13760,32 +12762,6 @@ "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", "dev": true }, - "node_modules/react-markdown": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/react-markdown/-/react-markdown-9.0.1.tgz", - "integrity": "sha512-186Gw/vF1uRkydbsOIkcGXw7aHq0sZOCRFFjGrr7b9+nVZg4UfA4enXCaxm4fUzecU38sWfrNDitGhshuU7rdg==", - "dev": true, - "dependencies": { - "@types/hast": "^3.0.0", - "devlop": "^1.0.0", - "hast-util-to-jsx-runtime": "^2.0.0", - "html-url-attributes": "^3.0.0", - "mdast-util-to-hast": "^13.0.0", - "remark-parse": "^11.0.0", - "remark-rehype": "^11.0.0", - "unified": "^11.0.0", - "unist-util-visit": "^5.0.0", - "vfile": "^6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - }, - "peerDependencies": { - "@types/react": ">=18", - "react": ">=18" - } - }, "node_modules/read-pkg": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", @@ -13945,84 +12921,6 @@ "node": ">=4" } }, - "node_modules/remark": { - "version": "15.0.1", - "resolved": "https://registry.npmjs.org/remark/-/remark-15.0.1.tgz", - "integrity": "sha512-Eht5w30ruCXgFmxVUSlNWQ9iiimq07URKeFS3hNc8cUWy1llX4KDWfyEDZRycMc+znsN9Ux5/tJ/BFdgdOwA3A==", - "dev": true, - "dependencies": { - "@types/mdast": "^4.0.0", - "remark-parse": "^11.0.0", - "remark-stringify": "^11.0.0", - "unified": "^11.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/remark-mdx": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-3.1.0.tgz", - "integrity": "sha512-Ngl/H3YXyBV9RcRNdlYsZujAmhsxwzxpDzpDEhFBVAGthS4GDgnctpDjgFl/ULx5UEDzqtW1cyBSNKqYYrqLBA==", - "dev": true, - "dependencies": { - "mdast-util-mdx": "^3.0.0", - "micromark-extension-mdxjs": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/remark-parse": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz", - "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==", - "dev": true, - "dependencies": { - "@types/mdast": "^4.0.0", - "mdast-util-from-markdown": "^2.0.0", - "micromark-util-types": "^2.0.0", - "unified": "^11.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/remark-rehype": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.1.tgz", - "integrity": "sha512-g/osARvjkBXb6Wo0XvAeXQohVta8i84ACbenPpoSsxTOQH/Ae0/RGP4WZgnMH5pMLpsj4FG7OHmcIcXxpza8eQ==", - "dev": true, - "dependencies": { - "@types/hast": "^3.0.0", - "@types/mdast": "^4.0.0", - "mdast-util-to-hast": "^13.0.0", - "unified": "^11.0.0", - "vfile": "^6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/remark-stringify": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz", - "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==", - "dev": true, - "dependencies": { - "@types/mdast": "^4.0.0", - "mdast-util-to-markdown": "^2.0.0", - "unified": "^11.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -14618,16 +13516,6 @@ "node": ">=0.10.0" } }, - "node_modules/space-separated-tokens": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", - "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/spawn-wrap": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/spawn-wrap/-/spawn-wrap-2.0.0.tgz", @@ -14898,20 +13786,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/stringify-entities": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", - "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", - "dev": true, - "dependencies": { - "character-entities-html4": "^2.0.0", - "character-entities-legacy": "^3.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", @@ -14966,15 +13840,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/style-to-object": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.8.tgz", - "integrity": "sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g==", - "dev": true, - "dependencies": { - "inline-style-parser": "0.2.4" - } - }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -15166,19 +14031,6 @@ "node": ">=8.0" } }, - "node_modules/to-vfile": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/to-vfile/-/to-vfile-8.0.0.tgz", - "integrity": "sha512-IcmH1xB5576MJc9qcfEC/m/nQCFt3fzMHz45sSlgJyTWjRbKW1HAkJpuf3DgE57YzIlZcwcBZA5ENQbBo4aLkg==", - "dev": true, - "dependencies": { - "vfile": "^6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, "node_modules/toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", @@ -15209,26 +14061,6 @@ "tree-kill": "cli.js" } }, - "node_modules/trim-lines": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", - "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/trough": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz", - "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/ts-api-utils": { "version": "1.4.3", "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.4.3.tgz", @@ -15489,6 +14321,29 @@ "is-typedarray": "^1.0.0" } }, + "node_modules/typedoc": { + "version": "0.27.4", + "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.27.4.tgz", + "integrity": "sha512-wXPQs1AYC2Crk+1XFpNuutLIkNWleokZf1UNf/X8w9KsMnirkvT+LzxTXDvfF6ug3TSLf3Xu5ZXRKGfoXPX7IA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@gerrit0/mini-shiki": "^1.24.0", + "lunr": "^2.3.9", + "markdown-it": "^14.1.0", + "minimatch": "^9.0.5", + "yaml": "^2.6.1" + }, + "bin": { + "typedoc": "bin/typedoc" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "typescript": "5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x" + } + }, "node_modules/typescript": { "version": "5.7.2", "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.2.tgz", @@ -15578,6 +14433,13 @@ "node": ">=12.17" } }, + "node_modules/uc.micro": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz", + "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==", + "dev": true, + "license": "MIT" + }, "node_modules/unbox-primitive": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", @@ -15633,106 +14495,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/unified": { - "version": "11.0.5", - "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz", - "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==", - "dev": true, - "dependencies": { - "@types/unist": "^3.0.0", - "bail": "^2.0.0", - "devlop": "^1.0.0", - "extend": "^3.0.0", - "is-plain-obj": "^4.0.0", - "trough": "^2.0.0", - "vfile": "^6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-is": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz", - "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==", - "dev": true, - "dependencies": { - "@types/unist": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-position": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", - "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", - "dev": true, - "dependencies": { - "@types/unist": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-position-from-estree": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-2.0.0.tgz", - "integrity": "sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==", - "dev": true, - "dependencies": { - "@types/unist": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-stringify-position": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", - "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", - "dev": true, - "dependencies": { - "@types/unist": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-visit": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz", - "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==", - "dev": true, - "dependencies": { - "@types/unist": "^3.0.0", - "unist-util-is": "^6.0.0", - "unist-util-visit-parents": "^6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-visit-parents": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz", - "integrity": "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==", - "dev": true, - "dependencies": { - "@types/unist": "^3.0.0", - "unist-util-is": "^6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, "node_modules/universalify": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", @@ -15881,34 +14643,6 @@ "node": ">= 0.8" } }, - "node_modules/vfile": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz", - "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", - "dev": true, - "dependencies": { - "@types/unist": "^3.0.0", - "vfile-message": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/vfile-message": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.2.tgz", - "integrity": "sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==", - "dev": true, - "dependencies": { - "@types/unist": "^3.0.0", - "unist-util-stringify-position": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, "node_modules/vite": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/vite/-/vite-6.0.2.tgz", @@ -16413,6 +15147,19 @@ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", "dev": true }, + "node_modules/yaml": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.6.1.tgz", + "integrity": "sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==", + "dev": true, + "license": "ISC", + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14" + } + }, "node_modules/yargs": { "version": "17.7.2", "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", @@ -16489,16 +15236,6 @@ "funding": { "url": "https://github.com/sponsors/colinhacks" } - }, - "node_modules/zwitch": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", - "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } } } } diff --git a/package.json b/package.json index 5b32671..20695a3 100644 --- a/package.json +++ b/package.json @@ -111,6 +111,7 @@ "storybook": "^8.4.4", "ts-lit-plugin": "^2.0.2", "ts-morph": "^24.0.0", + "typedoc": "^0.27.4", "typescript": "^5.7.2", "typescript-eslint": "^8.16.0", "vite": "^6.0.2" From 1bd5a4eb5089845f7becfcc0bcac55f4f5fab280 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Fri, 13 Dec 2024 14:30:14 +0000 Subject: [PATCH 31/82] testing failure --- src/components/fab/fab.ts | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/src/components/fab/fab.ts b/src/components/fab/fab.ts index c9dc83a..4fdeef1 100644 --- a/src/components/fab/fab.ts +++ b/src/components/fab/fab.ts @@ -55,18 +55,25 @@ export class ZetaFab extends Flavored(BaseButton) { @property({ type: String, reflect: true }) size: "small" | "large" = "small"; - private getLabel() { - return this.label ? html`
${this.label}
` : nothing; - } protected render() { return html` - ${this.extended ? nothing : this.getLabel()} `; } + // private getLabel() { + // return this.label ? html`
${this.label}
` : nothing; + // } + // protected render() { + // return html` + // + // ${this.extended ? nothing : this.getLabel()} + // `; + // } } declare global { From 4505385499a8d15ca67cc8c7c87e3b4e670a8e6e Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Fri, 13 Dec 2024 15:48:40 +0000 Subject: [PATCH 32/82] v0.0.4 --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 777b103..970bfd7 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -23,7 +23,7 @@ jobs: node-version: 18.x.x cache: "npm" - name: Code Quality - uses: ZebraDevs/web-components-code-quality@v0.0.3 + uses: ZebraDevs/web-components-code-quality@v0.0.4 with: token: ${{ secrets.GITHUB_TOKEN }} From ec92048dbc5abf1d7ac701aa1cb66a4f09b1f998 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Fri, 13 Dec 2024 15:53:47 +0000 Subject: [PATCH 33/82] v.5 --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 970bfd7..5f15281 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -23,7 +23,7 @@ jobs: node-version: 18.x.x cache: "npm" - name: Code Quality - uses: ZebraDevs/web-components-code-quality@v0.0.4 + uses: ZebraDevs/web-components-code-quality@v0.0.5 with: token: ${{ secrets.GITHUB_TOKEN }} From 701cfd7f392f4d36fd87e91808f7d63bf6a316df Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Fri, 13 Dec 2024 15:57:58 +0000 Subject: [PATCH 34/82] v6 --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 5f15281..75fd56b 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -23,7 +23,7 @@ jobs: node-version: 18.x.x cache: "npm" - name: Code Quality - uses: ZebraDevs/web-components-code-quality@v0.0.5 + uses: ZebraDevs/web-components-code-quality@v0.0.6 with: token: ${{ secrets.GITHUB_TOKEN }} From 691b08a2ffb9a6feae7cfd0b3ca7f1c676b35112 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Fri, 13 Dec 2024 16:01:29 +0000 Subject: [PATCH 35/82] 1.1.6 --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 75fd56b..4392057 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -23,7 +23,7 @@ jobs: node-version: 18.x.x cache: "npm" - name: Code Quality - uses: ZebraDevs/web-components-code-quality@v0.0.6 + uses: ZebraDevs/web-components-code-quality@v1.1.6 with: token: ${{ secrets.GITHUB_TOKEN }} From 58664d0391d9626b2667ca1413c1d7dc0f5a7bf8 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Fri, 13 Dec 2024 16:06:48 +0000 Subject: [PATCH 36/82] v.7 --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 4392057..1f42700 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -23,7 +23,7 @@ jobs: node-version: 18.x.x cache: "npm" - name: Code Quality - uses: ZebraDevs/web-components-code-quality@v1.1.6 + uses: ZebraDevs/web-components-code-quality@v1.1.7 with: token: ${{ secrets.GITHUB_TOKEN }} From 4f24338b0e78a97d94dd7bf5d01ea8ba2a4eba96 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Fri, 13 Dec 2024 16:45:30 +0000 Subject: [PATCH 37/82] v.8 --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 1f42700..28f68c4 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -23,7 +23,7 @@ jobs: node-version: 18.x.x cache: "npm" - name: Code Quality - uses: ZebraDevs/web-components-code-quality@v1.1.7 + uses: ZebraDevs/web-components-code-quality@v1.1.8 with: token: ${{ secrets.GITHUB_TOKEN }} From e5934228f37c10d3f88ab03bad5e9cc12029a436 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Fri, 13 Dec 2024 16:56:17 +0000 Subject: [PATCH 38/82] v.9 --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 28f68c4..566ce81 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -23,7 +23,7 @@ jobs: node-version: 18.x.x cache: "npm" - name: Code Quality - uses: ZebraDevs/web-components-code-quality@v1.1.8 + uses: ZebraDevs/web-components-code-quality@v1.1.9 with: token: ${{ secrets.GITHUB_TOKEN }} From fd61e763bf2d3568b2e1c56ac6d3d85a8ab5016c Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Fri, 13 Dec 2024 17:00:16 +0000 Subject: [PATCH 39/82] added eslint problem --- src/components/fab/fab.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/fab/fab.ts b/src/components/fab/fab.ts index 4fdeef1..bcdb60a 100644 --- a/src/components/fab/fab.ts +++ b/src/components/fab/fab.ts @@ -1,5 +1,5 @@ import { html, nothing } from "lit"; -import { customElement, property } from "lit/decorators.js"; +import { customElement, property, eventOptions } from "lit/decorators.js"; import styles from "./fab.styles.js"; import "../icon/icon.js"; import { ifDefined } from "lit/directives/if-defined.js"; From 330aad6a6431c8959acd170bc18b7855ebbde676 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 18 Dec 2024 13:48:42 +0000 Subject: [PATCH 40/82] breaking lit-analyzer --- src/components/fab/fab.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/fab/fab.ts b/src/components/fab/fab.ts index bcdb60a..952fafc 100644 --- a/src/components/fab/fab.ts +++ b/src/components/fab/fab.ts @@ -59,7 +59,7 @@ export class ZetaFab extends Flavored(BaseButton) { return html` + Date: Wed, 18 Dec 2024 13:57:58 +0000 Subject: [PATCH 41/82] lit no missing import --- src/components/fab/fab.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/fab/fab.ts b/src/components/fab/fab.ts index 952fafc..5b04f23 100644 --- a/src/components/fab/fab.ts +++ b/src/components/fab/fab.ts @@ -1,7 +1,7 @@ import { html, nothing } from "lit"; import { customElement, property, eventOptions } from "lit/decorators.js"; import styles from "./fab.styles.js"; -import "../icon/icon.js"; +// import "../icon/icon.js"; import { ifDefined } from "lit/directives/if-defined.js"; import { Flavored, type Flavor } from "../../mixins/flavor.js"; import { BaseButton } from "../button/base-button.js"; From c909fce6f5f2a26c07a2b3fe7578f3e65a27237e Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 18 Dec 2024 14:02:10 +0000 Subject: [PATCH 42/82] turn off --quiet on lit-analyzer --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 20695a3..f9b94fe 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ "gen:react-stories": "node ./scripts/react-stories.js", "pregen:react": "npm run analyze", "gen:react": "node scripts/make-react.js", - "lint:lit-analyzer": "lit-analyzer --quiet", + "lint:lit-analyzer": "lit-analyzer", "lint": "eslint -f unix \"src/**/*.{ts,tsx}\"", "localize:build": "lit-localize build", "localize:extract": "lit-localize extract", From d33a2b0e2260d7341b4e467b3ba20bc134b07623 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 18 Dec 2024 14:24:19 +0000 Subject: [PATCH 43/82] v1.2.0 --- .github/workflows/pull-request.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 566ce81..be1eb3c 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -23,7 +23,7 @@ jobs: node-version: 18.x.x cache: "npm" - name: Code Quality - uses: ZebraDevs/web-components-code-quality@v1.1.9 + uses: ZebraDevs/web-components-code-quality@v1.2.0 with: token: ${{ secrets.GITHUB_TOKEN }} diff --git a/package.json b/package.json index f9b94fe..20695a3 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ "gen:react-stories": "node ./scripts/react-stories.js", "pregen:react": "npm run analyze", "gen:react": "node scripts/make-react.js", - "lint:lit-analyzer": "lit-analyzer", + "lint:lit-analyzer": "lit-analyzer --quiet", "lint": "eslint -f unix \"src/**/*.{ts,tsx}\"", "localize:build": "lit-localize build", "localize:extract": "lit-localize extract", From d723b9d55993df760ccf16ac4aeaf3ed0a9a6d64 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 18 Dec 2024 14:32:32 +0000 Subject: [PATCH 44/82] add back import --- src/components/fab/fab.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/fab/fab.ts b/src/components/fab/fab.ts index 5b04f23..952fafc 100644 --- a/src/components/fab/fab.ts +++ b/src/components/fab/fab.ts @@ -1,7 +1,7 @@ import { html, nothing } from "lit"; import { customElement, property, eventOptions } from "lit/decorators.js"; import styles from "./fab.styles.js"; -// import "../icon/icon.js"; +import "../icon/icon.js"; import { ifDefined } from "lit/directives/if-defined.js"; import { Flavored, type Flavor } from "../../mixins/flavor.js"; import { BaseButton } from "../button/base-button.js"; From d9b3f2dc79b51629797337636be7b94b62109e39 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 18 Dec 2024 14:45:04 +0000 Subject: [PATCH 45/82] v1.2.1 --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index be1eb3c..1125d15 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -23,7 +23,7 @@ jobs: node-version: 18.x.x cache: "npm" - name: Code Quality - uses: ZebraDevs/web-components-code-quality@v1.2.0 + uses: ZebraDevs/web-components-code-quality@v1.2.1 with: token: ${{ secrets.GITHUB_TOKEN }} From d340cfd3e093ace92c4348fd2630c7ecda550e3a Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 18 Dec 2024 14:57:17 +0000 Subject: [PATCH 46/82] .2.2 --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 1125d15..03a011f 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -23,7 +23,7 @@ jobs: node-version: 18.x.x cache: "npm" - name: Code Quality - uses: ZebraDevs/web-components-code-quality@v1.2.1 + uses: ZebraDevs/web-components-code-quality@v1.2.2 with: token: ${{ secrets.GITHUB_TOKEN }} From a4bd1d941d423f54af87dab055281c888d534398 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 18 Dec 2024 15:08:00 +0000 Subject: [PATCH 47/82] .2.4 --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 03a011f..3bca89c 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -23,7 +23,7 @@ jobs: node-version: 18.x.x cache: "npm" - name: Code Quality - uses: ZebraDevs/web-components-code-quality@v1.2.2 + uses: ZebraDevs/web-components-code-quality@v1.2.4 with: token: ${{ secrets.GITHUB_TOKEN }} From 01dcb5f59dcbc9bb41acae01e1a9b2bb42f64a8f Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Thu, 19 Dec 2024 11:39:23 +0000 Subject: [PATCH 48/82] .2.5 --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 3bca89c..f43c8d7 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -23,7 +23,7 @@ jobs: node-version: 18.x.x cache: "npm" - name: Code Quality - uses: ZebraDevs/web-components-code-quality@v1.2.4 + uses: ZebraDevs/web-components-code-quality@v1.2.5 with: token: ${{ secrets.GITHUB_TOKEN }} From 7426e06b7cb9838113f5645a920f36f41e8b1f37 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Thu, 19 Dec 2024 12:01:36 +0000 Subject: [PATCH 49/82] .2.6 --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index f43c8d7..5573b14 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -23,7 +23,7 @@ jobs: node-version: 18.x.x cache: "npm" - name: Code Quality - uses: ZebraDevs/web-components-code-quality@v1.2.5 + uses: ZebraDevs/web-components-code-quality@v1.2.6 with: token: ${{ secrets.GITHUB_TOKEN }} From 6337e47adb6b75138879f7494a2f0bf37035414d Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Thu, 19 Dec 2024 12:15:35 +0000 Subject: [PATCH 50/82] .2.7 --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 5573b14..1feb496 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -23,7 +23,7 @@ jobs: node-version: 18.x.x cache: "npm" - name: Code Quality - uses: ZebraDevs/web-components-code-quality@v1.2.6 + uses: ZebraDevs/web-components-code-quality@v1.2.7 with: token: ${{ secrets.GITHUB_TOKEN }} From 653624c657c5db0c22aeff8b4a449a4c50770cd0 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Thu, 19 Dec 2024 16:16:33 +0000 Subject: [PATCH 51/82] .2.8 --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 1feb496..4acffd0 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -23,7 +23,7 @@ jobs: node-version: 18.x.x cache: "npm" - name: Code Quality - uses: ZebraDevs/web-components-code-quality@v1.2.7 + uses: ZebraDevs/web-components-code-quality@v1.2.8 with: token: ${{ secrets.GITHUB_TOKEN }} From 53b64636458029791cc0c69770e998d55242a5b0 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Fri, 20 Dec 2024 11:52:03 +0000 Subject: [PATCH 52/82] v.2.9 --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 4acffd0..99392bb 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -23,7 +23,7 @@ jobs: node-version: 18.x.x cache: "npm" - name: Code Quality - uses: ZebraDevs/web-components-code-quality@v1.2.8 + uses: ZebraDevs/web-components-code-quality@v1.2.9 with: token: ${{ secrets.GITHUB_TOKEN }} From 0502b7a3d0fb92f4df1a3e91b89611b4eeb6ee14 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Fri, 20 Dec 2024 12:09:11 +0000 Subject: [PATCH 53/82] v.3.0 --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 99392bb..5b7f4de 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -23,7 +23,7 @@ jobs: node-version: 18.x.x cache: "npm" - name: Code Quality - uses: ZebraDevs/web-components-code-quality@v1.2.9 + uses: ZebraDevs/web-components-code-quality@v1.3.0 with: token: ${{ secrets.GITHUB_TOKEN }} From e42ae2ec169be3dd6d68b232d69b2709d02e72c0 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Fri, 20 Dec 2024 12:20:13 +0000 Subject: [PATCH 54/82] reset fab --- src/components/fab/fab.ts | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/src/components/fab/fab.ts b/src/components/fab/fab.ts index 952fafc..c9dc83a 100644 --- a/src/components/fab/fab.ts +++ b/src/components/fab/fab.ts @@ -1,5 +1,5 @@ import { html, nothing } from "lit"; -import { customElement, property, eventOptions } from "lit/decorators.js"; +import { customElement, property } from "lit/decorators.js"; import styles from "./fab.styles.js"; import "../icon/icon.js"; import { ifDefined } from "lit/directives/if-defined.js"; @@ -55,25 +55,18 @@ export class ZetaFab extends Flavored(BaseButton) { @property({ type: String, reflect: true }) size: "small" | "large" = "small"; + private getLabel() { + return this.label ? html`
${this.label}
` : nothing; + } protected render() { return html` + ${this.extended ? nothing : this.getLabel()} `; } - // private getLabel() { - // return this.label ? html`
${this.label}
` : nothing; - // } - // protected render() { - // return html` - // - // ${this.extended ? nothing : this.getLabel()} - // `; - // } } declare global { From 26d14aaeb6e9ca83a402c7daf34e9fc05aefb5b8 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Fri, 20 Dec 2024 12:20:54 +0000 Subject: [PATCH 55/82] removed change --- .github/workflows/codeql.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index dc4e4d0..7b5379d 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -31,7 +31,6 @@ jobs: with: languages: ${{ matrix.language }} - name: Perform CodeQL Analysis - id: perform-codeql-analysis uses: github/codeql-action/analyze@v2 with: category: "/language:${{matrix.language}}" From 0384d3eb9de00a3377bad2f8157fa04acbed33cc Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Fri, 20 Dec 2024 12:43:07 +0000 Subject: [PATCH 56/82] action-setup --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 5b7f4de..64fc33e 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -23,7 +23,7 @@ jobs: node-version: 18.x.x cache: "npm" - name: Code Quality - uses: ZebraDevs/web-components-code-quality@v1.3.0 + uses: ZebraDevs/web-components-code-quality@action-setup with: token: ${{ secrets.GITHUB_TOKEN }} From 944ab7695cdd9f16242d92f159619d8998c41cc7 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Fri, 20 Dec 2024 12:52:33 +0000 Subject: [PATCH 57/82] check modified files command --- src/components/fab/fab.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/fab/fab.ts b/src/components/fab/fab.ts index c9dc83a..0068a5e 100644 --- a/src/components/fab/fab.ts +++ b/src/components/fab/fab.ts @@ -19,7 +19,7 @@ export type FabFlavor = Exclude${this.label}` : nothing; From 3b322810e565d2346e965e85af508f0cd4c70c31 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 20 Dec 2024 13:23:20 +0000 Subject: [PATCH 58/82] [automated commit] lint format and import sort --- src/components/dialog/dialog.styles.js | 2 +- src/components/dialog/dialog.ts | 2 +- src/components/fab/fab.ts | 12 ++++++------ .../navigation-rail/navigation-rail-item.styles.js | 4 +--- .../navigation-rail/navigation-rail.styles.js | 2 -- src/index.ts | 2 +- 6 files changed, 10 insertions(+), 14 deletions(-) diff --git a/src/components/dialog/dialog.styles.js b/src/components/dialog/dialog.styles.js index c55e08c..bc07e0d 100644 --- a/src/components/dialog/dialog.styles.js +++ b/src/components/dialog/dialog.styles.js @@ -114,4 +114,4 @@ export default css` zeta-icon { --icon-size: 32px; } -`; \ No newline at end of file +`; diff --git a/src/components/dialog/dialog.ts b/src/components/dialog/dialog.ts index a941a96..642b74f 100644 --- a/src/components/dialog/dialog.ts +++ b/src/components/dialog/dialog.ts @@ -136,4 +136,4 @@ declare global { interface HTMLElementTagNameMap { "zeta-dialog": ZetaDialog; } -} \ No newline at end of file +} diff --git a/src/components/fab/fab.ts b/src/components/fab/fab.ts index 0068a5e..c9dc83a 100644 --- a/src/components/fab/fab.ts +++ b/src/components/fab/fab.ts @@ -19,7 +19,7 @@ export type FabFlavor = Exclude${this.label}` : nothing; diff --git a/src/components/navigation-rail/navigation-rail-item.styles.js b/src/components/navigation-rail/navigation-rail-item.styles.js index 3c75493..78d905e 100644 --- a/src/components/navigation-rail/navigation-rail-item.styles.js +++ b/src/components/navigation-rail/navigation-rail-item.styles.js @@ -5,7 +5,7 @@ export default css` display: flex; max-width: 64px; } - slot{ + slot { font: var(--label-small); } @@ -14,8 +14,6 @@ export default css` background-color: var(--surface-selected); } - - :host > * { display: flex; overflow-x: hidden; diff --git a/src/components/navigation-rail/navigation-rail.styles.js b/src/components/navigation-rail/navigation-rail.styles.js index 8b6a40a..b8cee67 100644 --- a/src/components/navigation-rail/navigation-rail.styles.js +++ b/src/components/navigation-rail/navigation-rail.styles.js @@ -11,6 +11,4 @@ export default css` ::slotted(:not(zeta-navigation-rail-item)) { display: none; } - - `; diff --git a/src/index.ts b/src/index.ts index b67cbaf..ab6ae81 100644 --- a/src/index.ts +++ b/src/index.ts @@ -140,4 +140,4 @@ export { ZetaTopAppbar, ZetaUploadItem, ZetaWorkcloudIndicator -}; \ No newline at end of file +}; From 4b68f5d9a80f09fdcbf4fda168dccc8f7cec19d4 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 20 Dec 2024 13:23:56 +0000 Subject: [PATCH 59/82] Generated locales --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index ab6ae81..b67cbaf 100644 --- a/src/index.ts +++ b/src/index.ts @@ -140,4 +140,4 @@ export { ZetaTopAppbar, ZetaUploadItem, ZetaWorkcloudIndicator -}; +}; \ No newline at end of file From 36aa895f76071ddd8376e4c3c57af4b260cfe6b9 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 20 Dec 2024 13:27:10 +0000 Subject: [PATCH 60/82] [automated commit] lint format and import sort --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index b67cbaf..ab6ae81 100644 --- a/src/index.ts +++ b/src/index.ts @@ -140,4 +140,4 @@ export { ZetaTopAppbar, ZetaUploadItem, ZetaWorkcloudIndicator -}; \ No newline at end of file +}; From 9232c20bbf2d9674b9bc489e7ab3bed98d5cdee2 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 20 Dec 2024 13:27:47 +0000 Subject: [PATCH 61/82] Generated locales --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index ab6ae81..b67cbaf 100644 --- a/src/index.ts +++ b/src/index.ts @@ -140,4 +140,4 @@ export { ZetaTopAppbar, ZetaUploadItem, ZetaWorkcloudIndicator -}; +}; \ No newline at end of file From 4b407c0eccb92e45be10633fe6abbd2b34fd9473 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 20 Dec 2024 13:31:47 +0000 Subject: [PATCH 62/82] [automated commit] lint format and import sort --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index b67cbaf..ab6ae81 100644 --- a/src/index.ts +++ b/src/index.ts @@ -140,4 +140,4 @@ export { ZetaTopAppbar, ZetaUploadItem, ZetaWorkcloudIndicator -}; \ No newline at end of file +}; From 2049d29a7279d77768115d2cd5a76797a9a7a3fc Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 20 Dec 2024 13:32:27 +0000 Subject: [PATCH 63/82] Generated locales --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index ab6ae81..b67cbaf 100644 --- a/src/index.ts +++ b/src/index.ts @@ -140,4 +140,4 @@ export { ZetaTopAppbar, ZetaUploadItem, ZetaWorkcloudIndicator -}; +}; \ No newline at end of file From dea0213a150e41524a4da5291732877d1a052a1a Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Fri, 20 Dec 2024 13:34:46 +0000 Subject: [PATCH 64/82] run code formatting = false --- .github/workflows/pull-request.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 64fc33e..fdfd862 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -26,6 +26,7 @@ jobs: uses: ZebraDevs/web-components-code-quality@action-setup with: token: ${{ secrets.GITHUB_TOKEN }} + run-code-formatting: false generate-localizations: name: Generate localizations. From 4cbce66173f95a91845ac6b0d4a72894e7c126cf Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Fri, 20 Dec 2024 14:47:01 +0000 Subject: [PATCH 65/82] remove format option --- .github/workflows/pull-request.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index fdfd862..64fc33e 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -26,7 +26,6 @@ jobs: uses: ZebraDevs/web-components-code-quality@action-setup with: token: ${{ secrets.GITHUB_TOKEN }} - run-code-formatting: false generate-localizations: name: Generate localizations. From 6fd062f80414db9dd5a6516204da4a658e9d3fe4 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 20 Dec 2024 14:48:58 +0000 Subject: [PATCH 66/82] [automated commit] lint format and import sort --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index b67cbaf..ab6ae81 100644 --- a/src/index.ts +++ b/src/index.ts @@ -140,4 +140,4 @@ export { ZetaTopAppbar, ZetaUploadItem, ZetaWorkcloudIndicator -}; \ No newline at end of file +}; From f2e38b4fe59a5f2777bd38f2763af13de50dc1dd Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 20 Dec 2024 14:49:37 +0000 Subject: [PATCH 67/82] Generated locales --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index ab6ae81..b67cbaf 100644 --- a/src/index.ts +++ b/src/index.ts @@ -140,4 +140,4 @@ export { ZetaTopAppbar, ZetaUploadItem, ZetaWorkcloudIndicator -}; +}; \ No newline at end of file From 77dc655ba1e1f3ee0b218cf6278c49b600600682 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 23 Dec 2024 11:08:45 +0000 Subject: [PATCH 68/82] [automated commit] lint format and import sort --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index b67cbaf..ab6ae81 100644 --- a/src/index.ts +++ b/src/index.ts @@ -140,4 +140,4 @@ export { ZetaTopAppbar, ZetaUploadItem, ZetaWorkcloudIndicator -}; \ No newline at end of file +}; From 6c5cfc88aecb72894d8f0c5b26a68d9eb497165c Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Mon, 23 Dec 2024 11:16:04 +0000 Subject: [PATCH 69/82] added @web/dev-server-esbuild broke fab --- package-lock.json | 59 +++++++++++++++++++++++++++++++++++++++ package.json | 1 + src/components/fab/fab.ts | 20 +++++++++---- 3 files changed, 75 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index c37f252..0d8b1ab 100644 --- a/package-lock.json +++ b/package-lock.json @@ -40,6 +40,7 @@ "@typescript-eslint/eslint-plugin": "^8.17.0", "@typescript-eslint/parser": "^8.17.0", "@web/dev-server": "^0.4.6", + "@web/dev-server-esbuild": "^1.0.3", "@web/test-runner": "^0.19.0", "@web/test-runner-commands": "^0.9.0", "@web/test-runner-playwright": "^0.11.0", @@ -2039,6 +2040,13 @@ "@lit-labs/ssr-dom-shim": "^1.2.0" } }, + "node_modules/@mdn/browser-compat-data": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-4.2.1.tgz", + "integrity": "sha512-EWUguj2kd7ldmrF9F+vI5hUOralPd+sdsUnYbRy33vZTuZkduC1shE9TtEMEjAQwyfyMb4ole5KtjF8MsnQOlA==", + "dev": true, + "license": "CC0-1.0" + }, "node_modules/@mdx-js/react": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/@mdx-js/react/-/react-3.1.0.tgz", @@ -4541,6 +4549,30 @@ "url": "https://paulmillr.com/funding/" } }, + "node_modules/@web/dev-server-esbuild": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@web/dev-server-esbuild/-/dev-server-esbuild-1.0.3.tgz", + "integrity": "sha512-oImN4/cpyfQC8+JcCx61M7WIo09zE2aDMFuwh+brqxuNXIBRQ+hnRGQK7fEIZSQeWWT5dFrWmH4oYZfqzCAlfQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@mdn/browser-compat-data": "^4.0.0", + "@web/dev-server-core": "^0.7.4", + "esbuild": "^0.24.0", + "parse5": "^6.0.1", + "ua-parser-js": "^1.0.33" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@web/dev-server-esbuild/node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true, + "license": "MIT" + }, "node_modules/@web/dev-server-rollup": { "version": "0.6.4", "resolved": "https://registry.npmjs.org/@web/dev-server-rollup/-/dev-server-rollup-0.6.4.tgz", @@ -14433,6 +14465,33 @@ "node": ">=12.17" } }, + "node_modules/ua-parser-js": { + "version": "1.0.40", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.40.tgz", + "integrity": "sha512-z6PJ8Lml+v3ichVojCiB8toQJBuwR42ySM4ezjXIqXK3M0HczmKQ3LF4rhU55PfD99KEEXQG6yb7iOMyvYuHew==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/ua-parser-js" + }, + { + "type": "paypal", + "url": "https://paypal.me/faisalman" + }, + { + "type": "github", + "url": "https://github.com/sponsors/faisalman" + } + ], + "license": "MIT", + "bin": { + "ua-parser-js": "script/cli.js" + }, + "engines": { + "node": "*" + } + }, "node_modules/uc.micro": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz", diff --git a/package.json b/package.json index 20695a3..8e74975 100644 --- a/package.json +++ b/package.json @@ -86,6 +86,7 @@ "@typescript-eslint/eslint-plugin": "^8.17.0", "@typescript-eslint/parser": "^8.17.0", "@web/dev-server": "^0.4.6", + "@web/dev-server-esbuild": "^1.0.3", "@web/test-runner": "^0.19.0", "@web/test-runner-commands": "^0.9.0", "@web/test-runner-playwright": "^0.11.0", diff --git a/src/components/fab/fab.ts b/src/components/fab/fab.ts index c9dc83a..2beb806 100644 --- a/src/components/fab/fab.ts +++ b/src/components/fab/fab.ts @@ -55,18 +55,28 @@ export class ZetaFab extends Flavored(BaseButton) { @property({ type: String, reflect: true }) size: "small" | "large" = "small"; - private getLabel() { - return this.label ? html`
${this.label}
` : nothing; - } + // TESTING protected render() { return html` - ${this.extended ? nothing : this.getLabel()} `; } + // TESTING + + // private getLabel() { + // return this.label ? html`
${this.label}
` : nothing; + // } + // protected render() { + // return html` + // + // ${this.extended ? nothing : this.getLabel()} + // `; + // } } declare global { From db5d74a0f67baa6204e1ab0a519ba545b1b60374 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Mon, 23 Dec 2024 11:21:50 +0000 Subject: [PATCH 70/82] configured web test runner --- web-test-runner.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web-test-runner.config.js b/web-test-runner.config.js index 81f008d..237a1a7 100644 --- a/web-test-runner.config.js +++ b/web-test-runner.config.js @@ -1,5 +1,6 @@ import { vitePlugin } from "@remcovaes/web-test-runner-vite-plugin"; import { playwrightLauncher } from "@web/test-runner-playwright"; +import { esbuildPlugin } from "@web/dev-server-esbuild"; const LOG_FILTER = ["Lit is in dev mode", "[vite] connecting..."]; @@ -18,7 +19,7 @@ export default { }, files: ["src/test/**/*.js", "src/test/**/*.ts", "src/index.js"], nodeResolve: true, - plugins: [vitePlugin()], + plugins: [vitePlugin(), esbuildPlugin({ ts: true, target: "auto" })], browsers: [getBrowser("chromium")], filterBrowserLogs: ({ args }) => { return !args.some((log) => { From 1e8cc9a434b8f64636c3b1632fcb1dbba9eb0df8 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Mon, 23 Dec 2024 11:58:37 +0000 Subject: [PATCH 71/82] revert web-test-runner config --- package-lock.json | 59 --------------------------------------- package.json | 1 - src/index.ts | 2 +- web-test-runner.config.js | 3 +- 4 files changed, 2 insertions(+), 63 deletions(-) diff --git a/package-lock.json b/package-lock.json index 0d8b1ab..c37f252 100644 --- a/package-lock.json +++ b/package-lock.json @@ -40,7 +40,6 @@ "@typescript-eslint/eslint-plugin": "^8.17.0", "@typescript-eslint/parser": "^8.17.0", "@web/dev-server": "^0.4.6", - "@web/dev-server-esbuild": "^1.0.3", "@web/test-runner": "^0.19.0", "@web/test-runner-commands": "^0.9.0", "@web/test-runner-playwright": "^0.11.0", @@ -2040,13 +2039,6 @@ "@lit-labs/ssr-dom-shim": "^1.2.0" } }, - "node_modules/@mdn/browser-compat-data": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-4.2.1.tgz", - "integrity": "sha512-EWUguj2kd7ldmrF9F+vI5hUOralPd+sdsUnYbRy33vZTuZkduC1shE9TtEMEjAQwyfyMb4ole5KtjF8MsnQOlA==", - "dev": true, - "license": "CC0-1.0" - }, "node_modules/@mdx-js/react": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/@mdx-js/react/-/react-3.1.0.tgz", @@ -4549,30 +4541,6 @@ "url": "https://paulmillr.com/funding/" } }, - "node_modules/@web/dev-server-esbuild": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@web/dev-server-esbuild/-/dev-server-esbuild-1.0.3.tgz", - "integrity": "sha512-oImN4/cpyfQC8+JcCx61M7WIo09zE2aDMFuwh+brqxuNXIBRQ+hnRGQK7fEIZSQeWWT5dFrWmH4oYZfqzCAlfQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@mdn/browser-compat-data": "^4.0.0", - "@web/dev-server-core": "^0.7.4", - "esbuild": "^0.24.0", - "parse5": "^6.0.1", - "ua-parser-js": "^1.0.33" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@web/dev-server-esbuild/node_modules/parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", - "dev": true, - "license": "MIT" - }, "node_modules/@web/dev-server-rollup": { "version": "0.6.4", "resolved": "https://registry.npmjs.org/@web/dev-server-rollup/-/dev-server-rollup-0.6.4.tgz", @@ -14465,33 +14433,6 @@ "node": ">=12.17" } }, - "node_modules/ua-parser-js": { - "version": "1.0.40", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.40.tgz", - "integrity": "sha512-z6PJ8Lml+v3ichVojCiB8toQJBuwR42ySM4ezjXIqXK3M0HczmKQ3LF4rhU55PfD99KEEXQG6yb7iOMyvYuHew==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/ua-parser-js" - }, - { - "type": "paypal", - "url": "https://paypal.me/faisalman" - }, - { - "type": "github", - "url": "https://github.com/sponsors/faisalman" - } - ], - "license": "MIT", - "bin": { - "ua-parser-js": "script/cli.js" - }, - "engines": { - "node": "*" - } - }, "node_modules/uc.micro": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz", diff --git a/package.json b/package.json index 8e74975..20695a3 100644 --- a/package.json +++ b/package.json @@ -86,7 +86,6 @@ "@typescript-eslint/eslint-plugin": "^8.17.0", "@typescript-eslint/parser": "^8.17.0", "@web/dev-server": "^0.4.6", - "@web/dev-server-esbuild": "^1.0.3", "@web/test-runner": "^0.19.0", "@web/test-runner-commands": "^0.9.0", "@web/test-runner-playwright": "^0.11.0", diff --git a/src/index.ts b/src/index.ts index ab6ae81..b67cbaf 100644 --- a/src/index.ts +++ b/src/index.ts @@ -140,4 +140,4 @@ export { ZetaTopAppbar, ZetaUploadItem, ZetaWorkcloudIndicator -}; +}; \ No newline at end of file diff --git a/web-test-runner.config.js b/web-test-runner.config.js index 237a1a7..81f008d 100644 --- a/web-test-runner.config.js +++ b/web-test-runner.config.js @@ -1,6 +1,5 @@ import { vitePlugin } from "@remcovaes/web-test-runner-vite-plugin"; import { playwrightLauncher } from "@web/test-runner-playwright"; -import { esbuildPlugin } from "@web/dev-server-esbuild"; const LOG_FILTER = ["Lit is in dev mode", "[vite] connecting..."]; @@ -19,7 +18,7 @@ export default { }, files: ["src/test/**/*.js", "src/test/**/*.ts", "src/index.js"], nodeResolve: true, - plugins: [vitePlugin(), esbuildPlugin({ ts: true, target: "auto" })], + plugins: [vitePlugin()], browsers: [getBrowser("chromium")], filterBrowserLogs: ({ args }) => { return !args.some((log) => { From 9601201003637f6f84bb286f1a5d0f12d8c78e5f Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 23 Dec 2024 12:01:11 +0000 Subject: [PATCH 72/82] [automated commit] lint format and import sort --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index b67cbaf..ab6ae81 100644 --- a/src/index.ts +++ b/src/index.ts @@ -140,4 +140,4 @@ export { ZetaTopAppbar, ZetaUploadItem, ZetaWorkcloudIndicator -}; \ No newline at end of file +}; From e42b8c7770e668fa1c5c35df1f03d15e250da04b Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Mon, 23 Dec 2024 13:19:22 +0000 Subject: [PATCH 73/82] configure web test runner with junit reporter --- .github/workflows/pull-request.yml | 1 + package-lock.json | 449 ++++++----------------------- package.json | 1 + web-test-runner.config.js | 9 + 4 files changed, 98 insertions(+), 362 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 64fc33e..ce4e983 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -26,6 +26,7 @@ jobs: uses: ZebraDevs/web-components-code-quality@action-setup with: token: ${{ secrets.GITHUB_TOKEN }} + test-results-path: "src/test/test-results.xml" generate-localizations: name: Generate localizations. diff --git a/package-lock.json b/package-lock.json index c37f252..d8145c5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11,6 +11,7 @@ "dependencies": { "@fontsource/ibm-plex-sans": "^5.0.21", "@lit/localize": "^0.12.2", + "@web/test-runner-junit-reporter": "^0.7.2", "@zebra-fed/zeta-icons": "^0.9.0", "lit": "^3.2.1" }, @@ -129,7 +130,6 @@ "version": "7.26.2", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", - "dev": true, "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", @@ -262,7 +262,6 @@ "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", - "dev": true, "engines": { "node": ">=6.9.0" } @@ -1360,8 +1359,7 @@ "node_modules/@hapi/bourne": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/@hapi/bourne/-/bourne-3.0.0.tgz", - "integrity": "sha512-Waj1cwPXJDucOib4a3bAISsKJVb15MKi9IvmTI/7ssVEm6sywXGjVJDhl6/umt1pK1ZS7PacXU3A1PmFKHEZ2w==", - "dev": true + "integrity": "sha512-Waj1cwPXJDucOib4a3bAISsKJVb15MKi9IvmTI/7ssVEm6sywXGjVJDhl6/umt1pK1ZS7PacXU3A1PmFKHEZ2w==" }, "node_modules/@hapi/hoek": { "version": "9.3.0", @@ -1947,7 +1945,6 @@ "version": "3.1.2", "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", - "dev": true, "engines": { "node": ">=6.0.0" } @@ -1964,14 +1961,12 @@ "node_modules/@jridgewell/sourcemap-codec": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", - "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", - "dev": true + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==" }, "node_modules/@jridgewell/trace-mapping": { "version": "0.3.25", "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", - "dev": true, "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" @@ -2100,7 +2095,6 @@ "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" @@ -2113,7 +2107,6 @@ "version": "2.0.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, "engines": { "node": ">= 8" } @@ -2122,7 +2115,6 @@ "version": "1.2.8", "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" @@ -2204,7 +2196,6 @@ "version": "2.4.1", "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-2.4.1.tgz", "integrity": "sha512-0kdAbmic3J09I6dT8e9vE2JOCSt13wHCW5x/ly8TSt2bDtuIWe2TgLZZDHdcziw9AVCzflMAXCrVyRIhIs44Ng==", - "dev": true, "dependencies": { "debug": "^4.3.7", "extract-zip": "^2.0.1", @@ -2226,7 +2217,6 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "dev": true, "bin": { "semver": "bin/semver.js" }, @@ -3561,8 +3551,7 @@ "node_modules/@tootallnate/quickjs-emscripten": { "version": "0.23.0", "resolved": "https://registry.npmjs.org/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz", - "integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==", - "dev": true + "integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==" }, "node_modules/@ts-morph/common": { "version": "0.25.0", @@ -3607,7 +3596,6 @@ "version": "1.3.7", "resolved": "https://registry.npmjs.org/@types/accepts/-/accepts-1.3.7.tgz", "integrity": "sha512-Pay9fq2lM2wXPWbteBsRAGiWH2hig4ZE2asK+mm7kUzlxRTfL961rj89I6zV/E3PcIkDqyuBEcMxFT7rccugeQ==", - "dev": true, "dependencies": { "@types/node": "*" } @@ -3621,8 +3609,7 @@ "node_modules/@types/babel__code-frame": { "version": "7.0.6", "resolved": "https://registry.npmjs.org/@types/babel__code-frame/-/babel__code-frame-7.0.6.tgz", - "integrity": "sha512-Anitqkl3+KrzcW2k77lRlg/GfLZLWXBuNgbEcIOU6M92yw42vsd3xV/Z/yAHEj8m+KUjL6bWOVOFqX8PFPJ4LA==", - "dev": true + "integrity": "sha512-Anitqkl3+KrzcW2k77lRlg/GfLZLWXBuNgbEcIOU6M92yw42vsd3xV/Z/yAHEj8m+KUjL6bWOVOFqX8PFPJ4LA==" }, "node_modules/@types/babel__core": { "version": "7.20.5", @@ -3669,7 +3656,6 @@ "version": "1.19.5", "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", - "dev": true, "dependencies": { "@types/connect": "*", "@types/node": "*" @@ -3694,7 +3680,6 @@ "version": "6.1.3", "resolved": "https://registry.npmjs.org/@types/co-body/-/co-body-6.1.3.tgz", "integrity": "sha512-UhuhrQ5hclX6UJctv5m4Rfp52AfG9o9+d9/HwjxhVB5NjXxr5t9oKgJxN8xRHgr35oo8meUEHUPFWiKg6y71aA==", - "dev": true, "dependencies": { "@types/node": "*", "@types/qs": "*" @@ -3710,7 +3695,6 @@ "version": "3.4.38", "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", - "dev": true, "dependencies": { "@types/node": "*" } @@ -3718,20 +3702,17 @@ "node_modules/@types/content-disposition": { "version": "0.5.8", "resolved": "https://registry.npmjs.org/@types/content-disposition/-/content-disposition-0.5.8.tgz", - "integrity": "sha512-QVSSvno3dE0MgO76pJhmv4Qyi/j0Yk9pBp0Y7TJ2Tlj+KCgJWY6qX7nnxCOLkZ3VYRSIk1WTxCvwUSdx6CCLdg==", - "dev": true + "integrity": "sha512-QVSSvno3dE0MgO76pJhmv4Qyi/j0Yk9pBp0Y7TJ2Tlj+KCgJWY6qX7nnxCOLkZ3VYRSIk1WTxCvwUSdx6CCLdg==" }, "node_modules/@types/convert-source-map": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/@types/convert-source-map/-/convert-source-map-2.0.3.tgz", - "integrity": "sha512-ag0BfJLZf6CQz8VIuRIEYQ5Ggwk/82uvTQf27RcpyDNbY0Vw49LIPqAxk5tqYfrCs9xDaIMvl4aj7ZopnYL8bA==", - "dev": true + "integrity": "sha512-ag0BfJLZf6CQz8VIuRIEYQ5Ggwk/82uvTQf27RcpyDNbY0Vw49LIPqAxk5tqYfrCs9xDaIMvl4aj7ZopnYL8bA==" }, "node_modules/@types/cookies": { "version": "0.9.0", "resolved": "https://registry.npmjs.org/@types/cookies/-/cookies-0.9.0.tgz", "integrity": "sha512-40Zk8qR147RABiQ7NQnBzWzDcjKzNrntB5BAmeGCb2p/MIyOE+4BVvc17wumsUqUw00bJYqoXFHYygQnEFh4/Q==", - "dev": true, "dependencies": { "@types/connect": "*", "@types/express": "*", @@ -3742,8 +3723,7 @@ "node_modules/@types/debounce": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/@types/debounce/-/debounce-1.2.4.tgz", - "integrity": "sha512-jBqiORIzKDOToaF63Fm//haOCHuwQuLa2202RK4MozpA6lh93eCBc+/8+wZn5OzjJt3ySdc+74SXWXB55Ewtyw==", - "dev": true + "integrity": "sha512-jBqiORIzKDOToaF63Fm//haOCHuwQuLa2202RK4MozpA6lh93eCBc+/8+wZn5OzjJt3ySdc+74SXWXB55Ewtyw==" }, "node_modules/@types/estree": { "version": "1.0.6", @@ -3755,7 +3735,6 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/@types/express/-/express-5.0.0.tgz", "integrity": "sha512-DvZriSMehGHL1ZNLzi6MidnsDhUZM/x2pRdDIKdwbUNqqwHxMlRdkxtn6/EPKyqKpHqTl/4nRZsRNLpZxZRpPQ==", - "dev": true, "dependencies": { "@types/body-parser": "*", "@types/express-serve-static-core": "^5.0.0", @@ -3767,7 +3746,6 @@ "version": "5.0.2", "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.2.tgz", "integrity": "sha512-vluaspfvWEtE4vcSDlKRNer52DvOGrB2xv6diXy6UKyKW0lqZiWHGNApSyxOv+8DE5Z27IzVvE7hNkxg7EXIcg==", - "dev": true, "dependencies": { "@types/node": "*", "@types/qs": "*", @@ -3796,26 +3774,22 @@ "node_modules/@types/http-assert": { "version": "1.5.6", "resolved": "https://registry.npmjs.org/@types/http-assert/-/http-assert-1.5.6.tgz", - "integrity": "sha512-TTEwmtjgVbYAzZYWyeHPrrtWnfVkm8tQkP8P21uQifPgMRgjrow3XDEYqucuC8SKZJT7pUnhU/JymvjggxO9vw==", - "dev": true + "integrity": "sha512-TTEwmtjgVbYAzZYWyeHPrrtWnfVkm8tQkP8P21uQifPgMRgjrow3XDEYqucuC8SKZJT7pUnhU/JymvjggxO9vw==" }, "node_modules/@types/http-errors": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", - "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==", - "dev": true + "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==" }, "node_modules/@types/istanbul-lib-coverage": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", - "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", - "dev": true + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==" }, "node_modules/@types/istanbul-lib-report": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", - "dev": true, "dependencies": { "@types/istanbul-lib-coverage": "*" } @@ -3824,7 +3798,6 @@ "version": "3.0.4", "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", - "dev": true, "dependencies": { "@types/istanbul-lib-report": "*" } @@ -3886,14 +3859,12 @@ "node_modules/@types/keygrip": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/@types/keygrip/-/keygrip-1.0.6.tgz", - "integrity": "sha512-lZuNAY9xeJt7Bx4t4dx0rYCDqGPW8RXhQZK1td7d4H6E9zYbLoOtjBvfwdTKpsyxQI/2jv+armjX/RW+ZNpXOQ==", - "dev": true + "integrity": "sha512-lZuNAY9xeJt7Bx4t4dx0rYCDqGPW8RXhQZK1td7d4H6E9zYbLoOtjBvfwdTKpsyxQI/2jv+armjX/RW+ZNpXOQ==" }, "node_modules/@types/koa": { "version": "2.15.0", "resolved": "https://registry.npmjs.org/@types/koa/-/koa-2.15.0.tgz", "integrity": "sha512-7QFsywoE5URbuVnG3loe03QXuGajrnotr3gQkXcEBShORai23MePfFYdhz90FEtBBpkyIYQbVD+evKtloCgX3g==", - "dev": true, "dependencies": { "@types/accepts": "*", "@types/content-disposition": "*", @@ -3909,7 +3880,6 @@ "version": "3.2.8", "resolved": "https://registry.npmjs.org/@types/koa-compose/-/koa-compose-3.2.8.tgz", "integrity": "sha512-4Olc63RY+MKvxMwVknCUDhRQX1pFQoBZ/lXcRLP69PQkEpze/0cr8LNqJQe5NFb/b19DWi2a5bTi2VAlQzhJuA==", - "dev": true, "dependencies": { "@types/koa": "*" } @@ -3923,14 +3893,12 @@ "node_modules/@types/mime": { "version": "1.3.5", "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", - "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", - "dev": true + "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==" }, "node_modules/@types/node": { "version": "22.10.1", "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.1.tgz", "integrity": "sha512-qKgsUwfHZV2WCWLAnVP1JqnpE6Im6h3Y0+fYgMTasNQ7V++CBX5OT1as0g0f+OyubbFqhf6XVNIsmN4IIhEgGQ==", - "dev": true, "dependencies": { "undici-types": "~6.20.0" } @@ -3938,8 +3906,7 @@ "node_modules/@types/parse5": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/@types/parse5/-/parse5-6.0.3.tgz", - "integrity": "sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==", - "dev": true + "integrity": "sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==" }, "node_modules/@types/prop-types": { "version": "15.7.13", @@ -3951,14 +3918,12 @@ "node_modules/@types/qs": { "version": "6.9.17", "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.17.tgz", - "integrity": "sha512-rX4/bPcfmvxHDv0XjfJELTTr+iB+tn032nPILqHm5wbthUUUuVtNGGqzhya9XUxjTP8Fpr0qYgSZZKxGY++svQ==", - "dev": true + "integrity": "sha512-rX4/bPcfmvxHDv0XjfJELTTr+iB+tn032nPILqHm5wbthUUUuVtNGGqzhya9XUxjTP8Fpr0qYgSZZKxGY++svQ==" }, "node_modules/@types/range-parser": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", - "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", - "dev": true + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" }, "node_modules/@types/react": { "version": "18.3.12", @@ -3981,7 +3946,6 @@ "version": "0.17.4", "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", - "dev": true, "dependencies": { "@types/mime": "^1", "@types/node": "*" @@ -3991,7 +3955,6 @@ "version": "1.15.7", "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz", "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==", - "dev": true, "dependencies": { "@types/http-errors": "*", "@types/node": "*", @@ -4059,7 +4022,6 @@ "version": "7.4.7", "resolved": "https://registry.npmjs.org/@types/ws/-/ws-7.4.7.tgz", "integrity": "sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==", - "dev": true, "dependencies": { "@types/node": "*" } @@ -4083,7 +4045,6 @@ "version": "2.10.3", "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz", "integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==", - "dev": true, "optional": true, "dependencies": { "@types/node": "*" @@ -4402,7 +4363,6 @@ "version": "0.4.0", "resolved": "https://registry.npmjs.org/@web/browser-logs/-/browser-logs-0.4.0.tgz", "integrity": "sha512-/EBiDAUCJ2DzZhaFxTPRIznEPeafdLbXShIL6aTu7x73x7ZoxSDv7DGuTsh2rWNMUa4+AKli4UORrpyv6QBOiA==", - "dev": true, "dependencies": { "errorstacks": "^2.2.0" }, @@ -4467,7 +4427,6 @@ "version": "0.7.4", "resolved": "https://registry.npmjs.org/@web/dev-server-core/-/dev-server-core-0.7.4.tgz", "integrity": "sha512-nHSNrJ1J9GjmSceKNHpWRMjvpfE2NTV9EYUffPIr7j0sIV59gK7NI/4+9slotJ/ODXw0+e1gSeJshTOhjjVNxQ==", - "dev": true, "dependencies": { "@types/koa": "^2.11.6", "@types/ws": "^7.4.0", @@ -4496,7 +4455,6 @@ "version": "4.0.1", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.1.tgz", "integrity": "sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==", - "dev": true, "dependencies": { "readdirp": "^4.0.1" }, @@ -4510,14 +4468,12 @@ "node_modules/@web/dev-server-core/node_modules/es-module-lexer": { "version": "1.5.4", "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", - "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==", - "dev": true + "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==" }, "node_modules/@web/dev-server-core/node_modules/lru-cache": { "version": "8.0.5", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-8.0.5.tgz", "integrity": "sha512-MhWWlVnuab1RG5/zMRRcVGXZLCXrZTgfwMikgzCegsPnG62yDQo5JnqKkrK4jO5iKqDAZGItAqN5CtKBCBWRUA==", - "dev": true, "engines": { "node": ">=16.14" } @@ -4525,14 +4481,12 @@ "node_modules/@web/dev-server-core/node_modules/parse5": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", - "dev": true + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" }, "node_modules/@web/dev-server-core/node_modules/readdirp": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.0.2.tgz", "integrity": "sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==", - "dev": true, "engines": { "node": ">= 14.16.0" }, @@ -4622,7 +4576,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/@web/parse5-utils/-/parse5-utils-2.1.0.tgz", "integrity": "sha512-GzfK5disEJ6wEjoPwx8AVNwUe9gYIiwc+x//QYxYDAFKUp4Xb1OJAGLc2l2gVrSQmtPGLKrTRcW90Hv4pEq1qA==", - "dev": true, "dependencies": { "@types/parse5": "^6.0.1", "parse5": "^6.0.1" @@ -4634,8 +4587,7 @@ "node_modules/@web/parse5-utils/node_modules/parse5": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", - "dev": true + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" }, "node_modules/@web/test-runner": { "version": "0.19.0", @@ -4672,7 +4624,6 @@ "version": "0.17.0", "resolved": "https://registry.npmjs.org/@web/test-runner-chrome/-/test-runner-chrome-0.17.0.tgz", "integrity": "sha512-Il5N9z41NKWCrQM1TVgRaDWWYoJtG5Ha4fG+cN1MWL2OlzBS4WoOb4lFV3EylZ7+W3twZOFr1zy2Rx61yDYd/A==", - "dev": true, "dependencies": { "@web/test-runner-core": "^0.13.0", "@web/test-runner-coverage-v8": "^0.8.0", @@ -4701,7 +4652,6 @@ "version": "0.13.4", "resolved": "https://registry.npmjs.org/@web/test-runner-core/-/test-runner-core-0.13.4.tgz", "integrity": "sha512-84E1025aUSjvZU1j17eCTwV7m5Zg3cZHErV3+CaJM9JPCesZwLraIa0ONIQ9w4KLgcDgJFw9UnJ0LbFf42h6tg==", - "dev": true, "dependencies": { "@babel/code-frame": "^7.12.11", "@types/babel__code-frame": "^7.0.2", @@ -4738,7 +4688,6 @@ "version": "4.0.1", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.1.tgz", "integrity": "sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==", - "dev": true, "dependencies": { "readdirp": "^4.0.1" }, @@ -4753,7 +4702,6 @@ "version": "4.0.2", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.0.2.tgz", "integrity": "sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==", - "dev": true, "engines": { "node": ">= 14.16.0" }, @@ -4766,7 +4714,6 @@ "version": "0.8.0", "resolved": "https://registry.npmjs.org/@web/test-runner-coverage-v8/-/test-runner-coverage-v8-0.8.0.tgz", "integrity": "sha512-PskiucYpjUtgNfR2zF2AWqWwjXL7H3WW/SnCAYmzUrtob7X9o/+BjdyZ4wKbOxWWSbJO4lEdGIDLu+8X2Xw+lA==", - "dev": true, "dependencies": { "@web/test-runner-core": "^0.13.0", "istanbul-lib-coverage": "^3.0.0", @@ -4782,11 +4729,25 @@ "version": "8.0.5", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-8.0.5.tgz", "integrity": "sha512-MhWWlVnuab1RG5/zMRRcVGXZLCXrZTgfwMikgzCegsPnG62yDQo5JnqKkrK4jO5iKqDAZGItAqN5CtKBCBWRUA==", - "dev": true, "engines": { "node": ">=16.14" } }, + "node_modules/@web/test-runner-junit-reporter": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/@web/test-runner-junit-reporter/-/test-runner-junit-reporter-0.7.2.tgz", + "integrity": "sha512-XMHgBCwaHxJDkGebI17EJEzk94Sgvcf2hrYkpHj7Zya2xcIL8g7cYVLYD024j5MKehfYTonNvhNYGOCiqzlp8g==", + "license": "MIT", + "dependencies": { + "@web/test-runner-chrome": "^0.17.0", + "@web/test-runner-core": "^0.13.0", + "array-flat-polyfill": "^1.0.1", + "xml": "^1.0.1" + }, + "engines": { + "node": ">=18.0.0" + } + }, "node_modules/@web/test-runner-mocha": { "version": "0.9.0", "resolved": "https://registry.npmjs.org/@web/test-runner-mocha/-/test-runner-mocha-0.9.0.tgz", @@ -4885,7 +4846,6 @@ "version": "1.3.8", "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "dev": true, "dependencies": { "mime-types": "~2.1.34", "negotiator": "0.6.3" @@ -4932,7 +4892,6 @@ "version": "7.1.1", "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", - "dev": true, "dependencies": { "debug": "^4.3.4" }, @@ -4973,7 +4932,6 @@ "version": "4.3.2", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dev": true, "dependencies": { "type-fest": "^0.21.3" }, @@ -4988,7 +4946,6 @@ "version": "0.21.3", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "dev": true, "engines": { "node": ">=10" }, @@ -5000,7 +4957,6 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, "engines": { "node": ">=8" } @@ -5009,7 +4965,6 @@ "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, "dependencies": { "color-convert": "^2.0.1" }, @@ -5098,11 +5053,19 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/array-flat-polyfill": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-flat-polyfill/-/array-flat-polyfill-1.0.1.tgz", + "integrity": "sha512-hfJmKupmQN0lwi0xG6FQ5U8Rd97RnIERplymOv/qpq8AoNKPPAnxJadjFA23FNWm88wykh9HmpLJUUwUtNU/iw==", + "license": "CC0-1.0", + "engines": { + "node": ">=6.0.0" + } + }, "node_modules/array-union": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true, "engines": { "node": ">=8" } @@ -5142,7 +5105,6 @@ "version": "0.13.4", "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz", "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", - "dev": true, "dependencies": { "tslib": "^2.0.1" }, @@ -5154,7 +5116,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", - "dev": true, "engines": { "node": ">=8" } @@ -5172,7 +5133,6 @@ "version": "0.4.0", "resolved": "https://registry.npmjs.org/async-mutex/-/async-mutex-0.4.0.tgz", "integrity": "sha512-eJFZ1YhRR8UN8eBLoNzcDPcy/jqjsg6I1AP+KvWQX80BqOSW1oJPJXDylPUEeMr2ZQvHgnQ//Lp6f3RQ1zI7HA==", - "dev": true, "dependencies": { "tslib": "^2.4.0" } @@ -5252,8 +5212,7 @@ "node_modules/b4a": { "version": "1.6.7", "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.7.tgz", - "integrity": "sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==", - "dev": true + "integrity": "sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==" }, "node_modules/babel-jest": { "version": "29.7.0", @@ -5384,14 +5343,12 @@ "version": "2.5.0", "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.5.0.tgz", "integrity": "sha512-/E8dDe9dsbLyh2qrZ64PEPadOQ0F4gbl1sUJOrmph7xOiIxfY8vwab/4bFLh4Y88/Hk/ujKcrQKc+ps0mv873A==", - "dev": true, "optional": true }, "node_modules/bare-fs": { "version": "2.3.5", "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-2.3.5.tgz", "integrity": "sha512-SlE9eTxifPDJrT6YgemQ1WGFleevzwY+XAP1Xqgl56HtcrisC2CHCZ2tq6dBpcH2TnNxwUEUGhweo+lrQtYuiw==", - "dev": true, "optional": true, "dependencies": { "bare-events": "^2.0.0", @@ -5403,14 +5360,12 @@ "version": "2.4.4", "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-2.4.4.tgz", "integrity": "sha512-z3UiI2yi1mK0sXeRdc4O1Kk8aOa/e+FNWZcTiPB/dfTWyLypuE99LibgRaQki914Jq//yAWylcAt+mknKdixRQ==", - "dev": true, "optional": true }, "node_modules/bare-path": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/bare-path/-/bare-path-2.1.3.tgz", "integrity": "sha512-lh/eITfU8hrj9Ru5quUp0Io1kJWIk1bTjzo7JH1P5dWmQ2EL4hFUlfI8FonAhSlgIfhn63p84CDY/x+PisgcXA==", - "dev": true, "optional": true, "dependencies": { "bare-os": "^2.1.0" @@ -5420,7 +5375,6 @@ "version": "2.4.2", "resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.4.2.tgz", "integrity": "sha512-XZ4ln/KV4KT+PXdIWTKjsLY+quqCaEtqqtgGJVPw9AoM73By03ij64YjepK0aQvHSWDb6AfAZwqKaFu68qkrdA==", - "dev": true, "optional": true, "dependencies": { "streamx": "^2.20.0" @@ -5430,7 +5384,6 @@ "version": "1.5.1", "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true, "funding": [ { "type": "github", @@ -5450,7 +5403,6 @@ "version": "5.0.5", "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.5.tgz", "integrity": "sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==", - "dev": true, "engines": { "node": ">=10.0.0" } @@ -5492,7 +5444,6 @@ "version": "3.0.3", "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", - "dev": true, "dependencies": { "fill-range": "^7.1.1" }, @@ -5551,7 +5502,6 @@ "version": "5.7.1", "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, "funding": [ { "type": "github", @@ -5575,7 +5525,6 @@ "version": "0.2.13", "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", - "dev": true, "engines": { "node": "*" } @@ -5590,7 +5539,6 @@ "version": "3.1.2", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "dev": true, "engines": { "node": ">= 0.8" } @@ -5599,7 +5547,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/cache-content-type/-/cache-content-type-1.0.1.tgz", "integrity": "sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==", - "dev": true, "dependencies": { "mime-types": "^2.1.18", "ylru": "^1.2.0" @@ -5654,7 +5601,6 @@ "version": "1.0.7", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", - "dev": true, "dependencies": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", @@ -5895,7 +5841,6 @@ "version": "0.15.2", "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.2.tgz", "integrity": "sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==", - "dev": true, "dependencies": { "@types/node": "*", "escape-string-regexp": "^4.0.0", @@ -5913,7 +5858,6 @@ "version": "0.8.0", "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.8.0.tgz", "integrity": "sha512-uJydbGdTw0DEUjhoogGveneJVWX/9YuqkWePzMmkBYwtdAqo5d3J/ovNKFr+/2hWXYmYCr6it8mSSTIj6SS6Ug==", - "dev": true, "dependencies": { "mitt": "3.0.1", "urlpattern-polyfill": "10.0.0", @@ -5957,7 +5901,6 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "dev": true, "dependencies": { "restore-cursor": "^3.1.0" }, @@ -5969,7 +5912,6 @@ "version": "8.0.1", "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "dev": true, "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.1", @@ -5983,7 +5925,6 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -6000,7 +5941,6 @@ "version": "2.1.2", "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", - "dev": true, "engines": { "node": ">=0.8" } @@ -6009,7 +5949,6 @@ "version": "4.6.0", "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", - "dev": true, "engines": { "iojs": ">= 1.0.0", "node": ">= 0.12.0" @@ -6019,7 +5958,6 @@ "version": "6.2.0", "resolved": "https://registry.npmjs.org/co-body/-/co-body-6.2.0.tgz", "integrity": "sha512-Kbpv2Yd1NdL1V/V4cwLVxraHDV6K8ayohr2rmH0J87Er8+zJjcTa6dAn9QMPC9CRgU8+aNajKbSf1TzDB1yKPA==", - "dev": true, "dependencies": { "@hapi/bourne": "^3.0.0", "inflation": "^2.0.0", @@ -6047,7 +5985,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, "dependencies": { "color-name": "~1.1.4" }, @@ -6058,8 +5995,7 @@ "node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "node_modules/combined-stream": { "version": "1.0.8", @@ -6145,7 +6081,6 @@ "version": "0.5.4", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "dev": true, "dependencies": { "safe-buffer": "5.2.1" }, @@ -6157,7 +6092,6 @@ "version": "1.0.5", "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - "dev": true, "engines": { "node": ">= 0.6" } @@ -6165,14 +6099,12 @@ "node_modules/convert-source-map": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" }, "node_modules/cookies": { "version": "0.9.1", "resolved": "https://registry.npmjs.org/cookies/-/cookies-0.9.1.tgz", "integrity": "sha512-TG2hpqe4ELx54QER/S3HQ9SRVnQnGBtKUz5bLQWtYAQ+o6GpgMs6sYUvaiJjVxb+UXwhRhAEP3m7LbsIZ77Hmw==", - "dev": true, "dependencies": { "depd": "~2.0.0", "keygrip": "~1.1.0" @@ -6213,7 +6145,6 @@ "version": "7.0.6", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", - "dev": true, "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -6259,7 +6190,6 @@ "version": "6.0.2", "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-6.0.2.tgz", "integrity": "sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==", - "dev": true, "engines": { "node": ">= 14" } @@ -6318,14 +6248,12 @@ "node_modules/debounce": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz", - "integrity": "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==", - "dev": true + "integrity": "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==" }, "node_modules/debug": { "version": "4.3.7", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, "dependencies": { "ms": "^2.1.3" }, @@ -6373,8 +6301,7 @@ "node_modules/deep-equal": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", - "integrity": "sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==", - "dev": true + "integrity": "sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==" }, "node_modules/deep-is": { "version": "0.1.4", @@ -6395,7 +6322,6 @@ "version": "6.0.3", "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", - "dev": true, "dependencies": { "execa": "^5.0.0" }, @@ -6422,7 +6348,6 @@ "version": "1.1.4", "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", - "dev": true, "dependencies": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", @@ -6439,7 +6364,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", - "dev": true, "engines": { "node": ">=8" } @@ -6465,7 +6389,6 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-5.0.1.tgz", "integrity": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==", - "dev": true, "dependencies": { "ast-types": "^0.13.4", "escodegen": "^2.1.0", @@ -6539,14 +6462,12 @@ "node_modules/delegates": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", - "dev": true + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" }, "node_modules/depd": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "dev": true, "engines": { "node": ">= 0.8" } @@ -6555,7 +6476,6 @@ "version": "0.11.0", "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.11.0.tgz", "integrity": "sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==", - "dev": true, "engines": { "node": ">= 0.6.0" } @@ -6573,7 +6493,6 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "dev": true, "engines": { "node": ">= 0.8", "npm": "1.2.8000 || >= 1.4.16" @@ -6591,8 +6510,7 @@ "node_modules/devtools-protocol": { "version": "0.0.1367902", "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1367902.tgz", - "integrity": "sha512-XxtPuC3PGakY6PD7dG66/o8KwJ/LkH2/EKe19Dcw58w53dv4/vSQEkn/SzuyhHE2q4zPgCkxQBxus3VV4ql+Pg==", - "dev": true + "integrity": "sha512-XxtPuC3PGakY6PD7dG66/o8KwJ/LkH2/EKe19Dcw58w53dv4/vSQEkn/SzuyhHE2q4zPgCkxQBxus3VV4ql+Pg==" }, "node_modules/didyoumean2": { "version": "4.1.0", @@ -6639,7 +6557,6 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, "dependencies": { "path-type": "^4.0.0" }, @@ -6738,8 +6655,7 @@ "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "dev": true + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/electron-to-chromium": { "version": "1.5.68", @@ -6769,7 +6685,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "dev": true, "engines": { "node": ">= 0.8" } @@ -6778,7 +6693,6 @@ "version": "1.4.4", "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dev": true, "dependencies": { "once": "^1.4.0" } @@ -6801,8 +6715,7 @@ "node_modules/errorstacks": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/errorstacks/-/errorstacks-2.4.1.tgz", - "integrity": "sha512-jE4i0SMYevwu/xxAuzhly/KTwtj0xDhbzB6m1xPImxTkw8wcCbgarOQPfCVMi5JKVyW7in29pNJCCJrry3Ynnw==", - "dev": true + "integrity": "sha512-jE4i0SMYevwu/xxAuzhly/KTwtj0xDhbzB6m1xPImxTkw8wcCbgarOQPfCVMi5JKVyW7in29pNJCCJrry3Ynnw==" }, "node_modules/es-abstract": { "version": "1.23.5", @@ -6868,7 +6781,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", - "dev": true, "dependencies": { "get-intrinsic": "^1.2.4" }, @@ -6880,7 +6792,6 @@ "version": "1.3.0", "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", - "dev": true, "engines": { "node": ">= 0.4" } @@ -6995,7 +6906,6 @@ "version": "3.2.0", "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", - "dev": true, "engines": { "node": ">=6" } @@ -7003,14 +6913,12 @@ "node_modules/escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", - "dev": true + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" }, "node_modules/escape-string-regexp": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, "engines": { "node": ">=10" }, @@ -7022,7 +6930,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", - "dev": true, "dependencies": { "esprima": "^4.0.1", "estraverse": "^5.2.0", @@ -7043,7 +6950,6 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, "optional": true, "engines": { "node": ">=0.10.0" @@ -7334,7 +7240,6 @@ "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true, "bin": { "esparse": "bin/esparse.js", "esvalidate": "bin/esvalidate.js" @@ -7371,7 +7276,6 @@ "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, "engines": { "node": ">=4.0" } @@ -7386,7 +7290,6 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true, "engines": { "node": ">=0.10.0" } @@ -7395,7 +7298,6 @@ "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "dev": true, "engines": { "node": ">= 0.6" } @@ -7404,7 +7306,6 @@ "version": "5.1.1", "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^6.0.0", @@ -7470,7 +7371,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", - "dev": true, "dependencies": { "debug": "^4.1.1", "get-stream": "^5.1.0", @@ -7490,7 +7390,6 @@ "version": "5.2.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dev": true, "dependencies": { "pump": "^3.0.0" }, @@ -7510,14 +7409,12 @@ "node_modules/fast-fifo": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz", - "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==", - "dev": true + "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==" }, "node_modules/fast-glob": { "version": "3.3.2", "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", - "dev": true, "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", @@ -7545,7 +7442,6 @@ "version": "1.17.1", "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", - "dev": true, "dependencies": { "reusify": "^1.0.4" } @@ -7563,7 +7459,6 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", - "dev": true, "dependencies": { "pend": "~1.2.0" } @@ -7584,7 +7479,6 @@ "version": "7.1.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", - "dev": true, "dependencies": { "to-regex-range": "^5.0.1" }, @@ -7775,7 +7669,6 @@ "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "dev": true, "engines": { "node": ">= 0.6" } @@ -7847,7 +7740,6 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -7892,7 +7784,6 @@ "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true, "engines": { "node": "6.* || 8.* || >= 10.*" } @@ -7901,7 +7792,6 @@ "version": "1.2.4", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", - "dev": true, "dependencies": { "es-errors": "^1.3.0", "function-bind": "^1.1.2", @@ -7929,7 +7819,6 @@ "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, "engines": { "node": ">=10" }, @@ -7958,7 +7847,6 @@ "version": "6.0.3", "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.3.tgz", "integrity": "sha512-BzUrJBS9EcUb4cFol8r4W3v1cPsSyajLSthNkz5BxbpDcHN5tIrM10E2eNvfnvBn3DaT3DUgx0OpsBKkaOpanw==", - "dev": true, "dependencies": { "basic-ftp": "^5.0.2", "data-uri-to-buffer": "^6.0.2", @@ -7973,7 +7861,6 @@ "version": "11.2.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", - "dev": true, "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", @@ -8008,7 +7895,6 @@ "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, "dependencies": { "is-glob": "^4.0.1" }, @@ -8107,7 +7993,6 @@ "version": "11.0.4", "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz", "integrity": "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==", - "dev": true, "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", @@ -8127,7 +8012,6 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true, "engines": { "node": ">=8" } @@ -8136,7 +8020,6 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.1.0.tgz", "integrity": "sha512-FQoVQnqcdk4hVM4JN1eromaun4iuS34oStkdlLENLdpULsuQcTyXj8w7ayhuUfPwEYZ1ZOooOTT6fdA9Vmx/RA==", - "dev": true, "dependencies": { "get-intrinsic": "^1.2.4" }, @@ -8150,8 +8033,7 @@ "node_modules/graceful-fs": { "version": "4.2.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "dev": true + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" }, "node_modules/graphemer": { "version": "1.4.0", @@ -8172,7 +8054,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, "engines": { "node": ">=8" } @@ -8181,7 +8062,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", - "dev": true, "dependencies": { "es-define-property": "^1.0.0" }, @@ -8193,7 +8073,6 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.1.0.tgz", "integrity": "sha512-QLdzI9IIO1Jg7f9GT1gXpPpXArAn6cS31R1eEZqz08Gc+uQ8/XiqHWt17Fiw+2p6oTTIq5GXEpQkAlA88YRl/Q==", - "dev": true, "dependencies": { "call-bind": "^1.0.7" }, @@ -8208,7 +8087,6 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", - "dev": true, "engines": { "node": ">= 0.4" }, @@ -8220,7 +8098,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", - "dev": true, "dependencies": { "has-symbols": "^1.0.3" }, @@ -8260,7 +8137,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", - "dev": true, "dependencies": { "function-bind": "^1.1.2" }, @@ -8289,8 +8165,7 @@ "node_modules/html-escaper": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", - "dev": true + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" }, "node_modules/htmlparser2": { "version": "3.10.1", @@ -8310,7 +8185,6 @@ "version": "1.5.0", "resolved": "https://registry.npmjs.org/http-assert/-/http-assert-1.5.0.tgz", "integrity": "sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==", - "dev": true, "dependencies": { "deep-equal": "~1.0.1", "http-errors": "~1.8.0" @@ -8323,7 +8197,6 @@ "version": "1.8.1", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", - "dev": true, "dependencies": { "depd": "~1.1.2", "inherits": "2.0.4", @@ -8339,7 +8212,6 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "dev": true, "engines": { "node": ">= 0.6" } @@ -8348,7 +8220,6 @@ "version": "7.0.2", "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", - "dev": true, "dependencies": { "agent-base": "^7.1.0", "debug": "^4.3.4" @@ -8361,7 +8232,6 @@ "version": "7.0.5", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz", "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==", - "dev": true, "dependencies": { "agent-base": "^7.0.2", "debug": "4" @@ -8374,7 +8244,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true, "engines": { "node": ">=10.17.0" } @@ -8383,7 +8252,6 @@ "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, "dependencies": { "safer-buffer": ">= 2.1.2 < 3" }, @@ -8395,7 +8263,6 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true, "funding": [ { "type": "github", @@ -8415,7 +8282,6 @@ "version": "5.3.2", "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", - "dev": true, "engines": { "node": ">= 4" } @@ -8477,7 +8343,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/inflation/-/inflation-2.1.0.tgz", "integrity": "sha512-t54PPJHG1Pp7VQvxyVCJ9mBbjG3Hqryges9bXoOO6GExCPa+//i/d5GSuFtpx3ALLd7lgIAur6zrIlBQyJuMlQ==", - "dev": true, "engines": { "node": ">= 0.8.0" } @@ -8496,8 +8361,7 @@ "node_modules/inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, "node_modules/ini": { "version": "1.3.8", @@ -8509,7 +8373,6 @@ "version": "6.2.0", "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-6.2.0.tgz", "integrity": "sha512-D8WGsR6yDt8uq7vDMu7mjcR+yRMm3dW8yufyChmszWRjcSHuxLBkR3GdS2HZAjodsaGuCvXeEJpueisXJULghg==", - "dev": true, "dependencies": { "default-gateway": "^6.0.0", "ipaddr.js": "^1.9.1", @@ -8541,7 +8404,6 @@ "version": "9.0.5", "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz", "integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==", - "dev": true, "dependencies": { "jsbn": "1.1.0", "sprintf-js": "^1.1.3" @@ -8554,7 +8416,6 @@ "version": "4.3.0", "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-4.3.0.tgz", "integrity": "sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==", - "dev": true, "engines": { "node": ">=8" } @@ -8563,7 +8424,6 @@ "version": "1.9.1", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "dev": true, "engines": { "node": ">= 0.10" } @@ -8725,7 +8585,6 @@ "version": "2.2.1", "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "dev": true, "bin": { "is-docker": "cli.js" }, @@ -8740,7 +8599,6 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, "engines": { "node": ">=0.10.0" } @@ -8764,7 +8622,6 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, "engines": { "node": ">=8" } @@ -8782,7 +8639,6 @@ "version": "1.0.10", "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", - "dev": true, "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -8797,7 +8653,6 @@ "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, "dependencies": { "is-extglob": "^2.1.1" }, @@ -8809,7 +8664,6 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/is-ip/-/is-ip-3.1.0.tgz", "integrity": "sha512-35vd5necO7IitFPjd/YBeqwWnyDWbuLH9ZXQdMfDA8TEo7pv5X8yfrvVO3xbJbLUlERCMvf6X0hTUamQxCYJ9Q==", - "dev": true, "dependencies": { "ip-regex": "^4.0.0" }, @@ -8851,7 +8705,6 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, "engines": { "node": ">=0.12.0" } @@ -8951,7 +8804,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, "engines": { "node": ">=8" }, @@ -9075,7 +8927,6 @@ "version": "2.2.0", "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dev": true, "dependencies": { "is-docker": "^2.0.0" }, @@ -9093,7 +8944,6 @@ "version": "5.0.4", "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-5.0.4.tgz", "integrity": "sha512-YKBKVkKhty7s8rxddb40oOkuP0NbaeXrQvLin6QMHL7Ypiy2RW9LwOVrVgZRyOrhQlayMd9t+D8yDy8MKFTSDQ==", - "dev": true, "engines": { "node": ">= 18.0.0" }, @@ -9104,14 +8954,12 @@ "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" }, "node_modules/istanbul-lib-coverage": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", - "dev": true, "engines": { "node": ">=8" } @@ -9198,7 +9046,6 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", - "dev": true, "dependencies": { "istanbul-lib-coverage": "^3.0.0", "make-dir": "^4.0.0", @@ -9235,7 +9082,6 @@ "version": "3.1.7", "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", - "dev": true, "dependencies": { "html-escaper": "^2.0.0", "istanbul-lib-report": "^3.0.0" @@ -10356,8 +10202,7 @@ "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" }, "node_modules/js-yaml": { "version": "4.1.0", @@ -10374,8 +10219,7 @@ "node_modules/jsbn": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz", - "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==", - "dev": true + "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==" }, "node_modules/jsdoc-type-pratt-parser": { "version": "4.1.0", @@ -10450,7 +10294,6 @@ "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, "dependencies": { "universalify": "^2.0.0" }, @@ -10506,7 +10349,6 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/keygrip/-/keygrip-1.1.0.tgz", "integrity": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==", - "dev": true, "dependencies": { "tsscmp": "1.0.6" }, @@ -10536,7 +10378,6 @@ "version": "2.15.3", "resolved": "https://registry.npmjs.org/koa/-/koa-2.15.3.tgz", "integrity": "sha512-j/8tY9j5t+GVMLeioLaxweJiKUayFhlGqNTzf2ZGwL0ZCQijd2RLHK0SLW5Tsko8YyyqCZC2cojIb0/s62qTAg==", - "dev": true, "dependencies": { "accepts": "^1.3.5", "cache-content-type": "^1.0.0", @@ -10569,14 +10410,12 @@ "node_modules/koa-compose": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/koa-compose/-/koa-compose-4.1.0.tgz", - "integrity": "sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==", - "dev": true + "integrity": "sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==" }, "node_modules/koa-convert": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/koa-convert/-/koa-convert-2.0.0.tgz", "integrity": "sha512-asOvN6bFlSnxewce2e/DK3p4tltyfC4VM7ZwuTuepI7dEQVcvpyFuBcEARu1+Hxg8DIwytce2n7jrZtRlPrARA==", - "dev": true, "dependencies": { "co": "^4.6.0", "koa-compose": "^4.1.0" @@ -10589,7 +10428,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/koa-etag/-/koa-etag-4.0.0.tgz", "integrity": "sha512-1cSdezCkBWlyuB9l6c/IFoe1ANCDdPBxkDkRiaIup40xpUub6U/wwRXoKBZw/O5BifX9OlqAjYnDyzM6+l+TAg==", - "dev": true, "dependencies": { "etag": "^1.8.1" } @@ -10598,7 +10436,6 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/koa-send/-/koa-send-5.0.1.tgz", "integrity": "sha512-tmcyQ/wXXuxpDxyNXv5yNNkdAMdFRqwtegBXUaowiQzUKqJehttS0x2j0eOZDQAyloAth5w6wwBImnFzkUz3pQ==", - "dev": true, "dependencies": { "debug": "^4.1.1", "http-errors": "^1.7.3", @@ -10612,7 +10449,6 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/koa-static/-/koa-static-5.0.0.tgz", "integrity": "sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ==", - "dev": true, "dependencies": { "debug": "^3.1.0", "koa-send": "^5.0.0" @@ -10625,7 +10461,6 @@ "version": "3.2.7", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, "dependencies": { "ms": "^2.1.1" } @@ -10674,7 +10509,6 @@ "version": "1.4.2", "resolved": "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.4.2.tgz", "integrity": "sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==", - "dev": true, "dependencies": { "debug": "^2.6.9", "marky": "^1.2.2" @@ -10684,7 +10518,6 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, "dependencies": { "ms": "2.0.0" } @@ -10692,8 +10525,7 @@ "node_modules/lighthouse-logger/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "node_modules/lines-and-columns": { "version": "1.2.4", @@ -10928,7 +10760,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", - "dev": true, "dependencies": { "ansi-escapes": "^4.3.0", "cli-cursor": "^3.1.0", @@ -10998,7 +10829,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", - "dev": true, "dependencies": { "semver": "^7.5.3" }, @@ -11013,7 +10843,6 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "dev": true, "bin": { "semver": "bin/semver.js" }, @@ -11077,8 +10906,7 @@ "node_modules/marky": { "version": "1.2.5", "resolved": "https://registry.npmjs.org/marky/-/marky-1.2.5.tgz", - "integrity": "sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==", - "dev": true + "integrity": "sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==" }, "node_modules/mdurl": { "version": "2.0.0", @@ -11091,7 +10919,6 @@ "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "dev": true, "engines": { "node": ">= 0.6" } @@ -11117,14 +10944,12 @@ "node_modules/merge-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" }, "node_modules/merge2": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, "engines": { "node": ">= 8" } @@ -11133,7 +10958,6 @@ "version": "4.0.8", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", - "dev": true, "dependencies": { "braces": "^3.0.3", "picomatch": "^2.3.1" @@ -11146,7 +10970,6 @@ "version": "1.52.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "dev": true, "engines": { "node": ">= 0.6" } @@ -11155,7 +10978,6 @@ "version": "2.1.35", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dev": true, "dependencies": { "mime-db": "1.52.0" }, @@ -11167,7 +10989,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true, "engines": { "node": ">=6" } @@ -11208,8 +11029,7 @@ "node_modules/mitt": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", - "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", - "dev": true + "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==" }, "node_modules/mkdirp": { "version": "1.0.4", @@ -11226,8 +11046,7 @@ "node_modules/ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" }, "node_modules/mustache": { "version": "4.2.0", @@ -11241,14 +11060,12 @@ "node_modules/nanocolors": { "version": "0.2.13", "resolved": "https://registry.npmjs.org/nanocolors/-/nanocolors-0.2.13.tgz", - "integrity": "sha512-0n3mSAQLPpGLV9ORXT5+C/D4mwew7Ebws69Hx4E2sgz2ZA5+32Q80B9tL8PbL7XHnRDiAxH/pnrUJ9a4fkTNTA==", - "dev": true + "integrity": "sha512-0n3mSAQLPpGLV9ORXT5+C/D4mwew7Ebws69Hx4E2sgz2ZA5+32Q80B9tL8PbL7XHnRDiAxH/pnrUJ9a4fkTNTA==" }, "node_modules/nanoid": { "version": "3.3.8", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", - "dev": true, "funding": [ { "type": "github", @@ -11272,7 +11089,6 @@ "version": "0.6.3", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "dev": true, "engines": { "node": ">= 0.6" } @@ -11281,7 +11097,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz", "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==", - "dev": true, "engines": { "node": ">= 0.4.0" } @@ -11557,7 +11372,6 @@ "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, "dependencies": { "path-key": "^3.0.0" }, @@ -11780,7 +11594,6 @@ "version": "1.13.3", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz", "integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==", - "dev": true, "engines": { "node": ">= 0.4" }, @@ -11819,7 +11632,6 @@ "version": "2.4.1", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "dev": true, "dependencies": { "ee-first": "1.1.1" }, @@ -11831,7 +11643,6 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, "dependencies": { "wrappy": "1" } @@ -11840,7 +11651,6 @@ "version": "5.1.2", "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, "dependencies": { "mimic-fn": "^2.1.0" }, @@ -11854,14 +11664,12 @@ "node_modules/only": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/only/-/only-0.0.2.tgz", - "integrity": "sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==", - "dev": true + "integrity": "sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==" }, "node_modules/open": { "version": "8.4.2", "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", - "dev": true, "dependencies": { "define-lazy-prop": "^2.0.0", "is-docker": "^2.1.1", @@ -11904,7 +11712,6 @@ "version": "4.2.0", "resolved": "https://registry.npmjs.org/p-event/-/p-event-4.2.0.tgz", "integrity": "sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==", - "dev": true, "dependencies": { "p-timeout": "^3.1.0" }, @@ -11919,7 +11726,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", - "dev": true, "engines": { "node": ">=4" } @@ -11970,7 +11776,6 @@ "version": "3.2.0", "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz", "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==", - "dev": true, "dependencies": { "p-finally": "^1.0.0" }, @@ -11991,7 +11796,6 @@ "version": "7.0.2", "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.0.2.tgz", "integrity": "sha512-BFi3vZnO9X5Qt6NRz7ZOaPja3ic0PhlsmCRYLOpN11+mWBCR6XJDqW5RF3j8jm4WGGQZtBA+bTfxYzeKW73eHg==", - "dev": true, "dependencies": { "@tootallnate/quickjs-emscripten": "^0.23.0", "agent-base": "^7.0.2", @@ -12010,7 +11814,6 @@ "version": "7.0.1", "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.1.tgz", "integrity": "sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==", - "dev": true, "dependencies": { "degenerator": "^5.0.0", "netmask": "^2.0.2" @@ -12116,7 +11919,6 @@ "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "dev": true, "engines": { "node": ">= 0.8" } @@ -12147,7 +11949,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true, "engines": { "node": ">=0.10.0" } @@ -12156,7 +11957,6 @@ "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, "engines": { "node": ">=8" } @@ -12180,7 +11980,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true, "engines": { "node": ">=8" } @@ -12197,20 +11996,17 @@ "node_modules/pend": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", - "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", - "dev": true + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" }, "node_modules/picocolors": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", - "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", - "dev": true + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" }, "node_modules/picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, "engines": { "node": ">=8.6" }, @@ -12515,7 +12311,6 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", - "dev": true, "engines": { "node": ">=0.4.0" } @@ -12537,7 +12332,6 @@ "version": "6.4.0", "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.4.0.tgz", "integrity": "sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ==", - "dev": true, "dependencies": { "agent-base": "^7.0.2", "debug": "^4.3.4", @@ -12556,7 +12350,6 @@ "version": "7.18.3", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true, "engines": { "node": ">=12" } @@ -12564,14 +12357,12 @@ "node_modules/proxy-from-env": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", - "dev": true + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" }, "node_modules/pump": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz", "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==", - "dev": true, "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" @@ -12600,7 +12391,6 @@ "version": "23.9.0", "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-23.9.0.tgz", "integrity": "sha512-hLVrav2HYMVdK0YILtfJwtnkBAwNOztUdR4aJ5YKDvgsbtagNr6urUJk9HyjRA9e+PaLI3jzJ0wM7A4jSZ7Qxw==", - "dev": true, "dependencies": { "@puppeteer/browsers": "2.4.1", "chromium-bidi": "0.8.0", @@ -12617,7 +12407,6 @@ "version": "8.18.0", "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", - "dev": true, "engines": { "node": ">=10.0.0" }, @@ -12654,7 +12443,6 @@ "version": "6.13.1", "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.1.tgz", "integrity": "sha512-EJPeIn0CYrGu+hli1xilKAPXODtJ12T0sP63Ijx2/khC2JtuaN3JyNIpvmnkmaEtha9ocbG4A4cMcr+TvqvwQg==", - "dev": true, "dependencies": { "side-channel": "^1.0.6" }, @@ -12669,7 +12457,6 @@ "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, "funding": [ { "type": "github", @@ -12688,14 +12475,12 @@ "node_modules/queue-tick": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz", - "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==", - "dev": true + "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==" }, "node_modules/raw-body": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", - "dev": true, "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", @@ -12710,7 +12495,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "dev": true, "dependencies": { "depd": "2.0.0", "inherits": "2.0.4", @@ -12726,7 +12510,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "dev": true, "engines": { "node": ">= 0.8" } @@ -12925,7 +12708,6 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "dev": true, "engines": { "node": ">=0.10.0" } @@ -13018,7 +12800,6 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/resolve-path/-/resolve-path-1.4.0.tgz", "integrity": "sha512-i1xevIst/Qa+nA9olDxLWnLk8YZbi8R/7JPbCMcgyWaFR6bKWaexgJgEB5oc2PKMjYdrHynyz0NY+if+H98t1w==", - "dev": true, "dependencies": { "http-errors": "~1.6.2", "path-is-absolute": "1.0.1" @@ -13031,7 +12812,6 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "dev": true, "engines": { "node": ">= 0.6" } @@ -13040,7 +12820,6 @@ "version": "1.6.3", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", - "dev": true, "dependencies": { "depd": "~1.1.2", "inherits": "2.0.3", @@ -13054,14 +12833,12 @@ "node_modules/resolve-path/node_modules/inherits": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "dev": true + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" }, "node_modules/resolve-path/node_modules/setprototypeof": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", - "dev": true + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" }, "node_modules/resolve.exports": { "version": "2.0.3", @@ -13076,7 +12853,6 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", - "dev": true, "dependencies": { "onetime": "^5.1.0", "signal-exit": "^3.0.2" @@ -13089,7 +12865,6 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, "engines": { "iojs": ">=1.0.0", "node": ">=0.10.0" @@ -13152,7 +12927,6 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, "funding": [ { "type": "github", @@ -13202,7 +12976,6 @@ "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, "funding": [ { "type": "github", @@ -13248,8 +13021,7 @@ "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "node_modules/scheduler": { "version": "0.23.2", @@ -13279,7 +13051,6 @@ "version": "1.2.2", "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", - "dev": true, "dependencies": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", @@ -13310,14 +13081,12 @@ "node_modules/setprototypeof": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "dev": true + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" }, "node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, "dependencies": { "shebang-regex": "^3.0.0" }, @@ -13329,7 +13098,6 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, "engines": { "node": ">=8" } @@ -13350,7 +13118,6 @@ "version": "1.0.6", "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", - "dev": true, "dependencies": { "call-bind": "^1.0.7", "es-errors": "^1.3.0", @@ -13367,8 +13134,7 @@ "node_modules/signal-exit": { "version": "3.0.7", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" }, "node_modules/sinon": { "version": "19.0.2", @@ -13428,7 +13194,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", - "dev": true, "dependencies": { "ansi-styles": "^4.0.0", "astral-regex": "^2.0.0", @@ -13445,7 +13210,6 @@ "version": "4.2.0", "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "dev": true, "engines": { "node": ">= 6.0.0", "npm": ">= 3.0.0" @@ -13455,7 +13219,6 @@ "version": "2.8.3", "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.3.tgz", "integrity": "sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==", - "dev": true, "dependencies": { "ip-address": "^9.0.5", "smart-buffer": "^4.2.0" @@ -13469,7 +13232,6 @@ "version": "8.0.4", "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.4.tgz", "integrity": "sha512-GNAq/eg8Udq2x0eNiFkr9gRg5bA7PXEWagQdeRX4cPSG+X/8V38v637gim9bjFptMk1QWsCTr0ttrJEiXbNnRw==", - "dev": true, "dependencies": { "agent-base": "^7.1.1", "debug": "^4.3.4", @@ -13483,7 +13245,6 @@ "version": "0.7.4", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", - "dev": true, "engines": { "node": ">= 8" } @@ -13604,8 +13365,7 @@ "node_modules/sprintf-js": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", - "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==", - "dev": true + "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==" }, "node_modules/stack-utils": { "version": "2.0.6", @@ -13632,7 +13392,6 @@ "version": "1.5.0", "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "dev": true, "engines": { "node": ">= 0.6" } @@ -13667,7 +13426,6 @@ "version": "2.21.0", "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.21.0.tgz", "integrity": "sha512-Qz6MsDZXJ6ur9u+b+4xCG18TluU7PGlRfXVAAjNiGsFrBUt/ioyLkxbFaKJygoPs+/kW4VyBj0bSj89Qu0IGyg==", - "dev": true, "dependencies": { "fast-fifo": "^1.3.2", "queue-tick": "^1.0.1", @@ -13703,7 +13461,6 @@ "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -13716,8 +13473,7 @@ "node_modules/string-width/node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" }, "node_modules/string.prototype.padend": { "version": "3.1.6", @@ -13790,7 +13546,6 @@ "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, "dependencies": { "ansi-regex": "^5.0.1" }, @@ -13811,7 +13566,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true, "engines": { "node": ">=6" } @@ -13844,7 +13598,6 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, "dependencies": { "has-flag": "^4.0.0" }, @@ -13881,7 +13634,6 @@ "version": "3.0.6", "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.6.tgz", "integrity": "sha512-iokBDQQkUyeXhgPYaZxmczGPhnhXZ0CmrqI+MOb/WFGS9DW5wnfrLgtjUJBvz50vQ3qfRwJ62QVoCFu8mPVu5w==", - "dev": true, "dependencies": { "pump": "^3.0.0", "tar-stream": "^3.1.5" @@ -13895,7 +13647,6 @@ "version": "3.1.7", "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz", "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==", - "dev": true, "dependencies": { "b4a": "^1.6.4", "fast-fifo": "^1.2.0", @@ -13941,14 +13692,12 @@ "node_modules/text-decoder": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.1.tgz", - "integrity": "sha512-x9v3H/lTKIJKQQe7RPQkLfKAnc9lUTkWDypIQgTzPJAq+5/GCDHonmshfvlsNSj58yyshbIJJDLmU15qNERrXQ==", - "dev": true + "integrity": "sha512-x9v3H/lTKIJKQQe7RPQkLfKAnc9lUTkWDypIQgTzPJAq+5/GCDHonmshfvlsNSj58yyshbIJJDLmU15qNERrXQ==" }, "node_modules/through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", - "dev": true + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" }, "node_modules/tiny-invariant": { "version": "1.3.3", @@ -14023,7 +13772,6 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, "dependencies": { "is-number": "^7.0.0" }, @@ -14035,7 +13783,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "dev": true, "engines": { "node": ">=0.6" } @@ -14165,14 +13912,12 @@ "node_modules/tslib": { "version": "2.8.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", - "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", - "dev": true + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==" }, "node_modules/tsscmp": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.6.tgz", "integrity": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==", - "dev": true, "engines": { "node": ">=0.6.x" } @@ -14223,7 +13968,6 @@ "version": "1.6.18", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "dev": true, "dependencies": { "media-typer": "0.3.0", "mime-types": "~2.1.24" @@ -14309,8 +14053,7 @@ "node_modules/typed-query-selector": { "version": "2.12.0", "resolved": "https://registry.npmjs.org/typed-query-selector/-/typed-query-selector-2.12.0.tgz", - "integrity": "sha512-SbklCd1F0EiZOyPiW192rrHZzZ5sBijB6xM+cpmrwDqObvdtunOHHIk9fCGsoK5JVIYXoyEp4iEdE3upFH3PAg==", - "dev": true + "integrity": "sha512-SbklCd1F0EiZOyPiW192rrHZzZ5sBijB6xM+cpmrwDqObvdtunOHHIk9fCGsoK5JVIYXoyEp4iEdE3upFH3PAg==" }, "node_modules/typedarray-to-buffer": { "version": "3.1.5", @@ -14459,7 +14202,6 @@ "version": "1.4.3", "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", - "dev": true, "dependencies": { "buffer": "^5.2.1", "through": "^2.3.8" @@ -14480,8 +14222,7 @@ "node_modules/undici-types": { "version": "6.20.0", "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", - "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", - "dev": true + "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==" }, "node_modules/unicorn-magic": { "version": "0.1.0", @@ -14499,7 +14240,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", - "dev": true, "engines": { "node": ">= 10.0.0" } @@ -14508,7 +14248,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "dev": true, "engines": { "node": ">= 0.8" } @@ -14568,8 +14307,7 @@ "node_modules/urlpattern-polyfill": { "version": "10.0.0", "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-10.0.0.tgz", - "integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==", - "dev": true + "integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==" }, "node_modules/util": { "version": "0.12.5", @@ -14614,7 +14352,6 @@ "version": "9.3.0", "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz", "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==", - "dev": true, "dependencies": { "@jridgewell/trace-mapping": "^0.3.12", "@types/istanbul-lib-coverage": "^2.0.1", @@ -14638,7 +14375,6 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "dev": true, "engines": { "node": ">= 0.8" } @@ -14945,7 +14681,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, "dependencies": { "isexe": "^2.0.0" }, @@ -15067,7 +14802,6 @@ "version": "6.2.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", - "dev": true, "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -15080,8 +14814,7 @@ "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" }, "node_modules/write-file-atomic": { "version": "4.0.2", @@ -15100,7 +14833,6 @@ "version": "7.5.10", "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", - "dev": true, "engines": { "node": ">=8.3.0" }, @@ -15120,8 +14852,7 @@ "node_modules/xml": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/xml/-/xml-1.0.1.tgz", - "integrity": "sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw==", - "dev": true + "integrity": "sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw==" }, "node_modules/xmlbuilder": { "version": "15.1.1", @@ -15136,7 +14867,6 @@ "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "dev": true, "engines": { "node": ">=10" } @@ -15164,7 +14894,6 @@ "version": "17.7.2", "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", - "dev": true, "dependencies": { "cliui": "^8.0.1", "escalade": "^3.1.1", @@ -15182,7 +14911,6 @@ "version": "21.1.1", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "dev": true, "engines": { "node": ">=12" } @@ -15191,7 +14919,6 @@ "version": "2.10.0", "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", - "dev": true, "dependencies": { "buffer-crc32": "~0.2.3", "fd-slicer": "~1.1.0" @@ -15201,7 +14928,6 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/ylru/-/ylru-1.4.0.tgz", "integrity": "sha512-2OQsPNEmBCvXuFlIni/a+Rn+R2pHW9INm0BxXJ4hVDA8TirqMj+J/Rp9ItLatT/5pZqWwefVrTQcHpixsxnVlA==", - "dev": true, "engines": { "node": ">= 4.0.0" } @@ -15232,7 +14958,6 @@ "version": "3.23.8", "resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz", "integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==", - "dev": true, "funding": { "url": "https://github.com/sponsors/colinhacks" } diff --git a/package.json b/package.json index 20695a3..3466679 100644 --- a/package.json +++ b/package.json @@ -119,6 +119,7 @@ "dependencies": { "@fontsource/ibm-plex-sans": "^5.0.21", "@lit/localize": "^0.12.2", + "@web/test-runner-junit-reporter": "^0.7.2", "@zebra-fed/zeta-icons": "^0.9.0", "lit": "^3.2.1" }, diff --git a/web-test-runner.config.js b/web-test-runner.config.js index 81f008d..7c3af4d 100644 --- a/web-test-runner.config.js +++ b/web-test-runner.config.js @@ -1,5 +1,7 @@ import { vitePlugin } from "@remcovaes/web-test-runner-vite-plugin"; import { playwrightLauncher } from "@web/test-runner-playwright"; +import { defaultReporter } from "@web/test-runner"; +import { junitReporter } from "@web/test-runner-junit-reporter"; const LOG_FILTER = ["Lit is in dev mode", "[vite] connecting..."]; @@ -33,4 +35,11 @@ export default { timeout: 1000, }, }, + reporters: [ + defaultReporter({ reportTestResults: false, reportTestProgress: true }), + junitReporter({ + outputPath: "src/test/test-results.xml", // default `'./test-results.xml'` + reportLogs: true, // default `false` + }), + ], }; From 91288b09835e78195330b431c33e184eb20d1de2 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 23 Dec 2024 13:59:08 +0000 Subject: [PATCH 74/82] [automated commit] lint format and import sort --- src/test/test-results.xml | 847 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 847 insertions(+) create mode 100644 src/test/test-results.xml diff --git a/src/test/test-results.xml b/src/test/test-results.xml new file mode 100644 index 0000000..ed958bd --- /dev/null +++ b/src/test/test-results.xml @@ -0,0 +1,847 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (src/test/fab/fab.test.ts?wtr-session-id=GMkZh50gtlt5EvTUbCN8r:35:61)]]> + + + + + (src/test/fab/fab.test.ts?wtr-session-id=GMkZh50gtlt5EvTUbCN8r:54:34)]]> + + + (src/test/fab/fab.test.ts?wtr-session-id=GMkZh50gtlt5EvTUbCN8r:63:30)]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file From d608e8870d14cdd4ef137ea80a49baf15c62652c Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 23 Dec 2024 14:15:48 +0000 Subject: [PATCH 75/82] [automated commit] lint format and import sort --- src/test/test-results.xml | 384 +++++++++++++++++++------------------- 1 file changed, 192 insertions(+), 192 deletions(-) diff --git a/src/test/test-results.xml b/src/test/test-results.xml index ed958bd..0ee572a 100644 --- a/src/test/test-results.xml +++ b/src/test/test-results.xml @@ -1,110 +1,110 @@ - + - - - + + + - + - - - + + + - - + + - + - + - - - + + + - + - + - + - - + + - - + + - + - + - + - + - - + + - + - - + + - - - - - + + + + + @@ -113,29 +113,29 @@ - + - - + + - - + + - + - - - + + + - + @@ -145,7 +145,7 @@ - + @@ -163,7 +163,7 @@ - + @@ -171,11 +171,11 @@ - + - + @@ -187,10 +187,10 @@ - + - + @@ -220,62 +220,62 @@ - + - + - + - + - + - + - + - - + + - + - + (src/test/fab/fab.test.ts?wtr-session-id=GMkZh50gtlt5EvTUbCN8r:35:61)]]> + at n. (src/test/fab/fab.test.ts?wtr-session-id=67HUO-BRpY86tsMYRyA6d:35:61)]]> (src/test/fab/fab.test.ts?wtr-session-id=GMkZh50gtlt5EvTUbCN8r:54:34)]]> + at n. (src/test/fab/fab.test.ts?wtr-session-id=67HUO-BRpY86tsMYRyA6d:54:34)]]> - + (src/test/fab/fab.test.ts?wtr-session-id=GMkZh50gtlt5EvTUbCN8r:63:30)]]> + at n. (src/test/fab/fab.test.ts?wtr-session-id=67HUO-BRpY86tsMYRyA6d:63:30)]]> - - - + + + - + @@ -286,105 +286,105 @@ - + - + - - + + - + - + - + - + - + - + - + - - - + + + - + - + - - - + + + - + - + - + - + - + - + - + - + - + - + @@ -400,8 +400,8 @@ - - + + @@ -416,7 +416,7 @@ - + @@ -424,13 +424,13 @@ - + - - + + - + @@ -443,13 +443,13 @@ - + - + @@ -457,15 +457,15 @@ - + - - - - + + + + - + @@ -481,8 +481,8 @@ - - + + @@ -496,26 +496,26 @@ - + - + - + - + + - @@ -531,7 +531,7 @@ - + @@ -541,75 +541,75 @@ - + - - + + - + - - + + - + - + - + - + - + - - - + + + - + - - + + - + - + - - + + - + - - + + @@ -624,7 +624,7 @@ - + @@ -634,23 +634,23 @@ - + - - - - + + + + - + - - + + - + @@ -709,15 +709,15 @@ - + - - + + @@ -731,31 +731,31 @@ - + - + - + - + - - - - + + + + - - - + + + - + @@ -780,11 +780,11 @@ - + - + - + @@ -794,54 +794,54 @@ - + - - - + + + - - + + - + - + - + - + - + - + - - - + + + - + - + \ No newline at end of file From ce07895bf5dfc85c1f4a9bfe0e02f13e0a077e34 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 23 Dec 2024 14:20:20 +0000 Subject: [PATCH 76/82] [automated commit] lint format and import sort --- src/test/test-results.xml | 408 +++++++++++++++++++------------------- 1 file changed, 204 insertions(+), 204 deletions(-) diff --git a/src/test/test-results.xml b/src/test/test-results.xml index 0ee572a..5c5527f 100644 --- a/src/test/test-results.xml +++ b/src/test/test-results.xml @@ -1,72 +1,72 @@ - + - + - - + + - + - - - - + + + + - + - + - + - + - + - + - - - + + + - + - + - + - + - + - + @@ -74,63 +74,63 @@ - + - + - - - - - + + + + + - + - - - - - - - - + + + + + + + + - - + + - - + + - + - + - + - + @@ -141,11 +141,11 @@ - + - + @@ -163,7 +163,7 @@ - + @@ -171,11 +171,11 @@ - + - + - + @@ -184,15 +184,15 @@ - - + + - - + + - + @@ -214,29 +214,29 @@ - + - + - + - + - - + + - + @@ -247,44 +247,44 @@ - - + + - + - + (src/test/fab/fab.test.ts?wtr-session-id=67HUO-BRpY86tsMYRyA6d:35:61)]]> + at n. (src/test/fab/fab.test.ts?wtr-session-id=JCsKsgbpAbt0oxRsGQqfB:35:61)]]> (src/test/fab/fab.test.ts?wtr-session-id=67HUO-BRpY86tsMYRyA6d:54:34)]]> + at n. (src/test/fab/fab.test.ts?wtr-session-id=JCsKsgbpAbt0oxRsGQqfB:54:34)]]> - + (src/test/fab/fab.test.ts?wtr-session-id=67HUO-BRpY86tsMYRyA6d:63:30)]]> + at n. (src/test/fab/fab.test.ts?wtr-session-id=JCsKsgbpAbt0oxRsGQqfB:63:30)]]> - + - + - + - + - + @@ -292,50 +292,50 @@ - + - + - + - + - + - + - + - + - - - + + + - + - + @@ -344,79 +344,79 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -424,14 +424,14 @@ - + + - - - + + @@ -443,15 +443,15 @@ - + - + - + @@ -459,13 +459,13 @@ - - + + - + - + @@ -481,8 +481,8 @@ - - + + @@ -496,25 +496,25 @@ - + - + - + - - - + + + - + @@ -531,7 +531,7 @@ - + @@ -542,10 +542,10 @@ - - - - + + + + @@ -553,63 +553,63 @@ - + - - + + - + - + - + - + - + - + - + - + - + - + - + - - - + + + - - + + @@ -624,7 +624,7 @@ - + @@ -634,23 +634,23 @@ - - - + + + - - - + + + - - + + - - - + + + @@ -709,19 +709,19 @@ - + - - + + - - + + @@ -735,27 +735,27 @@ - + - + - + - - - + + + - - - - + + + + - + @@ -772,19 +772,19 @@ - + - + - + - + - + @@ -794,25 +794,25 @@ - + - - + + - - + + - + - - - + + + - - + + @@ -821,27 +821,27 @@ - + - + - + - + - + - + - + \ No newline at end of file From 29a98af4204cb9be8678a061571687a60d7b023b Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 23 Dec 2024 14:26:39 +0000 Subject: [PATCH 77/82] [automated commit] lint format and import sort --- src/test/json-results.json | 1 + src/test/test-results.xml | 384 ++++++++++++++++++------------------- 2 files changed, 193 insertions(+), 192 deletions(-) create mode 100644 src/test/json-results.json diff --git a/src/test/json-results.json b/src/test/json-results.json new file mode 100644 index 0000000..a6e1414 --- /dev/null +++ b/src/test/json-results.json @@ -0,0 +1 @@ +[object Object] \ No newline at end of file diff --git a/src/test/test-results.xml b/src/test/test-results.xml index 5c5527f..bb33c56 100644 --- a/src/test/test-results.xml +++ b/src/test/test-results.xml @@ -1,19 +1,19 @@ - + - + - + - - + + - + @@ -21,127 +21,127 @@ - + - + - + - - + + - + - + - - - + + + - + - + - + - + - + - + - + - + - + - - + + - - + + - + - - + + - - - + + + - + - + - - + + - + - + - + - + - + @@ -163,7 +163,7 @@ - + @@ -171,11 +171,11 @@ - - - + + + - + @@ -184,15 +184,15 @@ - - + + - + - - - + + + @@ -214,13 +214,13 @@ - + - + @@ -233,58 +233,58 @@ - + - + - - - + + + - + - + - + (src/test/fab/fab.test.ts?wtr-session-id=JCsKsgbpAbt0oxRsGQqfB:35:61)]]> + at n. (src/test/fab/fab.test.ts?wtr-session-id=-3x0Mg6N57MT6-vhn0Y_n:35:61)]]> - - + + (src/test/fab/fab.test.ts?wtr-session-id=JCsKsgbpAbt0oxRsGQqfB:54:34)]]> + at n. (src/test/fab/fab.test.ts?wtr-session-id=-3x0Mg6N57MT6-vhn0Y_n:54:34)]]> - + (src/test/fab/fab.test.ts?wtr-session-id=JCsKsgbpAbt0oxRsGQqfB:63:30)]]> + at n. (src/test/fab/fab.test.ts?wtr-session-id=-3x0Mg6N57MT6-vhn0Y_n:63:30)]]> - + - + - + - + @@ -298,47 +298,47 @@ - + - - - + + + - + - + - + - + - + - + - + - - + + @@ -353,46 +353,46 @@ - + - + - + - + - + - + - + - + - + - + @@ -401,22 +401,22 @@ - - + + - + - + - + @@ -425,13 +425,13 @@ - + - + - + - + @@ -443,13 +443,13 @@ - + - + @@ -461,11 +461,11 @@ - - + + - + @@ -483,7 +483,7 @@ - + @@ -496,25 +496,25 @@ - + - + - - + + - - - + + + - + @@ -531,21 +531,21 @@ - + - + - + - - - + + + @@ -553,63 +553,63 @@ - + - + - + - + - - + + - + - + - - + + - + - + - + - - - + + + - + @@ -624,7 +624,7 @@ - + @@ -634,23 +634,23 @@ - + - + - - - + + + - - - - + + + + - - + + @@ -709,7 +709,7 @@ - + @@ -717,43 +717,43 @@ - + - + - + - + - + - + - + - + - + - + - - - - + + + + @@ -772,19 +772,19 @@ - + - + - - - + + + - + @@ -797,25 +797,25 @@ - - - - + + + + - - + + - - - + + + - + @@ -823,15 +823,15 @@ - + - + - + @@ -841,7 +841,7 @@ - - + + \ No newline at end of file From 992800f4a7d7a4405546f17a598969263356abe2 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 23 Dec 2024 14:31:41 +0000 Subject: [PATCH 78/82] [automated commit] lint format and import sort --- src/test/json-results.json | 2 +- src/test/test-results.xml | 412 ++++++++++++++++++------------------- 2 files changed, 207 insertions(+), 207 deletions(-) diff --git a/src/test/json-results.json b/src/test/json-results.json index a6e1414..a3fad59 100644 --- a/src/test/json-results.json +++ b/src/test/json-results.json @@ -1 +1 @@ -[object Object] \ No newline at end of file +{"skipped":null} \ No newline at end of file diff --git a/src/test/test-results.xml b/src/test/test-results.xml index bb33c56..b4ff8a2 100644 --- a/src/test/test-results.xml +++ b/src/test/test-results.xml @@ -1,12 +1,12 @@ - + - + @@ -20,134 +20,134 @@ - - - - + + + + - + - - + + - + - + - + - + - - + + - - - - + + + + - - + + - - + + - + - + - + - - + + - - + + - + - - - - - + + + + + - + - - - + + + - + - + - + - + - + - + - - - + + + - + @@ -172,10 +172,10 @@ - - + + - + @@ -184,15 +184,15 @@ - - + + - + - - + + @@ -214,128 +214,128 @@ - + - + - + - - + + - + - - - + + + - + - + - + - + (src/test/fab/fab.test.ts?wtr-session-id=-3x0Mg6N57MT6-vhn0Y_n:35:61)]]> + at n. (src/test/fab/fab.test.ts?wtr-session-id=BCsT80KCe0P6XsjjzlTfY:35:61)]]> - - - + + + (src/test/fab/fab.test.ts?wtr-session-id=-3x0Mg6N57MT6-vhn0Y_n:54:34)]]> + at n. (src/test/fab/fab.test.ts?wtr-session-id=BCsT80KCe0P6XsjjzlTfY:54:34)]]> - + (src/test/fab/fab.test.ts?wtr-session-id=-3x0Mg6N57MT6-vhn0Y_n:63:30)]]> + at n. (src/test/fab/fab.test.ts?wtr-session-id=BCsT80KCe0P6XsjjzlTfY:63:30)]]> - + - - + + - + - + - + - + - + - - + + - + - + - + - + - + - + - + @@ -344,79 +344,79 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -424,13 +424,13 @@ - - - - + + + + - - + + @@ -443,29 +443,29 @@ - + - + - + - + - + - - - + + + - + @@ -483,7 +483,7 @@ - + @@ -496,25 +496,25 @@ - + - - + + - + - + - + @@ -531,17 +531,17 @@ - + - + - + @@ -553,63 +553,63 @@ - + - - - + + + - + - - + + - - - + + + - + - - + + - + - + - - + + - - + + @@ -624,7 +624,7 @@ - + @@ -635,22 +635,22 @@ - + - - - - - - - - - + + + + + + + + + - - + + @@ -709,23 +709,23 @@ - + - + - - - + + + + - - + - + @@ -733,29 +733,29 @@ - + - + - + - - + + - - + + - - - + + + - + @@ -772,19 +772,19 @@ - + - + - + @@ -795,53 +795,53 @@ - + - - + + - + - - - + + + - + - + - + - + - + - + - + \ No newline at end of file From 57fbf3bbf9e9086463337ab2c2902fae19efe347 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 23 Dec 2024 14:44:09 +0000 Subject: [PATCH 79/82] [automated commit] lint format and import sort --- src/test/json-results.json | 7200 +++++++++++++++++++++++++++++++++++- src/test/test-results.xml | 416 ++- 2 files changed, 7412 insertions(+), 204 deletions(-) diff --git a/src/test/json-results.json b/src/test/json-results.json index a3fad59..271bbeb 100644 --- a/src/test/json-results.json +++ b/src/test/json-results.json @@ -1 +1,7199 @@ -{"skipped":null} \ No newline at end of file +{ + "declaration": { + "attributes": { + "version": "1.0", + "encoding": "UTF-8" + } + }, + "elements": [ + { + "type": "element", + "name": "testsuites", + "elements": [ + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/action-menu/action-menu-button.test.ts", + "id": "0", + "tests": "6", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.081" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/action-menu/action-menu-button.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessability requirements", + "time": "0.075", + "classname": "zeta-action-menu-button Accessibility Tests", + "file": "src/test/action-menu/action-menu-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "aligns the zeta droppable to the start", + "time": "0.001", + "classname": "zeta-action-menu-button Dimensions Tests", + "file": "src/test/action-menu/action-menu-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "aligns the zeta droppable to the center", + "time": "0.002", + "classname": "zeta-action-menu-button Dimensions Tests", + "file": "src/test/action-menu/action-menu-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "aligns the zeta droppable to the end", + "time": "0.001", + "classname": "zeta-action-menu-button Dimensions Tests", + "file": "src/test/action-menu/action-menu-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "opens the action menu when clicked", + "time": "0.001", + "classname": "zeta-action-menu-button Interaction Tests", + "file": "src/test/action-menu/action-menu-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "closes the dropdown menu when clicked outside", + "time": "0.001", + "classname": "zeta-action-menu-button Interaction Tests", + "file": "src/test/action-menu/action-menu-button.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/appbar/appbar.test.ts", + "id": "0", + "tests": "6", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.007" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/appbar/appbar.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the appbar with default values", + "time": "0.004", + "classname": "zeta-top-appbar Content Tests", + "file": "src/test/appbar/appbar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the appbar with centered title", + "time": "0.001", + "classname": "zeta-top-appbar Content Tests", + "file": "src/test/appbar/appbar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the appbar with extended title", + "time": "0.001", + "classname": "zeta-top-appbar Content Tests", + "file": "src/test/appbar/appbar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders content in the appbars leading slot", + "time": "0", + "classname": "zeta-top-appbar Content Tests", + "file": "src/test/appbar/appbar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders content in the appbars trailing slot", + "time": "0.001", + "classname": "zeta-top-appbar Content Tests", + "file": "src/test/appbar/appbar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders content in the appbar", + "time": "0", + "classname": "zeta-top-appbar Content Tests", + "file": "src/test/appbar/appbar.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/avatar/avatar.test.ts", + "id": "0", + "tests": "8", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.014000000000000004" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/avatar/avatar.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the avatar with a custom size", + "time": "0.008", + "classname": "zeta-avatar Content Tests", + "file": "src/test/avatar/avatar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the avatar with the ring", + "time": "0.001", + "classname": "zeta-avatar Content Tests", + "file": "src/test/avatar/avatar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the avatar without the ring", + "time": "0", + "classname": "zeta-avatar Content Tests", + "file": "src/test/avatar/avatar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the avatar with the close icon", + "time": "0.001", + "classname": "zeta-avatar Content Tests", + "file": "src/test/avatar/avatar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the avatar without the close icon", + "time": "0", + "classname": "zeta-avatar Content Tests", + "file": "src/test/avatar/avatar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the avatar with an image", + "time": "0.001", + "classname": "zeta-avatar Content Tests", + "file": "src/test/avatar/avatar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the avatar with an icon", + "time": "0.001", + "classname": "zeta-avatar Content Tests", + "file": "src/test/avatar/avatar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the badge on the avatar", + "time": "0.002", + "classname": "zeta-avatar Content Tests", + "file": "src/test/avatar/avatar.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/bottom-sheets/bottom-sheet.test.ts", + "id": "0", + "tests": "18", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.223" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "it meets accessibility requirements", + "time": "0.115", + "classname": "zeta-bottom-sheet + zeta-list-item Accessibility Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the bottom sheet", + "time": "0", + "classname": "zeta-bottom-sheet + zeta-list-item Content Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "displays the header text correctly", + "time": "0", + "classname": "zeta-bottom-sheet + zeta-list-item Content Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "updates when isExpanded changes", + "time": "0", + "classname": "zeta-bottom-sheet + zeta-list-item Content Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "applies the correct header alignment", + "time": "0.001", + "classname": "zeta-bottom-sheet + zeta-list-item Dimensions Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "applies the correct css display for list items", + "time": "0.001", + "classname": "zeta-bottom-sheet + zeta-list-item Dimensions Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "it meets accessibility requirements", + "time": "0.043", + "classname": "zeta-bottom-sheet + zeta-grid-menu-item Accessibility Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the bottom sheet", + "time": "0", + "classname": "zeta-bottom-sheet + zeta-grid-menu-item Content Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "displays the header text correctly", + "time": "0", + "classname": "zeta-bottom-sheet + zeta-grid-menu-item Content Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "updates when isExpanded changes", + "time": "0", + "classname": "zeta-bottom-sheet + zeta-grid-menu-item Content Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "applies the correct header alignment", + "time": "0", + "classname": "zeta-bottom-sheet + zeta-grid-menu-item Dimensions Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "applies the correct css display for grid items", + "time": "0.001", + "classname": "zeta-bottom-sheet + zeta-grid-menu-item Dimensions Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "it meets accessibility requirements", + "time": "0.06", + "classname": "zeta-bottom-sheet + generic content Accessibility Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the bottom sheet", + "time": "0", + "classname": "zeta-bottom-sheet + generic content Content Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "displays the header text correctly", + "time": "0", + "classname": "zeta-bottom-sheet + generic content Content Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "updates when isExpanded changes", + "time": "0.001", + "classname": "zeta-bottom-sheet + generic content Content Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "applies the correct header alignment", + "time": "0.001", + "classname": "zeta-bottom-sheet + generic content Dimensions Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "applies the correct css display for generic content", + "time": "0", + "classname": "zeta-bottom-sheet + generic content Dimensions Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/breadcrumbs/breadcrumb.test.ts", + "id": "0", + "tests": "4", + "skipped": "1", + "errors": "0", + "failures": "0", + "time": "0.105" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/breadcrumbs/breadcrumb.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessibility requirements", + "time": "0.104", + "classname": "zeta-breadcrumb Accessibility Tests", + "file": "src/test/breadcrumbs/breadcrumb.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the correct number of breadcrumb items", + "time": "0.001", + "classname": "zeta-breadcrumb Content Tests", + "file": "src/test/breadcrumbs/breadcrumb.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the truncated breadcrumb ", + "time": "0", + "classname": "zeta-breadcrumb Content Tests", + "file": "src/test/breadcrumbs/breadcrumb.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the correct number of breadcrumb items after the more menu has been clicked", + "time": "0", + "classname": "zeta-breadcrumb Interaction Tests", + "file": "src/test/breadcrumbs/breadcrumb.test.ts" + }, + "elements": [ + { + "type": "element", + "name": "skipped" + } + ] + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/button/button.test.ts", + "id": "0", + "tests": "5", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.062" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/button/button.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessibility requirements", + "time": "0.061", + "classname": "zeta-button Accessibility Tests", + "file": "src/test/button/button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should render the correct text within the button", + "time": "0", + "classname": "zeta-button Content Tests", + "file": "src/test/button/button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should reset forms", + "time": "0.001", + "classname": "zeta-button AS form reset control Interaction Tests", + "file": "src/test/button/button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should not reset forms if disabled via JS", + "time": "0", + "classname": "zeta-button AS form reset control Interaction Tests", + "file": "src/test/button/button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should not reset forms if disabled via DOM", + "time": "0", + "classname": "zeta-button AS form reset control Interaction Tests", + "file": "src/test/button/button.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/button/icon-button.test.ts", + "id": "0", + "tests": "25", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.17900000000000002" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/button/icon-button.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessibility requirements for the primary flavor", + "time": "0.069", + "classname": "zeta-icon-button Accessibility Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessibility requirements for the positive flavor", + "time": "0.019", + "classname": "zeta-icon-button Accessibility Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessibility requirements for the negative flavor", + "time": "0.017", + "classname": "zeta-icon-button Accessibility Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessibility requirements for the outline flavor", + "time": "0.019", + "classname": "zeta-icon-button Accessibility Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessibility requirements for the outline-subtle flavor", + "time": "0.023", + "classname": "zeta-icon-button Accessibility Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessibility requirements for the text flavor", + "time": "0.02", + "classname": "zeta-icon-button Accessibility Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should render the correct icon", + "time": "0.001", + "classname": "zeta-icon-button Content Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should display correct icon color when disabled", + "time": "0.001", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should display correct icon color for primary flavor", + "time": "0", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should display correct icon color for negative flavor", + "time": "0.001", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should display correct icon color for text flavor", + "time": "0.001", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should display correct icon color for outline-subtle flavor", + "time": "0.001", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "button should have correct background color for the primary flavor", + "time": "0.001", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "button should have correct background color for the secondary flavor", + "time": "0", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "button should have correct background color for the positive flavor", + "time": "0", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "button should have correct background color for the negative flavor", + "time": "0", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "button should have correct background color for the outline flavor", + "time": "0", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "button should have correct background color for the outline-subtle flavor", + "time": "0", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "button should have correct background color for the text flavor", + "time": "0.001", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should render the button with the correct color when set by CSS Variable", + "time": "0.001", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should render the icon with the correct color when set by CSS Variable", + "time": "0.001", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should render the icon with the correct color when disabled when set by CSS Variable", + "time": "0.001", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should reset forms", + "time": "0.002", + "classname": "zeta-icon-button AS form reset control Interaction Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should not reset forms if disabled via JS", + "time": "0", + "classname": "zeta-icon-button AS form reset control Interaction Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should not reset forms if disabled via DOM", + "time": "0", + "classname": "zeta-icon-button AS form reset control Interaction Tests", + "file": "src/test/button/icon-button.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/card/card-header.test.ts", + "id": "0", + "tests": "5", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.108" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/card/card-header.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessability requirements", + "time": "0.107", + "classname": "zeta-card-header Accessibility Tests", + "file": "src/test/card/card-header.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the heading correctly", + "time": "0.001", + "classname": "zeta-card-header Content Tests", + "file": "src/test/card/card-header.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the subheading correctly", + "time": "0", + "classname": "zeta-card-header Content Tests", + "file": "src/test/card/card-header.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the leading content correctly", + "time": "0", + "classname": "zeta-card-header Content Tests", + "file": "src/test/card/card-header.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the trailing content correctly", + "time": "0", + "classname": "zeta-card-header Content Tests", + "file": "src/test/card/card-header.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/checkbox/checkbox.test.ts", + "id": "0", + "tests": "7", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.002" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/checkbox/checkbox.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the name attribute correctly", + "time": "0.001", + "classname": "zeta-checkbox Content Tests", + "file": "src/test/checkbox/checkbox.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the id attribute correctly", + "time": "0.001", + "classname": "zeta-checkbox Content Tests", + "file": "src/test/checkbox/checkbox.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "creates from document.createElement", + "time": "0", + "classname": "zeta-checkbox Content Tests", + "file": "src/test/checkbox/checkbox.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "creates from constructor", + "time": "0", + "classname": "zeta-checkbox Content Tests", + "file": "src/test/checkbox/checkbox.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "changes the checked state when clicked", + "time": "0", + "classname": "zeta-checkbox Interaction Tests", + "file": "src/test/checkbox/checkbox.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the checkbox label correctly", + "time": "0", + "classname": "zeta-checkbox + label Content Tests", + "file": "src/test/checkbox/checkbox.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "checks the checkbox when label is clicked", + "time": "0", + "classname": "zeta-checkbox + label Interaction Tests", + "file": "src/test/checkbox/checkbox.test.ts" + } + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/dialog/dialog.test.ts", + "id": "0", + "tests": "5", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.010000000000000002" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/dialog/dialog.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "creates from document.createElement", + "time": "0.001", + "classname": "zeta-dialog Content Tests", + "file": "src/test/dialog/dialog.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "creates from constructor", + "time": "0", + "classname": "zeta-dialog Content Tests", + "file": "src/test/dialog/dialog.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "changes open property on open", + "time": "0.007", + "classname": "zeta-dialog Content Tests", + "file": "src/test/dialog/dialog.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "changes open property on close", + "time": "0.001", + "classname": "zeta-dialog Content Tests", + "file": "src/test/dialog/dialog.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "calls close method and sets return value", + "time": "0.001", + "classname": "zeta-dialog Content Tests", + "file": "src/test/dialog/dialog.test.ts" + } + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/dropdown/dropdown-menu-button.test.ts", + "id": "0", + "tests": "10", + "skipped": "1", + "errors": "0", + "failures": "0", + "time": "0.019000000000000003" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/dropdown/dropdown-menu-button.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessability requirements", + "time": "0", + "classname": "zeta-dropdown-menu-button Accessibility Tests", + "file": "src/test/dropdown/dropdown-menu-button.test.ts" + }, + "elements": [ + { + "type": "element", + "name": "skipped" + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the text correctly", + "time": "0", + "classname": "zeta-dropdown-menu-button Content Tests", + "file": "src/test/dropdown/dropdown-menu-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "has the same width as the zeta droppable", + "time": "0.002", + "classname": "zeta-dropdown-menu-button Dimensions Tests", + "file": "src/test/dropdown/dropdown-menu-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "aligns the zeta droppable to the bottom of the dropdown menu button", + "time": "0.001", + "classname": "zeta-dropdown-menu-button Dimensions Tests", + "file": "src/test/dropdown/dropdown-menu-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "opens the dropdown menu when clicked", + "time": "0.001", + "classname": "zeta-dropdown-menu-button Interaction Tests", + "file": "src/test/dropdown/dropdown-menu-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "closes the dropdown menu when clicked outside", + "time": "0.001", + "classname": "zeta-dropdown-menu-button Interaction Tests", + "file": "src/test/dropdown/dropdown-menu-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "closes the dropdown menu when clicked inside", + "time": "0.001", + "classname": "zeta-dropdown-menu-button Interaction Tests", + "file": "src/test/dropdown/dropdown-menu-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "returns the selected item when a wrapping form is submitted", + "time": "0.002", + "classname": "zeta-dropdown-menu-button Interaction Tests", + "file": "src/test/dropdown/dropdown-menu-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "returns the selected checkboxes when a wrapping form is submitted", + "time": "0.005", + "classname": "zeta-dropdown-menu-button Interaction Tests", + "file": "src/test/dropdown/dropdown-menu-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "returns the selected radio button when a wrapping form is submitted", + "time": "0.006", + "classname": "zeta-dropdown-menu-button Interaction Tests", + "file": "src/test/dropdown/dropdown-menu-button.test.ts" + } + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/dropdown/dropdown-menu-item.test.ts", + "id": "0", + "tests": "11", + "skipped": "2", + "errors": "0", + "failures": "0", + "time": "0.069" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/dropdown/dropdown-menu-item.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessability requirements", + "time": "0.065", + "classname": "zeta-dropdown-menu-item Accessibility Tests", + "file": "src/test/dropdown/dropdown-menu-item.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the given text", + "time": "0", + "classname": "zeta-dropdown-menu-item Content Tests", + "file": "src/test/dropdown/dropdown-menu-item.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders an icon with the correct name with the 'default' type", + "time": "0.001", + "classname": "zeta-dropdown-menu-item Content Tests", + "file": "src/test/dropdown/dropdown-menu-item.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the rounded attribute correctly", + "time": "0.001", + "classname": "zeta-dropdown-menu-item Content Tests", + "file": "src/test/dropdown/dropdown-menu-item.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the disabled attribute correctly", + "time": "0", + "classname": "zeta-dropdown-menu-item Content Tests", + "file": "src/test/dropdown/dropdown-menu-item.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct colors when not disabled", + "time": "0.001", + "classname": "zeta-dropdown-menu-item Styling Tests", + "file": "src/test/dropdown/dropdown-menu-item.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct colors when disabled", + "time": "0.001", + "classname": "zeta-dropdown-menu-item Styling Tests", + "file": "src/test/dropdown/dropdown-menu-item.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct icon color when not disabled", + "time": "0", + "classname": "zeta-dropdown-menu-item Styling Tests", + "file": "src/test/dropdown/dropdown-menu-item.test.ts" + }, + "elements": [ + { + "type": "element", + "name": "skipped" + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct icon color when disabled", + "time": "0", + "classname": "zeta-dropdown-menu-item Styling Tests", + "file": "src/test/dropdown/dropdown-menu-item.test.ts" + }, + "elements": [ + { + "type": "element", + "name": "skipped" + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct border radius when rounded is true", + "time": "0", + "classname": "zeta-dropdown-menu-item Styling Tests", + "file": "src/test/dropdown/dropdown-menu-item.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct border radius when rounded is false", + "time": "0", + "classname": "zeta-dropdown-menu-item Styling Tests", + "file": "src/test/dropdown/dropdown-menu-item.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/dropdown/droppable.test.ts", + "id": "0", + "tests": "7", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.059000000000000004" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/dropdown/droppable.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessability requirements", + "time": "0.058", + "classname": "zeta-droppable Accessibility Tests", + "file": "src/test/dropdown/droppable.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the open attribute correctly", + "time": "0.001", + "classname": "zeta-droppable Content Tests", + "file": "src/test/dropdown/droppable.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "is visible when open is true", + "time": "0", + "classname": "zeta-droppable Content Tests", + "file": "src/test/dropdown/droppable.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "is not visible when open is false", + "time": "0", + "classname": "zeta-droppable Content Tests", + "file": "src/test/dropdown/droppable.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the rounded attribute correctly", + "time": "0", + "classname": "zeta-droppable Content Tests", + "file": "src/test/dropdown/droppable.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct border radius when rounded is true", + "time": "0", + "classname": "zeta-droppable Styling Tests", + "file": "src/test/dropdown/droppable.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct border radius when rounded is false", + "time": "0", + "classname": "zeta-droppable Styling Tests", + "file": "src/test/dropdown/droppable.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/fab/fab.test.ts", + "id": "0", + "tests": "12", + "skipped": "0", + "errors": "3", + "failures": "3", + "time": "0.07400000000000001" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/fab/fab.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessability requirements", + "time": "0.066", + "classname": "zeta-fab Accessibility Tests", + "file": "src/test/fab/fab.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders a button with a label", + "time": "0.001", + "classname": "zeta-fab Content Tests", + "file": "src/test/fab/fab.test.ts", + "line": "35" + }, + "elements": [ + { + "type": "element", + "name": "failure", + "attributes": { + "message": "expected null to exist", + "type": "AssertionError" + }, + "elements": [ + { + "type": "cdata", + "cdata": "AssertionError: expected null to exist\n at n. (src/test/fab/fab.test.ts?wtr-session-id=uNIApcBRbFRih3IvnFDTM:35:61)" + } + ] + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders a button with an icon", + "time": "0", + "classname": "zeta-fab Content Tests", + "file": "src/test/fab/fab.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders no label when label is empty", + "time": "0.001", + "classname": "zeta-fab Content Tests", + "file": "src/test/fab/fab.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders an extended fab", + "time": "0", + "classname": "zeta-fab Content Tests", + "file": "src/test/fab/fab.test.ts", + "line": "54" + }, + "elements": [ + { + "type": "element", + "name": "failure", + "attributes": { + "message": "expected null to exist", + "type": "AssertionError" + }, + "elements": [ + { + "type": "cdata", + "cdata": "AssertionError: expected null to exist\n at n. (src/test/fab/fab.test.ts?wtr-session-id=uNIApcBRbFRih3IvnFDTM:54:34)" + } + ] + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders a default fab", + "time": "0", + "classname": "zeta-fab Content Tests", + "file": "src/test/fab/fab.test.ts", + "line": "63" + }, + "elements": [ + { + "type": "element", + "name": "failure", + "attributes": { + "message": "expected null to exist", + "type": "AssertionError" + }, + "elements": [ + { + "type": "cdata", + "cdata": "AssertionError: expected null to exist\n at n. (src/test/fab/fab.test.ts?wtr-session-id=uNIApcBRbFRih3IvnFDTM:63:30)" + } + ] + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders a small fab", + "time": "0.001", + "classname": "zeta-fab Dimensions Tests", + "file": "src/test/fab/fab.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders a large fab", + "time": "0.001", + "classname": "zeta-fab Dimensions Tests", + "file": "src/test/fab/fab.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders a full rounded fab", + "time": "0.001", + "classname": "zeta-fab Styling Tests", + "file": "src/test/fab/fab.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders a rounded small fab", + "time": "0.001", + "classname": "zeta-fab Styling Tests", + "file": "src/test/fab/fab.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders a rounded large fab", + "time": "0.001", + "classname": "zeta-fab Styling Tests", + "file": "src/test/fab/fab.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders a non-rounded fab", + "time": "0.001", + "classname": "zeta-fab Styling Tests", + "file": "src/test/fab/fab.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/file-upload/file-upload.test.ts", + "id": "0", + "tests": "1", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.097" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/file-upload/file-upload.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessibility requirements", + "time": "0.097", + "classname": "zeta-file-upload Accessibility Tests", + "file": "src/test/file-upload/file-upload.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/file-upload/upload-item.test.ts", + "id": "0", + "tests": "5", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.011" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/file-upload/upload-item.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders default flavor correctly", + "time": "0.009", + "classname": "zeta-upload-item Content Tests", + "file": "src/test/file-upload/upload-item.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders completed flavor correctly", + "time": "0.001", + "classname": "zeta-upload-item Content Tests", + "file": "src/test/file-upload/upload-item.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders error flavor correctly", + "time": "0", + "classname": "zeta-upload-item Content Tests", + "file": "src/test/file-upload/upload-item.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "updates progress correctly", + "time": "0.001", + "classname": "zeta-upload-item Content Tests", + "file": "src/test/file-upload/upload-item.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "fires ZetaCloseEvent:close when close icon is clicked", + "time": "0", + "classname": "zeta-upload-item Interaction Tests", + "file": "src/test/file-upload/upload-item.test.ts" + } + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/global-header/global-header.test.ts", + "id": "0", + "tests": "3", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.068" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/global-header/global-header.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessibility requirements", + "time": "0.063", + "classname": "zeta-global-header Accessibility Tests", + "file": "src/test/global-header/global-header.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders background color", + "time": "0.001", + "classname": "zeta-global-header Styling Tests", + "file": "src/test/global-header/global-header.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders background in dark-mode", + "time": "0.004", + "classname": "zeta-global-header Styling Tests", + "file": "src/test/global-header/global-header.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/grid-menu-item/grid-menu-item.test.ts", + "id": "0", + "tests": "4", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.076" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/grid-menu-item/grid-menu-item.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessibility requirements", + "time": "0.076", + "classname": "zeta-grid-menu-item Accessibility Tests", + "file": "src/test/grid-menu-item/grid-menu-item.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the given icon", + "time": "0", + "classname": "zeta-grid-menu-item Content Tests", + "file": "src/test/grid-menu-item/grid-menu-item.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the given label", + "time": "0", + "classname": "zeta-grid-menu-item Content Tests", + "file": "src/test/grid-menu-item/grid-menu-item.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the given badge", + "time": "0", + "classname": "zeta-grid-menu-item Content Tests", + "file": "src/test/grid-menu-item/grid-menu-item.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/in-page-banner/in-page-banner.test.ts", + "id": "0", + "tests": "3", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.098" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/in-page-banner/in-page-banner.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessibility requirements", + "time": "0.098", + "classname": "zeta-in-page-banner Accessibility Tests", + "file": "src/test/in-page-banner/in-page-banner.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the heading correctly", + "time": "0", + "classname": "zeta-in-page-banner Content Tests", + "file": "src/test/in-page-banner/in-page-banner.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the subheading correctly", + "time": "0", + "classname": "zeta-in-page-banner Content Tests", + "file": "src/test/in-page-banner/in-page-banner.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/navigation-bar/navigation-bar.test.ts", + "id": "0", + "tests": "6", + "skipped": "1", + "errors": "0", + "failures": "0", + "time": "0.089" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/navigation-bar/navigation-bar.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessability requirements", + "time": "0.088", + "classname": "zeta-navigation-bar Accessibility Tests", + "file": "src/test/navigation-bar/navigation-bar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the correct number of navigation bar items", + "time": "0", + "classname": "zeta-navigation-bar Content Tests", + "file": "src/test/navigation-bar/navigation-bar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the correct label and icon for each navigation bar item", + "time": "0.001", + "classname": "zeta-navigation-bar Content Tests", + "file": "src/test/navigation-bar/navigation-bar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the correct badge content for each navigation bar item", + "time": "0", + "classname": "zeta-navigation-bar Content Tests", + "file": "src/test/navigation-bar/navigation-bar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "updates badge content when the value changes", + "time": "0", + "classname": "zeta-navigation-bar Content Tests", + "file": "src/test/navigation-bar/navigation-bar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "keeps a fixed width", + "time": "0", + "classname": "zeta-navigation-bar spacer Dimensions Tests", + "file": "src/test/navigation-bar/navigation-bar.test.ts" + }, + "elements": [ + { + "type": "element", + "name": "skipped" + } + ] + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/navigation-drawer/navigation-drawer.test.ts", + "id": "0", + "tests": "1", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.05" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/navigation-drawer/navigation-drawer.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessibility requirements", + "time": "0.05", + "classname": "zeta-navigation-drawer Accessibility Tests", + "file": "src/test/navigation-drawer/navigation-drawer.test.ts" + } + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/navigation-drawer-footer/navigation-drawer-footer.test.ts", + "id": "0", + "tests": "1", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.072" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/navigation-drawer-footer/navigation-drawer-footer.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessibility requirements", + "time": "0.072", + "classname": "zeta-navigation-drawer-footer Accessibility Tests", + "file": "src/test/navigation-drawer-footer/navigation-drawer-footer.test.ts" + } + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/navigation-drawer-item/navigation-drawer-item.test.ts", + "id": "0", + "tests": "1", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.064" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/navigation-drawer-item/navigation-drawer-item.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessibility requirements", + "time": "0.064", + "classname": "zeta-navigation-drawer-item Accessibility Tests", + "file": "src/test/navigation-drawer-item/navigation-drawer-item.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/navigation-drawer-sub-item/navigation-drawer-sub-item.test.ts", + "id": "0", + "tests": "1", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.066" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/navigation-drawer-sub-item/navigation-drawer-sub-item.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessibility requirements", + "time": "0.066", + "classname": "zeta-navigation-drawer-sub-item Accessibility Tests", + "file": "src/test/navigation-drawer-sub-item/navigation-drawer-sub-item.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/navigation-header/navigation-header.test.ts", + "id": "0", + "tests": "1", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.046" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/navigation-header/navigation-header.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessibility requirements", + "time": "0.046", + "classname": "zeta-navigation-header Accessibility Tests", + "file": "src/test/navigation-header/navigation-header.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/navigation-profile/navigation-profile.test.ts", + "id": "0", + "tests": "1", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.046" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/navigation-profile/navigation-profile.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessibility requirements", + "time": "0.046", + "classname": "zeta-navigation-profile Accessibility Tests", + "file": "src/test/navigation-profile/navigation-profile.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/navigation-rail/navigation-rail-item.test.ts", + "id": "0", + "tests": "4", + "skipped": "1", + "errors": "0", + "failures": "0", + "time": "0.006" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/navigation-rail/navigation-rail-item.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the label slot correctly", + "time": "0.005", + "classname": "zeta-navigation-rail-item Content Tests", + "file": "src/test/navigation-rail/navigation-rail-item.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the icon slot correctly", + "time": "0.001", + "classname": "zeta-navigation-rail-item Content Tests", + "file": "src/test/navigation-rail/navigation-rail-item.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "reflects the 'selected' property correctly", + "time": "0", + "classname": "zeta-navigation-rail-item Content Tests", + "file": "src/test/navigation-rail/navigation-rail-item.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "goes to the correct href when clicked", + "time": "0", + "classname": "zeta-navigation-rail-item Interaction Tests", + "file": "src/test/navigation-rail/navigation-rail-item.test.ts" + }, + "elements": [ + { + "type": "element", + "name": "skipped" + } + ] + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/navigation-rail/navigation-rail.test.ts", + "id": "0", + "tests": "2", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.008" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/navigation-rail/navigation-rail.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the navigation items", + "time": "0.007", + "classname": "zeta-navigation-rail Content Tests", + "file": "src/test/navigation-rail/navigation-rail.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "hides any slotted elements that aren't zeta-navigation-rail-item", + "time": "0.001", + "classname": "zeta-navigation-rail Content Tests", + "file": "src/test/navigation-rail/navigation-rail.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/pagination/pagination.test.ts", + "id": "0", + "tests": "10", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.027000000000000003" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/pagination/pagination.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "creates from document.createElement", + "time": "0.001", + "classname": "zeta-pagination Content Tests", + "file": "src/test/pagination/pagination.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "creates from constructor", + "time": "0", + "classname": "zeta-pagination Content Tests", + "file": "src/test/pagination/pagination.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should disable left controls", + "time": "0.011", + "classname": "zeta-pagination Content Tests", + "file": "src/test/pagination/pagination.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should disable right controls", + "time": "0.002", + "classname": "zeta-pagination Content Tests", + "file": "src/test/pagination/pagination.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should not set invalid page", + "time": "0.002", + "classname": "zeta-pagination Content Tests", + "file": "src/test/pagination/pagination.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should not set invalid page", + "time": "0.002", + "classname": "zeta-pagination Content Tests", + "file": "src/test/pagination/pagination.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should show left and right dots", + "time": "0.002", + "classname": "zeta-pagination Content Tests", + "file": "src/test/pagination/pagination.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should not show any dots", + "time": "0.002", + "classname": "zeta-pagination Content Tests", + "file": "src/test/pagination/pagination.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should increment page", + "time": "0.003", + "classname": "zeta-pagination Interaction Tests", + "file": "src/test/pagination/pagination.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should decrement page", + "time": "0.002", + "classname": "zeta-pagination Interaction Tests", + "file": "src/test/pagination/pagination.test.ts" + } + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/progress-bar/progress-bar.test.ts", + "id": "0", + "tests": "1", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.07" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/progress-bar/progress-bar.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessibility requirements", + "time": "0.07", + "classname": "zeta-progress-bar Accessibility Tests", + "file": "src/test/progress-bar/progress-bar.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/progress-circle/progress-circle.test.ts", + "id": "0", + "tests": "7", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.013" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/progress-circle/progress-circle.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "creates from document.createElement", + "time": "0.001", + "classname": "ZetaProgressCircle Content Tests", + "file": "src/test/progress-circle/progress-circle.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "creates from constructor", + "time": "0", + "classname": "ZetaProgressCircle Content Tests", + "file": "src/test/progress-circle/progress-circle.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should set value to 100 if above 100", + "time": "0.005", + "classname": "ZetaProgressCircle Content Tests", + "file": "src/test/progress-circle/progress-circle.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should set value to 0 if below 0", + "time": "0.001", + "classname": "ZetaProgressCircle Content Tests", + "file": "src/test/progress-circle/progress-circle.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should set value ", + "time": "0", + "classname": "ZetaProgressCircle Content Tests", + "file": "src/test/progress-circle/progress-circle.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should render uploading components", + "time": "0.004", + "classname": "ZetaProgressCircle Content Tests", + "file": "src/test/progress-circle/progress-circle.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should fire a ZetaCancelUploadEvent on button click", + "time": "0.002", + "classname": "ZetaProgressCircle Interaction Tests", + "file": "src/test/progress-circle/progress-circle.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/radio-button/radio-button.test.ts", + "id": "0", + "tests": "9", + "skipped": "3", + "errors": "0", + "failures": "0", + "time": "0.004" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/radio-button/radio-button.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessibility requirements", + "time": "0", + "classname": "zeta-radio-button Accessibility Tests", + "file": "src/test/radio-button/radio-button.test.ts" + }, + "elements": [ + { + "type": "element", + "name": "skipped" + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "doesn't meet accessibility requirement without a label", + "time": "0", + "classname": "zeta-radio-button Accessibility Tests", + "file": "src/test/radio-button/radio-button.test.ts" + }, + "elements": [ + { + "type": "element", + "name": "skipped" + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "is accessible by adding aria-label", + "time": "0", + "classname": "zeta-radio-button Accessibility Tests", + "file": "src/test/radio-button/radio-button.test.ts" + }, + "elements": [ + { + "type": "element", + "name": "skipped" + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the name attribute correctly", + "time": "0.001", + "classname": "zeta-radio-button Content Tests", + "file": "src/test/radio-button/radio-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the id attribute correctly", + "time": "0.001", + "classname": "zeta-radio-button Content Tests", + "file": "src/test/radio-button/radio-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the radio button as unchecked by default", + "time": "0", + "classname": "zeta-radio-button Content Tests", + "file": "src/test/radio-button/radio-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "changes the checked state when clicked", + "time": "0.001", + "classname": "zeta-radio-button Interaction Tests", + "file": "src/test/radio-button/radio-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the radio label correctly", + "time": "0", + "classname": "zeta-radio-button label Content Tests", + "file": "src/test/radio-button/radio-button.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "checks the radio when label is clicked", + "time": "0.001", + "classname": "zeta-radio-button label Interaction Tests", + "file": "src/test/radio-button/radio-button.test.ts" + } + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/range-selector/range-selector.test.ts", + "id": "0", + "tests": "14", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.099" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessibility requirements", + "time": "0.093", + "classname": "zeta-range-selector Accessibility Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the zeta slider", + "time": "0.001", + "classname": "zeta-range-selector Content Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the label", + "time": "0.001", + "classname": "zeta-range-selector Content Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the lower input field", + "time": "0", + "classname": "zeta-range-selector Content Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the upper input field", + "time": "0", + "classname": "zeta-range-selector Content Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the initial values correctly", + "time": "0.001", + "classname": "zeta-range-selector Content Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the lower input width and height correctly", + "time": "0", + "classname": "zeta-range-selector Dimensions Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the upper input width and height correctly", + "time": "0", + "classname": "zeta-range-selector Dimensions Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct styles for the label", + "time": "0.001", + "classname": "zeta-range-selector Styling Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct styles for the lower input", + "time": "0", + "classname": "zeta-range-selector Styling Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct styles for the upper input", + "time": "0", + "classname": "zeta-range-selector Styling Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "updates the hidden input value when the slider value changes", + "time": "0.001", + "classname": "zeta-range-selector Interaction Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "updates the slider value when the lower input value changes", + "time": "0.001", + "classname": "zeta-range-selector Interaction Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "updates the slider value when the lower input value changes", + "time": "0", + "classname": "zeta-range-selector Interaction Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/search/search.test.ts", + "id": "0", + "tests": "13", + "skipped": "1", + "errors": "0", + "failures": "0", + "time": "0.018000000000000006" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/search/search.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "creates from document.createElement", + "time": "0", + "classname": "zeta-search Content Tests", + "file": "src/test/search/search.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "creates from constructor", + "time": "0", + "classname": "zeta-search Content Tests", + "file": "src/test/search/search.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "focus on input when field focused", + "time": "0.008", + "classname": "zeta-search Content Tests", + "file": "src/test/search/search.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "blur input when field is blurred", + "time": "0.001", + "classname": "zeta-search Content Tests", + "file": "src/test/search/search.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should render microphone icon", + "time": "0.002", + "classname": "zeta-search Content Tests", + "file": "src/test/search/search.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should not render microphone icon", + "time": "0.001", + "classname": "zeta-search Content Tests", + "file": "src/test/search/search.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should set correct default icon size", + "time": "0.001", + "classname": "zeta-search Dimensions Tests", + "file": "src/test/search/search.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should set correct small icon size", + "time": "0.001", + "classname": "zeta-search Dimensions Tests", + "file": "src/test/search/search.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should set correct large icon size", + "time": "0.001", + "classname": "zeta-search Dimensions Tests", + "file": "src/test/search/search.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should set correct disabled icon color", + "time": "0.001", + "classname": "zeta-search Styling Tests", + "file": "src/test/search/search.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "clears input", + "time": "0.001", + "classname": "zeta-search Interaction Tests", + "file": "src/test/search/search.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should call input onchange", + "time": "0.001", + "classname": "zeta-search Interaction Tests", + "file": "src/test/search/search.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should not be activatable", + "time": "0", + "classname": "zeta-search Interaction Tests", + "file": "src/test/search/search.test.ts" + }, + "elements": [ + { + "type": "element", + "name": "skipped" + } + ] + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/segmented-control/segmented-control.test.ts", + "id": "0", + "tests": "4", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.013000000000000001" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/segmented-control/segmented-control.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the segmented control with the correct number of items", + "time": "0.009", + "classname": "zeta-segmented-control Content Tests", + "file": "src/test/segmented-control/segmented-control.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the first item as active by default", + "time": "0.002", + "classname": "zeta-segmented-control Content Tests", + "file": "src/test/segmented-control/segmented-control.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "hides any slotted elements that aren't zeta-segmented-item", + "time": "0.001", + "classname": "zeta-segmented-control Content Tests", + "file": "src/test/segmented-control/segmented-control.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "updates the active item when a different item is clicked", + "time": "0.001", + "classname": "zeta-segmented-control Interaction Tests", + "file": "src/test/segmented-control/segmented-control.test.ts" + } + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-segmented-control scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-segmented-control scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-segmented-control scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-segmented-control scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/slider/slider.test.ts", + "id": "0", + "tests": "16", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.077" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/slider/slider.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessibility requirements", + "time": "0.071", + "classname": "zeta-slider Accessibility Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the track", + "time": "0", + "classname": "zeta-slider Content Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the left handle and not the right handle when type is default", + "time": "0", + "classname": "zeta-slider Content Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the right handle when type is range", + "time": "0.001", + "classname": "zeta-slider Content Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets initial values correctly", + "time": "0.001", + "classname": "zeta-slider Content Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the track height correctly", + "time": "0", + "classname": "zeta-slider Dimensions Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the handle width and height correctly", + "time": "0", + "classname": "zeta-slider Dimensions Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct margin on the slider", + "time": "0", + "classname": "zeta-slider Dimensions Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct background color for the track", + "time": "0", + "classname": "zeta-slider Styling Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct color for the selected area", + "time": "0", + "classname": "zeta-slider Styling Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct background color for the handle", + "time": "0", + "classname": "zeta-slider Styling Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct color for the selected area and handle when pressed down", + "time": "0", + "classname": "zeta-slider Styling Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct border radius for the handle", + "time": "0.001", + "classname": "zeta-slider Styling Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct border radius for the track", + "time": "0.001", + "classname": "zeta-slider Styling Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "updates the value when the handle is dragged", + "time": "0", + "classname": "zeta-slider Interaction Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "updates the lower and upper values when the handles are dragged", + "time": "0.002", + "classname": "zeta-slider Interaction Tests", + "file": "src/test/slider/slider.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/slider-input-field/slider-input-field.test.ts", + "id": "0", + "tests": "13", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.109" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessibility requirements", + "time": "0.086", + "classname": "zeta-slider-input-field Accessibility Tests", + "file": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the zeta slider", + "time": "0", + "classname": "zeta-slider-input-field Content Tests", + "file": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the label", + "time": "0", + "classname": "zeta-slider-input-field Content Tests", + "file": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the input field", + "time": "0", + "classname": "zeta-slider-input-field Content Tests", + "file": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the min and max labels", + "time": "0", + "classname": "zeta-slider-input-field Content Tests", + "file": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the initial values correctly", + "time": "0.001", + "classname": "zeta-slider-input-field Content Tests", + "file": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the input width and height correctly", + "time": "0.001", + "classname": "zeta-slider-input-field Dimensions Tests", + "file": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct styles for the label", + "time": "0", + "classname": "zeta-slider-input-field Styling Tests", + "file": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct styles for the input", + "time": "0", + "classname": "zeta-slider-input-field Styling Tests", + "file": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct styles for the range labels", + "time": "0", + "classname": "zeta-slider-input-field Styling Tests", + "file": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "updates the hidden input value when the slider value changes", + "time": "0.001", + "classname": "zeta-slider-input-field Interaction Tests", + "file": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "updates the slider value when the input value changes", + "time": "0", + "classname": "zeta-slider-input-field Interaction Tests", + "file": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "returns the correct data when in a form", + "time": "0.02", + "classname": "zeta-slider-input-field Interaction Tests", + "file": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-slider-input-field scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-slider-input-field scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-slider-input-field scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-slider-input-field scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-slider-input-field scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-slider-input-field scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-slider-input-field scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-slider-input-field scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-slider-input-field scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-slider-input-field scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-slider-input-field scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-slider-input-field scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-slider-input-field scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/snackbar/snackbar.test.ts", + "id": "0", + "tests": "19", + "skipped": "1", + "errors": "0", + "failures": "0", + "time": "0.16599999999999998" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessibility requirements", + "time": "0", + "classname": "zeta-snackbar Accessibility Tests", + "file": "src/test/snackbar/snackbar.test.ts" + }, + "elements": [ + { + "type": "element", + "name": "skipped" + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "displays the correct text in the slot", + "time": "0.001", + "classname": "zeta-snackbar Content Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "displays the correct text in the action button", + "time": "0", + "classname": "zeta-snackbar Content Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "displays the correct icon in the slot", + "time": "0.001", + "classname": "zeta-snackbar Content Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets full border radius correctly", + "time": "0", + "classname": "zeta-snackbar Styling Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets true border radius correctly", + "time": "0.001", + "classname": "zeta-snackbar Styling Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets false border radius correctly", + "time": "0.001", + "classname": "zeta-snackbar Styling Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct colors for default status", + "time": "0.002", + "classname": "zeta-snackbar Styling Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct colors for positive status", + "time": "0.001", + "classname": "zeta-snackbar Styling Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct colors for info status", + "time": "0.001", + "classname": "zeta-snackbar Styling Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct colors for warning status", + "time": "0.001", + "classname": "zeta-snackbar Styling Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct colors for negative status", + "time": "0.001", + "classname": "zeta-snackbar Styling Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct colors for view status", + "time": "0", + "classname": "zeta-snackbar Styling Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "removes the element from the screen when the close icon is clicked", + "time": "0.024", + "classname": "zeta-snackbar Interaction Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "removes the element from the screen when the close icon is enter pressed", + "time": "0.006", + "classname": "zeta-snackbar Interaction Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "removes the element from the screen when the close icon is space pressed", + "time": "0.007", + "classname": "zeta-snackbar Interaction Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "calls the action function on enter pressed", + "time": "0.052", + "classname": "zeta-snackbar Interaction Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "calls the action function on space pressed", + "time": "0.052", + "classname": "zeta-snackbar Interaction Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "calls the action function on mouse click", + "time": "0.015", + "classname": "zeta-snackbar Interaction Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Action Clicked" + } + ] + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/stepper-input/stepper-input.test.ts", + "id": "0", + "tests": "9", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.013000000000000005" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/stepper-input/stepper-input.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "creates from document.createElement", + "time": "0.001", + "classname": "zeta-stepper-input Content Tests", + "file": "src/test/stepper-input/stepper-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "creates from constructor", + "time": "0", + "classname": "zeta-stepper-input Content Tests", + "file": "src/test/stepper-input/stepper-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets value", + "time": "0.007", + "classname": "zeta-stepper-input Content Tests", + "file": "src/test/stepper-input/stepper-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets value to max value", + "time": "0.001", + "classname": "zeta-stepper-input Content Tests", + "file": "src/test/stepper-input/stepper-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets value to min value", + "time": "0.001", + "classname": "zeta-stepper-input Content Tests", + "file": "src/test/stepper-input/stepper-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "doesn't change value", + "time": "0", + "classname": "zeta-stepper-input Content Tests", + "file": "src/test/stepper-input/stepper-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "doesn't change value", + "time": "0.001", + "classname": "zeta-stepper-input Content Tests", + "file": "src/test/stepper-input/stepper-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets value to min value via input onchange", + "time": "0.001", + "classname": "zeta-stepper-input Content Tests", + "file": "src/test/stepper-input/stepper-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets value to max value via input onchange", + "time": "0.001", + "classname": "zeta-stepper-input Content Tests", + "file": "src/test/stepper-input/stepper-input.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/stepper-input/stepper.test.ts", + "id": "0", + "tests": "3", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.006" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/stepper-input/stepper.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "creates from document.createElement", + "time": "0.001", + "classname": "zeta-stepper Content Tests", + "file": "src/test/stepper-input/stepper.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "creates from constructor", + "time": "0", + "classname": "zeta-stepper Content Tests", + "file": "src/test/stepper-input/stepper.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should render steps", + "time": "0.005", + "classname": "zeta-stepper Content Tests", + "file": "src/test/stepper-input/stepper.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/switch/switch.test.ts", + "id": "0", + "tests": "15", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.123" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/switch/switch.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "creates from document.createElement", + "time": "0.002", + "classname": "zeta-switch Content Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "creates from constructor", + "time": "0.001", + "classname": "zeta-switch Content Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "focus on button when switch focused", + "time": "0.001", + "classname": "zeta-switch Content Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "blur on button when switch blurred", + "time": "0", + "classname": "zeta-switch Content Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "activeIcon color", + "time": "0.001", + "classname": "zeta-switch Styling Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "inactiveIcon color", + "time": "0.001", + "classname": "zeta-switch Styling Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "track backgroundColor", + "time": "0", + "classname": "zeta-switch Styling Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "thumb backgroundColor", + "time": "0", + "classname": "zeta-switch Styling Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should toggle the state when clicked by accessibility tools", + "time": "0.001", + "classname": "zeta-switch Interaction Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "inactiveIcon color, :hover color", + "time": "0.005", + "classname": "zeta-switch disabled Styling Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "activeIcon color, :hover color", + "time": "0.015", + "classname": "zeta-switch disabled Styling Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "track backgroundColor, :hover backgroundColor", + "time": "0.016", + "classname": "zeta-switch disabled Styling Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "thumb backgroundColor, :hover backgroundColor", + "time": "0.015", + "classname": "zeta-switch disabled Styling Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "track backgroundColor", + "time": "0.033", + "classname": "zeta-switch:hover Styling Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "thumb backgroundColor", + "time": "0.032", + "classname": "zeta-switch:hover Styling Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "type": "element", + "name": "system-out", + "elements": [ + { + "type": "cdata", + "cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/tag/tag.test.ts", + "id": "0", + "tests": "5", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.053" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/tag/tag.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "it meets accessibility requirements", + "time": "0.053", + "classname": "zeta-tag Accessibility Tests", + "file": "src/test/tag/tag.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the default properties correctly", + "time": "0", + "classname": "zeta-tag Content Tests", + "file": "src/test/tag/tag.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "manages point attribute correctly", + "time": "0", + "classname": "zeta-tag Content Tests", + "file": "src/test/tag/tag.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "manages text attribute correctly", + "time": "0", + "classname": "zeta-tag Content Tests", + "file": "src/test/tag/tag.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "renders the passed text into a span", + "time": "0", + "classname": "zeta-tag Content Tests", + "file": "src/test/tag/tag.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/text-input/text-input.test.ts", + "id": "0", + "tests": "22", + "skipped": "1", + "errors": "0", + "failures": "0", + "time": "0.04100000000000001" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/text-input/text-input.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "creates from document.createElement", + "time": "0", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + }, + "elements": [ + { + "type": "element", + "name": "skipped" + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "creates from constructor", + "time": "0.001", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "focus on input when field focused", + "time": "0.009", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should not focus on input when field disabled", + "time": "0.001", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "blur on input when field blurred", + "time": "0.002", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should render icon", + "time": "0.003", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should render icon on the right", + "time": "0.001", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should render prefix", + "time": "0.001", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should render suffix", + "time": "0.001", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should render label", + "time": "0", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should render hint text", + "time": "0.001", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should render error icon", + "time": "0.001", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should render error text", + "time": "0.001", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should change value", + "time": "0.001", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should apply type textarea", + "time": "0.001", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should apply type password", + "time": "0.001", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should apply type time", + "time": "0.007", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should apply type data", + "time": "0.004", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should render error icon color", + "time": "0.002", + "classname": "zeta-text-input Styling Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should render error text color", + "time": "0.001", + "classname": "zeta-text-input Styling Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should set disabled color to icon when field is disabled", + "time": "0.001", + "classname": "zeta-text-input Styling Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "should toggle password visibility", + "time": "0.001", + "classname": "zeta-text-input Interaction Tests", + "file": "src/test/text-input/text-input.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/chips/assist-chip/assist-chip.test.ts", + "id": "0", + "tests": "3", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.114" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/chips/assist-chip/assist-chip.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "meets accessibility requirements", + "time": "0.114", + "classname": "zeta-assist-chip Accessibility Tests", + "file": "src/test/chips/assist-chip/assist-chip.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct text on the chip", + "time": "0", + "classname": "zeta-assist-chip Content Tests", + "file": "src/test/chips/assist-chip/assist-chip.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "displays the correct icon", + "time": "0", + "classname": "zeta-assist-chip Content Tests", + "file": "src/test/chips/assist-chip/assist-chip.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/chips/filter-chip/filter-chip.test.ts", + "id": "0", + "tests": "3", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.084" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/chips/filter-chip/filter-chip.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "it meets accessibility requirements", + "time": "0.08", + "classname": "zeta-filter-chip Accessibility Tests", + "file": "src/test/chips/filter-chip/filter-chip.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct text on the chip", + "time": "0.001", + "classname": "zeta-filter-chip Content Tests", + "file": "src/test/chips/filter-chip/filter-chip.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "shows the check icon when active", + "time": "0.003", + "classname": "zeta-filter-chip Content Tests", + "file": "src/test/chips/filter-chip/filter-chip.test.ts" + } + } + ] + }, + { + "type": "element", + "name": "testsuite", + "attributes": { + "name": "Chromium_playwright_/src/test/chips/input-chip/input-chip.test.ts", + "id": "0", + "tests": "2", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.057" + }, + "elements": [ + { + "type": "element", + "name": "properties", + "elements": [ + { + "type": "element", + "name": "property", + "attributes": { + "name": "test.fileName", + "value": "src/test/chips/input-chip/input-chip.test.ts" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "type": "element", + "name": "property", + "attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "it meets accessibility requirements", + "time": "0.057", + "classname": "zeta-input-chip Accessibility Tests", + "file": "src/test/chips/input-chip/input-chip.test.ts" + } + }, + { + "type": "element", + "name": "testcase", + "attributes": { + "name": "sets the correct text on the chip", + "time": "0", + "classname": "zeta-input-chip Content Tests", + "file": "src/test/chips/input-chip/input-chip.test.ts" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/test/test-results.xml b/src/test/test-results.xml index b4ff8a2..4452729 100644 --- a/src/test/test-results.xml +++ b/src/test/test-results.xml @@ -1,19 +1,19 @@ - + - - + + - + @@ -21,12 +21,12 @@ - - - + + + - + @@ -39,9 +39,9 @@ - + - + @@ -50,101 +50,101 @@ - + - - - - - + + + + + - - - + + + - + - + - + - - + + - + - - + + - - + + - + - - - - - - + + + + + + - + - - - - + + + + - + - - + + - + - - + + - + - + - - - + + + @@ -163,7 +163,7 @@ - + @@ -171,11 +171,16 @@ - + - + + + + + + - + @@ -184,14 +189,14 @@ - - + + - + @@ -214,16 +219,16 @@ - + - + - + @@ -233,8 +238,8 @@ - - + + @@ -242,141 +247,146 @@ - + - + - + - + - + (src/test/fab/fab.test.ts?wtr-session-id=BCsT80KCe0P6XsjjzlTfY:35:61)]]> + at n. (src/test/fab/fab.test.ts?wtr-session-id=uNIApcBRbFRih3IvnFDTM:35:61)]]> (src/test/fab/fab.test.ts?wtr-session-id=BCsT80KCe0P6XsjjzlTfY:54:34)]]> + at n. (src/test/fab/fab.test.ts?wtr-session-id=uNIApcBRbFRih3IvnFDTM:54:34)]]> - + (src/test/fab/fab.test.ts?wtr-session-id=BCsT80KCe0P6XsjjzlTfY:63:30)]]> + at n. (src/test/fab/fab.test.ts?wtr-session-id=uNIApcBRbFRih3IvnFDTM:63:30)]]> - - + + - + - + - + - + - + - + + + + + + - + - + - + - + - - + + - + - + - + - + - - + + - + - + - + - + - + - + - + - + @@ -386,37 +396,37 @@ - + - + - + - - - + + + - + - + - + @@ -424,13 +434,13 @@ - + - - + + @@ -443,29 +453,29 @@ - + - + - + - + - - - + + + - + @@ -481,7 +491,7 @@ - + @@ -496,13 +506,13 @@ - + - + @@ -515,7 +525,7 @@ - + @@ -531,17 +541,17 @@ - + - + - - + + @@ -553,63 +563,63 @@ - + - - - + + + - + - - + + - + - + - + - - - - + + + + - + - + - + - - - + + + - - + + @@ -624,7 +634,7 @@ - + @@ -636,21 +646,21 @@ - + - + - + - - + + - + - - + + @@ -709,23 +719,23 @@ - + - + - - - - + + + + - + - + @@ -733,28 +743,28 @@ - + - + - - - - + + + + - - + + - - - - - + + + + + @@ -772,7 +782,7 @@ - + @@ -780,11 +790,11 @@ - + - + @@ -794,54 +804,54 @@ - - - + + + - - + + - - - + + + - - + + - + - + - + - + - - - + + + - + - + \ No newline at end of file From f5d310d2e2b9dbe775a5f61f9efaf1fba1f8c3fa Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Mon, 23 Dec 2024 15:26:21 +0000 Subject: [PATCH 80/82] test --- src/components/fab/fab.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/fab/fab.ts b/src/components/fab/fab.ts index 2beb806..4a6fe1c 100644 --- a/src/components/fab/fab.ts +++ b/src/components/fab/fab.ts @@ -63,7 +63,7 @@ export class ZetaFab extends Flavored(BaseButton) { `; } - // TESTING + // TESTING END // private getLabel() { // return this.label ? html`
${this.label}
` : nothing; From 2d448b8bfdda04f0ab21afea618546107b457b27 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 23 Dec 2024 15:38:55 +0000 Subject: [PATCH 81/82] [automated commit] lint format and import sort --- src/test/test-results.xml | 394 +-- src/test/testResults.json | 4816 +++++++++++++++++++++++++++++++++++++ 2 files changed, 5013 insertions(+), 197 deletions(-) create mode 100644 src/test/testResults.json diff --git a/src/test/test-results.xml b/src/test/test-results.xml index 4452729..fddfa02 100644 --- a/src/test/test-results.xml +++ b/src/test/test-results.xml @@ -1,17 +1,17 @@ - + - - + + - + @@ -19,119 +19,119 @@ - + - - - + + + - + - - - - - - + + + + + + - + - + - + - - + + - + - + - + - - + + - + - + - - + + - + - - - - - + + + + + - + - - - - + + + + - + - - - + + + - + - - - + + + @@ -142,12 +142,12 @@ - + - + @@ -163,7 +163,7 @@ - + @@ -171,7 +171,7 @@ - + @@ -180,7 +180,7 @@ - + @@ -189,15 +189,15 @@ - + - - + + - + @@ -219,67 +219,67 @@ - + - + - - + + - + - - + + - + - + - + - + - + - + (src/test/fab/fab.test.ts?wtr-session-id=uNIApcBRbFRih3IvnFDTM:35:61)]]> + at n. (src/test/fab/fab.test.ts?wtr-session-id=gFG4do0oTKgkLqBcerWLm:35:61)]]> - - + + (src/test/fab/fab.test.ts?wtr-session-id=uNIApcBRbFRih3IvnFDTM:54:34)]]> + at n. (src/test/fab/fab.test.ts?wtr-session-id=gFG4do0oTKgkLqBcerWLm:54:34)]]> (src/test/fab/fab.test.ts?wtr-session-id=uNIApcBRbFRih3IvnFDTM:63:30)]]> + at n. (src/test/fab/fab.test.ts?wtr-session-id=gFG4do0oTKgkLqBcerWLm:63:30)]]> - - + + @@ -291,102 +291,102 @@ - + - - - + + + - + - + - - + + - + - + - + - + - + - + - - + + - + - + - + - + - + - + - + - + @@ -396,37 +396,37 @@ - + - + - + - - + + - + - + - + @@ -435,13 +435,13 @@ - - + + - + @@ -453,29 +453,29 @@ - + - + - + - + - - - - - + + + + + - + @@ -490,12 +490,12 @@ - - - - + + + + - + @@ -506,26 +506,26 @@ - + - - + + - + - + - + @@ -547,7 +547,7 @@ - + @@ -558,68 +558,68 @@ - + - + - + - + - + - + - - - + + + - + - - + + - + - + - + - + - - + + - + - - + + @@ -634,7 +634,7 @@ - + @@ -643,24 +643,24 @@ - + - + - - + + - - - + + + - + - + @@ -719,7 +719,7 @@ - + @@ -727,15 +727,15 @@ - - + + - + - + @@ -743,7 +743,7 @@ - + @@ -751,21 +751,21 @@ - - + + - - + + - + - - - - - - + + + + + + @@ -782,19 +782,19 @@ - + - + - + @@ -804,35 +804,35 @@ - + - - + + - + - + - - + + - + - - + + @@ -841,9 +841,9 @@ - + - + diff --git a/src/test/testResults.json b/src/test/testResults.json new file mode 100644 index 0000000..1d5d705 --- /dev/null +++ b/src/test/testResults.json @@ -0,0 +1,4816 @@ +{ + "_declaration": { + "_attributes": { + "version": "1.0", + "encoding": "UTF-8" + } + }, + "testsuites": { + "testsuite": [ + { + "_attributes": { + "name": "Chromium_playwright_/src/test/action-menu/action-menu-button.test.ts", + "id": "0", + "tests": "6", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.098" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/action-menu/action-menu-button.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "meets accessability requirements", + "time": "0.089", + "classname": "zeta-action-menu-button Accessibility Tests", + "file": "src/test/action-menu/action-menu-button.test.ts" + } + }, + { + "_attributes": { + "name": "aligns the zeta droppable to the start", + "time": "0.003", + "classname": "zeta-action-menu-button Dimensions Tests", + "file": "src/test/action-menu/action-menu-button.test.ts" + } + }, + { + "_attributes": { + "name": "aligns the zeta droppable to the center", + "time": "0.002", + "classname": "zeta-action-menu-button Dimensions Tests", + "file": "src/test/action-menu/action-menu-button.test.ts" + } + }, + { + "_attributes": { + "name": "aligns the zeta droppable to the end", + "time": "0.001", + "classname": "zeta-action-menu-button Dimensions Tests", + "file": "src/test/action-menu/action-menu-button.test.ts" + } + }, + { + "_attributes": { + "name": "opens the action menu when clicked", + "time": "0.001", + "classname": "zeta-action-menu-button Interaction Tests", + "file": "src/test/action-menu/action-menu-button.test.ts" + } + }, + { + "_attributes": { + "name": "closes the dropdown menu when clicked outside", + "time": "0.002", + "classname": "zeta-action-menu-button Interaction Tests", + "file": "src/test/action-menu/action-menu-button.test.ts" + } + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/appbar/appbar.test.ts", + "id": "0", + "tests": "6", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.007" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/appbar/appbar.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "renders the appbar with default values", + "time": "0.005", + "classname": "zeta-top-appbar Content Tests", + "file": "src/test/appbar/appbar.test.ts" + } + }, + { + "_attributes": { + "name": "renders the appbar with centered title", + "time": "0.001", + "classname": "zeta-top-appbar Content Tests", + "file": "src/test/appbar/appbar.test.ts" + } + }, + { + "_attributes": { + "name": "renders the appbar with extended title", + "time": "0", + "classname": "zeta-top-appbar Content Tests", + "file": "src/test/appbar/appbar.test.ts" + } + }, + { + "_attributes": { + "name": "renders content in the appbars leading slot", + "time": "0.001", + "classname": "zeta-top-appbar Content Tests", + "file": "src/test/appbar/appbar.test.ts" + } + }, + { + "_attributes": { + "name": "renders content in the appbars trailing slot", + "time": "0", + "classname": "zeta-top-appbar Content Tests", + "file": "src/test/appbar/appbar.test.ts" + } + }, + { + "_attributes": { + "name": "renders content in the appbar", + "time": "0", + "classname": "zeta-top-appbar Content Tests", + "file": "src/test/appbar/appbar.test.ts" + } + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/avatar/avatar.test.ts", + "id": "0", + "tests": "8", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.014" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/avatar/avatar.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "renders the avatar with a custom size", + "time": "0.007", + "classname": "zeta-avatar Content Tests", + "file": "src/test/avatar/avatar.test.ts" + } + }, + { + "_attributes": { + "name": "renders the avatar with the ring", + "time": "0", + "classname": "zeta-avatar Content Tests", + "file": "src/test/avatar/avatar.test.ts" + } + }, + { + "_attributes": { + "name": "renders the avatar without the ring", + "time": "0.001", + "classname": "zeta-avatar Content Tests", + "file": "src/test/avatar/avatar.test.ts" + } + }, + { + "_attributes": { + "name": "renders the avatar with the close icon", + "time": "0", + "classname": "zeta-avatar Content Tests", + "file": "src/test/avatar/avatar.test.ts" + } + }, + { + "_attributes": { + "name": "renders the avatar without the close icon", + "time": "0.001", + "classname": "zeta-avatar Content Tests", + "file": "src/test/avatar/avatar.test.ts" + } + }, + { + "_attributes": { + "name": "renders the avatar with an image", + "time": "0.002", + "classname": "zeta-avatar Content Tests", + "file": "src/test/avatar/avatar.test.ts" + } + }, + { + "_attributes": { + "name": "renders the avatar with an icon", + "time": "0.001", + "classname": "zeta-avatar Content Tests", + "file": "src/test/avatar/avatar.test.ts" + } + }, + { + "_attributes": { + "name": "renders the badge on the avatar", + "time": "0.002", + "classname": "zeta-avatar Content Tests", + "file": "src/test/avatar/avatar.test.ts" + } + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/bottom-sheets/bottom-sheet.test.ts", + "id": "0", + "tests": "18", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.243" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "it meets accessibility requirements", + "time": "0.116", + "classname": "zeta-bottom-sheet + zeta-list-item Accessibility Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "_attributes": { + "name": "renders the bottom sheet", + "time": "0", + "classname": "zeta-bottom-sheet + zeta-list-item Content Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "_attributes": { + "name": "displays the header text correctly", + "time": "0", + "classname": "zeta-bottom-sheet + zeta-list-item Content Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "_attributes": { + "name": "updates when isExpanded changes", + "time": "0", + "classname": "zeta-bottom-sheet + zeta-list-item Content Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "_attributes": { + "name": "applies the correct header alignment", + "time": "0.001", + "classname": "zeta-bottom-sheet + zeta-list-item Dimensions Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "_attributes": { + "name": "applies the correct css display for list items", + "time": "0.001", + "classname": "zeta-bottom-sheet + zeta-list-item Dimensions Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "_attributes": { + "name": "it meets accessibility requirements", + "time": "0.044", + "classname": "zeta-bottom-sheet + zeta-grid-menu-item Accessibility Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "_attributes": { + "name": "renders the bottom sheet", + "time": "0", + "classname": "zeta-bottom-sheet + zeta-grid-menu-item Content Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "_attributes": { + "name": "displays the header text correctly", + "time": "0", + "classname": "zeta-bottom-sheet + zeta-grid-menu-item Content Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "_attributes": { + "name": "updates when isExpanded changes", + "time": "0", + "classname": "zeta-bottom-sheet + zeta-grid-menu-item Content Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "_attributes": { + "name": "applies the correct header alignment", + "time": "0", + "classname": "zeta-bottom-sheet + zeta-grid-menu-item Dimensions Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "_attributes": { + "name": "applies the correct css display for grid items", + "time": "0", + "classname": "zeta-bottom-sheet + zeta-grid-menu-item Dimensions Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "_attributes": { + "name": "it meets accessibility requirements", + "time": "0.079", + "classname": "zeta-bottom-sheet + generic content Accessibility Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "_attributes": { + "name": "renders the bottom sheet", + "time": "0", + "classname": "zeta-bottom-sheet + generic content Content Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "_attributes": { + "name": "displays the header text correctly", + "time": "0", + "classname": "zeta-bottom-sheet + generic content Content Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "_attributes": { + "name": "updates when isExpanded changes", + "time": "0", + "classname": "zeta-bottom-sheet + generic content Content Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "_attributes": { + "name": "applies the correct header alignment", + "time": "0.001", + "classname": "zeta-bottom-sheet + generic content Dimensions Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + }, + { + "_attributes": { + "name": "applies the correct css display for generic content", + "time": "0.001", + "classname": "zeta-bottom-sheet + generic content Dimensions Tests", + "file": "src/test/bottom-sheets/bottom-sheet.test.ts" + } + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/breadcrumbs/breadcrumb.test.ts", + "id": "0", + "tests": "4", + "skipped": "1", + "errors": "0", + "failures": "0", + "time": "0.109" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/breadcrumbs/breadcrumb.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "meets accessibility requirements", + "time": "0.109", + "classname": "zeta-breadcrumb Accessibility Tests", + "file": "src/test/breadcrumbs/breadcrumb.test.ts" + } + }, + { + "_attributes": { + "name": "renders the correct number of breadcrumb items", + "time": "0", + "classname": "zeta-breadcrumb Content Tests", + "file": "src/test/breadcrumbs/breadcrumb.test.ts" + } + }, + { + "_attributes": { + "name": "renders the truncated breadcrumb ", + "time": "0", + "classname": "zeta-breadcrumb Content Tests", + "file": "src/test/breadcrumbs/breadcrumb.test.ts" + } + }, + { + "_attributes": { + "name": "renders the correct number of breadcrumb items after the more menu has been clicked", + "time": "0", + "classname": "zeta-breadcrumb Interaction Tests", + "file": "src/test/breadcrumbs/breadcrumb.test.ts" + }, + "skipped": {} + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/button/button.test.ts", + "id": "0", + "tests": "5", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.074" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/button/button.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "meets accessibility requirements", + "time": "0.071", + "classname": "zeta-button Accessibility Tests", + "file": "src/test/button/button.test.ts" + } + }, + { + "_attributes": { + "name": "should render the correct text within the button", + "time": "0", + "classname": "zeta-button Content Tests", + "file": "src/test/button/button.test.ts" + } + }, + { + "_attributes": { + "name": "should reset forms", + "time": "0.001", + "classname": "zeta-button AS form reset control Interaction Tests", + "file": "src/test/button/button.test.ts" + } + }, + { + "_attributes": { + "name": "should not reset forms if disabled via JS", + "time": "0.001", + "classname": "zeta-button AS form reset control Interaction Tests", + "file": "src/test/button/button.test.ts" + } + }, + { + "_attributes": { + "name": "should not reset forms if disabled via DOM", + "time": "0.001", + "classname": "zeta-button AS form reset control Interaction Tests", + "file": "src/test/button/button.test.ts" + } + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/button/icon-button.test.ts", + "id": "0", + "tests": "25", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.19899999999999998" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/button/icon-button.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "meets accessibility requirements for the primary flavor", + "time": "0.069", + "classname": "zeta-icon-button Accessibility Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "_attributes": { + "name": "meets accessibility requirements for the positive flavor", + "time": "0.022", + "classname": "zeta-icon-button Accessibility Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "_attributes": { + "name": "meets accessibility requirements for the negative flavor", + "time": "0.023", + "classname": "zeta-icon-button Accessibility Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "_attributes": { + "name": "meets accessibility requirements for the outline flavor", + "time": "0.02", + "classname": "zeta-icon-button Accessibility Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "_attributes": { + "name": "meets accessibility requirements for the outline-subtle flavor", + "time": "0.025", + "classname": "zeta-icon-button Accessibility Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "_attributes": { + "name": "meets accessibility requirements for the text flavor", + "time": "0.021", + "classname": "zeta-icon-button Accessibility Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "_attributes": { + "name": "should render the correct icon", + "time": "0.001", + "classname": "zeta-icon-button Content Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "_attributes": { + "name": "should display correct icon color when disabled", + "time": "0.001", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "_attributes": { + "name": "should display correct icon color for primary flavor", + "time": "0.001", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "_attributes": { + "name": "should display correct icon color for negative flavor", + "time": "0.001", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "_attributes": { + "name": "should display correct icon color for text flavor", + "time": "0.001", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "_attributes": { + "name": "should display correct icon color for outline-subtle flavor", + "time": "0.001", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "_attributes": { + "name": "button should have correct background color for the primary flavor", + "time": "0.001", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "_attributes": { + "name": "button should have correct background color for the secondary flavor", + "time": "0", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "_attributes": { + "name": "button should have correct background color for the positive flavor", + "time": "0.001", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "_attributes": { + "name": "button should have correct background color for the negative flavor", + "time": "0.001", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "_attributes": { + "name": "button should have correct background color for the outline flavor", + "time": "0.002", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "_attributes": { + "name": "button should have correct background color for the outline-subtle flavor", + "time": "0.001", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "_attributes": { + "name": "button should have correct background color for the text flavor", + "time": "0.001", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "_attributes": { + "name": "should render the button with the correct color when set by CSS Variable", + "time": "0.002", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "_attributes": { + "name": "should render the icon with the correct color when set by CSS Variable", + "time": "0.001", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "_attributes": { + "name": "should render the icon with the correct color when disabled when set by CSS Variable", + "time": "0.001", + "classname": "zeta-icon-button Styling Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "_attributes": { + "name": "should reset forms", + "time": "0", + "classname": "zeta-icon-button AS form reset control Interaction Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "_attributes": { + "name": "should not reset forms if disabled via JS", + "time": "0.001", + "classname": "zeta-icon-button AS form reset control Interaction Tests", + "file": "src/test/button/icon-button.test.ts" + } + }, + { + "_attributes": { + "name": "should not reset forms if disabled via DOM", + "time": "0.001", + "classname": "zeta-icon-button AS form reset control Interaction Tests", + "file": "src/test/button/icon-button.test.ts" + } + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/card/card-header.test.ts", + "id": "0", + "tests": "5", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.103" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/card/card-header.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "meets accessability requirements", + "time": "0.102", + "classname": "zeta-card-header Accessibility Tests", + "file": "src/test/card/card-header.test.ts" + } + }, + { + "_attributes": { + "name": "sets the heading correctly", + "time": "0", + "classname": "zeta-card-header Content Tests", + "file": "src/test/card/card-header.test.ts" + } + }, + { + "_attributes": { + "name": "sets the subheading correctly", + "time": "0.001", + "classname": "zeta-card-header Content Tests", + "file": "src/test/card/card-header.test.ts" + } + }, + { + "_attributes": { + "name": "sets the leading content correctly", + "time": "0", + "classname": "zeta-card-header Content Tests", + "file": "src/test/card/card-header.test.ts" + } + }, + { + "_attributes": { + "name": "sets the trailing content correctly", + "time": "0", + "classname": "zeta-card-header Content Tests", + "file": "src/test/card/card-header.test.ts" + } + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/checkbox/checkbox.test.ts", + "id": "0", + "tests": "7", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.002" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/checkbox/checkbox.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "sets the name attribute correctly", + "time": "0.001", + "classname": "zeta-checkbox Content Tests", + "file": "src/test/checkbox/checkbox.test.ts" + } + }, + { + "_attributes": { + "name": "sets the id attribute correctly", + "time": "0", + "classname": "zeta-checkbox Content Tests", + "file": "src/test/checkbox/checkbox.test.ts" + } + }, + { + "_attributes": { + "name": "creates from document.createElement", + "time": "0", + "classname": "zeta-checkbox Content Tests", + "file": "src/test/checkbox/checkbox.test.ts" + } + }, + { + "_attributes": { + "name": "creates from constructor", + "time": "0", + "classname": "zeta-checkbox Content Tests", + "file": "src/test/checkbox/checkbox.test.ts" + } + }, + { + "_attributes": { + "name": "changes the checked state when clicked", + "time": "0", + "classname": "zeta-checkbox Interaction Tests", + "file": "src/test/checkbox/checkbox.test.ts" + } + }, + { + "_attributes": { + "name": "renders the checkbox label correctly", + "time": "0", + "classname": "zeta-checkbox + label Content Tests", + "file": "src/test/checkbox/checkbox.test.ts" + } + }, + { + "_attributes": { + "name": "checks the checkbox when label is clicked", + "time": "0.001", + "classname": "zeta-checkbox + label Interaction Tests", + "file": "src/test/checkbox/checkbox.test.ts" + } + } + ], + "system-out": [ + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + }, + { + "_cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + }, + { + "_cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + }, + { + "_cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + }, + { + "_cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + }, + { + "_cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + }, + { + "_cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + }, + { + "_cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/dialog/dialog.test.ts", + "id": "0", + "tests": "5", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.009000000000000001" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/dialog/dialog.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "creates from document.createElement", + "time": "0.001", + "classname": "zeta-dialog Content Tests", + "file": "src/test/dialog/dialog.test.ts" + } + }, + { + "_attributes": { + "name": "creates from constructor", + "time": "0", + "classname": "zeta-dialog Content Tests", + "file": "src/test/dialog/dialog.test.ts" + } + }, + { + "_attributes": { + "name": "changes open property on open", + "time": "0.006", + "classname": "zeta-dialog Content Tests", + "file": "src/test/dialog/dialog.test.ts" + } + }, + { + "_attributes": { + "name": "changes open property on close", + "time": "0.001", + "classname": "zeta-dialog Content Tests", + "file": "src/test/dialog/dialog.test.ts" + } + }, + { + "_attributes": { + "name": "calls close method and sets return value", + "time": "0.001", + "classname": "zeta-dialog Content Tests", + "file": "src/test/dialog/dialog.test.ts" + } + } + ], + "system-out": [ + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + }, + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + }, + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + }, + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + }, + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/dropdown/dropdown-menu-button.test.ts", + "id": "0", + "tests": "10", + "skipped": "1", + "errors": "0", + "failures": "0", + "time": "0.02" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/dropdown/dropdown-menu-button.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "meets accessability requirements", + "time": "0", + "classname": "zeta-dropdown-menu-button Accessibility Tests", + "file": "src/test/dropdown/dropdown-menu-button.test.ts" + }, + "skipped": {} + }, + { + "_attributes": { + "name": "renders the text correctly", + "time": "0.001", + "classname": "zeta-dropdown-menu-button Content Tests", + "file": "src/test/dropdown/dropdown-menu-button.test.ts" + } + }, + { + "_attributes": { + "name": "has the same width as the zeta droppable", + "time": "0.002", + "classname": "zeta-dropdown-menu-button Dimensions Tests", + "file": "src/test/dropdown/dropdown-menu-button.test.ts" + } + }, + { + "_attributes": { + "name": "aligns the zeta droppable to the bottom of the dropdown menu button", + "time": "0.001", + "classname": "zeta-dropdown-menu-button Dimensions Tests", + "file": "src/test/dropdown/dropdown-menu-button.test.ts" + } + }, + { + "_attributes": { + "name": "opens the dropdown menu when clicked", + "time": "0.001", + "classname": "zeta-dropdown-menu-button Interaction Tests", + "file": "src/test/dropdown/dropdown-menu-button.test.ts" + } + }, + { + "_attributes": { + "name": "closes the dropdown menu when clicked outside", + "time": "0.001", + "classname": "zeta-dropdown-menu-button Interaction Tests", + "file": "src/test/dropdown/dropdown-menu-button.test.ts" + } + }, + { + "_attributes": { + "name": "closes the dropdown menu when clicked inside", + "time": "0.002", + "classname": "zeta-dropdown-menu-button Interaction Tests", + "file": "src/test/dropdown/dropdown-menu-button.test.ts" + } + }, + { + "_attributes": { + "name": "returns the selected item when a wrapping form is submitted", + "time": "0.003", + "classname": "zeta-dropdown-menu-button Interaction Tests", + "file": "src/test/dropdown/dropdown-menu-button.test.ts" + } + }, + { + "_attributes": { + "name": "returns the selected checkboxes when a wrapping form is submitted", + "time": "0.005", + "classname": "zeta-dropdown-menu-button Interaction Tests", + "file": "src/test/dropdown/dropdown-menu-button.test.ts" + } + }, + { + "_attributes": { + "name": "returns the selected radio button when a wrapping form is submitted", + "time": "0.004", + "classname": "zeta-dropdown-menu-button Interaction Tests", + "file": "src/test/dropdown/dropdown-menu-button.test.ts" + } + } + ], + "system-out": [ + { + "_cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-checkbox scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/dropdown/dropdown-menu-item.test.ts", + "id": "0", + "tests": "11", + "skipped": "2", + "errors": "0", + "failures": "0", + "time": "0.077" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/dropdown/dropdown-menu-item.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "meets accessability requirements", + "time": "0.072", + "classname": "zeta-dropdown-menu-item Accessibility Tests", + "file": "src/test/dropdown/dropdown-menu-item.test.ts" + } + }, + { + "_attributes": { + "name": "renders the given text", + "time": "0", + "classname": "zeta-dropdown-menu-item Content Tests", + "file": "src/test/dropdown/dropdown-menu-item.test.ts" + } + }, + { + "_attributes": { + "name": "renders an icon with the correct name with the 'default' type", + "time": "0.001", + "classname": "zeta-dropdown-menu-item Content Tests", + "file": "src/test/dropdown/dropdown-menu-item.test.ts" + } + }, + { + "_attributes": { + "name": "sets the rounded attribute correctly", + "time": "0", + "classname": "zeta-dropdown-menu-item Content Tests", + "file": "src/test/dropdown/dropdown-menu-item.test.ts" + } + }, + { + "_attributes": { + "name": "sets the disabled attribute correctly", + "time": "0.001", + "classname": "zeta-dropdown-menu-item Content Tests", + "file": "src/test/dropdown/dropdown-menu-item.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct colors when not disabled", + "time": "0.001", + "classname": "zeta-dropdown-menu-item Styling Tests", + "file": "src/test/dropdown/dropdown-menu-item.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct colors when disabled", + "time": "0", + "classname": "zeta-dropdown-menu-item Styling Tests", + "file": "src/test/dropdown/dropdown-menu-item.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct icon color when not disabled", + "time": "0", + "classname": "zeta-dropdown-menu-item Styling Tests", + "file": "src/test/dropdown/dropdown-menu-item.test.ts" + }, + "skipped": {} + }, + { + "_attributes": { + "name": "sets the correct icon color when disabled", + "time": "0", + "classname": "zeta-dropdown-menu-item Styling Tests", + "file": "src/test/dropdown/dropdown-menu-item.test.ts" + }, + "skipped": {} + }, + { + "_attributes": { + "name": "sets the correct border radius when rounded is true", + "time": "0.001", + "classname": "zeta-dropdown-menu-item Styling Tests", + "file": "src/test/dropdown/dropdown-menu-item.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct border radius when rounded is false", + "time": "0.001", + "classname": "zeta-dropdown-menu-item Styling Tests", + "file": "src/test/dropdown/dropdown-menu-item.test.ts" + } + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/dropdown/droppable.test.ts", + "id": "0", + "tests": "7", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.057" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/dropdown/droppable.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "meets accessability requirements", + "time": "0.054", + "classname": "zeta-droppable Accessibility Tests", + "file": "src/test/dropdown/droppable.test.ts" + } + }, + { + "_attributes": { + "name": "sets the open attribute correctly", + "time": "0.001", + "classname": "zeta-droppable Content Tests", + "file": "src/test/dropdown/droppable.test.ts" + } + }, + { + "_attributes": { + "name": "is visible when open is true", + "time": "0.001", + "classname": "zeta-droppable Content Tests", + "file": "src/test/dropdown/droppable.test.ts" + } + }, + { + "_attributes": { + "name": "is not visible when open is false", + "time": "0", + "classname": "zeta-droppable Content Tests", + "file": "src/test/dropdown/droppable.test.ts" + } + }, + { + "_attributes": { + "name": "sets the rounded attribute correctly", + "time": "0", + "classname": "zeta-droppable Content Tests", + "file": "src/test/dropdown/droppable.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct border radius when rounded is true", + "time": "0", + "classname": "zeta-droppable Styling Tests", + "file": "src/test/dropdown/droppable.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct border radius when rounded is false", + "time": "0.001", + "classname": "zeta-droppable Styling Tests", + "file": "src/test/dropdown/droppable.test.ts" + } + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/fab/fab.test.ts", + "id": "0", + "tests": "12", + "skipped": "0", + "errors": "3", + "failures": "3", + "time": "0.07300000000000001" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/fab/fab.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "meets accessability requirements", + "time": "0.065", + "classname": "zeta-fab Accessibility Tests", + "file": "src/test/fab/fab.test.ts" + } + }, + { + "_attributes": { + "name": "renders a button with a label", + "time": "0.001", + "classname": "zeta-fab Content Tests", + "file": "src/test/fab/fab.test.ts", + "line": "35" + }, + "failure": { + "_attributes": { + "message": "expected null to exist", + "type": "AssertionError" + }, + "_cdata": "AssertionError: expected null to exist\n at n. (src/test/fab/fab.test.ts?wtr-session-id=gFG4do0oTKgkLqBcerWLm:35:61)" + } + }, + { + "_attributes": { + "name": "renders a button with an icon", + "time": "0", + "classname": "zeta-fab Content Tests", + "file": "src/test/fab/fab.test.ts" + } + }, + { + "_attributes": { + "name": "renders no label when label is empty", + "time": "0", + "classname": "zeta-fab Content Tests", + "file": "src/test/fab/fab.test.ts" + } + }, + { + "_attributes": { + "name": "renders an extended fab", + "time": "0.001", + "classname": "zeta-fab Content Tests", + "file": "src/test/fab/fab.test.ts", + "line": "54" + }, + "failure": { + "_attributes": { + "message": "expected null to exist", + "type": "AssertionError" + }, + "_cdata": "AssertionError: expected null to exist\n at n. (src/test/fab/fab.test.ts?wtr-session-id=gFG4do0oTKgkLqBcerWLm:54:34)" + } + }, + { + "_attributes": { + "name": "renders a default fab", + "time": "0", + "classname": "zeta-fab Content Tests", + "file": "src/test/fab/fab.test.ts", + "line": "63" + }, + "failure": { + "_attributes": { + "message": "expected null to exist", + "type": "AssertionError" + }, + "_cdata": "AssertionError: expected null to exist\n at n. (src/test/fab/fab.test.ts?wtr-session-id=gFG4do0oTKgkLqBcerWLm:63:30)" + } + }, + { + "_attributes": { + "name": "renders a small fab", + "time": "0.001", + "classname": "zeta-fab Dimensions Tests", + "file": "src/test/fab/fab.test.ts" + } + }, + { + "_attributes": { + "name": "renders a large fab", + "time": "0.001", + "classname": "zeta-fab Dimensions Tests", + "file": "src/test/fab/fab.test.ts" + } + }, + { + "_attributes": { + "name": "renders a full rounded fab", + "time": "0", + "classname": "zeta-fab Styling Tests", + "file": "src/test/fab/fab.test.ts" + } + }, + { + "_attributes": { + "name": "renders a rounded small fab", + "time": "0.002", + "classname": "zeta-fab Styling Tests", + "file": "src/test/fab/fab.test.ts" + } + }, + { + "_attributes": { + "name": "renders a rounded large fab", + "time": "0.001", + "classname": "zeta-fab Styling Tests", + "file": "src/test/fab/fab.test.ts" + } + }, + { + "_attributes": { + "name": "renders a non-rounded fab", + "time": "0.001", + "classname": "zeta-fab Styling Tests", + "file": "src/test/fab/fab.test.ts" + } + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/file-upload/file-upload.test.ts", + "id": "0", + "tests": "1", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.097" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/file-upload/file-upload.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": { + "_attributes": { + "name": "meets accessibility requirements", + "time": "0.097", + "classname": "zeta-file-upload Accessibility Tests", + "file": "src/test/file-upload/file-upload.test.ts" + } + } + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/file-upload/upload-item.test.ts", + "id": "0", + "tests": "5", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.025" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/file-upload/upload-item.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "renders default flavor correctly", + "time": "0.02", + "classname": "zeta-upload-item Content Tests", + "file": "src/test/file-upload/upload-item.test.ts" + } + }, + { + "_attributes": { + "name": "renders completed flavor correctly", + "time": "0.002", + "classname": "zeta-upload-item Content Tests", + "file": "src/test/file-upload/upload-item.test.ts" + } + }, + { + "_attributes": { + "name": "renders error flavor correctly", + "time": "0.001", + "classname": "zeta-upload-item Content Tests", + "file": "src/test/file-upload/upload-item.test.ts" + } + }, + { + "_attributes": { + "name": "updates progress correctly", + "time": "0.001", + "classname": "zeta-upload-item Content Tests", + "file": "src/test/file-upload/upload-item.test.ts" + } + }, + { + "_attributes": { + "name": "fires ZetaCloseEvent:close when close icon is clicked", + "time": "0.001", + "classname": "zeta-upload-item Interaction Tests", + "file": "src/test/file-upload/upload-item.test.ts" + } + } + ], + "system-out": [ + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + }, + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + }, + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + }, + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + }, + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/global-header/global-header.test.ts", + "id": "0", + "tests": "3", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.079" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/global-header/global-header.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "meets accessibility requirements", + "time": "0.075", + "classname": "zeta-global-header Accessibility Tests", + "file": "src/test/global-header/global-header.test.ts" + } + }, + { + "_attributes": { + "name": "renders background color", + "time": "0", + "classname": "zeta-global-header Styling Tests", + "file": "src/test/global-header/global-header.test.ts" + } + }, + { + "_attributes": { + "name": "renders background in dark-mode", + "time": "0.004", + "classname": "zeta-global-header Styling Tests", + "file": "src/test/global-header/global-header.test.ts" + } + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/grid-menu-item/grid-menu-item.test.ts", + "id": "0", + "tests": "4", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.086" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/grid-menu-item/grid-menu-item.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "meets accessibility requirements", + "time": "0.086", + "classname": "zeta-grid-menu-item Accessibility Tests", + "file": "src/test/grid-menu-item/grid-menu-item.test.ts" + } + }, + { + "_attributes": { + "name": "renders the given icon", + "time": "0", + "classname": "zeta-grid-menu-item Content Tests", + "file": "src/test/grid-menu-item/grid-menu-item.test.ts" + } + }, + { + "_attributes": { + "name": "renders the given label", + "time": "0", + "classname": "zeta-grid-menu-item Content Tests", + "file": "src/test/grid-menu-item/grid-menu-item.test.ts" + } + }, + { + "_attributes": { + "name": "renders the given badge", + "time": "0", + "classname": "zeta-grid-menu-item Content Tests", + "file": "src/test/grid-menu-item/grid-menu-item.test.ts" + } + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/in-page-banner/in-page-banner.test.ts", + "id": "0", + "tests": "3", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.114" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/in-page-banner/in-page-banner.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "meets accessibility requirements", + "time": "0.114", + "classname": "zeta-in-page-banner Accessibility Tests", + "file": "src/test/in-page-banner/in-page-banner.test.ts" + } + }, + { + "_attributes": { + "name": "sets the heading correctly", + "time": "0", + "classname": "zeta-in-page-banner Content Tests", + "file": "src/test/in-page-banner/in-page-banner.test.ts" + } + }, + { + "_attributes": { + "name": "sets the subheading correctly", + "time": "0", + "classname": "zeta-in-page-banner Content Tests", + "file": "src/test/in-page-banner/in-page-banner.test.ts" + } + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/navigation-bar/navigation-bar.test.ts", + "id": "0", + "tests": "6", + "skipped": "1", + "errors": "0", + "failures": "0", + "time": "0.115" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/navigation-bar/navigation-bar.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "meets accessability requirements", + "time": "0.112", + "classname": "zeta-navigation-bar Accessibility Tests", + "file": "src/test/navigation-bar/navigation-bar.test.ts" + } + }, + { + "_attributes": { + "name": "renders the correct number of navigation bar items", + "time": "0", + "classname": "zeta-navigation-bar Content Tests", + "file": "src/test/navigation-bar/navigation-bar.test.ts" + } + }, + { + "_attributes": { + "name": "renders the correct label and icon for each navigation bar item", + "time": "0.001", + "classname": "zeta-navigation-bar Content Tests", + "file": "src/test/navigation-bar/navigation-bar.test.ts" + } + }, + { + "_attributes": { + "name": "renders the correct badge content for each navigation bar item", + "time": "0.001", + "classname": "zeta-navigation-bar Content Tests", + "file": "src/test/navigation-bar/navigation-bar.test.ts" + } + }, + { + "_attributes": { + "name": "updates badge content when the value changes", + "time": "0.001", + "classname": "zeta-navigation-bar Content Tests", + "file": "src/test/navigation-bar/navigation-bar.test.ts" + } + }, + { + "_attributes": { + "name": "keeps a fixed width", + "time": "0", + "classname": "zeta-navigation-bar spacer Dimensions Tests", + "file": "src/test/navigation-bar/navigation-bar.test.ts" + }, + "skipped": {} + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/navigation-drawer/navigation-drawer.test.ts", + "id": "0", + "tests": "1", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.051" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/navigation-drawer/navigation-drawer.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": { + "_attributes": { + "name": "meets accessibility requirements", + "time": "0.051", + "classname": "zeta-navigation-drawer Accessibility Tests", + "file": "src/test/navigation-drawer/navigation-drawer.test.ts" + } + }, + "system-out": { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/navigation-drawer-footer/navigation-drawer-footer.test.ts", + "id": "0", + "tests": "1", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.078" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/navigation-drawer-footer/navigation-drawer-footer.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": { + "_attributes": { + "name": "meets accessibility requirements", + "time": "0.078", + "classname": "zeta-navigation-drawer-footer Accessibility Tests", + "file": "src/test/navigation-drawer-footer/navigation-drawer-footer.test.ts" + } + }, + "system-out": { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/navigation-drawer-item/navigation-drawer-item.test.ts", + "id": "0", + "tests": "1", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.072" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/navigation-drawer-item/navigation-drawer-item.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": { + "_attributes": { + "name": "meets accessibility requirements", + "time": "0.072", + "classname": "zeta-navigation-drawer-item Accessibility Tests", + "file": "src/test/navigation-drawer-item/navigation-drawer-item.test.ts" + } + } + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/navigation-drawer-sub-item/navigation-drawer-sub-item.test.ts", + "id": "0", + "tests": "1", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.068" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/navigation-drawer-sub-item/navigation-drawer-sub-item.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": { + "_attributes": { + "name": "meets accessibility requirements", + "time": "0.068", + "classname": "zeta-navigation-drawer-sub-item Accessibility Tests", + "file": "src/test/navigation-drawer-sub-item/navigation-drawer-sub-item.test.ts" + } + } + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/navigation-header/navigation-header.test.ts", + "id": "0", + "tests": "1", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.046" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/navigation-header/navigation-header.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": { + "_attributes": { + "name": "meets accessibility requirements", + "time": "0.046", + "classname": "zeta-navigation-header Accessibility Tests", + "file": "src/test/navigation-header/navigation-header.test.ts" + } + } + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/navigation-profile/navigation-profile.test.ts", + "id": "0", + "tests": "1", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.055" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/navigation-profile/navigation-profile.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": { + "_attributes": { + "name": "meets accessibility requirements", + "time": "0.055", + "classname": "zeta-navigation-profile Accessibility Tests", + "file": "src/test/navigation-profile/navigation-profile.test.ts" + } + } + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/navigation-rail/navigation-rail-item.test.ts", + "id": "0", + "tests": "4", + "skipped": "1", + "errors": "0", + "failures": "0", + "time": "0.008" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/navigation-rail/navigation-rail-item.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "renders the label slot correctly", + "time": "0.005", + "classname": "zeta-navigation-rail-item Content Tests", + "file": "src/test/navigation-rail/navigation-rail-item.test.ts" + } + }, + { + "_attributes": { + "name": "renders the icon slot correctly", + "time": "0.002", + "classname": "zeta-navigation-rail-item Content Tests", + "file": "src/test/navigation-rail/navigation-rail-item.test.ts" + } + }, + { + "_attributes": { + "name": "reflects the 'selected' property correctly", + "time": "0.001", + "classname": "zeta-navigation-rail-item Content Tests", + "file": "src/test/navigation-rail/navigation-rail-item.test.ts" + } + }, + { + "_attributes": { + "name": "goes to the correct href when clicked", + "time": "0", + "classname": "zeta-navigation-rail-item Interaction Tests", + "file": "src/test/navigation-rail/navigation-rail-item.test.ts" + }, + "skipped": {} + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/navigation-rail/navigation-rail.test.ts", + "id": "0", + "tests": "2", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.011" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/navigation-rail/navigation-rail.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "renders the navigation items", + "time": "0.01", + "classname": "zeta-navigation-rail Content Tests", + "file": "src/test/navigation-rail/navigation-rail.test.ts" + } + }, + { + "_attributes": { + "name": "hides any slotted elements that aren't zeta-navigation-rail-item", + "time": "0.001", + "classname": "zeta-navigation-rail Content Tests", + "file": "src/test/navigation-rail/navigation-rail.test.ts" + } + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/pagination/pagination.test.ts", + "id": "0", + "tests": "10", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.03" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/pagination/pagination.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "creates from document.createElement", + "time": "0.001", + "classname": "zeta-pagination Content Tests", + "file": "src/test/pagination/pagination.test.ts" + } + }, + { + "_attributes": { + "name": "creates from constructor", + "time": "0", + "classname": "zeta-pagination Content Tests", + "file": "src/test/pagination/pagination.test.ts" + } + }, + { + "_attributes": { + "name": "should disable left controls", + "time": "0.011", + "classname": "zeta-pagination Content Tests", + "file": "src/test/pagination/pagination.test.ts" + } + }, + { + "_attributes": { + "name": "should disable right controls", + "time": "0.003", + "classname": "zeta-pagination Content Tests", + "file": "src/test/pagination/pagination.test.ts" + } + }, + { + "_attributes": { + "name": "should not set invalid page", + "time": "0.003", + "classname": "zeta-pagination Content Tests", + "file": "src/test/pagination/pagination.test.ts" + } + }, + { + "_attributes": { + "name": "should not set invalid page", + "time": "0.002", + "classname": "zeta-pagination Content Tests", + "file": "src/test/pagination/pagination.test.ts" + } + }, + { + "_attributes": { + "name": "should show left and right dots", + "time": "0.002", + "classname": "zeta-pagination Content Tests", + "file": "src/test/pagination/pagination.test.ts" + } + }, + { + "_attributes": { + "name": "should not show any dots", + "time": "0.002", + "classname": "zeta-pagination Content Tests", + "file": "src/test/pagination/pagination.test.ts" + } + }, + { + "_attributes": { + "name": "should increment page", + "time": "0.003", + "classname": "zeta-pagination Interaction Tests", + "file": "src/test/pagination/pagination.test.ts" + } + }, + { + "_attributes": { + "name": "should decrement page", + "time": "0.003", + "classname": "zeta-pagination Interaction Tests", + "file": "src/test/pagination/pagination.test.ts" + } + } + ], + "system-out": [ + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + }, + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + }, + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + }, + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + }, + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + }, + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + }, + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + }, + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + }, + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + }, + { + "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/progress-bar/progress-bar.test.ts", + "id": "0", + "tests": "1", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.063" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/progress-bar/progress-bar.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": { + "_attributes": { + "name": "meets accessibility requirements", + "time": "0.063", + "classname": "zeta-progress-bar Accessibility Tests", + "file": "src/test/progress-bar/progress-bar.test.ts" + } + } + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/progress-circle/progress-circle.test.ts", + "id": "0", + "tests": "7", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.011" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/progress-circle/progress-circle.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "creates from document.createElement", + "time": "0", + "classname": "ZetaProgressCircle Content Tests", + "file": "src/test/progress-circle/progress-circle.test.ts" + } + }, + { + "_attributes": { + "name": "creates from constructor", + "time": "0", + "classname": "ZetaProgressCircle Content Tests", + "file": "src/test/progress-circle/progress-circle.test.ts" + } + }, + { + "_attributes": { + "name": "should set value to 100 if above 100", + "time": "0.007", + "classname": "ZetaProgressCircle Content Tests", + "file": "src/test/progress-circle/progress-circle.test.ts" + } + }, + { + "_attributes": { + "name": "should set value to 0 if below 0", + "time": "0", + "classname": "ZetaProgressCircle Content Tests", + "file": "src/test/progress-circle/progress-circle.test.ts" + } + }, + { + "_attributes": { + "name": "should set value ", + "time": "0.001", + "classname": "ZetaProgressCircle Content Tests", + "file": "src/test/progress-circle/progress-circle.test.ts" + } + }, + { + "_attributes": { + "name": "should render uploading components", + "time": "0.002", + "classname": "ZetaProgressCircle Content Tests", + "file": "src/test/progress-circle/progress-circle.test.ts" + } + }, + { + "_attributes": { + "name": "should fire a ZetaCancelUploadEvent on button click", + "time": "0.001", + "classname": "ZetaProgressCircle Interaction Tests", + "file": "src/test/progress-circle/progress-circle.test.ts" + } + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/radio-button/radio-button.test.ts", + "id": "0", + "tests": "9", + "skipped": "3", + "errors": "0", + "failures": "0", + "time": "0.008" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/radio-button/radio-button.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "meets accessibility requirements", + "time": "0", + "classname": "zeta-radio-button Accessibility Tests", + "file": "src/test/radio-button/radio-button.test.ts" + }, + "skipped": {} + }, + { + "_attributes": { + "name": "doesn't meet accessibility requirement without a label", + "time": "0", + "classname": "zeta-radio-button Accessibility Tests", + "file": "src/test/radio-button/radio-button.test.ts" + }, + "skipped": {} + }, + { + "_attributes": { + "name": "is accessible by adding aria-label", + "time": "0", + "classname": "zeta-radio-button Accessibility Tests", + "file": "src/test/radio-button/radio-button.test.ts" + }, + "skipped": {} + }, + { + "_attributes": { + "name": "sets the name attribute correctly", + "time": "0.002", + "classname": "zeta-radio-button Content Tests", + "file": "src/test/radio-button/radio-button.test.ts" + } + }, + { + "_attributes": { + "name": "sets the id attribute correctly", + "time": "0", + "classname": "zeta-radio-button Content Tests", + "file": "src/test/radio-button/radio-button.test.ts" + } + }, + { + "_attributes": { + "name": "renders the radio button as unchecked by default", + "time": "0.002", + "classname": "zeta-radio-button Content Tests", + "file": "src/test/radio-button/radio-button.test.ts" + } + }, + { + "_attributes": { + "name": "changes the checked state when clicked", + "time": "0.002", + "classname": "zeta-radio-button Interaction Tests", + "file": "src/test/radio-button/radio-button.test.ts" + } + }, + { + "_attributes": { + "name": "renders the radio label correctly", + "time": "0", + "classname": "zeta-radio-button label Content Tests", + "file": "src/test/radio-button/radio-button.test.ts" + } + }, + { + "_attributes": { + "name": "checks the radio when label is clicked", + "time": "0.002", + "classname": "zeta-radio-button label Interaction Tests", + "file": "src/test/radio-button/radio-button.test.ts" + } + } + ], + "system-out": [ + { + "_cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-radio-button scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/range-selector/range-selector.test.ts", + "id": "0", + "tests": "14", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.115" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "meets accessibility requirements", + "time": "0.107", + "classname": "zeta-range-selector Accessibility Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "_attributes": { + "name": "renders the zeta slider", + "time": "0", + "classname": "zeta-range-selector Content Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "_attributes": { + "name": "renders the label", + "time": "0.001", + "classname": "zeta-range-selector Content Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "_attributes": { + "name": "renders the lower input field", + "time": "0", + "classname": "zeta-range-selector Content Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "_attributes": { + "name": "renders the upper input field", + "time": "0.001", + "classname": "zeta-range-selector Content Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "_attributes": { + "name": "sets the initial values correctly", + "time": "0.001", + "classname": "zeta-range-selector Content Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "_attributes": { + "name": "sets the lower input width and height correctly", + "time": "0", + "classname": "zeta-range-selector Dimensions Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "_attributes": { + "name": "sets the upper input width and height correctly", + "time": "0", + "classname": "zeta-range-selector Dimensions Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct styles for the label", + "time": "0.001", + "classname": "zeta-range-selector Styling Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct styles for the lower input", + "time": "0.001", + "classname": "zeta-range-selector Styling Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct styles for the upper input", + "time": "0", + "classname": "zeta-range-selector Styling Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "_attributes": { + "name": "updates the hidden input value when the slider value changes", + "time": "0.001", + "classname": "zeta-range-selector Interaction Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "_attributes": { + "name": "updates the slider value when the lower input value changes", + "time": "0.001", + "classname": "zeta-range-selector Interaction Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + }, + { + "_attributes": { + "name": "updates the slider value when the lower input value changes", + "time": "0.001", + "classname": "zeta-range-selector Interaction Tests", + "file": "src/test/range-selector/range-selector.test.ts" + } + } + ], + "system-out": [ + { + "_cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-range-selector scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/search/search.test.ts", + "id": "0", + "tests": "13", + "skipped": "1", + "errors": "0", + "failures": "0", + "time": "0.018000000000000006" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/search/search.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "creates from document.createElement", + "time": "0.001", + "classname": "zeta-search Content Tests", + "file": "src/test/search/search.test.ts" + } + }, + { + "_attributes": { + "name": "creates from constructor", + "time": "0", + "classname": "zeta-search Content Tests", + "file": "src/test/search/search.test.ts" + } + }, + { + "_attributes": { + "name": "focus on input when field focused", + "time": "0.008", + "classname": "zeta-search Content Tests", + "file": "src/test/search/search.test.ts" + } + }, + { + "_attributes": { + "name": "blur input when field is blurred", + "time": "0.001", + "classname": "zeta-search Content Tests", + "file": "src/test/search/search.test.ts" + } + }, + { + "_attributes": { + "name": "should render microphone icon", + "time": "0.002", + "classname": "zeta-search Content Tests", + "file": "src/test/search/search.test.ts" + } + }, + { + "_attributes": { + "name": "should not render microphone icon", + "time": "0.001", + "classname": "zeta-search Content Tests", + "file": "src/test/search/search.test.ts" + } + }, + { + "_attributes": { + "name": "should set correct default icon size", + "time": "0.001", + "classname": "zeta-search Dimensions Tests", + "file": "src/test/search/search.test.ts" + } + }, + { + "_attributes": { + "name": "should set correct small icon size", + "time": "0.001", + "classname": "zeta-search Dimensions Tests", + "file": "src/test/search/search.test.ts" + } + }, + { + "_attributes": { + "name": "should set correct large icon size", + "time": "0.001", + "classname": "zeta-search Dimensions Tests", + "file": "src/test/search/search.test.ts" + } + }, + { + "_attributes": { + "name": "should set correct disabled icon color", + "time": "0.001", + "classname": "zeta-search Styling Tests", + "file": "src/test/search/search.test.ts" + } + }, + { + "_attributes": { + "name": "clears input", + "time": "0.001", + "classname": "zeta-search Interaction Tests", + "file": "src/test/search/search.test.ts" + } + }, + { + "_attributes": { + "name": "should call input onchange", + "time": "0", + "classname": "zeta-search Interaction Tests", + "file": "src/test/search/search.test.ts" + } + }, + { + "_attributes": { + "name": "should not be activatable", + "time": "0", + "classname": "zeta-search Interaction Tests", + "file": "src/test/search/search.test.ts" + }, + "skipped": {} + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/segmented-control/segmented-control.test.ts", + "id": "0", + "tests": "4", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.016" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/segmented-control/segmented-control.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "renders the segmented control with the correct number of items", + "time": "0.011", + "classname": "zeta-segmented-control Content Tests", + "file": "src/test/segmented-control/segmented-control.test.ts" + } + }, + { + "_attributes": { + "name": "sets the first item as active by default", + "time": "0.002", + "classname": "zeta-segmented-control Content Tests", + "file": "src/test/segmented-control/segmented-control.test.ts" + } + }, + { + "_attributes": { + "name": "hides any slotted elements that aren't zeta-segmented-item", + "time": "0.001", + "classname": "zeta-segmented-control Content Tests", + "file": "src/test/segmented-control/segmented-control.test.ts" + } + }, + { + "_attributes": { + "name": "updates the active item when a different item is clicked", + "time": "0.002", + "classname": "zeta-segmented-control Interaction Tests", + "file": "src/test/segmented-control/segmented-control.test.ts" + } + } + ], + "system-out": [ + { + "_cdata": "Element zeta-segmented-control scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-segmented-control scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-segmented-control scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-segmented-control scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/slider/slider.test.ts", + "id": "0", + "tests": "16", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.082" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/slider/slider.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "meets accessibility requirements", + "time": "0.073", + "classname": "zeta-slider Accessibility Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "_attributes": { + "name": "renders the track", + "time": "0", + "classname": "zeta-slider Content Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "_attributes": { + "name": "renders the left handle and not the right handle when type is default", + "time": "0", + "classname": "zeta-slider Content Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "_attributes": { + "name": "renders the right handle when type is range", + "time": "0.001", + "classname": "zeta-slider Content Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "_attributes": { + "name": "sets initial values correctly", + "time": "0", + "classname": "zeta-slider Content Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "_attributes": { + "name": "sets the track height correctly", + "time": "0.001", + "classname": "zeta-slider Dimensions Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "_attributes": { + "name": "sets the handle width and height correctly", + "time": "0.001", + "classname": "zeta-slider Dimensions Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct margin on the slider", + "time": "0", + "classname": "zeta-slider Dimensions Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct background color for the track", + "time": "0.001", + "classname": "zeta-slider Styling Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct color for the selected area", + "time": "0", + "classname": "zeta-slider Styling Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct background color for the handle", + "time": "0", + "classname": "zeta-slider Styling Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct color for the selected area and handle when pressed down", + "time": "0.001", + "classname": "zeta-slider Styling Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct border radius for the handle", + "time": "0", + "classname": "zeta-slider Styling Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct border radius for the track", + "time": "0.001", + "classname": "zeta-slider Styling Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "_attributes": { + "name": "updates the value when the handle is dragged", + "time": "0", + "classname": "zeta-slider Interaction Tests", + "file": "src/test/slider/slider.test.ts" + } + }, + { + "_attributes": { + "name": "updates the lower and upper values when the handles are dragged", + "time": "0.003", + "classname": "zeta-slider Interaction Tests", + "file": "src/test/slider/slider.test.ts" + } + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/slider-input-field/slider-input-field.test.ts", + "id": "0", + "tests": "13", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.10500000000000001" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "meets accessibility requirements", + "time": "0.093", + "classname": "zeta-slider-input-field Accessibility Tests", + "file": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "_attributes": { + "name": "renders the zeta slider", + "time": "0", + "classname": "zeta-slider-input-field Content Tests", + "file": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "_attributes": { + "name": "renders the label", + "time": "0", + "classname": "zeta-slider-input-field Content Tests", + "file": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "_attributes": { + "name": "renders the input field", + "time": "0.001", + "classname": "zeta-slider-input-field Content Tests", + "file": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "_attributes": { + "name": "renders the min and max labels", + "time": "0", + "classname": "zeta-slider-input-field Content Tests", + "file": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "_attributes": { + "name": "sets the initial values correctly", + "time": "0", + "classname": "zeta-slider-input-field Content Tests", + "file": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "_attributes": { + "name": "sets the input width and height correctly", + "time": "0", + "classname": "zeta-slider-input-field Dimensions Tests", + "file": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct styles for the label", + "time": "0", + "classname": "zeta-slider-input-field Styling Tests", + "file": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct styles for the input", + "time": "0.001", + "classname": "zeta-slider-input-field Styling Tests", + "file": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct styles for the range labels", + "time": "0", + "classname": "zeta-slider-input-field Styling Tests", + "file": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "_attributes": { + "name": "updates the hidden input value when the slider value changes", + "time": "0.001", + "classname": "zeta-slider-input-field Interaction Tests", + "file": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "_attributes": { + "name": "updates the slider value when the input value changes", + "time": "0.001", + "classname": "zeta-slider-input-field Interaction Tests", + "file": "src/test/slider-input-field/slider-input-field.test.ts" + } + }, + { + "_attributes": { + "name": "returns the correct data when in a form", + "time": "0.008", + "classname": "zeta-slider-input-field Interaction Tests", + "file": "src/test/slider-input-field/slider-input-field.test.ts" + } + } + ], + "system-out": [ + { + "_cdata": "Element zeta-slider-input-field scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-slider-input-field scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-slider-input-field scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-slider-input-field scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-slider-input-field scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-slider-input-field scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-slider-input-field scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-slider-input-field scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-slider-input-field scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-slider-input-field scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-slider-input-field scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-slider-input-field scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-slider-input-field scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/snackbar/snackbar.test.ts", + "id": "0", + "tests": "19", + "skipped": "1", + "errors": "0", + "failures": "0", + "time": "0.148" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "meets accessibility requirements", + "time": "0", + "classname": "zeta-snackbar Accessibility Tests", + "file": "src/test/snackbar/snackbar.test.ts" + }, + "skipped": {} + }, + { + "_attributes": { + "name": "displays the correct text in the slot", + "time": "0", + "classname": "zeta-snackbar Content Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "_attributes": { + "name": "displays the correct text in the action button", + "time": "0", + "classname": "zeta-snackbar Content Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "_attributes": { + "name": "displays the correct icon in the slot", + "time": "0.001", + "classname": "zeta-snackbar Content Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "_attributes": { + "name": "sets full border radius correctly", + "time": "0.001", + "classname": "zeta-snackbar Styling Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "_attributes": { + "name": "sets true border radius correctly", + "time": "0.001", + "classname": "zeta-snackbar Styling Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "_attributes": { + "name": "sets false border radius correctly", + "time": "0", + "classname": "zeta-snackbar Styling Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct colors for default status", + "time": "0.001", + "classname": "zeta-snackbar Styling Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct colors for positive status", + "time": "0.001", + "classname": "zeta-snackbar Styling Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct colors for info status", + "time": "0.001", + "classname": "zeta-snackbar Styling Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct colors for warning status", + "time": "0.001", + "classname": "zeta-snackbar Styling Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct colors for negative status", + "time": "0", + "classname": "zeta-snackbar Styling Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct colors for view status", + "time": "0.001", + "classname": "zeta-snackbar Styling Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "_attributes": { + "name": "removes the element from the screen when the close icon is clicked", + "time": "0.016", + "classname": "zeta-snackbar Interaction Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "_attributes": { + "name": "removes the element from the screen when the close icon is enter pressed", + "time": "0.006", + "classname": "zeta-snackbar Interaction Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "_attributes": { + "name": "removes the element from the screen when the close icon is space pressed", + "time": "0.005", + "classname": "zeta-snackbar Interaction Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "_attributes": { + "name": "calls the action function on enter pressed", + "time": "0.052", + "classname": "zeta-snackbar Interaction Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "_attributes": { + "name": "calls the action function on space pressed", + "time": "0.052", + "classname": "zeta-snackbar Interaction Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + }, + { + "_attributes": { + "name": "calls the action function on mouse click", + "time": "0.009", + "classname": "zeta-snackbar Interaction Tests", + "file": "src/test/snackbar/snackbar.test.ts" + } + } + ], + "system-out": [ + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + }, + { + "_cdata": "Action Clicked" + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/stepper-input/stepper-input.test.ts", + "id": "0", + "tests": "9", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.014000000000000005" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/stepper-input/stepper-input.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "creates from document.createElement", + "time": "0.001", + "classname": "zeta-stepper-input Content Tests", + "file": "src/test/stepper-input/stepper-input.test.ts" + } + }, + { + "_attributes": { + "name": "creates from constructor", + "time": "0", + "classname": "zeta-stepper-input Content Tests", + "file": "src/test/stepper-input/stepper-input.test.ts" + } + }, + { + "_attributes": { + "name": "sets value", + "time": "0.006", + "classname": "zeta-stepper-input Content Tests", + "file": "src/test/stepper-input/stepper-input.test.ts" + } + }, + { + "_attributes": { + "name": "sets value to max value", + "time": "0.002", + "classname": "zeta-stepper-input Content Tests", + "file": "src/test/stepper-input/stepper-input.test.ts" + } + }, + { + "_attributes": { + "name": "sets value to min value", + "time": "0.001", + "classname": "zeta-stepper-input Content Tests", + "file": "src/test/stepper-input/stepper-input.test.ts" + } + }, + { + "_attributes": { + "name": "doesn't change value", + "time": "0.001", + "classname": "zeta-stepper-input Content Tests", + "file": "src/test/stepper-input/stepper-input.test.ts" + } + }, + { + "_attributes": { + "name": "doesn't change value", + "time": "0.001", + "classname": "zeta-stepper-input Content Tests", + "file": "src/test/stepper-input/stepper-input.test.ts" + } + }, + { + "_attributes": { + "name": "sets value to min value via input onchange", + "time": "0.001", + "classname": "zeta-stepper-input Content Tests", + "file": "src/test/stepper-input/stepper-input.test.ts" + } + }, + { + "_attributes": { + "name": "sets value to max value via input onchange", + "time": "0.001", + "classname": "zeta-stepper-input Content Tests", + "file": "src/test/stepper-input/stepper-input.test.ts" + } + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/stepper-input/stepper.test.ts", + "id": "0", + "tests": "3", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.008" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/stepper-input/stepper.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "creates from document.createElement", + "time": "0.001", + "classname": "zeta-stepper Content Tests", + "file": "src/test/stepper-input/stepper.test.ts" + } + }, + { + "_attributes": { + "name": "creates from constructor", + "time": "0", + "classname": "zeta-stepper Content Tests", + "file": "src/test/stepper-input/stepper.test.ts" + } + }, + { + "_attributes": { + "name": "should render steps", + "time": "0.007", + "classname": "zeta-stepper Content Tests", + "file": "src/test/stepper-input/stepper.test.ts" + } + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/switch/switch.test.ts", + "id": "0", + "tests": "15", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.123" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/switch/switch.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "creates from document.createElement", + "time": "0.001", + "classname": "zeta-switch Content Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "_attributes": { + "name": "creates from constructor", + "time": "0", + "classname": "zeta-switch Content Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "_attributes": { + "name": "focus on button when switch focused", + "time": "0.001", + "classname": "zeta-switch Content Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "_attributes": { + "name": "blur on button when switch blurred", + "time": "0", + "classname": "zeta-switch Content Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "_attributes": { + "name": "activeIcon color", + "time": "0", + "classname": "zeta-switch Styling Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "_attributes": { + "name": "inactiveIcon color", + "time": "0", + "classname": "zeta-switch Styling Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "_attributes": { + "name": "track backgroundColor", + "time": "0", + "classname": "zeta-switch Styling Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "_attributes": { + "name": "thumb backgroundColor", + "time": "0.001", + "classname": "zeta-switch Styling Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "_attributes": { + "name": "should toggle the state when clicked by accessibility tools", + "time": "0.001", + "classname": "zeta-switch Interaction Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "_attributes": { + "name": "inactiveIcon color, :hover color", + "time": "0.015", + "classname": "zeta-switch disabled Styling Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "_attributes": { + "name": "activeIcon color, :hover color", + "time": "0.009", + "classname": "zeta-switch disabled Styling Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "_attributes": { + "name": "track backgroundColor, :hover backgroundColor", + "time": "0.015", + "classname": "zeta-switch disabled Styling Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "_attributes": { + "name": "thumb backgroundColor, :hover backgroundColor", + "time": "0.019", + "classname": "zeta-switch disabled Styling Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "_attributes": { + "name": "track backgroundColor", + "time": "0.028", + "classname": "zeta-switch:hover Styling Tests", + "file": "src/test/switch/switch.test.ts" + } + }, + { + "_attributes": { + "name": "thumb backgroundColor", + "time": "0.033", + "classname": "zeta-switch:hover Styling Tests", + "file": "src/test/switch/switch.test.ts" + } + } + ], + "system-out": [ + { + "_cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + }, + { + "_cdata": "Element zeta-switch scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update. See https://lit.dev/msg/change-in-update for more information." + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/tag/tag.test.ts", + "id": "0", + "tests": "5", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.055" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/tag/tag.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "it meets accessibility requirements", + "time": "0.055", + "classname": "zeta-tag Accessibility Tests", + "file": "src/test/tag/tag.test.ts" + } + }, + { + "_attributes": { + "name": "sets the default properties correctly", + "time": "0", + "classname": "zeta-tag Content Tests", + "file": "src/test/tag/tag.test.ts" + } + }, + { + "_attributes": { + "name": "manages point attribute correctly", + "time": "0", + "classname": "zeta-tag Content Tests", + "file": "src/test/tag/tag.test.ts" + } + }, + { + "_attributes": { + "name": "manages text attribute correctly", + "time": "0", + "classname": "zeta-tag Content Tests", + "file": "src/test/tag/tag.test.ts" + } + }, + { + "_attributes": { + "name": "renders the passed text into a span", + "time": "0", + "classname": "zeta-tag Content Tests", + "file": "src/test/tag/tag.test.ts" + } + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/text-input/text-input.test.ts", + "id": "0", + "tests": "22", + "skipped": "1", + "errors": "0", + "failures": "0", + "time": "0.04900000000000001" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/text-input/text-input.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "creates from document.createElement", + "time": "0", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + }, + "skipped": {} + }, + { + "_attributes": { + "name": "creates from constructor", + "time": "0.001", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "_attributes": { + "name": "focus on input when field focused", + "time": "0.012", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "_attributes": { + "name": "should not focus on input when field disabled", + "time": "0.001", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "_attributes": { + "name": "blur on input when field blurred", + "time": "0.002", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "_attributes": { + "name": "should render icon", + "time": "0.003", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "_attributes": { + "name": "should render icon on the right", + "time": "0.003", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "_attributes": { + "name": "should render prefix", + "time": "0.005", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "_attributes": { + "name": "should render suffix", + "time": "0.001", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "_attributes": { + "name": "should render label", + "time": "0.003", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "_attributes": { + "name": "should render hint text", + "time": "0.001", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "_attributes": { + "name": "should render error icon", + "time": "0.002", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "_attributes": { + "name": "should render error text", + "time": "0.001", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "_attributes": { + "name": "should change value", + "time": "0.001", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "_attributes": { + "name": "should apply type textarea", + "time": "0.001", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "_attributes": { + "name": "should apply type password", + "time": "0.001", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "_attributes": { + "name": "should apply type time", + "time": "0.005", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "_attributes": { + "name": "should apply type data", + "time": "0.001", + "classname": "zeta-text-input Content Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "_attributes": { + "name": "should render error icon color", + "time": "0.002", + "classname": "zeta-text-input Styling Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "_attributes": { + "name": "should render error text color", + "time": "0.001", + "classname": "zeta-text-input Styling Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "_attributes": { + "name": "should set disabled color to icon when field is disabled", + "time": "0.001", + "classname": "zeta-text-input Styling Tests", + "file": "src/test/text-input/text-input.test.ts" + } + }, + { + "_attributes": { + "name": "should toggle password visibility", + "time": "0.001", + "classname": "zeta-text-input Interaction Tests", + "file": "src/test/text-input/text-input.test.ts" + } + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/chips/assist-chip/assist-chip.test.ts", + "id": "0", + "tests": "3", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.101" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/chips/assist-chip/assist-chip.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "meets accessibility requirements", + "time": "0.1", + "classname": "zeta-assist-chip Accessibility Tests", + "file": "src/test/chips/assist-chip/assist-chip.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct text on the chip", + "time": "0.001", + "classname": "zeta-assist-chip Content Tests", + "file": "src/test/chips/assist-chip/assist-chip.test.ts" + } + }, + { + "_attributes": { + "name": "displays the correct icon", + "time": "0", + "classname": "zeta-assist-chip Content Tests", + "file": "src/test/chips/assist-chip/assist-chip.test.ts" + } + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/chips/filter-chip/filter-chip.test.ts", + "id": "0", + "tests": "3", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.084" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/chips/filter-chip/filter-chip.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "it meets accessibility requirements", + "time": "0.081", + "classname": "zeta-filter-chip Accessibility Tests", + "file": "src/test/chips/filter-chip/filter-chip.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct text on the chip", + "time": "0.001", + "classname": "zeta-filter-chip Content Tests", + "file": "src/test/chips/filter-chip/filter-chip.test.ts" + } + }, + { + "_attributes": { + "name": "shows the check icon when active", + "time": "0.002", + "classname": "zeta-filter-chip Content Tests", + "file": "src/test/chips/filter-chip/filter-chip.test.ts" + } + } + ] + }, + { + "_attributes": { + "name": "Chromium_playwright_/src/test/chips/input-chip/input-chip.test.ts", + "id": "0", + "tests": "2", + "skipped": "0", + "errors": "0", + "failures": "0", + "time": "0.057" + }, + "properties": { + "property": [ + { + "_attributes": { + "name": "test.fileName", + "value": "src/test/chips/input-chip/input-chip.test.ts" + } + }, + { + "_attributes": { + "name": "browser.name", + "value": "Chromium" + } + }, + { + "_attributes": { + "name": "browser.launcher", + "value": "playwright" + } + } + ] + }, + "testcase": [ + { + "_attributes": { + "name": "it meets accessibility requirements", + "time": "0.057", + "classname": "zeta-input-chip Accessibility Tests", + "file": "src/test/chips/input-chip/input-chip.test.ts" + } + }, + { + "_attributes": { + "name": "sets the correct text on the chip", + "time": "0", + "classname": "zeta-input-chip Content Tests", + "file": "src/test/chips/input-chip/input-chip.test.ts" + } + } + ] + } + ] + } +} \ No newline at end of file From e92b9404f65408bb219233275ecd9d9797a1e8c3 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 23 Dec 2024 17:47:29 +0000 Subject: [PATCH 82/82] [automated commit] lint format and import sort --- src/test/test-results.xml | 396 ++++++++++++++++++----------------- src/test/testResults.json | 420 ++++++++++++++++++-------------------- 2 files changed, 386 insertions(+), 430 deletions(-) diff --git a/src/test/test-results.xml b/src/test/test-results.xml index fddfa02..3c45443 100644 --- a/src/test/test-results.xml +++ b/src/test/test-results.xml @@ -1,108 +1,108 @@ - + - - + + - + - - - + + + - + - - + + - - + + - + - + - + - - - + + + - + - - + + - + - + - + - + - - + + - + - - - - - - + + + + + + @@ -110,42 +110,42 @@ - - - - + + + + - + - + - + - + - + - + - + - + - + @@ -174,13 +174,8 @@ - - - - - - + @@ -192,12 +187,12 @@ - + - - - - + + + + @@ -219,17 +214,17 @@ - + - + - + - + @@ -239,15 +234,15 @@ - + - + - + @@ -255,60 +250,55 @@ - + - + (src/test/fab/fab.test.ts?wtr-session-id=gFG4do0oTKgkLqBcerWLm:35:61)]]> + at n. (src/test/fab/fab.test.ts?wtr-session-id=cTLxNRHI8cV6kwOpaILhl:35:61)]]> - - + + (src/test/fab/fab.test.ts?wtr-session-id=gFG4do0oTKgkLqBcerWLm:54:34)]]> + at n. (src/test/fab/fab.test.ts?wtr-session-id=cTLxNRHI8cV6kwOpaILhl:54:34)]]> (src/test/fab/fab.test.ts?wtr-session-id=gFG4do0oTKgkLqBcerWLm:63:30)]]> + at n. (src/test/fab/fab.test.ts?wtr-session-id=cTLxNRHI8cV6kwOpaILhl:63:30)]]> - + - + - + - + - + - - + + - - - - - - + @@ -316,51 +306,51 @@ - + - + - - + + - + - + - + - + - - - + + + - + - + @@ -372,76 +362,76 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + @@ -453,29 +443,29 @@ - + - + - + - + - + - - + + - + @@ -490,12 +480,12 @@ - - - - + + + + - + @@ -506,20 +496,20 @@ - + - + - + - - + + - + @@ -541,7 +531,7 @@ - + @@ -549,28 +539,28 @@ - - + + - + - + - + - + @@ -578,48 +568,48 @@ - + - + - - + + - - - - - + + + + + - + - + - + - + - - - + + + - + - + @@ -634,7 +624,7 @@ - + @@ -649,18 +639,18 @@ - + - - - - + + + + - - + + @@ -719,7 +709,7 @@ - + @@ -727,7 +717,7 @@ - + @@ -735,7 +725,7 @@ - + @@ -743,7 +733,7 @@ - + @@ -751,21 +741,21 @@ - - + + - - - - + + + + - - - - - - + + + + + + @@ -782,19 +772,19 @@ - + - + - + @@ -803,46 +793,46 @@ - - + + - + - - + + - + - + - - + + - + - + - - + + - + - - + + diff --git a/src/test/testResults.json b/src/test/testResults.json index 1d5d705..0fe552a 100644 --- a/src/test/testResults.json +++ b/src/test/testResults.json @@ -15,7 +15,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.098" + "time": "0.096" }, "properties": { "property": [ @@ -43,7 +43,7 @@ { "_attributes": { "name": "meets accessability requirements", - "time": "0.089", + "time": "0.088", "classname": "zeta-action-menu-button Accessibility Tests", "file": "src/test/action-menu/action-menu-button.test.ts" } @@ -51,7 +51,7 @@ { "_attributes": { "name": "aligns the zeta droppable to the start", - "time": "0.003", + "time": "0.002", "classname": "zeta-action-menu-button Dimensions Tests", "file": "src/test/action-menu/action-menu-button.test.ts" } @@ -98,7 +98,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.007" + "time": "0.006" }, "properties": { "property": [ @@ -134,7 +134,7 @@ { "_attributes": { "name": "renders the appbar with centered title", - "time": "0.001", + "time": "0", "classname": "zeta-top-appbar Content Tests", "file": "src/test/appbar/appbar.test.ts" } @@ -142,7 +142,7 @@ { "_attributes": { "name": "renders the appbar with extended title", - "time": "0", + "time": "0.001", "classname": "zeta-top-appbar Content Tests", "file": "src/test/appbar/appbar.test.ts" } @@ -150,7 +150,7 @@ { "_attributes": { "name": "renders content in the appbars leading slot", - "time": "0.001", + "time": "0", "classname": "zeta-top-appbar Content Tests", "file": "src/test/appbar/appbar.test.ts" } @@ -181,7 +181,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.014" + "time": "0.036000000000000004" }, "properties": { "property": [ @@ -209,7 +209,7 @@ { "_attributes": { "name": "renders the avatar with a custom size", - "time": "0.007", + "time": "0.03", "classname": "zeta-avatar Content Tests", "file": "src/test/avatar/avatar.test.ts" } @@ -217,7 +217,7 @@ { "_attributes": { "name": "renders the avatar with the ring", - "time": "0", + "time": "0.001", "classname": "zeta-avatar Content Tests", "file": "src/test/avatar/avatar.test.ts" } @@ -241,7 +241,7 @@ { "_attributes": { "name": "renders the avatar without the close icon", - "time": "0.001", + "time": "0", "classname": "zeta-avatar Content Tests", "file": "src/test/avatar/avatar.test.ts" } @@ -249,7 +249,7 @@ { "_attributes": { "name": "renders the avatar with an image", - "time": "0.002", + "time": "0.001", "classname": "zeta-avatar Content Tests", "file": "src/test/avatar/avatar.test.ts" } @@ -280,7 +280,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.243" + "time": "0.226" }, "properties": { "property": [ @@ -308,7 +308,7 @@ { "_attributes": { "name": "it meets accessibility requirements", - "time": "0.116", + "time": "0.121", "classname": "zeta-bottom-sheet + zeta-list-item Accessibility Tests", "file": "src/test/bottom-sheets/bottom-sheet.test.ts" } @@ -356,7 +356,7 @@ { "_attributes": { "name": "it meets accessibility requirements", - "time": "0.044", + "time": "0.038", "classname": "zeta-bottom-sheet + zeta-grid-menu-item Accessibility Tests", "file": "src/test/bottom-sheets/bottom-sheet.test.ts" } @@ -372,7 +372,7 @@ { "_attributes": { "name": "displays the header text correctly", - "time": "0", + "time": "0.001", "classname": "zeta-bottom-sheet + zeta-grid-menu-item Content Tests", "file": "src/test/bottom-sheets/bottom-sheet.test.ts" } @@ -380,7 +380,7 @@ { "_attributes": { "name": "updates when isExpanded changes", - "time": "0", + "time": "0.001", "classname": "zeta-bottom-sheet + zeta-grid-menu-item Content Tests", "file": "src/test/bottom-sheets/bottom-sheet.test.ts" } @@ -388,7 +388,7 @@ { "_attributes": { "name": "applies the correct header alignment", - "time": "0", + "time": "0.001", "classname": "zeta-bottom-sheet + zeta-grid-menu-item Dimensions Tests", "file": "src/test/bottom-sheets/bottom-sheet.test.ts" } @@ -404,7 +404,7 @@ { "_attributes": { "name": "it meets accessibility requirements", - "time": "0.079", + "time": "0.062", "classname": "zeta-bottom-sheet + generic content Accessibility Tests", "file": "src/test/bottom-sheets/bottom-sheet.test.ts" } @@ -436,7 +436,7 @@ { "_attributes": { "name": "applies the correct header alignment", - "time": "0.001", + "time": "0", "classname": "zeta-bottom-sheet + generic content Dimensions Tests", "file": "src/test/bottom-sheets/bottom-sheet.test.ts" } @@ -444,7 +444,7 @@ { "_attributes": { "name": "applies the correct css display for generic content", - "time": "0.001", + "time": "0", "classname": "zeta-bottom-sheet + generic content Dimensions Tests", "file": "src/test/bottom-sheets/bottom-sheet.test.ts" } @@ -459,7 +459,7 @@ "skipped": "1", "errors": "0", "failures": "0", - "time": "0.109" + "time": "0.092" }, "properties": { "property": [ @@ -487,7 +487,7 @@ { "_attributes": { "name": "meets accessibility requirements", - "time": "0.109", + "time": "0.092", "classname": "zeta-breadcrumb Accessibility Tests", "file": "src/test/breadcrumbs/breadcrumb.test.ts" } @@ -527,7 +527,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.074" + "time": "0.09" }, "properties": { "property": [ @@ -555,7 +555,7 @@ { "_attributes": { "name": "meets accessibility requirements", - "time": "0.071", + "time": "0.089", "classname": "zeta-button Accessibility Tests", "file": "src/test/button/button.test.ts" } @@ -571,7 +571,7 @@ { "_attributes": { "name": "should reset forms", - "time": "0.001", + "time": "0", "classname": "zeta-button AS form reset control Interaction Tests", "file": "src/test/button/button.test.ts" } @@ -579,7 +579,7 @@ { "_attributes": { "name": "should not reset forms if disabled via JS", - "time": "0.001", + "time": "0", "classname": "zeta-button AS form reset control Interaction Tests", "file": "src/test/button/button.test.ts" } @@ -602,7 +602,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.19899999999999998" + "time": "0.22" }, "properties": { "property": [ @@ -630,7 +630,7 @@ { "_attributes": { "name": "meets accessibility requirements for the primary flavor", - "time": "0.069", + "time": "0.084", "classname": "zeta-icon-button Accessibility Tests", "file": "src/test/button/icon-button.test.ts" } @@ -638,7 +638,7 @@ { "_attributes": { "name": "meets accessibility requirements for the positive flavor", - "time": "0.022", + "time": "0.024", "classname": "zeta-icon-button Accessibility Tests", "file": "src/test/button/icon-button.test.ts" } @@ -646,7 +646,7 @@ { "_attributes": { "name": "meets accessibility requirements for the negative flavor", - "time": "0.023", + "time": "0.02", "classname": "zeta-icon-button Accessibility Tests", "file": "src/test/button/icon-button.test.ts" } @@ -654,7 +654,7 @@ { "_attributes": { "name": "meets accessibility requirements for the outline flavor", - "time": "0.02", + "time": "0.023", "classname": "zeta-icon-button Accessibility Tests", "file": "src/test/button/icon-button.test.ts" } @@ -662,7 +662,7 @@ { "_attributes": { "name": "meets accessibility requirements for the outline-subtle flavor", - "time": "0.025", + "time": "0.027", "classname": "zeta-icon-button Accessibility Tests", "file": "src/test/button/icon-button.test.ts" } @@ -670,7 +670,7 @@ { "_attributes": { "name": "meets accessibility requirements for the text flavor", - "time": "0.021", + "time": "0.026", "classname": "zeta-icon-button Accessibility Tests", "file": "src/test/button/icon-button.test.ts" } @@ -734,7 +734,7 @@ { "_attributes": { "name": "button should have correct background color for the secondary flavor", - "time": "0", + "time": "0.001", "classname": "zeta-icon-button Styling Tests", "file": "src/test/button/icon-button.test.ts" } @@ -742,7 +742,7 @@ { "_attributes": { "name": "button should have correct background color for the positive flavor", - "time": "0.001", + "time": "0", "classname": "zeta-icon-button Styling Tests", "file": "src/test/button/icon-button.test.ts" } @@ -750,7 +750,7 @@ { "_attributes": { "name": "button should have correct background color for the negative flavor", - "time": "0.001", + "time": "0", "classname": "zeta-icon-button Styling Tests", "file": "src/test/button/icon-button.test.ts" } @@ -758,7 +758,7 @@ { "_attributes": { "name": "button should have correct background color for the outline flavor", - "time": "0.002", + "time": "0.001", "classname": "zeta-icon-button Styling Tests", "file": "src/test/button/icon-button.test.ts" } @@ -782,7 +782,7 @@ { "_attributes": { "name": "should render the button with the correct color when set by CSS Variable", - "time": "0.002", + "time": "0.001", "classname": "zeta-icon-button Styling Tests", "file": "src/test/button/icon-button.test.ts" } @@ -806,7 +806,7 @@ { "_attributes": { "name": "should reset forms", - "time": "0", + "time": "0.001", "classname": "zeta-icon-button AS form reset control Interaction Tests", "file": "src/test/button/icon-button.test.ts" } @@ -822,7 +822,7 @@ { "_attributes": { "name": "should not reset forms if disabled via DOM", - "time": "0.001", + "time": "0", "classname": "zeta-icon-button AS form reset control Interaction Tests", "file": "src/test/button/icon-button.test.ts" } @@ -837,7 +837,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.103" + "time": "0.081" }, "properties": { "property": [ @@ -865,7 +865,7 @@ { "_attributes": { "name": "meets accessability requirements", - "time": "0.102", + "time": "0.081", "classname": "zeta-card-header Accessibility Tests", "file": "src/test/card/card-header.test.ts" } @@ -881,7 +881,7 @@ { "_attributes": { "name": "sets the subheading correctly", - "time": "0.001", + "time": "0", "classname": "zeta-card-header Content Tests", "file": "src/test/card/card-header.test.ts" } @@ -912,7 +912,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.002" + "time": "0.005" }, "properties": { "property": [ @@ -948,7 +948,7 @@ { "_attributes": { "name": "sets the id attribute correctly", - "time": "0", + "time": "0.001", "classname": "zeta-checkbox Content Tests", "file": "src/test/checkbox/checkbox.test.ts" } @@ -972,7 +972,7 @@ { "_attributes": { "name": "changes the checked state when clicked", - "time": "0", + "time": "0.002", "classname": "zeta-checkbox Interaction Tests", "file": "src/test/checkbox/checkbox.test.ts" } @@ -1112,23 +1112,6 @@ "file": "src/test/dialog/dialog.test.ts" } } - ], - "system-out": [ - { - "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." - }, - { - "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." - }, - { - "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." - }, - { - "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." - }, - { - "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." - } ] }, { @@ -1139,7 +1122,7 @@ "skipped": "1", "errors": "0", "failures": "0", - "time": "0.02" + "time": "0.030000000000000002" }, "properties": { "property": [ @@ -1200,7 +1183,7 @@ { "_attributes": { "name": "opens the dropdown menu when clicked", - "time": "0.001", + "time": "0.002", "classname": "zeta-dropdown-menu-button Interaction Tests", "file": "src/test/dropdown/dropdown-menu-button.test.ts" } @@ -1216,7 +1199,7 @@ { "_attributes": { "name": "closes the dropdown menu when clicked inside", - "time": "0.002", + "time": "0.001", "classname": "zeta-dropdown-menu-button Interaction Tests", "file": "src/test/dropdown/dropdown-menu-button.test.ts" } @@ -1224,7 +1207,7 @@ { "_attributes": { "name": "returns the selected item when a wrapping form is submitted", - "time": "0.003", + "time": "0.002", "classname": "zeta-dropdown-menu-button Interaction Tests", "file": "src/test/dropdown/dropdown-menu-button.test.ts" } @@ -1232,7 +1215,7 @@ { "_attributes": { "name": "returns the selected checkboxes when a wrapping form is submitted", - "time": "0.005", + "time": "0.015", "classname": "zeta-dropdown-menu-button Interaction Tests", "file": "src/test/dropdown/dropdown-menu-button.test.ts" } @@ -1240,7 +1223,7 @@ { "_attributes": { "name": "returns the selected radio button when a wrapping form is submitted", - "time": "0.004", + "time": "0.005", "classname": "zeta-dropdown-menu-button Interaction Tests", "file": "src/test/dropdown/dropdown-menu-button.test.ts" } @@ -1317,7 +1300,7 @@ "skipped": "2", "errors": "0", "failures": "0", - "time": "0.077" + "time": "0.089" }, "properties": { "property": [ @@ -1345,7 +1328,7 @@ { "_attributes": { "name": "meets accessability requirements", - "time": "0.072", + "time": "0.087", "classname": "zeta-dropdown-menu-item Accessibility Tests", "file": "src/test/dropdown/dropdown-menu-item.test.ts" } @@ -1361,7 +1344,7 @@ { "_attributes": { "name": "renders an icon with the correct name with the 'default' type", - "time": "0.001", + "time": "0", "classname": "zeta-dropdown-menu-item Content Tests", "file": "src/test/dropdown/dropdown-menu-item.test.ts" } @@ -1377,7 +1360,7 @@ { "_attributes": { "name": "sets the disabled attribute correctly", - "time": "0.001", + "time": "0", "classname": "zeta-dropdown-menu-item Content Tests", "file": "src/test/dropdown/dropdown-menu-item.test.ts" } @@ -1427,7 +1410,7 @@ { "_attributes": { "name": "sets the correct border radius when rounded is false", - "time": "0.001", + "time": "0", "classname": "zeta-dropdown-menu-item Styling Tests", "file": "src/test/dropdown/dropdown-menu-item.test.ts" } @@ -1442,7 +1425,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.057" + "time": "0.059000000000000004" }, "properties": { "property": [ @@ -1470,7 +1453,7 @@ { "_attributes": { "name": "meets accessability requirements", - "time": "0.054", + "time": "0.056", "classname": "zeta-droppable Accessibility Tests", "file": "src/test/dropdown/droppable.test.ts" } @@ -1533,7 +1516,7 @@ "skipped": "0", "errors": "3", "failures": "3", - "time": "0.07300000000000001" + "time": "0.09000000000000001" }, "properties": { "property": [ @@ -1561,7 +1544,7 @@ { "_attributes": { "name": "meets accessability requirements", - "time": "0.065", + "time": "0.08", "classname": "zeta-fab Accessibility Tests", "file": "src/test/fab/fab.test.ts" } @@ -1579,7 +1562,7 @@ "message": "expected null to exist", "type": "AssertionError" }, - "_cdata": "AssertionError: expected null to exist\n at n. (src/test/fab/fab.test.ts?wtr-session-id=gFG4do0oTKgkLqBcerWLm:35:61)" + "_cdata": "AssertionError: expected null to exist\n at n. (src/test/fab/fab.test.ts?wtr-session-id=cTLxNRHI8cV6kwOpaILhl:35:61)" } }, { @@ -1593,7 +1576,7 @@ { "_attributes": { "name": "renders no label when label is empty", - "time": "0", + "time": "0.001", "classname": "zeta-fab Content Tests", "file": "src/test/fab/fab.test.ts" } @@ -1601,7 +1584,7 @@ { "_attributes": { "name": "renders an extended fab", - "time": "0.001", + "time": "0", "classname": "zeta-fab Content Tests", "file": "src/test/fab/fab.test.ts", "line": "54" @@ -1611,7 +1594,7 @@ "message": "expected null to exist", "type": "AssertionError" }, - "_cdata": "AssertionError: expected null to exist\n at n. (src/test/fab/fab.test.ts?wtr-session-id=gFG4do0oTKgkLqBcerWLm:54:34)" + "_cdata": "AssertionError: expected null to exist\n at n. (src/test/fab/fab.test.ts?wtr-session-id=cTLxNRHI8cV6kwOpaILhl:54:34)" } }, { @@ -1627,7 +1610,7 @@ "message": "expected null to exist", "type": "AssertionError" }, - "_cdata": "AssertionError: expected null to exist\n at n. (src/test/fab/fab.test.ts?wtr-session-id=gFG4do0oTKgkLqBcerWLm:63:30)" + "_cdata": "AssertionError: expected null to exist\n at n. (src/test/fab/fab.test.ts?wtr-session-id=cTLxNRHI8cV6kwOpaILhl:63:30)" } }, { @@ -1649,7 +1632,7 @@ { "_attributes": { "name": "renders a full rounded fab", - "time": "0", + "time": "0.001", "classname": "zeta-fab Styling Tests", "file": "src/test/fab/fab.test.ts" } @@ -1673,7 +1656,7 @@ { "_attributes": { "name": "renders a non-rounded fab", - "time": "0.001", + "time": "0.002", "classname": "zeta-fab Styling Tests", "file": "src/test/fab/fab.test.ts" } @@ -1688,7 +1671,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.097" + "time": "0.13" }, "properties": { "property": [ @@ -1715,7 +1698,7 @@ "testcase": { "_attributes": { "name": "meets accessibility requirements", - "time": "0.097", + "time": "0.13", "classname": "zeta-file-upload Accessibility Tests", "file": "src/test/file-upload/file-upload.test.ts" } @@ -1729,7 +1712,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.025" + "time": "0.03900000000000001" }, "properties": { "property": [ @@ -1757,7 +1740,7 @@ { "_attributes": { "name": "renders default flavor correctly", - "time": "0.02", + "time": "0.035", "classname": "zeta-upload-item Content Tests", "file": "src/test/file-upload/upload-item.test.ts" } @@ -1765,7 +1748,7 @@ { "_attributes": { "name": "renders completed flavor correctly", - "time": "0.002", + "time": "0.001", "classname": "zeta-upload-item Content Tests", "file": "src/test/file-upload/upload-item.test.ts" } @@ -1794,23 +1777,6 @@ "file": "src/test/file-upload/upload-item.test.ts" } } - ], - "system-out": [ - { - "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." - }, - { - "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." - }, - { - "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." - }, - { - "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." - }, - { - "_cdata": "Multiple versions of Lit loaded. Loading multiple versions is not recommended. See https://lit.dev/msg/multiple-versions for more information." - } ] }, { @@ -1821,7 +1787,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.079" + "time": "0.081" }, "properties": { "property": [ @@ -1865,7 +1831,7 @@ { "_attributes": { "name": "renders background in dark-mode", - "time": "0.004", + "time": "0.006", "classname": "zeta-global-header Styling Tests", "file": "src/test/global-header/global-header.test.ts" } @@ -1880,7 +1846,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.086" + "time": "0.093" }, "properties": { "property": [ @@ -1908,7 +1874,7 @@ { "_attributes": { "name": "meets accessibility requirements", - "time": "0.086", + "time": "0.092", "classname": "zeta-grid-menu-item Accessibility Tests", "file": "src/test/grid-menu-item/grid-menu-item.test.ts" } @@ -1916,7 +1882,7 @@ { "_attributes": { "name": "renders the given icon", - "time": "0", + "time": "0.001", "classname": "zeta-grid-menu-item Content Tests", "file": "src/test/grid-menu-item/grid-menu-item.test.ts" } @@ -1947,7 +1913,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.114" + "time": "0.116" }, "properties": { "property": [ @@ -1975,7 +1941,7 @@ { "_attributes": { "name": "meets accessibility requirements", - "time": "0.114", + "time": "0.116", "classname": "zeta-in-page-banner Accessibility Tests", "file": "src/test/in-page-banner/in-page-banner.test.ts" } @@ -2006,7 +1972,7 @@ "skipped": "1", "errors": "0", "failures": "0", - "time": "0.115" + "time": "0.103" }, "properties": { "property": [ @@ -2034,7 +2000,7 @@ { "_attributes": { "name": "meets accessability requirements", - "time": "0.112", + "time": "0.103", "classname": "zeta-navigation-bar Accessibility Tests", "file": "src/test/navigation-bar/navigation-bar.test.ts" } @@ -2050,7 +2016,7 @@ { "_attributes": { "name": "renders the correct label and icon for each navigation bar item", - "time": "0.001", + "time": "0", "classname": "zeta-navigation-bar Content Tests", "file": "src/test/navigation-bar/navigation-bar.test.ts" } @@ -2058,7 +2024,7 @@ { "_attributes": { "name": "renders the correct badge content for each navigation bar item", - "time": "0.001", + "time": "0", "classname": "zeta-navigation-bar Content Tests", "file": "src/test/navigation-bar/navigation-bar.test.ts" } @@ -2066,7 +2032,7 @@ { "_attributes": { "name": "updates badge content when the value changes", - "time": "0.001", + "time": "0", "classname": "zeta-navigation-bar Content Tests", "file": "src/test/navigation-bar/navigation-bar.test.ts" } @@ -2090,7 +2056,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.051" + "time": "0.052" }, "properties": { "property": [ @@ -2117,7 +2083,7 @@ "testcase": { "_attributes": { "name": "meets accessibility requirements", - "time": "0.051", + "time": "0.052", "classname": "zeta-navigation-drawer Accessibility Tests", "file": "src/test/navigation-drawer/navigation-drawer.test.ts" } @@ -2178,7 +2144,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.072" + "time": "0.073" }, "properties": { "property": [ @@ -2205,7 +2171,7 @@ "testcase": { "_attributes": { "name": "meets accessibility requirements", - "time": "0.072", + "time": "0.073", "classname": "zeta-navigation-drawer-item Accessibility Tests", "file": "src/test/navigation-drawer-item/navigation-drawer-item.test.ts" } @@ -2219,7 +2185,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.068" + "time": "0.075" }, "properties": { "property": [ @@ -2246,7 +2212,7 @@ "testcase": { "_attributes": { "name": "meets accessibility requirements", - "time": "0.068", + "time": "0.075", "classname": "zeta-navigation-drawer-sub-item Accessibility Tests", "file": "src/test/navigation-drawer-sub-item/navigation-drawer-sub-item.test.ts" } @@ -2260,7 +2226,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.046" + "time": "0.047" }, "properties": { "property": [ @@ -2287,7 +2253,7 @@ "testcase": { "_attributes": { "name": "meets accessibility requirements", - "time": "0.046", + "time": "0.047", "classname": "zeta-navigation-header Accessibility Tests", "file": "src/test/navigation-header/navigation-header.test.ts" } @@ -2301,7 +2267,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.055" + "time": "0.052" }, "properties": { "property": [ @@ -2328,7 +2294,7 @@ "testcase": { "_attributes": { "name": "meets accessibility requirements", - "time": "0.055", + "time": "0.052", "classname": "zeta-navigation-profile Accessibility Tests", "file": "src/test/navigation-profile/navigation-profile.test.ts" } @@ -2342,7 +2308,7 @@ "skipped": "1", "errors": "0", "failures": "0", - "time": "0.008" + "time": "0.009000000000000001" }, "properties": { "property": [ @@ -2370,7 +2336,7 @@ { "_attributes": { "name": "renders the label slot correctly", - "time": "0.005", + "time": "0.006", "classname": "zeta-navigation-rail-item Content Tests", "file": "src/test/navigation-rail/navigation-rail-item.test.ts" } @@ -2410,7 +2376,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.011" + "time": "0.009000000000000001" }, "properties": { "property": [ @@ -2438,7 +2404,7 @@ { "_attributes": { "name": "renders the navigation items", - "time": "0.01", + "time": "0.008", "classname": "zeta-navigation-rail Content Tests", "file": "src/test/navigation-rail/navigation-rail.test.ts" } @@ -2461,7 +2427,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.03" + "time": "0.027000000000000003" }, "properties": { "property": [ @@ -2489,7 +2455,7 @@ { "_attributes": { "name": "creates from document.createElement", - "time": "0.001", + "time": "0", "classname": "zeta-pagination Content Tests", "file": "src/test/pagination/pagination.test.ts" } @@ -2505,7 +2471,7 @@ { "_attributes": { "name": "should disable left controls", - "time": "0.011", + "time": "0.01", "classname": "zeta-pagination Content Tests", "file": "src/test/pagination/pagination.test.ts" } @@ -2521,7 +2487,7 @@ { "_attributes": { "name": "should not set invalid page", - "time": "0.003", + "time": "0.002", "classname": "zeta-pagination Content Tests", "file": "src/test/pagination/pagination.test.ts" } @@ -2553,7 +2519,7 @@ { "_attributes": { "name": "should increment page", - "time": "0.003", + "time": "0.004", "classname": "zeta-pagination Interaction Tests", "file": "src/test/pagination/pagination.test.ts" } @@ -2561,7 +2527,7 @@ { "_attributes": { "name": "should decrement page", - "time": "0.003", + "time": "0.002", "classname": "zeta-pagination Interaction Tests", "file": "src/test/pagination/pagination.test.ts" } @@ -2608,7 +2574,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.063" + "time": "0.071" }, "properties": { "property": [ @@ -2635,7 +2601,7 @@ "testcase": { "_attributes": { "name": "meets accessibility requirements", - "time": "0.063", + "time": "0.071", "classname": "zeta-progress-bar Accessibility Tests", "file": "src/test/progress-bar/progress-bar.test.ts" } @@ -2649,7 +2615,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.011" + "time": "0.012" }, "properties": { "property": [ @@ -2677,7 +2643,7 @@ { "_attributes": { "name": "creates from document.createElement", - "time": "0", + "time": "0.001", "classname": "ZetaProgressCircle Content Tests", "file": "src/test/progress-circle/progress-circle.test.ts" } @@ -2693,7 +2659,7 @@ { "_attributes": { "name": "should set value to 100 if above 100", - "time": "0.007", + "time": "0.006", "classname": "ZetaProgressCircle Content Tests", "file": "src/test/progress-circle/progress-circle.test.ts" } @@ -2709,7 +2675,7 @@ { "_attributes": { "name": "should set value ", - "time": "0.001", + "time": "0", "classname": "ZetaProgressCircle Content Tests", "file": "src/test/progress-circle/progress-circle.test.ts" } @@ -2717,7 +2683,7 @@ { "_attributes": { "name": "should render uploading components", - "time": "0.002", + "time": "0.004", "classname": "ZetaProgressCircle Content Tests", "file": "src/test/progress-circle/progress-circle.test.ts" } @@ -2740,7 +2706,7 @@ "skipped": "3", "errors": "0", "failures": "0", - "time": "0.008" + "time": "0.004" }, "properties": { "property": [ @@ -2795,7 +2761,7 @@ { "_attributes": { "name": "sets the name attribute correctly", - "time": "0.002", + "time": "0.001", "classname": "zeta-radio-button Content Tests", "file": "src/test/radio-button/radio-button.test.ts" } @@ -2803,7 +2769,7 @@ { "_attributes": { "name": "sets the id attribute correctly", - "time": "0", + "time": "0.001", "classname": "zeta-radio-button Content Tests", "file": "src/test/radio-button/radio-button.test.ts" } @@ -2811,7 +2777,7 @@ { "_attributes": { "name": "renders the radio button as unchecked by default", - "time": "0.002", + "time": "0", "classname": "zeta-radio-button Content Tests", "file": "src/test/radio-button/radio-button.test.ts" } @@ -2819,7 +2785,7 @@ { "_attributes": { "name": "changes the checked state when clicked", - "time": "0.002", + "time": "0.001", "classname": "zeta-radio-button Interaction Tests", "file": "src/test/radio-button/radio-button.test.ts" } @@ -2835,7 +2801,7 @@ { "_attributes": { "name": "checks the radio when label is clicked", - "time": "0.002", + "time": "0.001", "classname": "zeta-radio-button label Interaction Tests", "file": "src/test/radio-button/radio-button.test.ts" } @@ -2879,7 +2845,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.115" + "time": "0.10600000000000001" }, "properties": { "property": [ @@ -2907,7 +2873,7 @@ { "_attributes": { "name": "meets accessibility requirements", - "time": "0.107", + "time": "0.1", "classname": "zeta-range-selector Accessibility Tests", "file": "src/test/range-selector/range-selector.test.ts" } @@ -2923,7 +2889,7 @@ { "_attributes": { "name": "renders the label", - "time": "0.001", + "time": "0", "classname": "zeta-range-selector Content Tests", "file": "src/test/range-selector/range-selector.test.ts" } @@ -2939,7 +2905,7 @@ { "_attributes": { "name": "renders the upper input field", - "time": "0.001", + "time": "0", "classname": "zeta-range-selector Content Tests", "file": "src/test/range-selector/range-selector.test.ts" } @@ -2947,7 +2913,7 @@ { "_attributes": { "name": "sets the initial values correctly", - "time": "0.001", + "time": "0", "classname": "zeta-range-selector Content Tests", "file": "src/test/range-selector/range-selector.test.ts" } @@ -2963,7 +2929,7 @@ { "_attributes": { "name": "sets the upper input width and height correctly", - "time": "0", + "time": "0.001", "classname": "zeta-range-selector Dimensions Tests", "file": "src/test/range-selector/range-selector.test.ts" } @@ -3070,7 +3036,7 @@ "skipped": "1", "errors": "0", "failures": "0", - "time": "0.018000000000000006" + "time": "0.020000000000000004" }, "properties": { "property": [ @@ -3114,7 +3080,7 @@ { "_attributes": { "name": "focus on input when field focused", - "time": "0.008", + "time": "0.009", "classname": "zeta-search Content Tests", "file": "src/test/search/search.test.ts" } @@ -3122,7 +3088,7 @@ { "_attributes": { "name": "blur input when field is blurred", - "time": "0.001", + "time": "0.002", "classname": "zeta-search Content Tests", "file": "src/test/search/search.test.ts" } @@ -3146,7 +3112,7 @@ { "_attributes": { "name": "should set correct default icon size", - "time": "0.001", + "time": "0", "classname": "zeta-search Dimensions Tests", "file": "src/test/search/search.test.ts" } @@ -3178,7 +3144,7 @@ { "_attributes": { "name": "clears input", - "time": "0.001", + "time": "0.002", "classname": "zeta-search Interaction Tests", "file": "src/test/search/search.test.ts" } @@ -3210,7 +3176,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.016" + "time": "0.015000000000000001" }, "properties": { "property": [ @@ -3246,7 +3212,7 @@ { "_attributes": { "name": "sets the first item as active by default", - "time": "0.002", + "time": "0.001", "classname": "zeta-segmented-control Content Tests", "file": "src/test/segmented-control/segmented-control.test.ts" } @@ -3291,7 +3257,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.082" + "time": "0.07800000000000001" }, "properties": { "property": [ @@ -3319,7 +3285,7 @@ { "_attributes": { "name": "meets accessibility requirements", - "time": "0.073", + "time": "0.069", "classname": "zeta-slider Accessibility Tests", "file": "src/test/slider/slider.test.ts" } @@ -3359,7 +3325,7 @@ { "_attributes": { "name": "sets the track height correctly", - "time": "0.001", + "time": "0", "classname": "zeta-slider Dimensions Tests", "file": "src/test/slider/slider.test.ts" } @@ -3367,7 +3333,7 @@ { "_attributes": { "name": "sets the handle width and height correctly", - "time": "0.001", + "time": "0", "classname": "zeta-slider Dimensions Tests", "file": "src/test/slider/slider.test.ts" } @@ -3383,7 +3349,7 @@ { "_attributes": { "name": "sets the correct background color for the track", - "time": "0.001", + "time": "0", "classname": "zeta-slider Styling Tests", "file": "src/test/slider/slider.test.ts" } @@ -3391,7 +3357,7 @@ { "_attributes": { "name": "sets the correct color for the selected area", - "time": "0", + "time": "0.001", "classname": "zeta-slider Styling Tests", "file": "src/test/slider/slider.test.ts" } @@ -3399,7 +3365,7 @@ { "_attributes": { "name": "sets the correct background color for the handle", - "time": "0", + "time": "0.001", "classname": "zeta-slider Styling Tests", "file": "src/test/slider/slider.test.ts" } @@ -3407,7 +3373,7 @@ { "_attributes": { "name": "sets the correct color for the selected area and handle when pressed down", - "time": "0.001", + "time": "0.002", "classname": "zeta-slider Styling Tests", "file": "src/test/slider/slider.test.ts" } @@ -3415,7 +3381,7 @@ { "_attributes": { "name": "sets the correct border radius for the handle", - "time": "0", + "time": "0.001", "classname": "zeta-slider Styling Tests", "file": "src/test/slider/slider.test.ts" } @@ -3439,7 +3405,7 @@ { "_attributes": { "name": "updates the lower and upper values when the handles are dragged", - "time": "0.003", + "time": "0.002", "classname": "zeta-slider Interaction Tests", "file": "src/test/slider/slider.test.ts" } @@ -3454,7 +3420,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.10500000000000001" + "time": "0.11200000000000002" }, "properties": { "property": [ @@ -3482,7 +3448,7 @@ { "_attributes": { "name": "meets accessibility requirements", - "time": "0.093", + "time": "0.101", "classname": "zeta-slider-input-field Accessibility Tests", "file": "src/test/slider-input-field/slider-input-field.test.ts" } @@ -3506,7 +3472,7 @@ { "_attributes": { "name": "renders the input field", - "time": "0.001", + "time": "0", "classname": "zeta-slider-input-field Content Tests", "file": "src/test/slider-input-field/slider-input-field.test.ts" } @@ -3530,7 +3496,7 @@ { "_attributes": { "name": "sets the input width and height correctly", - "time": "0", + "time": "0.001", "classname": "zeta-slider-input-field Dimensions Tests", "file": "src/test/slider-input-field/slider-input-field.test.ts" } @@ -3538,7 +3504,7 @@ { "_attributes": { "name": "sets the correct styles for the label", - "time": "0", + "time": "0.001", "classname": "zeta-slider-input-field Styling Tests", "file": "src/test/slider-input-field/slider-input-field.test.ts" } @@ -3546,7 +3512,7 @@ { "_attributes": { "name": "sets the correct styles for the input", - "time": "0.001", + "time": "0", "classname": "zeta-slider-input-field Styling Tests", "file": "src/test/slider-input-field/slider-input-field.test.ts" } @@ -3562,7 +3528,7 @@ { "_attributes": { "name": "updates the hidden input value when the slider value changes", - "time": "0.001", + "time": "0.003", "classname": "zeta-slider-input-field Interaction Tests", "file": "src/test/slider-input-field/slider-input-field.test.ts" } @@ -3578,7 +3544,7 @@ { "_attributes": { "name": "returns the correct data when in a form", - "time": "0.008", + "time": "0.005", "classname": "zeta-slider-input-field Interaction Tests", "file": "src/test/slider-input-field/slider-input-field.test.ts" } @@ -3634,7 +3600,7 @@ "skipped": "1", "errors": "0", "failures": "0", - "time": "0.148" + "time": "0.20299999999999999" }, "properties": { "property": [ @@ -3719,7 +3685,7 @@ { "_attributes": { "name": "sets the correct colors for default status", - "time": "0.001", + "time": "0.002", "classname": "zeta-snackbar Styling Tests", "file": "src/test/snackbar/snackbar.test.ts" } @@ -3751,7 +3717,7 @@ { "_attributes": { "name": "sets the correct colors for negative status", - "time": "0", + "time": "0.001", "classname": "zeta-snackbar Styling Tests", "file": "src/test/snackbar/snackbar.test.ts" } @@ -3759,7 +3725,7 @@ { "_attributes": { "name": "sets the correct colors for view status", - "time": "0.001", + "time": "0.002", "classname": "zeta-snackbar Styling Tests", "file": "src/test/snackbar/snackbar.test.ts" } @@ -3767,7 +3733,7 @@ { "_attributes": { "name": "removes the element from the screen when the close icon is clicked", - "time": "0.016", + "time": "0.045", "classname": "zeta-snackbar Interaction Tests", "file": "src/test/snackbar/snackbar.test.ts" } @@ -3775,7 +3741,7 @@ { "_attributes": { "name": "removes the element from the screen when the close icon is enter pressed", - "time": "0.006", + "time": "0.017", "classname": "zeta-snackbar Interaction Tests", "file": "src/test/snackbar/snackbar.test.ts" } @@ -3799,7 +3765,7 @@ { "_attributes": { "name": "calls the action function on space pressed", - "time": "0.052", + "time": "0.053", "classname": "zeta-snackbar Interaction Tests", "file": "src/test/snackbar/snackbar.test.ts" } @@ -3807,7 +3773,7 @@ { "_attributes": { "name": "calls the action function on mouse click", - "time": "0.009", + "time": "0.02", "classname": "zeta-snackbar Interaction Tests", "file": "src/test/snackbar/snackbar.test.ts" } @@ -3995,7 +3961,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.014000000000000005" + "time": "0.015000000000000003" }, "properties": { "property": [ @@ -4039,7 +4005,7 @@ { "_attributes": { "name": "sets value", - "time": "0.006", + "time": "0.007", "classname": "zeta-stepper-input Content Tests", "file": "src/test/stepper-input/stepper-input.test.ts" } @@ -4102,7 +4068,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.008" + "time": "0.007" }, "properties": { "property": [ @@ -4146,7 +4112,7 @@ { "_attributes": { "name": "should render steps", - "time": "0.007", + "time": "0.006", "classname": "zeta-stepper Content Tests", "file": "src/test/stepper-input/stepper.test.ts" } @@ -4189,7 +4155,7 @@ { "_attributes": { "name": "creates from document.createElement", - "time": "0.001", + "time": "0", "classname": "zeta-switch Content Tests", "file": "src/test/switch/switch.test.ts" } @@ -4197,7 +4163,7 @@ { "_attributes": { "name": "creates from constructor", - "time": "0", + "time": "0.001", "classname": "zeta-switch Content Tests", "file": "src/test/switch/switch.test.ts" } @@ -4213,7 +4179,7 @@ { "_attributes": { "name": "blur on button when switch blurred", - "time": "0", + "time": "0.001", "classname": "zeta-switch Content Tests", "file": "src/test/switch/switch.test.ts" } @@ -4221,7 +4187,7 @@ { "_attributes": { "name": "activeIcon color", - "time": "0", + "time": "0.002", "classname": "zeta-switch Styling Tests", "file": "src/test/switch/switch.test.ts" } @@ -4229,7 +4195,7 @@ { "_attributes": { "name": "inactiveIcon color", - "time": "0", + "time": "0.001", "classname": "zeta-switch Styling Tests", "file": "src/test/switch/switch.test.ts" } @@ -4237,7 +4203,7 @@ { "_attributes": { "name": "track backgroundColor", - "time": "0", + "time": "0.001", "classname": "zeta-switch Styling Tests", "file": "src/test/switch/switch.test.ts" } @@ -4261,7 +4227,7 @@ { "_attributes": { "name": "inactiveIcon color, :hover color", - "time": "0.015", + "time": "0.004", "classname": "zeta-switch disabled Styling Tests", "file": "src/test/switch/switch.test.ts" } @@ -4269,7 +4235,7 @@ { "_attributes": { "name": "activeIcon color, :hover color", - "time": "0.009", + "time": "0.015", "classname": "zeta-switch disabled Styling Tests", "file": "src/test/switch/switch.test.ts" } @@ -4277,7 +4243,7 @@ { "_attributes": { "name": "track backgroundColor, :hover backgroundColor", - "time": "0.015", + "time": "0.017", "classname": "zeta-switch disabled Styling Tests", "file": "src/test/switch/switch.test.ts" } @@ -4285,7 +4251,7 @@ { "_attributes": { "name": "thumb backgroundColor, :hover backgroundColor", - "time": "0.019", + "time": "0.014", "classname": "zeta-switch disabled Styling Tests", "file": "src/test/switch/switch.test.ts" } @@ -4293,7 +4259,7 @@ { "_attributes": { "name": "track backgroundColor", - "time": "0.028", + "time": "0.032", "classname": "zeta-switch:hover Styling Tests", "file": "src/test/switch/switch.test.ts" } @@ -4301,7 +4267,7 @@ { "_attributes": { "name": "thumb backgroundColor", - "time": "0.033", + "time": "0.032", "classname": "zeta-switch:hover Styling Tests", "file": "src/test/switch/switch.test.ts" } @@ -4363,7 +4329,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.055" + "time": "0.057" }, "properties": { "property": [ @@ -4391,7 +4357,7 @@ { "_attributes": { "name": "it meets accessibility requirements", - "time": "0.055", + "time": "0.057", "classname": "zeta-tag Accessibility Tests", "file": "src/test/tag/tag.test.ts" } @@ -4438,7 +4404,7 @@ "skipped": "1", "errors": "0", "failures": "0", - "time": "0.04900000000000001" + "time": "0.04600000000000002" }, "properties": { "property": [ @@ -4475,7 +4441,7 @@ { "_attributes": { "name": "creates from constructor", - "time": "0.001", + "time": "0.002", "classname": "zeta-text-input Content Tests", "file": "src/test/text-input/text-input.test.ts" } @@ -4483,7 +4449,7 @@ { "_attributes": { "name": "focus on input when field focused", - "time": "0.012", + "time": "0.014", "classname": "zeta-text-input Content Tests", "file": "src/test/text-input/text-input.test.ts" } @@ -4499,7 +4465,7 @@ { "_attributes": { "name": "blur on input when field blurred", - "time": "0.002", + "time": "0.001", "classname": "zeta-text-input Content Tests", "file": "src/test/text-input/text-input.test.ts" } @@ -4515,7 +4481,7 @@ { "_attributes": { "name": "should render icon on the right", - "time": "0.003", + "time": "0.001", "classname": "zeta-text-input Content Tests", "file": "src/test/text-input/text-input.test.ts" } @@ -4523,7 +4489,7 @@ { "_attributes": { "name": "should render prefix", - "time": "0.005", + "time": "0.001", "classname": "zeta-text-input Content Tests", "file": "src/test/text-input/text-input.test.ts" } @@ -4539,7 +4505,7 @@ { "_attributes": { "name": "should render label", - "time": "0.003", + "time": "0.001", "classname": "zeta-text-input Content Tests", "file": "src/test/text-input/text-input.test.ts" } @@ -4555,7 +4521,7 @@ { "_attributes": { "name": "should render error icon", - "time": "0.002", + "time": "0.001", "classname": "zeta-text-input Content Tests", "file": "src/test/text-input/text-input.test.ts" } @@ -4595,7 +4561,7 @@ { "_attributes": { "name": "should apply type time", - "time": "0.005", + "time": "0.007", "classname": "zeta-text-input Content Tests", "file": "src/test/text-input/text-input.test.ts" } @@ -4603,7 +4569,7 @@ { "_attributes": { "name": "should apply type data", - "time": "0.001", + "time": "0.002", "classname": "zeta-text-input Content Tests", "file": "src/test/text-input/text-input.test.ts" } @@ -4619,7 +4585,7 @@ { "_attributes": { "name": "should render error text color", - "time": "0.001", + "time": "0.002", "classname": "zeta-text-input Styling Tests", "file": "src/test/text-input/text-input.test.ts" } @@ -4650,7 +4616,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.101" + "time": "0.097" }, "properties": { "property": [ @@ -4678,7 +4644,7 @@ { "_attributes": { "name": "meets accessibility requirements", - "time": "0.1", + "time": "0.097", "classname": "zeta-assist-chip Accessibility Tests", "file": "src/test/chips/assist-chip/assist-chip.test.ts" } @@ -4686,7 +4652,7 @@ { "_attributes": { "name": "sets the correct text on the chip", - "time": "0.001", + "time": "0", "classname": "zeta-assist-chip Content Tests", "file": "src/test/chips/assist-chip/assist-chip.test.ts" } @@ -4709,7 +4675,7 @@ "skipped": "0", "errors": "0", "failures": "0", - "time": "0.084" + "time": "0.085" }, "properties": { "property": [ @@ -4737,7 +4703,7 @@ { "_attributes": { "name": "it meets accessibility requirements", - "time": "0.081", + "time": "0.083", "classname": "zeta-filter-chip Accessibility Tests", "file": "src/test/chips/filter-chip/filter-chip.test.ts" } @@ -4745,7 +4711,7 @@ { "_attributes": { "name": "sets the correct text on the chip", - "time": "0.001", + "time": "0", "classname": "zeta-filter-chip Content Tests", "file": "src/test/chips/filter-chip/filter-chip.test.ts" }