@sapui5/ts-types-esm 1.133.3 → 1.133.4
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 +1 -1
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.core.d.ts +1 -1
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +12 -8
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.fe.base.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
package/types/sap.fe.ina.d.ts
CHANGED
package/types/sap.fe.macros.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.133.
|
|
1
|
+
// For Library Version: 1.133.4
|
|
2
2
|
|
|
3
3
|
declare module "sap/fe/macros/Chart" {
|
|
4
4
|
import {
|
|
@@ -402,7 +402,7 @@ declare module "sap/fe/macros/KPITag" {
|
|
|
402
402
|
/**
|
|
403
403
|
* The Number to be displayed.
|
|
404
404
|
*/
|
|
405
|
-
number?:
|
|
405
|
+
number?: PropertyBindingInfo | string | PropertyBindingInfo | `{${string}}`;
|
|
406
406
|
|
|
407
407
|
/**
|
|
408
408
|
* Set it to `true` if the KPI should display its status icon.
|
|
@@ -412,22 +412,26 @@ declare module "sap/fe/macros/KPITag" {
|
|
|
412
412
|
/**
|
|
413
413
|
* The Status to be displayed.
|
|
414
414
|
*/
|
|
415
|
-
status?:
|
|
415
|
+
status?: PropertyBindingInfo | string | PropertyBindingInfo | `{${string}}`;
|
|
416
416
|
|
|
417
417
|
/**
|
|
418
418
|
* The Text to be displayed.
|
|
419
419
|
*/
|
|
420
|
-
text?:
|
|
420
|
+
text?: PropertyBindingInfo | string | PropertyBindingInfo | `{${string}}`;
|
|
421
421
|
|
|
422
422
|
/**
|
|
423
423
|
* The Tooltip to be displayed.
|
|
424
424
|
*/
|
|
425
|
-
tooltip?:
|
|
425
|
+
tooltip?:
|
|
426
|
+
| PropertyBindingInfo
|
|
427
|
+
| string
|
|
428
|
+
| PropertyBindingInfo
|
|
429
|
+
| `{${string}}`;
|
|
426
430
|
|
|
427
431
|
/**
|
|
428
432
|
* The Unit of Measure of the number to be displayed.
|
|
429
433
|
*/
|
|
430
|
-
unit?:
|
|
434
|
+
unit?: PropertyBindingInfo | string | PropertyBindingInfo | `{${string}}`;
|
|
431
435
|
}
|
|
432
436
|
|
|
433
437
|
/**
|
|
@@ -522,7 +526,7 @@ declare module "sap/fe/macros/MultiValueField" {
|
|
|
522
526
|
/**
|
|
523
527
|
* Property added to be able to add data / items to the multi value field via a different model
|
|
524
528
|
*/
|
|
525
|
-
items?:
|
|
529
|
+
items?: PropertyBindingInfo | PropertyBindingInfo | `{${string}}`;
|
|
526
530
|
|
|
527
531
|
/**
|
|
528
532
|
* Defines the relative Metadata path to the MultiValueField.
|
|
@@ -618,7 +622,7 @@ declare module "sap/fe/macros/RichTextEditor" {
|
|
|
618
622
|
/**
|
|
619
623
|
* The value contained in the editor. You can use this attribute to set a default value.
|
|
620
624
|
*/
|
|
621
|
-
value?:
|
|
625
|
+
value?: PropertyBindingInfo | PropertyBindingInfo | `{${string}}`;
|
|
622
626
|
|
|
623
627
|
/**
|
|
624
628
|
* With the 'buttonGroups' attribute you can customize the buttons that are displayed on the toolbar of
|
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.fe.tools.d.ts
CHANGED