@explorable-viz/fluid 0.11.0 → 0.11.2
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/.spago/aff/v7.1.0/.editorconfig +13 -0
- package/.spago/aff/v7.1.0/.eslintrc.json +28 -0
- package/.spago/aff/v7.1.0/.gitignore +14 -0
- package/.spago/aff/v7.1.0/.tidyrc.json +10 -0
- package/.spago/argonaut-codecs/v9.1.0/.editorconfig +13 -0
- package/.spago/argonaut-codecs/v9.1.0/.gitignore +9 -0
- package/.spago/argonaut-codecs/v9.1.0/.tidyrc.json +10 -0
- package/.spago/arrays/v7.2.1/.eslintrc.json +26 -0
- package/.spago/arrays/v7.2.1/.gitignore +9 -0
- package/.spago/console/v6.1.0/.eslintrc.json +30 -0
- package/.spago/console/v6.1.0/.gitignore +9 -0
- package/.spago/debug/v6.0.2/.eslintrc.json +36 -0
- package/.spago/debug/v6.0.2/.gitignore +8 -0
- package/.spago/enums/v6.0.1/.gitignore +7 -0
- package/.spago/foreign-object/v4.1.0/.eslintrc.json +26 -0
- package/.spago/foreign-object/v4.1.0/.gitignore +8 -0
- package/.spago/free/v7.1.0/.gitignore +8 -0
- package/.spago/graphs/v8.1.0/.gitignore +7 -0
- package/.spago/js-uri/v3.1.0/.eslintrc.json +30 -0
- package/.spago/js-uri/v3.1.0/.gitignore +14 -0
- package/.spago/js-uri/v3.1.0/.tidyrc.json +10 -0
- package/.spago/node-buffer/v9.0.0/.eslintrc.json +26 -0
- package/.spago/node-buffer/v9.0.0/.gitignore +8 -0
- package/.spago/node-process/v11.2.0/.eslintrc.json +29 -0
- package/.spago/node-process/v11.2.0/.gitignore +8 -0
- package/.spago/node-streams/v9.0.0/.eslintrc.json +29 -0
- package/.spago/node-streams/v9.0.0/.gitignore +8 -0
- package/.spago/optparse/v6.0.0/.gitignore +8 -0
- package/.spago/optparse/v6.0.0/.npmrc +1 -0
- package/.spago/ordered-collections/v3.1.1/.gitignore +8 -0
- package/.spago/parallel/v7.0.0/.gitignore +7 -0
- package/.spago/parsing/v10.3.1/.editorconfig +13 -0
- package/.spago/parsing/v10.3.1/.gitignore +12 -0
- package/.spago/parsing/v10.3.1/.tidyoperators +231 -0
- package/.spago/parsing/v10.3.1/.tidyrc.json +10 -0
- package/.spago/prelude/v6.0.1/.eslintrc.json +26 -0
- package/.spago/prelude/v6.0.1/.gitignore +8 -0
- package/.spago/st/v6.2.0/.eslintrc.json +26 -0
- package/.spago/st/v6.2.0/.gitignore +8 -0
- package/.spago/strings/v6.0.1/.eslintrc.json +26 -0
- package/.spago/strings/v6.0.1/.gitignore +8 -0
- package/.spago/tailrec/v6.1.0/.gitignore +7 -0
- package/.spago/web-html/v4.1.0/.eslintrc.json +29 -0
- package/.spago/web-html/v4.1.0/.gitignore +8 -0
- package/.spago/web-xhr/v5.0.1/.eslintrc.json +29 -0
- package/.spago/web-xhr/v5.0.1/.gitignore +8 -0
- package/dist/fluid/fluid/lib/graphics.fld +50 -50
- package/dist/fluid/fluid/lib/matrix.fld +1 -1
- package/dist/fluid/fluid/lib/prelude.fld +50 -12
- package/dist/fluid/fluid/lib/stats.fld +6 -6
- package/dist/fluid/shared/fluid.mjs +21485 -26040
- package/dist/fluid/shared/load-figure.js +30132 -29586
- package/dist/fluid/shared/webtest-lib.js +3385 -3389
- package/package.json +1 -1
- package/website/article/.DS_Store +0 -0
- package/website/article/convolution/index.html +1 -1
- package/website/article/css/styles.css +4 -0
- package/website/article/css/view-styles.css +9 -2
- package/website/article/dataset/.DS_Store +0 -0
- package/website/article/energy-scatter/index.html +1 -1
- package/website/article/fluid/1805.02474v1-10.fld +21 -21
- package/website/article/fluid/bar-chart-line-chart.fld +7 -5
- package/website/article/fluid/convolution.fld +1 -1
- package/website/article/fluid/moving-average.fld +4 -4
- package/website/article/fluid/non-renewables.fld +7 -5
- package/website/article/index.html +19 -7
- package/website/article/methane/index.html +1 -1
- package/website/article/moving-average/index.html +1 -1
- package/website/article/non-renewables/index.html +1 -1
- package/website/article/publications.html +44 -0
- package/website/article/renewables-linked/index.html +1 -1
- package/website/article/scigen-1805.02474v1-10/index.html +1 -1
- package/website/article/test.mjs +5 -5
- package/dist/fluid/fluid/lib/pi.fld +0 -1
- package/website/article/dataset/annual-temp-anomaly.json +0 -413
- package/website/article/dataset/ccra3-risks.json +0 -2015
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "eslint:recommended",
|
|
3
|
+
"parserOptions": { "ecmaVersion": 6, "sourceType": "module" },
|
|
4
|
+
"rules": {
|
|
5
|
+
"block-scoped-var": "error",
|
|
6
|
+
"consistent-return": "error",
|
|
7
|
+
"eqeqeq": "error",
|
|
8
|
+
"guard-for-in": "error",
|
|
9
|
+
"no-bitwise": "error",
|
|
10
|
+
"no-caller": "error",
|
|
11
|
+
"no-constant-condition": ["error", { "checkLoops": false }],
|
|
12
|
+
"no-extra-parens": "off",
|
|
13
|
+
"no-extend-native": "error",
|
|
14
|
+
"no-new": "error",
|
|
15
|
+
"no-param-reassign": "error",
|
|
16
|
+
"no-return-assign": "error",
|
|
17
|
+
"no-sequences": "error",
|
|
18
|
+
"no-unused-expressions": "error",
|
|
19
|
+
"no-use-before-define": "error",
|
|
20
|
+
"no-undef": "error",
|
|
21
|
+
"no-eq-null": "error",
|
|
22
|
+
"radix": ["error", "always"],
|
|
23
|
+
"indent": ["error", 2, { "SwitchCase": 0 }],
|
|
24
|
+
"quotes": ["error", "double"],
|
|
25
|
+
"semi": ["error", "always"],
|
|
26
|
+
"strict": ["error", "global"]
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"parserOptions": {
|
|
3
|
+
"ecmaVersion": 6,
|
|
4
|
+
"sourceType": "module"
|
|
5
|
+
},
|
|
6
|
+
"extends": "eslint:recommended",
|
|
7
|
+
"rules": {
|
|
8
|
+
"strict": [2, "global"],
|
|
9
|
+
"block-scoped-var": 2,
|
|
10
|
+
"consistent-return": 2,
|
|
11
|
+
"eqeqeq": [2, "smart"],
|
|
12
|
+
"guard-for-in": 2,
|
|
13
|
+
"no-caller": 2,
|
|
14
|
+
"no-extend-native": 2,
|
|
15
|
+
"no-loop-func": 2,
|
|
16
|
+
"no-new": 2,
|
|
17
|
+
"no-param-reassign": 2,
|
|
18
|
+
"no-return-assign": 2,
|
|
19
|
+
"no-unused-expressions": 2,
|
|
20
|
+
"no-use-before-define": 2,
|
|
21
|
+
"radix": [2, "always"],
|
|
22
|
+
"indent": [2, 2],
|
|
23
|
+
"quotes": [2, "double"],
|
|
24
|
+
"semi": [2, "always"]
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"parserOptions": {
|
|
3
|
+
"ecmaVersion": 6,
|
|
4
|
+
"sourceType": "module"
|
|
5
|
+
},
|
|
6
|
+
"extends": "eslint:recommended",
|
|
7
|
+
"globals": {
|
|
8
|
+
"console": true
|
|
9
|
+
},
|
|
10
|
+
"rules": {
|
|
11
|
+
"strict": [2, "global"],
|
|
12
|
+
"block-scoped-var": 2,
|
|
13
|
+
"consistent-return": 2,
|
|
14
|
+
"eqeqeq": [2, "smart"],
|
|
15
|
+
"guard-for-in": 2,
|
|
16
|
+
"no-caller": 2,
|
|
17
|
+
"no-extend-native": 2,
|
|
18
|
+
"no-loop-func": 2,
|
|
19
|
+
"no-new": 2,
|
|
20
|
+
"no-param-reassign": 2,
|
|
21
|
+
"no-return-assign": 2,
|
|
22
|
+
"no-unused-expressions": 2,
|
|
23
|
+
"no-use-before-define": 2,
|
|
24
|
+
"radix": [2, "always"],
|
|
25
|
+
"indent": [2, 2],
|
|
26
|
+
"quotes": [2, "double"],
|
|
27
|
+
"semi": [2, "always"],
|
|
28
|
+
"no-console": 0
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"parserOptions": {
|
|
3
|
+
"ecmaVersion": 6,
|
|
4
|
+
"sourceType": "module"
|
|
5
|
+
},
|
|
6
|
+
"extends": "eslint:recommended",
|
|
7
|
+
"env": {
|
|
8
|
+
"browser": true,
|
|
9
|
+
"node": true
|
|
10
|
+
},
|
|
11
|
+
"globals": {
|
|
12
|
+
"console": true
|
|
13
|
+
},
|
|
14
|
+
"rules": {
|
|
15
|
+
"strict": [2, "global"],
|
|
16
|
+
"block-scoped-var": 2,
|
|
17
|
+
"consistent-return": 2,
|
|
18
|
+
"eqeqeq": [2, "smart"],
|
|
19
|
+
"guard-for-in": 2,
|
|
20
|
+
"no-caller": 2,
|
|
21
|
+
"no-extend-native": 2,
|
|
22
|
+
"no-loop-func": 2,
|
|
23
|
+
"no-new": 2,
|
|
24
|
+
"no-param-reassign": 2,
|
|
25
|
+
"no-return-assign": 2,
|
|
26
|
+
"no-unused-expressions": 2,
|
|
27
|
+
"no-use-before-define": 2,
|
|
28
|
+
"radix": [2, "always"],
|
|
29
|
+
"indent": [2, 2],
|
|
30
|
+
"quotes": [2, "double"],
|
|
31
|
+
"semi": [2, "always"],
|
|
32
|
+
"no-console": 0,
|
|
33
|
+
"no-debugger": 0,
|
|
34
|
+
"no-empty": ["error", { "allowEmptyCatch": true }]
|
|
35
|
+
}
|
|
36
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"parserOptions": {
|
|
3
|
+
"ecmaVersion": 6,
|
|
4
|
+
"sourceType": "module"
|
|
5
|
+
},
|
|
6
|
+
"extends": "eslint:recommended",
|
|
7
|
+
"rules": {
|
|
8
|
+
"strict": [2, "global"],
|
|
9
|
+
"block-scoped-var": 2,
|
|
10
|
+
"consistent-return": 2,
|
|
11
|
+
"eqeqeq": [2, "smart"],
|
|
12
|
+
"guard-for-in": 2,
|
|
13
|
+
"no-caller": 2,
|
|
14
|
+
"no-extend-native": 2,
|
|
15
|
+
"no-loop-func": 2,
|
|
16
|
+
"no-new": 2,
|
|
17
|
+
"no-param-reassign": 2,
|
|
18
|
+
"no-return-assign": 2,
|
|
19
|
+
"no-unused-expressions": 2,
|
|
20
|
+
"no-use-before-define": 2,
|
|
21
|
+
"radix": [2, "always"],
|
|
22
|
+
"indent": [2, 2],
|
|
23
|
+
"quotes": [2, "double"],
|
|
24
|
+
"semi": [2, "always"]
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"env": { "browser": true },
|
|
3
|
+
"extends": "eslint:recommended",
|
|
4
|
+
"parserOptions": { "ecmaVersion": 6, "sourceType": "module" },
|
|
5
|
+
"rules": {
|
|
6
|
+
"block-scoped-var": "error",
|
|
7
|
+
"consistent-return": "error",
|
|
8
|
+
"eqeqeq": "error",
|
|
9
|
+
"guard-for-in": "error",
|
|
10
|
+
"no-bitwise": "error",
|
|
11
|
+
"no-caller": "error",
|
|
12
|
+
"no-constant-condition": ["error", { "checkLoops": false }],
|
|
13
|
+
"no-extra-parens": "off",
|
|
14
|
+
"no-extend-native": "error",
|
|
15
|
+
"no-loop-func": "error",
|
|
16
|
+
"no-new": "error",
|
|
17
|
+
"no-param-reassign": "error",
|
|
18
|
+
"no-return-assign": "error",
|
|
19
|
+
"no-sequences": "error",
|
|
20
|
+
"no-unused-expressions": "error",
|
|
21
|
+
"no-use-before-define": "error",
|
|
22
|
+
"no-undef": "error",
|
|
23
|
+
"no-eq-null": "error",
|
|
24
|
+
"radix": ["error", "always"],
|
|
25
|
+
"indent": ["error", 2, { "SwitchCase": 0 }],
|
|
26
|
+
"quotes": ["error", "double"],
|
|
27
|
+
"semi": ["error", "always"],
|
|
28
|
+
"strict": ["error", "global"]
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"parserOptions": {
|
|
3
|
+
"ecmaVersion": 6,
|
|
4
|
+
"sourceType": "module"
|
|
5
|
+
},
|
|
6
|
+
"extends": "eslint:recommended",
|
|
7
|
+
"rules": {
|
|
8
|
+
"strict": [2, "global"],
|
|
9
|
+
"block-scoped-var": 2,
|
|
10
|
+
"consistent-return": 2,
|
|
11
|
+
"eqeqeq": [2, "smart"],
|
|
12
|
+
"guard-for-in": 2,
|
|
13
|
+
"no-caller": 2,
|
|
14
|
+
"no-extend-native": 2,
|
|
15
|
+
"no-loop-func": 2,
|
|
16
|
+
"no-new": 2,
|
|
17
|
+
"no-param-reassign": 2,
|
|
18
|
+
"no-return-assign": 2,
|
|
19
|
+
"no-unused-expressions": 2,
|
|
20
|
+
"no-use-before-define": 2,
|
|
21
|
+
"radix": [2, "always"],
|
|
22
|
+
"indent": [2, 2],
|
|
23
|
+
"quotes": [2, "double"],
|
|
24
|
+
"semi": [2, "always"]
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"parserOptions": {
|
|
3
|
+
"ecmaVersion": 6,
|
|
4
|
+
"sourceType": "module"
|
|
5
|
+
},
|
|
6
|
+
"extends": "eslint:recommended",
|
|
7
|
+
"env": {
|
|
8
|
+
"node": true
|
|
9
|
+
},
|
|
10
|
+
"rules": {
|
|
11
|
+
"strict": [2, "global"],
|
|
12
|
+
"block-scoped-var": 2,
|
|
13
|
+
"consistent-return": 2,
|
|
14
|
+
"eqeqeq": [2, "smart"],
|
|
15
|
+
"guard-for-in": 2,
|
|
16
|
+
"no-caller": 2,
|
|
17
|
+
"no-extend-native": 2,
|
|
18
|
+
"no-loop-func": 2,
|
|
19
|
+
"no-new": 2,
|
|
20
|
+
"no-param-reassign": 2,
|
|
21
|
+
"no-return-assign": 2,
|
|
22
|
+
"no-unused-expressions": 2,
|
|
23
|
+
"no-use-before-define": 2,
|
|
24
|
+
"radix": [2, "always"],
|
|
25
|
+
"indent": [2, 2],
|
|
26
|
+
"quotes": [2, "double"],
|
|
27
|
+
"semi": [2, "always"]
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"parserOptions": {
|
|
3
|
+
"ecmaVersion": 6,
|
|
4
|
+
"sourceType": "module"
|
|
5
|
+
},
|
|
6
|
+
"extends": "eslint:recommended",
|
|
7
|
+
"env": {
|
|
8
|
+
"node": true
|
|
9
|
+
},
|
|
10
|
+
"rules": {
|
|
11
|
+
"strict": [2, "global"],
|
|
12
|
+
"block-scoped-var": 2,
|
|
13
|
+
"consistent-return": 2,
|
|
14
|
+
"eqeqeq": [2, "smart"],
|
|
15
|
+
"guard-for-in": 2,
|
|
16
|
+
"no-caller": 2,
|
|
17
|
+
"no-extend-native": 2,
|
|
18
|
+
"no-loop-func": 2,
|
|
19
|
+
"no-new": 2,
|
|
20
|
+
"no-param-reassign": 2,
|
|
21
|
+
"no-return-assign": 2,
|
|
22
|
+
"no-unused-expressions": 2,
|
|
23
|
+
"no-use-before-define": 2,
|
|
24
|
+
"radix": [2, "always"],
|
|
25
|
+
"indent": [2, 2],
|
|
26
|
+
"quotes": [2, "double"],
|
|
27
|
+
"semi": [2, "always"]
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
package-lock=false
|