carolmanderson commited on
Commit
76e9c57
2 Parent(s): 5fdeeff f769ab1

Merge remote-tracking branch 'upstream/main' into docker-hf

Browse files
indie_label_svelte/package-lock.json CHANGED
@@ -1,5 +1,5 @@
1
  {
2
- "name": "svelte-vega-sample",
3
  "version": "0.0.0",
4
  "lockfileVersion": 1,
5
  "requires": true,
 
1
  {
2
+ "name": "indie-label",
3
  "version": "0.0.0",
4
  "lockfileVersion": 1,
5
  "requires": true,
indie_label_svelte/package.json CHANGED
@@ -1,10 +1,10 @@
1
  {
2
- "name": "svelte-vega-sample",
3
  "version": "0.0.0",
4
- "author": "Alex Bäuerle <bauerlealex@gmail.com> (https://a13x.io)",
5
- "repository": "git@github.com:vega/svelte-vega.git",
6
  "bugs": {
7
- "url": "https://github.com/vega/svelte-vega/issues"
8
  },
9
  "private": true,
10
  "scripts": {
 
1
  {
2
+ "name": "indie-label",
3
  "version": "0.0.0",
4
+ "author": "Michelle Lam <michelle123lam@gmail.com> (http://michelle123lam.github.io)",
5
+ "repository": "git@github.com:StanfordHCI/indie-label.git",
6
  "bugs": {
7
+ "url": "https://github.com/StanfordHCI/indie-label/issues"
8
  },
9
  "private": true,
10
  "scripts": {
indie_label_svelte/public/bundle.css ADDED
The diff for this file is too large to render. See raw diff
 
indie_label_svelte/public/index.html CHANGED
@@ -9,10 +9,7 @@
9
 
10
  <link rel='icon' type='image/png' href='/favicon.png'>
11
  <link rel='stylesheet' href='/global.css'>
12
- <link rel='stylesheet' href='/build/bundle.css'>
13
- <link rel='stylesheet' href='/build/extra.css'>
14
- <!-- <link rel="stylesheet" href="../node_modules/svelte-material-ui/bare.css" /> -->
15
- <!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/svelte-material-ui@5.0.0/bare.min.css" /> -->
16
  <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
17
 
18
  <link
 
9
 
10
  <link rel='icon' type='image/png' href='/favicon.png'>
11
  <link rel='stylesheet' href='/global.css'>
12
+ <link rel='stylesheet' href='/bundle.css'>
 
 
 
13
  <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
14
 
15
  <link
indie_label_svelte/rollup.config.mjs CHANGED
@@ -51,7 +51,6 @@ export default {
51
  // we'll extract any component CSS out into
52
  // a separate file - better for performance
53
  css({ output: "bundle.css" }),
54
- // css({ output: 'public/build/extra.css' }),
55
 
56
  // If you have external dependencies installed from
57
  // npm, you'll most likely need these plugins. In
 
51
  // we'll extract any component CSS out into
52
  // a separate file - better for performance
53
  css({ output: "bundle.css" }),
 
54
 
55
  // If you have external dependencies installed from
56
  // npm, you'll most likely need these plugins. In
indie_label_svelte/src/HypothesisPanel.svelte CHANGED
@@ -483,7 +483,7 @@
483
  variant="outlined"
484
  color="secondary"
485
  >
486
- <Label>Send Reports</Label>
487
  </Button>
488
 
489
  <div>
 
483
  variant="outlined"
484
  color="secondary"
485
  >
486
+ <Label>Send to AVID</Label>
487
  </Button>
488
 
489
  <div>
indie_label_svelte/src/OverallResults.svelte CHANGED
@@ -7,9 +7,6 @@
7
  import Card, { Content } from '@smui/card';
8
 
9
  export let data;
10
- export let clusters;
11
- export let personalized_model;
12
- export let cluster = "";
13
 
14
  let show_step1_info = false;
15
 
 
7
  import Card, { Content } from '@smui/card';
8
 
9
  export let data;
 
 
 
10
 
11
  let show_step1_info = false;
12