@openui5/ts-types-esm 1.92.0 → 1.95.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 +15 -0
- package/package.json +1 -1
- package/types/sap.f.d.ts +897 -482
- package/types/sap.m.d.ts +5672 -4629
- package/types/sap.tnt.d.ts +159 -128
- package/types/sap.ui.codeeditor.d.ts +56 -58
- package/types/sap.ui.commons.d.ts +1386 -1386
- package/types/sap.ui.core.d.ts +4395 -4210
- package/types/sap.ui.dt.d.ts +2 -4
- package/types/sap.ui.fl.d.ts +33 -31
- package/types/sap.ui.integration.d.ts +329 -126
- package/types/sap.ui.layout.d.ts +582 -575
- package/types/sap.ui.mdc.d.ts +35 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +53 -53
- package/types/sap.ui.support.d.ts +6 -12
- package/types/sap.ui.table.d.ts +254 -249
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +976 -710
- package/types/sap.ui.ux3.d.ts +785 -793
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1952 -767
- package/types/sap.ui.webc.main.d.ts +7518 -6031
- package/types/sap.uxap.d.ts +393 -231
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.95.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/fl/library" {}
|
|
4
4
|
|
|
@@ -660,6 +660,31 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
660
660
|
mSettings?: $VariantManagementSettings
|
|
661
661
|
);
|
|
662
662
|
|
|
663
|
+
/**
|
|
664
|
+
* Creates a new subclass of class sap.ui.fl.variants.VariantManagement with name `sClassName` and enriches
|
|
665
|
+
* it with the information contained in `oClassInfo`.
|
|
666
|
+
*
|
|
667
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
668
|
+
*/
|
|
669
|
+
static extend<T extends Record<string, unknown>>(
|
|
670
|
+
/**
|
|
671
|
+
* Name of the class being created
|
|
672
|
+
*/
|
|
673
|
+
sClassName: string,
|
|
674
|
+
/**
|
|
675
|
+
* Object literal with information about the class
|
|
676
|
+
*/
|
|
677
|
+
oClassInfo?: sap.ClassInfo<T, VariantManagement>,
|
|
678
|
+
/**
|
|
679
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
680
|
+
* used by this class
|
|
681
|
+
*/
|
|
682
|
+
FNMetaImpl?: Function
|
|
683
|
+
): Function;
|
|
684
|
+
/**
|
|
685
|
+
* Returns a metadata object for class sap.ui.fl.variants.VariantManagement.
|
|
686
|
+
*/
|
|
687
|
+
static getMetadata(): ElementMetadata;
|
|
663
688
|
/**
|
|
664
689
|
* Adds some for into the association {@link #getFor for}.
|
|
665
690
|
*/
|
|
@@ -961,27 +986,6 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
961
986
|
*/
|
|
962
987
|
oListener?: object
|
|
963
988
|
): this;
|
|
964
|
-
/**
|
|
965
|
-
* Creates a new subclass of class sap.ui.fl.variants.VariantManagement with name `sClassName` and enriches
|
|
966
|
-
* it with the information contained in `oClassInfo`.
|
|
967
|
-
*
|
|
968
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
969
|
-
*/
|
|
970
|
-
static extend<T extends Record<string, unknown>>(
|
|
971
|
-
/**
|
|
972
|
-
* Name of the class being created
|
|
973
|
-
*/
|
|
974
|
-
sClassName: string,
|
|
975
|
-
/**
|
|
976
|
-
* Object literal with information about the class
|
|
977
|
-
*/
|
|
978
|
-
oClassInfo?: sap.ClassInfo<T, VariantManagement>,
|
|
979
|
-
/**
|
|
980
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
981
|
-
* used by this class
|
|
982
|
-
*/
|
|
983
|
-
FNMetaImpl?: Function
|
|
984
|
-
): Function;
|
|
985
989
|
/**
|
|
986
990
|
* Fires event {@link #event:cancel cancel} to attached listeners.
|
|
987
991
|
*/
|
|
@@ -1113,10 +1117,6 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1113
1117
|
* Default value is `false`.
|
|
1114
1118
|
*/
|
|
1115
1119
|
getManualVariantKey(): boolean;
|
|
1116
|
-
/**
|
|
1117
|
-
* Returns a metadata object for class sap.ui.fl.variants.VariantManagement.
|
|
1118
|
-
*/
|
|
1119
|
-
static getMetadata(): ElementMetadata;
|
|
1120
1120
|
/**
|
|
1121
1121
|
* Gets current value of property {@link #getModelName modelName}.
|
|
1122
1122
|
*
|
|
@@ -1431,27 +1431,27 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1431
1431
|
* This event is fired when the Save View dialog or the Save As dialog is closed with the
|
|
1432
1432
|
* save button.
|
|
1433
1433
|
*/
|
|
1434
|
-
save?:
|
|
1434
|
+
save?: (oEvent: Event) => void;
|
|
1435
1435
|
|
|
1436
1436
|
/**
|
|
1437
1437
|
* This event is fired when users presses the cancel button inside Save As dialog.
|
|
1438
1438
|
*/
|
|
1439
|
-
cancel?:
|
|
1439
|
+
cancel?: (oEvent: Event) => void;
|
|
1440
1440
|
|
|
1441
1441
|
/**
|
|
1442
1442
|
* This event is fired when users apply changes to variants in the Manage Views dialog.
|
|
1443
1443
|
*/
|
|
1444
|
-
manage?:
|
|
1444
|
+
manage?: (oEvent: Event) => void;
|
|
1445
1445
|
|
|
1446
1446
|
/**
|
|
1447
1447
|
* This event is fired when the model and context are set.
|
|
1448
1448
|
*/
|
|
1449
|
-
initialized?:
|
|
1449
|
+
initialized?: (oEvent: Event) => void;
|
|
1450
1450
|
|
|
1451
1451
|
/**
|
|
1452
1452
|
* This event is fired when a new variant is selected.
|
|
1453
1453
|
*/
|
|
1454
|
-
select?:
|
|
1454
|
+
select?: (oEvent: Event) => void;
|
|
1455
1455
|
}
|
|
1456
1456
|
}
|
|
1457
1457
|
|
|
@@ -1648,6 +1648,8 @@ declare namespace sap {
|
|
|
1648
1648
|
|
|
1649
1649
|
"sap/ui/fl/apply/_internal/changes/descriptor/app/SetTitle": undefined;
|
|
1650
1650
|
|
|
1651
|
+
"sap/ui/fl/apply/_internal/changes/descriptor/fiori/SetAbstract": undefined;
|
|
1652
|
+
|
|
1651
1653
|
"sap/ui/fl/apply/_internal/changes/descriptor/fiori/SetRegistrationIds": undefined;
|
|
1652
1654
|
|
|
1653
1655
|
"sap/ui/fl/apply/_internal/changes/descriptor/ovp/AddNewCard": undefined;
|