@openui5/ts-types 1.127.0 → 1.128.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/package.json +1 -1
- package/types/sap.f.d.ts +1366 -198
- package/types/sap.m.d.ts +329 -23
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +10 -4
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +48 -28
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +10 -4
- package/types/sap.ui.integration.d.ts +53 -4
- package/types/sap.ui.layout.d.ts +5 -5
- package/types/sap.ui.mdc.d.ts +426 -204
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +94 -23
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +601 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uxap.d.ts +46 -1
package/types/sap.f.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.128.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -844,6 +844,221 @@ declare namespace sap {
|
|
|
844
844
|
sWrappingType?: sap.m.WrappingType
|
|
845
845
|
): this;
|
|
846
846
|
}
|
|
847
|
+
/**
|
|
848
|
+
* Contains a single key/value pair of custom data attached to an `Element`.
|
|
849
|
+
*
|
|
850
|
+
* For more information, see {@link sap.ui.core.Element#data Element.prototype.data} and {@link https://ui5.sap.com/#/topic/91f0c3ee6f4d1014b6dd926db0e91070 Custom Data - Attaching Data Objects to Controls}.
|
|
851
|
+
*
|
|
852
|
+
* @since 1.128
|
|
853
|
+
*/
|
|
854
|
+
class CardBadgeCustomData
|
|
855
|
+
extends /* was: sap..ui.core.CustomData */ Object
|
|
856
|
+
{
|
|
857
|
+
/**
|
|
858
|
+
* Constructor for a new `CardBadgeCustomData` element.
|
|
859
|
+
*
|
|
860
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
861
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
862
|
+
* of the syntax of the settings object.
|
|
863
|
+
*/
|
|
864
|
+
constructor(
|
|
865
|
+
/**
|
|
866
|
+
* ID for the new element, generated automatically if no ID is given
|
|
867
|
+
*/
|
|
868
|
+
sId?: string,
|
|
869
|
+
/**
|
|
870
|
+
* Initial settings for the new element
|
|
871
|
+
*/
|
|
872
|
+
mSettings?: object
|
|
873
|
+
);
|
|
874
|
+
|
|
875
|
+
/**
|
|
876
|
+
* Creates a new subclass of class sap.f.cards.CardBadgeCustomData with name `sClassName` and enriches it
|
|
877
|
+
* with the information contained in `oClassInfo`.
|
|
878
|
+
*
|
|
879
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap..ui.core.CustomData.extend}.
|
|
880
|
+
*
|
|
881
|
+
*
|
|
882
|
+
* @returns Created class / constructor function
|
|
883
|
+
*/
|
|
884
|
+
static extend<T extends Record<string, unknown>>(
|
|
885
|
+
/**
|
|
886
|
+
* Name of the class being created
|
|
887
|
+
*/
|
|
888
|
+
sClassName: string,
|
|
889
|
+
/**
|
|
890
|
+
* Object literal with information about the class
|
|
891
|
+
*/
|
|
892
|
+
oClassInfo?: sap.ClassInfo<T, sap.f.cards.CardBadgeCustomData>,
|
|
893
|
+
/**
|
|
894
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
895
|
+
* used by this class
|
|
896
|
+
*/
|
|
897
|
+
FNMetaImpl?: Function
|
|
898
|
+
): Function;
|
|
899
|
+
/**
|
|
900
|
+
* Returns a metadata object for class sap.f.cards.CardBadgeCustomData.
|
|
901
|
+
*
|
|
902
|
+
*
|
|
903
|
+
* @returns Metadata object describing this class
|
|
904
|
+
*/
|
|
905
|
+
static getMetadata(): sap.ui.base.Metadata;
|
|
906
|
+
/**
|
|
907
|
+
* Gets current value of property {@link #getAnnouncementText announcementText}.
|
|
908
|
+
*
|
|
909
|
+
* Defines text which will is overriding default announcement.
|
|
910
|
+
*
|
|
911
|
+
* Default value is `empty string`.
|
|
912
|
+
*
|
|
913
|
+
* @since 1.128
|
|
914
|
+
*
|
|
915
|
+
* @returns Value of property `announcementText`
|
|
916
|
+
*/
|
|
917
|
+
getAnnouncementText(): string;
|
|
918
|
+
/**
|
|
919
|
+
* Gets current value of property {@link #getIcon icon}.
|
|
920
|
+
*
|
|
921
|
+
* Icon URI. This may be either an icon font or image path.
|
|
922
|
+
*
|
|
923
|
+
* @since 1.128
|
|
924
|
+
*
|
|
925
|
+
* @returns Value of property `icon`
|
|
926
|
+
*/
|
|
927
|
+
getIcon(): sap.ui.core.URI;
|
|
928
|
+
/**
|
|
929
|
+
* Gets current value of property {@link #getState state}.
|
|
930
|
+
*
|
|
931
|
+
* Defines the color of the badge. The allowed values are from the enum type `sap.ui.core.IndicationColor`.
|
|
932
|
+
* Additionally values from `sap.ui.core.ValueState` can be used, but this is not recommended by design
|
|
933
|
+
* guidelines.
|
|
934
|
+
*
|
|
935
|
+
* Default value is `IndicationColor.Indication05`.
|
|
936
|
+
*
|
|
937
|
+
* @since 1.128
|
|
938
|
+
*
|
|
939
|
+
* @returns Value of property `state`
|
|
940
|
+
*/
|
|
941
|
+
getState(): string;
|
|
942
|
+
/**
|
|
943
|
+
* Gets current value of property {@link #getVisibilityMode visibilityMode}.
|
|
944
|
+
*
|
|
945
|
+
* Describes the corresponding visibility mode, see also {@link sap.f.CardBadgeVisibilityMode}.
|
|
946
|
+
*
|
|
947
|
+
* Default value is `Disappear`.
|
|
948
|
+
*
|
|
949
|
+
* @since 1.128
|
|
950
|
+
*
|
|
951
|
+
* @returns Value of property `visibilityMode`
|
|
952
|
+
*/
|
|
953
|
+
getVisibilityMode(): sap.f.CardBadgeVisibilityMode;
|
|
954
|
+
/**
|
|
955
|
+
* Gets current value of property {@link #getVisible visible}.
|
|
956
|
+
*
|
|
957
|
+
* Defines the cards badge visibility.
|
|
958
|
+
*
|
|
959
|
+
* Default value is `true`.
|
|
960
|
+
*
|
|
961
|
+
* @since 1.128
|
|
962
|
+
*
|
|
963
|
+
* @returns Value of property `visible`
|
|
964
|
+
*/
|
|
965
|
+
getVisible(): boolean;
|
|
966
|
+
/**
|
|
967
|
+
* Sets a new value for property {@link #getAnnouncementText announcementText}.
|
|
968
|
+
*
|
|
969
|
+
* Defines text which will is overriding default announcement.
|
|
970
|
+
*
|
|
971
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
972
|
+
*
|
|
973
|
+
* Default value is `empty string`.
|
|
974
|
+
*
|
|
975
|
+
* @since 1.128
|
|
976
|
+
*
|
|
977
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
978
|
+
*/
|
|
979
|
+
setAnnouncementText(
|
|
980
|
+
/**
|
|
981
|
+
* New value for property `announcementText`
|
|
982
|
+
*/
|
|
983
|
+
sAnnouncementText?: string
|
|
984
|
+
): this;
|
|
985
|
+
/**
|
|
986
|
+
* Sets a new value for property {@link #getIcon icon}.
|
|
987
|
+
*
|
|
988
|
+
* Icon URI. This may be either an icon font or image path.
|
|
989
|
+
*
|
|
990
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
991
|
+
*
|
|
992
|
+
* @since 1.128
|
|
993
|
+
*
|
|
994
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
995
|
+
*/
|
|
996
|
+
setIcon(
|
|
997
|
+
/**
|
|
998
|
+
* New value for property `icon`
|
|
999
|
+
*/
|
|
1000
|
+
sIcon?: sap.ui.core.URI
|
|
1001
|
+
): this;
|
|
1002
|
+
/**
|
|
1003
|
+
* Sets a new value for property {@link #getState state}.
|
|
1004
|
+
*
|
|
1005
|
+
* Defines the color of the badge. The allowed values are from the enum type `sap.ui.core.IndicationColor`.
|
|
1006
|
+
* Additionally values from `sap.ui.core.ValueState` can be used, but this is not recommended by design
|
|
1007
|
+
* guidelines.
|
|
1008
|
+
*
|
|
1009
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1010
|
+
*
|
|
1011
|
+
* Default value is `IndicationColor.Indication05`.
|
|
1012
|
+
*
|
|
1013
|
+
* @since 1.128
|
|
1014
|
+
*
|
|
1015
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1016
|
+
*/
|
|
1017
|
+
setState(
|
|
1018
|
+
/**
|
|
1019
|
+
* New value for property `state`
|
|
1020
|
+
*/
|
|
1021
|
+
sState?: string
|
|
1022
|
+
): this;
|
|
1023
|
+
/**
|
|
1024
|
+
* Sets a new value for property {@link #getVisibilityMode visibilityMode}.
|
|
1025
|
+
*
|
|
1026
|
+
* Describes the corresponding visibility mode, see also {@link sap.f.CardBadgeVisibilityMode}.
|
|
1027
|
+
*
|
|
1028
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1029
|
+
*
|
|
1030
|
+
* Default value is `Disappear`.
|
|
1031
|
+
*
|
|
1032
|
+
* @since 1.128
|
|
1033
|
+
*
|
|
1034
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1035
|
+
*/
|
|
1036
|
+
setVisibilityMode(
|
|
1037
|
+
/**
|
|
1038
|
+
* New value for property `visibilityMode`
|
|
1039
|
+
*/
|
|
1040
|
+
sVisibilityMode?: sap.f.CardBadgeVisibilityMode
|
|
1041
|
+
): this;
|
|
1042
|
+
/**
|
|
1043
|
+
* Sets a new value for property {@link #getVisible visible}.
|
|
1044
|
+
*
|
|
1045
|
+
* Defines the cards badge visibility.
|
|
1046
|
+
*
|
|
1047
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1048
|
+
*
|
|
1049
|
+
* Default value is `true`.
|
|
1050
|
+
*
|
|
1051
|
+
* @since 1.128
|
|
1052
|
+
*
|
|
1053
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1054
|
+
*/
|
|
1055
|
+
setVisible(
|
|
1056
|
+
/**
|
|
1057
|
+
* New value for property `visible`
|
|
1058
|
+
*/
|
|
1059
|
+
bVisible?: boolean
|
|
1060
|
+
): this;
|
|
1061
|
+
}
|
|
847
1062
|
/**
|
|
848
1063
|
* Displays general information in the header of the {@link sap.f.Card}.
|
|
849
1064
|
*
|
|
@@ -8417,6 +8632,18 @@ declare namespace sap {
|
|
|
8417
8632
|
* is set.
|
|
8418
8633
|
*/
|
|
8419
8634
|
footerLabel?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
8635
|
+
|
|
8636
|
+
/**
|
|
8637
|
+
* Texts which describe the landmark of the section inside the header container of the corresponding `sap.f.DynamicPage`
|
|
8638
|
+
* control.
|
|
8639
|
+
*
|
|
8640
|
+
* If not set, default "Expanded header" aria-label is set.
|
|
8641
|
+
*
|
|
8642
|
+
* @since 1.127.0
|
|
8643
|
+
*/
|
|
8644
|
+
headerContentLabel?:
|
|
8645
|
+
| string
|
|
8646
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
8420
8647
|
}
|
|
8421
8648
|
|
|
8422
8649
|
/**
|
|
@@ -8888,6 +9115,15 @@ declare namespace sap {
|
|
|
8888
9115
|
* @since 1.76
|
|
8889
9116
|
*/
|
|
8890
9117
|
columnResize?: (oEvent: FlexibleColumnLayout$ColumnResizeEvent) => void;
|
|
9118
|
+
|
|
9119
|
+
/**
|
|
9120
|
+
* Fired when user resize columns.
|
|
9121
|
+
*
|
|
9122
|
+
* @since 1.128
|
|
9123
|
+
*/
|
|
9124
|
+
columnsDistributionChange?: (
|
|
9125
|
+
oEvent: FlexibleColumnLayout$ColumnsDistributionChangeEvent
|
|
9126
|
+
) => void;
|
|
8891
9127
|
}
|
|
8892
9128
|
|
|
8893
9129
|
/**
|
|
@@ -8962,6 +9198,130 @@ declare namespace sap {
|
|
|
8962
9198
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
8963
9199
|
}
|
|
8964
9200
|
|
|
9201
|
+
/**
|
|
9202
|
+
* Describes the settings that can be provided to the FlexibleColumnLayoutData constructor.
|
|
9203
|
+
*/
|
|
9204
|
+
interface $FlexibleColumnLayoutDataSettings
|
|
9205
|
+
extends sap.ui.core.$LayoutDataSettings {
|
|
9206
|
+
/**
|
|
9207
|
+
* Allows LayoutData of type `sap.f.FlexibleColumnLayoutDataForDesktop`
|
|
9208
|
+
*/
|
|
9209
|
+
desktopLayoutData?: sap.f.FlexibleColumnLayoutDataForDesktop;
|
|
9210
|
+
|
|
9211
|
+
/**
|
|
9212
|
+
* Allows LayoutData of type `sap.f.FlexibleColumnLayoutDataForTablet`
|
|
9213
|
+
*/
|
|
9214
|
+
tabletLayoutData?: sap.f.FlexibleColumnLayoutDataForTablet;
|
|
9215
|
+
}
|
|
9216
|
+
|
|
9217
|
+
/**
|
|
9218
|
+
* Describes the settings that can be provided to the FlexibleColumnLayoutDataForDesktop constructor.
|
|
9219
|
+
*/
|
|
9220
|
+
interface $FlexibleColumnLayoutDataForDesktopSettings
|
|
9221
|
+
extends sap.ui.core.$LayoutDataSettings {
|
|
9222
|
+
/**
|
|
9223
|
+
* Columns distribution of TwoColumnsBeginExpanded layout in the format "begin/mid/end", where values are
|
|
9224
|
+
* set in percentages.
|
|
9225
|
+
*/
|
|
9226
|
+
twoColumnsBeginExpanded?:
|
|
9227
|
+
| string
|
|
9228
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
9229
|
+
|
|
9230
|
+
/**
|
|
9231
|
+
* Columns distribution of TwoColumnsMidExpanded layout in the format "begin/mid/end", where values are
|
|
9232
|
+
* set in percentages.
|
|
9233
|
+
*/
|
|
9234
|
+
twoColumnsMidExpanded?:
|
|
9235
|
+
| string
|
|
9236
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
9237
|
+
|
|
9238
|
+
/**
|
|
9239
|
+
* Columns distribution of ThreeColumnsBeginExpandedEndHidden layout in the format "begin/mid/end", where
|
|
9240
|
+
* values are set in percentages.
|
|
9241
|
+
*/
|
|
9242
|
+
threeColumnsBeginExpandedEndHidden?:
|
|
9243
|
+
| string
|
|
9244
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
9245
|
+
|
|
9246
|
+
/**
|
|
9247
|
+
* Columns distribution of ThreeColumnsEndExpanded layout in the format "begin/mid/end", where values are
|
|
9248
|
+
* set in percentages.
|
|
9249
|
+
*/
|
|
9250
|
+
threeColumnsEndExpanded?:
|
|
9251
|
+
| string
|
|
9252
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
9253
|
+
|
|
9254
|
+
/**
|
|
9255
|
+
* Columns distribution of ThreeColumnsMidExpanded layout in the format "begin/mid/end", where values are
|
|
9256
|
+
* set in percentages.
|
|
9257
|
+
*/
|
|
9258
|
+
threeColumnsMidExpanded?:
|
|
9259
|
+
| string
|
|
9260
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
9261
|
+
|
|
9262
|
+
/**
|
|
9263
|
+
* Columns distribution of ThreeColumnsMidExpandedEndHidden layout in the format "begin/mid/end", where
|
|
9264
|
+
* values are set in percentages.
|
|
9265
|
+
*/
|
|
9266
|
+
threeColumnsMidExpandedEndHidden?:
|
|
9267
|
+
| string
|
|
9268
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
9269
|
+
}
|
|
9270
|
+
|
|
9271
|
+
/**
|
|
9272
|
+
* Describes the settings that can be provided to the FlexibleColumnLayoutDataForTablet constructor.
|
|
9273
|
+
*/
|
|
9274
|
+
interface $FlexibleColumnLayoutDataForTabletSettings
|
|
9275
|
+
extends sap.ui.core.$LayoutDataSettings {
|
|
9276
|
+
/**
|
|
9277
|
+
* Columns distribution of TwoColumnsBeginExpanded layout in the format "begin/mid/end", where values are
|
|
9278
|
+
* set in percentages.
|
|
9279
|
+
*/
|
|
9280
|
+
twoColumnsBeginExpanded?:
|
|
9281
|
+
| string
|
|
9282
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
9283
|
+
|
|
9284
|
+
/**
|
|
9285
|
+
* Columns distribution of TwoColumnsMidExpanded layout in the format "begin/mid/end", where values are
|
|
9286
|
+
* set in percentages.
|
|
9287
|
+
*/
|
|
9288
|
+
twoColumnsMidExpanded?:
|
|
9289
|
+
| string
|
|
9290
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
9291
|
+
|
|
9292
|
+
/**
|
|
9293
|
+
* Columns distribution of ThreeColumnsBeginExpandedEndHidden layout in the format "begin/mid/end", where
|
|
9294
|
+
* values are set in percentages.
|
|
9295
|
+
*/
|
|
9296
|
+
threeColumnsBeginExpandedEndHidden?:
|
|
9297
|
+
| string
|
|
9298
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
9299
|
+
|
|
9300
|
+
/**
|
|
9301
|
+
* Columns distribution of ThreeColumnsEndExpanded layout in the format "begin/mid/end", where values are
|
|
9302
|
+
* set in percentages.
|
|
9303
|
+
*/
|
|
9304
|
+
threeColumnsEndExpanded?:
|
|
9305
|
+
| string
|
|
9306
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
9307
|
+
|
|
9308
|
+
/**
|
|
9309
|
+
* Columns distribution of ThreeColumnsMidExpanded layout in the format "begin/mid/end", where values are
|
|
9310
|
+
* set in percentages.
|
|
9311
|
+
*/
|
|
9312
|
+
threeColumnsMidExpanded?:
|
|
9313
|
+
| string
|
|
9314
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
9315
|
+
|
|
9316
|
+
/**
|
|
9317
|
+
* Columns distribution of ThreeColumnsMidExpandedEndHidden layout in the format "begin/mid/end", where
|
|
9318
|
+
* values are set in percentages.
|
|
9319
|
+
*/
|
|
9320
|
+
threeColumnsMidExpandedEndHidden?:
|
|
9321
|
+
| string
|
|
9322
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
9323
|
+
}
|
|
9324
|
+
|
|
8965
9325
|
/**
|
|
8966
9326
|
* Describes the settings that can be provided to the GridContainer constructor.
|
|
8967
9327
|
*/
|
|
@@ -9982,6 +10342,26 @@ declare namespace sap {
|
|
|
9982
10342
|
endColumn?: boolean;
|
|
9983
10343
|
}
|
|
9984
10344
|
|
|
10345
|
+
/**
|
|
10346
|
+
* Parameters of the FlexibleColumnLayout#columnsDistributionChange event.
|
|
10347
|
+
*/
|
|
10348
|
+
interface FlexibleColumnLayout$ColumnsDistributionChangeEventParameters {
|
|
10349
|
+
/**
|
|
10350
|
+
* The current `media` - dekstop or tablet.
|
|
10351
|
+
*/
|
|
10352
|
+
media?: string;
|
|
10353
|
+
|
|
10354
|
+
/**
|
|
10355
|
+
* The value of the `layout` property.
|
|
10356
|
+
*/
|
|
10357
|
+
layout?: string;
|
|
10358
|
+
|
|
10359
|
+
/**
|
|
10360
|
+
* Sizes of all columns in percentages, separated by '/'.
|
|
10361
|
+
*/
|
|
10362
|
+
columnsSizes?: string;
|
|
10363
|
+
}
|
|
10364
|
+
|
|
9985
10365
|
/**
|
|
9986
10366
|
* Parameters of the FlexibleColumnLayout#endColumnNavigate event.
|
|
9987
10367
|
*/
|
|
@@ -12110,7 +12490,20 @@ declare namespace sap {
|
|
|
12110
12490
|
*/
|
|
12111
12491
|
getFooterRole(): sap.ui.core.AccessibleLandmarkRole;
|
|
12112
12492
|
/**
|
|
12113
|
-
* Gets current value of property {@link #
|
|
12493
|
+
* Gets current value of property {@link #getHeaderContentLabel headerContentLabel}.
|
|
12494
|
+
*
|
|
12495
|
+
* Texts which describe the landmark of the section inside the header container of the corresponding `sap.f.DynamicPage`
|
|
12496
|
+
* control.
|
|
12497
|
+
*
|
|
12498
|
+
* If not set, default "Expanded header" aria-label is set.
|
|
12499
|
+
*
|
|
12500
|
+
* @since 1.127.0
|
|
12501
|
+
*
|
|
12502
|
+
* @returns Value of property `headerContentLabel`
|
|
12503
|
+
*/
|
|
12504
|
+
getHeaderContentLabel(): string;
|
|
12505
|
+
/**
|
|
12506
|
+
* Gets current value of property {@link #getHeaderLabel headerLabel}.
|
|
12114
12507
|
*
|
|
12115
12508
|
* Texts which describe the landmark of the header container of the corresponding `sap.f.DynamicPage` control.
|
|
12116
12509
|
*
|
|
@@ -12237,6 +12630,26 @@ declare namespace sap {
|
|
|
12237
12630
|
*/
|
|
12238
12631
|
sFooterRole?: sap.ui.core.AccessibleLandmarkRole
|
|
12239
12632
|
): this;
|
|
12633
|
+
/**
|
|
12634
|
+
* Sets a new value for property {@link #getHeaderContentLabel headerContentLabel}.
|
|
12635
|
+
*
|
|
12636
|
+
* Texts which describe the landmark of the section inside the header container of the corresponding `sap.f.DynamicPage`
|
|
12637
|
+
* control.
|
|
12638
|
+
*
|
|
12639
|
+
* If not set, default "Expanded header" aria-label is set.
|
|
12640
|
+
*
|
|
12641
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
12642
|
+
*
|
|
12643
|
+
* @since 1.127.0
|
|
12644
|
+
*
|
|
12645
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
12646
|
+
*/
|
|
12647
|
+
setHeaderContentLabel(
|
|
12648
|
+
/**
|
|
12649
|
+
* New value for property `headerContentLabel`
|
|
12650
|
+
*/
|
|
12651
|
+
sHeaderContentLabel?: string
|
|
12652
|
+
): this;
|
|
12240
12653
|
/**
|
|
12241
12654
|
* Sets a new value for property {@link #getHeaderLabel headerLabel}.
|
|
12242
12655
|
*
|
|
@@ -13919,6 +14332,61 @@ declare namespace sap {
|
|
|
13919
14332
|
*/
|
|
13920
14333
|
oListener?: object
|
|
13921
14334
|
): this;
|
|
14335
|
+
/**
|
|
14336
|
+
* Attaches event handler `fnFunction` to the {@link #event:columnsDistributionChange columnsDistributionChange }
|
|
14337
|
+
* event of this `sap.f.FlexibleColumnLayout`.
|
|
14338
|
+
*
|
|
14339
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
14340
|
+
* otherwise it will be bound to this `sap.f.FlexibleColumnLayout` itself.
|
|
14341
|
+
*
|
|
14342
|
+
* Fired when user resize columns.
|
|
14343
|
+
*
|
|
14344
|
+
* @since 1.128
|
|
14345
|
+
*
|
|
14346
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
14347
|
+
*/
|
|
14348
|
+
attachColumnsDistributionChange(
|
|
14349
|
+
/**
|
|
14350
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
14351
|
+
* object when firing the event
|
|
14352
|
+
*/
|
|
14353
|
+
oData: object,
|
|
14354
|
+
/**
|
|
14355
|
+
* The function to be called when the event occurs
|
|
14356
|
+
*/
|
|
14357
|
+
fnFunction: (
|
|
14358
|
+
p1: FlexibleColumnLayout$ColumnsDistributionChangeEvent
|
|
14359
|
+
) => void,
|
|
14360
|
+
/**
|
|
14361
|
+
* Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
|
|
14362
|
+
*/
|
|
14363
|
+
oListener?: object
|
|
14364
|
+
): this;
|
|
14365
|
+
/**
|
|
14366
|
+
* Attaches event handler `fnFunction` to the {@link #event:columnsDistributionChange columnsDistributionChange }
|
|
14367
|
+
* event of this `sap.f.FlexibleColumnLayout`.
|
|
14368
|
+
*
|
|
14369
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
14370
|
+
* otherwise it will be bound to this `sap.f.FlexibleColumnLayout` itself.
|
|
14371
|
+
*
|
|
14372
|
+
* Fired when user resize columns.
|
|
14373
|
+
*
|
|
14374
|
+
* @since 1.128
|
|
14375
|
+
*
|
|
14376
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
14377
|
+
*/
|
|
14378
|
+
attachColumnsDistributionChange(
|
|
14379
|
+
/**
|
|
14380
|
+
* The function to be called when the event occurs
|
|
14381
|
+
*/
|
|
14382
|
+
fnFunction: (
|
|
14383
|
+
p1: FlexibleColumnLayout$ColumnsDistributionChangeEvent
|
|
14384
|
+
) => void,
|
|
14385
|
+
/**
|
|
14386
|
+
* Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
|
|
14387
|
+
*/
|
|
14388
|
+
oListener?: object
|
|
14389
|
+
): this;
|
|
13922
14390
|
/**
|
|
13923
14391
|
* Attaches event handler `fnFunction` to the {@link #event:endColumnNavigate endColumnNavigate} event of
|
|
13924
14392
|
* this `sap.f.FlexibleColumnLayout`.
|
|
@@ -14376,6 +14844,28 @@ declare namespace sap {
|
|
|
14376
14844
|
*/
|
|
14377
14845
|
oListener?: object
|
|
14378
14846
|
): this;
|
|
14847
|
+
/**
|
|
14848
|
+
* Detaches event handler `fnFunction` from the {@link #event:columnsDistributionChange columnsDistributionChange }
|
|
14849
|
+
* event of this `sap.f.FlexibleColumnLayout`.
|
|
14850
|
+
*
|
|
14851
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
14852
|
+
*
|
|
14853
|
+
* @since 1.128
|
|
14854
|
+
*
|
|
14855
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
14856
|
+
*/
|
|
14857
|
+
detachColumnsDistributionChange(
|
|
14858
|
+
/**
|
|
14859
|
+
* The function to be called, when the event occurs
|
|
14860
|
+
*/
|
|
14861
|
+
fnFunction: (
|
|
14862
|
+
p1: FlexibleColumnLayout$ColumnsDistributionChangeEvent
|
|
14863
|
+
) => void,
|
|
14864
|
+
/**
|
|
14865
|
+
* Context object on which the given function had to be called
|
|
14866
|
+
*/
|
|
14867
|
+
oListener?: object
|
|
14868
|
+
): this;
|
|
14379
14869
|
/**
|
|
14380
14870
|
* Detaches event handler `fnFunction` from the {@link #event:endColumnNavigate endColumnNavigate} event
|
|
14381
14871
|
* of this `sap.f.FlexibleColumnLayout`.
|
|
@@ -14501,6 +14991,20 @@ declare namespace sap {
|
|
|
14501
14991
|
*/
|
|
14502
14992
|
mParameters?: sap.f.FlexibleColumnLayout$ColumnResizeEventParameters
|
|
14503
14993
|
): this;
|
|
14994
|
+
/**
|
|
14995
|
+
* Fires event {@link #event:columnsDistributionChange columnsDistributionChange} to attached listeners.
|
|
14996
|
+
*
|
|
14997
|
+
* @since 1.128
|
|
14998
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
14999
|
+
*
|
|
15000
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
15001
|
+
*/
|
|
15002
|
+
fireColumnsDistributionChange(
|
|
15003
|
+
/**
|
|
15004
|
+
* Parameters to pass along with the event
|
|
15005
|
+
*/
|
|
15006
|
+
mParameters?: sap.f.FlexibleColumnLayout$ColumnsDistributionChangeEventParameters
|
|
15007
|
+
): this;
|
|
14504
15008
|
/**
|
|
14505
15009
|
* Fires event {@link #event:endColumnNavigate endColumnNavigate} to attached listeners.
|
|
14506
15010
|
*
|
|
@@ -15311,99 +15815,763 @@ declare namespace sap {
|
|
|
15311
15815
|
* are actually used to influence the transition. The "show", "slide" and "fade" transitions do not use
|
|
15312
15816
|
* any parameter.
|
|
15313
15817
|
*/
|
|
15314
|
-
oTransitionParameters: object
|
|
15818
|
+
oTransitionParameters: object
|
|
15819
|
+
): this;
|
|
15820
|
+
/**
|
|
15821
|
+
* Navigates to a given Mid column page.
|
|
15822
|
+
*
|
|
15823
|
+
*
|
|
15824
|
+
* @returns The `sap.f.FlexibleColumnLayout` instance
|
|
15825
|
+
*/
|
|
15826
|
+
toMidColumnPage(
|
|
15827
|
+
/**
|
|
15828
|
+
* The screen to which drilldown should happen. The ID or the control itself can be given.
|
|
15829
|
+
*/
|
|
15830
|
+
sPageId: string,
|
|
15831
|
+
/**
|
|
15832
|
+
* The type of the transition/animation to apply. Options are: "slide" (horizontal movement from the right),
|
|
15833
|
+
* "fade", "flip", and "show" and the names of any registered custom transitions.
|
|
15834
|
+
*
|
|
15835
|
+
* None of the standard transitions is currently making use of any given transition parameters.
|
|
15836
|
+
*/
|
|
15837
|
+
sTransitionName: string,
|
|
15838
|
+
/**
|
|
15839
|
+
* This optional object can carry any payload data which should be made available to the target page. The
|
|
15840
|
+
* BeforeShow event on the target page will contain this data object as data property.
|
|
15841
|
+
*
|
|
15842
|
+
* Use case: in scenarios where the entity triggering the navigation can't or shouldn't directly initialize
|
|
15843
|
+
* the target page, it can fill this object and the target page itself (or a listener on it) can take over
|
|
15844
|
+
* the initialization, using the given data.
|
|
15845
|
+
*
|
|
15846
|
+
* When the transitionParameters object is used, this data object must also be given (either as object or
|
|
15847
|
+
* as null) in order to have a proper parameter order.
|
|
15848
|
+
*/
|
|
15849
|
+
oData: object,
|
|
15850
|
+
/**
|
|
15851
|
+
* This optional object can contain additional information for the transition function, like the DOM element,
|
|
15852
|
+
* which triggered the transition or the desired transition duration.
|
|
15853
|
+
*
|
|
15854
|
+
* For a proper parameter order, the data parameter must be given when the transitionParameters parameter
|
|
15855
|
+
* is used (it can be given as "null").
|
|
15856
|
+
*
|
|
15857
|
+
* NOTE: it depends on the transition function how the object should be structured and which parameters
|
|
15858
|
+
* are actually used to influence the transition. The "show", "slide" and "fade" transitions do not use
|
|
15859
|
+
* any parameter.
|
|
15860
|
+
*/
|
|
15861
|
+
oTransitionParameters: object
|
|
15862
|
+
): this;
|
|
15863
|
+
/**
|
|
15864
|
+
* Navigates to a given Mid column page.
|
|
15865
|
+
*
|
|
15866
|
+
*
|
|
15867
|
+
* @returns The `sap.f.FlexibleColumnLayout` instance
|
|
15868
|
+
*/
|
|
15869
|
+
toMidColumnPage(
|
|
15870
|
+
/**
|
|
15871
|
+
* The screen to which drilldown should happen. The ID or the control itself can be given.
|
|
15872
|
+
*/
|
|
15873
|
+
sPageId: string,
|
|
15874
|
+
/**
|
|
15875
|
+
* This optional object can carry any payload data which should be made available to the target page. The
|
|
15876
|
+
* BeforeShow event on the target page will contain this data object as data property.
|
|
15877
|
+
*
|
|
15878
|
+
* Use case: in scenarios where the entity triggering the navigation can't or shouldn't directly initialize
|
|
15879
|
+
* the target page, it can fill this object and the target page itself (or a listener on it) can take over
|
|
15880
|
+
* the initialization, using the given data.
|
|
15881
|
+
*
|
|
15882
|
+
* When the transitionParameters object is used, this data object must also be given (either as object or
|
|
15883
|
+
* as null) in order to have a proper parameter order.
|
|
15884
|
+
*/
|
|
15885
|
+
oData: object,
|
|
15886
|
+
/**
|
|
15887
|
+
* This optional object can contain additional information for the transition function, like the DOM element,
|
|
15888
|
+
* which triggered the transition or the desired transition duration.
|
|
15889
|
+
*
|
|
15890
|
+
* For a proper parameter order, the data parameter must be given when the transitionParameters parameter
|
|
15891
|
+
* is used (it can be given as "null").
|
|
15892
|
+
*
|
|
15893
|
+
* NOTE: it depends on the transition function how the object should be structured and which parameters
|
|
15894
|
+
* are actually used to influence the transition. The "show", "slide" and "fade" transitions do not use
|
|
15895
|
+
* any parameter.
|
|
15896
|
+
*/
|
|
15897
|
+
oTransitionParameters: object
|
|
15898
|
+
): this;
|
|
15899
|
+
}
|
|
15900
|
+
/**
|
|
15901
|
+
* Settings for accessible landmarks which can be applied to the container elements of a `sap.f.FlexibleColumnLayout`
|
|
15902
|
+
* control. For example, these landmarks are used by assistive technologies (such as screen readers) to
|
|
15903
|
+
* provide a meaningful columns overview.
|
|
15904
|
+
*
|
|
15905
|
+
* @since 1.95
|
|
15906
|
+
*/
|
|
15907
|
+
class FlexibleColumnLayoutAccessibleLandmarkInfo extends sap.ui.core
|
|
15908
|
+
.Element {
|
|
15909
|
+
/**
|
|
15910
|
+
* Constructor for a new `sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo` element.
|
|
15911
|
+
*
|
|
15912
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
15913
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
15914
|
+
* of the syntax of the settings object.
|
|
15915
|
+
*/
|
|
15916
|
+
constructor(
|
|
15917
|
+
/**
|
|
15918
|
+
* Initial settings for the new element
|
|
15919
|
+
*/
|
|
15920
|
+
mSettings?: sap.f.$FlexibleColumnLayoutAccessibleLandmarkInfoSettings
|
|
15921
|
+
);
|
|
15922
|
+
/**
|
|
15923
|
+
* Constructor for a new `sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo` element.
|
|
15924
|
+
*
|
|
15925
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
15926
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
15927
|
+
* of the syntax of the settings object.
|
|
15928
|
+
*/
|
|
15929
|
+
constructor(
|
|
15930
|
+
/**
|
|
15931
|
+
* ID for the new element, generated automatically if no ID is given
|
|
15932
|
+
*/
|
|
15933
|
+
sId?: string,
|
|
15934
|
+
/**
|
|
15935
|
+
* Initial settings for the new element
|
|
15936
|
+
*/
|
|
15937
|
+
mSettings?: sap.f.$FlexibleColumnLayoutAccessibleLandmarkInfoSettings
|
|
15938
|
+
);
|
|
15939
|
+
|
|
15940
|
+
/**
|
|
15941
|
+
* Creates a new subclass of class sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo with name `sClassName`
|
|
15942
|
+
* and enriches it with the information contained in `oClassInfo`.
|
|
15943
|
+
*
|
|
15944
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
15945
|
+
*
|
|
15946
|
+
*
|
|
15947
|
+
* @returns Created class / constructor function
|
|
15948
|
+
*/
|
|
15949
|
+
static extend<T extends Record<string, unknown>>(
|
|
15950
|
+
/**
|
|
15951
|
+
* Name of the class being created
|
|
15952
|
+
*/
|
|
15953
|
+
sClassName: string,
|
|
15954
|
+
/**
|
|
15955
|
+
* Object literal with information about the class
|
|
15956
|
+
*/
|
|
15957
|
+
oClassInfo?: sap.ClassInfo<
|
|
15958
|
+
T,
|
|
15959
|
+
sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo
|
|
15960
|
+
>,
|
|
15961
|
+
/**
|
|
15962
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
15963
|
+
* used by this class
|
|
15964
|
+
*/
|
|
15965
|
+
FNMetaImpl?: Function
|
|
15966
|
+
): Function;
|
|
15967
|
+
/**
|
|
15968
|
+
* Returns a metadata object for class sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo.
|
|
15969
|
+
*
|
|
15970
|
+
*
|
|
15971
|
+
* @returns Metadata object describing this class
|
|
15972
|
+
*/
|
|
15973
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
15974
|
+
/**
|
|
15975
|
+
* Gets current value of property {@link #getFirstColumnBackArrowLabel firstColumnBackArrowLabel}.
|
|
15976
|
+
*
|
|
15977
|
+
* Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
15978
|
+
* control.
|
|
15979
|
+
*
|
|
15980
|
+
* If not set, a predefined text is used.
|
|
15981
|
+
*
|
|
15982
|
+
*
|
|
15983
|
+
* @returns Value of property `firstColumnBackArrowLabel`
|
|
15984
|
+
*/
|
|
15985
|
+
getFirstColumnBackArrowLabel(): string;
|
|
15986
|
+
/**
|
|
15987
|
+
* Gets current value of property {@link #getFirstColumnLabel firstColumnLabel}.
|
|
15988
|
+
*
|
|
15989
|
+
* Text that describes the landmark of the first column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
15990
|
+
* control.
|
|
15991
|
+
*
|
|
15992
|
+
* If not set, a predefined text is used.
|
|
15993
|
+
*
|
|
15994
|
+
*
|
|
15995
|
+
* @returns Value of property `firstColumnLabel`
|
|
15996
|
+
*/
|
|
15997
|
+
getFirstColumnLabel(): string;
|
|
15998
|
+
/**
|
|
15999
|
+
* Gets current value of property {@link #getLastColumnForwardArrowLabel lastColumnForwardArrowLabel}.
|
|
16000
|
+
*
|
|
16001
|
+
* Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
16002
|
+
* control.
|
|
16003
|
+
*
|
|
16004
|
+
* If not set, a predefined text is used.
|
|
16005
|
+
*
|
|
16006
|
+
*
|
|
16007
|
+
* @returns Value of property `lastColumnForwardArrowLabel`
|
|
16008
|
+
*/
|
|
16009
|
+
getLastColumnForwardArrowLabel(): string;
|
|
16010
|
+
/**
|
|
16011
|
+
* Gets current value of property {@link #getLastColumnLabel lastColumnLabel}.
|
|
16012
|
+
*
|
|
16013
|
+
* Text that describes the landmark of the last column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
16014
|
+
* control.
|
|
16015
|
+
*
|
|
16016
|
+
* If not set, a predefined text is used.
|
|
16017
|
+
*
|
|
16018
|
+
*
|
|
16019
|
+
* @returns Value of property `lastColumnLabel`
|
|
16020
|
+
*/
|
|
16021
|
+
getLastColumnLabel(): string;
|
|
16022
|
+
/**
|
|
16023
|
+
* Gets current value of property {@link #getMiddleColumnBackArrowLabel middleColumnBackArrowLabel}.
|
|
16024
|
+
*
|
|
16025
|
+
* Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
16026
|
+
* control.
|
|
16027
|
+
*
|
|
16028
|
+
* If not set, a predefined text is used.
|
|
16029
|
+
*
|
|
16030
|
+
*
|
|
16031
|
+
* @returns Value of property `middleColumnBackArrowLabel`
|
|
16032
|
+
*/
|
|
16033
|
+
getMiddleColumnBackArrowLabel(): string;
|
|
16034
|
+
/**
|
|
16035
|
+
* Gets current value of property {@link #getMiddleColumnForwardArrowLabel middleColumnForwardArrowLabel}.
|
|
16036
|
+
*
|
|
16037
|
+
* Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
16038
|
+
* control.
|
|
16039
|
+
*
|
|
16040
|
+
* If not set, a predefined text is used.
|
|
16041
|
+
*
|
|
16042
|
+
*
|
|
16043
|
+
* @returns Value of property `middleColumnForwardArrowLabel`
|
|
16044
|
+
*/
|
|
16045
|
+
getMiddleColumnForwardArrowLabel(): string;
|
|
16046
|
+
/**
|
|
16047
|
+
* Gets current value of property {@link #getMiddleColumnLabel middleColumnLabel}.
|
|
16048
|
+
*
|
|
16049
|
+
* Text that describes the landmark of the middle column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
16050
|
+
* control.
|
|
16051
|
+
*
|
|
16052
|
+
* If not set, a predefined text is used.
|
|
16053
|
+
*
|
|
16054
|
+
*
|
|
16055
|
+
* @returns Value of property `middleColumnLabel`
|
|
16056
|
+
*/
|
|
16057
|
+
getMiddleColumnLabel(): string;
|
|
16058
|
+
/**
|
|
16059
|
+
* Sets a new value for property {@link #getFirstColumnBackArrowLabel firstColumnBackArrowLabel}.
|
|
16060
|
+
*
|
|
16061
|
+
* Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
16062
|
+
* control.
|
|
16063
|
+
*
|
|
16064
|
+
* If not set, a predefined text is used.
|
|
16065
|
+
*
|
|
16066
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16067
|
+
*
|
|
16068
|
+
*
|
|
16069
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
16070
|
+
*/
|
|
16071
|
+
setFirstColumnBackArrowLabel(
|
|
16072
|
+
/**
|
|
16073
|
+
* New value for property `firstColumnBackArrowLabel`
|
|
16074
|
+
*/
|
|
16075
|
+
sFirstColumnBackArrowLabel?: string
|
|
16076
|
+
): this;
|
|
16077
|
+
/**
|
|
16078
|
+
* Sets a new value for property {@link #getFirstColumnLabel firstColumnLabel}.
|
|
16079
|
+
*
|
|
16080
|
+
* Text that describes the landmark of the first column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
16081
|
+
* control.
|
|
16082
|
+
*
|
|
16083
|
+
* If not set, a predefined text is used.
|
|
16084
|
+
*
|
|
16085
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16086
|
+
*
|
|
16087
|
+
*
|
|
16088
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
16089
|
+
*/
|
|
16090
|
+
setFirstColumnLabel(
|
|
16091
|
+
/**
|
|
16092
|
+
* New value for property `firstColumnLabel`
|
|
16093
|
+
*/
|
|
16094
|
+
sFirstColumnLabel?: string
|
|
16095
|
+
): this;
|
|
16096
|
+
/**
|
|
16097
|
+
* Sets a new value for property {@link #getLastColumnForwardArrowLabel lastColumnForwardArrowLabel}.
|
|
16098
|
+
*
|
|
16099
|
+
* Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
16100
|
+
* control.
|
|
16101
|
+
*
|
|
16102
|
+
* If not set, a predefined text is used.
|
|
16103
|
+
*
|
|
16104
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16105
|
+
*
|
|
16106
|
+
*
|
|
16107
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
16108
|
+
*/
|
|
16109
|
+
setLastColumnForwardArrowLabel(
|
|
16110
|
+
/**
|
|
16111
|
+
* New value for property `lastColumnForwardArrowLabel`
|
|
16112
|
+
*/
|
|
16113
|
+
sLastColumnForwardArrowLabel?: string
|
|
16114
|
+
): this;
|
|
16115
|
+
/**
|
|
16116
|
+
* Sets a new value for property {@link #getLastColumnLabel lastColumnLabel}.
|
|
16117
|
+
*
|
|
16118
|
+
* Text that describes the landmark of the last column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
16119
|
+
* control.
|
|
16120
|
+
*
|
|
16121
|
+
* If not set, a predefined text is used.
|
|
16122
|
+
*
|
|
16123
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16124
|
+
*
|
|
16125
|
+
*
|
|
16126
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
16127
|
+
*/
|
|
16128
|
+
setLastColumnLabel(
|
|
16129
|
+
/**
|
|
16130
|
+
* New value for property `lastColumnLabel`
|
|
16131
|
+
*/
|
|
16132
|
+
sLastColumnLabel?: string
|
|
16133
|
+
): this;
|
|
16134
|
+
/**
|
|
16135
|
+
* Sets a new value for property {@link #getMiddleColumnBackArrowLabel middleColumnBackArrowLabel}.
|
|
16136
|
+
*
|
|
16137
|
+
* Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
16138
|
+
* control.
|
|
16139
|
+
*
|
|
16140
|
+
* If not set, a predefined text is used.
|
|
16141
|
+
*
|
|
16142
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16143
|
+
*
|
|
16144
|
+
*
|
|
16145
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
16146
|
+
*/
|
|
16147
|
+
setMiddleColumnBackArrowLabel(
|
|
16148
|
+
/**
|
|
16149
|
+
* New value for property `middleColumnBackArrowLabel`
|
|
16150
|
+
*/
|
|
16151
|
+
sMiddleColumnBackArrowLabel?: string
|
|
16152
|
+
): this;
|
|
16153
|
+
/**
|
|
16154
|
+
* Sets a new value for property {@link #getMiddleColumnForwardArrowLabel middleColumnForwardArrowLabel}.
|
|
16155
|
+
*
|
|
16156
|
+
* Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
16157
|
+
* control.
|
|
16158
|
+
*
|
|
16159
|
+
* If not set, a predefined text is used.
|
|
16160
|
+
*
|
|
16161
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16162
|
+
*
|
|
16163
|
+
*
|
|
16164
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
16165
|
+
*/
|
|
16166
|
+
setMiddleColumnForwardArrowLabel(
|
|
16167
|
+
/**
|
|
16168
|
+
* New value for property `middleColumnForwardArrowLabel`
|
|
16169
|
+
*/
|
|
16170
|
+
sMiddleColumnForwardArrowLabel?: string
|
|
16171
|
+
): this;
|
|
16172
|
+
/**
|
|
16173
|
+
* Sets a new value for property {@link #getMiddleColumnLabel middleColumnLabel}.
|
|
16174
|
+
*
|
|
16175
|
+
* Text that describes the landmark of the middle column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
16176
|
+
* control.
|
|
16177
|
+
*
|
|
16178
|
+
* If not set, a predefined text is used.
|
|
16179
|
+
*
|
|
16180
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16181
|
+
*
|
|
16182
|
+
*
|
|
16183
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
16184
|
+
*/
|
|
16185
|
+
setMiddleColumnLabel(
|
|
16186
|
+
/**
|
|
16187
|
+
* New value for property `middleColumnLabel`
|
|
16188
|
+
*/
|
|
16189
|
+
sMiddleColumnLabel?: string
|
|
16190
|
+
): this;
|
|
16191
|
+
}
|
|
16192
|
+
/**
|
|
16193
|
+
* Holds layout data for `sap.f.FlexibleColumnLayout`. Allows LayoutData of type `sap.f.FlexibleColumnLayoutDataForDesktop`
|
|
16194
|
+
* or `sap.f.FlexibleColumnLayoutFlexibleColumnLayoutDataForTablet`
|
|
16195
|
+
*
|
|
16196
|
+
* @since 1.128
|
|
16197
|
+
*/
|
|
16198
|
+
class FlexibleColumnLayoutData extends sap.ui.core.LayoutData {
|
|
16199
|
+
/**
|
|
16200
|
+
* Constructor for a new `sap.f.FlexibleColumnLayoutData`.
|
|
16201
|
+
*
|
|
16202
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
16203
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
16204
|
+
* of the syntax of the settings object.
|
|
16205
|
+
*/
|
|
16206
|
+
constructor(
|
|
16207
|
+
/**
|
|
16208
|
+
* Initial settings for the new element.
|
|
16209
|
+
*/
|
|
16210
|
+
mSettings?: sap.f.$FlexibleColumnLayoutDataSettings
|
|
16211
|
+
);
|
|
16212
|
+
/**
|
|
16213
|
+
* Constructor for a new `sap.f.FlexibleColumnLayoutData`.
|
|
16214
|
+
*
|
|
16215
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
16216
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
16217
|
+
* of the syntax of the settings object.
|
|
16218
|
+
*/
|
|
16219
|
+
constructor(
|
|
16220
|
+
/**
|
|
16221
|
+
* ID for the new element, generated automatically if no ID is given
|
|
16222
|
+
*/
|
|
16223
|
+
sId?: string,
|
|
16224
|
+
/**
|
|
16225
|
+
* Initial settings for the new element.
|
|
16226
|
+
*/
|
|
16227
|
+
mSettings?: sap.f.$FlexibleColumnLayoutDataSettings
|
|
16228
|
+
);
|
|
16229
|
+
|
|
16230
|
+
/**
|
|
16231
|
+
* Creates a new subclass of class sap.f.FlexibleColumnLayoutData with name `sClassName` and enriches it
|
|
16232
|
+
* with the information contained in `oClassInfo`.
|
|
16233
|
+
*
|
|
16234
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.LayoutData.extend}.
|
|
16235
|
+
*
|
|
16236
|
+
*
|
|
16237
|
+
* @returns Created class / constructor function
|
|
16238
|
+
*/
|
|
16239
|
+
static extend<T extends Record<string, unknown>>(
|
|
16240
|
+
/**
|
|
16241
|
+
* Name of the class being created
|
|
16242
|
+
*/
|
|
16243
|
+
sClassName: string,
|
|
16244
|
+
/**
|
|
16245
|
+
* Object literal with information about the class
|
|
16246
|
+
*/
|
|
16247
|
+
oClassInfo?: sap.ClassInfo<T, sap.f.FlexibleColumnLayoutData>,
|
|
16248
|
+
/**
|
|
16249
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
16250
|
+
* used by this class
|
|
16251
|
+
*/
|
|
16252
|
+
FNMetaImpl?: Function
|
|
16253
|
+
): Function;
|
|
16254
|
+
/**
|
|
16255
|
+
* Returns a metadata object for class sap.f.FlexibleColumnLayoutData.
|
|
16256
|
+
*
|
|
16257
|
+
*
|
|
16258
|
+
* @returns Metadata object describing this class
|
|
16259
|
+
*/
|
|
16260
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
16261
|
+
/**
|
|
16262
|
+
* Destroys the desktopLayoutData in the aggregation {@link #getDesktopLayoutData desktopLayoutData}.
|
|
16263
|
+
*
|
|
16264
|
+
*
|
|
16265
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
16266
|
+
*/
|
|
16267
|
+
destroyDesktopLayoutData(): this;
|
|
16268
|
+
/**
|
|
16269
|
+
* Destroys the tabletLayoutData in the aggregation {@link #getTabletLayoutData tabletLayoutData}.
|
|
16270
|
+
*
|
|
16271
|
+
*
|
|
16272
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
16273
|
+
*/
|
|
16274
|
+
destroyTabletLayoutData(): this;
|
|
16275
|
+
/**
|
|
16276
|
+
* Gets content of aggregation {@link #getDesktopLayoutData desktopLayoutData}.
|
|
16277
|
+
*
|
|
16278
|
+
* Allows LayoutData of type `sap.f.FlexibleColumnLayoutDataForDesktop`
|
|
16279
|
+
*/
|
|
16280
|
+
getDesktopLayoutData(): sap.f.FlexibleColumnLayoutDataForDesktop;
|
|
16281
|
+
/**
|
|
16282
|
+
* Gets content of aggregation {@link #getTabletLayoutData tabletLayoutData}.
|
|
16283
|
+
*
|
|
16284
|
+
* Allows LayoutData of type `sap.f.FlexibleColumnLayoutDataForTablet`
|
|
16285
|
+
*/
|
|
16286
|
+
getTabletLayoutData(): sap.f.FlexibleColumnLayoutDataForTablet;
|
|
16287
|
+
/**
|
|
16288
|
+
* Sets the aggregated {@link #getDesktopLayoutData desktopLayoutData}.
|
|
16289
|
+
*
|
|
16290
|
+
*
|
|
16291
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
16292
|
+
*/
|
|
16293
|
+
setDesktopLayoutData(
|
|
16294
|
+
/**
|
|
16295
|
+
* The desktopLayoutData to set
|
|
16296
|
+
*/
|
|
16297
|
+
oDesktopLayoutData: sap.f.FlexibleColumnLayoutDataForDesktop
|
|
16298
|
+
): this;
|
|
16299
|
+
/**
|
|
16300
|
+
* Sets the aggregated {@link #getTabletLayoutData tabletLayoutData}.
|
|
16301
|
+
*
|
|
16302
|
+
*
|
|
16303
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
16304
|
+
*/
|
|
16305
|
+
setTabletLayoutData(
|
|
16306
|
+
/**
|
|
16307
|
+
* The tabletLayoutData to set
|
|
16308
|
+
*/
|
|
16309
|
+
oTabletLayoutData: sap.f.FlexibleColumnLayoutDataForTablet
|
|
16310
|
+
): this;
|
|
16311
|
+
}
|
|
16312
|
+
/**
|
|
16313
|
+
* Holds layout data for columns of `sap.f.FlexibleColumnLayout` on desktop.
|
|
16314
|
+
*
|
|
16315
|
+
* @since 1.128
|
|
16316
|
+
*/
|
|
16317
|
+
class FlexibleColumnLayoutDataForDesktop extends sap.ui.core.LayoutData {
|
|
16318
|
+
/**
|
|
16319
|
+
* Constructor for a new `sap.f.FlexibleColumnLayoutDataForDesktop`.
|
|
16320
|
+
*
|
|
16321
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
16322
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
16323
|
+
* of the syntax of the settings object.
|
|
16324
|
+
*/
|
|
16325
|
+
constructor(
|
|
16326
|
+
/**
|
|
16327
|
+
* Initial settings for the new element.
|
|
16328
|
+
*/
|
|
16329
|
+
mSettings?: sap.f.$FlexibleColumnLayoutDataForDesktopSettings
|
|
16330
|
+
);
|
|
16331
|
+
/**
|
|
16332
|
+
* Constructor for a new `sap.f.FlexibleColumnLayoutDataForDesktop`.
|
|
16333
|
+
*
|
|
16334
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
16335
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
16336
|
+
* of the syntax of the settings object.
|
|
16337
|
+
*/
|
|
16338
|
+
constructor(
|
|
16339
|
+
/**
|
|
16340
|
+
* ID for the new element, generated automatically if no ID is given
|
|
16341
|
+
*/
|
|
16342
|
+
sId?: string,
|
|
16343
|
+
/**
|
|
16344
|
+
* Initial settings for the new element.
|
|
16345
|
+
*/
|
|
16346
|
+
mSettings?: sap.f.$FlexibleColumnLayoutDataForDesktopSettings
|
|
16347
|
+
);
|
|
16348
|
+
|
|
16349
|
+
/**
|
|
16350
|
+
* Creates a new subclass of class sap.f.FlexibleColumnLayoutDataForDesktop with name `sClassName` and enriches
|
|
16351
|
+
* it with the information contained in `oClassInfo`.
|
|
16352
|
+
*
|
|
16353
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.LayoutData.extend}.
|
|
16354
|
+
*
|
|
16355
|
+
*
|
|
16356
|
+
* @returns Created class / constructor function
|
|
16357
|
+
*/
|
|
16358
|
+
static extend<T extends Record<string, unknown>>(
|
|
16359
|
+
/**
|
|
16360
|
+
* Name of the class being created
|
|
16361
|
+
*/
|
|
16362
|
+
sClassName: string,
|
|
16363
|
+
/**
|
|
16364
|
+
* Object literal with information about the class
|
|
16365
|
+
*/
|
|
16366
|
+
oClassInfo?: sap.ClassInfo<T, sap.f.FlexibleColumnLayoutDataForDesktop>,
|
|
16367
|
+
/**
|
|
16368
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
16369
|
+
* used by this class
|
|
16370
|
+
*/
|
|
16371
|
+
FNMetaImpl?: Function
|
|
16372
|
+
): Function;
|
|
16373
|
+
/**
|
|
16374
|
+
* Returns a metadata object for class sap.f.FlexibleColumnLayoutDataForDesktop.
|
|
16375
|
+
*
|
|
16376
|
+
*
|
|
16377
|
+
* @returns Metadata object describing this class
|
|
16378
|
+
*/
|
|
16379
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
16380
|
+
/**
|
|
16381
|
+
* Gets current value of property {@link #getThreeColumnsBeginExpandedEndHidden threeColumnsBeginExpandedEndHidden}.
|
|
16382
|
+
*
|
|
16383
|
+
* Columns distribution of ThreeColumnsBeginExpandedEndHidden layout in the format "begin/mid/end", where
|
|
16384
|
+
* values are set in percentages.
|
|
16385
|
+
*
|
|
16386
|
+
* Default value is `"67/33/0"`.
|
|
16387
|
+
*
|
|
16388
|
+
*
|
|
16389
|
+
* @returns Value of property `threeColumnsBeginExpandedEndHidden`
|
|
16390
|
+
*/
|
|
16391
|
+
getThreeColumnsBeginExpandedEndHidden(): string;
|
|
16392
|
+
/**
|
|
16393
|
+
* Gets current value of property {@link #getThreeColumnsEndExpanded threeColumnsEndExpanded}.
|
|
16394
|
+
*
|
|
16395
|
+
* Columns distribution of ThreeColumnsEndExpanded layout in the format "begin/mid/end", where values are
|
|
16396
|
+
* set in percentages.
|
|
16397
|
+
*
|
|
16398
|
+
* Default value is `"25/25/50"`.
|
|
16399
|
+
*
|
|
16400
|
+
*
|
|
16401
|
+
* @returns Value of property `threeColumnsEndExpanded`
|
|
16402
|
+
*/
|
|
16403
|
+
getThreeColumnsEndExpanded(): string;
|
|
16404
|
+
/**
|
|
16405
|
+
* Gets current value of property {@link #getThreeColumnsMidExpanded threeColumnsMidExpanded}.
|
|
16406
|
+
*
|
|
16407
|
+
* Columns distribution of ThreeColumnsMidExpanded layout in the format "begin/mid/end", where values are
|
|
16408
|
+
* set in percentages.
|
|
16409
|
+
*
|
|
16410
|
+
* Default value is `"25/50/25"`.
|
|
16411
|
+
*
|
|
16412
|
+
*
|
|
16413
|
+
* @returns Value of property `threeColumnsMidExpanded`
|
|
16414
|
+
*/
|
|
16415
|
+
getThreeColumnsMidExpanded(): string;
|
|
16416
|
+
/**
|
|
16417
|
+
* Gets current value of property {@link #getThreeColumnsMidExpandedEndHidden threeColumnsMidExpandedEndHidden}.
|
|
16418
|
+
*
|
|
16419
|
+
* Columns distribution of ThreeColumnsMidExpandedEndHidden layout in the format "begin/mid/end", where
|
|
16420
|
+
* values are set in percentages.
|
|
16421
|
+
*
|
|
16422
|
+
* Default value is `"33/67/0"`.
|
|
16423
|
+
*
|
|
16424
|
+
*
|
|
16425
|
+
* @returns Value of property `threeColumnsMidExpandedEndHidden`
|
|
16426
|
+
*/
|
|
16427
|
+
getThreeColumnsMidExpandedEndHidden(): string;
|
|
16428
|
+
/**
|
|
16429
|
+
* Gets current value of property {@link #getTwoColumnsBeginExpanded twoColumnsBeginExpanded}.
|
|
16430
|
+
*
|
|
16431
|
+
* Columns distribution of TwoColumnsBeginExpanded layout in the format "begin/mid/end", where values are
|
|
16432
|
+
* set in percentages.
|
|
16433
|
+
*
|
|
16434
|
+
* Default value is `"67/33/0"`.
|
|
16435
|
+
*
|
|
16436
|
+
*
|
|
16437
|
+
* @returns Value of property `twoColumnsBeginExpanded`
|
|
16438
|
+
*/
|
|
16439
|
+
getTwoColumnsBeginExpanded(): string;
|
|
16440
|
+
/**
|
|
16441
|
+
* Gets current value of property {@link #getTwoColumnsMidExpanded twoColumnsMidExpanded}.
|
|
16442
|
+
*
|
|
16443
|
+
* Columns distribution of TwoColumnsMidExpanded layout in the format "begin/mid/end", where values are
|
|
16444
|
+
* set in percentages.
|
|
16445
|
+
*
|
|
16446
|
+
* Default value is `"33/67/0"`.
|
|
16447
|
+
*
|
|
16448
|
+
*
|
|
16449
|
+
* @returns Value of property `twoColumnsMidExpanded`
|
|
16450
|
+
*/
|
|
16451
|
+
getTwoColumnsMidExpanded(): string;
|
|
16452
|
+
/**
|
|
16453
|
+
* Sets a new value for property {@link #getThreeColumnsBeginExpandedEndHidden threeColumnsBeginExpandedEndHidden}.
|
|
16454
|
+
*
|
|
16455
|
+
* Columns distribution of ThreeColumnsBeginExpandedEndHidden layout in the format "begin/mid/end", where
|
|
16456
|
+
* values are set in percentages.
|
|
16457
|
+
*
|
|
16458
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16459
|
+
*
|
|
16460
|
+
* Default value is `"67/33/0"`.
|
|
16461
|
+
*
|
|
16462
|
+
*
|
|
16463
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
16464
|
+
*/
|
|
16465
|
+
setThreeColumnsBeginExpandedEndHidden(
|
|
16466
|
+
/**
|
|
16467
|
+
* New value for property `threeColumnsBeginExpandedEndHidden`
|
|
16468
|
+
*/
|
|
16469
|
+
sThreeColumnsBeginExpandedEndHidden?: string
|
|
16470
|
+
): this;
|
|
16471
|
+
/**
|
|
16472
|
+
* Sets a new value for property {@link #getThreeColumnsEndExpanded threeColumnsEndExpanded}.
|
|
16473
|
+
*
|
|
16474
|
+
* Columns distribution of ThreeColumnsEndExpanded layout in the format "begin/mid/end", where values are
|
|
16475
|
+
* set in percentages.
|
|
16476
|
+
*
|
|
16477
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16478
|
+
*
|
|
16479
|
+
* Default value is `"25/25/50"`.
|
|
16480
|
+
*
|
|
16481
|
+
*
|
|
16482
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
16483
|
+
*/
|
|
16484
|
+
setThreeColumnsEndExpanded(
|
|
16485
|
+
/**
|
|
16486
|
+
* New value for property `threeColumnsEndExpanded`
|
|
16487
|
+
*/
|
|
16488
|
+
sThreeColumnsEndExpanded?: string
|
|
15315
16489
|
): this;
|
|
15316
16490
|
/**
|
|
15317
|
-
*
|
|
16491
|
+
* Sets a new value for property {@link #getThreeColumnsMidExpanded threeColumnsMidExpanded}.
|
|
15318
16492
|
*
|
|
16493
|
+
* Columns distribution of ThreeColumnsMidExpanded layout in the format "begin/mid/end", where values are
|
|
16494
|
+
* set in percentages.
|
|
15319
16495
|
*
|
|
15320
|
-
*
|
|
16496
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16497
|
+
*
|
|
16498
|
+
* Default value is `"25/50/25"`.
|
|
16499
|
+
*
|
|
16500
|
+
*
|
|
16501
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
15321
16502
|
*/
|
|
15322
|
-
|
|
15323
|
-
/**
|
|
15324
|
-
* The screen to which drilldown should happen. The ID or the control itself can be given.
|
|
15325
|
-
*/
|
|
15326
|
-
sPageId: string,
|
|
15327
|
-
/**
|
|
15328
|
-
* The type of the transition/animation to apply. Options are: "slide" (horizontal movement from the right),
|
|
15329
|
-
* "fade", "flip", and "show" and the names of any registered custom transitions.
|
|
15330
|
-
*
|
|
15331
|
-
* None of the standard transitions is currently making use of any given transition parameters.
|
|
15332
|
-
*/
|
|
15333
|
-
sTransitionName: string,
|
|
15334
|
-
/**
|
|
15335
|
-
* This optional object can carry any payload data which should be made available to the target page. The
|
|
15336
|
-
* BeforeShow event on the target page will contain this data object as data property.
|
|
15337
|
-
*
|
|
15338
|
-
* Use case: in scenarios where the entity triggering the navigation can't or shouldn't directly initialize
|
|
15339
|
-
* the target page, it can fill this object and the target page itself (or a listener on it) can take over
|
|
15340
|
-
* the initialization, using the given data.
|
|
15341
|
-
*
|
|
15342
|
-
* When the transitionParameters object is used, this data object must also be given (either as object or
|
|
15343
|
-
* as null) in order to have a proper parameter order.
|
|
15344
|
-
*/
|
|
15345
|
-
oData: object,
|
|
16503
|
+
setThreeColumnsMidExpanded(
|
|
15346
16504
|
/**
|
|
15347
|
-
*
|
|
15348
|
-
* which triggered the transition or the desired transition duration.
|
|
15349
|
-
*
|
|
15350
|
-
* For a proper parameter order, the data parameter must be given when the transitionParameters parameter
|
|
15351
|
-
* is used (it can be given as "null").
|
|
15352
|
-
*
|
|
15353
|
-
* NOTE: it depends on the transition function how the object should be structured and which parameters
|
|
15354
|
-
* are actually used to influence the transition. The "show", "slide" and "fade" transitions do not use
|
|
15355
|
-
* any parameter.
|
|
16505
|
+
* New value for property `threeColumnsMidExpanded`
|
|
15356
16506
|
*/
|
|
15357
|
-
|
|
16507
|
+
sThreeColumnsMidExpanded?: string
|
|
15358
16508
|
): this;
|
|
15359
16509
|
/**
|
|
15360
|
-
*
|
|
16510
|
+
* Sets a new value for property {@link #getThreeColumnsMidExpandedEndHidden threeColumnsMidExpandedEndHidden}.
|
|
15361
16511
|
*
|
|
16512
|
+
* Columns distribution of ThreeColumnsMidExpandedEndHidden layout in the format "begin/mid/end", where
|
|
16513
|
+
* values are set in percentages.
|
|
15362
16514
|
*
|
|
15363
|
-
*
|
|
16515
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16516
|
+
*
|
|
16517
|
+
* Default value is `"33/67/0"`.
|
|
16518
|
+
*
|
|
16519
|
+
*
|
|
16520
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
15364
16521
|
*/
|
|
15365
|
-
|
|
16522
|
+
setThreeColumnsMidExpandedEndHidden(
|
|
15366
16523
|
/**
|
|
15367
|
-
*
|
|
16524
|
+
* New value for property `threeColumnsMidExpandedEndHidden`
|
|
15368
16525
|
*/
|
|
15369
|
-
|
|
16526
|
+
sThreeColumnsMidExpandedEndHidden?: string
|
|
16527
|
+
): this;
|
|
16528
|
+
/**
|
|
16529
|
+
* Sets a new value for property {@link #getTwoColumnsBeginExpanded twoColumnsBeginExpanded}.
|
|
16530
|
+
*
|
|
16531
|
+
* Columns distribution of TwoColumnsBeginExpanded layout in the format "begin/mid/end", where values are
|
|
16532
|
+
* set in percentages.
|
|
16533
|
+
*
|
|
16534
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16535
|
+
*
|
|
16536
|
+
* Default value is `"67/33/0"`.
|
|
16537
|
+
*
|
|
16538
|
+
*
|
|
16539
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
16540
|
+
*/
|
|
16541
|
+
setTwoColumnsBeginExpanded(
|
|
15370
16542
|
/**
|
|
15371
|
-
*
|
|
15372
|
-
* BeforeShow event on the target page will contain this data object as data property.
|
|
15373
|
-
*
|
|
15374
|
-
* Use case: in scenarios where the entity triggering the navigation can't or shouldn't directly initialize
|
|
15375
|
-
* the target page, it can fill this object and the target page itself (or a listener on it) can take over
|
|
15376
|
-
* the initialization, using the given data.
|
|
15377
|
-
*
|
|
15378
|
-
* When the transitionParameters object is used, this data object must also be given (either as object or
|
|
15379
|
-
* as null) in order to have a proper parameter order.
|
|
16543
|
+
* New value for property `twoColumnsBeginExpanded`
|
|
15380
16544
|
*/
|
|
15381
|
-
|
|
16545
|
+
sTwoColumnsBeginExpanded?: string
|
|
16546
|
+
): this;
|
|
16547
|
+
/**
|
|
16548
|
+
* Sets a new value for property {@link #getTwoColumnsMidExpanded twoColumnsMidExpanded}.
|
|
16549
|
+
*
|
|
16550
|
+
* Columns distribution of TwoColumnsMidExpanded layout in the format "begin/mid/end", where values are
|
|
16551
|
+
* set in percentages.
|
|
16552
|
+
*
|
|
16553
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16554
|
+
*
|
|
16555
|
+
* Default value is `"33/67/0"`.
|
|
16556
|
+
*
|
|
16557
|
+
*
|
|
16558
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
16559
|
+
*/
|
|
16560
|
+
setTwoColumnsMidExpanded(
|
|
15382
16561
|
/**
|
|
15383
|
-
*
|
|
15384
|
-
* which triggered the transition or the desired transition duration.
|
|
15385
|
-
*
|
|
15386
|
-
* For a proper parameter order, the data parameter must be given when the transitionParameters parameter
|
|
15387
|
-
* is used (it can be given as "null").
|
|
15388
|
-
*
|
|
15389
|
-
* NOTE: it depends on the transition function how the object should be structured and which parameters
|
|
15390
|
-
* are actually used to influence the transition. The "show", "slide" and "fade" transitions do not use
|
|
15391
|
-
* any parameter.
|
|
16562
|
+
* New value for property `twoColumnsMidExpanded`
|
|
15392
16563
|
*/
|
|
15393
|
-
|
|
16564
|
+
sTwoColumnsMidExpanded?: string
|
|
15394
16565
|
): this;
|
|
15395
16566
|
}
|
|
15396
16567
|
/**
|
|
15397
|
-
*
|
|
15398
|
-
* control. For example, these landmarks are used by assistive technologies (such as screen readers) to
|
|
15399
|
-
* provide a meaningful columns overview.
|
|
16568
|
+
* Holds layout data for columns of `sap.f.FlexibleColumnLayout` on tablet.
|
|
15400
16569
|
*
|
|
15401
|
-
* @since 1.
|
|
16570
|
+
* @since 1.128
|
|
15402
16571
|
*/
|
|
15403
|
-
class
|
|
15404
|
-
.Element {
|
|
16572
|
+
class FlexibleColumnLayoutDataForTablet extends sap.ui.core.LayoutData {
|
|
15405
16573
|
/**
|
|
15406
|
-
* Constructor for a new `sap.f.
|
|
16574
|
+
* Constructor for a new `sap.f.FlexibleColumnLayoutDataForTablet`.
|
|
15407
16575
|
*
|
|
15408
16576
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
15409
16577
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -15411,12 +16579,12 @@ declare namespace sap {
|
|
|
15411
16579
|
*/
|
|
15412
16580
|
constructor(
|
|
15413
16581
|
/**
|
|
15414
|
-
* Initial settings for the new element
|
|
16582
|
+
* Initial settings for the new element.
|
|
15415
16583
|
*/
|
|
15416
|
-
mSettings?: sap.f.$
|
|
16584
|
+
mSettings?: sap.f.$FlexibleColumnLayoutDataForTabletSettings
|
|
15417
16585
|
);
|
|
15418
16586
|
/**
|
|
15419
|
-
* Constructor for a new `sap.f.
|
|
16587
|
+
* Constructor for a new `sap.f.FlexibleColumnLayoutDataForTablet`.
|
|
15420
16588
|
*
|
|
15421
16589
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
15422
16590
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -15428,16 +16596,16 @@ declare namespace sap {
|
|
|
15428
16596
|
*/
|
|
15429
16597
|
sId?: string,
|
|
15430
16598
|
/**
|
|
15431
|
-
* Initial settings for the new element
|
|
16599
|
+
* Initial settings for the new element.
|
|
15432
16600
|
*/
|
|
15433
|
-
mSettings?: sap.f.$
|
|
16601
|
+
mSettings?: sap.f.$FlexibleColumnLayoutDataForTabletSettings
|
|
15434
16602
|
);
|
|
15435
16603
|
|
|
15436
16604
|
/**
|
|
15437
|
-
* Creates a new subclass of class sap.f.
|
|
15438
|
-
*
|
|
16605
|
+
* Creates a new subclass of class sap.f.FlexibleColumnLayoutDataForTablet with name `sClassName` and enriches
|
|
16606
|
+
* it with the information contained in `oClassInfo`.
|
|
15439
16607
|
*
|
|
15440
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.
|
|
16608
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.LayoutData.extend}.
|
|
15441
16609
|
*
|
|
15442
16610
|
*
|
|
15443
16611
|
* @returns Created class / constructor function
|
|
@@ -15450,10 +16618,7 @@ declare namespace sap {
|
|
|
15450
16618
|
/**
|
|
15451
16619
|
* Object literal with information about the class
|
|
15452
16620
|
*/
|
|
15453
|
-
oClassInfo?: sap.ClassInfo<
|
|
15454
|
-
T,
|
|
15455
|
-
sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo
|
|
15456
|
-
>,
|
|
16621
|
+
oClassInfo?: sap.ClassInfo<T, sap.f.FlexibleColumnLayoutDataForTablet>,
|
|
15457
16622
|
/**
|
|
15458
16623
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
15459
16624
|
* used by this class
|
|
@@ -15461,228 +16626,197 @@ declare namespace sap {
|
|
|
15461
16626
|
FNMetaImpl?: Function
|
|
15462
16627
|
): Function;
|
|
15463
16628
|
/**
|
|
15464
|
-
* Returns a metadata object for class sap.f.
|
|
16629
|
+
* Returns a metadata object for class sap.f.FlexibleColumnLayoutDataForTablet.
|
|
15465
16630
|
*
|
|
15466
16631
|
*
|
|
15467
16632
|
* @returns Metadata object describing this class
|
|
15468
16633
|
*/
|
|
15469
16634
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
15470
16635
|
/**
|
|
15471
|
-
* Gets current value of property {@link #
|
|
15472
|
-
*
|
|
15473
|
-
* Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
15474
|
-
* control.
|
|
15475
|
-
*
|
|
15476
|
-
* If not set, a predefined text is used.
|
|
15477
|
-
*
|
|
15478
|
-
*
|
|
15479
|
-
* @returns Value of property `firstColumnBackArrowLabel`
|
|
15480
|
-
*/
|
|
15481
|
-
getFirstColumnBackArrowLabel(): string;
|
|
15482
|
-
/**
|
|
15483
|
-
* Gets current value of property {@link #getFirstColumnLabel firstColumnLabel}.
|
|
16636
|
+
* Gets current value of property {@link #getThreeColumnsBeginExpandedEndHidden threeColumnsBeginExpandedEndHidden}.
|
|
15484
16637
|
*
|
|
15485
|
-
*
|
|
15486
|
-
*
|
|
16638
|
+
* Columns distribution of ThreeColumnsBeginExpandedEndHidden layout in the format "begin/mid/end", where
|
|
16639
|
+
* values are set in percentages.
|
|
15487
16640
|
*
|
|
15488
|
-
*
|
|
16641
|
+
* Default value is `"67/33/0"`.
|
|
15489
16642
|
*
|
|
15490
16643
|
*
|
|
15491
|
-
* @returns Value of property `
|
|
16644
|
+
* @returns Value of property `threeColumnsBeginExpandedEndHidden`
|
|
15492
16645
|
*/
|
|
15493
|
-
|
|
16646
|
+
getThreeColumnsBeginExpandedEndHidden(): string;
|
|
15494
16647
|
/**
|
|
15495
|
-
* Gets current value of property {@link #
|
|
16648
|
+
* Gets current value of property {@link #getThreeColumnsEndExpanded threeColumnsEndExpanded}.
|
|
15496
16649
|
*
|
|
15497
|
-
*
|
|
15498
|
-
*
|
|
16650
|
+
* Columns distribution of ThreeColumnsEndExpanded layout in the format "begin/mid/end", where values are
|
|
16651
|
+
* set in percentages.
|
|
15499
16652
|
*
|
|
15500
|
-
*
|
|
16653
|
+
* Default value is `"0/33/67"`.
|
|
15501
16654
|
*
|
|
15502
16655
|
*
|
|
15503
|
-
* @returns Value of property `
|
|
16656
|
+
* @returns Value of property `threeColumnsEndExpanded`
|
|
15504
16657
|
*/
|
|
15505
|
-
|
|
16658
|
+
getThreeColumnsEndExpanded(): string;
|
|
15506
16659
|
/**
|
|
15507
|
-
* Gets current value of property {@link #
|
|
16660
|
+
* Gets current value of property {@link #getThreeColumnsMidExpanded threeColumnsMidExpanded}.
|
|
15508
16661
|
*
|
|
15509
|
-
*
|
|
15510
|
-
*
|
|
16662
|
+
* Columns distribution of ThreeColumnsMidExpanded layout in the format "begin/mid/end", where values are
|
|
16663
|
+
* set in percentages.
|
|
15511
16664
|
*
|
|
15512
|
-
*
|
|
16665
|
+
* Default value is `"0/67/33"`.
|
|
15513
16666
|
*
|
|
15514
16667
|
*
|
|
15515
|
-
* @returns Value of property `
|
|
16668
|
+
* @returns Value of property `threeColumnsMidExpanded`
|
|
15516
16669
|
*/
|
|
15517
|
-
|
|
16670
|
+
getThreeColumnsMidExpanded(): string;
|
|
15518
16671
|
/**
|
|
15519
|
-
* Gets current value of property {@link #
|
|
16672
|
+
* Gets current value of property {@link #getThreeColumnsMidExpandedEndHidden threeColumnsMidExpandedEndHidden}.
|
|
15520
16673
|
*
|
|
15521
|
-
*
|
|
15522
|
-
*
|
|
16674
|
+
* Columns distribution of ThreeColumnsMidExpandedEndHidden layout in the format "begin/mid/end", where
|
|
16675
|
+
* values are set in percentages.
|
|
15523
16676
|
*
|
|
15524
|
-
*
|
|
16677
|
+
* Default value is `"33/67/0"`.
|
|
15525
16678
|
*
|
|
15526
16679
|
*
|
|
15527
|
-
* @returns Value of property `
|
|
16680
|
+
* @returns Value of property `threeColumnsMidExpandedEndHidden`
|
|
15528
16681
|
*/
|
|
15529
|
-
|
|
16682
|
+
getThreeColumnsMidExpandedEndHidden(): string;
|
|
15530
16683
|
/**
|
|
15531
|
-
* Gets current value of property {@link #
|
|
16684
|
+
* Gets current value of property {@link #getTwoColumnsBeginExpanded twoColumnsBeginExpanded}.
|
|
15532
16685
|
*
|
|
15533
|
-
*
|
|
15534
|
-
*
|
|
16686
|
+
* Columns distribution of TwoColumnsBeginExpanded layout in the format "begin/mid/end", where values are
|
|
16687
|
+
* set in percentages.
|
|
15535
16688
|
*
|
|
15536
|
-
*
|
|
16689
|
+
* Default value is `"67/33/0"`.
|
|
15537
16690
|
*
|
|
15538
16691
|
*
|
|
15539
|
-
* @returns Value of property `
|
|
16692
|
+
* @returns Value of property `twoColumnsBeginExpanded`
|
|
15540
16693
|
*/
|
|
15541
|
-
|
|
16694
|
+
getTwoColumnsBeginExpanded(): string;
|
|
15542
16695
|
/**
|
|
15543
|
-
* Gets current value of property {@link #
|
|
16696
|
+
* Gets current value of property {@link #getTwoColumnsMidExpanded twoColumnsMidExpanded}.
|
|
15544
16697
|
*
|
|
15545
|
-
*
|
|
15546
|
-
*
|
|
16698
|
+
* Columns distribution of TwoColumnsMidExpanded layout in the format "begin/mid/end", where values are
|
|
16699
|
+
* set in percentages.
|
|
15547
16700
|
*
|
|
15548
|
-
*
|
|
16701
|
+
* Default value is `"33/67/0"`.
|
|
15549
16702
|
*
|
|
15550
16703
|
*
|
|
15551
|
-
* @returns Value of property `
|
|
16704
|
+
* @returns Value of property `twoColumnsMidExpanded`
|
|
15552
16705
|
*/
|
|
15553
|
-
|
|
16706
|
+
getTwoColumnsMidExpanded(): string;
|
|
15554
16707
|
/**
|
|
15555
|
-
* Sets a new value for property {@link #
|
|
15556
|
-
*
|
|
15557
|
-
* Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
15558
|
-
* control.
|
|
16708
|
+
* Sets a new value for property {@link #getThreeColumnsBeginExpandedEndHidden threeColumnsBeginExpandedEndHidden}.
|
|
15559
16709
|
*
|
|
15560
|
-
*
|
|
16710
|
+
* Columns distribution of ThreeColumnsBeginExpandedEndHidden layout in the format "begin/mid/end", where
|
|
16711
|
+
* values are set in percentages.
|
|
15561
16712
|
*
|
|
15562
16713
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
15563
16714
|
*
|
|
15564
|
-
*
|
|
15565
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
15566
|
-
*/
|
|
15567
|
-
setFirstColumnBackArrowLabel(
|
|
15568
|
-
/**
|
|
15569
|
-
* New value for property `firstColumnBackArrowLabel`
|
|
15570
|
-
*/
|
|
15571
|
-
sFirstColumnBackArrowLabel?: string
|
|
15572
|
-
): this;
|
|
15573
|
-
/**
|
|
15574
|
-
* Sets a new value for property {@link #getFirstColumnLabel firstColumnLabel}.
|
|
15575
|
-
*
|
|
15576
|
-
* Text that describes the landmark of the first column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
15577
|
-
* control.
|
|
15578
|
-
*
|
|
15579
|
-
* If not set, a predefined text is used.
|
|
15580
|
-
*
|
|
15581
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16715
|
+
* Default value is `"67/33/0"`.
|
|
15582
16716
|
*
|
|
15583
16717
|
*
|
|
15584
16718
|
* @returns Reference to `this` in order to allow method chaining
|
|
15585
16719
|
*/
|
|
15586
|
-
|
|
16720
|
+
setThreeColumnsBeginExpandedEndHidden(
|
|
15587
16721
|
/**
|
|
15588
|
-
* New value for property `
|
|
16722
|
+
* New value for property `threeColumnsBeginExpandedEndHidden`
|
|
15589
16723
|
*/
|
|
15590
|
-
|
|
16724
|
+
sThreeColumnsBeginExpandedEndHidden?: string
|
|
15591
16725
|
): this;
|
|
15592
16726
|
/**
|
|
15593
|
-
* Sets a new value for property {@link #
|
|
15594
|
-
*
|
|
15595
|
-
* Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
15596
|
-
* control.
|
|
16727
|
+
* Sets a new value for property {@link #getThreeColumnsEndExpanded threeColumnsEndExpanded}.
|
|
15597
16728
|
*
|
|
15598
|
-
*
|
|
16729
|
+
* Columns distribution of ThreeColumnsEndExpanded layout in the format "begin/mid/end", where values are
|
|
16730
|
+
* set in percentages.
|
|
15599
16731
|
*
|
|
15600
16732
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
15601
16733
|
*
|
|
16734
|
+
* Default value is `"0/33/67"`.
|
|
16735
|
+
*
|
|
15602
16736
|
*
|
|
15603
16737
|
* @returns Reference to `this` in order to allow method chaining
|
|
15604
16738
|
*/
|
|
15605
|
-
|
|
16739
|
+
setThreeColumnsEndExpanded(
|
|
15606
16740
|
/**
|
|
15607
|
-
* New value for property `
|
|
16741
|
+
* New value for property `threeColumnsEndExpanded`
|
|
15608
16742
|
*/
|
|
15609
|
-
|
|
16743
|
+
sThreeColumnsEndExpanded?: string
|
|
15610
16744
|
): this;
|
|
15611
16745
|
/**
|
|
15612
|
-
* Sets a new value for property {@link #
|
|
16746
|
+
* Sets a new value for property {@link #getThreeColumnsMidExpanded threeColumnsMidExpanded}.
|
|
15613
16747
|
*
|
|
15614
|
-
*
|
|
15615
|
-
*
|
|
15616
|
-
*
|
|
15617
|
-
* If not set, a predefined text is used.
|
|
16748
|
+
* Columns distribution of ThreeColumnsMidExpanded layout in the format "begin/mid/end", where values are
|
|
16749
|
+
* set in percentages.
|
|
15618
16750
|
*
|
|
15619
16751
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
15620
16752
|
*
|
|
16753
|
+
* Default value is `"0/67/33"`.
|
|
16754
|
+
*
|
|
15621
16755
|
*
|
|
15622
16756
|
* @returns Reference to `this` in order to allow method chaining
|
|
15623
16757
|
*/
|
|
15624
|
-
|
|
16758
|
+
setThreeColumnsMidExpanded(
|
|
15625
16759
|
/**
|
|
15626
|
-
* New value for property `
|
|
16760
|
+
* New value for property `threeColumnsMidExpanded`
|
|
15627
16761
|
*/
|
|
15628
|
-
|
|
16762
|
+
sThreeColumnsMidExpanded?: string
|
|
15629
16763
|
): this;
|
|
15630
16764
|
/**
|
|
15631
|
-
* Sets a new value for property {@link #
|
|
15632
|
-
*
|
|
15633
|
-
* Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
15634
|
-
* control.
|
|
16765
|
+
* Sets a new value for property {@link #getThreeColumnsMidExpandedEndHidden threeColumnsMidExpandedEndHidden}.
|
|
15635
16766
|
*
|
|
15636
|
-
*
|
|
16767
|
+
* Columns distribution of ThreeColumnsMidExpandedEndHidden layout in the format "begin/mid/end", where
|
|
16768
|
+
* values are set in percentages.
|
|
15637
16769
|
*
|
|
15638
16770
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
15639
16771
|
*
|
|
16772
|
+
* Default value is `"33/67/0"`.
|
|
16773
|
+
*
|
|
15640
16774
|
*
|
|
15641
16775
|
* @returns Reference to `this` in order to allow method chaining
|
|
15642
16776
|
*/
|
|
15643
|
-
|
|
16777
|
+
setThreeColumnsMidExpandedEndHidden(
|
|
15644
16778
|
/**
|
|
15645
|
-
* New value for property `
|
|
16779
|
+
* New value for property `threeColumnsMidExpandedEndHidden`
|
|
15646
16780
|
*/
|
|
15647
|
-
|
|
16781
|
+
sThreeColumnsMidExpandedEndHidden?: string
|
|
15648
16782
|
): this;
|
|
15649
16783
|
/**
|
|
15650
|
-
* Sets a new value for property {@link #
|
|
15651
|
-
*
|
|
15652
|
-
* Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
15653
|
-
* control.
|
|
16784
|
+
* Sets a new value for property {@link #getTwoColumnsBeginExpanded twoColumnsBeginExpanded}.
|
|
15654
16785
|
*
|
|
15655
|
-
*
|
|
16786
|
+
* Columns distribution of TwoColumnsBeginExpanded layout in the format "begin/mid/end", where values are
|
|
16787
|
+
* set in percentages.
|
|
15656
16788
|
*
|
|
15657
16789
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
15658
16790
|
*
|
|
16791
|
+
* Default value is `"67/33/0"`.
|
|
16792
|
+
*
|
|
15659
16793
|
*
|
|
15660
16794
|
* @returns Reference to `this` in order to allow method chaining
|
|
15661
16795
|
*/
|
|
15662
|
-
|
|
16796
|
+
setTwoColumnsBeginExpanded(
|
|
15663
16797
|
/**
|
|
15664
|
-
* New value for property `
|
|
16798
|
+
* New value for property `twoColumnsBeginExpanded`
|
|
15665
16799
|
*/
|
|
15666
|
-
|
|
16800
|
+
sTwoColumnsBeginExpanded?: string
|
|
15667
16801
|
): this;
|
|
15668
16802
|
/**
|
|
15669
|
-
* Sets a new value for property {@link #
|
|
15670
|
-
*
|
|
15671
|
-
* Text that describes the landmark of the middle column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
15672
|
-
* control.
|
|
16803
|
+
* Sets a new value for property {@link #getTwoColumnsMidExpanded twoColumnsMidExpanded}.
|
|
15673
16804
|
*
|
|
15674
|
-
*
|
|
16805
|
+
* Columns distribution of TwoColumnsMidExpanded layout in the format "begin/mid/end", where values are
|
|
16806
|
+
* set in percentages.
|
|
15675
16807
|
*
|
|
15676
16808
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
15677
16809
|
*
|
|
16810
|
+
* Default value is `"33/67/0"`.
|
|
16811
|
+
*
|
|
15678
16812
|
*
|
|
15679
16813
|
* @returns Reference to `this` in order to allow method chaining
|
|
15680
16814
|
*/
|
|
15681
|
-
|
|
16815
|
+
setTwoColumnsMidExpanded(
|
|
15682
16816
|
/**
|
|
15683
|
-
* New value for property `
|
|
16817
|
+
* New value for property `twoColumnsMidExpanded`
|
|
15684
16818
|
*/
|
|
15685
|
-
|
|
16819
|
+
sTwoColumnsMidExpanded?: string
|
|
15686
16820
|
): this;
|
|
15687
16821
|
}
|
|
15688
16822
|
/**
|
|
@@ -21037,6 +22171,23 @@ declare namespace sap {
|
|
|
21037
22171
|
*/
|
|
21038
22172
|
Individual = "Individual",
|
|
21039
22173
|
}
|
|
22174
|
+
/**
|
|
22175
|
+
* Enumeration for different visibility options for the card badge.
|
|
22176
|
+
*
|
|
22177
|
+
* This enum is part of the 'sap/f/library' module export and must be accessed by the property 'CardBadgeVisibilityMode'.
|
|
22178
|
+
*
|
|
22179
|
+
* @since 1.128
|
|
22180
|
+
*/
|
|
22181
|
+
enum CardBadgeVisibilityMode {
|
|
22182
|
+
/**
|
|
22183
|
+
* Badge will be hidden after header is focused.
|
|
22184
|
+
*/
|
|
22185
|
+
Disappear = "Disappear",
|
|
22186
|
+
/**
|
|
22187
|
+
* Badge will not be hidden after header is focused.
|
|
22188
|
+
*/
|
|
22189
|
+
Persist = "Persist",
|
|
22190
|
+
}
|
|
21040
22191
|
/**
|
|
21041
22192
|
* Defines the areas within the `sap.f.DynamicPageTitle` control.
|
|
21042
22193
|
*
|
|
@@ -21372,6 +22523,15 @@ declare namespace sap {
|
|
|
21372
22523
|
FlexibleColumnLayout
|
|
21373
22524
|
>;
|
|
21374
22525
|
|
|
22526
|
+
/**
|
|
22527
|
+
* Event object of the FlexibleColumnLayout#columnsDistributionChange event.
|
|
22528
|
+
*/
|
|
22529
|
+
type FlexibleColumnLayout$ColumnsDistributionChangeEvent =
|
|
22530
|
+
sap.ui.base.Event<
|
|
22531
|
+
FlexibleColumnLayout$ColumnsDistributionChangeEventParameters,
|
|
22532
|
+
FlexibleColumnLayout
|
|
22533
|
+
>;
|
|
22534
|
+
|
|
21375
22535
|
/**
|
|
21376
22536
|
* Event object of the FlexibleColumnLayout#endColumnNavigate event.
|
|
21377
22537
|
*/
|
|
@@ -21552,6 +22712,8 @@ declare namespace sap {
|
|
|
21552
22712
|
|
|
21553
22713
|
"sap/f/cards/BaseHeader": undefined;
|
|
21554
22714
|
|
|
22715
|
+
"sap/f/cards/CardBadgeCustomData": undefined;
|
|
22716
|
+
|
|
21555
22717
|
"sap/f/cards/Header": undefined;
|
|
21556
22718
|
|
|
21557
22719
|
"sap/f/cards/loading/PlaceholderBaseRenderer": undefined;
|
|
@@ -21574,6 +22736,12 @@ declare namespace sap {
|
|
|
21574
22736
|
|
|
21575
22737
|
"sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo": undefined;
|
|
21576
22738
|
|
|
22739
|
+
"sap/f/FlexibleColumnLayoutData": undefined;
|
|
22740
|
+
|
|
22741
|
+
"sap/f/FlexibleColumnLayoutDataForDesktop": undefined;
|
|
22742
|
+
|
|
22743
|
+
"sap/f/FlexibleColumnLayoutDataForTablet": undefined;
|
|
22744
|
+
|
|
21577
22745
|
"sap/f/FlexibleColumnLayoutSemanticHelper": undefined;
|
|
21578
22746
|
|
|
21579
22747
|
"sap/f/GridContainer": undefined;
|