@patternfly/patternfly 5.1.0-prerelease.2 → 5.1.0-prerelease.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/AboutModalBox/about-modal-box.css +2 -1
- package/components/AboutModalBox/about-modal-box.scss +2 -1
- package/components/TreeView/tree-view.scss +1 -1
- package/docs/components/Badge/examples/Badge.md +16 -4
- package/docs/components/Wizard/examples/Wizard.md +75 -36
- package/docs/demos/Wizard/examples/Wizard.md +191 -41
- package/package.json +1 -1
- package/patternfly-no-globals.css +2 -1
- package/patternfly-theme-dark-unversioned.css +2 -1
- package/patternfly.css +2 -1
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -284,33 +284,48 @@ wrapperTag: div
|
|
|
284
284
|
<nav class="pf-v5-c-wizard__nav" aria-label="Steps">
|
|
285
285
|
<ol class="pf-v5-c-wizard__nav-list" role="list">
|
|
286
286
|
<li class="pf-v5-c-wizard__nav-item">
|
|
287
|
-
<button
|
|
287
|
+
<button
|
|
288
|
+
class="pf-v5-c-wizard__nav-link"
|
|
289
|
+
type="button"
|
|
290
|
+
>Information</button>
|
|
288
291
|
</li>
|
|
289
292
|
<li class="pf-v5-c-wizard__nav-item">
|
|
290
293
|
<button
|
|
291
294
|
class="pf-v5-c-wizard__nav-link pf-m-current"
|
|
295
|
+
type="button"
|
|
292
296
|
>Configuration</button>
|
|
293
297
|
<ol class="pf-v5-c-wizard__nav-list" role="list">
|
|
294
298
|
<li class="pf-v5-c-wizard__nav-item">
|
|
295
|
-
<button
|
|
299
|
+
<button
|
|
300
|
+
class="pf-v5-c-wizard__nav-link"
|
|
301
|
+
type="button"
|
|
302
|
+
>Substep A</button>
|
|
296
303
|
</li>
|
|
297
304
|
<li class="pf-v5-c-wizard__nav-item">
|
|
298
305
|
<button
|
|
299
306
|
class="pf-v5-c-wizard__nav-link pf-m-current"
|
|
307
|
+
type="button"
|
|
300
308
|
aria-current="page"
|
|
301
309
|
>Substep B</button>
|
|
302
310
|
</li>
|
|
303
311
|
<li class="pf-v5-c-wizard__nav-item">
|
|
304
|
-
<button
|
|
312
|
+
<button
|
|
313
|
+
class="pf-v5-c-wizard__nav-link"
|
|
314
|
+
type="button"
|
|
315
|
+
>Substep C</button>
|
|
305
316
|
</li>
|
|
306
317
|
</ol>
|
|
307
318
|
</li>
|
|
308
319
|
<li class="pf-v5-c-wizard__nav-item">
|
|
309
|
-
<button
|
|
320
|
+
<button
|
|
321
|
+
class="pf-v5-c-wizard__nav-link"
|
|
322
|
+
type="button"
|
|
323
|
+
>Additional</button>
|
|
310
324
|
</li>
|
|
311
325
|
<li class="pf-v5-c-wizard__nav-item">
|
|
312
326
|
<button
|
|
313
327
|
class="pf-v5-c-wizard__nav-link pf-m-disabled"
|
|
328
|
+
type="button"
|
|
314
329
|
aria-disabled="true"
|
|
315
330
|
tabindex="-1"
|
|
316
331
|
>Review</button>
|
|
@@ -759,33 +774,48 @@ wrapperTag: div
|
|
|
759
774
|
<nav class="pf-v5-c-wizard__nav pf-m-expanded" aria-label="Steps">
|
|
760
775
|
<ol class="pf-v5-c-wizard__nav-list" role="list">
|
|
761
776
|
<li class="pf-v5-c-wizard__nav-item">
|
|
762
|
-
<button
|
|
777
|
+
<button
|
|
778
|
+
class="pf-v5-c-wizard__nav-link"
|
|
779
|
+
type="button"
|
|
780
|
+
>Information</button>
|
|
763
781
|
</li>
|
|
764
782
|
<li class="pf-v5-c-wizard__nav-item">
|
|
765
783
|
<button
|
|
766
784
|
class="pf-v5-c-wizard__nav-link pf-m-current"
|
|
785
|
+
type="button"
|
|
767
786
|
>Configuration</button>
|
|
768
787
|
<ol class="pf-v5-c-wizard__nav-list" role="list">
|
|
769
788
|
<li class="pf-v5-c-wizard__nav-item">
|
|
770
|
-
<button
|
|
789
|
+
<button
|
|
790
|
+
class="pf-v5-c-wizard__nav-link"
|
|
791
|
+
type="button"
|
|
792
|
+
>Substep A</button>
|
|
771
793
|
</li>
|
|
772
794
|
<li class="pf-v5-c-wizard__nav-item">
|
|
773
795
|
<button
|
|
774
796
|
class="pf-v5-c-wizard__nav-link pf-m-current"
|
|
797
|
+
type="button"
|
|
775
798
|
aria-current="page"
|
|
776
799
|
>Substep B</button>
|
|
777
800
|
</li>
|
|
778
801
|
<li class="pf-v5-c-wizard__nav-item">
|
|
779
|
-
<button
|
|
802
|
+
<button
|
|
803
|
+
class="pf-v5-c-wizard__nav-link"
|
|
804
|
+
type="button"
|
|
805
|
+
>Substep C</button>
|
|
780
806
|
</li>
|
|
781
807
|
</ol>
|
|
782
808
|
</li>
|
|
783
809
|
<li class="pf-v5-c-wizard__nav-item">
|
|
784
|
-
<button
|
|
810
|
+
<button
|
|
811
|
+
class="pf-v5-c-wizard__nav-link"
|
|
812
|
+
type="button"
|
|
813
|
+
>Additional</button>
|
|
785
814
|
</li>
|
|
786
815
|
<li class="pf-v5-c-wizard__nav-item">
|
|
787
816
|
<button
|
|
788
817
|
class="pf-v5-c-wizard__nav-link pf-m-disabled"
|
|
818
|
+
type="button"
|
|
789
819
|
aria-disabled="true"
|
|
790
820
|
tabindex="-1"
|
|
791
821
|
>Review</button>
|
|
@@ -1216,32 +1246,50 @@ wrapperTag: div
|
|
|
1216
1246
|
<nav class="pf-v5-c-wizard__nav" aria-label="Steps">
|
|
1217
1247
|
<ol class="pf-v5-c-wizard__nav-list" role="list">
|
|
1218
1248
|
<li class="pf-v5-c-wizard__nav-item">
|
|
1219
|
-
<button
|
|
1249
|
+
<button
|
|
1250
|
+
class="pf-v5-c-wizard__nav-link"
|
|
1251
|
+
type="button"
|
|
1252
|
+
>Information</button>
|
|
1220
1253
|
</li>
|
|
1221
1254
|
<li class="pf-v5-c-wizard__nav-item">
|
|
1222
1255
|
<button
|
|
1223
1256
|
class="pf-v5-c-wizard__nav-link pf-m-current"
|
|
1257
|
+
type="button"
|
|
1224
1258
|
>Configuration</button>
|
|
1225
1259
|
<ol class="pf-v5-c-wizard__nav-list" role="list">
|
|
1226
1260
|
<li class="pf-v5-c-wizard__nav-item">
|
|
1227
|
-
<button
|
|
1261
|
+
<button
|
|
1262
|
+
class="pf-v5-c-wizard__nav-link"
|
|
1263
|
+
type="button"
|
|
1264
|
+
>Substep A</button>
|
|
1228
1265
|
</li>
|
|
1229
1266
|
<li class="pf-v5-c-wizard__nav-item">
|
|
1230
1267
|
<button
|
|
1231
1268
|
class="pf-v5-c-wizard__nav-link pf-m-current"
|
|
1269
|
+
type="button"
|
|
1232
1270
|
aria-current="page"
|
|
1233
1271
|
>Substep B</button>
|
|
1234
1272
|
</li>
|
|
1235
1273
|
<li class="pf-v5-c-wizard__nav-item">
|
|
1236
|
-
<button
|
|
1274
|
+
<button
|
|
1275
|
+
class="pf-v5-c-wizard__nav-link"
|
|
1276
|
+
type="button"
|
|
1277
|
+
>Substep C</button>
|
|
1237
1278
|
</li>
|
|
1238
1279
|
</ol>
|
|
1239
1280
|
</li>
|
|
1240
1281
|
<li class="pf-v5-c-wizard__nav-item">
|
|
1241
|
-
<button
|
|
1282
|
+
<button
|
|
1283
|
+
class="pf-v5-c-wizard__nav-link"
|
|
1284
|
+
type="button"
|
|
1285
|
+
>Additional</button>
|
|
1242
1286
|
</li>
|
|
1243
1287
|
<li class="pf-v5-c-wizard__nav-item">
|
|
1244
|
-
<button
|
|
1288
|
+
<button
|
|
1289
|
+
class="pf-v5-c-wizard__nav-link"
|
|
1290
|
+
type="button"
|
|
1291
|
+
disabled
|
|
1292
|
+
>Review</button>
|
|
1245
1293
|
</li>
|
|
1246
1294
|
</ol>
|
|
1247
1295
|
</nav>
|
|
@@ -1754,32 +1802,50 @@ wrapperTag: div
|
|
|
1754
1802
|
<nav class="pf-v5-c-wizard__nav" aria-label="Steps">
|
|
1755
1803
|
<ol class="pf-v5-c-wizard__nav-list" role="list">
|
|
1756
1804
|
<li class="pf-v5-c-wizard__nav-item">
|
|
1757
|
-
<button
|
|
1805
|
+
<button
|
|
1806
|
+
class="pf-v5-c-wizard__nav-link"
|
|
1807
|
+
type="button"
|
|
1808
|
+
>Information</button>
|
|
1758
1809
|
</li>
|
|
1759
1810
|
<li class="pf-v5-c-wizard__nav-item">
|
|
1760
1811
|
<button
|
|
1761
1812
|
class="pf-v5-c-wizard__nav-link pf-m-current"
|
|
1813
|
+
type="button"
|
|
1762
1814
|
>Configuration</button>
|
|
1763
1815
|
<ol class="pf-v5-c-wizard__nav-list" role="list">
|
|
1764
1816
|
<li class="pf-v5-c-wizard__nav-item">
|
|
1765
|
-
<button
|
|
1817
|
+
<button
|
|
1818
|
+
class="pf-v5-c-wizard__nav-link"
|
|
1819
|
+
type="button"
|
|
1820
|
+
>Substep A</button>
|
|
1766
1821
|
</li>
|
|
1767
1822
|
<li class="pf-v5-c-wizard__nav-item">
|
|
1768
1823
|
<button
|
|
1769
1824
|
class="pf-v5-c-wizard__nav-link pf-m-current"
|
|
1825
|
+
type="button"
|
|
1770
1826
|
aria-current="page"
|
|
1771
1827
|
>Substep B</button>
|
|
1772
1828
|
</li>
|
|
1773
1829
|
<li class="pf-v5-c-wizard__nav-item">
|
|
1774
|
-
<button
|
|
1830
|
+
<button
|
|
1831
|
+
class="pf-v5-c-wizard__nav-link"
|
|
1832
|
+
type="button"
|
|
1833
|
+
>Substep C</button>
|
|
1775
1834
|
</li>
|
|
1776
1835
|
</ol>
|
|
1777
1836
|
</li>
|
|
1778
1837
|
<li class="pf-v5-c-wizard__nav-item">
|
|
1779
|
-
<button
|
|
1838
|
+
<button
|
|
1839
|
+
class="pf-v5-c-wizard__nav-link"
|
|
1840
|
+
type="button"
|
|
1841
|
+
>Additional</button>
|
|
1780
1842
|
</li>
|
|
1781
1843
|
<li class="pf-v5-c-wizard__nav-item">
|
|
1782
|
-
<button
|
|
1844
|
+
<button
|
|
1845
|
+
class="pf-v5-c-wizard__nav-link"
|
|
1846
|
+
type="button"
|
|
1847
|
+
disabled
|
|
1848
|
+
>Review</button>
|
|
1783
1849
|
</li>
|
|
1784
1850
|
</ol>
|
|
1785
1851
|
</nav>
|
|
@@ -2291,32 +2357,50 @@ wrapperTag: div
|
|
|
2291
2357
|
<nav class="pf-v5-c-wizard__nav" aria-label="Steps">
|
|
2292
2358
|
<ol class="pf-v5-c-wizard__nav-list" role="list">
|
|
2293
2359
|
<li class="pf-v5-c-wizard__nav-item">
|
|
2294
|
-
<button
|
|
2360
|
+
<button
|
|
2361
|
+
class="pf-v5-c-wizard__nav-link"
|
|
2362
|
+
type="button"
|
|
2363
|
+
>Information</button>
|
|
2295
2364
|
</li>
|
|
2296
2365
|
<li class="pf-v5-c-wizard__nav-item">
|
|
2297
2366
|
<button
|
|
2298
2367
|
class="pf-v5-c-wizard__nav-link pf-m-current"
|
|
2368
|
+
type="button"
|
|
2299
2369
|
>Configuration</button>
|
|
2300
2370
|
<ol class="pf-v5-c-wizard__nav-list" role="list">
|
|
2301
2371
|
<li class="pf-v5-c-wizard__nav-item">
|
|
2302
|
-
<button
|
|
2372
|
+
<button
|
|
2373
|
+
class="pf-v5-c-wizard__nav-link"
|
|
2374
|
+
type="button"
|
|
2375
|
+
>Substep A</button>
|
|
2303
2376
|
</li>
|
|
2304
2377
|
<li class="pf-v5-c-wizard__nav-item">
|
|
2305
2378
|
<button
|
|
2306
2379
|
class="pf-v5-c-wizard__nav-link pf-m-current"
|
|
2380
|
+
type="button"
|
|
2307
2381
|
aria-current="page"
|
|
2308
2382
|
>Substep B</button>
|
|
2309
2383
|
</li>
|
|
2310
2384
|
<li class="pf-v5-c-wizard__nav-item">
|
|
2311
|
-
<button
|
|
2385
|
+
<button
|
|
2386
|
+
class="pf-v5-c-wizard__nav-link"
|
|
2387
|
+
type="button"
|
|
2388
|
+
>Substep C</button>
|
|
2312
2389
|
</li>
|
|
2313
2390
|
</ol>
|
|
2314
2391
|
</li>
|
|
2315
2392
|
<li class="pf-v5-c-wizard__nav-item">
|
|
2316
|
-
<button
|
|
2393
|
+
<button
|
|
2394
|
+
class="pf-v5-c-wizard__nav-link"
|
|
2395
|
+
type="button"
|
|
2396
|
+
>Additional</button>
|
|
2317
2397
|
</li>
|
|
2318
2398
|
<li class="pf-v5-c-wizard__nav-item">
|
|
2319
|
-
<button
|
|
2399
|
+
<button
|
|
2400
|
+
class="pf-v5-c-wizard__nav-link"
|
|
2401
|
+
type="button"
|
|
2402
|
+
disabled
|
|
2403
|
+
>Review</button>
|
|
2320
2404
|
</li>
|
|
2321
2405
|
</ol>
|
|
2322
2406
|
</nav>
|
|
@@ -2634,33 +2718,48 @@ wrapperTag: div
|
|
|
2634
2718
|
<nav class="pf-v5-c-wizard__nav" aria-label="Steps">
|
|
2635
2719
|
<ol class="pf-v5-c-wizard__nav-list" role="list">
|
|
2636
2720
|
<li class="pf-v5-c-wizard__nav-item">
|
|
2637
|
-
<button
|
|
2721
|
+
<button
|
|
2722
|
+
class="pf-v5-c-wizard__nav-link"
|
|
2723
|
+
type="button"
|
|
2724
|
+
>Information</button>
|
|
2638
2725
|
</li>
|
|
2639
2726
|
<li class="pf-v5-c-wizard__nav-item">
|
|
2640
2727
|
<button
|
|
2641
2728
|
class="pf-v5-c-wizard__nav-link pf-m-current"
|
|
2729
|
+
type="button"
|
|
2642
2730
|
>Configuration</button>
|
|
2643
2731
|
<ol class="pf-v5-c-wizard__nav-list" role="list">
|
|
2644
2732
|
<li class="pf-v5-c-wizard__nav-item">
|
|
2645
|
-
<button
|
|
2733
|
+
<button
|
|
2734
|
+
class="pf-v5-c-wizard__nav-link"
|
|
2735
|
+
type="button"
|
|
2736
|
+
>Substep A</button>
|
|
2646
2737
|
</li>
|
|
2647
2738
|
<li class="pf-v5-c-wizard__nav-item">
|
|
2648
2739
|
<button
|
|
2649
2740
|
class="pf-v5-c-wizard__nav-link pf-m-current"
|
|
2741
|
+
type="button"
|
|
2650
2742
|
aria-current="page"
|
|
2651
2743
|
>Substep B</button>
|
|
2652
2744
|
</li>
|
|
2653
2745
|
<li class="pf-v5-c-wizard__nav-item">
|
|
2654
|
-
<button
|
|
2746
|
+
<button
|
|
2747
|
+
class="pf-v5-c-wizard__nav-link"
|
|
2748
|
+
type="button"
|
|
2749
|
+
>Substep C</button>
|
|
2655
2750
|
</li>
|
|
2656
2751
|
</ol>
|
|
2657
2752
|
</li>
|
|
2658
2753
|
<li class="pf-v5-c-wizard__nav-item">
|
|
2659
|
-
<button
|
|
2754
|
+
<button
|
|
2755
|
+
class="pf-v5-c-wizard__nav-link"
|
|
2756
|
+
type="button"
|
|
2757
|
+
>Additional</button>
|
|
2660
2758
|
</li>
|
|
2661
2759
|
<li class="pf-v5-c-wizard__nav-item">
|
|
2662
2760
|
<button
|
|
2663
2761
|
class="pf-v5-c-wizard__nav-link pf-m-disabled"
|
|
2762
|
+
type="button"
|
|
2664
2763
|
aria-disabled="true"
|
|
2665
2764
|
tabindex="-1"
|
|
2666
2765
|
>Review</button>
|
|
@@ -3047,33 +3146,48 @@ wrapperTag: div
|
|
|
3047
3146
|
<nav class="pf-v5-c-wizard__nav pf-m-expanded" aria-label="Steps">
|
|
3048
3147
|
<ol class="pf-v5-c-wizard__nav-list" role="list">
|
|
3049
3148
|
<li class="pf-v5-c-wizard__nav-item">
|
|
3050
|
-
<button
|
|
3149
|
+
<button
|
|
3150
|
+
class="pf-v5-c-wizard__nav-link"
|
|
3151
|
+
type="button"
|
|
3152
|
+
>Information</button>
|
|
3051
3153
|
</li>
|
|
3052
3154
|
<li class="pf-v5-c-wizard__nav-item">
|
|
3053
3155
|
<button
|
|
3054
3156
|
class="pf-v5-c-wizard__nav-link pf-m-current"
|
|
3157
|
+
type="button"
|
|
3055
3158
|
>Configuration</button>
|
|
3056
3159
|
<ol class="pf-v5-c-wizard__nav-list" role="list">
|
|
3057
3160
|
<li class="pf-v5-c-wizard__nav-item">
|
|
3058
|
-
<button
|
|
3161
|
+
<button
|
|
3162
|
+
class="pf-v5-c-wizard__nav-link"
|
|
3163
|
+
type="button"
|
|
3164
|
+
>Substep A</button>
|
|
3059
3165
|
</li>
|
|
3060
3166
|
<li class="pf-v5-c-wizard__nav-item">
|
|
3061
3167
|
<button
|
|
3062
3168
|
class="pf-v5-c-wizard__nav-link pf-m-current"
|
|
3169
|
+
type="button"
|
|
3063
3170
|
aria-current="page"
|
|
3064
3171
|
>Substep B</button>
|
|
3065
3172
|
</li>
|
|
3066
3173
|
<li class="pf-v5-c-wizard__nav-item">
|
|
3067
|
-
<button
|
|
3174
|
+
<button
|
|
3175
|
+
class="pf-v5-c-wizard__nav-link"
|
|
3176
|
+
type="button"
|
|
3177
|
+
>Substep C</button>
|
|
3068
3178
|
</li>
|
|
3069
3179
|
</ol>
|
|
3070
3180
|
</li>
|
|
3071
3181
|
<li class="pf-v5-c-wizard__nav-item">
|
|
3072
|
-
<button
|
|
3182
|
+
<button
|
|
3183
|
+
class="pf-v5-c-wizard__nav-link"
|
|
3184
|
+
type="button"
|
|
3185
|
+
>Additional</button>
|
|
3073
3186
|
</li>
|
|
3074
3187
|
<li class="pf-v5-c-wizard__nav-item">
|
|
3075
3188
|
<button
|
|
3076
3189
|
class="pf-v5-c-wizard__nav-link pf-m-disabled"
|
|
3190
|
+
type="button"
|
|
3077
3191
|
aria-disabled="true"
|
|
3078
3192
|
tabindex="-1"
|
|
3079
3193
|
>Review</button>
|
|
@@ -3442,32 +3556,50 @@ wrapperTag: div
|
|
|
3442
3556
|
<nav class="pf-v5-c-wizard__nav" aria-label="Steps">
|
|
3443
3557
|
<ol class="pf-v5-c-wizard__nav-list" role="list">
|
|
3444
3558
|
<li class="pf-v5-c-wizard__nav-item">
|
|
3445
|
-
<button
|
|
3559
|
+
<button
|
|
3560
|
+
class="pf-v5-c-wizard__nav-link"
|
|
3561
|
+
type="button"
|
|
3562
|
+
>Information</button>
|
|
3446
3563
|
</li>
|
|
3447
3564
|
<li class="pf-v5-c-wizard__nav-item">
|
|
3448
3565
|
<button
|
|
3449
3566
|
class="pf-v5-c-wizard__nav-link pf-m-current"
|
|
3567
|
+
type="button"
|
|
3450
3568
|
>Configuration</button>
|
|
3451
3569
|
<ol class="pf-v5-c-wizard__nav-list" role="list">
|
|
3452
3570
|
<li class="pf-v5-c-wizard__nav-item">
|
|
3453
|
-
<button
|
|
3571
|
+
<button
|
|
3572
|
+
class="pf-v5-c-wizard__nav-link"
|
|
3573
|
+
type="button"
|
|
3574
|
+
>Substep A</button>
|
|
3454
3575
|
</li>
|
|
3455
3576
|
<li class="pf-v5-c-wizard__nav-item">
|
|
3456
3577
|
<button
|
|
3457
3578
|
class="pf-v5-c-wizard__nav-link pf-m-current"
|
|
3579
|
+
type="button"
|
|
3458
3580
|
aria-current="page"
|
|
3459
3581
|
>Substep B</button>
|
|
3460
3582
|
</li>
|
|
3461
3583
|
<li class="pf-v5-c-wizard__nav-item">
|
|
3462
|
-
<button
|
|
3584
|
+
<button
|
|
3585
|
+
class="pf-v5-c-wizard__nav-link"
|
|
3586
|
+
type="button"
|
|
3587
|
+
>Substep C</button>
|
|
3463
3588
|
</li>
|
|
3464
3589
|
</ol>
|
|
3465
3590
|
</li>
|
|
3466
3591
|
<li class="pf-v5-c-wizard__nav-item">
|
|
3467
|
-
<button
|
|
3592
|
+
<button
|
|
3593
|
+
class="pf-v5-c-wizard__nav-link"
|
|
3594
|
+
type="button"
|
|
3595
|
+
>Additional</button>
|
|
3468
3596
|
</li>
|
|
3469
3597
|
<li class="pf-v5-c-wizard__nav-item">
|
|
3470
|
-
<button
|
|
3598
|
+
<button
|
|
3599
|
+
class="pf-v5-c-wizard__nav-link"
|
|
3600
|
+
type="button"
|
|
3601
|
+
disabled
|
|
3602
|
+
>Review</button>
|
|
3471
3603
|
</li>
|
|
3472
3604
|
</ol>
|
|
3473
3605
|
</nav>
|
|
@@ -3906,32 +4038,50 @@ wrapperTag: div
|
|
|
3906
4038
|
<nav class="pf-v5-c-wizard__nav" aria-label="Steps">
|
|
3907
4039
|
<ol class="pf-v5-c-wizard__nav-list" role="list">
|
|
3908
4040
|
<li class="pf-v5-c-wizard__nav-item">
|
|
3909
|
-
<button
|
|
4041
|
+
<button
|
|
4042
|
+
class="pf-v5-c-wizard__nav-link"
|
|
4043
|
+
type="button"
|
|
4044
|
+
>Information</button>
|
|
3910
4045
|
</li>
|
|
3911
4046
|
<li class="pf-v5-c-wizard__nav-item">
|
|
3912
4047
|
<button
|
|
3913
4048
|
class="pf-v5-c-wizard__nav-link pf-m-current"
|
|
4049
|
+
type="button"
|
|
3914
4050
|
>Configuration</button>
|
|
3915
4051
|
<ol class="pf-v5-c-wizard__nav-list" role="list">
|
|
3916
4052
|
<li class="pf-v5-c-wizard__nav-item">
|
|
3917
|
-
<button
|
|
4053
|
+
<button
|
|
4054
|
+
class="pf-v5-c-wizard__nav-link"
|
|
4055
|
+
type="button"
|
|
4056
|
+
>Substep A</button>
|
|
3918
4057
|
</li>
|
|
3919
4058
|
<li class="pf-v5-c-wizard__nav-item">
|
|
3920
4059
|
<button
|
|
3921
4060
|
class="pf-v5-c-wizard__nav-link pf-m-current"
|
|
4061
|
+
type="button"
|
|
3922
4062
|
aria-current="page"
|
|
3923
4063
|
>Substep B</button>
|
|
3924
4064
|
</li>
|
|
3925
4065
|
<li class="pf-v5-c-wizard__nav-item">
|
|
3926
|
-
<button
|
|
4066
|
+
<button
|
|
4067
|
+
class="pf-v5-c-wizard__nav-link"
|
|
4068
|
+
type="button"
|
|
4069
|
+
>Substep C</button>
|
|
3927
4070
|
</li>
|
|
3928
4071
|
</ol>
|
|
3929
4072
|
</li>
|
|
3930
4073
|
<li class="pf-v5-c-wizard__nav-item">
|
|
3931
|
-
<button
|
|
4074
|
+
<button
|
|
4075
|
+
class="pf-v5-c-wizard__nav-link"
|
|
4076
|
+
type="button"
|
|
4077
|
+
>Additional</button>
|
|
3932
4078
|
</li>
|
|
3933
4079
|
<li class="pf-v5-c-wizard__nav-item">
|
|
3934
|
-
<button
|
|
4080
|
+
<button
|
|
4081
|
+
class="pf-v5-c-wizard__nav-link"
|
|
4082
|
+
type="button"
|
|
4083
|
+
disabled
|
|
4084
|
+
>Review</button>
|
|
3935
4085
|
</li>
|
|
3936
4086
|
</ol>
|
|
3937
4087
|
</nav>
|
package/package.json
CHANGED
|
@@ -5314,6 +5314,7 @@
|
|
|
5314
5314
|
}
|
|
5315
5315
|
|
|
5316
5316
|
.pf-v5-c-about-modal-box {
|
|
5317
|
+
--pf-v5-c-about-modal-box--BackgroundImage: none;
|
|
5317
5318
|
--pf-v5-c-about-modal-box--BackgroundColor: var(--pf-v5-global--palette--black-1000);
|
|
5318
5319
|
--pf-v5-c-about-modal-box--BackgroundPosition: bottom right;
|
|
5319
5320
|
--pf-v5-c-about-modal-box--BackgroundSize--min-width: 200px;
|
|
@@ -5372,7 +5373,7 @@
|
|
|
5372
5373
|
overflow-x: hidden;
|
|
5373
5374
|
overflow-y: auto;
|
|
5374
5375
|
background-color: var(--pf-v5-c-about-modal-box--BackgroundColor);
|
|
5375
|
-
background-image: var(--pf-v5-c-about-modal-box--BackgroundImage
|
|
5376
|
+
background-image: var(--pf-v5-c-about-modal-box--BackgroundImage);
|
|
5376
5377
|
background-repeat: no-repeat;
|
|
5377
5378
|
background-position: var(--pf-v5-c-about-modal-box--BackgroundPosition);
|
|
5378
5379
|
background-size: var(--pf-v5-c-about-modal-box--BackgroundSize);
|
|
@@ -5431,6 +5431,7 @@ button) {
|
|
|
5431
5431
|
}
|
|
5432
5432
|
|
|
5433
5433
|
.pf-v5-c-about-modal-box {
|
|
5434
|
+
--pf-v5-c-about-modal-box--BackgroundImage: none;
|
|
5434
5435
|
--pf-v5-c-about-modal-box--BackgroundColor: var(--pf-v5-global--palette--black-1000);
|
|
5435
5436
|
--pf-v5-c-about-modal-box--BackgroundPosition: bottom right;
|
|
5436
5437
|
--pf-v5-c-about-modal-box--BackgroundSize--min-width: 200px;
|
|
@@ -5489,7 +5490,7 @@ button) {
|
|
|
5489
5490
|
overflow-x: hidden;
|
|
5490
5491
|
overflow-y: auto;
|
|
5491
5492
|
background-color: var(--pf-v5-c-about-modal-box--BackgroundColor);
|
|
5492
|
-
background-image: var(--pf-v5-c-about-modal-box--BackgroundImage
|
|
5493
|
+
background-image: var(--pf-v5-c-about-modal-box--BackgroundImage);
|
|
5493
5494
|
background-repeat: no-repeat;
|
|
5494
5495
|
background-position: var(--pf-v5-c-about-modal-box--BackgroundPosition);
|
|
5495
5496
|
background-size: var(--pf-v5-c-about-modal-box--BackgroundSize);
|
package/patternfly.css
CHANGED
|
@@ -5431,6 +5431,7 @@ button) {
|
|
|
5431
5431
|
}
|
|
5432
5432
|
|
|
5433
5433
|
.pf-v5-c-about-modal-box {
|
|
5434
|
+
--pf-v5-c-about-modal-box--BackgroundImage: none;
|
|
5434
5435
|
--pf-v5-c-about-modal-box--BackgroundColor: var(--pf-v5-global--palette--black-1000);
|
|
5435
5436
|
--pf-v5-c-about-modal-box--BackgroundPosition: bottom right;
|
|
5436
5437
|
--pf-v5-c-about-modal-box--BackgroundSize--min-width: 200px;
|
|
@@ -5489,7 +5490,7 @@ button) {
|
|
|
5489
5490
|
overflow-x: hidden;
|
|
5490
5491
|
overflow-y: auto;
|
|
5491
5492
|
background-color: var(--pf-v5-c-about-modal-box--BackgroundColor);
|
|
5492
|
-
background-image: var(--pf-v5-c-about-modal-box--BackgroundImage
|
|
5493
|
+
background-image: var(--pf-v5-c-about-modal-box--BackgroundImage);
|
|
5493
5494
|
background-repeat: no-repeat;
|
|
5494
5495
|
background-position: var(--pf-v5-c-about-modal-box--BackgroundPosition);
|
|
5495
5496
|
background-size: var(--pf-v5-c-about-modal-box--BackgroundSize);
|