@patternfly/patternfly 4.205.1 → 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.
Files changed (49) hide show
  1. package/base/_common.scss +9 -0
  2. package/base/patternfly-common.css +7 -0
  3. package/docs/components/AppLauncher/examples/application-launcher.md +69 -22
  4. package/docs/components/DataList/examples/DataList.md +30 -30
  5. package/docs/components/DatePicker/examples/DatePicker.md +4 -4
  6. package/docs/components/LabelGroup/examples/LabelGroup.md +19 -19
  7. package/docs/components/LogViewer/examples/LogViewer.md +46 -37
  8. package/docs/components/Masthead/examples/masthead.md +1 -1
  9. package/docs/components/MultipleFileUpload/examples/MultipleFileUpload.md +54 -27
  10. package/docs/components/Nav/examples/Navigation.md +12 -6
  11. package/docs/components/Pagination/examples/Pagination.md +47 -14
  12. package/docs/components/Popover/examples/Popover.md +36 -24
  13. package/docs/components/SearchInput/examples/SearchInput.md +12 -12
  14. package/docs/components/Select/examples/Select.md +8 -8
  15. package/docs/components/Table/examples/Table.md +1 -1
  16. package/docs/components/Tabs/examples/Tabs.md +64 -70
  17. package/docs/components/TextInputGroup/examples/TextInputGroup.md +60 -60
  18. package/docs/components/Tile/examples/Tile.md +0 -2
  19. package/docs/demos/AboutModal/examples/AboutModal.md +1 -1
  20. package/docs/demos/Alert/examples/Alert.md +3 -3
  21. package/docs/demos/BackToTop/examples/BackToTop.md +1 -1
  22. package/docs/demos/Banner/examples/Banner.md +2 -2
  23. package/docs/demos/CardView/examples/CardView.md +1 -1
  24. package/docs/demos/ContextSelector/examples/ContextSelector.md +3 -3
  25. package/docs/demos/Dashboard/examples/Dashboard.md +1 -1
  26. package/docs/demos/DataList/examples/DataList.md +4 -4
  27. package/docs/demos/DescriptionList/examples/DescriptionList.md +3 -3
  28. package/docs/demos/Drawer/examples/Drawer.md +5 -5
  29. package/docs/demos/JumpLinks/examples/JumpLinks.md +6 -6
  30. package/docs/demos/Masthead/examples/Masthead.md +2 -2
  31. package/docs/demos/Modal/examples/Modal.md +6 -6
  32. package/docs/demos/Nav/examples/Nav.md +8 -8
  33. package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +5 -5
  34. package/docs/demos/Page/examples/Page.md +8 -8
  35. package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +7 -7
  36. package/docs/demos/Skeleton/examples/Skeleton.md +1 -1
  37. package/docs/demos/Table/examples/Table.md +14 -14
  38. package/docs/demos/Tabs/examples/Tabs.md +8 -8
  39. package/docs/demos/Toolbar/examples/Toolbar.md +55 -37
  40. package/docs/demos/Wizard/examples/Wizard.md +8 -8
  41. package/docs/layouts/Flex/examples/Flex.md +1 -1
  42. package/docs/layouts/Grid/examples/Grid.md +1 -1
  43. package/package.json +1 -1
  44. package/patternfly-base-no-reset.css +7 -0
  45. package/patternfly-base.css +7 -0
  46. package/patternfly-no-reset.css +7 -0
  47. package/patternfly.css +7 -0
  48. package/patternfly.min.css +1 -1
  49. package/patternfly.min.css.map +1 -1
package/base/_common.scss CHANGED
@@ -22,6 +22,15 @@
22
22
 
23
23
  .pf-screen-reader {
24
24
  @include pf-u-screen-reader; // for use with assistive technologies
25
+
26
+ &.pf-m-full-size {
27
+ width: 100%;
28
+ height: 100%;
29
+ }
30
+
31
+ &.pf-m-absolute {
32
+ position: absolute;
33
+ }
25
34
  }
26
35
 
27
36
  .pf-m-tabular-nums {
@@ -17,6 +17,13 @@ html {
17
17
  white-space: nowrap;
18
18
  border: 0;
19
19
  }
20
+ .pf-screen-reader.pf-m-full-size {
21
+ width: 100%;
22
+ height: 100%;
23
+ }
24
+ .pf-screen-reader.pf-m-absolute {
25
+ position: absolute;
26
+ }
20
27
 
21
28
  .pf-m-tabular-nums {
22
29
  font-variant-numeric: tabular-nums;
@@ -9,17 +9,25 @@ cssPrefix: pf-c-app-launcher
9
9
  ### Collapsed
10
10
 
11
11
  ```html
12
- <nav class="pf-c-app-launcher" aria-label="Application launcher">
12
+ <nav
13
+ class="pf-c-app-launcher"
14
+ aria-label="Application launcher"
15
+ id="application-launcher-collapsed"
16
+ >
13
17
  <button
14
18
  class="pf-c-app-launcher__toggle"
15
19
  type="button"
16
- id="-button"
20
+ id="application-launcher-collapsed-button"
17
21
  aria-expanded="false"
18
22
  aria-label="Application launcher"
19
23
  >
20
24
  <i class="fas fa-th" aria-hidden="true"></i>
21
25
  </button>
22
- <ul class="pf-c-app-launcher__menu" aria-labelledby="-button" hidden>
26
+ <ul
27
+ class="pf-c-app-launcher__menu"
28
+ aria-labelledby="application-launcher-collapsed-button"
29
+ hidden
30
+ >
23
31
  <li>
24
32
  <a class="pf-c-app-launcher__menu-item" href="#">Link</a>
25
33
  </li>
@@ -43,18 +51,26 @@ cssPrefix: pf-c-app-launcher
43
51
  ### Disabled
44
52
 
45
53
  ```html
46
- <nav class="pf-c-app-launcher" aria-label="Application launcher">
54
+ <nav
55
+ class="pf-c-app-launcher"
56
+ aria-label="Application launcher"
57
+ id="application-launcher-disabled"
58
+ >
47
59
  <button
48
60
  class="pf-c-app-launcher__toggle"
49
61
  type="button"
50
- id="-button"
62
+ id="application-launcher-disabled-button"
51
63
  aria-expanded="false"
52
64
  aria-label="Application launcher"
53
65
  disabled
54
66
  >
55
67
  <i class="fas fa-th" aria-hidden="true"></i>
56
68
  </button>
57
- <ul class="pf-c-app-launcher__menu" aria-labelledby="-button" hidden>
69
+ <ul
70
+ class="pf-c-app-launcher__menu"
71
+ aria-labelledby="application-launcher-disabled-button"
72
+ hidden
73
+ >
58
74
  <li>
59
75
  <a class="pf-c-app-launcher__menu-item" href="#">Link</a>
60
76
  </li>
@@ -78,17 +94,24 @@ cssPrefix: pf-c-app-launcher
78
94
  ### Expanded
79
95
 
80
96
  ```html
81
- <nav class="pf-c-app-launcher pf-m-expanded" aria-label="Application launcher">
97
+ <nav
98
+ class="pf-c-app-launcher pf-m-expanded"
99
+ aria-label="Application launcher"
100
+ id="application-launcher-expanded"
101
+ >
82
102
  <button
83
103
  class="pf-c-app-launcher__toggle"
84
104
  type="button"
85
- id="-button"
105
+ id="application-launcher-expanded-button"
86
106
  aria-expanded="true"
87
107
  aria-label="Application launcher"
88
108
  >
89
109
  <i class="fas fa-th" aria-hidden="true"></i>
90
110
  </button>
91
- <ul class="pf-c-app-launcher__menu" aria-labelledby="-button">
111
+ <ul
112
+ class="pf-c-app-launcher__menu"
113
+ aria-labelledby="application-launcher-expanded-button"
114
+ >
92
115
  <li>
93
116
  <a class="pf-c-app-launcher__menu-item" href="#">Link</a>
94
117
  </li>
@@ -112,11 +135,15 @@ cssPrefix: pf-c-app-launcher
112
135
  ### Aligned right
113
136
 
114
137
  ```html
115
- <nav class="pf-c-app-launcher pf-m-expanded" aria-label="Application launcher">
138
+ <nav
139
+ class="pf-c-app-launcher pf-m-expanded"
140
+ aria-label="Application launcher"
141
+ id="application-launcher-aligned-right"
142
+ >
116
143
  <button
117
144
  class="pf-c-app-launcher__toggle"
118
145
  type="button"
119
- id="-button"
146
+ id="application-launcher-aligned-right-button"
120
147
  aria-expanded="true"
121
148
  aria-label="Application launcher"
122
149
  >
@@ -124,7 +151,7 @@ cssPrefix: pf-c-app-launcher
124
151
  </button>
125
152
  <ul
126
153
  class="pf-c-app-launcher__menu pf-m-align-right"
127
- aria-labelledby="-button"
154
+ aria-labelledby="application-launcher-aligned-right-button"
128
155
  >
129
156
  <li>
130
157
  <a class="pf-c-app-launcher__menu-item" href="#">Link</a>
@@ -152,17 +179,21 @@ cssPrefix: pf-c-app-launcher
152
179
  <nav
153
180
  class="pf-c-app-launcher pf-m-expanded pf-m-top"
154
181
  aria-label="Application launcher"
182
+ id="application-launcher-aligned-top"
155
183
  >
156
184
  <button
157
185
  class="pf-c-app-launcher__toggle"
158
186
  type="button"
159
- id="-button"
187
+ id="application-launcher-aligned-top-button"
160
188
  aria-expanded="true"
161
189
  aria-label="Application launcher"
162
190
  >
163
191
  <i class="fas fa-th" aria-hidden="true"></i>
164
192
  </button>
165
- <ul class="pf-c-app-launcher__menu" aria-labelledby="-button">
193
+ <ul
194
+ class="pf-c-app-launcher__menu"
195
+ aria-labelledby="application-launcher-aligned-top-button"
196
+ >
166
197
  <li>
167
198
  <a class="pf-c-app-launcher__menu-item" href="#">Link</a>
168
199
  </li>
@@ -186,11 +217,15 @@ cssPrefix: pf-c-app-launcher
186
217
  ### With sections and dividers between sections
187
218
 
188
219
  ```html
189
- <nav class="pf-c-app-launcher pf-m-expanded" aria-label="Application launcher">
220
+ <nav
221
+ class="pf-c-app-launcher pf-m-expanded"
222
+ aria-label="Application launcher"
223
+ id="application-launcher-divided-sections"
224
+ >
190
225
  <button
191
226
  class="pf-c-app-launcher__toggle"
192
227
  type="button"
193
- id="-button"
228
+ id="application-launcher-divided-sections-button"
194
229
  aria-expanded="true"
195
230
  aria-label="Application launcher"
196
231
  >
@@ -236,11 +271,15 @@ cssPrefix: pf-c-app-launcher
236
271
  ### With sections and dividers between items
237
272
 
238
273
  ```html
239
- <nav class="pf-c-app-launcher pf-m-expanded" aria-label="Application launcher">
274
+ <nav
275
+ class="pf-c-app-launcher pf-m-expanded"
276
+ aria-label="Application launcher"
277
+ id="application-launcher-divided-items"
278
+ >
240
279
  <button
241
280
  class="pf-c-app-launcher__toggle"
242
281
  type="button"
243
- id="-button"
282
+ id="application-launcher-divided-items-button"
244
283
  aria-expanded="true"
245
284
  aria-label="Application launcher"
246
285
  >
@@ -286,11 +325,15 @@ cssPrefix: pf-c-app-launcher
286
325
  ### With sections, dividers, icons, and external links
287
326
 
288
327
  ```html
289
- <nav class="pf-c-app-launcher pf-m-expanded" aria-label="Application launcher">
328
+ <nav
329
+ class="pf-c-app-launcher pf-m-expanded"
330
+ aria-label="Application launcher"
331
+ id="application-launcher-sections-dividers-icons-links"
332
+ >
290
333
  <button
291
334
  class="pf-c-app-launcher__toggle"
292
335
  type="button"
293
- id="-button"
336
+ id="application-launcher-sections-dividers-icons-links-button"
294
337
  aria-expanded="true"
295
338
  aria-label="Application launcher"
296
339
  >
@@ -401,11 +444,15 @@ cssPrefix: pf-c-app-launcher
401
444
  ### Favorites
402
445
 
403
446
  ```html
404
- <nav class="pf-c-app-launcher pf-m-expanded" aria-label="Application launcher">
447
+ <nav
448
+ class="pf-c-app-launcher pf-m-expanded"
449
+ aria-label="Application launcher"
450
+ id="app-launcher-favorites"
451
+ >
405
452
  <button
406
453
  class="pf-c-app-launcher__toggle"
407
454
  type="button"
408
- id="-button"
455
+ id="app-launcher-favorites-button"
409
456
  aria-expanded="true"
410
457
  aria-label="Application launcher"
411
458
  >
@@ -478,7 +478,7 @@ When a list item includes more than one block of content, it can be difficult fo
478
478
  <section
479
479
  class="pf-c-data-list__expandable-content"
480
480
  id="data-list-expandable-content1"
481
- aria-label="Primary content details"
481
+ aria-label="data-list-expandable Primary content details"
482
482
  >
483
483
  <div
484
484
  class="pf-c-data-list__expandable-content-body"
@@ -684,11 +684,11 @@ When a list item includes more than one block of content, it can be difficult fo
684
684
  class="pf-c-data-list pf-m-compact"
685
685
  role="list"
686
686
  aria-label="Expandable data list example"
687
- id="data-list-expandable"
687
+ id="data-list-expandable-compact"
688
688
  >
689
689
  <li
690
690
  class="pf-c-data-list__item pf-m-expanded"
691
- aria-labelledby="data-list-expandable-item-1"
691
+ aria-labelledby="data-list-expandable-compact-item-1"
692
692
  >
693
693
  <div class="pf-c-data-list__item-row">
694
694
  <div class="pf-c-data-list__item-control">
@@ -696,11 +696,11 @@ When a list item includes more than one block of content, it can be difficult fo
696
696
  <button
697
697
  class="pf-c-button pf-m-plain"
698
698
  type="button"
699
- aria-labelledby="data-list-expandable-toggle1 data-list-expandable-item1"
700
- id="data-list-expandable-toggle1"
699
+ aria-labelledby="data-list-expandable-compact-toggle1 data-list-expandable-compact-item1"
700
+ id="data-list-expandable-compact-toggle1"
701
701
  aria-label="Toggle details for"
702
702
  aria-expanded="true"
703
- aria-controls="data-list-expandable-content1"
703
+ aria-controls="data-list-expandable-compact-content1"
704
704
  >
705
705
  <div class="pf-c-data-list__toggle-icon">
706
706
  <i class="fas fa-angle-right" aria-hidden="true"></i>
@@ -713,7 +713,7 @@ When a list item includes more than one block of content, it can be difficult fo
713
713
  <i class="fas fa-code-branch" aria-hidden="true"></i>
714
714
  </div>
715
715
  <div class="pf-c-data-list__cell">
716
- <div id="data-list-expandable-item-1">Primary content</div>
716
+ <div id="data-list-expandable-compact-item-1">Primary content</div>
717
717
  <span>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span>
718
718
  <a href="#">link</a>
719
719
  </div>
@@ -729,7 +729,7 @@ When a list item includes more than one block of content, it can be difficult fo
729
729
  <div class="pf-c-dropdown">
730
730
  <button
731
731
  class="pf-c-dropdown__toggle pf-m-plain"
732
- id="data-list-expandable-item-1-dropdown-kebab-button"
732
+ id="data-list-expandable-compact-item-1-dropdown-kebab-button"
733
733
  aria-expanded="false"
734
734
  type="button"
735
735
  aria-label="Actions"
@@ -738,7 +738,7 @@ When a list item includes more than one block of content, it can be difficult fo
738
738
  </button>
739
739
  <ul
740
740
  class="pf-c-dropdown__menu pf-m-align-right"
741
- aria-labelledby="data-list-expandable-item-1-dropdown-kebab-button"
741
+ aria-labelledby="data-list-expandable-compact-item-1-dropdown-kebab-button"
742
742
  hidden
743
743
  >
744
744
  <li>
@@ -773,8 +773,8 @@ When a list item includes more than one block of content, it can be difficult fo
773
773
  </div>
774
774
  <section
775
775
  class="pf-c-data-list__expandable-content"
776
- id="data-list-expandable-content1"
777
- aria-label="Primary content details"
776
+ id="data-list-expandable-compact-content1"
777
+ aria-label="data-list-expandable-compact Primary content details"
778
778
  >
779
779
  <div
780
780
  class="pf-c-data-list__expandable-content-body"
@@ -784,7 +784,7 @@ When a list item includes more than one block of content, it can be difficult fo
784
784
 
785
785
  <li
786
786
  class="pf-c-data-list__item"
787
- aria-labelledby="data-list-expandable-item-2"
787
+ aria-labelledby="data-list-expandable-compact-item-2"
788
788
  >
789
789
  <div class="pf-c-data-list__item-row">
790
790
  <div class="pf-c-data-list__item-control">
@@ -792,11 +792,11 @@ When a list item includes more than one block of content, it can be difficult fo
792
792
  <button
793
793
  class="pf-c-button pf-m-plain"
794
794
  type="button"
795
- aria-labelledby="data-list-expandable-toggle2 data-list-expandable-item2"
796
- id="data-list-expandable-toggle2"
795
+ aria-labelledby="data-list-expandable-compact-toggle2 data-list-expandable-compact-item2"
796
+ id="data-list-expandable-compact-toggle2"
797
797
  aria-label="Toggle details for"
798
798
  aria-expanded="false"
799
- aria-controls="data-list-expandable-content2"
799
+ aria-controls="data-list-expandable-compact-content2"
800
800
  >
801
801
  <div class="pf-c-data-list__toggle-icon">
802
802
  <i class="fas fa-angle-right" aria-hidden="true"></i>
@@ -809,7 +809,7 @@ When a list item includes more than one block of content, it can be difficult fo
809
809
  <i class="fas fa-code-branch" aria-hidden="true"></i>
810
810
  </div>
811
811
  <div class="pf-c-data-list__cell">
812
- <span id="data-list-expandable-item-2">Secondary content</span>
812
+ <span id="data-list-expandable-compact-item-2">Secondary content</span>
813
813
  <span>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span>
814
814
  </div>
815
815
  <div class="pf-c-data-list__cell">
@@ -824,7 +824,7 @@ When a list item includes more than one block of content, it can be difficult fo
824
824
  <div class="pf-c-dropdown">
825
825
  <button
826
826
  class="pf-c-dropdown__toggle pf-m-plain"
827
- id="data-list-expandable-item-2-dropdown-kebab-button"
827
+ id="data-list-expandable-compact-item-2-dropdown-kebab-button"
828
828
  aria-expanded="false"
829
829
  type="button"
830
830
  aria-label="Actions"
@@ -833,7 +833,7 @@ When a list item includes more than one block of content, it can be difficult fo
833
833
  </button>
834
834
  <ul
835
835
  class="pf-c-dropdown__menu pf-m-align-right"
836
- aria-labelledby="data-list-expandable-item-2-dropdown-kebab-button"
836
+ aria-labelledby="data-list-expandable-compact-item-2-dropdown-kebab-button"
837
837
  hidden
838
838
  >
839
839
  <li>
@@ -868,7 +868,7 @@ When a list item includes more than one block of content, it can be difficult fo
868
868
  </div>
869
869
  <section
870
870
  class="pf-c-data-list__expandable-content"
871
- id="data-list-expandable-content2"
871
+ id="data-list-expandable-compact-content2"
872
872
  aria-label="Secondary content details"
873
873
  hidden
874
874
  >
@@ -880,7 +880,7 @@ When a list item includes more than one block of content, it can be difficult fo
880
880
 
881
881
  <li
882
882
  class="pf-c-data-list__item pf-m-expanded"
883
- aria-labelledby="data-list-expandable-item-3"
883
+ aria-labelledby="data-list-expandable-compact-item-3"
884
884
  >
885
885
  <div class="pf-c-data-list__item-row">
886
886
  <div class="pf-c-data-list__item-control">
@@ -888,11 +888,11 @@ When a list item includes more than one block of content, it can be difficult fo
888
888
  <button
889
889
  class="pf-c-button pf-m-plain"
890
890
  type="button"
891
- aria-labelledby="data-list-expandable-toggle3 data-list-expandable-item3"
892
- id="data-list-expandable-toggle3"
891
+ aria-labelledby="data-list-expandable-compact-toggle3 data-list-expandable-compact-item3"
892
+ id="data-list-expandable-compact-toggle3"
893
893
  aria-label="Toggle details for"
894
894
  aria-expanded="true"
895
- aria-controls="data-list-expandable-content3"
895
+ aria-controls="data-list-expandable-compact-content3"
896
896
  >
897
897
  <div class="pf-c-data-list__toggle-icon">
898
898
  <i class="fas fa-angle-right" aria-hidden="true"></i>
@@ -905,7 +905,7 @@ When a list item includes more than one block of content, it can be difficult fo
905
905
  <i class="fas fa-code-branch" aria-hidden="true"></i>
906
906
  </div>
907
907
  <div class="pf-c-data-list__cell">
908
- <span id="data-list-expandable-item-3">Tertiary content</span>
908
+ <span id="data-list-expandable-compact-item-3">Tertiary content</span>
909
909
  <span>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span>
910
910
  </div>
911
911
  <div class="pf-c-data-list__cell">
@@ -920,7 +920,7 @@ When a list item includes more than one block of content, it can be difficult fo
920
920
  <div class="pf-c-dropdown">
921
921
  <button
922
922
  class="pf-c-dropdown__toggle pf-m-plain"
923
- id="data-list-expandable-item-3-dropdown-kebab-button"
923
+ id="data-list-expandable-compact-item-3-dropdown-kebab-button"
924
924
  aria-expanded="false"
925
925
  type="button"
926
926
  aria-label="Actions"
@@ -929,7 +929,7 @@ When a list item includes more than one block of content, it can be difficult fo
929
929
  </button>
930
930
  <ul
931
931
  class="pf-c-dropdown__menu pf-m-align-right"
932
- aria-labelledby="data-list-expandable-item-3-dropdown-kebab-button"
932
+ aria-labelledby="data-list-expandable-compact-item-3-dropdown-kebab-button"
933
933
  hidden
934
934
  >
935
935
  <li>
@@ -964,7 +964,7 @@ When a list item includes more than one block of content, it can be difficult fo
964
964
  </div>
965
965
  <section
966
966
  class="pf-c-data-list__expandable-content"
967
- id="data-list-expandable-content3"
967
+ id="data-list-expandable-compact-content3"
968
968
  aria-label="Tertiary content details"
969
969
  >
970
970
  <div
@@ -1073,7 +1073,7 @@ When a list item includes more than one block of content, it can be difficult fo
1073
1073
  <section
1074
1074
  class="pf-c-data-list__expandable-content"
1075
1075
  id="data-list-expandable-nested-content1"
1076
- aria-label="Primary content details"
1076
+ aria-label="data-list-expandable-nested Primary content details"
1077
1077
  >
1078
1078
  <div class="pf-c-data-list__expandable-content-body">
1079
1079
  <ul
@@ -1899,7 +1899,7 @@ When a list item includes more than one block of content, it can be difficult fo
1899
1899
  <section
1900
1900
  class="pf-c-data-list__expandable-content"
1901
1901
  id="data-list-flex-modifiers-2-content1"
1902
- aria-label="Primary content details"
1902
+ aria-label="data-list-flex-modifiers-2 Primary content details"
1903
1903
  >
1904
1904
  <div
1905
1905
  class="pf-c-data-list__expandable-content-body"
@@ -2034,7 +2034,7 @@ When a list item includes more than one block of content, it can be difficult fo
2034
2034
  <section
2035
2035
  class="pf-c-data-list__expandable-content"
2036
2036
  id="data-list-selectable-expandable-rows-content1"
2037
- aria-label="Primary content details"
2037
+ aria-label="data-list-selectable-expandable-rows Primary content details"
2038
2038
  >
2039
2039
  <div
2040
2040
  class="pf-c-data-list__expandable-content-body"
@@ -132,8 +132,8 @@ cssPrefix: pf-c-date-picker
132
132
  class="pf-c-form-control"
133
133
  type="text"
134
134
  value="November 20, 2020"
135
- id="basic-input"
136
- name="basic-input"
135
+ id="custom-width-input-input"
136
+ name="custom-width-input-input"
137
137
  aria-label="Date picker"
138
138
  />
139
139
  <button
@@ -162,8 +162,8 @@ cssPrefix: pf-c-date-picker
162
162
  class="pf-c-form-control"
163
163
  type="text"
164
164
  value="November 20, 2020"
165
- id="basic-input"
166
- name="basic-input"
165
+ id="custom-width-input-based-on-number-of-characters-input"
166
+ name="custom-width-input-based-on-number-of-characters-input"
167
167
  aria-label="Date picker"
168
168
  />
169
169
  <button
@@ -790,9 +790,9 @@ In addition to the JavaScript management of [editable labels](/components/label#
790
790
  <button
791
791
  class="pf-c-button pf-m-plain"
792
792
  type="button"
793
- id="static-labels-editable-group-example-editable-label-static-1-button"
793
+ id="static-labels-dynamic-label-group-example-editable-label-static-1-button"
794
794
  aria-label="Remove"
795
- aria-labelledby="static-labels-editable-group-example-editable-label-static-1-button static-labels-editable-group-example-editable-label-static-1-text"
795
+ aria-labelledby="static-labels-dynamic-label-group-example-editable-label-static-1-button static-labels-dynamic-label-group-example-editable-label-static-1-text"
796
796
  >
797
797
  <i class="fas fa-times" aria-hidden="true"></i>
798
798
  </button>
@@ -804,9 +804,9 @@ In addition to the JavaScript management of [editable labels](/components/label#
804
804
  <button
805
805
  class="pf-c-button pf-m-plain"
806
806
  type="button"
807
- id="static-labels-editable-group-example-editable-label-static-2-button"
807
+ id="static-labels-dynamic-label-group-example-editable-label-static-2-button"
808
808
  aria-label="Remove"
809
- aria-labelledby="static-labels-editable-group-example-editable-label-static-2-button static-labels-editable-group-example-editable-label-static-2-text"
809
+ aria-labelledby="static-labels-dynamic-label-group-example-editable-label-static-2-button static-labels-dynamic-label-group-example-editable-label-static-2-text"
810
810
  >
811
811
  <i class="fas fa-times" aria-hidden="true"></i>
812
812
  </button>
@@ -818,9 +818,9 @@ In addition to the JavaScript management of [editable labels](/components/label#
818
818
  <button
819
819
  class="pf-c-button pf-m-plain"
820
820
  type="button"
821
- id="static-labels-editable-group-example-editable-label-static-3-button"
821
+ id="static-labels-dynamic-label-group-example-editable-label-static-3-button"
822
822
  aria-label="Remove"
823
- aria-labelledby="static-labels-editable-group-example-editable-label-static-3-button static-labels-editable-group-example-editable-label-static-3-text"
823
+ aria-labelledby="static-labels-dynamic-label-group-example-editable-label-static-3-button static-labels-dynamic-label-group-example-editable-label-static-3-text"
824
824
  >
825
825
  <i class="fas fa-times" aria-hidden="true"></i>
826
826
  </button>
@@ -852,9 +852,9 @@ In addition to the JavaScript management of [editable labels](/components/label#
852
852
  <button
853
853
  class="pf-c-button pf-m-plain"
854
854
  type="button"
855
- id="static-labels-editable-group-example-editable-label-static-1-button"
855
+ id="mixed-labels-dynamic-label-group-example-editable-label-static-1-button"
856
856
  aria-label="Remove"
857
- aria-labelledby="static-labels-editable-group-example-editable-label-static-1-button static-labels-editable-group-example-editable-label-static-1-text"
857
+ aria-labelledby="mixed-labels-dynamic-label-group-example-editable-label-static-1-button mixed-labels-dynamic-label-group-example-editable-label-static-1-text"
858
858
  >
859
859
  <i class="fas fa-times" aria-hidden="true"></i>
860
860
  </button>
@@ -866,9 +866,9 @@ In addition to the JavaScript management of [editable labels](/components/label#
866
866
  <button
867
867
  class="pf-c-button pf-m-plain"
868
868
  type="button"
869
- id="static-labels-editable-group-example-editable-label-static-2-button"
869
+ id="mixed-labels-dynamic-label-group-example-editable-label-static-2-button"
870
870
  aria-label="Remove"
871
- aria-labelledby="static-labels-editable-group-example-editable-label-static-2-button static-labels-editable-group-example-editable-label-static-2-text"
871
+ aria-labelledby="mixed-labels-dynamic-label-group-example-editable-label-static-2-button mixed-labels-dynamic-label-group-example-editable-label-static-2-text"
872
872
  >
873
873
  <i class="fas fa-times" aria-hidden="true"></i>
874
874
  </button>
@@ -878,7 +878,7 @@ In addition to the JavaScript management of [editable labels](/components/label#
878
878
  <span class="pf-c-label pf-m-blue pf-m-editable">
879
879
  <button
880
880
  class="pf-c-label__content"
881
- id="static-labels-editable-group-example-editable-label-dynamic-1-editable-content"
881
+ id="mixed-labels-dynamic-label-group-example-editable-label-dynamic-1-editable-content"
882
882
  currvalue=" Dynamic, editable label 1
883
883
  "
884
884
  aria-label="Editable text"
@@ -887,9 +887,9 @@ In addition to the JavaScript management of [editable labels](/components/label#
887
887
  <button
888
888
  class="pf-c-button pf-m-plain"
889
889
  type="button"
890
- id="static-labels-editable-group-example-editable-label-dynamic-1-button"
890
+ id="mixed-labels-dynamic-label-group-example-editable-label-dynamic-1-button"
891
891
  aria-label="Remove"
892
- aria-labelledby="static-labels-editable-group-example-editable-label-dynamic-1-button static-labels-editable-group-example-editable-label-dynamic-1-text"
892
+ aria-labelledby="mixed-labels-dynamic-label-group-example-editable-label-dynamic-1-button mixed-labels-dynamic-label-group-example-editable-label-dynamic-1-text"
893
893
  >
894
894
  <i class="fas fa-times" aria-hidden="true"></i>
895
895
  </button>
@@ -899,7 +899,7 @@ In addition to the JavaScript management of [editable labels](/components/label#
899
899
  <span class="pf-c-label pf-m-blue pf-m-editable">
900
900
  <button
901
901
  class="pf-c-label__content"
902
- id="static-labels-editable-group-example-editable-label-dynamic-2-editable-content"
902
+ id="mixed-labels-dynamic-label-group-example-editable-label-dynamic-2-editable-content"
903
903
  currvalue=" Dynamic, editable label 2
904
904
  "
905
905
  aria-label="Editable text"
@@ -908,9 +908,9 @@ In addition to the JavaScript management of [editable labels](/components/label#
908
908
  <button
909
909
  class="pf-c-button pf-m-plain"
910
910
  type="button"
911
- id="static-labels-editable-group-example-editable-label-dynamic-2-button"
911
+ id="mixed-labels-dynamic-label-group-example-editable-label-dynamic-2-button"
912
912
  aria-label="Remove"
913
- aria-labelledby="static-labels-editable-group-example-editable-label-dynamic-2-button static-labels-editable-group-example-editable-label-dynamic-2-text"
913
+ aria-labelledby="mixed-labels-dynamic-label-group-example-editable-label-dynamic-2-button mixed-labels-dynamic-label-group-example-editable-label-dynamic-2-text"
914
914
  >
915
915
  <i class="fas fa-times" aria-hidden="true"></i>
916
916
  </button>
@@ -920,7 +920,7 @@ In addition to the JavaScript management of [editable labels](/components/label#
920
920
  <span class="pf-c-label pf-m-blue pf-m-active pf-m-editable">
921
921
  <button
922
922
  class="pf-c-label__content"
923
- id="static-labels-editable-group-example-editable-label-dynamic-3-editable-content"
923
+ id="mixed-labels-dynamic-label-group-example-editable-label-dynamic-3-editable-content"
924
924
  currvalue=" Dynamic, editable label 3
925
925
  "
926
926
  aria-label="Editable text"
@@ -929,9 +929,9 @@ In addition to the JavaScript management of [editable labels](/components/label#
929
929
  <button
930
930
  class="pf-c-button pf-m-plain"
931
931
  type="button"
932
- id="static-labels-editable-group-example-editable-label-dynamic-3-button"
932
+ id="mixed-labels-dynamic-label-group-example-editable-label-dynamic-3-button"
933
933
  aria-label="Remove"
934
- aria-labelledby="static-labels-editable-group-example-editable-label-dynamic-3-button static-labels-editable-group-example-editable-label-dynamic-3-text"
934
+ aria-labelledby="mixed-labels-dynamic-label-group-example-editable-label-dynamic-3-button mixed-labels-dynamic-label-group-example-editable-label-dynamic-3-text"
935
935
  >
936
936
  <i class="fas fa-times" aria-hidden="true"></i>
937
937
  </button>