@openui5/sap.ui.support 1.109.0 → 1.111.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.
Files changed (53) hide show
  1. package/.reuse/dep5 +16 -16
  2. package/THIRDPARTY.txt +2 -2
  3. package/package.json +6 -6
  4. package/src/sap/ui/support/.library +2 -2
  5. package/src/sap/ui/support/Bootstrap.js +2 -2
  6. package/src/sap/ui/support/RuleAnalyzer.js +3 -3
  7. package/src/sap/ui/support/jQuery.sap.support.js +2 -2
  8. package/src/sap/ui/support/library.js +20 -3
  9. package/src/sap/ui/support/supportRules/Analyzer.js +3 -3
  10. package/src/sap/ui/support/supportRules/CommunicationBus.js +1 -4
  11. package/src/sap/ui/support/supportRules/Constants.js +1 -1
  12. package/src/sap/ui/support/supportRules/CoreFacade.js +4 -6
  13. package/src/sap/ui/support/supportRules/ExecutionScope.js +4 -7
  14. package/src/sap/ui/support/supportRules/History.js +25 -23
  15. package/src/sap/ui/support/supportRules/IssueManager.js +16 -18
  16. package/src/sap/ui/support/supportRules/Main.js +106 -94
  17. package/src/sap/ui/support/supportRules/RuleSerializer.js +1 -1
  18. package/src/sap/ui/support/supportRules/RuleSet.js +11 -10
  19. package/src/sap/ui/support/supportRules/RuleSetLoader.js +1 -1
  20. package/src/sap/ui/support/supportRules/Storage.js +2 -2
  21. package/src/sap/ui/support/supportRules/WCBChannels.js +2 -2
  22. package/src/sap/ui/support/supportRules/WCBConfig.js +1 -1
  23. package/src/sap/ui/support/supportRules/WindowCommunicationBus.js +2 -2
  24. package/src/sap/ui/support/supportRules/report/AbapHistoryFormatter.js +1 -1
  25. package/src/sap/ui/support/supportRules/report/Archiver.js +1 -1
  26. package/src/sap/ui/support/supportRules/report/DataCollector.js +9 -11
  27. package/src/sap/ui/support/supportRules/report/IssueRenderer.js +1 -1
  28. package/src/sap/ui/support/supportRules/report/ReportProvider.js +1 -1
  29. package/src/sap/ui/support/supportRules/report/StringHistoryFormatter.js +1 -1
  30. package/src/sap/ui/support/supportRules/report/resources/index.js +1 -1
  31. package/src/sap/ui/support/supportRules/ui/IFrameController.js +1 -1
  32. package/src/sap/ui/support/supportRules/ui/Overlay.js +1 -1
  33. package/src/sap/ui/support/supportRules/ui/controllers/Analysis.controller.js +1 -1
  34. package/src/sap/ui/support/supportRules/ui/controllers/BaseController.js +1 -1
  35. package/src/sap/ui/support/supportRules/ui/controllers/Issues.controller.js +2 -3
  36. package/src/sap/ui/support/supportRules/ui/controllers/Main.controller.js +7 -5
  37. package/src/sap/ui/support/supportRules/ui/controllers/PresetsController.js +2 -2
  38. package/src/sap/ui/support/supportRules/ui/external/ElementTree.js +1 -1
  39. package/src/sap/ui/support/supportRules/ui/external/Highlighter.js +1 -1
  40. package/src/sap/ui/support/supportRules/ui/models/CustomJSONListSelection.js +1 -1
  41. package/src/sap/ui/support/supportRules/ui/models/CustomListSelection.js +1 -1
  42. package/src/sap/ui/support/supportRules/ui/models/Documentation.js +1 -1
  43. package/src/sap/ui/support/supportRules/ui/models/PresetsUtils.js +1 -1
  44. package/src/sap/ui/support/supportRules/ui/models/SelectionUtils.js +1 -1
  45. package/src/sap/ui/support/supportRules/ui/models/SharedModel.js +1 -1
  46. package/src/sap/ui/support/supportRules/ui/models/formatter.js +1 -1
  47. package/src/sap/ui/support/supportRules/ui/views/Issues.view.xml +47 -33
  48. package/src/sap/ui/support/supportRules/ui/views/RuleDetails.fragment.xml +62 -28
  49. package/src/sap/ui/support/supportRules/ui/views/RuleUpdate.fragment.xml +192 -136
  50. package/src/sap/ui/support/supportRules/util/EvalUtils.js +1 -1
  51. package/src/sap/ui/support/supportRules/util/RuleValidator.js +1 -1
  52. package/src/sap/ui/support/supportRules/util/StringAnalyzer.js +1 -1
  53. package/src/sap/ui/support/supportRules/util/Utils.js +1 -1
@@ -30,71 +30,102 @@
30
30
  </m:IconTabHeader>
31
31
  </m:contentMiddle>
32
32
  </m:Bar>
33
- <f:SimpleForm
34
- visible="{= ${/selectedRuleEditKey} === 'ruleProperties' }"
35
- editable="true">
36
- <f:content>
37
- <m:Label text="ID" />
38
- <m:Input value="{/editRule/id}" required = "true" />
39
- <m:Label text="Async" />
40
- <m:HBox>
41
- <m:items>
42
- <m:RadioButton groupName="asyncEditContext" text="true" selected="{= ${/editRule/async} === true }" select="onAsyncSwitch">
43
- <m:customData>
44
- <c:CustomData key="asyncEditContext" value="true" />
45
- </m:customData>
46
- </m:RadioButton>
47
- <m:RadioButton groupName="asyncEditContext" text="false" selected="{= ${/editRule/async} !== true }" select="onAsyncSwitch">
48
- <m:customData>
49
- <c:CustomData key="asyncEditContext" value="false" />
50
- </m:customData>
51
- </m:RadioButton>
52
- <c:Icon
53
- src="sap-icon://message-warning"
54
- class="sapUiSmallMarginBegin sapUiTinyMarginEnd"
55
- color="#E09D00"
56
- visible="{= ${/editRule/async} === true }">
57
- <c:layoutData>
58
- <m:FlexItemData alignSelf="Center" />
59
- </c:layoutData>
60
- </c:Icon>
61
- <m:Text text="{/resolveDescription}" visible="{= ${/editRule/async} === true }">
62
- <m:layoutData>
63
- <m:FlexItemData alignSelf="Center" />
64
- </m:layoutData>
65
- </m:Text>
66
- </m:items>
67
- </m:HBox>
68
- <m:Label text="Categories" />
69
- <m:MultiComboBox selectedKeys="{/editRule/categories}" items="{/categories}" required = "true">
70
- <c:Item key="{}" text="{}" />
71
- </m:MultiComboBox>
72
- <m:Label text="Audiences" />
73
- <m:MultiComboBox selectedKeys="{/editRule/audiences}" items="{/audiences}" required = "true">
74
- <c:Item key="{}" text="{}" />
75
- </m:MultiComboBox>
76
- <m:Label text="Title" />
77
- <m:Input value="{/editRule/title}" required = "true" />
78
- <m:Label text="Description" />
79
- <m:TextArea value="{/editRule/description}" required = "true"/>
80
- <m:Label text="Resolution" />
81
- <m:TextArea value="{/editRule/resolution}" required = "true"/>
82
- <m:Label text="Min version" />
83
- <m:TextArea value="{/editRule/minversion}" required = "true"/>
84
- <m:Label text="Resolution URLS" />
85
- <l:VerticalLayout>
86
- <l:HorizontalLayout>
87
- <m:Input placeholder="Text" value="{/tempLink/text}" />
88
- <m:Input placeholder="Href" value="{/tempLink/href}" />
89
- <m:Button text="Add Link" press="addLinkToRule" icon="sap-icon://add" />
90
- </l:HorizontalLayout>
91
- <l:VerticalLayout
92
- content="{/editRule/resolutionurls}">
93
- <m:Link text="{text}" href="{href}" target="_blank"/>
94
- </l:VerticalLayout>
95
- </l:VerticalLayout>
96
- </f:content>
97
- </f:SimpleForm>
33
+ <f:Form
34
+ editable="true"
35
+ visible="{= ${/selectedRuleEditKey} === 'ruleProperties' }">
36
+ <f:layout>
37
+ <f:ColumnLayout />
38
+ </f:layout>
39
+ <f:formContainers>
40
+ <f:FormContainer>
41
+ <f:formElements>
42
+ <f:FormElement label="ID">
43
+ <f:fields>
44
+ <m:Input value="{/editRule/id}" required = "true" />
45
+ </f:fields>
46
+ </f:FormElement>
47
+ <f:FormElement label="Async">
48
+ <f:fields>
49
+ <m:RadioButton groupName="asyncEditContext" text="true" selected="{= ${/editRule/async} === true }" select="onAsyncSwitch">
50
+ <m:customData>
51
+ <c:CustomData key="asyncEditContext" value="true" />
52
+ </m:customData>
53
+ </m:RadioButton>
54
+ <m:RadioButton groupName="asyncEditContext" text="false" selected="{= ${/editRule/async} !== true }" select="onAsyncSwitch">
55
+ <m:customData>
56
+ <c:CustomData key="asyncEditContext" value="false" />
57
+ </m:customData>
58
+ </m:RadioButton>
59
+ <c:Icon
60
+ src="sap-icon://message-warning"
61
+ class="sapUiSmallMarginBegin sapUiTinyMarginEnd"
62
+ color="#E09D00"
63
+ visible="{= ${/editRule/async} === true }">
64
+ <c:layoutData>
65
+ <m:FlexItemData alignSelf="Center" />
66
+ </c:layoutData>
67
+ </c:Icon>
68
+ <m:Text text="{/resolveDescription}" visible="{= ${/editRule/async} === true }">
69
+ <m:layoutData>
70
+ <m:FlexItemData alignSelf="Center" />
71
+ </m:layoutData>
72
+ </m:Text>
73
+ </f:fields>
74
+ </f:FormElement>
75
+ <f:FormElement label="Categories">
76
+ <f:fields>
77
+ <m:MultiComboBox selectedKeys="{/editRule/categories}" items="{/categories}" required = "true">
78
+ <c:Item key="{}" text="{}" />
79
+ </m:MultiComboBox>
80
+ </f:fields>
81
+ </f:FormElement>
82
+ <f:FormElement label="Audiences">
83
+ <f:fields>
84
+ <m:MultiComboBox selectedKeys="{/editRule/audiences}" items="{/audiences}" required = "true">
85
+ <c:Item key="{}" text="{}" />
86
+ </m:MultiComboBox>
87
+ </f:fields>
88
+ </f:FormElement>
89
+ <f:FormElement label="Title">
90
+ <f:fields>
91
+ <m:Input value="{/editRule/title}" required = "true" />
92
+ </f:fields>
93
+ </f:FormElement>
94
+ <f:FormElement label="Description">
95
+ <f:fields>
96
+ <m:TextArea value="{/editRule/description}" required = "true"/>
97
+ </f:fields>
98
+ </f:FormElement>
99
+ <f:FormElement label="Resolution">
100
+ <f:fields>
101
+ <m:TextArea value="{/editRule/resolution}" required = "true"/>
102
+ </f:fields>
103
+ </f:FormElement>
104
+ <f:FormElement label="Min version">
105
+ <f:fields>
106
+ <m:TextArea value="{/editRule/minversion}" required = "true"/>
107
+ </f:fields>
108
+ </f:FormElement>
109
+ <f:FormElement label="Resolution URLS">
110
+ <f:fields>
111
+ <m:Input placeholder="Text" value="{/tempLink/text}" />
112
+ <m:Input placeholder="Href" value="{/tempLink/href}" />
113
+ <m:Button text="Add Link" press="addLinkToRule" icon="sap-icon://add" />
114
+ </f:fields>
115
+ </f:FormElement>
116
+ <f:FormElement label="" fields="{/editRule/resolutionurls}">
117
+ <f:fields>
118
+ <m:Link text="{text}" href="{href}" target="_blank">
119
+ <m:layoutData>
120
+ <f:ColumnElementData cellsLarge="8" cellsSmall="12" />
121
+ </m:layoutData>
122
+ </m:Link>
123
+ </f:fields>
124
+ </f:FormElement>
125
+ </f:formElements>
126
+ </f:FormContainer>
127
+ </f:formContainers>
128
+ </f:Form>
98
129
  <m:Panel width="100%"
99
130
  height="calc(100% - 2rem)"
100
131
  visible="{= ${/selectedRuleEditKey} === 'checkFunction' }">
@@ -154,77 +185,102 @@
154
185
  </m:IconTabHeader>
155
186
  </m:contentMiddle>
156
187
  </m:Bar>
157
- <f:SimpleForm
158
- visible="{= ${/selectedRuleCreateKey} === 'ruleProperties' }"
159
- editable="true">
160
- <f:content>
161
- <m:Label text="ID" />
162
- <m:Input value="{/newRule/id}" required = "true"/>
163
- <m:Label text="Async" />
164
- <m:HBox>
165
- <m:items>
166
- <m:RadioButton groupName="asyncContext" text="true" selected="{= ${/newRule/async} === true }" select="onAsyncSwitch">
167
- <m:customData>
168
- <c:CustomData key="asyncContext" value="true" />
169
- </m:customData>
170
- <m:layoutData>
171
- <m:FlexItemData alignSelf="Center" />
172
- </m:layoutData>
173
- </m:RadioButton>
174
- <m:RadioButton groupName="asyncContext" text="false" selected="{= ${/newRule/async} !== true }" select="onAsyncSwitch">
175
- <m:customData>
176
- <c:CustomData key="asyncContext" value="false" />
177
- </m:customData>
178
- <m:layoutData>
179
- <m:FlexItemData alignSelf="Center" />
180
- </m:layoutData>
181
- </m:RadioButton>
182
- <c:Icon
183
- src="sap-icon://message-warning"
184
- class="sapUiSmallMarginBegin sapUiTinyMarginEnd"
185
- color="#E09D00"
186
- visible="{= ${/newRule/async} === true }">
187
- <c:layoutData>
188
- <m:FlexItemData alignSelf="Center" />
189
- </c:layoutData>
190
- </c:Icon>
191
- <m:Text text="{/resolveDescription}" visible="{= ${/newRule/async} === true }">
192
- <m:layoutData>
193
- <m:FlexItemData alignSelf="Center" />
194
- </m:layoutData>
195
- </m:Text>
196
- </m:items>
197
- </m:HBox>
198
- <m:Label text="Categories" />
199
- <m:MultiComboBox selectedKeys="{/newRule/categories}" items="{/categories}" required = "true">
200
- <c:Item key="{}" text="{}" />
201
- </m:MultiComboBox>
202
- <m:Label text="Audiences" />
203
- <m:MultiComboBox selectedKeys="{/newRule/audiences}" items="{/audiences}" required = "true">
204
- <c:Item key="{}" text="{}" />
205
- </m:MultiComboBox>
206
- <m:Label text="Title" />
207
- <m:Input value="{/newRule/title}" required = "true"/>
208
- <m:Label text="Description" />
209
- <m:TextArea value="{/newRule/description}" required = "true"/>
210
- <m:Label text="Resolution" />
211
- <m:TextArea value="{/newRule/resolution}" required = "true"/>
212
- <m:Label text="Min version" />
213
- <m:TextArea value="{/newRule/minversion}" required = "true"/>
214
- <m:Label text="Resolution URLS" />
215
- <l:VerticalLayout>
216
- <l:HorizontalLayout>
217
- <m:Input placeholder="Text" value="{/tempLink/text}" />
218
- <m:Input placeholder="Href" value="{/tempLink/href}" />
219
- <m:Button text="Add" press="addLinkToRule" icon="sap-icon://add" />
220
- </l:HorizontalLayout>
221
- <l:VerticalLayout
222
- content="{/newRule/resolutionurls}">
223
- <m:Link text="{text}" />
224
- </l:VerticalLayout>
225
- </l:VerticalLayout>
226
- </f:content>
227
- </f:SimpleForm>
188
+ <f:Form
189
+ editable="true"
190
+ visible="{= ${/selectedRuleCreateKey} === 'ruleProperties' }">
191
+ <f:layout>
192
+ <f:ColumnLayout />
193
+ </f:layout>
194
+ <f:formContainers>
195
+ <f:FormContainer>
196
+ <f:formElements>
197
+ <f:FormElement label="ID">
198
+ <f:fields>
199
+ <m:Input value="{/newRule/id}" required = "true" />
200
+ </f:fields>
201
+ </f:FormElement>
202
+ <f:FormElement label="Async">
203
+ <f:fields>
204
+ <m:RadioButton groupName="asyncContext" text="true" selected="{= ${/newRule/async} === true }" select="onAsyncSwitch">
205
+ <m:customData>
206
+ <c:CustomData key="asyncContext" value="true" />
207
+ </m:customData>
208
+ </m:RadioButton>
209
+ <m:RadioButton groupName="asyncContext" text="false" selected="{= ${/newRule/async} !== true }" select="onAsyncSwitch">
210
+ <m:customData>
211
+ <c:CustomData key="asyncContext" value="false" />
212
+ </m:customData>
213
+ </m:RadioButton>
214
+ <c:Icon
215
+ src="sap-icon://message-warning"
216
+ class="sapUiSmallMarginBegin sapUiTinyMarginEnd"
217
+ color="#E09D00"
218
+ visible="{= ${/newRule/async} === true }">
219
+ <c:layoutData>
220
+ <m:FlexItemData alignSelf="Center" />
221
+ </c:layoutData>
222
+ </c:Icon>
223
+ <m:Text text="{/resolveDescription}" visible="{= ${/newRule/async} === true }">
224
+ <m:layoutData>
225
+ <m:FlexItemData alignSelf="Center" />
226
+ </m:layoutData>
227
+ </m:Text>
228
+ </f:fields>
229
+ </f:FormElement>
230
+ <f:FormElement label="Categories">
231
+ <f:fields>
232
+ <m:MultiComboBox selectedKeys="{/newRule/categories}" items="{/categories}" required = "true">
233
+ <c:Item key="{}" text="{}" />
234
+ </m:MultiComboBox>
235
+ </f:fields>
236
+ </f:FormElement>
237
+ <f:FormElement label="Audiences">
238
+ <f:fields>
239
+ <m:MultiComboBox selectedKeys="{/newRule/audiences}" items="{/audiences}" required = "true">
240
+ <c:Item key="{}" text="{}" />
241
+ </m:MultiComboBox>
242
+ </f:fields>
243
+ </f:FormElement>
244
+ <f:FormElement label="Title">
245
+ <f:fields>
246
+ <m:Input value="{/newRule/title}" required = "true" />
247
+ </f:fields>
248
+ </f:FormElement>
249
+ <f:FormElement label="Description">
250
+ <f:fields>
251
+ <m:TextArea value="{/newRule/description}" required = "true"/>
252
+ </f:fields>
253
+ </f:FormElement>
254
+ <f:FormElement label="Resolution">
255
+ <f:fields>
256
+ <m:TextArea value="{/newRule/resolution}" required = "true"/>
257
+ </f:fields>
258
+ </f:FormElement>
259
+ <f:FormElement label="Min version">
260
+ <f:fields>
261
+ <m:TextArea value="{/newRule/minversion}" required = "true"/>
262
+ </f:fields>
263
+ </f:FormElement>
264
+ <f:FormElement label="Resolution URLS">
265
+ <f:fields>
266
+ <m:Input placeholder="Text" value="{/tempLink/text}" />
267
+ <m:Input placeholder="Href" value="{/tempLink/href}" />
268
+ <m:Button text="Add" press="addLinkToRule" icon="sap-icon://add" />
269
+ </f:fields>
270
+ </f:FormElement>
271
+ <f:FormElement label="" fields="{/newRule/resolutionurls}">
272
+ <f:fields>
273
+ <m:Link text="{text}" >
274
+ <m:layoutData>
275
+ <f:ColumnElementData cellsLarge="8" cellsSmall="12" />
276
+ </m:layoutData>
277
+ </m:Link>
278
+ </f:fields>
279
+ </f:FormElement>
280
+ </f:formElements>
281
+ </f:FormContainer>
282
+ </f:formContainers>
283
+ </f:Form>
228
284
  <m:Panel width="100%"
229
285
  height="calc(100% - 2rem)"
230
286
  visible="{= ${/selectedRuleCreateKey} === 'checkFunction' }">
@@ -2,7 +2,7 @@
2
2
 
3
3
  /*!
4
4
  * OpenUI5
5
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
5
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
6
6
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
7
7
  */
8
8
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
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
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
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
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
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