Skip to content

Commit

Permalink
package 30.01.24
Browse files Browse the repository at this point in the history
  • Loading branch information
akoreman committed Jan 30, 2024
1 parent 17e5a32 commit 6f628d5
Show file tree
Hide file tree
Showing 29 changed files with 36 additions and 26 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,8 @@

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.

### [1.32.5](https://github.com/ajaxorg/ace/compare/v1.32.4...v1.32.5) (2024-01-30)

### [1.32.4](https://github.com/ajaxorg/ace/compare/v1.32.3...v1.32.4) (2024-01-29)


Expand Down
4 changes: 4 additions & 0 deletions css/theme/cloud_editor.css
Expand Up @@ -181,6 +181,10 @@
.ace-cloud_editor .ace_tooltip.ace_hover-tooltip:focus > div {
outline: 1px solid #0073bb;
}
.ace-cloud_editor .ace_snippet-marker {
background-color: #CED6E0;
border: 0;
}

.ace-cloud_editor.ace_editor.ace_autocomplete .ace_marker-layer .ace_active-line {
background-color: #f2f3f3;
Expand Down
4 changes: 4 additions & 0 deletions css/theme/cloud_editor_dark.css
Expand Up @@ -184,6 +184,10 @@
.ace-cloud_editor_dark .ace_tooltip.ace_hover-tooltip:focus > div {
outline: 1px solid #44b9d6;
}
.ace-cloud_editor_dark .ace_snippet-marker {
background-color: #434650;
border: 0;
}

.ace-cloud_editor_dark.ace_dark.ace_editor.ace_autocomplete .ace_marker-layer .ace_active-line {
background-color: #272A30;
Expand Down
2 changes: 1 addition & 1 deletion demo/kitchen-sink/demo.js
Expand Up @@ -4337,7 +4337,7 @@ var AcePopup = /** @class */ (function () {
el.setAttribute("aria-activedescendant", ariaId);
selected.setAttribute("role", optionAriaRole);
selected.setAttribute("aria-roledescription", nls("item"));
selected.setAttribute("aria-label", popup.getData(row).value);
selected.setAttribute("aria-label", popup.getData(row).caption || popup.getData(row).value);
selected.setAttribute("aria-setsize", popup.data.length);
selected.setAttribute("aria-posinset", row + 1);
selected.setAttribute("aria-describedby", "doc-tooltip");
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"name": "ace-builds",
"main": "./src-noconflict/ace.js",
"typings": "ace.d.ts",
"version": "1.32.4",
"version": "1.32.5",
"description": "Ace (Ajax.org Cloud9 Editor)",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
Expand Down
2 changes: 1 addition & 1 deletion src-min-noconflict/ace.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min-noconflict/ext-inline_autocomplete.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min-noconflict/ext-language_tools.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min-noconflict/ext-prompt.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min-noconflict/theme-cloud_editor.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6f628d5

Please sign in to comment.