@patternfly/patternfly 4.204.4 → 4.206.0
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/base/_common.scss +9 -0
- package/base/patternfly-common.css +7 -0
- package/components/Tabs/tabs.css +4 -0
- package/components/Tabs/tabs.scss +8 -1
- package/components/Timestamp/timestamp.css +31 -0
- package/components/Timestamp/timestamp.scss +37 -0
- package/components/_all.scss +1 -0
- package/docs/components/AppLauncher/examples/application-launcher.md +69 -22
- package/docs/components/DataList/examples/DataList.md +30 -30
- package/docs/components/DatePicker/examples/DatePicker.md +4 -4
- package/docs/components/LabelGroup/examples/LabelGroup.md +19 -19
- package/docs/components/LogViewer/examples/LogViewer.md +46 -37
- package/docs/components/Masthead/examples/masthead.md +1 -1
- package/docs/components/MultipleFileUpload/examples/MultipleFileUpload.md +54 -27
- package/docs/components/Nav/examples/Navigation.md +12 -6
- package/docs/components/Pagination/examples/Pagination.md +47 -14
- package/docs/components/Popover/examples/Popover.md +36 -24
- package/docs/components/SearchInput/examples/SearchInput.md +12 -12
- package/docs/components/Select/examples/Select.md +8 -8
- package/docs/components/Table/examples/Table.md +1 -1
- package/docs/components/Tabs/examples/Tabs.md +67 -73
- package/docs/components/TextInputGroup/examples/TextInputGroup.md +60 -60
- package/docs/components/Tile/examples/Tile.md +0 -2
- package/docs/components/Timestamp/examples/Timestamp.md +62 -0
- package/docs/demos/AboutModal/examples/AboutModal.md +1 -1
- package/docs/demos/Alert/examples/Alert.md +3 -3
- package/docs/demos/BackToTop/examples/BackToTop.md +1 -1
- package/docs/demos/Banner/examples/Banner.md +2 -2
- package/docs/demos/CardView/examples/CardView.md +1 -1
- package/docs/demos/ContextSelector/examples/ContextSelector.md +3 -3
- package/docs/demos/Dashboard/examples/Dashboard.md +1 -1
- package/docs/demos/DataList/examples/DataList.md +4 -4
- package/docs/demos/DescriptionList/examples/DescriptionList.md +3 -3
- package/docs/demos/Drawer/examples/Drawer.md +5 -5
- package/docs/demos/JumpLinks/examples/JumpLinks.md +6 -6
- package/docs/demos/Masthead/examples/Masthead.md +2 -2
- package/docs/demos/Modal/examples/Modal.md +6 -6
- package/docs/demos/Nav/examples/Nav.md +8 -8
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +5 -5
- package/docs/demos/Page/examples/Page.md +8 -8
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +7 -7
- package/docs/demos/Skeleton/examples/Skeleton.md +1 -1
- package/docs/demos/Table/examples/Table.md +14 -14
- package/docs/demos/Tabs/examples/Tabs.md +8 -8
- package/docs/demos/Toolbar/examples/Toolbar.md +55 -37
- package/docs/demos/Wizard/examples/Wizard.md +8 -8
- package/docs/layouts/Flex/examples/Flex.md +1 -1
- package/docs/layouts/Grid/examples/Grid.md +1 -1
- package/package.json +1 -1
- package/patternfly-base-no-reset.css +7 -0
- package/patternfly-base.css +7 -0
- package/patternfly-no-reset.css +43 -0
- package/patternfly.css +43 -0
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -91,14 +91,14 @@ cssPrefix: pf-c-text-input-group
|
|
|
91
91
|
<div class="pf-c-chip">
|
|
92
92
|
<span
|
|
93
93
|
class="pf-c-chip__text"
|
|
94
|
-
id="-chip-
|
|
94
|
+
id="text-input-group-filters-chip-group-chip_one_select_collapsed"
|
|
95
95
|
>Chip one</span>
|
|
96
96
|
<button
|
|
97
97
|
class="pf-c-button pf-m-plain"
|
|
98
98
|
type="button"
|
|
99
|
-
aria-labelledby="-chip-
|
|
99
|
+
aria-labelledby="text-input-group-filters-chip-group-remove_chip_one_select_collapsed text-input-group-filters-chip-group-chip_one_select_collapsed"
|
|
100
100
|
aria-label="Remove"
|
|
101
|
-
id="-chip-
|
|
101
|
+
id="text-input-group-filters-chip-group-remove_chip_one_select_collapsed"
|
|
102
102
|
>
|
|
103
103
|
<i class="fas fa-times" aria-hidden="true"></i>
|
|
104
104
|
</button>
|
|
@@ -108,14 +108,14 @@ cssPrefix: pf-c-text-input-group
|
|
|
108
108
|
<div class="pf-c-chip">
|
|
109
109
|
<span
|
|
110
110
|
class="pf-c-chip__text"
|
|
111
|
-
id="-chip-
|
|
111
|
+
id="text-input-group-filters-chip-group-chip_two_select_collapsed"
|
|
112
112
|
>Chip two</span>
|
|
113
113
|
<button
|
|
114
114
|
class="pf-c-button pf-m-plain"
|
|
115
115
|
type="button"
|
|
116
|
-
aria-labelledby="-chip-
|
|
116
|
+
aria-labelledby="text-input-group-filters-chip-group-remove_chip_two_select_collapsed text-input-group-filters-chip-group-chip_two_select_collapsed"
|
|
117
117
|
aria-label="Remove"
|
|
118
|
-
id="-chip-
|
|
118
|
+
id="text-input-group-filters-chip-group-remove_chip_two_select_collapsed"
|
|
119
119
|
>
|
|
120
120
|
<i class="fas fa-times" aria-hidden="true"></i>
|
|
121
121
|
</button>
|
|
@@ -125,14 +125,14 @@ cssPrefix: pf-c-text-input-group
|
|
|
125
125
|
<div class="pf-c-chip">
|
|
126
126
|
<span
|
|
127
127
|
class="pf-c-chip__text"
|
|
128
|
-
id="-chip-
|
|
128
|
+
id="text-input-group-filters-chip-group-chip_three_select_collapsed"
|
|
129
129
|
>Chip three</span>
|
|
130
130
|
<button
|
|
131
131
|
class="pf-c-button pf-m-plain"
|
|
132
132
|
type="button"
|
|
133
|
-
aria-labelledby="-chip-
|
|
133
|
+
aria-labelledby="text-input-group-filters-chip-group-remove_chip_three_select_collapsed text-input-group-filters-chip-group-chip_three_select_collapsed"
|
|
134
134
|
aria-label="Remove"
|
|
135
|
-
id="-chip-
|
|
135
|
+
id="text-input-group-filters-chip-group-remove_chip_three_select_collapsed"
|
|
136
136
|
>
|
|
137
137
|
<i class="fas fa-times" aria-hidden="true"></i>
|
|
138
138
|
</button>
|
|
@@ -142,14 +142,14 @@ cssPrefix: pf-c-text-input-group
|
|
|
142
142
|
<div class="pf-c-chip">
|
|
143
143
|
<span
|
|
144
144
|
class="pf-c-chip__text"
|
|
145
|
-
id="-chip-
|
|
145
|
+
id="text-input-group-filters-chip-group-chip_four_select_collapsed"
|
|
146
146
|
>Chip four</span>
|
|
147
147
|
<button
|
|
148
148
|
class="pf-c-button pf-m-plain"
|
|
149
149
|
type="button"
|
|
150
|
-
aria-labelledby="-chip-
|
|
150
|
+
aria-labelledby="text-input-group-filters-chip-group-remove_chip_four_select_collapsed text-input-group-filters-chip-group-chip_four_select_collapsed"
|
|
151
151
|
aria-label="Remove"
|
|
152
|
-
id="-chip-
|
|
152
|
+
id="text-input-group-filters-chip-group-remove_chip_four_select_collapsed"
|
|
153
153
|
>
|
|
154
154
|
<i class="fas fa-times" aria-hidden="true"></i>
|
|
155
155
|
</button>
|
|
@@ -159,14 +159,14 @@ cssPrefix: pf-c-text-input-group
|
|
|
159
159
|
<div class="pf-c-chip">
|
|
160
160
|
<span
|
|
161
161
|
class="pf-c-chip__text"
|
|
162
|
-
id="-chip-
|
|
162
|
+
id="text-input-group-filters-chip-group-chip_five_select_collapsed"
|
|
163
163
|
>Chip five</span>
|
|
164
164
|
<button
|
|
165
165
|
class="pf-c-button pf-m-plain"
|
|
166
166
|
type="button"
|
|
167
|
-
aria-labelledby="-chip-
|
|
167
|
+
aria-labelledby="text-input-group-filters-chip-group-remove_chip_five_select_collapsed text-input-group-filters-chip-group-chip_five_select_collapsed"
|
|
168
168
|
aria-label="Remove"
|
|
169
|
-
id="-chip-
|
|
169
|
+
id="text-input-group-filters-chip-group-remove_chip_five_select_collapsed"
|
|
170
170
|
>
|
|
171
171
|
<i class="fas fa-times" aria-hidden="true"></i>
|
|
172
172
|
</button>
|
|
@@ -176,14 +176,14 @@ cssPrefix: pf-c-text-input-group
|
|
|
176
176
|
<div class="pf-c-chip">
|
|
177
177
|
<span
|
|
178
178
|
class="pf-c-chip__text"
|
|
179
|
-
id="-chip-
|
|
179
|
+
id="text-input-group-filters-chip-group-chip_six_select_collapsed"
|
|
180
180
|
>Chip six</span>
|
|
181
181
|
<button
|
|
182
182
|
class="pf-c-button pf-m-plain"
|
|
183
183
|
type="button"
|
|
184
|
-
aria-labelledby="-chip-
|
|
184
|
+
aria-labelledby="text-input-group-filters-chip-group-remove_chip_six_select_collapsed text-input-group-filters-chip-group-chip_six_select_collapsed"
|
|
185
185
|
aria-label="Remove"
|
|
186
|
-
id="-chip-
|
|
186
|
+
id="text-input-group-filters-chip-group-remove_chip_six_select_collapsed"
|
|
187
187
|
>
|
|
188
188
|
<i class="fas fa-times" aria-hidden="true"></i>
|
|
189
189
|
</button>
|
|
@@ -235,14 +235,14 @@ cssPrefix: pf-c-text-input-group
|
|
|
235
235
|
<div class="pf-c-chip">
|
|
236
236
|
<span
|
|
237
237
|
class="pf-c-chip__text"
|
|
238
|
-
id="-chip-
|
|
238
|
+
id="text-input-group-filters-expanded-chip-group-chip_one_select_collapsed"
|
|
239
239
|
>Chip one</span>
|
|
240
240
|
<button
|
|
241
241
|
class="pf-c-button pf-m-plain"
|
|
242
242
|
type="button"
|
|
243
|
-
aria-labelledby="-chip-
|
|
243
|
+
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"
|
|
244
244
|
aria-label="Remove"
|
|
245
|
-
id="-chip-
|
|
245
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_one_select_collapsed"
|
|
246
246
|
>
|
|
247
247
|
<i class="fas fa-times" aria-hidden="true"></i>
|
|
248
248
|
</button>
|
|
@@ -252,14 +252,14 @@ cssPrefix: pf-c-text-input-group
|
|
|
252
252
|
<div class="pf-c-chip">
|
|
253
253
|
<span
|
|
254
254
|
class="pf-c-chip__text"
|
|
255
|
-
id="-chip-
|
|
255
|
+
id="text-input-group-filters-expanded-chip-group-chip_two_select_collapsed"
|
|
256
256
|
>Chip two</span>
|
|
257
257
|
<button
|
|
258
258
|
class="pf-c-button pf-m-plain"
|
|
259
259
|
type="button"
|
|
260
|
-
aria-labelledby="-chip-
|
|
260
|
+
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"
|
|
261
261
|
aria-label="Remove"
|
|
262
|
-
id="-chip-
|
|
262
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_two_select_collapsed"
|
|
263
263
|
>
|
|
264
264
|
<i class="fas fa-times" aria-hidden="true"></i>
|
|
265
265
|
</button>
|
|
@@ -269,14 +269,14 @@ cssPrefix: pf-c-text-input-group
|
|
|
269
269
|
<div class="pf-c-chip">
|
|
270
270
|
<span
|
|
271
271
|
class="pf-c-chip__text"
|
|
272
|
-
id="-chip-
|
|
272
|
+
id="text-input-group-filters-expanded-chip-group-chip_three_select_collapsed"
|
|
273
273
|
>Chip three</span>
|
|
274
274
|
<button
|
|
275
275
|
class="pf-c-button pf-m-plain"
|
|
276
276
|
type="button"
|
|
277
|
-
aria-labelledby="-chip-
|
|
277
|
+
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"
|
|
278
278
|
aria-label="Remove"
|
|
279
|
-
id="-chip-
|
|
279
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_three_select_collapsed"
|
|
280
280
|
>
|
|
281
281
|
<i class="fas fa-times" aria-hidden="true"></i>
|
|
282
282
|
</button>
|
|
@@ -286,14 +286,14 @@ cssPrefix: pf-c-text-input-group
|
|
|
286
286
|
<div class="pf-c-chip">
|
|
287
287
|
<span
|
|
288
288
|
class="pf-c-chip__text"
|
|
289
|
-
id="-chip-
|
|
289
|
+
id="text-input-group-filters-expanded-chip-group-chip_four_select_collapsed"
|
|
290
290
|
>Chip four</span>
|
|
291
291
|
<button
|
|
292
292
|
class="pf-c-button pf-m-plain"
|
|
293
293
|
type="button"
|
|
294
|
-
aria-labelledby="-chip-
|
|
294
|
+
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"
|
|
295
295
|
aria-label="Remove"
|
|
296
|
-
id="-chip-
|
|
296
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_four_select_collapsed"
|
|
297
297
|
>
|
|
298
298
|
<i class="fas fa-times" aria-hidden="true"></i>
|
|
299
299
|
</button>
|
|
@@ -303,14 +303,14 @@ cssPrefix: pf-c-text-input-group
|
|
|
303
303
|
<div class="pf-c-chip">
|
|
304
304
|
<span
|
|
305
305
|
class="pf-c-chip__text"
|
|
306
|
-
id="-chip-
|
|
306
|
+
id="text-input-group-filters-expanded-chip-group-chip_five_select_collapsed"
|
|
307
307
|
>Chip five</span>
|
|
308
308
|
<button
|
|
309
309
|
class="pf-c-button pf-m-plain"
|
|
310
310
|
type="button"
|
|
311
|
-
aria-labelledby="-chip-
|
|
311
|
+
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"
|
|
312
312
|
aria-label="Remove"
|
|
313
|
-
id="-chip-
|
|
313
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_five_select_collapsed"
|
|
314
314
|
>
|
|
315
315
|
<i class="fas fa-times" aria-hidden="true"></i>
|
|
316
316
|
</button>
|
|
@@ -320,14 +320,14 @@ cssPrefix: pf-c-text-input-group
|
|
|
320
320
|
<div class="pf-c-chip">
|
|
321
321
|
<span
|
|
322
322
|
class="pf-c-chip__text"
|
|
323
|
-
id="-chip-
|
|
323
|
+
id="text-input-group-filters-expanded-chip-group-chip_six_select_collapsed"
|
|
324
324
|
>Chip six</span>
|
|
325
325
|
<button
|
|
326
326
|
class="pf-c-button pf-m-plain"
|
|
327
327
|
type="button"
|
|
328
|
-
aria-labelledby="-chip-
|
|
328
|
+
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"
|
|
329
329
|
aria-label="Remove"
|
|
330
|
-
id="-chip-
|
|
330
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_six_select_collapsed"
|
|
331
331
|
>
|
|
332
332
|
<i class="fas fa-times" aria-hidden="true"></i>
|
|
333
333
|
</button>
|
|
@@ -337,14 +337,14 @@ cssPrefix: pf-c-text-input-group
|
|
|
337
337
|
<div class="pf-c-chip">
|
|
338
338
|
<span
|
|
339
339
|
class="pf-c-chip__text"
|
|
340
|
-
id="-chip-
|
|
340
|
+
id="text-input-group-filters-expanded-chip-group-chip_seven_select_collapsed"
|
|
341
341
|
>Chip seven</span>
|
|
342
342
|
<button
|
|
343
343
|
class="pf-c-button pf-m-plain"
|
|
344
344
|
type="button"
|
|
345
|
-
aria-labelledby="-chip-
|
|
345
|
+
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"
|
|
346
346
|
aria-label="Remove"
|
|
347
|
-
id="-chip-
|
|
347
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_seven_select_collapsed"
|
|
348
348
|
>
|
|
349
349
|
<i class="fas fa-times" aria-hidden="true"></i>
|
|
350
350
|
</button>
|
|
@@ -354,14 +354,14 @@ cssPrefix: pf-c-text-input-group
|
|
|
354
354
|
<div class="pf-c-chip">
|
|
355
355
|
<span
|
|
356
356
|
class="pf-c-chip__text"
|
|
357
|
-
id="-chip-
|
|
357
|
+
id="text-input-group-filters-expanded-chip-group-chip_eight_select_collapsed"
|
|
358
358
|
>Chip eight</span>
|
|
359
359
|
<button
|
|
360
360
|
class="pf-c-button pf-m-plain"
|
|
361
361
|
type="button"
|
|
362
|
-
aria-labelledby="-chip-
|
|
362
|
+
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"
|
|
363
363
|
aria-label="Remove"
|
|
364
|
-
id="-chip-
|
|
364
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_eight_select_collapsed"
|
|
365
365
|
>
|
|
366
366
|
<i class="fas fa-times" aria-hidden="true"></i>
|
|
367
367
|
</button>
|
|
@@ -371,14 +371,14 @@ cssPrefix: pf-c-text-input-group
|
|
|
371
371
|
<div class="pf-c-chip">
|
|
372
372
|
<span
|
|
373
373
|
class="pf-c-chip__text"
|
|
374
|
-
id="-chip-
|
|
374
|
+
id="text-input-group-filters-expanded-chip-group-chip_nine_select_collapsed"
|
|
375
375
|
>Chip nine</span>
|
|
376
376
|
<button
|
|
377
377
|
class="pf-c-button pf-m-plain"
|
|
378
378
|
type="button"
|
|
379
|
-
aria-labelledby="-chip-
|
|
379
|
+
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"
|
|
380
380
|
aria-label="Remove"
|
|
381
|
-
id="-chip-
|
|
381
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_nine_select_collapsed"
|
|
382
382
|
>
|
|
383
383
|
<i class="fas fa-times" aria-hidden="true"></i>
|
|
384
384
|
</button>
|
|
@@ -388,14 +388,14 @@ cssPrefix: pf-c-text-input-group
|
|
|
388
388
|
<div class="pf-c-chip">
|
|
389
389
|
<span
|
|
390
390
|
class="pf-c-chip__text"
|
|
391
|
-
id="-chip-
|
|
391
|
+
id="text-input-group-filters-expanded-chip-group-chip_ten_select_collapsed"
|
|
392
392
|
>Chip ten</span>
|
|
393
393
|
<button
|
|
394
394
|
class="pf-c-button pf-m-plain"
|
|
395
395
|
type="button"
|
|
396
|
-
aria-labelledby="-chip-
|
|
396
|
+
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"
|
|
397
397
|
aria-label="Remove"
|
|
398
|
-
id="-chip-
|
|
398
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_ten_select_collapsed"
|
|
399
399
|
>
|
|
400
400
|
<i class="fas fa-times" aria-hidden="true"></i>
|
|
401
401
|
</button>
|
|
@@ -405,14 +405,14 @@ cssPrefix: pf-c-text-input-group
|
|
|
405
405
|
<div class="pf-c-chip">
|
|
406
406
|
<span
|
|
407
407
|
class="pf-c-chip__text"
|
|
408
|
-
id="-chip-
|
|
408
|
+
id="text-input-group-filters-expanded-chip-group-chip_eleven_select_collapsed"
|
|
409
409
|
>Chip eleven</span>
|
|
410
410
|
<button
|
|
411
411
|
class="pf-c-button pf-m-plain"
|
|
412
412
|
type="button"
|
|
413
|
-
aria-labelledby="-chip-
|
|
413
|
+
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"
|
|
414
414
|
aria-label="Remove"
|
|
415
|
-
id="-chip-
|
|
415
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_eleven_select_collapsed"
|
|
416
416
|
>
|
|
417
417
|
<i class="fas fa-times" aria-hidden="true"></i>
|
|
418
418
|
</button>
|
|
@@ -422,14 +422,14 @@ cssPrefix: pf-c-text-input-group
|
|
|
422
422
|
<div class="pf-c-chip">
|
|
423
423
|
<span
|
|
424
424
|
class="pf-c-chip__text"
|
|
425
|
-
id="-chip-
|
|
425
|
+
id="text-input-group-filters-expanded-chip-group-chip_twelve_select_collapsed"
|
|
426
426
|
>Chip twelve</span>
|
|
427
427
|
<button
|
|
428
428
|
class="pf-c-button pf-m-plain"
|
|
429
429
|
type="button"
|
|
430
|
-
aria-labelledby="-chip-
|
|
430
|
+
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"
|
|
431
431
|
aria-label="Remove"
|
|
432
|
-
id="-chip-
|
|
432
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_twelve_select_collapsed"
|
|
433
433
|
>
|
|
434
434
|
<i class="fas fa-times" aria-hidden="true"></i>
|
|
435
435
|
</button>
|
|
@@ -439,14 +439,14 @@ cssPrefix: pf-c-text-input-group
|
|
|
439
439
|
<div class="pf-c-chip">
|
|
440
440
|
<span
|
|
441
441
|
class="pf-c-chip__text"
|
|
442
|
-
id="-chip-
|
|
442
|
+
id="text-input-group-filters-expanded-chip-group-chip_thirteen_select_collapsed"
|
|
443
443
|
>Chip thirteen</span>
|
|
444
444
|
<button
|
|
445
445
|
class="pf-c-button pf-m-plain"
|
|
446
446
|
type="button"
|
|
447
|
-
aria-labelledby="-chip-
|
|
447
|
+
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"
|
|
448
448
|
aria-label="Remove"
|
|
449
|
-
id="-chip-
|
|
449
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_thirteen_select_collapsed"
|
|
450
450
|
>
|
|
451
451
|
<i class="fas fa-times" aria-hidden="true"></i>
|
|
452
452
|
</button>
|
|
@@ -456,14 +456,14 @@ cssPrefix: pf-c-text-input-group
|
|
|
456
456
|
<div class="pf-c-chip">
|
|
457
457
|
<span
|
|
458
458
|
class="pf-c-chip__text"
|
|
459
|
-
id="-chip-
|
|
459
|
+
id="text-input-group-filters-expanded-chip-group-chip_fourteen_select_collapsed"
|
|
460
460
|
>Chip fourteen</span>
|
|
461
461
|
<button
|
|
462
462
|
class="pf-c-button pf-m-plain"
|
|
463
463
|
type="button"
|
|
464
|
-
aria-labelledby="-chip-
|
|
464
|
+
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"
|
|
465
465
|
aria-label="Remove"
|
|
466
|
-
id="-chip-
|
|
466
|
+
id="text-input-group-filters-expanded-chip-group-remove_chip_fourteen_select_collapsed"
|
|
467
467
|
>
|
|
468
468
|
<i class="fas fa-times" aria-hidden="true"></i>
|
|
469
469
|
</button>
|
|
@@ -293,7 +293,6 @@ cssPrefix: pf-c-tile
|
|
|
293
293
|
version="1.1"
|
|
294
294
|
width="6.65em"
|
|
295
295
|
height="1em"
|
|
296
|
-
id="Logos"
|
|
297
296
|
xmlns="http://www.w3.org/2000/svg"
|
|
298
297
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
299
298
|
x="0px"
|
|
@@ -669,7 +668,6 @@ cssPrefix: pf-c-tile
|
|
|
669
668
|
version="1.1"
|
|
670
669
|
width="6.65em"
|
|
671
670
|
height="1em"
|
|
672
|
-
id="Logos"
|
|
673
671
|
xmlns="http://www.w3.org/2000/svg"
|
|
674
672
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
675
673
|
x="0px"
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: Timestamp
|
|
3
|
+
beta: true
|
|
4
|
+
section: components
|
|
5
|
+
cssPrefix: pf-c-timestamp
|
|
6
|
+
---## Examples
|
|
7
|
+
|
|
8
|
+
### Basic
|
|
9
|
+
|
|
10
|
+
```html
|
|
11
|
+
<span class="pf-c-timestamp">
|
|
12
|
+
<time
|
|
13
|
+
class="pf-c-timestamp__text"
|
|
14
|
+
datetime="2019-01-21T21:38"
|
|
15
|
+
>Thursday, 21 January 2019, 9:38 PM EST</time>
|
|
16
|
+
</span>
|
|
17
|
+
|
|
18
|
+
<br />
|
|
19
|
+
<br />
|
|
20
|
+
|
|
21
|
+
<span class="pf-c-timestamp">
|
|
22
|
+
<time
|
|
23
|
+
class="pf-c-timestamp__text"
|
|
24
|
+
datetime="2019-01-21T21:38"
|
|
25
|
+
>21 January 2019, 9:38 PM EST</time>
|
|
26
|
+
</span>
|
|
27
|
+
|
|
28
|
+
<br />
|
|
29
|
+
<br />
|
|
30
|
+
|
|
31
|
+
<span class="pf-c-timestamp">
|
|
32
|
+
<time
|
|
33
|
+
class="pf-c-timestamp__text"
|
|
34
|
+
datetime="2019-01-21T21:38"
|
|
35
|
+
>21 Jan. 2019, 9:38 PM EST</time>
|
|
36
|
+
</span>
|
|
37
|
+
|
|
38
|
+
<br />
|
|
39
|
+
<br />
|
|
40
|
+
|
|
41
|
+
<span class="pf-c-timestamp">
|
|
42
|
+
<time class="pf-c-timestamp__text" datetime="2022-07-15T10:00">1 hour ago</time>
|
|
43
|
+
</span>
|
|
44
|
+
|
|
45
|
+
<br />
|
|
46
|
+
<br />
|
|
47
|
+
|
|
48
|
+
<span class="pf-c-timestamp">
|
|
49
|
+
<time class="pf-c-timestamp__text" datetime="2022-07-21">Tomorrow</time>
|
|
50
|
+
</span>
|
|
51
|
+
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
## Documentation
|
|
55
|
+
|
|
56
|
+
### Usage
|
|
57
|
+
|
|
58
|
+
| Class | Applied to | Outcome |
|
|
59
|
+
| ----------------------- | ----------------- | ------------------------------------------------------ |
|
|
60
|
+
| `.pf-c-timestamp` | `<span>` | Creates a timestamp. **Required** |
|
|
61
|
+
| `.pf-c-timestamp__text` | `<time>` | Creates the visual text of the timestamp. **Required** |
|
|
62
|
+
| `.pf-m-help-text` | `.pf-c-timestamp` | Modifies styling for a timestamp that has help text. |
|
|
@@ -74,7 +74,7 @@ This demo implements the about modal, including the backdrop.
|
|
|
74
74
|
<button
|
|
75
75
|
class="pf-c-app-launcher__toggle"
|
|
76
76
|
type="button"
|
|
77
|
-
id="modal-basic-example-masthead-
|
|
77
|
+
id="modal-basic-example-masthead-application-launcher-button"
|
|
78
78
|
aria-expanded="false"
|
|
79
79
|
aria-label="Application launcher"
|
|
80
80
|
>
|
|
@@ -72,7 +72,7 @@ section: components
|
|
|
72
72
|
<button
|
|
73
73
|
class="pf-c-app-launcher__toggle"
|
|
74
74
|
type="button"
|
|
75
|
-
id="alert-basic-example-masthead-
|
|
75
|
+
id="alert-basic-example-masthead-application-launcher-button"
|
|
76
76
|
aria-expanded="false"
|
|
77
77
|
aria-label="Application launcher"
|
|
78
78
|
>
|
|
@@ -1065,7 +1065,7 @@ section: components
|
|
|
1065
1065
|
<button
|
|
1066
1066
|
class="pf-c-app-launcher__toggle"
|
|
1067
1067
|
type="button"
|
|
1068
|
-
id="alert-horizontal-example-masthead-
|
|
1068
|
+
id="alert-horizontal-example-masthead-application-launcher-button"
|
|
1069
1069
|
aria-expanded="false"
|
|
1070
1070
|
aria-label="Application launcher"
|
|
1071
1071
|
>
|
|
@@ -2108,7 +2108,7 @@ section: components
|
|
|
2108
2108
|
<button
|
|
2109
2109
|
class="pf-c-app-launcher__toggle"
|
|
2110
2110
|
type="button"
|
|
2111
|
-
id="alert-stacked-example-masthead-
|
|
2111
|
+
id="alert-stacked-example-masthead-application-launcher-button"
|
|
2112
2112
|
aria-expanded="false"
|
|
2113
2113
|
aria-label="Application launcher"
|
|
2114
2114
|
>
|
|
@@ -73,7 +73,7 @@ cssPrefix: pf-d-back-to-top
|
|
|
73
73
|
<button
|
|
74
74
|
class="pf-c-app-launcher__toggle"
|
|
75
75
|
type="button"
|
|
76
|
-
id="back-to-top-basic-example-masthead-
|
|
76
|
+
id="back-to-top-basic-example-masthead-application-launcher-button"
|
|
77
77
|
aria-expanded="false"
|
|
78
78
|
aria-label="Application launcher"
|
|
79
79
|
>
|
|
@@ -75,7 +75,7 @@ wrapperTag: div
|
|
|
75
75
|
<button
|
|
76
76
|
class="pf-c-app-launcher__toggle"
|
|
77
77
|
type="button"
|
|
78
|
-
id="banner-basic-example-masthead-
|
|
78
|
+
id="banner-basic-example-masthead-application-launcher-button"
|
|
79
79
|
aria-expanded="false"
|
|
80
80
|
aria-label="Application launcher"
|
|
81
81
|
>
|
|
@@ -1151,7 +1151,7 @@ wrapperTag: div
|
|
|
1151
1151
|
<button
|
|
1152
1152
|
class="pf-c-app-launcher__toggle"
|
|
1153
1153
|
type="button"
|
|
1154
|
-
id="banner-top-bottom-example-masthead-
|
|
1154
|
+
id="banner-top-bottom-example-masthead-application-launcher-button"
|
|
1155
1155
|
aria-expanded="false"
|
|
1156
1156
|
aria-label="Application launcher"
|
|
1157
1157
|
>
|
|
@@ -72,7 +72,7 @@ section: demos
|
|
|
72
72
|
<button
|
|
73
73
|
class="pf-c-app-launcher__toggle"
|
|
74
74
|
type="button"
|
|
75
|
-
id="card-view-basic-example-masthead-
|
|
75
|
+
id="card-view-basic-example-masthead-application-launcher-button"
|
|
76
76
|
aria-expanded="false"
|
|
77
77
|
aria-label="Application launcher"
|
|
78
78
|
>
|
|
@@ -373,7 +373,7 @@ section: components
|
|
|
373
373
|
<button
|
|
374
374
|
class="pf-c-app-launcher__toggle"
|
|
375
375
|
type="button"
|
|
376
|
-
id="context-selector-in-sidebar-example-masthead-
|
|
376
|
+
id="context-selector-in-sidebar-example-masthead-application-launcher-button"
|
|
377
377
|
aria-expanded="false"
|
|
378
378
|
aria-label="Application launcher"
|
|
379
379
|
>
|
|
@@ -1422,7 +1422,7 @@ section: components
|
|
|
1422
1422
|
<button
|
|
1423
1423
|
class="pf-c-app-launcher__toggle"
|
|
1424
1424
|
type="button"
|
|
1425
|
-
id="context-selector-in-sidebar-expanded-example-masthead-
|
|
1425
|
+
id="context-selector-in-sidebar-expanded-example-masthead-application-launcher-button"
|
|
1426
1426
|
aria-expanded="false"
|
|
1427
1427
|
aria-label="Application launcher"
|
|
1428
1428
|
>
|
|
@@ -2473,7 +2473,7 @@ section: components
|
|
|
2473
2473
|
<button
|
|
2474
2474
|
class="pf-c-app-launcher__toggle"
|
|
2475
2475
|
type="button"
|
|
2476
|
-
id="context-selector-in-page-content-example-masthead-
|
|
2476
|
+
id="context-selector-in-page-content-example-masthead-application-launcher-button"
|
|
2477
2477
|
aria-expanded="false"
|
|
2478
2478
|
aria-label="Application launcher"
|
|
2479
2479
|
>
|
|
@@ -74,7 +74,7 @@ cssPrefix: pf-d-dashboard
|
|
|
74
74
|
<button
|
|
75
75
|
class="pf-c-app-launcher__toggle"
|
|
76
76
|
type="button"
|
|
77
|
-
id="dashboard-demo-masthead-
|
|
77
|
+
id="dashboard-demo-masthead-application-launcher-button"
|
|
78
78
|
aria-expanded="false"
|
|
79
79
|
aria-label="Application launcher"
|
|
80
80
|
>
|
|
@@ -73,7 +73,7 @@ wrapperTag: div
|
|
|
73
73
|
<button
|
|
74
74
|
class="pf-c-app-launcher__toggle"
|
|
75
75
|
type="button"
|
|
76
|
-
id="data-list-basic-example-masthead-
|
|
76
|
+
id="data-list-basic-example-masthead-application-launcher-button"
|
|
77
77
|
aria-expanded="false"
|
|
78
78
|
aria-label="Application launcher"
|
|
79
79
|
>
|
|
@@ -1597,7 +1597,7 @@ wrapperTag: div
|
|
|
1597
1597
|
<button
|
|
1598
1598
|
class="pf-c-app-launcher__toggle"
|
|
1599
1599
|
type="button"
|
|
1600
|
-
id="data-list-actionable-example-masthead-
|
|
1600
|
+
id="data-list-actionable-example-masthead-application-launcher-button"
|
|
1601
1601
|
aria-expanded="false"
|
|
1602
1602
|
aria-label="Application launcher"
|
|
1603
1603
|
>
|
|
@@ -3099,7 +3099,7 @@ wrapperTag: div
|
|
|
3099
3099
|
<button
|
|
3100
3100
|
class="pf-c-app-launcher__toggle"
|
|
3101
3101
|
type="button"
|
|
3102
|
-
id="data-list-expandable-example-masthead-
|
|
3102
|
+
id="data-list-expandable-example-masthead-application-launcher-button"
|
|
3103
3103
|
aria-expanded="false"
|
|
3104
3104
|
aria-label="Application launcher"
|
|
3105
3105
|
>
|
|
@@ -5209,7 +5209,7 @@ wrapperTag: div
|
|
|
5209
5209
|
<button
|
|
5210
5210
|
class="pf-c-app-launcher__toggle"
|
|
5211
5211
|
type="button"
|
|
5212
|
-
id="data-list-static-bottom-example-masthead-
|
|
5212
|
+
id="data-list-static-bottom-example-masthead-application-launcher-button"
|
|
5213
5213
|
aria-expanded="false"
|
|
5214
5214
|
aria-label="Application launcher"
|
|
5215
5215
|
>
|
|
@@ -74,7 +74,7 @@ cssPrefix: pf-d-description-list
|
|
|
74
74
|
<button
|
|
75
75
|
class="pf-c-app-launcher__toggle"
|
|
76
76
|
type="button"
|
|
77
|
-
id="description-list-basic-example-masthead-
|
|
77
|
+
id="description-list-basic-example-masthead-application-launcher-button"
|
|
78
78
|
aria-expanded="false"
|
|
79
79
|
aria-label="Application launcher"
|
|
80
80
|
>
|
|
@@ -1057,7 +1057,7 @@ cssPrefix: pf-d-description-list
|
|
|
1057
1057
|
<button
|
|
1058
1058
|
class="pf-c-app-launcher__toggle"
|
|
1059
1059
|
type="button"
|
|
1060
|
-
id="description-list-in-drawer-example-masthead-
|
|
1060
|
+
id="description-list-in-drawer-example-masthead-application-launcher-button"
|
|
1061
1061
|
aria-expanded="false"
|
|
1062
1062
|
aria-label="Application launcher"
|
|
1063
1063
|
>
|
|
@@ -2323,7 +2323,7 @@ cssPrefix: pf-d-description-list
|
|
|
2323
2323
|
<button
|
|
2324
2324
|
class="pf-c-app-launcher__toggle"
|
|
2325
2325
|
type="button"
|
|
2326
|
-
id="description-list-complex-content-example-masthead-
|
|
2326
|
+
id="description-list-complex-content-example-masthead-application-launcher-button"
|
|
2327
2327
|
aria-expanded="false"
|
|
2328
2328
|
aria-label="Application launcher"
|
|
2329
2329
|
>
|