Skip to content

Commit 15d2984

Browse files
committed
Resolved outstanding formatting and import issues brought up in the PR discussion
1 parent a42240b commit 15d2984

7 files changed

Lines changed: 23209 additions & 23208 deletions

File tree

package-lock.json

Lines changed: 23203 additions & 23203 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/assets/scss/_global.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@import "0-vendor/__vendor";
22
@import "1-settings/__settings";
33
@import "2-tools/__tools";
4-
@import "3-generic/__generic";
4+
@import "3-generic/__generic";

src/atoms/buttons/button.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { ButtonTypes } from "../constants/button-types";
44
import { AccessibilityLabels } from "../../enums/accessibility-labels";
55
import React, { forwardRef } from "react";
66
import { StringUtils } from "andculturecode-javascript-core";
7-
import './button.scss';
7+
import "./button.scss";
88

99
// -----------------------------------------------------------------------------------------
1010
// #region Interfaces

src/atoms/forms/checkbox-button.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { InputTypes } from "../constants/input-types";
22
import React from "react";
33
import { Icon } from "../icons/icon";
44
import { Icons } from "../constants/icons";
5-
import './checkbox-button.scss';
5+
import "./checkbox-button.scss";
66

77
// -----------------------------------------------------------------------------------------
88
// #region Constants

src/atoms/forms/radio-button-input.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import * as React from "react";
22
import { forwardRef } from "react";
3+
import "./radio-button-input.scss";
34

45
const COMPONENT_CLASS = "c-radio";
56
export const RadioButtonSelectedClassName = "-selected";

src/atoms/progress-bar/progress-bar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from "react";
22
import { StringUtils } from "andculturecode-javascript-core";
3-
import './progress-bar.scss';
3+
import "./progress-bar.scss";
44

55
// -------------------------------------------------------------------------------------------------
66
// #region Constants

src/atoms/toasts/toast-templates.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Icon } from "../icons/icon";
33
import { Icons } from "../constants/icons";
44
import React from "react";
55
import { ToastContent } from "react-toastify";
6-
import './toast.scss';
6+
import "./toast.scss";
77

88
const COMPONENT_CLASS = "c-toast-content";
99
const ICON_CLASS = `${COMPONENT_CLASS}__icon`;

0 commit comments

Comments
 (0)