Skip to content

Commit

Permalink
Merge pull request #3048 from statisticsnorway/MIM-2081-removal-of-re…
Browse files Browse the repository at this point in the history
…lative-paths-for-lib

[MIM-2081] Removal of relative paths for lib folder
  • Loading branch information
Carl-OW authored Nov 27, 2024
2 parents a9c995d + c820623 commit 42b8de5
Show file tree
Hide file tree
Showing 55 changed files with 85 additions and 85 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { request } from '/lib/http-client'
import { type XmlParser } from '../../../lib/types/xmlParser'
import { type XmlParser } from '/lib/types/xmlParser'

const xmlParser: XmlParser = __.newBean('no.ssb.xp.xmlparser.XmlParser')

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/react4xp/_entries/Alerts.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { Dialog } from '@statisticsnorway/ssb-component-library'
import { Container } from 'react-bootstrap'
import { sanitize } from '../../lib/ssb/utils/htmlUtils'
import { sanitize } from '/lib/ssb/utils/htmlUtils'

interface AlertsProps {
alerts: {
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/react4xp/_entries/ArticleArchive.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import { Container, Row, Col } from 'react-bootstrap'
import { ChevronDown } from 'react-feather'
import { default as groupBy } from 'ramda/es/groupBy'
import axios from 'axios'
import { sanitize } from '../../lib/ssb/utils/htmlUtils'
import { type ArticleArchiveProps, type ParsedArticleData } from '../../lib/types/partTypes/articleArchive'
import { generateImageUrls } from '../../lib/ssb/utils/generateImageUrlUtils'
import { sanitize } from '/lib/ssb/utils/htmlUtils'
import { type ArticleArchiveProps, type ParsedArticleData } from '/lib/types/partTypes/articleArchive'
import { generateImageUrls } from '/lib/ssb/utils/generateImageUrlUtils'

function ArticleArchive(props: ArticleArchiveProps) {
const {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/react4xp/_entries/BkibolCalculator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
import axios from 'axios'
import { NumericFormat } from 'react-number-format'
import { X } from 'react-feather'
import { BkibolCalculatorProps } from '../../lib/types/partTypes/bkibolCalculator'
import { BkibolCalculatorProps } from '/lib/types/partTypes/bkibolCalculator'

function BkibolCalculator(props: BkibolCalculatorProps) {
const validMaxYear = props.lastUpdated.year
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/react4xp/_entries/CategoryLinks.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import { CategoryLink } from '@statisticsnorway/ssb-component-library'
import { type CategoryLinksProps } from '../../lib/types/partTypes/categoryLinks'
import { type CategoryLinksProps } from '/lib/types/partTypes/categoryLinks'

const CategoryLinks = (props: CategoryLinksProps) => {
const { links, methodsAndDocumentationUrl, methodsAndDocumentationLabel } = props
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/react4xp/_entries/EndedStatistics.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { Card, Text, ButtonTertiary } from '@statisticsnorway/ssb-component-library'
import { Col, Container, Row } from 'react-bootstrap'
import { EndedStatistic } from '../../lib/types/partTypes/endedStatistics'
import { EndedStatistic } from '/lib/types/partTypes/endedStatistics'

interface EndedStatisticsProps {
endedStatistics: EndedStatistic[]
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/react4xp/_entries/EntryLinks.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { Link, Title } from '@statisticsnorway/ssb-component-library'
import { sanitize } from '../../lib/ssb/utils/htmlUtils'
import { EntryLink } from '../../lib/types/partTypes/entryLinks'
import { sanitize } from '/lib/ssb/utils/htmlUtils'
import { EntryLink } from '/lib/types/partTypes/entryLinks'

interface EntryLinksProps {
headerTitle?: string
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/react4xp/_entries/FactBox.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import { ExpansionBox as FactBoxComponent } from '@statisticsnorway/ssb-component-library'
import { sanitize } from '../../lib/ssb/utils/htmlUtils'
import { sanitize } from '/lib/ssb/utils/htmlUtils'

interface FactBoxProps {
header?: string
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/react4xp/_entries/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { Accordion, Button, Link } from '@statisticsnorway/ssb-component-library'
import { ArrowRight, ArrowUp, Facebook, Rss, Linkedin, Instagram } from 'react-feather'
import { FooterContent } from '../../lib/types/footer'
import { FooterContent } from '/lib/types/footer'

const Footer = (props: FooterContent) => {
const {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import { ArrowRight } from 'react-feather'
import { FrontPageKeyFigureData } from '../../lib/types/partTypes/frontpageKeyfigures'
import { FrontPageKeyFigureData } from '/lib/types/partTypes/frontpageKeyfigures'

interface FrontpageKeyfiguresProps {
keyFigures: FrontPageKeyFigureData[]
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/react4xp/_entries/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React, { useState, useCallback, useEffect } from 'react'
import { Divider, Input, Link } from '@statisticsnorway/ssb-component-library'
import { ChevronDown, ChevronRight, Menu, X } from 'react-feather'
import { sanitize } from '../../lib/ssb/utils/htmlUtils'
import { HeaderContent } from '../../lib/types/header'
import { sanitize } from '/lib/ssb/utils/htmlUtils'
import { HeaderContent } from '/lib/types/header'

function Header(props: HeaderContent) {
const [showSubMenu, setShowSubMenu] = useState(false)
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/react4xp/_entries/KeyFigure.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
Divider,
} from '@statisticsnorway/ssb-component-library'
import { Alert, Row, Col } from 'react-bootstrap'
import { type KeyFigureData, type KeyFigureProps } from '../../lib/types/partTypes/keyFigure'
import { type KeyFigureData, type KeyFigureProps } from '/lib/types/partTypes/keyFigure'

const KeyFigures = (props: KeyFigureProps) => {
const {
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/react4xp/_entries/KpiCalculator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { Input, Button, Dropdown, Divider, FormError, Link, Title } from '@stati
import axios from 'axios'
import { NumericFormat } from 'react-number-format'
import { X } from 'react-feather'
import { sanitize } from '../../lib/ssb/utils/htmlUtils'
import { KpiCalculatorProps } from '../../lib/types/partTypes/kpiCalculator'
import { sanitize } from '/lib/ssb/utils/htmlUtils'
import { KpiCalculatorProps } from '/lib/types/partTypes/kpiCalculator'

function KpiCalculator(props: KpiCalculatorProps) {
const validMaxYear = props.lastUpdated.year
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/react4xp/_entries/MenuBox.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import { Card, Text } from '@statisticsnorway/ssb-component-library'
import { MenuBoxProps } from '../../lib/types/partTypes/menuBox'
import { MenuBoxProps } from '/lib/types/partTypes/menuBox'

const MenuBox = ({ boxes, height }: MenuBoxProps) => {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/react4xp/_entries/ModifiedDate.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import { Glossary } from '@statisticsnorway/ssb-component-library'
import { sanitize } from '../../lib/ssb/utils/htmlUtils'
import { sanitize } from '/lib/ssb/utils/htmlUtils'

interface ModifiedDateProps {
children: string
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/react4xp/_entries/PictureCardLinks.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import { ArrowRight, ArrowRightCircle } from 'react-feather'
import { type ImageUrls, type PictureCardLinksContent } from '../../lib/types/partTypes/pictureCardLinks'
import { type ImageUrls, type PictureCardLinksContent } from '/lib/types/partTypes/pictureCardLinks'

interface PictureLinkProps {
title?: string
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/react4xp/_entries/PifCalculator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Input, Button, Dropdown, Divider, FormError, Link, RadioGroup } from '@
import axios from 'axios'
import { NumericFormat } from 'react-number-format'
import { X } from 'react-feather'
import { PifCalculatorProps } from '../../lib/types/partTypes/pifCalculaor'
import { PifCalculatorProps } from '/lib/types/partTypes/pifCalculaor'

function PifCalculator(props: PifCalculatorProps) {
const validMaxYear = props.lastUpdated.year
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/react4xp/_entries/RelatedArticles.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useState, useRef, useEffect } from 'react'
import { Card, Text, Button } from '@statisticsnorway/ssb-component-library'
import { useMediaQuery } from 'react-responsive'
import { type RelatedArticlesContent } from '../../lib/types/partTypes/relatedArticles'
import { type RelatedArticlesContent } from '/lib/types/partTypes/relatedArticles'

interface RelatedArticlesProps {
relatedArticles: RelatedArticlesContent[]
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/react4xp/_entries/ReleasedStatistics.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import React from 'react'
import { Link } from '@statisticsnorway/ssb-component-library'
import { type ReleasedStatisticsProps } from '../../lib/types/partTypes/releasedStatistics'
import { type ReleasedStatisticsProps } from '/lib/types/partTypes/releasedStatistics'
import {
type MonthReleases,
type DayReleases,
type YearReleases,
type PreparedStatistics,
} from '../../lib/types/variants'
} from '/lib/types/variants'

const ReleasedStatistics = (props: ReleasedStatisticsProps) => {
const { language, title, releases } = props
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/react4xp/_entries/StatbankBox.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import { ArrowRight } from 'react-feather'
import { type StatbankBoxProps } from '../../lib/types/partTypes/statbankBox'
import { type StatbankBoxProps } from '/lib/types/partTypes/statbankBox'

const StatbankBox = (props: StatbankBoxProps) => {
const { title, href, icon, fullWidth } = props
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/react4xp/_entries/StatbankLinkList.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { Link } from '@statisticsnorway/ssb-component-library'
import { ArrowRight } from 'react-feather'
import { sanitize } from '../../lib/ssb/utils/htmlUtils'
import { sanitize } from '/lib/ssb/utils/htmlUtils'

interface StatbankLinkListProps {
children: string
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/react4xp/accordion/Accordion.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from 'react'
import { Accordion as AccordionComponent, NestedAccordion } from '@statisticsnorway/ssb-component-library'

import { type AccordionData, type AccordionItems, type AccordionProps } from '../../lib/types/partTypes/accordion'
import { sanitize } from '../../lib/ssb/utils/htmlUtils'
import { type AccordionData, type AccordionItems, type AccordionProps } from '/lib/types/partTypes/accordion'
import { sanitize } from '/lib/ssb/utils/htmlUtils'

const Accordion = (props: AccordionProps) => {
const { accordions } = props
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import { sanitize } from '/lib/ssb/utils/htmlUtils'
import {
type AttachmentTablesFiguresProps,
type AttachmentTablesFiguresData,
} from '../../lib/types/partTypes/attachmentTablesFigures'
import { type TableProps } from '../../lib/types/partTypes/table'
} from '/lib/types/partTypes/attachmentTablesFigures'
import { type TableProps } from '/lib/types/partTypes/table'

import Table from '../table/Table'

Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/react4xp/table/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import {
import { default as isEmpty } from 'ramda/es/isEmpty'
import { NumericFormat } from 'react-number-format'
import { Alert } from 'react-bootstrap'
import { type TableProps } from '../../lib/types/partTypes/table'
import { PreliminaryData, type TableCellUniform } from '../../lib/types/xmlParser'
import { type TableProps } from '/lib/types/partTypes/table'
import { PreliminaryData, type TableCellUniform } from '/lib/types/xmlParser'

declare global {
interface Window {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/react4xp/variables/VariableCard.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import { Card, Text } from '@statisticsnorway/ssb-component-library'
import { VariablesProps } from '../../lib/types/partTypes/variables'
import { VariablesProps } from '/lib/types/partTypes/variables'

interface VariableCardProps {
variable: VariablesProps['variables'][0]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react'
import { type VariablesProps } from '../../lib/types/partTypes/variables'
import { type VariablesProps } from '/lib/types/partTypes/variables'
import VariableCard from './VariableCard'

interface VariableCardsListProps {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/react4xp/variables/Variables.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import { Text } from '@statisticsnorway/ssb-component-library'
import { type VariablesProps } from '../../lib/types/partTypes/variables'
import { type VariablesProps } from '/lib/types/partTypes/variables'
import VariableCardsList from './VariableCardsList'

export const DISPLAY_TYPE_CARDS = 'CARDS'
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/site/error/error.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { render } from '/lib/thymeleaf'
import { render as r4xpRender } from '/lib/enonic/react4xp'
import { getLanguage } from '/lib/ssb/utils/language'
import { type Language } from '/lib/types/language'
import { randomUnsafeString } from '../../lib/ssb/utils/utils'
import { randomUnsafeString } from '/lib/ssb/utils/utils'

const fourOFourView = resolve('./404.html')
const mainErrorView = resolve('./error.html')
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/site/parts/article/article.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { Title, Link, Divider } from '@statisticsnorway/ssb-component-library'
import { sanitize } from '../../../lib/ssb/utils/htmlUtils'
import { type ArticleProps } from '../../../lib/types/partTypes/article'
import { sanitize } from '/lib/ssb/utils/htmlUtils'
import { type ArticleProps } from '/lib/types/partTypes/article'

function Article(props: ArticleProps) {
const phrases = props.phrases
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/site/parts/banner/banner.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react'
import { BannerProps } from '../../../lib/types/partTypes/banner'
import { BannerProps } from '/lib/types/partTypes/banner'

function Banner(props: BannerProps) {
const {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/site/parts/contactForm/contactForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { useEffect, useState } from 'react'
import { Form, Container, Row, Col } from 'react-bootstrap'
import { Input, Button, Dropdown, TextArea, Divider, Title, FormError } from '@statisticsnorway/ssb-component-library'
import axios from 'axios'
import { type Phrases } from '../../../lib/types/language'
import { type Phrases } from '/lib/types/language'

interface ContactFormProps {
recaptchaSiteKey?: string
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/site/parts/employee/employee.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from 'react'
import { Button, Title, Link, Paragraph, Accordion } from '@statisticsnorway/ssb-component-library'
import { Share2, Send, Smartphone, Eye, Home, Download, Image } from 'react-feather'
import { sanitize } from '../../../lib/ssb/utils/htmlUtils'
import { EmployeeProps } from '../../../lib/types/partTypes/employee'
import { sanitize } from '/lib/ssb/utils/htmlUtils'
import { EmployeeProps } from '/lib/types/partTypes/employee'

const Employee = (props: EmployeeProps) => {
const {
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/site/parts/employeeList/employeeList.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import React from 'react'
import { Link, Divider, Text } from '@statisticsnorway/ssb-component-library'
import { sanitize } from '../../../lib/ssb/utils/htmlUtils'
import { sanitize } from '/lib/ssb/utils/htmlUtils'
import {
type Area,
type EmployeeListProps,
type IEmployeeMap,
type IPreparedEmployee,
} from '../../../lib/types/partTypes/employeeList'
} from '/lib/types/partTypes/employeeList'

function EmployeeList(props: EmployeeListProps) {
const { employees, total, pageTitle, pageDescription } = props
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import {
} from '@statisticsnorway/ssb-component-library'
import axios from 'axios'
import { NumericFormat } from 'react-number-format'
import { KpiCalculatorProps } from '../../../lib/types/partTypes/kpiCalculator'
import { DropdownItem } from '../../../lib/types/partTypes/publicationArchive'
import { KpiCalculatorProps } from '/lib/types/partTypes/kpiCalculator'
import { DropdownItem } from '/lib/types/partTypes/publicationArchive'

function HusleieCalculator(props: KpiCalculatorProps) {
const validMaxYear = props.lastUpdated.year
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { Title, Link } from '@statisticsnorway/ssb-component-library'
import { Row, Col } from 'react-bootstrap'
import { InfoGraphicsProps } from '../../../lib/types/partTypes/infoGraphics'
import { InfoGraphicsProps } from '/lib/types/partTypes/infoGraphics'

function InfoGraphics(props: InfoGraphicsProps) {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/site/parts/links/links.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { Link, TableLink } from '@statisticsnorway/ssb-component-library'
import { ArrowRight } from 'react-feather'
import { LinksProps } from '../../../lib/types/partTypes/links'
import { LinksProps } from '/lib/types/partTypes/links'

const Links = (props: LinksProps) => {
const { children, href, withIcon, linkType, text, description } = props
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/site/parts/localSearch/localSearch.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import { Title, Dropdown } from '@statisticsnorway/ssb-component-library'
import { type SearchItem } from '../../../lib/types/partTypes/localSearch'
import { type SearchItem } from '/lib/types/partTypes/localSearch'

interface LocalSearchProps {
title?: string
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useState } from 'react'
import { Button, Input, Paragraph } from '@statisticsnorway/ssb-component-library'
import { MailChimpFormProps } from '../../../lib/types/partTypes/mailChimpForm'
import { MailChimpFormProps } from '/lib/types/partTypes/mailChimpForm'

function MailchimpForm(props: MailChimpFormProps) {
const [email, setEmail] = useState({
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useEffect, useRef, useState } from 'react'
import { Dropdown } from '@statisticsnorway/ssb-component-library'
import { ChevronDown, ChevronUp } from 'react-feather'
import { type MenuDropdownProps, type Municipality } from '../../../lib/types/partTypes/menuDropdown'
import { type MenuDropdownProps, type Municipality } from '/lib/types/partTypes/menuDropdown'

function MenuDropdown(props: MenuDropdownProps) {
const {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/site/parts/nameSearch/nameSearch.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import highchartsExportingOffline from 'highcharts/modules/offline-exporting'
import highchartsExportData from 'highcharts/modules/export-data'
import highchartsAccessibility from 'highcharts/modules/accessibility'
import { useMediaQuery } from 'react-responsive'
import { sanitize } from '../../../lib/ssb/utils/htmlUtils'
import { sanitize } from '/lib/ssb/utils/htmlUtils'
import accessibilityLang from './../../../assets/js/highchart-lang.json'

if (typeof window !== 'undefined' && typeof Highcharts === 'object') {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import Accordion from '/react4xp/accordion/Accordion'
import { type AboutTheStatisticsProps } from '../../../lib/types/partTypes/omStatistikken'
import { type AboutTheStatisticsProps } from '/lib/types/partTypes/omStatistikken'

const OmStatistikken = (props: AboutTheStatisticsProps) => {
const { ingress, label, lastUpdatedPhrase, lastUpdated, accordions } = props
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/site/parts/profiledBox/profiledBox.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import { Card, Paragraph } from '@statisticsnorway/ssb-component-library'
import { ProfiledBoxProps } from '../../../lib/types/partTypes/profiledBox'
import { ProfiledBoxProps } from '/lib/types/partTypes/profiledBox'

const ProfiledBox = (props: ProfiledBoxProps) => {
const { imgUrl, imageAltText, imagePlacement, href, subTitle, title, titleSize, preambleText, ariaLabel } = props
Expand Down
Loading

0 comments on commit 42b8de5

Please sign in to comment.