@explorable-viz/fluid 0.9.5 → 0.9.7
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
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@explorable-viz/fluid",
|
3
|
-
"version": "0.9.
|
3
|
+
"version": "0.9.7",
|
4
4
|
"description": "A functional programming language which integrates a bidirectional dynamic analysis, connecting outputs to data sources in a fine-grained way. Fluid is implemented in PureScript and runs in the browser.",
|
5
5
|
"main": "index.js",
|
6
6
|
"repository": {
|
@@ -11,15 +11,5 @@ if [ -e "website/$WEBSITE" ]; then
|
|
11
11
|
exit 1
|
12
12
|
fi
|
13
13
|
|
14
|
-
if [ -e "website/$WEBSITE" ]; then
|
15
|
-
echo "Error: $NPM_ROOT/website/$WEBSITE does not exist" >&2
|
16
|
-
exit 1
|
17
|
-
fi
|
18
|
-
|
19
14
|
mkdir -p website/$WEBSITE
|
20
|
-
cp -r $NPM_ROOT/website/{css,font,shared} website
|
21
15
|
cp -r $NPM_ROOT/website/$1 website
|
22
|
-
|
23
|
-
ln -s website/css website/$WEBSITE/css
|
24
|
-
ln -s website/font website/$WEBSITE/font
|
25
|
-
ln -s website/shared website/$WEBSITE/shared
|
@@ -8,6 +8,7 @@
|
|
8
8
|
<title>Fluid Article Examples</title>
|
9
9
|
<link href="../css/styles.css" rel="stylesheet" type="text/css">
|
10
10
|
<link href="../css/view-styles.css" rel="stylesheet" type="text/css">
|
11
|
+
<script src="../shared/util.js"></script>
|
11
12
|
<script src="https://kit.fontawesome.com/20cf8b42c0.js" crossorigin="anonymous"></script>
|
12
13
|
<style>
|
13
14
|
.grid-container, .grid-container.data-pane-hidden {
|
@@ -8,6 +8,7 @@
|
|
8
8
|
<title>Fluid: Data-Linked Visualisations</title>
|
9
9
|
<link href="../css/styles.css" rel="stylesheet" type="text/css">
|
10
10
|
<link href="../css/view-styles.css" rel="stylesheet" type="text/css">
|
11
|
+
<script src="../shared/util.js"></script>
|
11
12
|
<script src="https://kit.fontawesome.com/20cf8b42c0.js" crossorigin="anonymous"></script>
|
12
13
|
<style>
|
13
14
|
:root {
|
@@ -8,6 +8,7 @@
|
|
8
8
|
<title>Fluid: Data-Linked Visualisations</title>
|
9
9
|
<link href="../css/styles.css" rel="stylesheet" type="text/css">
|
10
10
|
<link href="../css/view-styles.css" rel="stylesheet" type="text/css">
|
11
|
+
<script src="../shared/util.js"></script>
|
11
12
|
<script src="https://kit.fontawesome.com/20cf8b42c0.js" crossorigin="anonymous"></script>
|
12
13
|
<style>
|
13
14
|
.data-pane {
|