-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcommon.js
More file actions
53 lines (52 loc) · 1.74 KB
/
Copy pathcommon.js
File metadata and controls
53 lines (52 loc) · 1.74 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
49
50
51
52
53
/**
* @fileoverview A convenience bundle import that includes common components.
*
* WARNING: This import is intended for prototyping and development builds only.
* It is smaller than `@material/web/all.js` and includes the most common
* components for starting a project. Import only the individual components used
* for production.
*/
import './buttons/button.js'
import './buttons/button-group.js'
import './carousel/carousel.js'
import './carousel/carousel-item.js'
import './checkbox/checkbox.js'
import './chips/chip.js'
import './chips/chip-set.js'
import './dialog/dialog.js'
import './icon/icon.js'
import './buttons/icon-button.js'
import './indicators/progress.js'
import './list/list.js'
import './list/list-item.js'
import './menu/menu.js'
import './menu/menu-item.js'
import './menu/sub-menu.js'
import './radio/radio.js'
import './select/select.js'
import './select/select-option.js'
import './tabs/tab.js'
import './tabs/tabs.js'
import './text/text-field.js'
export * from './buttons/button.js'
export * from './buttons/button-group.js'
export * from './carousel/carousel.js'
export * from './carousel/carousel-item.js'
export * from './checkbox/checkbox.js'
export * from './chips/chip.js'
export * from './chips/chip-set.js'
export * from './dialog/dialog.js'
export * from './icon/icon.js'
export * from './buttons/icon-button.js'
export * from './indicators/progress.js'
export * from './list/list.js'
export * from './list/list-item.js'
export * from './menu/menu.js'
export * from './menu/menu-item.js'
export * from './menu/sub-menu.js'
export * from './radio/radio.js'
export * from './select/select.js'
export * from './select/select-option.js'
export * from './tabs/tab.js'
export * from './tabs/tabs.js'
export * from './text/text-field.js'