Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/DsfrAccordion/DsfrAccordion.types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { TitleTag } from '@/common-types'
import type { TitleTag } from '../../common-types'

export type DsfrAccordionProps = {
id?: string
Expand Down
2 changes: 1 addition & 1 deletion src/components/DsfrAlert/DsfrAlert.types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { TitleTag } from '@/common-types'
import type { TitleTag } from '../../common-types'

export type DsfrAlertType = 'error' | 'success' | 'warning' | 'info'

Expand Down
2 changes: 1 addition & 1 deletion src/components/DsfrAlert/docs-demo/DsfrAlertDemo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { ref } from 'vue'
import type { DsfrAlertType } from '../DsfrAlert.vue'
import DsfrAlert from '../DsfrAlert.vue'

import type { TitleTag } from '@/common-types'
import type { TitleTag } from '../../common-types'

const defaultAlerts: {
[key: string]: {
Expand Down
2 changes: 1 addition & 1 deletion src/components/DsfrFooter/DsfrFooterPartners.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts" setup>
import type { TitleTag } from '@/common-types'
import type { TitleTag } from '../../common-types'

export type DsfrFooterPartner = {
href: string
Expand Down