@patternfly/patternfly 4.169.0 → 4.172.0
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/RELEASE-NOTES.md +41 -1
- package/components/ContextSelector/context-selector.css +7 -2
- package/components/ContextSelector/context-selector.scss +16 -11
- package/components/Dropdown/dropdown.css +7 -0
- package/components/Dropdown/dropdown.scss +6 -0
- package/components/Masthead/masthead.css +9 -6
- package/components/Masthead/masthead.scss +12 -5
- package/components/Menu/menu.css +1 -0
- package/components/Menu/menu.scss +1 -0
- package/components/MenuToggle/menu-toggle.css +13 -0
- package/components/MenuToggle/menu-toggle.scss +26 -12
- package/components/Nav/nav.css +2 -2
- package/components/Nav/nav.scss +4 -4
- package/components/NumberInput/number-input.css +9 -6
- package/components/NumberInput/number-input.scss +2 -10
- package/components/OptionsMenu/options-menu.css +13 -2
- package/components/OptionsMenu/options-menu.scss +19 -7
- package/components/Pagination/pagination.css +9 -1
- package/components/Pagination/pagination.scss +3 -1
- package/components/ProgressStepper/progress-stepper.css +5 -0
- package/components/ProgressStepper/progress-stepper.scss +6 -0
- package/components/Select/select.css +11 -0
- package/components/Select/select.scss +14 -0
- package/components/Sidebar/sidebar.css +1 -0
- package/components/Sidebar/sidebar.scss +1 -0
- package/components/Table/table-scrollable.css +2 -0
- package/components/Table/table-scrollable.scss +2 -0
- package/components/Table/table.css +1 -1
- package/components/Table/table.scss +1 -1
- package/components/Toolbar/toolbar.css +1 -0
- package/components/Toolbar/toolbar.scss +1 -0
- package/docs/components/Table/examples/Table.md +1 -1
- package/docs/components/TextInputGroup/examples/TextInputGroup.md +26 -1
- package/docs/demos/DataList/examples/DataList.md +2 -3
- package/docs/demos/Table/examples/Table.md +21 -69
- package/docs/demos/Toolbar/examples/Toolbar.md +3 -10
- package/package.json +1 -1
- package/patternfly-no-reset.css +83 -20
- package/patternfly.css +83 -20
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/sass-utilities/placeholders.scss +12 -0
|
@@ -31,6 +31,8 @@
|
|
|
31
31
|
--pf-c-options-menu__toggle-icon--MarginRight: var(--pf-global--spacer--sm);
|
|
32
32
|
--pf-c-options-menu__toggle-icon--MarginLeft: var(--pf-global--spacer--md);
|
|
33
33
|
--pf-c-options-menu--m-top--m-expanded__toggle-icon--Rotate: 180deg;
|
|
34
|
+
--pf-c-options-menu--m-plain__toggle-icon--Color: var(--pf-global--Color--200);
|
|
35
|
+
--pf-c-options-menu--m-plain--hover__toggle-icon--Color: var(--pf-global--Color--100);
|
|
34
36
|
|
|
35
37
|
// Text toggle button
|
|
36
38
|
--pf-c-options-menu__toggle-button--BackgroundColor: transparent;
|
|
@@ -153,15 +155,19 @@
|
|
|
153
155
|
}
|
|
154
156
|
}
|
|
155
157
|
|
|
156
|
-
&.pf-m-plain
|
|
157
|
-
--pf-c-options-menu__toggle--
|
|
158
|
-
--pf-c-options-menu__toggle--PaddingLeft: var(--pf-c-options-menu__toggle--m-plain--PaddingLeft);
|
|
158
|
+
&.pf-m-plain {
|
|
159
|
+
--pf-c-options-menu__toggle-icon--Color: var(--pf-c-options-menu--m-plain__toggle-icon--Color);
|
|
159
160
|
|
|
160
|
-
|
|
161
|
-
|
|
161
|
+
&:not(.pf-m-text) {
|
|
162
|
+
--pf-c-options-menu__toggle--PaddingRight: var(--pf-c-options-menu__toggle--m-plain--PaddingRight);
|
|
163
|
+
--pf-c-options-menu__toggle--PaddingLeft: var(--pf-c-options-menu__toggle--m-plain--PaddingLeft);
|
|
162
164
|
|
|
163
|
-
|
|
164
|
-
|
|
165
|
+
display: inline-block;
|
|
166
|
+
color: var(--pf-c-options-menu__toggle--m-plain--Color);
|
|
167
|
+
|
|
168
|
+
.pf-c-options-menu__toggle-button-icon {
|
|
169
|
+
line-height: var(--pf-c-options-menu__toggle--LineHeight);
|
|
170
|
+
}
|
|
165
171
|
}
|
|
166
172
|
|
|
167
173
|
&:hover,
|
|
@@ -170,6 +176,7 @@
|
|
|
170
176
|
&:focus,
|
|
171
177
|
.pf-c-options-menu.pf-m-expanded > & {
|
|
172
178
|
--pf-c-options-menu__toggle--m-plain--Color: var(--pf-c-options-menu__toggle--m-plain--hover--Color);
|
|
179
|
+
--pf-c-options-menu--m-plain__toggle-icon--Color: var(--pf-c-options-menu--m-plain--hover__toggle-icon--Color);
|
|
173
180
|
}
|
|
174
181
|
|
|
175
182
|
&.pf-m-disabled,
|
|
@@ -207,6 +214,11 @@
|
|
|
207
214
|
@include pf-text-overflow;
|
|
208
215
|
}
|
|
209
216
|
|
|
217
|
+
.pf-c-options-menu__toggle-icon,
|
|
218
|
+
.pf-c-options-menu__toggle-button-icon {
|
|
219
|
+
color: var(--pf-c-options-menu__toggle-icon--Color, inherit);
|
|
220
|
+
}
|
|
221
|
+
|
|
210
222
|
.pf-c-options-menu__toggle-icon {
|
|
211
223
|
margin-right: var(--pf-c-options-menu__toggle-icon--MarginRight);
|
|
212
224
|
margin-left: var(--pf-c-options-menu__toggle-icon--MarginLeft);
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
.pf-c-pagination__nav-page-select .pf-c-form-control {
|
|
2
|
+
appearance: textfield;
|
|
3
|
+
}
|
|
4
|
+
.pf-c-pagination__nav-page-select .pf-c-form-control::-webkit-inner-spin-button, .pf-c-pagination__nav-page-select .pf-c-form-control::-webkit-outer-spin-button {
|
|
5
|
+
appearance: none;
|
|
6
|
+
margin: 0;
|
|
7
|
+
}
|
|
8
|
+
|
|
1
9
|
.pf-c-pagination {
|
|
2
10
|
--pf-c-pagination--child--MarginRight: var(--pf-global--spacer--lg);
|
|
3
11
|
--pf-c-pagination--m-bottom--child--MarginRight: 0;
|
|
@@ -26,7 +34,7 @@
|
|
|
26
34
|
--pf-c-pagination__nav-page-select--PaddingLeft: var(--pf-global--spacer--md);
|
|
27
35
|
--pf-c-pagination__nav-page-select--PaddingRight: var(--pf-global--spacer--md);
|
|
28
36
|
--pf-c-pagination__nav-page-select--child--MarginRight: var(--pf-global--spacer--xs);
|
|
29
|
-
--pf-c-pagination__nav-page-select--c-form-control--width-base:
|
|
37
|
+
--pf-c-pagination__nav-page-select--c-form-control--width-base: calc(var(--pf-global--spacer--sm) * 2 + var(--pf-global--BorderWidth--sm) * 2);
|
|
30
38
|
--pf-c-pagination__nav-page-select--c-form-control--width-chars: 2;
|
|
31
39
|
--pf-c-pagination__nav-page-select--c-form-control--Width: calc(var(--pf-c-pagination__nav-page-select--c-form-control--width-base) + (var(--pf-c-pagination__nav-page-select--c-form-control--width-chars) * 1ch));
|
|
32
40
|
--pf-c-pagination__total-items--Display: block;
|
|
@@ -37,7 +37,7 @@ $pf-c-pagination--breakpoint-map: build-breakpoint-map();
|
|
|
37
37
|
--pf-c-pagination__nav-page-select--PaddingLeft: var(--pf-global--spacer--md);
|
|
38
38
|
--pf-c-pagination__nav-page-select--PaddingRight: var(--pf-global--spacer--md);
|
|
39
39
|
--pf-c-pagination__nav-page-select--child--MarginRight: var(--pf-global--spacer--xs);
|
|
40
|
-
--pf-c-pagination__nav-page-select--c-form-control--width-base:
|
|
40
|
+
--pf-c-pagination__nav-page-select--c-form-control--width-base: calc(var(--pf-global--spacer--sm) * 2 + var(--pf-global--BorderWidth--sm) * 2);
|
|
41
41
|
--pf-c-pagination__nav-page-select--c-form-control--width-chars: 2;
|
|
42
42
|
--pf-c-pagination__nav-page-select--c-form-control--Width: calc(var(--pf-c-pagination__nav-page-select--c-form-control--width-base) + (var(--pf-c-pagination__nav-page-select--c-form-control--width-chars) * 1ch));
|
|
43
43
|
|
|
@@ -257,6 +257,8 @@ $pf-c-pagination--breakpoint-map: build-breakpoint-map();
|
|
|
257
257
|
|
|
258
258
|
.pf-c-form-control {
|
|
259
259
|
width: var(--pf-c-pagination__nav-page-select--c-form-control--Width);
|
|
260
|
+
|
|
261
|
+
@extend %pf-remove-num-arrows;
|
|
260
262
|
}
|
|
261
263
|
}
|
|
262
264
|
|
|
@@ -80,6 +80,8 @@
|
|
|
80
80
|
--pf-c-progress-stepper__step-description--Color: var(--pf-global--Color--200);
|
|
81
81
|
--pf-c-progress-stepper__step-description--TextAlign: left;
|
|
82
82
|
--pf-c-progress-stepper--m-center__step-description--TextAlign: center;
|
|
83
|
+
--pf-c-progress-stepper--m-center__step-description--MarginRight: 0;
|
|
84
|
+
--pf-c-progress-stepper--m-center__step-description--MarginLeft: 0;
|
|
83
85
|
position: relative;
|
|
84
86
|
display: grid;
|
|
85
87
|
grid-auto-flow: var(--pf-c-progress-stepper--GridAutoFlow);
|
|
@@ -170,6 +172,9 @@
|
|
|
170
172
|
.pf-c-progress-stepper__step.pf-m-info {
|
|
171
173
|
--pf-c-progress-stepper__step-icon--Color: var(--pf-global--info-color--100);
|
|
172
174
|
}
|
|
175
|
+
.pf-c-progress-stepper__step:last-child {
|
|
176
|
+
--pf-c-progress-stepper__step-main--MarginBottom: 0;
|
|
177
|
+
}
|
|
173
178
|
|
|
174
179
|
.pf-c-progress-stepper__step-connector {
|
|
175
180
|
position: relative;
|
|
@@ -102,6 +102,8 @@
|
|
|
102
102
|
--pf-c-progress-stepper__step-description--Color: var(--pf-global--Color--200);
|
|
103
103
|
--pf-c-progress-stepper__step-description--TextAlign: left;
|
|
104
104
|
--pf-c-progress-stepper--m-center__step-description--TextAlign: center;
|
|
105
|
+
--pf-c-progress-stepper--m-center__step-description--MarginRight: 0;
|
|
106
|
+
--pf-c-progress-stepper--m-center__step-description--MarginLeft: 0;
|
|
105
107
|
|
|
106
108
|
position: relative;
|
|
107
109
|
display: grid;
|
|
@@ -206,6 +208,10 @@
|
|
|
206
208
|
&.pf-m-info {
|
|
207
209
|
--pf-c-progress-stepper__step-icon--Color: var(--pf-global--info-color--100);
|
|
208
210
|
}
|
|
211
|
+
|
|
212
|
+
&:last-child {
|
|
213
|
+
--pf-c-progress-stepper__step-main--MarginBottom: 0;
|
|
214
|
+
}
|
|
209
215
|
}
|
|
210
216
|
|
|
211
217
|
// The step icon wrapper provides a container on which to use the before for the line connecting the steps
|
|
@@ -80,6 +80,8 @@
|
|
|
80
80
|
--pf-c-select__toggle-arrow--MarginRight: var(--pf-global--spacer--sm);
|
|
81
81
|
--pf-c-select__toggle-arrow--with-clear--MarginLeft: var(--pf-global--spacer--sm);
|
|
82
82
|
--pf-c-select__toggle-arrow--m-top--m-expanded__toggle-arrow--Rotate: 180deg;
|
|
83
|
+
--pf-c-select--m-plain__toggle-arrow--Color: var(--pf-global--Color--200);
|
|
84
|
+
--pf-c-select--m-plain--hover__toggle-arrow--Color: var(--pf-global--Color--100);
|
|
83
85
|
--pf-c-select__toggle-clear--PaddingRight: var(--pf-global--spacer--sm);
|
|
84
86
|
--pf-c-select__toggle-clear--PaddingLeft: var(--pf-global--spacer--md);
|
|
85
87
|
--pf-c-select__toggle-clear--toggle-button--PaddingLeft: var(--pf-global--spacer--sm);
|
|
@@ -257,9 +259,15 @@
|
|
|
257
259
|
--pf-c-select__toggle--before--BorderBottomColor: var(--pf-c-select__toggle--m-expanded--before--BorderBottomColor);
|
|
258
260
|
--pf-c-select__toggle--before--BorderBottomWidth: var(--pf-c-select__toggle--m-expanded--before--BorderBottomWidth);
|
|
259
261
|
}
|
|
262
|
+
.pf-c-select__toggle.pf-m-plain {
|
|
263
|
+
--pf-c-select__toggle-arrow--Color: var(--pf-c-select--m-plain__toggle-arrow--Color);
|
|
264
|
+
}
|
|
260
265
|
.pf-c-select__toggle.pf-m-plain::before {
|
|
261
266
|
border-color: var(--pf-c-select__toggle--m-plain--before--BorderColor);
|
|
262
267
|
}
|
|
268
|
+
.pf-c-select__toggle.pf-m-plain:hover, .pf-c-select__toggle.pf-m-plain:active, .pf-c-select__toggle.pf-m-plain.pf-m-active, .pf-c-select__toggle.pf-m-plain:focus, .pf-c-select.pf-m-expanded > .pf-c-select__toggle.pf-m-plain {
|
|
269
|
+
--pf-c-select--m-plain__toggle-arrow--Color: var(--pf-c-select--m-plain--hover__toggle-arrow--Color);
|
|
270
|
+
}
|
|
263
271
|
.pf-c-select__toggle.pf-m-typeahead {
|
|
264
272
|
--pf-c-select__toggle--PaddingTop: 0;
|
|
265
273
|
--pf-c-select__toggle--PaddingRight: 0;
|
|
@@ -288,6 +296,9 @@
|
|
|
288
296
|
--pf-c-select__toggle-text--Color: var(--pf-c-select__toggle--m-placeholder__toggle-text--Color);
|
|
289
297
|
}
|
|
290
298
|
|
|
299
|
+
.pf-c-select__toggle-arrow {
|
|
300
|
+
color: var(--pf-c-select__toggle-arrow--Color, inherit);
|
|
301
|
+
}
|
|
291
302
|
* + .pf-c-select__toggle-arrow {
|
|
292
303
|
margin-right: var(--pf-c-select__toggle-arrow--MarginRight);
|
|
293
304
|
margin-left: var(--pf-c-select__toggle-arrow--MarginLeft);
|
|
@@ -95,6 +95,8 @@
|
|
|
95
95
|
--pf-c-select__toggle-arrow--MarginRight: var(--pf-global--spacer--sm);
|
|
96
96
|
--pf-c-select__toggle-arrow--with-clear--MarginLeft: var(--pf-global--spacer--sm);
|
|
97
97
|
--pf-c-select__toggle-arrow--m-top--m-expanded__toggle-arrow--Rotate: 180deg;
|
|
98
|
+
--pf-c-select--m-plain__toggle-arrow--Color: var(--pf-global--Color--200);
|
|
99
|
+
--pf-c-select--m-plain--hover__toggle-arrow--Color: var(--pf-global--Color--100);
|
|
98
100
|
|
|
99
101
|
// Toggle button
|
|
100
102
|
--pf-c-select__toggle-clear--PaddingRight: var(--pf-global--spacer--sm);
|
|
@@ -323,9 +325,19 @@
|
|
|
323
325
|
}
|
|
324
326
|
|
|
325
327
|
&.pf-m-plain {
|
|
328
|
+
--pf-c-select__toggle-arrow--Color: var(--pf-c-select--m-plain__toggle-arrow--Color);
|
|
329
|
+
|
|
326
330
|
&::before {
|
|
327
331
|
border-color: var(--pf-c-select__toggle--m-plain--before--BorderColor);
|
|
328
332
|
}
|
|
333
|
+
|
|
334
|
+
&:hover,
|
|
335
|
+
&:active,
|
|
336
|
+
&.pf-m-active,
|
|
337
|
+
&:focus,
|
|
338
|
+
.pf-c-select.pf-m-expanded > & {
|
|
339
|
+
--pf-c-select--m-plain__toggle-arrow--Color: var(--pf-c-select--m-plain--hover__toggle-arrow--Color);
|
|
340
|
+
}
|
|
329
341
|
}
|
|
330
342
|
|
|
331
343
|
&.pf-m-typeahead {
|
|
@@ -363,6 +375,8 @@
|
|
|
363
375
|
}
|
|
364
376
|
|
|
365
377
|
.pf-c-select__toggle-arrow {
|
|
378
|
+
color: var(--pf-c-select__toggle-arrow--Color, inherit);
|
|
379
|
+
|
|
366
380
|
* + & {
|
|
367
381
|
margin-right: var(--pf-c-select__toggle-arrow--MarginRight);
|
|
368
382
|
margin-left: var(--pf-c-select__toggle-arrow--MarginLeft);
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
--pf-c-sidebar--m-split__panel--Position: static;
|
|
22
22
|
--pf-c-sidebar--m-split__panel--Top: auto;
|
|
23
23
|
--pf-c-sidebar--m-split--m-panel-right__panel--Order: 1;
|
|
24
|
+
--pf-c-sidebar__panel--FlexBasis--base: auto;
|
|
24
25
|
--pf-c-sidebar__panel--BoxShadow--base: 0 0.25rem 0.25rem -0.25rem rgba(3, 3, 3, 0.16);
|
|
25
26
|
--pf-c-sidebar__panel--BoxShadow: var(--pf-c-sidebar__panel--BoxShadow--base);
|
|
26
27
|
--pf-c-sidebar__panel--Top: 0;
|
|
@@ -37,6 +37,7 @@ $pf-c-sidebar__panel--list--width: ("default", 25, 33, 50, 66, 75, 100);
|
|
|
37
37
|
--pf-c-sidebar--m-split--m-panel-right__panel--Order: 1;
|
|
38
38
|
|
|
39
39
|
// Panel
|
|
40
|
+
--pf-c-sidebar__panel--FlexBasis--base: auto;
|
|
40
41
|
--pf-c-sidebar__panel--BoxShadow--base: #{0 pf-size-prem(4px) pf-size-prem(4px) pf-size-prem(-4px) rgba($pf-color-black-1000, .16)}; // modified so the shadow is only visible on the bottom of the element
|
|
41
42
|
--pf-c-sidebar__panel--BoxShadow: var(--pf-c-sidebar__panel--BoxShadow--base);
|
|
42
43
|
--pf-c-sidebar__panel--Top: 0;
|
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
--pf-c-table__sticky-column--BackgroundColor: var(--pf-global--BackgroundColor--100);
|
|
8
8
|
--pf-c-table__sticky-column--m-border-right--before--BorderRightWidth: var(--pf-global--BorderWidth--sm);
|
|
9
9
|
--pf-c-table__sticky-column--m-border-right--before--BorderRightColor: var(--pf-global--BorderColor--100);
|
|
10
|
+
--pf-c-table__sticky-column--m-border-left--before--BorderLeftWidth: var(--pf-global--BorderWidth--sm);
|
|
11
|
+
--pf-c-table__sticky-column--m-border-left--before--BorderLeftColor: var(--pf-global--BorderColor--100);
|
|
10
12
|
--pf-c-table--m-sticky-header--thead__sticky-column--ZIndex: calc(var(--pf-c-table__sticky-column--ZIndex) + 1);
|
|
11
13
|
}
|
|
12
14
|
.pf-c-table .pf-c-table__sticky-column {
|
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
--pf-c-table__sticky-column--BackgroundColor: var(--pf-global--BackgroundColor--100);
|
|
8
8
|
--pf-c-table__sticky-column--m-border-right--before--BorderRightWidth: var(--pf-global--BorderWidth--sm);
|
|
9
9
|
--pf-c-table__sticky-column--m-border-right--before--BorderRightColor: var(--pf-global--BorderColor--100);
|
|
10
|
+
--pf-c-table__sticky-column--m-border-left--before--BorderLeftWidth: var(--pf-global--BorderWidth--sm);
|
|
11
|
+
--pf-c-table__sticky-column--m-border-left--before--BorderLeftColor: var(--pf-global--BorderColor--100);
|
|
10
12
|
--pf-c-table--m-sticky-header--thead__sticky-column--ZIndex: calc(var(--pf-c-table__sticky-column--ZIndex) + 1);
|
|
11
13
|
|
|
12
14
|
.pf-c-table__sticky-column {
|
|
@@ -382,7 +382,7 @@
|
|
|
382
382
|
border-right: var(--pf-c-table--cell--m-border-right--before--BorderRightWidth) solid var(--pf-c-table--cell--m-border-right--before--BorderRightColor);
|
|
383
383
|
}
|
|
384
384
|
.pf-c-table tr > *.pf-m-border-left::before {
|
|
385
|
-
border-left: var(--pf-c-table--cell--m-border-
|
|
385
|
+
border-left: var(--pf-c-table--cell--m-border-left--before--BorderLeftWidth) solid var(--pf-c-table--cell--m-border-left--before--BorderLeftColor);
|
|
386
386
|
}
|
|
387
387
|
.pf-c-table caption {
|
|
388
388
|
padding-top: var(--pf-c-table-caption--PaddingTop);
|
|
@@ -440,7 +440,7 @@
|
|
|
440
440
|
}
|
|
441
441
|
|
|
442
442
|
&.pf-m-border-left::before {
|
|
443
|
-
border-left: var(--pf-c-table--cell--m-border-
|
|
443
|
+
border-left: var(--pf-c-table--cell--m-border-left--before--BorderLeftWidth) solid var(--pf-c-table--cell--m-border-left--before--BorderLeftColor);
|
|
444
444
|
}
|
|
445
445
|
}
|
|
446
446
|
|
|
@@ -68,6 +68,7 @@
|
|
|
68
68
|
--pf-c-toolbar--PaddingTop: var(--pf-global--spacer--md);
|
|
69
69
|
--pf-c-toolbar--PaddingBottom: var(--pf-global--spacer--md);
|
|
70
70
|
--pf-c-toolbar__item--Display: block;
|
|
71
|
+
--pf-c-toolbar__item--MinWidth--base: auto;
|
|
71
72
|
--pf-c-toolbar__group--Display: flex;
|
|
72
73
|
--pf-c-toolbar--m-sticky--ZIndex: var(--pf-global--ZIndex--xs);
|
|
73
74
|
--pf-c-toolbar--m-sticky--BoxShadow: var(--pf-global--BoxShadow--sm-bottom);
|
|
@@ -23260,7 +23260,7 @@ Basic striped table rows are supported on tables with a single `<tbody>` element
|
|
|
23260
23260
|
|
|
23261
23261
|
```html
|
|
23262
23262
|
<table
|
|
23263
|
-
class="pf-c-table pf-m-grid-md
|
|
23263
|
+
class="pf-c-table pf-m-grid-md"
|
|
23264
23264
|
role="grid"
|
|
23265
23265
|
aria-label="This is a striped tr example"
|
|
23266
23266
|
id="table-striped-tr"
|
|
@@ -33,8 +33,8 @@ cssPrefix: pf-c-text-input-group
|
|
|
33
33
|
class="pf-c-text-input-group__text-input"
|
|
34
34
|
type="text"
|
|
35
35
|
value="Disabled"
|
|
36
|
-
aria-label="Disabled text input group example input"
|
|
37
36
|
disabled
|
|
37
|
+
aria-label="Type to filter"
|
|
38
38
|
/>
|
|
39
39
|
</span>
|
|
40
40
|
</div>
|
|
@@ -490,3 +490,28 @@ cssPrefix: pf-c-text-input-group
|
|
|
490
490
|
</div>
|
|
491
491
|
|
|
492
492
|
```
|
|
493
|
+
|
|
494
|
+
### Autocomplete last option hint
|
|
495
|
+
|
|
496
|
+
```html
|
|
497
|
+
<div class="pf-c-text-input-group">
|
|
498
|
+
<div class="pf-c-text-input-group__main">
|
|
499
|
+
<span class="pf-c-text-input-group__text">
|
|
500
|
+
<input
|
|
501
|
+
class="pf-c-text-input-group__text-input pf-m-hint"
|
|
502
|
+
type="text"
|
|
503
|
+
value="appleseed"
|
|
504
|
+
disabled
|
|
505
|
+
aria-hidden="true"
|
|
506
|
+
/>
|
|
507
|
+
<input
|
|
508
|
+
class="pf-c-text-input-group__text-input"
|
|
509
|
+
type="text"
|
|
510
|
+
value="apples"
|
|
511
|
+
aria-label="Type to filter"
|
|
512
|
+
/>
|
|
513
|
+
</span>
|
|
514
|
+
</div>
|
|
515
|
+
</div>
|
|
516
|
+
|
|
517
|
+
```
|
|
@@ -4357,21 +4357,14 @@ wrapperTag: div
|
|
|
4357
4357
|
>
|
|
4358
4358
|
<thead>
|
|
4359
4359
|
<tr role="row">
|
|
4360
|
-
<td
|
|
4361
|
-
<input
|
|
4362
|
-
type="checkbox"
|
|
4363
|
-
name="check-all"
|
|
4364
|
-
aria-label="Select all rows"
|
|
4365
|
-
/>
|
|
4366
|
-
</td>
|
|
4360
|
+
<td></td>
|
|
4367
4361
|
<th role="columnheader" scope="col">Repositories</th>
|
|
4368
4362
|
<th role="columnheader" scope="col">Branches</th>
|
|
4369
4363
|
<th role="columnheader" scope="col">Pull requests</th>
|
|
4370
4364
|
<th role="columnheader" scope="col">Workspaces</th>
|
|
4371
4365
|
<th role="columnheader" scope="col">Last commit</th>
|
|
4372
|
-
<td
|
|
4373
|
-
|
|
4374
|
-
<td role="cell"></td>
|
|
4366
|
+
<td></td>
|
|
4367
|
+
<td></td>
|
|
4375
4368
|
</tr>
|
|
4376
4369
|
</thead>
|
|
4377
4370
|
|
|
@@ -5612,13 +5605,7 @@ wrapperTag: div
|
|
|
5612
5605
|
>
|
|
5613
5606
|
<thead>
|
|
5614
5607
|
<tr role="row">
|
|
5615
|
-
<td
|
|
5616
|
-
<input
|
|
5617
|
-
type="checkbox"
|
|
5618
|
-
name="check-all"
|
|
5619
|
-
aria-label="Select all rows"
|
|
5620
|
-
/>
|
|
5621
|
-
</td>
|
|
5608
|
+
<td></td>
|
|
5622
5609
|
<th
|
|
5623
5610
|
class="pf-c-table__sort pf-m-selected"
|
|
5624
5611
|
role="columnheader"
|
|
@@ -5694,8 +5681,8 @@ wrapperTag: div
|
|
|
5694
5681
|
</div>
|
|
5695
5682
|
</button>
|
|
5696
5683
|
</th>
|
|
5697
|
-
<td
|
|
5698
|
-
<td
|
|
5684
|
+
<td></td>
|
|
5685
|
+
<td></td>
|
|
5699
5686
|
</tr>
|
|
5700
5687
|
</thead>
|
|
5701
5688
|
|
|
@@ -7008,13 +6995,7 @@ wrapperTag: div
|
|
|
7008
6995
|
</button>
|
|
7009
6996
|
</td>
|
|
7010
6997
|
|
|
7011
|
-
<td
|
|
7012
|
-
<input
|
|
7013
|
-
type="checkbox"
|
|
7014
|
-
name="check-all"
|
|
7015
|
-
aria-label="Select all rows"
|
|
7016
|
-
/>
|
|
7017
|
-
</td>
|
|
6998
|
+
<td></td>
|
|
7018
6999
|
<th
|
|
7019
7000
|
class="pf-m-width-30"
|
|
7020
7001
|
role="columnheader"
|
|
@@ -7024,9 +7005,8 @@ wrapperTag: div
|
|
|
7024
7005
|
<th role="columnheader" scope="col">Pull requests</th>
|
|
7025
7006
|
<th role="columnheader" scope="col">Work spaces</th>
|
|
7026
7007
|
<th role="columnheader" scope="col">Last commit</th>
|
|
7027
|
-
<td
|
|
7028
|
-
|
|
7029
|
-
<td role="cell"></td>
|
|
7008
|
+
<td></td>
|
|
7009
|
+
<td></td>
|
|
7030
7010
|
</tr>
|
|
7031
7011
|
</thead>
|
|
7032
7012
|
|
|
@@ -8519,22 +8499,15 @@ wrapperTag: div
|
|
|
8519
8499
|
>
|
|
8520
8500
|
<thead>
|
|
8521
8501
|
<tr role="row">
|
|
8522
|
-
<td
|
|
8523
|
-
<input
|
|
8524
|
-
type="checkbox"
|
|
8525
|
-
name="check-all"
|
|
8526
|
-
aria-label="Select all rows"
|
|
8527
|
-
/>
|
|
8528
|
-
</td>
|
|
8502
|
+
<td></td>
|
|
8529
8503
|
<th role="columnheader" scope="col">Contributor</th>
|
|
8530
8504
|
<th role="columnheader" scope="col">Position</th>
|
|
8531
8505
|
<th role="columnheader" scope="col">Location</th>
|
|
8532
8506
|
<th role="columnheader" scope="col">Last seen</th>
|
|
8533
8507
|
<th role="columnheader" scope="col">Numbers</th>
|
|
8534
8508
|
<th class="pf-c-table__icon" role="columnheader" scope="col">Icons</th>
|
|
8535
|
-
<
|
|
8536
|
-
|
|
8537
|
-
<th role="columnheader"></th>
|
|
8509
|
+
<td></td>
|
|
8510
|
+
<td></td>
|
|
8538
8511
|
</tr>
|
|
8539
8512
|
</thead>
|
|
8540
8513
|
|
|
@@ -14857,21 +14830,14 @@ wrapperTag: div
|
|
|
14857
14830
|
>
|
|
14858
14831
|
<thead>
|
|
14859
14832
|
<tr role="row">
|
|
14860
|
-
<td
|
|
14861
|
-
<input
|
|
14862
|
-
type="checkbox"
|
|
14863
|
-
name="check-all"
|
|
14864
|
-
aria-label="Select all rows"
|
|
14865
|
-
/>
|
|
14866
|
-
</td>
|
|
14833
|
+
<td></td>
|
|
14867
14834
|
<th role="columnheader" scope="col">Repositories</th>
|
|
14868
14835
|
<th role="columnheader" scope="col">Branches</th>
|
|
14869
14836
|
<th role="columnheader" scope="col">Pull requests</th>
|
|
14870
14837
|
<th role="columnheader" scope="col">Workspaces</th>
|
|
14871
14838
|
<th role="columnheader" scope="col">Last commit</th>
|
|
14872
|
-
<td
|
|
14873
|
-
|
|
14874
|
-
<td role="cell"></td>
|
|
14839
|
+
<td></td>
|
|
14840
|
+
<td></td>
|
|
14875
14841
|
</tr>
|
|
14876
14842
|
</thead>
|
|
14877
14843
|
|
|
@@ -16175,21 +16141,14 @@ wrapperTag: div
|
|
|
16175
16141
|
>
|
|
16176
16142
|
<thead>
|
|
16177
16143
|
<tr role="row">
|
|
16178
|
-
<td
|
|
16179
|
-
<input
|
|
16180
|
-
type="checkbox"
|
|
16181
|
-
name="check-all"
|
|
16182
|
-
aria-label="Select all rows"
|
|
16183
|
-
/>
|
|
16184
|
-
</td>
|
|
16144
|
+
<td></td>
|
|
16185
16145
|
<th role="columnheader" scope="col">Repositories</th>
|
|
16186
16146
|
<th role="columnheader" scope="col">Branches</th>
|
|
16187
16147
|
<th role="columnheader" scope="col">Pull requests</th>
|
|
16188
16148
|
<th role="columnheader" scope="col">Workspaces</th>
|
|
16189
16149
|
<th role="columnheader" scope="col">Last commit</th>
|
|
16190
|
-
<td
|
|
16191
|
-
|
|
16192
|
-
<td role="cell"></td>
|
|
16150
|
+
<td></td>
|
|
16151
|
+
<td></td>
|
|
16193
16152
|
</tr>
|
|
16194
16153
|
</thead>
|
|
16195
16154
|
|
|
@@ -17580,21 +17539,14 @@ wrapperTag: div
|
|
|
17580
17539
|
>
|
|
17581
17540
|
<thead>
|
|
17582
17541
|
<tr role="row">
|
|
17583
|
-
<td
|
|
17584
|
-
<input
|
|
17585
|
-
type="checkbox"
|
|
17586
|
-
name="check-all"
|
|
17587
|
-
aria-label="Select all rows"
|
|
17588
|
-
/>
|
|
17589
|
-
</td>
|
|
17542
|
+
<td></td>
|
|
17590
17543
|
<th role="columnheader" scope="col">Repositories</th>
|
|
17591
17544
|
<th role="columnheader" scope="col">Branches</th>
|
|
17592
17545
|
<th role="columnheader" scope="col">Pull requests</th>
|
|
17593
17546
|
<th role="columnheader" scope="col">Workspaces</th>
|
|
17594
17547
|
<th role="columnheader" scope="col">Last commit</th>
|
|
17595
|
-
<td
|
|
17596
|
-
|
|
17597
|
-
<td role="cell"></td>
|
|
17548
|
+
<td></td>
|
|
17549
|
+
<td></td>
|
|
17598
17550
|
</tr>
|
|
17599
17551
|
</thead>
|
|
17600
17552
|
|
|
@@ -2246,21 +2246,14 @@ section: components
|
|
|
2246
2246
|
>
|
|
2247
2247
|
<thead>
|
|
2248
2248
|
<tr role="row">
|
|
2249
|
-
<td
|
|
2250
|
-
<input
|
|
2251
|
-
type="checkbox"
|
|
2252
|
-
name="check-all"
|
|
2253
|
-
aria-label="Select all rows"
|
|
2254
|
-
/>
|
|
2255
|
-
</td>
|
|
2249
|
+
<td></td>
|
|
2256
2250
|
<th role="columnheader" scope="col">Repositories</th>
|
|
2257
2251
|
<th role="columnheader" scope="col">Branches</th>
|
|
2258
2252
|
<th role="columnheader" scope="col">Pull requests</th>
|
|
2259
2253
|
<th role="columnheader" scope="col">Workspaces</th>
|
|
2260
2254
|
<th role="columnheader" scope="col">Last commit</th>
|
|
2261
|
-
<td
|
|
2262
|
-
|
|
2263
|
-
<td role="cell"></td>
|
|
2255
|
+
<td></td>
|
|
2256
|
+
<td></td>
|
|
2264
2257
|
</tr>
|
|
2265
2258
|
</thead>
|
|
2266
2259
|
|