Skip to content

Commit 4443e3f

Browse files
committed
Quick self clean-up before submitting PR
1 parent 61351ec commit 4443e3f

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/assets/scss/6-components/__components.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
COMPONENTS
33
\*------------------------------------*/
44

5-
@import "atoms/__atoms", "molecules/__molecules";
5+
@import "atoms/__atoms";
6+
@import "molecules/__molecules";
67
// "organisms/__organisms", "pages/__pages", "templates/__templates";

src/atoms/forms/checkbox-button.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import { boolean, text } from "@storybook/addon-knobs";
33
import { CheckboxButton } from "./checkbox-button";
44

55
export default {
6-
title: "Atoms | Forms / Checkbox Button",
76
component: CheckboxButton,
7+
title: "Atoms | Forms / Checkbox Button",
88
};
99

1010
export const checkboxButtonKnobs = () => (

src/atoms/forms/checkbox-button.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import { Icons } from "../constants/icons";
88
// -----------------------------------------------------------------------------------------
99

1010
export interface CheckboxButtonProperties {
11-
cssClassName?: string;
1211
checked: boolean;
12+
cssClassName?: string;
1313
disabled?: boolean;
1414
/**
1515
* id applied to the HTML element

src/atoms/forms/checkbox-input.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import React from "react";
33
import { boolean, text } from "@storybook/addon-knobs";
44

55
export default {
6-
title: "Atoms | Forms / Checkbox Input",
76
component: CheckboxInput,
7+
title: "Atoms | Forms / Checkbox Input",
88
};
99

1010
export const checkboxInputKnobs = () => (

src/atoms/forms/select.stories.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ export default {
1010

1111
export const selectKnobs = () => (
1212
<Select
13-
// disabled={boolean("Disabled", false)}
1413
id={Faker.random.uuid()}
1514
onChange={() => {}}
1615
options={[

src/atoms/forms/select.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import { Icon } from "../icons/icon";
1010
export interface SelectProps<T = any> {
1111
cssClassName?: string;
1212
id: string;
13-
onChange: (selectedOption?: SelectOption<T>) => void;
1413
name?: string;
14+
onChange: (selectedOption?: SelectOption<T>) => void;
1515
options: SelectOption<T>[];
1616
value?: string;
1717
}

0 commit comments

Comments
 (0)