@patternfly/patternfly 5.0.0-alpha.21 → 5.0.0-alpha.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/Chip/chip.css +33 -24
- package/components/Chip/chip.scss +40 -31
- package/components/Label/label.css +35 -24
- package/components/Label/label.scss +40 -27
- package/components/Popover/popover.css +21 -24
- package/components/Popover/popover.scss +25 -32
- package/components/Table/table-tree-view.css +10 -0
- package/components/Table/table-tree-view.scss +15 -0
- package/docs/components/Chip/examples/Chip.md +61 -43
- package/docs/components/ChipGroup/examples/ChipGroup.md +437 -329
- package/docs/components/InlineEdit/examples/InlineEdit.md +5 -3
- package/docs/components/Label/examples/Label.md +1399 -718
- package/docs/components/LabelGroup/examples/LabelGroup.md +274 -209
- package/docs/components/LogViewer/examples/LogViewer.md +10 -4
- package/docs/components/Popover/examples/Popover.md +175 -104
- package/docs/components/Select/examples/Select.md +224 -170
- package/docs/components/Table/examples/Table.md +565 -41
- package/docs/components/TextInputGroup/examples/TextInputGroup.md +343 -261
- package/docs/components/Toolbar/examples/Toolbar.md +306 -234
- package/docs/demos/Card/examples/Card.md +46 -38
- package/docs/demos/Dashboard/examples/Dashboard.md +23 -15
- package/docs/demos/DescriptionList/examples/DescriptionList.md +21 -9
- package/docs/demos/Drawer/examples/Drawer.md +4 -2
- package/docs/demos/Form/examples/BasicForms.md +28 -22
- package/docs/demos/Tabs/examples/Tabs.md +39 -16
- package/docs/demos/Toolbar/examples/Toolbar.md +102 -78
- package/package.json +2 -2
- package/patternfly-no-reset.css +99 -72
- package/patternfly.css +99 -72
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -89,109 +89,135 @@ cssPrefix: pf-c-text-input-group
|
|
|
89
89
|
>
|
|
90
90
|
<li class="pf-c-chip-group__list-item">
|
|
91
91
|
<div class="pf-c-chip">
|
|
92
|
-
<span
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
92
|
+
<span class="pf-c-chip__content">
|
|
93
|
+
<span
|
|
94
|
+
class="pf-c-chip__text"
|
|
95
|
+
id="text-input-group-filters-chip-group-chip_one_select_collapsed"
|
|
96
|
+
>Chip one</span>
|
|
97
|
+
</span>
|
|
98
|
+
<span class="pf-c-chip__actions">
|
|
99
|
+
<button
|
|
100
|
+
class="pf-c-button pf-m-plain"
|
|
101
|
+
type="button"
|
|
102
|
+
aria-labelledby="text-input-group-filters-chip-group-remove_chip_one_select_collapsed text-input-group-filters-chip-group-chip_one_select_collapsed"
|
|
103
|
+
aria-label="Remove"
|
|
104
|
+
id="text-input-group-filters-chip-group-remove_chip_one_select_collapsed"
|
|
105
|
+
>
|
|
106
|
+
<i class="fas fa-times" aria-hidden="true"></i>
|
|
107
|
+
</button>
|
|
108
|
+
</span>
|
|
105
109
|
</div>
|
|
106
110
|
</li>
|
|
107
111
|
<li class="pf-c-chip-group__list-item">
|
|
108
112
|
<div class="pf-c-chip">
|
|
109
|
-
<span
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
113
|
+
<span class="pf-c-chip__content">
|
|
114
|
+
<span
|
|
115
|
+
class="pf-c-chip__text"
|
|
116
|
+
id="text-input-group-filters-chip-group-chip_two_select_collapsed"
|
|
117
|
+
>Chip two</span>
|
|
118
|
+
</span>
|
|
119
|
+
<span class="pf-c-chip__actions">
|
|
120
|
+
<button
|
|
121
|
+
class="pf-c-button pf-m-plain"
|
|
122
|
+
type="button"
|
|
123
|
+
aria-labelledby="text-input-group-filters-chip-group-remove_chip_two_select_collapsed text-input-group-filters-chip-group-chip_two_select_collapsed"
|
|
124
|
+
aria-label="Remove"
|
|
125
|
+
id="text-input-group-filters-chip-group-remove_chip_two_select_collapsed"
|
|
126
|
+
>
|
|
127
|
+
<i class="fas fa-times" aria-hidden="true"></i>
|
|
128
|
+
</button>
|
|
129
|
+
</span>
|
|
122
130
|
</div>
|
|
123
131
|
</li>
|
|
124
132
|
<li class="pf-c-chip-group__list-item">
|
|
125
133
|
<div class="pf-c-chip">
|
|
126
|
-
<span
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
134
|
+
<span class="pf-c-chip__content">
|
|
135
|
+
<span
|
|
136
|
+
class="pf-c-chip__text"
|
|
137
|
+
id="text-input-group-filters-chip-group-chip_three_select_collapsed"
|
|
138
|
+
>Chip three</span>
|
|
139
|
+
</span>
|
|
140
|
+
<span class="pf-c-chip__actions">
|
|
141
|
+
<button
|
|
142
|
+
class="pf-c-button pf-m-plain"
|
|
143
|
+
type="button"
|
|
144
|
+
aria-labelledby="text-input-group-filters-chip-group-remove_chip_three_select_collapsed text-input-group-filters-chip-group-chip_three_select_collapsed"
|
|
145
|
+
aria-label="Remove"
|
|
146
|
+
id="text-input-group-filters-chip-group-remove_chip_three_select_collapsed"
|
|
147
|
+
>
|
|
148
|
+
<i class="fas fa-times" aria-hidden="true"></i>
|
|
149
|
+
</button>
|
|
150
|
+
</span>
|
|
139
151
|
</div>
|
|
140
152
|
</li>
|
|
141
153
|
<li class="pf-c-chip-group__list-item">
|
|
142
154
|
<div class="pf-c-chip">
|
|
143
|
-
<span
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
155
|
+
<span class="pf-c-chip__content">
|
|
156
|
+
<span
|
|
157
|
+
class="pf-c-chip__text"
|
|
158
|
+
id="text-input-group-filters-chip-group-chip_four_select_collapsed"
|
|
159
|
+
>Chip four</span>
|
|
160
|
+
</span>
|
|
161
|
+
<span class="pf-c-chip__actions">
|
|
162
|
+
<button
|
|
163
|
+
class="pf-c-button pf-m-plain"
|
|
164
|
+
type="button"
|
|
165
|
+
aria-labelledby="text-input-group-filters-chip-group-remove_chip_four_select_collapsed text-input-group-filters-chip-group-chip_four_select_collapsed"
|
|
166
|
+
aria-label="Remove"
|
|
167
|
+
id="text-input-group-filters-chip-group-remove_chip_four_select_collapsed"
|
|
168
|
+
>
|
|
169
|
+
<i class="fas fa-times" aria-hidden="true"></i>
|
|
170
|
+
</button>
|
|
171
|
+
</span>
|
|
156
172
|
</div>
|
|
157
173
|
</li>
|
|
158
174
|
<li class="pf-c-chip-group__list-item">
|
|
159
175
|
<div class="pf-c-chip">
|
|
160
|
-
<span
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
176
|
+
<span class="pf-c-chip__content">
|
|
177
|
+
<span
|
|
178
|
+
class="pf-c-chip__text"
|
|
179
|
+
id="text-input-group-filters-chip-group-chip_five_select_collapsed"
|
|
180
|
+
>Chip five</span>
|
|
181
|
+
</span>
|
|
182
|
+
<span class="pf-c-chip__actions">
|
|
183
|
+
<button
|
|
184
|
+
class="pf-c-button pf-m-plain"
|
|
185
|
+
type="button"
|
|
186
|
+
aria-labelledby="text-input-group-filters-chip-group-remove_chip_five_select_collapsed text-input-group-filters-chip-group-chip_five_select_collapsed"
|
|
187
|
+
aria-label="Remove"
|
|
188
|
+
id="text-input-group-filters-chip-group-remove_chip_five_select_collapsed"
|
|
189
|
+
>
|
|
190
|
+
<i class="fas fa-times" aria-hidden="true"></i>
|
|
191
|
+
</button>
|
|
192
|
+
</span>
|
|
173
193
|
</div>
|
|
174
194
|
</li>
|
|
175
195
|
<li class="pf-c-chip-group__list-item">
|
|
176
196
|
<div class="pf-c-chip">
|
|
177
|
-
<span
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
197
|
+
<span class="pf-c-chip__content">
|
|
198
|
+
<span
|
|
199
|
+
class="pf-c-chip__text"
|
|
200
|
+
id="text-input-group-filters-chip-group-chip_six_select_collapsed"
|
|
201
|
+
>Chip six</span>
|
|
202
|
+
</span>
|
|
203
|
+
<span class="pf-c-chip__actions">
|
|
204
|
+
<button
|
|
205
|
+
class="pf-c-button pf-m-plain"
|
|
206
|
+
type="button"
|
|
207
|
+
aria-labelledby="text-input-group-filters-chip-group-remove_chip_six_select_collapsed text-input-group-filters-chip-group-chip_six_select_collapsed"
|
|
208
|
+
aria-label="Remove"
|
|
209
|
+
id="text-input-group-filters-chip-group-remove_chip_six_select_collapsed"
|
|
210
|
+
>
|
|
211
|
+
<i class="fas fa-times" aria-hidden="true"></i>
|
|
212
|
+
</button>
|
|
213
|
+
</span>
|
|
190
214
|
</div>
|
|
191
215
|
</li>
|
|
192
216
|
<li class="pf-c-chip-group__list-item">
|
|
193
217
|
<button class="pf-c-chip pf-m-overflow">
|
|
194
|
-
<span class="pf-c-
|
|
218
|
+
<span class="pf-c-chip__content">
|
|
219
|
+
<span class="pf-c-chip__text">8 more</span>
|
|
220
|
+
</span>
|
|
195
221
|
</button>
|
|
196
222
|
</li>
|
|
197
223
|
</ul>
|
|
@@ -233,240 +259,296 @@ cssPrefix: pf-c-text-input-group
|
|
|
233
259
|
>
|
|
234
260
|
<li class="pf-c-chip-group__list-item">
|
|
235
261
|
<div class="pf-c-chip">
|
|
236
|
-
<span
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
262
|
+
<span class="pf-c-chip__content">
|
|
263
|
+
<span
|
|
264
|
+
class="pf-c-chip__text"
|
|
265
|
+
id="text-input-group-filters-expanded-chip-group-chip_one_select_collapsed"
|
|
266
|
+
>Chip one</span>
|
|
267
|
+
</span>
|
|
268
|
+
<span class="pf-c-chip__actions">
|
|
269
|
+
<button
|
|
270
|
+
class="pf-c-button pf-m-plain"
|
|
271
|
+
type="button"
|
|
272
|
+
aria-labelledby="text-input-group-filters-expanded-chip-group-remove_chip_one_select_collapsed text-input-group-filters-expanded-chip-group-chip_one_select_collapsed"
|
|
273
|
+
aria-label="Remove"
|
|
274
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_one_select_collapsed"
|
|
275
|
+
>
|
|
276
|
+
<i class="fas fa-times" aria-hidden="true"></i>
|
|
277
|
+
</button>
|
|
278
|
+
</span>
|
|
249
279
|
</div>
|
|
250
280
|
</li>
|
|
251
281
|
<li class="pf-c-chip-group__list-item">
|
|
252
282
|
<div class="pf-c-chip">
|
|
253
|
-
<span
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
283
|
+
<span class="pf-c-chip__content">
|
|
284
|
+
<span
|
|
285
|
+
class="pf-c-chip__text"
|
|
286
|
+
id="text-input-group-filters-expanded-chip-group-chip_two_select_collapsed"
|
|
287
|
+
>Chip two</span>
|
|
288
|
+
</span>
|
|
289
|
+
<span class="pf-c-chip__actions">
|
|
290
|
+
<button
|
|
291
|
+
class="pf-c-button pf-m-plain"
|
|
292
|
+
type="button"
|
|
293
|
+
aria-labelledby="text-input-group-filters-expanded-chip-group-remove_chip_two_select_collapsed text-input-group-filters-expanded-chip-group-chip_two_select_collapsed"
|
|
294
|
+
aria-label="Remove"
|
|
295
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_two_select_collapsed"
|
|
296
|
+
>
|
|
297
|
+
<i class="fas fa-times" aria-hidden="true"></i>
|
|
298
|
+
</button>
|
|
299
|
+
</span>
|
|
266
300
|
</div>
|
|
267
301
|
</li>
|
|
268
302
|
<li class="pf-c-chip-group__list-item">
|
|
269
303
|
<div class="pf-c-chip">
|
|
270
|
-
<span
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
304
|
+
<span class="pf-c-chip__content">
|
|
305
|
+
<span
|
|
306
|
+
class="pf-c-chip__text"
|
|
307
|
+
id="text-input-group-filters-expanded-chip-group-chip_three_select_collapsed"
|
|
308
|
+
>Chip three</span>
|
|
309
|
+
</span>
|
|
310
|
+
<span class="pf-c-chip__actions">
|
|
311
|
+
<button
|
|
312
|
+
class="pf-c-button pf-m-plain"
|
|
313
|
+
type="button"
|
|
314
|
+
aria-labelledby="text-input-group-filters-expanded-chip-group-remove_chip_three_select_collapsed text-input-group-filters-expanded-chip-group-chip_three_select_collapsed"
|
|
315
|
+
aria-label="Remove"
|
|
316
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_three_select_collapsed"
|
|
317
|
+
>
|
|
318
|
+
<i class="fas fa-times" aria-hidden="true"></i>
|
|
319
|
+
</button>
|
|
320
|
+
</span>
|
|
283
321
|
</div>
|
|
284
322
|
</li>
|
|
285
323
|
<li class="pf-c-chip-group__list-item">
|
|
286
324
|
<div class="pf-c-chip">
|
|
287
|
-
<span
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
325
|
+
<span class="pf-c-chip__content">
|
|
326
|
+
<span
|
|
327
|
+
class="pf-c-chip__text"
|
|
328
|
+
id="text-input-group-filters-expanded-chip-group-chip_four_select_collapsed"
|
|
329
|
+
>Chip four</span>
|
|
330
|
+
</span>
|
|
331
|
+
<span class="pf-c-chip__actions">
|
|
332
|
+
<button
|
|
333
|
+
class="pf-c-button pf-m-plain"
|
|
334
|
+
type="button"
|
|
335
|
+
aria-labelledby="text-input-group-filters-expanded-chip-group-remove_chip_four_select_collapsed text-input-group-filters-expanded-chip-group-chip_four_select_collapsed"
|
|
336
|
+
aria-label="Remove"
|
|
337
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_four_select_collapsed"
|
|
338
|
+
>
|
|
339
|
+
<i class="fas fa-times" aria-hidden="true"></i>
|
|
340
|
+
</button>
|
|
341
|
+
</span>
|
|
300
342
|
</div>
|
|
301
343
|
</li>
|
|
302
344
|
<li class="pf-c-chip-group__list-item">
|
|
303
345
|
<div class="pf-c-chip">
|
|
304
|
-
<span
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
346
|
+
<span class="pf-c-chip__content">
|
|
347
|
+
<span
|
|
348
|
+
class="pf-c-chip__text"
|
|
349
|
+
id="text-input-group-filters-expanded-chip-group-chip_five_select_collapsed"
|
|
350
|
+
>Chip five</span>
|
|
351
|
+
</span>
|
|
352
|
+
<span class="pf-c-chip__actions">
|
|
353
|
+
<button
|
|
354
|
+
class="pf-c-button pf-m-plain"
|
|
355
|
+
type="button"
|
|
356
|
+
aria-labelledby="text-input-group-filters-expanded-chip-group-remove_chip_five_select_collapsed text-input-group-filters-expanded-chip-group-chip_five_select_collapsed"
|
|
357
|
+
aria-label="Remove"
|
|
358
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_five_select_collapsed"
|
|
359
|
+
>
|
|
360
|
+
<i class="fas fa-times" aria-hidden="true"></i>
|
|
361
|
+
</button>
|
|
362
|
+
</span>
|
|
317
363
|
</div>
|
|
318
364
|
</li>
|
|
319
365
|
<li class="pf-c-chip-group__list-item">
|
|
320
366
|
<div class="pf-c-chip">
|
|
321
|
-
<span
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
367
|
+
<span class="pf-c-chip__content">
|
|
368
|
+
<span
|
|
369
|
+
class="pf-c-chip__text"
|
|
370
|
+
id="text-input-group-filters-expanded-chip-group-chip_six_select_collapsed"
|
|
371
|
+
>Chip six</span>
|
|
372
|
+
</span>
|
|
373
|
+
<span class="pf-c-chip__actions">
|
|
374
|
+
<button
|
|
375
|
+
class="pf-c-button pf-m-plain"
|
|
376
|
+
type="button"
|
|
377
|
+
aria-labelledby="text-input-group-filters-expanded-chip-group-remove_chip_six_select_collapsed text-input-group-filters-expanded-chip-group-chip_six_select_collapsed"
|
|
378
|
+
aria-label="Remove"
|
|
379
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_six_select_collapsed"
|
|
380
|
+
>
|
|
381
|
+
<i class="fas fa-times" aria-hidden="true"></i>
|
|
382
|
+
</button>
|
|
383
|
+
</span>
|
|
334
384
|
</div>
|
|
335
385
|
</li>
|
|
336
386
|
<li class="pf-c-chip-group__list-item">
|
|
337
387
|
<div class="pf-c-chip">
|
|
338
|
-
<span
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
388
|
+
<span class="pf-c-chip__content">
|
|
389
|
+
<span
|
|
390
|
+
class="pf-c-chip__text"
|
|
391
|
+
id="text-input-group-filters-expanded-chip-group-chip_seven_select_collapsed"
|
|
392
|
+
>Chip seven</span>
|
|
393
|
+
</span>
|
|
394
|
+
<span class="pf-c-chip__actions">
|
|
395
|
+
<button
|
|
396
|
+
class="pf-c-button pf-m-plain"
|
|
397
|
+
type="button"
|
|
398
|
+
aria-labelledby="text-input-group-filters-expanded-chip-group-remove_chip_seven_select_collapsed text-input-group-filters-expanded-chip-group-chip_seven_select_collapsed"
|
|
399
|
+
aria-label="Remove"
|
|
400
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_seven_select_collapsed"
|
|
401
|
+
>
|
|
402
|
+
<i class="fas fa-times" aria-hidden="true"></i>
|
|
403
|
+
</button>
|
|
404
|
+
</span>
|
|
351
405
|
</div>
|
|
352
406
|
</li>
|
|
353
407
|
<li class="pf-c-chip-group__list-item">
|
|
354
408
|
<div class="pf-c-chip">
|
|
355
|
-
<span
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
409
|
+
<span class="pf-c-chip__content">
|
|
410
|
+
<span
|
|
411
|
+
class="pf-c-chip__text"
|
|
412
|
+
id="text-input-group-filters-expanded-chip-group-chip_eight_select_collapsed"
|
|
413
|
+
>Chip eight</span>
|
|
414
|
+
</span>
|
|
415
|
+
<span class="pf-c-chip__actions">
|
|
416
|
+
<button
|
|
417
|
+
class="pf-c-button pf-m-plain"
|
|
418
|
+
type="button"
|
|
419
|
+
aria-labelledby="text-input-group-filters-expanded-chip-group-remove_chip_eight_select_collapsed text-input-group-filters-expanded-chip-group-chip_eight_select_collapsed"
|
|
420
|
+
aria-label="Remove"
|
|
421
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_eight_select_collapsed"
|
|
422
|
+
>
|
|
423
|
+
<i class="fas fa-times" aria-hidden="true"></i>
|
|
424
|
+
</button>
|
|
425
|
+
</span>
|
|
368
426
|
</div>
|
|
369
427
|
</li>
|
|
370
428
|
<li class="pf-c-chip-group__list-item">
|
|
371
429
|
<div class="pf-c-chip">
|
|
372
|
-
<span
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
430
|
+
<span class="pf-c-chip__content">
|
|
431
|
+
<span
|
|
432
|
+
class="pf-c-chip__text"
|
|
433
|
+
id="text-input-group-filters-expanded-chip-group-chip_nine_select_collapsed"
|
|
434
|
+
>Chip nine</span>
|
|
435
|
+
</span>
|
|
436
|
+
<span class="pf-c-chip__actions">
|
|
437
|
+
<button
|
|
438
|
+
class="pf-c-button pf-m-plain"
|
|
439
|
+
type="button"
|
|
440
|
+
aria-labelledby="text-input-group-filters-expanded-chip-group-remove_chip_nine_select_collapsed text-input-group-filters-expanded-chip-group-chip_nine_select_collapsed"
|
|
441
|
+
aria-label="Remove"
|
|
442
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_nine_select_collapsed"
|
|
443
|
+
>
|
|
444
|
+
<i class="fas fa-times" aria-hidden="true"></i>
|
|
445
|
+
</button>
|
|
446
|
+
</span>
|
|
385
447
|
</div>
|
|
386
448
|
</li>
|
|
387
449
|
<li class="pf-c-chip-group__list-item">
|
|
388
450
|
<div class="pf-c-chip">
|
|
389
|
-
<span
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
451
|
+
<span class="pf-c-chip__content">
|
|
452
|
+
<span
|
|
453
|
+
class="pf-c-chip__text"
|
|
454
|
+
id="text-input-group-filters-expanded-chip-group-chip_ten_select_collapsed"
|
|
455
|
+
>Chip ten</span>
|
|
456
|
+
</span>
|
|
457
|
+
<span class="pf-c-chip__actions">
|
|
458
|
+
<button
|
|
459
|
+
class="pf-c-button pf-m-plain"
|
|
460
|
+
type="button"
|
|
461
|
+
aria-labelledby="text-input-group-filters-expanded-chip-group-remove_chip_ten_select_collapsed text-input-group-filters-expanded-chip-group-chip_ten_select_collapsed"
|
|
462
|
+
aria-label="Remove"
|
|
463
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_ten_select_collapsed"
|
|
464
|
+
>
|
|
465
|
+
<i class="fas fa-times" aria-hidden="true"></i>
|
|
466
|
+
</button>
|
|
467
|
+
</span>
|
|
402
468
|
</div>
|
|
403
469
|
</li>
|
|
404
470
|
<li class="pf-c-chip-group__list-item">
|
|
405
471
|
<div class="pf-c-chip">
|
|
406
|
-
<span
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
472
|
+
<span class="pf-c-chip__content">
|
|
473
|
+
<span
|
|
474
|
+
class="pf-c-chip__text"
|
|
475
|
+
id="text-input-group-filters-expanded-chip-group-chip_eleven_select_collapsed"
|
|
476
|
+
>Chip eleven</span>
|
|
477
|
+
</span>
|
|
478
|
+
<span class="pf-c-chip__actions">
|
|
479
|
+
<button
|
|
480
|
+
class="pf-c-button pf-m-plain"
|
|
481
|
+
type="button"
|
|
482
|
+
aria-labelledby="text-input-group-filters-expanded-chip-group-remove_chip_eleven_select_collapsed text-input-group-filters-expanded-chip-group-chip_eleven_select_collapsed"
|
|
483
|
+
aria-label="Remove"
|
|
484
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_eleven_select_collapsed"
|
|
485
|
+
>
|
|
486
|
+
<i class="fas fa-times" aria-hidden="true"></i>
|
|
487
|
+
</button>
|
|
488
|
+
</span>
|
|
419
489
|
</div>
|
|
420
490
|
</li>
|
|
421
491
|
<li class="pf-c-chip-group__list-item">
|
|
422
492
|
<div class="pf-c-chip">
|
|
423
|
-
<span
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
493
|
+
<span class="pf-c-chip__content">
|
|
494
|
+
<span
|
|
495
|
+
class="pf-c-chip__text"
|
|
496
|
+
id="text-input-group-filters-expanded-chip-group-chip_twelve_select_collapsed"
|
|
497
|
+
>Chip twelve</span>
|
|
498
|
+
</span>
|
|
499
|
+
<span class="pf-c-chip__actions">
|
|
500
|
+
<button
|
|
501
|
+
class="pf-c-button pf-m-plain"
|
|
502
|
+
type="button"
|
|
503
|
+
aria-labelledby="text-input-group-filters-expanded-chip-group-remove_chip_twelve_select_collapsed text-input-group-filters-expanded-chip-group-chip_twelve_select_collapsed"
|
|
504
|
+
aria-label="Remove"
|
|
505
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_twelve_select_collapsed"
|
|
506
|
+
>
|
|
507
|
+
<i class="fas fa-times" aria-hidden="true"></i>
|
|
508
|
+
</button>
|
|
509
|
+
</span>
|
|
436
510
|
</div>
|
|
437
511
|
</li>
|
|
438
512
|
<li class="pf-c-chip-group__list-item">
|
|
439
513
|
<div class="pf-c-chip">
|
|
440
|
-
<span
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
514
|
+
<span class="pf-c-chip__content">
|
|
515
|
+
<span
|
|
516
|
+
class="pf-c-chip__text"
|
|
517
|
+
id="text-input-group-filters-expanded-chip-group-chip_thirteen_select_collapsed"
|
|
518
|
+
>Chip thirteen</span>
|
|
519
|
+
</span>
|
|
520
|
+
<span class="pf-c-chip__actions">
|
|
521
|
+
<button
|
|
522
|
+
class="pf-c-button pf-m-plain"
|
|
523
|
+
type="button"
|
|
524
|
+
aria-labelledby="text-input-group-filters-expanded-chip-group-remove_chip_thirteen_select_collapsed text-input-group-filters-expanded-chip-group-chip_thirteen_select_collapsed"
|
|
525
|
+
aria-label="Remove"
|
|
526
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_thirteen_select_collapsed"
|
|
527
|
+
>
|
|
528
|
+
<i class="fas fa-times" aria-hidden="true"></i>
|
|
529
|
+
</button>
|
|
530
|
+
</span>
|
|
453
531
|
</div>
|
|
454
532
|
</li>
|
|
455
533
|
<li class="pf-c-chip-group__list-item">
|
|
456
534
|
<div class="pf-c-chip">
|
|
457
|
-
<span
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
535
|
+
<span class="pf-c-chip__content">
|
|
536
|
+
<span
|
|
537
|
+
class="pf-c-chip__text"
|
|
538
|
+
id="text-input-group-filters-expanded-chip-group-chip_fourteen_select_collapsed"
|
|
539
|
+
>Chip fourteen</span>
|
|
540
|
+
</span>
|
|
541
|
+
<span class="pf-c-chip__actions">
|
|
542
|
+
<button
|
|
543
|
+
class="pf-c-button pf-m-plain"
|
|
544
|
+
type="button"
|
|
545
|
+
aria-labelledby="text-input-group-filters-expanded-chip-group-remove_chip_fourteen_select_collapsed text-input-group-filters-expanded-chip-group-chip_fourteen_select_collapsed"
|
|
546
|
+
aria-label="Remove"
|
|
547
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_fourteen_select_collapsed"
|
|
548
|
+
>
|
|
549
|
+
<i class="fas fa-times" aria-hidden="true"></i>
|
|
550
|
+
</button>
|
|
551
|
+
</span>
|
|
470
552
|
</div>
|
|
471
553
|
</li>
|
|
472
554
|
</ul>
|