1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 |
|
23 | import autoInit from '@material/auto-init/index';
|
24 | import * as banner from '@material/banner/index';
|
25 | import * as base from '@material/base/index';
|
26 | import * as checkbox from '@material/checkbox/index';
|
27 | import * as chips from '@material/chips/deprecated/index';
|
28 | import * as circularProgress from '@material/circular-progress/index';
|
29 | import * as dataTable from '@material/data-table/index';
|
30 | import * as dialog from '@material/dialog/index';
|
31 | import * as dom from '@material/dom/index';
|
32 | import * as drawer from '@material/drawer/index';
|
33 | import * as floatingLabel from '@material/floating-label/index';
|
34 | import * as formField from '@material/form-field/index';
|
35 | import * as iconButton from '@material/icon-button/index';
|
36 | import * as lineRipple from '@material/line-ripple/index';
|
37 | import * as linearProgress from '@material/linear-progress/index';
|
38 | import * as list from '@material/list/index';
|
39 | import * as menuSurface from '@material/menu-surface/index';
|
40 | import * as menu from '@material/menu/index';
|
41 | import * as notchedOutline from '@material/notched-outline/index';
|
42 | import * as radio from '@material/radio/index';
|
43 | import * as ripple from '@material/ripple/index';
|
44 | import * as segmentedButton from '@material/segmented-button/index';
|
45 | import * as select from '@material/select/index';
|
46 | import * as slider from '@material/slider/index';
|
47 | import * as snackbar from '@material/snackbar/index';
|
48 | import * as switchControl from '@material/switch/index';
|
49 | import * as tabBar from '@material/tab-bar/index';
|
50 | import * as tabIndicator from '@material/tab-indicator/index';
|
51 | import * as tabScroller from '@material/tab-scroller/index';
|
52 | import * as tab from '@material/tab/index';
|
53 | import * as textField from '@material/textfield/index';
|
54 | import * as tooltip from '@material/tooltip/index';
|
55 | import * as topAppBar from '@material/top-app-bar/index';
|
56 |
|
57 | autoInit.register('MDCBanner', banner.MDCBanner);
|
58 | autoInit.register('MDCCheckbox', checkbox.MDCCheckbox);
|
59 | autoInit.register('MDCChip', chips.MDCChip);
|
60 | autoInit.register('MDCChipSet', chips.MDCChipSet);
|
61 | autoInit.register('MDCCircularProgress', circularProgress.MDCCircularProgress);
|
62 | autoInit.register('MDCDataTable', dataTable.MDCDataTable);
|
63 | autoInit.register('MDCDialog', dialog.MDCDialog);
|
64 | autoInit.register('MDCDrawer', drawer.MDCDrawer);
|
65 | autoInit.register('MDCFloatingLabel', floatingLabel.MDCFloatingLabel);
|
66 | autoInit.register('MDCFormField', formField.MDCFormField);
|
67 | autoInit.register('MDCIconButtonToggle', iconButton.MDCIconButtonToggle);
|
68 | autoInit.register('MDCLineRipple', lineRipple.MDCLineRipple);
|
69 | autoInit.register('MDCLinearProgress', linearProgress.MDCLinearProgress);
|
70 | autoInit.register('MDCList', list.MDCList);
|
71 | autoInit.register('MDCMenu', menu.MDCMenu);
|
72 | autoInit.register('MDCMenuSurface', menuSurface.MDCMenuSurface);
|
73 | autoInit.register('MDCNotchedOutline', notchedOutline.MDCNotchedOutline);
|
74 | autoInit.register('MDCRadio', radio.MDCRadio);
|
75 | autoInit.register('MDCRipple', ripple.MDCRipple);
|
76 | autoInit.register('MDCSegmentedButton', segmentedButton.MDCSegmentedButton);
|
77 | autoInit.register('MDCSelect', select.MDCSelect);
|
78 | autoInit.register('MDCSlider', slider.MDCSlider);
|
79 | autoInit.register('MDCSnackbar', snackbar.MDCSnackbar);
|
80 | autoInit.register('MDCSwitch', switchControl.MDCSwitch);
|
81 | autoInit.register('MDCTabBar', tabBar.MDCTabBar);
|
82 | autoInit.register('MDCTextField', textField.MDCTextField);
|
83 | autoInit.register('MDCTooltip', tooltip.MDCTooltip);
|
84 | autoInit.register('MDCTopAppBar', topAppBar.MDCTopAppBar);
|
85 |
|
86 | export { autoInit, banner, base, checkbox, chips, circularProgress, dataTable, dialog, dom, drawer, floatingLabel, formField, iconButton, lineRipple, linearProgress, list, menu, menuSurface, notchedOutline, radio, ripple, segmentedButton, select, slider, snackbar, switchControl, tab, tabBar, tabIndicator, tabScroller, textField, tooltip, topAppBar, };
|
87 |
|
\ | No newline at end of file |