blob: 2f3e4a053c20f6c42b8fe95aae47653ed7dca897 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
<app-header></app-header>
<div class="alert-dark" style="padding: 100px">
<div>
<label>mode</label>
<label name="trst" *ngFor="let mode of modes; let i = index">
<input type="checkbox" value={{mode}} [(ngModel)]="metaDataTab.mode">
{{mode}}
</label>
<br>
<label>dictionary Library Instances</label>
<label>
<select name="cars">
<option value="audi"
*ngFor="let dictionaryLibraryInstance of dictionaryLibraryInstances; let i = index">{{dictionaryLibraryInstance}}</option>
</select>
</label>
</div>
<div>
<label>Name</label>
<label>
<input type="input" (input)="searchPackages($event)" [(ngModel)]="metaDataTab.name">
</label>
<br>
<label>Description</label>
<label>
<input type="input">
</label>
<br>
<label>Version</label>
<label>
<input type="input">
</label>
<br>
<label>tags</label>
<label>
<input type="input">
</label>
<br>
</div>
<div>
<div name="custom key">
<button (click)="createAnotherCustomKeyDiv()"></button>
<div id="target"></div>
</div>
</div>
</div>
|