@patternfly/react-docs 5.53.15 → 5.53.19

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,47 @@
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.53.19 (2022-02-07)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **Select:** remove logic from default inputAutoComplete ([#6873](https://github.com/patternfly/patternfly-react/issues/6873)) ([b3b61c1](https://github.com/patternfly/patternfly-react/commit/b3b61c175f23cdc9dad8c71054301d1090795ede))
12
+
13
+
14
+
15
+
16
+
17
+ ## 5.53.18 (2022-02-04)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **TimePicker:** remove automatically validation from onChange event ([#6884](https://github.com/patternfly/patternfly-react/issues/6884)) ([e7088e4](https://github.com/patternfly/patternfly-react/commit/e7088e4e7a9348fa412d2815af1b0820ee7754ef))
23
+
24
+
25
+
26
+
27
+
28
+ ## 5.53.17 (2022-02-04)
29
+
30
+ **Note:** Version bump only for package @patternfly/react-docs
31
+
32
+
33
+
34
+
35
+
36
+ ## 5.53.16 (2022-02-02)
37
+
38
+
39
+ ### Bug Fixes
40
+
41
+ * **numberinput:** import input group component instead ([#6850](https://github.com/patternfly/patternfly-react/issues/6850)) ([2a94545](https://github.com/patternfly/patternfly-react/commit/2a94545ead3be3ea3c987b1273e18b943315c36e))
42
+
43
+
44
+
45
+
46
+
6
47
  ## 5.53.15 (2022-01-28)
7
48
 
8
49
  **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.53.15",
4
+ "version": "5.53.19",
5
5
  "publishConfig": {
6
6
  "access": "public",
7
7
  "tag": "prerelease-v4"
@@ -23,18 +23,18 @@
23
23
  },
24
24
  "dependencies": {
25
25
  "@patternfly/patternfly": "4.171.1",
26
- "@patternfly/react-catalog-view-extension": "^4.43.15",
27
- "@patternfly/react-charts": "^6.45.15",
28
- "@patternfly/react-code-editor": "^4.33.15",
29
- "@patternfly/react-core": "^4.192.15",
30
- "@patternfly/react-icons": "^4.43.15",
31
- "@patternfly/react-inline-edit-extension": "^4.37.15",
32
- "@patternfly/react-log-viewer": "^4.37.15",
33
- "@patternfly/react-styles": "^4.42.15",
34
- "@patternfly/react-table": "^4.61.15",
35
- "@patternfly/react-tokens": "^4.44.15",
36
- "@patternfly/react-topology": "^4.39.15",
37
- "@patternfly/react-virtualized-extension": "^4.39.15"
26
+ "@patternfly/react-catalog-view-extension": "^4.43.19",
27
+ "@patternfly/react-charts": "^6.45.19",
28
+ "@patternfly/react-code-editor": "^4.33.19",
29
+ "@patternfly/react-core": "^4.192.19",
30
+ "@patternfly/react-icons": "^4.43.19",
31
+ "@patternfly/react-inline-edit-extension": "^4.37.19",
32
+ "@patternfly/react-log-viewer": "^4.37.19",
33
+ "@patternfly/react-styles": "^4.42.19",
34
+ "@patternfly/react-table": "^4.61.19",
35
+ "@patternfly/react-tokens": "^4.44.19",
36
+ "@patternfly/react-topology": "^4.39.19",
37
+ "@patternfly/react-virtualized-extension": "^4.39.19"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@patternfly/patternfly-a11y": "4.2.1",
@@ -53,5 +53,5 @@
53
53
  "last 2 versions",
54
54
  "not ie <= 11"
55
55
  ],
56
- "gitHead": "43f728710c72197a3f6a093ec406de40cf12ce30"
56
+ "gitHead": "bc209995e347be2c3b41cd76790f890341b47b45"
57
57
  }
@@ -1,6 +1,8 @@
1
1
  const path = require('path');
2
2
 
3
- module.exports = (sourceMD, sourceProps) => {
3
+ module.exports = (baseSourceMD, sourceProps) => {
4
+ const sourceMD = (basePath, ...props) => baseSourceMD(basePath.split(path.sep).join(path.posix.sep), ...props);
5
+
4
6
  // Theme pages
5
7
  const themePagesPath = require.resolve('theme-patternfly-org/package.json').replace('package.json', 'pages');
6
8
  sourceMD(path.join(themePagesPath, '*.md'), 'pages-overview');