Skip to content

Commit

Permalink
Merge pull request kubeflow#216 from avdaredevil/update
Browse files Browse the repository at this point in the history
[MLMD] Final updates to lineage view
  • Loading branch information
avdaredevil authored Feb 28, 2020
2 parents a7cfcba + 7e467e4 commit edb7276
Show file tree
Hide file tree
Showing 17 changed files with 3,906 additions and 2,559 deletions.
6,431 changes: 3,889 additions & 2,542 deletions frontend/package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@kubeflow/frontend": "github:kubeflow/frontend#25f9013",
"@material-ui/core": "^3.7.1",
"@material-ui/icons": "^3.0.1",
"frontend": "kubeflow/frontend#447c61b",
"lodash.debounce": "^4.0.8",
"lodash.isfunction": "^3.0.9",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^4.3.1",
"react-scripts": "^3.2.0",
"react-scripts": "^3.4.0",
"typestyle": "^2.0.1"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/TestUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

import {mount, ReactWrapper} from 'enzyme';
import {Artifact, ArtifactCustomProperties, ArtifactProperties, Value} from 'frontend';
import {Artifact, ArtifactCustomProperties, ArtifactProperties, Value} from '@kubeflow/frontend';
import {object} from 'prop-types';
import * as React from 'react';
import {match} from 'react-router';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/atoms/MD2Tabs.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import {logger} from 'frontend';
import {logger} from '@kubeflow/frontend';
import * as React from 'react';
import MD2Tabs from './MD2Tabs';
import toJson from 'enzyme-to-json';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/atoms/MD2Tabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import {logger} from 'frontend';
import {logger} from '@kubeflow/frontend';
import * as React from 'react';
import Button from '@material-ui/core/Button';
import Separator from './Separator';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/CustomTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import {ListRequest, logger} from 'frontend';
import {ListRequest, logger} from '@kubeflow/frontend';
import debounce from 'lodash.debounce';
import * as React from 'react';
import ArrowRight from '@material-ui/icons/ArrowRight';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/ModelInfo.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {ArtifactProperties} from 'frontend';
import {ArtifactProperties} from '@kubeflow/frontend';
import * as React from 'react';
import {ModelInfo} from './ModelInfo';
import {shallow, ShallowWrapper} from 'enzyme';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/ModelInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {Artifact, ArtifactProperties, getResourceProperty, logger} from 'frontend';
import {Artifact, ArtifactProperties, getResourceProperty, logger} from '@kubeflow/frontend';
import * as React from 'react';
import {classes} from 'typestyle';
import {commonCss} from '../Css';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/ResourceInfo.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Artifact, ArtifactCustomProperties, ArtifactProperties} from 'frontend';
import {Artifact, ArtifactCustomProperties, ArtifactProperties} from '@kubeflow/frontend';
import * as React from 'react';
import {ResourceInfo} from './ResourceInfo';
import {shallow, ShallowWrapper} from 'enzyme';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/ResourceInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {Artifact, Execution, getMetadataValue} from 'frontend';
import {Artifact, Execution, getMetadataValue} from '@kubeflow/frontend';
import * as React from 'react';
import {stylesheet} from 'typestyle';
import {color, commonCss} from '../Css';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/lib/Utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import {
ListRequest,
} from "frontend";
} from '@kubeflow/frontend';
import * as React from 'react';
import isFunction from 'lodash.isfunction';
import {Column, css as customTableCss, CustomTableRow, ExpandState, Row} from '../components/CustomTable';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/ArtifactDetails.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
GetEventsByExecutionIDsResponse,
GetExecutionsByIDResponse,
GetExecutionsResponse
} from 'frontend';
} from '@kubeflow/frontend';
import * as React from 'react';
import ArtifactDetails, {ArtifactDetailsTab} from './ArtifactDetails';
import {PageProps} from './Page';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/ArtifactDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import {
titleCase,
getResourceProperty,
LineageResource,
} from 'frontend';
} from '@kubeflow/frontend';
import * as React from 'react';
import {Page, PageProps} from './Page';
import {ToolbarProps} from '../components/Toolbar';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/ArtifactList.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
ArtifactType,
GetArtifactsResponse,
GetArtifactTypesResponse
} from "frontend";
} from '@kubeflow/frontend';
import * as React from 'react';
import ArtifactList from './ArtifactList';
import {PageProps} from './Page';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/ArtifactList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import {
getArtifactTypes,
getResourceProperty,
getTypeName
} from 'frontend';
} from '@kubeflow/frontend';
import * as React from 'react';
import CustomTable, {Column, Row, ExpandState, CustomRendererProps} from '../components/CustomTable';
import {Page} from './Page';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/ExecutionDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import {
GetExecutionsByIDRequest,
getResourceProperty,
titleCase
} from 'frontend';
} from '@kubeflow/frontend';
import * as React from 'react';
import { Page } from './Page';
import { ToolbarProps } from '../components/Toolbar';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/ExecutionList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import {
GetExecutionTypesRequest,
ListRequest,
getResourceProperty,
} from 'frontend';
} from '@kubeflow/frontend';
import * as React from 'react';
import { Link } from 'react-router-dom';
import { classes } from 'typestyle';
Expand Down

0 comments on commit edb7276

Please sign in to comment.