Skip to content

Commit

Permalink
package 30.11.23
Browse files Browse the repository at this point in the history
  • Loading branch information
akoreman committed Nov 30, 2023
1 parent 169e07e commit f336306
Show file tree
Hide file tree
Showing 98 changed files with 1,056 additions and 343 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,21 @@

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.0](https://github.com/ajaxorg/ace/compare/v1.31.2...v1.32.0) (2023-11-30)


### Features

* adding CloudEditor theme ([#5404](https://github.com/ajaxorg/ace/issues/5404)) ([b0ee067](https://github.com/ajaxorg/ace/commit/b0ee067fadaf9593ed2207f363a402eb9ab8d57a))


### Bug Fixes

* autocomplete tests ([#5407](https://github.com/ajaxorg/ace/issues/5407)) ([cf6999d](https://github.com/ajaxorg/ace/commit/cf6999d9cb4103df16dc38a8cbfd40ab2a999e6d))
* set completion popup role to 'menu' for safari ([6845905](https://github.com/ajaxorg/ace/commit/684590546746fa2ef090c10c140e01e43974d8f4))
* stop rendering the completion popup disconnected from the editor for long ghost text ([#5401](https://github.com/ajaxorg/ace/issues/5401)) ([94d68a7](https://github.com/ajaxorg/ace/commit/94d68a73042c61a786d253fd0838e62cc5770a31))
* try to scroll inline preview into view ([#5400](https://github.com/ajaxorg/ace/issues/5400)) ([95af560](https://github.com/ajaxorg/ace/commit/95af5608b655259d12cdbc4ca28cf450f9e649c7))

### [1.31.2](https://github.com/ajaxorg/ace/compare/v1.31.1...v1.31.2) (2023-11-15)


Expand Down
2 changes: 2 additions & 0 deletions ace-modules.d.ts
Expand Up @@ -224,6 +224,8 @@ declare module 'ace-builds/src-noconflict/theme-chrome';
declare module 'ace-builds/src-noconflict/theme-cloud9_day';
declare module 'ace-builds/src-noconflict/theme-cloud9_night';
declare module 'ace-builds/src-noconflict/theme-cloud9_night_low_color';
declare module 'ace-builds/src-noconflict/theme-cloud_editor';
declare module 'ace-builds/src-noconflict/theme-cloud_editor_dark';
declare module 'ace-builds/src-noconflict/theme-clouds';
declare module 'ace-builds/src-noconflict/theme-clouds_midnight';
declare module 'ace-builds/src-noconflict/theme-cobalt';
Expand Down
2 changes: 2 additions & 0 deletions ace.d.ts
Expand Up @@ -1015,6 +1015,8 @@ export namespace Ace {
prefix: string,
callback: CompleterCallback): void;
getDocTooltip?(item: Completion): undefined | string | Completion;
onSeen?: (editor: Ace.Editor, completion: Completion) => void;
onInsert?: (editor: Ace.Editor, completion: Completion) => void;
cancel?(): void;
id?: string;
triggerCharacters?: string[];
Expand Down
7 changes: 6 additions & 1 deletion css/ace.css
Expand Up @@ -421,13 +421,18 @@ position: fixed;
z-index: 999999;
box-sizing: border-box;
cursor: default;
white-space: pre;
white-space: pre-wrap;
word-wrap: break-word;
line-height: normal;
font-style: normal;
font-weight: normal;
letter-spacing: normal;
pointer-events: none;
overflow: auto;
max-width: min(60em, 66vw);
}
.ace_tooltip pre {
white-space: pre-wrap;
}
.ace_tooltip.ace_dark {
background-color: #636363;
Expand Down
184 changes: 184 additions & 0 deletions css/theme/cloud_editor.css
@@ -0,0 +1,184 @@

.ace-cloud_editor .ace_gutter {
background: #ffffff;
color: #3a3a42;
}

.ace-cloud_editor .ace_tooltip-marker-error.ace_tooltip-marker {
background-color: #d13212;
}
.ace-cloud_editor .ace_tooltip-marker-warning.ace_tooltip-marker {
background-color: #906806;
}

.ace-cloud_editor .ace_print-margin {
width: 1px;
background: #697077;
}

.ace-cloud_editor {
background-color: #ffffff;
color: #3a3a42;
}

.ace-cloud_editor .ace_cursor {
color: #3a3a42;
}

.ace-cloud_editor .ace_marker-layer .ace_selection {
background: #bfceff;
}

.ace-cloud_editor.ace_multiselect .ace_selection.ace_start {
box-shadow: 0 0 3px 0px #ffffff;
border-radius: 2px;
}

.ace-cloud_editor .ace_marker-layer .ace_step {
background: #697077;
}

.ace-cloud_editor .ace_marker-layer .ace_bracket {
margin: 0 0 0 -1px;
border: 1px solid #697077;
}

.ace-cloud_editor .ace_marker-layer .ace_active-line {
box-sizing: border-box;
border-top: 1px solid #9191ac;
border-bottom: 1px solid #9191ac;
}

.ace-cloud_editor .ace_gutter-cell_svg-icons {
box-sizing: border-box;
border-top: 1px solid #ffffff;
border-bottom: 1px solid #ffffff;
}

.ace-cloud_editor .ace_gutter-active-line {
background-repeat: no-repeat;
box-sizing: border-box;
border-top: 1px solid #9191ac;
border-bottom: 1px solid #9191ac;
}

.ace-cloud_editor .ace_marker-layer .ace_selected-word {
border: 1px solid #bfceff;
}

.ace-cloud_editor .ace_fold {
background-color: #2963d6;
border-color: #3a3a42;
}

.ace-cloud_editor .ace_keyword {
color: #9749d1;
}

.ace-cloud_editor .ace_meta.ace_tag {
color: #d1000a;
}

.ace-cloud_editor .ace_constant {
color: #a26202;
}

.ace-cloud_editor .ace_constant.ace_numeric {
color: #a26202;
}

.ace-cloud_editor .ace_constant.ace_character.ace_escape {
color: #d91792;
}

.ace-cloud_editor .ace_support.ace_function {
color: #2963d6;
}

.ace-cloud_editor .ace_support.ace_class {
color: #a26202;
}

.ace-cloud_editor .ace_storage {
color: #9749d1;
}

.ace-cloud_editor .ace_invalid.ace_illegal {
color: #ffffff;
background-color: #d1000a;
}

.ace-cloud_editor .ace_invalid.ace_deprecated {
color: #ffffff;
background-color: #a26202;
}

.ace-cloud_editor .ace_string {
color: #218000;
}

.ace-cloud_editor .ace_string.ace_regexp {
color: #218000;
}

.ace-cloud_editor .ace_comment,
.ace-cloud_editor .ace_ghost_text {
color: #697077;
opacity: 1;
}

.ace-cloud_editor .ace_variable {
color: #d1000a;
}

.ace-cloud_editor .ace_meta.ace_selector {
color: #9749d1;
}

.ace-cloud_editor .ace_entity.ace_other.ace_attribute-name {
color: #a26202;
}

.ace-cloud_editor .ace_entity.ace_name.ace_function {
color: #2963d6;
}

.ace-cloud_editor .ace_entity.ace_name.ace_tag {
color: #d1000a;
}

.ace-cloud_editor .ace_heading {
color: #2963d6;
}

.ace-cloud_editor .ace_xml-pe {
color: #a26202;
}
.ace-cloud_editor .ace_doctype {
color: #d1000a;
}

.ace-cloud_editor .ace_tooltip {
background-color: #ffffff;
color: #3a3a42;
}

.ace-cloud_editor .ace_icon_svg.ace_error,
.ace-cloud_editor .ace_icon_svg.ace_error_fold {
background-color: #d13212;
}
.ace-cloud_editor .ace_icon_svg.ace_warning,
.ace-cloud_editor .ace_icon_svg.ace_warning_fold {
background-color: #906806;
}
.ace-cloud_editor .ace_icon_svg.ace_info {
background-color: #0073bb;
}
.ace-cloud_editor .ace_highlight-marker {
background: none;
border: #2963d6 1px solid;
}
.ace-cloud_editor .ace_tooltip.ace_hover-tooltip:focus > div {
outline: 1px solid #0073bb;
}

0 comments on commit f336306

Please sign in to comment.