Skip to content

Commit

Permalink
fix eslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdholt committed May 9, 2020
1 parent 8e91fcb commit 0ee9bdb
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { customElement } from "@microsoft/fast-element";
import { AnchorStyles as styles } from "./anchor.styles";
import { Anchor } from "@microsoft/fast-components";
// update the below once #3091 is merged
import { AnchorTemplate as template } from "@microsoft/fast-components/dist/anchor/anchor.template";
import { AnchorStyles as styles } from "./anchor.styles";

// Anchor
@customElement({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import {
accentForegroundCutRestBehavior,
accentForegroundRestBehavior,
display,
neutralForegroundRestBehavior,
neutralFillInputRestBehavior,
neutralFillToggleRestBehavior,
neutralForegroundRestBehavior,
} from "@microsoft/fast-components";

export const BadgeStyles = css`
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { customElement, attr } from "@microsoft/fast-element";
import { attr, customElement } from "@microsoft/fast-element";
import { Badge, BadgeTemplate as template } from "@microsoft/fast-components";
import { BadgeStyles as styles } from "./badge.styles";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,4 @@
import { css } from "@microsoft/fast-element";
import {
AccentButtonStyles,
BaseButtonStyles,
HypertextStyles,
LightweightButtonStyles,
OutlineButtonStyles,
StealthButtonStyles,
} from "../styles";
import {
accentFillActiveBehavior,
accentFillHoverBehavior,
Expand Down Expand Up @@ -34,6 +26,14 @@ import {
// update the below imports once #3091 is merged
import { forcedColorsStylesheetBehavior } from "@microsoft/fast-components/dist/styles/match-media-stylesheet-behavior";
import { SystemColors } from "@microsoft/fast-components/dist/styles/system-colors";
import {
AccentButtonStyles,
BaseButtonStyles,
HypertextStyles,
LightweightButtonStyles,
OutlineButtonStyles,
StealthButtonStyles,
} from "../styles";

export const ButtonStyles = css`
${BaseButtonStyles}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { customElement } from "@microsoft/fast-element";
import { ButtonStyles as styles } from "./button.styles";
import { Button } from "@microsoft/fast-components";
// update the below once #3091 is merged
import { ButtonTemplate as template } from "@microsoft/fast-components/dist/button/button.template";
import { ButtonStyles as styles } from "./button.styles";

// Button
@customElement({
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { css } from "@microsoft/fast-element";
import {
accentFillRestBehavior,
accentForegroundCutRestBehavior,
disabledCursor,
display,
focusVisible,
accentFillRestBehavior,
accentForegroundCutRestBehavior,
neutralFillInputActiveBehavior,
neutralFillInputHoverBehavior,
neutralFillInputRestBehavior,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { customElement } from "@microsoft/fast-element";
import { TextArea, TextAreaTemplate as template } from "@microsoft/fast-components";
import { TextAreaTemplate as template, TextArea } from "@microsoft/fast-components";
import { TextAreaStyles as styles } from "./text-area.styles";

@customElement({
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { customElement } from "@microsoft/fast-element";
import { TextField, TextFieldTemplate as template } from "@microsoft/fast-components";
import { TextFieldTemplate as template, TextField } from "@microsoft/fast-components";
import { TextFieldStyles as styles } from "./text-field.styles";

@customElement({
Expand Down

0 comments on commit 0ee9bdb

Please sign in to comment.