-
Notifications
You must be signed in to change notification settings - Fork 126
feat(desktop-ui): refactor to standalone/signal, update angular to v20, new docs #657
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…fixed and improved its documentation on the website
docs released at https://deepkit.io/documentation/desktop-ui/getting-started |
<dui-style /> | ||
<dui-window normalize-style> | ||
<dui-window-header size="small"> | ||
<dui-window-toolbar> | ||
<deepkit-header-logo title="API Console"></deepkit-header-logo> | ||
|
||
<dui-window-toolbar-container name="main"></dui-window-toolbar-container> | ||
<div class="top-right"> | ||
<div> | ||
<a routerLink="/api">OVERVIEW</a> | ||
</div> | ||
<deepkit-header-status-bar></deepkit-header-status-bar> | ||
</div> | ||
</dui-window-toolbar> | ||
</dui-window-header> | ||
<dui-window-content [sidebarVisible]="sidebarVisible" class="no-padding"> | ||
<router-outlet></router-outlet> | ||
</dui-window-content> | ||
</dui-window> | ||
<dui-window-toolbar-container name="main"></dui-window-toolbar-container> | ||
<div class="top-right"> | ||
<div> | ||
<a routerLink="/api">OVERVIEW</a> | ||
</div> | ||
<deepkit-header-status-bar [client]="client.client"></deepkit-header-status-bar> | ||
</div> | ||
</dui-window-toolbar> | ||
</dui-window-header> | ||
<dui-window-content [sidebarVisible]="sidebarVisible" class="no-padding"> | ||
<router-outlet></router-outlet> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I encourage consistent convention for self-closing tags:
- uses self-closing
- , , and use open/closing tags convention
entryPoints = new LiveSubject<ApiEntryPoints>((subject) => { | ||
this.api.getEntryPoints().then(v => subject.next(v)); | ||
}); | ||
|
||
public document = new LiveSubject<ApiDocument>((subject) => { | ||
document = new LiveSubject<ApiDocument>((subject) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i'm pretty sure subjects are meant to be readonly in 99% of cases :)
Updated all angular code to v20, @deepkit/desktop-ui is now standalone/signal based.