2026-01-02 13:41:09 +00:00
|
|
|
// Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
|
2023-12-14 16:16:58 +00:00
|
|
|
|
|
|
|
|
import type { LinkClassMap } from '#shared/components/CommonLink/types.ts'
|
|
|
|
|
|
|
|
|
|
// Provide your own map with the following keys, the values given here are just examples.
|
|
|
|
|
let linkClasses: LinkClassMap = {
|
|
|
|
|
base: 'common-link',
|
2025-10-06 07:13:17 +00:00
|
|
|
internal: 'common-link-internal',
|
2023-12-14 16:16:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const initializeLinkClasses = (classes: LinkClassMap) => {
|
|
|
|
|
linkClasses = classes
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const getLinkClasses = () => linkClasses
|