this repo has no description
1import { ExtensionWebExports } from "@moonlight-mod/types";
2
3import { CircleXIconSVG, DownloadIconSVG, TrashIconSVG } from "./types";
4
5export const webpackModules: ExtensionWebExports["webpackModules"] = {
6 stores: {
7 dependencies: [
8 { ext: "common", id: "flux" },
9 { ext: "common", id: "fluxDispatcher" }
10 ]
11 },
12
13 ui: {
14 dependencies: [
15 { ext: "spacepack", id: "spacepack" },
16 { ext: "common", id: "react" },
17 { ext: "common", id: "components" },
18 { ext: "moonbase", id: "stores" },
19 DownloadIconSVG,
20 TrashIconSVG,
21 CircleXIconSVG,
22 "Masks.PANEL_BUTTON",
23 "removeButtonContainer:",
24 '"Missing channel in Channel.openChannelContextMenu"',
25 ".default.HEADER_BAR"
26 ]
27 },
28
29 moonbase: {
30 dependencies: [
31 { ext: "spacepack", id: "spacepack" },
32 { ext: "settings", id: "settings" },
33 { ext: "common", id: "react" },
34 { ext: "moonbase", id: "ui" }
35 ],
36 entrypoint: true
37 }
38};
39
40export const styles = [
41 ".moonbase-settings > :first-child { margin-top: 0px; }",
42 "textarea.moonbase-resizeable { resize: vertical }"
43];