@openui5/types 1.115.1 → 1.117.0
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/README.md +6 -5
- package/package.json +1 -1
- package/types/index.d.ts +9 -3
- package/types/sap.f.d.ts +196 -276
- package/types/sap.m.d.ts +2202 -2899
- package/types/sap.tnt.d.ts +64 -29
- package/types/sap.ui.codeeditor.d.ts +11 -17
- package/types/sap.ui.commons.d.ts +278 -422
- package/types/sap.ui.core.d.ts +1160 -1090
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +24 -74
- package/types/sap.ui.integration.d.ts +192 -100
- package/types/sap.ui.layout.d.ts +100 -69
- package/types/sap.ui.mdc.d.ts +1100 -913
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +9 -15
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +140 -192
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +277 -501
- package/types/sap.ui.ux3.d.ts +263 -504
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +864 -342
- package/types/sap.ui.webc.main.d.ts +4337 -1135
- package/types/sap.uxap.d.ts +51 -91
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.117.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/suite/library" {
|
|
4
4
|
/**
|
|
@@ -403,13 +403,10 @@ declare module "sap/ui/suite/TaskCircle" {
|
|
|
403
403
|
|
|
404
404
|
export interface TaskCircle$PressEventParameters {}
|
|
405
405
|
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
export type $TaskCirclePressEventParameters = TaskCircle$PressEventParameters;
|
|
411
|
-
|
|
412
|
-
export type TaskCircle$PressEvent = Event<TaskCircle$PressEventParameters>;
|
|
406
|
+
export type TaskCircle$PressEvent = Event<
|
|
407
|
+
TaskCircle$PressEventParameters,
|
|
408
|
+
TaskCircle
|
|
409
|
+
>;
|
|
413
410
|
}
|
|
414
411
|
|
|
415
412
|
declare module "sap/ui/suite/VerticalProgressIndicator" {
|
|
@@ -681,13 +678,10 @@ declare module "sap/ui/suite/VerticalProgressIndicator" {
|
|
|
681
678
|
|
|
682
679
|
export interface VerticalProgressIndicator$PressEventParameters {}
|
|
683
680
|
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
export type $VerticalProgressIndicatorPressEventParameters = VerticalProgressIndicator$PressEventParameters;
|
|
689
|
-
|
|
690
|
-
export type VerticalProgressIndicator$PressEvent = Event<VerticalProgressIndicator$PressEventParameters>;
|
|
681
|
+
export type VerticalProgressIndicator$PressEvent = Event<
|
|
682
|
+
VerticalProgressIndicator$PressEventParameters,
|
|
683
|
+
VerticalProgressIndicator
|
|
684
|
+
>;
|
|
691
685
|
}
|
|
692
686
|
|
|
693
687
|
declare namespace sap {
|