@openui5/sap.ui.support 1.134.0 → 1.135.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/THIRDPARTY.txt +2 -2
- package/package.json +6 -6
- package/src/sap/ui/support/.library +1 -1
- package/src/sap/ui/support/RuleAnalyzer.js +1 -1
- package/src/sap/ui/support/jQuery.sap.support.js +1 -1
- package/src/sap/ui/support/library.js +2 -2
- package/src/sap/ui/support/supportRules/CoreFacade.js +14 -1
- package/src/sap/ui/support/supportRules/IssueManager.js +3 -3
- package/src/sap/ui/support/supportRules/RuleSet.js +1 -1
- package/src/sap/ui/support/supportRules/Storage.js +1 -1
- package/src/sap/ui/support/supportRules/WindowCommunicationBus.js +1 -1
- package/src/sap/ui/support/supportRules/ui/controllers/PresetsController.js +1 -1
package/THIRDPARTY.txt
CHANGED
|
@@ -6,7 +6,7 @@ The full text of all referenced licenses is appended at the end of this file.
|
|
|
6
6
|
|
|
7
7
|
Library: sap.m:
|
|
8
8
|
|
|
9
|
-
Component: purify.js, version: 3.
|
|
9
|
+
Component: purify.js, version: 3.2.4
|
|
10
10
|
Copyright: Mario Heiderich
|
|
11
11
|
License: Apache-2.0
|
|
12
12
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
|
|
@@ -462,7 +462,7 @@ License: Apache-2.0
|
|
|
462
462
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
|
|
463
463
|
Contained in: lib/jsdoc/ui5/plugin.js
|
|
464
464
|
|
|
465
|
-
Component: SAP Theming Base Content, version: 11.
|
|
465
|
+
Component: SAP Theming Base Content, version: 11.28.2
|
|
466
466
|
Copyright: SAP SE or an SAP affiliate company and Theming Base Content contributors
|
|
467
467
|
License: Apache-2.0
|
|
468
468
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openui5/sap.ui.support",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.135.0",
|
|
4
4
|
"description": "OpenUI5 UI Library sap.ui.support",
|
|
5
5
|
"author": "SAP SE (https://www.sap.com)",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
"url": "https://github.com/SAP/openui5.git"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@openui5/sap.m": "1.
|
|
18
|
-
"@openui5/sap.ui.codeeditor": "1.
|
|
19
|
-
"@openui5/sap.ui.core": "1.
|
|
20
|
-
"@openui5/sap.ui.fl": "1.
|
|
21
|
-
"@openui5/sap.ui.layout": "1.
|
|
17
|
+
"@openui5/sap.m": "1.135.0",
|
|
18
|
+
"@openui5/sap.ui.codeeditor": "1.135.0",
|
|
19
|
+
"@openui5/sap.ui.core": "1.135.0",
|
|
20
|
+
"@openui5/sap.ui.fl": "1.135.0",
|
|
21
|
+
"@openui5/sap.ui.layout": "1.135.0"
|
|
22
22
|
}
|
|
23
23
|
}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<copyright>OpenUI5
|
|
7
7
|
* (c) Copyright 2009-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.
|
|
9
|
+
<version>1.135.0</version>
|
|
10
10
|
|
|
11
11
|
<documentation>UI5 library: sap.ui.support</documentation>
|
|
12
12
|
|
|
@@ -23,7 +23,7 @@ sap.ui.define(["sap/ui/core/Lib", "sap/ui/base/DataType", "sap/ui/core/library"]
|
|
|
23
23
|
* @namespace
|
|
24
24
|
* @alias sap.ui.support
|
|
25
25
|
* @author SAP SE
|
|
26
|
-
* @version 1.
|
|
26
|
+
* @version 1.135.0
|
|
27
27
|
* @since 1.50
|
|
28
28
|
* @public
|
|
29
29
|
*/
|
|
@@ -38,7 +38,7 @@ sap.ui.define(["sap/ui/core/Lib", "sap/ui/base/DataType", "sap/ui/core/library"]
|
|
|
38
38
|
controls: [],
|
|
39
39
|
elements: [],
|
|
40
40
|
noLibraryCSS: true,
|
|
41
|
-
version: "1.
|
|
41
|
+
version: "1.135.0",
|
|
42
42
|
extensions: {
|
|
43
43
|
//Configuration used for rule loading of Support Assistant
|
|
44
44
|
"sap.ui.support": {
|
|
@@ -17,12 +17,12 @@ sap.ui.define([
|
|
|
17
17
|
var coreInstance = null;
|
|
18
18
|
|
|
19
19
|
/**
|
|
20
|
-
* @class
|
|
21
20
|
* The CoreFacade interface allows rule developers to access the metadata, models, UI areas and components of the Core.
|
|
22
21
|
*
|
|
23
22
|
* <h3>Usage</h3>
|
|
24
23
|
* The CoreFacade is passed as second argument to all rule check functions.
|
|
25
24
|
*
|
|
25
|
+
* @class
|
|
26
26
|
* @name sap.ui.support.CoreFacade
|
|
27
27
|
* @param {object} oCore Core object as available in core plugins
|
|
28
28
|
* @hideconstructor
|
|
@@ -34,28 +34,41 @@ sap.ui.define([
|
|
|
34
34
|
return /** @lends sap.ui.support.CoreFacade.prototype */ {
|
|
35
35
|
/**
|
|
36
36
|
* Gets the Metadata from the Core object.
|
|
37
|
+
*
|
|
37
38
|
* @public
|
|
39
|
+
* @deprecated As of version 1.119, without replacement. In future major versions, the Core no longer has
|
|
40
|
+
* a class nature and no longer inherits from sap.ui.base.Object and therefore no longer has metadata.
|
|
41
|
+
* @returns {sap.ui.base.Metadata} Metadata object describing the Core object
|
|
38
42
|
*/
|
|
39
43
|
getMetadata: function () {
|
|
40
44
|
return coreInstance.getMetadata();
|
|
41
45
|
},
|
|
46
|
+
|
|
42
47
|
/**
|
|
43
48
|
* Gets the UI areas from the Core object.
|
|
49
|
+
*
|
|
44
50
|
* @public
|
|
51
|
+
* @returns {Object<sap.ui.core.ID,sap.ui.core.UIArea>} Object with all UIAreas, keyed by their ID
|
|
45
52
|
*/
|
|
46
53
|
getUIAreas: function () {
|
|
47
54
|
return UIAreaRegistry.all();
|
|
48
55
|
},
|
|
56
|
+
|
|
49
57
|
/**
|
|
50
58
|
* Gets the Components from the Core object.
|
|
59
|
+
*
|
|
51
60
|
* @public
|
|
61
|
+
* @returns {Object<sap.ui.core.ID,sap.ui.core.Component>} Object with all components, keyed by their ID
|
|
52
62
|
*/
|
|
53
63
|
getComponents: function () {
|
|
54
64
|
return ComponentRegistry.all();
|
|
55
65
|
},
|
|
66
|
+
|
|
56
67
|
/**
|
|
57
68
|
* Gets the Models from the Core object.
|
|
58
69
|
* @public
|
|
70
|
+
* @deprecated As of version 1.118.0, without replacement. In future major versions, the Core no longer has global models.
|
|
71
|
+
* @returns {Object<string,sap.ui.model.Model>|undefined} Object with all models, keyed by their name
|
|
59
72
|
*/
|
|
60
73
|
getModels: function () {
|
|
61
74
|
return coreInstance.oModels;
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
sap.ui.define(["sap/base/util/deepExtend", "sap/ui/
|
|
8
|
-
function(deepExtend,
|
|
7
|
+
sap.ui.define(["sap/base/util/deepExtend", "sap/ui/core/Element", "sap/ui/support/library", "sap/ui/support/supportRules/Constants"],
|
|
8
|
+
function(deepExtend, Element, library, constants) {
|
|
9
9
|
"use strict";
|
|
10
10
|
/**
|
|
11
11
|
* Issues stored in the IssueManager.
|
|
@@ -416,12 +416,12 @@ sap.ui.define(["sap/base/util/deepExtend", "sap/ui/base/Object", "sap/ui/core/El
|
|
|
416
416
|
};
|
|
417
417
|
|
|
418
418
|
/**
|
|
419
|
-
* @class
|
|
420
419
|
* The IssueManagerFacade allows rule developers to add new issues.
|
|
421
420
|
*
|
|
422
421
|
* <h3>Usage</h3>
|
|
423
422
|
* The IssueManagerFacade is passed as first argument to all rule check functions.
|
|
424
423
|
*
|
|
424
|
+
* @class
|
|
425
425
|
* @name sap.ui.support.IssueManagerFacade
|
|
426
426
|
* @param {object} oRule Rule for the IssueManagerFacade
|
|
427
427
|
* @hideconstructor
|
|
@@ -24,7 +24,7 @@ sap.ui.define([
|
|
|
24
24
|
* @class
|
|
25
25
|
* @alias sap.ui.support.WindowCommunicationBus
|
|
26
26
|
* @author SAP SE
|
|
27
|
-
* @version 1.
|
|
27
|
+
* @version 1.135.0
|
|
28
28
|
* @private
|
|
29
29
|
*/
|
|
30
30
|
var WindowCommunicationBus = BaseObject.extend("sap.ui.support.supportRules.WindowCommunicationBus", {
|