@basic-genomics/hivtrace-viz 1.2.6 → 1.4.0
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/README.md +62 -0
- package/dist/embed/hivtrace.js +1 -1
- package/dist/embed/hivtrace.js.LICENSE.txt +10 -0
- package/dist/embed/hivtrace.js.map +1 -1
- package/dist/embed/index.html +703 -35
- package/dist/embed/locales/zh-CN.json +1 -1
- package/dist/hivtrace.js +1 -1
- package/dist/hivtrace.js.LICENSE.txt +10 -0
- package/dist/hivtrace.js.map +1 -1
- package/dist/react/HivtraceViz.d.ts +1 -1
- package/dist/react/HivtraceViz.d.ts.map +1 -1
- package/dist/react/HivtraceViz.js +11 -4
- package/dist/react/index.d.ts +1 -1
- package/dist/react/index.d.ts.map +1 -1
- package/dist/react/types.d.ts +50 -0
- package/dist/react/types.d.ts.map +1 -1
- package/package.json +2 -1
|
@@ -36,3 +36,13 @@
|
|
|
36
36
|
*
|
|
37
37
|
* Based on jQuery.extend by jQuery Foundation, Inc. and other contributors
|
|
38
38
|
*/
|
|
39
|
+
|
|
40
|
+
/*!
|
|
41
|
+
Embeddable Minimum Strictly-Compliant Promises/A+ 1.1.1 Thenable
|
|
42
|
+
Copyright (c) 2013-2014 Ralf S. Engelschall (http://engelschall.com)
|
|
43
|
+
Licensed under The MIT License (http://opensource.org/licenses/MIT)
|
|
44
|
+
*/
|
|
45
|
+
|
|
46
|
+
/*! Bezier curve function generator. Copyright Gaetan Renaudeau. MIT License: http://en.wikipedia.org/wiki/MIT_License */
|
|
47
|
+
|
|
48
|
+
/*! Runge-Kutta spring physics function generator. Adapted from Framer.js, copyright Koen Bok. MIT License: http://en.wikipedia.org/wiki/MIT_License */
|