@patternfly/documentation-framework 2.0.0-alpha.13 → 2.0.0-alpha.15

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,25 @@
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
+ # 2.0.0-alpha.15 (2023-04-06)
7
+
8
+ **Note:** Version bump only for package @patternfly/documentation-framework
9
+
10
+
11
+
12
+
13
+
14
+ # 2.0.0-alpha.14 (2023-04-03)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **Tables:** temporarily comment out tables so Table can be deprecated ([#3468](https://github.com/patternfly/patternfly-org/issues/3468)) ([f4aa5ed](https://github.com/patternfly/patternfly-org/commit/f4aa5ed791161851cdc92d02d0c752eef4028306))
20
+
21
+
22
+
23
+
24
+
6
25
  # 2.0.0-alpha.13 (2023-03-31)
7
26
 
8
27
  **Note:** Version bump only for package @patternfly/documentation-framework
@@ -1,9 +1,9 @@
1
1
  import React from "react";
2
2
  import { debounce } from "@patternfly/react-core";
3
3
  import {
4
- Table,
5
- TableHeader,
6
- TableBody,
4
+ // Table,
5
+ // TableHeader,
6
+ // TableBody,
7
7
  sortable,
8
8
  SortByDirection,
9
9
  expandable
@@ -210,7 +210,7 @@ export class CSSVariables extends React.Component {
210
210
  return (
211
211
  <React.Fragment>
212
212
  <CSSSearch getDebouncedFilteredRows={this.getDebouncedFilteredRows} />
213
- <Table
213
+ {/* <Table
214
214
  variant="compact"
215
215
  aria-label={`CSS Variables for prefixes ${this.prefix.join(" ")}`}
216
216
  sortBy={this.state.sortBy}
@@ -226,7 +226,7 @@ export class CSSVariables extends React.Component {
226
226
  >
227
227
  <TableHeader />
228
228
  <TableBody />
229
- </Table>
229
+ </Table>*/}
230
230
  </React.Fragment>
231
231
  );
232
232
  }
@@ -1,15 +1,15 @@
1
1
  import React from "react";
2
- import { Badge } from "@patternfly/react-core";
2
+ //import { Badge } from "@patternfly/react-core";
3
3
  import {
4
- Table,
5
- TableHeader,
6
- TableBody,
4
+ // Table,
5
+ // TableHeader,
6
+ // TableBody,
7
7
  cellWidth,
8
8
  } from "@patternfly/react-table";
9
9
  import { AutoLinkHeader } from "../autoLinkHeader/autoLinkHeader";
10
- import { PropTypeWithLinks } from "./propTypeWithLinks";
11
- import { css } from "@patternfly/react-styles";
12
- import accessibleStyles from "@patternfly/react-styles/css/utilities/Accessibility/accessibility";
10
+ //import { PropTypeWithLinks } from "./propTypeWithLinks";
11
+ //import { css } from "@patternfly/react-styles";
12
+ //import accessibleStyles from "@patternfly/react-styles/css/utilities/Accessibility/accessibility";
13
13
 
14
14
  export const PropsTable = ({ title, description, rows, allPropComponents }) => {
15
15
  const columns = [
@@ -22,7 +22,7 @@ export const PropsTable = ({ title, description, rows, allPropComponents }) => {
22
22
  return (
23
23
  <React.Fragment>
24
24
  <AutoLinkHeader size="h3">{title}</AutoLinkHeader>
25
- <Table
25
+ {/*<Table
26
26
  className="pf-u-mt-md pf-u-mb-lg"
27
27
  variant="compact"
28
28
  aria-label={title}
@@ -85,7 +85,7 @@ export const PropsTable = ({ title, description, rows, allPropComponents }) => {
85
85
  >
86
86
  <TableHeader />
87
87
  <TableBody />
88
- </Table>
88
+ </Table>*/}
89
89
  </React.Fragment>
90
90
  );
91
91
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@patternfly/documentation-framework",
3
3
  "description": "A framework to build documentation for PatternFly.",
4
- "version": "2.0.0-alpha.13",
4
+ "version": "2.0.0-alpha.15",
5
5
  "author": "Red Hat",
6
6
  "license": "MIT",
7
7
  "private": false,
@@ -89,5 +89,5 @@
89
89
  "react": "^17.0.0 || ^18.0.0",
90
90
  "react-dom": "^17.0.0 || ^18.0.0"
91
91
  },
92
- "gitHead": "44bd489ef529f71007184514107ed93122ec2161"
92
+ "gitHead": "8d28fddfb8f47154e66af7d7b4de746c075a472d"
93
93
  }