From ad1f55cdbe2cb274ea46a21c5d118c2f624f79b0 Mon Sep 17 00:00:00 2001 From: Ellen Kraffmiller Date: Thu, 4 May 2023 18:02:04 -0400 Subject: [PATCH 01/14] Created DatasetSummary component, added fields to Dataset model --- src/dataset/domain/models/Dataset.ts | 3 ++ src/sections/dataset/Dataset.tsx | 3 +- .../dataset/datasetSummary/DatasetSummary.tsx | 36 +++++++++++++++++++ src/stories/dataset/Dataset.stories.tsx | 10 +++++- .../dataset/DatasetSummary.stories.tsx | 33 +++++++++++++++++ tests/dataset/domain/models/DatasetMother.ts | 3 ++ .../sections/dataset/DatasetSummary.test.tsx | 31 ++++++++++++++++ 7 files changed, 117 insertions(+), 2 deletions(-) create mode 100644 src/sections/dataset/datasetSummary/DatasetSummary.tsx create mode 100644 src/stories/dataset/DatasetSummary.stories.tsx create mode 100644 tests/sections/dataset/DatasetSummary.test.tsx diff --git a/src/dataset/domain/models/Dataset.ts b/src/dataset/domain/models/Dataset.ts index 45fd11f43..c86447ea7 100644 --- a/src/dataset/domain/models/Dataset.ts +++ b/src/dataset/domain/models/Dataset.ts @@ -2,4 +2,7 @@ export interface Dataset { id: string title: string version: string + description: string + subject: string + keyword: string } diff --git a/src/sections/dataset/Dataset.tsx b/src/sections/dataset/Dataset.tsx index 06ee22a90..dce958e49 100644 --- a/src/sections/dataset/Dataset.tsx +++ b/src/sections/dataset/Dataset.tsx @@ -5,6 +5,7 @@ import { Tabs } from '../ui/tabs/Tabs' import { Col } from '../ui/grid/Col' import { Row } from '../ui/grid/Row' import styles from './Dataset.module.scss' +import { DatasetSummary } from './datasetSummary/DatasetSummary' interface DatasetProps { datasetRepository: DatasetRepository @@ -25,7 +26,7 @@ export function Dataset({ datasetRepository, id }: DatasetProps) { Citation Block - Summary Block + diff --git a/src/sections/dataset/datasetSummary/DatasetSummary.tsx b/src/sections/dataset/datasetSummary/DatasetSummary.tsx new file mode 100644 index 000000000..f48bbc30e --- /dev/null +++ b/src/sections/dataset/datasetSummary/DatasetSummary.tsx @@ -0,0 +1,36 @@ +import { DatasetRepository } from '../../../dataset/domain/repositories/DatasetRepository' +import { useDataset } from '../useDataset' +import { Col } from '../../ui/grid/Col' +import { Row } from '../../ui/grid/Row' + +interface DatasetSummaryProps { + datasetRepository: DatasetRepository + id: string +} + +export function DatasetSummary({ datasetRepository, id }: DatasetSummaryProps) { + const { dataset } = useDataset(datasetRepository, id) + + return dataset ? ( +
+ + + Description: + + {dataset.description} + + + + Subject: + + {dataset.subject} + + + + Keyword: + + {dataset.keyword} + +
+ ) : null +} diff --git a/src/stories/dataset/Dataset.stories.tsx b/src/stories/dataset/Dataset.stories.tsx index f085dfa0d..a0272861f 100644 --- a/src/stories/dataset/Dataset.stories.tsx +++ b/src/stories/dataset/Dataset.stories.tsx @@ -15,7 +15,15 @@ type Story = StoryObj class DatasetMockRepository implements DatasetRepository { getById(id: string) { - return Promise.resolve({ id: id, title: 'Dataset title', version: '1.0' }) + return Promise.resolve({ + id: id, + title: 'Here is the title', + version: '1.0', + description: + 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.', + subject: 'Medicine, Health and Life Sciences, Social Sciences', + keyword: 'Malaria, Tuberculosis, Drug Resistant' + }) } } diff --git a/src/stories/dataset/DatasetSummary.stories.tsx b/src/stories/dataset/DatasetSummary.stories.tsx new file mode 100644 index 000000000..8eb3d4761 --- /dev/null +++ b/src/stories/dataset/DatasetSummary.stories.tsx @@ -0,0 +1,33 @@ +import type { Meta, StoryObj } from '@storybook/react' +import { WithI18next } from '../WithI18next' +import { WithLayout } from '../WithLayout' +import { Dataset } from '../../sections/dataset/Dataset' +import { DatasetRepository } from '../../dataset/domain/repositories/DatasetRepository' +import { DatasetSummary } from '../../sections/dataset/datasetSummary/DatasetSummary' + +const meta: Meta = { + title: 'Pages/DatasetSummary', + component: DatasetSummary, + decorators: [WithI18next, WithLayout] +} + +export default meta +type Story = StoryObj + +class DatasetMockRepository implements DatasetRepository { + getById(id: string) { + return Promise.resolve({ + id: id, + title: 'Test Dataset', + version: '1.0', + description: + 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.', + subject: 'Medicine, Health and Life Sciences, Social Sciences', + keyword: 'Malaria, Tuberculosis, Drug Resistant' + }) + } +} + +export const Default: Story = { + render: () => +} diff --git a/tests/dataset/domain/models/DatasetMother.ts b/tests/dataset/domain/models/DatasetMother.ts index 4d31adffd..1f1e61430 100644 --- a/tests/dataset/domain/models/DatasetMother.ts +++ b/tests/dataset/domain/models/DatasetMother.ts @@ -7,6 +7,9 @@ export class DatasetMother { id: faker.datatype.uuid(), title: faker.lorem.sentence(), version: faker.datatype.uuid(), + description: faker.lorem.lines(4), + subject: faker.lorem.slug(3), + keyword: faker.lorem.slug(4), ...props } } diff --git a/tests/sections/dataset/DatasetSummary.test.tsx b/tests/sections/dataset/DatasetSummary.test.tsx new file mode 100644 index 000000000..8fca1bfc8 --- /dev/null +++ b/tests/sections/dataset/DatasetSummary.test.tsx @@ -0,0 +1,31 @@ +import { createSandbox, SinonSandbox } from 'sinon' +import { DatasetRepository } from '../../../src/dataset/domain/repositories/DatasetRepository' +import { render } from '@testing-library/react' +import { DatasetMother } from '../../dataset/domain/models/DatasetMother' +import { DatasetSummary } from '../../../src/sections/dataset/datasetSummary/DatasetSummary' + +describe('DatasetSummary', () => { + const sandbox: SinonSandbox = createSandbox() + const testDataset = DatasetMother.create() + + afterEach(() => { + sandbox.restore() + }) + + it('renders the DatasetSummary fields', async () => { + const datasetRepository: DatasetRepository = {} as DatasetRepository + datasetRepository.getById = sandbox.stub().resolves(testDataset) + + const { findByText } = render( + + ) + + // const description = await findByText(`${testDataset.description.substring(0, 20)}`) + // expect(description).toBeInTheDocument() + + const subject = await findByText(`${testDataset.subject}`) + expect(subject).toBeInTheDocument() + const keyword = await findByText(`${testDataset.keyword}`) + expect(keyword).toBeInTheDocument() + }) +}) From 6b23597975ae178676d72ac22a22bd3b7eae6c74 Mon Sep 17 00:00:00 2001 From: Ellen Kraffmiller Date: Fri, 5 May 2023 16:05:15 -0400 Subject: [PATCH 02/14] Add array of SummaryFields to model, add SanitizedHTML --- .../ui/sanitized-html/SanitizedHtml.spec.tsx | 25 ++++++++++++ package-lock.json | 22 ++++++++++ package.json | 2 + src/dataset/domain/models/Dataset.ts | 6 +-- src/dataset/domain/models/DatasetField.ts | 5 +++ .../dataset/datasetSummary/DatasetSummary.tsx | 31 ++++++-------- .../ui/sanitized-html/SanitizedHtml.tsx | 28 +++++++++++++ src/stories/dataset/Dataset.stories.tsx | 35 +++++++++++++--- .../dataset/DatasetSummary.stories.tsx | 40 ++++++++++++++----- tests/dataset/domain/models/DatasetMother.ts | 31 ++++++++++++-- .../sections/dataset/DatasetSummary.test.tsx | 6 +-- .../ui/sanitized-html/SanitizedHtml.test.tsx | 21 ++++++++++ 12 files changed, 211 insertions(+), 41 deletions(-) create mode 100644 cypress/component/ui/sanitized-html/SanitizedHtml.spec.tsx create mode 100644 src/dataset/domain/models/DatasetField.ts create mode 100644 src/sections/ui/sanitized-html/SanitizedHtml.tsx create mode 100644 tests/sections/ui/sanitized-html/SanitizedHtml.test.tsx diff --git a/cypress/component/ui/sanitized-html/SanitizedHtml.spec.tsx b/cypress/component/ui/sanitized-html/SanitizedHtml.spec.tsx new file mode 100644 index 000000000..8c8d485ea --- /dev/null +++ b/cypress/component/ui/sanitized-html/SanitizedHtml.spec.tsx @@ -0,0 +1,25 @@ +import { SanitizedHTML } from '../../../../src/sections/ui/sanitized-html/SanitizedHtml' + +describe('SanitizedHTML', () => { + it('should render sanitized HTML', () => { + const html = 'Hello ' + cy.mount() + + cy.findByRole('script').should('not.exist') + cy.get('b').findByText('Hello').should('exist') + }) + + it('should render sanitized HTML with custom options', () => { + const html = 'Example ' + const options = { + ALLOWED_TAGS: ['a'], + ALLOWED_ATTR: ['href', 'target'] + } + cy.mount() + + cy.findByRole('img').should('not.exist') + cy.findByRole('link').should('exist') + cy.findByRole('link').should('have.attr', 'href').and('eq', 'https://example.com') + cy.findByRole('link').should('have.attr', 'target').and('eq', '_blank') + }) +}) diff --git a/package-lock.json b/package-lock.json index be930ed2f..d85ea28c4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -16,6 +16,7 @@ "@types/react": "^18.0.27", "@types/react-dom": "^18.0.10", "bootstrap": "^5.2.3", + "dompurify": "^3.0.2", "i18next": "^22.4.9", "i18next-browser-languagedetector": "^7.0.1", "i18next-http-backend": "^2.1.1", @@ -39,6 +40,7 @@ "@storybook/testing-library": "^0.1.0", "@testing-library/cypress": "^9.0.0", "@types/chai-as-promised": "^7.1.5", + "@types/dompurify": "^3.0.2", "@types/node-sass": "^4.11.3", "@types/sinon": "^10.0.13", "@typescript-eslint/eslint-plugin": "^5.51.0", @@ -8798,6 +8800,15 @@ "dev": true, "license": "MIT" }, + "node_modules/@types/dompurify": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/dompurify/-/dompurify-3.0.2.tgz", + "integrity": "sha512-YBL4ziFebbbfQfH5mlC+QTJsvh0oJUrWbmxKMyEdL7emlHJqGR2Qb34TEFKj+VCayBvjKy3xczMFNhugThUsfQ==", + "dev": true, + "dependencies": { + "@types/trusted-types": "*" + } + }, "node_modules/@types/ejs": { "version": "3.1.2", "dev": true, @@ -9237,6 +9248,12 @@ "@types/jest": "*" } }, + "node_modules/@types/trusted-types": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.3.tgz", + "integrity": "sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g==", + "dev": true + }, "node_modules/@types/unist": { "version": "2.0.6", "dev": true, @@ -12757,6 +12774,11 @@ "domelementtype": "1" } }, + "node_modules/dompurify": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.0.2.tgz", + "integrity": "sha512-B8c6JdiEpxAKnd8Dm++QQxJL4lfuc757scZtcapj6qjTjrQzyq5iAyznLKVvK+77eYNiFblHBlt7MM0fOeqoKw==" + }, "node_modules/domutils": { "version": "1.7.0", "dev": true, diff --git a/package.json b/package.json index a682d21c1..9e2fe4c4a 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,7 @@ "@types/react": "^18.0.27", "@types/react-dom": "^18.0.10", "bootstrap": "^5.2.3", + "dompurify": "^3.0.2", "i18next": "^22.4.9", "i18next-browser-languagedetector": "^7.0.1", "i18next-http-backend": "^2.1.1", @@ -88,6 +89,7 @@ "@storybook/testing-library": "^0.1.0", "@testing-library/cypress": "^9.0.0", "@types/chai-as-promised": "^7.1.5", + "@types/dompurify": "^3.0.2", "@types/node-sass": "^4.11.3", "@types/sinon": "^10.0.13", "@typescript-eslint/eslint-plugin": "^5.51.0", diff --git a/src/dataset/domain/models/Dataset.ts b/src/dataset/domain/models/Dataset.ts index c86447ea7..c16d6a589 100644 --- a/src/dataset/domain/models/Dataset.ts +++ b/src/dataset/domain/models/Dataset.ts @@ -1,8 +1,8 @@ +import { DatasetField } from './DatasetField' + export interface Dataset { id: string title: string version: string - description: string - subject: string - keyword: string + summaryFields: DatasetField[] } diff --git a/src/dataset/domain/models/DatasetField.ts b/src/dataset/domain/models/DatasetField.ts new file mode 100644 index 000000000..737064651 --- /dev/null +++ b/src/dataset/domain/models/DatasetField.ts @@ -0,0 +1,5 @@ +export interface DatasetField { + title: string + description: string + value: string +} diff --git a/src/sections/dataset/datasetSummary/DatasetSummary.tsx b/src/sections/dataset/datasetSummary/DatasetSummary.tsx index f48bbc30e..81e618585 100644 --- a/src/sections/dataset/datasetSummary/DatasetSummary.tsx +++ b/src/sections/dataset/datasetSummary/DatasetSummary.tsx @@ -2,6 +2,8 @@ import { DatasetRepository } from '../../../dataset/domain/repositories/DatasetR import { useDataset } from '../useDataset' import { Col } from '../../ui/grid/Col' import { Row } from '../../ui/grid/Row' +import { Tooltip } from '../../ui/tooltip/Tooltip' +import { SanitizedHTML } from '../../ui/sanitized-html/SanitizedHtml' interface DatasetSummaryProps { datasetRepository: DatasetRepository @@ -13,24 +15,17 @@ export function DatasetSummary({ datasetRepository, id }: DatasetSummaryProps) { return dataset ? (
- - - Description: - - {dataset.description} - - - - Subject: - - {dataset.subject} - - - - Keyword: - - {dataset.keyword} - + {dataset.summaryFields.map((field, index) => ( + + + {field.title} + + + {' '} + + + + ))}
) : null } diff --git a/src/sections/ui/sanitized-html/SanitizedHtml.tsx b/src/sections/ui/sanitized-html/SanitizedHtml.tsx new file mode 100644 index 000000000..6d16f0097 --- /dev/null +++ b/src/sections/ui/sanitized-html/SanitizedHtml.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import DOMPurify, { Config } from 'dompurify' + +interface SanitizedHTMLProps { + html: string + options?: Config +} + +const defaultOptions: Config = { + ALLOWED_TAGS: ['b', 'i', 'em', 'strong', 'a'], + ALLOWED_ATTR: ['href'] +} + +export function SanitizedHTML({ html, options }: SanitizedHTMLProps): JSX.Element { + const sanitizedHTML = React.useMemo(() => { + const config = options ? { ...defaultOptions, ...options } : defaultOptions + const sanitized = DOMPurify.sanitize(html, config) + if (typeof sanitized === 'string') { + return { __html: sanitized } + } else { + const div = document.createElement('div') + div.appendChild(sanitized.cloneNode(true)) + return { __html: div.innerHTML } + } + }, [html, options]) + + return
+} diff --git a/src/stories/dataset/Dataset.stories.tsx b/src/stories/dataset/Dataset.stories.tsx index a0272861f..4b69f5887 100644 --- a/src/stories/dataset/Dataset.stories.tsx +++ b/src/stories/dataset/Dataset.stories.tsx @@ -3,6 +3,7 @@ import { WithI18next } from '../WithI18next' import { WithLayout } from '../WithLayout' import { Dataset } from '../../sections/dataset/Dataset' import { DatasetRepository } from '../../dataset/domain/repositories/DatasetRepository' +import { faker } from '@faker-js/faker' const meta: Meta = { title: 'Pages/Dataset', @@ -17,12 +18,36 @@ class DatasetMockRepository implements DatasetRepository { getById(id: string) { return Promise.resolve({ id: id, - title: 'Here is the title', + title: 'Test Dataset', version: '1.0', - description: - 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.', - subject: 'Medicine, Health and Life Sciences, Social Sciences', - keyword: 'Malaria, Tuberculosis, Drug Resistant' + summaryFields: [ + { + title: 'Description', + description: 'this is the description field', + value: faker.lorem.paragraph(3) + }, + { + title: 'Keyword', + description: 'this is the keyword field', + value: 'Malaria, Tuberculosis, Drug Resistant' + }, + { + title: 'Subject', + description: 'this is the subject field', + value: 'Medicine, Health and Life Sciences, Social Sciences' + }, + + { + title: 'Related Publication', + description: 'this is the keyword field', + value: faker.lorem.words(3) + }, + { + title: 'Notes', + description: 'this is the notes field', + value: faker.lorem.paragraph(3) + } + ] }) } } diff --git a/src/stories/dataset/DatasetSummary.stories.tsx b/src/stories/dataset/DatasetSummary.stories.tsx index 8eb3d4761..ce29cc8cc 100644 --- a/src/stories/dataset/DatasetSummary.stories.tsx +++ b/src/stories/dataset/DatasetSummary.stories.tsx @@ -1,14 +1,13 @@ import type { Meta, StoryObj } from '@storybook/react' import { WithI18next } from '../WithI18next' -import { WithLayout } from '../WithLayout' -import { Dataset } from '../../sections/dataset/Dataset' import { DatasetRepository } from '../../dataset/domain/repositories/DatasetRepository' import { DatasetSummary } from '../../sections/dataset/datasetSummary/DatasetSummary' +import { faker } from '@faker-js/faker' const meta: Meta = { - title: 'Pages/DatasetSummary', + title: 'Sections/Dataset Page/DatasetSummary', component: DatasetSummary, - decorators: [WithI18next, WithLayout] + decorators: [WithI18next] } export default meta @@ -20,14 +19,37 @@ class DatasetMockRepository implements DatasetRepository { id: id, title: 'Test Dataset', version: '1.0', - description: - 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.', - subject: 'Medicine, Health and Life Sciences, Social Sciences', - keyword: 'Malaria, Tuberculosis, Drug Resistant' + summaryFields: [ + { + title: 'Description', + description: 'this is the description field', + value: faker.lorem.paragraph(3) + }, + { + title: 'Keyword', + description: 'this is the keyword field', + value: 'Malaria, Tuberculosis, Drug Resistant' + }, + { + title: 'Subject', + description: 'this is the subject field', + value: 'Medicine, Health and Life Sciences, Social Sciences' + }, + { + title: 'Related Publication', + description: 'this is the keyword field', + value: 'CNN Journal CNN.com' + }, + { + title: 'Notes', + description: 'this is the notes field', + value: faker.lorem.paragraph(3) + } + ] }) } } export const Default: Story = { - render: () => + render: () => } diff --git a/tests/dataset/domain/models/DatasetMother.ts b/tests/dataset/domain/models/DatasetMother.ts index 1f1e61430..e939b04b2 100644 --- a/tests/dataset/domain/models/DatasetMother.ts +++ b/tests/dataset/domain/models/DatasetMother.ts @@ -7,9 +7,34 @@ export class DatasetMother { id: faker.datatype.uuid(), title: faker.lorem.sentence(), version: faker.datatype.uuid(), - description: faker.lorem.lines(4), - subject: faker.lorem.slug(3), - keyword: faker.lorem.slug(4), + summaryFields: [ + { + title: 'Description', + description: 'this is the description field', + value: faker.lorem.paragraph(3) + }, + + { + title: 'Subject', + description: 'this is the subject field', + value: faker.lorem.words(5) + }, + { + title: 'Keyword', + description: 'this is the keyword field', + value: faker.lorem.words(3) + }, + { + title: 'Related Publication', + description: 'this is the keyword field', + value: faker.lorem.words(3) + }, + { + title: 'Notes', + description: 'this is the notes field', + value: faker.lorem.paragraph(3) + } + ], ...props } } diff --git a/tests/sections/dataset/DatasetSummary.test.tsx b/tests/sections/dataset/DatasetSummary.test.tsx index 8fca1bfc8..ad8e90e02 100644 --- a/tests/sections/dataset/DatasetSummary.test.tsx +++ b/tests/sections/dataset/DatasetSummary.test.tsx @@ -23,9 +23,9 @@ describe('DatasetSummary', () => { // const description = await findByText(`${testDataset.description.substring(0, 20)}`) // expect(description).toBeInTheDocument() - const subject = await findByText(`${testDataset.subject}`) - expect(subject).toBeInTheDocument() - const keyword = await findByText(`${testDataset.keyword}`) + const value1 = await findByText(`${testDataset.summaryFields[0].value}`) + expect(value1).toBeInTheDocument() + const keyword = await findByText(`${testDataset.summaryFields[0].title}`) expect(keyword).toBeInTheDocument() }) }) diff --git a/tests/sections/ui/sanitized-html/SanitizedHtml.test.tsx b/tests/sections/ui/sanitized-html/SanitizedHtml.test.tsx new file mode 100644 index 000000000..bf8dfbbed --- /dev/null +++ b/tests/sections/ui/sanitized-html/SanitizedHtml.test.tsx @@ -0,0 +1,21 @@ +import { render } from '@testing-library/react' +import { SanitizedHTML } from '../../../../src/sections/ui/sanitized-html/SanitizedHtml' + +describe('SanitizedHTML', () => { + it('should render sanitized HTML', () => { + const html = 'Hello ' + const { container } = render() + expect(container.innerHTML).toBe('
Hello
') + }) + + it('should render sanitized HTML with custom options', () => { + const html = 'Example ' + const options = { + ALLOWED_TAGS: ['a'], + ALLOWED_ATTR: ['href', 'target'] + } + const { container } = render() + + expect(container.innerHTML).toContain('href="https://example.com"') + }) +}) From c0b93a0b1293bf617f2bd2b9e33642ba0720248e Mon Sep 17 00:00:00 2001 From: Ellen Kraffmiller Date: Mon, 8 May 2023 16:39:37 -0400 Subject: [PATCH 03/14] Replace SanitizedHtml with MarkdownComponent --- package-lock.json | 917 +++++++++++++++++- package.json | 1 + .../dataset/datasetSummary/DatasetSummary.tsx | 4 +- .../ui/markdown/MarkdownComponent.tsx | 27 + .../dataset/DatasetSummary.stories.tsx | 5 +- 5 files changed, 933 insertions(+), 21 deletions(-) create mode 100644 src/sections/ui/markdown/MarkdownComponent.tsx diff --git a/package-lock.json b/package-lock.json index d85ea28c4..3191c5c5d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -23,6 +23,7 @@ "react-bootstrap": "^2.7.2", "react-bootstrap-icons": "^1.10.3", "react-i18next": "^12.1.5", + "react-markdown": "^8.0.7", "react-router-dom": "^6.8.1", "sass": "^1.58.1", "typescript": "^4.9.5", @@ -8785,7 +8786,6 @@ "version": "4.1.7", "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz", "integrity": "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==", - "dev": true, "dependencies": { "@types/ms": "*" } @@ -8867,6 +8867,14 @@ "@types/node": "*" } }, + "node_modules/@types/hast": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.4.tgz", + "integrity": "sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==", + "dependencies": { + "@types/unist": "*" + } + }, "node_modules/@types/istanbul-lib-coverage": { "version": "2.0.4", "license": "MIT" @@ -9070,6 +9078,14 @@ "dev": true, "license": "MIT" }, + "node_modules/@types/mdast": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.11.tgz", + "integrity": "sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw==", + "dependencies": { + "@types/unist": "*" + } + }, "node_modules/@types/mdx": { "version": "2.0.4", "dev": true, @@ -9098,8 +9114,7 @@ "node_modules/@types/ms": { "version": "0.7.31", "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz", - "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==", - "dev": true + "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==" }, "node_modules/@types/node": { "version": "16.18.12", @@ -9256,7 +9271,6 @@ }, "node_modules/@types/unist": { "version": "2.0.6", - "dev": true, "license": "MIT" }, "node_modules/@types/vfile": { @@ -11743,6 +11757,15 @@ "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==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, "node_modules/commander": { "version": "2.20.3", "dev": true, @@ -12319,7 +12342,6 @@ }, "node_modules/debug": { "version": "4.3.4", - "dev": true, "license": "MIT", "dependencies": { "ms": "2.1.2" @@ -12369,6 +12391,27 @@ "dev": true, "license": "MIT" }, + "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==", + "dependencies": { + "character-entities": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/decode-named-character-reference/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==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, "node_modules/decode-uri-component": { "version": "0.2.2", "dev": true, @@ -12661,7 +12704,6 @@ }, "node_modules/diff": { "version": "5.1.0", - "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.3.1" @@ -14361,7 +14403,6 @@ }, "node_modules/extend": { "version": "3.0.2", - "dev": true, "license": "MIT" }, "node_modules/extend-shallow": { @@ -15755,6 +15796,15 @@ "node": ">=8" } }, + "node_modules/hast-util-whitespace": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz", + "integrity": "sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, "node_modules/headers-polyfill": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/headers-polyfill/-/headers-polyfill-3.1.2.tgz", @@ -16109,6 +16159,11 @@ "dev": true, "license": "ISC" }, + "node_modules/inline-style-parser": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", + "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==" + }, "node_modules/inquirer": { "version": "8.2.5", "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.5.tgz", @@ -16679,6 +16734,17 @@ "node": ">=8" } }, + "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==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/is-plain-object": { "version": "5.0.0", "dev": true, @@ -21574,6 +21640,113 @@ "url": "https://opencollective.com/unified" } }, + "node_modules/mdast-util-from-markdown": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.0.tgz", + "integrity": "sha512-HN3W1gRIuN/ZW295c7zi7g9lVBllMgZE40RxCX37wrTPWXCWtpvOZdfnuK+1WNpvZje6XuJeI3Wnb4TJEUem+g==", + "dependencies": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "decode-named-character-reference": "^1.0.0", + "mdast-util-to-string": "^3.1.0", + "micromark": "^3.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-decode-string": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "unist-util-stringify-position": "^3.0.0", + "uvu": "^0.5.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-from-markdown/node_modules/mdast-util-to-string": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", + "integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==", + "dependencies": { + "@types/mdast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-hast": { + "version": "12.3.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-12.3.0.tgz", + "integrity": "sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==", + "dependencies": { + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "mdast-util-definitions": "^5.0.0", + "micromark-util-sanitize-uri": "^1.1.0", + "trim-lines": "^3.0.0", + "unist-util-generated": "^2.0.0", + "unist-util-position": "^4.0.0", + "unist-util-visit": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-hast/node_modules/mdast-util-definitions": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz", + "integrity": "sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==", + "dependencies": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "unist-util-visit": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-hast/node_modules/unist-util-is": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", + "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-hast/node_modules/unist-util-visit": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", + "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-hast/node_modules/unist-util-visit-parents": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", + "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, "node_modules/mdast-util-to-string": { "version": "1.1.0", "dev": true, @@ -21691,6 +21864,428 @@ "node": ">= 0.6" } }, + "node_modules/micromark": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-3.1.0.tgz", + "integrity": "sha512-6Mj0yHLdUZjHnOPgr5xfWIMqMWS12zDN6iws9SLuSz76W8jTtAv24MN4/CL7gJrl5vtxGInkkqDv/JIoRsQOvA==", + "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", + "micromark-core-commonmark": "^1.0.1", + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-chunked": "^1.0.0", + "micromark-util-combine-extensions": "^1.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-resolve-all": "^1.0.0", + "micromark-util-sanitize-uri": "^1.0.0", + "micromark-util-subtokenize": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.1", + "uvu": "^0.5.0" + } + }, + "node_modules/micromark-core-commonmark": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.0.6.tgz", + "integrity": "sha512-K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA==", + "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-factory-destination": "^1.0.0", + "micromark-factory-label": "^1.0.0", + "micromark-factory-space": "^1.0.0", + "micromark-factory-title": "^1.0.0", + "micromark-factory-whitespace": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-chunked": "^1.0.0", + "micromark-util-classify-character": "^1.0.0", + "micromark-util-html-tag-name": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-resolve-all": "^1.0.0", + "micromark-util-subtokenize": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.1", + "uvu": "^0.5.0" + } + }, + "node_modules/micromark-factory-destination": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.0.0.tgz", + "integrity": "sha512-eUBA7Rs1/xtTVun9TmV3gjfPz2wEwgK5R5xcbIM5ZYAtvGF6JkyaDsj0agx8urXnO31tEO6Ug83iVH3tdedLnw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-factory-label": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.0.2.tgz", + "integrity": "sha512-CTIwxlOnU7dEshXDQ+dsr2n+yxpP0+fn271pu0bwDIS8uqfFcumXpj5mLn3hSC8iw2MUr6Gx8EcKng1dD7i6hg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + } + }, + "node_modules/micromark-factory-space": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.0.0.tgz", + "integrity": "sha512-qUmqs4kj9a5yBnk3JMLyjtWYN6Mzfcx8uJfi5XAveBniDevmZasdGBba5b4QsvRcAkmvGo5ACmSUmyGiKTLZew==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-factory-title": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.0.2.tgz", + "integrity": "sha512-zily+Nr4yFqgMGRKLpTVsNl5L4PMu485fGFDOQJQBl2NFpjGte1e86zC0da93wf97jrc4+2G2GQudFMHn3IX+A==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + } + }, + "node_modules/micromark-factory-whitespace": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.0.0.tgz", + "integrity": "sha512-Qx7uEyahU1lt1RnsECBiuEbfr9INjQTGa6Err+gF3g0Tx4YEviPbqqGKNv/NrBaE7dVHdn1bVZKM/n5I/Bak7A==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-character": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.1.0.tgz", + "integrity": "sha512-agJ5B3unGNJ9rJvADMJ5ZiYjBRyDpzKAOk01Kpi1TKhlT1APx3XZk6eN7RtSz1erbWHC2L8T3xLZ81wdtGRZzg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-chunked": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.0.0.tgz", + "integrity": "sha512-5e8xTis5tEZKgesfbQMKRCyzvffRRUX+lK/y+DvsMFdabAicPkkZV6gO+FEWi9RfuKKoxxPwNL+dFF0SMImc1g==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^1.0.0" + } + }, + "node_modules/micromark-util-classify-character": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.0.0.tgz", + "integrity": "sha512-F8oW2KKrQRb3vS5ud5HIqBVkCqQi224Nm55o5wYLzY/9PwHGXC01tr3d7+TqHHz6zrKQ72Okwtvm/xQm6OVNZA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-combine-extensions": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.0.0.tgz", + "integrity": "sha512-J8H058vFBdo/6+AsjHp2NF7AJ02SZtWaVUjsayNFeAiydTxUwViQPxN0Hf8dp4FmCQi0UUFovFsEyRSUmFH3MA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-chunked": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-decode-numeric-character-reference": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.0.0.tgz", + "integrity": "sha512-OzO9AI5VUtrTD7KSdagf4MWgHMtET17Ua1fIpXTpuhclCqD8egFWo85GxSGvxgkGS74bEahvtM0WP0HjvV0e4w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^1.0.0" + } + }, + "node_modules/micromark-util-decode-string": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.0.2.tgz", + "integrity": "sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==", + "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": "^1.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-symbol": "^1.0.0" + } + }, + "node_modules/micromark-util-encode": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.0.1.tgz", + "integrity": "sha512-U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-util-html-tag-name": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.1.0.tgz", + "integrity": "sha512-BKlClMmYROy9UiV03SwNmckkjn8QHVaWkqoAqzivabvdGcwNGMMMH/5szAnywmsTBUzDsU57/mFi0sp4BQO6dA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-util-normalize-identifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.0.0.tgz", + "integrity": "sha512-yg+zrL14bBTFrQ7n35CmByWUTFsgst5JhA4gJYoty4Dqzj4Z4Fr/DHekSS5aLfH9bdlfnSvKAWsAgJhIbogyBg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^1.0.0" + } + }, + "node_modules/micromark-util-resolve-all": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.0.0.tgz", + "integrity": "sha512-CB/AGk98u50k42kvgaMM94wzBqozSzDDaonKU7P7jwQIuH2RU0TeBqGYJz2WY1UdihhjweivStrJ2JdkdEmcfw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-sanitize-uri": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.1.0.tgz", + "integrity": "sha512-RoxtuSCX6sUNtxhbmsEFQfWzs8VN7cTctmBPvYivo98xb/kDEoTCtJQX5wyzIYEmk/lvNFTat4hL8oW0KndFpg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-symbol": "^1.0.0" + } + }, + "node_modules/micromark-util-subtokenize": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.0.2.tgz", + "integrity": "sha512-d90uqCnXp/cy4G881Ub4psE57Sf8YD0pim9QdjCRNjfas2M1u6Lbt+XZK9gnHL2XFhnozZiEdCa9CNfXSfQ6xA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-chunked": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + } + }, + "node_modules/micromark-util-symbol": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.0.1.tgz", + "integrity": "sha512-oKDEMK2u5qqAptasDAwWDXq0tG9AssVwAx3E9bBF3t/shRIGsWIRG+cGafs2p/SnDSOecnt6hZPCE2o6lHfFmQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-util-types": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.0.2.tgz", + "integrity": "sha512-DCfg/T8fcrhrRKTPjRrw/5LLvdGV7BHySf/1LOZx7TzWZdYRjogNtyNq885z3nNallwr3QUKARjqvHqX1/7t+w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, "node_modules/micromatch": { "version": "4.0.5", "license": "MIT", @@ -21881,7 +22476,6 @@ }, "node_modules/mri": { "version": "1.2.0", - "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -21889,7 +22483,6 @@ }, "node_modules/ms": { "version": "2.1.2", - "dev": true, "license": "MIT" }, "node_modules/msw": { @@ -23785,6 +24378,15 @@ "version": "16.13.1", "license": "MIT" }, + "node_modules/property-information": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.2.0.tgz", + "integrity": "sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, "node_modules/proxy-addr": { "version": "2.0.7", "dev": true, @@ -24229,6 +24831,89 @@ "version": "3.0.4", "license": "MIT" }, + "node_modules/react-markdown": { + "version": "8.0.7", + "resolved": "https://registry.npmjs.org/react-markdown/-/react-markdown-8.0.7.tgz", + "integrity": "sha512-bvWbzG4MtOU62XqBx3Xx+zB2raaFFsq4mYiAzfjXJMEz2sixgeAfraA3tvzULF02ZdOMUOKTBFFaZJDDrq+BJQ==", + "dependencies": { + "@types/hast": "^2.0.0", + "@types/prop-types": "^15.0.0", + "@types/unist": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "hast-util-whitespace": "^2.0.0", + "prop-types": "^15.0.0", + "property-information": "^6.0.0", + "react-is": "^18.0.0", + "remark-parse": "^10.0.0", + "remark-rehype": "^10.0.0", + "space-separated-tokens": "^2.0.0", + "style-to-object": "^0.4.0", + "unified": "^10.0.0", + "unist-util-visit": "^4.0.0", + "vfile": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + }, + "peerDependencies": { + "@types/react": ">=16", + "react": ">=16" + } + }, + "node_modules/react-markdown/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + }, + "node_modules/react-markdown/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==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/react-markdown/node_modules/unist-util-is": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", + "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/react-markdown/node_modules/unist-util-visit": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", + "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/react-markdown/node_modules/unist-util-visit-parents": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", + "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, "node_modules/react-refresh": { "version": "0.14.0", "dev": true, @@ -24581,6 +25266,35 @@ "url": "https://opencollective.com/unified" } }, + "node_modules/remark-parse": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.1.tgz", + "integrity": "sha512-1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw==", + "dependencies": { + "@types/mdast": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "unified": "^10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-rehype": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-10.1.0.tgz", + "integrity": "sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==", + "dependencies": { + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "mdast-util-to-hast": "^12.1.0", + "unified": "^10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, "node_modules/remark-slug": { "version": "6.1.0", "dev": true, @@ -25050,6 +25764,17 @@ "dev": true, "license": "0BSD" }, + "node_modules/sade": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", + "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", + "dependencies": { + "mri": "^1.1.0" + }, + "engines": { + "node": ">=6" + } + }, "node_modules/safe-buffer": { "version": "5.2.1", "dev": true, @@ -26106,6 +26831,14 @@ "dev": true, "license": "ISC" }, + "node_modules/style-to-object": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.1.tgz", + "integrity": "sha512-HFpbb5gr2ypci7Qw+IOhnP2zOU7e77b+rzM+wTzXzfi1PrtBCX0E7Pk4wL4iTLnhzZ+JgEGAhX81ebTg/aYjQw==", + "dependencies": { + "inline-style-parser": "0.1.1" + } + }, "node_modules/stylelint": { "version": "15.1.0", "dev": true, @@ -27812,6 +28545,15 @@ "version": "0.0.1", "dev": true }, + "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==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, "node_modules/trim-newlines": { "version": "3.0.1", "dev": true, @@ -28092,6 +28834,64 @@ "node": ">=4" } }, + "node_modules/unified": { + "version": "10.1.2", + "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", + "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "bail": "^2.0.0", + "extend": "^3.0.0", + "is-buffer": "^2.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unified/node_modules/bail": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", + "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/unified/node_modules/is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "engines": { + "node": ">=4" + } + }, + "node_modules/unified/node_modules/trough": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/trough/-/trough-2.1.0.tgz", + "integrity": "sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, "node_modules/union-value": { "version": "1.0.1", "dev": true, @@ -28139,6 +28939,15 @@ "dev": true, "license": "MIT" }, + "node_modules/unist-util-generated": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-2.0.1.tgz", + "integrity": "sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, "node_modules/unist-util-is": { "version": "4.1.0", "dev": true, @@ -28148,12 +28957,24 @@ "url": "https://opencollective.com/unified" } }, + "node_modules/unist-util-position": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.4.tgz", + "integrity": "sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==", + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, "node_modules/unist-util-stringify-position": { - "version": "2.0.3", - "dev": true, - "license": "MIT", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", + "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", "dependencies": { - "@types/unist": "^2.0.2" + "@types/unist": "^2.0.0" }, "funding": { "type": "opencollective", @@ -28380,6 +29201,31 @@ "dev": true, "license": "MIT" }, + "node_modules/uvu": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.6.tgz", + "integrity": "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==", + "dependencies": { + "dequal": "^2.0.0", + "diff": "^5.0.0", + "kleur": "^4.0.3", + "sade": "^1.7.3" + }, + "bin": { + "uvu": "bin.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/uvu/node_modules/kleur": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "engines": { + "node": ">=6" + } + }, "node_modules/v8-compile-cache": { "version": "2.3.0", "dev": true, @@ -28433,19 +29279,56 @@ "dev": true, "license": "MIT" }, + "node_modules/vfile": { + "version": "5.3.7", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", + "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", + "dependencies": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^3.0.0", + "vfile-message": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, "node_modules/vfile-message": { - "version": "2.0.4", - "dev": true, - "license": "MIT", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", + "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", "dependencies": { "@types/unist": "^2.0.0", - "unist-util-stringify-position": "^2.0.0" + "unist-util-stringify-position": "^3.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, + "node_modules/vfile/node_modules/is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "engines": { + "node": ">=4" + } + }, "node_modules/vite": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/vite/-/vite-4.1.0.tgz", diff --git a/package.json b/package.json index 9e2fe4c4a..9916ebe62 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,7 @@ "react-bootstrap": "^2.7.2", "react-bootstrap-icons": "^1.10.3", "react-i18next": "^12.1.5", + "react-markdown": "^8.0.7", "react-router-dom": "^6.8.1", "sass": "^1.58.1", "typescript": "^4.9.5", diff --git a/src/sections/dataset/datasetSummary/DatasetSummary.tsx b/src/sections/dataset/datasetSummary/DatasetSummary.tsx index 81e618585..76acdd975 100644 --- a/src/sections/dataset/datasetSummary/DatasetSummary.tsx +++ b/src/sections/dataset/datasetSummary/DatasetSummary.tsx @@ -3,7 +3,7 @@ import { useDataset } from '../useDataset' import { Col } from '../../ui/grid/Col' import { Row } from '../../ui/grid/Row' import { Tooltip } from '../../ui/tooltip/Tooltip' -import { SanitizedHTML } from '../../ui/sanitized-html/SanitizedHtml' +import MarkdownComponent from '../../ui/markdown/MarkdownComponent' interface DatasetSummaryProps { datasetRepository: DatasetRepository @@ -22,7 +22,7 @@ export function DatasetSummary({ datasetRepository, id }: DatasetSummaryProps) { {' '} - + ))} diff --git a/src/sections/ui/markdown/MarkdownComponent.tsx b/src/sections/ui/markdown/MarkdownComponent.tsx new file mode 100644 index 000000000..47be8d6bd --- /dev/null +++ b/src/sections/ui/markdown/MarkdownComponent.tsx @@ -0,0 +1,27 @@ +import * as React from 'react' +import * as ReactDOM from 'react-dom' +import ReactMarkdown from 'react-markdown' + +interface Props { + markdown: string +} + +const MarkdownComponent: React.FC = ({ markdown }) => { + const containerRef = React.useRef(null) + + React.useEffect(() => { + if (containerRef.current) { + ReactDOM.render({markdown}, containerRef.current) + } + + return () => { + if (containerRef.current) { + ReactDOM.unmountComponentAtNode(containerRef.current) + } + } + }, [markdown]) + + return
+} + +export default MarkdownComponent diff --git a/src/stories/dataset/DatasetSummary.stories.tsx b/src/stories/dataset/DatasetSummary.stories.tsx index ce29cc8cc..8be8b814a 100644 --- a/src/stories/dataset/DatasetSummary.stories.tsx +++ b/src/stories/dataset/DatasetSummary.stories.tsx @@ -23,7 +23,8 @@ class DatasetMockRepository implements DatasetRepository { { title: 'Description', description: 'this is the description field', - value: faker.lorem.paragraph(3) + value: + 'This is the description field. This text is *italic* and this is **bold**. Here is an image ![Alt text](https://picsum.photos/id/10/20/20) ' }, { title: 'Keyword', @@ -38,7 +39,7 @@ class DatasetMockRepository implements DatasetRepository { { title: 'Related Publication', description: 'this is the keyword field', - value: 'CNN Journal CNN.com' + value: 'CNN Journal [CNN.com](https://cnn.com)' }, { title: 'Notes', From 43eab7f1737f8ae45488cbf811f2ed7b689a007d Mon Sep 17 00:00:00 2001 From: Ellen Kraffmiller Date: Mon, 8 May 2023 19:43:12 -0400 Subject: [PATCH 04/14] Add Cypress test for MarkdownComponent, and remove SanitizedHtml. --- .../MarkdownComponent.spec.tsx | 24 ++++++++++++++++++ .../ui/sanitized-html/SanitizedHtml.spec.tsx | 25 ------------------- 2 files changed, 24 insertions(+), 25 deletions(-) create mode 100644 cypress/component/ui/markdown-component/MarkdownComponent.spec.tsx delete mode 100644 cypress/component/ui/sanitized-html/SanitizedHtml.spec.tsx diff --git a/cypress/component/ui/markdown-component/MarkdownComponent.spec.tsx b/cypress/component/ui/markdown-component/MarkdownComponent.spec.tsx new file mode 100644 index 000000000..8ffd48560 --- /dev/null +++ b/cypress/component/ui/markdown-component/MarkdownComponent.spec.tsx @@ -0,0 +1,24 @@ +import MarkdownComponent from '../../../../src/sections/ui/markdown/MarkdownComponent' + +describe('MarkdownComponent', () => { + it('renders Markdown correctly', () => { + const markdown = '# Heading\n\nThis is some **bold** text' + cy.mount() + cy.get('h1').should('have.text', 'Heading') + cy.get('strong').should('have.text', 'bold') + cy.get('p').should('exist') + }) +}) + +it('updates Markdown correctly', () => { + const initialMarkdown = '# Heading\n\nThis is some **bold** text' + const updatedMarkdown = '# New heading\n\nThis is some _italic_ text' + cy.mount() + + cy.get('h1').should('have.text', 'Heading') + cy.get('strong').should('have.text', 'bold') + cy.get('p').should('exist') + cy.mount() + cy.get('h1').should('have.text', 'New heading') + cy.get('em').should('have.text', 'italic') +}) diff --git a/cypress/component/ui/sanitized-html/SanitizedHtml.spec.tsx b/cypress/component/ui/sanitized-html/SanitizedHtml.spec.tsx deleted file mode 100644 index 8c8d485ea..000000000 --- a/cypress/component/ui/sanitized-html/SanitizedHtml.spec.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import { SanitizedHTML } from '../../../../src/sections/ui/sanitized-html/SanitizedHtml' - -describe('SanitizedHTML', () => { - it('should render sanitized HTML', () => { - const html = 'Hello ' - cy.mount() - - cy.findByRole('script').should('not.exist') - cy.get('b').findByText('Hello').should('exist') - }) - - it('should render sanitized HTML with custom options', () => { - const html = 'Example ' - const options = { - ALLOWED_TAGS: ['a'], - ALLOWED_ATTR: ['href', 'target'] - } - cy.mount() - - cy.findByRole('img').should('not.exist') - cy.findByRole('link').should('exist') - cy.findByRole('link').should('have.attr', 'href').and('eq', 'https://example.com') - cy.findByRole('link').should('have.attr', 'target').and('eq', '_blank') - }) -}) From 181291d722872f0f057b10351f8f7a7f32a8d9f7 Mon Sep 17 00:00:00 2001 From: Ellen Kraffmiller Date: Tue, 9 May 2023 09:23:15 -0400 Subject: [PATCH 05/14] Added Licence Row to DatasetSummary --- .../component/dataset/DatasetSummary.spec.tsx | 27 +++++++++++++++++++ src/dataset/domain/models/Dataset.ts | 2 ++ src/dataset/domain/models/License.ts | 6 +++++ .../dataset/datasetSummary/DatasetSummary.tsx | 13 +++++++++ src/stories/dataset/Dataset.stories.tsx | 6 +++++ .../dataset/DatasetSummary.stories.tsx | 6 +++++ tests/dataset/domain/models/DatasetMother.ts | 6 +++++ 7 files changed, 66 insertions(+) create mode 100644 cypress/component/dataset/DatasetSummary.spec.tsx create mode 100644 src/dataset/domain/models/License.ts diff --git a/cypress/component/dataset/DatasetSummary.spec.tsx b/cypress/component/dataset/DatasetSummary.spec.tsx new file mode 100644 index 000000000..bbdc68179 --- /dev/null +++ b/cypress/component/dataset/DatasetSummary.spec.tsx @@ -0,0 +1,27 @@ +import { createSandbox, SinonSandbox } from 'sinon' +import { DatasetRepository } from '../../../src/dataset/domain/repositories/DatasetRepository' +import { DatasetMother } from '../../../tests/dataset/domain/models/DatasetMother' +import { DatasetSummary } from '../../../src/sections/dataset/datasetSummary/DatasetSummary' + +describe('DatasetSummary', () => { + const sandbox: SinonSandbox = createSandbox() + const testDataset = DatasetMother.create() + + afterEach(() => { + sandbox.restore() + }) + + it('renders the DatasetSummary fields', () => { + const datasetRepository: DatasetRepository = {} as DatasetRepository + datasetRepository.getById = sandbox.stub().resolves(testDataset) + + cy.mount() + testDataset.summaryFields.map((field) => { + cy.findByText(field.title).should('exist') + cy.findByText(field.value).should('exist') + }) + + cy.get('img').should('exist') + cy.findByText(testDataset.license.name).should('exist') + }) +}) diff --git a/src/dataset/domain/models/Dataset.ts b/src/dataset/domain/models/Dataset.ts index c16d6a589..41a0851fb 100644 --- a/src/dataset/domain/models/Dataset.ts +++ b/src/dataset/domain/models/Dataset.ts @@ -1,8 +1,10 @@ import { DatasetField } from './DatasetField' +import { License } from './License' export interface Dataset { id: string title: string version: string summaryFields: DatasetField[] + license: License } diff --git a/src/dataset/domain/models/License.ts b/src/dataset/domain/models/License.ts new file mode 100644 index 000000000..bf99ed4ef --- /dev/null +++ b/src/dataset/domain/models/License.ts @@ -0,0 +1,6 @@ +export interface License { + name: string + shortDescription: string + uri: string + iconUrl?: string +} diff --git a/src/sections/dataset/datasetSummary/DatasetSummary.tsx b/src/sections/dataset/datasetSummary/DatasetSummary.tsx index 76acdd975..3c3d39036 100644 --- a/src/sections/dataset/datasetSummary/DatasetSummary.tsx +++ b/src/sections/dataset/datasetSummary/DatasetSummary.tsx @@ -26,6 +26,19 @@ export function DatasetSummary({ datasetRepository, id }: DatasetSummaryProps) { ))} + + + License/Data Use Agreement + + + {' '} + {' '} + {dataset.license.name} + + ) : null } +/* + + */ diff --git a/src/stories/dataset/Dataset.stories.tsx b/src/stories/dataset/Dataset.stories.tsx index 4b69f5887..649e9f8a0 100644 --- a/src/stories/dataset/Dataset.stories.tsx +++ b/src/stories/dataset/Dataset.stories.tsx @@ -20,6 +20,12 @@ class DatasetMockRepository implements DatasetRepository { id: id, title: 'Test Dataset', version: '1.0', + license: { + name: 'CC0 1.0', + shortDescription: 'CC0 1.0 Universal Public Domain Dedication', + uri: 'https://creativecommons.org/publicdomain/zero/1.0/', + iconUrl: 'https://licensebuttons.net/p/zero/1.0/88x31.png' + }, summaryFields: [ { title: 'Description', diff --git a/src/stories/dataset/DatasetSummary.stories.tsx b/src/stories/dataset/DatasetSummary.stories.tsx index 8be8b814a..2199bce4f 100644 --- a/src/stories/dataset/DatasetSummary.stories.tsx +++ b/src/stories/dataset/DatasetSummary.stories.tsx @@ -19,6 +19,12 @@ class DatasetMockRepository implements DatasetRepository { id: id, title: 'Test Dataset', version: '1.0', + license: { + name: 'CC0 1.0', + shortDescription: 'CC0 1.0 Universal Public Domain Dedication', + uri: 'https://creativecommons.org/publicdomain/zero/1.0/', + iconUrl: 'https://licensebuttons.net/p/zero/1.0/88x31.png' + }, summaryFields: [ { title: 'Description', diff --git a/tests/dataset/domain/models/DatasetMother.ts b/tests/dataset/domain/models/DatasetMother.ts index e939b04b2..a1cf2fc21 100644 --- a/tests/dataset/domain/models/DatasetMother.ts +++ b/tests/dataset/domain/models/DatasetMother.ts @@ -7,6 +7,12 @@ export class DatasetMother { id: faker.datatype.uuid(), title: faker.lorem.sentence(), version: faker.datatype.uuid(), + license: { + name: 'CC0 1.0', + shortDescription: 'CC0 1.0 Universal Public Domain Dedication', + uri: 'https://creativecommons.org/publicdomain/zero/1.0/', + iconUrl: 'https://licensebuttons.net/p/zero/1.0/88x31.png' + }, summaryFields: [ { title: 'Description', From bbbe9aee3b266493bad9b0f9961760c2fc7948e3 Mon Sep 17 00:00:00 2001 From: Ellen Kraffmiller Date: Tue, 9 May 2023 09:46:30 -0400 Subject: [PATCH 06/14] Added alt text to license image --- src/sections/dataset/datasetSummary/DatasetSummary.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/sections/dataset/datasetSummary/DatasetSummary.tsx b/src/sections/dataset/datasetSummary/DatasetSummary.tsx index 3c3d39036..02149b367 100644 --- a/src/sections/dataset/datasetSummary/DatasetSummary.tsx +++ b/src/sections/dataset/datasetSummary/DatasetSummary.tsx @@ -32,7 +32,10 @@ export function DatasetSummary({ datasetRepository, id }: DatasetSummaryProps) { {' '} - {' '} + {dataset.license.name{' '} {dataset.license.name} From bc4c7dd8618addbdb8a5c7bfd9b32f9a711d44b3 Mon Sep 17 00:00:00 2001 From: Ellen Kraffmiller Date: Wed, 10 May 2023 13:41:28 -0400 Subject: [PATCH 07/14] Separate DatasetSummary into smaller components, move interfaces to Dataset.ts, update MarkdownComponent.tsx for React 18 --- src/dataset/domain/models/Dataset.ts | 14 ++- src/dataset/domain/models/DatasetField.ts | 5 -- src/dataset/domain/models/License.ts | 6 -- src/sections/dataset/Dataset.tsx | 4 +- .../dataset/datasetSummary/DatasetSummary.tsx | 50 +++-------- .../dataset/datasetSummary/License.tsx | 26 ++++++ .../dataset/datasetSummary/SummaryFields.tsx | 26 ++++++ .../ui/markdown/MarkdownComponent.tsx | 30 ++----- .../dataset/DatasetSummary.stories.tsx | 85 +++++++++---------- .../sections/dataset/DatasetSummary.test.tsx | 50 +++++++++-- 10 files changed, 164 insertions(+), 132 deletions(-) delete mode 100644 src/dataset/domain/models/DatasetField.ts delete mode 100644 src/dataset/domain/models/License.ts create mode 100644 src/sections/dataset/datasetSummary/License.tsx create mode 100644 src/sections/dataset/datasetSummary/SummaryFields.tsx diff --git a/src/dataset/domain/models/Dataset.ts b/src/dataset/domain/models/Dataset.ts index 41a0851fb..e3768edc1 100644 --- a/src/dataset/domain/models/Dataset.ts +++ b/src/dataset/domain/models/Dataset.ts @@ -1,6 +1,14 @@ -import { DatasetField } from './DatasetField' -import { License } from './License' - +export interface DatasetField { + title: string + description: string + value: string +} +export interface License { + name: string + shortDescription: string + uri: string + iconUrl?: string +} export interface Dataset { id: string title: string diff --git a/src/dataset/domain/models/DatasetField.ts b/src/dataset/domain/models/DatasetField.ts deleted file mode 100644 index 737064651..000000000 --- a/src/dataset/domain/models/DatasetField.ts +++ /dev/null @@ -1,5 +0,0 @@ -export interface DatasetField { - title: string - description: string - value: string -} diff --git a/src/dataset/domain/models/License.ts b/src/dataset/domain/models/License.ts deleted file mode 100644 index bf99ed4ef..000000000 --- a/src/dataset/domain/models/License.ts +++ /dev/null @@ -1,6 +0,0 @@ -export interface License { - name: string - shortDescription: string - uri: string - iconUrl?: string -} diff --git a/src/sections/dataset/Dataset.tsx b/src/sections/dataset/Dataset.tsx index dce958e49..3bc79780c 100644 --- a/src/sections/dataset/Dataset.tsx +++ b/src/sections/dataset/Dataset.tsx @@ -26,7 +26,9 @@ export function Dataset({ datasetRepository, id }: DatasetProps) { Citation Block - + diff --git a/src/sections/dataset/datasetSummary/DatasetSummary.tsx b/src/sections/dataset/datasetSummary/DatasetSummary.tsx index 02149b367..e13eb3687 100644 --- a/src/sections/dataset/datasetSummary/DatasetSummary.tsx +++ b/src/sections/dataset/datasetSummary/DatasetSummary.tsx @@ -1,47 +1,17 @@ -import { DatasetRepository } from '../../../dataset/domain/repositories/DatasetRepository' -import { useDataset } from '../useDataset' -import { Col } from '../../ui/grid/Col' -import { Row } from '../../ui/grid/Row' -import { Tooltip } from '../../ui/tooltip/Tooltip' -import MarkdownComponent from '../../ui/markdown/MarkdownComponent' - +import { DatasetField } from '../../../../src/dataset/domain/models/Dataset' +import { SummaryFields } from './SummaryFields' +import { License as LicenseModel } from './../../../../src/dataset/domain/models/Dataset' +import { License } from './License' interface DatasetSummaryProps { - datasetRepository: DatasetRepository - id: string + summaryFields: DatasetField[] + license: LicenseModel } -export function DatasetSummary({ datasetRepository, id }: DatasetSummaryProps) { - const { dataset } = useDataset(datasetRepository, id) - - return dataset ? ( +export function DatasetSummary({ summaryFields, license }: DatasetSummaryProps) { + return summaryFields && license ? (
- {dataset.summaryFields.map((field, index) => ( - - - {field.title} - - - {' '} - - - - ))} - - - License/Data Use Agreement - - - {' '} - {dataset.license.name{' '} - {dataset.license.name} - - + +
) : null } -/* - - */ diff --git a/src/sections/dataset/datasetSummary/License.tsx b/src/sections/dataset/datasetSummary/License.tsx new file mode 100644 index 000000000..f69e8a6da --- /dev/null +++ b/src/sections/dataset/datasetSummary/License.tsx @@ -0,0 +1,26 @@ +import { Row } from '../../ui/grid/Row' +import { Col } from '../../ui/grid/Col' +import { License as LicenseModel } from '../../../dataset/domain/models/Dataset' +interface LicenseProps { + license: LicenseModel +} + +export function License({ license }: LicenseProps) { + return license ? ( +
+ + + License/Data Use Agreement + + + {' '} + {license.name{' '} + {license.name} + + +
+ ) : null +} diff --git a/src/sections/dataset/datasetSummary/SummaryFields.tsx b/src/sections/dataset/datasetSummary/SummaryFields.tsx new file mode 100644 index 000000000..af5fafbab --- /dev/null +++ b/src/sections/dataset/datasetSummary/SummaryFields.tsx @@ -0,0 +1,26 @@ +import { Row } from '../../ui/grid/Row' +import { Col } from '../../ui/grid/Col' +import { Tooltip } from '../../ui/tooltip/Tooltip' +import { MarkdownComponent } from '../../ui/markdown/MarkdownComponent' +import { DatasetField } from '../../../dataset/domain/models/Dataset' +interface SummaryFieldsProps { + summaryFields: DatasetField[] +} + +export function SummaryFields({ summaryFields }: SummaryFieldsProps) { + return summaryFields ? ( +
+ {summaryFields.map((field, index) => ( + + + {field.title} + + + {' '} + + + + ))} +
+ ) : null +} diff --git a/src/sections/ui/markdown/MarkdownComponent.tsx b/src/sections/ui/markdown/MarkdownComponent.tsx index 47be8d6bd..b25f94d66 100644 --- a/src/sections/ui/markdown/MarkdownComponent.tsx +++ b/src/sections/ui/markdown/MarkdownComponent.tsx @@ -1,27 +1,13 @@ -import * as React from 'react' -import * as ReactDOM from 'react-dom' import ReactMarkdown from 'react-markdown' - +import { useRef } from 'react' interface Props { markdown: string } - -const MarkdownComponent: React.FC = ({ markdown }) => { - const containerRef = React.useRef(null) - - React.useEffect(() => { - if (containerRef.current) { - ReactDOM.render({markdown}, containerRef.current) - } - - return () => { - if (containerRef.current) { - ReactDOM.unmountComponentAtNode(containerRef.current) - } - } - }, [markdown]) - - return
+export function MarkdownComponent({ markdown }: Props) { + const containerRef = useRef(null) + return ( +
+ {markdown} +
+ ) } - -export default MarkdownComponent diff --git a/src/stories/dataset/DatasetSummary.stories.tsx b/src/stories/dataset/DatasetSummary.stories.tsx index 2199bce4f..b06319daa 100644 --- a/src/stories/dataset/DatasetSummary.stories.tsx +++ b/src/stories/dataset/DatasetSummary.stories.tsx @@ -1,8 +1,9 @@ import type { Meta, StoryObj } from '@storybook/react' import { WithI18next } from '../WithI18next' -import { DatasetRepository } from '../../dataset/domain/repositories/DatasetRepository' + import { DatasetSummary } from '../../sections/dataset/datasetSummary/DatasetSummary' import { faker } from '@faker-js/faker' +import { DatasetField, License } from '../../dataset/domain/models/Dataset' const meta: Meta = { title: 'Sections/Dataset Page/DatasetSummary', @@ -10,53 +11,45 @@ const meta: Meta = { decorators: [WithI18next] } +const licenseMock: License = { + name: 'CC0 1.0', + shortDescription: 'CC0 1.0 Universal Public Domain Dedication', + uri: 'https://creativecommons.org/publicdomain/zero/1.0/', + iconUrl: 'https://licensebuttons.net/p/zero/1.0/88x31.png' +} +const summaryFieldsMock: DatasetField[] = [ + { + title: 'Description', + description: 'this is the description field', + value: + 'This is the description field. Here is [a link](https://dataverse.org). ' + + 'This text is *italic* and this is **bold**. Here is an image ![Alt text](https://picsum.photos/id/10/20/20) ' + }, + { + title: 'Keyword', + description: 'this is the keyword field', + value: 'Malaria, Tuberculosis, Drug Resistant' + }, + { + title: 'Subject', + description: 'this is the subject field', + value: 'Medicine, Health and Life Sciences, Social Sciences' + }, + { + title: 'Related Publication', + description: 'this is the keyword field', + value: 'CNN Journal [CNN.com](https://cnn.com)' + }, + { + title: 'Notes', + description: 'this is the notes field', + value: faker.lorem.paragraph(3) + } +] + export default meta type Story = StoryObj -class DatasetMockRepository implements DatasetRepository { - getById(id: string) { - return Promise.resolve({ - id: id, - title: 'Test Dataset', - version: '1.0', - license: { - name: 'CC0 1.0', - shortDescription: 'CC0 1.0 Universal Public Domain Dedication', - uri: 'https://creativecommons.org/publicdomain/zero/1.0/', - iconUrl: 'https://licensebuttons.net/p/zero/1.0/88x31.png' - }, - summaryFields: [ - { - title: 'Description', - description: 'this is the description field', - value: - 'This is the description field. This text is *italic* and this is **bold**. Here is an image ![Alt text](https://picsum.photos/id/10/20/20) ' - }, - { - title: 'Keyword', - description: 'this is the keyword field', - value: 'Malaria, Tuberculosis, Drug Resistant' - }, - { - title: 'Subject', - description: 'this is the subject field', - value: 'Medicine, Health and Life Sciences, Social Sciences' - }, - { - title: 'Related Publication', - description: 'this is the keyword field', - value: 'CNN Journal [CNN.com](https://cnn.com)' - }, - { - title: 'Notes', - description: 'this is the notes field', - value: faker.lorem.paragraph(3) - } - ] - }) - } -} - export const Default: Story = { - render: () => + render: () => } diff --git a/tests/sections/dataset/DatasetSummary.test.tsx b/tests/sections/dataset/DatasetSummary.test.tsx index ad8e90e02..c2016ead7 100644 --- a/tests/sections/dataset/DatasetSummary.test.tsx +++ b/tests/sections/dataset/DatasetSummary.test.tsx @@ -1,31 +1,63 @@ import { createSandbox, SinonSandbox } from 'sinon' -import { DatasetRepository } from '../../../src/dataset/domain/repositories/DatasetRepository' import { render } from '@testing-library/react' -import { DatasetMother } from '../../dataset/domain/models/DatasetMother' +import { DatasetField, License } from '../../../src/dataset/domain/models/Dataset' import { DatasetSummary } from '../../../src/sections/dataset/datasetSummary/DatasetSummary' +import { faker } from '@faker-js/faker' describe('DatasetSummary', () => { const sandbox: SinonSandbox = createSandbox() - const testDataset = DatasetMother.create() + + const licenseMock: License = { + name: 'CC0 1.0', + shortDescription: 'CC0 1.0 Universal Public Domain Dedication', + uri: 'https://creativecommons.org/publicdomain/zero/1.0/', + iconUrl: 'https://licensebuttons.net/p/zero/1.0/88x31.png' + } + const summaryFieldsMock: DatasetField[] = [ + { + title: 'Description', + description: 'this is the description field', + value: + 'This is the description field. Here is [a link](https://dataverse.org). ' + + 'This text is *italic* and this is **bold**. Here is an image ![Alt text](https://picsum.photos/id/10/20/20) ' + }, + { + title: 'Keyword', + description: 'this is the keyword field', + value: 'Malaria, Tuberculosis, Drug Resistant' + }, + { + title: 'Subject', + description: 'this is the subject field', + value: 'Medicine, Health and Life Sciences, Social Sciences' + }, + { + title: 'Related Publication', + description: 'this is the keyword field', + value: 'CNN Journal [CNN.com](https://cnn.com)' + }, + { + title: 'Notes', + description: 'this is the notes field', + value: faker.lorem.paragraph(3) + } + ] afterEach(() => { sandbox.restore() }) it('renders the DatasetSummary fields', async () => { - const datasetRepository: DatasetRepository = {} as DatasetRepository - datasetRepository.getById = sandbox.stub().resolves(testDataset) - const { findByText } = render( - + ) // const description = await findByText(`${testDataset.description.substring(0, 20)}`) // expect(description).toBeInTheDocument() - const value1 = await findByText(`${testDataset.summaryFields[0].value}`) + const value1 = await findByText(`${summaryFieldsMock[1].value}`) expect(value1).toBeInTheDocument() - const keyword = await findByText(`${testDataset.summaryFields[0].title}`) + const keyword = await findByText(`${summaryFieldsMock[1].title}`) expect(keyword).toBeInTheDocument() }) }) From fcaa1440d28c5cbadeb52842dcdad98292e8aa8c Mon Sep 17 00:00:00 2001 From: Ellen Kraffmiller Date: Wed, 10 May 2023 13:49:23 -0400 Subject: [PATCH 08/14] Remove SanitizedHtml.test.tsx, fix import in MarkdownComponent.spec.tsx --- .../MarkdownComponent.spec.tsx | 2 +- .../ui/sanitized-html/SanitizedHtml.test.tsx | 21 ------------------- 2 files changed, 1 insertion(+), 22 deletions(-) delete mode 100644 tests/sections/ui/sanitized-html/SanitizedHtml.test.tsx diff --git a/cypress/component/ui/markdown-component/MarkdownComponent.spec.tsx b/cypress/component/ui/markdown-component/MarkdownComponent.spec.tsx index 8ffd48560..ac9a35be2 100644 --- a/cypress/component/ui/markdown-component/MarkdownComponent.spec.tsx +++ b/cypress/component/ui/markdown-component/MarkdownComponent.spec.tsx @@ -1,4 +1,4 @@ -import MarkdownComponent from '../../../../src/sections/ui/markdown/MarkdownComponent' +import { MarkdownComponent } from '../../../../src/sections/ui/markdown/MarkdownComponent' describe('MarkdownComponent', () => { it('renders Markdown correctly', () => { diff --git a/tests/sections/ui/sanitized-html/SanitizedHtml.test.tsx b/tests/sections/ui/sanitized-html/SanitizedHtml.test.tsx deleted file mode 100644 index bf8dfbbed..000000000 --- a/tests/sections/ui/sanitized-html/SanitizedHtml.test.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import { render } from '@testing-library/react' -import { SanitizedHTML } from '../../../../src/sections/ui/sanitized-html/SanitizedHtml' - -describe('SanitizedHTML', () => { - it('should render sanitized HTML', () => { - const html = 'Hello ' - const { container } = render() - expect(container.innerHTML).toBe('
Hello
') - }) - - it('should render sanitized HTML with custom options', () => { - const html = 'Example ' - const options = { - ALLOWED_TAGS: ['a'], - ALLOWED_ATTR: ['href', 'target'] - } - const { container } = render() - - expect(container.innerHTML).toContain('href="https://example.com"') - }) -}) From 1cec134611f3050491cd8404307b337553222281 Mon Sep 17 00:00:00 2001 From: Ellen Kraffmiller Date: Wed, 10 May 2023 14:06:50 -0400 Subject: [PATCH 09/14] fix unit and component tests --- .../component/dataset/DatasetSummary.spec.tsx | 53 +++++++++++++------ .../MarkdownComponent.spec.tsx | 7 ++- .../sections/dataset/DatasetSummary.test.tsx | 7 --- 3 files changed, 44 insertions(+), 23 deletions(-) diff --git a/cypress/component/dataset/DatasetSummary.spec.tsx b/cypress/component/dataset/DatasetSummary.spec.tsx index bbdc68179..9ec53f36f 100644 --- a/cypress/component/dataset/DatasetSummary.spec.tsx +++ b/cypress/component/dataset/DatasetSummary.spec.tsx @@ -1,27 +1,50 @@ -import { createSandbox, SinonSandbox } from 'sinon' -import { DatasetRepository } from '../../../src/dataset/domain/repositories/DatasetRepository' -import { DatasetMother } from '../../../tests/dataset/domain/models/DatasetMother' import { DatasetSummary } from '../../../src/sections/dataset/datasetSummary/DatasetSummary' +import { DatasetField, License } from '../../../src/dataset/domain/models/Dataset' +import { faker } from '@faker-js/faker' describe('DatasetSummary', () => { - const sandbox: SinonSandbox = createSandbox() - const testDataset = DatasetMother.create() - - afterEach(() => { - sandbox.restore() - }) + const licenseMock: License = { + name: 'CC0 1.0', + shortDescription: 'CC0 1.0 Universal Public Domain Dedication', + uri: 'https://creativecommons.org/publicdomain/zero/1.0/', + iconUrl: 'https://licensebuttons.net/p/zero/1.0/88x31.png' + } + const summaryFieldsMock: DatasetField[] = [ + { + title: 'Description', + description: 'this is the description field', + value: 'This is the description field. This is where we describe the dataset' + }, + { + title: 'Keyword', + description: 'this is the keyword field', + value: 'Malaria, Tuberculosis, Drug Resistant' + }, + { + title: 'Subject', + description: 'this is the subject field', + value: 'Medicine, Health and Life Sciences, Social Sciences' + }, + { + title: 'Related Publication', + description: 'this is the keyword field', + value: 'keyword1, keyword2' + }, + { + title: 'Notes', + description: 'this is the notes field', + value: faker.lorem.paragraph(3) + } + ] it('renders the DatasetSummary fields', () => { - const datasetRepository: DatasetRepository = {} as DatasetRepository - datasetRepository.getById = sandbox.stub().resolves(testDataset) - - cy.mount() - testDataset.summaryFields.map((field) => { + cy.mount() + summaryFieldsMock.map((field) => { cy.findByText(field.title).should('exist') cy.findByText(field.value).should('exist') }) cy.get('img').should('exist') - cy.findByText(testDataset.license.name).should('exist') + cy.findByText(licenseMock.name).should('exist') }) }) diff --git a/cypress/component/ui/markdown-component/MarkdownComponent.spec.tsx b/cypress/component/ui/markdown-component/MarkdownComponent.spec.tsx index ac9a35be2..f142ebc57 100644 --- a/cypress/component/ui/markdown-component/MarkdownComponent.spec.tsx +++ b/cypress/component/ui/markdown-component/MarkdownComponent.spec.tsx @@ -2,11 +2,16 @@ import { MarkdownComponent } from '../../../../src/sections/ui/markdown/Markdown describe('MarkdownComponent', () => { it('renders Markdown correctly', () => { - const markdown = '# Heading\n\nThis is some **bold** text' + const markdown = + '# Heading\n\nThis is some **bold** text ' + + 'This is the description field. Here is [a link](https://dataverse.org). ' + + ' Here is an image ![Alt text](https://picsum.photos/id/10/20/20) ' + cy.mount() cy.get('h1').should('have.text', 'Heading') cy.get('strong').should('have.text', 'bold') cy.get('p').should('exist') + cy.get('a').should('have.attr', 'href').and('eq', 'https://dataverse.org') }) }) diff --git a/tests/sections/dataset/DatasetSummary.test.tsx b/tests/sections/dataset/DatasetSummary.test.tsx index c2016ead7..25621dc67 100644 --- a/tests/sections/dataset/DatasetSummary.test.tsx +++ b/tests/sections/dataset/DatasetSummary.test.tsx @@ -1,12 +1,9 @@ -import { createSandbox, SinonSandbox } from 'sinon' import { render } from '@testing-library/react' import { DatasetField, License } from '../../../src/dataset/domain/models/Dataset' import { DatasetSummary } from '../../../src/sections/dataset/datasetSummary/DatasetSummary' import { faker } from '@faker-js/faker' describe('DatasetSummary', () => { - const sandbox: SinonSandbox = createSandbox() - const licenseMock: License = { name: 'CC0 1.0', shortDescription: 'CC0 1.0 Universal Public Domain Dedication', @@ -43,10 +40,6 @@ describe('DatasetSummary', () => { } ] - afterEach(() => { - sandbox.restore() - }) - it('renders the DatasetSummary fields', async () => { const { findByText } = render( From b6bec60ca9a9a273067249a063d71ee0965222f3 Mon Sep 17 00:00:00 2001 From: Ellen Kraffmiller Date: Mon, 15 May 2023 10:55:21 -0400 Subject: [PATCH 10/14] fix datasetSummary folder name, add undefined optional type --- src/sections/dataset/Dataset.tsx | 2 +- .../{datasetSummary => dataset-summary}/DatasetSummary.tsx | 0 .../dataset/{datasetSummary => dataset-summary}/License.tsx | 2 +- .../{datasetSummary => dataset-summary}/SummaryFields.tsx | 2 +- src/stories/dataset/DatasetSummary.stories.tsx | 2 +- .../sections/dataset/dataset-summary/DatasetSummary.spec.tsx | 2 +- .../component/sections/dataset/dataset-summary/License.spec.tsx | 2 +- .../sections/dataset/dataset-summary/SummaryFields.spec.tsx | 2 +- 8 files changed, 7 insertions(+), 7 deletions(-) rename src/sections/dataset/{datasetSummary => dataset-summary}/DatasetSummary.tsx (100%) rename src/sections/dataset/{datasetSummary => dataset-summary}/License.tsx (94%) rename src/sections/dataset/{datasetSummary => dataset-summary}/SummaryFields.tsx (94%) diff --git a/src/sections/dataset/Dataset.tsx b/src/sections/dataset/Dataset.tsx index 31f34ff4e..d86b70c3f 100644 --- a/src/sections/dataset/Dataset.tsx +++ b/src/sections/dataset/Dataset.tsx @@ -7,7 +7,7 @@ import { useLoading } from '../loading/LoadingContext' import { DatasetSkeleton } from './DatasetSkeleton' import { PageNotFound } from '../page-not-found/PageNotFound' import { useTranslation } from 'react-i18next' -import { DatasetSummary } from './datasetSummary/DatasetSummary' +import { DatasetSummary } from './dataset-summary/DatasetSummary' interface DatasetProps { datasetRepository: DatasetRepository diff --git a/src/sections/dataset/datasetSummary/DatasetSummary.tsx b/src/sections/dataset/dataset-summary/DatasetSummary.tsx similarity index 100% rename from src/sections/dataset/datasetSummary/DatasetSummary.tsx rename to src/sections/dataset/dataset-summary/DatasetSummary.tsx diff --git a/src/sections/dataset/datasetSummary/License.tsx b/src/sections/dataset/dataset-summary/License.tsx similarity index 94% rename from src/sections/dataset/datasetSummary/License.tsx rename to src/sections/dataset/dataset-summary/License.tsx index 59c2caa42..63e44691c 100644 --- a/src/sections/dataset/datasetSummary/License.tsx +++ b/src/sections/dataset/dataset-summary/License.tsx @@ -1,7 +1,7 @@ import { Row, Col } from 'dataverse-design-system' import { License as LicenseModel } from '../../../dataset/domain/models/Dataset' interface LicenseProps { - license: LicenseModel + license: LicenseModel | undefined } export function License({ license }: LicenseProps) { diff --git a/src/sections/dataset/datasetSummary/SummaryFields.tsx b/src/sections/dataset/dataset-summary/SummaryFields.tsx similarity index 94% rename from src/sections/dataset/datasetSummary/SummaryFields.tsx rename to src/sections/dataset/dataset-summary/SummaryFields.tsx index 5efcc45ea..d2b644c4a 100644 --- a/src/sections/dataset/datasetSummary/SummaryFields.tsx +++ b/src/sections/dataset/dataset-summary/SummaryFields.tsx @@ -2,7 +2,7 @@ import { Row, Col, Tooltip } from 'dataverse-design-system' import { MarkdownComponent } from '../markdown/MarkdownComponent' import { DatasetField } from '../../../dataset/domain/models/Dataset' interface SummaryFieldsProps { - summaryFields: DatasetField[] + summaryFields: DatasetField[] | undefined } export function SummaryFields({ summaryFields }: SummaryFieldsProps) { diff --git a/src/stories/dataset/DatasetSummary.stories.tsx b/src/stories/dataset/DatasetSummary.stories.tsx index b06319daa..18c4d4580 100644 --- a/src/stories/dataset/DatasetSummary.stories.tsx +++ b/src/stories/dataset/DatasetSummary.stories.tsx @@ -1,7 +1,7 @@ import type { Meta, StoryObj } from '@storybook/react' import { WithI18next } from '../WithI18next' -import { DatasetSummary } from '../../sections/dataset/datasetSummary/DatasetSummary' +import { DatasetSummary } from '../../sections/dataset/dataset-summary/DatasetSummary' import { faker } from '@faker-js/faker' import { DatasetField, License } from '../../dataset/domain/models/Dataset' diff --git a/tests/component/sections/dataset/dataset-summary/DatasetSummary.spec.tsx b/tests/component/sections/dataset/dataset-summary/DatasetSummary.spec.tsx index 0ab9989ca..28d851713 100644 --- a/tests/component/sections/dataset/dataset-summary/DatasetSummary.spec.tsx +++ b/tests/component/sections/dataset/dataset-summary/DatasetSummary.spec.tsx @@ -1,4 +1,4 @@ -import { DatasetSummary } from '../../../../../src/sections/dataset/datasetSummary/DatasetSummary' +import { DatasetSummary } from '../../../../../src/sections/dataset/dataset-summary/DatasetSummary' import { DatasetField, License } from '../../../../../src/dataset/domain/models/Dataset' import { faker } from '@faker-js/faker' diff --git a/tests/component/sections/dataset/dataset-summary/License.spec.tsx b/tests/component/sections/dataset/dataset-summary/License.spec.tsx index 1d5b0f068..3c930919c 100644 --- a/tests/component/sections/dataset/dataset-summary/License.spec.tsx +++ b/tests/component/sections/dataset/dataset-summary/License.spec.tsx @@ -1,4 +1,4 @@ -import { License } from '../../../../../src/sections/dataset/datasetSummary/License' +import { License } from '../../../../../src/sections/dataset/dataset-summary/License' describe('DatasetSummary', () => { it('renders the license information correctly', () => { diff --git a/tests/component/sections/dataset/dataset-summary/SummaryFields.spec.tsx b/tests/component/sections/dataset/dataset-summary/SummaryFields.spec.tsx index 97fd760a4..4a3b4d6fe 100644 --- a/tests/component/sections/dataset/dataset-summary/SummaryFields.spec.tsx +++ b/tests/component/sections/dataset/dataset-summary/SummaryFields.spec.tsx @@ -1,6 +1,6 @@ import { DatasetField, License } from '../../../../../src/dataset/domain/models/Dataset' import { faker } from '@faker-js/faker' -import { SummaryFields } from '../../../../../src/sections/dataset/datasetSummary/SummaryFields' +import { SummaryFields } from '../../../../../src/sections/dataset/dataset-summary/SummaryFields' describe('DatasetSummary', () => { const licenseMock: License = { From 4c1b37bc417c9bafb2f353ebb24d008f1e932531 Mon Sep 17 00:00:00 2001 From: Ellen Kraffmiller Date: Mon, 15 May 2023 12:43:21 -0400 Subject: [PATCH 11/14] added back element to Dataset.tsx --- src/sections/dataset/Dataset.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/sections/dataset/Dataset.tsx b/src/sections/dataset/Dataset.tsx index d86b70c3f..ee8533e1d 100644 --- a/src/sections/dataset/Dataset.tsx +++ b/src/sections/dataset/Dataset.tsx @@ -38,9 +38,11 @@ export function Dataset({ datasetRepository, id }: DatasetProps) { Citation Block - + + + From 751b37b44301cf53451d5398b73338ea23770db5 Mon Sep 17 00:00:00 2001 From: Ellen Kraffmiller Date: Mon, 15 May 2023 14:10:19 -0400 Subject: [PATCH 12/14] add design-system/.nyc_output to .gitignore --- .gitignore | 1 + packages/design-system/.nyc_output/out.json | 55018 ------------------ 2 files changed, 1 insertion(+), 55018 deletions(-) delete mode 100644 packages/design-system/.nyc_output/out.json diff --git a/.gitignore b/.gitignore index 89215c2c5..7c172fe0a 100644 --- a/.gitignore +++ b/.gitignore @@ -45,3 +45,4 @@ yarn-error.log* /dev-env/docker-dev-volumes /dev-env/dataverse /dev-env/dataverse-sample-data +/packages/design-system/.nyc_output \ No newline at end of file diff --git a/packages/design-system/.nyc_output/out.json b/packages/design-system/.nyc_output/out.json deleted file mode 100644 index 65ba78b7c..000000000 --- a/packages/design-system/.nyc_output/out.json +++ /dev/null @@ -1,55018 +0,0 @@ -{ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/BaseTheme.ts": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/BaseTheme.ts", - "statementMap": { - "0": { - "start": { - "line": 3, - "column": 25 - }, - "end": { - "line": 42, - "column": 1 - } - } - }, - "fnMap": {}, - "branchMap": {}, - "s": { - "0": 194 - }, - "f": {}, - "b": {}, - "inputSourceMap": { - "version": 3, - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/BaseTheme.ts" - ], - "mappings": "AAAA,OAAO,oBAAoB;AAC3B,OAAO,yBAAyB;AA4CzB,aAAM,YAA2B;AAAA,EACtC,UAAU;AAAA,EACV,OAAO;AAAA,IACL,OAAO,eAAe;AAAA,IACtB,SAAS,eAAe;AAAA,IACxB,WAAW,eAAe;AAAA,IAC1B,cAAc,eAAe;AAAA,IAC7B,cAAc,eAAe;AAAA,IAC7B,WAAW,eAAe;AAAA,IAC1B,aAAa,eAAe;AAAA,IAC5B,WAAW,eAAe;AAAA,IAC1B,cAAc,eAAe;AAAA,IAC7B,kBAAkB,eAAe;AAAA,IACjC,oBAAoB,eAAe;AAAA,IACnC,kBAAkB,eAAe;AAAA,IACjC,kBAAkB,eAAe;AAAA,IACjC,eAAe,eAAe;AAAA,IAC9B,iBAAiB,eAAe;AAAA,IAChC,iBAAiB,eAAe;AAAA,IAChC,iBAAiB,eAAe;AAAA,IAChC,cAAc,eAAe;AAAA,IAC7B,gBAAgB,eAAe;AAAA,IAC/B,eAAe,eAAe;AAAA,IAC9B,WAAW,eAAe;AAAA,IAC1B,gBAAgB,eAAe;AAAA,IAC/B,mBAAmB,eAAe;AAAA,IAClC,cAAc,eAAe;AAAA,IAC7B,mBAAmB,eAAe;AAAA,EACpC;AAAA,EACA,YAAY;AAAA,IACV,UAAU,oBAAoB;AAAA,IAC9B,YAAY,oBAAoB;AAAA,IAChC,eAAe,oBAAoB;AAAA,IACnC,YAAY,oBAAoB;AAAA,IAChC,YAAY,oBAAoB;AAAA,IAChC,gBAAgB,oBAAoB;AAAA,IACpC,iBAAiB,oBAAoB;AAAA,IACrC,YAAY,oBAAoB;AAAA,EAClC;AACF;", - "names": [] - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "09fbbfce1ff8cc6a86522c7fa9537c6a361c48ca" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/ThemeContext.ts": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/ThemeContext.ts", - "statementMap": { - "0": { - "start": { - "line": 3, - "column": 28 - }, - "end": { - "line": 3, - "column": 52 - } - } - }, - "fnMap": {}, - "branchMap": {}, - "s": { - "0": 194 - }, - "f": {}, - "b": {}, - "inputSourceMap": { - "version": 3, - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/ThemeContext.ts" - ], - "mappings": "AAAA,SAAS,qBAAqB;AAC9B,SAAS,iBAAiB;AAEnB,aAAM,eAAe,cAAc,SAAS;", - "names": [] - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "d95f435fccd317943d0fd56efda7a8236e084f6c" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/ThemeProvider.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/ThemeProvider.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 149 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 16, - "column": 9 - }, - "end": { - "line": 16, - "column": 23 - } - }, - "9": { - "start": { - "line": 25, - "column": 2 - }, - "end": { - "line": 29, - "column": 11 - } - }, - "10": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 31, - "column": 19 - } - }, - "11": { - "start": { - "line": 32, - "column": 24 - }, - "end": { - "line": 35, - "column": 1 - } - }, - "12": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 33, - "column": 7 - } - }, - "13": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 34, - "column": 34 - } - }, - "14": { - "start": { - "line": 36, - "column": 0 - }, - "end": { - "line": 36, - "column": 45 - } - }, - "15": { - "start": { - "line": 38, - "column": 0 - }, - "end": { - "line": 38, - "column": 34 - } - }, - "16": { - "start": { - "line": 39, - "column": 0 - }, - "end": { - "line": 55, - "column": 1 - } - }, - "17": { - "start": { - "line": 40, - "column": 2 - }, - "end": { - "line": 40, - "column": 39 - } - }, - "18": { - "start": { - "line": 41, - "column": 2 - }, - "end": { - "line": 41, - "column": 39 - } - }, - "19": { - "start": { - "line": 42, - "column": 2 - }, - "end": { - "line": 54, - "column": 5 - } - }, - "20": { - "start": { - "line": 46, - "column": 4 - }, - "end": { - "line": 46, - "column": 175 - } - }, - "21": { - "start": { - "line": 47, - "column": 4 - }, - "end": { - "line": 53, - "column": 7 - } - }, - "22": { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 15 - } - }, - "23": { - "start": { - "line": 49, - "column": 8 - }, - "end": { - "line": 49, - "column": 15 - } - }, - "24": { - "start": { - "line": 50, - "column": 32 - }, - "end": { - "line": 50, - "column": 115 - } - }, - "25": { - "start": { - "line": 51, - "column": 6 - }, - "end": { - "line": 52, - "column": 54 - } - }, - "26": { - "start": { - "line": 52, - "column": 8 - }, - "end": { - "line": 52, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "ThemeProvider", - "decl": { - "start": { - "line": 21, - "column": 16 - }, - "end": { - "line": 21, - "column": 29 - } - }, - "loc": { - "start": { - "line": 24, - "column": 3 - }, - "end": { - "line": 30, - "column": 1 - } - }, - "line": 24 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 32, - "column": 24 - }, - "end": { - "line": 32, - "column": 25 - } - }, - "loc": { - "start": { - "line": 32, - "column": 30 - }, - "end": { - "line": 35, - "column": 1 - } - }, - "line": 32 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 45, - "column": 9 - }, - "end": { - "line": 45, - "column": 10 - } - }, - "loc": { - "start": { - "line": 45, - "column": 29 - }, - "end": { - "line": 54, - "column": 3 - } - }, - "line": 45 - }, - "4": { - "name": "(anonymous_4)", - "decl": { - "start": { - "line": 47, - "column": 27 - }, - "end": { - "line": 47, - "column": 28 - } - }, - "loc": { - "start": { - "line": 47, - "column": 44 - }, - "end": { - "line": 53, - "column": 5 - } - }, - "line": 47 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 22, - "column": 19 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 22, - "column": 10 - }, - "end": { - "line": 22, - "column": 19 - } - } - ], - "line": 22 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 0 - }, - "end": { - "line": 55, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 0 - }, - "end": { - "line": 55, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 48 - }, - "5": { - "loc": { - "start": { - "line": 51, - "column": 6 - }, - "end": { - "line": 52, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 51, - "column": 6 - }, - "end": { - "line": 52, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 51 - } - }, - "s": { - "0": 194, - "1": 194, - "2": 0, - "3": 194, - "4": 194, - "5": 194, - "6": 194, - "7": 194, - "8": 194, - "9": 10, - "10": 194, - "11": 194, - "12": 10, - "13": 10, - "14": 194, - "15": 194, - "16": 194, - "17": 194, - "18": 194, - "19": 194, - "20": 194, - "21": 194, - "22": 0, - "23": 0, - "24": 0, - "25": 0, - "26": 0 - }, - "f": { - "0": 194, - "1": 10, - "2": 10, - "3": 194, - "4": 0 - }, - "b": { - "0": [194, 0], - "1": [0, 194], - "2": [6], - "3": [194, 0], - "4": [0, 0], - "5": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAWS;;;;;;;;;;;;;;;;AAXT,SAASA,iBAAgC;AACzC,SAAoBC,kBAAkB;AACtC,SAASC,oBAAoB;AAC7B,OAAO;AAOA,gBAASC,cAAc;AAAA,EAAEC,QAAQJ;AAAAA,EAAWK;AAAqB,GAAG;AACzE,SAAO,uBAAC,aAAa,UAAb,EAAsB,OAAOD,OAAQC,YAAtC;AAAA;AAAA;AAAA;AAAA,SAA+C;AACxD;AAACC,KAFeH;AAIT,aAAMI,WAAWA;AAAAC;AAAA,SAAMP,WAAWC,YAAY;AAAC;AAAAM,GAAzCD,UAAQ;AAAA;AAAAE", - "names": [ - "baseTheme", - "useContext", - "ThemeContext", - "ThemeProvider", - "theme", - "children", - "_c", - "useTheme", - "_s", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/ThemeProvider.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/ThemeProvider.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "9951e7bd3673d04e77386d9e1e1265d70b819aa8" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/breadcrumb/BreadcrumbItem.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/breadcrumb/BreadcrumbItem.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 155 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 26, - "column": 11 - } - }, - "9": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 20 - } - }, - "10": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 30, - "column": 35 - } - }, - "11": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "12": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "13": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 33, - "column": 39 - } - }, - "14": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 46, - "column": 5 - } - }, - "15": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 38, - "column": 181 - } - }, - "16": { - "start": { - "line": 39, - "column": 4 - }, - "end": { - "line": 45, - "column": 7 - } - }, - "17": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "18": { - "start": { - "line": 41, - "column": 8 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "19": { - "start": { - "line": 42, - "column": 32 - }, - "end": { - "line": 42, - "column": 115 - } - }, - "20": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - "21": { - "start": { - "line": 44, - "column": 8 - }, - "end": { - "line": 44, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "BreadcrumbItem", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 30 - } - }, - "loc": { - "start": { - "line": 21, - "column": 3 - }, - "end": { - "line": 27, - "column": 1 - } - }, - "line": 21 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 37, - "column": 9 - }, - "end": { - "line": 37, - "column": 10 - } - }, - "loc": { - "start": { - "line": 37, - "column": 29 - }, - "end": { - "line": 46, - "column": 3 - } - }, - "line": 37 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 39, - "column": 27 - }, - "end": { - "line": 39, - "column": 28 - } - }, - "loc": { - "start": { - "line": 39, - "column": 44 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "line": 39 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 31 - }, - "3": { - "loc": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 40 - }, - "4": { - "loc": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 43 - } - }, - "s": { - "0": 16, - "1": 16, - "2": 0, - "3": 16, - "4": 16, - "5": 16, - "6": 16, - "7": 16, - "8": 18, - "9": 16, - "10": 16, - "11": 16, - "12": 16, - "13": 16, - "14": 16, - "15": 16, - "16": 16, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 16, - "1": 18, - "2": 16, - "3": 0 - }, - "b": { - "0": [16, 0], - "1": [0, 16], - "2": [16, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AASI;AATJ,2BAA2BA;AAAgB;AAAQ,IAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAO7D,gBAASC,eAAe;AAAA,EAAEC;AAAAA,EAAMC;AAAAA,EAAQC;AAAiD,GAAG;AACjG,SACE,uBAAC,oBAAiB,MAAY,QAC3BA,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACC,KANeJ;AAAc;AAAAK", - "names": [ - "BreadcrumbItemBS", - "BreadcrumbItem", - "href", - "active", - "children", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/breadcrumb/BreadcrumbItem.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/breadcrumb/BreadcrumbItem.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "cbfd7df49f55edad2409e559e88df220d60a523d" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/breadcrumb/Breadcrumb.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/breadcrumb/Breadcrumb.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 151 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 16 - } - }, - "10": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 33 - } - }, - "11": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 31, - "column": 31 - } - }, - "12": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 48, - "column": 1 - } - }, - "13": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 33, - "column": 39 - } - }, - "14": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 34, - "column": 39 - } - }, - "15": { - "start": { - "line": 35, - "column": 2 - }, - "end": { - "line": 47, - "column": 5 - } - }, - "16": { - "start": { - "line": 39, - "column": 4 - }, - "end": { - "line": 39, - "column": 177 - } - }, - "17": { - "start": { - "line": 40, - "column": 4 - }, - "end": { - "line": 46, - "column": 7 - } - }, - "18": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 15 - } - }, - "19": { - "start": { - "line": 42, - "column": 8 - }, - "end": { - "line": 42, - "column": 15 - } - }, - "20": { - "start": { - "line": 43, - "column": 32 - }, - "end": { - "line": 43, - "column": 115 - } - }, - "21": { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 54 - } - }, - "22": { - "start": { - "line": 45, - "column": 8 - }, - "end": { - "line": 45, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Breadcrumb", - "decl": { - "start": { - "line": 18, - "column": 9 - }, - "end": { - "line": 18, - "column": 19 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 38, - "column": 9 - }, - "end": { - "line": 38, - "column": 10 - } - }, - "loc": { - "start": { - "line": 38, - "column": 29 - }, - "end": { - "line": 47, - "column": 3 - } - }, - "line": 38 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 40, - "column": 27 - }, - "end": { - "line": 40, - "column": 28 - } - }, - "loc": { - "start": { - "line": 40, - "column": 44 - }, - "end": { - "line": 46, - "column": 5 - } - }, - "line": 40 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 48, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 48, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 32 - }, - "3": { - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - }, - "4": { - "loc": { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 44 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 18, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 8, - "18": 0, - "19": 0, - "20": 0, - "21": 0, - "22": 0 - }, - "f": { - "0": 8, - "1": 18, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAKS;AALT,2BAAuBA;AAAoB;AAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAE5D,SAASC,sBAAsB;AAE/B,SAASC,WAAW;AAAA,EAAEC;AAA4B,GAAG;AACnD,SAAO,uBAAC,gBAAcA,YAAf;AAAA;AAAA;AAAA;AAAA,SAAwB;AACjC;AAACC,KAFQF;AAITA,WAAWG,OAAOJ;AAElB,SAASC;AAAY;AAAAI", - "names": [ - "BreadcrumbBS", - "BreadcrumbItem", - "Breadcrumb", - "children", - "_c", - "Item", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/breadcrumb/Breadcrumb.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/breadcrumb/Breadcrumb.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "a0b5b4f17167c4b829ad58c8a490ac56cf8df2a7" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionItem.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionItem.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 153 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 19 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 34 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 179 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "AccordionItem", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 29 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 36, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 8, - "1": 36, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AASS;AATT,2BAA0B;AAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACjC,SAASA,aAAaC,mBAAmB;AAOlC,gBAASC,cAAc;AAAA,EAAEC;AAAAA,EAAUC;AAA6B,GAAG;AACxE,SAAO,uBAAC,YAAY,MAAZ,EAAiB,UAAqBA,YAAvC;AAAA;AAAA;AAAA;AAAA,SAAgD;AACzD;AAACC,KAFeH;AAAa;AAAAI", - "names": [ - "Accordion", - "AccordionBS", - "AccordionItem", - "eventKey", - "children", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionItem.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionItem.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "9d893faf079edf16c80ed5f502aa912d2df58cf1" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionBody.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionBody.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 153 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 20, - "column": 2 - }, - "end": { - "line": 24, - "column": 11 - } - }, - "9": { - "start": { - "line": 26, - "column": 0 - }, - "end": { - "line": 26, - "column": 19 - } - }, - "10": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 34 - } - }, - "11": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "12": { - "start": { - "line": 30, - "column": 2 - }, - "end": { - "line": 30, - "column": 39 - } - }, - "13": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "14": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "15": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 179 - } - }, - "16": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 43, - "column": 7 - } - }, - "17": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "18": { - "start": { - "line": 39, - "column": 8 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "19": { - "start": { - "line": 40, - "column": 32 - }, - "end": { - "line": 40, - "column": 115 - } - }, - "20": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "21": { - "start": { - "line": 42, - "column": 8 - }, - "end": { - "line": 42, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "AccordionBody", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 29 - } - }, - "loc": { - "start": { - "line": 19, - "column": 3 - }, - "end": { - "line": 25, - "column": 1 - } - }, - "line": 19 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 35, - "column": 9 - }, - "end": { - "line": 35, - "column": 10 - } - }, - "loc": { - "start": { - "line": 35, - "column": 29 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "line": 35 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 37, - "column": 27 - }, - "end": { - "line": 37, - "column": 28 - } - }, - "loc": { - "start": { - "line": 37, - "column": 44 - }, - "end": { - "line": 43, - "column": 5 - } - }, - "line": 37 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 29 - }, - "3": { - "loc": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 38 - }, - "4": { - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 36, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 8, - "1": 36, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAQS;AART,2BAA0B;AAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACjC,SAASA,aAAaC,mBAAmB;AAMlC,gBAASC,cAAc;AAAA,EAAEC;AAA6B,GAAG;AAC9D,SAAO,uBAAC,YAAY,MAAZ,EAAkBA,YAAnB;AAAA;AAAA;AAAA;AAAA,SAA4B;AACrC;AAACC,KAFeF;AAAa;AAAAG", - "names": ["Accordion", "AccordionBS", "AccordionBody", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionBody.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionBody.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "ba96c5910715e4ab395bec90da7d413011f86758" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionHeader.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionHeader.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 155 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 20, - "column": 2 - }, - "end": { - "line": 24, - "column": 11 - } - }, - "9": { - "start": { - "line": 26, - "column": 0 - }, - "end": { - "line": 26, - "column": 21 - } - }, - "10": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 36 - } - }, - "11": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "12": { - "start": { - "line": 30, - "column": 2 - }, - "end": { - "line": 30, - "column": 39 - } - }, - "13": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "14": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "15": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 181 - } - }, - "16": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 43, - "column": 7 - } - }, - "17": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "18": { - "start": { - "line": 39, - "column": 8 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "19": { - "start": { - "line": 40, - "column": 32 - }, - "end": { - "line": 40, - "column": 115 - } - }, - "20": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "21": { - "start": { - "line": 42, - "column": 8 - }, - "end": { - "line": 42, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "AccordionHeader", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 31 - } - }, - "loc": { - "start": { - "line": 19, - "column": 3 - }, - "end": { - "line": 25, - "column": 1 - } - }, - "line": 19 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 35, - "column": 9 - }, - "end": { - "line": 35, - "column": 10 - } - }, - "loc": { - "start": { - "line": 35, - "column": 29 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "line": 35 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 37, - "column": 27 - }, - "end": { - "line": 37, - "column": 28 - } - }, - "loc": { - "start": { - "line": 37, - "column": 44 - }, - "end": { - "line": 43, - "column": 5 - } - }, - "line": 37 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 29 - }, - "3": { - "loc": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 38 - }, - "4": { - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 36, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 8, - "1": 36, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAQS;AART,2BAA0B;AAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACjC,SAASA,aAAaC,mBAAmB;AAMlC,gBAASC,gBAAgB;AAAA,EAAEC;AAA+B,GAAG;AAClE,SAAO,uBAAC,YAAY,QAAZ,EAAoBA,YAArB;AAAA;AAAA;AAAA;AAAA,SAA8B;AACvC;AAACC,KAFeF;AAAe;AAAAG", - "names": ["Accordion", "AccordionBS", "AccordionHeader", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionHeader.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionHeader.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "d528df807643adbe622b784cd14a843c57e93257" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/Accordion.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/Accordion.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 149 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 25, - "column": 2 - }, - "end": { - "line": 29, - "column": 11 - } - }, - "9": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 31, - "column": 15 - } - }, - "10": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 32, - "column": 31 - } - }, - "11": { - "start": { - "line": 33, - "column": 0 - }, - "end": { - "line": 33, - "column": 31 - } - }, - "12": { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 34, - "column": 35 - } - }, - "13": { - "start": { - "line": 37, - "column": 0 - }, - "end": { - "line": 37, - "column": 30 - } - }, - "14": { - "start": { - "line": 38, - "column": 0 - }, - "end": { - "line": 54, - "column": 1 - } - }, - "15": { - "start": { - "line": 39, - "column": 2 - }, - "end": { - "line": 39, - "column": 39 - } - }, - "16": { - "start": { - "line": 40, - "column": 2 - }, - "end": { - "line": 40, - "column": 39 - } - }, - "17": { - "start": { - "line": 41, - "column": 2 - }, - "end": { - "line": 53, - "column": 5 - } - }, - "18": { - "start": { - "line": 45, - "column": 4 - }, - "end": { - "line": 45, - "column": 175 - } - }, - "19": { - "start": { - "line": 46, - "column": 4 - }, - "end": { - "line": 52, - "column": 7 - } - }, - "20": { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 15 - } - }, - "21": { - "start": { - "line": 48, - "column": 8 - }, - "end": { - "line": 48, - "column": 15 - } - }, - "22": { - "start": { - "line": 49, - "column": 32 - }, - "end": { - "line": 49, - "column": 115 - } - }, - "23": { - "start": { - "line": 50, - "column": 6 - }, - "end": { - "line": 51, - "column": 54 - } - }, - "24": { - "start": { - "line": 51, - "column": 8 - }, - "end": { - "line": 51, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Accordion", - "decl": { - "start": { - "line": 20, - "column": 9 - }, - "end": { - "line": 20, - "column": 18 - } - }, - "loc": { - "start": { - "line": 24, - "column": 3 - }, - "end": { - "line": 30, - "column": 1 - } - }, - "line": 24 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 44, - "column": 9 - }, - "end": { - "line": 44, - "column": 10 - } - }, - "loc": { - "start": { - "line": 44, - "column": 29 - }, - "end": { - "line": 53, - "column": 3 - } - }, - "line": 44 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 46, - "column": 27 - }, - "end": { - "line": 46, - "column": 28 - } - }, - "loc": { - "start": { - "line": 46, - "column": 44 - }, - "end": { - "line": 52, - "column": 5 - } - }, - "line": 46 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 23, - "column": 2 - }, - "end": { - "line": 23, - "column": 20 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 23, - "column": 15 - }, - "end": { - "line": 23, - "column": 20 - } - } - ], - "line": 23 - }, - "3": { - "loc": { - "start": { - "line": 38, - "column": 0 - }, - "end": { - "line": 54, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 38, - "column": 0 - }, - "end": { - "line": 54, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 38 - }, - "4": { - "loc": { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 47 - }, - "5": { - "loc": { - "start": { - "line": 50, - "column": 6 - }, - "end": { - "line": 51, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 50, - "column": 6 - }, - "end": { - "line": 51, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 50 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 18, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 8, - "18": 8, - "19": 8, - "20": 0, - "21": 0, - "22": 0, - "23": 0, - "24": 0 - }, - "f": { - "0": 8, - "1": 18, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8], - "3": [8, 0], - "4": [0, 0], - "5": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAcI;AAdJ,2BAA0B;AAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACjC,SAASA,aAAaC,mBAAmB;AACzC,SAASC,qBAAqB;AAC9B,SAASC,qBAAqB;AAC9B,SAASC,uBAAuB;AAQhC,SAASJ,UAAU;AAAA,EAAEK;AAAAA,EAAkBC;AAAAA,EAAUC,aAAa;AAAsB,GAAG;AACrF,SACE,uBAAC,eAAY,kBAAoC,YAC9CD,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACE,KANQR;AAQTA,UAAUS,OAAOP;AACjBF,UAAUU,OAAOP;AACjBH,UAAUW,SAASP;AAEnB,SAASJ;AAAW;AAAAY", - "names": [ - "Accordion", - "AccordionBS", - "AccordionItem", - "AccordionBody", - "AccordionHeader", - "defaultActiveKey", - "children", - "alwaysOpen", - "_c", - "Item", - "Body", - "Header", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/Accordion.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/Accordion.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "10fedb444b55a29b87ddcbd9bf5dd6edfb5a72d1" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertIcon.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertIcon.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 145 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 20, - "column": 22 - }, - "end": { - "line": 41, - "column": 3 - } - }, - "9": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 33 - } - }, - "10": { - "start": { - "line": 45, - "column": 2 - }, - "end": { - "line": 49, - "column": 11 - } - }, - "11": { - "start": { - "line": 51, - "column": 0 - }, - "end": { - "line": 51, - "column": 15 - } - }, - "12": { - "start": { - "line": 53, - "column": 0 - }, - "end": { - "line": 53, - "column": 30 - } - }, - "13": { - "start": { - "line": 54, - "column": 0 - }, - "end": { - "line": 70, - "column": 1 - } - }, - "14": { - "start": { - "line": 55, - "column": 2 - }, - "end": { - "line": 55, - "column": 39 - } - }, - "15": { - "start": { - "line": 56, - "column": 2 - }, - "end": { - "line": 56, - "column": 39 - } - }, - "16": { - "start": { - "line": 57, - "column": 2 - }, - "end": { - "line": 69, - "column": 5 - } - }, - "17": { - "start": { - "line": 61, - "column": 4 - }, - "end": { - "line": 61, - "column": 171 - } - }, - "18": { - "start": { - "line": 62, - "column": 4 - }, - "end": { - "line": 68, - "column": 7 - } - }, - "19": { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 15 - } - }, - "20": { - "start": { - "line": 64, - "column": 8 - }, - "end": { - "line": 64, - "column": 15 - } - }, - "21": { - "start": { - "line": 65, - "column": 32 - }, - "end": { - "line": 65, - "column": 115 - } - }, - "22": { - "start": { - "line": 66, - "column": 6 - }, - "end": { - "line": 67, - "column": 54 - } - }, - "23": { - "start": { - "line": 67, - "column": 8 - }, - "end": { - "line": 67, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "AlertIcon", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 25 - } - }, - "loc": { - "start": { - "line": 19, - "column": 3 - }, - "end": { - "line": 50, - "column": 1 - } - }, - "line": 19 - }, - "2": { - "name": "getAlertIcon", - "decl": { - "start": { - "line": 42, - "column": 11 - }, - "end": { - "line": 42, - "column": 23 - } - }, - "loc": { - "start": { - "line": 42, - "column": 34 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "line": 42 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 60, - "column": 9 - }, - "end": { - "line": 60, - "column": 10 - } - }, - "loc": { - "start": { - "line": 60, - "column": 29 - }, - "end": { - "line": 69, - "column": 3 - } - }, - "line": 60 - }, - "4": { - "name": "(anonymous_4)", - "decl": { - "start": { - "line": 62, - "column": 27 - }, - "end": { - "line": 62, - "column": 28 - } - }, - "loc": { - "start": { - "line": 62, - "column": 44 - }, - "end": { - "line": 68, - "column": 5 - } - }, - "line": 62 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 54, - "column": 0 - }, - "end": { - "line": 70, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 54, - "column": 0 - }, - "end": { - "line": 70, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 54 - }, - "3": { - "loc": { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 63 - }, - "4": { - "loc": { - "start": { - "line": 66, - "column": 6 - }, - "end": { - "line": 67, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 66, - "column": 6 - }, - "end": { - "line": 67, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 66 - } - }, - "s": { - "0": 16, - "1": 16, - "2": 0, - "3": 16, - "4": 16, - "5": 16, - "6": 16, - "7": 16, - "8": 70, - "9": 70, - "10": 70, - "11": 16, - "12": 16, - "13": 16, - "14": 16, - "15": 16, - "16": 16, - "17": 16, - "18": 16, - "19": 0, - "20": 0, - "21": 0, - "22": 0, - "23": 0 - }, - "f": { - "0": 16, - "1": 70, - "2": 70, - "3": 16, - "4": 0 - }, - "b": { - "0": [16, 0], - "1": [0, 16], - "2": [16, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAgBa;AAhBb,2BAAqB;AAAwB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAC7C,SACEA,iBACAC,uBACAC,yBACAC,sBACK;AAKA,gBAASC,UAAU;AAAA,EAAEC;AAAwB,GAAG;AAIrD,QAAMC,cAA0B;AAAA,IAC9BC,SAAS,uBAAC,qBAAD;AAAA;AAAA;AAAA;AAAA,WAAiB;AAAA,IAC1BC,MAAM,uBAAC,oBAAD;AAAA;AAAA;AAAA;AAAA,WAAgB;AAAA,IACtBC,SAAS,uBAAC,6BAAD;AAAA;AAAA;AAAA;AAAA,WAAyB;AAAA,IAClCC,QAAQ,uBAAC,2BAAD;AAAA;AAAA;AAAA;AAAA,WAAuB;AAAA,EACjC;AACA,WAASC,aAAaN,UAAoC;AACxD,WAAOC,YAAYD,QAAO;AAAA,EAC5B;AACA,SACE,uBAAC,UAAK,MAAK,OAAM,cAAa,cAAaA,WACxCM,uBAAaN,OAAO,KADvB;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACO,KAlBeR;AAAS;AAAAS", - "names": [ - "CheckCircleFill", - "ExclamationCircleFill", - "ExclamationTriangleFill", - "InfoCircleFill", - "AlertIcon", - "variant", - "ALERT_ICONS", - "success", - "info", - "warning", - "danger", - "getAlertIcon", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertIcon.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertIcon.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "c7a1478a5bcacf2be778e5de0e8940ba3be06a85" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertLink.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertLink.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 145 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 15 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 30 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 171 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "AlertLink", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 25 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 16, - "1": 16, - "2": 0, - "3": 16, - "4": 16, - "5": 16, - "6": 16, - "7": 16, - "8": 14, - "9": 16, - "10": 16, - "11": 16, - "12": 16, - "13": 16, - "14": 16, - "15": 16, - "16": 16, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 16, - "1": 14, - "2": 16, - "3": 0 - }, - "b": { - "0": [16, 0], - "1": [0, 16], - "2": [16, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAQS;AART,2BAAyB;AAAQ;AAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAO3C,gBAASA,UAAU;AAAA,EAAEC;AAAAA,EAAMC;AAAqB,GAAG;AACxD,SAAO,uBAAC,QAAQ,MAAR,EAAa,MAAaD,kBAA3B;AAAA;AAAA;AAAA;AAAA,SAAgC;AACzC;AAACE,KAFeH;AAAS;AAAAI", - "names": ["AlertLink", "link", "href", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertLink.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertLink.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "e4739441cd601f58d588f10634480df81f8781ce" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/Alert.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/Alert.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 141 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 16, - "column": 9 - }, - "end": { - "line": 16, - "column": 23 - } - }, - "9": { - "start": { - "line": 27, - "column": 2 - }, - "end": { - "line": 27, - "column": 7 - } - }, - "10": { - "start": { - "line": 28, - "column": 25 - }, - "end": { - "line": 33, - "column": 3 - } - }, - "11": { - "start": { - "line": 34, - "column": 26 - }, - "end": { - "line": 34, - "column": 40 - } - }, - "12": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 54 - } - }, - "13": { - "start": { - "line": 38, - "column": 18 - }, - "end": { - "line": 38, - "column": 57 - } - }, - "14": { - "start": { - "line": 39, - "column": 2 - }, - "end": { - "line": 61, - "column": 11 - } - }, - "15": { - "start": { - "line": 39, - "column": 120 - }, - "end": { - "line": 39, - "column": 134 - } - }, - "16": { - "start": { - "line": 63, - "column": 0 - }, - "end": { - "line": 63, - "column": 42 - } - }, - "17": { - "start": { - "line": 64, - "column": 0 - }, - "end": { - "line": 64, - "column": 11 - } - }, - "18": { - "start": { - "line": 65, - "column": 0 - }, - "end": { - "line": 65, - "column": 23 - } - }, - "19": { - "start": { - "line": 68, - "column": 0 - }, - "end": { - "line": 68, - "column": 26 - } - }, - "20": { - "start": { - "line": 69, - "column": 0 - }, - "end": { - "line": 85, - "column": 1 - } - }, - "21": { - "start": { - "line": 70, - "column": 2 - }, - "end": { - "line": 70, - "column": 39 - } - }, - "22": { - "start": { - "line": 71, - "column": 2 - }, - "end": { - "line": 71, - "column": 39 - } - }, - "23": { - "start": { - "line": 72, - "column": 2 - }, - "end": { - "line": 84, - "column": 5 - } - }, - "24": { - "start": { - "line": 76, - "column": 4 - }, - "end": { - "line": 76, - "column": 167 - } - }, - "25": { - "start": { - "line": 77, - "column": 4 - }, - "end": { - "line": 83, - "column": 7 - } - }, - "26": { - "start": { - "line": 78, - "column": 6 - }, - "end": { - "line": 79, - "column": 15 - } - }, - "27": { - "start": { - "line": 79, - "column": 8 - }, - "end": { - "line": 79, - "column": 15 - } - }, - "28": { - "start": { - "line": 80, - "column": 32 - }, - "end": { - "line": 80, - "column": 115 - } - }, - "29": { - "start": { - "line": 81, - "column": 6 - }, - "end": { - "line": 82, - "column": 54 - } - }, - "30": { - "start": { - "line": 82, - "column": 8 - }, - "end": { - "line": 82, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Alert", - "decl": { - "start": { - "line": 21, - "column": 9 - }, - "end": { - "line": 21, - "column": 14 - } - }, - "loc": { - "start": { - "line": 26, - "column": 3 - }, - "end": { - "line": 62, - "column": 1 - } - }, - "line": 26 - }, - "2": { - "name": "getAlertHeading", - "decl": { - "start": { - "line": 35, - "column": 11 - }, - "end": { - "line": 35, - "column": 26 - } - }, - "loc": { - "start": { - "line": 35, - "column": 53 - }, - "end": { - "line": 37, - "column": 3 - } - }, - "line": 35 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 39, - "column": 114 - }, - "end": { - "line": 39, - "column": 115 - } - }, - "loc": { - "start": { - "line": 39, - "column": 120 - }, - "end": { - "line": 39, - "column": 134 - } - }, - "line": 39 - }, - "4": { - "name": "(anonymous_4)", - "decl": { - "start": { - "line": 75, - "column": 9 - }, - "end": { - "line": 75, - "column": 10 - } - }, - "loc": { - "start": { - "line": 75, - "column": 29 - }, - "end": { - "line": 84, - "column": 3 - } - }, - "line": 75 - }, - "5": { - "name": "(anonymous_5)", - "decl": { - "start": { - "line": 77, - "column": 27 - }, - "end": { - "line": 77, - "column": 28 - } - }, - "loc": { - "start": { - "line": 77, - "column": 44 - }, - "end": { - "line": 83, - "column": 5 - } - }, - "line": 77 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 23, - "column": 2 - }, - "end": { - "line": 23, - "column": 20 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 23, - "column": 16 - }, - "end": { - "line": 23, - "column": 20 - } - } - ], - "line": 23 - }, - "3": { - "loc": { - "start": { - "line": 36, - "column": 11 - }, - "end": { - "line": 36, - "column": 53 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 36, - "column": 11 - }, - "end": { - "line": 36, - "column": 25 - } - }, - { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 36, - "column": 53 - } - } - ], - "line": 36 - }, - "4": { - "loc": { - "start": { - "line": 39, - "column": 54 - }, - "end": { - "line": 57, - "column": 10 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 39, - "column": 54 - }, - "end": { - "line": 39, - "column": 58 - } - }, - { - "start": { - "line": 39, - "column": 78 - }, - "end": { - "line": 57, - "column": 10 - } - } - ], - "line": 39 - }, - "5": { - "loc": { - "start": { - "line": 69, - "column": 0 - }, - "end": { - "line": 85, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 69, - "column": 0 - }, - "end": { - "line": 85, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 69 - }, - "6": { - "loc": { - "start": { - "line": 78, - "column": 6 - }, - "end": { - "line": 79, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 78, - "column": 6 - }, - "end": { - "line": 79, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 78 - }, - "7": { - "loc": { - "start": { - "line": 81, - "column": 6 - }, - "end": { - "line": 82, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 81, - "column": 6 - }, - "end": { - "line": 82, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 81 - } - }, - "s": { - "0": 16, - "1": 16, - "2": 0, - "3": 16, - "4": 16, - "5": 16, - "6": 16, - "7": 16, - "8": 16, - "9": 76, - "10": 76, - "11": 76, - "12": 76, - "13": 76, - "14": 76, - "15": 6, - "16": 16, - "17": 16, - "18": 16, - "19": 16, - "20": 16, - "21": 16, - "22": 16, - "23": 16, - "24": 16, - "25": 16, - "26": 0, - "27": 0, - "28": 0, - "29": 0, - "30": 0 - }, - "f": { - "0": 16, - "1": 76, - "2": 76, - "3": 6, - "4": 16, - "5": 0 - }, - "b": { - "0": [16, 0], - "1": [0, 16], - "2": [72], - "3": [76, 76], - "4": [76, 70], - "5": [16, 0], - "6": [0, 0], - "7": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAgCI,mBAGM,cAHN;;;;;;;;;;;;;;;;AAhCJ,SAASA,SAASC,eAAe;AAEjC,SAASC,iBAAiB;AAC1B,SAAoBC,gBAAgB;AACpC,SAASC,iBAAiB;AAS1B,SAASJ,MAAM;AAAA,EAAEK;AAAAA,EAASC,cAAc;AAAA,EAAMC;AAAAA,EAAeC;AAAqB,GAAG;AAAAC;AAKnF,QAAMC,iBAAgC;AAAA,IACpCC,SAAS;AAAA,IACTC,MAAM;AAAA,IACNC,SAAS;AAAA,IACTC,QAAQ;AAAA,EACV;AACA,QAAM,CAACC,MAAMC,OAAO,IAAIb,SAAS,IAAI;AAErC,WAASc,gBAAgBZ,UAAuBE,gBAAgC;AAC9E,WAAOA,kBAAiBG,eAAeL,QAAO;AAAA,EAChD;AACA,QAAMa,UAAUD,gBAAgBZ,SAASE,aAAa;AAEtD,SACE,mCACGQ,kBACC,uBAAC,WAAQ,SAAkB,SAAS,MAAMC,QAAQ,KAAK,GAAG,aACxD;AAAA,2BAAC,aAAU,WAAX;AAAA;AAAA;AAAA;AAAA,WAA4B;AAAA;AAAA,IAE5B,uBAAC,OAAGE,qBAAJ;AAAA;AAAA;AAAA;AAAA,WAAY;AAAA,IAAI;AAAA,IAAIV;AAAAA,OAHtB;AAAA;AAAA;AAAA;AAAA,SAIA,KANJ;AAAA;AAAA;AAAA;AAAA,SAQA;AAEJ;AAACC,GA7BQT,OAAK;AAAAmB,KAALnB;AA8BTA,MAAMoB,OAAOhB;AAEb,SAASJ;AAAO;AAAAqB", - "names": [ - "Alert", - "AlertBS", - "AlertIcon", - "useState", - "AlertLink", - "variant", - "dismissible", - "customHeading", - "children", - "_s", - "ALERT_HEADINGS", - "success", - "info", - "warning", - "danger", - "show", - "setShow", - "getAlertHeading", - "heading", - "_c", - "Link", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/Alert.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/Alert.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "90e9cb0c57a5312f744522beb4f95c2ba178a22a" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/badge/Badge.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/badge/Badge.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 141 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 26, - "column": 11 - } - }, - "9": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 11 - } - }, - "10": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 30, - "column": 26 - } - }, - "11": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "12": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "13": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 33, - "column": 39 - } - }, - "14": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 46, - "column": 5 - } - }, - "15": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 38, - "column": 167 - } - }, - "16": { - "start": { - "line": 39, - "column": 4 - }, - "end": { - "line": 45, - "column": 7 - } - }, - "17": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "18": { - "start": { - "line": 41, - "column": 8 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "19": { - "start": { - "line": 42, - "column": 32 - }, - "end": { - "line": 42, - "column": 115 - } - }, - "20": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - "21": { - "start": { - "line": 44, - "column": 8 - }, - "end": { - "line": 44, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Badge", - "decl": { - "start": { - "line": 18, - "column": 16 - }, - "end": { - "line": 18, - "column": 21 - } - }, - "loc": { - "start": { - "line": 21, - "column": 3 - }, - "end": { - "line": 27, - "column": 1 - } - }, - "line": 21 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 37, - "column": 9 - }, - "end": { - "line": 37, - "column": 10 - } - }, - "loc": { - "start": { - "line": 37, - "column": 29 - }, - "end": { - "line": 46, - "column": 3 - } - }, - "line": 37 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 39, - "column": 27 - }, - "end": { - "line": 39, - "column": 28 - } - }, - "loc": { - "start": { - "line": 39, - "column": 44 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "line": 39 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 19, - "column": 2 - }, - "end": { - "line": 19, - "column": 23 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 19, - "column": 12 - }, - "end": { - "line": 19, - "column": 23 - } - } - ], - "line": 19 - }, - "3": { - "loc": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 31 - }, - "4": { - "loc": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 40 - }, - "5": { - "loc": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 43 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 18, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 8, - "1": 18, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [4], - "3": [8, 0], - "4": [0, 0], - "5": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAWI;AAXJ,2BAAyB;AAAQ;AAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAElD,OAAOA,YAAY;AAOZ,gBAASC,MAAM;AAAA,EAAEC,UAAU;AAAA,EAAaC;AAAqB,GAAG;AACrE,SACE,uBAAC,WAAQ,IAAID,SAAS,WAAWF,OAAOE,OAAO,GAC5CC,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACC,KANeH;AAAK;AAAAI", - "names": ["styles", "Badge", "variant", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/badge/Badge.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/badge/Badge.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "367079259cb8d7241e8c81d1a533738521f4645a" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button/Button.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button/Button.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 143 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 26, - "column": 23 - }, - "end": { - "line": 26, - "column": 56 - } - }, - "9": { - "start": { - "line": 27, - "column": 22 - }, - "end": { - "line": 27, - "column": 60 - } - }, - "10": { - "start": { - "line": 28, - "column": 2 - }, - "end": { - "line": 39, - "column": 11 - } - }, - "11": { - "start": { - "line": 41, - "column": 0 - }, - "end": { - "line": 41, - "column": 12 - } - }, - "12": { - "start": { - "line": 43, - "column": 0 - }, - "end": { - "line": 43, - "column": 27 - } - }, - "13": { - "start": { - "line": 44, - "column": 0 - }, - "end": { - "line": 60, - "column": 1 - } - }, - "14": { - "start": { - "line": 45, - "column": 2 - }, - "end": { - "line": 45, - "column": 39 - } - }, - "15": { - "start": { - "line": 46, - "column": 2 - }, - "end": { - "line": 46, - "column": 39 - } - }, - "16": { - "start": { - "line": 47, - "column": 2 - }, - "end": { - "line": 59, - "column": 5 - } - }, - "17": { - "start": { - "line": 51, - "column": 4 - }, - "end": { - "line": 51, - "column": 169 - } - }, - "18": { - "start": { - "line": 52, - "column": 4 - }, - "end": { - "line": 58, - "column": 7 - } - }, - "19": { - "start": { - "line": 53, - "column": 6 - }, - "end": { - "line": 54, - "column": 15 - } - }, - "20": { - "start": { - "line": 54, - "column": 8 - }, - "end": { - "line": 54, - "column": 15 - } - }, - "21": { - "start": { - "line": 55, - "column": 32 - }, - "end": { - "line": 55, - "column": 115 - } - }, - "22": { - "start": { - "line": 56, - "column": 6 - }, - "end": { - "line": 57, - "column": 54 - } - }, - "23": { - "start": { - "line": 57, - "column": 8 - }, - "end": { - "line": 57, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Button", - "decl": { - "start": { - "line": 18, - "column": 16 - }, - "end": { - "line": 18, - "column": 22 - } - }, - "loc": { - "start": { - "line": 25, - "column": 3 - }, - "end": { - "line": 40, - "column": 1 - } - }, - "line": 25 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 50, - "column": 9 - }, - "end": { - "line": 50, - "column": 10 - } - }, - "loc": { - "start": { - "line": 50, - "column": 29 - }, - "end": { - "line": 59, - "column": 3 - } - }, - "line": 50 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 52, - "column": 27 - }, - "end": { - "line": 52, - "column": 28 - } - }, - "loc": { - "start": { - "line": 52, - "column": 44 - }, - "end": { - "line": 58, - "column": 5 - } - }, - "line": 52 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 19, - "column": 2 - }, - "end": { - "line": 19, - "column": 21 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 19, - "column": 12 - }, - "end": { - "line": 19, - "column": 21 - } - } - ], - "line": 19 - }, - "3": { - "loc": { - "start": { - "line": 20, - "column": 2 - }, - "end": { - "line": 20, - "column": 18 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 20, - "column": 13 - }, - "end": { - "line": 20, - "column": 18 - } - } - ], - "line": 20 - }, - "4": { - "loc": { - "start": { - "line": 26, - "column": 23 - }, - "end": { - "line": 26, - "column": 56 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 26, - "column": 37 - }, - "end": { - "line": 26, - "column": 51 - } - }, - { - "start": { - "line": 26, - "column": 54 - }, - "end": { - "line": 26, - "column": 56 - } - } - ], - "line": 26 - }, - "5": { - "loc": { - "start": { - "line": 27, - "column": 22 - }, - "end": { - "line": 27, - "column": 60 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 27, - "column": 42 - }, - "end": { - "line": 27, - "column": 55 - } - }, - { - "start": { - "line": 27, - "column": 58 - }, - "end": { - "line": 27, - "column": 60 - } - } - ], - "line": 27 - }, - "6": { - "loc": { - "start": { - "line": 28, - "column": 107 - }, - "end": { - "line": 28, - "column": 134 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 28, - "column": 118 - }, - "end": { - "line": 28, - "column": 124 - } - }, - { - "start": { - "line": 28, - "column": 127 - }, - "end": { - "line": 28, - "column": 134 - } - } - ], - "line": 28 - }, - "7": { - "loc": { - "start": { - "line": 29, - "column": 4 - }, - "end": { - "line": 33, - "column": 12 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 29, - "column": 4 - }, - "end": { - "line": 29, - "column": 8 - } - }, - { - "start": { - "line": 29, - "column": 28 - }, - "end": { - "line": 33, - "column": 12 - } - } - ], - "line": 29 - }, - "8": { - "loc": { - "start": { - "line": 44, - "column": 0 - }, - "end": { - "line": 60, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 44, - "column": 0 - }, - "end": { - "line": 60, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 44 - }, - "9": { - "loc": { - "start": { - "line": 53, - "column": 6 - }, - "end": { - "line": 54, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 53, - "column": 6 - }, - "end": { - "line": 54, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 53 - }, - "10": { - "loc": { - "start": { - "line": 56, - "column": 6 - }, - "end": { - "line": 57, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 56, - "column": 6 - }, - "end": { - "line": 57, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 56 - } - }, - "s": { - "0": 38, - "1": 38, - "2": 0, - "3": 38, - "4": 38, - "5": 38, - "6": 38, - "7": 38, - "8": 76, - "9": 76, - "10": 76, - "11": 38, - "12": 38, - "13": 38, - "14": 38, - "15": 38, - "16": 38, - "17": 38, - "18": 38, - "19": 0, - "20": 0, - "21": 0, - "22": 0, - "23": 0 - }, - "f": { - "0": 38, - "1": 76, - "2": 38, - "3": 0 - }, - "b": { - "0": [38, 0], - "1": [0, 38], - "2": [56], - "3": [66], - "4": [4, 72], - "5": [76, 0], - "6": [10, 66], - "7": [76, 10], - "8": [38, 0], - "9": [0, 0], - "10": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAkCe;AAlCf,2BAAqBA;AAAwB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAC7C,OAAOC,YAAY;AACnB,SAASC,UAAUC,gBAAgB;AAc5B,gBAASD,OAAO;AAAA,EACrBE,UAAU;AAAA,EACVC,WAAW;AAAA,EACXC;AAAAA,EACAC;AAAAA,EACAC;AAAAA,EACAC;AACW,GAAG;AACd,QAAMC,eAAeF,cAAcP,OAAOU,UAAU;AACpD,QAAMC,cAAcR,WAAW,SAASH,OAAOY,SAAS;AAExD,SACE,uBAAC,YACC,WAAY,GAAEH,gBAAgBE,eAC9B,SACA,SAASP,WAAWS,SAAYR,SAChC,UACA,iBAAeD,UACdE;AAAAA,YAAQ,uBAAC,UAAK,WAAY,GAAEN,OAAOM,QAAQA,QAAQ,MAAK,OAAM,cAAYA,QAAlE;AAAA;AAAA;AAAA;AAAA,WAAwE;AAAA,IAChFE;AAAAA,OAPH;AAAA;AAAA;AAAA;AAAA,SAQA;AAEJ;AAACM,KAtBeb;AAAM;AAAAc", - "names": [ - "ReactNode", - "styles", - "Button", - "ButtonBS", - "variant", - "disabled", - "onClick", - "icon", - "withSpacing", - "children", - "spacingClass", - "spacing", - "borderClass", - "border", - "undefined", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button/Button.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button/Button.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "05976989c145d92fda83f45b43f9bcf1a13c9a96" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/icon.enum.ts": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/icon.enum.ts", - "statementMap": { - "0": { - "start": { - "line": 1, - "column": 34 - }, - "end": { - "line": 18, - "column": 14 - } - }, - "1": { - "start": { - "line": 2, - "column": 2 - }, - "end": { - "line": 2, - "column": 32 - } - }, - "2": { - "start": { - "line": 3, - "column": 2 - }, - "end": { - "line": 3, - "column": 32 - } - }, - "3": { - "start": { - "line": 4, - "column": 2 - }, - "end": { - "line": 4, - "column": 30 - } - }, - "4": { - "start": { - "line": 5, - "column": 2 - }, - "end": { - "line": 5, - "column": 42 - } - }, - "5": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 6, - "column": 36 - } - }, - "6": { - "start": { - "line": 7, - "column": 2 - }, - "end": { - "line": 7, - "column": 38 - } - }, - "7": { - "start": { - "line": 8, - "column": 2 - }, - "end": { - "line": 8, - "column": 30 - } - }, - "8": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 36 - } - }, - "9": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 32 - } - }, - "10": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 11, - "column": 36 - } - }, - "11": { - "start": { - "line": 12, - "column": 2 - }, - "end": { - "line": 12, - "column": 32 - } - }, - "12": { - "start": { - "line": 13, - "column": 2 - }, - "end": { - "line": 13, - "column": 36 - } - }, - "13": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 36 - } - }, - "14": { - "start": { - "line": 15, - "column": 2 - }, - "end": { - "line": 15, - "column": 34 - } - }, - "15": { - "start": { - "line": 16, - "column": 2 - }, - "end": { - "line": 16, - "column": 32 - } - }, - "16": { - "start": { - "line": 17, - "column": 2 - }, - "end": { - "line": 17, - "column": 15 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 1, - "column": 35 - }, - "end": { - "line": 1, - "column": 36 - } - }, - "loc": { - "start": { - "line": 1, - "column": 46 - }, - "end": { - "line": 18, - "column": 1 - } - }, - "line": 1 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 18, - "column": 3 - }, - "end": { - "line": 18, - "column": 13 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 18, - "column": 3 - }, - "end": { - "line": 18, - "column": 7 - } - }, - { - "start": { - "line": 18, - "column": 11 - }, - "end": { - "line": 18, - "column": 13 - } - } - ], - "line": 18 - } - }, - "s": { - "0": 12, - "1": 12, - "2": 12, - "3": 12, - "4": 12, - "5": 12, - "6": 12, - "7": 12, - "8": 12, - "9": 12, - "10": 12, - "11": 12, - "12": 12, - "13": 12, - "14": 12, - "15": 12, - "16": 12 - }, - "f": { - "0": 12 - }, - "b": { - "0": [12, 12] - }, - "inputSourceMap": { - "version": 3, - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/icon.enum.ts" - ], - "mappings": "AAAO,WAAK,OAAL,kBAAKA,UAAL;AACL,EAAAA,MAAA,WAAQ;AACR,EAAAA,MAAA,WAAQ;AACR,EAAAA,MAAA,UAAO;AACP,EAAAA,MAAA,gBAAa;AACb,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,cAAW;AACX,EAAAA,MAAA,UAAO;AACP,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,WAAQ;AACR,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,WAAQ;AACR,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,YAAS;AACT,EAAAA,MAAA,WAAQ;AAfE,SAAAA;AAAA,GAAA;", - "names": ["Icon"] - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "d4471754a5d3cc10c87098bb7c6092445337699d" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button-group/ButtonGroup.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button-group/ButtonGroup.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 154 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 17 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 32 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 180 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "ButtonGroup", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 27 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 20, - "1": 20, - "2": 0, - "3": 20, - "4": 20, - "5": 20, - "6": 20, - "7": 20, - "8": 24, - "9": 20, - "10": 20, - "11": 20, - "12": 20, - "13": 20, - "14": 20, - "15": 20, - "16": 20, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 20, - "1": 24, - "2": 20, - "3": 0 - }, - "b": { - "0": [20, 0], - "1": [0, 20], - "2": [20, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAQS;AART,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,eAAeC,qBAAqB;AAMtC,gBAASD,YAAY;AAAA,EAAEE;AAAAA,EAAUC;AAA8C,GAAG;AACvF,SAAO,uBAAC,iBAAc,UAAqBA,YAApC;AAAA;AAAA;AAAA;AAAA,SAA6C;AACtD;AAACC,KAFeJ;AAAW;AAAAK", - "names": ["ButtonGroup", "ButtonGroupBS", "vertical", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button-group/ButtonGroup.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button-group/ButtonGroup.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "0048e54afc5bc42edc2e8608ce83ade6d6b34de1" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/dropdown-button/DropdownButton.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/dropdown-button/DropdownButton.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 160 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 28, - "column": 23 - }, - "end": { - "line": 28, - "column": 56 - } - }, - "9": { - "start": { - "line": 29, - "column": 2 - }, - "end": { - "line": 44, - "column": 11 - } - }, - "10": { - "start": { - "line": 46, - "column": 0 - }, - "end": { - "line": 46, - "column": 20 - } - }, - "11": { - "start": { - "line": 48, - "column": 0 - }, - "end": { - "line": 48, - "column": 35 - } - }, - "12": { - "start": { - "line": 49, - "column": 0 - }, - "end": { - "line": 65, - "column": 1 - } - }, - "13": { - "start": { - "line": 50, - "column": 2 - }, - "end": { - "line": 50, - "column": 39 - } - }, - "14": { - "start": { - "line": 51, - "column": 2 - }, - "end": { - "line": 51, - "column": 39 - } - }, - "15": { - "start": { - "line": 52, - "column": 2 - }, - "end": { - "line": 64, - "column": 5 - } - }, - "16": { - "start": { - "line": 56, - "column": 4 - }, - "end": { - "line": 56, - "column": 186 - } - }, - "17": { - "start": { - "line": 57, - "column": 4 - }, - "end": { - "line": 63, - "column": 7 - } - }, - "18": { - "start": { - "line": 58, - "column": 6 - }, - "end": { - "line": 59, - "column": 15 - } - }, - "19": { - "start": { - "line": 59, - "column": 8 - }, - "end": { - "line": 59, - "column": 15 - } - }, - "20": { - "start": { - "line": 60, - "column": 32 - }, - "end": { - "line": 60, - "column": 115 - } - }, - "21": { - "start": { - "line": 61, - "column": 6 - }, - "end": { - "line": 62, - "column": 54 - } - }, - "22": { - "start": { - "line": 62, - "column": 8 - }, - "end": { - "line": 62, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "DropdownButton", - "decl": { - "start": { - "line": 19, - "column": 16 - }, - "end": { - "line": 19, - "column": 30 - } - }, - "loc": { - "start": { - "line": 27, - "column": 3 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "line": 27 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 55, - "column": 9 - }, - "end": { - "line": 55, - "column": 10 - } - }, - "loc": { - "start": { - "line": 55, - "column": 29 - }, - "end": { - "line": 64, - "column": 3 - } - }, - "line": 55 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 57, - "column": 27 - }, - "end": { - "line": 57, - "column": 28 - } - }, - "loc": { - "start": { - "line": 57, - "column": 44 - }, - "end": { - "line": 63, - "column": 5 - } - }, - "line": 57 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 22, - "column": 21 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 22, - "column": 12 - }, - "end": { - "line": 22, - "column": 21 - } - } - ], - "line": 22 - }, - "3": { - "loc": { - "start": { - "line": 28, - "column": 23 - }, - "end": { - "line": 28, - "column": 56 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 28, - "column": 37 - }, - "end": { - "line": 28, - "column": 51 - } - }, - { - "start": { - "line": 28, - "column": 54 - }, - "end": { - "line": 28, - "column": 56 - } - } - ], - "line": 28 - }, - "4": { - "loc": { - "start": { - "line": 30, - "column": 4 - }, - "end": { - "line": 34, - "column": 12 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 30, - "column": 4 - }, - "end": { - "line": 30, - "column": 8 - } - }, - { - "start": { - "line": 30, - "column": 28 - }, - "end": { - "line": 34, - "column": 12 - } - } - ], - "line": 30 - }, - "5": { - "loc": { - "start": { - "line": 40, - "column": 25 - }, - "end": { - "line": 40, - "column": 61 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 40, - "column": 41 - }, - "end": { - "line": 40, - "column": 52 - } - }, - { - "start": { - "line": 40, - "column": 55 - }, - "end": { - "line": 40, - "column": 61 - } - } - ], - "line": 40 - }, - "6": { - "loc": { - "start": { - "line": 49, - "column": 0 - }, - "end": { - "line": 65, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 49, - "column": 0 - }, - "end": { - "line": 65, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 49 - }, - "7": { - "loc": { - "start": { - "line": 58, - "column": 6 - }, - "end": { - "line": 59, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 58, - "column": 6 - }, - "end": { - "line": 59, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 58 - }, - "8": { - "loc": { - "start": { - "line": 61, - "column": 6 - }, - "end": { - "line": 62, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 61, - "column": 6 - }, - "end": { - "line": 62, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 61 - } - }, - "s": { - "0": 12, - "1": 12, - "2": 0, - "3": 12, - "4": 12, - "5": 12, - "6": 12, - "7": 12, - "8": 40, - "9": 40, - "10": 12, - "11": 12, - "12": 12, - "13": 12, - "14": 12, - "15": 12, - "16": 12, - "17": 12, - "18": 0, - "19": 0, - "20": 0, - "21": 0, - "22": 0 - }, - "f": { - "0": 12, - "1": 40, - "2": 12, - "3": 0 - }, - "b": { - "0": [12, 0], - "1": [0, 12], - "2": [10], - "3": [4, 36], - "4": [40, 8], - "5": [6, 34], - "6": [12, 0], - "7": [0, 0], - "8": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAkCQ,mBACW,cADX;AAlCR,2BAA2BA;AAAgB;AAAQ,IAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAEpE,OAAOC,YAAY;AAEnB,SAASC,mBAAmB;AAcrB,gBAASC,eAAe;AAAA,EAC7BC;AAAAA,EACAC;AAAAA,EACAC,UAAU;AAAA,EACVC;AAAAA,EACAC;AAAAA,EACAC;AAAAA,EACAC;AACmB,GAAG;AACtB,QAAMC,eAAeH,cAAcP,OAAOW,UAAU;AAEpD,SACE,uBAAC,oBACC,WAAY,GAAED,gBAAgBV,OAAOY,UACrC,IACA,OACE,mCACGN;AAAAA,YAAQ,uBAAC,UAAK,WAAY,GAAEN,OAAOM,QAAQA,QAAQ,MAAK,OAAM,cAAYA,QAAlE;AAAA;AAAA;AAAA;AAAA,WAAwE;AAAA,IAChFF;AAAAA,OAFH;AAAA;AAAA;AAAA;AAAA,SAGA,GAEF,SACA,IAAII,gBAAgBP,cAAcY,QACjCJ,YAXH;AAAA;AAAA;AAAA;AAAA,SAYA;AAEJ;AAACK,KA1BeZ;AAAc;AAAAa", - "names": [ - "DropdownButtonBS", - "styles", - "ButtonGroup", - "DropdownButton", - "id", - "title", - "variant", - "icon", - "withSpacing", - "asButtonGroup", - "children", - "spacingClass", - "spacing", - "border", - "undefined", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/dropdown-button/DropdownButton.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/dropdown-button/DropdownButton.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "cdf04968525e1f00eebb67bda9fe1cfa84aef0cb" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Col.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Col.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 138 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 9 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 24 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 164 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Col", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 19 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 66, - "1": 66, - "2": 0, - "3": 66, - "4": 66, - "5": 66, - "6": 66, - "7": 66, - "8": 294, - "9": 66, - "10": 66, - "11": 66, - "12": 66, - "13": 66, - "14": 66, - "15": 66, - "16": 66, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 66, - "1": 294, - "2": 66, - "3": 0 - }, - "b": { - "0": [66, 0], - "1": [0, 66], - "2": [66, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAqBS;AArBT,2BAAqB;AAAQ,IAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAoBvC,gBAASA,IAAI;AAAA,EAAEC;AAAAA,EAAU,GAAGC;AAAgB,GAAG;AACpD,SAAO,uBAAC,SAAM,GAAIA,OAAQD,YAAnB;AAAA;AAAA;AAAA;AAAA,SAA4B;AACrC;AAACE,KAFeH;AAAG;AAAAI", - "names": ["Col", "children", "props", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Col.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Col.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "6428b2efc59c82f295de02698b3da763e2acc8c8" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormElementLayout.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormElementLayout.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 176 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 29, - "column": 11 - } - }, - "9": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 31, - "column": 23 - } - }, - "10": { - "start": { - "line": 33, - "column": 0 - }, - "end": { - "line": 33, - "column": 38 - } - }, - "11": { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 50, - "column": 1 - } - }, - "12": { - "start": { - "line": 35, - "column": 2 - }, - "end": { - "line": 35, - "column": 39 - } - }, - "13": { - "start": { - "line": 36, - "column": 2 - }, - "end": { - "line": 36, - "column": 39 - } - }, - "14": { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 49, - "column": 5 - } - }, - "15": { - "start": { - "line": 41, - "column": 4 - }, - "end": { - "line": 41, - "column": 202 - } - }, - "16": { - "start": { - "line": 42, - "column": 4 - }, - "end": { - "line": 48, - "column": 7 - } - }, - "17": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 15 - } - }, - "18": { - "start": { - "line": 44, - "column": 8 - }, - "end": { - "line": 44, - "column": 15 - } - }, - "19": { - "start": { - "line": 45, - "column": 32 - }, - "end": { - "line": 45, - "column": 115 - } - }, - "20": { - "start": { - "line": 46, - "column": 6 - }, - "end": { - "line": 47, - "column": 54 - } - }, - "21": { - "start": { - "line": 47, - "column": 8 - }, - "end": { - "line": 47, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "FormElementLayout", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 33 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 30, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 40, - "column": 9 - }, - "end": { - "line": 40, - "column": 10 - } - }, - "loc": { - "start": { - "line": 40, - "column": 29 - }, - "end": { - "line": 49, - "column": 3 - } - }, - "line": 40 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 42, - "column": 27 - }, - "end": { - "line": 42, - "column": 28 - } - }, - "loc": { - "start": { - "line": 42, - "column": 44 - }, - "end": { - "line": 48, - "column": 5 - } - }, - "line": 42 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 21, - "column": 9 - }, - "end": { - "line": 29, - "column": 10 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 21, - "column": 53 - }, - "end": { - "line": 25, - "column": 10 - } - }, - { - "start": { - "line": 25, - "column": 29 - }, - "end": { - "line": 29, - "column": 10 - } - } - ], - "line": 21 - }, - "3": { - "loc": { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 50, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 50, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 34 - }, - "4": { - "loc": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 43 - }, - "5": { - "loc": { - "start": { - "line": 46, - "column": 6 - }, - "end": { - "line": 47, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 46, - "column": 6 - }, - "end": { - "line": 47, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 46 - } - }, - "s": { - "0": 66, - "1": 66, - "2": 0, - "3": 66, - "4": 66, - "5": 66, - "6": 66, - "7": 66, - "8": 138, - "9": 66, - "10": 66, - "11": 66, - "12": 66, - "13": 66, - "14": 66, - "15": 66, - "16": 66, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 66, - "1": 138, - "2": 66, - "3": 0 - }, - "b": { - "0": [66, 0], - "1": [0, 66], - "2": [0, 138], - "3": [66, 0], - "4": [0, 0], - "5": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAUqC;AAVrC,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,WAAW;AAKb,gBAASC,kBAAkB;AAAA,EAChCC;AAAAA,EACAC;AAC8C,GAAG;AACjD,SAAOD,4BAA4B,mCAAGC,YAAH;AAAA;AAAA;AAAA;AAAA,SAAY,IAAM,uBAAC,OAAI,IAAI,GAAIA,YAAb;AAAA;AAAA;AAAA;AAAA,SAAsB;AAC7E;AAACC,KALeH;AAAiB;AAAAI", - "names": [ - "Col", - "FormElementLayout", - "withinMultipleFieldsGroup", - "children", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormElementLayout.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormElementLayout.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "61829908da7c8e233c1b0364db5af901656a2560" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormInput.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormInput.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 168 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 25, - "column": 26 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "9": { - "start": { - "line": 28, - "column": 4 - }, - "end": { - "line": 43, - "column": 13 - } - }, - "10": { - "start": { - "line": 45, - "column": 2 - }, - "end": { - "line": 57, - "column": 11 - } - }, - "11": { - "start": { - "line": 59, - "column": 0 - }, - "end": { - "line": 59, - "column": 15 - } - }, - "12": { - "start": { - "line": 61, - "column": 0 - }, - "end": { - "line": 61, - "column": 30 - } - }, - "13": { - "start": { - "line": 62, - "column": 0 - }, - "end": { - "line": 78, - "column": 1 - } - }, - "14": { - "start": { - "line": 63, - "column": 2 - }, - "end": { - "line": 63, - "column": 39 - } - }, - "15": { - "start": { - "line": 64, - "column": 2 - }, - "end": { - "line": 64, - "column": 39 - } - }, - "16": { - "start": { - "line": 65, - "column": 2 - }, - "end": { - "line": 77, - "column": 5 - } - }, - "17": { - "start": { - "line": 69, - "column": 4 - }, - "end": { - "line": 69, - "column": 194 - } - }, - "18": { - "start": { - "line": 70, - "column": 4 - }, - "end": { - "line": 76, - "column": 7 - } - }, - "19": { - "start": { - "line": 71, - "column": 6 - }, - "end": { - "line": 72, - "column": 15 - } - }, - "20": { - "start": { - "line": 72, - "column": 8 - }, - "end": { - "line": 72, - "column": 15 - } - }, - "21": { - "start": { - "line": 73, - "column": 32 - }, - "end": { - "line": 73, - "column": 115 - } - }, - "22": { - "start": { - "line": 74, - "column": 6 - }, - "end": { - "line": 75, - "column": 54 - } - }, - "23": { - "start": { - "line": 75, - "column": 8 - }, - "end": { - "line": 75, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "FormInput", - "decl": { - "start": { - "line": 18, - "column": 16 - }, - "end": { - "line": 18, - "column": 25 - } - }, - "loc": { - "start": { - "line": 24, - "column": 3 - }, - "end": { - "line": 58, - "column": 1 - } - }, - "line": 24 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 25, - "column": 26 - }, - "end": { - "line": 25, - "column": 27 - } - }, - "loc": { - "start": { - "line": 27, - "column": 8 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "line": 27 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 68, - "column": 9 - }, - "end": { - "line": 68, - "column": 10 - } - }, - "loc": { - "start": { - "line": 68, - "column": 29 - }, - "end": { - "line": 77, - "column": 3 - } - }, - "line": 68 - }, - "4": { - "name": "(anonymous_4)", - "decl": { - "start": { - "line": 70, - "column": 27 - }, - "end": { - "line": 70, - "column": 28 - } - }, - "loc": { - "start": { - "line": 70, - "column": 44 - }, - "end": { - "line": 76, - "column": 5 - } - }, - "line": 70 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 19, - "column": 2 - }, - "end": { - "line": 19, - "column": 15 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 19, - "column": 9 - }, - "end": { - "line": 19, - "column": 15 - } - } - ], - "line": 19 - }, - "3": { - "loc": { - "start": { - "line": 28, - "column": 11 - }, - "end": { - "line": 43, - "column": 12 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 28, - "column": 36 - }, - "end": { - "line": 39, - "column": 12 - } - }, - { - "start": { - "line": 39, - "column": 31 - }, - "end": { - "line": 43, - "column": 12 - } - } - ], - "line": 28 - }, - "4": { - "loc": { - "start": { - "line": 62, - "column": 0 - }, - "end": { - "line": 78, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 62, - "column": 0 - }, - "end": { - "line": 78, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 62 - }, - "5": { - "loc": { - "start": { - "line": 71, - "column": 6 - }, - "end": { - "line": 72, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 71, - "column": 6 - }, - "end": { - "line": 72, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 71 - }, - "6": { - "loc": { - "start": { - "line": 74, - "column": 6 - }, - "end": { - "line": 75, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 74, - "column": 6 - }, - "end": { - "line": 75, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 74 - } - }, - "s": { - "0": 66, - "1": 66, - "2": 0, - "3": 66, - "4": 66, - "5": 66, - "6": 66, - "7": 66, - "8": 92, - "9": 92, - "10": 92, - "11": 66, - "12": 66, - "13": 66, - "14": 66, - "15": 66, - "16": 66, - "17": 66, - "18": 66, - "19": 0, - "20": 0, - "21": 0, - "22": 0, - "23": 0 - }, - "f": { - "0": 66, - "1": 92, - "2": 92, - "3": 66, - "4": 0 - }, - "b": { - "0": [66, 0], - "1": [0, 66], - "2": [24], - "3": [22, 70], - "4": [66, 0], - "5": [0, 0], - "6": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAwBQ,SAIF,UAJE;AAxBR,2BAAyBA;AAAkB;AAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAC5D,SAASC,yBAAyB;AAa3B,gBAASC,UAAU;AAAA,EACxBC,OAAO;AAAA,EACPC;AAAAA,EACAC;AAAAA,EACAC;AAAAA,EACA,GAAGC;AACW,GAAG;AACjB,QAAMC,kBAAkBA,CAAC;AAAA,IAAEC;AAAAA,EAA4B,MAAM;AAC3D,WAAOJ,SACL,uBAAC,cAAW,WAAU,QACpB;AAAA,6BAAC,WAAW,MAAX,EAAiBA,oBAAlB;AAAA;AAAA;AAAA;AAAA,aAAyB;AAAA,MACxBI;AAAAA,SAFH;AAAA;AAAA;AAAA;AAAA,WAGA,IAEA,mCAAGA,YAAH;AAAA;AAAA;AAAA;AAAA,WAAY;AAAA,EAEhB;AAEA,SACE,uBAAC,qBAAkB,2BACjB,iCAAC,mBACC,iCAAC,OAAO,SAAP,EAAe,MAAY,UAAoB,WAAWL,UAAU,GAAIG,SAAzE;AAAA;AAAA;AAAA;AAAA,SAA+E,KADjF;AAAA;AAAA;AAAA;AAAA,SAEA,KAHF;AAAA;AAAA;AAAA;AAAA,SAIA;AAEJ;AAACG,KAzBeR;AAAS;AAAAS", - "names": [ - "InputGroup", - "FormElementLayout", - "FormInput", - "type", - "readOnly", - "prefix", - "withinMultipleFieldsGroup", - "props", - "FormInputPrefix", - "children", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormInput.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormInput.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "6f2c9cd948b7bf29fa049a96133a83381a0b067e" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/required-input-symbol/RequiredInputSymbol.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/required-input-symbol/RequiredInputSymbol.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 176 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 17, - "column": 35 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "9": { - "start": { - "line": 18, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "10": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 25 - } - }, - "11": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 40 - } - }, - "12": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "13": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "14": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "15": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "16": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 202 - } - }, - "17": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "18": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "20": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "21": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "22": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "(anonymous_1)", - "decl": { - "start": { - "line": 17, - "column": 35 - }, - "end": { - "line": 17, - "column": 36 - } - }, - "loc": { - "start": { - "line": 17, - "column": 41 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 17 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 66, - "1": 66, - "2": 0, - "3": 66, - "4": 66, - "5": 66, - "6": 66, - "7": 66, - "8": 66, - "9": 20, - "10": 66, - "11": 66, - "12": 66, - "13": 66, - "14": 66, - "15": 66, - "16": 66, - "17": 66, - "18": 0, - "19": 0, - "20": 0, - "21": 0, - "22": 0 - }, - "f": { - "0": 66, - "1": 20, - "2": 66, - "3": 0 - }, - "b": { - "0": [66, 0], - "1": [0, 66], - "2": [66, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAII;AAJJ,OAAOA,oBAAY;AAAA;AAAmC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAE/C,aAAMC,sBAAsBA,MAAM;AACvC,SACE,uBAAC,UAAK,MAAK,OAAM,cAAW,yBAAwB,WAAWD,OAAOE,UACnE;AAAA;AAAA,IAAG;AAAA,OADN;AAAA;AAAA;AAAA;AAAA,SAGA;AAEJ;AAACC,KAPYF;AAAmB;AAAAG", - "names": ["styles", "RequiredInputSymbol", "asterisk", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/required-input-symbol/RequiredInputSymbol.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/required-input-symbol/RequiredInputSymbol.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "a3b78923ace45c139825016356e286d785fe6c5a" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/QuestionIcon.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/QuestionIcon.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 150 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 19, - "column": 2 - }, - "end": { - "line": 23, - "column": 11 - } - }, - "9": { - "start": { - "line": 25, - "column": 0 - }, - "end": { - "line": 25, - "column": 18 - } - }, - "10": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 33 - } - }, - "11": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 44, - "column": 1 - } - }, - "12": { - "start": { - "line": 29, - "column": 2 - }, - "end": { - "line": 29, - "column": 39 - } - }, - "13": { - "start": { - "line": 30, - "column": 2 - }, - "end": { - "line": 30, - "column": 39 - } - }, - "14": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 43, - "column": 5 - } - }, - "15": { - "start": { - "line": 35, - "column": 4 - }, - "end": { - "line": 35, - "column": 176 - } - }, - "16": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 42, - "column": 7 - } - }, - "17": { - "start": { - "line": 37, - "column": 6 - }, - "end": { - "line": 38, - "column": 15 - } - }, - "18": { - "start": { - "line": 38, - "column": 8 - }, - "end": { - "line": 38, - "column": 15 - } - }, - "19": { - "start": { - "line": 39, - "column": 32 - }, - "end": { - "line": 39, - "column": 115 - } - }, - "20": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 54 - } - }, - "21": { - "start": { - "line": 41, - "column": 8 - }, - "end": { - "line": 41, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "QuestionIcon", - "decl": { - "start": { - "line": 18, - "column": 16 - }, - "end": { - "line": 18, - "column": 28 - } - }, - "loc": { - "start": { - "line": 18, - "column": 31 - }, - "end": { - "line": 24, - "column": 1 - } - }, - "line": 18 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 34, - "column": 9 - }, - "end": { - "line": 34, - "column": 10 - } - }, - "loc": { - "start": { - "line": 34, - "column": 29 - }, - "end": { - "line": 43, - "column": 3 - } - }, - "line": 34 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 36, - "column": 27 - }, - "end": { - "line": 36, - "column": 28 - } - }, - "loc": { - "start": { - "line": 36, - "column": 44 - }, - "end": { - "line": 42, - "column": 5 - } - }, - "line": 36 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 44, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 44, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 28 - }, - "3": { - "loc": { - "start": { - "line": 37, - "column": 6 - }, - "end": { - "line": 38, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 37, - "column": 6 - }, - "end": { - "line": 38, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 37 - }, - "4": { - "loc": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 40 - } - }, - "s": { - "0": 72, - "1": 72, - "2": 0, - "3": 72, - "4": 72, - "5": 72, - "6": 72, - "7": 72, - "8": 14, - "9": 72, - "10": 72, - "11": 72, - "12": 72, - "13": 72, - "14": 72, - "15": 72, - "16": 72, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 72, - "1": 14, - "2": 72, - "3": 0 - }, - "b": { - "0": [72, 0], - "1": [0, 72], - "2": [72, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAGS;AAHT,OAAOA,oBAAY;AAAA,IAA4B;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAC/C,SAASC,0BAA0B;AAC5B,gBAASC,eAAe;AAC7B,SAAO,uBAAC,sBAAmB,WAAWF,OAAO,kBAAkB,KAAxD;AAAA;AAAA;AAAA;AAAA,SAA0D;AACnE;AAACG,KAFeD;AAAY;AAAAE", - "names": ["styles", "QuestionCircleFill", "QuestionIcon", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/QuestionIcon.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/QuestionIcon.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "8af8a402ae35e0d0fda79fe0a025079e2e1df2a5" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/overlay-trigger/OverlayTrigger.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/overlay-trigger/OverlayTrigger.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 168 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 30, - "column": 11 - } - }, - "9": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 32, - "column": 20 - } - }, - "10": { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 34, - "column": 35 - } - }, - "11": { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 51, - "column": 1 - } - }, - "12": { - "start": { - "line": 36, - "column": 2 - }, - "end": { - "line": 36, - "column": 39 - } - }, - "13": { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 37, - "column": 39 - } - }, - "14": { - "start": { - "line": 38, - "column": 2 - }, - "end": { - "line": 50, - "column": 5 - } - }, - "15": { - "start": { - "line": 42, - "column": 4 - }, - "end": { - "line": 42, - "column": 194 - } - }, - "16": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 49, - "column": 7 - } - }, - "17": { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 15 - } - }, - "18": { - "start": { - "line": 45, - "column": 8 - }, - "end": { - "line": 45, - "column": 15 - } - }, - "19": { - "start": { - "line": 46, - "column": 32 - }, - "end": { - "line": 46, - "column": 115 - } - }, - "20": { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 54 - } - }, - "21": { - "start": { - "line": 48, - "column": 8 - }, - "end": { - "line": 48, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "OverlayTrigger", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 30 - } - }, - "loc": { - "start": { - "line": 21, - "column": 3 - }, - "end": { - "line": 31, - "column": 1 - } - }, - "line": 21 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 41, - "column": 9 - }, - "end": { - "line": 41, - "column": 10 - } - }, - "loc": { - "start": { - "line": 41, - "column": 29 - }, - "end": { - "line": 50, - "column": 3 - } - }, - "line": 41 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 43, - "column": 27 - }, - "end": { - "line": 43, - "column": 28 - } - }, - "loc": { - "start": { - "line": 43, - "column": 44 - }, - "end": { - "line": 49, - "column": 5 - } - }, - "line": 43 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 51, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 51, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 35 - }, - "3": { - "loc": { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 44 - }, - "4": { - "loc": { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 47 - } - }, - "s": { - "0": 76, - "1": 76, - "2": 0, - "3": 76, - "4": 76, - "5": 76, - "6": 76, - "7": 76, - "8": 38, - "9": 76, - "10": 76, - "11": 76, - "12": 76, - "13": 76, - "14": 76, - "15": 76, - "16": 76, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 76, - "1": 38, - "2": 76, - "3": 0 - }, - "b": { - "0": [76, 0], - "1": [0, 76], - "2": [76, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAce;AAdf,2BAA2BA;AAAkBC;AAAWC,IAAS;AAAQ,gBAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASnF,gBAASC,eAAe;AAAA,EAAEC;AAAAA,EAAWC;AAAAA,EAASC;AAA8B,GAAG;AACpF,SACE,uBAAC,oBAEC,WACA,SAAS,uBAAC,aAAWD,qBAAZ;AAAA;AAAA;AAAA;AAAA,SAAoB,GAC5BC,YAHIF,WADP;AAAA;AAAA;AAAA;AAAA,SAKA;AAEJ;AAACG,KATeJ;AAAc;AAAAK", - "names": [ - "OverlayTriggerBS", - "Tooltip", - "TooltipBS", - "OverlayTrigger", - "placement", - "message", - "children", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/overlay-trigger/OverlayTrigger.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/overlay-trigger/OverlayTrigger.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "61a3cc28eda1734516907ddf6ebb4a34890ccb4b" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/Tooltip.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/Tooltip.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 145 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 23, - "column": 2 - }, - "end": { - "line": 35, - "column": 11 - } - }, - "9": { - "start": { - "line": 37, - "column": 0 - }, - "end": { - "line": 37, - "column": 13 - } - }, - "10": { - "start": { - "line": 39, - "column": 0 - }, - "end": { - "line": 39, - "column": 28 - } - }, - "11": { - "start": { - "line": 40, - "column": 0 - }, - "end": { - "line": 56, - "column": 1 - } - }, - "12": { - "start": { - "line": 41, - "column": 2 - }, - "end": { - "line": 41, - "column": 39 - } - }, - "13": { - "start": { - "line": 42, - "column": 2 - }, - "end": { - "line": 42, - "column": 39 - } - }, - "14": { - "start": { - "line": 43, - "column": 2 - }, - "end": { - "line": 55, - "column": 5 - } - }, - "15": { - "start": { - "line": 47, - "column": 4 - }, - "end": { - "line": 47, - "column": 171 - } - }, - "16": { - "start": { - "line": 48, - "column": 4 - }, - "end": { - "line": 54, - "column": 7 - } - }, - "17": { - "start": { - "line": 49, - "column": 6 - }, - "end": { - "line": 50, - "column": 15 - } - }, - "18": { - "start": { - "line": 50, - "column": 8 - }, - "end": { - "line": 50, - "column": 15 - } - }, - "19": { - "start": { - "line": 51, - "column": 32 - }, - "end": { - "line": 51, - "column": 115 - } - }, - "20": { - "start": { - "line": 52, - "column": 6 - }, - "end": { - "line": 53, - "column": 54 - } - }, - "21": { - "start": { - "line": 53, - "column": 8 - }, - "end": { - "line": 53, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Tooltip", - "decl": { - "start": { - "line": 19, - "column": 16 - }, - "end": { - "line": 19, - "column": 23 - } - }, - "loc": { - "start": { - "line": 22, - "column": 3 - }, - "end": { - "line": 36, - "column": 1 - } - }, - "line": 22 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 46, - "column": 9 - }, - "end": { - "line": 46, - "column": 10 - } - }, - "loc": { - "start": { - "line": 46, - "column": 29 - }, - "end": { - "line": 55, - "column": 3 - } - }, - "line": 46 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 48, - "column": 27 - }, - "end": { - "line": 48, - "column": 28 - } - }, - "loc": { - "start": { - "line": 48, - "column": 44 - }, - "end": { - "line": 54, - "column": 5 - } - }, - "line": 48 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 40, - "column": 0 - }, - "end": { - "line": 56, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 40, - "column": 0 - }, - "end": { - "line": 56, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 40 - }, - "3": { - "loc": { - "start": { - "line": 49, - "column": 6 - }, - "end": { - "line": 50, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 49, - "column": 6 - }, - "end": { - "line": 50, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 49 - }, - "4": { - "loc": { - "start": { - "line": 52, - "column": 6 - }, - "end": { - "line": 53, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 52, - "column": 6 - }, - "end": { - "line": 53, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 52 - } - }, - "s": { - "0": 72, - "1": 72, - "2": 0, - "3": 72, - "4": 72, - "5": 72, - "6": 72, - "7": 72, - "8": 14, - "9": 72, - "10": 72, - "11": 72, - "12": 72, - "13": 72, - "14": 72, - "15": 72, - "16": 72, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 72, - "1": 14, - "2": 72, - "3": 0 - }, - "b": { - "0": [72, 0], - "1": [0, 72], - "2": [72, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAcQ;AAdR,2BAA0B;AAAA,IAAuB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACjD,SAASA,oBAAoB;AAC7B,OAAOC,YAAY;AACnB,SAASC,sBAAsB;AAOxB,gBAASC,QAAQ;AAAA,EAAEC;AAAAA,EAAWC;AAAsB,GAAG;AAC5D,SACE,uBAAC,kBAAe,WAAsB,SACpC,iCAAC,UAAK,MAAK,OAAM,cAAW,gBAAe,WAAWJ,OAAOK,SAC3D,iCAAC,kBAAD;AAAA;AAAA;AAAA;AAAA,SAAc,KADhB;AAAA;AAAA;AAAA;AAAA,SAEA,KAHF;AAAA;AAAA;AAAA;AAAA,SAIA;AAEJ;AAACC,KAReJ;AAAO;AAAAK", - "names": [ - "QuestionIcon", - "styles", - "OverlayTrigger", - "Tooltip", - "placement", - "message", - "tooltip", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/Tooltip.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/Tooltip.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "bba4bf0ce06dadd6c4fc7b691b0f5f77be4fe25d" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormLabel.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormLabel.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 168 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 25, - "column": 22 - }, - "end": { - "line": 28, - "column": 3 - } - }, - "9": { - "start": { - "line": 29, - "column": 2 - }, - "end": { - "line": 46, - "column": 11 - } - }, - "10": { - "start": { - "line": 48, - "column": 0 - }, - "end": { - "line": 48, - "column": 15 - } - }, - "11": { - "start": { - "line": 50, - "column": 0 - }, - "end": { - "line": 50, - "column": 30 - } - }, - "12": { - "start": { - "line": 51, - "column": 0 - }, - "end": { - "line": 67, - "column": 1 - } - }, - "13": { - "start": { - "line": 52, - "column": 2 - }, - "end": { - "line": 52, - "column": 39 - } - }, - "14": { - "start": { - "line": 53, - "column": 2 - }, - "end": { - "line": 53, - "column": 39 - } - }, - "15": { - "start": { - "line": 54, - "column": 2 - }, - "end": { - "line": 66, - "column": 5 - } - }, - "16": { - "start": { - "line": 58, - "column": 4 - }, - "end": { - "line": 58, - "column": 194 - } - }, - "17": { - "start": { - "line": 59, - "column": 4 - }, - "end": { - "line": 65, - "column": 7 - } - }, - "18": { - "start": { - "line": 60, - "column": 6 - }, - "end": { - "line": 61, - "column": 15 - } - }, - "19": { - "start": { - "line": 61, - "column": 8 - }, - "end": { - "line": 61, - "column": 15 - } - }, - "20": { - "start": { - "line": 62, - "column": 32 - }, - "end": { - "line": 62, - "column": 115 - } - }, - "21": { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 54 - } - }, - "22": { - "start": { - "line": 64, - "column": 8 - }, - "end": { - "line": 64, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "FormLabel", - "decl": { - "start": { - "line": 19, - "column": 16 - }, - "end": { - "line": 19, - "column": 25 - } - }, - "loc": { - "start": { - "line": 24, - "column": 3 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "line": 24 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 57, - "column": 9 - }, - "end": { - "line": 57, - "column": 10 - } - }, - "loc": { - "start": { - "line": 57, - "column": 29 - }, - "end": { - "line": 66, - "column": 3 - } - }, - "line": 57 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 59, - "column": 27 - }, - "end": { - "line": 59, - "column": 28 - } - }, - "loc": { - "start": { - "line": 59, - "column": 44 - }, - "end": { - "line": 65, - "column": 5 - } - }, - "line": 59 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 25, - "column": 22 - }, - "end": { - "line": 28, - "column": 3 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 25, - "column": 50 - }, - "end": { - "line": 25, - "column": 52 - } - }, - { - "start": { - "line": 25, - "column": 55 - }, - "end": { - "line": 28, - "column": 3 - } - } - ], - "line": 25 - }, - "3": { - "loc": { - "start": { - "line": 31, - "column": 4 - }, - "end": { - "line": 35, - "column": 12 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 31, - "column": 4 - }, - "end": { - "line": 31, - "column": 12 - } - }, - { - "start": { - "line": 31, - "column": 32 - }, - "end": { - "line": 35, - "column": 12 - } - } - ], - "line": 31 - }, - "4": { - "loc": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 41, - "column": 12 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 11 - } - }, - { - "start": { - "line": 37, - "column": 31 - }, - "end": { - "line": 41, - "column": 12 - } - } - ], - "line": 37 - }, - "5": { - "loc": { - "start": { - "line": 51, - "column": 0 - }, - "end": { - "line": 67, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 51, - "column": 0 - }, - "end": { - "line": 67, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 51 - }, - "6": { - "loc": { - "start": { - "line": 60, - "column": 6 - }, - "end": { - "line": 61, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 60, - "column": 6 - }, - "end": { - "line": 61, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 60 - }, - "7": { - "loc": { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 63 - } - }, - "s": { - "0": 66, - "1": 66, - "2": 0, - "3": 66, - "4": 66, - "5": 66, - "6": 66, - "7": 66, - "8": 138, - "9": 138, - "10": 66, - "11": 66, - "12": 66, - "13": 66, - "14": 66, - "15": 66, - "16": 66, - "17": 66, - "18": 0, - "19": 0, - "20": 0, - "21": 0, - "22": 0 - }, - "f": { - "0": 66, - "1": 138, - "2": 66, - "3": 0 - }, - "b": { - "0": [66, 0], - "1": [0, 66], - "2": [0, 138], - "3": [138, 10], - "4": [138, 4], - "5": [66, 0], - "6": [0, 0], - "7": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAsBmB;AAtBnB,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,QAAQC,cAAc;AAC/B,SAASC,2BAA2B;AACpC,SAASC,eAAe;AAQjB,gBAASC,UAAU;AAAA,EACxBC;AAAAA,EACAC;AAAAA,EACAC;AAAAA,EACAC;AACiC,GAAG;AACpC,QAAMC,cAAcF,4BAA4B,CAAC,IAAI;AAAA,IAAEG,QAAQ;AAAA,IAAMC,IAAI;AAAA,EAAE;AAE3E,SACE,uBAAC,OAAO,OAAP,EAAa,GAAIF,aACfD;AAAAA;AAAAA,IACAH,YAAY,uBAAC,yBAAD;AAAA;AAAA;AAAA;AAAA,WAAoB;AAAA,IAAK;AAAA,IACrCC,WAAW,uBAAC,WAAQ,WAAU,SAAQ,WAA3B;AAAA;AAAA;AAAA;AAAA,WAA6C;AAAA,OAH3D;AAAA;AAAA;AAAA;AAAA,SAIA;AAEJ;AAACM,KAfeR;AAAS;AAAAS", - "names": [ - "Form", - "FormBS", - "RequiredInputSymbol", - "Tooltip", - "FormLabel", - "required", - "message", - "withinMultipleFieldsGroup", - "children", - "layoutProps", - "column", - "sm", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormLabel.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormLabel.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "423943883f7e09b2554d6382cf4d760fecc72ebb" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormText.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormText.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 167 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 22, - "column": 17 - }, - "end": { - "line": 37, - "column": 3 - } - }, - "9": { - "start": { - "line": 25, - "column": 4 - }, - "end": { - "line": 36, - "column": 13 - } - }, - "10": { - "start": { - "line": 38, - "column": 2 - }, - "end": { - "line": 46, - "column": 11 - } - }, - "11": { - "start": { - "line": 48, - "column": 0 - }, - "end": { - "line": 48, - "column": 14 - } - }, - "12": { - "start": { - "line": 50, - "column": 0 - }, - "end": { - "line": 50, - "column": 29 - } - }, - "13": { - "start": { - "line": 51, - "column": 0 - }, - "end": { - "line": 67, - "column": 1 - } - }, - "14": { - "start": { - "line": 52, - "column": 2 - }, - "end": { - "line": 52, - "column": 39 - } - }, - "15": { - "start": { - "line": 53, - "column": 2 - }, - "end": { - "line": 53, - "column": 39 - } - }, - "16": { - "start": { - "line": 54, - "column": 2 - }, - "end": { - "line": 66, - "column": 5 - } - }, - "17": { - "start": { - "line": 58, - "column": 4 - }, - "end": { - "line": 58, - "column": 193 - } - }, - "18": { - "start": { - "line": 59, - "column": 4 - }, - "end": { - "line": 65, - "column": 7 - } - }, - "19": { - "start": { - "line": 60, - "column": 6 - }, - "end": { - "line": 61, - "column": 15 - } - }, - "20": { - "start": { - "line": 61, - "column": 8 - }, - "end": { - "line": 61, - "column": 15 - } - }, - "21": { - "start": { - "line": 62, - "column": 32 - }, - "end": { - "line": 62, - "column": 115 - } - }, - "22": { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 54 - } - }, - "23": { - "start": { - "line": 64, - "column": 8 - }, - "end": { - "line": 64, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "FormText", - "decl": { - "start": { - "line": 18, - "column": 16 - }, - "end": { - "line": 18, - "column": 24 - } - }, - "loc": { - "start": { - "line": 21, - "column": 3 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "line": 21 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 22, - "column": 17 - }, - "end": { - "line": 22, - "column": 18 - } - }, - "loc": { - "start": { - "line": 24, - "column": 8 - }, - "end": { - "line": 37, - "column": 3 - } - }, - "line": 24 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 57, - "column": 9 - }, - "end": { - "line": 57, - "column": 10 - } - }, - "loc": { - "start": { - "line": 57, - "column": 29 - }, - "end": { - "line": 66, - "column": 3 - } - }, - "line": 57 - }, - "4": { - "name": "(anonymous_4)", - "decl": { - "start": { - "line": 59, - "column": 27 - }, - "end": { - "line": 59, - "column": 28 - } - }, - "loc": { - "start": { - "line": 59, - "column": 44 - }, - "end": { - "line": 65, - "column": 5 - } - }, - "line": 59 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 25, - "column": 11 - }, - "end": { - "line": 36, - "column": 12 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 25, - "column": 55 - }, - "end": { - "line": 29, - "column": 12 - } - }, - { - "start": { - "line": 29, - "column": 31 - }, - "end": { - "line": 36, - "column": 12 - } - } - ], - "line": 25 - }, - "3": { - "loc": { - "start": { - "line": 51, - "column": 0 - }, - "end": { - "line": 67, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 51, - "column": 0 - }, - "end": { - "line": 67, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 51 - }, - "4": { - "loc": { - "start": { - "line": 60, - "column": 6 - }, - "end": { - "line": 61, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 60, - "column": 6 - }, - "end": { - "line": 61, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 60 - }, - "5": { - "loc": { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 63 - } - }, - "s": { - "0": 66, - "1": 66, - "2": 0, - "3": 66, - "4": 66, - "5": 66, - "6": 66, - "7": 66, - "8": 10, - "9": 10, - "10": 10, - "11": 66, - "12": 66, - "13": 66, - "14": 66, - "15": 66, - "16": 66, - "17": 66, - "18": 66, - "19": 0, - "20": 0, - "21": 0, - "22": 0, - "23": 0 - }, - "f": { - "0": 66, - "1": 10, - "2": 10, - "3": 66, - "4": 0 - }, - "b": { - "0": [66, 0], - "1": [0, 66], - "2": [4, 6], - "3": [66, 0], - "4": [0, 0], - "5": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAcM;AAdN,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,QAAQC,cAAc;AAC/B,SAASC,WAAW;AAMb,gBAASC,SAAS;AAAA,EACvBC;AAAAA,EACAC;AACgC,GAAG;AACnC,QAAMC,SAASA,CAAC;AAAA,IAAED;AAAAA,EAA4B,MAAM;AAClD,WAAOD,4BACL,mCAAGC,uBAAH;AAAA;AAAA;AAAA;AAAA,WAAY,IAEZ,uBAAC,OAAI,IAAI;AAAA,MAAEE,QAAQ;AAAA,MAAGC,MAAM;AAAA,IAAE,GAAG,WAAU,QACxCH,uBADH;AAAA;AAAA;AAAA;AAAA,WAEA;AAAA,EAEJ;AAEA,SACE,uBAAC,UACC,iCAAC,OAAO,MAAP,EAAY,OAAK,MAAEA,YAApB;AAAA;AAAA;AAAA;AAAA,SAA6B,KAD/B;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACI,KAnBeN;AAAQ;AAAAO", - "names": [ - "Form", - "FormBS", - "Col", - "FormText", - "withinMultipleFieldsGroup", - "children", - "Layout", - "offset", - "span", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormText.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormText.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "82ebdf0f2121783bea93accafa373e15b2b954d6" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormSelect.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormSelect.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 169 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 23, - "column": 2 - }, - "end": { - "line": 31, - "column": 11 - } - }, - "9": { - "start": { - "line": 33, - "column": 0 - }, - "end": { - "line": 33, - "column": 16 - } - }, - "10": { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 35, - "column": 31 - } - }, - "11": { - "start": { - "line": 36, - "column": 0 - }, - "end": { - "line": 52, - "column": 1 - } - }, - "12": { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 37, - "column": 39 - } - }, - "13": { - "start": { - "line": 38, - "column": 2 - }, - "end": { - "line": 38, - "column": 39 - } - }, - "14": { - "start": { - "line": 39, - "column": 2 - }, - "end": { - "line": 51, - "column": 5 - } - }, - "15": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 195 - } - }, - "16": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 50, - "column": 7 - } - }, - "17": { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 15 - } - }, - "18": { - "start": { - "line": 46, - "column": 8 - }, - "end": { - "line": 46, - "column": 15 - } - }, - "19": { - "start": { - "line": 47, - "column": 32 - }, - "end": { - "line": 47, - "column": 115 - } - }, - "20": { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 54 - } - }, - "21": { - "start": { - "line": 49, - "column": 8 - }, - "end": { - "line": 49, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "FormSelect", - "decl": { - "start": { - "line": 18, - "column": 16 - }, - "end": { - "line": 18, - "column": 26 - } - }, - "loc": { - "start": { - "line": 22, - "column": 3 - }, - "end": { - "line": 32, - "column": 1 - } - }, - "line": 22 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 42, - "column": 9 - }, - "end": { - "line": 42, - "column": 10 - } - }, - "loc": { - "start": { - "line": 42, - "column": 29 - }, - "end": { - "line": 51, - "column": 3 - } - }, - "line": 42 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 44, - "column": 27 - }, - "end": { - "line": 44, - "column": 28 - } - }, - "loc": { - "start": { - "line": 44, - "column": 44 - }, - "end": { - "line": 50, - "column": 5 - } - }, - "line": 44 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 36, - "column": 0 - }, - "end": { - "line": 52, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 36, - "column": 0 - }, - "end": { - "line": 52, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 36 - }, - "3": { - "loc": { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 45 - }, - "4": { - "loc": { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 48 - } - }, - "s": { - "0": 66, - "1": 66, - "2": 0, - "3": 66, - "4": 66, - "5": 66, - "6": 66, - "7": 66, - "8": 28, - "9": 66, - "10": 66, - "11": 66, - "12": 66, - "13": 66, - "14": 66, - "15": 66, - "16": 66, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 66, - "1": 28, - "2": 66, - "3": 0 - }, - "b": { - "0": [66, 0], - "1": [0, 66], - "2": [66, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAgBM;AAhBN,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,QAAQC,cAAc;AAC/B,SAASC,yBAAyB;AAO3B,gBAASC,WAAW;AAAA,EACzBC;AAAAA,EACAC;AAAAA,EACA,GAAGC;AAC+B,GAAG;AACrC,SACE,uBAAC,qBAAkB,2BACjB,iCAAC,OAAO,QAAP,EAAc,GAAIA,OAAQD,YAA3B;AAAA;AAAA;AAAA;AAAA,SAAoC,KADtC;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACE,KAVeJ;AAAU;AAAAK", - "names": [ - "Form", - "FormBS", - "FormElementLayout", - "FormSelect", - "withinMultipleFieldsGroup", - "children", - "props", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormSelect.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormSelect.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "4918aa0d0da9e24ba4bb28f3ecc01ab909ec29a7" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormTextArea.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormTextArea.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 171 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 30, - "column": 11 - } - }, - "9": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 32, - "column": 18 - } - }, - "10": { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 34, - "column": 33 - } - }, - "11": { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 51, - "column": 1 - } - }, - "12": { - "start": { - "line": 36, - "column": 2 - }, - "end": { - "line": 36, - "column": 39 - } - }, - "13": { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 37, - "column": 39 - } - }, - "14": { - "start": { - "line": 38, - "column": 2 - }, - "end": { - "line": 50, - "column": 5 - } - }, - "15": { - "start": { - "line": 42, - "column": 4 - }, - "end": { - "line": 42, - "column": 197 - } - }, - "16": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 49, - "column": 7 - } - }, - "17": { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 15 - } - }, - "18": { - "start": { - "line": 45, - "column": 8 - }, - "end": { - "line": 45, - "column": 15 - } - }, - "19": { - "start": { - "line": 46, - "column": 32 - }, - "end": { - "line": 46, - "column": 115 - } - }, - "20": { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 54 - } - }, - "21": { - "start": { - "line": 48, - "column": 8 - }, - "end": { - "line": 48, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "FormTextArea", - "decl": { - "start": { - "line": 18, - "column": 16 - }, - "end": { - "line": 18, - "column": 28 - } - }, - "loc": { - "start": { - "line": 21, - "column": 3 - }, - "end": { - "line": 31, - "column": 1 - } - }, - "line": 21 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 41, - "column": 9 - }, - "end": { - "line": 41, - "column": 10 - } - }, - "loc": { - "start": { - "line": 41, - "column": 29 - }, - "end": { - "line": 50, - "column": 3 - } - }, - "line": 41 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 43, - "column": 27 - }, - "end": { - "line": 43, - "column": 28 - } - }, - "loc": { - "start": { - "line": 43, - "column": 44 - }, - "end": { - "line": 49, - "column": 5 - } - }, - "line": 43 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 51, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 51, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 35 - }, - "3": { - "loc": { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 44 - }, - "4": { - "loc": { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 47 - } - }, - "s": { - "0": 66, - "1": 66, - "2": 0, - "3": 66, - "4": 66, - "5": 66, - "6": 66, - "7": 66, - "8": 18, - "9": 66, - "10": 66, - "11": 66, - "12": 66, - "13": 66, - "14": 66, - "15": 66, - "16": 66, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 66, - "1": 18, - "2": 66, - "3": 0 - }, - "b": { - "0": [66, 0], - "1": [0, 66], - "2": [66, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAYM;AAZN,2BAAuB;AAAQ,IAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAChD,SAASA,yBAAyB;AAQ3B,gBAASC,aAAa;AAAA,EAAEC;AAAAA,EAA2B,GAAGC;AAAyB,GAAG;AACvF,SACE,uBAAC,qBAAkB,2BACjB,iCAAC,OAAO,SAAP,EAAe,IAAG,YAAW,MAAM,GAAG,GAAIA,SAA3C;AAAA;AAAA;AAAA;AAAA,SAAiD,KADnD;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACC,KANeH;AAAY;AAAAI", - "names": [ - "FormElementLayout", - "FormTextArea", - "withinMultipleFieldsGroup", - "props", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormTextArea.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormTextArea.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "7510a66f27be2fe0672ee03ae9e58709d9e46c86" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Row.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Row.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 138 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 9 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 24 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 164 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Row", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 19 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 66, - "1": 66, - "2": 0, - "3": 66, - "4": 66, - "5": 66, - "6": 66, - "7": 66, - "8": 182, - "9": 66, - "10": 66, - "11": 66, - "12": 66, - "13": 66, - "14": 66, - "15": 66, - "16": 66, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 66, - "1": 182, - "2": 66, - "3": 0 - }, - "b": { - "0": [66, 0], - "1": [0, 66], - "2": [66, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAcS;AAdT,2BAA0B;AAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACjC,SAASA,OAAOC,aAAa;AAYtB,gBAASD,IAAI;AAAA,EAAEE;AAAAA,EAAU,GAAGC;AAAgB,GAAG;AACpD,SAAO,uBAAC,SAAM,GAAIA,OAAQD,YAAnB;AAAA;AAAA;AAAA;AAAA,SAA4B;AACrC;AAACE,KAFeJ;AAAG;AAAAK", - "names": ["Row", "RowBS", "children", "props", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Row.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Row.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "0e44cc3c7f6e168ee204b7dff367a60462b3c746" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormCheckbox.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormCheckbox.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 171 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 23, - "column": 2 - }, - "end": { - "line": 27, - "column": 11 - } - }, - "9": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 18 - } - }, - "10": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 31, - "column": 33 - } - }, - "11": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 48, - "column": 1 - } - }, - "12": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 33, - "column": 39 - } - }, - "13": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 34, - "column": 39 - } - }, - "14": { - "start": { - "line": 35, - "column": 2 - }, - "end": { - "line": 47, - "column": 5 - } - }, - "15": { - "start": { - "line": 39, - "column": 4 - }, - "end": { - "line": 39, - "column": 197 - } - }, - "16": { - "start": { - "line": 40, - "column": 4 - }, - "end": { - "line": 46, - "column": 7 - } - }, - "17": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 15 - } - }, - "18": { - "start": { - "line": 42, - "column": 8 - }, - "end": { - "line": 42, - "column": 15 - } - }, - "19": { - "start": { - "line": 43, - "column": 32 - }, - "end": { - "line": 43, - "column": 115 - } - }, - "20": { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 54 - } - }, - "21": { - "start": { - "line": 45, - "column": 8 - }, - "end": { - "line": 45, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "FormCheckbox", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 28 - } - }, - "loc": { - "start": { - "line": 22, - "column": 3 - }, - "end": { - "line": 28, - "column": 1 - } - }, - "line": 22 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 38, - "column": 9 - }, - "end": { - "line": 38, - "column": 10 - } - }, - "loc": { - "start": { - "line": 38, - "column": 29 - }, - "end": { - "line": 47, - "column": 3 - } - }, - "line": 38 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 40, - "column": 27 - }, - "end": { - "line": 40, - "column": 28 - } - }, - "loc": { - "start": { - "line": 40, - "column": 44 - }, - "end": { - "line": 46, - "column": 5 - } - }, - "line": 40 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 48, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 48, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 32 - }, - "3": { - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - }, - "4": { - "loc": { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 44 - } - }, - "s": { - "0": 66, - "1": 66, - "2": 0, - "3": 66, - "4": 66, - "5": 66, - "6": 66, - "7": 66, - "8": 30, - "9": 66, - "10": 66, - "11": 66, - "12": 66, - "13": 66, - "14": 66, - "15": 66, - "16": 66, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 66, - "1": 30, - "2": 66, - "3": 0 - }, - "b": { - "0": [66, 0], - "1": [0, 66], - "2": [66, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAUS;AAVT,2BAAuB;AAAQ,IAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASzC,gBAASA,aAAa;AAAA,EAAEC;AAAAA,EAAOC;AAAAA,EAAMC;AAAAA,EAAI,GAAGC;AAAyB,GAAG;AAC7E,SAAO,uBAAC,OAAO,OAAP,EAAa,OAAc,MAAY,MAAK,YAAW,IAAQ,GAAIA,SAApE;AAAA;AAAA;AAAA;AAAA,SAA0E;AACnF;AAACC,KAFeL;AAAY;AAAAM", - "names": ["FormCheckbox", "label", "name", "id", "props", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormCheckbox.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormCheckbox.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "612c7eb6e36852ef3821cb217ced1aebb59e58bb" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/FormGroup.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/FormGroup.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 155 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 34, - "column": 35 - }, - "end": { - "line": 39, - "column": 4 - } - }, - "9": { - "start": { - "line": 35, - "column": 4 - }, - "end": { - "line": 38, - "column": 7 - } - }, - "10": { - "start": { - "line": 40, - "column": 2 - }, - "end": { - "line": 44, - "column": 11 - } - }, - "11": { - "start": { - "line": 46, - "column": 0 - }, - "end": { - "line": 46, - "column": 15 - } - }, - "12": { - "start": { - "line": 47, - "column": 0 - }, - "end": { - "line": 47, - "column": 28 - } - }, - "13": { - "start": { - "line": 48, - "column": 0 - }, - "end": { - "line": 48, - "column": 28 - } - }, - "14": { - "start": { - "line": 49, - "column": 0 - }, - "end": { - "line": 49, - "column": 30 - } - }, - "15": { - "start": { - "line": 50, - "column": 0 - }, - "end": { - "line": 50, - "column": 34 - } - }, - "16": { - "start": { - "line": 51, - "column": 0 - }, - "end": { - "line": 51, - "column": 26 - } - }, - "17": { - "start": { - "line": 52, - "column": 0 - }, - "end": { - "line": 52, - "column": 34 - } - }, - "18": { - "start": { - "line": 55, - "column": 0 - }, - "end": { - "line": 55, - "column": 30 - } - }, - "19": { - "start": { - "line": 56, - "column": 0 - }, - "end": { - "line": 72, - "column": 1 - } - }, - "20": { - "start": { - "line": 57, - "column": 2 - }, - "end": { - "line": 57, - "column": 39 - } - }, - "21": { - "start": { - "line": 58, - "column": 2 - }, - "end": { - "line": 58, - "column": 39 - } - }, - "22": { - "start": { - "line": 59, - "column": 2 - }, - "end": { - "line": 71, - "column": 5 - } - }, - "23": { - "start": { - "line": 63, - "column": 4 - }, - "end": { - "line": 63, - "column": 181 - } - }, - "24": { - "start": { - "line": 64, - "column": 4 - }, - "end": { - "line": 70, - "column": 7 - } - }, - "25": { - "start": { - "line": 65, - "column": 6 - }, - "end": { - "line": 66, - "column": 15 - } - }, - "26": { - "start": { - "line": 66, - "column": 8 - }, - "end": { - "line": 66, - "column": 15 - } - }, - "27": { - "start": { - "line": 67, - "column": 32 - }, - "end": { - "line": 67, - "column": 115 - } - }, - "28": { - "start": { - "line": 68, - "column": 6 - }, - "end": { - "line": 69, - "column": 54 - } - }, - "29": { - "start": { - "line": 69, - "column": 8 - }, - "end": { - "line": 69, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "FormGroup", - "decl": { - "start": { - "line": 26, - "column": 9 - }, - "end": { - "line": 26, - "column": 18 - } - }, - "loc": { - "start": { - "line": 33, - "column": 3 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "line": 33 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 34, - "column": 64 - }, - "end": { - "line": 34, - "column": 65 - } - }, - "loc": { - "start": { - "line": 34, - "column": 75 - }, - "end": { - "line": 39, - "column": 3 - } - }, - "line": 34 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 62, - "column": 9 - }, - "end": { - "line": 62, - "column": 10 - } - }, - "loc": { - "start": { - "line": 62, - "column": 29 - }, - "end": { - "line": 71, - "column": 3 - } - }, - "line": 62 - }, - "4": { - "name": "(anonymous_4)", - "decl": { - "start": { - "line": 64, - "column": 27 - }, - "end": { - "line": 64, - "column": 28 - } - }, - "loc": { - "start": { - "line": 64, - "column": 44 - }, - "end": { - "line": 70, - "column": 5 - } - }, - "line": 64 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 27, - "column": 2 - }, - "end": { - "line": 27, - "column": 10 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 27, - "column": 7 - }, - "end": { - "line": 27, - "column": 10 - } - } - ], - "line": 27 - }, - "3": { - "loc": { - "start": { - "line": 40, - "column": 59 - }, - "end": { - "line": 40, - "column": 112 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 40, - "column": 72 - }, - "end": { - "line": 40, - "column": 100 - } - }, - { - "start": { - "line": 40, - "column": 103 - }, - "end": { - "line": 40, - "column": 112 - } - } - ], - "line": 40 - }, - "4": { - "loc": { - "start": { - "line": 56, - "column": 0 - }, - "end": { - "line": 72, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 56, - "column": 0 - }, - "end": { - "line": 72, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 56 - }, - "5": { - "loc": { - "start": { - "line": 65, - "column": 6 - }, - "end": { - "line": 66, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 65, - "column": 6 - }, - "end": { - "line": 66, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 65 - }, - "6": { - "loc": { - "start": { - "line": 68, - "column": 6 - }, - "end": { - "line": 69, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 68, - "column": 6 - }, - "end": { - "line": 69, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 68 - } - }, - "s": { - "0": 66, - "1": 66, - "2": 0, - "3": 66, - "4": 66, - "5": 66, - "6": 66, - "7": 66, - "8": 132, - "9": 264, - "10": 132, - "11": 66, - "12": 66, - "13": 66, - "14": 66, - "15": 66, - "16": 66, - "17": 66, - "18": 66, - "19": 66, - "20": 66, - "21": 66, - "22": 66, - "23": 66, - "24": 66, - "25": 0, - "26": 0, - "27": 0, - "28": 0, - "29": 0 - }, - "f": { - "0": 66, - "1": 132, - "2": 264, - "3": 66, - "4": 0 - }, - "b": { - "0": [66, 0], - "1": [0, 66], - "2": [132], - "3": [30, 102], - "4": [66, 0], - "5": [0, 0], - "6": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAkCI;AAlCJ,OAAOA,oBAASC;AAAyB,IAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAChD,SAASC,QAAQC,cAAc;AAC/B,SAASC,iBAAiB;AAC1B,SAASC,iBAAiB;AAC1B,SAASC,gBAAgB;AACzB,SAASC,kBAAkB;AAC3B,SAASC,oBAAoB;AAC7B,SAASC,WAAqB;AAC9B,SAASC,WAAW;AACpB,SAASC,oBAAoB;AAS7B,SAASC,UAAU;AAAA,EACjBC,KAAKH;AAAAA,EACLI;AAAAA,EACAC;AAAAA,EACAC;AAAAA,EACAC;AAAAA,EACA,GAAGC;AAC8B,GAAG;AACpC,QAAMC,2BAA2BnB,MAAMoB,SAASC,IAAIJ,UAA0BK,WAAU;AACtF,WAAOtB,MAAMuB,aAAaD,OAAO;AAAA,MAC/BR;AAAAA,MACAU,2BAA2BX,OAAOJ;AAAAA,IACpC,CAAC;AAAA,EACH,CAAC;AAED,SACE,uBAAC,OAAO,OAAP,EACC,WAAWO,aAAc,GAAED,aAAaC,eAAeD,WACvD,WAAU,QACV,IACA,GAAIG,OACHC,sCALH;AAAA;AAAA;AAAA;AAAA,SAMA;AAEJ;AAACM,KAxBQb;AA0BTA,UAAUc,QAAQrB;AAClBO,UAAUe,QAAQvB;AAClBQ,UAAUgB,SAASrB;AACnBK,UAAUiB,WAAWrB;AACrBI,UAAUkB,OAAOxB;AACjBM,UAAUmB,WAAWpB;AAErB,SAASC;AAAW;AAAAoB", - "names": [ - "React", - "PropsWithChildren", - "Form", - "FormBS", - "FormInput", - "FormLabel", - "FormText", - "FormSelect", - "FormTextArea", - "Col", - "Row", - "FormCheckbox", - "FormGroup", - "as", - "required", - "controlId", - "fieldIndex", - "children", - "props", - "childrenWithRequiredProp", - "Children", - "map", - "child", - "cloneElement", - "withinMultipleFieldsGroup", - "_c", - "Label", - "Input", - "Select", - "TextArea", - "Text", - "Checkbox", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/FormGroup.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/FormGroup.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "ca675c936242c5486837d41d654bdf39865d91d4" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/dynamic-fields-buttons/DynamicFieldsButtons.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/dynamic-fields-buttons/DynamicFieldsButtons.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 205 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 25, - "column": 2 - }, - "end": { - "line": 64, - "column": 11 - } - }, - "9": { - "start": { - "line": 66, - "column": 0 - }, - "end": { - "line": 66, - "column": 26 - } - }, - "10": { - "start": { - "line": 68, - "column": 0 - }, - "end": { - "line": 68, - "column": 41 - } - }, - "11": { - "start": { - "line": 69, - "column": 0 - }, - "end": { - "line": 85, - "column": 1 - } - }, - "12": { - "start": { - "line": 70, - "column": 2 - }, - "end": { - "line": 70, - "column": 39 - } - }, - "13": { - "start": { - "line": 71, - "column": 2 - }, - "end": { - "line": 71, - "column": 39 - } - }, - "14": { - "start": { - "line": 72, - "column": 2 - }, - "end": { - "line": 84, - "column": 5 - } - }, - "15": { - "start": { - "line": 76, - "column": 4 - }, - "end": { - "line": 76, - "column": 231 - } - }, - "16": { - "start": { - "line": 77, - "column": 4 - }, - "end": { - "line": 83, - "column": 7 - } - }, - "17": { - "start": { - "line": 78, - "column": 6 - }, - "end": { - "line": 79, - "column": 15 - } - }, - "18": { - "start": { - "line": 79, - "column": 8 - }, - "end": { - "line": 79, - "column": 15 - } - }, - "19": { - "start": { - "line": 80, - "column": 32 - }, - "end": { - "line": 80, - "column": 115 - } - }, - "20": { - "start": { - "line": 81, - "column": 6 - }, - "end": { - "line": 82, - "column": 54 - } - }, - "21": { - "start": { - "line": 82, - "column": 8 - }, - "end": { - "line": 82, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "DynamicFieldsButtons", - "decl": { - "start": { - "line": 20, - "column": 16 - }, - "end": { - "line": 20, - "column": 36 - } - }, - "loc": { - "start": { - "line": 24, - "column": 3 - }, - "end": { - "line": 65, - "column": 1 - } - }, - "line": 24 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 75, - "column": 9 - }, - "end": { - "line": 75, - "column": 10 - } - }, - "loc": { - "start": { - "line": 75, - "column": 29 - }, - "end": { - "line": 84, - "column": 3 - } - }, - "line": 75 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 77, - "column": 27 - }, - "end": { - "line": 77, - "column": 28 - } - }, - "loc": { - "start": { - "line": 77, - "column": 44 - }, - "end": { - "line": 83, - "column": 5 - } - }, - "line": 77 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 59, - "column": 12 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 18 - } - }, - { - "start": { - "line": 43, - "column": 38 - }, - "end": { - "line": 59, - "column": 12 - } - } - ], - "line": 43 - }, - "3": { - "loc": { - "start": { - "line": 69, - "column": 0 - }, - "end": { - "line": 85, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 69, - "column": 0 - }, - "end": { - "line": 85, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 69 - }, - "4": { - "loc": { - "start": { - "line": 78, - "column": 6 - }, - "end": { - "line": 79, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 78, - "column": 6 - }, - "end": { - "line": 79, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 78 - }, - "5": { - "loc": { - "start": { - "line": 81, - "column": 6 - }, - "end": { - "line": 82, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 81, - "column": 6 - }, - "end": { - "line": 82, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 81 - } - }, - "s": { - "0": 18, - "1": 18, - "2": 0, - "3": 18, - "4": 18, - "5": 18, - "6": 18, - "7": 18, - "8": 16, - "9": 18, - "10": 18, - "11": 18, - "12": 18, - "13": 18, - "14": 18, - "15": 18, - "16": 18, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 18, - "1": 16, - "2": 18, - "3": 0 - }, - "b": { - "0": [18, 0], - "1": [0, 18], - "2": [16, 4], - "3": [18, 0], - "4": [0, 0], - "5": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAsBY;AAtBZ,2BAAuB;AAAA,IAAwB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAC/C,OAAOA,YAAY;AAEnB,SAASC,MAAMC,YAAY;AAC3B,SAASC,sBAAsB;AAQxB,gBAASC,qBAAqB;AAAA,EACnCC;AAAAA,EACAC;AAAAA,EACAC;AACoB,GAAG;AACvB,SACE,uBAAC,SAAI,WAAWP,OAAOQ,WACrB;AAAA,2BAAC,kBAAe,WAAU,OAAM,SAAQ,OACtC,iCAAC,SAAI,WAAWR,OAAO,mBAAmB,GACxC,iCAAC,UAAO,SAAQ,aAAY,SAASM,kBACnC,iCAAC,QAAK,WAAWN,OAAOS,MAAM,OAAM,SAApC;AAAA;AAAA;AAAA;AAAA,WAAyC,KAD3C;AAAA;AAAA;AAAA;AAAA,WAEA,KAHF;AAAA;AAAA;AAAA;AAAA,WAIA,KALF;AAAA;AAAA;AAAA;AAAA,WAMA;AAAA,IACC,CAACJ,iBACA,uBAAC,kBAAe,WAAU,OAAM,SAAQ,UACtC,iCAAC,SAAI,WAAWL,OAAO,mBAAmB,GACxC,iCAAC,UAAO,SAAQ,aAAY,aAAW,MAAC,SAASO,qBAC/C,iCAAC,QAAK,WAAWP,OAAOS,MAAM,OAAM,YAApC;AAAA;AAAA;AAAA;AAAA,WAA4C,KAD9C;AAAA;AAAA;AAAA;AAAA,WAEA,KAHF;AAAA;AAAA;AAAA;AAAA,WAIA,KALF;AAAA;AAAA;AAAA;AAAA,WAMA;AAAA,OAfJ;AAAA;AAAA;AAAA;AAAA,SAiBA;AAEJ;AAACC,KAzBeN;AAAoB;AAAAO", - "names": [ - "styles", - "Dash", - "Plus", - "OverlayTrigger", - "DynamicFieldsButtons", - "originalField", - "onAddButtonClick", - "onRemoveButtonClick", - "container", - "icon", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/dynamic-fields-buttons/DynamicFieldsButtons.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/dynamic-fields-buttons/DynamicFieldsButtons.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "768f4cea3d78d59a047a6b7c8c0b628cdb42dc11" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/useFields.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/useFields.tsx", - "statementMap": { - "0": { - "start": { - "line": 4, - "column": 0 - }, - "end": { - "line": 14, - "column": 1 - } - }, - "1": { - "start": { - "line": 5, - "column": 2 - }, - "end": { - "line": 7, - "column": 3 - } - }, - "2": { - "start": { - "line": 6, - "column": 4 - }, - "end": { - "line": 6, - "column": 165 - } - }, - "3": { - "start": { - "line": 8, - "column": 2 - }, - "end": { - "line": 8, - "column": 39 - } - }, - "4": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "5": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 12, - "column": 4 - } - }, - "6": { - "start": { - "line": 11, - "column": 4 - }, - "end": { - "line": 11, - "column": 171 - } - }, - "7": { - "start": { - "line": 13, - "column": 2 - }, - "end": { - "line": 13, - "column": 75 - } - }, - "8": { - "start": { - "line": 15, - "column": 9 - }, - "end": { - "line": 15, - "column": 23 - } - }, - "9": { - "start": { - "line": 19, - "column": 2 - }, - "end": { - "line": 19, - "column": 71 - } - }, - "10": { - "start": { - "line": 19, - "column": 38 - }, - "end": { - "line": 19, - "column": 69 - } - }, - "11": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 31, - "column": 5 - } - }, - "12": { - "start": { - "line": 23, - "column": 4 - }, - "end": { - "line": 25, - "column": 5 - } - }, - "13": { - "start": { - "line": 24, - "column": 6 - }, - "end": { - "line": 24, - "column": 19 - } - }, - "14": { - "start": { - "line": 26, - "column": 23 - }, - "end": { - "line": 26, - "column": 64 - } - }, - "15": { - "start": { - "line": 27, - "column": 4 - }, - "end": { - "line": 29, - "column": 5 - } - }, - "16": { - "start": { - "line": 28, - "column": 6 - }, - "end": { - "line": 28, - "column": 80 - } - }, - "17": { - "start": { - "line": 30, - "column": 4 - }, - "end": { - "line": 30, - "column": 49 - } - }, - "18": { - "start": { - "line": 34, - "column": 22 - }, - "end": { - "line": 36, - "column": 3 - } - }, - "19": { - "start": { - "line": 35, - "column": 4 - }, - "end": { - "line": 35, - "column": 69 - } - }, - "20": { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 42, - "column": 4 - } - }, - "21": { - "start": { - "line": 45, - "column": 2 - }, - "end": { - "line": 45, - "column": 7 - } - }, - "22": { - "start": { - "line": 46, - "column": 32 - }, - "end": { - "line": 46, - "column": 101 - } - }, - "23": { - "start": { - "line": 47, - "column": 30 - }, - "end": { - "line": 47, - "column": 63 - } - }, - "24": { - "start": { - "line": 48, - "column": 19 - }, - "end": { - "line": 48, - "column": 79 - } - }, - "25": { - "start": { - "line": 48, - "column": 30 - }, - "end": { - "line": 48, - "column": 79 - } - }, - "26": { - "start": { - "line": 49, - "column": 22 - }, - "end": { - "line": 49, - "column": 110 - } - }, - "27": { - "start": { - "line": 49, - "column": 38 - }, - "end": { - "line": 49, - "column": 110 - } - }, - "28": { - "start": { - "line": 49, - "column": 91 - }, - "end": { - "line": 49, - "column": 107 - } - }, - "29": { - "start": { - "line": 50, - "column": 2 - }, - "end": { - "line": 54, - "column": 4 - } - }, - "30": { - "start": { - "line": 56, - "column": 0 - }, - "end": { - "line": 56, - "column": 46 - } - }, - "31": { - "start": { - "line": 57, - "column": 0 - }, - "end": { - "line": 73, - "column": 1 - } - }, - "32": { - "start": { - "line": 58, - "column": 2 - }, - "end": { - "line": 58, - "column": 39 - } - }, - "33": { - "start": { - "line": 59, - "column": 2 - }, - "end": { - "line": 59, - "column": 39 - } - }, - "34": { - "start": { - "line": 60, - "column": 2 - }, - "end": { - "line": 72, - "column": 5 - } - }, - "35": { - "start": { - "line": 64, - "column": 4 - }, - "end": { - "line": 64, - "column": 197 - } - }, - "36": { - "start": { - "line": 65, - "column": 4 - }, - "end": { - "line": 71, - "column": 7 - } - }, - "37": { - "start": { - "line": 66, - "column": 6 - }, - "end": { - "line": 67, - "column": 15 - } - }, - "38": { - "start": { - "line": 67, - "column": 8 - }, - "end": { - "line": 67, - "column": 15 - } - }, - "39": { - "start": { - "line": 68, - "column": 32 - }, - "end": { - "line": 68, - "column": 115 - } - }, - "40": { - "start": { - "line": 69, - "column": 6 - }, - "end": { - "line": 70, - "column": 54 - } - }, - "41": { - "start": { - "line": 70, - "column": 8 - }, - "end": { - "line": 70, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 10, - "column": 24 - }, - "end": { - "line": 10, - "column": 25 - } - }, - "loc": { - "start": { - "line": 10, - "column": 38 - }, - "end": { - "line": 12, - "column": 3 - } - }, - "line": 10 - }, - "1": { - "name": "getFieldsWithIndex", - "decl": { - "start": { - "line": 18, - "column": 9 - }, - "end": { - "line": 18, - "column": 27 - } - }, - "loc": { - "start": { - "line": 18, - "column": 36 - }, - "end": { - "line": 20, - "column": 1 - } - }, - "line": 18 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 19, - "column": 20 - }, - "end": { - "line": 19, - "column": 21 - } - }, - "loc": { - "start": { - "line": 19, - "column": 38 - }, - "end": { - "line": 19, - "column": 69 - } - }, - "line": 19 - }, - "3": { - "name": "getFieldWithIndex", - "decl": { - "start": { - "line": 21, - "column": 9 - }, - "end": { - "line": 21, - "column": 26 - } - }, - "loc": { - "start": { - "line": 21, - "column": 46 - }, - "end": { - "line": 32, - "column": 1 - } - }, - "line": 21 - }, - "4": { - "name": "(anonymous_4)", - "decl": { - "start": { - "line": 22, - "column": 35 - }, - "end": { - "line": 22, - "column": 36 - } - }, - "loc": { - "start": { - "line": 22, - "column": 46 - }, - "end": { - "line": 31, - "column": 3 - } - }, - "line": 22 - }, - "5": { - "name": "getPropsWithFieldIndex", - "decl": { - "start": { - "line": 33, - "column": 9 - }, - "end": { - "line": 33, - "column": 31 - } - }, - "loc": { - "start": { - "line": 33, - "column": 51 - }, - "end": { - "line": 43, - "column": 1 - } - }, - "line": 33 - }, - "6": { - "name": "(anonymous_6)", - "decl": { - "start": { - "line": 34, - "column": 22 - }, - "end": { - "line": 34, - "column": 23 - } - }, - "loc": { - "start": { - "line": 34, - "column": 34 - }, - "end": { - "line": 36, - "column": 3 - } - }, - "line": 34 - }, - "7": { - "name": "useFields", - "decl": { - "start": { - "line": 44, - "column": 16 - }, - "end": { - "line": 44, - "column": 25 - } - }, - "loc": { - "start": { - "line": 44, - "column": 59 - }, - "end": { - "line": 55, - "column": 1 - } - }, - "line": 44 - }, - "8": { - "name": "(anonymous_8)", - "decl": { - "start": { - "line": 48, - "column": 19 - }, - "end": { - "line": 48, - "column": 20 - } - }, - "loc": { - "start": { - "line": 48, - "column": 30 - }, - "end": { - "line": 48, - "column": 79 - } - }, - "line": 48 - }, - "9": { - "name": "(anonymous_9)", - "decl": { - "start": { - "line": 49, - "column": 22 - }, - "end": { - "line": 49, - "column": 23 - } - }, - "loc": { - "start": { - "line": 49, - "column": 38 - }, - "end": { - "line": 49, - "column": 110 - } - }, - "line": 49 - }, - "10": { - "name": "(anonymous_10)", - "decl": { - "start": { - "line": 49, - "column": 81 - }, - "end": { - "line": 49, - "column": 82 - } - }, - "loc": { - "start": { - "line": 49, - "column": 91 - }, - "end": { - "line": 49, - "column": 107 - } - }, - "line": 49 - }, - "11": { - "name": "(anonymous_11)", - "decl": { - "start": { - "line": 63, - "column": 9 - }, - "end": { - "line": 63, - "column": 10 - } - }, - "loc": { - "start": { - "line": 63, - "column": 29 - }, - "end": { - "line": 72, - "column": 3 - } - }, - "line": 63 - }, - "12": { - "name": "(anonymous_12)", - "decl": { - "start": { - "line": 65, - "column": 27 - }, - "end": { - "line": 65, - "column": 28 - } - }, - "loc": { - "start": { - "line": 65, - "column": 44 - }, - "end": { - "line": 71, - "column": 5 - } - }, - "line": 65 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 4, - "column": 0 - }, - "end": { - "line": 14, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 4, - "column": 0 - }, - "end": { - "line": 14, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 4 - }, - "1": { - "loc": { - "start": { - "line": 5, - "column": 2 - }, - "end": { - "line": 7, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 2 - }, - "end": { - "line": 7, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "2": { - "loc": { - "start": { - "line": 23, - "column": 4 - }, - "end": { - "line": 25, - "column": 5 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 23, - "column": 4 - }, - "end": { - "line": 25, - "column": 5 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 23 - }, - "3": { - "loc": { - "start": { - "line": 27, - "column": 4 - }, - "end": { - "line": 29, - "column": 5 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 27, - "column": 4 - }, - "end": { - "line": 29, - "column": 5 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 27 - }, - "4": { - "loc": { - "start": { - "line": 35, - "column": 11 - }, - "end": { - "line": 35, - "column": 68 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 35, - "column": 11 - }, - "end": { - "line": 35, - "column": 39 - } - }, - { - "start": { - "line": 35, - "column": 43 - }, - "end": { - "line": 35, - "column": 68 - } - } - ], - "line": 35 - }, - "5": { - "loc": { - "start": { - "line": 37, - "column": 9 - }, - "end": { - "line": 42, - "column": 3 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 37, - "column": 30 - }, - "end": { - "line": 40, - "column": 3 - } - }, - { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 42, - "column": 3 - } - } - ], - "line": 37 - }, - "6": { - "loc": { - "start": { - "line": 46, - "column": 32 - }, - "end": { - "line": 46, - "column": 101 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 46, - "column": 52 - }, - "end": { - "line": 46, - "column": 86 - } - }, - { - "start": { - "line": 46, - "column": 89 - }, - "end": { - "line": 46, - "column": 101 - } - } - ], - "line": 46 - }, - "7": { - "loc": { - "start": { - "line": 57, - "column": 0 - }, - "end": { - "line": 73, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 57, - "column": 0 - }, - "end": { - "line": 73, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 57 - }, - "8": { - "loc": { - "start": { - "line": 66, - "column": 6 - }, - "end": { - "line": 67, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 66, - "column": 6 - }, - "end": { - "line": 67, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 66 - }, - "9": { - "loc": { - "start": { - "line": 69, - "column": 6 - }, - "end": { - "line": 70, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 69, - "column": 6 - }, - "end": { - "line": 70, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 69 - } - }, - "s": { - "0": 26, - "1": 26, - "2": 0, - "3": 26, - "4": 26, - "5": 26, - "6": 0, - "7": 26, - "8": 26, - "9": 22, - "10": 36, - "11": 216, - "12": 288, - "13": 72, - "14": 216, - "15": 216, - "16": 144, - "17": 216, - "18": 216, - "19": 216, - "20": 216, - "21": 78, - "22": 78, - "23": 78, - "24": 78, - "25": 14, - "26": 78, - "27": 8, - "28": 16, - "29": 78, - "30": 26, - "31": 26, - "32": 26, - "33": 26, - "34": 26, - "35": 26, - "36": 26, - "37": 0, - "38": 0, - "39": 0, - "40": 0, - "41": 0 - }, - "f": { - "0": 0, - "1": 22, - "2": 36, - "3": 216, - "4": 288, - "5": 216, - "6": 216, - "7": 78, - "8": 14, - "9": 8, - "10": 16, - "11": 26, - "12": 0 - }, - "b": { - "0": [26, 0], - "1": [0, 26], - "2": [72, 216], - "3": [144, 72], - "4": [216, 216], - "5": [24, 192], - "6": [36, 42], - "7": [26, 0], - "8": [0, 0], - "9": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": ";;;;;;;;;;;;;;;AAAA,OAAOA,SAAkCC,gBAAgB;AACzD,SAASC,iBAAiB;AAE1B,SAASC,mBAAmBC,QAA0B;AACpD,SAAOA,OAAOC,IAAI,CAACC,OAAOC,UAAUC,kBAAkBF,OAAOC,KAAK,CAAC;AACrE;AAEA,SAASC,kBAAkBF,OAAkBG,YAAoB;AAC/D,SAAOT,MAAMU,SAASL,IAAIC,OAAO,CAACK,UAAqB;AACrD,QAAI,CAACX,MAAMY,eAAeD,KAAK,GAAG;AAChC,aAAOA;AAAAA,IACT;AAGA,UAAME,aAAaC,uBAAuBH,OAAOF,UAAU;AAG3D,QAAIE,MAAMI,MAAMC,UAAU;AAExBH,iBAAWG,WAAWR,kBAAkBG,MAAMI,MAAMC,UAAUP,UAAU;AAAA,IAC1E;AAGA,WAAOT,MAAMiB,aAAaN,OAAOE,UAAU;AAAA,EAC7C,CAAC;AACH;AAEA,SAASC,uBAAuBH,OAAqBF,YAAoB;AACvE,QAAMS,cAAcA,CAACP,WAAqB;AACxC,WAAOX,MAAMY,eAAeD,MAAK,KAAKA,OAAMQ,SAASjB;AAAAA,EACvD;AAGA,SAAOgB,YAAYP,KAAK,IACpB;AAAA,IAAE,GAAGA,MAAMI;AAAAA,IAAON,YAAYA,WAAWW,SAAS;AAAA,EAAE,IACpD;AAAA,IAAE,GAAGT,MAAMI;AAAAA,EAAM;AACvB;AAEO,gBAASM,UAAUC,cAAqCC,mBAA6B;AAAAC;AAC1F,QAAMC,wBAAwBF,oBAC1Bf,kBAAkBc,cAAc,CAAC,IACjCA;AACJ,QAAM,CAAClB,QAAQsB,SAAS,IAAIzB,SAAS,CAACwB,qBAAqB,CAAC;AAE5D,QAAME,WAAWA,CAACrB,UAChBoB,UAAUvB,mBAAmB,CAAC,GAAGC,QAAQE,KAAK,CAAC,CAAC;AAElD,QAAMsB,cAAcA,CAACnB,eACnBiB,UAAUvB,mBAAmBC,OAAOyB,OAAO,CAACC,GAAGC,MAAMA,MAAMtB,UAAU,CAAC,CAAC;AAEzE,SAAO;AAAA,IAAEL;AAAAA,IAAQuB;AAAAA,IAAUC;AAAAA,EAAY;AACzC;AAACJ,GAbeH,WAAS", - "names": [ - "React", - "useState", - "FormGroup", - "getFieldsWithIndex", - "fields", - "map", - "field", - "index", - "getFieldWithIndex", - "fieldIndex", - "Children", - "child", - "isValidElement", - "childProps", - "getPropsWithFieldIndex", - "props", - "children", - "cloneElement", - "isFormGroup", - "type", - "toString", - "useFields", - "initialField", - "withDynamicFields", - "_s", - "initialFieldWithIndex", - "setFields", - "addField", - "removeField", - "filter", - "_", - "i" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/useFields.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/useFields.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "d43bed93692e550ff6a0c714f97c1528834f73d9" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/FormGroupWithMultipleFields.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/FormGroupWithMultipleFields.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 189 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 16, - "column": 9 - }, - "end": { - "line": 16, - "column": 23 - } - }, - "9": { - "start": { - "line": 24, - "column": 14 - }, - "end": { - "line": 46, - "column": 8 - } - }, - "10": { - "start": { - "line": 28, - "column": 22 - }, - "end": { - "line": 46, - "column": 8 - } - }, - "11": { - "start": { - "line": 47, - "column": 0 - }, - "end": { - "line": 47, - "column": 11 - } - }, - "12": { - "start": { - "line": 55, - "column": 2 - }, - "end": { - "line": 55, - "column": 7 - } - }, - "13": { - "start": { - "line": 60, - "column": 6 - }, - "end": { - "line": 60, - "column": 44 - } - }, - "14": { - "start": { - "line": 61, - "column": 2 - }, - "end": { - "line": 96, - "column": 11 - } - }, - "15": { - "start": { - "line": 62, - "column": 25 - }, - "end": { - "line": 62, - "column": 35 - } - }, - "16": { - "start": { - "line": 63, - "column": 4 - }, - "end": { - "line": 91, - "column": 13 - } - }, - "17": { - "start": { - "line": 78, - "column": 174 - }, - "end": { - "line": 78, - "column": 189 - } - }, - "18": { - "start": { - "line": 78, - "column": 218 - }, - "end": { - "line": 78, - "column": 236 - } - }, - "19": { - "start": { - "line": 98, - "column": 0 - }, - "end": { - "line": 100, - "column": 3 - } - }, - "20": { - "start": { - "line": 99, - "column": 2 - }, - "end": { - "line": 99, - "column": 21 - } - }, - "21": { - "start": { - "line": 101, - "column": 0 - }, - "end": { - "line": 101, - "column": 34 - } - }, - "22": { - "start": { - "line": 103, - "column": 0 - }, - "end": { - "line": 103, - "column": 26 - } - }, - "23": { - "start": { - "line": 104, - "column": 0 - }, - "end": { - "line": 104, - "column": 49 - } - }, - "24": { - "start": { - "line": 105, - "column": 0 - }, - "end": { - "line": 121, - "column": 1 - } - }, - "25": { - "start": { - "line": 106, - "column": 2 - }, - "end": { - "line": 106, - "column": 39 - } - }, - "26": { - "start": { - "line": 107, - "column": 2 - }, - "end": { - "line": 107, - "column": 39 - } - }, - "27": { - "start": { - "line": 108, - "column": 2 - }, - "end": { - "line": 120, - "column": 5 - } - }, - "28": { - "start": { - "line": 112, - "column": 4 - }, - "end": { - "line": 112, - "column": 215 - } - }, - "29": { - "start": { - "line": 113, - "column": 4 - }, - "end": { - "line": 119, - "column": 7 - } - }, - "30": { - "start": { - "line": 114, - "column": 6 - }, - "end": { - "line": 115, - "column": 15 - } - }, - "31": { - "start": { - "line": 115, - "column": 8 - }, - "end": { - "line": 115, - "column": 15 - } - }, - "32": { - "start": { - "line": 116, - "column": 32 - }, - "end": { - "line": 116, - "column": 115 - } - }, - "33": { - "start": { - "line": 117, - "column": 6 - }, - "end": { - "line": 118, - "column": 54 - } - }, - "34": { - "start": { - "line": 118, - "column": 8 - }, - "end": { - "line": 118, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "(anonymous_1)", - "decl": { - "start": { - "line": 24, - "column": 14 - }, - "end": { - "line": 24, - "column": 15 - } - }, - "loc": { - "start": { - "line": 28, - "column": 22 - }, - "end": { - "line": 46, - "column": 8 - } - }, - "line": 28 - }, - "2": { - "name": "FormGroupWithMultipleFields", - "decl": { - "start": { - "line": 48, - "column": 16 - }, - "end": { - "line": 48, - "column": 43 - } - }, - "loc": { - "start": { - "line": 54, - "column": 3 - }, - "end": { - "line": 97, - "column": 1 - } - }, - "line": 54 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 61, - "column": 65 - }, - "end": { - "line": 61, - "column": 66 - } - }, - "loc": { - "start": { - "line": 61, - "column": 83 - }, - "end": { - "line": 92, - "column": 3 - } - }, - "line": 61 - }, - "4": { - "name": "(anonymous_4)", - "decl": { - "start": { - "line": 78, - "column": 168 - }, - "end": { - "line": 78, - "column": 169 - } - }, - "loc": { - "start": { - "line": 78, - "column": 174 - }, - "end": { - "line": 78, - "column": 189 - } - }, - "line": 78 - }, - "5": { - "name": "(anonymous_5)", - "decl": { - "start": { - "line": 78, - "column": 212 - }, - "end": { - "line": 78, - "column": 213 - } - }, - "loc": { - "start": { - "line": 78, - "column": 218 - }, - "end": { - "line": 78, - "column": 236 - } - }, - "line": 78 - }, - "6": { - "name": "(anonymous_6)", - "decl": { - "start": { - "line": 98, - "column": 71 - }, - "end": { - "line": 98, - "column": 72 - } - }, - "loc": { - "start": { - "line": 98, - "column": 82 - }, - "end": { - "line": 100, - "column": 1 - } - }, - "line": 98 - }, - "7": { - "name": "(anonymous_7)", - "decl": { - "start": { - "line": 111, - "column": 9 - }, - "end": { - "line": 111, - "column": 10 - } - }, - "loc": { - "start": { - "line": 111, - "column": 29 - }, - "end": { - "line": 120, - "column": 3 - } - }, - "line": 111 - }, - "8": { - "name": "(anonymous_8)", - "decl": { - "start": { - "line": 113, - "column": 27 - }, - "end": { - "line": 113, - "column": 28 - } - }, - "loc": { - "start": { - "line": 113, - "column": 44 - }, - "end": { - "line": 119, - "column": 5 - } - }, - "line": 113 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 35, - "column": 10 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 10 - } - }, - { - "start": { - "line": 31, - "column": 30 - }, - "end": { - "line": 35, - "column": 10 - } - } - ], - "line": 31 - }, - "3": { - "loc": { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 41, - "column": 10 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 37, - "column": 9 - } - }, - { - "start": { - "line": 37, - "column": 29 - }, - "end": { - "line": 41, - "column": 10 - } - } - ], - "line": 37 - }, - "4": { - "loc": { - "start": { - "line": 64, - "column": 53 - }, - "end": { - "line": 68, - "column": 14 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 64, - "column": 53 - }, - "end": { - "line": 64, - "column": 65 - } - }, - { - "start": { - "line": 64, - "column": 85 - }, - "end": { - "line": 68, - "column": 14 - } - } - ], - "line": 64 - }, - "5": { - "loc": { - "start": { - "line": 78, - "column": 53 - }, - "end": { - "line": 82, - "column": 14 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 78, - "column": 53 - }, - "end": { - "line": 78, - "column": 70 - } - }, - { - "start": { - "line": 78, - "column": 90 - }, - "end": { - "line": 82, - "column": 14 - } - } - ], - "line": 78 - }, - "6": { - "loc": { - "start": { - "line": 105, - "column": 0 - }, - "end": { - "line": 121, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 105, - "column": 0 - }, - "end": { - "line": 121, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 105 - }, - "7": { - "loc": { - "start": { - "line": 114, - "column": 6 - }, - "end": { - "line": 115, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 114, - "column": 6 - }, - "end": { - "line": 115, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 114 - }, - "8": { - "loc": { - "start": { - "line": 117, - "column": 6 - }, - "end": { - "line": 118, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 117, - "column": 6 - }, - "end": { - "line": 118, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 117 - } - }, - "s": { - "0": 18, - "1": 18, - "2": 0, - "3": 18, - "4": 18, - "5": 18, - "6": 36, - "7": 18, - "8": 18, - "9": 18, - "10": 46, - "11": 18, - "12": 46, - "13": 46, - "14": 46, - "15": 50, - "16": 50, - "17": 4, - "18": 4, - "19": 18, - "20": 16, - "21": 18, - "22": 18, - "23": 18, - "24": 18, - "25": 18, - "26": 18, - "27": 18, - "28": 18, - "29": 18, - "30": 0, - "31": 0, - "32": 0, - "33": 0, - "34": 0 - }, - "f": { - "0": 36, - "1": 46, - "2": 46, - "3": 50, - "4": 4, - "5": 4, - "6": 16, - "7": 18, - "8": 0 - }, - "b": { - "0": [18, 0], - "1": [0, 18], - "2": [46, 10], - "3": [46, 0], - "4": [50, 46], - "5": [50, 16], - "6": [18, 0], - "7": [0, 0], - "8": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAkByB,SAerB,UAfqB;;;;;;;;;;;;;;;;AAlBzB,SAASA,WAAW;AACpB,SAASC,WAAW;AAEpB,OAAOC,YAAY;AACnB,SAASC,2BAA2B;AACpC,SAASC,4BAA4B;AACrC,SAASC,iBAAiB;AAC1B,SAASC,eAAe;AASxB,MAAMC,QAAQA,CAAC;AAAA,EAAEC;AAAAA,EAAOC;AAAAA,EAAUC;AAAmD,MACnF,uBAAC,UAAK,WAAWR,OAAOM,OACrBA;AAAAA;AAAAA,EAAM;AAAA,EAAEC,YAAY,uBAAC,yBAAD;AAAA;AAAA;AAAA;AAAA,SAAoB;AAAA,EAAK;AAAA,EAC7CC,WAAW,uBAAC,WAAQ,WAAU,SAAQ,WAA3B;AAAA;AAAA;AAAA;AAAA,SAA6C;AAAA,KAF3D;AAAA;AAAA;AAAA;AAAA,OAGA;AACDC,KALKJ;AAOC,gBAASK,4BAA4B;AAAA,EAC1CJ;AAAAA,EACAK;AAAAA,EACAJ;AAAAA,EACAC;AAAAA,EACAI;AACmD,GAAG;AAAAC;AACtD,QAAM;AAAA,IAAEC;AAAAA,IAAQC;AAAAA,IAAUC;AAAAA,EAAY,IAAIb,UAAUS,UAAUD,iBAAiB;AAE/E,SACE,mCACGG,iBAAOG,IAAI,CAACC,OAAOC,UAAU;AAC5B,UAAMC,eAAeD,SAAS;AAE9B,WACE,uBAAC,OACC;AAAA,6BAAC,OAAI,IAAI,GACNC,0BAAgB,uBAAC,SAAM,OAAc,UAAoB,WAAzC;AAAA;AAAA;AAAA;AAAA,aAA0D,KAD7E;AAAA;AAAA;AAAA;AAAA,aAEA;AAAA,MACA,uBAAC,OAAI,IAAI,GAAIF,mBAAb;AAAA;AAAA;AAAA;AAAA,aAAmB;AAAA,MACnB,uBAAC,OAAI,IAAI,GACNP,+BACC,uBAAC,wBACC,eAAeS,cACf,kBAAkB,MAAML,SAASG,KAAK,GACtC,qBAAqB,MAAMF,YAAYG,KAAK,KAH9C;AAAA;AAAA;AAAA;AAAA,aAGgD,KALpD;AAAA;AAAA;AAAA;AAAA,aAQA;AAAA,SAbQA,OAAV;AAAA;AAAA;AAAA;AAAA,WAcA;AAAA,EAEJ,CAAC,KArBH;AAAA;AAAA;AAAA;AAAA,SAsBA;AAEJ;AAACN,GAlCeH,6BAA2B;AAAA,UAOCP,SAAS;AAAA;AAAAkB,MAPrCX;AAA2B;AAAAY;AAAAA", - "names": [ - "Row", - "Col", - "styles", - "RequiredInputSymbol", - "DynamicFieldsButtons", - "useFields", - "Tooltip", - "Title", - "title", - "required", - "message", - "_c", - "FormGroupWithMultipleFields", - "withDynamicFields", - "children", - "_s", - "fields", - "addField", - "removeField", - "map", - "field", - "index", - "isFirstField", - "_c2", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/FormGroupWithMultipleFields.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/FormGroupWithMultipleFields.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "c1f97da1c1953b0f4109fa796945363e9e3d4800" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/Form.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/Form.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 139 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 24, - "column": 2 - }, - "end": { - "line": 28, - "column": 11 - } - }, - "9": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 30, - "column": 10 - } - }, - "10": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 31, - "column": 23 - } - }, - "11": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 32, - "column": 59 - } - }, - "12": { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 35, - "column": 25 - } - }, - "13": { - "start": { - "line": 36, - "column": 0 - }, - "end": { - "line": 52, - "column": 1 - } - }, - "14": { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 37, - "column": 39 - } - }, - "15": { - "start": { - "line": 38, - "column": 2 - }, - "end": { - "line": 38, - "column": 39 - } - }, - "16": { - "start": { - "line": 39, - "column": 2 - }, - "end": { - "line": 51, - "column": 5 - } - }, - "17": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 165 - } - }, - "18": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 50, - "column": 7 - } - }, - "19": { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 15 - } - }, - "20": { - "start": { - "line": 46, - "column": 8 - }, - "end": { - "line": 46, - "column": 15 - } - }, - "21": { - "start": { - "line": 47, - "column": 32 - }, - "end": { - "line": 47, - "column": 115 - } - }, - "22": { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 54 - } - }, - "23": { - "start": { - "line": 49, - "column": 8 - }, - "end": { - "line": 49, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Form", - "decl": { - "start": { - "line": 19, - "column": 9 - }, - "end": { - "line": 19, - "column": 13 - } - }, - "loc": { - "start": { - "line": 23, - "column": 3 - }, - "end": { - "line": 29, - "column": 1 - } - }, - "line": 23 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 42, - "column": 9 - }, - "end": { - "line": 42, - "column": 10 - } - }, - "loc": { - "start": { - "line": 42, - "column": 29 - }, - "end": { - "line": 51, - "column": 3 - } - }, - "line": 42 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 44, - "column": 27 - }, - "end": { - "line": 44, - "column": 28 - } - }, - "loc": { - "start": { - "line": 44, - "column": 44 - }, - "end": { - "line": 50, - "column": 5 - } - }, - "line": 44 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 36, - "column": 0 - }, - "end": { - "line": 52, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 36, - "column": 0 - }, - "end": { - "line": 52, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 36 - }, - "3": { - "loc": { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 45 - }, - "4": { - "loc": { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 48 - } - }, - "s": { - "0": 2, - "1": 2, - "2": 0, - "3": 2, - "4": 2, - "5": 2, - "6": 2, - "7": 2, - "8": 2, - "9": 2, - "10": 2, - "11": 2, - "12": 2, - "13": 2, - "14": 2, - "15": 2, - "16": 2, - "17": 2, - "18": 2, - "19": 0, - "20": 0, - "21": 0, - "22": 0, - "23": 0 - }, - "f": { - "0": 2, - "1": 2, - "2": 2, - "3": 0 - }, - "b": { - "0": [2, 0], - "1": [0, 2], - "2": [2, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAYI;AAZJ,2BAAoBA;AAAyB;AAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACpD,SAASC,iBAAiB;AAC1B,SAASC,QAAQC,cAAc;AAC/B,SAASC,mCAAmC;AAO5C,SAASF,KAAK;AAAA,EAAEG;AAAAA,EAAWC;AAAAA,EAAUC;AAAuC,GAAG;AAC7E,SACE,uBAAC,UAAO,WAAsB,UAC3BA,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACC,KANQN;AAQTA,KAAKO,QAAQR;AACbC,KAAKQ,0BAA0BN;AAE/B,SAASF;AAAM;AAAAS", - "names": [ - "PropsWithChildren", - "FormGroup", - "Form", - "FormBS", - "FormGroupWithMultipleFields", - "validated", - "onSubmit", - "children", - "_c", - "Group", - "GroupWithMultipleFields", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/Form.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/Form.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "fa496c3beb610da03a008791d93ee60f226df793" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalHeader.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalHeader.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 147 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 20, - "column": 2 - }, - "end": { - "line": 24, - "column": 11 - } - }, - "9": { - "start": { - "line": 26, - "column": 0 - }, - "end": { - "line": 26, - "column": 17 - } - }, - "10": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 32 - } - }, - "11": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "12": { - "start": { - "line": 30, - "column": 2 - }, - "end": { - "line": 30, - "column": 39 - } - }, - "13": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "14": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "15": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 173 - } - }, - "16": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 43, - "column": 7 - } - }, - "17": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "18": { - "start": { - "line": 39, - "column": 8 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "19": { - "start": { - "line": 40, - "column": 32 - }, - "end": { - "line": 40, - "column": 115 - } - }, - "20": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "21": { - "start": { - "line": 42, - "column": 8 - }, - "end": { - "line": 42, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "ModalHeader", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 27 - } - }, - "loc": { - "start": { - "line": 19, - "column": 3 - }, - "end": { - "line": 25, - "column": 1 - } - }, - "line": 19 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 35, - "column": 9 - }, - "end": { - "line": 35, - "column": 10 - } - }, - "loc": { - "start": { - "line": 35, - "column": 29 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "line": 35 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 37, - "column": 27 - }, - "end": { - "line": 37, - "column": 28 - } - }, - "loc": { - "start": { - "line": 37, - "column": 44 - }, - "end": { - "line": 43, - "column": 5 - } - }, - "line": 37 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 29 - }, - "3": { - "loc": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 38 - }, - "4": { - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 18, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 8, - "1": 18, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAIS;AAJT,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,aAAa;AAEf,gBAASC,YAAY;AAAA,EAAEC;AAA4B,GAAG;AAC3D,SAAO,uBAAC,MAAM,QAAN,EAAa,aAAW,MAAEA,YAA3B;AAAA;AAAA;AAAA;AAAA,SAAoC;AAC7C;AAACC,KAFeF;AAAW;AAAAG", - "names": ["Modal", "ModalHeader", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalHeader.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalHeader.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "620fa8d2f4b5be1cfff389a838f0a7a83d57da9a" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalTitle.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalTitle.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 146 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 20, - "column": 2 - }, - "end": { - "line": 24, - "column": 11 - } - }, - "9": { - "start": { - "line": 26, - "column": 0 - }, - "end": { - "line": 26, - "column": 16 - } - }, - "10": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 31 - } - }, - "11": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "12": { - "start": { - "line": 30, - "column": 2 - }, - "end": { - "line": 30, - "column": 39 - } - }, - "13": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "14": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "15": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 172 - } - }, - "16": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 43, - "column": 7 - } - }, - "17": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "18": { - "start": { - "line": 39, - "column": 8 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "19": { - "start": { - "line": 40, - "column": 32 - }, - "end": { - "line": 40, - "column": 115 - } - }, - "20": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "21": { - "start": { - "line": 42, - "column": 8 - }, - "end": { - "line": 42, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "ModalTitle", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 26 - } - }, - "loc": { - "start": { - "line": 19, - "column": 3 - }, - "end": { - "line": 25, - "column": 1 - } - }, - "line": 19 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 35, - "column": 9 - }, - "end": { - "line": 35, - "column": 10 - } - }, - "loc": { - "start": { - "line": 35, - "column": 29 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "line": 35 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 37, - "column": 27 - }, - "end": { - "line": 37, - "column": 28 - } - }, - "loc": { - "start": { - "line": 37, - "column": 44 - }, - "end": { - "line": 43, - "column": 5 - } - }, - "line": 37 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 29 - }, - "3": { - "loc": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 38 - }, - "4": { - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 18, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 8, - "1": 18, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAIS;AAJT,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,aAAa;AAEf,gBAASC,WAAW;AAAA,EAAEC;AAA4B,GAAG;AAC1D,SAAO,uBAAC,MAAM,OAAN,EAAaA,YAAd;AAAA;AAAA;AAAA;AAAA,SAAuB;AAChC;AAACC,KAFeF;AAAU;AAAAG", - "names": ["Modal", "ModalTitle", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalTitle.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalTitle.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "9e80a1c87b30e9f5f45b524016c4cb44f65accab" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalBody.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalBody.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 145 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 20, - "column": 2 - }, - "end": { - "line": 24, - "column": 11 - } - }, - "9": { - "start": { - "line": 26, - "column": 0 - }, - "end": { - "line": 26, - "column": 15 - } - }, - "10": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 30 - } - }, - "11": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "12": { - "start": { - "line": 30, - "column": 2 - }, - "end": { - "line": 30, - "column": 39 - } - }, - "13": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "14": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "15": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 171 - } - }, - "16": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 43, - "column": 7 - } - }, - "17": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "18": { - "start": { - "line": 39, - "column": 8 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "19": { - "start": { - "line": 40, - "column": 32 - }, - "end": { - "line": 40, - "column": 115 - } - }, - "20": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "21": { - "start": { - "line": 42, - "column": 8 - }, - "end": { - "line": 42, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "ModalBody", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 25 - } - }, - "loc": { - "start": { - "line": 19, - "column": 3 - }, - "end": { - "line": 25, - "column": 1 - } - }, - "line": 19 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 35, - "column": 9 - }, - "end": { - "line": 35, - "column": 10 - } - }, - "loc": { - "start": { - "line": 35, - "column": 29 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "line": 35 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 37, - "column": 27 - }, - "end": { - "line": 37, - "column": 28 - } - }, - "loc": { - "start": { - "line": 37, - "column": 44 - }, - "end": { - "line": 43, - "column": 5 - } - }, - "line": 37 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 29 - }, - "3": { - "loc": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 38 - }, - "4": { - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 18, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 8, - "1": 18, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAIS;AAJT,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,aAAa;AAEf,gBAASC,UAAU;AAAA,EAAEC;AAA4B,GAAG;AACzD,SAAO,uBAAC,MAAM,MAAN,EAAYA,YAAb;AAAA;AAAA;AAAA;AAAA,SAAsB;AAC/B;AAACC,KAFeF;AAAS;AAAAG", - "names": ["Modal", "ModalBody", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalBody.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalBody.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "78fd60523247d71855e9717d2674b0e0d5499d1b" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalFooter.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalFooter.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 147 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 20, - "column": 2 - }, - "end": { - "line": 24, - "column": 11 - } - }, - "9": { - "start": { - "line": 26, - "column": 0 - }, - "end": { - "line": 26, - "column": 17 - } - }, - "10": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 32 - } - }, - "11": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "12": { - "start": { - "line": 30, - "column": 2 - }, - "end": { - "line": 30, - "column": 39 - } - }, - "13": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "14": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "15": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 173 - } - }, - "16": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 43, - "column": 7 - } - }, - "17": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "18": { - "start": { - "line": 39, - "column": 8 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "19": { - "start": { - "line": 40, - "column": 32 - }, - "end": { - "line": 40, - "column": 115 - } - }, - "20": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "21": { - "start": { - "line": 42, - "column": 8 - }, - "end": { - "line": 42, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "ModalFooter", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 27 - } - }, - "loc": { - "start": { - "line": 19, - "column": 3 - }, - "end": { - "line": 25, - "column": 1 - } - }, - "line": 19 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 35, - "column": 9 - }, - "end": { - "line": 35, - "column": 10 - } - }, - "loc": { - "start": { - "line": 35, - "column": 29 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "line": 35 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 37, - "column": 27 - }, - "end": { - "line": 37, - "column": 28 - } - }, - "loc": { - "start": { - "line": 37, - "column": 44 - }, - "end": { - "line": 43, - "column": 5 - } - }, - "line": 37 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 29 - }, - "3": { - "loc": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 38 - }, - "4": { - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 8, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 8, - "1": 8, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAIS;AAJT,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,aAAa;AAEf,gBAASC,YAAY;AAAA,EAAEC;AAA4B,GAAG;AAC3D,SAAO,uBAAC,MAAM,QAAN,EAAcA,YAAf;AAAA;AAAA;AAAA;AAAA,SAAwB;AACjC;AAACC,KAFeF;AAAW;AAAAG", - "names": ["Modal", "ModalFooter", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalFooter.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalFooter.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "56657e8053e4b875b20d15e7659bba062b9d1390" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/Modal.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/Modal.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 141 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 27, - "column": 2 - }, - "end": { - "line": 31, - "column": 11 - } - }, - "9": { - "start": { - "line": 33, - "column": 0 - }, - "end": { - "line": 33, - "column": 11 - } - }, - "10": { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 34, - "column": 27 - } - }, - "11": { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 35, - "column": 25 - } - }, - "12": { - "start": { - "line": 36, - "column": 0 - }, - "end": { - "line": 36, - "column": 23 - } - }, - "13": { - "start": { - "line": 37, - "column": 0 - }, - "end": { - "line": 37, - "column": 27 - } - }, - "14": { - "start": { - "line": 40, - "column": 0 - }, - "end": { - "line": 40, - "column": 26 - } - }, - "15": { - "start": { - "line": 41, - "column": 0 - }, - "end": { - "line": 57, - "column": 1 - } - }, - "16": { - "start": { - "line": 42, - "column": 2 - }, - "end": { - "line": 42, - "column": 39 - } - }, - "17": { - "start": { - "line": 43, - "column": 2 - }, - "end": { - "line": 43, - "column": 39 - } - }, - "18": { - "start": { - "line": 44, - "column": 2 - }, - "end": { - "line": 56, - "column": 5 - } - }, - "19": { - "start": { - "line": 48, - "column": 4 - }, - "end": { - "line": 48, - "column": 167 - } - }, - "20": { - "start": { - "line": 49, - "column": 4 - }, - "end": { - "line": 55, - "column": 7 - } - }, - "21": { - "start": { - "line": 50, - "column": 6 - }, - "end": { - "line": 51, - "column": 15 - } - }, - "22": { - "start": { - "line": 51, - "column": 8 - }, - "end": { - "line": 51, - "column": 15 - } - }, - "23": { - "start": { - "line": 52, - "column": 32 - }, - "end": { - "line": 52, - "column": 115 - } - }, - "24": { - "start": { - "line": 53, - "column": 6 - }, - "end": { - "line": 54, - "column": 54 - } - }, - "25": { - "start": { - "line": 54, - "column": 8 - }, - "end": { - "line": 54, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Modal", - "decl": { - "start": { - "line": 21, - "column": 9 - }, - "end": { - "line": 21, - "column": 14 - } - }, - "loc": { - "start": { - "line": 26, - "column": 3 - }, - "end": { - "line": 32, - "column": 1 - } - }, - "line": 26 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 47, - "column": 9 - }, - "end": { - "line": 47, - "column": 10 - } - }, - "loc": { - "start": { - "line": 47, - "column": 29 - }, - "end": { - "line": 56, - "column": 3 - } - }, - "line": 47 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 49, - "column": 27 - }, - "end": { - "line": 49, - "column": 28 - } - }, - "loc": { - "start": { - "line": 49, - "column": 44 - }, - "end": { - "line": 55, - "column": 5 - } - }, - "line": 49 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 41, - "column": 0 - }, - "end": { - "line": 57, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 0 - }, - "end": { - "line": 57, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - }, - "3": { - "loc": { - "start": { - "line": 50, - "column": 6 - }, - "end": { - "line": 51, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 50, - "column": 6 - }, - "end": { - "line": 51, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 50 - }, - "4": { - "loc": { - "start": { - "line": 53, - "column": 6 - }, - "end": { - "line": 54, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 53, - "column": 6 - }, - "end": { - "line": 54, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 53 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 18, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 8, - "18": 8, - "19": 8, - "20": 8, - "21": 0, - "22": 0, - "23": 0, - "24": 0, - "25": 0 - }, - "f": { - "0": 8, - "1": 18, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAeI;AAfJ,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,SAASC,eAAe;AACjC,SAASC,mBAAmB;AAC5B,SAASC,kBAAkB;AAC3B,SAASC,iBAAiB;AAC1B,SAASC,mBAAmB;AAQ5B,SAASL,MAAM;AAAA,EAAEM;AAAAA,EAAMC;AAAAA,EAAQC;AAAAA,EAAMC;AAAwC,GAAG;AAC9E,SACE,uBAAC,WAAQ,MAAY,QAAgB,MAClCA,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACC,KANQV;AAQTA,MAAMW,SAAST;AACfF,MAAMY,QAAQT;AACdH,MAAMa,OAAOT;AACbJ,MAAMc,SAAST;AAEf,SAASL;AAAO;AAAAe", - "names": [ - "Modal", - "BSModal", - "ModalHeader", - "ModalTitle", - "ModalBody", - "ModalFooter", - "show", - "onHide", - "size", - "children", - "_c", - "Header", - "Title", - "Body", - "Footer", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/Modal.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/Modal.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "adf9c4b59b94fe83bf019215e2ab9cbe7126ea54" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/navbar-dropdown/NavbarDropdownItem.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/navbar-dropdown/NavbarDropdownItem.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 171 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 26, - "column": 11 - } - }, - "9": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 24 - } - }, - "10": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 30, - "column": 39 - } - }, - "11": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "12": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "13": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 33, - "column": 39 - } - }, - "14": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 46, - "column": 5 - } - }, - "15": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 38, - "column": 197 - } - }, - "16": { - "start": { - "line": 39, - "column": 4 - }, - "end": { - "line": 45, - "column": 7 - } - }, - "17": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "18": { - "start": { - "line": 41, - "column": 8 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "19": { - "start": { - "line": 42, - "column": 32 - }, - "end": { - "line": 42, - "column": 115 - } - }, - "20": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - "21": { - "start": { - "line": 44, - "column": 8 - }, - "end": { - "line": 44, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "NavbarDropdownItem", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 34 - } - }, - "loc": { - "start": { - "line": 21, - "column": 3 - }, - "end": { - "line": 27, - "column": 1 - } - }, - "line": 21 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 37, - "column": 9 - }, - "end": { - "line": 37, - "column": 10 - } - }, - "loc": { - "start": { - "line": 37, - "column": 29 - }, - "end": { - "line": 46, - "column": 3 - } - }, - "line": 37 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 39, - "column": 27 - }, - "end": { - "line": 39, - "column": 28 - } - }, - "loc": { - "start": { - "line": 39, - "column": 44 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "line": 39 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 31 - }, - "3": { - "loc": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 40 - }, - "4": { - "loc": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 43 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 8, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 8, - "1": 8, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAcI;AAdJ,2BAAoB;AAAyB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQtC,gBAASA,mBAAmB;AAAA,EACjCC;AAAAA,EACAC;AAAAA,EACAC;AAC0C,GAAG;AAC7C,SACE,uBAAC,YAAY,MAAZ,EAAiB,MAAY,SAC3BA,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACC,KAVeJ;AAAkB;AAAAK", - "names": ["NavbarDropdownItem", "href", "onClick", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/navbar-dropdown/NavbarDropdownItem.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/navbar-dropdown/NavbarDropdownItem.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "5a85c0c32b6046d19ab0bbcfa4461031cc5f832b" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/navbar-dropdown/NavbarDropdown.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/navbar-dropdown/NavbarDropdown.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 167 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 23, - "column": 2 - }, - "end": { - "line": 27, - "column": 11 - } - }, - "9": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 20 - } - }, - "10": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 30, - "column": 41 - } - }, - "11": { - "start": { - "line": 33, - "column": 0 - }, - "end": { - "line": 33, - "column": 35 - } - }, - "12": { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 50, - "column": 1 - } - }, - "13": { - "start": { - "line": 35, - "column": 2 - }, - "end": { - "line": 35, - "column": 39 - } - }, - "14": { - "start": { - "line": 36, - "column": 2 - }, - "end": { - "line": 36, - "column": 39 - } - }, - "15": { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 49, - "column": 5 - } - }, - "16": { - "start": { - "line": 41, - "column": 4 - }, - "end": { - "line": 41, - "column": 193 - } - }, - "17": { - "start": { - "line": 42, - "column": 4 - }, - "end": { - "line": 48, - "column": 7 - } - }, - "18": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 15 - } - }, - "19": { - "start": { - "line": 44, - "column": 8 - }, - "end": { - "line": 44, - "column": 15 - } - }, - "20": { - "start": { - "line": 45, - "column": 32 - }, - "end": { - "line": 45, - "column": 115 - } - }, - "21": { - "start": { - "line": 46, - "column": 6 - }, - "end": { - "line": 47, - "column": 54 - } - }, - "22": { - "start": { - "line": 47, - "column": 8 - }, - "end": { - "line": 47, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "NavbarDropdown", - "decl": { - "start": { - "line": 18, - "column": 9 - }, - "end": { - "line": 18, - "column": 23 - } - }, - "loc": { - "start": { - "line": 22, - "column": 3 - }, - "end": { - "line": 28, - "column": 1 - } - }, - "line": 22 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 40, - "column": 9 - }, - "end": { - "line": 40, - "column": 10 - } - }, - "loc": { - "start": { - "line": 40, - "column": 29 - }, - "end": { - "line": 49, - "column": 3 - } - }, - "line": 40 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 42, - "column": 27 - }, - "end": { - "line": 42, - "column": 28 - } - }, - "loc": { - "start": { - "line": 42, - "column": 44 - }, - "end": { - "line": 48, - "column": 5 - } - }, - "line": 42 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 50, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 50, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 34 - }, - "3": { - "loc": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 43 - }, - "4": { - "loc": { - "start": { - "line": 46, - "column": 6 - }, - "end": { - "line": 47, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 46, - "column": 6 - }, - "end": { - "line": 47, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 46 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 10, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 8, - "18": 0, - "19": 0, - "20": 0, - "21": 0, - "22": 0 - }, - "f": { - "0": 8, - "1": 10, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAWI;AAXJ,2BAAwBA;AAAqB;AAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAE9D,SAASC,0BAA0B;AAOnC,SAASC,eAAe;AAAA,EAAEC;AAAAA,EAAOC;AAAAA,EAAIC;AAA2C,GAAG;AACjF,SACE,uBAAC,iBAAc,OAAc,IAC1BA,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACC,KANQJ;AAQTA,eAAeK,OAAON;AAEtB,SAASC;AAAgB;AAAAM", - "names": [ - "NavDropdownBS", - "NavbarDropdownItem", - "NavbarDropdown", - "title", - "id", - "children", - "_c", - "Item", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/navbar-dropdown/NavbarDropdown.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/navbar-dropdown/NavbarDropdown.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "baa3be8707527de3aadf5ad31b5c49f7729113e3" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Container.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Container.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 144 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 15 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 30 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 170 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Container", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 25 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 18, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 8, - "1": 18, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AASS;AATT,2BAA0B;AAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACjC,SAASA,aAAaC,mBAAmB;AAOlC,gBAASD,UAAU;AAAA,EAAEE;AAAAA,EAAU,GAAGC;AAAsB,GAAG;AAChE,SAAO,uBAAC,eAAY,GAAIA,OAAQD,YAAzB;AAAA;AAAA;AAAA;AAAA,SAAkC;AAC3C;AAACE,KAFeJ;AAAS;AAAAK", - "names": ["Container", "ContainerBS", "children", "props", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Container.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Container.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "2d5546c61a75370d79e6c30756777cbb48b3d218" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/NavbarLink.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/NavbarLink.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 147 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 16 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 31 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 173 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "NavbarLink", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 26 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 20, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 8, - "1": 20, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAQS;AART,2BAAoB;AAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAO9B,gBAASA,WAAW;AAAA,EAAEC;AAAAA,EAAMC;AAA6C,GAAG;AACjF,SAAO,uBAAC,IAAI,MAAJ,EAAS,MAAaA,YAAvB;AAAA;AAAA;AAAA;AAAA,SAAgC;AACzC;AAACC,KAFeH;AAAU;AAAAI", - "names": ["NavbarLink", "href", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/NavbarLink.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/NavbarLink.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "401cca4b54ba78d8771681e772326f646b4a3fe8" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/Navbar.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/Navbar.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 143 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 25, - "column": 2 - }, - "end": { - "line": 60, - "column": 11 - } - }, - "9": { - "start": { - "line": 62, - "column": 0 - }, - "end": { - "line": 62, - "column": 12 - } - }, - "10": { - "start": { - "line": 63, - "column": 0 - }, - "end": { - "line": 63, - "column": 25 - } - }, - "11": { - "start": { - "line": 64, - "column": 0 - }, - "end": { - "line": 64, - "column": 33 - } - }, - "12": { - "start": { - "line": 67, - "column": 0 - }, - "end": { - "line": 67, - "column": 27 - } - }, - "13": { - "start": { - "line": 68, - "column": 0 - }, - "end": { - "line": 84, - "column": 1 - } - }, - "14": { - "start": { - "line": 69, - "column": 2 - }, - "end": { - "line": 69, - "column": 39 - } - }, - "15": { - "start": { - "line": 70, - "column": 2 - }, - "end": { - "line": 70, - "column": 39 - } - }, - "16": { - "start": { - "line": 71, - "column": 2 - }, - "end": { - "line": 83, - "column": 5 - } - }, - "17": { - "start": { - "line": 75, - "column": 4 - }, - "end": { - "line": 75, - "column": 169 - } - }, - "18": { - "start": { - "line": 76, - "column": 4 - }, - "end": { - "line": 82, - "column": 7 - } - }, - "19": { - "start": { - "line": 77, - "column": 6 - }, - "end": { - "line": 78, - "column": 15 - } - }, - "20": { - "start": { - "line": 78, - "column": 8 - }, - "end": { - "line": 78, - "column": 15 - } - }, - "21": { - "start": { - "line": 79, - "column": 32 - }, - "end": { - "line": 79, - "column": 115 - } - }, - "22": { - "start": { - "line": 80, - "column": 6 - }, - "end": { - "line": 81, - "column": 54 - } - }, - "23": { - "start": { - "line": 81, - "column": 8 - }, - "end": { - "line": 81, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Navbar", - "decl": { - "start": { - "line": 21, - "column": 9 - }, - "end": { - "line": 21, - "column": 15 - } - }, - "loc": { - "start": { - "line": 24, - "column": 3 - }, - "end": { - "line": 61, - "column": 1 - } - }, - "line": 24 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 74, - "column": 9 - }, - "end": { - "line": 74, - "column": 10 - } - }, - "loc": { - "start": { - "line": 74, - "column": 29 - }, - "end": { - "line": 83, - "column": 3 - } - }, - "line": 74 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 76, - "column": 27 - }, - "end": { - "line": 76, - "column": 28 - } - }, - "loc": { - "start": { - "line": 76, - "column": 44 - }, - "end": { - "line": 82, - "column": 5 - } - }, - "line": 76 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 68, - "column": 0 - }, - "end": { - "line": 84, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 68, - "column": 0 - }, - "end": { - "line": 84, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 68 - }, - "3": { - "loc": { - "start": { - "line": 77, - "column": 6 - }, - "end": { - "line": 78, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 77, - "column": 6 - }, - "end": { - "line": 78, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 77 - }, - "4": { - "loc": { - "start": { - "line": 80, - "column": 6 - }, - "end": { - "line": 81, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 80, - "column": 6 - }, - "end": { - "line": 81, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 80 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 18, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 8, - "18": 8, - "19": 0, - "20": 0, - "21": 0, - "22": 0, - "23": 0 - }, - "f": { - "0": 8, - "1": 18, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAsBU;AAtBV,2BAA2B;AAAQ;AAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACpD,SAASA,WAAW;AACpB,SAASC,sBAAsB;AAC/B,SAASC,iBAAiB;AAE1B,SAASC,kBAAkB;AAY3B,SAASC,OAAO;AAAA,EAAEC;AAAAA,EAAOC;AAAyC,GAAG;AACnE,SACE,uBAAC,YAAS,kBAAgB,MAAC,IAAG,SAAQ,QAAO,MAAK,OAAM,OACtD,iCAAC,aACC;AAAA,2BAAC,SAAS,OAAT,EAAe,MAAMD,MAAME,MAC1B;AAAA,6BAAC,SAAI,OAAM,MAAK,QAAO,MAAK,KAAKF,MAAMG,YAAY,KAAI,sBAAvD;AAAA;AAAA;AAAA;AAAA,aAAyE;AAAA,MACxEH,MAAMI;AAAAA,SAFT;AAAA;AAAA;AAAA;AAAA,WAGA;AAAA,IACA,uBAAC,SAAS,QAAT,EAAgB,iBAAc,2BAA/B;AAAA;AAAA;AAAA;AAAA,WAAsD;AAAA,IACtD,uBAAC,SAAS,UAAT,EAAkB,IAAG,yBACpB,iCAAC,OAAKH,YAAN;AAAA;AAAA;AAAA;AAAA,WAAe,KADjB;AAAA;AAAA;AAAA;AAAA,WAEA;AAAA,OARF;AAAA;AAAA;AAAA;AAAA,SASA,KAVF;AAAA;AAAA;AAAA;AAAA,SAWA;AAEJ;AAACI,KAfQN;AAiBTA,OAAOO,OAAOR;AACdC,OAAOQ,WAAWX;AAElB,SAASG;AAAQ;AAAAS", - "names": [ - "Nav", - "NavbarDropdown", - "Container", - "NavbarLink", - "Navbar", - "brand", - "children", - "href", - "logoImgSrc", - "title", - "_c", - "Link", - "Dropdown", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/Navbar.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/Navbar.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "75e5759e8eb87130aa43da7345b7ed4ecae2fcab" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/table/Table.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/table/Table.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 141 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 11 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 26 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 167 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Table", - "decl": { - "start": { - "line": 18, - "column": 16 - }, - "end": { - "line": 18, - "column": 21 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 4, - "1": 4, - "2": 0, - "3": 4, - "4": 4, - "5": 4, - "6": 4, - "7": 4, - "8": 4, - "9": 4, - "10": 4, - "11": 4, - "12": 4, - "13": 4, - "14": 4, - "15": 4, - "16": 4, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 4, - "1": 4, - "2": 4, - "3": 0 - }, - "b": { - "0": [4, 0], - "1": [0, 4], - "2": [4, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAMI;AANJ,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,SAASC,eAAe;AACjC,OAAOC,YAAY;AAEZ,gBAASF,MAAM;AAAA,EAAEG;AAA4B,GAAG;AACrD,SACE,uBAAC,WAAQ,SAAO,MAAC,UAAQ,MAAC,WAAWD,OAAOE,OACzCD,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACE,KANeL;AAAK;AAAAM", - "names": ["Table", "TableBS", "styles", "children", "table", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/table/Table.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/table/Table.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "b3d156e18395a90e6c5f3859cf6215dee74af63f" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tabs/Tab.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tabs/Tab.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 138 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 26, - "column": 11 - } - }, - "9": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 9 - } - }, - "10": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 30, - "column": 24 - } - }, - "11": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "12": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "13": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 33, - "column": 39 - } - }, - "14": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 46, - "column": 5 - } - }, - "15": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 38, - "column": 164 - } - }, - "16": { - "start": { - "line": 39, - "column": 4 - }, - "end": { - "line": 45, - "column": 7 - } - }, - "17": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "18": { - "start": { - "line": 41, - "column": 8 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "19": { - "start": { - "line": 42, - "column": 32 - }, - "end": { - "line": 42, - "column": 115 - } - }, - "20": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - "21": { - "start": { - "line": 44, - "column": 8 - }, - "end": { - "line": 44, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Tab", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 19 - } - }, - "loc": { - "start": { - "line": 21, - "column": 3 - }, - "end": { - "line": 27, - "column": 1 - } - }, - "line": 21 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 37, - "column": 9 - }, - "end": { - "line": 37, - "column": 10 - } - }, - "loc": { - "start": { - "line": 37, - "column": 29 - }, - "end": { - "line": 46, - "column": 3 - } - }, - "line": 37 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 39, - "column": 27 - }, - "end": { - "line": 39, - "column": 28 - } - }, - "loc": { - "start": { - "line": 39, - "column": 44 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "line": 39 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 31 - }, - "3": { - "loc": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 40 - }, - "4": { - "loc": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 43 - } - }, - "s": { - "0": 6, - "1": 6, - "2": 0, - "3": 6, - "4": 6, - "5": 6, - "6": 6, - "7": 6, - "8": 0, - "9": 6, - "10": 6, - "11": 6, - "12": 6, - "13": 6, - "14": 6, - "15": 6, - "16": 6, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 6, - "1": 0, - "2": 6, - "3": 0 - }, - "b": { - "0": [6, 0], - "1": [0, 6], - "2": [6, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAUI;AAVJ,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,OAAOC,aAAa;AAOtB,gBAASD,IAAI;AAAA,EAAEE;AAAAA,EAAOC;AAAAA,EAAUC;AAAsC,GAAG;AAC9E,SACE,uBAAC,SAAM,OAAc,UAClBA,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACC,KANeL;AAAG;AAAAM", - "names": ["Tab", "TabBS", "title", "eventKey", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tabs/Tab.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tabs/Tab.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "eb50ddc066a18343f25bb8cf5f2b8d433740e2a1" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tabs/Tabs.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tabs/Tabs.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 139 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 26, - "column": 11 - } - }, - "9": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 10 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 15 - } - }, - "11": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 32, - "column": 25 - } - }, - "12": { - "start": { - "line": 33, - "column": 0 - }, - "end": { - "line": 49, - "column": 1 - } - }, - "13": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 34, - "column": 39 - } - }, - "14": { - "start": { - "line": 35, - "column": 2 - }, - "end": { - "line": 35, - "column": 39 - } - }, - "15": { - "start": { - "line": 36, - "column": 2 - }, - "end": { - "line": 48, - "column": 5 - } - }, - "16": { - "start": { - "line": 40, - "column": 4 - }, - "end": { - "line": 40, - "column": 165 - } - }, - "17": { - "start": { - "line": 41, - "column": 4 - }, - "end": { - "line": 47, - "column": 7 - } - }, - "18": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 15 - } - }, - "19": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 15 - } - }, - "20": { - "start": { - "line": 44, - "column": 32 - }, - "end": { - "line": 44, - "column": 115 - } - }, - "21": { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 54 - } - }, - "22": { - "start": { - "line": 46, - "column": 8 - }, - "end": { - "line": 46, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Tabs", - "decl": { - "start": { - "line": 18, - "column": 9 - }, - "end": { - "line": 18, - "column": 13 - } - }, - "loc": { - "start": { - "line": 21, - "column": 3 - }, - "end": { - "line": 27, - "column": 1 - } - }, - "line": 21 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 39, - "column": 9 - }, - "end": { - "line": 39, - "column": 10 - } - }, - "loc": { - "start": { - "line": 39, - "column": 29 - }, - "end": { - "line": 48, - "column": 3 - } - }, - "line": 39 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 41, - "column": 27 - }, - "end": { - "line": 41, - "column": 28 - } - }, - "loc": { - "start": { - "line": 41, - "column": 44 - }, - "end": { - "line": 47, - "column": 5 - } - }, - "line": 41 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 33, - "column": 0 - }, - "end": { - "line": 49, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 33, - "column": 0 - }, - "end": { - "line": 49, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 33 - }, - "3": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - }, - "4": { - "loc": { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 45 - } - }, - "s": { - "0": 6, - "1": 6, - "2": 0, - "3": 6, - "4": 6, - "5": 6, - "6": 6, - "7": 6, - "8": 10, - "9": 6, - "10": 6, - "11": 6, - "12": 6, - "13": 6, - "14": 6, - "15": 6, - "16": 6, - "17": 6, - "18": 0, - "19": 0, - "20": 0, - "21": 0, - "22": 0 - }, - "f": { - "0": 6, - "1": 10, - "2": 6, - "3": 0 - }, - "b": { - "0": [6, 0], - "1": [0, 6], - "2": [6, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AASS;AATT,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,WAAW;AACpB,SAASC,QAAQC,cAAc;AAM/B,SAASD,KAAK;AAAA,EAAEE;AAAAA,EAAkBC;AAAuC,GAAG;AAC1E,SAAO,uBAAC,UAAO,kBAAqCA,YAA7C;AAAA;AAAA;AAAA;AAAA,SAAsD;AAC/D;AAACC,KAFQJ;AAITA,KAAKD,MAAMA;AAEX,SAASC;AAAM;AAAAK", - "names": ["Tab", "Tabs", "TabsBS", "defaultActiveKey", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tabs/Tabs.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tabs/Tabs.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "c4bd44e44bb2d037d4ff06341cc274a505319413" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/dropdown-button/dropdown-button-item/DropdownButtonItem.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/dropdown-button/dropdown-button-item/DropdownButtonItem.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 185 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 24 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 39 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 211 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "DropdownButtonItem", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 34 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 6, - "1": 6, - "2": 0, - "3": 6, - "4": 6, - "5": 6, - "6": 6, - "7": 6, - "8": 10, - "9": 6, - "10": 6, - "11": 6, - "12": 6, - "13": 6, - "14": 6, - "15": 6, - "16": 6, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 6, - "1": 10, - "2": 6, - "3": 0 - }, - "b": { - "0": [6, 0], - "1": [0, 6], - "2": [6, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AASS;AATT,2BAAqBA;AAAkB;AAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQjD,gBAASC,mBAAmB;AAAA,EAAEC;AAAAA,EAAMC;AAA4B,GAAG;AACxE,SAAO,uBAAC,WAAW,MAAX,EAAgB,MAAaA,YAA9B;AAAA;AAAA;AAAA;AAAA,SAAuC;AAChD;AAACC,KAFeH;AAAkB;AAAAI", - "names": ["DropdownBS", "DropdownButtonItem", "href", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/dropdown-button/dropdown-button-item/DropdownButtonItem.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/dropdown-button/dropdown-button-item/DropdownButtonItem.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "3046ab81c1cfd74934774f62c455d230599c2ac9" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/Icon.enum.ts": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/Icon.enum.ts", - "statementMap": { - "0": { - "start": { - "line": 1, - "column": 34 - }, - "end": { - "line": 18, - "column": 14 - } - }, - "1": { - "start": { - "line": 2, - "column": 2 - }, - "end": { - "line": 2, - "column": 32 - } - }, - "2": { - "start": { - "line": 3, - "column": 2 - }, - "end": { - "line": 3, - "column": 32 - } - }, - "3": { - "start": { - "line": 4, - "column": 2 - }, - "end": { - "line": 4, - "column": 30 - } - }, - "4": { - "start": { - "line": 5, - "column": 2 - }, - "end": { - "line": 5, - "column": 42 - } - }, - "5": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 6, - "column": 36 - } - }, - "6": { - "start": { - "line": 7, - "column": 2 - }, - "end": { - "line": 7, - "column": 38 - } - }, - "7": { - "start": { - "line": 8, - "column": 2 - }, - "end": { - "line": 8, - "column": 30 - } - }, - "8": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 36 - } - }, - "9": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 32 - } - }, - "10": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 11, - "column": 36 - } - }, - "11": { - "start": { - "line": 12, - "column": 2 - }, - "end": { - "line": 12, - "column": 32 - } - }, - "12": { - "start": { - "line": 13, - "column": 2 - }, - "end": { - "line": 13, - "column": 36 - } - }, - "13": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 36 - } - }, - "14": { - "start": { - "line": 15, - "column": 2 - }, - "end": { - "line": 15, - "column": 34 - } - }, - "15": { - "start": { - "line": 16, - "column": 2 - }, - "end": { - "line": 16, - "column": 32 - } - }, - "16": { - "start": { - "line": 17, - "column": 2 - }, - "end": { - "line": 17, - "column": 15 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 1, - "column": 35 - }, - "end": { - "line": 1, - "column": 36 - } - }, - "loc": { - "start": { - "line": 1, - "column": 46 - }, - "end": { - "line": 18, - "column": 1 - } - }, - "line": 1 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 18, - "column": 3 - }, - "end": { - "line": 18, - "column": 13 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 18, - "column": 3 - }, - "end": { - "line": 18, - "column": 7 - } - }, - { - "start": { - "line": 18, - "column": 11 - }, - "end": { - "line": 18, - "column": 13 - } - } - ], - "line": 18 - } - }, - "s": { - "0": 12, - "1": 12, - "2": 12, - "3": 12, - "4": 12, - "5": 12, - "6": 12, - "7": 12, - "8": 12, - "9": 12, - "10": 12, - "11": 12, - "12": 12, - "13": 12, - "14": 12, - "15": 12, - "16": 12 - }, - "f": { - "0": 12 - }, - "b": { - "0": [12, 12] - }, - "inputSourceMap": { - "version": 3, - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/Icon.enum.ts" - ], - "mappings": "AAAO,WAAK,OAAL,kBAAKA,UAAL;AACL,EAAAA,MAAA,WAAQ;AACR,EAAAA,MAAA,WAAQ;AACR,EAAAA,MAAA,UAAO;AACP,EAAAA,MAAA,gBAAa;AACb,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,cAAW;AACX,EAAAA,MAAA,UAAO;AACP,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,WAAQ;AACR,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,WAAQ;AACR,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,YAAS;AACT,EAAAA,MAAA,WAAQ;AAfE,SAAAA;AAAA,GAAA;", - "names": ["Icon"] - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "875c90456c27fc75e15c5fc89a86b1f34a8eedce" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/BaseTheme.ts": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/BaseTheme.ts", - "statementMap": { - "0": { - "start": { - "line": 3, - "column": 25 - }, - "end": { - "line": 42, - "column": 1 - } - } - }, - "fnMap": {}, - "branchMap": {}, - "s": { - "0": 582 - }, - "f": {}, - "b": {}, - "inputSourceMap": { - "version": 3, - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/BaseTheme.ts" - ], - "mappings": "AAAA,OAAO,oBAAoB;AAC3B,OAAO,yBAAyB;AA4CzB,aAAM,YAA2B;AAAA,EACtC,UAAU;AAAA,EACV,OAAO;AAAA,IACL,OAAO,eAAe;AAAA,IACtB,SAAS,eAAe;AAAA,IACxB,WAAW,eAAe;AAAA,IAC1B,cAAc,eAAe;AAAA,IAC7B,cAAc,eAAe;AAAA,IAC7B,WAAW,eAAe;AAAA,IAC1B,aAAa,eAAe;AAAA,IAC5B,WAAW,eAAe;AAAA,IAC1B,cAAc,eAAe;AAAA,IAC7B,kBAAkB,eAAe;AAAA,IACjC,oBAAoB,eAAe;AAAA,IACnC,kBAAkB,eAAe;AAAA,IACjC,kBAAkB,eAAe;AAAA,IACjC,eAAe,eAAe;AAAA,IAC9B,iBAAiB,eAAe;AAAA,IAChC,iBAAiB,eAAe;AAAA,IAChC,iBAAiB,eAAe;AAAA,IAChC,cAAc,eAAe;AAAA,IAC7B,gBAAgB,eAAe;AAAA,IAC/B,eAAe,eAAe;AAAA,IAC9B,WAAW,eAAe;AAAA,IAC1B,gBAAgB,eAAe;AAAA,IAC/B,mBAAmB,eAAe;AAAA,IAClC,cAAc,eAAe;AAAA,IAC7B,mBAAmB,eAAe;AAAA,EACpC;AAAA,EACA,YAAY;AAAA,IACV,UAAU,oBAAoB;AAAA,IAC9B,YAAY,oBAAoB;AAAA,IAChC,eAAe,oBAAoB;AAAA,IACnC,YAAY,oBAAoB;AAAA,IAChC,YAAY,oBAAoB;AAAA,IAChC,gBAAgB,oBAAoB;AAAA,IACpC,iBAAiB,oBAAoB;AAAA,IACrC,YAAY,oBAAoB;AAAA,EAClC;AACF;", - "names": [] - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "1cd53b2db23983728c007831c5ae847de9bc4d2d" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/ThemeContext.ts": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/ThemeContext.ts", - "statementMap": { - "0": { - "start": { - "line": 3, - "column": 28 - }, - "end": { - "line": 3, - "column": 52 - } - } - }, - "fnMap": {}, - "branchMap": {}, - "s": { - "0": 582 - }, - "f": {}, - "b": {}, - "inputSourceMap": { - "version": 3, - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/ThemeContext.ts" - ], - "mappings": "AAAA,SAAS,qBAAqB;AAC9B,SAAS,iBAAiB;AAEnB,aAAM,eAAe,cAAc,SAAS;", - "names": [] - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "4c1a5d4004fcd3d4bbc1d9875b7a1554d5f1830b" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/ThemeProvider.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/ThemeProvider.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 169 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 16, - "column": 9 - }, - "end": { - "line": 16, - "column": 23 - } - }, - "9": { - "start": { - "line": 25, - "column": 2 - }, - "end": { - "line": 29, - "column": 11 - } - }, - "10": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 31, - "column": 19 - } - }, - "11": { - "start": { - "line": 32, - "column": 24 - }, - "end": { - "line": 35, - "column": 1 - } - }, - "12": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 33, - "column": 7 - } - }, - "13": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 34, - "column": 34 - } - }, - "14": { - "start": { - "line": 36, - "column": 0 - }, - "end": { - "line": 36, - "column": 45 - } - }, - "15": { - "start": { - "line": 38, - "column": 0 - }, - "end": { - "line": 38, - "column": 34 - } - }, - "16": { - "start": { - "line": 39, - "column": 0 - }, - "end": { - "line": 55, - "column": 1 - } - }, - "17": { - "start": { - "line": 40, - "column": 2 - }, - "end": { - "line": 40, - "column": 39 - } - }, - "18": { - "start": { - "line": 41, - "column": 2 - }, - "end": { - "line": 41, - "column": 39 - } - }, - "19": { - "start": { - "line": 42, - "column": 2 - }, - "end": { - "line": 54, - "column": 5 - } - }, - "20": { - "start": { - "line": 46, - "column": 4 - }, - "end": { - "line": 46, - "column": 195 - } - }, - "21": { - "start": { - "line": 47, - "column": 4 - }, - "end": { - "line": 53, - "column": 7 - } - }, - "22": { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 15 - } - }, - "23": { - "start": { - "line": 49, - "column": 8 - }, - "end": { - "line": 49, - "column": 15 - } - }, - "24": { - "start": { - "line": 50, - "column": 32 - }, - "end": { - "line": 50, - "column": 115 - } - }, - "25": { - "start": { - "line": 51, - "column": 6 - }, - "end": { - "line": 52, - "column": 54 - } - }, - "26": { - "start": { - "line": 52, - "column": 8 - }, - "end": { - "line": 52, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "ThemeProvider", - "decl": { - "start": { - "line": 21, - "column": 16 - }, - "end": { - "line": 21, - "column": 29 - } - }, - "loc": { - "start": { - "line": 24, - "column": 3 - }, - "end": { - "line": 30, - "column": 1 - } - }, - "line": 24 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 32, - "column": 24 - }, - "end": { - "line": 32, - "column": 25 - } - }, - "loc": { - "start": { - "line": 32, - "column": 30 - }, - "end": { - "line": 35, - "column": 1 - } - }, - "line": 32 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 45, - "column": 9 - }, - "end": { - "line": 45, - "column": 10 - } - }, - "loc": { - "start": { - "line": 45, - "column": 29 - }, - "end": { - "line": 54, - "column": 3 - } - }, - "line": 45 - }, - "4": { - "name": "(anonymous_4)", - "decl": { - "start": { - "line": 47, - "column": 27 - }, - "end": { - "line": 47, - "column": 28 - } - }, - "loc": { - "start": { - "line": 47, - "column": 44 - }, - "end": { - "line": 53, - "column": 5 - } - }, - "line": 47 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 22, - "column": 19 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 22, - "column": 10 - }, - "end": { - "line": 22, - "column": 19 - } - } - ], - "line": 22 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 0 - }, - "end": { - "line": 55, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 0 - }, - "end": { - "line": 55, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 48 - }, - "5": { - "loc": { - "start": { - "line": 51, - "column": 6 - }, - "end": { - "line": 52, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 51, - "column": 6 - }, - "end": { - "line": 52, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 51 - } - }, - "s": { - "0": 582, - "1": 582, - "2": 0, - "3": 582, - "4": 582, - "5": 582, - "6": 582, - "7": 582, - "8": 582, - "9": 30, - "10": 582, - "11": 582, - "12": 30, - "13": 30, - "14": 582, - "15": 582, - "16": 582, - "17": 582, - "18": 582, - "19": 582, - "20": 582, - "21": 582, - "22": 0, - "23": 0, - "24": 0, - "25": 0, - "26": 0 - }, - "f": { - "0": 582, - "1": 30, - "2": 30, - "3": 582, - "4": 0 - }, - "b": { - "0": [582, 0], - "1": [0, 582], - "2": [18], - "3": [582, 0], - "4": [0, 0], - "5": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAWS;;;;;;;;;;;;;;;;AAXT,SAASA,iBAAgC;AACzC,SAAoBC,kBAAkB;AACtC,SAASC,oBAAoB;AAC7B,OAAO;AAOA,gBAASC,cAAc;AAAA,EAAEC,QAAQJ;AAAAA,EAAWK;AAAqB,GAAG;AACzE,SAAO,uBAAC,aAAa,UAAb,EAAsB,OAAOD,OAAQC,YAAtC;AAAA;AAAA;AAAA;AAAA,SAA+C;AACxD;AAACC,KAFeH;AAIT,aAAMI,WAAWA;AAAAC;AAAA,SAAMP,WAAWC,YAAY;AAAC;AAAAM,GAAzCD,UAAQ;AAAA;AAAAE", - "names": [ - "baseTheme", - "useContext", - "ThemeContext", - "ThemeProvider", - "theme", - "children", - "_c", - "useTheme", - "_s", - "$RefreshReg$" - ], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/ThemeProvider.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/ThemeProvider.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "bc26c4cb127e8e6acc45f8d99e22dd0f5e81afa4" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionItem.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionItem.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 173 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 19 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 34 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 199 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "AccordionItem", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 29 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 24, - "1": 24, - "2": 0, - "3": 24, - "4": 24, - "5": 24, - "6": 24, - "7": 24, - "8": 108, - "9": 24, - "10": 24, - "11": 24, - "12": 24, - "13": 24, - "14": 24, - "15": 24, - "16": 24, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 24, - "1": 108, - "2": 24, - "3": 0 - }, - "b": { - "0": [24, 0], - "1": [0, 24], - "2": [24, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AASS;AATT,2BAA0B;AAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACjC,SAASA,aAAaC,mBAAmB;AAOlC,gBAASC,cAAc;AAAA,EAAEC;AAAAA,EAAUC;AAA6B,GAAG;AACxE,SAAO,uBAAC,YAAY,MAAZ,EAAiB,UAAqBA,YAAvC;AAAA;AAAA;AAAA;AAAA,SAAgD;AACzD;AAACC,KAFeH;AAAa;AAAAI", - "names": [ - "Accordion", - "AccordionBS", - "AccordionItem", - "eventKey", - "children", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionItem.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionItem.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "29746f3e6e46d9488898ad89bc87f3a3be856f1d" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionBody.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionBody.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 173 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 20, - "column": 2 - }, - "end": { - "line": 24, - "column": 11 - } - }, - "9": { - "start": { - "line": 26, - "column": 0 - }, - "end": { - "line": 26, - "column": 19 - } - }, - "10": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 34 - } - }, - "11": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "12": { - "start": { - "line": 30, - "column": 2 - }, - "end": { - "line": 30, - "column": 39 - } - }, - "13": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "14": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "15": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 199 - } - }, - "16": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 43, - "column": 7 - } - }, - "17": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "18": { - "start": { - "line": 39, - "column": 8 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "19": { - "start": { - "line": 40, - "column": 32 - }, - "end": { - "line": 40, - "column": 115 - } - }, - "20": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "21": { - "start": { - "line": 42, - "column": 8 - }, - "end": { - "line": 42, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "AccordionBody", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 29 - } - }, - "loc": { - "start": { - "line": 19, - "column": 3 - }, - "end": { - "line": 25, - "column": 1 - } - }, - "line": 19 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 35, - "column": 9 - }, - "end": { - "line": 35, - "column": 10 - } - }, - "loc": { - "start": { - "line": 35, - "column": 29 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "line": 35 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 37, - "column": 27 - }, - "end": { - "line": 37, - "column": 28 - } - }, - "loc": { - "start": { - "line": 37, - "column": 44 - }, - "end": { - "line": 43, - "column": 5 - } - }, - "line": 37 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 29 - }, - "3": { - "loc": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 38 - }, - "4": { - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - } - }, - "s": { - "0": 24, - "1": 24, - "2": 0, - "3": 24, - "4": 24, - "5": 24, - "6": 24, - "7": 24, - "8": 108, - "9": 24, - "10": 24, - "11": 24, - "12": 24, - "13": 24, - "14": 24, - "15": 24, - "16": 24, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 24, - "1": 108, - "2": 24, - "3": 0 - }, - "b": { - "0": [24, 0], - "1": [0, 24], - "2": [24, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAQS;AART,2BAA0B;AAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACjC,SAASA,aAAaC,mBAAmB;AAMlC,gBAASC,cAAc;AAAA,EAAEC;AAA6B,GAAG;AAC9D,SAAO,uBAAC,YAAY,MAAZ,EAAkBA,YAAnB;AAAA;AAAA;AAAA;AAAA,SAA4B;AACrC;AAACC,KAFeF;AAAa;AAAAG", - "names": ["Accordion", "AccordionBS", "AccordionBody", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionBody.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionBody.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "b3ec92824d3b5092d4cffdee6a7500d8cd8e98e9" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionHeader.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionHeader.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 175 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 20, - "column": 2 - }, - "end": { - "line": 24, - "column": 11 - } - }, - "9": { - "start": { - "line": 26, - "column": 0 - }, - "end": { - "line": 26, - "column": 21 - } - }, - "10": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 36 - } - }, - "11": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "12": { - "start": { - "line": 30, - "column": 2 - }, - "end": { - "line": 30, - "column": 39 - } - }, - "13": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "14": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "15": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 201 - } - }, - "16": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 43, - "column": 7 - } - }, - "17": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "18": { - "start": { - "line": 39, - "column": 8 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "19": { - "start": { - "line": 40, - "column": 32 - }, - "end": { - "line": 40, - "column": 115 - } - }, - "20": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "21": { - "start": { - "line": 42, - "column": 8 - }, - "end": { - "line": 42, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "AccordionHeader", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 31 - } - }, - "loc": { - "start": { - "line": 19, - "column": 3 - }, - "end": { - "line": 25, - "column": 1 - } - }, - "line": 19 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 35, - "column": 9 - }, - "end": { - "line": 35, - "column": 10 - } - }, - "loc": { - "start": { - "line": 35, - "column": 29 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "line": 35 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 37, - "column": 27 - }, - "end": { - "line": 37, - "column": 28 - } - }, - "loc": { - "start": { - "line": 37, - "column": 44 - }, - "end": { - "line": 43, - "column": 5 - } - }, - "line": 37 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 29 - }, - "3": { - "loc": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 38 - }, - "4": { - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - } - }, - "s": { - "0": 24, - "1": 24, - "2": 0, - "3": 24, - "4": 24, - "5": 24, - "6": 24, - "7": 24, - "8": 108, - "9": 24, - "10": 24, - "11": 24, - "12": 24, - "13": 24, - "14": 24, - "15": 24, - "16": 24, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 24, - "1": 108, - "2": 24, - "3": 0 - }, - "b": { - "0": [24, 0], - "1": [0, 24], - "2": [24, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAQS;AART,2BAA0B;AAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACjC,SAASA,aAAaC,mBAAmB;AAMlC,gBAASC,gBAAgB;AAAA,EAAEC;AAA+B,GAAG;AAClE,SAAO,uBAAC,YAAY,QAAZ,EAAoBA,YAArB;AAAA;AAAA;AAAA;AAAA,SAA8B;AACvC;AAACC,KAFeF;AAAe;AAAAG", - "names": ["Accordion", "AccordionBS", "AccordionHeader", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionHeader.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionHeader.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "60184571f79acc493c3245e49ff5c5115cd68f66" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/Accordion.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/Accordion.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 169 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 25, - "column": 2 - }, - "end": { - "line": 29, - "column": 11 - } - }, - "9": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 31, - "column": 15 - } - }, - "10": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 32, - "column": 31 - } - }, - "11": { - "start": { - "line": 33, - "column": 0 - }, - "end": { - "line": 33, - "column": 31 - } - }, - "12": { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 34, - "column": 35 - } - }, - "13": { - "start": { - "line": 37, - "column": 0 - }, - "end": { - "line": 37, - "column": 30 - } - }, - "14": { - "start": { - "line": 38, - "column": 0 - }, - "end": { - "line": 54, - "column": 1 - } - }, - "15": { - "start": { - "line": 39, - "column": 2 - }, - "end": { - "line": 39, - "column": 39 - } - }, - "16": { - "start": { - "line": 40, - "column": 2 - }, - "end": { - "line": 40, - "column": 39 - } - }, - "17": { - "start": { - "line": 41, - "column": 2 - }, - "end": { - "line": 53, - "column": 5 - } - }, - "18": { - "start": { - "line": 45, - "column": 4 - }, - "end": { - "line": 45, - "column": 195 - } - }, - "19": { - "start": { - "line": 46, - "column": 4 - }, - "end": { - "line": 52, - "column": 7 - } - }, - "20": { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 15 - } - }, - "21": { - "start": { - "line": 48, - "column": 8 - }, - "end": { - "line": 48, - "column": 15 - } - }, - "22": { - "start": { - "line": 49, - "column": 32 - }, - "end": { - "line": 49, - "column": 115 - } - }, - "23": { - "start": { - "line": 50, - "column": 6 - }, - "end": { - "line": 51, - "column": 54 - } - }, - "24": { - "start": { - "line": 51, - "column": 8 - }, - "end": { - "line": 51, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Accordion", - "decl": { - "start": { - "line": 20, - "column": 9 - }, - "end": { - "line": 20, - "column": 18 - } - }, - "loc": { - "start": { - "line": 24, - "column": 3 - }, - "end": { - "line": 30, - "column": 1 - } - }, - "line": 24 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 44, - "column": 9 - }, - "end": { - "line": 44, - "column": 10 - } - }, - "loc": { - "start": { - "line": 44, - "column": 29 - }, - "end": { - "line": 53, - "column": 3 - } - }, - "line": 44 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 46, - "column": 27 - }, - "end": { - "line": 46, - "column": 28 - } - }, - "loc": { - "start": { - "line": 46, - "column": 44 - }, - "end": { - "line": 52, - "column": 5 - } - }, - "line": 46 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 23, - "column": 2 - }, - "end": { - "line": 23, - "column": 20 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 23, - "column": 15 - }, - "end": { - "line": 23, - "column": 20 - } - } - ], - "line": 23 - }, - "3": { - "loc": { - "start": { - "line": 38, - "column": 0 - }, - "end": { - "line": 54, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 38, - "column": 0 - }, - "end": { - "line": 54, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 38 - }, - "4": { - "loc": { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 47 - }, - "5": { - "loc": { - "start": { - "line": 50, - "column": 6 - }, - "end": { - "line": 51, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 50, - "column": 6 - }, - "end": { - "line": 51, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 50 - } - }, - "s": { - "0": 24, - "1": 24, - "2": 0, - "3": 24, - "4": 24, - "5": 24, - "6": 24, - "7": 24, - "8": 54, - "9": 24, - "10": 24, - "11": 24, - "12": 24, - "13": 24, - "14": 24, - "15": 24, - "16": 24, - "17": 24, - "18": 24, - "19": 24, - "20": 0, - "21": 0, - "22": 0, - "23": 0, - "24": 0 - }, - "f": { - "0": 24, - "1": 54, - "2": 24, - "3": 0 - }, - "b": { - "0": [24, 0], - "1": [0, 24], - "2": [24], - "3": [24, 0], - "4": [0, 0], - "5": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAcI;AAdJ,2BAA0B;AAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACjC,SAASA,aAAaC,mBAAmB;AACzC,SAASC,qBAAqB;AAC9B,SAASC,qBAAqB;AAC9B,SAASC,uBAAuB;AAQhC,SAASJ,UAAU;AAAA,EAAEK;AAAAA,EAAkBC;AAAAA,EAAUC,aAAa;AAAsB,GAAG;AACrF,SACE,uBAAC,eAAY,kBAAoC,YAC9CD,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACE,KANQR;AAQTA,UAAUS,OAAOP;AACjBF,UAAUU,OAAOP;AACjBH,UAAUW,SAASP;AAEnB,SAASJ;AAAW;AAAAY", - "names": [ - "Accordion", - "AccordionBS", - "AccordionItem", - "AccordionBody", - "AccordionHeader", - "defaultActiveKey", - "children", - "alwaysOpen", - "_c", - "Item", - "Body", - "Header", - "$RefreshReg$" - ], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/Accordion.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/Accordion.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "f3716a9703084b5082c221efa413c90402e82334" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertIcon.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertIcon.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 165 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 20, - "column": 22 - }, - "end": { - "line": 41, - "column": 3 - } - }, - "9": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 33 - } - }, - "10": { - "start": { - "line": 45, - "column": 2 - }, - "end": { - "line": 49, - "column": 11 - } - }, - "11": { - "start": { - "line": 51, - "column": 0 - }, - "end": { - "line": 51, - "column": 15 - } - }, - "12": { - "start": { - "line": 53, - "column": 0 - }, - "end": { - "line": 53, - "column": 30 - } - }, - "13": { - "start": { - "line": 54, - "column": 0 - }, - "end": { - "line": 70, - "column": 1 - } - }, - "14": { - "start": { - "line": 55, - "column": 2 - }, - "end": { - "line": 55, - "column": 39 - } - }, - "15": { - "start": { - "line": 56, - "column": 2 - }, - "end": { - "line": 56, - "column": 39 - } - }, - "16": { - "start": { - "line": 57, - "column": 2 - }, - "end": { - "line": 69, - "column": 5 - } - }, - "17": { - "start": { - "line": 61, - "column": 4 - }, - "end": { - "line": 61, - "column": 191 - } - }, - "18": { - "start": { - "line": 62, - "column": 4 - }, - "end": { - "line": 68, - "column": 7 - } - }, - "19": { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 15 - } - }, - "20": { - "start": { - "line": 64, - "column": 8 - }, - "end": { - "line": 64, - "column": 15 - } - }, - "21": { - "start": { - "line": 65, - "column": 32 - }, - "end": { - "line": 65, - "column": 115 - } - }, - "22": { - "start": { - "line": 66, - "column": 6 - }, - "end": { - "line": 67, - "column": 54 - } - }, - "23": { - "start": { - "line": 67, - "column": 8 - }, - "end": { - "line": 67, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "AlertIcon", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 25 - } - }, - "loc": { - "start": { - "line": 19, - "column": 3 - }, - "end": { - "line": 50, - "column": 1 - } - }, - "line": 19 - }, - "2": { - "name": "getAlertIcon", - "decl": { - "start": { - "line": 42, - "column": 11 - }, - "end": { - "line": 42, - "column": 23 - } - }, - "loc": { - "start": { - "line": 42, - "column": 34 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "line": 42 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 60, - "column": 9 - }, - "end": { - "line": 60, - "column": 10 - } - }, - "loc": { - "start": { - "line": 60, - "column": 29 - }, - "end": { - "line": 69, - "column": 3 - } - }, - "line": 60 - }, - "4": { - "name": "(anonymous_4)", - "decl": { - "start": { - "line": 62, - "column": 27 - }, - "end": { - "line": 62, - "column": 28 - } - }, - "loc": { - "start": { - "line": 62, - "column": 44 - }, - "end": { - "line": 68, - "column": 5 - } - }, - "line": 62 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 54, - "column": 0 - }, - "end": { - "line": 70, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 54, - "column": 0 - }, - "end": { - "line": 70, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 54 - }, - "3": { - "loc": { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 63 - }, - "4": { - "loc": { - "start": { - "line": 66, - "column": 6 - }, - "end": { - "line": 67, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 66, - "column": 6 - }, - "end": { - "line": 67, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 66 - } - }, - "s": { - "0": 48, - "1": 48, - "2": 0, - "3": 48, - "4": 48, - "5": 48, - "6": 48, - "7": 48, - "8": 210, - "9": 210, - "10": 210, - "11": 48, - "12": 48, - "13": 48, - "14": 48, - "15": 48, - "16": 48, - "17": 48, - "18": 48, - "19": 0, - "20": 0, - "21": 0, - "22": 0, - "23": 0 - }, - "f": { - "0": 48, - "1": 210, - "2": 210, - "3": 48, - "4": 0 - }, - "b": { - "0": [48, 0], - "1": [0, 48], - "2": [48, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAgBa;AAhBb,2BAAqB;AAAwB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAC7C,SACEA,iBACAC,uBACAC,yBACAC,sBACK;AAKA,gBAASC,UAAU;AAAA,EAAEC;AAAwB,GAAG;AAIrD,QAAMC,cAA0B;AAAA,IAC9BC,SAAS,uBAAC,qBAAD;AAAA;AAAA;AAAA;AAAA,WAAiB;AAAA,IAC1BC,MAAM,uBAAC,oBAAD;AAAA;AAAA;AAAA;AAAA,WAAgB;AAAA,IACtBC,SAAS,uBAAC,6BAAD;AAAA;AAAA;AAAA;AAAA,WAAyB;AAAA,IAClCC,QAAQ,uBAAC,2BAAD;AAAA;AAAA;AAAA;AAAA,WAAuB;AAAA,EACjC;AACA,WAASC,aAAaN,UAAoC;AACxD,WAAOC,YAAYD,QAAO;AAAA,EAC5B;AACA,SACE,uBAAC,UAAK,MAAK,OAAM,cAAa,cAAaA,WACxCM,uBAAaN,OAAO,KADvB;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACO,KAlBeR;AAAS;AAAAS", - "names": [ - "CheckCircleFill", - "ExclamationCircleFill", - "ExclamationTriangleFill", - "InfoCircleFill", - "AlertIcon", - "variant", - "ALERT_ICONS", - "success", - "info", - "warning", - "danger", - "getAlertIcon", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertIcon.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertIcon.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "2c2b61d0392379092a649583d808d05bc13bdaea" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertLink.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertLink.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 165 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 15 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 30 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 191 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "AlertLink", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 25 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 48, - "1": 48, - "2": 0, - "3": 48, - "4": 48, - "5": 48, - "6": 48, - "7": 48, - "8": 42, - "9": 48, - "10": 48, - "11": 48, - "12": 48, - "13": 48, - "14": 48, - "15": 48, - "16": 48, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 48, - "1": 42, - "2": 48, - "3": 0 - }, - "b": { - "0": [48, 0], - "1": [0, 48], - "2": [48, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAQS;AART,2BAAyB;AAAQ;AAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAO3C,gBAASA,UAAU;AAAA,EAAEC;AAAAA,EAAMC;AAAqB,GAAG;AACxD,SAAO,uBAAC,QAAQ,MAAR,EAAa,MAAaD,kBAA3B;AAAA;AAAA;AAAA;AAAA,SAAgC;AACzC;AAACE,KAFeH;AAAS;AAAAI", - "names": ["AlertLink", "link", "href", "_c", "$RefreshReg$"], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertLink.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertLink.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "673cfca57087b625bebd9db6bc80bea9a6ecaf80" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/Alert.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/Alert.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 161 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 16, - "column": 9 - }, - "end": { - "line": 16, - "column": 23 - } - }, - "9": { - "start": { - "line": 27, - "column": 2 - }, - "end": { - "line": 27, - "column": 7 - } - }, - "10": { - "start": { - "line": 28, - "column": 25 - }, - "end": { - "line": 33, - "column": 3 - } - }, - "11": { - "start": { - "line": 34, - "column": 26 - }, - "end": { - "line": 34, - "column": 40 - } - }, - "12": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 54 - } - }, - "13": { - "start": { - "line": 38, - "column": 18 - }, - "end": { - "line": 38, - "column": 57 - } - }, - "14": { - "start": { - "line": 39, - "column": 2 - }, - "end": { - "line": 61, - "column": 11 - } - }, - "15": { - "start": { - "line": 39, - "column": 120 - }, - "end": { - "line": 39, - "column": 134 - } - }, - "16": { - "start": { - "line": 63, - "column": 0 - }, - "end": { - "line": 63, - "column": 42 - } - }, - "17": { - "start": { - "line": 64, - "column": 0 - }, - "end": { - "line": 64, - "column": 11 - } - }, - "18": { - "start": { - "line": 65, - "column": 0 - }, - "end": { - "line": 65, - "column": 23 - } - }, - "19": { - "start": { - "line": 68, - "column": 0 - }, - "end": { - "line": 68, - "column": 26 - } - }, - "20": { - "start": { - "line": 69, - "column": 0 - }, - "end": { - "line": 85, - "column": 1 - } - }, - "21": { - "start": { - "line": 70, - "column": 2 - }, - "end": { - "line": 70, - "column": 39 - } - }, - "22": { - "start": { - "line": 71, - "column": 2 - }, - "end": { - "line": 71, - "column": 39 - } - }, - "23": { - "start": { - "line": 72, - "column": 2 - }, - "end": { - "line": 84, - "column": 5 - } - }, - "24": { - "start": { - "line": 76, - "column": 4 - }, - "end": { - "line": 76, - "column": 187 - } - }, - "25": { - "start": { - "line": 77, - "column": 4 - }, - "end": { - "line": 83, - "column": 7 - } - }, - "26": { - "start": { - "line": 78, - "column": 6 - }, - "end": { - "line": 79, - "column": 15 - } - }, - "27": { - "start": { - "line": 79, - "column": 8 - }, - "end": { - "line": 79, - "column": 15 - } - }, - "28": { - "start": { - "line": 80, - "column": 32 - }, - "end": { - "line": 80, - "column": 115 - } - }, - "29": { - "start": { - "line": 81, - "column": 6 - }, - "end": { - "line": 82, - "column": 54 - } - }, - "30": { - "start": { - "line": 82, - "column": 8 - }, - "end": { - "line": 82, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Alert", - "decl": { - "start": { - "line": 21, - "column": 9 - }, - "end": { - "line": 21, - "column": 14 - } - }, - "loc": { - "start": { - "line": 26, - "column": 3 - }, - "end": { - "line": 62, - "column": 1 - } - }, - "line": 26 - }, - "2": { - "name": "getAlertHeading", - "decl": { - "start": { - "line": 35, - "column": 11 - }, - "end": { - "line": 35, - "column": 26 - } - }, - "loc": { - "start": { - "line": 35, - "column": 53 - }, - "end": { - "line": 37, - "column": 3 - } - }, - "line": 35 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 39, - "column": 114 - }, - "end": { - "line": 39, - "column": 115 - } - }, - "loc": { - "start": { - "line": 39, - "column": 120 - }, - "end": { - "line": 39, - "column": 134 - } - }, - "line": 39 - }, - "4": { - "name": "(anonymous_4)", - "decl": { - "start": { - "line": 75, - "column": 9 - }, - "end": { - "line": 75, - "column": 10 - } - }, - "loc": { - "start": { - "line": 75, - "column": 29 - }, - "end": { - "line": 84, - "column": 3 - } - }, - "line": 75 - }, - "5": { - "name": "(anonymous_5)", - "decl": { - "start": { - "line": 77, - "column": 27 - }, - "end": { - "line": 77, - "column": 28 - } - }, - "loc": { - "start": { - "line": 77, - "column": 44 - }, - "end": { - "line": 83, - "column": 5 - } - }, - "line": 77 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 23, - "column": 2 - }, - "end": { - "line": 23, - "column": 20 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 23, - "column": 16 - }, - "end": { - "line": 23, - "column": 20 - } - } - ], - "line": 23 - }, - "3": { - "loc": { - "start": { - "line": 36, - "column": 11 - }, - "end": { - "line": 36, - "column": 53 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 36, - "column": 11 - }, - "end": { - "line": 36, - "column": 25 - } - }, - { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 36, - "column": 53 - } - } - ], - "line": 36 - }, - "4": { - "loc": { - "start": { - "line": 39, - "column": 54 - }, - "end": { - "line": 57, - "column": 10 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 39, - "column": 54 - }, - "end": { - "line": 39, - "column": 58 - } - }, - { - "start": { - "line": 39, - "column": 78 - }, - "end": { - "line": 57, - "column": 10 - } - } - ], - "line": 39 - }, - "5": { - "loc": { - "start": { - "line": 69, - "column": 0 - }, - "end": { - "line": 85, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 69, - "column": 0 - }, - "end": { - "line": 85, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 69 - }, - "6": { - "loc": { - "start": { - "line": 78, - "column": 6 - }, - "end": { - "line": 79, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 78, - "column": 6 - }, - "end": { - "line": 79, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 78 - }, - "7": { - "loc": { - "start": { - "line": 81, - "column": 6 - }, - "end": { - "line": 82, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 81, - "column": 6 - }, - "end": { - "line": 82, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 81 - } - }, - "s": { - "0": 48, - "1": 48, - "2": 0, - "3": 48, - "4": 48, - "5": 48, - "6": 48, - "7": 48, - "8": 48, - "9": 228, - "10": 228, - "11": 228, - "12": 228, - "13": 228, - "14": 228, - "15": 18, - "16": 48, - "17": 48, - "18": 48, - "19": 48, - "20": 48, - "21": 48, - "22": 48, - "23": 48, - "24": 48, - "25": 48, - "26": 0, - "27": 0, - "28": 0, - "29": 0, - "30": 0 - }, - "f": { - "0": 48, - "1": 228, - "2": 228, - "3": 18, - "4": 48, - "5": 0 - }, - "b": { - "0": [48, 0], - "1": [0, 48], - "2": [216], - "3": [228, 228], - "4": [228, 210], - "5": [48, 0], - "6": [0, 0], - "7": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAgCI,mBAGM,cAHN;;;;;;;;;;;;;;;;AAhCJ,SAASA,SAASC,eAAe;AAEjC,SAASC,iBAAiB;AAC1B,SAAoBC,gBAAgB;AACpC,SAASC,iBAAiB;AAS1B,SAASJ,MAAM;AAAA,EAAEK;AAAAA,EAASC,cAAc;AAAA,EAAMC;AAAAA,EAAeC;AAAqB,GAAG;AAAAC;AAKnF,QAAMC,iBAAgC;AAAA,IACpCC,SAAS;AAAA,IACTC,MAAM;AAAA,IACNC,SAAS;AAAA,IACTC,QAAQ;AAAA,EACV;AACA,QAAM,CAACC,MAAMC,OAAO,IAAIb,SAAS,IAAI;AAErC,WAASc,gBAAgBZ,UAAuBE,gBAAgC;AAC9E,WAAOA,kBAAiBG,eAAeL,QAAO;AAAA,EAChD;AACA,QAAMa,UAAUD,gBAAgBZ,SAASE,aAAa;AAEtD,SACE,mCACGQ,kBACC,uBAAC,WAAQ,SAAkB,SAAS,MAAMC,QAAQ,KAAK,GAAG,aACxD;AAAA,2BAAC,aAAU,WAAX;AAAA;AAAA;AAAA;AAAA,WAA4B;AAAA;AAAA,IAE5B,uBAAC,OAAGE,qBAAJ;AAAA;AAAA;AAAA;AAAA,WAAY;AAAA,IAAI;AAAA,IAAIV;AAAAA,OAHtB;AAAA;AAAA;AAAA;AAAA,SAIA,KANJ;AAAA;AAAA;AAAA;AAAA,SAQA;AAEJ;AAACC,GA7BQT,OAAK;AAAAmB,KAALnB;AA8BTA,MAAMoB,OAAOhB;AAEb,SAASJ;AAAO;AAAAqB", - "names": [ - "Alert", - "AlertBS", - "AlertIcon", - "useState", - "AlertLink", - "variant", - "dismissible", - "customHeading", - "children", - "_s", - "ALERT_HEADINGS", - "success", - "info", - "warning", - "danger", - "show", - "setShow", - "getAlertHeading", - "heading", - "_c", - "Link", - "$RefreshReg$" - ], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/Alert.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/Alert.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "98f25c3fe80df4c40c2298a7cafd19641fe53328" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/badge/Badge.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/badge/Badge.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 161 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 26, - "column": 11 - } - }, - "9": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 11 - } - }, - "10": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 30, - "column": 26 - } - }, - "11": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "12": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "13": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 33, - "column": 39 - } - }, - "14": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 46, - "column": 5 - } - }, - "15": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 38, - "column": 187 - } - }, - "16": { - "start": { - "line": 39, - "column": 4 - }, - "end": { - "line": 45, - "column": 7 - } - }, - "17": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "18": { - "start": { - "line": 41, - "column": 8 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "19": { - "start": { - "line": 42, - "column": 32 - }, - "end": { - "line": 42, - "column": 115 - } - }, - "20": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - "21": { - "start": { - "line": 44, - "column": 8 - }, - "end": { - "line": 44, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Badge", - "decl": { - "start": { - "line": 18, - "column": 16 - }, - "end": { - "line": 18, - "column": 21 - } - }, - "loc": { - "start": { - "line": 21, - "column": 3 - }, - "end": { - "line": 27, - "column": 1 - } - }, - "line": 21 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 37, - "column": 9 - }, - "end": { - "line": 37, - "column": 10 - } - }, - "loc": { - "start": { - "line": 37, - "column": 29 - }, - "end": { - "line": 46, - "column": 3 - } - }, - "line": 37 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 39, - "column": 27 - }, - "end": { - "line": 39, - "column": 28 - } - }, - "loc": { - "start": { - "line": 39, - "column": 44 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "line": 39 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 19, - "column": 2 - }, - "end": { - "line": 19, - "column": 23 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 19, - "column": 12 - }, - "end": { - "line": 19, - "column": 23 - } - } - ], - "line": 19 - }, - "3": { - "loc": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 31 - }, - "4": { - "loc": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 40 - }, - "5": { - "loc": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 43 - } - }, - "s": { - "0": 24, - "1": 24, - "2": 0, - "3": 24, - "4": 24, - "5": 24, - "6": 24, - "7": 24, - "8": 54, - "9": 24, - "10": 24, - "11": 24, - "12": 24, - "13": 24, - "14": 24, - "15": 24, - "16": 24, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 24, - "1": 54, - "2": 24, - "3": 0 - }, - "b": { - "0": [24, 0], - "1": [0, 24], - "2": [12], - "3": [24, 0], - "4": [0, 0], - "5": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAWI;AAXJ,2BAAyB;AAAQ;AAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAElD,OAAOA,YAAY;AAOZ,gBAASC,MAAM;AAAA,EAAEC,UAAU;AAAA,EAAaC;AAAqB,GAAG;AACrE,SACE,uBAAC,WAAQ,IAAID,SAAS,WAAWF,OAAOE,OAAO,GAC5CC,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACC,KANeH;AAAK;AAAAI", - "names": ["styles", "Badge", "variant", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/badge/Badge.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/badge/Badge.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "6f3954ab130dcf5125b4d76dd03f592f1d89112a" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/breadcrumb/BreadcrumbItem.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/breadcrumb/BreadcrumbItem.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 175 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 26, - "column": 11 - } - }, - "9": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 20 - } - }, - "10": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 30, - "column": 35 - } - }, - "11": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "12": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "13": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 33, - "column": 39 - } - }, - "14": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 46, - "column": 5 - } - }, - "15": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 38, - "column": 201 - } - }, - "16": { - "start": { - "line": 39, - "column": 4 - }, - "end": { - "line": 45, - "column": 7 - } - }, - "17": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "18": { - "start": { - "line": 41, - "column": 8 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "19": { - "start": { - "line": 42, - "column": 32 - }, - "end": { - "line": 42, - "column": 115 - } - }, - "20": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - "21": { - "start": { - "line": 44, - "column": 8 - }, - "end": { - "line": 44, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "BreadcrumbItem", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 30 - } - }, - "loc": { - "start": { - "line": 21, - "column": 3 - }, - "end": { - "line": 27, - "column": 1 - } - }, - "line": 21 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 37, - "column": 9 - }, - "end": { - "line": 37, - "column": 10 - } - }, - "loc": { - "start": { - "line": 37, - "column": 29 - }, - "end": { - "line": 46, - "column": 3 - } - }, - "line": 37 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 39, - "column": 27 - }, - "end": { - "line": 39, - "column": 28 - } - }, - "loc": { - "start": { - "line": 39, - "column": 44 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "line": 39 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 31 - }, - "3": { - "loc": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 40 - }, - "4": { - "loc": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 43 - } - }, - "s": { - "0": 48, - "1": 48, - "2": 0, - "3": 48, - "4": 48, - "5": 48, - "6": 48, - "7": 48, - "8": 54, - "9": 48, - "10": 48, - "11": 48, - "12": 48, - "13": 48, - "14": 48, - "15": 48, - "16": 48, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 48, - "1": 54, - "2": 48, - "3": 0 - }, - "b": { - "0": [48, 0], - "1": [0, 48], - "2": [48, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AASI;AATJ,2BAA2BA;AAAgB;AAAQ,IAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAO7D,gBAASC,eAAe;AAAA,EAAEC;AAAAA,EAAMC;AAAAA,EAAQC;AAAiD,GAAG;AACjG,SACE,uBAAC,oBAAiB,MAAY,QAC3BA,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACC,KANeJ;AAAc;AAAAK", - "names": [ - "BreadcrumbItemBS", - "BreadcrumbItem", - "href", - "active", - "children", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/breadcrumb/BreadcrumbItem.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/breadcrumb/BreadcrumbItem.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "1ef7f7adb5e40ffd1c2c92971e4f314209bc87d1" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/breadcrumb/Breadcrumb.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/breadcrumb/Breadcrumb.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 171 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 16 - } - }, - "10": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 33 - } - }, - "11": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 31, - "column": 31 - } - }, - "12": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 48, - "column": 1 - } - }, - "13": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 33, - "column": 39 - } - }, - "14": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 34, - "column": 39 - } - }, - "15": { - "start": { - "line": 35, - "column": 2 - }, - "end": { - "line": 47, - "column": 5 - } - }, - "16": { - "start": { - "line": 39, - "column": 4 - }, - "end": { - "line": 39, - "column": 197 - } - }, - "17": { - "start": { - "line": 40, - "column": 4 - }, - "end": { - "line": 46, - "column": 7 - } - }, - "18": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 15 - } - }, - "19": { - "start": { - "line": 42, - "column": 8 - }, - "end": { - "line": 42, - "column": 15 - } - }, - "20": { - "start": { - "line": 43, - "column": 32 - }, - "end": { - "line": 43, - "column": 115 - } - }, - "21": { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 54 - } - }, - "22": { - "start": { - "line": 45, - "column": 8 - }, - "end": { - "line": 45, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Breadcrumb", - "decl": { - "start": { - "line": 18, - "column": 9 - }, - "end": { - "line": 18, - "column": 19 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 38, - "column": 9 - }, - "end": { - "line": 38, - "column": 10 - } - }, - "loc": { - "start": { - "line": 38, - "column": 29 - }, - "end": { - "line": 47, - "column": 3 - } - }, - "line": 38 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 40, - "column": 27 - }, - "end": { - "line": 40, - "column": 28 - } - }, - "loc": { - "start": { - "line": 40, - "column": 44 - }, - "end": { - "line": 46, - "column": 5 - } - }, - "line": 40 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 48, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 48, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 32 - }, - "3": { - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - }, - "4": { - "loc": { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 44 - } - }, - "s": { - "0": 24, - "1": 24, - "2": 0, - "3": 24, - "4": 24, - "5": 24, - "6": 24, - "7": 24, - "8": 54, - "9": 24, - "10": 24, - "11": 24, - "12": 24, - "13": 24, - "14": 24, - "15": 24, - "16": 24, - "17": 24, - "18": 0, - "19": 0, - "20": 0, - "21": 0, - "22": 0 - }, - "f": { - "0": 24, - "1": 54, - "2": 24, - "3": 0 - }, - "b": { - "0": [24, 0], - "1": [0, 24], - "2": [24, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAKS;AALT,2BAAuBA;AAAoB;AAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAE5D,SAASC,sBAAsB;AAE/B,SAASC,WAAW;AAAA,EAAEC;AAA4B,GAAG;AACnD,SAAO,uBAAC,gBAAcA,YAAf;AAAA;AAAA;AAAA;AAAA,SAAwB;AACjC;AAACC,KAFQF;AAITA,WAAWG,OAAOJ;AAElB,SAASC;AAAY;AAAAI", - "names": [ - "BreadcrumbBS", - "BreadcrumbItem", - "Breadcrumb", - "children", - "_c", - "Item", - "$RefreshReg$" - ], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/breadcrumb/Breadcrumb.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/breadcrumb/Breadcrumb.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "d6dac3f2eb2d32791bc2de486f603a34873c9b4a" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button-group/ButtonGroup.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button-group/ButtonGroup.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 174 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 17 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 32 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 200 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "ButtonGroup", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 27 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 60, - "1": 60, - "2": 0, - "3": 60, - "4": 60, - "5": 60, - "6": 60, - "7": 60, - "8": 72, - "9": 60, - "10": 60, - "11": 60, - "12": 60, - "13": 60, - "14": 60, - "15": 60, - "16": 60, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 60, - "1": 72, - "2": 60, - "3": 0 - }, - "b": { - "0": [60, 0], - "1": [0, 60], - "2": [60, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAQS;AART,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,eAAeC,qBAAqB;AAMtC,gBAASD,YAAY;AAAA,EAAEE;AAAAA,EAAUC;AAA8C,GAAG;AACvF,SAAO,uBAAC,iBAAc,UAAqBA,YAApC;AAAA;AAAA;AAAA;AAAA,SAA6C;AACtD;AAACC,KAFeJ;AAAW;AAAAK", - "names": ["ButtonGroup", "ButtonGroupBS", "vertical", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button-group/ButtonGroup.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button-group/ButtonGroup.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "60f614e35cb433e565018ab43c7ef3ad5b47d5c8" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button/Button.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button/Button.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 163 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 26, - "column": 23 - }, - "end": { - "line": 26, - "column": 56 - } - }, - "9": { - "start": { - "line": 27, - "column": 22 - }, - "end": { - "line": 27, - "column": 60 - } - }, - "10": { - "start": { - "line": 28, - "column": 2 - }, - "end": { - "line": 39, - "column": 11 - } - }, - "11": { - "start": { - "line": 41, - "column": 0 - }, - "end": { - "line": 41, - "column": 12 - } - }, - "12": { - "start": { - "line": 43, - "column": 0 - }, - "end": { - "line": 43, - "column": 27 - } - }, - "13": { - "start": { - "line": 44, - "column": 0 - }, - "end": { - "line": 60, - "column": 1 - } - }, - "14": { - "start": { - "line": 45, - "column": 2 - }, - "end": { - "line": 45, - "column": 39 - } - }, - "15": { - "start": { - "line": 46, - "column": 2 - }, - "end": { - "line": 46, - "column": 39 - } - }, - "16": { - "start": { - "line": 47, - "column": 2 - }, - "end": { - "line": 59, - "column": 5 - } - }, - "17": { - "start": { - "line": 51, - "column": 4 - }, - "end": { - "line": 51, - "column": 189 - } - }, - "18": { - "start": { - "line": 52, - "column": 4 - }, - "end": { - "line": 58, - "column": 7 - } - }, - "19": { - "start": { - "line": 53, - "column": 6 - }, - "end": { - "line": 54, - "column": 15 - } - }, - "20": { - "start": { - "line": 54, - "column": 8 - }, - "end": { - "line": 54, - "column": 15 - } - }, - "21": { - "start": { - "line": 55, - "column": 32 - }, - "end": { - "line": 55, - "column": 115 - } - }, - "22": { - "start": { - "line": 56, - "column": 6 - }, - "end": { - "line": 57, - "column": 54 - } - }, - "23": { - "start": { - "line": 57, - "column": 8 - }, - "end": { - "line": 57, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Button", - "decl": { - "start": { - "line": 18, - "column": 16 - }, - "end": { - "line": 18, - "column": 22 - } - }, - "loc": { - "start": { - "line": 25, - "column": 3 - }, - "end": { - "line": 40, - "column": 1 - } - }, - "line": 25 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 50, - "column": 9 - }, - "end": { - "line": 50, - "column": 10 - } - }, - "loc": { - "start": { - "line": 50, - "column": 29 - }, - "end": { - "line": 59, - "column": 3 - } - }, - "line": 50 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 52, - "column": 27 - }, - "end": { - "line": 52, - "column": 28 - } - }, - "loc": { - "start": { - "line": 52, - "column": 44 - }, - "end": { - "line": 58, - "column": 5 - } - }, - "line": 52 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 19, - "column": 2 - }, - "end": { - "line": 19, - "column": 21 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 19, - "column": 12 - }, - "end": { - "line": 19, - "column": 21 - } - } - ], - "line": 19 - }, - "3": { - "loc": { - "start": { - "line": 20, - "column": 2 - }, - "end": { - "line": 20, - "column": 18 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 20, - "column": 13 - }, - "end": { - "line": 20, - "column": 18 - } - } - ], - "line": 20 - }, - "4": { - "loc": { - "start": { - "line": 26, - "column": 23 - }, - "end": { - "line": 26, - "column": 56 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 26, - "column": 37 - }, - "end": { - "line": 26, - "column": 51 - } - }, - { - "start": { - "line": 26, - "column": 54 - }, - "end": { - "line": 26, - "column": 56 - } - } - ], - "line": 26 - }, - "5": { - "loc": { - "start": { - "line": 27, - "column": 22 - }, - "end": { - "line": 27, - "column": 60 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 27, - "column": 42 - }, - "end": { - "line": 27, - "column": 55 - } - }, - { - "start": { - "line": 27, - "column": 58 - }, - "end": { - "line": 27, - "column": 60 - } - } - ], - "line": 27 - }, - "6": { - "loc": { - "start": { - "line": 28, - "column": 107 - }, - "end": { - "line": 28, - "column": 134 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 28, - "column": 118 - }, - "end": { - "line": 28, - "column": 124 - } - }, - { - "start": { - "line": 28, - "column": 127 - }, - "end": { - "line": 28, - "column": 134 - } - } - ], - "line": 28 - }, - "7": { - "loc": { - "start": { - "line": 29, - "column": 4 - }, - "end": { - "line": 33, - "column": 12 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 29, - "column": 4 - }, - "end": { - "line": 29, - "column": 8 - } - }, - { - "start": { - "line": 29, - "column": 28 - }, - "end": { - "line": 33, - "column": 12 - } - } - ], - "line": 29 - }, - "8": { - "loc": { - "start": { - "line": 44, - "column": 0 - }, - "end": { - "line": 60, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 44, - "column": 0 - }, - "end": { - "line": 60, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 44 - }, - "9": { - "loc": { - "start": { - "line": 53, - "column": 6 - }, - "end": { - "line": 54, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 53, - "column": 6 - }, - "end": { - "line": 54, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 53 - }, - "10": { - "loc": { - "start": { - "line": 56, - "column": 6 - }, - "end": { - "line": 57, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 56, - "column": 6 - }, - "end": { - "line": 57, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 56 - } - }, - "s": { - "0": 114, - "1": 114, - "2": 0, - "3": 114, - "4": 114, - "5": 114, - "6": 114, - "7": 114, - "8": 228, - "9": 228, - "10": 228, - "11": 114, - "12": 114, - "13": 114, - "14": 114, - "15": 114, - "16": 114, - "17": 114, - "18": 114, - "19": 0, - "20": 0, - "21": 0, - "22": 0, - "23": 0 - }, - "f": { - "0": 114, - "1": 228, - "2": 114, - "3": 0 - }, - "b": { - "0": [114, 0], - "1": [0, 114], - "2": [168], - "3": [198], - "4": [12, 216], - "5": [228, 0], - "6": [30, 198], - "7": [228, 30], - "8": [114, 0], - "9": [0, 0], - "10": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAkCe;AAlCf,2BAAqBA;AAAwB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAC7C,OAAOC,YAAY;AACnB,SAASC,UAAUC,gBAAgB;AAc5B,gBAASD,OAAO;AAAA,EACrBE,UAAU;AAAA,EACVC,WAAW;AAAA,EACXC;AAAAA,EACAC;AAAAA,EACAC;AAAAA,EACAC;AACW,GAAG;AACd,QAAMC,eAAeF,cAAcP,OAAOU,UAAU;AACpD,QAAMC,cAAcR,WAAW,SAASH,OAAOY,SAAS;AAExD,SACE,uBAAC,YACC,WAAY,GAAEH,gBAAgBE,eAC9B,SACA,SAASP,WAAWS,SAAYR,SAChC,UACA,iBAAeD,UACdE;AAAAA,YAAQ,uBAAC,UAAK,WAAY,GAAEN,OAAOM,QAAQA,QAAQ,MAAK,OAAM,cAAYA,QAAlE;AAAA;AAAA;AAAA;AAAA,WAAwE;AAAA,IAChFE;AAAAA,OAPH;AAAA;AAAA;AAAA;AAAA,SAQA;AAEJ;AAACM,KAtBeb;AAAM;AAAAc", - "names": [ - "ReactNode", - "styles", - "Button", - "ButtonBS", - "variant", - "disabled", - "onClick", - "icon", - "withSpacing", - "children", - "spacingClass", - "spacing", - "borderClass", - "border", - "undefined", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button/Button.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button/Button.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "b4ec7a70447ce94ff95cb9d42b16890b42c0c918" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/Icon.enum.ts": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/Icon.enum.ts", - "statementMap": { - "0": { - "start": { - "line": 1, - "column": 34 - }, - "end": { - "line": 18, - "column": 14 - } - }, - "1": { - "start": { - "line": 2, - "column": 2 - }, - "end": { - "line": 2, - "column": 32 - } - }, - "2": { - "start": { - "line": 3, - "column": 2 - }, - "end": { - "line": 3, - "column": 32 - } - }, - "3": { - "start": { - "line": 4, - "column": 2 - }, - "end": { - "line": 4, - "column": 30 - } - }, - "4": { - "start": { - "line": 5, - "column": 2 - }, - "end": { - "line": 5, - "column": 42 - } - }, - "5": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 6, - "column": 36 - } - }, - "6": { - "start": { - "line": 7, - "column": 2 - }, - "end": { - "line": 7, - "column": 38 - } - }, - "7": { - "start": { - "line": 8, - "column": 2 - }, - "end": { - "line": 8, - "column": 30 - } - }, - "8": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 36 - } - }, - "9": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 32 - } - }, - "10": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 11, - "column": 36 - } - }, - "11": { - "start": { - "line": 12, - "column": 2 - }, - "end": { - "line": 12, - "column": 32 - } - }, - "12": { - "start": { - "line": 13, - "column": 2 - }, - "end": { - "line": 13, - "column": 36 - } - }, - "13": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 36 - } - }, - "14": { - "start": { - "line": 15, - "column": 2 - }, - "end": { - "line": 15, - "column": 34 - } - }, - "15": { - "start": { - "line": 16, - "column": 2 - }, - "end": { - "line": 16, - "column": 32 - } - }, - "16": { - "start": { - "line": 17, - "column": 2 - }, - "end": { - "line": 17, - "column": 15 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 1, - "column": 35 - }, - "end": { - "line": 1, - "column": 36 - } - }, - "loc": { - "start": { - "line": 1, - "column": 46 - }, - "end": { - "line": 18, - "column": 1 - } - }, - "line": 1 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 18, - "column": 3 - }, - "end": { - "line": 18, - "column": 13 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 18, - "column": 3 - }, - "end": { - "line": 18, - "column": 7 - } - }, - { - "start": { - "line": 18, - "column": 11 - }, - "end": { - "line": 18, - "column": 13 - } - } - ], - "line": 18 - } - }, - "s": { - "0": 72, - "1": 72, - "2": 72, - "3": 72, - "4": 72, - "5": 72, - "6": 72, - "7": 72, - "8": 72, - "9": 72, - "10": 72, - "11": 72, - "12": 72, - "13": 72, - "14": 72, - "15": 72, - "16": 72 - }, - "f": { - "0": 72 - }, - "b": { - "0": [72, 72] - }, - "inputSourceMap": { - "version": 3, - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/Icon.enum.ts" - ], - "mappings": "AAAO,WAAK,OAAL,kBAAKA,UAAL;AACL,EAAAA,MAAA,WAAQ;AACR,EAAAA,MAAA,WAAQ;AACR,EAAAA,MAAA,UAAO;AACP,EAAAA,MAAA,gBAAa;AACb,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,cAAW;AACX,EAAAA,MAAA,UAAO;AACP,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,WAAQ;AACR,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,WAAQ;AACR,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,YAAS;AACT,EAAAA,MAAA,WAAQ;AAfE,SAAAA;AAAA,GAAA;", - "names": ["Icon"] - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "b78edd9833a53d808db45f27c95e691a3e8867ff" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/dropdown-button/DropdownButton.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/dropdown-button/DropdownButton.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 180 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 28, - "column": 23 - }, - "end": { - "line": 28, - "column": 56 - } - }, - "9": { - "start": { - "line": 29, - "column": 2 - }, - "end": { - "line": 44, - "column": 11 - } - }, - "10": { - "start": { - "line": 46, - "column": 0 - }, - "end": { - "line": 46, - "column": 20 - } - }, - "11": { - "start": { - "line": 48, - "column": 0 - }, - "end": { - "line": 48, - "column": 35 - } - }, - "12": { - "start": { - "line": 49, - "column": 0 - }, - "end": { - "line": 65, - "column": 1 - } - }, - "13": { - "start": { - "line": 50, - "column": 2 - }, - "end": { - "line": 50, - "column": 39 - } - }, - "14": { - "start": { - "line": 51, - "column": 2 - }, - "end": { - "line": 51, - "column": 39 - } - }, - "15": { - "start": { - "line": 52, - "column": 2 - }, - "end": { - "line": 64, - "column": 5 - } - }, - "16": { - "start": { - "line": 56, - "column": 4 - }, - "end": { - "line": 56, - "column": 206 - } - }, - "17": { - "start": { - "line": 57, - "column": 4 - }, - "end": { - "line": 63, - "column": 7 - } - }, - "18": { - "start": { - "line": 58, - "column": 6 - }, - "end": { - "line": 59, - "column": 15 - } - }, - "19": { - "start": { - "line": 59, - "column": 8 - }, - "end": { - "line": 59, - "column": 15 - } - }, - "20": { - "start": { - "line": 60, - "column": 32 - }, - "end": { - "line": 60, - "column": 115 - } - }, - "21": { - "start": { - "line": 61, - "column": 6 - }, - "end": { - "line": 62, - "column": 54 - } - }, - "22": { - "start": { - "line": 62, - "column": 8 - }, - "end": { - "line": 62, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "DropdownButton", - "decl": { - "start": { - "line": 19, - "column": 16 - }, - "end": { - "line": 19, - "column": 30 - } - }, - "loc": { - "start": { - "line": 27, - "column": 3 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "line": 27 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 55, - "column": 9 - }, - "end": { - "line": 55, - "column": 10 - } - }, - "loc": { - "start": { - "line": 55, - "column": 29 - }, - "end": { - "line": 64, - "column": 3 - } - }, - "line": 55 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 57, - "column": 27 - }, - "end": { - "line": 57, - "column": 28 - } - }, - "loc": { - "start": { - "line": 57, - "column": 44 - }, - "end": { - "line": 63, - "column": 5 - } - }, - "line": 57 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 22, - "column": 21 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 22, - "column": 12 - }, - "end": { - "line": 22, - "column": 21 - } - } - ], - "line": 22 - }, - "3": { - "loc": { - "start": { - "line": 28, - "column": 23 - }, - "end": { - "line": 28, - "column": 56 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 28, - "column": 37 - }, - "end": { - "line": 28, - "column": 51 - } - }, - { - "start": { - "line": 28, - "column": 54 - }, - "end": { - "line": 28, - "column": 56 - } - } - ], - "line": 28 - }, - "4": { - "loc": { - "start": { - "line": 30, - "column": 4 - }, - "end": { - "line": 34, - "column": 12 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 30, - "column": 4 - }, - "end": { - "line": 30, - "column": 8 - } - }, - { - "start": { - "line": 30, - "column": 28 - }, - "end": { - "line": 34, - "column": 12 - } - } - ], - "line": 30 - }, - "5": { - "loc": { - "start": { - "line": 40, - "column": 25 - }, - "end": { - "line": 40, - "column": 61 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 40, - "column": 41 - }, - "end": { - "line": 40, - "column": 52 - } - }, - { - "start": { - "line": 40, - "column": 55 - }, - "end": { - "line": 40, - "column": 61 - } - } - ], - "line": 40 - }, - "6": { - "loc": { - "start": { - "line": 49, - "column": 0 - }, - "end": { - "line": 65, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 49, - "column": 0 - }, - "end": { - "line": 65, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 49 - }, - "7": { - "loc": { - "start": { - "line": 58, - "column": 6 - }, - "end": { - "line": 59, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 58, - "column": 6 - }, - "end": { - "line": 59, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 58 - }, - "8": { - "loc": { - "start": { - "line": 61, - "column": 6 - }, - "end": { - "line": 62, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 61, - "column": 6 - }, - "end": { - "line": 62, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 61 - } - }, - "s": { - "0": 36, - "1": 36, - "2": 0, - "3": 36, - "4": 36, - "5": 36, - "6": 36, - "7": 36, - "8": 120, - "9": 120, - "10": 36, - "11": 36, - "12": 36, - "13": 36, - "14": 36, - "15": 36, - "16": 36, - "17": 36, - "18": 0, - "19": 0, - "20": 0, - "21": 0, - "22": 0 - }, - "f": { - "0": 36, - "1": 120, - "2": 36, - "3": 0 - }, - "b": { - "0": [36, 0], - "1": [0, 36], - "2": [30], - "3": [12, 108], - "4": [120, 24], - "5": [18, 102], - "6": [36, 0], - "7": [0, 0], - "8": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAkCQ,mBACW,cADX;AAlCR,2BAA2BA;AAAgB;AAAQ,IAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAEpE,OAAOC,YAAY;AAEnB,SAASC,mBAAmB;AAcrB,gBAASC,eAAe;AAAA,EAC7BC;AAAAA,EACAC;AAAAA,EACAC,UAAU;AAAA,EACVC;AAAAA,EACAC;AAAAA,EACAC;AAAAA,EACAC;AACmB,GAAG;AACtB,QAAMC,eAAeH,cAAcP,OAAOW,UAAU;AAEpD,SACE,uBAAC,oBACC,WAAY,GAAED,gBAAgBV,OAAOY,UACrC,IACA,OACE,mCACGN;AAAAA,YAAQ,uBAAC,UAAK,WAAY,GAAEN,OAAOM,QAAQA,QAAQ,MAAK,OAAM,cAAYA,QAAlE;AAAA;AAAA;AAAA;AAAA,WAAwE;AAAA,IAChFF;AAAAA,OAFH;AAAA;AAAA;AAAA;AAAA,SAGA,GAEF,SACA,IAAII,gBAAgBP,cAAcY,QACjCJ,YAXH;AAAA;AAAA;AAAA;AAAA,SAYA;AAEJ;AAACK,KA1BeZ;AAAc;AAAAa", - "names": [ - "DropdownButtonBS", - "styles", - "ButtonGroup", - "DropdownButton", - "id", - "title", - "variant", - "icon", - "withSpacing", - "asButtonGroup", - "children", - "spacingClass", - "spacing", - "border", - "undefined", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/dropdown-button/DropdownButton.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/dropdown-button/DropdownButton.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "6d0c9262cbb95f0cfd97697eb15f78bcd3e92610" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Col.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Col.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 158 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 9 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 24 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 184 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Col", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 19 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 198, - "1": 198, - "2": 0, - "3": 198, - "4": 198, - "5": 198, - "6": 198, - "7": 198, - "8": 882, - "9": 198, - "10": 198, - "11": 198, - "12": 198, - "13": 198, - "14": 198, - "15": 198, - "16": 198, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 198, - "1": 882, - "2": 198, - "3": 0 - }, - "b": { - "0": [198, 0], - "1": [0, 198], - "2": [198, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAqBS;AArBT,2BAAqB;AAAQ,IAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAoBvC,gBAASA,IAAI;AAAA,EAAEC;AAAAA,EAAU,GAAGC;AAAgB,GAAG;AACpD,SAAO,uBAAC,SAAM,GAAIA,OAAQD,YAAnB;AAAA;AAAA;AAAA;AAAA,SAA4B;AACrC;AAACE,KAFeH;AAAG;AAAAI", - "names": ["Col", "children", "props", "_c", "$RefreshReg$"], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Col.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Col.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "a611e45a24cb5828f7f98fff8d961dc45e66efc6" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormElementLayout.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormElementLayout.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 196 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 29, - "column": 11 - } - }, - "9": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 31, - "column": 23 - } - }, - "10": { - "start": { - "line": 33, - "column": 0 - }, - "end": { - "line": 33, - "column": 38 - } - }, - "11": { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 50, - "column": 1 - } - }, - "12": { - "start": { - "line": 35, - "column": 2 - }, - "end": { - "line": 35, - "column": 39 - } - }, - "13": { - "start": { - "line": 36, - "column": 2 - }, - "end": { - "line": 36, - "column": 39 - } - }, - "14": { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 49, - "column": 5 - } - }, - "15": { - "start": { - "line": 41, - "column": 4 - }, - "end": { - "line": 41, - "column": 222 - } - }, - "16": { - "start": { - "line": 42, - "column": 4 - }, - "end": { - "line": 48, - "column": 7 - } - }, - "17": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 15 - } - }, - "18": { - "start": { - "line": 44, - "column": 8 - }, - "end": { - "line": 44, - "column": 15 - } - }, - "19": { - "start": { - "line": 45, - "column": 32 - }, - "end": { - "line": 45, - "column": 115 - } - }, - "20": { - "start": { - "line": 46, - "column": 6 - }, - "end": { - "line": 47, - "column": 54 - } - }, - "21": { - "start": { - "line": 47, - "column": 8 - }, - "end": { - "line": 47, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "FormElementLayout", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 33 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 30, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 40, - "column": 9 - }, - "end": { - "line": 40, - "column": 10 - } - }, - "loc": { - "start": { - "line": 40, - "column": 29 - }, - "end": { - "line": 49, - "column": 3 - } - }, - "line": 40 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 42, - "column": 27 - }, - "end": { - "line": 42, - "column": 28 - } - }, - "loc": { - "start": { - "line": 42, - "column": 44 - }, - "end": { - "line": 48, - "column": 5 - } - }, - "line": 42 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 21, - "column": 9 - }, - "end": { - "line": 29, - "column": 10 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 21, - "column": 53 - }, - "end": { - "line": 25, - "column": 10 - } - }, - { - "start": { - "line": 25, - "column": 29 - }, - "end": { - "line": 29, - "column": 10 - } - } - ], - "line": 21 - }, - "3": { - "loc": { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 50, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 50, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 34 - }, - "4": { - "loc": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 43 - }, - "5": { - "loc": { - "start": { - "line": 46, - "column": 6 - }, - "end": { - "line": 47, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 46, - "column": 6 - }, - "end": { - "line": 47, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 46 - } - }, - "s": { - "0": 198, - "1": 198, - "2": 0, - "3": 198, - "4": 198, - "5": 198, - "6": 198, - "7": 198, - "8": 414, - "9": 198, - "10": 198, - "11": 198, - "12": 198, - "13": 198, - "14": 198, - "15": 198, - "16": 198, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 198, - "1": 414, - "2": 198, - "3": 0 - }, - "b": { - "0": [198, 0], - "1": [0, 198], - "2": [0, 414], - "3": [198, 0], - "4": [0, 0], - "5": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAUqC;AAVrC,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,WAAW;AAKb,gBAASC,kBAAkB;AAAA,EAChCC;AAAAA,EACAC;AAC8C,GAAG;AACjD,SAAOD,4BAA4B,mCAAGC,YAAH;AAAA;AAAA;AAAA;AAAA,SAAY,IAAM,uBAAC,OAAI,IAAI,GAAIA,YAAb;AAAA;AAAA;AAAA;AAAA,SAAsB;AAC7E;AAACC,KALeH;AAAiB;AAAAI", - "names": [ - "Col", - "FormElementLayout", - "withinMultipleFieldsGroup", - "children", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormElementLayout.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormElementLayout.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "4c7450fea073922b8e2d8c6bfd89a12dedaef6be" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormInput.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormInput.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 188 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 25, - "column": 26 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "9": { - "start": { - "line": 28, - "column": 4 - }, - "end": { - "line": 43, - "column": 13 - } - }, - "10": { - "start": { - "line": 45, - "column": 2 - }, - "end": { - "line": 57, - "column": 11 - } - }, - "11": { - "start": { - "line": 59, - "column": 0 - }, - "end": { - "line": 59, - "column": 15 - } - }, - "12": { - "start": { - "line": 61, - "column": 0 - }, - "end": { - "line": 61, - "column": 30 - } - }, - "13": { - "start": { - "line": 62, - "column": 0 - }, - "end": { - "line": 78, - "column": 1 - } - }, - "14": { - "start": { - "line": 63, - "column": 2 - }, - "end": { - "line": 63, - "column": 39 - } - }, - "15": { - "start": { - "line": 64, - "column": 2 - }, - "end": { - "line": 64, - "column": 39 - } - }, - "16": { - "start": { - "line": 65, - "column": 2 - }, - "end": { - "line": 77, - "column": 5 - } - }, - "17": { - "start": { - "line": 69, - "column": 4 - }, - "end": { - "line": 69, - "column": 214 - } - }, - "18": { - "start": { - "line": 70, - "column": 4 - }, - "end": { - "line": 76, - "column": 7 - } - }, - "19": { - "start": { - "line": 71, - "column": 6 - }, - "end": { - "line": 72, - "column": 15 - } - }, - "20": { - "start": { - "line": 72, - "column": 8 - }, - "end": { - "line": 72, - "column": 15 - } - }, - "21": { - "start": { - "line": 73, - "column": 32 - }, - "end": { - "line": 73, - "column": 115 - } - }, - "22": { - "start": { - "line": 74, - "column": 6 - }, - "end": { - "line": 75, - "column": 54 - } - }, - "23": { - "start": { - "line": 75, - "column": 8 - }, - "end": { - "line": 75, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "FormInput", - "decl": { - "start": { - "line": 18, - "column": 16 - }, - "end": { - "line": 18, - "column": 25 - } - }, - "loc": { - "start": { - "line": 24, - "column": 3 - }, - "end": { - "line": 58, - "column": 1 - } - }, - "line": 24 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 25, - "column": 26 - }, - "end": { - "line": 25, - "column": 27 - } - }, - "loc": { - "start": { - "line": 27, - "column": 8 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "line": 27 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 68, - "column": 9 - }, - "end": { - "line": 68, - "column": 10 - } - }, - "loc": { - "start": { - "line": 68, - "column": 29 - }, - "end": { - "line": 77, - "column": 3 - } - }, - "line": 68 - }, - "4": { - "name": "(anonymous_4)", - "decl": { - "start": { - "line": 70, - "column": 27 - }, - "end": { - "line": 70, - "column": 28 - } - }, - "loc": { - "start": { - "line": 70, - "column": 44 - }, - "end": { - "line": 76, - "column": 5 - } - }, - "line": 70 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 19, - "column": 2 - }, - "end": { - "line": 19, - "column": 15 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 19, - "column": 9 - }, - "end": { - "line": 19, - "column": 15 - } - } - ], - "line": 19 - }, - "3": { - "loc": { - "start": { - "line": 28, - "column": 11 - }, - "end": { - "line": 43, - "column": 12 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 28, - "column": 36 - }, - "end": { - "line": 39, - "column": 12 - } - }, - { - "start": { - "line": 39, - "column": 31 - }, - "end": { - "line": 43, - "column": 12 - } - } - ], - "line": 28 - }, - "4": { - "loc": { - "start": { - "line": 62, - "column": 0 - }, - "end": { - "line": 78, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 62, - "column": 0 - }, - "end": { - "line": 78, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 62 - }, - "5": { - "loc": { - "start": { - "line": 71, - "column": 6 - }, - "end": { - "line": 72, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 71, - "column": 6 - }, - "end": { - "line": 72, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 71 - }, - "6": { - "loc": { - "start": { - "line": 74, - "column": 6 - }, - "end": { - "line": 75, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 74, - "column": 6 - }, - "end": { - "line": 75, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 74 - } - }, - "s": { - "0": 198, - "1": 198, - "2": 0, - "3": 198, - "4": 198, - "5": 198, - "6": 198, - "7": 198, - "8": 276, - "9": 276, - "10": 276, - "11": 198, - "12": 198, - "13": 198, - "14": 198, - "15": 198, - "16": 198, - "17": 198, - "18": 198, - "19": 0, - "20": 0, - "21": 0, - "22": 0, - "23": 0 - }, - "f": { - "0": 198, - "1": 276, - "2": 276, - "3": 198, - "4": 0 - }, - "b": { - "0": [198, 0], - "1": [0, 198], - "2": [72], - "3": [66, 210], - "4": [198, 0], - "5": [0, 0], - "6": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAwBQ,SAIF,UAJE;AAxBR,2BAAyBA;AAAkB;AAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAC5D,SAASC,yBAAyB;AAa3B,gBAASC,UAAU;AAAA,EACxBC,OAAO;AAAA,EACPC;AAAAA,EACAC;AAAAA,EACAC;AAAAA,EACA,GAAGC;AACW,GAAG;AACjB,QAAMC,kBAAkBA,CAAC;AAAA,IAAEC;AAAAA,EAA4B,MAAM;AAC3D,WAAOJ,SACL,uBAAC,cAAW,WAAU,QACpB;AAAA,6BAAC,WAAW,MAAX,EAAiBA,oBAAlB;AAAA;AAAA;AAAA;AAAA,aAAyB;AAAA,MACxBI;AAAAA,SAFH;AAAA;AAAA;AAAA;AAAA,WAGA,IAEA,mCAAGA,YAAH;AAAA;AAAA;AAAA;AAAA,WAAY;AAAA,EAEhB;AAEA,SACE,uBAAC,qBAAkB,2BACjB,iCAAC,mBACC,iCAAC,OAAO,SAAP,EAAe,MAAY,UAAoB,WAAWL,UAAU,GAAIG,SAAzE;AAAA;AAAA;AAAA;AAAA,SAA+E,KADjF;AAAA;AAAA;AAAA;AAAA,SAEA,KAHF;AAAA;AAAA;AAAA;AAAA,SAIA;AAEJ;AAACG,KAzBeR;AAAS;AAAAS", - "names": [ - "InputGroup", - "FormElementLayout", - "FormInput", - "type", - "readOnly", - "prefix", - "withinMultipleFieldsGroup", - "props", - "FormInputPrefix", - "children", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormInput.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormInput.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "fcbcc040a67fd1cbbf65758400b1f9e68e9ada17" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/required-input-symbol/RequiredInputSymbol.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/required-input-symbol/RequiredInputSymbol.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 196 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 17, - "column": 35 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "9": { - "start": { - "line": 18, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "10": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 25 - } - }, - "11": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 40 - } - }, - "12": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "13": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "14": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "15": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "16": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 222 - } - }, - "17": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "18": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "20": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "21": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "22": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "(anonymous_1)", - "decl": { - "start": { - "line": 17, - "column": 35 - }, - "end": { - "line": 17, - "column": 36 - } - }, - "loc": { - "start": { - "line": 17, - "column": 41 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 17 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 198, - "1": 198, - "2": 0, - "3": 198, - "4": 198, - "5": 198, - "6": 198, - "7": 198, - "8": 198, - "9": 60, - "10": 198, - "11": 198, - "12": 198, - "13": 198, - "14": 198, - "15": 198, - "16": 198, - "17": 198, - "18": 0, - "19": 0, - "20": 0, - "21": 0, - "22": 0 - }, - "f": { - "0": 198, - "1": 60, - "2": 198, - "3": 0 - }, - "b": { - "0": [198, 0], - "1": [0, 198], - "2": [198, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAII;AAJJ,OAAOA,oBAAY;AAAA;AAAmC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAE/C,aAAMC,sBAAsBA,MAAM;AACvC,SACE,uBAAC,UAAK,MAAK,OAAM,cAAW,yBAAwB,WAAWD,OAAOE,UACnE;AAAA;AAAA,IAAG;AAAA,OADN;AAAA;AAAA;AAAA;AAAA,SAGA;AAEJ;AAACC,KAPYF;AAAmB;AAAAG", - "names": ["styles", "RequiredInputSymbol", "asterisk", "_c", "$RefreshReg$"], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/required-input-symbol/RequiredInputSymbol.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/required-input-symbol/RequiredInputSymbol.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "0c8fa3bfd289ca90882fe3cf2f8877deab82e90b" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/QuestionIcon.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/QuestionIcon.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 170 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 19, - "column": 2 - }, - "end": { - "line": 23, - "column": 11 - } - }, - "9": { - "start": { - "line": 25, - "column": 0 - }, - "end": { - "line": 25, - "column": 18 - } - }, - "10": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 33 - } - }, - "11": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 44, - "column": 1 - } - }, - "12": { - "start": { - "line": 29, - "column": 2 - }, - "end": { - "line": 29, - "column": 39 - } - }, - "13": { - "start": { - "line": 30, - "column": 2 - }, - "end": { - "line": 30, - "column": 39 - } - }, - "14": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 43, - "column": 5 - } - }, - "15": { - "start": { - "line": 35, - "column": 4 - }, - "end": { - "line": 35, - "column": 196 - } - }, - "16": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 42, - "column": 7 - } - }, - "17": { - "start": { - "line": 37, - "column": 6 - }, - "end": { - "line": 38, - "column": 15 - } - }, - "18": { - "start": { - "line": 38, - "column": 8 - }, - "end": { - "line": 38, - "column": 15 - } - }, - "19": { - "start": { - "line": 39, - "column": 32 - }, - "end": { - "line": 39, - "column": 115 - } - }, - "20": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 54 - } - }, - "21": { - "start": { - "line": 41, - "column": 8 - }, - "end": { - "line": 41, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "QuestionIcon", - "decl": { - "start": { - "line": 18, - "column": 16 - }, - "end": { - "line": 18, - "column": 28 - } - }, - "loc": { - "start": { - "line": 18, - "column": 31 - }, - "end": { - "line": 24, - "column": 1 - } - }, - "line": 18 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 34, - "column": 9 - }, - "end": { - "line": 34, - "column": 10 - } - }, - "loc": { - "start": { - "line": 34, - "column": 29 - }, - "end": { - "line": 43, - "column": 3 - } - }, - "line": 34 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 36, - "column": 27 - }, - "end": { - "line": 36, - "column": 28 - } - }, - "loc": { - "start": { - "line": 36, - "column": 44 - }, - "end": { - "line": 42, - "column": 5 - } - }, - "line": 36 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 44, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 44, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 28 - }, - "3": { - "loc": { - "start": { - "line": 37, - "column": 6 - }, - "end": { - "line": 38, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 37, - "column": 6 - }, - "end": { - "line": 38, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 37 - }, - "4": { - "loc": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 40 - } - }, - "s": { - "0": 216, - "1": 216, - "2": 0, - "3": 216, - "4": 216, - "5": 216, - "6": 216, - "7": 216, - "8": 42, - "9": 216, - "10": 216, - "11": 216, - "12": 216, - "13": 216, - "14": 216, - "15": 216, - "16": 216, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 216, - "1": 42, - "2": 216, - "3": 0 - }, - "b": { - "0": [216, 0], - "1": [0, 216], - "2": [216, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAGS;AAHT,OAAOA,oBAAY;AAAA,IAA4B;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAC/C,SAASC,0BAA0B;AAC5B,gBAASC,eAAe;AAC7B,SAAO,uBAAC,sBAAmB,WAAWF,OAAO,kBAAkB,KAAxD;AAAA;AAAA;AAAA;AAAA,SAA0D;AACnE;AAACG,KAFeD;AAAY;AAAAE", - "names": ["styles", "QuestionCircleFill", "QuestionIcon", "_c", "$RefreshReg$"], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/QuestionIcon.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/QuestionIcon.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "2739325ede7277a7d038233caf57a0439ab079d1" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/overlay-trigger/OverlayTrigger.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/overlay-trigger/OverlayTrigger.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 188 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 30, - "column": 11 - } - }, - "9": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 32, - "column": 20 - } - }, - "10": { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 34, - "column": 35 - } - }, - "11": { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 51, - "column": 1 - } - }, - "12": { - "start": { - "line": 36, - "column": 2 - }, - "end": { - "line": 36, - "column": 39 - } - }, - "13": { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 37, - "column": 39 - } - }, - "14": { - "start": { - "line": 38, - "column": 2 - }, - "end": { - "line": 50, - "column": 5 - } - }, - "15": { - "start": { - "line": 42, - "column": 4 - }, - "end": { - "line": 42, - "column": 214 - } - }, - "16": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 49, - "column": 7 - } - }, - "17": { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 15 - } - }, - "18": { - "start": { - "line": 45, - "column": 8 - }, - "end": { - "line": 45, - "column": 15 - } - }, - "19": { - "start": { - "line": 46, - "column": 32 - }, - "end": { - "line": 46, - "column": 115 - } - }, - "20": { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 54 - } - }, - "21": { - "start": { - "line": 48, - "column": 8 - }, - "end": { - "line": 48, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "OverlayTrigger", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 30 - } - }, - "loc": { - "start": { - "line": 21, - "column": 3 - }, - "end": { - "line": 31, - "column": 1 - } - }, - "line": 21 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 41, - "column": 9 - }, - "end": { - "line": 41, - "column": 10 - } - }, - "loc": { - "start": { - "line": 41, - "column": 29 - }, - "end": { - "line": 50, - "column": 3 - } - }, - "line": 41 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 43, - "column": 27 - }, - "end": { - "line": 43, - "column": 28 - } - }, - "loc": { - "start": { - "line": 43, - "column": 44 - }, - "end": { - "line": 49, - "column": 5 - } - }, - "line": 43 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 51, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 51, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 35 - }, - "3": { - "loc": { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 44 - }, - "4": { - "loc": { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 47 - } - }, - "s": { - "0": 228, - "1": 228, - "2": 0, - "3": 228, - "4": 228, - "5": 228, - "6": 228, - "7": 228, - "8": 114, - "9": 228, - "10": 228, - "11": 228, - "12": 228, - "13": 228, - "14": 228, - "15": 228, - "16": 228, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 228, - "1": 114, - "2": 228, - "3": 0 - }, - "b": { - "0": [228, 0], - "1": [0, 228], - "2": [228, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAce;AAdf,2BAA2BA;AAAkBC;AAAWC,IAAS;AAAQ,gBAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASnF,gBAASC,eAAe;AAAA,EAAEC;AAAAA,EAAWC;AAAAA,EAASC;AAA8B,GAAG;AACpF,SACE,uBAAC,oBAEC,WACA,SAAS,uBAAC,aAAWD,qBAAZ;AAAA;AAAA;AAAA;AAAA,SAAoB,GAC5BC,YAHIF,WADP;AAAA;AAAA;AAAA;AAAA,SAKA;AAEJ;AAACG,KATeJ;AAAc;AAAAK", - "names": [ - "OverlayTriggerBS", - "Tooltip", - "TooltipBS", - "OverlayTrigger", - "placement", - "message", - "children", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/overlay-trigger/OverlayTrigger.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/overlay-trigger/OverlayTrigger.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "0dfe0032f964b9a54aed845ce3247a3d18a912d1" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/Tooltip.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/Tooltip.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 165 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 23, - "column": 2 - }, - "end": { - "line": 35, - "column": 11 - } - }, - "9": { - "start": { - "line": 37, - "column": 0 - }, - "end": { - "line": 37, - "column": 13 - } - }, - "10": { - "start": { - "line": 39, - "column": 0 - }, - "end": { - "line": 39, - "column": 28 - } - }, - "11": { - "start": { - "line": 40, - "column": 0 - }, - "end": { - "line": 56, - "column": 1 - } - }, - "12": { - "start": { - "line": 41, - "column": 2 - }, - "end": { - "line": 41, - "column": 39 - } - }, - "13": { - "start": { - "line": 42, - "column": 2 - }, - "end": { - "line": 42, - "column": 39 - } - }, - "14": { - "start": { - "line": 43, - "column": 2 - }, - "end": { - "line": 55, - "column": 5 - } - }, - "15": { - "start": { - "line": 47, - "column": 4 - }, - "end": { - "line": 47, - "column": 191 - } - }, - "16": { - "start": { - "line": 48, - "column": 4 - }, - "end": { - "line": 54, - "column": 7 - } - }, - "17": { - "start": { - "line": 49, - "column": 6 - }, - "end": { - "line": 50, - "column": 15 - } - }, - "18": { - "start": { - "line": 50, - "column": 8 - }, - "end": { - "line": 50, - "column": 15 - } - }, - "19": { - "start": { - "line": 51, - "column": 32 - }, - "end": { - "line": 51, - "column": 115 - } - }, - "20": { - "start": { - "line": 52, - "column": 6 - }, - "end": { - "line": 53, - "column": 54 - } - }, - "21": { - "start": { - "line": 53, - "column": 8 - }, - "end": { - "line": 53, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Tooltip", - "decl": { - "start": { - "line": 19, - "column": 16 - }, - "end": { - "line": 19, - "column": 23 - } - }, - "loc": { - "start": { - "line": 22, - "column": 3 - }, - "end": { - "line": 36, - "column": 1 - } - }, - "line": 22 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 46, - "column": 9 - }, - "end": { - "line": 46, - "column": 10 - } - }, - "loc": { - "start": { - "line": 46, - "column": 29 - }, - "end": { - "line": 55, - "column": 3 - } - }, - "line": 46 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 48, - "column": 27 - }, - "end": { - "line": 48, - "column": 28 - } - }, - "loc": { - "start": { - "line": 48, - "column": 44 - }, - "end": { - "line": 54, - "column": 5 - } - }, - "line": 48 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 40, - "column": 0 - }, - "end": { - "line": 56, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 40, - "column": 0 - }, - "end": { - "line": 56, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 40 - }, - "3": { - "loc": { - "start": { - "line": 49, - "column": 6 - }, - "end": { - "line": 50, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 49, - "column": 6 - }, - "end": { - "line": 50, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 49 - }, - "4": { - "loc": { - "start": { - "line": 52, - "column": 6 - }, - "end": { - "line": 53, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 52, - "column": 6 - }, - "end": { - "line": 53, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 52 - } - }, - "s": { - "0": 216, - "1": 216, - "2": 0, - "3": 216, - "4": 216, - "5": 216, - "6": 216, - "7": 216, - "8": 42, - "9": 216, - "10": 216, - "11": 216, - "12": 216, - "13": 216, - "14": 216, - "15": 216, - "16": 216, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 216, - "1": 42, - "2": 216, - "3": 0 - }, - "b": { - "0": [216, 0], - "1": [0, 216], - "2": [216, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAcQ;AAdR,2BAA0B;AAAA,IAAuB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACjD,SAASA,oBAAoB;AAC7B,OAAOC,YAAY;AACnB,SAASC,sBAAsB;AAOxB,gBAASC,QAAQ;AAAA,EAAEC;AAAAA,EAAWC;AAAsB,GAAG;AAC5D,SACE,uBAAC,kBAAe,WAAsB,SACpC,iCAAC,UAAK,MAAK,OAAM,cAAW,gBAAe,WAAWJ,OAAOK,SAC3D,iCAAC,kBAAD;AAAA;AAAA;AAAA;AAAA,SAAc,KADhB;AAAA;AAAA;AAAA;AAAA,SAEA,KAHF;AAAA;AAAA;AAAA;AAAA,SAIA;AAEJ;AAACC,KAReJ;AAAO;AAAAK", - "names": [ - "QuestionIcon", - "styles", - "OverlayTrigger", - "Tooltip", - "placement", - "message", - "tooltip", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/Tooltip.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/Tooltip.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "2ba25d3a8c31ba886116e60db0aa9070e5b98ea5" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormLabel.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormLabel.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 188 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 25, - "column": 22 - }, - "end": { - "line": 28, - "column": 3 - } - }, - "9": { - "start": { - "line": 29, - "column": 2 - }, - "end": { - "line": 46, - "column": 11 - } - }, - "10": { - "start": { - "line": 48, - "column": 0 - }, - "end": { - "line": 48, - "column": 15 - } - }, - "11": { - "start": { - "line": 50, - "column": 0 - }, - "end": { - "line": 50, - "column": 30 - } - }, - "12": { - "start": { - "line": 51, - "column": 0 - }, - "end": { - "line": 67, - "column": 1 - } - }, - "13": { - "start": { - "line": 52, - "column": 2 - }, - "end": { - "line": 52, - "column": 39 - } - }, - "14": { - "start": { - "line": 53, - "column": 2 - }, - "end": { - "line": 53, - "column": 39 - } - }, - "15": { - "start": { - "line": 54, - "column": 2 - }, - "end": { - "line": 66, - "column": 5 - } - }, - "16": { - "start": { - "line": 58, - "column": 4 - }, - "end": { - "line": 58, - "column": 214 - } - }, - "17": { - "start": { - "line": 59, - "column": 4 - }, - "end": { - "line": 65, - "column": 7 - } - }, - "18": { - "start": { - "line": 60, - "column": 6 - }, - "end": { - "line": 61, - "column": 15 - } - }, - "19": { - "start": { - "line": 61, - "column": 8 - }, - "end": { - "line": 61, - "column": 15 - } - }, - "20": { - "start": { - "line": 62, - "column": 32 - }, - "end": { - "line": 62, - "column": 115 - } - }, - "21": { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 54 - } - }, - "22": { - "start": { - "line": 64, - "column": 8 - }, - "end": { - "line": 64, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "FormLabel", - "decl": { - "start": { - "line": 19, - "column": 16 - }, - "end": { - "line": 19, - "column": 25 - } - }, - "loc": { - "start": { - "line": 24, - "column": 3 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "line": 24 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 57, - "column": 9 - }, - "end": { - "line": 57, - "column": 10 - } - }, - "loc": { - "start": { - "line": 57, - "column": 29 - }, - "end": { - "line": 66, - "column": 3 - } - }, - "line": 57 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 59, - "column": 27 - }, - "end": { - "line": 59, - "column": 28 - } - }, - "loc": { - "start": { - "line": 59, - "column": 44 - }, - "end": { - "line": 65, - "column": 5 - } - }, - "line": 59 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 25, - "column": 22 - }, - "end": { - "line": 28, - "column": 3 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 25, - "column": 50 - }, - "end": { - "line": 25, - "column": 52 - } - }, - { - "start": { - "line": 25, - "column": 55 - }, - "end": { - "line": 28, - "column": 3 - } - } - ], - "line": 25 - }, - "3": { - "loc": { - "start": { - "line": 31, - "column": 4 - }, - "end": { - "line": 35, - "column": 12 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 31, - "column": 4 - }, - "end": { - "line": 31, - "column": 12 - } - }, - { - "start": { - "line": 31, - "column": 32 - }, - "end": { - "line": 35, - "column": 12 - } - } - ], - "line": 31 - }, - "4": { - "loc": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 41, - "column": 12 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 11 - } - }, - { - "start": { - "line": 37, - "column": 31 - }, - "end": { - "line": 41, - "column": 12 - } - } - ], - "line": 37 - }, - "5": { - "loc": { - "start": { - "line": 51, - "column": 0 - }, - "end": { - "line": 67, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 51, - "column": 0 - }, - "end": { - "line": 67, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 51 - }, - "6": { - "loc": { - "start": { - "line": 60, - "column": 6 - }, - "end": { - "line": 61, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 60, - "column": 6 - }, - "end": { - "line": 61, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 60 - }, - "7": { - "loc": { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 63 - } - }, - "s": { - "0": 198, - "1": 198, - "2": 0, - "3": 198, - "4": 198, - "5": 198, - "6": 198, - "7": 198, - "8": 414, - "9": 414, - "10": 198, - "11": 198, - "12": 198, - "13": 198, - "14": 198, - "15": 198, - "16": 198, - "17": 198, - "18": 0, - "19": 0, - "20": 0, - "21": 0, - "22": 0 - }, - "f": { - "0": 198, - "1": 414, - "2": 198, - "3": 0 - }, - "b": { - "0": [198, 0], - "1": [0, 198], - "2": [0, 414], - "3": [414, 30], - "4": [414, 12], - "5": [198, 0], - "6": [0, 0], - "7": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAsBmB;AAtBnB,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,QAAQC,cAAc;AAC/B,SAASC,2BAA2B;AACpC,SAASC,eAAe;AAQjB,gBAASC,UAAU;AAAA,EACxBC;AAAAA,EACAC;AAAAA,EACAC;AAAAA,EACAC;AACiC,GAAG;AACpC,QAAMC,cAAcF,4BAA4B,CAAC,IAAI;AAAA,IAAEG,QAAQ;AAAA,IAAMC,IAAI;AAAA,EAAE;AAE3E,SACE,uBAAC,OAAO,OAAP,EAAa,GAAIF,aACfD;AAAAA;AAAAA,IACAH,YAAY,uBAAC,yBAAD;AAAA;AAAA;AAAA;AAAA,WAAoB;AAAA,IAAK;AAAA,IACrCC,WAAW,uBAAC,WAAQ,WAAU,SAAQ,WAA3B;AAAA;AAAA;AAAA;AAAA,WAA6C;AAAA,OAH3D;AAAA;AAAA;AAAA;AAAA,SAIA;AAEJ;AAACM,KAfeR;AAAS;AAAAS", - "names": [ - "Form", - "FormBS", - "RequiredInputSymbol", - "Tooltip", - "FormLabel", - "required", - "message", - "withinMultipleFieldsGroup", - "children", - "layoutProps", - "column", - "sm", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormLabel.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormLabel.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "9db772d37a8225100ba1d22997246e3a65dbbf89" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormText.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormText.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 187 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 22, - "column": 17 - }, - "end": { - "line": 37, - "column": 3 - } - }, - "9": { - "start": { - "line": 25, - "column": 4 - }, - "end": { - "line": 36, - "column": 13 - } - }, - "10": { - "start": { - "line": 38, - "column": 2 - }, - "end": { - "line": 46, - "column": 11 - } - }, - "11": { - "start": { - "line": 48, - "column": 0 - }, - "end": { - "line": 48, - "column": 14 - } - }, - "12": { - "start": { - "line": 50, - "column": 0 - }, - "end": { - "line": 50, - "column": 29 - } - }, - "13": { - "start": { - "line": 51, - "column": 0 - }, - "end": { - "line": 67, - "column": 1 - } - }, - "14": { - "start": { - "line": 52, - "column": 2 - }, - "end": { - "line": 52, - "column": 39 - } - }, - "15": { - "start": { - "line": 53, - "column": 2 - }, - "end": { - "line": 53, - "column": 39 - } - }, - "16": { - "start": { - "line": 54, - "column": 2 - }, - "end": { - "line": 66, - "column": 5 - } - }, - "17": { - "start": { - "line": 58, - "column": 4 - }, - "end": { - "line": 58, - "column": 213 - } - }, - "18": { - "start": { - "line": 59, - "column": 4 - }, - "end": { - "line": 65, - "column": 7 - } - }, - "19": { - "start": { - "line": 60, - "column": 6 - }, - "end": { - "line": 61, - "column": 15 - } - }, - "20": { - "start": { - "line": 61, - "column": 8 - }, - "end": { - "line": 61, - "column": 15 - } - }, - "21": { - "start": { - "line": 62, - "column": 32 - }, - "end": { - "line": 62, - "column": 115 - } - }, - "22": { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 54 - } - }, - "23": { - "start": { - "line": 64, - "column": 8 - }, - "end": { - "line": 64, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "FormText", - "decl": { - "start": { - "line": 18, - "column": 16 - }, - "end": { - "line": 18, - "column": 24 - } - }, - "loc": { - "start": { - "line": 21, - "column": 3 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "line": 21 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 22, - "column": 17 - }, - "end": { - "line": 22, - "column": 18 - } - }, - "loc": { - "start": { - "line": 24, - "column": 8 - }, - "end": { - "line": 37, - "column": 3 - } - }, - "line": 24 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 57, - "column": 9 - }, - "end": { - "line": 57, - "column": 10 - } - }, - "loc": { - "start": { - "line": 57, - "column": 29 - }, - "end": { - "line": 66, - "column": 3 - } - }, - "line": 57 - }, - "4": { - "name": "(anonymous_4)", - "decl": { - "start": { - "line": 59, - "column": 27 - }, - "end": { - "line": 59, - "column": 28 - } - }, - "loc": { - "start": { - "line": 59, - "column": 44 - }, - "end": { - "line": 65, - "column": 5 - } - }, - "line": 59 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 25, - "column": 11 - }, - "end": { - "line": 36, - "column": 12 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 25, - "column": 55 - }, - "end": { - "line": 29, - "column": 12 - } - }, - { - "start": { - "line": 29, - "column": 31 - }, - "end": { - "line": 36, - "column": 12 - } - } - ], - "line": 25 - }, - "3": { - "loc": { - "start": { - "line": 51, - "column": 0 - }, - "end": { - "line": 67, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 51, - "column": 0 - }, - "end": { - "line": 67, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 51 - }, - "4": { - "loc": { - "start": { - "line": 60, - "column": 6 - }, - "end": { - "line": 61, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 60, - "column": 6 - }, - "end": { - "line": 61, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 60 - }, - "5": { - "loc": { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 63 - } - }, - "s": { - "0": 198, - "1": 198, - "2": 0, - "3": 198, - "4": 198, - "5": 198, - "6": 198, - "7": 198, - "8": 30, - "9": 30, - "10": 30, - "11": 198, - "12": 198, - "13": 198, - "14": 198, - "15": 198, - "16": 198, - "17": 198, - "18": 198, - "19": 0, - "20": 0, - "21": 0, - "22": 0, - "23": 0 - }, - "f": { - "0": 198, - "1": 30, - "2": 30, - "3": 198, - "4": 0 - }, - "b": { - "0": [198, 0], - "1": [0, 198], - "2": [12, 18], - "3": [198, 0], - "4": [0, 0], - "5": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAcM;AAdN,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,QAAQC,cAAc;AAC/B,SAASC,WAAW;AAMb,gBAASC,SAAS;AAAA,EACvBC;AAAAA,EACAC;AACgC,GAAG;AACnC,QAAMC,SAASA,CAAC;AAAA,IAAED;AAAAA,EAA4B,MAAM;AAClD,WAAOD,4BACL,mCAAGC,uBAAH;AAAA;AAAA;AAAA;AAAA,WAAY,IAEZ,uBAAC,OAAI,IAAI;AAAA,MAAEE,QAAQ;AAAA,MAAGC,MAAM;AAAA,IAAE,GAAG,WAAU,QACxCH,uBADH;AAAA;AAAA;AAAA;AAAA,WAEA;AAAA,EAEJ;AAEA,SACE,uBAAC,UACC,iCAAC,OAAO,MAAP,EAAY,OAAK,MAAEA,YAApB;AAAA;AAAA;AAAA;AAAA,SAA6B,KAD/B;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACI,KAnBeN;AAAQ;AAAAO", - "names": [ - "Form", - "FormBS", - "Col", - "FormText", - "withinMultipleFieldsGroup", - "children", - "Layout", - "offset", - "span", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormText.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormText.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "9ce5ff5b3a94475f5eeab0ca3ee552c2f80b9bd8" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormSelect.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormSelect.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 189 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 23, - "column": 2 - }, - "end": { - "line": 31, - "column": 11 - } - }, - "9": { - "start": { - "line": 33, - "column": 0 - }, - "end": { - "line": 33, - "column": 16 - } - }, - "10": { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 35, - "column": 31 - } - }, - "11": { - "start": { - "line": 36, - "column": 0 - }, - "end": { - "line": 52, - "column": 1 - } - }, - "12": { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 37, - "column": 39 - } - }, - "13": { - "start": { - "line": 38, - "column": 2 - }, - "end": { - "line": 38, - "column": 39 - } - }, - "14": { - "start": { - "line": 39, - "column": 2 - }, - "end": { - "line": 51, - "column": 5 - } - }, - "15": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 215 - } - }, - "16": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 50, - "column": 7 - } - }, - "17": { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 15 - } - }, - "18": { - "start": { - "line": 46, - "column": 8 - }, - "end": { - "line": 46, - "column": 15 - } - }, - "19": { - "start": { - "line": 47, - "column": 32 - }, - "end": { - "line": 47, - "column": 115 - } - }, - "20": { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 54 - } - }, - "21": { - "start": { - "line": 49, - "column": 8 - }, - "end": { - "line": 49, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "FormSelect", - "decl": { - "start": { - "line": 18, - "column": 16 - }, - "end": { - "line": 18, - "column": 26 - } - }, - "loc": { - "start": { - "line": 22, - "column": 3 - }, - "end": { - "line": 32, - "column": 1 - } - }, - "line": 22 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 42, - "column": 9 - }, - "end": { - "line": 42, - "column": 10 - } - }, - "loc": { - "start": { - "line": 42, - "column": 29 - }, - "end": { - "line": 51, - "column": 3 - } - }, - "line": 42 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 44, - "column": 27 - }, - "end": { - "line": 44, - "column": 28 - } - }, - "loc": { - "start": { - "line": 44, - "column": 44 - }, - "end": { - "line": 50, - "column": 5 - } - }, - "line": 44 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 36, - "column": 0 - }, - "end": { - "line": 52, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 36, - "column": 0 - }, - "end": { - "line": 52, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 36 - }, - "3": { - "loc": { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 45 - }, - "4": { - "loc": { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 48 - } - }, - "s": { - "0": 198, - "1": 198, - "2": 0, - "3": 198, - "4": 198, - "5": 198, - "6": 198, - "7": 198, - "8": 84, - "9": 198, - "10": 198, - "11": 198, - "12": 198, - "13": 198, - "14": 198, - "15": 198, - "16": 198, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 198, - "1": 84, - "2": 198, - "3": 0 - }, - "b": { - "0": [198, 0], - "1": [0, 198], - "2": [198, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAgBM;AAhBN,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,QAAQC,cAAc;AAC/B,SAASC,yBAAyB;AAO3B,gBAASC,WAAW;AAAA,EACzBC;AAAAA,EACAC;AAAAA,EACA,GAAGC;AAC+B,GAAG;AACrC,SACE,uBAAC,qBAAkB,2BACjB,iCAAC,OAAO,QAAP,EAAc,GAAIA,OAAQD,YAA3B;AAAA;AAAA;AAAA;AAAA,SAAoC,KADtC;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACE,KAVeJ;AAAU;AAAAK", - "names": [ - "Form", - "FormBS", - "FormElementLayout", - "FormSelect", - "withinMultipleFieldsGroup", - "children", - "props", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormSelect.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormSelect.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "c4b62a47adc7622a41fe6910640ab7c1c6d8ab93" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormTextArea.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormTextArea.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 191 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 30, - "column": 11 - } - }, - "9": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 32, - "column": 18 - } - }, - "10": { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 34, - "column": 33 - } - }, - "11": { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 51, - "column": 1 - } - }, - "12": { - "start": { - "line": 36, - "column": 2 - }, - "end": { - "line": 36, - "column": 39 - } - }, - "13": { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 37, - "column": 39 - } - }, - "14": { - "start": { - "line": 38, - "column": 2 - }, - "end": { - "line": 50, - "column": 5 - } - }, - "15": { - "start": { - "line": 42, - "column": 4 - }, - "end": { - "line": 42, - "column": 217 - } - }, - "16": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 49, - "column": 7 - } - }, - "17": { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 15 - } - }, - "18": { - "start": { - "line": 45, - "column": 8 - }, - "end": { - "line": 45, - "column": 15 - } - }, - "19": { - "start": { - "line": 46, - "column": 32 - }, - "end": { - "line": 46, - "column": 115 - } - }, - "20": { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 54 - } - }, - "21": { - "start": { - "line": 48, - "column": 8 - }, - "end": { - "line": 48, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "FormTextArea", - "decl": { - "start": { - "line": 18, - "column": 16 - }, - "end": { - "line": 18, - "column": 28 - } - }, - "loc": { - "start": { - "line": 21, - "column": 3 - }, - "end": { - "line": 31, - "column": 1 - } - }, - "line": 21 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 41, - "column": 9 - }, - "end": { - "line": 41, - "column": 10 - } - }, - "loc": { - "start": { - "line": 41, - "column": 29 - }, - "end": { - "line": 50, - "column": 3 - } - }, - "line": 41 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 43, - "column": 27 - }, - "end": { - "line": 43, - "column": 28 - } - }, - "loc": { - "start": { - "line": 43, - "column": 44 - }, - "end": { - "line": 49, - "column": 5 - } - }, - "line": 43 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 51, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 51, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 35 - }, - "3": { - "loc": { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 44 - }, - "4": { - "loc": { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 47 - } - }, - "s": { - "0": 198, - "1": 198, - "2": 0, - "3": 198, - "4": 198, - "5": 198, - "6": 198, - "7": 198, - "8": 54, - "9": 198, - "10": 198, - "11": 198, - "12": 198, - "13": 198, - "14": 198, - "15": 198, - "16": 198, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 198, - "1": 54, - "2": 198, - "3": 0 - }, - "b": { - "0": [198, 0], - "1": [0, 198], - "2": [198, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAYM;AAZN,2BAAuB;AAAQ,IAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAChD,SAASA,yBAAyB;AAQ3B,gBAASC,aAAa;AAAA,EAAEC;AAAAA,EAA2B,GAAGC;AAAyB,GAAG;AACvF,SACE,uBAAC,qBAAkB,2BACjB,iCAAC,OAAO,SAAP,EAAe,IAAG,YAAW,MAAM,GAAG,GAAIA,SAA3C;AAAA;AAAA;AAAA;AAAA,SAAiD,KADnD;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACC,KANeH;AAAY;AAAAI", - "names": [ - "FormElementLayout", - "FormTextArea", - "withinMultipleFieldsGroup", - "props", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormTextArea.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormTextArea.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "782ee1897895e1397f950c0916d5107226d78931" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Row.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Row.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 158 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 9 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 24 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 184 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Row", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 19 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 198, - "1": 198, - "2": 0, - "3": 198, - "4": 198, - "5": 198, - "6": 198, - "7": 198, - "8": 546, - "9": 198, - "10": 198, - "11": 198, - "12": 198, - "13": 198, - "14": 198, - "15": 198, - "16": 198, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 198, - "1": 546, - "2": 198, - "3": 0 - }, - "b": { - "0": [198, 0], - "1": [0, 198], - "2": [198, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAcS;AAdT,2BAA0B;AAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACjC,SAASA,OAAOC,aAAa;AAYtB,gBAASD,IAAI;AAAA,EAAEE;AAAAA,EAAU,GAAGC;AAAgB,GAAG;AACpD,SAAO,uBAAC,SAAM,GAAIA,OAAQD,YAAnB;AAAA;AAAA;AAAA;AAAA,SAA4B;AACrC;AAACE,KAFeJ;AAAG;AAAAK", - "names": ["Row", "RowBS", "children", "props", "_c", "$RefreshReg$"], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Row.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Row.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "f41ac60b628decc8197fdb597dab17c670154cfa" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormCheckbox.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormCheckbox.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 191 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 23, - "column": 2 - }, - "end": { - "line": 27, - "column": 11 - } - }, - "9": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 18 - } - }, - "10": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 31, - "column": 33 - } - }, - "11": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 48, - "column": 1 - } - }, - "12": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 33, - "column": 39 - } - }, - "13": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 34, - "column": 39 - } - }, - "14": { - "start": { - "line": 35, - "column": 2 - }, - "end": { - "line": 47, - "column": 5 - } - }, - "15": { - "start": { - "line": 39, - "column": 4 - }, - "end": { - "line": 39, - "column": 217 - } - }, - "16": { - "start": { - "line": 40, - "column": 4 - }, - "end": { - "line": 46, - "column": 7 - } - }, - "17": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 15 - } - }, - "18": { - "start": { - "line": 42, - "column": 8 - }, - "end": { - "line": 42, - "column": 15 - } - }, - "19": { - "start": { - "line": 43, - "column": 32 - }, - "end": { - "line": 43, - "column": 115 - } - }, - "20": { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 54 - } - }, - "21": { - "start": { - "line": 45, - "column": 8 - }, - "end": { - "line": 45, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "FormCheckbox", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 28 - } - }, - "loc": { - "start": { - "line": 22, - "column": 3 - }, - "end": { - "line": 28, - "column": 1 - } - }, - "line": 22 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 38, - "column": 9 - }, - "end": { - "line": 38, - "column": 10 - } - }, - "loc": { - "start": { - "line": 38, - "column": 29 - }, - "end": { - "line": 47, - "column": 3 - } - }, - "line": 38 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 40, - "column": 27 - }, - "end": { - "line": 40, - "column": 28 - } - }, - "loc": { - "start": { - "line": 40, - "column": 44 - }, - "end": { - "line": 46, - "column": 5 - } - }, - "line": 40 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 48, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 48, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 32 - }, - "3": { - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - }, - "4": { - "loc": { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 44 - } - }, - "s": { - "0": 198, - "1": 198, - "2": 0, - "3": 198, - "4": 198, - "5": 198, - "6": 198, - "7": 198, - "8": 90, - "9": 198, - "10": 198, - "11": 198, - "12": 198, - "13": 198, - "14": 198, - "15": 198, - "16": 198, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 198, - "1": 90, - "2": 198, - "3": 0 - }, - "b": { - "0": [198, 0], - "1": [0, 198], - "2": [198, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAUS;AAVT,2BAAuB;AAAQ,IAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASzC,gBAASA,aAAa;AAAA,EAAEC;AAAAA,EAAOC;AAAAA,EAAMC;AAAAA,EAAI,GAAGC;AAAyB,GAAG;AAC7E,SAAO,uBAAC,OAAO,OAAP,EAAa,OAAc,MAAY,MAAK,YAAW,IAAQ,GAAIA,SAApE;AAAA;AAAA;AAAA;AAAA,SAA0E;AACnF;AAACC,KAFeL;AAAY;AAAAM", - "names": ["FormCheckbox", "label", "name", "id", "props", "_c", "$RefreshReg$"], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormCheckbox.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormCheckbox.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "7624410f123c44a7febe0554f8a03321f2a33dad" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/FormGroup.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/FormGroup.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 175 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 34, - "column": 35 - }, - "end": { - "line": 39, - "column": 4 - } - }, - "9": { - "start": { - "line": 35, - "column": 4 - }, - "end": { - "line": 38, - "column": 7 - } - }, - "10": { - "start": { - "line": 40, - "column": 2 - }, - "end": { - "line": 44, - "column": 11 - } - }, - "11": { - "start": { - "line": 46, - "column": 0 - }, - "end": { - "line": 46, - "column": 15 - } - }, - "12": { - "start": { - "line": 47, - "column": 0 - }, - "end": { - "line": 47, - "column": 28 - } - }, - "13": { - "start": { - "line": 48, - "column": 0 - }, - "end": { - "line": 48, - "column": 28 - } - }, - "14": { - "start": { - "line": 49, - "column": 0 - }, - "end": { - "line": 49, - "column": 30 - } - }, - "15": { - "start": { - "line": 50, - "column": 0 - }, - "end": { - "line": 50, - "column": 34 - } - }, - "16": { - "start": { - "line": 51, - "column": 0 - }, - "end": { - "line": 51, - "column": 26 - } - }, - "17": { - "start": { - "line": 52, - "column": 0 - }, - "end": { - "line": 52, - "column": 34 - } - }, - "18": { - "start": { - "line": 55, - "column": 0 - }, - "end": { - "line": 55, - "column": 30 - } - }, - "19": { - "start": { - "line": 56, - "column": 0 - }, - "end": { - "line": 72, - "column": 1 - } - }, - "20": { - "start": { - "line": 57, - "column": 2 - }, - "end": { - "line": 57, - "column": 39 - } - }, - "21": { - "start": { - "line": 58, - "column": 2 - }, - "end": { - "line": 58, - "column": 39 - } - }, - "22": { - "start": { - "line": 59, - "column": 2 - }, - "end": { - "line": 71, - "column": 5 - } - }, - "23": { - "start": { - "line": 63, - "column": 4 - }, - "end": { - "line": 63, - "column": 201 - } - }, - "24": { - "start": { - "line": 64, - "column": 4 - }, - "end": { - "line": 70, - "column": 7 - } - }, - "25": { - "start": { - "line": 65, - "column": 6 - }, - "end": { - "line": 66, - "column": 15 - } - }, - "26": { - "start": { - "line": 66, - "column": 8 - }, - "end": { - "line": 66, - "column": 15 - } - }, - "27": { - "start": { - "line": 67, - "column": 32 - }, - "end": { - "line": 67, - "column": 115 - } - }, - "28": { - "start": { - "line": 68, - "column": 6 - }, - "end": { - "line": 69, - "column": 54 - } - }, - "29": { - "start": { - "line": 69, - "column": 8 - }, - "end": { - "line": 69, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "FormGroup", - "decl": { - "start": { - "line": 26, - "column": 9 - }, - "end": { - "line": 26, - "column": 18 - } - }, - "loc": { - "start": { - "line": 33, - "column": 3 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "line": 33 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 34, - "column": 64 - }, - "end": { - "line": 34, - "column": 65 - } - }, - "loc": { - "start": { - "line": 34, - "column": 75 - }, - "end": { - "line": 39, - "column": 3 - } - }, - "line": 34 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 62, - "column": 9 - }, - "end": { - "line": 62, - "column": 10 - } - }, - "loc": { - "start": { - "line": 62, - "column": 29 - }, - "end": { - "line": 71, - "column": 3 - } - }, - "line": 62 - }, - "4": { - "name": "(anonymous_4)", - "decl": { - "start": { - "line": 64, - "column": 27 - }, - "end": { - "line": 64, - "column": 28 - } - }, - "loc": { - "start": { - "line": 64, - "column": 44 - }, - "end": { - "line": 70, - "column": 5 - } - }, - "line": 64 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 27, - "column": 2 - }, - "end": { - "line": 27, - "column": 10 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 27, - "column": 7 - }, - "end": { - "line": 27, - "column": 10 - } - } - ], - "line": 27 - }, - "3": { - "loc": { - "start": { - "line": 40, - "column": 59 - }, - "end": { - "line": 40, - "column": 112 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 40, - "column": 72 - }, - "end": { - "line": 40, - "column": 100 - } - }, - { - "start": { - "line": 40, - "column": 103 - }, - "end": { - "line": 40, - "column": 112 - } - } - ], - "line": 40 - }, - "4": { - "loc": { - "start": { - "line": 56, - "column": 0 - }, - "end": { - "line": 72, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 56, - "column": 0 - }, - "end": { - "line": 72, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 56 - }, - "5": { - "loc": { - "start": { - "line": 65, - "column": 6 - }, - "end": { - "line": 66, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 65, - "column": 6 - }, - "end": { - "line": 66, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 65 - }, - "6": { - "loc": { - "start": { - "line": 68, - "column": 6 - }, - "end": { - "line": 69, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 68, - "column": 6 - }, - "end": { - "line": 69, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 68 - } - }, - "s": { - "0": 198, - "1": 198, - "2": 0, - "3": 198, - "4": 198, - "5": 198, - "6": 198, - "7": 198, - "8": 396, - "9": 792, - "10": 396, - "11": 198, - "12": 198, - "13": 198, - "14": 198, - "15": 198, - "16": 198, - "17": 198, - "18": 198, - "19": 198, - "20": 198, - "21": 198, - "22": 198, - "23": 198, - "24": 198, - "25": 0, - "26": 0, - "27": 0, - "28": 0, - "29": 0 - }, - "f": { - "0": 198, - "1": 396, - "2": 792, - "3": 198, - "4": 0 - }, - "b": { - "0": [198, 0], - "1": [0, 198], - "2": [396], - "3": [90, 306], - "4": [198, 0], - "5": [0, 0], - "6": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAkCI;AAlCJ,OAAOA,oBAASC;AAAyB,IAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAChD,SAASC,QAAQC,cAAc;AAC/B,SAASC,iBAAiB;AAC1B,SAASC,iBAAiB;AAC1B,SAASC,gBAAgB;AACzB,SAASC,kBAAkB;AAC3B,SAASC,oBAAoB;AAC7B,SAASC,WAAqB;AAC9B,SAASC,WAAW;AACpB,SAASC,oBAAoB;AAS7B,SAASC,UAAU;AAAA,EACjBC,KAAKH;AAAAA,EACLI;AAAAA,EACAC;AAAAA,EACAC;AAAAA,EACAC;AAAAA,EACA,GAAGC;AAC8B,GAAG;AACpC,QAAMC,2BAA2BnB,MAAMoB,SAASC,IAAIJ,UAA0BK,WAAU;AACtF,WAAOtB,MAAMuB,aAAaD,OAAO;AAAA,MAC/BR;AAAAA,MACAU,2BAA2BX,OAAOJ;AAAAA,IACpC,CAAC;AAAA,EACH,CAAC;AAED,SACE,uBAAC,OAAO,OAAP,EACC,WAAWO,aAAc,GAAED,aAAaC,eAAeD,WACvD,WAAU,QACV,IACA,GAAIG,OACHC,sCALH;AAAA;AAAA;AAAA;AAAA,SAMA;AAEJ;AAACM,KAxBQb;AA0BTA,UAAUc,QAAQrB;AAClBO,UAAUe,QAAQvB;AAClBQ,UAAUgB,SAASrB;AACnBK,UAAUiB,WAAWrB;AACrBI,UAAUkB,OAAOxB;AACjBM,UAAUmB,WAAWpB;AAErB,SAASC;AAAW;AAAAoB", - "names": [ - "React", - "PropsWithChildren", - "Form", - "FormBS", - "FormInput", - "FormLabel", - "FormText", - "FormSelect", - "FormTextArea", - "Col", - "Row", - "FormCheckbox", - "FormGroup", - "as", - "required", - "controlId", - "fieldIndex", - "children", - "props", - "childrenWithRequiredProp", - "Children", - "map", - "child", - "cloneElement", - "withinMultipleFieldsGroup", - "_c", - "Label", - "Input", - "Select", - "TextArea", - "Text", - "Checkbox", - "$RefreshReg$" - ], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/FormGroup.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/FormGroup.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "cec4a75553a6b585375d24f481d4a9023505c73d" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/dynamic-fields-buttons/DynamicFieldsButtons.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/dynamic-fields-buttons/DynamicFieldsButtons.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 225 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 25, - "column": 2 - }, - "end": { - "line": 64, - "column": 11 - } - }, - "9": { - "start": { - "line": 66, - "column": 0 - }, - "end": { - "line": 66, - "column": 26 - } - }, - "10": { - "start": { - "line": 68, - "column": 0 - }, - "end": { - "line": 68, - "column": 41 - } - }, - "11": { - "start": { - "line": 69, - "column": 0 - }, - "end": { - "line": 85, - "column": 1 - } - }, - "12": { - "start": { - "line": 70, - "column": 2 - }, - "end": { - "line": 70, - "column": 39 - } - }, - "13": { - "start": { - "line": 71, - "column": 2 - }, - "end": { - "line": 71, - "column": 39 - } - }, - "14": { - "start": { - "line": 72, - "column": 2 - }, - "end": { - "line": 84, - "column": 5 - } - }, - "15": { - "start": { - "line": 76, - "column": 4 - }, - "end": { - "line": 76, - "column": 251 - } - }, - "16": { - "start": { - "line": 77, - "column": 4 - }, - "end": { - "line": 83, - "column": 7 - } - }, - "17": { - "start": { - "line": 78, - "column": 6 - }, - "end": { - "line": 79, - "column": 15 - } - }, - "18": { - "start": { - "line": 79, - "column": 8 - }, - "end": { - "line": 79, - "column": 15 - } - }, - "19": { - "start": { - "line": 80, - "column": 32 - }, - "end": { - "line": 80, - "column": 115 - } - }, - "20": { - "start": { - "line": 81, - "column": 6 - }, - "end": { - "line": 82, - "column": 54 - } - }, - "21": { - "start": { - "line": 82, - "column": 8 - }, - "end": { - "line": 82, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "DynamicFieldsButtons", - "decl": { - "start": { - "line": 20, - "column": 16 - }, - "end": { - "line": 20, - "column": 36 - } - }, - "loc": { - "start": { - "line": 24, - "column": 3 - }, - "end": { - "line": 65, - "column": 1 - } - }, - "line": 24 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 75, - "column": 9 - }, - "end": { - "line": 75, - "column": 10 - } - }, - "loc": { - "start": { - "line": 75, - "column": 29 - }, - "end": { - "line": 84, - "column": 3 - } - }, - "line": 75 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 77, - "column": 27 - }, - "end": { - "line": 77, - "column": 28 - } - }, - "loc": { - "start": { - "line": 77, - "column": 44 - }, - "end": { - "line": 83, - "column": 5 - } - }, - "line": 77 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 59, - "column": 12 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 18 - } - }, - { - "start": { - "line": 43, - "column": 38 - }, - "end": { - "line": 59, - "column": 12 - } - } - ], - "line": 43 - }, - "3": { - "loc": { - "start": { - "line": 69, - "column": 0 - }, - "end": { - "line": 85, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 69, - "column": 0 - }, - "end": { - "line": 85, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 69 - }, - "4": { - "loc": { - "start": { - "line": 78, - "column": 6 - }, - "end": { - "line": 79, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 78, - "column": 6 - }, - "end": { - "line": 79, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 78 - }, - "5": { - "loc": { - "start": { - "line": 81, - "column": 6 - }, - "end": { - "line": 82, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 81, - "column": 6 - }, - "end": { - "line": 82, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 81 - } - }, - "s": { - "0": 54, - "1": 54, - "2": 0, - "3": 54, - "4": 54, - "5": 54, - "6": 54, - "7": 54, - "8": 48, - "9": 54, - "10": 54, - "11": 54, - "12": 54, - "13": 54, - "14": 54, - "15": 54, - "16": 54, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 54, - "1": 48, - "2": 54, - "3": 0 - }, - "b": { - "0": [54, 0], - "1": [0, 54], - "2": [48, 12], - "3": [54, 0], - "4": [0, 0], - "5": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAsBY;AAtBZ,2BAAuB;AAAA,IAAwB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAC/C,OAAOA,YAAY;AAEnB,SAASC,MAAMC,YAAY;AAC3B,SAASC,sBAAsB;AAQxB,gBAASC,qBAAqB;AAAA,EACnCC;AAAAA,EACAC;AAAAA,EACAC;AACoB,GAAG;AACvB,SACE,uBAAC,SAAI,WAAWP,OAAOQ,WACrB;AAAA,2BAAC,kBAAe,WAAU,OAAM,SAAQ,OACtC,iCAAC,SAAI,WAAWR,OAAO,mBAAmB,GACxC,iCAAC,UAAO,SAAQ,aAAY,SAASM,kBACnC,iCAAC,QAAK,WAAWN,OAAOS,MAAM,OAAM,SAApC;AAAA;AAAA;AAAA;AAAA,WAAyC,KAD3C;AAAA;AAAA;AAAA;AAAA,WAEA,KAHF;AAAA;AAAA;AAAA;AAAA,WAIA,KALF;AAAA;AAAA;AAAA;AAAA,WAMA;AAAA,IACC,CAACJ,iBACA,uBAAC,kBAAe,WAAU,OAAM,SAAQ,UACtC,iCAAC,SAAI,WAAWL,OAAO,mBAAmB,GACxC,iCAAC,UAAO,SAAQ,aAAY,aAAW,MAAC,SAASO,qBAC/C,iCAAC,QAAK,WAAWP,OAAOS,MAAM,OAAM,YAApC;AAAA;AAAA;AAAA;AAAA,WAA4C,KAD9C;AAAA;AAAA;AAAA;AAAA,WAEA,KAHF;AAAA;AAAA;AAAA;AAAA,WAIA,KALF;AAAA;AAAA;AAAA;AAAA,WAMA;AAAA,OAfJ;AAAA;AAAA;AAAA;AAAA,SAiBA;AAEJ;AAACC,KAzBeN;AAAoB;AAAAO", - "names": [ - "styles", - "Dash", - "Plus", - "OverlayTrigger", - "DynamicFieldsButtons", - "originalField", - "onAddButtonClick", - "onRemoveButtonClick", - "container", - "icon", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/dynamic-fields-buttons/DynamicFieldsButtons.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/dynamic-fields-buttons/DynamicFieldsButtons.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "869cac48ae6dd4bca6d83e9d0e3b4a6aa19579c3" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/useFields.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/useFields.tsx", - "statementMap": { - "0": { - "start": { - "line": 4, - "column": 0 - }, - "end": { - "line": 14, - "column": 1 - } - }, - "1": { - "start": { - "line": 5, - "column": 2 - }, - "end": { - "line": 7, - "column": 3 - } - }, - "2": { - "start": { - "line": 6, - "column": 4 - }, - "end": { - "line": 6, - "column": 165 - } - }, - "3": { - "start": { - "line": 8, - "column": 2 - }, - "end": { - "line": 8, - "column": 39 - } - }, - "4": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "5": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 12, - "column": 4 - } - }, - "6": { - "start": { - "line": 11, - "column": 4 - }, - "end": { - "line": 11, - "column": 191 - } - }, - "7": { - "start": { - "line": 13, - "column": 2 - }, - "end": { - "line": 13, - "column": 75 - } - }, - "8": { - "start": { - "line": 15, - "column": 9 - }, - "end": { - "line": 15, - "column": 23 - } - }, - "9": { - "start": { - "line": 19, - "column": 2 - }, - "end": { - "line": 19, - "column": 71 - } - }, - "10": { - "start": { - "line": 19, - "column": 38 - }, - "end": { - "line": 19, - "column": 69 - } - }, - "11": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 31, - "column": 5 - } - }, - "12": { - "start": { - "line": 23, - "column": 4 - }, - "end": { - "line": 25, - "column": 5 - } - }, - "13": { - "start": { - "line": 24, - "column": 6 - }, - "end": { - "line": 24, - "column": 19 - } - }, - "14": { - "start": { - "line": 26, - "column": 23 - }, - "end": { - "line": 26, - "column": 64 - } - }, - "15": { - "start": { - "line": 27, - "column": 4 - }, - "end": { - "line": 29, - "column": 5 - } - }, - "16": { - "start": { - "line": 28, - "column": 6 - }, - "end": { - "line": 28, - "column": 80 - } - }, - "17": { - "start": { - "line": 30, - "column": 4 - }, - "end": { - "line": 30, - "column": 49 - } - }, - "18": { - "start": { - "line": 34, - "column": 22 - }, - "end": { - "line": 36, - "column": 3 - } - }, - "19": { - "start": { - "line": 35, - "column": 4 - }, - "end": { - "line": 35, - "column": 69 - } - }, - "20": { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 42, - "column": 4 - } - }, - "21": { - "start": { - "line": 45, - "column": 2 - }, - "end": { - "line": 45, - "column": 7 - } - }, - "22": { - "start": { - "line": 46, - "column": 32 - }, - "end": { - "line": 46, - "column": 101 - } - }, - "23": { - "start": { - "line": 47, - "column": 30 - }, - "end": { - "line": 47, - "column": 63 - } - }, - "24": { - "start": { - "line": 48, - "column": 19 - }, - "end": { - "line": 48, - "column": 79 - } - }, - "25": { - "start": { - "line": 48, - "column": 30 - }, - "end": { - "line": 48, - "column": 79 - } - }, - "26": { - "start": { - "line": 49, - "column": 22 - }, - "end": { - "line": 49, - "column": 110 - } - }, - "27": { - "start": { - "line": 49, - "column": 38 - }, - "end": { - "line": 49, - "column": 110 - } - }, - "28": { - "start": { - "line": 49, - "column": 91 - }, - "end": { - "line": 49, - "column": 107 - } - }, - "29": { - "start": { - "line": 50, - "column": 2 - }, - "end": { - "line": 54, - "column": 4 - } - }, - "30": { - "start": { - "line": 56, - "column": 0 - }, - "end": { - "line": 56, - "column": 46 - } - }, - "31": { - "start": { - "line": 57, - "column": 0 - }, - "end": { - "line": 73, - "column": 1 - } - }, - "32": { - "start": { - "line": 58, - "column": 2 - }, - "end": { - "line": 58, - "column": 39 - } - }, - "33": { - "start": { - "line": 59, - "column": 2 - }, - "end": { - "line": 59, - "column": 39 - } - }, - "34": { - "start": { - "line": 60, - "column": 2 - }, - "end": { - "line": 72, - "column": 5 - } - }, - "35": { - "start": { - "line": 64, - "column": 4 - }, - "end": { - "line": 64, - "column": 217 - } - }, - "36": { - "start": { - "line": 65, - "column": 4 - }, - "end": { - "line": 71, - "column": 7 - } - }, - "37": { - "start": { - "line": 66, - "column": 6 - }, - "end": { - "line": 67, - "column": 15 - } - }, - "38": { - "start": { - "line": 67, - "column": 8 - }, - "end": { - "line": 67, - "column": 15 - } - }, - "39": { - "start": { - "line": 68, - "column": 32 - }, - "end": { - "line": 68, - "column": 115 - } - }, - "40": { - "start": { - "line": 69, - "column": 6 - }, - "end": { - "line": 70, - "column": 54 - } - }, - "41": { - "start": { - "line": 70, - "column": 8 - }, - "end": { - "line": 70, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 10, - "column": 24 - }, - "end": { - "line": 10, - "column": 25 - } - }, - "loc": { - "start": { - "line": 10, - "column": 38 - }, - "end": { - "line": 12, - "column": 3 - } - }, - "line": 10 - }, - "1": { - "name": "getFieldsWithIndex", - "decl": { - "start": { - "line": 18, - "column": 9 - }, - "end": { - "line": 18, - "column": 27 - } - }, - "loc": { - "start": { - "line": 18, - "column": 36 - }, - "end": { - "line": 20, - "column": 1 - } - }, - "line": 18 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 19, - "column": 20 - }, - "end": { - "line": 19, - "column": 21 - } - }, - "loc": { - "start": { - "line": 19, - "column": 38 - }, - "end": { - "line": 19, - "column": 69 - } - }, - "line": 19 - }, - "3": { - "name": "getFieldWithIndex", - "decl": { - "start": { - "line": 21, - "column": 9 - }, - "end": { - "line": 21, - "column": 26 - } - }, - "loc": { - "start": { - "line": 21, - "column": 46 - }, - "end": { - "line": 32, - "column": 1 - } - }, - "line": 21 - }, - "4": { - "name": "(anonymous_4)", - "decl": { - "start": { - "line": 22, - "column": 35 - }, - "end": { - "line": 22, - "column": 36 - } - }, - "loc": { - "start": { - "line": 22, - "column": 46 - }, - "end": { - "line": 31, - "column": 3 - } - }, - "line": 22 - }, - "5": { - "name": "getPropsWithFieldIndex", - "decl": { - "start": { - "line": 33, - "column": 9 - }, - "end": { - "line": 33, - "column": 31 - } - }, - "loc": { - "start": { - "line": 33, - "column": 51 - }, - "end": { - "line": 43, - "column": 1 - } - }, - "line": 33 - }, - "6": { - "name": "(anonymous_6)", - "decl": { - "start": { - "line": 34, - "column": 22 - }, - "end": { - "line": 34, - "column": 23 - } - }, - "loc": { - "start": { - "line": 34, - "column": 34 - }, - "end": { - "line": 36, - "column": 3 - } - }, - "line": 34 - }, - "7": { - "name": "useFields", - "decl": { - "start": { - "line": 44, - "column": 16 - }, - "end": { - "line": 44, - "column": 25 - } - }, - "loc": { - "start": { - "line": 44, - "column": 59 - }, - "end": { - "line": 55, - "column": 1 - } - }, - "line": 44 - }, - "8": { - "name": "(anonymous_8)", - "decl": { - "start": { - "line": 48, - "column": 19 - }, - "end": { - "line": 48, - "column": 20 - } - }, - "loc": { - "start": { - "line": 48, - "column": 30 - }, - "end": { - "line": 48, - "column": 79 - } - }, - "line": 48 - }, - "9": { - "name": "(anonymous_9)", - "decl": { - "start": { - "line": 49, - "column": 22 - }, - "end": { - "line": 49, - "column": 23 - } - }, - "loc": { - "start": { - "line": 49, - "column": 38 - }, - "end": { - "line": 49, - "column": 110 - } - }, - "line": 49 - }, - "10": { - "name": "(anonymous_10)", - "decl": { - "start": { - "line": 49, - "column": 81 - }, - "end": { - "line": 49, - "column": 82 - } - }, - "loc": { - "start": { - "line": 49, - "column": 91 - }, - "end": { - "line": 49, - "column": 107 - } - }, - "line": 49 - }, - "11": { - "name": "(anonymous_11)", - "decl": { - "start": { - "line": 63, - "column": 9 - }, - "end": { - "line": 63, - "column": 10 - } - }, - "loc": { - "start": { - "line": 63, - "column": 29 - }, - "end": { - "line": 72, - "column": 3 - } - }, - "line": 63 - }, - "12": { - "name": "(anonymous_12)", - "decl": { - "start": { - "line": 65, - "column": 27 - }, - "end": { - "line": 65, - "column": 28 - } - }, - "loc": { - "start": { - "line": 65, - "column": 44 - }, - "end": { - "line": 71, - "column": 5 - } - }, - "line": 65 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 4, - "column": 0 - }, - "end": { - "line": 14, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 4, - "column": 0 - }, - "end": { - "line": 14, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 4 - }, - "1": { - "loc": { - "start": { - "line": 5, - "column": 2 - }, - "end": { - "line": 7, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 2 - }, - "end": { - "line": 7, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "2": { - "loc": { - "start": { - "line": 23, - "column": 4 - }, - "end": { - "line": 25, - "column": 5 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 23, - "column": 4 - }, - "end": { - "line": 25, - "column": 5 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 23 - }, - "3": { - "loc": { - "start": { - "line": 27, - "column": 4 - }, - "end": { - "line": 29, - "column": 5 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 27, - "column": 4 - }, - "end": { - "line": 29, - "column": 5 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 27 - }, - "4": { - "loc": { - "start": { - "line": 35, - "column": 11 - }, - "end": { - "line": 35, - "column": 68 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 35, - "column": 11 - }, - "end": { - "line": 35, - "column": 39 - } - }, - { - "start": { - "line": 35, - "column": 43 - }, - "end": { - "line": 35, - "column": 68 - } - } - ], - "line": 35 - }, - "5": { - "loc": { - "start": { - "line": 37, - "column": 9 - }, - "end": { - "line": 42, - "column": 3 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 37, - "column": 30 - }, - "end": { - "line": 40, - "column": 3 - } - }, - { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 42, - "column": 3 - } - } - ], - "line": 37 - }, - "6": { - "loc": { - "start": { - "line": 46, - "column": 32 - }, - "end": { - "line": 46, - "column": 101 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 46, - "column": 52 - }, - "end": { - "line": 46, - "column": 86 - } - }, - { - "start": { - "line": 46, - "column": 89 - }, - "end": { - "line": 46, - "column": 101 - } - } - ], - "line": 46 - }, - "7": { - "loc": { - "start": { - "line": 57, - "column": 0 - }, - "end": { - "line": 73, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 57, - "column": 0 - }, - "end": { - "line": 73, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 57 - }, - "8": { - "loc": { - "start": { - "line": 66, - "column": 6 - }, - "end": { - "line": 67, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 66, - "column": 6 - }, - "end": { - "line": 67, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 66 - }, - "9": { - "loc": { - "start": { - "line": 69, - "column": 6 - }, - "end": { - "line": 70, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 69, - "column": 6 - }, - "end": { - "line": 70, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 69 - } - }, - "s": { - "0": 78, - "1": 78, - "2": 0, - "3": 78, - "4": 78, - "5": 78, - "6": 0, - "7": 78, - "8": 78, - "9": 66, - "10": 108, - "11": 648, - "12": 864, - "13": 216, - "14": 648, - "15": 648, - "16": 432, - "17": 648, - "18": 648, - "19": 648, - "20": 648, - "21": 234, - "22": 234, - "23": 234, - "24": 234, - "25": 42, - "26": 234, - "27": 24, - "28": 48, - "29": 234, - "30": 78, - "31": 78, - "32": 78, - "33": 78, - "34": 78, - "35": 78, - "36": 78, - "37": 0, - "38": 0, - "39": 0, - "40": 0, - "41": 0 - }, - "f": { - "0": 0, - "1": 66, - "2": 108, - "3": 648, - "4": 864, - "5": 648, - "6": 648, - "7": 234, - "8": 42, - "9": 24, - "10": 48, - "11": 78, - "12": 0 - }, - "b": { - "0": [78, 0], - "1": [0, 78], - "2": [216, 648], - "3": [432, 216], - "4": [648, 648], - "5": [72, 576], - "6": [108, 126], - "7": [78, 0], - "8": [0, 0], - "9": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": ";;;;;;;;;;;;;;;AAAA,OAAOA,SAAkCC,gBAAgB;AACzD,SAASC,iBAAiB;AAE1B,SAASC,mBAAmBC,QAA0B;AACpD,SAAOA,OAAOC,IAAI,CAACC,OAAOC,UAAUC,kBAAkBF,OAAOC,KAAK,CAAC;AACrE;AAEA,SAASC,kBAAkBF,OAAkBG,YAAoB;AAC/D,SAAOT,MAAMU,SAASL,IAAIC,OAAO,CAACK,UAAqB;AACrD,QAAI,CAACX,MAAMY,eAAeD,KAAK,GAAG;AAChC,aAAOA;AAAAA,IACT;AAGA,UAAME,aAAaC,uBAAuBH,OAAOF,UAAU;AAG3D,QAAIE,MAAMI,MAAMC,UAAU;AAExBH,iBAAWG,WAAWR,kBAAkBG,MAAMI,MAAMC,UAAUP,UAAU;AAAA,IAC1E;AAGA,WAAOT,MAAMiB,aAAaN,OAAOE,UAAU;AAAA,EAC7C,CAAC;AACH;AAEA,SAASC,uBAAuBH,OAAqBF,YAAoB;AACvE,QAAMS,cAAcA,CAACP,WAAqB;AACxC,WAAOX,MAAMY,eAAeD,MAAK,KAAKA,OAAMQ,SAASjB;AAAAA,EACvD;AAGA,SAAOgB,YAAYP,KAAK,IACpB;AAAA,IAAE,GAAGA,MAAMI;AAAAA,IAAON,YAAYA,WAAWW,SAAS;AAAA,EAAE,IACpD;AAAA,IAAE,GAAGT,MAAMI;AAAAA,EAAM;AACvB;AAEO,gBAASM,UAAUC,cAAqCC,mBAA6B;AAAAC;AAC1F,QAAMC,wBAAwBF,oBAC1Bf,kBAAkBc,cAAc,CAAC,IACjCA;AACJ,QAAM,CAAClB,QAAQsB,SAAS,IAAIzB,SAAS,CAACwB,qBAAqB,CAAC;AAE5D,QAAME,WAAWA,CAACrB,UAChBoB,UAAUvB,mBAAmB,CAAC,GAAGC,QAAQE,KAAK,CAAC,CAAC;AAElD,QAAMsB,cAAcA,CAACnB,eACnBiB,UAAUvB,mBAAmBC,OAAOyB,OAAO,CAACC,GAAGC,MAAMA,MAAMtB,UAAU,CAAC,CAAC;AAEzE,SAAO;AAAA,IAAEL;AAAAA,IAAQuB;AAAAA,IAAUC;AAAAA,EAAY;AACzC;AAACJ,GAbeH,WAAS", - "names": [ - "React", - "useState", - "FormGroup", - "getFieldsWithIndex", - "fields", - "map", - "field", - "index", - "getFieldWithIndex", - "fieldIndex", - "Children", - "child", - "isValidElement", - "childProps", - "getPropsWithFieldIndex", - "props", - "children", - "cloneElement", - "isFormGroup", - "type", - "toString", - "useFields", - "initialField", - "withDynamicFields", - "_s", - "initialFieldWithIndex", - "setFields", - "addField", - "removeField", - "filter", - "_", - "i" - ], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/useFields.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/useFields.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "dd369b174d0cfb8f065f02a9f7ade9816e6591c0" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/FormGroupWithMultipleFields.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/FormGroupWithMultipleFields.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 209 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 16, - "column": 9 - }, - "end": { - "line": 16, - "column": 23 - } - }, - "9": { - "start": { - "line": 24, - "column": 14 - }, - "end": { - "line": 46, - "column": 8 - } - }, - "10": { - "start": { - "line": 28, - "column": 22 - }, - "end": { - "line": 46, - "column": 8 - } - }, - "11": { - "start": { - "line": 47, - "column": 0 - }, - "end": { - "line": 47, - "column": 11 - } - }, - "12": { - "start": { - "line": 55, - "column": 2 - }, - "end": { - "line": 55, - "column": 7 - } - }, - "13": { - "start": { - "line": 60, - "column": 6 - }, - "end": { - "line": 60, - "column": 44 - } - }, - "14": { - "start": { - "line": 61, - "column": 2 - }, - "end": { - "line": 96, - "column": 11 - } - }, - "15": { - "start": { - "line": 62, - "column": 25 - }, - "end": { - "line": 62, - "column": 35 - } - }, - "16": { - "start": { - "line": 63, - "column": 4 - }, - "end": { - "line": 91, - "column": 13 - } - }, - "17": { - "start": { - "line": 78, - "column": 174 - }, - "end": { - "line": 78, - "column": 189 - } - }, - "18": { - "start": { - "line": 78, - "column": 218 - }, - "end": { - "line": 78, - "column": 236 - } - }, - "19": { - "start": { - "line": 98, - "column": 0 - }, - "end": { - "line": 100, - "column": 3 - } - }, - "20": { - "start": { - "line": 99, - "column": 2 - }, - "end": { - "line": 99, - "column": 21 - } - }, - "21": { - "start": { - "line": 101, - "column": 0 - }, - "end": { - "line": 101, - "column": 34 - } - }, - "22": { - "start": { - "line": 103, - "column": 0 - }, - "end": { - "line": 103, - "column": 26 - } - }, - "23": { - "start": { - "line": 104, - "column": 0 - }, - "end": { - "line": 104, - "column": 49 - } - }, - "24": { - "start": { - "line": 105, - "column": 0 - }, - "end": { - "line": 121, - "column": 1 - } - }, - "25": { - "start": { - "line": 106, - "column": 2 - }, - "end": { - "line": 106, - "column": 39 - } - }, - "26": { - "start": { - "line": 107, - "column": 2 - }, - "end": { - "line": 107, - "column": 39 - } - }, - "27": { - "start": { - "line": 108, - "column": 2 - }, - "end": { - "line": 120, - "column": 5 - } - }, - "28": { - "start": { - "line": 112, - "column": 4 - }, - "end": { - "line": 112, - "column": 235 - } - }, - "29": { - "start": { - "line": 113, - "column": 4 - }, - "end": { - "line": 119, - "column": 7 - } - }, - "30": { - "start": { - "line": 114, - "column": 6 - }, - "end": { - "line": 115, - "column": 15 - } - }, - "31": { - "start": { - "line": 115, - "column": 8 - }, - "end": { - "line": 115, - "column": 15 - } - }, - "32": { - "start": { - "line": 116, - "column": 32 - }, - "end": { - "line": 116, - "column": 115 - } - }, - "33": { - "start": { - "line": 117, - "column": 6 - }, - "end": { - "line": 118, - "column": 54 - } - }, - "34": { - "start": { - "line": 118, - "column": 8 - }, - "end": { - "line": 118, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "(anonymous_1)", - "decl": { - "start": { - "line": 24, - "column": 14 - }, - "end": { - "line": 24, - "column": 15 - } - }, - "loc": { - "start": { - "line": 28, - "column": 22 - }, - "end": { - "line": 46, - "column": 8 - } - }, - "line": 28 - }, - "2": { - "name": "FormGroupWithMultipleFields", - "decl": { - "start": { - "line": 48, - "column": 16 - }, - "end": { - "line": 48, - "column": 43 - } - }, - "loc": { - "start": { - "line": 54, - "column": 3 - }, - "end": { - "line": 97, - "column": 1 - } - }, - "line": 54 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 61, - "column": 65 - }, - "end": { - "line": 61, - "column": 66 - } - }, - "loc": { - "start": { - "line": 61, - "column": 83 - }, - "end": { - "line": 92, - "column": 3 - } - }, - "line": 61 - }, - "4": { - "name": "(anonymous_4)", - "decl": { - "start": { - "line": 78, - "column": 168 - }, - "end": { - "line": 78, - "column": 169 - } - }, - "loc": { - "start": { - "line": 78, - "column": 174 - }, - "end": { - "line": 78, - "column": 189 - } - }, - "line": 78 - }, - "5": { - "name": "(anonymous_5)", - "decl": { - "start": { - "line": 78, - "column": 212 - }, - "end": { - "line": 78, - "column": 213 - } - }, - "loc": { - "start": { - "line": 78, - "column": 218 - }, - "end": { - "line": 78, - "column": 236 - } - }, - "line": 78 - }, - "6": { - "name": "(anonymous_6)", - "decl": { - "start": { - "line": 98, - "column": 71 - }, - "end": { - "line": 98, - "column": 72 - } - }, - "loc": { - "start": { - "line": 98, - "column": 82 - }, - "end": { - "line": 100, - "column": 1 - } - }, - "line": 98 - }, - "7": { - "name": "(anonymous_7)", - "decl": { - "start": { - "line": 111, - "column": 9 - }, - "end": { - "line": 111, - "column": 10 - } - }, - "loc": { - "start": { - "line": 111, - "column": 29 - }, - "end": { - "line": 120, - "column": 3 - } - }, - "line": 111 - }, - "8": { - "name": "(anonymous_8)", - "decl": { - "start": { - "line": 113, - "column": 27 - }, - "end": { - "line": 113, - "column": 28 - } - }, - "loc": { - "start": { - "line": 113, - "column": 44 - }, - "end": { - "line": 119, - "column": 5 - } - }, - "line": 113 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 35, - "column": 10 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 10 - } - }, - { - "start": { - "line": 31, - "column": 30 - }, - "end": { - "line": 35, - "column": 10 - } - } - ], - "line": 31 - }, - "3": { - "loc": { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 41, - "column": 10 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 37, - "column": 9 - } - }, - { - "start": { - "line": 37, - "column": 29 - }, - "end": { - "line": 41, - "column": 10 - } - } - ], - "line": 37 - }, - "4": { - "loc": { - "start": { - "line": 64, - "column": 53 - }, - "end": { - "line": 68, - "column": 14 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 64, - "column": 53 - }, - "end": { - "line": 64, - "column": 65 - } - }, - { - "start": { - "line": 64, - "column": 85 - }, - "end": { - "line": 68, - "column": 14 - } - } - ], - "line": 64 - }, - "5": { - "loc": { - "start": { - "line": 78, - "column": 53 - }, - "end": { - "line": 82, - "column": 14 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 78, - "column": 53 - }, - "end": { - "line": 78, - "column": 70 - } - }, - { - "start": { - "line": 78, - "column": 90 - }, - "end": { - "line": 82, - "column": 14 - } - } - ], - "line": 78 - }, - "6": { - "loc": { - "start": { - "line": 105, - "column": 0 - }, - "end": { - "line": 121, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 105, - "column": 0 - }, - "end": { - "line": 121, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 105 - }, - "7": { - "loc": { - "start": { - "line": 114, - "column": 6 - }, - "end": { - "line": 115, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 114, - "column": 6 - }, - "end": { - "line": 115, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 114 - }, - "8": { - "loc": { - "start": { - "line": 117, - "column": 6 - }, - "end": { - "line": 118, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 117, - "column": 6 - }, - "end": { - "line": 118, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 117 - } - }, - "s": { - "0": 54, - "1": 54, - "2": 0, - "3": 54, - "4": 54, - "5": 54, - "6": 108, - "7": 54, - "8": 54, - "9": 54, - "10": 138, - "11": 54, - "12": 138, - "13": 138, - "14": 138, - "15": 150, - "16": 150, - "17": 12, - "18": 12, - "19": 54, - "20": 48, - "21": 54, - "22": 54, - "23": 54, - "24": 54, - "25": 54, - "26": 54, - "27": 54, - "28": 54, - "29": 54, - "30": 0, - "31": 0, - "32": 0, - "33": 0, - "34": 0 - }, - "f": { - "0": 108, - "1": 138, - "2": 138, - "3": 150, - "4": 12, - "5": 12, - "6": 48, - "7": 54, - "8": 0 - }, - "b": { - "0": [54, 0], - "1": [0, 54], - "2": [138, 30], - "3": [138, 0], - "4": [150, 138], - "5": [150, 48], - "6": [54, 0], - "7": [0, 0], - "8": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAkByB,SAerB,UAfqB;;;;;;;;;;;;;;;;AAlBzB,SAASA,WAAW;AACpB,SAASC,WAAW;AAEpB,OAAOC,YAAY;AACnB,SAASC,2BAA2B;AACpC,SAASC,4BAA4B;AACrC,SAASC,iBAAiB;AAC1B,SAASC,eAAe;AASxB,MAAMC,QAAQA,CAAC;AAAA,EAAEC;AAAAA,EAAOC;AAAAA,EAAUC;AAAmD,MACnF,uBAAC,UAAK,WAAWR,OAAOM,OACrBA;AAAAA;AAAAA,EAAM;AAAA,EAAEC,YAAY,uBAAC,yBAAD;AAAA;AAAA;AAAA;AAAA,SAAoB;AAAA,EAAK;AAAA,EAC7CC,WAAW,uBAAC,WAAQ,WAAU,SAAQ,WAA3B;AAAA;AAAA;AAAA;AAAA,SAA6C;AAAA,KAF3D;AAAA;AAAA;AAAA;AAAA,OAGA;AACDC,KALKJ;AAOC,gBAASK,4BAA4B;AAAA,EAC1CJ;AAAAA,EACAK;AAAAA,EACAJ;AAAAA,EACAC;AAAAA,EACAI;AACmD,GAAG;AAAAC;AACtD,QAAM;AAAA,IAAEC;AAAAA,IAAQC;AAAAA,IAAUC;AAAAA,EAAY,IAAIb,UAAUS,UAAUD,iBAAiB;AAE/E,SACE,mCACGG,iBAAOG,IAAI,CAACC,OAAOC,UAAU;AAC5B,UAAMC,eAAeD,SAAS;AAE9B,WACE,uBAAC,OACC;AAAA,6BAAC,OAAI,IAAI,GACNC,0BAAgB,uBAAC,SAAM,OAAc,UAAoB,WAAzC;AAAA;AAAA;AAAA;AAAA,aAA0D,KAD7E;AAAA;AAAA;AAAA;AAAA,aAEA;AAAA,MACA,uBAAC,OAAI,IAAI,GAAIF,mBAAb;AAAA;AAAA;AAAA;AAAA,aAAmB;AAAA,MACnB,uBAAC,OAAI,IAAI,GACNP,+BACC,uBAAC,wBACC,eAAeS,cACf,kBAAkB,MAAML,SAASG,KAAK,GACtC,qBAAqB,MAAMF,YAAYG,KAAK,KAH9C;AAAA;AAAA;AAAA;AAAA,aAGgD,KALpD;AAAA;AAAA;AAAA;AAAA,aAQA;AAAA,SAbQA,OAAV;AAAA;AAAA;AAAA;AAAA,WAcA;AAAA,EAEJ,CAAC,KArBH;AAAA;AAAA;AAAA;AAAA,SAsBA;AAEJ;AAACN,GAlCeH,6BAA2B;AAAA,UAOCP,SAAS;AAAA;AAAAkB,MAPrCX;AAA2B;AAAAY;AAAAA", - "names": [ - "Row", - "Col", - "styles", - "RequiredInputSymbol", - "DynamicFieldsButtons", - "useFields", - "Tooltip", - "Title", - "title", - "required", - "message", - "_c", - "FormGroupWithMultipleFields", - "withDynamicFields", - "children", - "_s", - "fields", - "addField", - "removeField", - "map", - "field", - "index", - "isFirstField", - "_c2", - "$RefreshReg$" - ], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/FormGroupWithMultipleFields.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/FormGroupWithMultipleFields.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "c5282791341d3d2325118c621a420abad931fbdb" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/Form.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/Form.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 159 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 24, - "column": 2 - }, - "end": { - "line": 28, - "column": 11 - } - }, - "9": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 30, - "column": 10 - } - }, - "10": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 31, - "column": 23 - } - }, - "11": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 32, - "column": 59 - } - }, - "12": { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 35, - "column": 25 - } - }, - "13": { - "start": { - "line": 36, - "column": 0 - }, - "end": { - "line": 52, - "column": 1 - } - }, - "14": { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 37, - "column": 39 - } - }, - "15": { - "start": { - "line": 38, - "column": 2 - }, - "end": { - "line": 38, - "column": 39 - } - }, - "16": { - "start": { - "line": 39, - "column": 2 - }, - "end": { - "line": 51, - "column": 5 - } - }, - "17": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 185 - } - }, - "18": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 50, - "column": 7 - } - }, - "19": { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 15 - } - }, - "20": { - "start": { - "line": 46, - "column": 8 - }, - "end": { - "line": 46, - "column": 15 - } - }, - "21": { - "start": { - "line": 47, - "column": 32 - }, - "end": { - "line": 47, - "column": 115 - } - }, - "22": { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 54 - } - }, - "23": { - "start": { - "line": 49, - "column": 8 - }, - "end": { - "line": 49, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Form", - "decl": { - "start": { - "line": 19, - "column": 9 - }, - "end": { - "line": 19, - "column": 13 - } - }, - "loc": { - "start": { - "line": 23, - "column": 3 - }, - "end": { - "line": 29, - "column": 1 - } - }, - "line": 23 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 42, - "column": 9 - }, - "end": { - "line": 42, - "column": 10 - } - }, - "loc": { - "start": { - "line": 42, - "column": 29 - }, - "end": { - "line": 51, - "column": 3 - } - }, - "line": 42 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 44, - "column": 27 - }, - "end": { - "line": 44, - "column": 28 - } - }, - "loc": { - "start": { - "line": 44, - "column": 44 - }, - "end": { - "line": 50, - "column": 5 - } - }, - "line": 44 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 36, - "column": 0 - }, - "end": { - "line": 52, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 36, - "column": 0 - }, - "end": { - "line": 52, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 36 - }, - "3": { - "loc": { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 45 - }, - "4": { - "loc": { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 48 - } - }, - "s": { - "0": 6, - "1": 6, - "2": 0, - "3": 6, - "4": 6, - "5": 6, - "6": 6, - "7": 6, - "8": 6, - "9": 6, - "10": 6, - "11": 6, - "12": 6, - "13": 6, - "14": 6, - "15": 6, - "16": 6, - "17": 6, - "18": 6, - "19": 0, - "20": 0, - "21": 0, - "22": 0, - "23": 0 - }, - "f": { - "0": 6, - "1": 6, - "2": 6, - "3": 0 - }, - "b": { - "0": [6, 0], - "1": [0, 6], - "2": [6, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAYI;AAZJ,2BAAoBA;AAAyB;AAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACpD,SAASC,iBAAiB;AAC1B,SAASC,QAAQC,cAAc;AAC/B,SAASC,mCAAmC;AAO5C,SAASF,KAAK;AAAA,EAAEG;AAAAA,EAAWC;AAAAA,EAAUC;AAAuC,GAAG;AAC7E,SACE,uBAAC,UAAO,WAAsB,UAC3BA,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACC,KANQN;AAQTA,KAAKO,QAAQR;AACbC,KAAKQ,0BAA0BN;AAE/B,SAASF;AAAM;AAAAS", - "names": [ - "PropsWithChildren", - "FormGroup", - "Form", - "FormBS", - "FormGroupWithMultipleFields", - "validated", - "onSubmit", - "children", - "_c", - "Group", - "GroupWithMultipleFields", - "$RefreshReg$" - ], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/Form.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/Form.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "5a1ab9f78f556a71577a70db8e7d1da80fcf0048" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalHeader.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalHeader.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 167 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 20, - "column": 2 - }, - "end": { - "line": 24, - "column": 11 - } - }, - "9": { - "start": { - "line": 26, - "column": 0 - }, - "end": { - "line": 26, - "column": 17 - } - }, - "10": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 32 - } - }, - "11": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "12": { - "start": { - "line": 30, - "column": 2 - }, - "end": { - "line": 30, - "column": 39 - } - }, - "13": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "14": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "15": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 193 - } - }, - "16": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 43, - "column": 7 - } - }, - "17": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "18": { - "start": { - "line": 39, - "column": 8 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "19": { - "start": { - "line": 40, - "column": 32 - }, - "end": { - "line": 40, - "column": 115 - } - }, - "20": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "21": { - "start": { - "line": 42, - "column": 8 - }, - "end": { - "line": 42, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "ModalHeader", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 27 - } - }, - "loc": { - "start": { - "line": 19, - "column": 3 - }, - "end": { - "line": 25, - "column": 1 - } - }, - "line": 19 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 35, - "column": 9 - }, - "end": { - "line": 35, - "column": 10 - } - }, - "loc": { - "start": { - "line": 35, - "column": 29 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "line": 35 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 37, - "column": 27 - }, - "end": { - "line": 37, - "column": 28 - } - }, - "loc": { - "start": { - "line": 37, - "column": 44 - }, - "end": { - "line": 43, - "column": 5 - } - }, - "line": 37 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 29 - }, - "3": { - "loc": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 38 - }, - "4": { - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - } - }, - "s": { - "0": 24, - "1": 24, - "2": 0, - "3": 24, - "4": 24, - "5": 24, - "6": 24, - "7": 24, - "8": 54, - "9": 24, - "10": 24, - "11": 24, - "12": 24, - "13": 24, - "14": 24, - "15": 24, - "16": 24, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 24, - "1": 54, - "2": 24, - "3": 0 - }, - "b": { - "0": [24, 0], - "1": [0, 24], - "2": [24, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAIS;AAJT,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,aAAa;AAEf,gBAASC,YAAY;AAAA,EAAEC;AAA4B,GAAG;AAC3D,SAAO,uBAAC,MAAM,QAAN,EAAa,aAAW,MAAEA,YAA3B;AAAA;AAAA;AAAA;AAAA,SAAoC;AAC7C;AAACC,KAFeF;AAAW;AAAAG", - "names": ["Modal", "ModalHeader", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalHeader.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalHeader.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "c7ee53d01e3292308a53d8a6669430aa5a52c6e5" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalTitle.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalTitle.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 166 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 20, - "column": 2 - }, - "end": { - "line": 24, - "column": 11 - } - }, - "9": { - "start": { - "line": 26, - "column": 0 - }, - "end": { - "line": 26, - "column": 16 - } - }, - "10": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 31 - } - }, - "11": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "12": { - "start": { - "line": 30, - "column": 2 - }, - "end": { - "line": 30, - "column": 39 - } - }, - "13": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "14": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "15": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 192 - } - }, - "16": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 43, - "column": 7 - } - }, - "17": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "18": { - "start": { - "line": 39, - "column": 8 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "19": { - "start": { - "line": 40, - "column": 32 - }, - "end": { - "line": 40, - "column": 115 - } - }, - "20": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "21": { - "start": { - "line": 42, - "column": 8 - }, - "end": { - "line": 42, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "ModalTitle", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 26 - } - }, - "loc": { - "start": { - "line": 19, - "column": 3 - }, - "end": { - "line": 25, - "column": 1 - } - }, - "line": 19 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 35, - "column": 9 - }, - "end": { - "line": 35, - "column": 10 - } - }, - "loc": { - "start": { - "line": 35, - "column": 29 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "line": 35 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 37, - "column": 27 - }, - "end": { - "line": 37, - "column": 28 - } - }, - "loc": { - "start": { - "line": 37, - "column": 44 - }, - "end": { - "line": 43, - "column": 5 - } - }, - "line": 37 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 29 - }, - "3": { - "loc": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 38 - }, - "4": { - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - } - }, - "s": { - "0": 24, - "1": 24, - "2": 0, - "3": 24, - "4": 24, - "5": 24, - "6": 24, - "7": 24, - "8": 54, - "9": 24, - "10": 24, - "11": 24, - "12": 24, - "13": 24, - "14": 24, - "15": 24, - "16": 24, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 24, - "1": 54, - "2": 24, - "3": 0 - }, - "b": { - "0": [24, 0], - "1": [0, 24], - "2": [24, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAIS;AAJT,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,aAAa;AAEf,gBAASC,WAAW;AAAA,EAAEC;AAA4B,GAAG;AAC1D,SAAO,uBAAC,MAAM,OAAN,EAAaA,YAAd;AAAA;AAAA;AAAA;AAAA,SAAuB;AAChC;AAACC,KAFeF;AAAU;AAAAG", - "names": ["Modal", "ModalTitle", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalTitle.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalTitle.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "402f284164ac75966afcd9ebd7a3d63134f6e4ea" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalBody.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalBody.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 165 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 20, - "column": 2 - }, - "end": { - "line": 24, - "column": 11 - } - }, - "9": { - "start": { - "line": 26, - "column": 0 - }, - "end": { - "line": 26, - "column": 15 - } - }, - "10": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 30 - } - }, - "11": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "12": { - "start": { - "line": 30, - "column": 2 - }, - "end": { - "line": 30, - "column": 39 - } - }, - "13": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "14": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "15": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 191 - } - }, - "16": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 43, - "column": 7 - } - }, - "17": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "18": { - "start": { - "line": 39, - "column": 8 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "19": { - "start": { - "line": 40, - "column": 32 - }, - "end": { - "line": 40, - "column": 115 - } - }, - "20": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "21": { - "start": { - "line": 42, - "column": 8 - }, - "end": { - "line": 42, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "ModalBody", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 25 - } - }, - "loc": { - "start": { - "line": 19, - "column": 3 - }, - "end": { - "line": 25, - "column": 1 - } - }, - "line": 19 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 35, - "column": 9 - }, - "end": { - "line": 35, - "column": 10 - } - }, - "loc": { - "start": { - "line": 35, - "column": 29 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "line": 35 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 37, - "column": 27 - }, - "end": { - "line": 37, - "column": 28 - } - }, - "loc": { - "start": { - "line": 37, - "column": 44 - }, - "end": { - "line": 43, - "column": 5 - } - }, - "line": 37 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 29 - }, - "3": { - "loc": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 38 - }, - "4": { - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - } - }, - "s": { - "0": 24, - "1": 24, - "2": 0, - "3": 24, - "4": 24, - "5": 24, - "6": 24, - "7": 24, - "8": 54, - "9": 24, - "10": 24, - "11": 24, - "12": 24, - "13": 24, - "14": 24, - "15": 24, - "16": 24, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 24, - "1": 54, - "2": 24, - "3": 0 - }, - "b": { - "0": [24, 0], - "1": [0, 24], - "2": [24, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAIS;AAJT,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,aAAa;AAEf,gBAASC,UAAU;AAAA,EAAEC;AAA4B,GAAG;AACzD,SAAO,uBAAC,MAAM,MAAN,EAAYA,YAAb;AAAA;AAAA;AAAA;AAAA,SAAsB;AAC/B;AAACC,KAFeF;AAAS;AAAAG", - "names": ["Modal", "ModalBody", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalBody.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalBody.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "f16f96df3a7f79d283915eb4427cc8d9eba24cc4" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalFooter.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalFooter.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 167 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 20, - "column": 2 - }, - "end": { - "line": 24, - "column": 11 - } - }, - "9": { - "start": { - "line": 26, - "column": 0 - }, - "end": { - "line": 26, - "column": 17 - } - }, - "10": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 32 - } - }, - "11": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "12": { - "start": { - "line": 30, - "column": 2 - }, - "end": { - "line": 30, - "column": 39 - } - }, - "13": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "14": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "15": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 193 - } - }, - "16": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 43, - "column": 7 - } - }, - "17": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "18": { - "start": { - "line": 39, - "column": 8 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "19": { - "start": { - "line": 40, - "column": 32 - }, - "end": { - "line": 40, - "column": 115 - } - }, - "20": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "21": { - "start": { - "line": 42, - "column": 8 - }, - "end": { - "line": 42, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "ModalFooter", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 27 - } - }, - "loc": { - "start": { - "line": 19, - "column": 3 - }, - "end": { - "line": 25, - "column": 1 - } - }, - "line": 19 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 35, - "column": 9 - }, - "end": { - "line": 35, - "column": 10 - } - }, - "loc": { - "start": { - "line": 35, - "column": 29 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "line": 35 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 37, - "column": 27 - }, - "end": { - "line": 37, - "column": 28 - } - }, - "loc": { - "start": { - "line": 37, - "column": 44 - }, - "end": { - "line": 43, - "column": 5 - } - }, - "line": 37 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 29 - }, - "3": { - "loc": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 38 - }, - "4": { - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - } - }, - "s": { - "0": 24, - "1": 24, - "2": 0, - "3": 24, - "4": 24, - "5": 24, - "6": 24, - "7": 24, - "8": 24, - "9": 24, - "10": 24, - "11": 24, - "12": 24, - "13": 24, - "14": 24, - "15": 24, - "16": 24, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 24, - "1": 24, - "2": 24, - "3": 0 - }, - "b": { - "0": [24, 0], - "1": [0, 24], - "2": [24, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAIS;AAJT,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,aAAa;AAEf,gBAASC,YAAY;AAAA,EAAEC;AAA4B,GAAG;AAC3D,SAAO,uBAAC,MAAM,QAAN,EAAcA,YAAf;AAAA;AAAA;AAAA;AAAA,SAAwB;AACjC;AAACC,KAFeF;AAAW;AAAAG", - "names": ["Modal", "ModalFooter", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalFooter.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalFooter.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "2a3211f21b341791e62db0c5f67e37b8af0206e2" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/Modal.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/Modal.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 161 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 27, - "column": 2 - }, - "end": { - "line": 31, - "column": 11 - } - }, - "9": { - "start": { - "line": 33, - "column": 0 - }, - "end": { - "line": 33, - "column": 11 - } - }, - "10": { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 34, - "column": 27 - } - }, - "11": { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 35, - "column": 25 - } - }, - "12": { - "start": { - "line": 36, - "column": 0 - }, - "end": { - "line": 36, - "column": 23 - } - }, - "13": { - "start": { - "line": 37, - "column": 0 - }, - "end": { - "line": 37, - "column": 27 - } - }, - "14": { - "start": { - "line": 40, - "column": 0 - }, - "end": { - "line": 40, - "column": 26 - } - }, - "15": { - "start": { - "line": 41, - "column": 0 - }, - "end": { - "line": 57, - "column": 1 - } - }, - "16": { - "start": { - "line": 42, - "column": 2 - }, - "end": { - "line": 42, - "column": 39 - } - }, - "17": { - "start": { - "line": 43, - "column": 2 - }, - "end": { - "line": 43, - "column": 39 - } - }, - "18": { - "start": { - "line": 44, - "column": 2 - }, - "end": { - "line": 56, - "column": 5 - } - }, - "19": { - "start": { - "line": 48, - "column": 4 - }, - "end": { - "line": 48, - "column": 187 - } - }, - "20": { - "start": { - "line": 49, - "column": 4 - }, - "end": { - "line": 55, - "column": 7 - } - }, - "21": { - "start": { - "line": 50, - "column": 6 - }, - "end": { - "line": 51, - "column": 15 - } - }, - "22": { - "start": { - "line": 51, - "column": 8 - }, - "end": { - "line": 51, - "column": 15 - } - }, - "23": { - "start": { - "line": 52, - "column": 32 - }, - "end": { - "line": 52, - "column": 115 - } - }, - "24": { - "start": { - "line": 53, - "column": 6 - }, - "end": { - "line": 54, - "column": 54 - } - }, - "25": { - "start": { - "line": 54, - "column": 8 - }, - "end": { - "line": 54, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Modal", - "decl": { - "start": { - "line": 21, - "column": 9 - }, - "end": { - "line": 21, - "column": 14 - } - }, - "loc": { - "start": { - "line": 26, - "column": 3 - }, - "end": { - "line": 32, - "column": 1 - } - }, - "line": 26 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 47, - "column": 9 - }, - "end": { - "line": 47, - "column": 10 - } - }, - "loc": { - "start": { - "line": 47, - "column": 29 - }, - "end": { - "line": 56, - "column": 3 - } - }, - "line": 47 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 49, - "column": 27 - }, - "end": { - "line": 49, - "column": 28 - } - }, - "loc": { - "start": { - "line": 49, - "column": 44 - }, - "end": { - "line": 55, - "column": 5 - } - }, - "line": 49 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 41, - "column": 0 - }, - "end": { - "line": 57, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 0 - }, - "end": { - "line": 57, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - }, - "3": { - "loc": { - "start": { - "line": 50, - "column": 6 - }, - "end": { - "line": 51, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 50, - "column": 6 - }, - "end": { - "line": 51, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 50 - }, - "4": { - "loc": { - "start": { - "line": 53, - "column": 6 - }, - "end": { - "line": 54, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 53, - "column": 6 - }, - "end": { - "line": 54, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 53 - } - }, - "s": { - "0": 24, - "1": 24, - "2": 0, - "3": 24, - "4": 24, - "5": 24, - "6": 24, - "7": 24, - "8": 54, - "9": 24, - "10": 24, - "11": 24, - "12": 24, - "13": 24, - "14": 24, - "15": 24, - "16": 24, - "17": 24, - "18": 24, - "19": 24, - "20": 24, - "21": 0, - "22": 0, - "23": 0, - "24": 0, - "25": 0 - }, - "f": { - "0": 24, - "1": 54, - "2": 24, - "3": 0 - }, - "b": { - "0": [24, 0], - "1": [0, 24], - "2": [24, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAeI;AAfJ,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,SAASC,eAAe;AACjC,SAASC,mBAAmB;AAC5B,SAASC,kBAAkB;AAC3B,SAASC,iBAAiB;AAC1B,SAASC,mBAAmB;AAQ5B,SAASL,MAAM;AAAA,EAAEM;AAAAA,EAAMC;AAAAA,EAAQC;AAAAA,EAAMC;AAAwC,GAAG;AAC9E,SACE,uBAAC,WAAQ,MAAY,QAAgB,MAClCA,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACC,KANQV;AAQTA,MAAMW,SAAST;AACfF,MAAMY,QAAQT;AACdH,MAAMa,OAAOT;AACbJ,MAAMc,SAAST;AAEf,SAASL;AAAO;AAAAe", - "names": [ - "Modal", - "BSModal", - "ModalHeader", - "ModalTitle", - "ModalBody", - "ModalFooter", - "show", - "onHide", - "size", - "children", - "_c", - "Header", - "Title", - "Body", - "Footer", - "$RefreshReg$" - ], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/Modal.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/Modal.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "ed75bdc59b62e3a2d9ce8e73efe78b188233e81a" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/navbar-dropdown/NavbarDropdownItem.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/navbar-dropdown/NavbarDropdownItem.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 191 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 26, - "column": 11 - } - }, - "9": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 24 - } - }, - "10": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 30, - "column": 39 - } - }, - "11": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "12": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "13": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 33, - "column": 39 - } - }, - "14": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 46, - "column": 5 - } - }, - "15": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 38, - "column": 217 - } - }, - "16": { - "start": { - "line": 39, - "column": 4 - }, - "end": { - "line": 45, - "column": 7 - } - }, - "17": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "18": { - "start": { - "line": 41, - "column": 8 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "19": { - "start": { - "line": 42, - "column": 32 - }, - "end": { - "line": 42, - "column": 115 - } - }, - "20": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - "21": { - "start": { - "line": 44, - "column": 8 - }, - "end": { - "line": 44, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "NavbarDropdownItem", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 34 - } - }, - "loc": { - "start": { - "line": 21, - "column": 3 - }, - "end": { - "line": 27, - "column": 1 - } - }, - "line": 21 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 37, - "column": 9 - }, - "end": { - "line": 37, - "column": 10 - } - }, - "loc": { - "start": { - "line": 37, - "column": 29 - }, - "end": { - "line": 46, - "column": 3 - } - }, - "line": 37 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 39, - "column": 27 - }, - "end": { - "line": 39, - "column": 28 - } - }, - "loc": { - "start": { - "line": 39, - "column": 44 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "line": 39 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 31 - }, - "3": { - "loc": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 40 - }, - "4": { - "loc": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 43 - } - }, - "s": { - "0": 24, - "1": 24, - "2": 0, - "3": 24, - "4": 24, - "5": 24, - "6": 24, - "7": 24, - "8": 24, - "9": 24, - "10": 24, - "11": 24, - "12": 24, - "13": 24, - "14": 24, - "15": 24, - "16": 24, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 24, - "1": 24, - "2": 24, - "3": 0 - }, - "b": { - "0": [24, 0], - "1": [0, 24], - "2": [24, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAcI;AAdJ,2BAAoB;AAAyB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQtC,gBAASA,mBAAmB;AAAA,EACjCC;AAAAA,EACAC;AAAAA,EACAC;AAC0C,GAAG;AAC7C,SACE,uBAAC,YAAY,MAAZ,EAAiB,MAAY,SAC3BA,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACC,KAVeJ;AAAkB;AAAAK", - "names": ["NavbarDropdownItem", "href", "onClick", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/navbar-dropdown/NavbarDropdownItem.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/navbar-dropdown/NavbarDropdownItem.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "ea6da3953593b5727241298fb3b2dd68abedfa02" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/navbar-dropdown/NavbarDropdown.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/navbar-dropdown/NavbarDropdown.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 187 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 23, - "column": 2 - }, - "end": { - "line": 27, - "column": 11 - } - }, - "9": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 20 - } - }, - "10": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 30, - "column": 41 - } - }, - "11": { - "start": { - "line": 33, - "column": 0 - }, - "end": { - "line": 33, - "column": 35 - } - }, - "12": { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 50, - "column": 1 - } - }, - "13": { - "start": { - "line": 35, - "column": 2 - }, - "end": { - "line": 35, - "column": 39 - } - }, - "14": { - "start": { - "line": 36, - "column": 2 - }, - "end": { - "line": 36, - "column": 39 - } - }, - "15": { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 49, - "column": 5 - } - }, - "16": { - "start": { - "line": 41, - "column": 4 - }, - "end": { - "line": 41, - "column": 213 - } - }, - "17": { - "start": { - "line": 42, - "column": 4 - }, - "end": { - "line": 48, - "column": 7 - } - }, - "18": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 15 - } - }, - "19": { - "start": { - "line": 44, - "column": 8 - }, - "end": { - "line": 44, - "column": 15 - } - }, - "20": { - "start": { - "line": 45, - "column": 32 - }, - "end": { - "line": 45, - "column": 115 - } - }, - "21": { - "start": { - "line": 46, - "column": 6 - }, - "end": { - "line": 47, - "column": 54 - } - }, - "22": { - "start": { - "line": 47, - "column": 8 - }, - "end": { - "line": 47, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "NavbarDropdown", - "decl": { - "start": { - "line": 18, - "column": 9 - }, - "end": { - "line": 18, - "column": 23 - } - }, - "loc": { - "start": { - "line": 22, - "column": 3 - }, - "end": { - "line": 28, - "column": 1 - } - }, - "line": 22 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 40, - "column": 9 - }, - "end": { - "line": 40, - "column": 10 - } - }, - "loc": { - "start": { - "line": 40, - "column": 29 - }, - "end": { - "line": 49, - "column": 3 - } - }, - "line": 40 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 42, - "column": 27 - }, - "end": { - "line": 42, - "column": 28 - } - }, - "loc": { - "start": { - "line": 42, - "column": 44 - }, - "end": { - "line": 48, - "column": 5 - } - }, - "line": 42 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 50, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 50, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 34 - }, - "3": { - "loc": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 43 - }, - "4": { - "loc": { - "start": { - "line": 46, - "column": 6 - }, - "end": { - "line": 47, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 46, - "column": 6 - }, - "end": { - "line": 47, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 46 - } - }, - "s": { - "0": 24, - "1": 24, - "2": 0, - "3": 24, - "4": 24, - "5": 24, - "6": 24, - "7": 24, - "8": 30, - "9": 24, - "10": 24, - "11": 24, - "12": 24, - "13": 24, - "14": 24, - "15": 24, - "16": 24, - "17": 24, - "18": 0, - "19": 0, - "20": 0, - "21": 0, - "22": 0 - }, - "f": { - "0": 24, - "1": 30, - "2": 24, - "3": 0 - }, - "b": { - "0": [24, 0], - "1": [0, 24], - "2": [24, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAWI;AAXJ,2BAAwBA;AAAqB;AAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAE9D,SAASC,0BAA0B;AAOnC,SAASC,eAAe;AAAA,EAAEC;AAAAA,EAAOC;AAAAA,EAAIC;AAA2C,GAAG;AACjF,SACE,uBAAC,iBAAc,OAAc,IAC1BA,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACC,KANQJ;AAQTA,eAAeK,OAAON;AAEtB,SAASC;AAAgB;AAAAM", - "names": [ - "NavDropdownBS", - "NavbarDropdownItem", - "NavbarDropdown", - "title", - "id", - "children", - "_c", - "Item", - "$RefreshReg$" - ], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/navbar-dropdown/NavbarDropdown.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/navbar-dropdown/NavbarDropdown.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "966a7a42b0dc3e0a6535a82f1c46663e1e11636a" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Container.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Container.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 164 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 15 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 30 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 190 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Container", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 25 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 24, - "1": 24, - "2": 0, - "3": 24, - "4": 24, - "5": 24, - "6": 24, - "7": 24, - "8": 54, - "9": 24, - "10": 24, - "11": 24, - "12": 24, - "13": 24, - "14": 24, - "15": 24, - "16": 24, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 24, - "1": 54, - "2": 24, - "3": 0 - }, - "b": { - "0": [24, 0], - "1": [0, 24], - "2": [24, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AASS;AATT,2BAA0B;AAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACjC,SAASA,aAAaC,mBAAmB;AAOlC,gBAASD,UAAU;AAAA,EAAEE;AAAAA,EAAU,GAAGC;AAAsB,GAAG;AAChE,SAAO,uBAAC,eAAY,GAAIA,OAAQD,YAAzB;AAAA;AAAA;AAAA;AAAA,SAAkC;AAC3C;AAACE,KAFeJ;AAAS;AAAAK", - "names": ["Container", "ContainerBS", "children", "props", "_c", "$RefreshReg$"], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Container.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Container.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "d13b9b8211ef42443d8eb2198a6a439b5678b1e4" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/NavbarLink.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/NavbarLink.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 167 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 16 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 31 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 193 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "NavbarLink", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 26 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 24, - "1": 24, - "2": 0, - "3": 24, - "4": 24, - "5": 24, - "6": 24, - "7": 24, - "8": 60, - "9": 24, - "10": 24, - "11": 24, - "12": 24, - "13": 24, - "14": 24, - "15": 24, - "16": 24, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 24, - "1": 60, - "2": 24, - "3": 0 - }, - "b": { - "0": [24, 0], - "1": [0, 24], - "2": [24, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAQS;AART,2BAAoB;AAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAO9B,gBAASA,WAAW;AAAA,EAAEC;AAAAA,EAAMC;AAA6C,GAAG;AACjF,SAAO,uBAAC,IAAI,MAAJ,EAAS,MAAaA,YAAvB;AAAA;AAAA;AAAA;AAAA,SAAgC;AACzC;AAACC,KAFeH;AAAU;AAAAI", - "names": ["NavbarLink", "href", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/NavbarLink.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/NavbarLink.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "6af401381111f27065ffc618f6e38043cee88716" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/Navbar.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/Navbar.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 163 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 25, - "column": 2 - }, - "end": { - "line": 60, - "column": 11 - } - }, - "9": { - "start": { - "line": 62, - "column": 0 - }, - "end": { - "line": 62, - "column": 12 - } - }, - "10": { - "start": { - "line": 63, - "column": 0 - }, - "end": { - "line": 63, - "column": 25 - } - }, - "11": { - "start": { - "line": 64, - "column": 0 - }, - "end": { - "line": 64, - "column": 33 - } - }, - "12": { - "start": { - "line": 67, - "column": 0 - }, - "end": { - "line": 67, - "column": 27 - } - }, - "13": { - "start": { - "line": 68, - "column": 0 - }, - "end": { - "line": 84, - "column": 1 - } - }, - "14": { - "start": { - "line": 69, - "column": 2 - }, - "end": { - "line": 69, - "column": 39 - } - }, - "15": { - "start": { - "line": 70, - "column": 2 - }, - "end": { - "line": 70, - "column": 39 - } - }, - "16": { - "start": { - "line": 71, - "column": 2 - }, - "end": { - "line": 83, - "column": 5 - } - }, - "17": { - "start": { - "line": 75, - "column": 4 - }, - "end": { - "line": 75, - "column": 189 - } - }, - "18": { - "start": { - "line": 76, - "column": 4 - }, - "end": { - "line": 82, - "column": 7 - } - }, - "19": { - "start": { - "line": 77, - "column": 6 - }, - "end": { - "line": 78, - "column": 15 - } - }, - "20": { - "start": { - "line": 78, - "column": 8 - }, - "end": { - "line": 78, - "column": 15 - } - }, - "21": { - "start": { - "line": 79, - "column": 32 - }, - "end": { - "line": 79, - "column": 115 - } - }, - "22": { - "start": { - "line": 80, - "column": 6 - }, - "end": { - "line": 81, - "column": 54 - } - }, - "23": { - "start": { - "line": 81, - "column": 8 - }, - "end": { - "line": 81, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Navbar", - "decl": { - "start": { - "line": 21, - "column": 9 - }, - "end": { - "line": 21, - "column": 15 - } - }, - "loc": { - "start": { - "line": 24, - "column": 3 - }, - "end": { - "line": 61, - "column": 1 - } - }, - "line": 24 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 74, - "column": 9 - }, - "end": { - "line": 74, - "column": 10 - } - }, - "loc": { - "start": { - "line": 74, - "column": 29 - }, - "end": { - "line": 83, - "column": 3 - } - }, - "line": 74 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 76, - "column": 27 - }, - "end": { - "line": 76, - "column": 28 - } - }, - "loc": { - "start": { - "line": 76, - "column": 44 - }, - "end": { - "line": 82, - "column": 5 - } - }, - "line": 76 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 68, - "column": 0 - }, - "end": { - "line": 84, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 68, - "column": 0 - }, - "end": { - "line": 84, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 68 - }, - "3": { - "loc": { - "start": { - "line": 77, - "column": 6 - }, - "end": { - "line": 78, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 77, - "column": 6 - }, - "end": { - "line": 78, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 77 - }, - "4": { - "loc": { - "start": { - "line": 80, - "column": 6 - }, - "end": { - "line": 81, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 80, - "column": 6 - }, - "end": { - "line": 81, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 80 - } - }, - "s": { - "0": 24, - "1": 24, - "2": 0, - "3": 24, - "4": 24, - "5": 24, - "6": 24, - "7": 24, - "8": 54, - "9": 24, - "10": 24, - "11": 24, - "12": 24, - "13": 24, - "14": 24, - "15": 24, - "16": 24, - "17": 24, - "18": 24, - "19": 0, - "20": 0, - "21": 0, - "22": 0, - "23": 0 - }, - "f": { - "0": 24, - "1": 54, - "2": 24, - "3": 0 - }, - "b": { - "0": [24, 0], - "1": [0, 24], - "2": [24, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAsBU;AAtBV,2BAA2B;AAAQ;AAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACpD,SAASA,WAAW;AACpB,SAASC,sBAAsB;AAC/B,SAASC,iBAAiB;AAE1B,SAASC,kBAAkB;AAY3B,SAASC,OAAO;AAAA,EAAEC;AAAAA,EAAOC;AAAyC,GAAG;AACnE,SACE,uBAAC,YAAS,kBAAgB,MAAC,IAAG,SAAQ,QAAO,MAAK,OAAM,OACtD,iCAAC,aACC;AAAA,2BAAC,SAAS,OAAT,EAAe,MAAMD,MAAME,MAC1B;AAAA,6BAAC,SAAI,OAAM,MAAK,QAAO,MAAK,KAAKF,MAAMG,YAAY,KAAI,sBAAvD;AAAA;AAAA;AAAA;AAAA,aAAyE;AAAA,MACxEH,MAAMI;AAAAA,SAFT;AAAA;AAAA;AAAA;AAAA,WAGA;AAAA,IACA,uBAAC,SAAS,QAAT,EAAgB,iBAAc,2BAA/B;AAAA;AAAA;AAAA;AAAA,WAAsD;AAAA,IACtD,uBAAC,SAAS,UAAT,EAAkB,IAAG,yBACpB,iCAAC,OAAKH,YAAN;AAAA;AAAA;AAAA;AAAA,WAAe,KADjB;AAAA;AAAA;AAAA;AAAA,WAEA;AAAA,OARF;AAAA;AAAA;AAAA;AAAA,SASA,KAVF;AAAA;AAAA;AAAA;AAAA,SAWA;AAEJ;AAACI,KAfQN;AAiBTA,OAAOO,OAAOR;AACdC,OAAOQ,WAAWX;AAElB,SAASG;AAAQ;AAAAS", - "names": [ - "Nav", - "NavbarDropdown", - "Container", - "NavbarLink", - "Navbar", - "brand", - "children", - "href", - "logoImgSrc", - "title", - "_c", - "Link", - "Dropdown", - "$RefreshReg$" - ], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/Navbar.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/Navbar.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "b710dc78445b3a202a0c4de37742f9eea033f561" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/table/Table.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/table/Table.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 161 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 11 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 26 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 187 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Table", - "decl": { - "start": { - "line": 18, - "column": 16 - }, - "end": { - "line": 18, - "column": 21 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 12, - "1": 12, - "2": 0, - "3": 12, - "4": 12, - "5": 12, - "6": 12, - "7": 12, - "8": 12, - "9": 12, - "10": 12, - "11": 12, - "12": 12, - "13": 12, - "14": 12, - "15": 12, - "16": 12, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 12, - "1": 12, - "2": 12, - "3": 0 - }, - "b": { - "0": [12, 0], - "1": [0, 12], - "2": [12, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAMI;AANJ,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,SAASC,eAAe;AACjC,OAAOC,YAAY;AAEZ,gBAASF,MAAM;AAAA,EAAEG;AAA4B,GAAG;AACrD,SACE,uBAAC,WAAQ,SAAO,MAAC,UAAQ,MAAC,WAAWD,OAAOE,OACzCD,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACE,KANeL;AAAK;AAAAM", - "names": ["Table", "TableBS", "styles", "children", "table", "_c", "$RefreshReg$"], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/table/Table.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/table/Table.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "67e4bf71a4aa7d042a70f4f4f05d0dc47bb7e04b" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tabs/Tab.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tabs/Tab.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 158 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 26, - "column": 11 - } - }, - "9": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 9 - } - }, - "10": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 30, - "column": 24 - } - }, - "11": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "12": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "13": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 33, - "column": 39 - } - }, - "14": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 46, - "column": 5 - } - }, - "15": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 38, - "column": 184 - } - }, - "16": { - "start": { - "line": 39, - "column": 4 - }, - "end": { - "line": 45, - "column": 7 - } - }, - "17": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "18": { - "start": { - "line": 41, - "column": 8 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "19": { - "start": { - "line": 42, - "column": 32 - }, - "end": { - "line": 42, - "column": 115 - } - }, - "20": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - "21": { - "start": { - "line": 44, - "column": 8 - }, - "end": { - "line": 44, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Tab", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 19 - } - }, - "loc": { - "start": { - "line": 21, - "column": 3 - }, - "end": { - "line": 27, - "column": 1 - } - }, - "line": 21 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 37, - "column": 9 - }, - "end": { - "line": 37, - "column": 10 - } - }, - "loc": { - "start": { - "line": 37, - "column": 29 - }, - "end": { - "line": 46, - "column": 3 - } - }, - "line": 37 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 39, - "column": 27 - }, - "end": { - "line": 39, - "column": 28 - } - }, - "loc": { - "start": { - "line": 39, - "column": 44 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "line": 39 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 31 - }, - "3": { - "loc": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 40 - }, - "4": { - "loc": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 43 - } - }, - "s": { - "0": 18, - "1": 18, - "2": 0, - "3": 18, - "4": 18, - "5": 18, - "6": 18, - "7": 18, - "8": 0, - "9": 18, - "10": 18, - "11": 18, - "12": 18, - "13": 18, - "14": 18, - "15": 18, - "16": 18, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 18, - "1": 0, - "2": 18, - "3": 0 - }, - "b": { - "0": [18, 0], - "1": [0, 18], - "2": [18, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAUI;AAVJ,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,OAAOC,aAAa;AAOtB,gBAASD,IAAI;AAAA,EAAEE;AAAAA,EAAOC;AAAAA,EAAUC;AAAsC,GAAG;AAC9E,SACE,uBAAC,SAAM,OAAc,UAClBA,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACC,KANeL;AAAG;AAAAM", - "names": ["Tab", "TabBS", "title", "eventKey", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tabs/Tab.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tabs/Tab.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "e47bd55fc34a5d9ac8f1805f62b3ae944612bec6" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tabs/Tabs.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tabs/Tabs.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 159 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 26, - "column": 11 - } - }, - "9": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 10 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 15 - } - }, - "11": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 32, - "column": 25 - } - }, - "12": { - "start": { - "line": 33, - "column": 0 - }, - "end": { - "line": 49, - "column": 1 - } - }, - "13": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 34, - "column": 39 - } - }, - "14": { - "start": { - "line": 35, - "column": 2 - }, - "end": { - "line": 35, - "column": 39 - } - }, - "15": { - "start": { - "line": 36, - "column": 2 - }, - "end": { - "line": 48, - "column": 5 - } - }, - "16": { - "start": { - "line": 40, - "column": 4 - }, - "end": { - "line": 40, - "column": 185 - } - }, - "17": { - "start": { - "line": 41, - "column": 4 - }, - "end": { - "line": 47, - "column": 7 - } - }, - "18": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 15 - } - }, - "19": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 15 - } - }, - "20": { - "start": { - "line": 44, - "column": 32 - }, - "end": { - "line": 44, - "column": 115 - } - }, - "21": { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 54 - } - }, - "22": { - "start": { - "line": 46, - "column": 8 - }, - "end": { - "line": 46, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Tabs", - "decl": { - "start": { - "line": 18, - "column": 9 - }, - "end": { - "line": 18, - "column": 13 - } - }, - "loc": { - "start": { - "line": 21, - "column": 3 - }, - "end": { - "line": 27, - "column": 1 - } - }, - "line": 21 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 39, - "column": 9 - }, - "end": { - "line": 39, - "column": 10 - } - }, - "loc": { - "start": { - "line": 39, - "column": 29 - }, - "end": { - "line": 48, - "column": 3 - } - }, - "line": 39 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 41, - "column": 27 - }, - "end": { - "line": 41, - "column": 28 - } - }, - "loc": { - "start": { - "line": 41, - "column": 44 - }, - "end": { - "line": 47, - "column": 5 - } - }, - "line": 41 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 33, - "column": 0 - }, - "end": { - "line": 49, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 33, - "column": 0 - }, - "end": { - "line": 49, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 33 - }, - "3": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - }, - "4": { - "loc": { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 45 - } - }, - "s": { - "0": 18, - "1": 18, - "2": 0, - "3": 18, - "4": 18, - "5": 18, - "6": 18, - "7": 18, - "8": 30, - "9": 18, - "10": 18, - "11": 18, - "12": 18, - "13": 18, - "14": 18, - "15": 18, - "16": 18, - "17": 18, - "18": 0, - "19": 0, - "20": 0, - "21": 0, - "22": 0 - }, - "f": { - "0": 18, - "1": 30, - "2": 18, - "3": 0 - }, - "b": { - "0": [18, 0], - "1": [0, 18], - "2": [18, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AASS;AATT,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,WAAW;AACpB,SAASC,QAAQC,cAAc;AAM/B,SAASD,KAAK;AAAA,EAAEE;AAAAA,EAAkBC;AAAuC,GAAG;AAC1E,SAAO,uBAAC,UAAO,kBAAqCA,YAA7C;AAAA;AAAA;AAAA;AAAA,SAAsD;AAC/D;AAACC,KAFQJ;AAITA,KAAKD,MAAMA;AAEX,SAASC;AAAM;AAAAK", - "names": ["Tab", "Tabs", "TabsBS", "defaultActiveKey", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tabs/Tabs.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tabs/Tabs.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "795059787e2c9f8c3d559d1bbd34ef6aaae8ad34" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/dropdown-button/dropdown-button-item/DropdownButtonItem.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/dropdown-button/dropdown-button-item/DropdownButtonItem.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 205 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 24 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 39 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 231 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "DropdownButtonItem", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 34 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 18, - "1": 18, - "2": 0, - "3": 18, - "4": 18, - "5": 18, - "6": 18, - "7": 18, - "8": 30, - "9": 18, - "10": 18, - "11": 18, - "12": 18, - "13": 18, - "14": 18, - "15": 18, - "16": 18, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 18, - "1": 30, - "2": 18, - "3": 0 - }, - "b": { - "0": [18, 0], - "1": [0, 18], - "2": [18, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AASS;AATT,2BAAqBA;AAAkB;AAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQjD,gBAASC,mBAAmB;AAAA,EAAEC;AAAAA,EAAMC;AAA4B,GAAG;AACxE,SAAO,uBAAC,WAAW,MAAX,EAAgB,MAAaA,YAA9B;AAAA;AAAA;AAAA;AAAA,SAAuC;AAChD;AAACC,KAFeH;AAAkB;AAAAI", - "names": ["DropdownBS", "DropdownButtonItem", "href", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/dropdown-button/dropdown-button-item/DropdownButtonItem.tsx" - ], - "file": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/dropdown-button/dropdown-button-item/DropdownButtonItem.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "86e895beee375ff7a6bf8b81ae52d4d23b462682" - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertVariant.ts": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertVariant.ts", - "statementMap": {}, - "fnMap": {}, - "branchMap": {}, - "s": {}, - "f": {}, - "b": {} - }, - "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button-group/ButtonToolbar.tsx": { - "path": "/Users/ellenkraffmiller/Documents/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button-group/ButtonToolbar.tsx", - "statementMap": {}, - "fnMap": {}, - "branchMap": {}, - "s": {}, - "f": {}, - "b": {} - } -} From 22eb0c612520bc44edb28ecee1dfabcb08e9da2f Mon Sep 17 00:00:00 2001 From: Ellen Kraffmiller Date: Tue, 16 May 2023 07:48:46 -0400 Subject: [PATCH 13/14] remove check for null in DatasetSummary components --- src/sections/dataset/dataset-summary/License.tsx | 6 +++--- .../dataset/dataset-summary/SummaryFields.tsx | 6 +++--- .../dataset/dataset-summary/License.spec.tsx | 5 ----- .../dataset/dataset-summary/SummaryFields.spec.tsx | 13 +------------ 4 files changed, 7 insertions(+), 23 deletions(-) diff --git a/src/sections/dataset/dataset-summary/License.tsx b/src/sections/dataset/dataset-summary/License.tsx index 63e44691c..df275ad85 100644 --- a/src/sections/dataset/dataset-summary/License.tsx +++ b/src/sections/dataset/dataset-summary/License.tsx @@ -1,11 +1,11 @@ import { Row, Col } from 'dataverse-design-system' import { License as LicenseModel } from '../../../dataset/domain/models/Dataset' interface LicenseProps { - license: LicenseModel | undefined + license: LicenseModel } export function License({ license }: LicenseProps) { - return license ? ( + return (
@@ -21,5 +21,5 @@ export function License({ license }: LicenseProps) {
- ) : null + ) } diff --git a/src/sections/dataset/dataset-summary/SummaryFields.tsx b/src/sections/dataset/dataset-summary/SummaryFields.tsx index d2b644c4a..3c326be8c 100644 --- a/src/sections/dataset/dataset-summary/SummaryFields.tsx +++ b/src/sections/dataset/dataset-summary/SummaryFields.tsx @@ -2,11 +2,11 @@ import { Row, Col, Tooltip } from 'dataverse-design-system' import { MarkdownComponent } from '../markdown/MarkdownComponent' import { DatasetField } from '../../../dataset/domain/models/Dataset' interface SummaryFieldsProps { - summaryFields: DatasetField[] | undefined + summaryFields: DatasetField[] } export function SummaryFields({ summaryFields }: SummaryFieldsProps) { - return summaryFields ? ( + return (
{summaryFields.map((field, index) => ( @@ -20,5 +20,5 @@ export function SummaryFields({ summaryFields }: SummaryFieldsProps) { ))}
- ) : null + ) } diff --git a/tests/component/sections/dataset/dataset-summary/License.spec.tsx b/tests/component/sections/dataset/dataset-summary/License.spec.tsx index 3c930919c..8775beae0 100644 --- a/tests/component/sections/dataset/dataset-summary/License.spec.tsx +++ b/tests/component/sections/dataset/dataset-summary/License.spec.tsx @@ -29,9 +29,4 @@ describe('DatasetSummary', () => { .should('have.attr', 'href', 'https://example.com/license') .and('have.text', 'Test License') }) - it('renders the empty Licence correctly', () => { - const emptyLicense = undefined - cy.customMount() - cy.get('article').should('not.exist') - }) }) diff --git a/tests/component/sections/dataset/dataset-summary/SummaryFields.spec.tsx b/tests/component/sections/dataset/dataset-summary/SummaryFields.spec.tsx index 4a3b4d6fe..73f9177b5 100644 --- a/tests/component/sections/dataset/dataset-summary/SummaryFields.spec.tsx +++ b/tests/component/sections/dataset/dataset-summary/SummaryFields.spec.tsx @@ -1,14 +1,8 @@ -import { DatasetField, License } from '../../../../../src/dataset/domain/models/Dataset' +import { DatasetField } from '../../../../../src/dataset/domain/models/Dataset' import { faker } from '@faker-js/faker' import { SummaryFields } from '../../../../../src/sections/dataset/dataset-summary/SummaryFields' describe('DatasetSummary', () => { - const licenseMock: License = { - name: 'CC0 1.0', - shortDescription: 'CC0 1.0 Universal Public Domain Dedication', - uri: 'https://creativecommons.org/publicdomain/zero/1.0/', - iconUrl: 'https://licensebuttons.net/p/zero/1.0/88x31.png' - } const summaryFieldsMock: DatasetField[] = [ { title: 'Description', @@ -44,9 +38,4 @@ describe('DatasetSummary', () => { cy.findByText(field.value).should('exist') }) }) - it('renders the empty SummaryFields correctly', () => { - const emptyFields = undefined - cy.customMount() - cy.get('article').should('not.exist') - }) }) From f38aceeea5941915fe99fe58f8f0570358aab93d Mon Sep 17 00:00:00 2001 From: MellyGray Date: Tue, 16 May 2023 17:02:55 +0200 Subject: [PATCH 14/14] fix(DatasetSummary): remove check and update Dataset mock --- src/dataset/domain/models/Dataset.ts | 1 - .../dataset-summary/DatasetSummary.tsx | 4 +-- .../dataset/domain/models/DatasetMother.ts | 33 +++++++++++++++++++ 3 files changed, 35 insertions(+), 3 deletions(-) diff --git a/src/dataset/domain/models/Dataset.ts b/src/dataset/domain/models/Dataset.ts index 0c3c1e223..07bf80f74 100644 --- a/src/dataset/domain/models/Dataset.ts +++ b/src/dataset/domain/models/Dataset.ts @@ -20,7 +20,6 @@ export interface Dataset { id: string title: string labels: DatasetLabel[] - version: string summaryFields: DatasetField[] license: License } diff --git a/src/sections/dataset/dataset-summary/DatasetSummary.tsx b/src/sections/dataset/dataset-summary/DatasetSummary.tsx index e13eb3687..0ea7d39d2 100644 --- a/src/sections/dataset/dataset-summary/DatasetSummary.tsx +++ b/src/sections/dataset/dataset-summary/DatasetSummary.tsx @@ -8,10 +8,10 @@ interface DatasetSummaryProps { } export function DatasetSummary({ summaryFields, license }: DatasetSummaryProps) { - return summaryFields && license ? ( + return (
- ) : null + ) } diff --git a/tests/component/dataset/domain/models/DatasetMother.ts b/tests/component/dataset/domain/models/DatasetMother.ts index ed371a618..57e914382 100644 --- a/tests/component/dataset/domain/models/DatasetMother.ts +++ b/tests/component/dataset/domain/models/DatasetMother.ts @@ -25,6 +25,39 @@ export class DatasetMother { semanticMeaning: faker.helpers.arrayElement(Object.values(LabelSemanticMeaning)) } ], + summaryFields: [ + { + title: faker.lorem.word(), + description: faker.lorem.sentence(), + value: faker.lorem.sentence() + }, + { + title: faker.lorem.word(), + description: faker.lorem.sentence(), + value: faker.lorem.sentence() + }, + { + title: faker.lorem.word(), + description: faker.lorem.sentence(), + value: faker.lorem.sentence() + }, + { + title: faker.lorem.word(), + description: faker.lorem.sentence(), + value: faker.lorem.sentence() + }, + { + title: faker.lorem.word(), + description: faker.lorem.sentence(), + value: faker.lorem.sentence() + } + ], + license: { + name: faker.lorem.sentence(), + shortDescription: faker.lorem.sentence(), + uri: faker.internet.url(), + iconUrl: faker.image.imageUrl() + }, ...props } }