Start working on the dialog to make a new table

This commit is contained in:
Oliver-Akins 2025-04-30 22:51:03 -06:00
parent 46a9d46e9a
commit a3900a6c7c
8 changed files with 186 additions and 5 deletions

View file

@ -0,0 +1,30 @@
<div class="group">
<label for="{{meta.idp}}-name">
Name
</label>
<input
id="{{meta.idp}}-name"
type="text"
value="{{ name }}"
data-bind="_name"
>
</div>
<div class="group">
<label for="{{meta.idp}}-type">
Type
</label>
<select
id="{{meta.idp}}-type"
data-bind="_type"
>
{{ st-options type types }}
</select>
</div>
<button
type="button"
data-action="createTable"
>
Create Table
</button>