@patternfly/patternfly 5.0.0-alpha.31 → 5.0.0-alpha.32
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/InputGroup/input-group.css +61 -85
- package/components/InputGroup/input-group.scss +55 -61
- package/components/InputGroup/themes/dark/input-group.scss +11 -25
- package/components/OptionsMenu/options-menu.css +0 -5
- package/components/OptionsMenu/options-menu.scss +0 -6
- package/docs/components/CalendarMonth/examples/CalendarMonth.md +268 -252
- package/docs/components/DatePicker/examples/DatePicker.md +115 -91
- package/docs/components/FileUpload/examples/FileUpload.md +127 -91
- package/docs/components/InputGroup/examples/InputGroup.md +219 -169
- package/docs/components/NumberInput/examples/NumberInput.md +299 -227
- package/docs/components/SearchInput/examples/SearchInput.md +151 -113
- package/docs/components/Slider/examples/Slider.md +60 -38
- package/docs/components/TextInputGroup/examples/TextInputGroup.md +168 -132
- package/docs/components/Toolbar/examples/Toolbar.md +374 -345
- package/docs/demos/DataList/examples/DataList.md +158 -150
- package/docs/demos/Form/examples/BasicForms.md +77 -66
- package/docs/demos/Masthead/examples/Masthead.md +279 -258
- package/docs/demos/PasswordGenerator/examples/PasswordGenerator.md +21 -17
- package/docs/demos/PasswordStrength/examples/PasswordStrength.md +103 -121
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +266 -232
- package/docs/demos/Table/examples/Table.md +950 -902
- package/docs/demos/Toolbar/examples/Toolbar.md +313 -294
- package/package.json +1 -1
- package/patternfly-no-reset.css +60 -79
- package/patternfly.css +60 -79
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -9,23 +9,29 @@ cssPrefix: pf-c-number-input
|
|
|
9
9
|
```html
|
|
10
10
|
<div class="pf-c-number-input">
|
|
11
11
|
<div class="pf-c-input-group">
|
|
12
|
-
<
|
|
13
|
-
<
|
|
14
|
-
<
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
12
|
+
<div class="pf-c-input-group__item">
|
|
13
|
+
<button class="pf-c-button pf-m-control" type="button" aria-label="Minus">
|
|
14
|
+
<span class="pf-c-number-input__icon">
|
|
15
|
+
<i class="fas fa-minus" aria-hidden="true"></i>
|
|
16
|
+
</span>
|
|
17
|
+
</button>
|
|
18
|
+
</div>
|
|
19
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
20
|
+
<input
|
|
21
|
+
class="pf-c-form-control"
|
|
22
|
+
type="number"
|
|
23
|
+
value="90"
|
|
24
|
+
name="number-input-default-name"
|
|
25
|
+
aria-label="Number input"
|
|
26
|
+
/>
|
|
27
|
+
</div>
|
|
28
|
+
<div class="pf-c-input-group__item">
|
|
29
|
+
<button class="pf-c-button pf-m-control" type="button" aria-label="Plus">
|
|
30
|
+
<span class="pf-c-number-input__icon">
|
|
31
|
+
<i class="fas fa-plus" aria-hidden="true"></i>
|
|
32
|
+
</span>
|
|
33
|
+
</button>
|
|
34
|
+
</div>
|
|
29
35
|
</div>
|
|
30
36
|
</div>
|
|
31
37
|
|
|
@@ -36,23 +42,29 @@ cssPrefix: pf-c-number-input
|
|
|
36
42
|
```html
|
|
37
43
|
<div class="pf-c-number-input">
|
|
38
44
|
<div class="pf-c-input-group">
|
|
39
|
-
<
|
|
40
|
-
<
|
|
41
|
-
<
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
45
|
+
<div class="pf-c-input-group__item">
|
|
46
|
+
<button class="pf-c-button pf-m-control" type="button" aria-label="Minus">
|
|
47
|
+
<span class="pf-c-number-input__icon">
|
|
48
|
+
<i class="fas fa-minus" aria-hidden="true"></i>
|
|
49
|
+
</span>
|
|
50
|
+
</button>
|
|
51
|
+
</div>
|
|
52
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
53
|
+
<input
|
|
54
|
+
class="pf-c-form-control"
|
|
55
|
+
type="number"
|
|
56
|
+
value="90"
|
|
57
|
+
name="number-input-unit-name"
|
|
58
|
+
aria-label="Number input"
|
|
59
|
+
/>
|
|
60
|
+
</div>
|
|
61
|
+
<div class="pf-c-input-group__item">
|
|
62
|
+
<button class="pf-c-button pf-m-control" type="button" aria-label="Plus">
|
|
63
|
+
<span class="pf-c-number-input__icon">
|
|
64
|
+
<i class="fas fa-plus" aria-hidden="true"></i>
|
|
65
|
+
</span>
|
|
66
|
+
</button>
|
|
67
|
+
</div>
|
|
56
68
|
</div>
|
|
57
69
|
<span class="pf-c-number-input__unit">%</span>
|
|
58
70
|
</div>
|
|
@@ -62,23 +74,29 @@ cssPrefix: pf-c-number-input
|
|
|
62
74
|
<span class="pf-c-number-input__unit">$</span>
|
|
63
75
|
|
|
64
76
|
<div class="pf-c-input-group">
|
|
65
|
-
<
|
|
66
|
-
<
|
|
67
|
-
<
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
77
|
+
<div class="pf-c-input-group__item">
|
|
78
|
+
<button class="pf-c-button pf-m-control" type="button" aria-label="Minus">
|
|
79
|
+
<span class="pf-c-number-input__icon">
|
|
80
|
+
<i class="fas fa-minus" aria-hidden="true"></i>
|
|
81
|
+
</span>
|
|
82
|
+
</button>
|
|
83
|
+
</div>
|
|
84
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
85
|
+
<input
|
|
86
|
+
class="pf-c-form-control"
|
|
87
|
+
type="number"
|
|
88
|
+
value="1.00"
|
|
89
|
+
name="number-input-unit2-name"
|
|
90
|
+
aria-label="Number input"
|
|
91
|
+
/>
|
|
92
|
+
</div>
|
|
93
|
+
<div class="pf-c-input-group__item">
|
|
94
|
+
<button class="pf-c-button pf-m-control" type="button" aria-label="Plus">
|
|
95
|
+
<span class="pf-c-number-input__icon">
|
|
96
|
+
<i class="fas fa-plus" aria-hidden="true"></i>
|
|
97
|
+
</span>
|
|
98
|
+
</button>
|
|
99
|
+
</div>
|
|
82
100
|
</div>
|
|
83
101
|
</div>
|
|
84
102
|
|
|
@@ -89,29 +107,35 @@ cssPrefix: pf-c-number-input
|
|
|
89
107
|
```html
|
|
90
108
|
<div class="pf-c-number-input">
|
|
91
109
|
<div class="pf-c-input-group">
|
|
92
|
-
<
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
<
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
110
|
+
<div class="pf-c-input-group__item">
|
|
111
|
+
<button
|
|
112
|
+
class="pf-c-button pf-m-control"
|
|
113
|
+
type="button"
|
|
114
|
+
aria-label="Minus"
|
|
115
|
+
disabled
|
|
116
|
+
>
|
|
117
|
+
<span class="pf-c-number-input__icon">
|
|
118
|
+
<i class="fas fa-minus" aria-hidden="true"></i>
|
|
119
|
+
</span>
|
|
120
|
+
</button>
|
|
121
|
+
</div>
|
|
122
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
123
|
+
<input
|
|
124
|
+
class="pf-c-form-control"
|
|
125
|
+
type="number"
|
|
126
|
+
value="0"
|
|
127
|
+
min="0"
|
|
128
|
+
name="number-input-unit-lower-threshold-name"
|
|
129
|
+
aria-label="Number input"
|
|
130
|
+
/>
|
|
131
|
+
</div>
|
|
132
|
+
<div class="pf-c-input-group__item">
|
|
133
|
+
<button class="pf-c-button pf-m-control" type="button" aria-label="Plus">
|
|
134
|
+
<span class="pf-c-number-input__icon">
|
|
135
|
+
<i class="fas fa-plus" aria-hidden="true"></i>
|
|
136
|
+
</span>
|
|
137
|
+
</button>
|
|
138
|
+
</div>
|
|
115
139
|
</div>
|
|
116
140
|
<span class="pf-c-number-input__unit">%</span>
|
|
117
141
|
</div>
|
|
@@ -123,29 +147,35 @@ cssPrefix: pf-c-number-input
|
|
|
123
147
|
```html
|
|
124
148
|
<div class="pf-c-number-input">
|
|
125
149
|
<div class="pf-c-input-group">
|
|
126
|
-
<
|
|
127
|
-
<
|
|
128
|
-
<
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
150
|
+
<div class="pf-c-input-group__item">
|
|
151
|
+
<button class="pf-c-button pf-m-control" type="button" aria-label="Minus">
|
|
152
|
+
<span class="pf-c-number-input__icon">
|
|
153
|
+
<i class="fas fa-minus" aria-hidden="true"></i>
|
|
154
|
+
</span>
|
|
155
|
+
</button>
|
|
156
|
+
</div>
|
|
157
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
158
|
+
<input
|
|
159
|
+
class="pf-c-form-control"
|
|
160
|
+
type="number"
|
|
161
|
+
value="100"
|
|
162
|
+
max="100"
|
|
163
|
+
name="number-input-unit-upper-threshold-name"
|
|
164
|
+
aria-label="Number input"
|
|
165
|
+
/>
|
|
166
|
+
</div>
|
|
167
|
+
<div class="pf-c-input-group__item">
|
|
168
|
+
<button
|
|
169
|
+
class="pf-c-button pf-m-control"
|
|
170
|
+
type="button"
|
|
171
|
+
aria-label="Plus"
|
|
172
|
+
disabled
|
|
173
|
+
>
|
|
174
|
+
<span class="pf-c-number-input__icon">
|
|
175
|
+
<i class="fas fa-plus" aria-hidden="true"></i>
|
|
176
|
+
</span>
|
|
177
|
+
</button>
|
|
178
|
+
</div>
|
|
149
179
|
</div>
|
|
150
180
|
<span class="pf-c-number-input__unit">%</span>
|
|
151
181
|
</div>
|
|
@@ -157,34 +187,40 @@ cssPrefix: pf-c-number-input
|
|
|
157
187
|
```html
|
|
158
188
|
<div class="pf-c-number-input">
|
|
159
189
|
<div class="pf-c-input-group">
|
|
160
|
-
<
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
<
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
190
|
+
<div class="pf-c-input-group__item">
|
|
191
|
+
<button
|
|
192
|
+
class="pf-c-button pf-m-control"
|
|
193
|
+
type="button"
|
|
194
|
+
aria-label="Minus"
|
|
195
|
+
disabled
|
|
196
|
+
>
|
|
197
|
+
<span class="pf-c-number-input__icon">
|
|
198
|
+
<i class="fas fa-minus" aria-hidden="true"></i>
|
|
199
|
+
</span>
|
|
200
|
+
</button>
|
|
201
|
+
</div>
|
|
202
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
203
|
+
<input
|
|
204
|
+
class="pf-c-form-control"
|
|
205
|
+
type="number"
|
|
206
|
+
value="100"
|
|
207
|
+
name="number-input-disabled-name"
|
|
208
|
+
aria-label="Number input"
|
|
209
|
+
disabled
|
|
210
|
+
/>
|
|
211
|
+
</div>
|
|
212
|
+
<div class="pf-c-input-group__item">
|
|
213
|
+
<button
|
|
214
|
+
class="pf-c-button pf-m-control"
|
|
215
|
+
type="button"
|
|
216
|
+
aria-label="Plus"
|
|
217
|
+
disabled
|
|
218
|
+
>
|
|
219
|
+
<span class="pf-c-number-input__icon">
|
|
220
|
+
<i class="fas fa-plus" aria-hidden="true"></i>
|
|
221
|
+
</span>
|
|
222
|
+
</button>
|
|
223
|
+
</div>
|
|
188
224
|
</div>
|
|
189
225
|
<span class="pf-c-number-input__unit">%</span>
|
|
190
226
|
</div>
|
|
@@ -196,46 +232,58 @@ cssPrefix: pf-c-number-input
|
|
|
196
232
|
```html
|
|
197
233
|
<div class="pf-c-number-input pf-m-status">
|
|
198
234
|
<div class="pf-c-input-group">
|
|
199
|
-
<
|
|
200
|
-
<
|
|
201
|
-
<
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
235
|
+
<div class="pf-c-input-group__item">
|
|
236
|
+
<button class="pf-c-button pf-m-control" type="button" aria-label="Minus">
|
|
237
|
+
<span class="pf-c-number-input__icon">
|
|
238
|
+
<i class="fas fa-minus" aria-hidden="true"></i>
|
|
239
|
+
</span>
|
|
240
|
+
</button>
|
|
241
|
+
</div>
|
|
242
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
243
|
+
<input
|
|
244
|
+
class="pf-c-form-control"
|
|
245
|
+
type="number"
|
|
246
|
+
value="90"
|
|
247
|
+
name="number-input-status-name"
|
|
248
|
+
aria-label="Number input"
|
|
249
|
+
/>
|
|
250
|
+
</div>
|
|
251
|
+
<div class="pf-c-input-group__item">
|
|
252
|
+
<button class="pf-c-button pf-m-control" type="button" aria-label="Plus">
|
|
253
|
+
<span class="pf-c-number-input__icon">
|
|
254
|
+
<i class="fas fa-plus" aria-hidden="true"></i>
|
|
255
|
+
</span>
|
|
256
|
+
</button>
|
|
257
|
+
</div>
|
|
216
258
|
</div>
|
|
217
259
|
</div>
|
|
218
260
|
<br />
|
|
219
261
|
<br />
|
|
220
262
|
<div class="pf-c-number-input pf-m-status">
|
|
221
263
|
<div class="pf-c-input-group">
|
|
222
|
-
<
|
|
223
|
-
<
|
|
224
|
-
<
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
264
|
+
<div class="pf-c-input-group__item">
|
|
265
|
+
<button class="pf-c-button pf-m-control" type="button" aria-label="Minus">
|
|
266
|
+
<span class="pf-c-number-input__icon">
|
|
267
|
+
<i class="fas fa-minus" aria-hidden="true"></i>
|
|
268
|
+
</span>
|
|
269
|
+
</button>
|
|
270
|
+
</div>
|
|
271
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
272
|
+
<input
|
|
273
|
+
class="pf-c-form-control pf-m-warning"
|
|
274
|
+
type="number"
|
|
275
|
+
value="90"
|
|
276
|
+
name="number-input-status-warning-name"
|
|
277
|
+
aria-label="Number input"
|
|
278
|
+
/>
|
|
279
|
+
</div>
|
|
280
|
+
<div class="pf-c-input-group__item">
|
|
281
|
+
<button class="pf-c-button pf-m-control" type="button" aria-label="Plus">
|
|
282
|
+
<span class="pf-c-number-input__icon">
|
|
283
|
+
<i class="fas fa-plus" aria-hidden="true"></i>
|
|
284
|
+
</span>
|
|
285
|
+
</button>
|
|
286
|
+
</div>
|
|
239
287
|
</div>
|
|
240
288
|
</div>
|
|
241
289
|
|
|
@@ -249,23 +297,29 @@ cssPrefix: pf-c-number-input
|
|
|
249
297
|
style="--pf-c-number-input--c-form-control--width-chars: 1;"
|
|
250
298
|
>
|
|
251
299
|
<div class="pf-c-input-group">
|
|
252
|
-
<
|
|
253
|
-
<
|
|
254
|
-
<
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
300
|
+
<div class="pf-c-input-group__item">
|
|
301
|
+
<button class="pf-c-button pf-m-control" type="button" aria-label="Minus">
|
|
302
|
+
<span class="pf-c-number-input__icon">
|
|
303
|
+
<i class="fas fa-minus" aria-hidden="true"></i>
|
|
304
|
+
</span>
|
|
305
|
+
</button>
|
|
306
|
+
</div>
|
|
307
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
308
|
+
<input
|
|
309
|
+
class="pf-c-form-control"
|
|
310
|
+
type="number"
|
|
311
|
+
value="1"
|
|
312
|
+
name="number-input-sizes-name"
|
|
313
|
+
aria-label="Number input"
|
|
314
|
+
/>
|
|
315
|
+
</div>
|
|
316
|
+
<div class="pf-c-input-group__item">
|
|
317
|
+
<button class="pf-c-button pf-m-control" type="button" aria-label="Plus">
|
|
318
|
+
<span class="pf-c-number-input__icon">
|
|
319
|
+
<i class="fas fa-plus" aria-hidden="true"></i>
|
|
320
|
+
</span>
|
|
321
|
+
</button>
|
|
322
|
+
</div>
|
|
269
323
|
</div>
|
|
270
324
|
</div>
|
|
271
325
|
<br />
|
|
@@ -275,23 +329,29 @@ cssPrefix: pf-c-number-input
|
|
|
275
329
|
style="--pf-c-number-input--c-form-control--width-chars: 10;"
|
|
276
330
|
>
|
|
277
331
|
<div class="pf-c-input-group">
|
|
278
|
-
<
|
|
279
|
-
<
|
|
280
|
-
<
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
332
|
+
<div class="pf-c-input-group__item">
|
|
333
|
+
<button class="pf-c-button pf-m-control" type="button" aria-label="Minus">
|
|
334
|
+
<span class="pf-c-number-input__icon">
|
|
335
|
+
<i class="fas fa-minus" aria-hidden="true"></i>
|
|
336
|
+
</span>
|
|
337
|
+
</button>
|
|
338
|
+
</div>
|
|
339
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
340
|
+
<input
|
|
341
|
+
class="pf-c-form-control"
|
|
342
|
+
type="number"
|
|
343
|
+
value="1234567890"
|
|
344
|
+
name="number-input-sizes2-name"
|
|
345
|
+
aria-label="Number input"
|
|
346
|
+
/>
|
|
347
|
+
</div>
|
|
348
|
+
<div class="pf-c-input-group__item">
|
|
349
|
+
<button class="pf-c-button pf-m-control" type="button" aria-label="Plus">
|
|
350
|
+
<span class="pf-c-number-input__icon">
|
|
351
|
+
<i class="fas fa-plus" aria-hidden="true"></i>
|
|
352
|
+
</span>
|
|
353
|
+
</button>
|
|
354
|
+
</div>
|
|
295
355
|
</div>
|
|
296
356
|
</div>
|
|
297
357
|
<br />
|
|
@@ -301,23 +361,29 @@ cssPrefix: pf-c-number-input
|
|
|
301
361
|
style="--pf-c-number-input--c-form-control--width-chars: 5;"
|
|
302
362
|
>
|
|
303
363
|
<div class="pf-c-input-group">
|
|
304
|
-
<
|
|
305
|
-
<
|
|
306
|
-
<
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
364
|
+
<div class="pf-c-input-group__item">
|
|
365
|
+
<button class="pf-c-button pf-m-control" type="button" aria-label="Minus">
|
|
366
|
+
<span class="pf-c-number-input__icon">
|
|
367
|
+
<i class="fas fa-minus" aria-hidden="true"></i>
|
|
368
|
+
</span>
|
|
369
|
+
</button>
|
|
370
|
+
</div>
|
|
371
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
372
|
+
<input
|
|
373
|
+
class="pf-c-form-control"
|
|
374
|
+
type="number"
|
|
375
|
+
value="5"
|
|
376
|
+
name="number-input-sizes3-name"
|
|
377
|
+
aria-label="Number input"
|
|
378
|
+
/>
|
|
379
|
+
</div>
|
|
380
|
+
<div class="pf-c-input-group__item">
|
|
381
|
+
<button class="pf-c-button pf-m-control" type="button" aria-label="Plus">
|
|
382
|
+
<span class="pf-c-number-input__icon">
|
|
383
|
+
<i class="fas fa-plus" aria-hidden="true"></i>
|
|
384
|
+
</span>
|
|
385
|
+
</button>
|
|
386
|
+
</div>
|
|
321
387
|
</div>
|
|
322
388
|
</div>
|
|
323
389
|
<br />
|
|
@@ -327,23 +393,29 @@ cssPrefix: pf-c-number-input
|
|
|
327
393
|
style="--pf-c-number-input--c-form-control--width-chars: 5;"
|
|
328
394
|
>
|
|
329
395
|
<div class="pf-c-input-group">
|
|
330
|
-
<
|
|
331
|
-
<
|
|
332
|
-
<
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
396
|
+
<div class="pf-c-input-group__item">
|
|
397
|
+
<button class="pf-c-button pf-m-control" type="button" aria-label="Minus">
|
|
398
|
+
<span class="pf-c-number-input__icon">
|
|
399
|
+
<i class="fas fa-minus" aria-hidden="true"></i>
|
|
400
|
+
</span>
|
|
401
|
+
</button>
|
|
402
|
+
</div>
|
|
403
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
404
|
+
<input
|
|
405
|
+
class="pf-c-form-control"
|
|
406
|
+
type="number"
|
|
407
|
+
value="12345"
|
|
408
|
+
name="number-input-sizes4-name"
|
|
409
|
+
aria-label="Number input"
|
|
410
|
+
/>
|
|
411
|
+
</div>
|
|
412
|
+
<div class="pf-c-input-group__item">
|
|
413
|
+
<button class="pf-c-button pf-m-control" type="button" aria-label="Plus">
|
|
414
|
+
<span class="pf-c-number-input__icon">
|
|
415
|
+
<i class="fas fa-plus" aria-hidden="true"></i>
|
|
416
|
+
</span>
|
|
417
|
+
</button>
|
|
418
|
+
</div>
|
|
347
419
|
</div>
|
|
348
420
|
</div>
|
|
349
421
|
|