1234567891011121314151617181920212223242526272829303132 |
- // Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- import { setupCommonVisualConfig } from '#shared/composables/useSharedVisualConfig.ts'
- import CommonButton from '#desktop/components/CommonButton/CommonButton.vue'
- import CommonObjectAttribute from '#desktop/components/CommonObjectAttribute/CommonObjectAttribute.vue'
- import CommonObjectAttributeContainer from '#desktop/components/CommonObjectAttribute/CommonObjectAttributeContainer.vue'
- export const initializeDesktopVisuals = () => {
- setupCommonVisualConfig({
- // TODO: for later implementation
- objectAttributes: {
- outer: CommonObjectAttributeContainer,
- wrapper: CommonObjectAttribute,
- classes: {},
- },
- // TODO: should be moved to mobile only or renamed completley.
- tooltip: {
- type: 'inline',
- component: () => null,
- },
- filePreview: {
- buttonComponent: CommonButton,
- buttonProps: {
- variant: 'remove',
- },
- },
- fieldFile: {
- buttonComponent: CommonButton,
- },
- })
- }
|