@patternfly/patternfly 5.0.0-alpha.53 → 5.0.0-alpha.55

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/components/FormControl/form-control.css +164 -214
  2. package/components/FormControl/form-control.scss +175 -281
  3. package/components/FormControl/themes/dark/form-control.scss +1 -2
  4. package/components/NumberInput/number-input.css +0 -1
  5. package/components/NumberInput/number-input.scss +0 -1
  6. package/components/Table/table-grid.css +380 -391
  7. package/components/Table/table-grid.scss +97 -92
  8. package/components/Table/table-tree-view.css +254 -254
  9. package/components/Table/table-tree-view.scss +30 -30
  10. package/components/Table/table.css +232 -232
  11. package/components/Table/table.scss +265 -255
  12. package/docs/components/CalendarMonth/examples/CalendarMonth.md +32 -28
  13. package/docs/components/ClipboardCopy/examples/ClipboardCopy.md +52 -46
  14. package/docs/components/DatePicker/examples/DatePicker.md +55 -49
  15. package/docs/components/FileUpload/examples/FileUpload.md +105 -93
  16. package/docs/components/Form/examples/Form.md +165 -145
  17. package/docs/components/FormControl/examples/FormControl.md +439 -475
  18. package/docs/components/InlineEdit/examples/InlineEdit.md +137 -104
  19. package/docs/components/InputGroup/examples/InputGroup.md +84 -74
  20. package/docs/components/Login/examples/Login.md +92 -82
  21. package/docs/components/NumberInput/examples/NumberInput.md +99 -87
  22. package/docs/components/Pagination/examples/Pagination.md +100 -89
  23. package/docs/components/Select/examples/Select.md +77 -68
  24. package/docs/components/Slider/examples/Slider.md +31 -44
  25. package/docs/components/Table/examples/Table.md +6839 -3703
  26. package/docs/components/TextInputGroup/examples/TextInputGroup.md +60 -52
  27. package/docs/components/Toolbar/examples/Toolbar.md +18 -16
  28. package/docs/components/Wizard/examples/Wizard.md +280 -245
  29. package/docs/demos/Alert/examples/Alert.md +69 -57
  30. package/docs/demos/Button/examples/Button.md +54 -48
  31. package/docs/demos/Card/examples/Card.md +73 -34
  32. package/docs/demos/CardView/examples/CardView.md +9 -8
  33. package/docs/demos/DataList/examples/DataList.md +223 -84
  34. package/docs/demos/DescriptionList/examples/DescriptionList.md +63 -23
  35. package/docs/demos/Form/examples/BasicForms.md +247 -227
  36. package/docs/demos/HelperText/examples/HelperText.md +37 -33
  37. package/docs/demos/Modal/examples/Modal.md +14 -21
  38. package/docs/demos/PasswordGenerator/examples/PasswordGenerator.md +11 -10
  39. package/docs/demos/PasswordStrength/examples/PasswordStrength.md +44 -40
  40. package/docs/demos/Table/examples/Table.md +2765 -1397
  41. package/docs/demos/Tabs/examples/Tabs.md +203 -50
  42. package/docs/demos/Toolbar/examples/Toolbar.md +300 -137
  43. package/docs/demos/Wizard/examples/Wizard.md +448 -392
  44. package/package.json +3 -3
  45. package/patternfly-no-globals.css +1027 -1089
  46. package/patternfly.css +1027 -1089
  47. package/patternfly.min.css +1 -1
  48. package/patternfly.min.css.map +1 -1
  49. package/docs/components/FormControl/examples/FormControl.css +0 -5
@@ -123,12 +123,13 @@ Inline edit **action-group** contains save and cancel actions and is only visibl
123
123
  </div>
124
124
  <div class="pf-v5-c-inline-edit__group">
125
125
  <div class="pf-v5-c-inline-edit__input">
126
- <input
127
- class="pf-v5-c-form-control"
128
- type="text"
129
- value="Static value"
130
- aria-label="Editable text input"
131
- />
126
+ <div class="pf-v5-c-form-control">
127
+ <input
128
+ type="text"
129
+ value="Static value"
130
+ aria-label="Editable text input"
131
+ />
132
+ </div>
132
133
  </div>
133
134
  <div class="pf-v5-c-inline-edit__group pf-m-action-group pf-m-icon-group">
134
135
  <div class="pf-v5-c-inline-edit__action pf-m-valid">
@@ -181,12 +182,13 @@ Inline edit **action-group** contains save and cancel actions and is only visibl
181
182
  </div>
182
183
  <div class="pf-v5-c-inline-edit__group">
183
184
  <div class="pf-v5-c-inline-edit__input">
184
- <input
185
- class="pf-v5-c-form-control"
186
- type="text"
187
- value="Static value"
188
- aria-label="Editable text input"
189
- />
185
+ <div class="pf-v5-c-form-control">
186
+ <input
187
+ type="text"
188
+ value="Static value"
189
+ aria-label="Editable text input"
190
+ />
191
+ </div>
190
192
  </div>
191
193
  <div class="pf-v5-c-inline-edit__group pf-m-action-group pf-m-icon-group">
192
194
  <div class="pf-v5-c-inline-edit__action pf-m-valid">
@@ -252,13 +254,14 @@ Inline edit **action-group** contains save and cancel actions and is only visibl
252
254
  <div class="pf-v5-c-inline-edit__value">Static value</div>
253
255
  <div class="pf-v5-c-inline-edit__group">
254
256
  <div class="pf-v5-c-inline-edit__input">
255
- <input
256
- class="pf-v5-c-form-control"
257
- type="text"
258
- id="single-inline-edit-with-label-example-input"
259
- value="Static value"
260
- aria-label="Editable text input"
261
- />
257
+ <div class="pf-v5-c-form-control">
258
+ <input
259
+ type="text"
260
+ id="single-inline-edit-with-label-example-input"
261
+ value="Static value"
262
+ aria-label="Editable text input"
263
+ />
264
+ </div>
262
265
  </div>
263
266
  <div class="pf-v5-c-inline-edit__group pf-m-action-group pf-m-icon-group">
264
267
  <div class="pf-v5-c-inline-edit__action pf-m-valid">
@@ -313,12 +316,13 @@ Inline edit **action-group** contains save and cancel actions and is only visibl
313
316
  <div class="pf-v5-c-inline-edit__value">Static value</div>
314
317
  <div class="pf-v5-c-inline-edit__group">
315
318
  <div class="pf-v5-c-inline-edit__input">
316
- <input
317
- class="pf-v5-c-form-control"
318
- type="text"
319
- value="Static value"
320
- aria-label="Editable text input"
321
- />
319
+ <div class="pf-v5-c-form-control">
320
+ <input
321
+ type="text"
322
+ value="Static value"
323
+ aria-label="Editable text input"
324
+ />
325
+ </div>
322
326
  </div>
323
327
  <div class="pf-v5-c-inline-edit__group pf-m-action-group pf-m-icon-group">
324
328
  <div class="pf-v5-c-inline-edit__action pf-m-valid">
@@ -373,13 +377,14 @@ Inline edit **action-group** contains save and cancel actions and is only visibl
373
377
  <div class="pf-v5-c-inline-edit__value">Static value</div>
374
378
  <div class="pf-v5-c-inline-edit__group">
375
379
  <div class="pf-v5-c-inline-edit__input">
376
- <input
377
- class="pf-v5-c-form-control"
378
- required
379
- value="Invalid state"
380
- aria-invalid="true"
381
- aria-label="Error state input example"
382
- />
380
+ <div class="pf-v5-c-form-control">
381
+ <input
382
+ required
383
+ value="Invalid state"
384
+ aria-invalid="true"
385
+ aria-label="Error state input example"
386
+ />
387
+ </div>
383
388
  </div>
384
389
  <div class="pf-v5-c-inline-edit__group pf-m-action-group pf-m-icon-group">
385
390
  <div class="pf-v5-c-inline-edit__action">
@@ -417,50 +422,60 @@ Inline edit **action-group** contains save and cancel actions and is only visibl
417
422
  aria-label="Inline edit table row example"
418
423
  id="inline-edit-table-row-example"
419
424
  >
420
- <caption>This is the table caption</caption>
421
- <thead>
422
- <tr role="row">
423
- <th role="columnheader">Text input</th>
424
- <th role="columnheader">Disabled text input</th>
425
- <th role="columnheader">Checkboxes</th>
426
- <th role="columnheader">Radios</th>
427
- <th role="columnheader">Number</th>
428
- <td></td>
429
-
430
- <td></td>
425
+ <caption class="pf-v5-c-table__caption">This is the table caption</caption>
426
+ <thead class="pf-v5-c-table__thead">
427
+ <tr class="pf-v5-c-table__tr" role="row">
428
+ <th class="pf-v5-c-table__th" role="columnheader">Text input</th>
429
+ <th class="pf-v5-c-table__th" role="columnheader">Disabled text input</th>
430
+ <th class="pf-v5-c-table__th" role="columnheader">Checkboxes</th>
431
+ <th class="pf-v5-c-table__th" role="columnheader">Radios</th>
432
+ <th class="pf-v5-c-table__th" role="columnheader">Number</th>
433
+ <td class="pf-v5-c-table__td"></td>
434
+
435
+ <td class="pf-v5-c-table__td"></td>
431
436
  </tr>
432
437
  </thead>
433
438
 
434
- <tbody role="rowgroup">
435
- <tr class="pf-m-inline-editable" role="row">
436
- <th role="columnheader" data-label="Text input">
439
+ <tbody class="pf-v5-c-table__tbody" role="rowgroup">
440
+ <tr class="pf-v5-c-table__tr pf-m-inline-editable" role="row">
441
+ <th
442
+ class="pf-v5-c-table__th"
443
+ role="columnheader"
444
+ data-label="Text input"
445
+ >
437
446
  <div class="pf-v5-c-inline-edit__value">Text input description content</div>
438
447
  <div class="pf-v5-c-inline-edit__input">
439
- <input
440
- class="pf-v5-c-form-control"
441
- type="text"
442
- value="Text input description content"
443
- id="bulk-edit-table-example-row-1-text-input"
444
- aria-label="Text input"
445
- />
448
+ <div class="pf-v5-c-form-control">
449
+ <input
450
+ type="text"
451
+ value="Text input description content"
452
+ id="bulk-edit-table-example-row-1-text-input"
453
+ aria-label="Text input"
454
+ />
455
+ </div>
446
456
  </div>
447
457
  </th>
448
- <td role="cell" data-label="Disabled text input">
458
+ <td
459
+ class="pf-v5-c-table__td"
460
+ role="cell"
461
+ data-label="Disabled text input"
462
+ >
449
463
  <div
450
464
  class="pf-v5-c-inline-edit__value"
451
465
  >Text input disabled, description content</div>
452
466
  <div class="pf-v5-c-inline-edit__input">
453
- <input
454
- class="pf-v5-c-form-control"
455
- type="text"
456
- value="Text input disabled, description content"
457
- id="bulk-edit-table-example-row-1-text-input-disabled"
458
- aria-label="Disabled text input"
459
- disabled
460
- />
467
+ <div class="pf-v5-c-form-control">
468
+ <input
469
+ type="text"
470
+ value="Text input disabled, description content"
471
+ id="bulk-edit-table-example-row-1-text-input-disabled"
472
+ aria-label="Disabled text input"
473
+ disabled
474
+ />
475
+ </div>
461
476
  </div>
462
477
  </td>
463
- <td role="cell" data-label="Checkboxes">
478
+ <td class="pf-v5-c-table__td" role="cell" data-label="Checkboxes">
464
479
  <div class="pf-v5-c-inline-edit__value">Check 1, Check 2</div>
465
480
  <div class="pf-v5-c-inline-edit__group pf-m-column">
466
481
  <div class="pf-v5-c-inline-edit__input">
@@ -495,7 +510,7 @@ Inline edit **action-group** contains save and cancel actions and is only visibl
495
510
  </div>
496
511
  </div>
497
512
  </td>
498
- <td role="cell" data-label="Radios">
513
+ <td class="pf-v5-c-table__td" role="cell" data-label="Radios">
499
514
  <div class="pf-v5-c-inline-edit__value">Radio 1, Radio 2</div>
500
515
  <div
501
516
  class="pf-v5-c-inline-edit__group pf-m-column"
@@ -534,19 +549,23 @@ Inline edit **action-group** contains save and cancel actions and is only visibl
534
549
  </div>
535
550
  </div>
536
551
  </td>
537
- <td role="cell" data-label="Number">
552
+ <td class="pf-v5-c-table__td" role="cell" data-label="Number">
538
553
  <div class="pf-v5-c-inline-edit__value">2</div>
539
554
  <div class="pf-v5-c-inline-edit__input">
540
- <input
541
- class="pf-v5-c-form-control"
542
- type="number"
543
- value="2"
544
- id="bulk-edit-table-example-row-1-number-input"
545
- aria-label="Number input"
546
- />
555
+ <div class="pf-v5-c-form-control">
556
+ <input
557
+ type="number"
558
+ value="2"
559
+ id="bulk-edit-table-example-row-1-number-input"
560
+ aria-label="Number input"
561
+ />
562
+ </div>
547
563
  </div>
548
564
  </td>
549
- <td class="pf-v5-c-table__inline-edit-action" role="cell">
565
+ <td
566
+ class="pf-v5-c-table__td pf-v5-c-table__inline-edit-action"
567
+ role="cell"
568
+ >
550
569
  <div
551
570
  class="pf-v5-c-inline-edit__group pf-m-action-group pf-m-icon-group"
552
571
  >
@@ -581,7 +600,7 @@ Inline edit **action-group** contains save and cancel actions and is only visibl
581
600
  </button>
582
601
  </div>
583
602
  </td>
584
- <td class="pf-v5-c-table__action" role="cell">
603
+ <td class="pf-v5-c-table__td pf-v5-c-table__action" role="cell">
585
604
  <div class="pf-v5-c-dropdown">
586
605
  <button
587
606
  class="pf-v5-c-dropdown__toggle pf-m-plain"
@@ -627,35 +646,45 @@ Inline edit **action-group** contains save and cancel actions and is only visibl
627
646
  </td>
628
647
  </tr>
629
648
 
630
- <tr role="row">
631
- <th role="columnheader" data-label="Text input">
649
+ <tr class="pf-v5-c-table__tr" role="row">
650
+ <th
651
+ class="pf-v5-c-table__th"
652
+ role="columnheader"
653
+ data-label="Text input"
654
+ >
632
655
  <div class="pf-v5-c-inline-edit__value">Text input description content</div>
633
656
  <div class="pf-v5-c-inline-edit__input">
634
- <input
635
- class="pf-v5-c-form-control"
636
- type="text"
637
- value="Text input description content"
638
- id="bulk-edit-table-example-row-2-text-input"
639
- aria-label="Text input"
640
- />
657
+ <div class="pf-v5-c-form-control">
658
+ <input
659
+ type="text"
660
+ value="Text input description content"
661
+ id="bulk-edit-table-example-row-2-text-input"
662
+ aria-label="Text input"
663
+ />
664
+ </div>
641
665
  </div>
642
666
  </th>
643
- <td role="cell" data-label="Disabled text input">
667
+ <td
668
+ class="pf-v5-c-table__td"
669
+ role="cell"
670
+ data-label="Disabled text input"
671
+ >
644
672
  <div
645
673
  class="pf-v5-c-inline-edit__value"
646
674
  >Text input disabled, description content</div>
647
675
  <div class="pf-v5-c-inline-edit__input">
648
- <input
649
- class="pf-v5-c-form-control"
650
- type="text"
651
- value="Text input disabled, description content"
652
- id="bulk-edit-table-example-row-2-text-input-disabled"
653
- aria-label="Disabled text input"
654
- disabled
655
- />
676
+ <div class="pf-v5-c-form-control">
677
+ <input
678
+ type="text"
679
+ value="Text input disabled, description content"
680
+ id="bulk-edit-table-example-row-2-text-input-disabled"
681
+ aria-label="Disabled text input"
682
+ disabled
683
+ />
684
+ </div>
656
685
  </div>
657
686
  </td>
658
- <td role="cell" data-label="Checkboxes">
687
+ <td class="pf-v5-c-table__td" role="cell" data-label="Checkboxes">
659
688
  <div class="pf-v5-c-inline-edit__value">Check 1, Check 2</div>
660
689
  <div class="pf-v5-c-inline-edit__group pf-m-column">
661
690
  <div class="pf-v5-c-inline-edit__input">
@@ -690,7 +719,7 @@ Inline edit **action-group** contains save and cancel actions and is only visibl
690
719
  </div>
691
720
  </div>
692
721
  </td>
693
- <td role="cell" data-label="Radios">
722
+ <td class="pf-v5-c-table__td" role="cell" data-label="Radios">
694
723
  <div class="pf-v5-c-inline-edit__value">Radio 1, Radio 2</div>
695
724
  <div
696
725
  class="pf-v5-c-inline-edit__group pf-m-column"
@@ -729,19 +758,23 @@ Inline edit **action-group** contains save and cancel actions and is only visibl
729
758
  </div>
730
759
  </div>
731
760
  </td>
732
- <td role="cell" data-label="Number">
761
+ <td class="pf-v5-c-table__td" role="cell" data-label="Number">
733
762
  <div class="pf-v5-c-inline-edit__value">2</div>
734
763
  <div class="pf-v5-c-inline-edit__input">
735
- <input
736
- class="pf-v5-c-form-control"
737
- type="number"
738
- value="2"
739
- id="bulk-edit-table-example-row-2-number-input"
740
- aria-label="Number input"
741
- />
764
+ <div class="pf-v5-c-form-control">
765
+ <input
766
+ type="number"
767
+ value="2"
768
+ id="bulk-edit-table-example-row-2-number-input"
769
+ aria-label="Number input"
770
+ />
771
+ </div>
742
772
  </div>
743
773
  </td>
744
- <td class="pf-v5-c-table__inline-edit-action" role="cell">
774
+ <td
775
+ class="pf-v5-c-table__td pf-v5-c-table__inline-edit-action"
776
+ role="cell"
777
+ >
745
778
  <div
746
779
  class="pf-v5-c-inline-edit__group pf-m-action-group pf-m-icon-group"
747
780
  >
@@ -776,7 +809,7 @@ Inline edit **action-group** contains save and cancel actions and is only visibl
776
809
  </button>
777
810
  </div>
778
811
  </td>
779
- <td class="pf-v5-c-table__action" role="cell">
812
+ <td class="pf-v5-c-table__td pf-v5-c-table__action" role="cell">
780
813
  <div class="pf-v5-c-dropdown">
781
814
  <button
782
815
  class="pf-v5-c-dropdown__toggle pf-m-plain"
@@ -20,13 +20,14 @@ Use the input group to extend form controls by adding text, buttons, selects, et
20
20
  >Button</button>
21
21
  </div>
22
22
  <div class="pf-v5-c-input-group__item pf-m-fill">
23
- <textarea
24
- class="pf-v5-c-form-control"
25
- name="textarea1"
26
- id="textarea1"
27
- aria-label="Textarea with buttons"
28
- aria-describedby="textAreaButton1"
29
- ></textarea>
23
+ <div class="pf-v5-c-form-control">
24
+ <textarea
25
+ name="textarea1"
26
+ id="textarea1"
27
+ aria-label="Textarea with buttons"
28
+ aria-describedby="textAreaButton1"
29
+ ></textarea>
30
+ </div>
30
31
  </div>
31
32
  <div class="pf-v5-c-input-group__item">
32
33
  <button class="pf-v5-c-button pf-m-control" type="button">Button</button>
@@ -35,13 +36,14 @@ Use the input group to extend form controls by adding text, buttons, selects, et
35
36
  <br />
36
37
  <div class="pf-v5-c-input-group">
37
38
  <div class="pf-v5-c-input-group__item pf-m-fill">
38
- <textarea
39
- class="pf-v5-c-form-control"
40
- name="textarea2"
41
- id="textarea2"
42
- aria-label="Textarea with button"
43
- aria-describedby="textAreaButton2"
44
- ></textarea>
39
+ <div class="pf-v5-c-form-control">
40
+ <textarea
41
+ name="textarea2"
42
+ id="textarea2"
43
+ aria-label="Textarea with button"
44
+ aria-describedby="textAreaButton2"
45
+ ></textarea>
46
+ </div>
45
47
  </div>
46
48
  <div class="pf-v5-c-input-group__item">
47
49
  <button
@@ -64,13 +66,14 @@ Use the input group to extend form controls by adding text, buttons, selects, et
64
66
  <button class="pf-v5-c-button pf-m-control" type="button">Button</button>
65
67
  </div>
66
68
  <div class="pf-v5-c-input-group__item pf-m-fill">
67
- <textarea
68
- class="pf-v5-c-form-control"
69
- name="textarea3"
70
- id="textarea3"
71
- aria-label="Textarea with buttons"
72
- aria-describedby="textAreaButton3"
73
- ></textarea>
69
+ <div class="pf-v5-c-form-control">
70
+ <textarea
71
+ name="textarea3"
72
+ id="textarea3"
73
+ aria-label="Textarea with buttons"
74
+ aria-describedby="textAreaButton3"
75
+ ></textarea>
76
+ </div>
74
77
  </div>
75
78
  <div class="pf-v5-c-input-group__item">
76
79
  <button class="pf-v5-c-button pf-m-control" type="button">Button</button>
@@ -136,14 +139,15 @@ Use the input group to extend form controls by adding text, buttons, selects, et
136
139
  </div>
137
140
  </div>
138
141
  <div class="pf-v5-c-input-group__item pf-m-fill">
139
- <input
140
- class="pf-v5-c-form-control"
141
- type="text"
142
- id="textInput4"
143
- name="textInput4"
144
- aria-label="Input with select and button"
145
- aria-describedby="inputSelectButton1"
146
- />
142
+ <div class="pf-v5-c-form-control">
143
+ <input
144
+ type="text"
145
+ id="textInput4"
146
+ name="textInput4"
147
+ aria-label="Input with select and button"
148
+ aria-describedby="inputSelectButton1"
149
+ />
150
+ </div>
147
151
  </div>
148
152
  <div class="pf-v5-c-input-group__item">
149
153
  <button
@@ -161,13 +165,14 @@ Use the input group to extend form controls by adding text, buttons, selects, et
161
165
  </span>
162
166
  </div>
163
167
  <div class="pf-v5-c-input-group__item pf-m-fill">
164
- <input
165
- class="pf-v5-c-form-control"
166
- type="number"
167
- id="textInput5"
168
- name="textInput5"
169
- aria-label=" Dollar amount input example"
170
- />
168
+ <div class="pf-v5-c-form-control">
169
+ <input
170
+ type="number"
171
+ id="textInput5"
172
+ name="textInput5"
173
+ aria-label=" Dollar amount input example"
174
+ />
175
+ </div>
171
176
  </div>
172
177
  <div class="pf-v5-c-input-group__item pf-m-box">
173
178
  <span class="pf-v5-c-input-group__text">.00</span>
@@ -176,14 +181,15 @@ Use the input group to extend form controls by adding text, buttons, selects, et
176
181
  <br />
177
182
  <div class="pf-v5-c-input-group">
178
183
  <div class="pf-v5-c-input-group__item pf-m-fill">
179
- <input
180
- class="pf-v5-c-form-control"
181
- type="email"
182
- id="textInput6"
183
- name="textInput6"
184
- aria-label="Email input field"
185
- aria-describedby="email-example"
186
- />
184
+ <div class="pf-v5-c-form-control">
185
+ <input
186
+ type="email"
187
+ id="textInput6"
188
+ name="textInput6"
189
+ aria-label="Email input field"
190
+ aria-describedby="email-example"
191
+ />
192
+ </div>
187
193
  </div>
188
194
  <div class="pf-v5-c-input-group__item pf-m-box">
189
195
  <span class="pf-v5-c-input-group__text" id="email-example">@example.com</span>
@@ -197,27 +203,29 @@ Use the input group to extend form controls by adding text, buttons, selects, et
197
203
  </span>
198
204
  </div>
199
205
  <div class="pf-v5-c-input-group__item pf-m-fill">
200
- <input
201
- class="pf-v5-c-form-control"
202
- required
203
- type="email"
204
- id="textInput7"
205
- name="textInput7"
206
- aria-invalid="true"
207
- aria-label="Error state username example"
208
- />
206
+ <div class="pf-v5-c-form-control">
207
+ <input
208
+ required
209
+ type="email"
210
+ id="textInput7"
211
+ name="textInput7"
212
+ aria-invalid="true"
213
+ aria-label="Error state username example"
214
+ />
215
+ </div>
209
216
  </div>
210
217
  </div>
211
218
  <br />
212
219
  <div class="pf-v5-c-input-group">
213
220
  <div class="pf-v5-c-input-group__item pf-m-fill">
214
- <input
215
- class="pf-v5-c-form-control"
216
- type="text"
217
- id="textInput13"
218
- name="textInput13"
219
- aria-label="Input example with popover"
220
- />
221
+ <div class="pf-v5-c-form-control">
222
+ <input
223
+ type="text"
224
+ id="textInput13"
225
+ name="textInput13"
226
+ aria-label="Input example with popover"
227
+ />
228
+ </div>
221
229
  </div>
222
230
  <div class="pf-v5-c-input-group__item">
223
231
  <button
@@ -232,13 +240,14 @@ Use the input group to extend form controls by adding text, buttons, selects, et
232
240
  <br />
233
241
  <div class="pf-v5-c-input-group">
234
242
  <div class="pf-v5-c-input-group__item pf-m-fill">
235
- <input
236
- class="pf-v5-c-form-control"
237
- type="text"
238
- id="textInput12"
239
- name="textInput12"
240
- aria-label="Input example with popover"
241
- />
243
+ <div class="pf-v5-c-form-control">
244
+ <input
245
+ type="text"
246
+ id="textInput12"
247
+ name="textInput12"
248
+ aria-label="Input example with popover"
249
+ />
250
+ </div>
242
251
  </div>
243
252
  <div class="pf-v5-c-input-group__item pf-m-plain">
244
253
  <button
@@ -253,13 +262,14 @@ Use the input group to extend form controls by adding text, buttons, selects, et
253
262
  <br />
254
263
  <div class="pf-v5-c-input-group">
255
264
  <div class="pf-v5-c-input-group__item pf-m-fill">
256
- <input
257
- class="pf-v5-c-form-control"
258
- type="number"
259
- id="textInput14"
260
- name="textInput14"
261
- aria-label="Input example with plain unit"
262
- />
265
+ <div class="pf-v5-c-form-control">
266
+ <input
267
+ type="number"
268
+ id="textInput14"
269
+ name="textInput14"
270
+ aria-label="Input example with plain unit"
271
+ />
272
+ </div>
263
273
  </div>
264
274
  <div class="pf-v5-c-input-group__item pf-m-box pf-m-plain">
265
275
  <span class="pf-v5-c-input-group__text">%</span>