Skip to content

Commit

Permalink
Merge branch 'patternfly:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
wise-king-sullyman authored Apr 9, 2024
2 parents 014534e + 78333dd commit b70c6ee
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/extensions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ jobs:
steps:
- uses: actions/[email protected]
with:
project-url: https://github.com/orgs/patternfly/projects/12
project-url: https://github.com/orgs/patternfly/projects/7
github-token: ${{ secrets.GH_PROJECTS}}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,3 +184,4 @@ export const TopologyBaselineDemo = React.memo(() => {
);
});
```

4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,7 @@
"react-dom": "^18",
"serve": "^14.1.2",
"surge": "^0.23.1",
"typedoc": "0.23"
},
"resolutions": {
"typedoc": "0.23",
"@types/react": "^18"
}
}
5 changes: 0 additions & 5 deletions packages/module/src/layouts/BreadthFirstLayout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,9 @@ import { BreadthFirstGroup } from './BreadthFirstGroup';
export type BreadthFirstLayoutOptions = LayoutOptions;

export class BreadthFirstLayout extends BaseLayout implements Layout {
private gridOptions: BreadthFirstLayoutOptions;

constructor(graph: Graph, options?: Partial<BreadthFirstLayoutOptions>) {
super(graph, options);
this.gridOptions = {
...this.options,
...options
};
}

protected createLayoutNode(node: Node, nodeDistance: number, index: number) {
Expand Down
5 changes: 0 additions & 5 deletions packages/module/src/layouts/GridLayout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,9 @@ import { GridGroup } from './GridGroup';
export type GridLayoutOptions = LayoutOptions;

export class GridLayout extends BaseLayout implements Layout {
private gridOptions: GridLayoutOptions;

constructor(graph: Graph, options?: Partial<GridLayoutOptions>) {
super(graph, options);
this.gridOptions = {
...this.options,
...options
};
}

protected createLayoutNode(node: Node, nodeDistance: number, index: number) {
Expand Down

0 comments on commit b70c6ee

Please sign in to comment.