@patternfly/react-docs 5.103.69 → 6.0.0-alpha.10
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/CHANGELOG.md +3712 -11348
- package/package.json +10 -13
- package/patternfly-a11y.config.js +13 -3
- package/patternfly-docs/generated/components/tabs/react-demos/open-tabs.png +0 -0
- package/patternfly-docs/generated/components/wizard/react-demos/in-page-with-drawer.png +0 -0
- package/patternfly-docs/patternfly-docs.config.js +0 -2
- package/patternfly-docs/patternfly-docs.source.js +0 -12
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@patternfly/react-docs",
|
|
3
3
|
"description": "PatternFly React Docs",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "6.0.0-alpha.10",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
7
7
|
"tag": "prerelease-v4"
|
|
@@ -22,17 +22,14 @@
|
|
|
22
22
|
"test:a11y": "patternfly-a11y --config patternfly-a11y.config"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@patternfly/patternfly": "
|
|
26
|
-
"@patternfly/react-charts": "^
|
|
27
|
-
"@patternfly/react-code-editor": "^
|
|
28
|
-
"@patternfly/react-core": "^
|
|
29
|
-
"@patternfly/react-icons": "^
|
|
30
|
-
"@patternfly/react-
|
|
31
|
-
"@patternfly/react-
|
|
32
|
-
"@patternfly/react-
|
|
33
|
-
"@patternfly/react-tokens": "^4.94.6",
|
|
34
|
-
"@patternfly/react-topology": "^4.91.31",
|
|
35
|
-
"@patternfly/react-virtualized-extension": "^4.88.113"
|
|
25
|
+
"@patternfly/patternfly": "5.0.0-alpha.12",
|
|
26
|
+
"@patternfly/react-charts": "^7.0.0-alpha.5",
|
|
27
|
+
"@patternfly/react-code-editor": "^5.0.0-alpha.9",
|
|
28
|
+
"@patternfly/react-core": "^5.0.0-alpha.9",
|
|
29
|
+
"@patternfly/react-icons": "^5.0.0-alpha.2",
|
|
30
|
+
"@patternfly/react-styles": "^5.0.0-alpha.2",
|
|
31
|
+
"@patternfly/react-table": "^5.0.0-alpha.9",
|
|
32
|
+
"@patternfly/react-tokens": "^5.0.0-alpha.2"
|
|
36
33
|
},
|
|
37
34
|
"devDependencies": {
|
|
38
35
|
"@patternfly/documentation-framework": "1.4.13",
|
|
@@ -47,5 +44,5 @@
|
|
|
47
44
|
"last 2 versions",
|
|
48
45
|
"not ie <= 11"
|
|
49
46
|
],
|
|
50
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "81e9bbe05401ce5c3a1acf80765ed713ec5402a0"
|
|
51
48
|
}
|
|
@@ -10,7 +10,18 @@ async function waitFor(page) {
|
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
const urls = Object.keys(fullscreenRoutes)
|
|
13
|
-
.map(key =>
|
|
13
|
+
.map(key => {
|
|
14
|
+
if (fullscreenRoutes[key].isFullscreenOnly) {
|
|
15
|
+
return key;
|
|
16
|
+
} else {
|
|
17
|
+
const path = fullscreenRoutes[key].path;
|
|
18
|
+
if (path.match(/\/demos\/.*\/react-demos$/g)) {
|
|
19
|
+
return path.replace(/\/react-demos$/, '');
|
|
20
|
+
} else {
|
|
21
|
+
return path.replace(/\/react$/, '');
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
})
|
|
14
25
|
.reduce((result, item) => (result.includes(item) ? result : [...result, item]), []);
|
|
15
26
|
|
|
16
27
|
module.exports = {
|
|
@@ -67,6 +78,5 @@ module.exports = {
|
|
|
67
78
|
'landmark-main-is-top-level',
|
|
68
79
|
'scrollable-region-focusable'
|
|
69
80
|
].join(','),
|
|
70
|
-
ignoreIncomplete: true
|
|
71
|
-
skip: '(mailto)|(/(extensions|developer-resources)/.+)'
|
|
81
|
+
ignoreIncomplete: true
|
|
72
82
|
};
|
|
Binary file
|
|
Binary file
|
|
@@ -16,18 +16,12 @@ module.exports = (baseSourceMD, sourceProps) => {
|
|
|
16
16
|
const reactCodeEditorPath = require
|
|
17
17
|
.resolve('@patternfly/react-code-editor/package.json')
|
|
18
18
|
.replace('package.json', 'src');
|
|
19
|
-
const reactVirtualizedPath = require
|
|
20
|
-
.resolve('@patternfly/react-virtualized-extension/package.json')
|
|
21
|
-
.replace('package.json', 'src');
|
|
22
|
-
const reactTopologyPath = require.resolve('@patternfly/react-topology/package.json').replace('package.json', 'src');
|
|
23
19
|
const reactPropsIgnore = '**/*.test.tsx';
|
|
24
20
|
|
|
25
21
|
sourceProps(path.join(reactCorePath, '/**/*.tsx'), reactPropsIgnore);
|
|
26
22
|
sourceProps(path.join(reactTablePath, '/**/*.tsx'), reactPropsIgnore);
|
|
27
23
|
sourceProps(path.join(reactChartsPath, '/**/*.tsx'), reactPropsIgnore);
|
|
28
24
|
sourceProps(path.join(reactCodeEditorPath, '/**/*.tsx'), reactPropsIgnore);
|
|
29
|
-
sourceProps(path.join(reactVirtualizedPath, '/**/*.tsx'), reactPropsIgnore);
|
|
30
|
-
sourceProps(path.join(reactTopologyPath, '/**/*.tsx'), reactPropsIgnore);
|
|
31
25
|
|
|
32
26
|
// React MD
|
|
33
27
|
sourceMD(path.join(reactCorePath, '/components/**/examples/*.md'), 'react');
|
|
@@ -46,15 +40,9 @@ module.exports = (baseSourceMD, sourceProps) => {
|
|
|
46
40
|
// Charts MD (no demos yet)
|
|
47
41
|
sourceMD(path.join(reactChartsPath, '/**/examples/*.md'), 'react');
|
|
48
42
|
|
|
49
|
-
// Virtualized MD
|
|
50
|
-
sourceMD(path.join(reactVirtualizedPath, '/**/examples/*.md'), 'react');
|
|
51
|
-
|
|
52
43
|
// Code Editor MD
|
|
53
44
|
sourceMD(path.join(reactCodeEditorPath, '/**/examples/*.md'), 'react');
|
|
54
45
|
|
|
55
|
-
// Topology MD
|
|
56
|
-
sourceMD(path.join(reactTopologyPath, '/**/examples/*.md'), 'react');
|
|
57
|
-
|
|
58
46
|
// Release notes
|
|
59
47
|
sourceMD(require.resolve('@patternfly/react-docs/RELEASE-NOTES.md'), 'react');
|
|
60
48
|
|