@patternfly/patternfly 4.159.0 → 4.159.1
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/README.md +2 -2
- package/RELEASE-NOTES.md +30 -0
- package/docs/components/Table/examples/Table.md +1598 -6
- package/docs/demos/Table/examples/Table.md +3734 -95
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -58,7 +58,7 @@ To create 3 new demos named "Test demo", "Test demo 2", and "Test demo 3", run:
|
|
|
58
58
|
#### Update screenshots
|
|
59
59
|
When making visual changes to a full page example, new example preview screenshots must be generated. To update the screenshots:
|
|
60
60
|
|
|
61
|
-
- open a terminal and run `yarn build && yarn
|
|
61
|
+
- open a terminal and run `yarn build && yarn serve`
|
|
62
62
|
- in another terminal, run `yarn screenshots`
|
|
63
63
|
|
|
64
64
|
## Guidelines for CSS development
|
|
@@ -83,7 +83,7 @@ To run the a11y audit locally:
|
|
|
83
83
|
|
|
84
84
|
- install the latest [chromedriver](http://chromedriver.chromium.org/downloads) and ensure its available on your system `$PATH`
|
|
85
85
|
- macOS users can simply `brew cask install chromedriver`
|
|
86
|
-
- open a terminal and run `yarn build && yarn
|
|
86
|
+
- open a terminal and run `yarn build && yarn serve`
|
|
87
87
|
- in another terminal, run `yarn a11y`
|
|
88
88
|
|
|
89
89
|
The tool is configured to return WCAG 2.0 AA violations for the full page renderings of all components, layouts, utilities, and demos. The tool will provide feedback about what the violation is and a link to documentation about how to address the violation.
|
package/RELEASE-NOTES.md
CHANGED
|
@@ -4,6 +4,36 @@ section: developer-resources
|
|
|
4
4
|
releaseNoteTOC: true
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## 2021.15 release notes (2021-11-16)
|
|
8
|
+
Packages released:
|
|
9
|
+
- [@patternfly/patternfly@v4.159.1](https://www.npmjs.com/package/@patternfly/patternfly/v/4.159.1)
|
|
10
|
+
|
|
11
|
+
### Components
|
|
12
|
+
- **Card:** Added non-selectable card, updated card view demo ([#4500](https://github.com/patternfly/patternfly/pull/4500))
|
|
13
|
+
- **Dropdown:**
|
|
14
|
+
- Added secondary variant to dropdown ([#4498](https://github.com/patternfly/patternfly/pull/4498))
|
|
15
|
+
- Applied primary styling to split ([#4508](https://github.com/patternfly/patternfly/pull/4508))
|
|
16
|
+
- **Dual list selector:** Aligned html/a11y with react ([#4499](https://github.com/patternfly/patternfly/pull/4499))
|
|
17
|
+
- **Form select:** Matched padding with select ([#4490](https://github.com/patternfly/patternfly/pull/4490))
|
|
18
|
+
- **Log viewer:**
|
|
19
|
+
- Added nowrap variation ([#4455](https://github.com/patternfly/patternfly/pull/4455))
|
|
20
|
+
- Updated the way dark theme is applied ([#4506](https://github.com/patternfly/patternfly/pull/4506))
|
|
21
|
+
- **Menu toggle:**
|
|
22
|
+
- Added plain w/text variant ([#4491](https://github.com/patternfly/patternfly/pull/4491))
|
|
23
|
+
- Added rounded corners to primary ([#4494](https://github.com/patternfly/patternfly/pull/4494))
|
|
24
|
+
- **Menu:** Added nav variant ([#4513](https://github.com/patternfly/patternfly/pull/4513))
|
|
25
|
+
- **Nav:**
|
|
26
|
+
- Added drilldown menu to nav ([#4458](https://github.com/patternfly/patternfly/pull/4458))
|
|
27
|
+
- Fixed toggle icon rotation ([#4486](https://github.com/patternfly/patternfly/pull/4486))
|
|
28
|
+
- **Options menu:** Moved text into button in plain text variant ([#4492](https://github.com/patternfly/patternfly/pull/4492))
|
|
29
|
+
- **Table:** Fixed pf-m-truncate alignment ([#4489](https://github.com/patternfly/patternfly/pull/4489))
|
|
30
|
+
- **TextInputGroup:** Added disabled styling ([#4484](https://github.com/patternfly/patternfly/pull/4484))
|
|
31
|
+
- **Tooltip:** Added support for diagonal positioning ([#4470](https://github.com/patternfly/patternfly/pull/4470))
|
|
32
|
+
|
|
33
|
+
### Other
|
|
34
|
+
- **README:** Updated a11y docs, s/npm run/yarn ([#4496](https://github.com/patternfly/patternfly/pull/4496))
|
|
35
|
+
|
|
36
|
+
|
|
7
37
|
## 2021.14 release notes (2021-10-26)
|
|
8
38
|
Packages released:
|
|
9
39
|
- [@patternfly/patternfly@v4.151.4](https://www.npmjs.com/package/@patternfly/patternfly/v/4.151.4)
|