@sapui5/sap.fe.placeholder 1.100.0 → 1.101.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/package.json
CHANGED
|
@@ -1,41 +1,40 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
1
|
+
/*!
|
|
2
|
+
* SAP UI development toolkit for HTML5 (SAPUI5)
|
|
3
3
|
(c) Copyright 2009-2021 SAP SE. All rights reserved
|
|
4
4
|
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
/**
|
|
8
|
-
* @namespace
|
|
9
|
-
* @name sap.fe.placeholder
|
|
10
|
-
* @private
|
|
11
|
-
* @experimental
|
|
12
|
-
*/
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* Initialization Code and shared classes of library sap.fe.core
|
|
16
|
-
*/
|
|
17
7
|
sap.ui.define(
|
|
18
8
|
[
|
|
19
|
-
"sap/ui/core/Core", // implicit dependency, provides sap.ui.getCore()
|
|
9
|
+
"sap/ui/core/Core", // implicit dependency, provides sap.ui.getCore(),
|
|
20
10
|
"sap/ui/core/library" // library dependency
|
|
21
11
|
],
|
|
22
|
-
function() {
|
|
12
|
+
function () {
|
|
23
13
|
"use strict";
|
|
24
14
|
|
|
15
|
+
/**
|
|
16
|
+
* Fiori Elements Placeholder Library
|
|
17
|
+
*
|
|
18
|
+
* @namespace
|
|
19
|
+
* @name sap.fe.placeholder
|
|
20
|
+
* @private
|
|
21
|
+
* @experimental
|
|
22
|
+
*/
|
|
23
|
+
|
|
25
24
|
// library dependencies
|
|
26
25
|
// delegate further initialization of this library to the Core
|
|
27
|
-
sap.ui.getCore().initLibrary({
|
|
26
|
+
var thisLib = sap.ui.getCore().initLibrary({
|
|
28
27
|
name: "sap.fe.placeholder",
|
|
29
28
|
dependencies: ["sap.ui.core"],
|
|
30
29
|
types: [],
|
|
31
30
|
interfaces: [],
|
|
32
31
|
controls: [],
|
|
33
32
|
elements: [],
|
|
34
|
-
version: "1.
|
|
33
|
+
version: "1.101.0",
|
|
35
34
|
noLibraryCSS: false,
|
|
36
35
|
extensions: {}
|
|
37
36
|
});
|
|
38
37
|
|
|
39
|
-
return
|
|
38
|
+
return thisLib;
|
|
40
39
|
}
|
|
41
40
|
);
|