@sapui5/ts-types-esm 1.134.0 → 1.134.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
package/types/sap.ui.vbm.d.ts
CHANGED
package/types/sap.ushell.d.ts
CHANGED
|
@@ -1,4 +1,30 @@
|
|
|
1
|
-
// For Library Version: 1.134.
|
|
1
|
+
// For Library Version: 1.134.1
|
|
2
|
+
|
|
3
|
+
declare module "sap/ushell/thirdparty/webcomponents-base" {
|
|
4
|
+
/**
|
|
5
|
+
* Entry object of the URLListValidator.
|
|
6
|
+
*/
|
|
7
|
+
export type Entry = {
|
|
8
|
+
/**
|
|
9
|
+
* The protocol of the URL, can be falsy to allow all protocols for an entry e.g. "", "http", "mailto"
|
|
10
|
+
*/
|
|
11
|
+
protocol?: string;
|
|
12
|
+
/**
|
|
13
|
+
* The host of the URL, can be falsy to allow all hosts. A wildcard asterisk can be set at the beginning,
|
|
14
|
+
* e.g. "examples.com", "*.example.com"
|
|
15
|
+
*/
|
|
16
|
+
host?: string;
|
|
17
|
+
/**
|
|
18
|
+
* The port of the URL, can be falsy to allow all ports, e.g. "", "8080"
|
|
19
|
+
*/
|
|
20
|
+
port?: string;
|
|
21
|
+
/**
|
|
22
|
+
* the path of the URL, path of the url, can be falsy to allow all paths. A wildcard asterisk can be set
|
|
23
|
+
* at the end, e.g. "/my-example*", "/my-news"
|
|
24
|
+
*/
|
|
25
|
+
path?: string;
|
|
26
|
+
};
|
|
27
|
+
}
|
|
2
28
|
|
|
3
29
|
declare module "sap/ushell/library" {
|
|
4
30
|
/**
|
|
@@ -14171,6 +14197,8 @@ declare namespace sap {
|
|
|
14171
14197
|
|
|
14172
14198
|
"sap/ushell/System": undefined;
|
|
14173
14199
|
|
|
14200
|
+
"sap/ushell/thirdparty/webcomponents-base": undefined;
|
|
14201
|
+
|
|
14174
14202
|
"sap/ushell/ui/appfinder/AppBox": undefined;
|
|
14175
14203
|
|
|
14176
14204
|
"sap/ushell/ui/footerbar/AddBookmarkButton": undefined;
|