Skip to content

Commit

Permalink
fix #869 silently setting select doesn't pass notification to dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
vegegoku committed Oct 30, 2023
1 parent 17bb1ce commit d506454
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
![logoimage](https://raw.githubusercontent.com/DominoKit/DominoKit.github.io/master/logo/128.png)

<a title="Gitter" href="https://gitter.im/DominoKit/domino"><img src="https://badges.gitter.im/Join%20Chat.svg"></a>
<a title="Element" href="https://matrix.to/#/!togTvnNghqSNrVUADf:gitter.im/$7O8oKWAuTu2r0KolsY73ee6SrV-fu8uxzudbz_aG95w?via=gitter.im&via=matrix.org&via=t2bot.io"><img src="https://badges.gitter.im/Join%20Chat.svg"></a>
[![Development Build Status](https://github.com/DominoKit/domino-ui/actions/workflows/deploy.yaml/badge.svg?branch=development)](https://github.com/DominoKit/domino-ui/actions/workflows/deploy.yaml/badge.svg?branch=development)
![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.dominokit/domino-ui/badge.svg)
![Sonatype Nexus (Snapshots)](https://img.shields.io/badge/Snapshot-HEAD--SNAPSHOT-orange)
![GWT3/J2CL compatible](https://img.shields.io/badge/GWT3/J2CL-compatible-brightgreen.svg)

# Domino-ui
A type safe material design with bootstrap builder for java developer with GWT without dependencies on external JavaScript.
type safe and feature rich UI components library for java developer utilizing fluent API and does not depend on external JavaScript.

Checkout our [getting started guide](https://github.com/DominoKit/domino-ui/wiki/Getting-started)

and checkout our [demo app](https://demo.dominokit.org/home)
Check the [introduction](https://dominokit.com/solutions/domino-ui/v2)
Checkout the [getting started guide](https://dominokit.com/solutions/domino-ui/v2/docs/getting-started)
Checkout our [demo app](https://dominokit.com/domino-ui/demo/v2/home)

### Quick insight

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,9 @@ protected void doSetOption(SelectOption<V> option) {
this.selectedOptions = new HashSet<>();
}
this.selectedOptions.add(option);
if (nonNull(option)) {
optionsMenu.select(option.getMenuItem(), true);
}
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
* @see TakesValue
* @see LeafValueEditor
* @see HasValue
* @see RichTextCommand
* @see BaseDominoElement
*/
public class RichTextEditor extends BaseDominoElement<HTMLDivElement, RichTextEditor>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
height: var(--dui-spc-full);
width: 100%;
outline-width: var(--dui-spc-0);
flex-grow: 1;
}

.dui-rich-text-toolbars {
Expand Down

0 comments on commit d506454

Please sign in to comment.