status-qml/sandbox
Pascal Precht 6327566889 feat(Components): introduce StatusNavigationListItem
This introduces the `StatusNavigationListItem` that can be used to render
menu navigation items in secondary panels, such as the profile panel.

Usage:

```
import StatusQ.Components 0.1

StatusNavigationListItem {
    title: "Menu Item"
}

StatusNavigationListItem {
    title: "Menu Item"
    icon.name: "info"
}

StatusNavigationListItem {
    title: "Menu Item"
    icon.name: "info"
    badge.value: 1
}
StatusNavigationListItem {
    title: "Menu Item (selected)"
    selected: true
    icon.name: "info"
    badge.value: 1
}
```

Closes #72
2021-05-26 10:28:04 +02:00
..
Buttons.qml refactor(Controls): make use of newly introduced StatusIconSettings in button controls 2021-05-25 14:10:56 +02:00
Controls.qml feat(StatusIconTabButton): introduce image loading state and fallback 2021-05-21 10:17:53 +02:00
Icons.qml feat: Set up catalog app (sandbox) 2021-05-05 07:55:43 +02:00
Layout.qml refactor(sandbox): rely on global `Theme` instead of theme prop 2021-05-21 10:14:03 +02:00
ListItems.qml feat(Components): introduce StatusNavigationListItem 2021-05-26 10:28:04 +02:00
Others.qml feat(Components): introduce `StatusRoundIcon` component 2021-05-25 12:23:47 +02:00
handler.cpp feat: Set up catalog app (sandbox) 2021-05-05 07:55:43 +02:00
handler.h feat: Set up catalog app (sandbox) 2021-05-05 07:55:43 +02:00
main.cpp feat: Set up catalog app (sandbox) 2021-05-05 07:55:43 +02:00
main.qml feat(Components): introduce `StatusListItem` component 2021-05-25 13:52:25 +02:00
qml.qrc feat:Add buttons components 2021-05-19 10:43:14 +02:00
sandbox.pro chore: add StatusCheckBox 2021-05-20 11:17:52 +02:00
sandboxapp.cpp fix: fix crash on removing title bar 2021-05-20 10:48:51 +02:00
sandboxapp.h fix: fix crash on removing title bar 2021-05-20 10:48:51 +02:00
statuswindow.h fix: fix crash on removing title bar 2021-05-20 10:48:51 +02:00
statuswindow_mac.mm fix: fix crash on removing title bar 2021-05-20 10:48:51 +02:00