Skip to content

Commit

Permalink
Fix import outside module retry
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian committed Jun 16, 2022
1 parent b7b6179 commit cc999f7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions .changeset/smooth-rocks-agree.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@abcaustralia/storybook-addon-a11ydocs": patch
---

Fix import outside module retry
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
import { DocsContext, DocsContextProps } from "@storybook/addon-docs/blocks";
import * as React from "react";
import { A11yDocsDescription } from "./A11yDocsDescription/A11yDocsDescription";
import type {
A11yDocsBlockProps,
A11yDocsParametersType,
A11yDocsPropertyItemGroup,
} from "./A11yDocsDescription/types";
import { A11yDocsDescription } from "./A11yDocsDescription/A11yDocsDescription";
import { DocsContext, DocsContextProps } from "@storybook/addon-docs/blocks";

export interface A11yDocsBlockProps {
customProperties: A11yDocsPropertyItemGroup;
}

declare global {
interface Window {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ export interface A11yDocsDescriptionProps {
presetDescription: string;
}

export interface A11yDocsBlockProps {
customProperties: A11yDocsPropertyItemGroup;
}

export interface A11yDocsPropertyItem {
description?: string;
}
Expand Down

0 comments on commit cc999f7

Please sign in to comment.