@openui5/ts-types 1.134.0 → 1.136.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/index.d.ts +1 -1
- package/types/sap.f.d.ts +106 -3
- package/types/sap.m.d.ts +767 -72
- package/types/sap.tnt.d.ts +215 -15
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +274 -147
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +10 -2
- package/types/sap.ui.integration.d.ts +2 -2
- package/types/sap.ui.layout.d.ts +11 -10
- package/types/sap.ui.mdc.d.ts +152 -13
- package/types/sap.ui.rta.d.ts +31 -5
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +22 -16
- package/types/sap.ui.table.d.ts +16 -18
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +42 -31
- 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 +11 -21
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.136.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -1157,6 +1157,15 @@ declare namespace sap {
|
|
|
1157
1157
|
*/
|
|
1158
1158
|
sKey: string
|
|
1159
1159
|
): sap.m.p13n.MetadataObject | undefined;
|
|
1160
|
+
/**
|
|
1161
|
+
* Gets a list of properties that are redundant and should be filtered out in the {@link sap.ui.mdc.p13n.SelectionController }
|
|
1162
|
+
* for personalization.
|
|
1163
|
+
*
|
|
1164
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1165
|
+
*
|
|
1166
|
+
* @returns A list of properties
|
|
1167
|
+
*/
|
|
1168
|
+
getRedundantProperties(): object[];
|
|
1160
1169
|
}
|
|
1161
1170
|
/**
|
|
1162
1171
|
* This control can be used to show personalization-related content in different popup controls.
|
|
@@ -1488,6 +1497,10 @@ declare namespace sap {
|
|
|
1488
1497
|
* Width configuration for the related popup container
|
|
1489
1498
|
*/
|
|
1490
1499
|
contentWidth?: sap.ui.core.CSSSize;
|
|
1500
|
+
/**
|
|
1501
|
+
* Key of active panel that is opened initially
|
|
1502
|
+
*/
|
|
1503
|
+
activePanel?: string;
|
|
1491
1504
|
}
|
|
1492
1505
|
): void;
|
|
1493
1506
|
/**
|
|
@@ -2665,6 +2678,43 @@ declare namespace sap {
|
|
|
2665
2678
|
}
|
|
2666
2679
|
|
|
2667
2680
|
namespace UploadSetwithTable {
|
|
2681
|
+
/**
|
|
2682
|
+
* This property type is used to define the file name validation configuration. Object is passed to {@link sap.m.plugins.UploadSetwithTable fileNameValidationConfig property}
|
|
2683
|
+
*/
|
|
2684
|
+
type FilenameValidationConfig = {
|
|
2685
|
+
/**
|
|
2686
|
+
* The file name validation config mode.
|
|
2687
|
+
*/
|
|
2688
|
+
mode: sap.m.plugins.UploadSetwithTable.FilenameValidationConfigMode;
|
|
2689
|
+
/**
|
|
2690
|
+
* The file name validation configuration characters.
|
|
2691
|
+
*
|
|
2692
|
+
* The default restricted filename character set is: \:/*?"<>|[]{}@#$
|
|
2693
|
+
*/
|
|
2694
|
+
characters: string;
|
|
2695
|
+
};
|
|
2696
|
+
|
|
2697
|
+
/**
|
|
2698
|
+
* Key property of {@link sap.m.plugins.UploadSetwithTable.FilenameValidationConfig FileNameValidationConfig}.
|
|
2699
|
+
* Used to determine the mode for file name validation.
|
|
2700
|
+
*
|
|
2701
|
+
* @since 1.136
|
|
2702
|
+
*/
|
|
2703
|
+
type FilenameValidationConfigMode = {
|
|
2704
|
+
/**
|
|
2705
|
+
* The file name validation mode. The allowed values are 'include', 'exclude', or 'override'.
|
|
2706
|
+
*
|
|
2707
|
+
* If the mode is 'include', the specified characters are added to the default restricted character set.
|
|
2708
|
+
*
|
|
2709
|
+
* If the mode is 'exclude', the specified characters are excluded from the default resrtricted character
|
|
2710
|
+
* set.
|
|
2711
|
+
* If the mode is 'override', the specified characters replace the entire default restricted character
|
|
2712
|
+
* set.
|
|
2713
|
+
* If the mode is not set, the default restricted file name character set is used.
|
|
2714
|
+
*/
|
|
2715
|
+
mode: string;
|
|
2716
|
+
};
|
|
2717
|
+
|
|
2668
2718
|
/**
|
|
2669
2719
|
* Item info object sent as paramter to {@link sap.m.plugins.UploadSetwithTable.itemValidationHandler itemValidationHandler callback}
|
|
2670
2720
|
*/
|
|
@@ -2728,6 +2778,16 @@ declare namespace sap {
|
|
|
2728
2778
|
selectionChange?: (oEvent: sap.ui.base.Event) => void;
|
|
2729
2779
|
}
|
|
2730
2780
|
|
|
2781
|
+
/**
|
|
2782
|
+
* Describes the settings that can be provided to the ColumnAIAction constructor.
|
|
2783
|
+
*/
|
|
2784
|
+
interface $ColumnAIActionSettings extends sap.ui.core.$ElementSettings {
|
|
2785
|
+
/**
|
|
2786
|
+
* Fired when the AI action is pressed.
|
|
2787
|
+
*/
|
|
2788
|
+
press?: (oEvent: ColumnAIAction$PressEvent) => void;
|
|
2789
|
+
}
|
|
2790
|
+
|
|
2731
2791
|
/**
|
|
2732
2792
|
* Describes the settings that can be provided to the ColumnResizer constructor.
|
|
2733
2793
|
*/
|
|
@@ -3052,6 +3112,24 @@ declare namespace sap {
|
|
|
3052
3112
|
| string
|
|
3053
3113
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3054
3114
|
|
|
3115
|
+
/**
|
|
3116
|
+
* File name validation configuration.
|
|
3117
|
+
* Set this property to configure the file name validation characters and the validation mode.
|
|
3118
|
+
* This configuration is used to validate the file name when a file is selected for renaming.
|
|
3119
|
+
* For the plugin to pick up this configuration, mode and characters of the property must be set to validate
|
|
3120
|
+
* the file name.
|
|
3121
|
+
* see {@link sap.m.plugins.UploadSetwithTable.FilenameValidationConfigMode mode} to configure the file
|
|
3122
|
+
* name validation mode.
|
|
3123
|
+
*
|
|
3124
|
+
* The default restricted filename character set is: \:/*?"<>|[]{}@#$
|
|
3125
|
+
*
|
|
3126
|
+
* @since 1.136
|
|
3127
|
+
*/
|
|
3128
|
+
fileNameValidationConfig?:
|
|
3129
|
+
| sap.m.plugins.UploadSetwithTable.FilenameValidationConfig
|
|
3130
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
3131
|
+
| `{${string}}`;
|
|
3132
|
+
|
|
3055
3133
|
/**
|
|
3056
3134
|
* Defines the uploader to be used. If not specified, the default implementation is used.
|
|
3057
3135
|
*/
|
|
@@ -3179,6 +3257,16 @@ declare namespace sap {
|
|
|
3179
3257
|
*/
|
|
3180
3258
|
interface CellSelector$SelectionChangeEventParameters {}
|
|
3181
3259
|
|
|
3260
|
+
/**
|
|
3261
|
+
* Parameters of the ColumnAIAction#press event.
|
|
3262
|
+
*/
|
|
3263
|
+
interface ColumnAIAction$PressEventParameters {
|
|
3264
|
+
/**
|
|
3265
|
+
* The column action that triggered the event.
|
|
3266
|
+
*/
|
|
3267
|
+
action?: sap.ui.core.Control;
|
|
3268
|
+
}
|
|
3269
|
+
|
|
3182
3270
|
/**
|
|
3183
3271
|
* Parameters of the ColumnResizer#columnResize event.
|
|
3184
3272
|
*/
|
|
@@ -3709,6 +3797,168 @@ declare namespace sap {
|
|
|
3709
3797
|
iRangeLimit?: int
|
|
3710
3798
|
): this;
|
|
3711
3799
|
}
|
|
3800
|
+
/**
|
|
3801
|
+
* This plugin adds an AI related action to a table column.
|
|
3802
|
+
*
|
|
3803
|
+
* @since 1.136
|
|
3804
|
+
*/
|
|
3805
|
+
class ColumnAIAction extends sap.ui.core.Element {
|
|
3806
|
+
/**
|
|
3807
|
+
* Constructor for a new `ColumnAIAction` plugin that can be used to add an AI related action for table
|
|
3808
|
+
* columns.
|
|
3809
|
+
*
|
|
3810
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
3811
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
3812
|
+
* of the syntax of the settings object.
|
|
3813
|
+
*/
|
|
3814
|
+
constructor(
|
|
3815
|
+
/**
|
|
3816
|
+
* Initial settings for the `ColumnAIAction`
|
|
3817
|
+
*/
|
|
3818
|
+
mSettings?: sap.m.plugins.$ColumnAIActionSettings
|
|
3819
|
+
);
|
|
3820
|
+
/**
|
|
3821
|
+
* Constructor for a new `ColumnAIAction` plugin that can be used to add an AI related action for table
|
|
3822
|
+
* columns.
|
|
3823
|
+
*
|
|
3824
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
3825
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
3826
|
+
* of the syntax of the settings object.
|
|
3827
|
+
*/
|
|
3828
|
+
constructor(
|
|
3829
|
+
/**
|
|
3830
|
+
* ID for the new `ColumnAIAction`, generated automatically if no ID is given
|
|
3831
|
+
*/
|
|
3832
|
+
sId?: string,
|
|
3833
|
+
/**
|
|
3834
|
+
* Initial settings for the `ColumnAIAction`
|
|
3835
|
+
*/
|
|
3836
|
+
mSettings?: sap.m.plugins.$ColumnAIActionSettings
|
|
3837
|
+
);
|
|
3838
|
+
|
|
3839
|
+
/**
|
|
3840
|
+
* Creates a new subclass of class sap.m.plugins.ColumnAIAction with name `sClassName` and enriches it with
|
|
3841
|
+
* the information contained in `oClassInfo`.
|
|
3842
|
+
*
|
|
3843
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
3844
|
+
*
|
|
3845
|
+
*
|
|
3846
|
+
* @returns Created class / constructor function
|
|
3847
|
+
*/
|
|
3848
|
+
static extend<T extends Record<string, unknown>>(
|
|
3849
|
+
/**
|
|
3850
|
+
* Name of the class being created
|
|
3851
|
+
*/
|
|
3852
|
+
sClassName: string,
|
|
3853
|
+
/**
|
|
3854
|
+
* Object literal with information about the class
|
|
3855
|
+
*/
|
|
3856
|
+
oClassInfo?: sap.ClassInfo<T, sap.m.plugins.ColumnAIAction>,
|
|
3857
|
+
/**
|
|
3858
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
3859
|
+
* used by this class
|
|
3860
|
+
*/
|
|
3861
|
+
FNMetaImpl?: Function
|
|
3862
|
+
): Function;
|
|
3863
|
+
/**
|
|
3864
|
+
* Searches a plugin of the corresponding type in the aggregations of the given `Element` instance. The
|
|
3865
|
+
* first plugin that is found is returned.
|
|
3866
|
+
*
|
|
3867
|
+
*
|
|
3868
|
+
* @returns The found plugin instance or `undefined` if not found
|
|
3869
|
+
*/
|
|
3870
|
+
static findOn(
|
|
3871
|
+
/**
|
|
3872
|
+
* The `Element` instance to check for
|
|
3873
|
+
*/
|
|
3874
|
+
oElement: sap.ui.core.Element
|
|
3875
|
+
): sap.ui.core.Element | undefined;
|
|
3876
|
+
/**
|
|
3877
|
+
* Returns a metadata object for class sap.m.plugins.ColumnAIAction.
|
|
3878
|
+
*
|
|
3879
|
+
*
|
|
3880
|
+
* @returns Metadata object describing this class
|
|
3881
|
+
*/
|
|
3882
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3883
|
+
/**
|
|
3884
|
+
* Attaches event handler `fnFunction` to the {@link #event:press press} event of this `sap.m.plugins.ColumnAIAction`.
|
|
3885
|
+
*
|
|
3886
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
3887
|
+
* otherwise it will be bound to this `sap.m.plugins.ColumnAIAction` itself.
|
|
3888
|
+
*
|
|
3889
|
+
* Fired when the AI action is pressed.
|
|
3890
|
+
*
|
|
3891
|
+
*
|
|
3892
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3893
|
+
*/
|
|
3894
|
+
attachPress(
|
|
3895
|
+
/**
|
|
3896
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
3897
|
+
* object when firing the event
|
|
3898
|
+
*/
|
|
3899
|
+
oData: object,
|
|
3900
|
+
/**
|
|
3901
|
+
* The function to be called when the event occurs
|
|
3902
|
+
*/
|
|
3903
|
+
fnFunction: (p1: ColumnAIAction$PressEvent) => void,
|
|
3904
|
+
/**
|
|
3905
|
+
* Context object to call the event handler with. Defaults to this `sap.m.plugins.ColumnAIAction` itself
|
|
3906
|
+
*/
|
|
3907
|
+
oListener?: object
|
|
3908
|
+
): this;
|
|
3909
|
+
/**
|
|
3910
|
+
* Attaches event handler `fnFunction` to the {@link #event:press press} event of this `sap.m.plugins.ColumnAIAction`.
|
|
3911
|
+
*
|
|
3912
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
3913
|
+
* otherwise it will be bound to this `sap.m.plugins.ColumnAIAction` itself.
|
|
3914
|
+
*
|
|
3915
|
+
* Fired when the AI action is pressed.
|
|
3916
|
+
*
|
|
3917
|
+
*
|
|
3918
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3919
|
+
*/
|
|
3920
|
+
attachPress(
|
|
3921
|
+
/**
|
|
3922
|
+
* The function to be called when the event occurs
|
|
3923
|
+
*/
|
|
3924
|
+
fnFunction: (p1: ColumnAIAction$PressEvent) => void,
|
|
3925
|
+
/**
|
|
3926
|
+
* Context object to call the event handler with. Defaults to this `sap.m.plugins.ColumnAIAction` itself
|
|
3927
|
+
*/
|
|
3928
|
+
oListener?: object
|
|
3929
|
+
): this;
|
|
3930
|
+
/**
|
|
3931
|
+
* Detaches event handler `fnFunction` from the {@link #event:press press} event of this `sap.m.plugins.ColumnAIAction`.
|
|
3932
|
+
*
|
|
3933
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
3934
|
+
*
|
|
3935
|
+
*
|
|
3936
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3937
|
+
*/
|
|
3938
|
+
detachPress(
|
|
3939
|
+
/**
|
|
3940
|
+
* The function to be called, when the event occurs
|
|
3941
|
+
*/
|
|
3942
|
+
fnFunction: (p1: ColumnAIAction$PressEvent) => void,
|
|
3943
|
+
/**
|
|
3944
|
+
* Context object on which the given function had to be called
|
|
3945
|
+
*/
|
|
3946
|
+
oListener?: object
|
|
3947
|
+
): this;
|
|
3948
|
+
/**
|
|
3949
|
+
* Fires event {@link #event:press press} to attached listeners.
|
|
3950
|
+
*
|
|
3951
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3952
|
+
*
|
|
3953
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3954
|
+
*/
|
|
3955
|
+
firePress(
|
|
3956
|
+
/**
|
|
3957
|
+
* Parameters to pass along with the event
|
|
3958
|
+
*/
|
|
3959
|
+
mParameters?: sap.m.plugins.ColumnAIAction$PressEventParameters
|
|
3960
|
+
): this;
|
|
3961
|
+
}
|
|
3712
3962
|
/**
|
|
3713
3963
|
* Enables column resizing for the `sap.m.Table`. This plugin can be added to the control via its `dependents`
|
|
3714
3964
|
* aggregation and there must only be 1 instance of the plugin per control.
|
|
@@ -6244,6 +6494,24 @@ declare namespace sap {
|
|
|
6244
6494
|
* @returns Value of property `directory`
|
|
6245
6495
|
*/
|
|
6246
6496
|
getDirectory(): boolean;
|
|
6497
|
+
/**
|
|
6498
|
+
* Gets current value of property {@link #getFileNameValidationConfig fileNameValidationConfig}.
|
|
6499
|
+
*
|
|
6500
|
+
* File name validation configuration.
|
|
6501
|
+
* Set this property to configure the file name validation characters and the validation mode.
|
|
6502
|
+
* This configuration is used to validate the file name when a file is selected for renaming.
|
|
6503
|
+
* For the plugin to pick up this configuration, mode and characters of the property must be set to validate
|
|
6504
|
+
* the file name.
|
|
6505
|
+
* see {@link sap.m.plugins.UploadSetwithTable.FilenameValidationConfigMode mode} to configure the file
|
|
6506
|
+
* name validation mode.
|
|
6507
|
+
*
|
|
6508
|
+
* The default restricted filename character set is: \:/*?"<>|[]{}@#$
|
|
6509
|
+
*
|
|
6510
|
+
* @since 1.136
|
|
6511
|
+
*
|
|
6512
|
+
* @returns Value of property `fileNameValidationConfig`
|
|
6513
|
+
*/
|
|
6514
|
+
getFileNameValidationConfig(): sap.m.plugins.UploadSetwithTable.FilenameValidationConfig;
|
|
6247
6515
|
/**
|
|
6248
6516
|
* Gets current value of property {@link #getFileTypes fileTypes}.
|
|
6249
6517
|
*
|
|
@@ -6555,6 +6823,31 @@ declare namespace sap {
|
|
|
6555
6823
|
*/
|
|
6556
6824
|
bDirectory?: boolean
|
|
6557
6825
|
): this;
|
|
6826
|
+
/**
|
|
6827
|
+
* Sets a new value for property {@link #getFileNameValidationConfig fileNameValidationConfig}.
|
|
6828
|
+
*
|
|
6829
|
+
* File name validation configuration.
|
|
6830
|
+
* Set this property to configure the file name validation characters and the validation mode.
|
|
6831
|
+
* This configuration is used to validate the file name when a file is selected for renaming.
|
|
6832
|
+
* For the plugin to pick up this configuration, mode and characters of the property must be set to validate
|
|
6833
|
+
* the file name.
|
|
6834
|
+
* see {@link sap.m.plugins.UploadSetwithTable.FilenameValidationConfigMode mode} to configure the file
|
|
6835
|
+
* name validation mode.
|
|
6836
|
+
*
|
|
6837
|
+
* The default restricted filename character set is: \:/*?"<>|[]{}@#$
|
|
6838
|
+
*
|
|
6839
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
6840
|
+
*
|
|
6841
|
+
* @since 1.136
|
|
6842
|
+
*
|
|
6843
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
6844
|
+
*/
|
|
6845
|
+
setFileNameValidationConfig(
|
|
6846
|
+
/**
|
|
6847
|
+
* New value for property `fileNameValidationConfig`
|
|
6848
|
+
*/
|
|
6849
|
+
sFileNameValidationConfig?: sap.m.plugins.UploadSetwithTable.FilenameValidationConfig
|
|
6850
|
+
): this;
|
|
6558
6851
|
/**
|
|
6559
6852
|
* Sets a new value for property {@link #getFileTypes fileTypes}.
|
|
6560
6853
|
*
|
|
@@ -6861,6 +7154,14 @@ declare namespace sap {
|
|
|
6861
7154
|
CellSelector
|
|
6862
7155
|
>;
|
|
6863
7156
|
|
|
7157
|
+
/**
|
|
7158
|
+
* Event object of the ColumnAIAction#press event.
|
|
7159
|
+
*/
|
|
7160
|
+
type ColumnAIAction$PressEvent = sap.ui.base.Event<
|
|
7161
|
+
ColumnAIAction$PressEventParameters,
|
|
7162
|
+
ColumnAIAction
|
|
7163
|
+
>;
|
|
7164
|
+
|
|
6864
7165
|
/**
|
|
6865
7166
|
* Event object of the ColumnResizer#columnResize event.
|
|
6866
7167
|
*/
|
|
@@ -17675,6 +17976,64 @@ declare namespace sap {
|
|
|
17675
17976
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
17676
17977
|
| `{${string}}`;
|
|
17677
17978
|
|
|
17979
|
+
/**
|
|
17980
|
+
* Callback function to insert custom content into the preview dialog using a control to display the preview
|
|
17981
|
+
* of unsupported file types.
|
|
17982
|
+
* Use this property as callback function to insert a control with the content into the preview dialog.
|
|
17983
|
+
*
|
|
17984
|
+
* Callback function returns a promise that resolves with a control that is displayed in the preview dialog.
|
|
17985
|
+
* Reject the promise to display the default illustrated message.
|
|
17986
|
+
* Callback function is invoked with {@link sap.m.upload.UploadItem item} for each unsupported file type.
|
|
17987
|
+
*
|
|
17988
|
+
*
|
|
17989
|
+
* Example: There is a file with an xml extension and you want to display the content inside a codeeditor
|
|
17990
|
+
* control for the file type.
|
|
17991
|
+
*
|
|
17992
|
+
*
|
|
17993
|
+
* ```javascript
|
|
17994
|
+
*
|
|
17995
|
+
* <UploadSetwithTable>
|
|
17996
|
+
* <upload:FilePreviewDialog customPageContentHandler="{onCustomContentHandler}"></upload:FilePreviewDialog>
|
|
17997
|
+
* </UploadSetwithTable>
|
|
17998
|
+
* ```
|
|
17999
|
+
*
|
|
18000
|
+
*
|
|
18001
|
+
*
|
|
18002
|
+
* ```javascript
|
|
18003
|
+
*
|
|
18004
|
+
* onCustomContentHandler: function(oItem) {
|
|
18005
|
+
*
|
|
18006
|
+
* return new Promise(function(resolve, reject) {
|
|
18007
|
+
*
|
|
18008
|
+
* switch (oItem.getMediaType().toLowerCase()) {
|
|
18009
|
+
*
|
|
18010
|
+
* case "application/xml":
|
|
18011
|
+
*
|
|
18012
|
+
* var oCodeEditor = new CodeEditor({
|
|
18013
|
+
* value: "XML content",
|
|
18014
|
+
* width: "100%",
|
|
18015
|
+
* height: "100%"
|
|
18016
|
+
* });
|
|
18017
|
+
*
|
|
18018
|
+
* resolve(oCodeEditor);
|
|
18019
|
+
* break;
|
|
18020
|
+
*
|
|
18021
|
+
* default:
|
|
18022
|
+
* reject(); // reject the promise to display the default illustrated message.
|
|
18023
|
+
* break;
|
|
18024
|
+
* }
|
|
18025
|
+
* });
|
|
18026
|
+
* }
|
|
18027
|
+
* ```
|
|
18028
|
+
*
|
|
18029
|
+
*
|
|
18030
|
+
* @since 1.136
|
|
18031
|
+
*/
|
|
18032
|
+
customPageContentHandler?:
|
|
18033
|
+
| Function
|
|
18034
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
18035
|
+
| `{${string}}`;
|
|
18036
|
+
|
|
17678
18037
|
/**
|
|
17679
18038
|
* Custom buttons, to be displayed in the preview dialog footer.
|
|
17680
18039
|
* Control by default adds two buttons (download and close).
|
|
@@ -19300,6 +19659,64 @@ declare namespace sap {
|
|
|
19300
19659
|
* Control by default adds two buttons (download and close).
|
|
19301
19660
|
*/
|
|
19302
19661
|
getAdditionalFooterButtons(): sap.m.Button[];
|
|
19662
|
+
/**
|
|
19663
|
+
* Gets current value of property {@link #getCustomPageContentHandler customPageContentHandler}.
|
|
19664
|
+
*
|
|
19665
|
+
* Callback function to insert custom content into the preview dialog using a control to display the preview
|
|
19666
|
+
* of unsupported file types.
|
|
19667
|
+
* Use this property as callback function to insert a control with the content into the preview dialog.
|
|
19668
|
+
*
|
|
19669
|
+
* Callback function returns a promise that resolves with a control that is displayed in the preview dialog.
|
|
19670
|
+
* Reject the promise to display the default illustrated message.
|
|
19671
|
+
* Callback function is invoked with {@link sap.m.upload.UploadItem item} for each unsupported file type.
|
|
19672
|
+
*
|
|
19673
|
+
*
|
|
19674
|
+
* Example: There is a file with an xml extension and you want to display the content inside a codeeditor
|
|
19675
|
+
* control for the file type.
|
|
19676
|
+
*
|
|
19677
|
+
*
|
|
19678
|
+
* ```javascript
|
|
19679
|
+
*
|
|
19680
|
+
* <UploadSetwithTable>
|
|
19681
|
+
* <upload:FilePreviewDialog customPageContentHandler="{onCustomContentHandler}"></upload:FilePreviewDialog>
|
|
19682
|
+
* </UploadSetwithTable>
|
|
19683
|
+
* ```
|
|
19684
|
+
*
|
|
19685
|
+
*
|
|
19686
|
+
*
|
|
19687
|
+
* ```javascript
|
|
19688
|
+
*
|
|
19689
|
+
* onCustomContentHandler: function(oItem) {
|
|
19690
|
+
*
|
|
19691
|
+
* return new Promise(function(resolve, reject) {
|
|
19692
|
+
*
|
|
19693
|
+
* switch (oItem.getMediaType().toLowerCase()) {
|
|
19694
|
+
*
|
|
19695
|
+
* case "application/xml":
|
|
19696
|
+
*
|
|
19697
|
+
* var oCodeEditor = new CodeEditor({
|
|
19698
|
+
* value: "XML content",
|
|
19699
|
+
* width: "100%",
|
|
19700
|
+
* height: "100%"
|
|
19701
|
+
* });
|
|
19702
|
+
*
|
|
19703
|
+
* resolve(oCodeEditor);
|
|
19704
|
+
* break;
|
|
19705
|
+
*
|
|
19706
|
+
* default:
|
|
19707
|
+
* reject(); // reject the promise to display the default illustrated message.
|
|
19708
|
+
* break;
|
|
19709
|
+
* }
|
|
19710
|
+
* });
|
|
19711
|
+
* }
|
|
19712
|
+
* ```
|
|
19713
|
+
*
|
|
19714
|
+
*
|
|
19715
|
+
* @since 1.136
|
|
19716
|
+
*
|
|
19717
|
+
* @returns Value of property `customPageContentHandler`
|
|
19718
|
+
*/
|
|
19719
|
+
getCustomPageContentHandler(): Function;
|
|
19303
19720
|
/**
|
|
19304
19721
|
* Gets current value of property {@link #getMaxFileSizeforPreview maxFileSizeforPreview}.
|
|
19305
19722
|
*
|
|
@@ -19373,6 +19790,71 @@ declare namespace sap {
|
|
|
19373
19790
|
* @returns An array of the removed elements (might be empty)
|
|
19374
19791
|
*/
|
|
19375
19792
|
removeAllAdditionalFooterButtons(): sap.m.Button[];
|
|
19793
|
+
/**
|
|
19794
|
+
* Sets a new value for property {@link #getCustomPageContentHandler customPageContentHandler}.
|
|
19795
|
+
*
|
|
19796
|
+
* Callback function to insert custom content into the preview dialog using a control to display the preview
|
|
19797
|
+
* of unsupported file types.
|
|
19798
|
+
* Use this property as callback function to insert a control with the content into the preview dialog.
|
|
19799
|
+
*
|
|
19800
|
+
* Callback function returns a promise that resolves with a control that is displayed in the preview dialog.
|
|
19801
|
+
* Reject the promise to display the default illustrated message.
|
|
19802
|
+
* Callback function is invoked with {@link sap.m.upload.UploadItem item} for each unsupported file type.
|
|
19803
|
+
*
|
|
19804
|
+
*
|
|
19805
|
+
* Example: There is a file with an xml extension and you want to display the content inside a codeeditor
|
|
19806
|
+
* control for the file type.
|
|
19807
|
+
*
|
|
19808
|
+
*
|
|
19809
|
+
* ```javascript
|
|
19810
|
+
*
|
|
19811
|
+
* <UploadSetwithTable>
|
|
19812
|
+
* <upload:FilePreviewDialog customPageContentHandler="{onCustomContentHandler}"></upload:FilePreviewDialog>
|
|
19813
|
+
* </UploadSetwithTable>
|
|
19814
|
+
* ```
|
|
19815
|
+
*
|
|
19816
|
+
*
|
|
19817
|
+
*
|
|
19818
|
+
* ```javascript
|
|
19819
|
+
*
|
|
19820
|
+
* onCustomContentHandler: function(oItem) {
|
|
19821
|
+
*
|
|
19822
|
+
* return new Promise(function(resolve, reject) {
|
|
19823
|
+
*
|
|
19824
|
+
* switch (oItem.getMediaType().toLowerCase()) {
|
|
19825
|
+
*
|
|
19826
|
+
* case "application/xml":
|
|
19827
|
+
*
|
|
19828
|
+
* var oCodeEditor = new CodeEditor({
|
|
19829
|
+
* value: "XML content",
|
|
19830
|
+
* width: "100%",
|
|
19831
|
+
* height: "100%"
|
|
19832
|
+
* });
|
|
19833
|
+
*
|
|
19834
|
+
* resolve(oCodeEditor);
|
|
19835
|
+
* break;
|
|
19836
|
+
*
|
|
19837
|
+
* default:
|
|
19838
|
+
* reject(); // reject the promise to display the default illustrated message.
|
|
19839
|
+
* break;
|
|
19840
|
+
* }
|
|
19841
|
+
* });
|
|
19842
|
+
* }
|
|
19843
|
+
* ```
|
|
19844
|
+
*
|
|
19845
|
+
*
|
|
19846
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
19847
|
+
*
|
|
19848
|
+
* @since 1.136
|
|
19849
|
+
*
|
|
19850
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
19851
|
+
*/
|
|
19852
|
+
setCustomPageContentHandler(
|
|
19853
|
+
/**
|
|
19854
|
+
* New value for property `customPageContentHandler`
|
|
19855
|
+
*/
|
|
19856
|
+
fnCustomPageContentHandler?: Function
|
|
19857
|
+
): this;
|
|
19376
19858
|
/**
|
|
19377
19859
|
* Sets a new value for property {@link #getMaxFileSizeforPreview maxFileSizeforPreview}.
|
|
19378
19860
|
*
|
|
@@ -20314,7 +20796,9 @@ declare namespace sap {
|
|
|
20314
20796
|
oListener?: object
|
|
20315
20797
|
): this;
|
|
20316
20798
|
/**
|
|
20317
|
-
* Starts the process of downloading a file.
|
|
20799
|
+
* Starts the process of downloading a file. Plugin uses the URL set in the item or the downloadUrl set
|
|
20800
|
+
* in the uploader class to download the file. If the URL is not set, a warning is logged. API downloads
|
|
20801
|
+
* the file with xhr response of blob type or string type.
|
|
20318
20802
|
*
|
|
20319
20803
|
*
|
|
20320
20804
|
* @returns It returns true if the download is processed successfully
|
|
@@ -25554,6 +26038,17 @@ declare namespace sap {
|
|
|
25554
26038
|
__implements__sap_m_ITableItem: boolean;
|
|
25555
26039
|
}
|
|
25556
26040
|
|
|
26041
|
+
/**
|
|
26042
|
+
* Interface for controls placed in the `content` aggregation of `{@link sap.m.Toolbar}` or `{@link sap.m.OverflowToolbar}`,
|
|
26043
|
+
* which need to indicate whether they are interactive or not.
|
|
26044
|
+
*
|
|
26045
|
+
* Controls that implement this interface should have the following method: `_getToolbarInteractive` - returns
|
|
26046
|
+
* boolean value that shows whether the control is interactive or not
|
|
26047
|
+
*/
|
|
26048
|
+
interface IToolbarInteractiveControl {
|
|
26049
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
26050
|
+
}
|
|
26051
|
+
|
|
25557
26052
|
/**
|
|
25558
26053
|
* sap.m.NavContainerChild is an artificial interface with the only purpose to bear the documentation of
|
|
25559
26054
|
* pseudo events triggered by sap.m.NavContainer on its child controls when navigation occurs and child
|
|
@@ -29307,6 +29802,14 @@ declare namespace sap {
|
|
|
29307
29802
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
29308
29803
|
| `{${string}}`;
|
|
29309
29804
|
|
|
29805
|
+
/**
|
|
29806
|
+
* Disables rendering of the `style` attribute in the `FormattedText`.
|
|
29807
|
+
*/
|
|
29808
|
+
disableStyleAttribute?:
|
|
29809
|
+
| boolean
|
|
29810
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
29811
|
+
| `{${string}}`;
|
|
29812
|
+
|
|
29310
29813
|
/**
|
|
29311
29814
|
* Contains {@link sap.m.FeedListItemAction elements} that are displayed in the action sheet.
|
|
29312
29815
|
*
|
|
@@ -42926,7 +43429,8 @@ declare namespace sap {
|
|
|
42926
43429
|
| `{${string}}`;
|
|
42927
43430
|
|
|
42928
43431
|
/**
|
|
42929
|
-
* Adds a priority badge before the content. Works only in Generic
|
|
43432
|
+
* Adds a priority badge before the content. Works only in Generic Tiles in ActionMode or Article Mode containing
|
|
43433
|
+
* NewsContent.
|
|
42930
43434
|
*
|
|
42931
43435
|
* @since 1.96
|
|
42932
43436
|
*/
|
|
@@ -42936,7 +43440,8 @@ declare namespace sap {
|
|
|
42936
43440
|
| `{${string}}`;
|
|
42937
43441
|
|
|
42938
43442
|
/**
|
|
42939
|
-
* Sets the Text inside the Priority badge in Generic Tile ActionMode
|
|
43443
|
+
* Sets the Text inside the Priority badge in Generic Tile. Works only in Generic Tiles in ActionMode or
|
|
43444
|
+
* Article Mode containing NewsContent.
|
|
42940
43445
|
*
|
|
42941
43446
|
* @since 1.103
|
|
42942
43447
|
*/
|
|
@@ -49372,7 +49877,11 @@ declare namespace sap {
|
|
|
49372
49877
|
/**
|
|
49373
49878
|
* whether or not all of the assets for the Illustration Set should be loaded once the metadata is loaded
|
|
49374
49879
|
*/
|
|
49375
|
-
bLoadAllResources: boolean
|
|
49880
|
+
bLoadAllResources: boolean,
|
|
49881
|
+
/**
|
|
49882
|
+
* optional array containing the Illustration Set symbols
|
|
49883
|
+
*/
|
|
49884
|
+
aOptionalSymbols: any[]
|
|
49376
49885
|
): void;
|
|
49377
49886
|
}
|
|
49378
49887
|
|
|
@@ -55262,7 +55771,7 @@ declare namespace sap {
|
|
|
55262
55771
|
sap.m.IBreadcrumbs,
|
|
55263
55772
|
sap.m.IOverflowToolbarContent,
|
|
55264
55773
|
sap.ui.core.IShrinkable,
|
|
55265
|
-
|
|
55774
|
+
sap.m.IToolbarInteractiveControl
|
|
55266
55775
|
{
|
|
55267
55776
|
__implements__sap_m_IBreadcrumbs: boolean;
|
|
55268
55777
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
@@ -56462,7 +56971,7 @@ declare namespace sap {
|
|
|
56462
56971
|
implements
|
|
56463
56972
|
sap.ui.core.IFormContent,
|
|
56464
56973
|
sap.ui.core.IAccessKeySupport,
|
|
56465
|
-
|
|
56974
|
+
sap.m.IToolbarInteractiveControl
|
|
56466
56975
|
{
|
|
56467
56976
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
56468
56977
|
__implements__sap_ui_core_IAccessKeySupport: boolean;
|
|
@@ -58320,7 +58829,7 @@ declare namespace sap {
|
|
|
58320
58829
|
sap.ui.core.IFormContent,
|
|
58321
58830
|
sap.ui.core.ISemanticFormContent,
|
|
58322
58831
|
sap.ui.core.IAccessKeySupport,
|
|
58323
|
-
|
|
58832
|
+
sap.m.IToolbarInteractiveControl
|
|
58324
58833
|
{
|
|
58325
58834
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
58326
58835
|
__implements__sap_ui_core_ISemanticFormContent: boolean;
|
|
@@ -60958,7 +61467,7 @@ declare namespace sap {
|
|
|
60958
61467
|
*/
|
|
60959
61468
|
class ComboBox
|
|
60960
61469
|
extends sap.m.ComboBoxBase
|
|
60961
|
-
implements
|
|
61470
|
+
implements sap.m.IToolbarInteractiveControl
|
|
60962
61471
|
{
|
|
60963
61472
|
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
60964
61473
|
/**
|
|
@@ -64635,7 +65144,7 @@ declare namespace sap {
|
|
|
64635
65144
|
*/
|
|
64636
65145
|
class DateTimeInput
|
|
64637
65146
|
extends sap.ui.core.Control
|
|
64638
|
-
implements
|
|
65147
|
+
implements sap.m.IToolbarInteractiveControl
|
|
64639
65148
|
{
|
|
64640
65149
|
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
64641
65150
|
/**
|
|
@@ -72074,6 +72583,17 @@ declare namespace sap {
|
|
|
72074
72583
|
* @returns Value of property `convertLinksToAnchorTags`
|
|
72075
72584
|
*/
|
|
72076
72585
|
getConvertLinksToAnchorTags(): sap.m.LinkConversion;
|
|
72586
|
+
/**
|
|
72587
|
+
* Gets current value of property {@link #getDisableStyleAttribute disableStyleAttribute}.
|
|
72588
|
+
*
|
|
72589
|
+
* Disables rendering of the `style` attribute in the `FormattedText`.
|
|
72590
|
+
*
|
|
72591
|
+
* Default value is `false`.
|
|
72592
|
+
*
|
|
72593
|
+
*
|
|
72594
|
+
* @returns Value of property `disableStyleAttribute`
|
|
72595
|
+
*/
|
|
72596
|
+
getDisableStyleAttribute(): boolean;
|
|
72077
72597
|
/**
|
|
72078
72598
|
* Gets current value of property {@link #getIcon icon}.
|
|
72079
72599
|
*
|
|
@@ -72356,6 +72876,24 @@ declare namespace sap {
|
|
|
72356
72876
|
*/
|
|
72357
72877
|
sConvertLinksToAnchorTags?: sap.m.LinkConversion
|
|
72358
72878
|
): this;
|
|
72879
|
+
/**
|
|
72880
|
+
* Sets a new value for property {@link #getDisableStyleAttribute disableStyleAttribute}.
|
|
72881
|
+
*
|
|
72882
|
+
* Disables rendering of the `style` attribute in the `FormattedText`.
|
|
72883
|
+
*
|
|
72884
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
72885
|
+
*
|
|
72886
|
+
* Default value is `false`.
|
|
72887
|
+
*
|
|
72888
|
+
*
|
|
72889
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
72890
|
+
*/
|
|
72891
|
+
setDisableStyleAttribute(
|
|
72892
|
+
/**
|
|
72893
|
+
* New value for property `disableStyleAttribute`
|
|
72894
|
+
*/
|
|
72895
|
+
bDisableStyleAttribute?: boolean
|
|
72896
|
+
): this;
|
|
72359
72897
|
/**
|
|
72360
72898
|
* Sets a new value for property {@link #getIcon icon}.
|
|
72361
72899
|
*
|
|
@@ -74325,9 +74863,7 @@ declare namespace sap {
|
|
|
74325
74863
|
*/
|
|
74326
74864
|
class GenericTag
|
|
74327
74865
|
extends sap.ui.core.Control
|
|
74328
|
-
implements
|
|
74329
|
-
sap.m.IOverflowToolbarContent,
|
|
74330
|
-
/* was: sap.m.IToolbarInteractiveControl */ Object
|
|
74866
|
+
implements sap.m.IOverflowToolbarContent, sap.m.IToolbarInteractiveControl
|
|
74331
74867
|
{
|
|
74332
74868
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
74333
74869
|
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
@@ -76086,6 +76622,11 @@ declare namespace sap {
|
|
|
76086
76622
|
* in `sap.m.List` and `sap.m.Table`. **Note:** The inherited properties `unread`, `selected`, `counter`
|
|
76087
76623
|
* and `press` event from `sap.m.ListItemBase` are not supported.
|
|
76088
76624
|
*
|
|
76625
|
+
* There are the following known restrictions:
|
|
76626
|
+
* - When a list is manually populated with items and groups without using data binding, changes to the
|
|
76627
|
+
* order or group structure will only be correctly applied when all items are removed and reinserted again.
|
|
76628
|
+
*
|
|
76629
|
+
*
|
|
76089
76630
|
* @since 1.12
|
|
76090
76631
|
*/
|
|
76091
76632
|
class GroupHeaderListItem
|
|
@@ -83656,7 +84197,7 @@ declare namespace sap {
|
|
|
83656
84197
|
sap.ui.core.IFormContent,
|
|
83657
84198
|
sap.ui.core.ISemanticFormContent,
|
|
83658
84199
|
sap.ui.core.ILabelable,
|
|
83659
|
-
|
|
84200
|
+
sap.m.IToolbarInteractiveControl
|
|
83660
84201
|
{
|
|
83661
84202
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
83662
84203
|
__implements__sap_ui_core_ISemanticFormContent: boolean;
|
|
@@ -84130,6 +84671,22 @@ declare namespace sap {
|
|
|
84130
84671
|
* @returns Value of property `valueState`
|
|
84131
84672
|
*/
|
|
84132
84673
|
getValueState(): sap.ui.core.ValueState;
|
|
84674
|
+
/**
|
|
84675
|
+
* Gets the ID of the hidden value state message related to value state links
|
|
84676
|
+
*
|
|
84677
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
84678
|
+
*
|
|
84679
|
+
* @returns The ID of the hidden value state message related to value state links
|
|
84680
|
+
*/
|
|
84681
|
+
getValueStateLinksShortcutsId(): string;
|
|
84682
|
+
/**
|
|
84683
|
+
* Returns the keyboard shortcuts announcement for the value state links
|
|
84684
|
+
*
|
|
84685
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
84686
|
+
*
|
|
84687
|
+
* @returns The text for value state links shortcuts
|
|
84688
|
+
*/
|
|
84689
|
+
getValueStateLinksShortcutsTextAcc(): string;
|
|
84133
84690
|
/**
|
|
84134
84691
|
* Gets current value of property {@link #getValueStateText valueStateText}.
|
|
84135
84692
|
*
|
|
@@ -84870,7 +85427,7 @@ declare namespace sap {
|
|
|
84870
85427
|
sap.ui.core.IAccessKeySupport,
|
|
84871
85428
|
sap.ui.core.ILabelable,
|
|
84872
85429
|
sap.m.IOverflowToolbarContent,
|
|
84873
|
-
|
|
85430
|
+
sap.m.IToolbarInteractiveControl
|
|
84874
85431
|
{
|
|
84875
85432
|
__implements__sap_ui_core_Label: boolean;
|
|
84876
85433
|
__implements__sap_ui_core_IShrinkable: boolean;
|
|
@@ -85787,7 +86344,7 @@ declare namespace sap {
|
|
|
85787
86344
|
sap.ui.core.ITitleContent,
|
|
85788
86345
|
sap.ui.core.IAccessKeySupport,
|
|
85789
86346
|
sap.ui.core.ILabelable,
|
|
85790
|
-
|
|
86347
|
+
sap.m.IToolbarInteractiveControl
|
|
85791
86348
|
{
|
|
85792
86349
|
__implements__sap_ui_core_IShrinkable: boolean;
|
|
85793
86350
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
@@ -90983,11 +91540,11 @@ declare namespace sap {
|
|
|
90983
91540
|
/**
|
|
90984
91541
|
* The reference docking location of the `Menu` for positioning the menu on the screen
|
|
90985
91542
|
*/
|
|
90986
|
-
sDockMy?: sap.ui.core.Dock,
|
|
91543
|
+
sDockMy?: sap.ui.core.Popup.Dock,
|
|
90987
91544
|
/**
|
|
90988
91545
|
* The `oControl` reference docking location for positioning the menu on the screen
|
|
90989
91546
|
*/
|
|
90990
|
-
sDockAt?: sap.ui.core.Dock,
|
|
91547
|
+
sDockAt?: sap.ui.core.Popup.Dock,
|
|
90991
91548
|
/**
|
|
90992
91549
|
* The offset relative to the docking point, specified as a string with space-separated pixel values (e.g.
|
|
90993
91550
|
* "0 10" to move the popup 10 pixels to the right). If the docking of both "my" and "at" is RTL-sensitive
|
|
@@ -91041,7 +91598,7 @@ declare namespace sap {
|
|
|
91041
91598
|
*/
|
|
91042
91599
|
class MenuButton
|
|
91043
91600
|
extends sap.ui.core.Control
|
|
91044
|
-
implements
|
|
91601
|
+
implements sap.m.IToolbarInteractiveControl
|
|
91045
91602
|
{
|
|
91046
91603
|
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
91047
91604
|
/**
|
|
@@ -96626,8 +97183,8 @@ declare namespace sap {
|
|
|
96626
97183
|
* When not to use::
|
|
96627
97184
|
* - When you need to select only one value.
|
|
96628
97185
|
* - When you want the user to select from a predefined set of options. Use {@link sap.m.MultiComboBox }
|
|
96629
|
-
* instead. Responsive Behavior: If there are many tokens, the control shows only the
|
|
96630
|
-
* tokens that fit and for the others a label N-more is provided. In case the length of the
|
|
97186
|
+
* instead. Responsive Behavior: If there are many tokens, the control shows only the first selected
|
|
97187
|
+
* tokens that fit and for the others a label N-more is provided. In case the length of the first
|
|
96631
97188
|
* selected token is exceeding the width of the control, only a label N-Items is shown. In both cases,
|
|
96632
97189
|
* pressing on the label will show the tokens in a popup. On Phones:
|
|
96633
97190
|
* - Only the last entered token is displayed.
|
|
@@ -105612,7 +106169,7 @@ declare namespace sap {
|
|
|
105612
106169
|
implements
|
|
105613
106170
|
sap.f.IShellBar,
|
|
105614
106171
|
sap.m.IOverflowToolbarContent,
|
|
105615
|
-
|
|
106172
|
+
sap.m.IToolbarInteractiveControl
|
|
105616
106173
|
{
|
|
105617
106174
|
__implements__sap_f_IShellBar: boolean;
|
|
105618
106175
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
@@ -116475,27 +117032,17 @@ declare namespace sap {
|
|
|
116475
117032
|
sAppointmentRoundWidth?: sap.ui.unified.CalendarAppointmentRoundWidth
|
|
116476
117033
|
): this;
|
|
116477
117034
|
/**
|
|
116478
|
-
*
|
|
116479
|
-
*
|
|
116480
|
-
* Determines whether the appointments that have only title without text are rendered with smaller height.
|
|
117035
|
+
* Set the appointment reduced height property to the appointments in the calendar
|
|
116481
117036
|
*
|
|
116482
|
-
* **Note:** On phone devices this property is ignored, appointments are always rendered in full height
|
|
116483
|
-
* to facilitate touching.
|
|
116484
|
-
*
|
|
116485
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
116486
|
-
*
|
|
116487
|
-
* Default value is `false`.
|
|
116488
|
-
*
|
|
116489
|
-
* @since 1.38.0
|
|
116490
117037
|
* @deprecated As of version 1.119. Please use the `appointmentHeight` with value "Automatic" property instead.
|
|
116491
117038
|
*
|
|
116492
|
-
* @returns Reference to `this`
|
|
117039
|
+
* @returns Reference to `this` for method chaining
|
|
116493
117040
|
*/
|
|
116494
117041
|
setAppointmentsReducedHeight(
|
|
116495
117042
|
/**
|
|
116496
|
-
*
|
|
117043
|
+
* if set to true, the appointments will have a reduced height
|
|
116497
117044
|
*/
|
|
116498
|
-
bAppointmentsReducedHeight
|
|
117045
|
+
bAppointmentsReducedHeight: boolean
|
|
116499
117046
|
): this;
|
|
116500
117047
|
/**
|
|
116501
117048
|
* Sets a new value for property {@link #getAppointmentsVisualization appointmentsVisualization}.
|
|
@@ -123031,9 +123578,7 @@ declare namespace sap {
|
|
|
123031
123578
|
*/
|
|
123032
123579
|
class RadioButton
|
|
123033
123580
|
extends sap.ui.core.Control
|
|
123034
|
-
implements
|
|
123035
|
-
sap.ui.core.IFormContent,
|
|
123036
|
-
/* was: sap.m.IToolbarInteractiveControl */ Object
|
|
123581
|
+
implements sap.ui.core.IFormContent, sap.m.IToolbarInteractiveControl
|
|
123037
123582
|
{
|
|
123038
123583
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
123039
123584
|
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
@@ -126755,7 +127300,7 @@ declare namespace sap {
|
|
|
126755
127300
|
implements
|
|
126756
127301
|
sap.ui.core.IFormContent,
|
|
126757
127302
|
sap.f.IShellBar,
|
|
126758
|
-
|
|
127303
|
+
sap.m.IToolbarInteractiveControl
|
|
126759
127304
|
{
|
|
126760
127305
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
126761
127306
|
__implements__sap_f_IShellBar: boolean;
|
|
@@ -127754,7 +128299,7 @@ declare namespace sap {
|
|
|
127754
128299
|
implements
|
|
127755
128300
|
sap.ui.core.IFormContent,
|
|
127756
128301
|
sap.m.IOverflowToolbarContent,
|
|
127757
|
-
|
|
128302
|
+
sap.m.IToolbarInteractiveControl
|
|
127758
128303
|
{
|
|
127759
128304
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
127760
128305
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
@@ -128696,7 +129241,7 @@ declare namespace sap {
|
|
|
128696
129241
|
sap.ui.core.ISemanticFormContent,
|
|
128697
129242
|
sap.ui.core.ILabelable,
|
|
128698
129243
|
sap.m.IOverflowToolbarContent,
|
|
128699
|
-
|
|
129244
|
+
sap.m.IToolbarInteractiveControl,
|
|
128700
129245
|
sap.f.IShellBar
|
|
128701
129246
|
{
|
|
128702
129247
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
@@ -136907,7 +137452,7 @@ declare namespace sap {
|
|
|
136907
137452
|
implements
|
|
136908
137453
|
sap.ui.core.IFormContent,
|
|
136909
137454
|
sap.ui.core.ISemanticFormContent,
|
|
136910
|
-
|
|
137455
|
+
sap.m.IToolbarInteractiveControl
|
|
136911
137456
|
{
|
|
136912
137457
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
136913
137458
|
__implements__sap_ui_core_ISemanticFormContent: boolean;
|
|
@@ -142391,7 +142936,7 @@ declare namespace sap {
|
|
|
142391
142936
|
implements
|
|
142392
142937
|
sap.ui.core.IFormContent,
|
|
142393
142938
|
sap.m.IOverflowToolbarContent,
|
|
142394
|
-
|
|
142939
|
+
sap.m.IToolbarInteractiveControl
|
|
142395
142940
|
{
|
|
142396
142941
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
142397
142942
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
@@ -146675,7 +147220,7 @@ declare namespace sap {
|
|
|
146675
147220
|
sap.ui.core.IFormContent,
|
|
146676
147221
|
sap.ui.core.ISemanticFormContent,
|
|
146677
147222
|
sap.ui.core.ILabelable,
|
|
146678
|
-
|
|
147223
|
+
sap.m.IToolbarInteractiveControl
|
|
146679
147224
|
{
|
|
146680
147225
|
__implements__sap_ui_core_IShrinkable: boolean;
|
|
146681
147226
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
@@ -148726,7 +149271,8 @@ declare namespace sap {
|
|
|
148726
149271
|
/**
|
|
148727
149272
|
* Gets current value of property {@link #getPriority priority}.
|
|
148728
149273
|
*
|
|
148729
|
-
* Adds a priority badge before the content. Works only in Generic
|
|
149274
|
+
* Adds a priority badge before the content. Works only in Generic Tiles in ActionMode or Article Mode containing
|
|
149275
|
+
* NewsContent.
|
|
148730
149276
|
*
|
|
148731
149277
|
* Default value is `None`.
|
|
148732
149278
|
*
|
|
@@ -148738,7 +149284,8 @@ declare namespace sap {
|
|
|
148738
149284
|
/**
|
|
148739
149285
|
* Gets current value of property {@link #getPriorityText priorityText}.
|
|
148740
149286
|
*
|
|
148741
|
-
* Sets the Text inside the Priority badge in Generic Tile ActionMode
|
|
149287
|
+
* Sets the Text inside the Priority badge in Generic Tile. Works only in Generic Tiles in ActionMode or
|
|
149288
|
+
* Article Mode containing NewsContent.
|
|
148742
149289
|
*
|
|
148743
149290
|
* @since 1.103
|
|
148744
149291
|
*
|
|
@@ -148864,40 +149411,28 @@ declare namespace sap {
|
|
|
148864
149411
|
sFrameType?: sap.m.FrameType
|
|
148865
149412
|
): this;
|
|
148866
149413
|
/**
|
|
148867
|
-
* Sets
|
|
148868
|
-
*
|
|
148869
|
-
* Adds a priority badge before the content. Works only in Generic Tile ActionMode.
|
|
149414
|
+
* Sets the priority of the tile content.
|
|
148870
149415
|
*
|
|
148871
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
148872
149416
|
*
|
|
148873
|
-
*
|
|
148874
|
-
*
|
|
148875
|
-
* @since 1.96
|
|
148876
|
-
*
|
|
148877
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
149417
|
+
* @returns Reference to the current instance for method chaining.
|
|
148878
149418
|
*/
|
|
148879
149419
|
setPriority(
|
|
148880
149420
|
/**
|
|
148881
|
-
*
|
|
149421
|
+
* The priority level.
|
|
148882
149422
|
*/
|
|
148883
|
-
sPriority
|
|
149423
|
+
sPriority: sap.m.Priority
|
|
148884
149424
|
): this;
|
|
148885
149425
|
/**
|
|
148886
|
-
* Sets
|
|
148887
|
-
*
|
|
148888
|
-
* Sets the Text inside the Priority badge in Generic Tile ActionMode.
|
|
149426
|
+
* Sets the text for the priority badge.
|
|
148889
149427
|
*
|
|
148890
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
148891
149428
|
*
|
|
148892
|
-
* @
|
|
148893
|
-
*
|
|
148894
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
149429
|
+
* @returns Reference to the current instance for method chaining.
|
|
148895
149430
|
*/
|
|
148896
149431
|
setPriorityText(
|
|
148897
149432
|
/**
|
|
148898
|
-
*
|
|
149433
|
+
* The text to be displayed on the badge.
|
|
148899
149434
|
*/
|
|
148900
|
-
sPriorityText
|
|
149435
|
+
sPriorityText: string
|
|
148901
149436
|
): this;
|
|
148902
149437
|
/**
|
|
148903
149438
|
* Setter for protected property to enable or disable content rendering. This function does not invalidate
|
|
@@ -150817,9 +151352,7 @@ declare namespace sap {
|
|
|
150817
151352
|
*/
|
|
150818
151353
|
class Title
|
|
150819
151354
|
extends sap.ui.core.Control
|
|
150820
|
-
implements
|
|
150821
|
-
sap.ui.core.IShrinkable,
|
|
150822
|
-
/* was: sap.m.IToolbarInteractiveControl */ Object
|
|
151355
|
+
implements sap.ui.core.IShrinkable, sap.m.IToolbarInteractiveControl
|
|
150823
151356
|
{
|
|
150824
151357
|
__implements__sap_ui_core_IShrinkable: boolean;
|
|
150825
151358
|
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
@@ -151236,7 +151769,7 @@ declare namespace sap {
|
|
|
151236
151769
|
*/
|
|
151237
151770
|
class ToggleButton
|
|
151238
151771
|
extends sap.m.Button
|
|
151239
|
-
implements
|
|
151772
|
+
implements sap.m.IToolbarInteractiveControl
|
|
151240
151773
|
{
|
|
151241
151774
|
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
151242
151775
|
/**
|
|
@@ -152182,6 +152715,12 @@ declare namespace sap {
|
|
|
152182
152715
|
*/
|
|
152183
152716
|
fValidator: Function
|
|
152184
152717
|
): void;
|
|
152718
|
+
/**
|
|
152719
|
+
* Function to execute after the n-more popover is closed.
|
|
152720
|
+
*
|
|
152721
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
152722
|
+
*/
|
|
152723
|
+
afterPopupClose(): void;
|
|
152185
152724
|
/**
|
|
152186
152725
|
* Attaches event handler `fnFunction` to the {@link #event:renderModeChange renderModeChange} event of
|
|
152187
152726
|
* this `sap.m.Tokenizer`.
|
|
@@ -157667,7 +158206,7 @@ declare namespace sap {
|
|
|
157667
158206
|
implements
|
|
157668
158207
|
sap.ui.core.IShrinkable,
|
|
157669
158208
|
sap.m.IOverflowToolbarContent,
|
|
157670
|
-
|
|
158209
|
+
sap.m.IToolbarInteractiveControl
|
|
157671
158210
|
{
|
|
157672
158211
|
__implements__sap_ui_core_IShrinkable: boolean;
|
|
157673
158212
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
@@ -164257,20 +164796,52 @@ declare namespace sap {
|
|
|
164257
164796
|
Base = "Base",
|
|
164258
164797
|
/**
|
|
164259
164798
|
* Dialog `Illustration` size (M breakpoint). Suitable for dialogs.
|
|
164799
|
+
*
|
|
164800
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageSize.Medium}
|
|
164260
164801
|
*/
|
|
164261
164802
|
Dialog = "Dialog",
|
|
164262
164803
|
/**
|
|
164263
164804
|
* Dot `Illustration` size (XS breakpoint). Suitable for spaces with little vertical space.
|
|
164264
164805
|
*
|
|
164265
164806
|
* @since 1.108
|
|
164807
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageSize.ExtraSmall}
|
|
164266
164808
|
*/
|
|
164267
164809
|
Dot = "Dot",
|
|
164810
|
+
/**
|
|
164811
|
+
* Extra Small `Illustration` size. Alias for `Dot` size (XS breakpoint). Suitable for spaces with little
|
|
164812
|
+
* vertical space.
|
|
164813
|
+
*
|
|
164814
|
+
* @since 1.136
|
|
164815
|
+
*/
|
|
164816
|
+
ExtraSmall = "ExtraSmall",
|
|
164817
|
+
/**
|
|
164818
|
+
* Large `Illustration` size. Alias for `Scene` size (L breakpoint). Suitable for a `Page` or a table.
|
|
164819
|
+
*
|
|
164820
|
+
* @since 1.136
|
|
164821
|
+
*/
|
|
164822
|
+
Large = "Large",
|
|
164823
|
+
/**
|
|
164824
|
+
* Medium `Illustration` size. Alias for `Dialog` size (M breakpoint). Suitable for dialogs.
|
|
164825
|
+
*
|
|
164826
|
+
* @since 1.136
|
|
164827
|
+
*/
|
|
164828
|
+
Medium = "Medium",
|
|
164268
164829
|
/**
|
|
164269
164830
|
* Scene `Illustration` size (L breakpoint). Suitable for a `Page` or a table.
|
|
164831
|
+
*
|
|
164832
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageSize.Large}
|
|
164270
164833
|
*/
|
|
164271
164834
|
Scene = "Scene",
|
|
164835
|
+
/**
|
|
164836
|
+
* Small `Illustration` size. Alias for `Spot` size (S breakpoint). Suitable for cards (four columns).
|
|
164837
|
+
*
|
|
164838
|
+
* @since 1.136
|
|
164839
|
+
*/
|
|
164840
|
+
Small = "Small",
|
|
164272
164841
|
/**
|
|
164273
164842
|
* Spot `Illustration` size (S breakpoint). Suitable for cards (four columns).
|
|
164843
|
+
*
|
|
164844
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageSize.Small}
|
|
164274
164845
|
*/
|
|
164275
164846
|
Spot = "Spot",
|
|
164276
164847
|
}
|
|
@@ -164280,18 +164851,34 @@ declare namespace sap {
|
|
|
164280
164851
|
* @since 1.98
|
|
164281
164852
|
*/
|
|
164282
164853
|
enum IllustratedMessageType {
|
|
164854
|
+
/**
|
|
164855
|
+
* "Achievement" illustration type.
|
|
164856
|
+
*/
|
|
164857
|
+
Achievement = "sapIllus-Achievement",
|
|
164283
164858
|
/**
|
|
164284
164859
|
* "Add Column" illustration type.
|
|
164860
|
+
*
|
|
164861
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.AddingColumns}
|
|
164285
164862
|
*/
|
|
164286
164863
|
AddColumn = "sapIllus-AddColumn",
|
|
164287
164864
|
/**
|
|
164288
164865
|
* "Add Dimensions" illustration type.
|
|
164289
164866
|
*/
|
|
164290
164867
|
AddDimensions = "sapIllus-AddDimensions",
|
|
164868
|
+
/**
|
|
164869
|
+
* "Adding Columns" illustration type.
|
|
164870
|
+
*/
|
|
164871
|
+
AddingColumns = "sapIllus-AddingColumns",
|
|
164291
164872
|
/**
|
|
164292
164873
|
* "Add People" illustration type.
|
|
164874
|
+
*
|
|
164875
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.AddPeopleToCalendar}
|
|
164293
164876
|
*/
|
|
164294
164877
|
AddPeople = "sapIllus-AddPeople",
|
|
164878
|
+
/**
|
|
164879
|
+
* "Add People To Calendar" illustration type.
|
|
164880
|
+
*/
|
|
164881
|
+
AddPeopleToCalendar = "sapIllus-AddPeopleToCalendar",
|
|
164295
164882
|
/**
|
|
164296
164883
|
* "Balloon Sky" illustration type.
|
|
164297
164884
|
*/
|
|
@@ -164304,12 +164891,20 @@ declare namespace sap {
|
|
|
164304
164891
|
* "Connection" illustration type.
|
|
164305
164892
|
*/
|
|
164306
164893
|
Connection = "sapIllus-Connection",
|
|
164894
|
+
/**
|
|
164895
|
+
* "Drag Files To Upload" illustration type.
|
|
164896
|
+
*/
|
|
164897
|
+
DragFilesToUpload = "sapIllus-DragFilesToUpload",
|
|
164307
164898
|
/**
|
|
164308
164899
|
* "Empty Calendar" illustration type.
|
|
164900
|
+
*
|
|
164901
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoActivities}
|
|
164309
164902
|
*/
|
|
164310
164903
|
EmptyCalendar = "sapIllus-EmptyCalendar",
|
|
164311
164904
|
/**
|
|
164312
164905
|
* "Empty List" illustration type.
|
|
164906
|
+
*
|
|
164907
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoEntries}
|
|
164313
164908
|
*/
|
|
164314
164909
|
EmptyList = "sapIllus-EmptyList",
|
|
164315
164910
|
/**
|
|
@@ -164318,16 +164913,34 @@ declare namespace sap {
|
|
|
164318
164913
|
EmptyPlanningCalendar = "sapIllus-EmptyPlanningCalendar",
|
|
164319
164914
|
/**
|
|
164320
164915
|
* "Error Screen" illustration type.
|
|
164916
|
+
*
|
|
164917
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.UnableToUpload}
|
|
164321
164918
|
*/
|
|
164322
164919
|
ErrorScreen = "sapIllus-ErrorScreen",
|
|
164920
|
+
/**
|
|
164921
|
+
* "Filtering Columns" illustration type.
|
|
164922
|
+
*/
|
|
164923
|
+
FilteringColumns = "sapIllus-FilteringColumns",
|
|
164323
164924
|
/**
|
|
164324
164925
|
* "Filter Table" illustration type.
|
|
164926
|
+
*
|
|
164927
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.FilteringColumns}
|
|
164325
164928
|
*/
|
|
164326
164929
|
FilterTable = "sapIllus-FilterTable",
|
|
164930
|
+
/**
|
|
164931
|
+
* "Grouping Columns" illustration type.
|
|
164932
|
+
*/
|
|
164933
|
+
GroupingColumns = "sapIllus-GroupingColumns",
|
|
164327
164934
|
/**
|
|
164328
164935
|
* "Group Table" illustration type.
|
|
164936
|
+
*
|
|
164937
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.GroupingColumns}
|
|
164329
164938
|
*/
|
|
164330
164939
|
GroupTable = "sapIllus-GroupTable",
|
|
164940
|
+
/**
|
|
164941
|
+
* "KeyTask" illustration type.
|
|
164942
|
+
*/
|
|
164943
|
+
KeyTask = "sapIllus-KeyTask",
|
|
164331
164944
|
/**
|
|
164332
164945
|
* "New Mail" illustration type.
|
|
164333
164946
|
*/
|
|
@@ -164336,6 +164949,10 @@ declare namespace sap {
|
|
|
164336
164949
|
* "No Activities" illustration type.
|
|
164337
164950
|
*/
|
|
164338
164951
|
NoActivities = "sapIllus-NoActivities",
|
|
164952
|
+
/**
|
|
164953
|
+
* "No Chart Data" illustration type.
|
|
164954
|
+
*/
|
|
164955
|
+
NoChartData = "sapIllus-NoChartData",
|
|
164339
164956
|
/**
|
|
164340
164957
|
* "No Columns Set" illustration type.
|
|
164341
164958
|
*/
|
|
@@ -164346,6 +164963,8 @@ declare namespace sap {
|
|
|
164346
164963
|
NoData = "sapIllus-NoData",
|
|
164347
164964
|
/**
|
|
164348
164965
|
* "No Dimensions Set" illustration type.
|
|
164966
|
+
*
|
|
164967
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoChartData}
|
|
164349
164968
|
*/
|
|
164350
164969
|
NoDimensionsSet = "sapIllus-NoDimensionsSet",
|
|
164351
164970
|
/**
|
|
@@ -164362,6 +164981,8 @@ declare namespace sap {
|
|
|
164362
164981
|
NoMail = "sapIllus-NoMail",
|
|
164363
164982
|
/**
|
|
164364
164983
|
* "No Email v1" illustration type.
|
|
164984
|
+
*
|
|
164985
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoMail}
|
|
164365
164986
|
*/
|
|
164366
164987
|
NoMailV1 = "sapIllus-NoMail_v1",
|
|
164367
164988
|
/**
|
|
@@ -164374,6 +164995,8 @@ declare namespace sap {
|
|
|
164374
164995
|
NoSavedItems = "sapIllus-NoSavedItems",
|
|
164375
164996
|
/**
|
|
164376
164997
|
* "No Saved Items v1" illustration type.
|
|
164998
|
+
*
|
|
164999
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoSavedItems}
|
|
164377
165000
|
*/
|
|
164378
165001
|
NoSavedItemsV1 = "sapIllus-NoSavedItems_v1",
|
|
164379
165002
|
/**
|
|
@@ -164386,26 +165009,44 @@ declare namespace sap {
|
|
|
164386
165009
|
NoTasks = "sapIllus-NoTasks",
|
|
164387
165010
|
/**
|
|
164388
165011
|
* "No Tasks v1" illustration type.
|
|
165012
|
+
*
|
|
165013
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoTasks}
|
|
164389
165014
|
*/
|
|
164390
165015
|
NoTasksV1 = "sapIllus-NoTasks_v1",
|
|
164391
165016
|
/**
|
|
164392
165017
|
* "Page Not Found" illustration type.
|
|
164393
165018
|
*/
|
|
164394
165019
|
PageNotFound = "sapIllus-PageNotFound",
|
|
165020
|
+
/**
|
|
165021
|
+
* "Receive Appreciation" illustration type.
|
|
165022
|
+
*/
|
|
165023
|
+
ReceiveAppreciation = "sapIllus-ReceiveAppreciation",
|
|
164395
165024
|
/**
|
|
164396
165025
|
* "Reload Screen" illustration type.
|
|
165026
|
+
*
|
|
165027
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.UnableToLoad}
|
|
164397
165028
|
*/
|
|
164398
165029
|
ReloadScreen = "sapIllus-ReloadScreen",
|
|
164399
165030
|
/**
|
|
164400
165031
|
* "Resize Column" illustration type.
|
|
165032
|
+
*
|
|
165033
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.ResizingColumns}
|
|
164401
165034
|
*/
|
|
164402
165035
|
ResizeColumn = "sapIllus-ResizeColumn",
|
|
165036
|
+
/**
|
|
165037
|
+
* "Resizing Columns" illustration type.
|
|
165038
|
+
*/
|
|
165039
|
+
ResizingColumns = "sapIllus-ResizingColumns",
|
|
164403
165040
|
/**
|
|
164404
165041
|
* "Search Earth" illustration type.
|
|
165042
|
+
*
|
|
165043
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.BeforeSearch}
|
|
164405
165044
|
*/
|
|
164406
165045
|
SearchEarth = "sapIllus-SearchEarth",
|
|
164407
165046
|
/**
|
|
164408
165047
|
* "Search Folder" illustration type.
|
|
165048
|
+
*
|
|
165049
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoSearchResults}
|
|
164409
165050
|
*/
|
|
164410
165051
|
SearchFolder = "sapIllus-SearchFolder",
|
|
164411
165052
|
/**
|
|
@@ -164414,18 +165055,26 @@ declare namespace sap {
|
|
|
164414
165055
|
SignOut = "sapIllus-SignOut",
|
|
164415
165056
|
/**
|
|
164416
165057
|
* "Simple Balloon" illustration type.
|
|
165058
|
+
*
|
|
165059
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.ReceiveAppreciation}
|
|
164417
165060
|
*/
|
|
164418
165061
|
SimpleBalloon = "sapIllus-SimpleBalloon",
|
|
164419
165062
|
/**
|
|
164420
165063
|
* "Simple Bell" illustration type.
|
|
165064
|
+
*
|
|
165065
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoNotifications}
|
|
164421
165066
|
*/
|
|
164422
165067
|
SimpleBell = "sapIllus-SimpleBell",
|
|
164423
165068
|
/**
|
|
164424
165069
|
* "Simple Calendar" illustration type.
|
|
165070
|
+
*
|
|
165071
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoActivities}
|
|
164425
165072
|
*/
|
|
164426
165073
|
SimpleCalendar = "sapIllus-SimpleCalendar",
|
|
164427
165074
|
/**
|
|
164428
165075
|
* "Simple CheckMark" illustration type.
|
|
165076
|
+
*
|
|
165077
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.KeyTask}
|
|
164429
165078
|
*/
|
|
164430
165079
|
SimpleCheckMark = "sapIllus-SimpleCheckMark",
|
|
164431
165080
|
/**
|
|
@@ -164434,62 +165083,96 @@ declare namespace sap {
|
|
|
164434
165083
|
SimpleConnection = "sapIllus-SimpleConnection",
|
|
164435
165084
|
/**
|
|
164436
165085
|
* "Simple Empty Doc" illustration type.
|
|
165086
|
+
*
|
|
165087
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoData}
|
|
164437
165088
|
*/
|
|
164438
165089
|
SimpleEmptyDoc = "sapIllus-SimpleEmptyDoc",
|
|
164439
165090
|
/**
|
|
164440
165091
|
* "Simple Empty List" illustration type.
|
|
165092
|
+
*
|
|
165093
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoEntries}
|
|
164441
165094
|
*/
|
|
164442
165095
|
SimpleEmptyList = "sapIllus-SimpleEmptyList",
|
|
164443
165096
|
/**
|
|
164444
165097
|
* "Simple Error" illustration type.
|
|
165098
|
+
*
|
|
165099
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.UnableToUpload}
|
|
164445
165100
|
*/
|
|
164446
165101
|
SimpleError = "sapIllus-SimpleError",
|
|
164447
165102
|
/**
|
|
164448
165103
|
* "Simple Magnifier" illustration type.
|
|
165104
|
+
*
|
|
165105
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.BeforeSearch}
|
|
164449
165106
|
*/
|
|
164450
165107
|
SimpleMagnifier = "sapIllus-SimpleMagnifier",
|
|
164451
165108
|
/**
|
|
164452
165109
|
* "Simple Mail" illustration type.
|
|
165110
|
+
*
|
|
165111
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoMail}
|
|
164453
165112
|
*/
|
|
164454
165113
|
SimpleMail = "sapIllus-SimpleMail",
|
|
164455
165114
|
/**
|
|
164456
165115
|
* "Simple No Saved Items" illustration type.
|
|
165116
|
+
*
|
|
165117
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoSavedItems}
|
|
164457
165118
|
*/
|
|
164458
165119
|
SimpleNoSavedItems = "sapIllus-SimpleNoSavedItems",
|
|
164459
165120
|
/**
|
|
164460
165121
|
* "Simple Not Found Magnifier" illustration type.
|
|
165122
|
+
*
|
|
165123
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoSearchResults}
|
|
164461
165124
|
*/
|
|
164462
165125
|
SimpleNotFoundMagnifier = "sapIllus-SimpleNotFoundMagnifier",
|
|
164463
165126
|
/**
|
|
164464
165127
|
* "Simple Reload" illustration type.
|
|
165128
|
+
*
|
|
165129
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.UnableToLoad}
|
|
164465
165130
|
*/
|
|
164466
165131
|
SimpleReload = "sapIllus-SimpleReload",
|
|
164467
165132
|
/**
|
|
164468
165133
|
* "Simple Task" illustration type.
|
|
165134
|
+
*
|
|
165135
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoTasks}
|
|
164469
165136
|
*/
|
|
164470
165137
|
SimpleTask = "sapIllus-SimpleTask",
|
|
164471
165138
|
/**
|
|
164472
165139
|
* "Sleeping Bell" illustration type.
|
|
165140
|
+
*
|
|
165141
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoNotifications}
|
|
164473
165142
|
*/
|
|
164474
165143
|
SleepingBell = "sapIllus-SleepingBell",
|
|
164475
165144
|
/**
|
|
164476
165145
|
* "Sort Column" illustration type.
|
|
165146
|
+
*
|
|
165147
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.SortingColumns}
|
|
164477
165148
|
*/
|
|
164478
165149
|
SortColumn = "sapIllus-SortColumn",
|
|
165150
|
+
/**
|
|
165151
|
+
* "Sorting Columns" illustration type.
|
|
165152
|
+
*/
|
|
165153
|
+
SortingColumns = "sapIllus-SortingColumns",
|
|
164479
165154
|
/**
|
|
164480
165155
|
* "Success Balloon" illustration type.
|
|
165156
|
+
*
|
|
165157
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.ReceiveAppreciation}
|
|
164481
165158
|
*/
|
|
164482
165159
|
SuccessBalloon = "sapIllus-SuccessBalloon",
|
|
164483
165160
|
/**
|
|
164484
165161
|
* "Success CheckMark" illustration type.
|
|
165162
|
+
*
|
|
165163
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.KeyTask}
|
|
164485
165164
|
*/
|
|
164486
165165
|
SuccessCheckMark = "sapIllus-SuccessCheckMark",
|
|
164487
165166
|
/**
|
|
164488
165167
|
* "Success HighFive" illustration type.
|
|
165168
|
+
*
|
|
165169
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.ReceiveAppreciation}
|
|
164489
165170
|
*/
|
|
164490
165171
|
SuccessHighFive = "sapIllus-SuccessHighFive",
|
|
164491
165172
|
/**
|
|
164492
165173
|
* "Success Screen" illustration type.
|
|
165174
|
+
*
|
|
165175
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.KeyTask}
|
|
164493
165176
|
*/
|
|
164494
165177
|
SuccessScreen = "sapIllus-SuccessScreen",
|
|
164495
165178
|
/**
|
|
@@ -164498,6 +165181,8 @@ declare namespace sap {
|
|
|
164498
165181
|
Survey = "sapIllus-Survey",
|
|
164499
165182
|
/**
|
|
164500
165183
|
* "Tent" illustration type.
|
|
165184
|
+
*
|
|
165185
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoData}
|
|
164501
165186
|
*/
|
|
164502
165187
|
Tent = "sapIllus-Tent",
|
|
164503
165188
|
/**
|
|
@@ -164514,12 +165199,18 @@ declare namespace sap {
|
|
|
164514
165199
|
UnableToUpload = "sapIllus-UnableToUpload",
|
|
164515
165200
|
/**
|
|
164516
165201
|
* "Upload Collection" illustration type.
|
|
165202
|
+
*
|
|
165203
|
+
* @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.DragFilesToUpload}
|
|
164517
165204
|
*/
|
|
164518
165205
|
UploadCollection = "sapIllus-UploadCollection",
|
|
164519
165206
|
/**
|
|
164520
165207
|
* "Upload To Cloud" illustration type.
|
|
164521
165208
|
*/
|
|
164522
165209
|
UploadToCloud = "sapIllus-UploadToCloud",
|
|
165210
|
+
/**
|
|
165211
|
+
* "User has signed up for an application" illustration type.
|
|
165212
|
+
*/
|
|
165213
|
+
UserHasSignedUp = "sapIllus-UserHasSignedUp",
|
|
164523
165214
|
}
|
|
164524
165215
|
/**
|
|
164525
165216
|
* Determines how the source image is used on the output DOM element.
|
|
@@ -166874,6 +167565,8 @@ declare namespace sap {
|
|
|
166874
167565
|
* In case the less parameter color cannot be determined, the validation fails. You need to check if less
|
|
166875
167566
|
* parameters are supported on control level. An empty string is also allowed and has the same effect as
|
|
166876
167567
|
* setting no color.
|
|
167568
|
+
*
|
|
167569
|
+
* @deprecated As of version 1.135. the concept has been discarded.
|
|
166877
167570
|
*/
|
|
166878
167571
|
type ValueCSSColor = string;
|
|
166879
167572
|
|
|
@@ -169720,6 +170413,8 @@ declare namespace sap {
|
|
|
169720
170413
|
|
|
169721
170414
|
"sap/m/plugins/CellSelector": undefined;
|
|
169722
170415
|
|
|
170416
|
+
"sap/m/plugins/ColumnAIAction": undefined;
|
|
170417
|
+
|
|
169723
170418
|
"sap/m/plugins/ColumnResizer": undefined;
|
|
169724
170419
|
|
|
169725
170420
|
"sap/m/plugins/ContextMenuSetting": undefined;
|