@openui5/types 1.122.1 → 1.123.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 +1 -1
- package/types/sap.f.d.ts +435 -98
- package/types/sap.m.d.ts +3963 -401
- package/types/sap.tnt.d.ts +46 -10
- package/types/sap.ui.codeeditor.d.ts +16 -2
- package/types/sap.ui.commons.d.ts +797 -121
- package/types/sap.ui.core.d.ts +13204 -12618
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +40 -3
- package/types/sap.ui.integration.d.ts +147 -9
- package/types/sap.ui.layout.d.ts +171 -47
- package/types/sap.ui.mdc.d.ts +554 -71
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +27 -3
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +278 -74
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +481 -42
- package/types/sap.ui.ux3.d.ts +527 -34
- package/types/sap.ui.webc.common.d.ts +7 -1
- package/types/sap.ui.webc.fiori.d.ts +351 -29
- package/types/sap.ui.webc.main.d.ts +1035 -83
- package/types/sap.uxap.d.ts +123 -23
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.123.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/suite/library" {
|
|
4
4
|
/**
|
|
@@ -380,7 +380,13 @@ declare module "sap/ui/suite/TaskCircle" {
|
|
|
380
380
|
iValue?: int
|
|
381
381
|
): this;
|
|
382
382
|
}
|
|
383
|
-
|
|
383
|
+
/**
|
|
384
|
+
* Describes the settings that can be provided to the TaskCircle constructor.
|
|
385
|
+
*
|
|
386
|
+
* @deprecated (since 1.108) - there's no replacement for this functionality as no active use cases are
|
|
387
|
+
* known
|
|
388
|
+
* @experimental (since 1.2) - The API may change. Use with care.
|
|
389
|
+
*/
|
|
384
390
|
export interface $TaskCircleSettings extends $ControlSettings {
|
|
385
391
|
/**
|
|
386
392
|
* Current value of the task circle to be displayed. In dependency of the parameters maxValue and minValue
|
|
@@ -422,8 +428,14 @@ declare module "sap/ui/suite/TaskCircle" {
|
|
|
422
428
|
press?: (oEvent: Event) => void;
|
|
423
429
|
}
|
|
424
430
|
|
|
431
|
+
/**
|
|
432
|
+
* Parameters of the TaskCircle#press event.
|
|
433
|
+
*/
|
|
425
434
|
export interface TaskCircle$PressEventParameters {}
|
|
426
435
|
|
|
436
|
+
/**
|
|
437
|
+
* Event object of the TaskCircle#press event.
|
|
438
|
+
*/
|
|
427
439
|
export type TaskCircle$PressEvent = Event<
|
|
428
440
|
TaskCircle$PressEventParameters,
|
|
429
441
|
TaskCircle
|
|
@@ -686,7 +698,13 @@ declare module "sap/ui/suite/VerticalProgressIndicator" {
|
|
|
686
698
|
*/
|
|
687
699
|
setPercentage(iPercentage: int): this;
|
|
688
700
|
}
|
|
689
|
-
|
|
701
|
+
/**
|
|
702
|
+
* Describes the settings that can be provided to the VerticalProgressIndicator constructor.
|
|
703
|
+
*
|
|
704
|
+
* @deprecated (since 1.108) - there's no replacement for this functionality as no active use cases are
|
|
705
|
+
* known
|
|
706
|
+
* @experimental (since 1.2) - The API may change. Use with care.
|
|
707
|
+
*/
|
|
690
708
|
export interface $VerticalProgressIndicatorSettings extends $ControlSettings {
|
|
691
709
|
/**
|
|
692
710
|
* The numerical value between 0 and 100 which determines the height of the vertical bar. Values higher
|
|
@@ -710,8 +728,14 @@ declare module "sap/ui/suite/VerticalProgressIndicator" {
|
|
|
710
728
|
press?: (oEvent: Event) => void;
|
|
711
729
|
}
|
|
712
730
|
|
|
731
|
+
/**
|
|
732
|
+
* Parameters of the VerticalProgressIndicator#press event.
|
|
733
|
+
*/
|
|
713
734
|
export interface VerticalProgressIndicator$PressEventParameters {}
|
|
714
735
|
|
|
736
|
+
/**
|
|
737
|
+
* Event object of the VerticalProgressIndicator#press event.
|
|
738
|
+
*/
|
|
715
739
|
export type VerticalProgressIndicator$PressEvent = Event<
|
|
716
740
|
VerticalProgressIndicator$PressEventParameters,
|
|
717
741
|
VerticalProgressIndicator
|