Spaces:
Sleeping
Sleeping
Michelle Lam
commited on
Commit
·
f769ab1
1
Parent(s):
1882b75
Style fixes to align local and production versions
Browse files- indie_label_svelte/package-lock.json +1 -1
- indie_label_svelte/package.json +4 -4
- indie_label_svelte/public/bundle.css +0 -0
- indie_label_svelte/public/index.html +1 -4
- indie_label_svelte/rollup.config.js +0 -1
- indie_label_svelte/src/HypothesisPanel.svelte +1 -1
- indie_label_svelte/src/OverallResults.svelte +0 -3
indie_label_svelte/package-lock.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
{
|
| 2 |
-
"name": "
|
| 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": "
|
| 3 |
"version": "0.0.0",
|
| 4 |
-
"author": "
|
| 5 |
-
"repository": "[email protected]:
|
| 6 |
"bugs": {
|
| 7 |
-
"url": "https://github.com/
|
| 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": "[email protected]: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='/
|
| 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/[email protected]/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.js
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
|
| 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 |
|