@patternfly/patternfly 5.0.0-alpha.53 → 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/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/NumberInput/number-input.css +0 -1
- package/components/NumberInput/number-input.scss +0 -1
- 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/package.json +3 -3
- package/patternfly-no-globals.css +161 -212
- package/patternfly.css +161 -212
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/docs/components/FormControl/examples/FormControl.css +0 -5
|
@@ -916,13 +916,14 @@ cssPrefix: pf-v5-c-text-input-group
|
|
|
916
916
|
<span class="pf-v5-c-form__label-text">Username</span></label>
|
|
917
917
|
</div>
|
|
918
918
|
<div class="pf-v5-c-form__group-control">
|
|
919
|
-
<
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
919
|
+
<div class="pf-v5-c-form-control">
|
|
920
|
+
<input
|
|
921
|
+
type="text"
|
|
922
|
+
value="root"
|
|
923
|
+
id="text-input-group-advanced-search-input-expanded-legacy-form-example-username"
|
|
924
|
+
name="text-input-group-advanced-search-input-expanded-legacy-form-example-username"
|
|
925
|
+
/>
|
|
926
|
+
</div>
|
|
926
927
|
</div>
|
|
927
928
|
</div>
|
|
928
929
|
<div class="pf-v5-c-form__group">
|
|
@@ -933,13 +934,14 @@ cssPrefix: pf-v5-c-text-input-group
|
|
|
933
934
|
<span class="pf-v5-c-form__label-text">First name</span></label>
|
|
934
935
|
</div>
|
|
935
936
|
<div class="pf-v5-c-form__group-control">
|
|
936
|
-
<
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
937
|
+
<div class="pf-v5-c-form-control">
|
|
938
|
+
<input
|
|
939
|
+
type="text"
|
|
940
|
+
value="ned"
|
|
941
|
+
id="text-input-group-advanced-search-input-expanded-legacy-form-example-firstname"
|
|
942
|
+
name="text-input-group-advanced-search-input-expanded-legacy-form-example-firstname"
|
|
943
|
+
/>
|
|
944
|
+
</div>
|
|
943
945
|
</div>
|
|
944
946
|
</div>
|
|
945
947
|
<div class="pf-v5-c-form__group">
|
|
@@ -950,12 +952,13 @@ cssPrefix: pf-v5-c-text-input-group
|
|
|
950
952
|
<span class="pf-v5-c-form__label-text">Group</span></label>
|
|
951
953
|
</div>
|
|
952
954
|
<div class="pf-v5-c-form__group-control">
|
|
953
|
-
<
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
955
|
+
<div class="pf-v5-c-form-control">
|
|
956
|
+
<input
|
|
957
|
+
type="text"
|
|
958
|
+
id="text-input-group-advanced-search-input-expanded-legacy-form-example-group"
|
|
959
|
+
name="text-input-group-advanced-search-input-expanded-legacy-form-example-group"
|
|
960
|
+
/>
|
|
961
|
+
</div>
|
|
959
962
|
</div>
|
|
960
963
|
</div>
|
|
961
964
|
<div class="pf-v5-c-form__group">
|
|
@@ -966,12 +969,13 @@ cssPrefix: pf-v5-c-text-input-group
|
|
|
966
969
|
<span class="pf-v5-c-form__label-text">Email</span></label>
|
|
967
970
|
</div>
|
|
968
971
|
<div class="pf-v5-c-form__group-control">
|
|
969
|
-
<
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
972
|
+
<div class="pf-v5-c-form-control">
|
|
973
|
+
<input
|
|
974
|
+
type="text"
|
|
975
|
+
id="text-input-group-advanced-search-input-expanded-legacy-form-example-email"
|
|
976
|
+
name="text-input-group-advanced-search-input-expanded-legacy-form-example-email"
|
|
977
|
+
/>
|
|
978
|
+
</div>
|
|
975
979
|
</div>
|
|
976
980
|
</div>
|
|
977
981
|
<div class="pf-v5-c-form__group pf-m-action">
|
|
@@ -1161,13 +1165,14 @@ cssPrefix: pf-v5-c-text-input-group
|
|
|
1161
1165
|
<span class="pf-v5-c-form__label-text">Username</span></label>
|
|
1162
1166
|
</div>
|
|
1163
1167
|
<div class="pf-v5-c-form__group-control">
|
|
1164
|
-
<
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1168
|
+
<div class="pf-v5-c-form-control">
|
|
1169
|
+
<input
|
|
1170
|
+
type="text"
|
|
1171
|
+
value="root"
|
|
1172
|
+
id="text-input-group-advanced-search-input-form-with-autocomplete-example-username"
|
|
1173
|
+
name="text-input-group-advanced-search-input-form-with-autocomplete-example-username"
|
|
1174
|
+
/>
|
|
1175
|
+
</div>
|
|
1171
1176
|
</div>
|
|
1172
1177
|
</div>
|
|
1173
1178
|
<div class="pf-v5-c-form__group">
|
|
@@ -1178,13 +1183,14 @@ cssPrefix: pf-v5-c-text-input-group
|
|
|
1178
1183
|
<span class="pf-v5-c-form__label-text">First name</span></label>
|
|
1179
1184
|
</div>
|
|
1180
1185
|
<div class="pf-v5-c-form__group-control">
|
|
1181
|
-
<
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1186
|
+
<div class="pf-v5-c-form-control">
|
|
1187
|
+
<input
|
|
1188
|
+
type="text"
|
|
1189
|
+
value="ned"
|
|
1190
|
+
id="text-input-group-advanced-search-input-form-with-autocomplete-example-firstname"
|
|
1191
|
+
name="text-input-group-advanced-search-input-form-with-autocomplete-example-firstname"
|
|
1192
|
+
/>
|
|
1193
|
+
</div>
|
|
1188
1194
|
</div>
|
|
1189
1195
|
</div>
|
|
1190
1196
|
<div class="pf-v5-c-form__group">
|
|
@@ -1195,12 +1201,13 @@ cssPrefix: pf-v5-c-text-input-group
|
|
|
1195
1201
|
<span class="pf-v5-c-form__label-text">Group</span></label>
|
|
1196
1202
|
</div>
|
|
1197
1203
|
<div class="pf-v5-c-form__group-control">
|
|
1198
|
-
<
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
+
<div class="pf-v5-c-form-control">
|
|
1205
|
+
<input
|
|
1206
|
+
type="text"
|
|
1207
|
+
id="text-input-group-advanced-search-input-form-with-autocomplete-example-group"
|
|
1208
|
+
name="text-input-group-advanced-search-input-form-with-autocomplete-example-group"
|
|
1209
|
+
/>
|
|
1210
|
+
</div>
|
|
1204
1211
|
</div>
|
|
1205
1212
|
</div>
|
|
1206
1213
|
<div class="pf-v5-c-form__group">
|
|
@@ -1211,12 +1218,13 @@ cssPrefix: pf-v5-c-text-input-group
|
|
|
1211
1218
|
<span class="pf-v5-c-form__label-text">Email</span></label>
|
|
1212
1219
|
</div>
|
|
1213
1220
|
<div class="pf-v5-c-form__group-control">
|
|
1214
|
-
<
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1221
|
+
<div class="pf-v5-c-form-control">
|
|
1222
|
+
<input
|
|
1223
|
+
type="text"
|
|
1224
|
+
id="text-input-group-advanced-search-input-form-with-autocomplete-example-email"
|
|
1225
|
+
name="text-input-group-advanced-search-input-form-with-autocomplete-example-email"
|
|
1226
|
+
/>
|
|
1227
|
+
</div>
|
|
1220
1228
|
</div>
|
|
1221
1229
|
</div>
|
|
1222
1230
|
<div class="pf-v5-c-form__group pf-m-action">
|
|
@@ -3394,14 +3394,15 @@ The `.pf-m-toggle-group` controls when, and at which breakpoint, filters will be
|
|
|
3394
3394
|
class="pf-v5-c-pagination__nav-page-select"
|
|
3395
3395
|
aria-label="Current page 1 of 4"
|
|
3396
3396
|
>
|
|
3397
|
-
<
|
|
3398
|
-
|
|
3399
|
-
|
|
3400
|
-
|
|
3401
|
-
|
|
3402
|
-
|
|
3403
|
-
|
|
3404
|
-
|
|
3397
|
+
<div class="pf-v5-c-form-control">
|
|
3398
|
+
<input
|
|
3399
|
+
aria-label="Current page"
|
|
3400
|
+
type="number"
|
|
3401
|
+
min="1"
|
|
3402
|
+
max="4"
|
|
3403
|
+
value="1"
|
|
3404
|
+
/>
|
|
3405
|
+
</div>
|
|
3405
3406
|
<span aria-hidden="true">of 4</span>
|
|
3406
3407
|
</div>
|
|
3407
3408
|
<button
|
|
@@ -3916,14 +3917,15 @@ The `.pf-m-toggle-group` controls when, and at which breakpoint, filters will be
|
|
|
3916
3917
|
class="pf-v5-c-pagination__nav-page-select"
|
|
3917
3918
|
aria-label="Current page 1 of 4"
|
|
3918
3919
|
>
|
|
3919
|
-
<
|
|
3920
|
-
|
|
3921
|
-
|
|
3922
|
-
|
|
3923
|
-
|
|
3924
|
-
|
|
3925
|
-
|
|
3926
|
-
|
|
3920
|
+
<div class="pf-v5-c-form-control">
|
|
3921
|
+
<input
|
|
3922
|
+
aria-label="Current page"
|
|
3923
|
+
type="number"
|
|
3924
|
+
min="1"
|
|
3925
|
+
max="4"
|
|
3926
|
+
value="1"
|
|
3927
|
+
/>
|
|
3928
|
+
</div>
|
|
3927
3929
|
<span aria-hidden="true">of 4</span>
|
|
3928
3930
|
</div>
|
|
3929
3931
|
<button
|