Skip to content

Commit e74e4b9

Browse files
committed
package 15.09.23
1 parent 01d38a6 commit e74e4b9

23 files changed

+173
-17
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [1.26.0](https://github.com/ajaxorg/ace/compare/v1.25.1...v1.26.0) (2023-09-15)
6+
7+
8+
### Features
9+
10+
* Allow to set setSelectOnHover for Autocomplete ([#5317](https://github.com/ajaxorg/ace/issues/5317)) ([dccbcc2](https://github.com/ajaxorg/ace/commit/dccbcc20288a48403f10aa29b6b9b6181dc8a66f))
11+
12+
13+
### Bug Fixes
14+
15+
* Improve PRQL syntax highlightning ([#5313](https://github.com/ajaxorg/ace/issues/5313)) ([7d677f1](https://github.com/ajaxorg/ace/commit/7d677f1019ea5c81f3d9ae36ed1e71ac7a08fb30))
16+
517
### [1.25.1](https://github.com/ajaxorg/ace/compare/v1.25.0...v1.25.1) (2023-09-14)
618

719
## [1.25.0](https://github.com/ajaxorg/ace/compare/v1.24.2...v1.25.0) (2023-09-14)

demo/kitchen-sink/demo.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5653,6 +5653,7 @@ var Autocomplete = /** @class */ (function () {
56535653
this.keyboardHandler = new HashHandler();
56545654
this.keyboardHandler.bindKeys(this.commands);
56555655
this.parentNode = null;
5656+
this.setSelectOnHover = false;
56565657
this.blurListener = this.blurListener.bind(this);
56575658
this.changeListener = this.changeListener.bind(this);
56585659
this.mousedownListener = this.mousedownListener.bind(this);
@@ -5764,6 +5765,7 @@ var Autocomplete = /** @class */ (function () {
57645765
if (this.inlineEnabled && !this.inlineRenderer)
57655766
this.$initInline();
57665767
this.popup.autoSelect = this.autoSelect;
5768+
this.popup.setSelectOnHover(this.setSelectOnHover);
57675769
this.popup.setData(this.completions.filtered, this.completions.filterText);
57685770
if (this.editor.textInput.setAriaOptions) {
57695771
this.editor.textInput.setAriaOptions({

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "ace-builds",
33
"main": "./src-noconflict/ace.js",
44
"typings": "ace.d.ts",
5-
"version": "1.25.1",
5+
"version": "1.26.0",
66
"description": "Ace (Ajax.org Cloud9 Editor)",
77
"scripts": {
88
"test": "echo \"Error: no test specified\" && exit 1"

src-min-noconflict/ace.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-min-noconflict/ext-inline_autocomplete.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-min-noconflict/ext-language_tools.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-min-noconflict/ext-prompt.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-min-noconflict/mode-prql.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-min/ace.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-min/ext-inline_autocomplete.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)