-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.js
60 lines (58 loc) · 1.74 KB
/
index.js
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
49
50
51
52
53
54
55
56
57
58
59
60
// System
import root from './components/system/root';
// Layout
import fieldset from './components/layout/fieldset';
import panel from './components/layout/panel';
import tabView from './components/layout/tabView';
import tab from './components/layout/tab';
import multifield from './components/layout/multifield';
// Normal
import datepicker from './components/normal/datepicker';
import hidden from './components/normal/hidden';
import numberfield from './components/normal/numberfield';
import richtext from './components/normal/richtext';
import textarea from './components/normal/textarea';
import textfield from './components/normal/textfield';
// Selection
import buttongroup from './components/selection/buttongroup';
import checkbox from './components/selection/checkbox';
import radio from './components/selection/radio';
import select from './components/selection/select';
import switchfield from './components/selection/switchfield';
// Resource
import fileupload from './components/resource/fileupload';
import pathfield from './components/resource/pathfield';
// Authoring Helpers
import alerthint from './components/authoring-helpers/alerthint';
import anchorbutton from './components/authoring-helpers/anchorbutton';
import heading from './components/authoring-helpers/heading';
// Custom
import trophyfield from './components/custom/trophyfield';
import helloworld from './components/custom/helloworld';
const coralComponents = [
root,
fieldset,
panel,
tabView,
tab,
multifield,
datepicker,
hidden,
numberfield,
richtext,
textarea,
textfield,
buttongroup,
checkbox,
radio,
select,
switchfield,
fileupload,
pathfield,
alerthint,
anchorbutton,
heading,
trophyfield,
helloworld,
];
export default coralComponents;