Skip to content

Commit f4d7f51

Browse files
committed
changes scope to faceless-ui
1 parent 81900c5 commit f4d7f51

File tree

6 files changed

+2234
-2245
lines changed

6 files changed

+2234
-2245
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
[![NPM](https://img.shields.io/npm/v/@trbl/react-css-grid)](https://www.npmjs.com/@trbl/react-css-grid)
2-
![Bundle Size](https://img.shields.io/bundlephobia/minzip/@trbl/react-css-grid?label=zipped)
1+
[![NPM](https://img.shields.io/npm/v/@faceless-ui/css-grid)](https://www.npmjs.com/@faceless-ui/css-grid)
2+
![Bundle Size](https://img.shields.io/bundlephobia/minzip/@faceless-ui/css-grid?label=zipped)
33
[![Supported by TRBL](https://img.shields.io/badge/supported_by-TRBL-black)](https://github.com/trouble)
44

55
# React CSS Grid
@@ -11,16 +11,16 @@ Highlights
1111
### Installation
1212

1313
```bash
14-
$ npm i @trbl/react-css-grid
14+
$ npm i @faceless-ui/css-grid
1515
$ # or
16-
$ yarn add @trbl/react-css-grid
16+
$ yarn add @faceless-ui/css-grid
1717
```
1818

1919
### Composition
2020

2121
```jsx
2222
import React from 'react';
23-
import { GridProvider, Grid, Cell } from '@trbl/react-css-grid';
23+
import { GridProvider, Grid, Cell } from '@faceless-ui/css-grid';
2424

2525
const App = () => (
2626
<GridProvider
@@ -71,7 +71,7 @@ For working examples, see the [demo app](./demo/App.demo.js).
7171
## Demo
7272

7373
```bash
74-
$ git clone [email protected]:trouble/react-css-grid.git
74+
$ git clone [email protected]:faceless-ui/css-grid.git
7575
$ yarn
7676
$ yarn dev
7777
$ open http://localhost:3000
@@ -85,8 +85,8 @@ $ open http://localhost:3000
8585

8686
## Contribution
8787

88-
[Help us,](https://github.com/trouble/.github/blob/master/CONTRIBUTING.md) or let us [help you help us](https://github.com/trouble/.github/blob/master/SUPPORT.md).
88+
[Help us,](https://github.com/faceless-ui/.github/blob/master/CONTRIBUTING.md) or let us [help you help us](https://github.com/faceless-ui/.github/blob/master/SUPPORT.md).
8989

9090
## License
9191

92-
[MIT](https://github.com/trouble/react-css-grid/blob/master/LICENSE) Copyright (c) TRBL, LLC
92+
[MIT](https://github.com/faceless-ui/css-grid/blob/master/LICENSE) Copyright (c) TRBL, LLC

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "@trbl/react-css-grid",
2+
"name": "@faceless-ui/css-grid",
33
"version": "0.0.5",
44
"main": "dist/build.bundle.js",
5-
"repository": "[email protected]:trouble/react-css-grid.git",
5+
"repository": "[email protected]:faceless-ui/css-grid.git",
66
"description": "A grid for React projects, based on CSS Grid Layout.",
77
"author": "<[email protected]>",
88
"license": "MIT",
@@ -26,7 +26,7 @@
2626
"react-dom": "^16.8.0"
2727
},
2828
"dependencies": {
29-
"@trbl/react-html-element": "^1.0.3",
29+
"@faceless-ui/html-element": "^1.0.3",
3030
"prop-types": "^15.7.2"
3131
},
3232
"devDependencies": {

src/Cell/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22
import PropTypes from 'prop-types';
3-
import HTMLElement from '@trbl/react-html-element';
3+
import HTMLElement from '@faceless-ui/html-element';
44
import GridContext from '../GridProvider/context';
55
import GridProvider from '../GridProvider';
66

src/Grid/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22
import PropTypes from 'prop-types';
3-
import HTMLElement from '@trbl/react-html-element';
3+
import HTMLElement from '@faceless-ui/html-element';
44
import GridContext from '../GridProvider/context';
55

66
const Grid = (props) => {

webpack.production.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module.exports = [{
2020
],
2121
},
2222
externals: {
23-
'@trbl/react-html-element': '@trbl/react-html-element',
23+
'@faceless-ui/html-element': '@faceless-ui/html-element',
2424
'prop-types': 'prop-types',
2525
react: 'react',
2626
'react-dom': 'react-dom',

0 commit comments

Comments
 (0)