Skip to content

Commit

Permalink
update build
Browse files Browse the repository at this point in the history
  • Loading branch information
DougAnderson444 committed Jul 1, 2024
1 parent 0799f5b commit 79db096
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions crates/seed-keeper-wit-ui/output.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,16 @@
border-width: 1px
}

.border-amber-500 {
--tw-border-opacity: 1;
border-color: rgb(245 158 11 / var(--tw-border-opacity))
}

.border-blue-400 {
--tw-border-opacity: 1;
border-color: rgb(96 165 250 / var(--tw-border-opacity))
}

.bg-amber-50 {
--tw-bg-opacity: 1;
background-color: rgb(255 251 235 / var(--tw-bg-opacity))
}

.bg-blue-100 {
--tw-bg-opacity: 1;
background-color: rgb(219 234 254 / var(--tw-bg-opacity))
Expand Down
Binary file modified examples/aggregate.wasm
Binary file not shown.
4 changes: 1 addition & 3 deletions examples/sveltekit/src/lib/Aggregate.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,7 @@
// 119, 144, 218, 99
// ])
},
load: JSON.stringify({
encrypted: [42, 69, 69]
}),
load: null,
output: null
}
},
Expand Down
2 changes: 1 addition & 1 deletion examples/sveltekit/src/lib/Calculator.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import * as wurbo from 'wurbo';
// Import wasm component bytes as a url
import wasmURL from '../../../composed-calculator.wasm?url';
// import wasmURL from '../../../composed-calculator.wasm?url';
// get imports from +page.svelte
export let importables;
Expand Down
3 changes: 2 additions & 1 deletion examples/sveltekit/src/lib/Edwards.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
import * as wurbo from 'wurbo';
// Import wasm component bytes as a url
import wasmURL from '../../../edwards-only.wasm?url';
// TODO: Compose seed keepe rand edwards only into one component:
// import wasmURL from '../../../edwards-only.wasm?url';
// get imports from +page.svelte
export let importables;
Expand Down
5 changes: 3 additions & 2 deletions examples/sveltekit/src/lib/Seed.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import * as wurbo from 'wurbo';
// Import wasm component bytes as a url
import wasmURL from '../../../composed-wallet.wasm?url';
// import wasmURL from '../../../composed-wallet.wasm?url';
// get imports from +page.svelte
export let importables;
Expand Down Expand Up @@ -51,7 +51,8 @@
tag: 'all-content',
val: {
page: { title: "Let's generate a seed, and encrypt it with a username and password." },
input: { placeholder: 'Enter a Username here' }
input: { placeholder: 'Enter a Username here' },
load: { encrypted: 'SomeEncryptedBase64String' }
}
};
renderedHTML = mod.wurboOut.render(data);
Expand Down

0 comments on commit 79db096

Please sign in to comment.