Skip to content

Commit 29762fd

Browse files
committed
Move all lit components to dedicated folder.
1 parent 505f9dd commit 29762fd

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

src/app.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ import { LitElement, html, css } from "lit";
66
import { customElement, state } from "lit/decorators.js";
77
import { ExceptionListEntry, BugMetaMap, FirefoxChannel, FirefoxVersions } from "./types";
88
import { getRSEndpoint, RSEnvironment } from "../scripts/rs-config.js";
9-
import "./exceptions-table/exceptions-table";
10-
import "./exceptions-table/top-exceptions-table";
11-
import "./github-corner";
12-
import "./settings-ui.js";
9+
import "./components/exceptions-table/exceptions-table";
10+
import "./components/exceptions-table/top-exceptions-table";
11+
import "./components/github-corner.js";
12+
import "./components/settings-ui.js";
1313

1414
import { versionNumberMatchesFilterExpression } from "./filter-expression/filter-expression.js";
1515
import settings from "./settings.js";
File renamed without changes.

src/bug-label.ts renamed to src/components/bug-label.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
import { LitElement, html, css } from "lit";
66
import { customElement, property } from "lit/decorators.js";
7-
import bugzillaIcon from "./assets/bugzilla-icon.svg";
8-
import { BugMeta } from "./types";
7+
import bugzillaIcon from "../assets/bugzilla-icon.svg";
8+
import { BugMeta } from "../types";
99

1010
/**
1111
* A component for displaying a bug label with a bugzilla icon.

src/exceptions-table/exception-dialog.ts renamed to src/components/exceptions-table/exception-dialog.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import { LitElement, html, css } from "lit";
66
import { customElement, property } from "lit/decorators.js";
7-
import { ExceptionListEntry } from "../types";
7+
import { ExceptionListEntry } from "../../types";
88

99
/**
1010
* Dialog for showing a raw exception entry.

src/exceptions-table/exceptions-table.ts renamed to src/components/exceptions-table/exceptions-table.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import { LitElement, html, css } from "lit";
66
import { customElement, property } from "lit/decorators.js";
7-
import { BugMetaMap, ExceptionListEntry } from "../types";
7+
import { BugMetaMap, ExceptionListEntry } from "../../types";
88
import "../badge";
99
import "../bug-label";
1010
import "./exception-dialog";
File renamed without changes.

src/settings-ui.ts renamed to src/components/settings-ui.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
import { LitElement, html, css } from "lit";
66
import { customElement, property } from "lit/decorators.js";
7-
import { RSEnvironment } from "../scripts/rs-config.js";
8-
import { FirefoxChannel, FirefoxVersions } from "./types.js";
7+
import { RSEnvironment } from "../../scripts/rs-config.js";
8+
import { FirefoxChannel, FirefoxVersions } from "../types.js";
99

1010
/**
1111
* Custom event for RS environment changes.

0 commit comments

Comments
 (0)