Added license headers (#1208)

* Added licenser

* Added license headers for cvat-canvas and cvat-ui
main
Boris Sekachev 6 years ago committed by GitHub
parent d6e7216c1f
commit c2d58e5b7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -32,4 +32,6 @@
"-s", "-s",
"./datumaro", "./datumaro",
], ],
"licenser.license": "Custom",
"licenser.customHeader": "Copyright (C) @YEAR@ Intel Corporation\n\nSPDX-License-Identifier: MIT"
} }

@ -15,7 +15,7 @@ Next steps should work on clear Ubuntu 18.04.
- Install necessary dependencies: - Install necessary dependencies:
```sh ```sh
$ sudo apt-get install -y curl redis-server python3-dev python3-pip python3-venv libldap2-dev libsasl2-dev $ sudo apt update && apt install -y nodejs npm curl redis-server python3-dev python3-pip python3-venv libldap2-dev libsasl2-dev
``` ```
- Install [Visual Studio Code](https://code.visualstudio.com/docs/setup/linux#_debian-and-ubuntu-based-distributions) - Install [Visual Studio Code](https://code.visualstudio.com/docs/setup/linux#_debian-and-ubuntu-based-distributions)
@ -45,23 +45,28 @@ Password: ***
Password (again): *** Password (again): ***
``` ```
- Install UI packages and start UI debug server: - Install npm packages for UI and start UI debug server (run the following command from CVAT root directory):
```sh ```sh
cd cvat-core && npm install npm install && \
cd ../cvat-canvas && npm install cd cvat-core && npm install && \
cd ../cvat-ui && npm install cd ../cvat-canvas && npm install && \
npm start cd ../cvat-ui && npm install && npm start
``` ```
- Run Visual Studio Code from the virtual environment - Open new terminal (Ctrl + Shift + T), run Visual Studio Code from the virtual environment
```sh ```sh
code . cd .. && source .env/bin/activate && code
``` ```
- Inside Visual Studio Code install [Debugger for Chrome](https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome) and [Python](https://marketplace.visualstudio.com/items?itemName=ms-python.python) extensions - Install followig vscode extensions:
- [Debugger for Chrome](https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome)
- [Python](https://marketplace.visualstudio.com/items?itemName=ms-python.python)
- [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint)
- [vscode-remark-lint](https://marketplace.visualstudio.com/items?itemName=drewbourne.vscode-remark-lint)
- [licenser](https://marketplace.visualstudio.com/items?itemName=ymotongpoo.licenser)
- Reload Visual Studio Code - Reload Visual Studio Code from virtual environment
- Select `server: debug` configuration and start it (F5) to run REST server and its workers - Select `server: debug` configuration and start it (F5) to run REST server and its workers

@ -150,7 +150,6 @@ Standard JS events are used.
}); });
``` ```
## API Reaction ## API Reaction
| | IDLE | GROUPING | SPLITTING | DRAWING | MERGING | EDITING | DRAG | ZOOM | | | IDLE | GROUPING | SPLITTING | DRAWING | MERGING | EDITING | DRAG | ZOOM |

@ -1,3 +1,7 @@
// Copyright (C) 2019-2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
/* eslint-disable */ /* eslint-disable */
module.exports = { module.exports = {
parser: false, parser: false,

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
.cvat_canvas_hidden { .cvat_canvas_hidden {
display: none; display: none;
} }

@ -1,7 +1,6 @@
/* // Copyright (C) 2019-2020 Intel Corporation
* Copyright (C) 2019 Intel Corporation //
* SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
*/
import { import {
Rotation, Rotation,

@ -1,7 +1,6 @@
/* // Copyright (C) 2019-2020 Intel Corporation
* Copyright (C) 2019 Intel Corporation //
* SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
*/
import { import {
CanvasModel, CanvasModel,

@ -1,7 +1,6 @@
/* // Copyright (C) 2019-2020 Intel Corporation
* Copyright (C) 2019 Intel Corporation //
* SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
*/
import { MasterImpl } from './master'; import { MasterImpl } from './master';

@ -1,7 +1,6 @@
/* // Copyright (C) 2019-2020 Intel Corporation
* Copyright (C) 2019 Intel Corporation //
* SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
*/
import * as SVG from 'svg.js'; import * as SVG from 'svg.js';

@ -1,7 +1,6 @@
/* // Copyright (C) 2019-2020 Intel Corporation
* Copyright (C) 2019 Intel Corporation //
* SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
*/
const BASE_STROKE_WIDTH = 1.75; const BASE_STROKE_WIDTH = 1.75;
const BASE_GRID_WIDTH = 1; const BASE_GRID_WIDTH = 1;

@ -1,7 +1,6 @@
/* // Copyright (C) 2019-2020 Intel Corporation
* Copyright (C) 2019 Intel Corporation //
* SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
*/
import * as SVG from 'svg.js'; import * as SVG from 'svg.js';
import consts from './consts'; import consts from './consts';

@ -1,7 +1,6 @@
/* // Copyright (C) 2019-2020 Intel Corporation
* Copyright (C) 2019 Intel Corporation //
* SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
*/
import * as SVG from 'svg.js'; import * as SVG from 'svg.js';
import 'svg.select.js'; import 'svg.select.js';

@ -1,3 +1,7 @@
// Copyright (C) 2019-2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import * as SVG from 'svg.js'; import * as SVG from 'svg.js';
import { GroupData } from './canvasModel'; import { GroupData } from './canvasModel';

@ -1,7 +1,6 @@
/* // Copyright (C) 2019-2020 Intel Corporation
* Copyright (C) 2019 Intel Corporation //
* SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
*/
export interface Master { export interface Master {
subscribe(listener: Listener): void; subscribe(listener: Listener): void;

@ -1,3 +1,7 @@
// Copyright (C) 2019-2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import * as SVG from 'svg.js'; import * as SVG from 'svg.js';
import { MergeData } from './canvasModel'; import { MergeData } from './canvasModel';

@ -1,7 +1,6 @@
/* // Copyright (C) 2019-2020 Intel Corporation
* Copyright (C) 2019 Intel Corporation //
* SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
*/
import * as SVG from 'svg.js'; import * as SVG from 'svg.js';
import consts from './consts'; import consts from './consts';

@ -1,3 +1,7 @@
// Copyright (C) 2019-2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import * as SVG from 'svg.js'; import * as SVG from 'svg.js';
import { SplitData } from './canvasModel'; import { SplitData } from './canvasModel';

@ -1,7 +1,9 @@
import * as SVG from 'svg.js'; // Copyright (C) 2019-2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
/* eslint-disable */ /* eslint-disable */
import * as SVG from 'svg.js';
import 'svg.draggable.js'; import 'svg.draggable.js';
import 'svg.resize.js'; import 'svg.resize.js';
import 'svg.select.js'; import 'svg.select.js';

@ -1,3 +1,7 @@
// Copyright (C) 2019-2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import * as SVG from 'svg.js'; import * as SVG from 'svg.js';
import consts from './consts'; import consts from './consts';

@ -0,0 +1,4 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT

@ -1,7 +1,6 @@
/* // Copyright (C) 2020 Intel Corporation
* Copyright (C) 2019 Intel Corporation //
* SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
*/
module.exports = { module.exports = {
'env': { 'env': {

@ -1 +1,5 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
declare module '*.svg'; declare module '*.svg';

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
/* eslint-disable */ /* eslint-disable */
module.exports = { module.exports = {
parser: false, parser: false,

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import { ActionUnion, createAction, ThunkAction } from 'utils/redux'; import { ActionUnion, createAction, ThunkAction } from 'utils/redux';
import getCore from 'cvat-core'; import getCore from 'cvat-core';

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import { import {
AnyAction, AnyAction,
Dispatch, Dispatch,

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import { ActionUnion, createAction, ThunkAction } from 'utils/redux'; import { ActionUnion, createAction, ThunkAction } from 'utils/redux';
import getCore from 'cvat-core'; import getCore from 'cvat-core';

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import { ActionUnion, createAction, ThunkAction } from 'utils/redux'; import { ActionUnion, createAction, ThunkAction } from 'utils/redux';
import getCore from 'cvat-core'; import getCore from 'cvat-core';

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import { AnyAction, Dispatch, ActionCreator } from 'redux'; import { AnyAction, Dispatch, ActionCreator } from 'redux';
import { ThunkAction } from 'redux-thunk'; import { ThunkAction } from 'redux-thunk';

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import { AnyAction } from 'redux'; import { AnyAction } from 'redux';
export enum NotificationsActionType { export enum NotificationsActionType {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import { ActionUnion, createAction, ThunkAction } from 'utils/redux'; import { ActionUnion, createAction, ThunkAction } from 'utils/redux';
import { SupportedPlugins } from 'reducers/interfaces'; import { SupportedPlugins } from 'reducers/interfaces';
import PluginChecker from 'utils/plugin-checker'; import PluginChecker from 'utils/plugin-checker';

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import { AnyAction } from 'redux'; import { AnyAction } from 'redux';
import { import {
GridColor, GridColor,

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import { ActionUnion, createAction, ThunkAction } from 'utils/redux'; import { ActionUnion, createAction, ThunkAction } from 'utils/redux';
import getCore from 'cvat-core'; import getCore from 'cvat-core';

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import { AnyAction, Dispatch, ActionCreator } from 'redux'; import { AnyAction, Dispatch, ActionCreator } from 'redux';
import { ThunkAction } from 'redux-thunk'; import { ThunkAction } from 'redux-thunk';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import { ActionUnion, createAction, ThunkAction } from 'utils/redux'; import { ActionUnion, createAction, ThunkAction } from 'utils/redux';
import getCore from 'cvat-core'; import getCore from 'cvat-core';

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
$header-color: #D8D8D8; $header-color: #D8D8D8;
$text-color: #303030; $text-color: #303030;
$hover-menu-color: rgba(24,144,255,0.05); $hover-menu-color: rgba(24,144,255,0.05);

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import './styles.scss'; import './styles.scss';
import React from 'react'; import React from 'react';

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
@import '../../base.scss'; @import '../../base.scss';
.ant-menu.cvat-actions-menu { .ant-menu.cvat-actions-menu {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import './styles.scss'; import './styles.scss';
import React from 'react'; import React from 'react';

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import ReactDOM from 'react-dom'; import ReactDOM from 'react-dom';

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {
Popover, Popover,

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {
Popover, Popover,

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {
Popover, Popover,

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {
Popover, Popover,

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import LabelItemContainer from 'containers/annotation-page/standard-workspace/objects-side-bar/label-item'; import LabelItemContainer from 'containers/annotation-page/standard-workspace/objects-side-bar/label-item';

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { SelectValue } from 'antd/lib/select'; import { SelectValue } from 'antd/lib/select';

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import './styles.scss'; import './styles.scss';
import React from 'react'; import React from 'react';

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
@import 'base.scss'; @import 'base.scss';
.cvat-objects-appearance-collapse.ant-collapse { .cvat-objects-appearance-collapse.ant-collapse {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import './styles.scss'; import './styles.scss';
import React from 'react'; import React from 'react';

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
@import 'base.scss'; @import 'base.scss';
.cvat-canvas-container { .cvat-canvas-container {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
@import '../../base.scss'; @import '../../base.scss';
.cvat-annotation-page.ant-layout { .cvat-annotation-page.ant-layout {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import './styles.scss'; import './styles.scss';
import React from 'react'; import React from 'react';

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
@import '../../base.scss'; @import '../../base.scss';
.cvat-create-model-form-wrapper { .cvat-create-model-form-wrapper {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import './styles.scss'; import './styles.scss';
import React from 'react'; import React from 'react';

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
@import '../../base.scss'; @import '../../base.scss';
.cvat-create-task-form-wrapper { .cvat-create-task-form-wrapper {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import 'antd/dist/antd.less'; import 'antd/dist/antd.less';
import '../styles.scss'; import '../styles.scss';
import React from 'react'; import React from 'react';

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import './styles.scss'; import './styles.scss';
import React from 'react'; import React from 'react';

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
.cvat-feedback-button { .cvat-feedback-button {
position: absolute; position: absolute;
bottom: 20px; bottom: 20px;

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import './styles.scss'; import './styles.scss';
import React from 'react'; import React from 'react';

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
@import '../../base.scss'; @import '../../base.scss';
.cvat-share-tree { .cvat-share-tree {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import './styles.scss'; import './styles.scss';
import React from 'react'; import React from 'react';

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
@import '../../base.scss'; @import '../../base.scss';
.cvat-header.ant-layout-header { .cvat-header.ant-layout-header {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
export interface Attribute { export interface Attribute {
id: number; id: number;
name: string; name: string;

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import LabelForm from './label-form'; import LabelForm from './label-form';

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import LabelForm from './label-form'; import LabelForm from './label-form';

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react'; import React from 'react';
import { import {

@ -1,3 +1,7 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import './styles.scss'; import './styles.scss';
import React from 'react'; import React from 'react';

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save