B.Melnik
79769c165e
feat(StatusSpellcheckingMenuItems): Add spellchecking menu
...
Closes : #398
2022-09-21 18:20:05 +02:00
Pascal Precht
dc96cf04a9
fix(StatusModal): don't reserve header subtitle space
...
Closes #378
2022-09-21 18:20:03 +02:00
Khushboo Mehta
9bb00e43a2
feat(StatusModal): Add popup menu support for StatusModal
...
Added logic to support a popup menu to be launched from the StatusModal header.
Added an example in sandbox to demonstrate its usage.
fixes #374
2022-09-21 18:20:03 +02:00
B.Melnik
cd72ef5f38
refactor(StatusModal): Remove custom content property
...
BREAKING CHANGES:
- `content` property removed
- `Loader` inside StatusModal removed
- default `contentItem` property should be used now
Closes : #306
2022-09-21 18:20:03 +02:00
Pascal Precht
7cf893113b
feat(StatusModal): add ability to set elide config of header titles
...
There are now two new properties in `StatusModalHeaderSettings`:
- `titleElide`
- `subTitleElide`
These can be used to configure the `elide` property of both header titles.
The default values for both of them is `Text.ElideRight`.
Closes #353
2022-09-21 18:20:03 +02:00
Pascal Precht
4c5b8a79d6
fix(StatusModal): ensure header and subtitles elide if needed
...
Closes #256
2022-09-21 18:20:03 +02:00
Pascal Precht
97dbebc8aa
feat(StatusModal): introduce support for identicons and letter identicons
...
Usage:
```qml
StatusModal {
header.image.isIdenticon: ...
// or
header.icon.isLetterIdenticon: ...
header.icon.background.color: ...
}
```
Closes #269
2022-09-21 18:20:03 +02:00
Pascal Precht
12b35ba88c
feat(StatusModal): expose loaded content
...
As discussed in #237 , this is needed for consumers to access content
children from outside `content`.
Usage:
```qml
StatusModal {
id: modal
content: StatusBaseText {
text: "Foo"
}
rightButtons: [
StatusButton {
text: "Change text"
onClicked: {
modal.contentComponent.text = "Bar"
}
}
]
}
```
Fixes #237
2022-09-21 18:20:03 +02:00
B.Melnik
eab95c1c7b
feat(Popups): Add StatusModal
2022-09-21 18:20:02 +02:00