Skip to content

Commit

Permalink
BUGFIX: switch to separate proptypes package
Browse files Browse the repository at this point in the history
  • Loading branch information
dimaip committed Nov 27, 2017
1 parent 6e47f97 commit 881cc47
Show file tree
Hide file tree
Showing 7 changed files with 6,203 additions and 31 deletions.
2 changes: 1 addition & 1 deletion Resources/Private/NewsletterView/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"watch": "neos-react-scripts watch"
},
"devDependencies": {
"@neos-project/neos-ui-extensibility": "@dev"
"@neos-project/neos-ui-extensibility": "1.0.0-beta8"
},
"neos": {
"buildTargetDirectory": "../../Public/JavaScript/NewsletterView"
Expand Down
3 changes: 2 additions & 1 deletion Resources/Private/NewsletterView/src/ConfirmationDialog.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, {PropTypes} from 'react';
import React from 'react';
import PropTypes from 'prop-types';
import {Button, Dialog} from '@neos-project/react-ui-components';

const ConfirmationDialog = ({isOpen, translate, close, send}) => {
Expand Down
3 changes: 2 additions & 1 deletion Resources/Private/NewsletterView/src/NewsletterView.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, {PropTypes, Component} from 'react';
import React, {Component} from 'react';
import PropTypes from 'prop-types';
import {SelectBox, Button} from '@neos-project/react-ui-components';
import {connect} from 'react-redux';
import {selectors} from '@neos-project/neos-ui-redux-store';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, {PropTypes, Component} from 'react';
import React, {Component} from 'react';
import PropTypes from 'prop-types';
import {SelectBox, Button, Dialog, TextInput} from '@neos-project/react-ui-components';

export default class TestConfirmationDialog extends Component {
Expand Down
Loading

0 comments on commit 881cc47

Please sign in to comment.