@openui5/sap.ui.support 1.108.2 → 1.110.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/dep5 +16 -16
- package/THIRDPARTY.txt +2 -2
- package/package.json +6 -6
- package/src/sap/ui/support/.library +2 -2
- package/src/sap/ui/support/Bootstrap.js +1 -1
- package/src/sap/ui/support/RuleAnalyzer.js +3 -8
- package/src/sap/ui/support/jQuery.sap.support.js +2 -8
- package/src/sap/ui/support/library.js +20 -3
- package/src/sap/ui/support/supportRules/Analyzer.js +8 -5
- package/src/sap/ui/support/supportRules/CommunicationBus.js +1 -4
- package/src/sap/ui/support/supportRules/Constants.js +3 -6
- package/src/sap/ui/support/supportRules/CoreFacade.js +8 -9
- package/src/sap/ui/support/supportRules/ExecutionScope.js +23 -35
- package/src/sap/ui/support/supportRules/History.js +5 -10
- package/src/sap/ui/support/supportRules/IssueManager.js +17 -47
- package/src/sap/ui/support/supportRules/Main.js +2 -2
- package/src/sap/ui/support/supportRules/RuleSerializer.js +1 -1
- package/src/sap/ui/support/supportRules/RuleSet.js +13 -48
- package/src/sap/ui/support/supportRules/RuleSetLoader.js +6 -6
- package/src/sap/ui/support/supportRules/Storage.js +5 -48
- package/src/sap/ui/support/supportRules/WCBChannels.js +39 -4
- package/src/sap/ui/support/supportRules/WCBConfig.js +1 -1
- package/src/sap/ui/support/supportRules/WindowCommunicationBus.js +3 -19
- package/src/sap/ui/support/supportRules/report/AbapHistoryFormatter.js +1 -1
- package/src/sap/ui/support/supportRules/report/Archiver.js +1 -1
- package/src/sap/ui/support/supportRules/report/DataCollector.js +2 -2
- package/src/sap/ui/support/supportRules/report/IssueRenderer.js +1 -1
- package/src/sap/ui/support/supportRules/report/ReportProvider.js +1 -1
- package/src/sap/ui/support/supportRules/report/StringHistoryFormatter.js +1 -1
- package/src/sap/ui/support/supportRules/report/resources/index.js +1 -1
- package/src/sap/ui/support/supportRules/ui/IFrameController.js +1 -1
- package/src/sap/ui/support/supportRules/ui/Overlay.js +1 -1
- package/src/sap/ui/support/supportRules/ui/controllers/Analysis.controller.js +1 -1
- package/src/sap/ui/support/supportRules/ui/controllers/BaseController.js +1 -1
- package/src/sap/ui/support/supportRules/ui/controllers/Issues.controller.js +2 -3
- package/src/sap/ui/support/supportRules/ui/controllers/Main.controller.js +1 -1
- package/src/sap/ui/support/supportRules/ui/controllers/PresetsController.js +2 -2
- package/src/sap/ui/support/supportRules/ui/external/ElementTree.js +1 -1
- package/src/sap/ui/support/supportRules/ui/external/Highlighter.js +1 -1
- package/src/sap/ui/support/supportRules/ui/models/CustomJSONListSelection.js +1 -1
- package/src/sap/ui/support/supportRules/ui/models/CustomListSelection.js +1 -1
- package/src/sap/ui/support/supportRules/ui/models/Documentation.js +1 -1
- package/src/sap/ui/support/supportRules/ui/models/PresetsUtils.js +1 -1
- package/src/sap/ui/support/supportRules/ui/models/SelectionUtils.js +1 -1
- package/src/sap/ui/support/supportRules/ui/models/SharedModel.js +1 -1
- package/src/sap/ui/support/supportRules/ui/models/formatter.js +1 -1
- package/src/sap/ui/support/supportRules/util/EvalUtils.js +1 -1
- package/src/sap/ui/support/supportRules/util/RuleValidator.js +1 -1
- package/src/sap/ui/support/supportRules/util/StringAnalyzer.js +1 -1
- package/src/sap/ui/support/supportRules/util/Utils.js +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright 2009-
|
|
3
|
+
* (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
|
|
@@ -16,15 +16,17 @@ function () {
|
|
|
16
16
|
* <h3>Usage</h3>
|
|
17
17
|
* These channels are used for communication with Main.
|
|
18
18
|
*
|
|
19
|
-
* @enum {string}
|
|
19
|
+
* @enum {string}
|
|
20
|
+
* @name sap.ui.support.WCBChannels
|
|
20
21
|
* @readonly
|
|
21
|
-
* @
|
|
22
|
+
* @private
|
|
22
23
|
*/
|
|
23
24
|
return /** @lends sap.ui.support.WCBChannels */ {
|
|
24
25
|
/**
|
|
25
26
|
* State change in the core.
|
|
26
27
|
* @type {string}
|
|
27
28
|
* @const
|
|
29
|
+
* @protected
|
|
28
30
|
*/
|
|
29
31
|
ON_CORE_STATE_CHANGE: "ON_CORE_STATE_CHANGE",
|
|
30
32
|
|
|
@@ -32,6 +34,7 @@ function () {
|
|
|
32
34
|
* Shows a report.
|
|
33
35
|
* @type {string}
|
|
34
36
|
* @const
|
|
37
|
+
* @protected
|
|
35
38
|
*/
|
|
36
39
|
ON_SHOW_REPORT_REQUEST: "ON_SHOW_REPORT_REQUEST",
|
|
37
40
|
|
|
@@ -39,6 +42,7 @@ function () {
|
|
|
39
42
|
* Downloads a report.
|
|
40
43
|
* @type {string}
|
|
41
44
|
* @const
|
|
45
|
+
* @protected
|
|
42
46
|
*/
|
|
43
47
|
ON_DOWNLOAD_REPORT_REQUEST: "ON_DOWNLOAD_REPORT_REQUEST",
|
|
44
48
|
|
|
@@ -53,6 +57,7 @@ function () {
|
|
|
53
57
|
* Notifies when the rulesets have to be loaded.
|
|
54
58
|
* @type {string}
|
|
55
59
|
* @const
|
|
60
|
+
* @protected
|
|
56
61
|
*/
|
|
57
62
|
ON_INIT_ANALYSIS_CTRL: "ON_INIT_ANALYSIS_CTRL",
|
|
58
63
|
|
|
@@ -60,6 +65,7 @@ function () {
|
|
|
60
65
|
* Provides the current progress status of the analysis.
|
|
61
66
|
* @type {string}
|
|
62
67
|
* @const
|
|
68
|
+
* @protected
|
|
63
69
|
*/
|
|
64
70
|
ON_PROGRESS_UPDATE: "ON_PROGRESS_UPDATE",
|
|
65
71
|
|
|
@@ -67,6 +73,7 @@ function () {
|
|
|
67
73
|
* Notifies that the analysis has started.
|
|
68
74
|
* @type {string}
|
|
69
75
|
* @const
|
|
76
|
+
* @protected
|
|
70
77
|
*/
|
|
71
78
|
ON_ANALYZE_STARTED: "ON_ANALYZE_STARTED",
|
|
72
79
|
|
|
@@ -74,6 +81,7 @@ function () {
|
|
|
74
81
|
* Notifies after the analysis has finished.
|
|
75
82
|
* @type {string}
|
|
76
83
|
* @const
|
|
84
|
+
* @protected
|
|
77
85
|
*/
|
|
78
86
|
ON_ANALYZE_FINISH: "ON_ANALYZE_FINISH",
|
|
79
87
|
|
|
@@ -81,6 +89,7 @@ function () {
|
|
|
81
89
|
* Posts information about the UI and it's iframe.
|
|
82
90
|
* @type {string}
|
|
83
91
|
* @const
|
|
92
|
+
* @protected
|
|
84
93
|
*/
|
|
85
94
|
POST_UI_INFORMATION: "POST_UI_INFORMATION",
|
|
86
95
|
|
|
@@ -88,6 +97,7 @@ function () {
|
|
|
88
97
|
* Verifies rule creation.
|
|
89
98
|
* @type {string}
|
|
90
99
|
* @const
|
|
100
|
+
* @protected
|
|
91
101
|
*/
|
|
92
102
|
VERIFY_CREATE_RULE: "VERIFY_CREATE_RULE",
|
|
93
103
|
|
|
@@ -95,6 +105,7 @@ function () {
|
|
|
95
105
|
* Verifies rule creation after it's finished.
|
|
96
106
|
* @type {string}
|
|
97
107
|
* @const
|
|
108
|
+
* @protected
|
|
98
109
|
*/
|
|
99
110
|
VERIFY_RULE_CREATE_RESULT: "VERIFY_RULE_CREATE_RESULT",
|
|
100
111
|
|
|
@@ -102,6 +113,7 @@ function () {
|
|
|
102
113
|
* Verifies rule update.
|
|
103
114
|
* @type {string}
|
|
104
115
|
* @const
|
|
116
|
+
* @protected
|
|
105
117
|
*/
|
|
106
118
|
VERIFY_UPDATE_RULE: "VERIFY_UPDATE_RULE",
|
|
107
119
|
|
|
@@ -109,6 +121,7 @@ function () {
|
|
|
109
121
|
* Verifies rule update after it's finished.
|
|
110
122
|
* @type {string}
|
|
111
123
|
* @const
|
|
124
|
+
* @protected
|
|
112
125
|
*/
|
|
113
126
|
VERIFY_RULE_UPDATE_RESULT: "VERIFY_RULE_UPDATE_RESULT",
|
|
114
127
|
|
|
@@ -116,13 +129,15 @@ function () {
|
|
|
116
129
|
* Posts information about which rule to be deleted.
|
|
117
130
|
* @type {string}
|
|
118
131
|
* @const
|
|
132
|
+
* @protected
|
|
119
133
|
*/
|
|
120
|
-
DELETE_RULE:
|
|
134
|
+
DELETE_RULE: "DELETE_RULE",
|
|
121
135
|
|
|
122
136
|
/**
|
|
123
137
|
* Posts information about the application under test.
|
|
124
138
|
* @type {string}
|
|
125
139
|
* @const
|
|
140
|
+
* @protected
|
|
126
141
|
*/
|
|
127
142
|
POST_APPLICATION_INFORMATION: "POST_APPLICATION_INFORMATION",
|
|
128
143
|
|
|
@@ -130,6 +145,7 @@ function () {
|
|
|
130
145
|
* Posts available libraries.
|
|
131
146
|
* @type {string}
|
|
132
147
|
* @const
|
|
148
|
+
* @protected
|
|
133
149
|
*/
|
|
134
150
|
POST_AVAILABLE_LIBRARIES: "POST_AVAILABLE_LIBRARIES",
|
|
135
151
|
|
|
@@ -137,6 +153,7 @@ function () {
|
|
|
137
153
|
* Loads all rule sets.
|
|
138
154
|
* @type {string}
|
|
139
155
|
* @const
|
|
156
|
+
* @protected
|
|
140
157
|
*/
|
|
141
158
|
LOAD_RULESETS: "LOAD_RULESETS",
|
|
142
159
|
|
|
@@ -144,6 +161,7 @@ function () {
|
|
|
144
161
|
* Gets components.
|
|
145
162
|
* @type {string}
|
|
146
163
|
* @const
|
|
164
|
+
* @protected
|
|
147
165
|
*/
|
|
148
166
|
GET_AVAILABLE_COMPONENTS: "GET_AVAILABLE_COMPONENTS",
|
|
149
167
|
|
|
@@ -151,6 +169,7 @@ function () {
|
|
|
151
169
|
* Posts components.
|
|
152
170
|
* @type {string}
|
|
153
171
|
* @const
|
|
172
|
+
* @protected
|
|
154
173
|
*/
|
|
155
174
|
POST_AVAILABLE_COMPONENTS: "POST_AVAILABLE_COMPONENTS",
|
|
156
175
|
|
|
@@ -158,6 +177,7 @@ function () {
|
|
|
158
177
|
* Highlight element in TreeTable.
|
|
159
178
|
* @type {string}
|
|
160
179
|
* @const
|
|
180
|
+
* @protected
|
|
161
181
|
*/
|
|
162
182
|
HIGHLIGHT_ELEMENT: "HIGHLIGHT_ELEMENT",
|
|
163
183
|
|
|
@@ -165,6 +185,7 @@ function () {
|
|
|
165
185
|
* Open given URL.
|
|
166
186
|
* @type {string}
|
|
167
187
|
* @const
|
|
188
|
+
* @protected
|
|
168
189
|
*/
|
|
169
190
|
OPEN_URL: "OPEN_URL",
|
|
170
191
|
|
|
@@ -172,6 +193,7 @@ function () {
|
|
|
172
193
|
* Notifies onmouseenter event on the TreeTable.
|
|
173
194
|
* @type {string}
|
|
174
195
|
* @const
|
|
196
|
+
* @protected
|
|
175
197
|
*/
|
|
176
198
|
TREE_ELEMENT_MOUSE_ENTER: "TREE_ELEMENT_MOUSE_ENTER",
|
|
177
199
|
|
|
@@ -179,6 +201,7 @@ function () {
|
|
|
179
201
|
* Notifies onmouseout event on the TreeTable.
|
|
180
202
|
* @type {string}
|
|
181
203
|
* @const
|
|
204
|
+
* @protected
|
|
182
205
|
*/
|
|
183
206
|
TREE_ELEMENT_MOUSE_OUT: "TREE_ELEMENT_MOUSE_OUT",
|
|
184
207
|
|
|
@@ -186,6 +209,7 @@ function () {
|
|
|
186
209
|
* Updates support rules in IssueManager.
|
|
187
210
|
* @type {string}
|
|
188
211
|
* @const
|
|
212
|
+
* @protected
|
|
189
213
|
*/
|
|
190
214
|
UPDATE_SUPPORT_RULES: "UPDATE_SUPPORT_RULES",
|
|
191
215
|
|
|
@@ -193,6 +217,7 @@ function () {
|
|
|
193
217
|
* Upload external modules.
|
|
194
218
|
* @type {string}
|
|
195
219
|
* @const
|
|
220
|
+
* @protected
|
|
196
221
|
*/
|
|
197
222
|
EXTERNAL_MODULE_UPLOADED: "EXTERNAL_MODULE_UPLOADED",
|
|
198
223
|
|
|
@@ -200,6 +225,7 @@ function () {
|
|
|
200
225
|
* Hides SupportAssistant iframe.
|
|
201
226
|
* @type {string}
|
|
202
227
|
* @const
|
|
228
|
+
* @protected
|
|
203
229
|
*/
|
|
204
230
|
TOGGLE_FRAME_HIDDEN: "TOGGLE_FRAME_HIDDEN",
|
|
205
231
|
|
|
@@ -207,6 +233,7 @@ function () {
|
|
|
207
233
|
* Ensure SupportAssistant iframe is open.
|
|
208
234
|
* @type {string}
|
|
209
235
|
* @const
|
|
236
|
+
* @protected
|
|
210
237
|
*/
|
|
211
238
|
ENSURE_FRAME_OPENED: "ENSURE_FRAME_OPENED",
|
|
212
239
|
|
|
@@ -214,6 +241,7 @@ function () {
|
|
|
214
241
|
* Resize SupportAssistant iframe.
|
|
215
242
|
* @type {string}
|
|
216
243
|
* @const
|
|
244
|
+
* @protected
|
|
217
245
|
*/
|
|
218
246
|
RESIZE_FRAME: "RESIZE_FRAME",
|
|
219
247
|
|
|
@@ -221,6 +249,7 @@ function () {
|
|
|
221
249
|
* Request rules model.
|
|
222
250
|
* @type {string}
|
|
223
251
|
* @const
|
|
252
|
+
* @protected
|
|
224
253
|
*/
|
|
225
254
|
REQUEST_RULES_MODEL: "REQUEST_RULES_MODEL",
|
|
226
255
|
|
|
@@ -228,6 +257,7 @@ function () {
|
|
|
228
257
|
* Get rules model.
|
|
229
258
|
* @type {string}
|
|
230
259
|
* @const
|
|
260
|
+
* @protected
|
|
231
261
|
*/
|
|
232
262
|
GET_RULES_MODEL: "GET_RULES_MODEL",
|
|
233
263
|
|
|
@@ -235,6 +265,7 @@ function () {
|
|
|
235
265
|
* Request issues.
|
|
236
266
|
* @type {string}
|
|
237
267
|
* @const
|
|
268
|
+
* @protected
|
|
238
269
|
*/
|
|
239
270
|
REQUEST_ISSUES: "REQUEST_ISSUES",
|
|
240
271
|
|
|
@@ -242,6 +273,7 @@ function () {
|
|
|
242
273
|
* Gets the issues.
|
|
243
274
|
* @type {string}
|
|
244
275
|
* @const
|
|
276
|
+
* @protected
|
|
245
277
|
*/
|
|
246
278
|
GET_ISSUES: "GET_ISSUES",
|
|
247
279
|
|
|
@@ -249,6 +281,7 @@ function () {
|
|
|
249
281
|
* Posts a message.
|
|
250
282
|
* @type {string}
|
|
251
283
|
* @const
|
|
284
|
+
* @protected
|
|
252
285
|
*/
|
|
253
286
|
POST_MESSAGE: "POST_MESSAGE",
|
|
254
287
|
|
|
@@ -256,6 +289,7 @@ function () {
|
|
|
256
289
|
* Get non loaded libraries with rules names
|
|
257
290
|
* @type {string}
|
|
258
291
|
* @const
|
|
292
|
+
* @protected
|
|
259
293
|
*/
|
|
260
294
|
GET_NON_LOADED_RULE_SETS: "GET_NON_LOADED_RULE_SETS",
|
|
261
295
|
|
|
@@ -263,6 +297,7 @@ function () {
|
|
|
263
297
|
* Progress of current loading process
|
|
264
298
|
* @type {string}
|
|
265
299
|
* @const
|
|
300
|
+
* @protected
|
|
266
301
|
*/
|
|
267
302
|
CURRENT_LOADING_PROGRESS: "CURRENT_LOADING_PROGRESS"
|
|
268
303
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright 2009-
|
|
3
|
+
* (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
|
|
@@ -22,11 +22,9 @@ sap.ui.define([
|
|
|
22
22
|
* Each of these child classes are singletons, so they will have one instance per window.
|
|
23
23
|
* If you need to share the exact same data between the two frames, use global variables
|
|
24
24
|
* @class
|
|
25
|
-
* @
|
|
26
|
-
* @name sap.ui.support.WindowCommunicationBus
|
|
27
|
-
* @memberof sap.ui.support
|
|
25
|
+
* @alias sap.ui.support.WindowCommunicationBus
|
|
28
26
|
* @author SAP SE
|
|
29
|
-
* @version 1.
|
|
27
|
+
* @version 1.110.0
|
|
30
28
|
* @private
|
|
31
29
|
*/
|
|
32
30
|
var WindowCommunicationBus = BaseObject.extend("sap.ui.support.supportRules.WindowCommunicationBus", {
|
|
@@ -48,9 +46,6 @@ sap.ui.define([
|
|
|
48
46
|
|
|
49
47
|
/**
|
|
50
48
|
* Subscribes to a channel with callback and given context
|
|
51
|
-
* @method
|
|
52
|
-
* @name sap.ui.support.WindowCommunicationBus.subscribe
|
|
53
|
-
* @memberof sap.ui.support.WindowCommunicationBus
|
|
54
49
|
* @param {string} sChannelName Name of the channel to subscribe
|
|
55
50
|
* @param {function} fnCallback Callback for the SupportAssistant
|
|
56
51
|
* @param {object} oContext Context for the subscribed channel
|
|
@@ -69,9 +64,6 @@ sap.ui.define([
|
|
|
69
64
|
|
|
70
65
|
/**
|
|
71
66
|
* Publishes given channel by name and settings
|
|
72
|
-
* @method
|
|
73
|
-
* @name sap.ui.support.WindowCommunicationBus.publish
|
|
74
|
-
* @memberof sap.ui.support.WindowCommunicationBus
|
|
75
67
|
* @param {string} sChannelName Name of the channel to publish
|
|
76
68
|
* @param {string} aParams Settings passed to the SupportAssistant
|
|
77
69
|
*/
|
|
@@ -96,7 +88,6 @@ sap.ui.define([
|
|
|
96
88
|
|
|
97
89
|
/**
|
|
98
90
|
* mark an iframe as a valid participant in the communication
|
|
99
|
-
* @method
|
|
100
91
|
* @param {object} oOptions information about the iframe
|
|
101
92
|
*/
|
|
102
93
|
WindowCommunicationBus.prototype.allowFrame = function (oOptions) {
|
|
@@ -112,9 +103,6 @@ sap.ui.define([
|
|
|
112
103
|
/**
|
|
113
104
|
* Clears all subscribed channels from the WindowCommunicationBus
|
|
114
105
|
* @private
|
|
115
|
-
* @method
|
|
116
|
-
* @name sap.ui.support.WindowCommunicationBus.destroyChannels
|
|
117
|
-
* @memberof sap.ui.support.WindowCommunicationBus
|
|
118
106
|
*/
|
|
119
107
|
WindowCommunicationBus.prototype.destroyChannels = function () {
|
|
120
108
|
this._channels = {};
|
|
@@ -123,9 +111,6 @@ sap.ui.define([
|
|
|
123
111
|
/**
|
|
124
112
|
* This is the message handler used for communication between the WindowCommunicationBus and {@link sap.ui.support.WCBChannels}
|
|
125
113
|
* @private
|
|
126
|
-
* @method
|
|
127
|
-
* @name sap.ui.support.WindowCommunicationBus._onmessage
|
|
128
|
-
* @memberof sap.ui.support.WindowCommunicationBus
|
|
129
114
|
* @param {EventListener} eMessage Event fired by the channels attached to the WindowCommunicationBus
|
|
130
115
|
*/
|
|
131
116
|
WindowCommunicationBus.prototype._onmessage = function (eMessage) {
|
|
@@ -145,7 +130,6 @@ sap.ui.define([
|
|
|
145
130
|
* validate messages published from external window to application window (i.e. from tool frame to opener window)
|
|
146
131
|
* no validation needed the other way (i.e. from opener window to tool frame)
|
|
147
132
|
* @private
|
|
148
|
-
* @method
|
|
149
133
|
* @param {EventListener} eMessage Event fired by the channels attached to the WindowCommunicationBus
|
|
150
134
|
* @returns {boolean} true if the message is valid
|
|
151
135
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright 2009-
|
|
3
|
+
* (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
|
|
@@ -147,7 +147,7 @@ sap.ui.define(["sap/ui/core/Core", "sap/base/util/LoaderExtensions", 'sap/base/s
|
|
|
147
147
|
try {
|
|
148
148
|
oTechData.sapUi5Version = {
|
|
149
149
|
version: sap.ui.getVersionInfo(),
|
|
150
|
-
path: sap.ui.
|
|
150
|
+
path: sap.ui.require.toUrl("sap-ui-version.json")
|
|
151
151
|
};
|
|
152
152
|
} catch (ex) {
|
|
153
153
|
oTechData.sapUi5Version = null;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright 2009-
|
|
3
|
+
* (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
|
|
@@ -10,13 +10,12 @@ sap.ui.define([
|
|
|
10
10
|
"sap/ui/support/supportRules/CommunicationBus",
|
|
11
11
|
"sap/ui/support/supportRules/ui/models/SharedModel",
|
|
12
12
|
"sap/ui/support/supportRules/ui/external/ElementTree",
|
|
13
|
-
"sap/ui/support/supportRules/IssueManager",
|
|
14
13
|
"sap/ui/support/supportRules/WCBChannels",
|
|
15
14
|
"sap/ui/support/supportRules/ui/models/formatter",
|
|
16
15
|
"sap/ui/support/supportRules/Constants",
|
|
17
16
|
"sap/m/OverflowToolbarAssociativePopoverControls",
|
|
18
17
|
"sap/base/util/deepExtend"
|
|
19
|
-
], function (BaseController, JSONModel, CommunicationBus, SharedModel, ElementTree,
|
|
18
|
+
], function (BaseController, JSONModel, CommunicationBus, SharedModel, ElementTree, channelNames, formatter, constants, OverflowToolbarAssociativePopoverControls, deepExtend) {
|
|
20
19
|
"use strict";
|
|
21
20
|
|
|
22
21
|
var mIssueSettings = {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright 2009-
|
|
3
|
+
* (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
|
|
@@ -89,7 +89,7 @@ sap.ui.define([
|
|
|
89
89
|
*
|
|
90
90
|
* @extends sap.ui.support.supportRules.ui.controllers.BaseController
|
|
91
91
|
* @author SAP SE
|
|
92
|
-
* @version 1.
|
|
92
|
+
* @version 1.110.0
|
|
93
93
|
* @private
|
|
94
94
|
* @alias sap.ui.support.supportRules.ui.controllers.PresetsController
|
|
95
95
|
*/
|