Added support for friendly names and thumbnails in theme, layout, and container components. Added fallback support during loading for themes, layout, and containers.
This commit is contained in:
@ -12,4 +12,8 @@
|
||||
<ModuleInstance />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@code {
|
||||
public override string Name => "Standard Header";
|
||||
}
|
@ -17,6 +17,8 @@
|
||||
</main>
|
||||
|
||||
@code {
|
||||
public override string Name => "Default";
|
||||
|
||||
public override string Panes => string.Empty;
|
||||
|
||||
public override List<Resource> Resources => new List<Resource>()
|
||||
|
@ -14,5 +14,7 @@
|
||||
</div>
|
||||
|
||||
@code {
|
||||
public override string Panes => "Top;Left;Content;Right;Bottom";
|
||||
public override string Name => "Multiple Panes";
|
||||
|
||||
public override string Panes => "Top,Left,Content,Right,Bottom";
|
||||
}
|
@ -6,4 +6,8 @@
|
||||
<ModuleActions />
|
||||
}
|
||||
<ModuleInstance />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@code {
|
||||
public override string Name => "No Header";
|
||||
}
|
@ -6,5 +6,7 @@
|
||||
</div>
|
||||
|
||||
@code {
|
||||
public override string Name => "Single Pane";
|
||||
|
||||
public override string Panes => "Content";
|
||||
}
|
Reference in New Issue
Block a user