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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
//! Widget integration tests - split into modules by widget type
//!
//! NOTE: Some modules are temporarily disabled due to API mismatches.
//! Search for "TODO(test-coverage)" to find disabled modules.
// TODO(test-coverage): aistream has API mismatches
// #[path = "widget/aistream/mod.rs"]
// mod aistream;
// TODO(test-coverage): autocomplete has API mismatches
// #[path = "widget/autocomplete/mod.rs"]
// mod autocomplete;
// TODO(test-coverage): breadcrumb has API mismatches
// #[path = "widget/breadcrumb/mod.rs"]
// pub mod breadcrumb;
// TODO(test-coverage): callout has API mismatches
// #[path = "widget/callout/mod.rs"]
// mod callout;
// TODO(test-coverage): card has API mismatches
// #[path = "widget/card.rs"]
// mod card;
// TODO(test-coverage): canvas has API mismatches
// #[path = "widget/canvas/mod.rs"]
// pub mod canvas;
// TODO(test-coverage): checkbox has API mismatches
// #[path = "widget/checkbox/mod.rs"]
// mod checkbox;
// TODO(test-coverage): code_editor_tests has API mismatches
// #[path = "widget/code_editor_tests.rs"]
// pub mod code_editor_tests;
// TODO(test-coverage): combobox has API mismatches
// #[path = "widget/combobox/mod.rs"]
// mod combobox;
// TODO(test-coverage): combobox_tests has API mismatches
// #[path = "widget/combobox_tests.rs"]
// pub mod combobox_tests;
// TODO(test-coverage): data has API mismatches
// #[path = "widget/data/mod.rs"]
// pub mod data;
// TODO(test-coverage): data_chart_tests has API mismatches
// #[path = "widget/data_chart_tests.rs"]
// pub mod data_chart_tests;
// TODO(test-coverage): datagrid has API mismatches
// #[path = "widget/datagrid/mod.rs"]
// mod datagrid;
// TODO(test-coverage): dropzone has API mismatches
// #[path = "widget/dropzone/mod.rs"]
// pub mod dropzone;
// TODO(test-coverage): debug_overlay has API mismatches
// #[path = "widget/debug_overlay.rs"]
// mod debug_overlay;
// TODO(test-coverage): developer has API mismatches
// #[path = "widget/developer/mod.rs"]
// pub mod developer;
// TODO(test-coverage): digits has API mismatches
// #[path = "widget/digits.rs"]
// mod digits;
// TODO(test-coverage): display has API mismatches
// #[path = "widget/display/mod.rs"]
// mod display;
// TODO(test-coverage): feedback has API mismatches
// #[path = "widget/feedback/mod.rs"]
// pub mod feedback;
// TODO(test-coverage): filepicker has API mismatches
// #[path = "widget/filepicker/mod.rs"]
// mod filepicker;
// TODO(test-coverage): filetree has API mismatches
// #[path = "widget/filetree/mod.rs"]
// mod filetree;
// TODO(test-coverage): form has API mismatches
// #[path = "widget/form/mod.rs"]
// pub mod form;
// TODO(test-coverage): form_tests has API mismatches
// #[path = "widget/form_tests.rs"]
// mod form_tests;
// TODO(test-coverage): heatmap_tests has API mismatches
// #[path = "widget/heatmap_tests.rs"]
// pub mod heatmap_tests;
// TODO(test-coverage): httpclient has API mismatches
// #[path = "widget/httpclient/mod.rs"]
// pub mod httpclient;
// TODO(test-coverage): multi_select has API mismatches
// #[path = "widget/multi_select/mod.rs"]
// pub mod multi_select;
// TODO(test-coverage): input has API mismatches
// #[path = "widget/input/mod.rs"]
// mod input;
// TODO(test-coverage): link has API mismatches
// #[path = "widget/link.rs"]
// mod link;
// TODO(test-coverage): layout has API mismatches
// #[path = "widget/layout/mod.rs"]
// mod layout;
// TODO(test-coverage): list has API mismatches
// #[path = "widget/list.rs"]
// mod list;
// TODO(test-coverage): mermaid has API mismatches
// #[path = "widget/mermaid/mod.rs"]
// mod mermaid;
// TODO(test-coverage): option_list has API mismatches
// #[path = "widget/option_list/mod.rs"]
// mod option_list;
// TODO(test-coverage): presentation has API mismatches
// #[path = "widget/presentation/mod.rs"]
// mod presentation;
// TODO(test-coverage): range_picker has API mismatches
// #[path = "widget/range_picker/mod.rs"]
// mod range_picker;
// TODO(test-coverage): sortable has API mismatches
// #[path = "widget/sortable/mod.rs"]
// pub mod sortable;
// TODO(test-coverage): slider has API mismatches
// #[path = "widget/slider/mod.rs"]
// mod slider;
// TODO(test-coverage): splitter has API mismatches
// #[path = "widget/splitter/mod.rs"]
// mod splitter;
// TODO(test-coverage): streamline has API mismatches
// #[path = "widget/streamline/mod.rs"]
// mod streamline;
// TODO(test-coverage): text has API mismatches
// #[path = "widget/text/mod.rs"]
// mod text;
// TODO(test-coverage): textarea has API mismatches
// #[path = "widget/textarea/mod.rs"]
// mod textarea;
// TODO(test-coverage): transition has API mismatches
// #[path = "widget/transition/mod.rs"]
// mod transition;
// TODO(test-coverage): waveline has API mismatches
// #[path = "widget/waveline/mod.rs"]
// mod waveline;