Skip to content

Commit 3925eef

Browse files
authored
Merge pull request #8 from patternfly/repoRename
fix(infrastructure): Renamed repo to react component groups
2 parents 6cc592f + ef49323 commit 3925eef

6 files changed

Lines changed: 19 additions & 19 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# PatternFly Extended Components
1+
# PatternFly React Component Groups
22

3-
This repo contains a set of opinionated react components used to standardize functionality and look and feel across Red Hat products. The components are based of PatternFly with some additional functionality specific to Red Hat products. While they are specific to Red Hat products in their implementation and design they can be used outside of Red Hat.
3+
This repo contains a set of opinionated react component groups used to standardize functionality and look and feel across products. The components are based of PatternFly with some additional functionality.
44

55
## Building for production
66

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@patternfly/extended-components-root",
2+
"name": "@patternfly/react-component-groups-root",
33
"private": true,
44
"version": "0.0.0",
55
"description": "This library provides patternfly extensions",
@@ -9,18 +9,18 @@
99
],
1010
"scripts": {
1111
"build": "yarn build:packages && yarn build:fed:packages",
12-
"build:docs": "yarn workspace @patternfly/extended-components docs:build",
13-
"build:packages": "yarn workspace @patternfly/extended-components build",
14-
"build:fed:packages": "yarn workspace @patternfly/extended-components build:fed:packages",
15-
"start": "yarn build && concurrently --kill-others \"yarn workspace @patternfly/extended-components docs:develop\"",
16-
"serve:docs": "yarn workspace @patternfly/extended-components docs:serve",
17-
"clean": "yarn workspace @patternfly/extended-components clean",
12+
"build:docs": "yarn workspace @patternfly/react-component-groups docs:build",
13+
"build:packages": "yarn workspace @patternfly/react-component-groups build",
14+
"build:fed:packages": "yarn workspace @patternfly/react-component-groups build:fed:packages",
15+
"start": "yarn build && concurrently --kill-others \"yarn workspace @patternfly/react-component-groups docs:develop\"",
16+
"serve:docs": "yarn workspace @patternfly/react-component-groups docs:serve",
17+
"clean": "yarn workspace @patternfly/react-component-groups clean",
1818
"lint:js": "node --max-old-space-size=4096 node_modules/.bin/eslint packages --ext js,jsx,ts,tsx --cache",
1919
"lint:md": "yarn eslint packages --ext md --no-eslintrc --config .eslintrc-md.json --cache",
2020
"lint": "yarn lint:js && yarn lint:md",
2121
"test": "TZ=EST jest packages",
22-
"test:a11y": "yarn workspace @patternfly/extended-components test:a11y",
23-
"serve:a11y": "yarn workspace @patternfly/extended-components serve:a11y"
22+
"test:a11y": "yarn workspace @patternfly/react-component-groups test:a11y",
23+
"serve:a11y": "yarn workspace @patternfly/react-component-groups serve:a11y"
2424
},
2525
"devDependencies": {
2626
"react": "^17",

packages/module/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@patternfly/extended-components",
2+
"name": "@patternfly/react-component-groups",
33
"version": "1.0.0",
44
"description": "Extended components used for redhat projects.",
55
"main": "dist/esm/index.js",
@@ -20,13 +20,13 @@
2020
"transform:css": "node ../../scripts/transform-scss.js",
2121
"serve:a11y": "yarn serve coverage"
2222
},
23-
"repository": "git+https://github.com/patternfly/extended-components.git",
23+
"repository": "git+https://github.com/patternfly/react-component-groups.git",
2424
"author": "Red Hat",
2525
"license": "MIT",
2626
"bugs": {
27-
"url": "https://github.com/patternfly/extended-components/issues"
27+
"url": "https://github.com/patternfly/react-component-groups/issues"
2828
},
29-
"homepage": "https://github.com/patternfly/extended-components#readme",
29+
"homepage": "https://github.com/patternfly/react-component-groups#readme",
3030
"publishConfig": {
3131
"access": "public",
3232
"tag": "prerelease"

packages/module/patternfly-docs/content/extensions/extended-components/design-guidelines/design-guidelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
section: extensions
55
# Sidenav secondary level section
66
# should be the same for all markdown files for each extension
7-
id: extended-components
7+
id: react-component-groups
88
# Tab (react | react-demos | html | html-demos | design-guidelines | accessibility)
99
source: design-guidelines
1010
---
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
import React from 'react';
2-
import { ErrorState } from '@patternfly/extended-components';
2+
import { ErrorState } from '@patternfly/react-component-groups';
33

44
export const BasicExample: React.FunctionComponent = () => <ErrorState errorTitle='A Basic Error' errorDescription='The following is an example of a basic error' />;

packages/module/patternfly-docs/content/extensions/extended-components/examples/Examples.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
section: extensions
55
# Sidenav secondary level section
66
# should be the same for all markdown files
7-
id: extended-components
7+
id: react-component-groups
88
# Tab (react | react-demos | html | html-demos | design-guidelines | accessibility)
99
source: react
1010
# If you use typescript, the name of the interface to display props for
1111
# These are found through the sourceProps function provided in patternfly-docs.source.js
1212
propComponents: ['ErrorState']
1313
---
1414

15-
import { ErrorState } from "@patternfly/extended-components";
15+
import { ErrorState } from "@patternfly/react-component-groups";
1616

1717
## Extended Component Usage
1818

0 commit comments

Comments
 (0)