@openui5/sap.ui.testrecorder 1.113.0 → 1.115.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 CHANGED
@@ -192,11 +192,6 @@ Copyright: 2012 Matteo Spinelli
192
192
  License: MIT
193
193
  Comment: these files belong to: cubiq.org - swipeview
194
194
 
195
- Files: src/sap.ui.core/src/sap/ui/thirdparty/mobify-carousel.js
196
- Copyright: Mobify R&D Inc.
197
- License: MIT
198
- Comment: these files belong to: Mobify.js
199
-
200
195
  Files: src/sap.ui.core/src/sap/ui/thirdparty/zyngascroll.js
201
196
  Copyright: 2011 Zynga Inc.
202
197
  License: MIT
package/THIRDPARTY.txt CHANGED
@@ -143,12 +143,6 @@ License: MIT
143
143
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
144
144
  Contained in: src/sap.ui.core/src/sap/ui/thirdparty/swipe-view.js
145
145
 
146
- Component: Mobify.js, version: 1.1
147
- Copyright: Mobify R&D Inc.
148
- License: MIT
149
- License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
150
- Contained in: src/sap.ui.core/src/sap/ui/thirdparty/mobify-carousel.js
151
-
152
146
  Component: Zynga Scroller, version: 1.2.1-0-g5d43806
153
147
  Copyright: 2011 Zynga Inc.
154
148
  License: MIT
@@ -478,7 +472,7 @@ License: Apache-2.0
478
472
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
479
473
  Contained in: lib/jsdoc/ui5/plugin.js
480
474
 
481
- Component: SAP Theming Base Content, version: 11.2.1
475
+ Component: SAP Theming Base Content, version: 11.3.0
482
476
  Copyright: SAP SE or an SAP affiliate company and Theming Base Content contributors
483
477
  License: Apache-2.0
484
478
  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.testrecorder",
3
- "version": "1.113.0",
3
+ "version": "1.115.0",
4
4
  "description": "OpenUI5 UI Library sap.ui.testrecorder",
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.113.0",
18
- "@openui5/sap.ui.codeeditor": "1.113.0",
19
- "@openui5/sap.ui.core": "1.113.0",
20
- "@openui5/sap.ui.layout": "1.113.0",
21
- "@openui5/sap.ui.support": "1.113.0"
17
+ "@openui5/sap.m": "1.115.0",
18
+ "@openui5/sap.ui.codeeditor": "1.115.0",
19
+ "@openui5/sap.ui.core": "1.115.0",
20
+ "@openui5/sap.ui.layout": "1.115.0",
21
+ "@openui5/sap.ui.support": "1.115.0"
22
22
  }
23
23
  }
@@ -6,7 +6,7 @@
6
6
  <copyright>OpenUI5
7
7
  * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
8
8
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.</copyright>
9
- <version>1.113.0</version>
9
+ <version>1.115.0</version>
10
10
 
11
11
  <documentation>UI5 library: sap.ui.testrecorder</documentation>
12
12
 
@@ -5,9 +5,9 @@
5
5
  */
6
6
 
7
7
  sap.ui.define([
8
- "sap/ui/thirdparty/jquery",
8
+ "sap/base/util/deepExtend",
9
9
  "sap/ui/base/Object"
10
- ], function ($, BaseObject) {
10
+ ], function (deepExtend, BaseObject) {
11
11
  "use strict";
12
12
 
13
13
  /**
@@ -31,7 +31,7 @@ sap.ui.define([
31
31
  if (!mData || !mData.controlSelector) {
32
32
  reject(new Error("Control selector is required!"));
33
33
  }
34
- var sSnippet = this._generate($.extend(true, {}, mData));
34
+ var sSnippet = this._generate(deepExtend({}, mData));
35
35
  resolve(sSnippet);
36
36
  }.bind(this));
37
37
  };
@@ -6,7 +6,7 @@
6
6
 
7
7
  sap.ui.define([
8
8
  "sap/ui/base/Object",
9
- "sap/ui/thirdparty/jquery",
9
+ "sap/base/util/extend",
10
10
  "sap/ui/testrecorder/CommunicationBus",
11
11
  "sap/ui/testrecorder/CommunicationChannels",
12
12
  "sap/ui/testrecorder/mutationObservers/AppMutationObserver",
@@ -23,7 +23,7 @@ sap.ui.define([
23
23
  "sap/ui/testrecorder/codeSnippets/RawSnippetUtil",
24
24
  "sap/ui/testrecorder/codeSnippets/CodeSnippetProvider",
25
25
  "sap/ui/testrecorder/ui/models/SharedModel"
26
- ], function (BaseObject, $, CommunicationBus, CommunicationChannels, AppMutationObserver, ElementMutationObserver, Highlighter, _ControlFinder, ControlAPI, ControlInspectorRepo, constants,
26
+ ], function (BaseObject, extend, CommunicationBus, CommunicationChannels, AppMutationObserver, ElementMutationObserver, Highlighter, _ControlFinder, ControlAPI, ControlInspectorRepo, constants,
27
27
  DialectRegistry, Dialects, ControlSelectorGenerator, POMethodUtil, RawSnippetUtil, CodeSnippetProvider, SharedModel) {
28
28
  "use strict";
29
29
 
@@ -126,7 +126,7 @@ sap.ui.define([
126
126
  if (DialectRegistry.getActiveDialect() === Dialects.RAW) {
127
127
  return RawSnippetUtil.getJSON(aSnippets, mSelectorSettings);
128
128
  } else {
129
- return POMethodUtil.getPOMethod(aSnippets, $.extend({
129
+ return POMethodUtil.getPOMethod(aSnippets, extend({
130
130
  action: mData.action,
131
131
  assertion: mData.assertion
132
132
  }, mSelectorSettings), DialectRegistry.getActiveDialect() === Dialects.WDI5);
@@ -24,7 +24,7 @@ sap.ui.define([
24
24
  * @namespace
25
25
  * @alias sap.ui.testrecorder
26
26
  * @author SAP SE
27
- * @version 1.113.0
27
+ * @version 1.115.0
28
28
  * @since 1.74
29
29
  * @public
30
30
  */
@@ -38,7 +38,7 @@ sap.ui.define([
38
38
  controls: [],
39
39
  elements: [],
40
40
  noLibraryCSS: true,
41
- version: "1.113.0",
41
+ version: "1.115.0",
42
42
  extensions: {
43
43
  //Configuration used for rule loading of Support Assistant
44
44
  "sap.ui.support": {