UNPKG

@atlaskit/editor-common

Version:

A package that contains common classes and components for editor and renderer

22 lines (21 loc) 755 B
import type { CardProps } from '@atlaskit/smart-card'; import type { Providers } from '../provider-factory'; export interface CardOptions { provider?: Providers['cardProvider']; resolveBeforeMacros?: string[]; allowBlockCards?: boolean; allowDatasource?: boolean; allowEmbeds?: boolean; allowResizing?: boolean; /** * @deprecated {@link https://hello.atlassian.net/browse/ENGHEALTH-6348 Internal documentation for deprecation (no external access)} * * Prefer `actionOptions` prop. */ showServerActions?: boolean; actionOptions?: CardProps['actionOptions']; useAlternativePreloader?: boolean; allowAlignment?: boolean; allowWrapping?: boolean; showUpgradeDiscoverability?: boolean; }