@patternfly/react-docs 5.103.82 → 5.103.83

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 CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [5.103.83](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-docs@5.103.82...@patternfly/react-docs@5.103.83) (2023-04-06)
7
+
8
+ **Note:** Version bump only for package @patternfly/react-docs
9
+
10
+
11
+
12
+
13
+
6
14
  ## [5.103.82](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-docs@5.103.81...@patternfly/react-docs@5.103.82) (2023-03-27)
7
15
 
8
16
  **Note:** Version bump only for package @patternfly/react-docs
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@patternfly/react-docs",
3
3
  "description": "PatternFly React Docs",
4
- "version": "5.103.82",
4
+ "version": "5.103.83",
5
5
  "publishConfig": {
6
6
  "access": "public",
7
7
  "tag": "prerelease-v4"
@@ -23,16 +23,15 @@
23
23
  },
24
24
  "dependencies": {
25
25
  "@patternfly/patternfly": "4.224.2",
26
- "@patternfly/react-charts": "^6.94.19",
27
- "@patternfly/react-code-editor": "^4.82.115",
28
- "@patternfly/react-core": "^4.276.8",
26
+ "@patternfly/react-charts": "^6.94.20",
27
+ "@patternfly/react-code-editor": "^4.82.116",
28
+ "@patternfly/react-core": "^4.276.9",
29
29
  "@patternfly/react-icons": "^4.93.6",
30
- "@patternfly/react-inline-edit-extension": "^4.86.122",
31
- "@patternfly/react-styles": "^4.92.6",
32
- "@patternfly/react-table": "^4.113.0",
30
+ "@patternfly/react-inline-edit-extension": "^4.86.123",
31
+ "@patternfly/react-styles": "^4.92.7",
32
+ "@patternfly/react-table": "^4.113.1",
33
33
  "@patternfly/react-tokens": "^4.94.6",
34
- "@patternfly/react-topology": "^4.91.40",
35
- "@patternfly/react-virtualized-extension": "^4.88.115"
34
+ "@patternfly/react-virtualized-extension": "^4.88.116"
36
35
  },
37
36
  "devDependencies": {
38
37
  "@patternfly/documentation-framework": "1.8.0",
@@ -47,5 +46,5 @@
47
46
  "last 2 versions",
48
47
  "not ie <= 11"
49
48
  ],
50
- "gitHead": "4e5f94b66a25b16d9abb5c4e35a4729e170d5ea4"
49
+ "gitHead": "fe114d6d5b6d072d2dcfc595bdf8a5836668f924"
51
50
  }
@@ -12,7 +12,6 @@ module.exports = {
12
12
  { section: 'components' },
13
13
  { section: 'demos' },
14
14
  { section: 'extensions' },
15
- { section: 'topology' },
16
15
  { section: 'layouts' }
17
16
  ],
18
17
  topNavItems: [{ text: 'Icons', path: '/icons' }],
@@ -1,10 +1,5 @@
1
1
  // React-specific CSS
2
2
  import '@patternfly/react-styles/src/css/components/Table/inline-edit.css'; // inline-edit extension styles
3
- import '@patternfly/react-styles/src/css/components/Topology/topology-controlbar.css';
4
- import '@patternfly/react-styles/src/css/components/Topology/topology-side-bar.css';
5
- import '@patternfly/react-styles/src/css/components/Topology/topology-view.css';
6
- import '@patternfly/react-styles/src/css/components/Topology/topology-components.css';
7
- import '@patternfly/react-styles/src/css/components/Topology/topology-pipelines.css';
8
3
  import '@patternfly/react-styles/src/css/layouts/Toolbar/toolbar.css';
9
4
  import '@patternfly/react-styles/src/css/components/Popper/Popper.css';
10
5
 
@@ -19,7 +19,6 @@ module.exports = (baseSourceMD, sourceProps) => {
19
19
  const reactVirtualizedPath = require
20
20
  .resolve('@patternfly/react-virtualized-extension/package.json')
21
21
  .replace('package.json', 'src');
22
- const reactTopologyPath = require.resolve('@patternfly/react-topology/package.json').replace('package.json', 'src');
23
22
  const reactPropsIgnore = '**/*.test.tsx';
24
23
 
25
24
  sourceProps(path.join(reactCorePath, '/**/*.tsx'), reactPropsIgnore);
@@ -27,7 +26,6 @@ module.exports = (baseSourceMD, sourceProps) => {
27
26
  sourceProps(path.join(reactChartsPath, '/**/*.tsx'), reactPropsIgnore);
28
27
  sourceProps(path.join(reactCodeEditorPath, '/**/*.tsx'), reactPropsIgnore);
29
28
  sourceProps(path.join(reactVirtualizedPath, '/**/*.tsx'), reactPropsIgnore);
30
- sourceProps(path.join(reactTopologyPath, '/**/*.tsx'), reactPropsIgnore);
31
29
 
32
30
  // React MD
33
31
  sourceMD(path.join(reactCorePath, '/components/**/examples/*.md'), 'react');
@@ -52,9 +50,6 @@ module.exports = (baseSourceMD, sourceProps) => {
52
50
  // Code Editor MD
53
51
  sourceMD(path.join(reactCodeEditorPath, '/**/examples/*.md'), 'react');
54
52
 
55
- // Topology MD
56
- sourceMD(path.join(reactTopologyPath, '/**/examples/*.md'), 'react');
57
-
58
53
  // Release notes
59
54
  sourceMD(require.resolve('@patternfly/react-docs/RELEASE-NOTES.md'), 'react');
60
55