@sapui5/ts-types 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 namespace sap {
|
|
4
30
|
/**
|
|
@@ -13949,6 +13975,8 @@ declare namespace sap {
|
|
|
13949
13975
|
|
|
13950
13976
|
"sap/ushell/System": undefined;
|
|
13951
13977
|
|
|
13978
|
+
"sap/ushell/thirdparty/webcomponents-base": undefined;
|
|
13979
|
+
|
|
13952
13980
|
"sap/ushell/ui/appfinder/AppBox": undefined;
|
|
13953
13981
|
|
|
13954
13982
|
"sap/ushell/ui/footerbar/AddBookmarkButton": undefined;
|