storybook 9.0.0-alpha.13 → 9.0.0-alpha.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,7 +2,6 @@ import * as React$1 from 'react';
2
2
  import React__default, { ComponentProps, AnchorHTMLAttributes, MouseEvent, ReactNode, ReactElement, ButtonHTMLAttributes, SyntheticEvent, Component, RefObject, FC, PropsWithChildren, DetailedHTMLProps, RefAttributes, ElementType } from 'react';
3
3
  import * as storybook_theming from 'storybook/theming';
4
4
  import { FunctionInterpolation } from 'storybook/theming';
5
- import { BuiltInParserName } from 'prettier';
6
5
  import { Addon_RenderOptions } from 'storybook/internal/types';
7
6
 
8
7
  declare const A: storybook_theming.StyledComponent<React$1.AnchorHTMLAttributes<HTMLAnchorElement> & {
@@ -174,7 +173,7 @@ interface SyntaxHighlighterCustomProps {
174
173
  className?: string;
175
174
  renderer?: SyntaxHighlighterRenderer;
176
175
  }
177
- type SyntaxHighlighterFormatTypes = boolean | 'dedent' | BuiltInParserName;
176
+ type SyntaxHighlighterFormatTypes = boolean | 'dedent';
178
177
  type LineTagPropsFunction = (lineNumber: number) => React.HTMLProps<HTMLElement>;
179
178
  type SupportedLanguage = 'text' | keyof typeof supportedLanguages;
180
179
  interface SyntaxHighlighterBaseProps {