Skip to content

Commit

Permalink
add license header
Browse files Browse the repository at this point in the history
  • Loading branch information
xkam committed Feb 2, 2020
1 parent ad40622 commit 3b7955e
Show file tree
Hide file tree
Showing 32 changed files with 246 additions and 10 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018 ActiveWidgets
Copyright (c) 2020 ActiveWidgets

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
5 changes: 5 additions & 0 deletions bundle/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/**
* Copyright (c) ActiveWidgets SARL. All Rights Reserved.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

import css from '@activewidgets/datagrid/style';
import styleInject from 'style-inject';
Expand Down
5 changes: 5 additions & 0 deletions css/index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
/**
* Copyright (c) ActiveWidgets SARL. All Rights Reserved.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

import '@activewidgets/datagrid/css';
21 changes: 21 additions & 0 deletions examples/cdn-es5/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2020 ActiveWidgets

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
1 change: 1 addition & 0 deletions examples/cdn-es5/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "js-cdn-es5",
"version": "1.0.0",
"description": "ActiveWidgets.JS from CDN",
"license": "MIT",
"main": "src/index.js",
"private": true
}
5 changes: 5 additions & 0 deletions examples/cdn-es5/src/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/**
* Copyright (c) ActiveWidgets SARL. All Rights Reserved.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

var mount = ActiveWidgets.JS.mount;

Expand Down
5 changes: 5 additions & 0 deletions examples/cdn-es5/src/styles.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/**
* Copyright (c) ActiveWidgets SARL. All Rights Reserved.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

body {
margin: 60px;
Expand Down
21 changes: 21 additions & 0 deletions examples/columns/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2020 ActiveWidgets

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
2 changes: 1 addition & 1 deletion examples/columns/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "js-columns",
"version": "1.0.0",
"description": "Columns, rows - ActiveWidgets/JS",
"keywords": [],
"license": "MIT",
"main": "src/index.js",
"scripts": {
"start": "parcel index.html --open",
Expand Down
5 changes: 5 additions & 0 deletions examples/columns/src/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/**
* Copyright (c) ActiveWidgets SARL. All Rights Reserved.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

import { mount } from "@activewidgets/js";
import { northwind } from "@activewidgets/examples/data";
Expand Down
5 changes: 5 additions & 0 deletions examples/columns/src/styles.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/**
* Copyright (c) ActiveWidgets SARL. All Rights Reserved.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

body {
margin: 60px;
Expand Down
21 changes: 21 additions & 0 deletions examples/demo/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2020 ActiveWidgets

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
2 changes: 1 addition & 1 deletion examples/demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "js-demo",
"version": "1.0.0",
"description": "Demo - ActiveWidgets/JS",
"keywords": [],
"license": "MIT",
"main": "src/index.js",
"scripts": {
"start": "parcel index.html --open",
Expand Down
5 changes: 5 additions & 0 deletions examples/demo/src/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/**
* Copyright (c) ActiveWidgets SARL. All Rights Reserved.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

import { mount} from "@activewidgets/js";
import { northwind } from '@activewidgets/examples/data';
Expand Down
5 changes: 5 additions & 0 deletions examples/demo/src/options.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/**
* Copyright (c) ActiveWidgets SARL. All Rights Reserved.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

import { intl, format, column, type } from "@activewidgets/options";

Expand Down
5 changes: 5 additions & 0 deletions examples/demo/src/styles.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/**
* Copyright (c) ActiveWidgets SARL. All Rights Reserved.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

body {
margin: 60px;
Expand Down
5 changes: 5 additions & 0 deletions examples/demo/src/templates.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/**
* Copyright (c) ActiveWidgets SARL. All Rights Reserved.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

import { tpl } from "@activewidgets/js";
import * as flags from '@activewidgets/examples/flags';
Expand Down
21 changes: 21 additions & 0 deletions examples/events/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2020 ActiveWidgets

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
2 changes: 1 addition & 1 deletion examples/events/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "js-events",
"version": "1.0.0",
"description": "User events - ActiveWidgets/JS",
"keywords": [],
"license": "MIT",
"main": "src/index.js",
"scripts": {
"start": "parcel index.html --open",
Expand Down
5 changes: 5 additions & 0 deletions examples/events/src/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/**
* Copyright (c) ActiveWidgets SARL. All Rights Reserved.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

import { mount } from "@activewidgets/js";
import { columns, rows } from "@activewidgets/examples/data";
Expand Down
5 changes: 5 additions & 0 deletions examples/events/src/styles.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/**
* Copyright (c) ActiveWidgets SARL. All Rights Reserved.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

body {
margin: 60px;
Expand Down
21 changes: 21 additions & 0 deletions examples/hello-world/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2020 ActiveWidgets

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
2 changes: 1 addition & 1 deletion examples/hello-world/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "js-hello-world",
"version": "1.0.0",
"description": "Hello World - ActiveWidgets/JS",
"keywords": [],
"license": "MIT",
"main": "src/index.js",
"scripts": {
"start": "parcel index.html --open",
Expand Down
5 changes: 5 additions & 0 deletions examples/hello-world/src/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/**
* Copyright (c) ActiveWidgets SARL. All Rights Reserved.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

import { mount } from "@activewidgets/js";
import './styles.css';
Expand Down
5 changes: 5 additions & 0 deletions examples/hello-world/src/styles.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/**
* Copyright (c) ActiveWidgets SARL. All Rights Reserved.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

body {
margin: 60px;
Expand Down
7 changes: 6 additions & 1 deletion examples/viewer/examples.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@

/**
* Copyright (c) ActiveWidgets SARL. All Rights Reserved.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

import hello_world from '../hello-world/README.md';
import cdn_es5 from '../cdn-es5/README.md';
import columns from '../columns/README.md';
Expand Down
7 changes: 6 additions & 1 deletion examples/viewer/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@

/**
* Copyright (c) ActiveWidgets SARL. All Rights Reserved.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

import {Viewer} from '@activewidgets/examples';
import {mount as _mount} from '@activewidgets/js';
import * as pages from './examples.js';
Expand Down
5 changes: 5 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/**
* Copyright (c) ActiveWidgets SARL. All Rights Reserved.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

import './css/index.js';
export * from './js/index.js';
5 changes: 5 additions & 0 deletions js/datagrid.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/**
* Copyright (c) ActiveWidgets SARL. All Rights Reserved.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

import {build} from './framework.js';
import * as components from '@activewidgets/datagrid/js';
Expand Down
5 changes: 5 additions & 0 deletions js/framework.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/**
* Copyright (c) ActiveWidgets SARL. All Rights Reserved.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

import adapter from '@activewidgets/frameworks/js';
import * as preact from 'preact';
Expand Down
5 changes: 5 additions & 0 deletions js/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/**
* Copyright (c) ActiveWidgets SARL. All Rights Reserved.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

export * from './framework.js';
export * from './datagrid.js';
Loading

0 comments on commit 3b7955e

Please sign in to comment.