@andersundsehr/storybook-typo3
Version:
The one and only Storybook Renderer for TYPO3 Fluid Components
17 lines (16 loc) • 1.25 kB
TypeScript
import type { PresetProperty } from 'storybook/internal/types';
import { viteFinal } from './functions/viteFinal.ts';
export declare const addons: string[];
/**
* We want storybook to not use your local vite config.
* As that is not really needed, and can cause issues or break storybook.
*/
export { viteFinal };
export declare const core: PresetProperty<'core'>;
export declare const previewAnnotations: PresetProperty<'previewAnnotations'>;
export declare const tags: string[];
/**
* BUGFIX for chromium based browsers on windows
* @see https://github.com/talkjs/country-flag-emoji-polyfill?tab=readme-ov-file
*/
export declare const managerHead = "<style>\n body {\n font-family: \"Twemoji Country Flags\", \"Nunito Sans\", -apple-system, \".SFNSText-Regular\", \"San Francisco\", BlinkMacSystemFont, \"Segoe UI\", \"Helvetica Neue\", Helvetica, Arial, sans-serif !important;\n }\n @font-face {\n font-family: \"Twemoji Country Flags\";\n unicode-range: U+1F1E6-1F1FF, U+1F3F4, U+E0062-E0063, U+E0065, U+E0067, U+E006C, U+E006E, U+E0073-E0074, U+E0077, U+E007F;\n src: url('https://cdn.jsdelivr.net/npm/country-flag-emoji-polyfill@0.1/dist/TwemojiCountryFlags.woff2') format('woff2');\n font-display: swap;\n }\n</style>";