Skip to content

Commit 5baf8e9

Browse files
committed
Merge pull request #6962 from tamird/ui-next-update
ui/next: update dependencies
2 parents 3edc050 + 3146fde commit 5baf8e9

31 files changed

+332
-206
lines changed

ui/next/app/app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../typings/main.d.ts" />
1+
/// <reference path="../typings/index.d.ts" />
22

33
/**
44
* UI/NEXT TODO LIST

ui/next/app/components/graphGroup.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/// <reference path="../../typings/main.d.ts" />
1+
/// <reference path="../../typings/index.d.ts" />
22
import * as React from "react";
33

44
import { MetricsDataProvider } from "../containers/metricsDataProvider";
55

6-
/**
6+
/**
77
* GraphGroup is a stateless react component that wraps a group of graphs (the
88
* children of this component) in a MetricsDataProvider and some additional tags
99
* relevant to the layout of our graphs pages.

ui/next/app/containers/cluster.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../../typings/main.d.ts" />
1+
/// <reference path="../../typings/index.d.ts" />
22
import * as React from "react";
33

44
import { IndexListLink, ListLink } from "../components/listLink.tsx";

ui/next/app/containers/clusterEvents.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../../typings/main.d.ts" />
1+
/// <reference path="../../typings/index.d.ts" />
22
import * as React from "react";
33

44
/**

ui/next/app/containers/clusterOverview.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../../typings/main.d.ts" />
1+
/// <reference path="../../typings/index.d.ts" />
22
import * as React from "react";
33
import * as d3 from "d3";
44
import _ = require("lodash");

ui/next/app/containers/databases/databaseDetails.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../../../typings/main.d.ts" />
1+
/// <reference path="../../../typings/index.d.ts" />
22
import * as React from "react";
33
import { Link } from "react-router";
44
import * as _ from "lodash";

ui/next/app/containers/databases/databaseList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../../../typings/main.d.ts" />
1+
/// <reference path="../../../typings/index.d.ts" />
22
import * as React from "react";
33
import { Link } from "react-router";
44
import * as _ from "lodash";

ui/next/app/containers/databases/databases.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../../../typings/main.d.ts" />
1+
/// <reference path="../../../typings/index.d.ts" />
22
import * as React from "react";
33

44
/**

ui/next/app/containers/databases/tableDetails.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../../../typings/main.d.ts" />
1+
/// <reference path="../../../typings/index.d.ts" />
22
import * as React from "react";
33
import * as _ from "lodash";
44
import { connect } from "react-redux";

ui/next/app/containers/helpus.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../../typings/main.d.ts" />
1+
/// <reference path="../../typings/index.d.ts" />
22
import * as React from "react";
33

44
/**

ui/next/app/containers/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../../typings/main.d.ts" />
1+
/// <reference path="../../typings/index.d.ts" />
22
import * as React from "react";
33
import _ = require("lodash");
44
import { RouteComponentProps } from "react-router";

ui/next/app/containers/metricsDataProvider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../../typings/main.d.ts" />
1+
/// <reference path="../../typings/index.d.ts" />
22

33
import * as React from "react";
44
import { createSelector } from "reselect";

ui/next/app/containers/node.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../../typings/main.d.ts" />
1+
/// <reference path="../../typings/index.d.ts" />
22
import * as React from "react";
33
import { Link, RouteComponentProps } from "react-router";
44

ui/next/app/containers/nodeGraphs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../../typings/main.d.ts" />
1+
/// <reference path="../../typings/index.d.ts" />
22
import * as React from "react";
33
import * as d3 from "d3";
44
import { RouteComponentProps } from "react-router";

ui/next/app/containers/nodeLogs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../../typings/main.d.ts" />
1+
/// <reference path="../../typings/index.d.ts" />
22
import * as React from "react";
33

44
/**

ui/next/app/containers/nodeOverview.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../../typings/main.d.ts" />
1+
/// <reference path="../../typings/index.d.ts" />
22
import * as React from "react";
33

44
/**

ui/next/app/containers/nodes.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../../typings/main.d.ts" />
1+
/// <reference path="../../typings/index.d.ts" />
22
import * as React from "react";
33

44
import { ListLink } from "../components/listLink.tsx";

ui/next/app/containers/nodesGraphs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../../typings/main.d.ts" />
1+
/// <reference path="../../typings/index.d.ts" />
22
import * as React from "react";
33
import * as d3 from "d3";
44

ui/next/app/containers/nodesOverview.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../../typings/main.d.ts" />
1+
/// <reference path="../../typings/index.d.ts" />
22
import * as React from "react";
33
import _ = require("lodash");
44
import { Link } from "react-router";

ui/next/app/containers/timescale.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../../typings/main.d.ts" />
1+
/// <reference path="../../typings/index.d.ts" />
22

33
import * as React from "react";
44
import { connect } from "react-redux";

ui/next/app/containers/timewindow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../../typings/main.d.ts" />
1+
/// <reference path="../../typings/index.d.ts" />
22

33
import * as React from "react";
44
import { connect } from "react-redux";

ui/next/app/redux/databaseInfo.spec.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
import { assert } from "chai";
2-
import * as databases from "./databaseInfo";
3-
import * as protos from "../js/protos";
42
import * as proxyquire from "proxyquire";
5-
import { Action } from "../interfaces/action";
63
import { Dispatch } from "redux";
74
import * as _ from "lodash";
85

6+
import * as databases from "./databaseInfo";
7+
import * as protos from "../js/protos";
8+
import { Action } from "../interfaces/action";
9+
910
type DatabasesResponse = cockroach.server.DatabasesResponse;
1011

1112
type DatabaseDetailsRequest = cockroach.server.DatabaseDetailsRequest;

ui/next/app/redux/uiData.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import _ = require("lodash");
2-
32
import { Dispatch } from "redux";
43
import ByteBuffer = require("bytebuffer");
54

ui/next/app/util/api.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { assert } from "chai";
22
import _ = require("lodash");
33
import * as fetchMock from "fetch-mock";
4-
import * as protos from "../js/protos";
54
import Long = require("long");
65

6+
import * as protos from "../js/protos";
77
import * as api from "./api";
88

99
describe("rest api", function() {

ui/next/app/util/api.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1-
/// <reference path="../../typings/main.d.ts" />
1+
/// <reference path="../../typings/index.d.ts" />
22

33
/**
44
* This module contains all the REST endpoints for communicating with the admin UI.
55
*/
66

77
import "isomorphic-fetch";
8-
import * as protos from "../js/protos";
98
import * as _ from "lodash";
109

10+
import * as protos from "../js/protos";
11+
1112
let server = protos.cockroach.server;
1213
let ts = protos.cockroach.ts;
1314

ui/next/app/util/find.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../../typings/main.d.ts" />
1+
/// <reference path="../../typings/index.d.ts" />
22
import * as React from "react";
33

44
/**

ui/next/app/util/proto.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../../typings/main.d.ts" />
1+
/// <reference path="../../typings/index.d.ts" />
22
import _ = require("lodash");
33

44
type NodeStatus = cockroach.server.status.NodeStatus;

0 commit comments

Comments
 (0)