@patternfly/patternfly 6.0.0-alpha.44 → 6.0.0-alpha.46

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 (31) hide show
  1. package/components/Check/check.css +17 -16
  2. package/components/Check/check.scss +17 -20
  3. package/components/Form/form.css +68 -87
  4. package/components/Form/form.scss +67 -98
  5. package/components/FormControl/form-control.css +86 -111
  6. package/components/FormControl/form-control.scss +88 -92
  7. package/components/NotificationDrawer/notification-drawer.css +104 -115
  8. package/components/NotificationDrawer/notification-drawer.scss +106 -116
  9. package/components/Panel/panel.css +27 -23
  10. package/components/Panel/panel.scss +29 -26
  11. package/components/Radio/radio.css +15 -11
  12. package/components/Radio/radio.scss +15 -15
  13. package/components/SimpleList/simple-list.css +1 -1
  14. package/components/SimpleList/simple-list.scss +1 -1
  15. package/docs/components/Form/examples/Form.md +23 -11
  16. package/docs/components/Panel/examples/Panel.md +12 -0
  17. package/docs/demos/Alert/examples/Alert.md +24 -0
  18. package/docs/demos/Form/examples/BasicForms.md +31 -10
  19. package/docs/demos/Modal/examples/Modal.md +3 -3
  20. package/docs/demos/PasswordGenerator/examples/PasswordGenerator.md +1 -1
  21. package/docs/demos/PasswordStrength/examples/PasswordStrength.md +4 -4
  22. package/package.json +1 -1
  23. package/patternfly-no-globals.css +319 -369
  24. package/patternfly-theme-dark-unversioned.css +319 -369
  25. package/patternfly.css +319 -369
  26. package/patternfly.min.css +1 -1
  27. package/patternfly.min.css.map +1 -1
  28. package/components/Form/themes/dark/form.scss +0 -7
  29. package/components/FormControl/themes/dark/form-control.scss +0 -24
  30. package/components/NotificationDrawer/themes/dark/notification-drawer.scss +0 -14
  31. package/components/Panel/themes/dark/panel.scss +0 -7
@@ -1,24 +1,28 @@
1
1
  // @debug $radio; // check your variable names located in src/patternfly/sass-utilities/component-namespaces.scss
2
2
 
3
+ :root,
3
4
  .#{$radio} {
4
- --#{$radio}--GridGap: var(--#{$pf-global}--spacer--xs) var(--#{$pf-global}--spacer--sm);
5
- --#{$radio}__label--disabled--Color: var(--#{$pf-global}--disabled-color--100);
6
- --#{$radio}__label--Color: var(--#{$pf-global}--Color--100);
7
- --#{$radio}__label--FontWeight: var(--#{$pf-global}--FontWeight--normal);
8
- --#{$radio}__label--FontSize: var(--#{$pf-global}--FontSize--md);
9
- --#{$radio}__label--LineHeight: var(--#{$pf-global}--LineHeight--md);
10
- --#{$radio}__input--TranslateY: calc((var(--pf-v5-c-radio__label--LineHeight) * var(--pf-v5-c-radio__label--FontSize) / 2 ) - 50%); // find height of single label, divide by two, offset by 50% of own height
11
- --#{$radio}__input--TranslateY--moz: var(--#{$radio}__input--TranslateY); // remove at breaking change
5
+ --#{$radio}--GridGap: var(--pf-t--global--spacer--sm) var(--pf-t--global--spacer--sm);
6
+ --#{$radio}--AccentColor: var(--pf-t--global--icon--color--brand--default);
7
+ --#{$radio}__label--disabled--Color: var(--pf-t--global--text--color--disabled);
8
+ --#{$radio}__label--Color: var(--pf-t--global--text--color--regular);
9
+ --#{$radio}__label--FontWeight: var(--pf-t--global--font--weight--body);
10
+ --#{$radio}__label--FontSize: var(--pf-t--global--font--size--body--default);
11
+ --#{$radio}__label--LineHeight: var(--pf-t--global--font--line-height--body);
12
+ --#{$radio}__input--TranslateY: calc((var(--#{$radio}__label--LineHeight) * var(--#{$radio}__label--FontSize) / 2 ) - 50%); // find height of single label, divide by two, offset by 50% of own height
12
13
  --#{$radio}__input--first-child--MarginLeft: #{pf-size-prem(1px)};
13
14
  --#{$radio}__input--last-child--MarginRight: #{pf-size-prem(1px)};
14
- --#{$radio}__description--FontSize: var(--#{$pf-global}--FontSize--sm);
15
- --#{$radio}__description--Color: var(--#{$pf-global}--Color--200);
16
- --#{$radio}__body--MarginTop: var(--#{$pf-global}--spacer--sm);
15
+ --#{$radio}__description--FontSize: var(--pf-t--global--font--size--body--sm);
16
+ --#{$radio}__description--Color: var(--pf-t--global--text--color--subtle);
17
+ --#{$radio}__body--MarginTop: var(--pf-t--global--spacer--sm);
18
+ }
17
19
 
20
+ .#{$radio} {
18
21
  display: grid;
19
22
  grid-template-columns: auto 1fr;
20
23
  grid-gap: var(--#{$radio}--GridGap);
21
24
  align-items: baseline;
25
+ accent-color: var(--#{$radio}--AccentColor);
22
26
 
23
27
  &.pf-m-standalone {
24
28
  --#{$radio}--GridGap: 0;
@@ -31,10 +35,6 @@
31
35
  .#{$radio}__input {
32
36
  align-self: start;
33
37
 
34
- // stylelint-disable property-no-vendor-prefix
35
- -moz-transform: translateY(var(--#{$radio}__input--TranslateY--moz)); // remove at breaking change - no longer needed
36
- // stylelint-enable
37
-
38
38
  // find height of single label, divide by two, offset by 50% of own height
39
39
  transform: translateY(var(--#{$radio}__input--TranslateY));
40
40
 
@@ -5,7 +5,7 @@
5
5
  --pf-v5-c-simple-list__item-link--PaddingLeft: var(--pf-t--global--spacer--md);
6
6
  --pf-v5-c-simple-list__item-link--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
7
7
  --pf-v5-c-simple-list__item-link--Color: var(--pf-t--global--text--color--subtle);
8
- --pf-v5-c-simple-list__item-link--FontSize: var(--pf-t--global--font--size--body);
8
+ --pf-v5-c-simple-list__item-link--FontSize: var(--pf-t--global--font--size--body--default);
9
9
  --pf-v5-c-simple-list__item-link--m-current--Color: var(--pf-t--global--text--color--regular);
10
10
  --pf-v5-c-simple-list__item-link--m-current--BackgroundColor: var(--pf-t--global--background--color--action--plain--selected);
11
11
  --pf-v5-c-simple-list__item-link--hover--Color: var(--pf-t--global--text--color--subtle);
@@ -8,7 +8,7 @@
8
8
  --#{$simple-list}__item-link--PaddingLeft: var(--pf-t--global--spacer--md);
9
9
  --#{$simple-list}__item-link--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
10
10
  --#{$simple-list}__item-link--Color: var(--pf-t--global--text--color--subtle);
11
- --#{$simple-list}__item-link--FontSize: var(--pf-t--global--font--size--body);
11
+ --#{$simple-list}__item-link--FontSize: var(--pf-t--global--font--size--body--default);
12
12
  --#{$simple-list}__item-link--m-current--Color: var(--pf-t--global--text--color--regular);
13
13
  --#{$simple-list}__item-link--m-current--BackgroundColor: var(--pf-t--global--background--color--action--plain--selected);
14
14
  --#{$simple-list}__item-link--hover--Color: var(--pf-t--global--text--color--subtle);
@@ -18,7 +18,7 @@ cssPrefix: pf-v5-c-form
18
18
  role="button"
19
19
  type="button"
20
20
  tabindex="0"
21
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
21
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
22
22
  </div>
23
23
  <div class="pf-v5-c-form__group-control">
24
24
  <span class="pf-v5-c-form-control pf-m-required">
@@ -63,7 +63,7 @@ cssPrefix: pf-v5-c-form
63
63
  role="button"
64
64
  type="button"
65
65
  tabindex="0"
66
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
66
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
67
67
  </div>
68
68
  <div class="pf-v5-c-form__group-control">
69
69
  <span class="pf-v5-c-form-control">
@@ -92,7 +92,7 @@ cssPrefix: pf-v5-c-form
92
92
  role="button"
93
93
  type="button"
94
94
  tabindex="0"
95
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
95
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
96
96
  </div>
97
97
  <div class="pf-v5-c-form__group-control pf-m-stack">
98
98
  <div class="pf-v5-c-check">
@@ -143,7 +143,7 @@ cssPrefix: pf-v5-c-form
143
143
  role="button"
144
144
  type="button"
145
145
  tabindex="0"
146
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
146
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
147
147
  </div>
148
148
  <div class="pf-v5-c-form__group-control">
149
149
  <span class="pf-v5-c-form-control pf-m-required">
@@ -277,6 +277,9 @@ cssPrefix: pf-v5-c-form
277
277
  class="pf-v5-c-helper-text__item"
278
278
  id="form-help-text-name-helper"
279
279
  >
280
+ <span class="pf-v5-c-helper-text__item-icon">
281
+ <i class="fas fa-fw fa-minus" aria-hidden="true"></i>
282
+ </span>
280
283
  <span class="pf-v5-c-helper-text__item-text">This is helper text.</span>
281
284
  </div>
282
285
  </div>
@@ -308,6 +311,9 @@ cssPrefix: pf-v5-c-form
308
311
  class="pf-v5-c-helper-text__item pf-m-warning"
309
312
  id="form-help-text-email-helper"
310
313
  >
314
+ <span class="pf-v5-c-helper-text__item-icon">
315
+ <i class="fas fa-fw fa-exclamation-triangle" aria-hidden="true"></i>
316
+ </span>
311
317
  <span
312
318
  class="pf-v5-c-helper-text__item-text"
313
319
  >This is helper text for a warning input.</span>
@@ -342,6 +348,9 @@ cssPrefix: pf-v5-c-form
342
348
  class="pf-v5-c-helper-text__item pf-m-error"
343
349
  id="-address-helper"
344
350
  >
351
+ <span class="pf-v5-c-helper-text__item-icon">
352
+ <i class="fas fa-fw fa-exclamation-circle" aria-hidden="true"></i>
353
+ </span>
345
354
  <span
346
355
  class="pf-v5-c-helper-text__item-text"
347
356
  >This is helper text for an invalid input.</span>
@@ -375,6 +384,9 @@ cssPrefix: pf-v5-c-form
375
384
  class="pf-v5-c-helper-text__item pf-m-success"
376
385
  id="form-help-text-comment-helper"
377
386
  >
387
+ <span class="pf-v5-c-helper-text__item-icon">
388
+ <i class="fas fa-fw fa-check-circle" aria-hidden="true"></i>
389
+ </span>
378
390
  <span
379
391
  class="pf-v5-c-helper-text__item-text"
380
392
  >This is helper text for success input.</span>
@@ -436,7 +448,7 @@ cssPrefix: pf-v5-c-form
436
448
  role="button"
437
449
  type="button"
438
450
  tabindex="0"
439
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
451
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
440
452
  </div>
441
453
  <div class="pf-v5-c-form__group-label-info">info</div>
442
454
  </div>
@@ -507,7 +519,7 @@ cssPrefix: pf-v5-c-form
507
519
  role="button"
508
520
  type="button"
509
521
  tabindex="0"
510
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
522
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
511
523
  </div>
512
524
  <div class="pf-v5-c-form__group-control">
513
525
  <span class="pf-v5-c-form-control pf-m-required">
@@ -532,7 +544,7 @@ cssPrefix: pf-v5-c-form
532
544
  role="button"
533
545
  type="button"
534
546
  tabindex="0"
535
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
547
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
536
548
  </div>
537
549
  <div class="pf-v5-c-form__group-control">
538
550
  <span class="pf-v5-c-form-control pf-m-required">
@@ -640,7 +652,7 @@ cssPrefix: pf-v5-c-form
640
652
  role="button"
641
653
  type="button"
642
654
  tabindex="0"
643
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
655
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
644
656
  </div>
645
657
  <div class="pf-v5-c-form__group-control">
646
658
  <span class="pf-v5-c-form-control pf-m-required">
@@ -665,7 +677,7 @@ cssPrefix: pf-v5-c-form
665
677
  role="button"
666
678
  type="button"
667
679
  tabindex="0"
668
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
680
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
669
681
  </div>
670
682
  <div class="pf-v5-c-form__group-control">
671
683
  <span class="pf-v5-c-form-control pf-m-required">
@@ -709,7 +721,7 @@ cssPrefix: pf-v5-c-form
709
721
  role="button"
710
722
  type="button"
711
723
  tabindex="0"
712
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
724
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
713
725
  </div>
714
726
  <div class="pf-v5-c-form__group-control">
715
727
  <span class="pf-v5-c-form-control pf-m-required">
@@ -737,7 +749,7 @@ cssPrefix: pf-v5-c-form
737
749
  role="button"
738
750
  type="button"
739
751
  tabindex="0"
740
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
752
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
741
753
  </div>
742
754
  <div class="pf-v5-c-form__group-control">
743
755
  <span class="pf-v5-c-form-control pf-m-required">
@@ -15,6 +15,17 @@ cssPrefix: pf-v5-c-panel
15
15
 
16
16
  ```
17
17
 
18
+ ### Secondary
19
+
20
+ ```html
21
+ <div class="pf-v5-c-panel pf-m-secondary">
22
+ <div class="pf-v5-c-panel__main">
23
+ <div class="pf-v5-c-panel__main-body">Main content with secondary styling</div>
24
+ </div>
25
+ </div>
26
+
27
+ ```
28
+
18
29
  ### Header
19
30
 
20
31
  ```html
@@ -160,3 +171,4 @@ cssPrefix: pf-v5-c-panel
160
171
  | `.pf-m-bordered` | `.pf-v5-c-panel` | Modifies the panel for bordered styles. |
161
172
  | `.pf-m-raised` | `.pf-v5-c-panel` | Modifies the panel for raised styles. |
162
173
  | `.pf-m-scrollable` | `.pf-v5-c-panel` | Modifies the panel for scrollable styles. |
174
+ | `.pf-m-secondary` | `.pf-v5-c-panel` | Modifies the panel for secondary styles. |
@@ -691,6 +691,12 @@ section: components
691
691
  class="pf-v5-c-helper-text__item pf-m-error"
692
692
  id="alert-horizontal-example-form-name-helper"
693
693
  >
694
+ <span class="pf-v5-c-helper-text__item-icon">
695
+ <i
696
+ class="fas fa-fw fa-exclamation-circle"
697
+ aria-hidden="true"
698
+ ></i>
699
+ </span>
694
700
  <span class="pf-v5-c-helper-text__item-text">Required field</span>
695
701
  </div>
696
702
  </div>
@@ -751,6 +757,12 @@ section: components
751
757
  class="pf-v5-c-helper-text__item pf-m-error"
752
758
  id="alert-horizontal-example-form-phone-helper"
753
759
  >
760
+ <span class="pf-v5-c-helper-text__item-icon">
761
+ <i
762
+ class="fas fa-fw fa-exclamation-circle"
763
+ aria-hidden="true"
764
+ ></i>
765
+ </span>
754
766
  <span class="pf-v5-c-helper-text__item-text">Required field</span>
755
767
  </div>
756
768
  </div>
@@ -1148,6 +1160,12 @@ section: components
1148
1160
  class="pf-v5-c-helper-text__item pf-m-error"
1149
1161
  id="alert-stacked-example-form-name-helper"
1150
1162
  >
1163
+ <span class="pf-v5-c-helper-text__item-icon">
1164
+ <i
1165
+ class="fas fa-fw fa-exclamation-circle"
1166
+ aria-hidden="true"
1167
+ ></i>
1168
+ </span>
1151
1169
  <span class="pf-v5-c-helper-text__item-text">Required field</span>
1152
1170
  </div>
1153
1171
  </div>
@@ -1181,6 +1199,9 @@ section: components
1181
1199
  class="pf-v5-c-helper-text__item pf-m-error"
1182
1200
  id="alert-stacked-example-form-email-helper"
1183
1201
  >
1202
+ <span class="pf-v5-c-helper-text__item-icon">
1203
+ <i class="fas fa-fw fa-exclamation-circle" aria-hidden="true"></i>
1204
+ </span>
1184
1205
  <span
1185
1206
  class="pf-v5-c-helper-text__item-text"
1186
1207
  >Enter a valid email address: example@gmail.com</span>
@@ -1232,6 +1253,9 @@ section: components
1232
1253
  class="pf-v5-c-helper-text__item pf-m-error"
1233
1254
  id="alert-stacked-example-form-state-helper"
1234
1255
  >
1256
+ <span class="pf-v5-c-helper-text__item-icon">
1257
+ <i class="fas fa-fw fa-exclamation-circle" aria-hidden="true"></i>
1258
+ </span>
1235
1259
  <span class="pf-v5-c-helper-text__item-text">Required field</span>
1236
1260
  </div>
1237
1261
  </div>
@@ -26,6 +26,9 @@ subsection: forms
26
26
  <div class="pf-v5-c-form__helper-text" aria-live="polite">
27
27
  <div class="pf-v5-c-helper-text">
28
28
  <div class="pf-v5-c-helper-text__item" id="-name-helper">
29
+ <span class="pf-v5-c-helper-text__item-icon">
30
+ <i class="fas fa-fw fa-minus" aria-hidden="true"></i>
31
+ </span>
29
32
  <span
30
33
  class="pf-v5-c-helper-text__item-text"
31
34
  >Include your middle name if you have one.</span>
@@ -53,7 +56,7 @@ subsection: forms
53
56
  role="button"
54
57
  type="button"
55
58
  tabindex="0"
56
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
59
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
57
60
  </div>
58
61
  <div class="pf-v5-c-form__group-control">
59
62
  <span class="pf-v5-c-form-control pf-m-required">
@@ -188,6 +191,9 @@ subsection: forms
188
191
  class="pf-v5-c-helper-text__item"
189
192
  id="form-demo-horizontal-name-helper"
190
193
  >
194
+ <span class="pf-v5-c-helper-text__item-icon">
195
+ <i class="fas fa-fw fa-minus" aria-hidden="true"></i>
196
+ </span>
191
197
  <span
192
198
  class="pf-v5-c-helper-text__item-text"
193
199
  >Include your middle name if you have one.</span>
@@ -241,7 +247,7 @@ subsection: forms
241
247
  role="button"
242
248
  type="button"
243
249
  tabindex="0"
244
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
250
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
245
251
  </div>
246
252
  <div class="pf-v5-c-form__group-control pf-m-stack">
247
253
  <div class="pf-v5-c-check">
@@ -320,6 +326,9 @@ subsection: forms
320
326
  <div class="pf-v5-c-form__helper-text" aria-live="polite">
321
327
  <div class="pf-v5-c-helper-text">
322
328
  <div class="pf-v5-c-helper-text__item" id="-helper">
329
+ <span class="pf-v5-c-helper-text__item-icon">
330
+ <i class="fas fa-fw fa-minus" aria-hidden="true"></i>
331
+ </span>
323
332
  <span
324
333
  class="pf-v5-c-helper-text__item-text"
325
334
  >Include your middle name if you have one.</span>
@@ -504,7 +513,7 @@ subsection: forms
504
513
  role="button"
505
514
  type="button"
506
515
  tabindex="0"
507
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
516
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
508
517
  </div>
509
518
  <div class="pf-v5-c-form__group-control">
510
519
  <span class="pf-v5-c-form-control pf-m-required">
@@ -529,7 +538,7 @@ subsection: forms
529
538
  role="button"
530
539
  type="button"
531
540
  tabindex="0"
532
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
541
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
533
542
  </div>
534
543
  <div class="pf-v5-c-form__group-control">
535
544
  <span class="pf-v5-c-form-control pf-m-required">
@@ -554,7 +563,7 @@ subsection: forms
554
563
  role="button"
555
564
  type="button"
556
565
  tabindex="0"
557
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
566
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
558
567
  </div>
559
568
  <div class="pf-v5-c-form__group-control">
560
569
  <span class="pf-v5-c-form-control pf-m-required">
@@ -590,7 +599,7 @@ subsection: forms
590
599
  role="button"
591
600
  type="button"
592
601
  tabindex="0"
593
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
602
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
594
603
  </div>
595
604
  <div class="pf-v5-c-form__group-control">
596
605
  <span class="pf-v5-c-form-control pf-m-required">
@@ -615,7 +624,7 @@ subsection: forms
615
624
  role="button"
616
625
  type="button"
617
626
  tabindex="0"
618
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
627
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
619
628
  </div>
620
629
  <div class="pf-v5-c-form__group-control pf-m-stack">
621
630
  <div class="pf-v5-c-input-group">
@@ -704,7 +713,7 @@ subsection: forms
704
713
  role="button"
705
714
  type="button"
706
715
  tabindex="0"
707
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
716
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
708
717
  </div>
709
718
  <div class="pf-v5-c-form__group-control">
710
719
  <span class="pf-v5-c-form-control pf-m-required">
@@ -738,7 +747,7 @@ subsection: forms
738
747
  role="button"
739
748
  type="button"
740
749
  tabindex="0"
741
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
750
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
742
751
  </div>
743
752
  <div class="pf-v5-c-form__group-control">
744
753
  <span class="pf-v5-c-form-control pf-m-required">
@@ -764,7 +773,7 @@ subsection: forms
764
773
  role="button"
765
774
  type="button"
766
775
  tabindex="0"
767
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
776
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
768
777
  </div>
769
778
  <div class="pf-v5-c-form__group-control">
770
779
  <div
@@ -1207,6 +1216,9 @@ subsection: forms
1207
1216
  class="pf-v5-c-helper-text__item"
1208
1217
  id="form-demo-sections-complex-form-routing-create-route-helper"
1209
1218
  >
1219
+ <span class="pf-v5-c-helper-text__item-icon">
1220
+ <i class="fas fa-fw fa-minus" aria-hidden="true"></i>
1221
+ </span>
1210
1222
  <span
1211
1223
  class="pf-v5-c-helper-text__item-text"
1212
1224
  >Exposes your appplication at a public URL.</span>
@@ -1237,6 +1249,9 @@ subsection: forms
1237
1249
  class="pf-v5-c-helper-text__item"
1238
1250
  id="form-demo-sections-complex-form-routing-hostname-helper"
1239
1251
  >
1252
+ <span class="pf-v5-c-helper-text__item-icon">
1253
+ <i class="fas fa-fw fa-minus" aria-hidden="true"></i>
1254
+ </span>
1240
1255
  <span
1241
1256
  class="pf-v5-c-helper-text__item-text"
1242
1257
  >Public hostname for the route. If not specified, a hostname is generated.</span>
@@ -1269,6 +1284,9 @@ subsection: forms
1269
1284
  class="pf-v5-c-helper-text__item"
1270
1285
  id="form-demo-sections-complex-form-routing-path-helper"
1271
1286
  >
1287
+ <span class="pf-v5-c-helper-text__item-icon">
1288
+ <i class="fas fa-fw fa-minus" aria-hidden="true"></i>
1289
+ </span>
1272
1290
  <span
1273
1291
  class="pf-v5-c-helper-text__item-text"
1274
1292
  >Path that the router watches to route traffic to the service.</span>
@@ -1311,6 +1329,9 @@ subsection: forms
1311
1329
  class="pf-v5-c-helper-text__item"
1312
1330
  id="form-demo-sections-complex-form-routing-security-helper"
1313
1331
  >
1332
+ <span class="pf-v5-c-helper-text__item-icon">
1333
+ <i class="fas fa-fw fa-minus" aria-hidden="true"></i>
1334
+ </span>
1314
1335
  <span
1315
1336
  class="pf-v5-c-helper-text__item-text"
1316
1337
  >Routes can be secured using several TLS termination types for serving certificates.</span>
@@ -2067,7 +2067,7 @@ section: components
2067
2067
  role="button"
2068
2068
  type="button"
2069
2069
  tabindex="0"
2070
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
2070
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
2071
2071
  </div>
2072
2072
  <div class="pf-v5-c-form__group-control">
2073
2073
  <span class="pf-v5-c-form-control pf-m-required">
@@ -2087,7 +2087,7 @@ section: components
2087
2087
  role="button"
2088
2088
  type="button"
2089
2089
  tabindex="0"
2090
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
2090
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
2091
2091
  </div>
2092
2092
  <div class="pf-v5-c-form__group-control">
2093
2093
  <span class="pf-v5-c-form-control pf-m-required">
@@ -2107,7 +2107,7 @@ section: components
2107
2107
  role="button"
2108
2108
  type="button"
2109
2109
  tabindex="0"
2110
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
2110
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
2111
2111
  </div>
2112
2112
  <div class="pf-v5-c-form__group-control">
2113
2113
  <span class="pf-v5-c-form-control pf-m-required">
@@ -20,7 +20,7 @@ section: components
20
20
  role="button"
21
21
  type="button"
22
22
  tabindex="0"
23
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
23
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
24
24
  </div>
25
25
  <div class="pf-v5-c-form__group-label-info"></div>
26
26
  </div>
@@ -20,7 +20,7 @@ section: components
20
20
  role="button"
21
21
  type="button"
22
22
  tabindex="0"
23
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
23
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
24
24
  </div>
25
25
  <div class="pf-v5-c-form__group-label-info"></div>
26
26
  </div>
@@ -106,7 +106,7 @@ section: components
106
106
  role="button"
107
107
  type="button"
108
108
  tabindex="0"
109
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
109
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
110
110
  </div>
111
111
  <div class="pf-v5-c-form__group-label-info"></div>
112
112
  </div>
@@ -186,7 +186,7 @@ section: components
186
186
  role="button"
187
187
  type="button"
188
188
  tabindex="0"
189
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
189
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
190
190
  </div>
191
191
  <div class="pf-v5-c-form__group-label-info">
192
192
  <div class="pf-v5-c-helper-text">
@@ -275,7 +275,7 @@ section: components
275
275
  role="button"
276
276
  type="button"
277
277
  tabindex="0"
278
- ><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
278
+ ><i class="fas fa-question-circle" aria-hidden="true"></i></span>
279
279
  </div>
280
280
  <div class="pf-v5-c-form__group-label-info">
281
281
  <div class="pf-v5-c-helper-text">
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@patternfly/patternfly",
3
3
  "description": "Assets, source, tooling, and content for PatternFly 4",
4
- "version": "6.0.0-alpha.44",
4
+ "version": "6.0.0-alpha.46",
5
5
  "keywords": [],
6
6
  "license": "MIT",
7
7
  "scripts": {