@@ -19,7 +19,8 @@ import Dropdown from './components/dropdown/dropdown';
19
19
import Card from './components/card/card' ;
20
20
import NumberInput from './components/number-input/number-input' ;
21
21
import DataTable from './components/data-table/data-table' ;
22
- import DetailPageHeader from './components/detail-page-header/detail-page-header' ;
22
+ import DetailPageHeader
23
+ from './components/detail-page-header/detail-page-header' ;
23
24
import LeftNav from './components/unified-header/left-nav' ;
24
25
import InteriorLeftNav from './components/interior-left-nav/interior-left-nav' ;
25
26
import ProfileSwitcher from './components/unified-header/profile-switcher' ;
@@ -30,7 +31,8 @@ import CopyButton from './components/copy-button/copy-button';
30
31
import Notification from './components/notification/notification' ;
31
32
import Toolbar from './components/toolbar/toolbar' ;
32
33
import Tooltip from './components/tooltip/tooltip' ;
33
- import ProgressIndicator from './components/progress-indicator/progress-indicator' ;
34
+ import ProgressIndicator
35
+ from './components/progress-indicator/progress-indicator' ;
34
36
import FloatingMenu from './components/floating-menu/floating-menu' ;
35
37
36
38
const settings = { } ;
@@ -57,150 +59,131 @@ export {
57
59
* See each components' static `.init()` methods for details.
58
60
*/
59
61
settings ,
60
-
61
62
/**
62
63
* Watches for change in checkbox in the given document and force changing `checked` attribute
63
64
* so that DOM mutation observer in {@link https://www.npmjs.com/package/svgxuse svgxuse} is triggered.
64
65
* @type initCheckbox
65
66
*/
66
67
initCheckbox ,
67
-
68
68
/**
69
69
* Floating action button.
70
70
* @type FabButton
71
71
*/
72
72
FabButton ,
73
-
74
73
/**
75
74
* File uploader.
76
75
* @type FileUploader
77
76
*/
78
77
FileUploader ,
79
-
80
78
/**
81
79
* Content switcher.
82
80
* @type ContentSwitcher
83
81
*/
84
82
ContentSwitcher ,
85
-
86
83
/**
87
84
* Container of tabs.
88
85
* @type Tab
89
86
*/
90
87
Tab ,
91
-
92
88
/**
93
89
* Overflow menu.
94
90
* @type OverflowMenu
95
91
*/
96
92
OverflowMenu ,
97
-
98
93
/**
99
94
* Modal dialog.
100
95
* @type Modal
101
96
*/
102
97
Modal ,
103
-
104
98
/**
105
99
* Left Navigation Menu
106
100
* @type LeftNav
107
101
*/
108
- LeftNav ,
109
-
102
+ LeftNav ,
110
103
/**
111
104
* Spinner indicating loading state.
112
105
* @type Loading
113
106
*/
114
107
Loading ,
115
-
116
108
/**
117
109
* A selector with drop downs.
118
110
* @type Dropdown
119
111
*/
120
112
Dropdown ,
121
-
122
113
/**
123
114
* The container for cards.
124
115
* @type Card
125
116
*/
126
117
Card ,
127
-
128
118
/**
129
119
* Number input UI.
130
120
* @type NumberInput
131
121
*/
132
122
NumberInput ,
133
-
134
123
/**
135
124
* DataTable
136
125
* @type DataTable
137
126
*/
138
127
DataTable ,
139
-
140
128
/**
141
129
* Detail page header.
142
130
* @type DetailPageHeader
143
131
*/
144
132
DetailPageHeader ,
145
-
146
133
/**
147
134
* Search.
148
135
* @type Search
149
136
*/
150
137
Search ,
151
-
152
138
/**
153
139
* Profile Switcher.
154
140
* @type ProfileSwitcher
155
141
*/
156
142
ProfileSwitcher ,
157
-
158
143
/**
159
144
* Pagination.
160
145
* @type Pagination
161
146
*/
162
147
Pagination ,
163
-
164
148
/**
165
149
* Accordion.
166
150
* @type Accordion
167
151
*/
168
152
Accordion ,
169
-
170
153
/**
171
154
* Inline Left Navigation Menu.
172
155
* @type InteriorLeftNav
173
156
*/
174
157
InteriorLeftNav ,
175
-
176
158
/**
177
159
* Notification.
178
160
* @type InteriorLeftNav
179
161
*/
180
162
Notification ,
181
-
182
163
/**
183
164
* Toolbar.
184
165
* @type Toolbar
185
166
*/
186
167
Toolbar ,
187
-
188
168
/**
189
169
* Tooltip.
190
170
* @type Tooltip
191
171
*/
192
172
Tooltip ,
193
-
194
173
/** ProgressIndicator.
195
174
* @type InteriorLeftNav
196
175
*/
197
176
ProgressIndicator ,
198
-
199
177
/**
200
178
* Floating menu.
201
179
* @type FloatingMenu
202
180
*/
203
181
FloatingMenu ,
182
+ /**
183
+ * CopyButton.
184
+ * @type CopyButton
185
+ */
186
+ CopyButton ,
204
187
} ;
205
188
206
189
/**
0 commit comments