forked from DeutscheSoft/aux-widgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomponents.js
65 lines (63 loc) · 2.48 KB
/
components.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
61
62
63
64
65
/*
* This file is part of AUX.
*
* AUX is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* AUX is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General
* Public License along with this program; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA
*/
// widgets
export * from './components/button.js';
export * from './components/buttons.js';
export * from './components/chart.js';
export * from './components/clock.js';
export * from './components/colorpicker.js';
export * from './components/colorpickerdialog.js';
export * from './components/confirmbutton.js';
export * from './components/container.js';
export * from './components/crossover.js';
export * from './components/dialog.js';
export * from './components/drag3d.js';
export * from './components/dynamics.js';
export * from './components/equalizer.js';
export * from './components/expand.js';
export * from './components/fader.js';
export * from './components/frame.js';
export * from './components/gauge.js';
export * from './components/icon.js';
export * from './components/knob.js';
export * from './components/label.js';
export * from './components/levelmeter.js';
export * from './components/meter.js';
export * from './components/multimeter.js';
export * from './components/navigation.js';
export * from './components/notifications.js';
export * from './components/pager.js';
export * from './components/pages.js';
export * from './components/panorama.js';
export * from './components/phasemeter.js';
export * from './components/progressbar.js';
export * from './components/root.js';
export * from './components/reverb.js';
export * from './components/scale.js';
export * from './components/scrollarea.js';
export * from './components/select.js';
export * from './components/slider.js';
export * from './components/state.js';
export * from './components/toggle.js';
export * from './components/value.js';
export * from './components/valuebutton.js';
export * from './components/valueknob.js';
export * from './components/widget.js';
// other
export * from './components/options.js';