2023-10-24 08:16:53 -04:00
|
|
|
import { ScopeDecorator } from './decorators/scope'
|
|
|
|
import { PdfPreviewMessages } from '@/features/pdf-preview/components/pdf-preview-messages'
|
2024-04-15 05:33:46 -04:00
|
|
|
import { CompileTimeWarningUpgradePromptInner } from '@/features/pdf-preview/components/compile-time-warning-upgrade-prompt-inner'
|
2024-10-10 03:26:18 -04:00
|
|
|
import { bsVersionDecorator } from '../../.storybook/utils/with-bootstrap-switcher'
|
2023-10-24 08:16:53 -04:00
|
|
|
|
|
|
|
export default {
|
|
|
|
title: 'Editor / PDF Preview / Messages',
|
|
|
|
component: PdfPreviewMessages,
|
2024-10-10 03:26:18 -04:00
|
|
|
argTypes: {
|
|
|
|
...bsVersionDecorator.argTypes,
|
|
|
|
},
|
2023-10-24 08:16:53 -04:00
|
|
|
decorators: [
|
|
|
|
ScopeDecorator,
|
|
|
|
(Story: any) => (
|
|
|
|
<div style={{ width: 800, position: 'relative' }}>
|
|
|
|
<PdfPreviewMessages>
|
|
|
|
<Story />
|
|
|
|
</PdfPreviewMessages>
|
|
|
|
</div>
|
|
|
|
),
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
export const CompileTimeoutWarningActive = (args: any) => {
|
2024-04-15 05:33:46 -04:00
|
|
|
return <CompileTimeWarningUpgradePromptInner {...args} />
|
2023-10-24 08:16:53 -04:00
|
|
|
}
|
|
|
|
CompileTimeoutWarningActive.argTypes = {
|
|
|
|
handleDismissWarning: { action: 'dismiss warning' },
|
|
|
|
}
|