@patternfly/patternfly 4.167.0 → 4.171.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/components/Dropdown/dropdown.css +5 -0
- package/components/Dropdown/dropdown.scss +5 -0
- package/components/Masthead/masthead.css +12 -6
- package/components/Masthead/masthead.scss +16 -5
- package/components/Table/table.css +8 -0
- package/components/Table/table.scss +16 -0
- package/components/Toolbar/toolbar.css +6 -0
- package/components/Toolbar/toolbar.scss +9 -0
- package/docs/components/BackToTop/examples/BackToTop.md +0 -1
- package/docs/components/JumpLinks/examples/JumpLinks.md +0 -1
- package/docs/components/Table/examples/Table.md +899 -241
- package/docs/components/TextInputGroup/examples/TextInputGroup.md +26 -1
- package/docs/components/Toolbar/examples/Toolbar.md +1 -0
- package/docs/demos/BackToTop/examples/BackToTop.md +0 -1
- package/docs/demos/JumpLinks/examples/JumpLinks.md +0 -1
- package/docs/demos/Masthead/examples/Masthead.md +865 -1
- package/package.json +1 -1
- package/patternfly-no-reset.css +31 -6
- package/patternfly.css +31 -6
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/docs/pages/modifiers.md +0 -86
|
@@ -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
|
+
```
|
|
@@ -4100,6 +4100,7 @@ As the toolbar component is a hybrid layout and component, some of its elements
|
|
|
4100
4100
|
| `.pf-m-align-left{-on-[breakpoint]}` | `.pf-c-toolbar > *` | Modifies toolbar element to align left, at optional breakpoint. |
|
|
4101
4101
|
| `.pf-m-label` | `.pf-c-toolbar__item` | Modifies toolbar item to label. |
|
|
4102
4102
|
| `.pf-m-chip-container` | `.pf-c-toolbar__content`, `.pf-c-toolbar__group` | Modifies the toolbar element for applied filters layout. |
|
|
4103
|
+
| `.pf-m-overflow-container` | `.pf-c-toolbar__item`, `.pf-c-toolbar__group` | Modifies the toolbar element to hide overflow and respond to available space. Used for horizontal navigation. |
|
|
4103
4104
|
| `.pf-m-expanded` | `.pf-c-toolbar__expandable-content`, `.pf-c-toolbar__toggle` | Modifies the component for the expanded state. |
|
|
4104
4105
|
| `.pf-m-wrap` | `.pf-c-toolbar`, `.pf-c-toolbar__content-section`, `.pf-c-toolbar__group` | Modifies the toolbar element to wrap. |
|
|
4105
4106
|
| `.pf-m-nowrap` | `.pf-c-toolbar`, `.pf-c-toolbar__group` | Modifies the toolbar element to nowrap. |
|