northdata-viz 1.218.11 → 1.218.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -3
- package/third_party/licenses.txt +29 -0
- package/viz.esm.js +8003 -10467
- package/viz.esm.js.map +1 -1
- package/viz.min.js +2 -2
- package/viz.min.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "northdata-viz",
|
|
3
|
-
"version": "1.218.
|
|
3
|
+
"version": "1.218.13",
|
|
4
4
|
"description": "North Data Widget API",
|
|
5
5
|
"main": "viz.min.js",
|
|
6
6
|
"module": "viz.esm.js",
|
|
@@ -14,10 +14,11 @@
|
|
|
14
14
|
},
|
|
15
15
|
"files": [
|
|
16
16
|
"*.js",
|
|
17
|
-
"*.map"
|
|
17
|
+
"*.map",
|
|
18
|
+
"third_party/licenses.txt"
|
|
18
19
|
],
|
|
19
20
|
"scripts": {
|
|
20
|
-
"prepare": "cp ../../build/web/js/viz.*.js .;cp ../../build/web/js/viz.*.js.map ."
|
|
21
|
+
"prepare": "cp ../../build/web/js/viz.*.js .;cp ../../build/web/js/viz.*.js.map .;cp ../../build/web/js/viz.min.js.LICENSE.txt ./third_party/licenses.txt"
|
|
21
22
|
},
|
|
22
23
|
"author": "North Data GmbH",
|
|
23
24
|
"license": "ISC",
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Portions of this code are derived from d3kit v3.2.0
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2015 Twitter, Inc.
|
|
5
|
+
*
|
|
6
|
+
* @license MIT
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* Portions of this code are derived from d3kit-timeline v2.0.1
|
|
10
|
+
*
|
|
11
|
+
* Copyright 2015 Krist Wongsuphasawat
|
|
12
|
+
*
|
|
13
|
+
* @license Apache-2.0
|
|
14
|
+
*
|
|
15
|
+
* NOTICE
|
|
16
|
+
* -------
|
|
17
|
+
*
|
|
18
|
+
* This project includes code originally licensed under the Apache License, Version 2.0.
|
|
19
|
+
*
|
|
20
|
+
* Original Project: d3kit-timeline v2.0.1
|
|
21
|
+
* Original Author: Krist Wongsuphasawat
|
|
22
|
+
*
|
|
23
|
+
* Modifications to the original code:
|
|
24
|
+
* - Code has been inlined
|
|
25
|
+
* - Unused options `keyFn`, `labella`, `labelTextColor`, `scale` have been removed
|
|
26
|
+
* - Option `direction` has been restricted to "horizontal" and "vertical"
|
|
27
|
+
* - Dependency to d3kit has been inlined
|
|
28
|
+
*
|
|
29
|
+
*/
|