-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
48 lines (46 loc) · 1.47 KB
/
index.ts
File metadata and controls
48 lines (46 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
* Copyright (c) 2019-2026 by Brockmann Consult Development team
* Permissions are hereby granted under the terms of the MIT License:
* https://opensource.org/licenses/MIT.
*/
import type { Plugin } from "@/index";
import { Accordion } from "./Accordion";
import { Box } from "./Box";
import { Button } from "./Button";
import { Checkbox } from "./Checkbox";
import { CircularProgress } from "./CircularProgress";
import { Divider } from "./Divider";
import { IconButton } from "./IconButton";
import { LinearProgress } from "./LinearProgress";
import { RadioGroup } from "./RadioGroup";
import { Select } from "./Select";
import { Switch } from "./Switch";
import { Tabs } from "./Tabs";
import { Typography } from "./Typography";
import { Slider } from "./Slider";
import { DataGrid } from "@/plugins/mui/DataGrid";
import { Dialog } from "@/plugins/mui/Dialog";
import { Table } from "@/plugins/mui/Table";
export default function mui(): Plugin {
return {
components: [
["Accordion", Accordion],
["Box", Box],
["Button", Button],
["Checkbox", Checkbox],
["CircularProgress", CircularProgress],
["DataGrid", DataGrid],
["Dialog", Dialog],
["Divider", Divider],
["IconButton", IconButton],
["LinearProgress", LinearProgress],
["RadioGroup", RadioGroup],
["Select", Select],
["Slider", Slider],
["Switch", Switch],
["Table", Table],
["Tabs", Tabs],
["Typography", Typography],
],
};
}