@openui5/sap.ui.codeeditor 1.142.0 → 1.143.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/REUSE.toml CHANGED
@@ -385,7 +385,7 @@ SPDX-FileComment = "these files belong to: handlebars"
385
385
  [[annotations]]
386
386
  path = "src/sap.ui.core/src/sap/ui/thirdparty/require.js"
387
387
  precedence = "aggregate"
388
- SPDX-FileCopyrightText = "2010-2012, The Dojo Foundation"
388
+ SPDX-FileCopyrightText = "2010-2024, jQuery Foundation and other contributors"
389
389
  SPDX-License-Identifier = "MIT"
390
390
  SPDX-FileComment = "these files belong to: requireJS"
391
391
 
package/THIRDPARTY.txt CHANGED
@@ -254,8 +254,8 @@ License: MIT
254
254
  License Text: https://github.com/UI5/openui5/blob/master/LICENSES/MIT.txt
255
255
  Contained in: src/sap.ui.core/src/sap/ui/thirdparty/handlebars.js
256
256
 
257
- Component: requireJS, version: 2.1.8
258
- Copyright: 2010-2012, The Dojo Foundation
257
+ Component: requireJS, version: 2.3.7
258
+ Copyright: 2010-2024, jQuery Foundation and other contributors
259
259
  License: MIT
260
260
  License Text: https://github.com/UI5/openui5/blob/master/LICENSES/MIT.txt
261
261
  Contained in: src/sap.ui.core/src/sap/ui/thirdparty/require.js
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/sap.ui.codeeditor",
3
- "version": "1.142.0",
3
+ "version": "1.143.0",
4
4
  "description": "OpenUI5 UI Library sap.ui.codeeditor",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -14,6 +14,6 @@
14
14
  "url": "https://github.com/UI5/openui5.git"
15
15
  },
16
16
  "dependencies": {
17
- "@openui5/sap.ui.core": "1.142.0"
17
+ "@openui5/sap.ui.core": "1.143.0"
18
18
  }
19
19
  }
@@ -6,7 +6,7 @@
6
6
  <copyright>OpenUI5
7
7
  * (c) Copyright 2025 SAP SE or an SAP affiliate company.
8
8
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.</copyright>
9
- <version>1.142.0</version>
9
+ <version>1.143.0</version>
10
10
 
11
11
  <documentation>UI5 library: sap.ui.codeeditor</documentation>
12
12
 
@@ -65,7 +65,7 @@ sap.ui.define([
65
65
  * @extends sap.ui.core.Control
66
66
  *
67
67
  * @author SAP SE
68
- * @version 1.142.0
68
+ * @version 1.143.0
69
69
  *
70
70
  * @constructor
71
71
  * @public
@@ -19,7 +19,7 @@ sap.ui.define([
19
19
  * @namespace
20
20
  * @alias sap.ui.codeeditor
21
21
  * @author SAP SE
22
- * @version 1.142.0
22
+ * @version 1.143.0
23
23
  * @since 1.48
24
24
  * @public
25
25
  */
@@ -34,7 +34,7 @@ sap.ui.define([
34
34
  ],
35
35
  elements: [],
36
36
  noLibraryCSS: false,
37
- version: "1.142.0"
37
+ version: "1.143.0"
38
38
  });
39
39
 
40
40
  return thisLib;
@@ -1,36 +1,34 @@
1
- /*
2
- / ============================================ /
3
- / CSS for control sap.ui.codeeditor/CodeEditor /
4
- / Base theme /
5
- / ============================================ /
6
- */
1
+ /* ============================================= */
2
+ /* CSS for control sap.ui.codeeditor/CodeEditor */
3
+ /* Base theme */
4
+ /* ============================================= */
7
5
 
8
6
  .sapCEdThemeDefault .ace_editor {
9
- background-color: @sapField_Background;
10
- color: @sapField_TextColor;
7
+ background-color: var(--sapField_Background);
8
+ color: var(--sapField_TextColor);
11
9
  font-family: "72 Mono", 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'Source Code Pro', 'source-code-pro', monospace;
12
10
 
13
11
  .ace_gutter {
14
- background: @sapField_ReadOnly_Background;
15
- color: @sapField_TextColor;
12
+ background: var(--sapField_ReadOnly_Background);
13
+ color: var(--sapField_TextColor);
16
14
  }
17
15
 
18
16
  .ace_print-margin {
19
17
  width: 1px;
20
- background: @sapField_ReadOnly_Background;
18
+ background: var(--sapField_ReadOnly_Background);
21
19
  }
22
20
 
23
21
  .ace_cursor {
24
- color: @sapField_TextColor;
22
+ color: var(--sapField_TextColor);
25
23
  }
26
24
 
27
25
  .ace_marker-layer .ace_selection {
28
- background: @sapField_ReadOnly_Background;
26
+ background: var(--sapField_ReadOnly_Background);
29
27
  }
30
28
 
31
29
  .ace_marker-layer .ace_bracket {
32
30
  margin: -1px 0 0 -1px;
33
- border: 1px solid @sapField_SuccessColor;
31
+ border: 1px solid var(--sapField_SuccessColor);
34
32
  }
35
33
 
36
34
  .ace_marker-layer .ace_active-line {
@@ -39,7 +37,7 @@
39
37
  }
40
38
 
41
39
  .ace_gutter-active-line {
42
- background-color: @sapField_SuccessBackground;
40
+ background-color: var(--sapField_SuccessBackground);
43
41
  }
44
42
 
45
43
  .ace_keyword,
@@ -47,11 +45,11 @@
47
45
  .ace_storage,
48
46
  .ace_storage.ace_type,
49
47
  .ace_support.ace_type {
50
- color: @sapUiLegend10;
48
+ color: var(--sapLegendColor10);
51
49
  }
52
50
 
53
51
  .ace_keyword.ace_operator {
54
- color: @sapUiLegend7;
52
+ color: var(--sapLegendColor7);
55
53
  }
56
54
 
57
55
  .ace_constant.ace_character,
@@ -60,32 +58,32 @@
60
58
  .ace_keyword.ace_other.ace_unit,
61
59
  .ace_support.ace_constant,
62
60
  .ace_variable.ace_parameter {
63
- color: @sapUiLegend12;
61
+ color: var(--sapLegendColor12);
64
62
  }
65
63
 
66
64
  .ace_constant.ace_other {
67
- color: @sapUiLegend4;
65
+ color: var(--sapLegendColor4);
68
66
  }
69
67
 
70
68
  .ace_fold {
71
- background-color: @sapUiLegend20;
72
- border-color: @sapUiLegend20;
69
+ background-color: var(--sapLegendColor20);
70
+ border-color: var(--sapLegendColor20);
73
71
  }
74
72
 
75
73
  .ace_entity.ace_name.ace_function,
76
74
  .ace_support.ace_function {
77
- color: @sapUiLegend6;
75
+ color: var(--sapLegendColor6);
78
76
  }
79
77
 
80
78
  .ace_support.ace_class,
81
79
  .ace_support.ace_type {
82
- color: @sapUiLegend3;
80
+ color: var(--sapLegendColor3);
83
81
  }
84
82
 
85
83
  .ace_heading,
86
84
  .ace_markup.ace_heading,
87
85
  .ace_string {
88
- color: @sapUiLegend18;
86
+ color: var(--sapLegendColor18);
89
87
  }
90
88
 
91
89
  .ace_entity.ace_name.ace_tag,
@@ -93,37 +91,37 @@
93
91
  .ace_meta.ace_tag,
94
92
  .ace_string.ace_regexp,
95
93
  .ace_variable {
96
- color: @sapUiLegend2;
94
+ color: var(--sapLegendColor2);
97
95
  }
98
96
 
99
97
  .ace_comment {
100
- color: @sapUiLegend9;
98
+ color: var(--sapLegendColor9);
101
99
  }
102
100
 
103
101
  .ace_marker-layer .ace_error_bracket {
104
- border-color: @sapField_InvalidColor;
102
+ border-color: var(--sapField_InvalidColor);
105
103
  }
106
104
 
107
105
  .ace_fold-widget {
108
- background-color: @sapField_SuccessBackground;
106
+ background-color: var(--sapField_SuccessBackground);
109
107
  }
110
108
 
111
109
  .ace_fold-widget:hover {
112
- border-color: @sapField_SuccessColor;
110
+ border-color: var(--sapField_SuccessColor);
113
111
  }
114
112
 
115
113
  .ace_indent-guide {
116
114
  position: relative;
117
115
 
118
116
  &::after {
119
- content: " ";
117
+ content: '';
120
118
  position: absolute;
121
119
  top: 0.0625rem;
122
120
  right: 0;
123
121
  left: 0;
124
122
  bottom: 0;
125
- border-inline-end: 0.0625rem dotted @sapField_SuccessColor;
123
+ border-inline-end: 0.0625rem dotted var(--sapField_SuccessColor);
126
124
  margin-inline-end: -0.0625rem;
127
125
  }
128
126
  }
129
- }
127
+ }