Added new models. Major changes to the table widget. Still has problems with the editing in the table widget.
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user