@sapui5/sap.fe.placeholder 1.99.0 → 1.101.1

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/sap.fe.placeholder",
3
- "version": "1.99.0",
3
+ "version": "1.101.1",
4
4
  "description": "SAPUI5 Library sap.fe.placeholder",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "author": "SAP SE (https://www.sap.com)",
@@ -8,6 +8,7 @@
8
8
  "scripts": {
9
9
  "build": "echo 'nothing to do'",
10
10
  "prepare-npm-sources": "echo 'nothing to do'",
11
+ "prepare-ts-class-doc": "echo 'nothing to do'",
11
12
  "prepare-ui5-build-sources": "echo 'nothing to do'",
12
13
  "test": "echo 'nothing to do'"
13
14
  },
@@ -6,7 +6,7 @@
6
6
  <copyright>SAP UI development toolkit for HTML5 (SAPUI5)
7
7
  (c) Copyright 2009-2021 SAP SE. All rights reserved
8
8
  </copyright>
9
- <version>1.99.0</version>
9
+ <version>1.101.1</version>
10
10
 
11
11
  <documentation>UI5 library: sap.fe.placeholder</documentation>
12
12
 
@@ -1,41 +1,40 @@
1
- /*
2
- * ! SAP UI development toolkit for HTML5 (SAPUI5)
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.99.0",
33
+ version: "1.101.1",
35
34
  noLibraryCSS: false,
36
35
  extensions: {}
37
36
  });
38
37
 
39
- return sap.fe.placeholder;
38
+ return thisLib;
40
39
  }
41
40
  );