@sapui5/types 1.145.0 → 1.146.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.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +58 -18
- package/types/sap.f.d.ts +73 -526
- package/types/sap.fe.ariba.d.ts +1 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +1 -1
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +203 -38
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +45 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +322 -18
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +178 -10
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +9 -16
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +1 -1
- package/types/sap.ui.core.d.ts +1044 -382
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +5 -1
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.geomap.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +65 -266
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +2 -2
- package/types/sap.ui.richtexteditor.d.ts +6 -6
- 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 +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +36 -3
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +209 -2
- package/types/sap.ui.vtm.d.ts +2 -2
- 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.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +194 -136
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.146.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/suite/ui/commons/collaboration/BaseHelperService" {
|
|
4
4
|
import BaseObject from "sap/ui/base/Object";
|
|
@@ -2840,6 +2840,57 @@ declare module "sap/suite/ui/commons/CalculationBuilder" {
|
|
|
2840
2840
|
*/
|
|
2841
2841
|
oListener?: object
|
|
2842
2842
|
): this;
|
|
2843
|
+
/**
|
|
2844
|
+
* Attaches event handler `fnFunction` to the {@link #event:focusChange focusChange} event of this `sap.suite.ui.commons.CalculationBuilder`.
|
|
2845
|
+
*
|
|
2846
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
2847
|
+
* otherwise it will be bound to this `sap.suite.ui.commons.CalculationBuilder` itself.
|
|
2848
|
+
*
|
|
2849
|
+
* This event is triggered when the focus leaves the input field.
|
|
2850
|
+
*
|
|
2851
|
+
* @since 1.146
|
|
2852
|
+
*
|
|
2853
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2854
|
+
*/
|
|
2855
|
+
attachFocusChange(
|
|
2856
|
+
/**
|
|
2857
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
2858
|
+
* object when firing the event
|
|
2859
|
+
*/
|
|
2860
|
+
oData: object,
|
|
2861
|
+
/**
|
|
2862
|
+
* The function to be called when the event occurs
|
|
2863
|
+
*/
|
|
2864
|
+
fnFunction: (p1: CalculationBuilder$FocusChangeEvent) => void,
|
|
2865
|
+
/**
|
|
2866
|
+
* Context object to call the event handler with. Defaults to this `sap.suite.ui.commons.CalculationBuilder`
|
|
2867
|
+
* itself
|
|
2868
|
+
*/
|
|
2869
|
+
oListener?: object
|
|
2870
|
+
): this;
|
|
2871
|
+
/**
|
|
2872
|
+
* Attaches event handler `fnFunction` to the {@link #event:focusChange focusChange} event of this `sap.suite.ui.commons.CalculationBuilder`.
|
|
2873
|
+
*
|
|
2874
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
2875
|
+
* otherwise it will be bound to this `sap.suite.ui.commons.CalculationBuilder` itself.
|
|
2876
|
+
*
|
|
2877
|
+
* This event is triggered when the focus leaves the input field.
|
|
2878
|
+
*
|
|
2879
|
+
* @since 1.146
|
|
2880
|
+
*
|
|
2881
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2882
|
+
*/
|
|
2883
|
+
attachFocusChange(
|
|
2884
|
+
/**
|
|
2885
|
+
* The function to be called when the event occurs
|
|
2886
|
+
*/
|
|
2887
|
+
fnFunction: (p1: CalculationBuilder$FocusChangeEvent) => void,
|
|
2888
|
+
/**
|
|
2889
|
+
* Context object to call the event handler with. Defaults to this `sap.suite.ui.commons.CalculationBuilder`
|
|
2890
|
+
* itself
|
|
2891
|
+
*/
|
|
2892
|
+
oListener?: object
|
|
2893
|
+
): this;
|
|
2843
2894
|
/**
|
|
2844
2895
|
* Attaches event handler `fnFunction` to the {@link #event:validateFunction validateFunction} event of
|
|
2845
2896
|
* this `sap.suite.ui.commons.CalculationBuilder`.
|
|
@@ -2982,6 +3033,25 @@ declare module "sap/suite/ui/commons/CalculationBuilder" {
|
|
|
2982
3033
|
*/
|
|
2983
3034
|
oListener?: object
|
|
2984
3035
|
): this;
|
|
3036
|
+
/**
|
|
3037
|
+
* Detaches event handler `fnFunction` from the {@link #event:focusChange focusChange} event of this `sap.suite.ui.commons.CalculationBuilder`.
|
|
3038
|
+
*
|
|
3039
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
3040
|
+
*
|
|
3041
|
+
* @since 1.146
|
|
3042
|
+
*
|
|
3043
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3044
|
+
*/
|
|
3045
|
+
detachFocusChange(
|
|
3046
|
+
/**
|
|
3047
|
+
* The function to be called, when the event occurs
|
|
3048
|
+
*/
|
|
3049
|
+
fnFunction: (p1: CalculationBuilder$FocusChangeEvent) => void,
|
|
3050
|
+
/**
|
|
3051
|
+
* Context object on which the given function had to be called
|
|
3052
|
+
*/
|
|
3053
|
+
oListener?: object
|
|
3054
|
+
): this;
|
|
2985
3055
|
/**
|
|
2986
3056
|
* Detaches event handler `fnFunction` from the {@link #event:validateFunction validateFunction} event of
|
|
2987
3057
|
* this `sap.suite.ui.commons.CalculationBuilder`.
|
|
@@ -3027,6 +3097,20 @@ declare module "sap/suite/ui/commons/CalculationBuilder" {
|
|
|
3027
3097
|
*/
|
|
3028
3098
|
mParameters?: object
|
|
3029
3099
|
): this;
|
|
3100
|
+
/**
|
|
3101
|
+
* Fires event {@link #event:focusChange focusChange} to attached listeners.
|
|
3102
|
+
*
|
|
3103
|
+
* @since 1.146
|
|
3104
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3105
|
+
*
|
|
3106
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3107
|
+
*/
|
|
3108
|
+
fireFocusChange(
|
|
3109
|
+
/**
|
|
3110
|
+
* Parameters to pass along with the event
|
|
3111
|
+
*/
|
|
3112
|
+
mParameters?: CalculationBuilder$FocusChangeEventParameters
|
|
3113
|
+
): this;
|
|
3030
3114
|
/**
|
|
3031
3115
|
* Fires event {@link #event:validateFunction validateFunction} to attached listeners.
|
|
3032
3116
|
*
|
|
@@ -3957,6 +4041,13 @@ declare module "sap/suite/ui/commons/CalculationBuilder" {
|
|
|
3957
4041
|
* This event is fired after the expression is validated.
|
|
3958
4042
|
*/
|
|
3959
4043
|
afterValidation?: (oEvent: Event) => void;
|
|
4044
|
+
|
|
4045
|
+
/**
|
|
4046
|
+
* This event is triggered when the focus leaves the input field.
|
|
4047
|
+
*
|
|
4048
|
+
* @since 1.146
|
|
4049
|
+
*/
|
|
4050
|
+
focusChange?: (oEvent: CalculationBuilder$FocusChangeEvent) => void;
|
|
3960
4051
|
}
|
|
3961
4052
|
|
|
3962
4053
|
/**
|
|
@@ -3985,6 +4076,23 @@ declare module "sap/suite/ui/commons/CalculationBuilder" {
|
|
|
3985
4076
|
CalculationBuilder
|
|
3986
4077
|
>;
|
|
3987
4078
|
|
|
4079
|
+
/**
|
|
4080
|
+
* Parameters of the CalculationBuilder#focusChange event.
|
|
4081
|
+
*/
|
|
4082
|
+
export interface CalculationBuilder$FocusChangeEventParameters {
|
|
4083
|
+
value?: String;
|
|
4084
|
+
|
|
4085
|
+
position?: int;
|
|
4086
|
+
}
|
|
4087
|
+
|
|
4088
|
+
/**
|
|
4089
|
+
* Event object of the CalculationBuilder#focusChange event.
|
|
4090
|
+
*/
|
|
4091
|
+
export type CalculationBuilder$FocusChangeEvent = Event<
|
|
4092
|
+
CalculationBuilder$FocusChangeEventParameters,
|
|
4093
|
+
CalculationBuilder
|
|
4094
|
+
>;
|
|
4095
|
+
|
|
3988
4096
|
/**
|
|
3989
4097
|
* Parameters of the CalculationBuilder#validateFunction event.
|
|
3990
4098
|
*/
|
|
@@ -21031,7 +21139,11 @@ declare module "sap/suite/ui/commons/networkgraph/Graph" {
|
|
|
21031
21139
|
* otherwise it will be bound to this `sap.suite.ui.commons.networkgraph.Graph` itself.
|
|
21032
21140
|
*
|
|
21033
21141
|
* This event is fired when a user drops a node in the graph. This event is available only when the layout
|
|
21034
|
-
* algorithm is set to "NoopLayout" and the `enableDragAndDrop` property is set to `true`.
|
|
21142
|
+
* algorithm is set to "NoopLayout" and the `enableDragAndDrop` property is set to `true`. Note: When a
|
|
21143
|
+
* node is dropped near the TOP or LEFT boundary of the graph canvas, its position is automatically adjusted
|
|
21144
|
+
* (clamped) to ensure the node and its elements remain fully visible. This provides better visualization
|
|
21145
|
+
* by preventing nodes from being positioned at coordinates that would make them invisible or partially
|
|
21146
|
+
* hidden.
|
|
21035
21147
|
*
|
|
21036
21148
|
* @since 1.144
|
|
21037
21149
|
*
|
|
@@ -21060,7 +21172,11 @@ declare module "sap/suite/ui/commons/networkgraph/Graph" {
|
|
|
21060
21172
|
* otherwise it will be bound to this `sap.suite.ui.commons.networkgraph.Graph` itself.
|
|
21061
21173
|
*
|
|
21062
21174
|
* This event is fired when a user drops a node in the graph. This event is available only when the layout
|
|
21063
|
-
* algorithm is set to "NoopLayout" and the `enableDragAndDrop` property is set to `true`.
|
|
21175
|
+
* algorithm is set to "NoopLayout" and the `enableDragAndDrop` property is set to `true`. Note: When a
|
|
21176
|
+
* node is dropped near the TOP or LEFT boundary of the graph canvas, its position is automatically adjusted
|
|
21177
|
+
* (clamped) to ensure the node and its elements remain fully visible. This provides better visualization
|
|
21178
|
+
* by preventing nodes from being positioned at coordinates that would make them invisible or partially
|
|
21179
|
+
* hidden.
|
|
21064
21180
|
*
|
|
21065
21181
|
* @since 1.144
|
|
21066
21182
|
*
|
|
@@ -22769,7 +22885,9 @@ declare module "sap/suite/ui/commons/networkgraph/Graph" {
|
|
|
22769
22885
|
|
|
22770
22886
|
/**
|
|
22771
22887
|
* Enables the drag and drop of nodes. This property is ignored if the layout property is not set to noop.
|
|
22772
|
-
* If set to `true`, nodes can be dragged and dropped within the graph.
|
|
22888
|
+
* If set to `true`, nodes can be dragged and dropped within the graph. Note: Drag and drop functionality
|
|
22889
|
+
* is only available for nodes. Groups cannot be dragged and dropped, even when NoopLayout is used and enableDragAndDrop
|
|
22890
|
+
* is set to true.
|
|
22773
22891
|
*
|
|
22774
22892
|
* @since 1.144
|
|
22775
22893
|
*/
|
|
@@ -22900,7 +23018,11 @@ declare module "sap/suite/ui/commons/networkgraph/Graph" {
|
|
|
22900
23018
|
|
|
22901
23019
|
/**
|
|
22902
23020
|
* This event is fired when a user drops a node in the graph. This event is available only when the layout
|
|
22903
|
-
* algorithm is set to "NoopLayout" and the `enableDragAndDrop` property is set to `true`.
|
|
23021
|
+
* algorithm is set to "NoopLayout" and the `enableDragAndDrop` property is set to `true`. Note: When a
|
|
23022
|
+
* node is dropped near the TOP or LEFT boundary of the graph canvas, its position is automatically adjusted
|
|
23023
|
+
* (clamped) to ensure the node and its elements remain fully visible. This provides better visualization
|
|
23024
|
+
* by preventing nodes from being positioned at coordinates that would make them invisible or partially
|
|
23025
|
+
* hidden.
|
|
22904
23026
|
*
|
|
22905
23027
|
* @since 1.144
|
|
22906
23028
|
*/
|
|
@@ -25078,6 +25200,19 @@ declare module "sap/suite/ui/commons/networkgraph/layout/NoopLayout" {
|
|
|
25078
25200
|
* @returns Metadata object describing this class
|
|
25079
25201
|
*/
|
|
25080
25202
|
static getMetadata(): ElementMetadata;
|
|
25203
|
+
/**
|
|
25204
|
+
* Gets current value of property {@link #getComponentArrangement componentArrangement}.
|
|
25205
|
+
*
|
|
25206
|
+
* Defines how separate connected components should be arranged in the graph. Components can be arranged
|
|
25207
|
+
* either horizontally (side-by-side) or vertically (stacked).
|
|
25208
|
+
*
|
|
25209
|
+
* Default value is `Horizontal`.
|
|
25210
|
+
*
|
|
25211
|
+
* @since 1.146
|
|
25212
|
+
*
|
|
25213
|
+
* @returns Value of property `componentArrangement`
|
|
25214
|
+
*/
|
|
25215
|
+
getComponentArrangement(): networkgraph.ComponentArrangement;
|
|
25081
25216
|
/**
|
|
25082
25217
|
* Gets current value of property {@link #getEnableOptimizedLineAlgorithm enableOptimizedLineAlgorithm}.
|
|
25083
25218
|
*
|
|
@@ -25086,7 +25221,6 @@ declare module "sap/suite/ui/commons/networkgraph/layout/NoopLayout" {
|
|
|
25086
25221
|
*
|
|
25087
25222
|
* Default value is `false`.
|
|
25088
25223
|
*
|
|
25089
|
-
* @since 1.144
|
|
25090
25224
|
*
|
|
25091
25225
|
* @returns Value of property `enableOptimizedLineAlgorithm`
|
|
25092
25226
|
*/
|
|
@@ -25099,12 +25233,35 @@ declare module "sap/suite/ui/commons/networkgraph/layout/NoopLayout" {
|
|
|
25099
25233
|
*/
|
|
25100
25234
|
getLayoutRenderType(): networkgraph.LayoutRenderType;
|
|
25101
25235
|
/**
|
|
25102
|
-
* Executes the layout algorithm.
|
|
25236
|
+
* Executes the layout algorithm. Automatically calculates initial positions for unpositioned nodes using
|
|
25237
|
+
* DependencyLayoutHelper, then normalizes line coordinates.
|
|
25103
25238
|
*
|
|
25104
25239
|
*
|
|
25105
25240
|
* @returns Task to get the layout calculated.
|
|
25106
25241
|
*/
|
|
25107
25242
|
layout(): LayoutTask;
|
|
25243
|
+
/**
|
|
25244
|
+
* Sets a new value for property {@link #getComponentArrangement componentArrangement}.
|
|
25245
|
+
*
|
|
25246
|
+
* Defines how separate connected components should be arranged in the graph. Components can be arranged
|
|
25247
|
+
* either horizontally (side-by-side) or vertically (stacked).
|
|
25248
|
+
*
|
|
25249
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
25250
|
+
*
|
|
25251
|
+
* Default value is `Horizontal`.
|
|
25252
|
+
*
|
|
25253
|
+
* @since 1.146
|
|
25254
|
+
*
|
|
25255
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
25256
|
+
*/
|
|
25257
|
+
setComponentArrangement(
|
|
25258
|
+
/**
|
|
25259
|
+
* New value for property `componentArrangement`
|
|
25260
|
+
*/
|
|
25261
|
+
sComponentArrangement?:
|
|
25262
|
+
| networkgraph.ComponentArrangement
|
|
25263
|
+
| keyof typeof networkgraph.ComponentArrangement
|
|
25264
|
+
): this;
|
|
25108
25265
|
/**
|
|
25109
25266
|
* Sets a new value for property {@link #getEnableOptimizedLineAlgorithm enableOptimizedLineAlgorithm}.
|
|
25110
25267
|
*
|
|
@@ -25115,7 +25272,6 @@ declare module "sap/suite/ui/commons/networkgraph/layout/NoopLayout" {
|
|
|
25115
25272
|
*
|
|
25116
25273
|
* Default value is `false`.
|
|
25117
25274
|
*
|
|
25118
|
-
* @since 1.144
|
|
25119
25275
|
*
|
|
25120
25276
|
* @returns Reference to `this` in order to allow method chaining
|
|
25121
25277
|
*/
|
|
@@ -25133,13 +25289,25 @@ declare module "sap/suite/ui/commons/networkgraph/layout/NoopLayout" {
|
|
|
25133
25289
|
/**
|
|
25134
25290
|
* Enables advanced line routing algorithm that creates orthogonal bends along the pathfinding process for
|
|
25135
25291
|
* line creation.
|
|
25136
|
-
*
|
|
25137
|
-
* @since 1.144
|
|
25138
25292
|
*/
|
|
25139
25293
|
enableOptimizedLineAlgorithm?:
|
|
25140
25294
|
| boolean
|
|
25141
25295
|
| PropertyBindingInfo
|
|
25142
25296
|
| `{${string}}`;
|
|
25297
|
+
|
|
25298
|
+
/**
|
|
25299
|
+
* Defines how separate connected components should be arranged in the graph. Components can be arranged
|
|
25300
|
+
* either horizontally (side-by-side) or vertically (stacked).
|
|
25301
|
+
*
|
|
25302
|
+
* @since 1.146
|
|
25303
|
+
*/
|
|
25304
|
+
componentArrangement?:
|
|
25305
|
+
| (
|
|
25306
|
+
| networkgraph.ComponentArrangement
|
|
25307
|
+
| keyof typeof networkgraph.ComponentArrangement
|
|
25308
|
+
)
|
|
25309
|
+
| PropertyBindingInfo
|
|
25310
|
+
| `{${string}}`;
|
|
25143
25311
|
}
|
|
25144
25312
|
}
|
|
25145
25313
|
|
package/types/sap.tnt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.146.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
/**
|
|
@@ -18,7 +18,6 @@ declare module "sap/tnt/library" {
|
|
|
18
18
|
* This enum is part of the 'sap/tnt/library' module export and must be accessed by the property 'NavigationListItemDesign'.
|
|
19
19
|
*
|
|
20
20
|
* @since 1.133.0
|
|
21
|
-
* @experimental Behavior might change.
|
|
22
21
|
*/
|
|
23
22
|
export enum NavigationListItemDesign {
|
|
24
23
|
/**
|
|
@@ -51,7 +50,6 @@ declare module "sap/tnt/library" {
|
|
|
51
50
|
* This enum is part of the 'sap/tnt/library' module export and must be accessed by the property 'SideNavigationDesign'.
|
|
52
51
|
*
|
|
53
52
|
* @since 1.134.0
|
|
54
|
-
* @experimental Behavior might change.
|
|
55
53
|
*/
|
|
56
54
|
export enum SideNavigationDesign {
|
|
57
55
|
/**
|
|
@@ -1664,7 +1662,6 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1664
1662
|
* Default value is `Default`.
|
|
1665
1663
|
*
|
|
1666
1664
|
* @since 1.133.0
|
|
1667
|
-
* @experimental Behavior might change.
|
|
1668
1665
|
*
|
|
1669
1666
|
* @returns Value of property `design`
|
|
1670
1667
|
*/
|
|
@@ -1716,8 +1713,6 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1716
1713
|
* Default value is `true`.
|
|
1717
1714
|
*
|
|
1718
1715
|
* @since 1.116
|
|
1719
|
-
* @experimental As of version 1.116. Disclaimer: this property is in a beta state - incompatible API changes
|
|
1720
|
-
* may be done before its official public release.
|
|
1721
1716
|
*
|
|
1722
1717
|
* @returns Value of property `selectable`
|
|
1723
1718
|
*/
|
|
@@ -1833,7 +1828,6 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1833
1828
|
* Default value is `Default`.
|
|
1834
1829
|
*
|
|
1835
1830
|
* @since 1.133.0
|
|
1836
|
-
* @experimental Behavior might change.
|
|
1837
1831
|
*
|
|
1838
1832
|
* @returns Reference to `this` in order to allow method chaining
|
|
1839
1833
|
*/
|
|
@@ -1900,8 +1894,6 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1900
1894
|
* Default value is `true`.
|
|
1901
1895
|
*
|
|
1902
1896
|
* @since 1.116
|
|
1903
|
-
* @experimental As of version 1.116. Disclaimer: this property is in a beta state - incompatible API changes
|
|
1904
|
-
* may be done before its official public release.
|
|
1905
1897
|
*
|
|
1906
1898
|
* @returns Reference to `this` in order to allow method chaining
|
|
1907
1899
|
*/
|
|
@@ -1988,8 +1980,6 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1988
1980
|
* - Items that trigger actions (with design "Action") should not be selectable.
|
|
1989
1981
|
*
|
|
1990
1982
|
* @since 1.116
|
|
1991
|
-
* @experimental As of version 1.116. Disclaimer: this property is in a beta state - incompatible API changes
|
|
1992
|
-
* may be done before its official public release.
|
|
1993
1983
|
*/
|
|
1994
1984
|
selectable?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1995
1985
|
|
|
@@ -2017,7 +2007,6 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
2017
2007
|
* sub-items cannot be added.
|
|
2018
2008
|
*
|
|
2019
2009
|
* @since 1.133.0
|
|
2020
|
-
* @experimental Behavior might change.
|
|
2021
2010
|
*/
|
|
2022
2011
|
design?:
|
|
2023
2012
|
| (NavigationListItemDesign | keyof typeof NavigationListItemDesign)
|
|
@@ -3080,10 +3069,14 @@ declare module "sap/tnt/ToolHeader" {
|
|
|
3080
3069
|
* - If an app implements side navigation in addition to the tool header menu, the menu icon must be the
|
|
3081
3070
|
* first item on the left-hand side of the tool header.
|
|
3082
3071
|
* - The app menu and the side navigation must not have any dependencies and must work independently.
|
|
3083
|
-
*
|
|
3084
|
-
*
|
|
3085
|
-
*
|
|
3086
|
-
*
|
|
3072
|
+
*
|
|
3073
|
+
* - Not recommended: In accordance with the UX Consistency initiative, it is recommended to use the seamlessly
|
|
3074
|
+
* integrated UI5 Web Components' ui5-shellbar, as demonstrated in this UXC
|
|
3075
|
+
* integration sample app with UXC integration
|
|
3076
|
+
* sample source code. Horizon theme specifics: Only the following controls are supported: sap.m.Button,
|
|
3077
|
+
* sap.m.Image, sap.m.Title, sap.m.Text, sap.m.SearchField, sap.m.Avatar. Fiori 3 theme specifics: In Fiori
|
|
3078
|
+
* 3 Default theme the ToolHeader is with dark design unlike most of the other controls. This defines the
|
|
3079
|
+
* usage of limited controls inside it, which will result in good design combination.
|
|
3087
3080
|
* The ToolHeader stylizes the contained controls with the Shell color parameters, to match the dark design
|
|
3088
3081
|
* requirement. However, that's not a dark theme.
|
|
3089
3082
|
*
|
package/types/sap.ui.comp.d.ts
CHANGED