mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-27 02:41:53 +00:00
* begin subnav implementation * implement subnav AND angular forms for comparison * unions working-ish, list of enums working * new form approach almost complete * finish new forms approach for action inputs and config * expandable list items and handlebars display * Config animation (#394) * config cammel * config animation Co-authored-by: Drew Ansbacher <drew.ansbacher@spiredigital.com> * improve server settings inputs, still needs work * delete all notifications, styling, and bugs * contracted by default Co-authored-by: Drew Ansbacher <drew.ansbacher@gmail.com> Co-authored-by: Drew Ansbacher <drew.ansbacher@spiredigital.com>
11 lines
420 B
HTML
11 lines
420 B
HTML
<ion-item-group>
|
|
<object-config-item
|
|
*ngFor="let keyval of (spec.type === 'object' ? spec.spec : spec.variants[value[spec.tag.id]]) | keyvalue: asIsOrder"
|
|
[key]="keyval.key"
|
|
[spec]="keyval.value"
|
|
[value]="value[keyval.key]"
|
|
[anno]="annotations.members[keyval.key]"
|
|
(onClick)="handleClick(keyval.key)"
|
|
[class.add-margin]="keyval.key === 'advanced'"
|
|
></object-config-item>
|
|
</ion-item-group> |