-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathall.js
More file actions
76 lines (76 loc) · 2.54 KB
/
all.js
File metadata and controls
76 lines (76 loc) · 2.54 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/**
* @fileoverview A convenience bundle import that includes all components.
*
* WARNING: This import is intended for prototyping and development builds only.
* Import only the individual components used for production.
*/
import './buttons/elevated-button.js'
import './buttons/button.js'
import './buttons/filled-tonal-button.js'
import './buttons/outlined-button.js'
import './buttons/text-button.js'
import './checkbox/checkbox.js'
import './chips/assist-chip.js'
import './chips/chip-set.js'
import './chips/filter-chip.js'
import './chips/input-chip.js'
import './chips/suggestion-chip.js'
import './dialog/dialog.js'
import './divider/divider.js'
import './internal/elevation/elevation.js'
import './buttons/fab.js'
import './internal/field/filled-field.js'
import './internal/field/outlined-field.js'
import './internal/focus/focus-ring.js'
import './icon/icon.js'
import './buttons/filled-icon-button.js'
import './buttons/filled-tonal-icon-button.js'
import './buttons/icon-button.js'
import './buttons/outlined-icon-button.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 './progress/progress.js'
import './radio/radio.js'
import './internal/ripple/ripple.js'
import './select/select.js'
import './select/select-option.js'
import './slider/slider.js'
import './switch/switch.js'
import './tabs/primary-tab.js'
import './tabs/secondary-tab.js'
import './tabs/tabs.js'
import './text/text-field.js'
// go/keep-sorted end
// LINT.ThenChange(:exports)
// LINT.IfChange(exports)
// go/keep-sorted start
export * from './buttons/button.js'
export * from './checkbox/checkbox.js'
export * from './chips/chip.js'
export * from './chips/chip-set.js'
export * from './dialog/dialog.js'
export * from './divider/divider.js'
export * from './internal/elevation/elevation.js'
export * from './buttons/fab.js'
export * from './internal/field/field.js'
export * from './internal/focus/focus-ring.js'
export * from './icon/icon.js'
export * from './buttons/icon-button.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 './progress/progress.js'
export * from './radio/radio.js'
export * from './internal/ripple/ripple.js'
export * from './select/select.js'
export * from './select/select-option.js'
export * from './slider/slider.js'
export * from './switch/switch.js'
export * from './tabs/tab.js'
export * from './tabs/tabs.js'
export * from './text/text-field.js'