Skip to content

Commit

Permalink
refactor(storybook): ♻️ remove ghost variant ex from tag
Browse files Browse the repository at this point in the history
  • Loading branch information
navin-moorthy committed Jul 19, 2022
1 parent 2634204 commit 3fa9059
Show file tree
Hide file tree
Showing 9 changed files with 32 additions and 277 deletions.
8 changes: 6 additions & 2 deletions src/checkbox-group/stories/CheckboxGroupBasic.component.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import * as React from "react";

import { Value } from "../../checkbox/CheckboxUIState";
import { Checkbox, CheckboxGroup, CheckboxGroupProps } from "../../index";
import {
Checkbox,
CheckboxGroup,
CheckboxGroupProps,
Value,
} from "../../index";

export type CheckboxGroupBasicProps = CheckboxGroupProps & {};

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
import * as React from "react";
import { Separator } from "ariakit";

import { Value } from "../../checkbox/CheckboxUIState";
import { Checkbox, Radio, RadioGroup, RadioGroupProps } from "../../index";
import {
Checkbox,
Radio,
RadioGroup,
RadioGroupProps,
Value,
} from "../../index";

export type CheckboxGroupControlledProps = {};

Expand Down
3 changes: 2 additions & 1 deletion src/checkbox/stories/CheckboxCustomAdvanced.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ import {
CheckboxIcon,
CheckboxInput,
CheckboxLabel,
CheckboxProps,
CheckboxUIProps,
tcm,
useCheckboxUIState,
} from "../../index";
import { CheckboxProps, CheckboxUIProps } from "../CheckboxProps";

export type CheckboxCustomAdvancedProps = {};

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
import * as React from "react";

import { Button, CircularProgress, CircularProgressProps } from "../../index";
import { CircularProgressBar } from "../CircularProgressBar";
import { CircularProgressHint } from "../CircularProgressHint";
import { CircularProgressTrack } from "../CircularProgressTrack";
import {
Button,
CircularProgress,
CircularProgressBar,
CircularProgressHint,
CircularProgressProps,
CircularProgressTrack,
} from "../../index";

export type CircularProgressCustomProps = CircularProgressProps & {};

Expand Down
9 changes: 7 additions & 2 deletions src/radio-group/stories/RadioGroupControlled.component.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
import * as React from "react";
import { Separator } from "ariakit";

import { CheckboxGroupProps } from "../../checkbox-group";
import { Checkbox, Radio, RadioGroup, RadioGroupProps } from "../../index";
import {
Checkbox,
CheckboxGroupProps,
Radio,
RadioGroup,
RadioGroupProps,
} from "../../index";

export type RadioGroupControlledProps = {};

Expand Down
4 changes: 0 additions & 4 deletions src/tag/stories/TagBasic.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,6 @@ export const Outline: Story = {
...Default,
args: { ...Default.args, variant: "outline" },
};
export const Ghost: Story = {
...Default,
args: { ...Default.args, variant: "ghost" },
};

export const Prefix: Story = {
...Default,
Expand Down
Loading

0 comments on commit 3fa9059

Please sign in to comment.