@patternfly/patternfly 5.0.0-alpha.52 → 5.0.0-alpha.54
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/Divider/divider.css +12 -12
- package/components/FormControl/form-control.css +164 -214
- package/components/FormControl/form-control.scss +175 -281
- package/components/FormControl/themes/dark/form-control.scss +1 -2
- package/components/Masthead/masthead.css +12 -12
- package/components/NumberInput/number-input.css +0 -1
- package/components/NumberInput/number-input.scss +0 -1
- package/components/Pagination/pagination.css +12 -12
- package/components/Tabs/tabs.css +24 -24
- package/components/Toolbar/toolbar.css +54 -54
- package/docs/components/CalendarMonth/examples/CalendarMonth.md +32 -28
- package/docs/components/ClipboardCopy/examples/ClipboardCopy.md +52 -46
- package/docs/components/DatePicker/examples/DatePicker.md +55 -49
- package/docs/components/FileUpload/examples/FileUpload.md +105 -93
- package/docs/components/Form/examples/Form.md +165 -145
- package/docs/components/FormControl/examples/FormControl.md +439 -475
- package/docs/components/InlineEdit/examples/InlineEdit.md +87 -76
- package/docs/components/InputGroup/examples/InputGroup.md +84 -74
- package/docs/components/Login/examples/Login.md +92 -82
- package/docs/components/NumberInput/examples/NumberInput.md +99 -87
- package/docs/components/Pagination/examples/Pagination.md +100 -89
- package/docs/components/Select/examples/Select.md +77 -68
- package/docs/components/Slider/examples/Slider.md +31 -44
- package/docs/components/TextInputGroup/examples/TextInputGroup.md +60 -52
- package/docs/components/Toolbar/examples/Toolbar.md +18 -16
- package/docs/components/Wizard/examples/Wizard.md +280 -245
- package/docs/demos/Alert/examples/Alert.md +69 -57
- package/docs/demos/Button/examples/Button.md +54 -48
- package/docs/demos/CardView/examples/CardView.md +9 -8
- package/docs/demos/DataList/examples/DataList.md +36 -32
- package/docs/demos/Form/examples/BasicForms.md +247 -227
- package/docs/demos/HelperText/examples/HelperText.md +37 -33
- package/docs/demos/Modal/examples/Modal.md +14 -21
- package/docs/demos/PasswordGenerator/examples/PasswordGenerator.md +11 -10
- package/docs/demos/PasswordStrength/examples/PasswordStrength.md +44 -40
- package/docs/demos/Table/examples/Table.md +99 -88
- package/docs/demos/Toolbar/examples/Toolbar.md +28 -25
- package/docs/demos/Wizard/examples/Wizard.md +448 -392
- package/layouts/Flex/flex.css +60 -120
- package/layouts/Flex/flex.scss +1 -1
- package/package.json +3 -3
- package/patternfly-no-globals.css +335 -446
- package/patternfly.css +335 -446
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/sass-utilities/functions.scss +6 -9
- package/docs/components/FormControl/examples/FormControl.css +0 -5
|
@@ -12,14 +12,15 @@ section: components
|
|
|
12
12
|
<span class="pf-v5-c-form__label-text">Name</span> <span class="pf-v5-c-form__label-required" aria-hidden="true">*</span></label>
|
|
13
13
|
</div>
|
|
14
14
|
<div class="pf-v5-c-form__group-control">
|
|
15
|
-
<
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
15
|
+
<div class="pf-v5-c-form-control">
|
|
16
|
+
<input
|
|
17
|
+
required
|
|
18
|
+
type="text"
|
|
19
|
+
id="helper-text-form-name"
|
|
20
|
+
name="helper-text-form-name"
|
|
21
|
+
aria-describedby="helper-text-form-name-helper"
|
|
22
|
+
/>
|
|
23
|
+
</div>
|
|
23
24
|
<div
|
|
24
25
|
class="pf-v5-c-form__helper-text"
|
|
25
26
|
aria-live="polite"
|
|
@@ -40,14 +41,15 @@ section: components
|
|
|
40
41
|
<span class="pf-v5-c-form__label-text">E-mail</span> <span class="pf-v5-c-form__label-required" aria-hidden="true">*</span></label>
|
|
41
42
|
</div>
|
|
42
43
|
<div class="pf-v5-c-form__group-control">
|
|
43
|
-
<
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
44
|
+
<div class="pf-v5-c-form-control pf-m-warning">
|
|
45
|
+
<input
|
|
46
|
+
required
|
|
47
|
+
type="text"
|
|
48
|
+
id="helper-text-form-email"
|
|
49
|
+
name="helper-text-form-email"
|
|
50
|
+
aria-describedby="helper-text-form-email-helper"
|
|
51
|
+
/>
|
|
52
|
+
</div>
|
|
51
53
|
|
|
52
54
|
<div
|
|
53
55
|
class="pf-v5-c-form__helper-text"
|
|
@@ -69,15 +71,16 @@ section: components
|
|
|
69
71
|
<span class="pf-v5-c-form__label-text">Address</span> <span class="pf-v5-c-form__label-required" aria-hidden="true">*</span></label>
|
|
70
72
|
</div>
|
|
71
73
|
<div class="pf-v5-c-form__group-control">
|
|
72
|
-
<
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
74
|
+
<div class="pf-v5-c-form-control">
|
|
75
|
+
<input
|
|
76
|
+
required
|
|
77
|
+
type="text"
|
|
78
|
+
id="helper-text-form-address"
|
|
79
|
+
name="helper-text-form-address"
|
|
80
|
+
aria-invalid="true"
|
|
81
|
+
aria-describedby="helper-text-form-address-helper"
|
|
82
|
+
/>
|
|
83
|
+
</div>
|
|
81
84
|
|
|
82
85
|
<div
|
|
83
86
|
class="pf-v5-c-form__helper-text"
|
|
@@ -118,14 +121,15 @@ section: components
|
|
|
118
121
|
<span class="pf-v5-c-form__label-text">Comment</span></label>
|
|
119
122
|
</div>
|
|
120
123
|
<div class="pf-v5-c-form__group-control">
|
|
121
|
-
<
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
124
|
+
<div class="pf-v5-c-form-control pf-m-success">
|
|
125
|
+
<input
|
|
126
|
+
value="This is a valid comment"
|
|
127
|
+
type="text"
|
|
128
|
+
id="helper-text-form-comment"
|
|
129
|
+
name="helper-text-form-comment"
|
|
130
|
+
aria-describedby="helper-text-form-comment-helper"
|
|
131
|
+
/>
|
|
132
|
+
</div>
|
|
129
133
|
|
|
130
134
|
<div
|
|
131
135
|
class="pf-v5-c-form__helper-text"
|
|
@@ -6072,13 +6072,9 @@ section: components
|
|
|
6072
6072
|
><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
|
|
6073
6073
|
</div>
|
|
6074
6074
|
<div class="pf-v5-c-form__group-control">
|
|
6075
|
-
<
|
|
6076
|
-
|
|
6077
|
-
|
|
6078
|
-
id="-form-name"
|
|
6079
|
-
name="-form-name"
|
|
6080
|
-
required
|
|
6081
|
-
/>
|
|
6075
|
+
<div class="pf-v5-c-form-control">
|
|
6076
|
+
<input type="text" id="-form-name" name="-form-name" required />
|
|
6077
|
+
</div>
|
|
6082
6078
|
</div>
|
|
6083
6079
|
</div>
|
|
6084
6080
|
<div class="pf-v5-c-form__group">
|
|
@@ -6096,13 +6092,9 @@ section: components
|
|
|
6096
6092
|
><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
|
|
6097
6093
|
</div>
|
|
6098
6094
|
<div class="pf-v5-c-form__group-control">
|
|
6099
|
-
<
|
|
6100
|
-
|
|
6101
|
-
|
|
6102
|
-
id="-form-email"
|
|
6103
|
-
name="-form-email"
|
|
6104
|
-
required
|
|
6105
|
-
/>
|
|
6095
|
+
<div class="pf-v5-c-form-control">
|
|
6096
|
+
<input type="text" id="-form-email" name="-form-email" required />
|
|
6097
|
+
</div>
|
|
6106
6098
|
</div>
|
|
6107
6099
|
</div>
|
|
6108
6100
|
<div class="pf-v5-c-form__group">
|
|
@@ -6120,13 +6112,14 @@ section: components
|
|
|
6120
6112
|
><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
|
|
6121
6113
|
</div>
|
|
6122
6114
|
<div class="pf-v5-c-form__group-control">
|
|
6123
|
-
<
|
|
6124
|
-
|
|
6125
|
-
|
|
6126
|
-
|
|
6127
|
-
|
|
6128
|
-
|
|
6129
|
-
|
|
6115
|
+
<div class="pf-v5-c-form-control">
|
|
6116
|
+
<input
|
|
6117
|
+
type="text"
|
|
6118
|
+
id="-form-address"
|
|
6119
|
+
name="-form-address"
|
|
6120
|
+
required
|
|
6121
|
+
/>
|
|
6122
|
+
</div>
|
|
6130
6123
|
</div>
|
|
6131
6124
|
</div>
|
|
6132
6125
|
</form>
|
|
@@ -27,16 +27,17 @@ section: components
|
|
|
27
27
|
<div class="pf-v5-c-form__group-control">
|
|
28
28
|
<div class="pf-v5-c-input-group">
|
|
29
29
|
<div class="pf-v5-c-input-group__item pf-m-fill">
|
|
30
|
-
<
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
30
|
+
<div class="pf-v5-c-form-control">
|
|
31
|
+
<input
|
|
32
|
+
required
|
|
33
|
+
type="password"
|
|
34
|
+
id="password-generator-demo--initial-password"
|
|
35
|
+
name="password-generator-demo--initial-password"
|
|
36
|
+
aria-label="Password input"
|
|
37
|
+
value
|
|
38
|
+
placeholder="Password"
|
|
39
|
+
/>
|
|
40
|
+
</div>
|
|
40
41
|
</div>
|
|
41
42
|
<div class="pf-v5-c-input-group__item">
|
|
42
43
|
<button
|
|
@@ -27,16 +27,17 @@ section: components
|
|
|
27
27
|
<div class="pf-v5-c-form__group-control">
|
|
28
28
|
<div class="pf-v5-c-input-group">
|
|
29
29
|
<div class="pf-v5-c-input-group__item pf-m-fill">
|
|
30
|
-
<
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
30
|
+
<div class="pf-v5-c-form-control">
|
|
31
|
+
<input
|
|
32
|
+
required
|
|
33
|
+
type="text"
|
|
34
|
+
id="password-strength-demo--initial-password"
|
|
35
|
+
name="password-strength-demo--initial-password"
|
|
36
|
+
aria-label="Password input"
|
|
37
|
+
value
|
|
38
|
+
placeholder="Password"
|
|
39
|
+
/>
|
|
40
|
+
</div>
|
|
40
41
|
</div>
|
|
41
42
|
<div class="pf-v5-c-input-group__item">
|
|
42
43
|
<button
|
|
@@ -112,16 +113,17 @@ section: components
|
|
|
112
113
|
<div class="pf-v5-c-form__group-control">
|
|
113
114
|
<div class="pf-v5-c-input-group">
|
|
114
115
|
<div class="pf-v5-c-input-group__item pf-m-fill">
|
|
115
|
-
<
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
116
|
+
<div class="pf-v5-c-form-control">
|
|
117
|
+
<input
|
|
118
|
+
required
|
|
119
|
+
type="text"
|
|
120
|
+
id="password-strength-demo--invalid-password"
|
|
121
|
+
name="password-strength-demo--invalid-password"
|
|
122
|
+
aria-label="Password input"
|
|
123
|
+
value="Marie$RedHat78"
|
|
124
|
+
placeholder="Password"
|
|
125
|
+
/>
|
|
126
|
+
</div>
|
|
125
127
|
</div>
|
|
126
128
|
<div class="pf-v5-c-input-group__item">
|
|
127
129
|
<button
|
|
@@ -200,16 +202,17 @@ section: components
|
|
|
200
202
|
<div class="pf-v5-c-form__group-control">
|
|
201
203
|
<div class="pf-v5-c-input-group">
|
|
202
204
|
<div class="pf-v5-c-input-group__item pf-m-fill">
|
|
203
|
-
<
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
205
|
+
<div class="pf-v5-c-form-control">
|
|
206
|
+
<input
|
|
207
|
+
required
|
|
208
|
+
type="text"
|
|
209
|
+
id="password-strength-demo--weak-password"
|
|
210
|
+
name="password-strength-demo--weak-password"
|
|
211
|
+
aria-label="Password input"
|
|
212
|
+
value="Marie$Can3Read"
|
|
213
|
+
placeholder="Password"
|
|
214
|
+
/>
|
|
215
|
+
</div>
|
|
213
216
|
</div>
|
|
214
217
|
<div class="pf-v5-c-input-group__item">
|
|
215
218
|
<button
|
|
@@ -288,16 +291,17 @@ section: components
|
|
|
288
291
|
<div class="pf-v5-c-form__group-control">
|
|
289
292
|
<div class="pf-v5-c-input-group">
|
|
290
293
|
<div class="pf-v5-c-input-group__item pf-m-fill">
|
|
291
|
-
<
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
294
|
+
<div class="pf-v5-c-form-control">
|
|
295
|
+
<input
|
|
296
|
+
required
|
|
297
|
+
type="text"
|
|
298
|
+
id="password-strength-demo--strong-password"
|
|
299
|
+
name="password-strength-demo--strong-password"
|
|
300
|
+
aria-label="Password input"
|
|
301
|
+
value="Marie$Can8Read3Pass@Word"
|
|
302
|
+
placeholder="Password"
|
|
303
|
+
/>
|
|
304
|
+
</div>
|
|
301
305
|
</div>
|
|
302
306
|
<div class="pf-v5-c-input-group__item">
|
|
303
307
|
<button
|
|
@@ -1753,14 +1753,15 @@ wrapperTag: div
|
|
|
1753
1753
|
</button>
|
|
1754
1754
|
</div>
|
|
1755
1755
|
<div class="pf-v5-c-pagination__nav-page-select">
|
|
1756
|
-
<
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1756
|
+
<div class="pf-v5-c-form-control">
|
|
1757
|
+
<input
|
|
1758
|
+
aria-label="Current page"
|
|
1759
|
+
type="number"
|
|
1760
|
+
min="1"
|
|
1761
|
+
max="4"
|
|
1762
|
+
value="1"
|
|
1763
|
+
/>
|
|
1764
|
+
</div>
|
|
1764
1765
|
<span aria-hidden="true">of 4</span>
|
|
1765
1766
|
</div>
|
|
1766
1767
|
<div class="pf-v5-c-pagination__nav-control pf-m-next">
|
|
@@ -3721,14 +3722,15 @@ wrapperTag: div
|
|
|
3721
3722
|
</button>
|
|
3722
3723
|
</div>
|
|
3723
3724
|
<div class="pf-v5-c-pagination__nav-page-select">
|
|
3724
|
-
<
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
|
|
3730
|
-
|
|
3731
|
-
|
|
3725
|
+
<div class="pf-v5-c-form-control">
|
|
3726
|
+
<input
|
|
3727
|
+
aria-label="Current page"
|
|
3728
|
+
type="number"
|
|
3729
|
+
min="1"
|
|
3730
|
+
max="4"
|
|
3731
|
+
value="1"
|
|
3732
|
+
/>
|
|
3733
|
+
</div>
|
|
3732
3734
|
<span aria-hidden="true">of 4</span>
|
|
3733
3735
|
</div>
|
|
3734
3736
|
<div class="pf-v5-c-pagination__nav-control pf-m-next">
|
|
@@ -5887,14 +5889,15 @@ wrapperTag: div
|
|
|
5887
5889
|
</button>
|
|
5888
5890
|
</div>
|
|
5889
5891
|
<div class="pf-v5-c-pagination__nav-page-select">
|
|
5890
|
-
<
|
|
5891
|
-
|
|
5892
|
-
|
|
5893
|
-
|
|
5894
|
-
|
|
5895
|
-
|
|
5896
|
-
|
|
5897
|
-
|
|
5892
|
+
<div class="pf-v5-c-form-control">
|
|
5893
|
+
<input
|
|
5894
|
+
aria-label="Current page"
|
|
5895
|
+
type="number"
|
|
5896
|
+
min="1"
|
|
5897
|
+
max="4"
|
|
5898
|
+
value="1"
|
|
5899
|
+
/>
|
|
5900
|
+
</div>
|
|
5898
5901
|
<span aria-hidden="true">of 4</span>
|
|
5899
5902
|
</div>
|
|
5900
5903
|
<div class="pf-v5-c-pagination__nav-control pf-m-next">
|
|
@@ -7710,14 +7713,15 @@ wrapperTag: div
|
|
|
7710
7713
|
</button>
|
|
7711
7714
|
</div>
|
|
7712
7715
|
<div class="pf-v5-c-pagination__nav-page-select">
|
|
7713
|
-
<
|
|
7714
|
-
|
|
7715
|
-
|
|
7716
|
-
|
|
7717
|
-
|
|
7718
|
-
|
|
7719
|
-
|
|
7720
|
-
|
|
7716
|
+
<div class="pf-v5-c-form-control">
|
|
7717
|
+
<input
|
|
7718
|
+
aria-label="Current page"
|
|
7719
|
+
type="number"
|
|
7720
|
+
min="1"
|
|
7721
|
+
max="4"
|
|
7722
|
+
value="1"
|
|
7723
|
+
/>
|
|
7724
|
+
</div>
|
|
7721
7725
|
<span aria-hidden="true">of 4</span>
|
|
7722
7726
|
</div>
|
|
7723
7727
|
<div class="pf-v5-c-pagination__nav-control pf-m-next">
|
|
@@ -12862,14 +12866,15 @@ wrapperTag: div
|
|
|
12862
12866
|
</button>
|
|
12863
12867
|
</div>
|
|
12864
12868
|
<div class="pf-v5-c-pagination__nav-page-select">
|
|
12865
|
-
<
|
|
12866
|
-
|
|
12867
|
-
|
|
12868
|
-
|
|
12869
|
-
|
|
12870
|
-
|
|
12871
|
-
|
|
12872
|
-
|
|
12869
|
+
<div class="pf-v5-c-form-control">
|
|
12870
|
+
<input
|
|
12871
|
+
aria-label="Current page"
|
|
12872
|
+
type="number"
|
|
12873
|
+
min="1"
|
|
12874
|
+
max="4"
|
|
12875
|
+
value="1"
|
|
12876
|
+
/>
|
|
12877
|
+
</div>
|
|
12873
12878
|
<span aria-hidden="true">of 4</span>
|
|
12874
12879
|
</div>
|
|
12875
12880
|
<div class="pf-v5-c-pagination__nav-control pf-m-next">
|
|
@@ -16813,14 +16818,15 @@ wrapperTag: div
|
|
|
16813
16818
|
</button>
|
|
16814
16819
|
</div>
|
|
16815
16820
|
<div class="pf-v5-c-pagination__nav-page-select">
|
|
16816
|
-
<
|
|
16817
|
-
|
|
16818
|
-
|
|
16819
|
-
|
|
16820
|
-
|
|
16821
|
-
|
|
16822
|
-
|
|
16823
|
-
|
|
16821
|
+
<div class="pf-v5-c-form-control">
|
|
16822
|
+
<input
|
|
16823
|
+
aria-label="Current page"
|
|
16824
|
+
type="number"
|
|
16825
|
+
min="1"
|
|
16826
|
+
max="4"
|
|
16827
|
+
value="1"
|
|
16828
|
+
/>
|
|
16829
|
+
</div>
|
|
16824
16830
|
<span aria-hidden="true">of 4</span>
|
|
16825
16831
|
</div>
|
|
16826
16832
|
<div class="pf-v5-c-pagination__nav-control pf-m-next">
|
|
@@ -20833,14 +20839,15 @@ wrapperTag: div
|
|
|
20833
20839
|
</button>
|
|
20834
20840
|
</div>
|
|
20835
20841
|
<div class="pf-v5-c-pagination__nav-page-select">
|
|
20836
|
-
<
|
|
20837
|
-
|
|
20838
|
-
|
|
20839
|
-
|
|
20840
|
-
|
|
20841
|
-
|
|
20842
|
-
|
|
20843
|
-
|
|
20842
|
+
<div class="pf-v5-c-form-control">
|
|
20843
|
+
<input
|
|
20844
|
+
aria-label="Current page"
|
|
20845
|
+
type="number"
|
|
20846
|
+
min="1"
|
|
20847
|
+
max="4"
|
|
20848
|
+
value="1"
|
|
20849
|
+
/>
|
|
20850
|
+
</div>
|
|
20844
20851
|
<span aria-hidden="true">of 4</span>
|
|
20845
20852
|
</div>
|
|
20846
20853
|
<div class="pf-v5-c-pagination__nav-control pf-m-next">
|
|
@@ -22710,14 +22717,15 @@ wrapperTag: div
|
|
|
22710
22717
|
</button>
|
|
22711
22718
|
</div>
|
|
22712
22719
|
<div class="pf-v5-c-pagination__nav-page-select">
|
|
22713
|
-
<
|
|
22714
|
-
|
|
22715
|
-
|
|
22716
|
-
|
|
22717
|
-
|
|
22718
|
-
|
|
22719
|
-
|
|
22720
|
-
|
|
22720
|
+
<div class="pf-v5-c-form-control">
|
|
22721
|
+
<input
|
|
22722
|
+
aria-label="Current page"
|
|
22723
|
+
type="number"
|
|
22724
|
+
min="1"
|
|
22725
|
+
max="4"
|
|
22726
|
+
value="1"
|
|
22727
|
+
/>
|
|
22728
|
+
</div>
|
|
22721
22729
|
<span aria-hidden="true">of 4</span>
|
|
22722
22730
|
</div>
|
|
22723
22731
|
<div class="pf-v5-c-pagination__nav-control pf-m-next">
|
|
@@ -24607,14 +24615,15 @@ wrapperTag: div
|
|
|
24607
24615
|
</button>
|
|
24608
24616
|
</div>
|
|
24609
24617
|
<div class="pf-v5-c-pagination__nav-page-select">
|
|
24610
|
-
<
|
|
24611
|
-
|
|
24612
|
-
|
|
24613
|
-
|
|
24614
|
-
|
|
24615
|
-
|
|
24616
|
-
|
|
24617
|
-
|
|
24618
|
+
<div class="pf-v5-c-form-control">
|
|
24619
|
+
<input
|
|
24620
|
+
aria-label="Current page"
|
|
24621
|
+
type="number"
|
|
24622
|
+
min="1"
|
|
24623
|
+
max="4"
|
|
24624
|
+
value="1"
|
|
24625
|
+
/>
|
|
24626
|
+
</div>
|
|
24618
24627
|
<span aria-hidden="true">of 4</span>
|
|
24619
24628
|
</div>
|
|
24620
24629
|
<div class="pf-v5-c-pagination__nav-control pf-m-next">
|
|
@@ -26503,14 +26512,15 @@ wrapperTag: div
|
|
|
26503
26512
|
</button>
|
|
26504
26513
|
</div>
|
|
26505
26514
|
<div class="pf-v5-c-pagination__nav-page-select">
|
|
26506
|
-
<
|
|
26507
|
-
|
|
26508
|
-
|
|
26509
|
-
|
|
26510
|
-
|
|
26511
|
-
|
|
26512
|
-
|
|
26513
|
-
|
|
26515
|
+
<div class="pf-v5-c-form-control">
|
|
26516
|
+
<input
|
|
26517
|
+
aria-label="Current page"
|
|
26518
|
+
type="number"
|
|
26519
|
+
min="1"
|
|
26520
|
+
max="4"
|
|
26521
|
+
value="1"
|
|
26522
|
+
/>
|
|
26523
|
+
</div>
|
|
26514
26524
|
<span aria-hidden="true">of 4</span>
|
|
26515
26525
|
</div>
|
|
26516
26526
|
<div class="pf-v5-c-pagination__nav-control pf-m-next">
|
|
@@ -28379,14 +28389,15 @@ wrapperTag: div
|
|
|
28379
28389
|
</button>
|
|
28380
28390
|
</div>
|
|
28381
28391
|
<div class="pf-v5-c-pagination__nav-page-select">
|
|
28382
|
-
<
|
|
28383
|
-
|
|
28384
|
-
|
|
28385
|
-
|
|
28386
|
-
|
|
28387
|
-
|
|
28388
|
-
|
|
28389
|
-
|
|
28392
|
+
<div class="pf-v5-c-form-control">
|
|
28393
|
+
<input
|
|
28394
|
+
aria-label="Current page"
|
|
28395
|
+
type="number"
|
|
28396
|
+
min="1"
|
|
28397
|
+
max="4"
|
|
28398
|
+
value="1"
|
|
28399
|
+
/>
|
|
28400
|
+
</div>
|
|
28390
28401
|
<span aria-hidden="true">of 4</span>
|
|
28391
28402
|
</div>
|
|
28392
28403
|
<div class="pf-v5-c-pagination__nav-control pf-m-next">
|
|
@@ -1287,14 +1287,15 @@ section: components
|
|
|
1287
1287
|
aria-label="search filter"
|
|
1288
1288
|
role="group"
|
|
1289
1289
|
>
|
|
1290
|
-
<
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1290
|
+
<div class="pf-v5-c-form-control">
|
|
1291
|
+
<input
|
|
1292
|
+
type="text"
|
|
1293
|
+
value="2020-03-05"
|
|
1294
|
+
id="toolbar-with-validation-example-helper-text-input"
|
|
1295
|
+
name="toolbar-with-validation-example-helper-text-input"
|
|
1296
|
+
aria-label="Date picker"
|
|
1297
|
+
/>
|
|
1298
|
+
</div>
|
|
1298
1299
|
<button
|
|
1299
1300
|
class="pf-v5-c-button pf-m-control"
|
|
1300
1301
|
type="button"
|
|
@@ -1321,15 +1322,16 @@ section: components
|
|
|
1321
1322
|
aria-label="search filter"
|
|
1322
1323
|
role="group"
|
|
1323
1324
|
>
|
|
1324
|
-
<
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1325
|
+
<div class="pf-v5-c-form-control">
|
|
1326
|
+
<input
|
|
1327
|
+
aria-invalid="true"
|
|
1328
|
+
type="text"
|
|
1329
|
+
value="2020-03-05"
|
|
1330
|
+
id="toolbar-with-validation-example-invalid-input"
|
|
1331
|
+
name="toolbar-with-validation-example-invalid-input"
|
|
1332
|
+
aria-label="Date picker"
|
|
1333
|
+
/>
|
|
1334
|
+
</div>
|
|
1333
1335
|
<button
|
|
1334
1336
|
class="pf-v5-c-button pf-m-control"
|
|
1335
1337
|
type="button"
|
|
@@ -5231,14 +5233,15 @@ section: components
|
|
|
5231
5233
|
</button>
|
|
5232
5234
|
</div>
|
|
5233
5235
|
<div class="pf-v5-c-pagination__nav-page-select">
|
|
5234
|
-
<
|
|
5235
|
-
|
|
5236
|
-
|
|
5237
|
-
|
|
5238
|
-
|
|
5239
|
-
|
|
5240
|
-
|
|
5241
|
-
|
|
5236
|
+
<div class="pf-v5-c-form-control">
|
|
5237
|
+
<input
|
|
5238
|
+
aria-label="Current page"
|
|
5239
|
+
type="number"
|
|
5240
|
+
min="1"
|
|
5241
|
+
max="4"
|
|
5242
|
+
value="1"
|
|
5243
|
+
/>
|
|
5244
|
+
</div>
|
|
5242
5245
|
<span aria-hidden="true">of 4</span>
|
|
5243
5246
|
</div>
|
|
5244
5247
|
<div class="pf-v5-c-pagination__nav-control pf-m-next">
|