Skip to content

Commit a3ed5b3

Browse files
committed
Use new mp-react-component package
1 parent 7cfb9a8 commit a3ed5b3

21 files changed

+130
-127
lines changed

.github/workflows/test_latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
pip install -r requirements.txt
3131
pip install -r tests/requirements.txt
3232
npm i
33-
npm i mat-periodic-table@next
33+
npm i @materialsproject/mp-react-components@next
3434
- name: Check files
3535
run: |
3636
npm run lint:yaml

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: dashMpComponents
22
Title: Dash components for the Materials Project
3-
Version: 0.0.21
3+
Version: 0.0.22
44
Description: Dash components for the Materials Project
55
Depends: R (>= 3.0.2)
66
Imports:

dash_mp_components/dash_mp_components.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash_mp_components/package-info.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash_mp_components",
3-
"version": "0.0.21",
3+
"version": "0.0.22",
44
"description": "Dash components for the Materials Project",
55
"repository": {
66
"type": "git",
@@ -34,7 +34,7 @@
3434
"license": "BSD",
3535
"dependencies": {
3636
"file-loader": "^5.1.0",
37-
"mat-periodic-table": "next",
37+
"@materialsproject/mp-react-components": "next",
3838
"prettier": "^1.19.1",
3939
"ramda": "^0.26.1",
4040
"rimraf": "^3.0.2",

package-lock.json

Lines changed: 104 additions & 104 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "dash_mp_components",
2+
"name": "@materialsproject/dash_mp_components",
33
"version": "0.0.22",
44
"description": "Dash components for the Materials Project",
55
"repository": {
@@ -34,7 +34,7 @@
3434
"license": "BSD",
3535
"dependencies": {
3636
"file-loader": "^5.1.0",
37-
"mat-periodic-table": "next",
37+
"@materialsproject/mp-react-components": "next",
3838
"prettier": "^1.19.1",
3939
"ramda": "^0.26.1",
4040
"rimraf": "^3.0.2",
@@ -77,5 +77,8 @@
7777
"hooks": {
7878
"pre-commit": "pretty-quick --staged"
7979
}
80+
},
81+
"publishConfig": {
82+
"access": "public"
8083
}
8184
}

src/lib/components/CameraContext.react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {CameraContextWrapper} from 'mat-periodic-table';
1+
import {CameraContextWrapper} from '@materialsproject/mp-react-components';
22
import React from 'react';
33
import {Component} from 'react';
44

src/lib/components/GraphComponent.react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react';
2-
import {ReactGraphComponent} from 'mat-periodic-table';
2+
import {ReactGraphComponent} from '@materialsproject/mp-react-components';
33
import {Component} from 'react';
44

55
export default class GraphComponent extends Component {

src/lib/components/JsonView.react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22
import {Component} from 'react';
3-
import {JSONViewComponent} from 'mat-periodic-table';
3+
import {JSONViewComponent} from '@materialsproject/mp-react-components';
44
import PropTypes from 'prop-types';
55

66
export default class JsonView extends Component {

src/lib/components/MatSidebar.react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {Sidebar} from 'mat-periodic-table';
1+
import {Sidebar} from '@materialsproject/mp-react-components';
22
import {Component} from 'react';
33
import React from 'react';
44
import PropTypes from 'prop-types';

0 commit comments

Comments
 (0)