Skip to content

Commit

Permalink
updated the package versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kjcho-msft committed Aug 26, 2019
1 parent 6a92521 commit b958a9a
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 22 deletions.
2 changes: 1 addition & 1 deletion Website/Packages/datax-common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "datax-common",
"version": "1.3.0-SNAPSHOT-9",
"version": "1.3.0-SNAPSHOT-10",
"description": "Common UX, styles, utilities, and modules",
"author": "Microsoft",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions Website/Packages/datax-home/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "datax-home",
"version": "1.3.0-SNAPSHOT-9",
"version": "1.3.0-SNAPSHOT-10",
"description": "Home page",
"author": "Microsoft",
"license": "MIT",
Expand Down Expand Up @@ -30,7 +30,7 @@
"css-loader": "1.0.1",
"file-loader": "2.0.0",
"mini-css-extract-plugin": "0.4.4",
"datax-common": "1.3.0-SNAPSHOT-9",
"datax-common": "1.3.0-SNAPSHOT-10",
"office-ui-fabric-react": "6.111.2",
"q": "1.5.1",
"react": "16.6.3",
Expand Down
4 changes: 2 additions & 2 deletions Website/Packages/datax-jobs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "datax-jobs",
"version": "1.3.0-SNAPSHOT-9",
"version": "1.3.0-SNAPSHOT-10",
"description": "Job features",
"author": "Microsoft",
"license": "MIT",
Expand Down Expand Up @@ -30,7 +30,7 @@
"css-loader": "1.0.1",
"file-loader": "2.0.0",
"mini-css-extract-plugin": "0.4.4",
"datax-common": "1.3.0-SNAPSHOT-9",
"datax-common": "1.3.0-SNAPSHOT-10",
"office-ui-fabric-react": "6.111.2",
"q": "1.5.1",
"prop-types": "15.6.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,8 @@ const mapDispatchToProps = () => ({});
// Styles
const rootStyle = {
display: 'flex',
flexDirection: 'row',
flexDirection: 'column',
overflowX: 'hidden',
overflowY: 'auto'
};

Expand Down
4 changes: 2 additions & 2 deletions Website/Packages/datax-metrics/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "datax-metrics",
"version": "1.3.0-SNAPSHOT-9",
"version": "1.3.0-SNAPSHOT-10",
"description": "Metric features",
"author": "Microsoft",
"license": "MIT",
Expand Down Expand Up @@ -33,7 +33,7 @@
"d3": "4.10.2",
"file-loader": "2.0.0",
"mini-css-extract-plugin": "0.4.4",
"datax-common": "1.3.0-SNAPSHOT-9",
"datax-common": "1.3.0-SNAPSHOT-10",
"office-ui-fabric-react": "6.111.2",
"q": "1.5.1",
"plotly.js": "1.44.4",
Expand Down
6 changes: 3 additions & 3 deletions Website/Packages/datax-pipeline/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "datax-pipeline",
"version": "1.3.0-SNAPSHOT-9",
"version": "1.3.0-SNAPSHOT-10",
"description": "Pipeline features",
"author": "Microsoft",
"license": "MIT",
Expand Down Expand Up @@ -34,8 +34,8 @@
"css-loader": "1.0.1",
"file-loader": "2.0.0",
"mini-css-extract-plugin": "0.4.4",
"datax-common": "1.3.0-SNAPSHOT-9",
"datax-query": "1.3.0-SNAPSHOT-9",
"datax-common": "1.3.0-SNAPSHOT-10",
"datax-query": "1.3.0-SNAPSHOT-10",
"office-ui-fabric-react": "6.111.2",
"q": "1.5.1",
"promise-polyfill": "8.1.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export default class FunctionSettingsContent extends React.Component {
renderAddFunctionButton() {
const menuItems = this.props.enableLocalOneBox
? Models.functionTypes
.filter(functionType => functionType.name != 'Azure Function') // disable Azure function in OneBox mode
.filter(functionType => functionType.name !== 'Azure Function') // disable Azure function in OneBox mode
.map(functionType => {
return Object.assign({}, functionType, {
onClick: () => this.props.onNewFunction(functionType.key)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,14 +125,14 @@ export default class OutputSettingsContent extends React.Component {
renderAddSinkerButton() {
const menuItems = this.props.enableLocalOneBox
? Models.outputSinkerTypes
.filter(sinkerType => sinkerType.name == 'Local')
.filter(sinkerType => sinkerType.name === 'Local')
.map(sinkerType => {
return Object.assign({}, sinkerType, {
onClick: () => this.props.onNewSinker(sinkerType.key)
});
})
: Models.outputSinkerTypes
.filter(sinkerType => sinkerType.name != 'Local')
.filter(sinkerType => sinkerType.name !== 'Local')
.map(sinkerType => {
return Object.assign({}, sinkerType, {
onClick: () => this.props.onNewSinker(sinkerType.key)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export default class ScheduleSettingsContent extends React.Component {
});
})
: Models.batchTypes
.filter(batchType => batchType.key != Models.batchTypeEnum.recurring)
.filter(batchType => batchType.key !== Models.batchTypeEnum.recurring)
.map(batchType => {
return Object.assign({}, batchType, {
onClick: () => this.props.onNewBatch(batchType.key)
Expand Down
4 changes: 2 additions & 2 deletions Website/Packages/datax-query/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "datax-query",
"version": "1.3.0-SNAPSHOT-9",
"version": "1.3.0-SNAPSHOT-10",
"description": "Query features",
"author": "Microsoft",
"license": "MIT",
Expand Down Expand Up @@ -32,7 +32,7 @@
"css-loader": "1.0.1",
"file-loader": "2.0.0",
"mini-css-extract-plugin": "0.4.4",
"datax-common": "1.3.0-SNAPSHOT-9",
"datax-common": "1.3.0-SNAPSHOT-10",
"office-ui-fabric-react": "6.111.2",
"q": "1.5.1",
"promise-polyfill": "8.1.0",
Expand Down
10 changes: 5 additions & 5 deletions Website/Website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@
"css-loader": "1.0.1",
"file-loader": "2.0.0",
"mini-css-extract-plugin": "0.4.4",
"datax-common": "1.3.0-SNAPSHOT-9",
"datax-home": "1.3.0-SNAPSHOT-9",
"datax-jobs": "1.3.0-SNAPSHOT-9",
"datax-metrics": "1.3.0-SNAPSHOT-9",
"datax-pipeline": "1.3.0-SNAPSHOT-9",
"datax-common": "1.3.0-SNAPSHOT-10",
"datax-home": "1.3.0-SNAPSHOT-10",
"datax-jobs": "1.3.0-SNAPSHOT-10",
"datax-metrics": "1.3.0-SNAPSHOT-10",
"datax-pipeline": "1.3.0-SNAPSHOT-10",
"office-ui-fabric-react": "6.111.2",
"promise-polyfill": "8.1.0",
"prop-types": "15.6.2",
Expand Down

0 comments on commit b958a9a

Please sign in to comment.