Added new models. Major changes to the table widget. Still has problems with the editing in the table widget.

This commit is contained in:
2022-06-13 07:42:26 -07:00
parent 11fbfcfac0
commit 69ca0d5eb6
15 changed files with 417 additions and 16578 deletions

View File

@@ -51,6 +51,9 @@
import ChromebookScan from './ChromebookScan.svelte';
import {Meteor} from "meteor/meteor";
import TextField from '@smui/textfield';
import HelperText from '@smui/textfield/helper-text';
import Icon from '@smui/textfield/icon';
import { Icon as CommonIcon } from '@smui/common';
$: serialInput = null;
$: emailInput = null;
@@ -150,7 +153,12 @@
<ul>
<li>
<TextField type="text" bind:value={emailInput} label="Email">
<TextField type="text" bind:value={emailInput} on:keypress={(e) => {if(e.keyCode === 13) emailSearch()}} label="Email">
<svelte:fragment slot="label">
<CommonIcon class="material-icons" style="font-size: 1em; line-height: normal; vertical-align: top;">email</CommonIcon> Email
</svelte:fragment>
<Icon class="material-icons" slot="trailingIcon">search</Icon>
<HelperText slot="helper">Type any part of an email address.</HelperText>
</TextField>
</li>
<li>