Skip to content

Commit ed87eff

Browse files
committed
package 15.07.25
1 parent 742b25c commit ed87eff

26 files changed

+4502
-36
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
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.43.2](https://github.com/ajaxorg/ace/compare/v1.43.1...v1.43.2) (2025-07-15)
6+
7+
8+
### Features
9+
10+
* Implement text markers ([#5835](https://github.com/ajaxorg/ace/issues/5835)) ([085730f](https://github.com/ajaxorg/ace/commit/085730fff987ec88c2350146f18b42b17532d47f))
11+
512
### [1.43.1](https://github.com/ajaxorg/ace/compare/v1.43.0...v1.43.1) (2025-07-02)
613

714

ace.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1063,7 +1063,7 @@ declare module "ace-builds" {
10631063
import { Range } from "ace-builds-internal/range";
10641064
import { UndoManager } from "ace-builds-internal/undomanager";
10651065
import { VirtualRenderer as Renderer } from "ace-builds-internal/virtual_renderer";
1066-
export var version: "1.43.1";
1066+
export var version: "1.43.2";
10671067
export { Range, Editor, EditSession, UndoManager, Renderer as VirtualRenderer };
10681068
}
10691069

css/ace.css

Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -912,6 +912,127 @@ background-color: #575757;
912912
.ace_checkmark::before {
913913
content: '✓';
914914
}
915+
/*diffview.css*/
916+
/*
917+
* Line Markers
918+
*/
919+
.ace_diff {
920+
position: absolute;
921+
z-index: 0;
922+
}
923+
.ace_diff.inline {
924+
z-index: 20;
925+
}
926+
/*
927+
* Light Colors
928+
*/
929+
.ace_diff.insert {
930+
background-color: #EFFFF1;
931+
}
932+
.ace_diff.delete {
933+
background-color: #FFF1F1;
934+
}
935+
.ace_diff.aligned_diff {
936+
background: rgba(206, 194, 191, 0.26);
937+
background: repeating-linear-gradient(
938+
45deg,
939+
rgba(122, 111, 108, 0.26),
940+
rgba(122, 111, 108, 0.26) 5px,
941+
rgba(0, 0, 0, 0) 5px,
942+
rgba(0, 0, 0, 0) 10px
943+
);
944+
}
945+
.ace_diff.insert.inline {
946+
background-color: rgb(74 251 74 / 18%);
947+
}
948+
.ace_diff.delete.inline {
949+
background-color: rgb(251 74 74 / 15%);
950+
}
951+
.ace_diff.delete.inline.empty {
952+
background-color: rgba(255, 128, 79, 0.7);
953+
width: 2px !important;
954+
}
955+
.ace_diff.insert.inline.empty {
956+
background-color: rgba(49, 230, 96, 0.7);
957+
width: 2px !important;
958+
}
959+
.ace_diff-active-line {
960+
border-bottom: 1px solid;
961+
border-top: 1px solid;
962+
background: transparent;
963+
position: absolute;
964+
box-sizing: border-box;
965+
border-color: #9191ac;
966+
}
967+
.ace_dark .ace_diff-active-line {
968+
background: transparent;
969+
border-color: #75777a;
970+
}
971+
/* gutter changes */
972+
.ace_mini-diff_gutter-enabled > .ace_gutter-cell,
973+
.ace_mini-diff_gutter-enabled > .ace_gutter-cell_svg-icons {
974+
padding-right: 13px;
975+
}
976+
.ace_mini-diff_gutter_other > .ace_gutter-cell,
977+
.ace_mini-diff_gutter_other > .ace_gutter-cell_svg-icons {
978+
display: none;
979+
}
980+
.ace_mini-diff_gutter_other {
981+
pointer-events: none;
982+
}
983+
.ace_mini-diff_gutter-enabled > .mini-diff-added {
984+
background-color: #EFFFF1;
985+
border-left: 3px solid #2BB534;
986+
padding-left: 16px;
987+
display: block;
988+
}
989+
.ace_mini-diff_gutter-enabled > .mini-diff-deleted {
990+
background-color: #FFF1F1;
991+
border-left: 3px solid #EA7158;
992+
padding-left: 16px;
993+
display: block;
994+
}
995+
.ace_mini-diff_gutter-enabled > .mini-diff-added:after {
996+
position: absolute;
997+
right: 2px;
998+
content: "+";
999+
color: darkgray;
1000+
background-color: inherit;
1001+
}
1002+
.ace_mini-diff_gutter-enabled > .mini-diff-deleted:after {
1003+
position: absolute;
1004+
right: 2px;
1005+
content: "-";
1006+
color: darkgray;
1007+
background-color: inherit;
1008+
}
1009+
.ace_fade-fold-widgets:hover > .ace_folding-enabled > .mini-diff-added:after,
1010+
.ace_fade-fold-widgets:hover > .ace_folding-enabled > .mini-diff-deleted:after {
1011+
display: none;
1012+
}
1013+
.ace_diff_other .ace_selection {
1014+
filter: drop-shadow(1px 2px 3px darkgray);
1015+
}
1016+
.ace_hidden_marker-layer .ace_bracket {
1017+
display: none;
1018+
}
1019+
/*
1020+
* Dark Colors
1021+
*/
1022+
.ace_dark .ace_diff.insert {
1023+
background-color: #212E25;
1024+
}
1025+
.ace_dark .ace_diff.delete {
1026+
background-color: #3F2222;
1027+
}
1028+
.ace_dark .ace_mini-diff_gutter-enabled > .mini-diff-added {
1029+
background-color: #212E25;
1030+
border-left-color:#00802F;
1031+
}
1032+
.ace_dark .ace_mini-diff_gutter-enabled > .mini-diff-deleted {
1033+
background-color: #3F2222;
1034+
border-left-color: #9C3838;
1035+
}
9151036
/*snippets.css*/
9161037
.ace_snippet-marker {
9171038
-moz-box-sizing: border-box;

0 commit comments

Comments
 (0)