@sapui5/ts-types 1.122.2 → 1.123.1
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 +5 -5
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +404 -3
- package/types/sap.chart.d.ts +58 -3
- package/types/sap.collaboration.d.ts +52 -3
- package/types/sap.esh.search.ui.d.ts +2152 -2
- package/types/sap.f.d.ts +432 -46
- package/types/sap.fe.core.d.ts +20 -15
- package/types/sap.fe.macros.d.ts +1048 -21
- 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 +8 -6
- package/types/sap.fe.test.d.ts +288 -7
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1067 -15
- package/types/sap.insights.d.ts +4 -1
- package/types/{mobile-1.122.0-d.ts → sap.m.d.ts} +3962 -124
- package/types/sap.makit.d.ts +115 -2
- package/types/sap.me.d.ts +84 -2
- package/types/sap.ndc.d.ts +22 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +44 -8
- package/types/sap.sac.df.d.ts +111 -60
- package/types/sap.suite.ui.commons.d.ts +1148 -2174
- package/types/sap.suite.ui.generic.template.d.ts +10 -1
- package/types/sap.suite.ui.microchart.d.ts +190 -2
- package/types/sap.tnt.d.ts +46 -2
- package/types/sap.ui.codeeditor.d.ts +16 -1
- package/types/{commons-1.122.0-d.ts → sap.ui.commons.d.ts} +792 -30
- package/types/sap.ui.comp.d.ts +964 -86
- package/types/{core-1.122.0-d.ts → sap.ui.core.d.ts} +2194 -1540
- package/types/sap.ui.dt.d.ts +3 -0
- package/types/sap.ui.export.d.ts +22 -4
- package/types/sap.ui.fl.d.ts +40 -1
- package/types/sap.ui.generic.app.d.ts +217 -203
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +147 -5
- package/types/sap.ui.layout.d.ts +171 -8
- package/types/sap.ui.mdc.d.ts +554 -33
- package/types/sap.ui.richtexteditor.d.ts +28 -2
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +27 -2
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +278 -57
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +481 -9
- package/types/{ux3-1.122.0-d.ts → sap.ui.ux3.d.ts} +527 -5
- package/types/sap.ui.vbm.d.ts +544 -2
- package/types/sap.ui.vk.d.ts +1580 -39
- package/types/sap.ui.vtm.d.ts +373 -2
- package/types/sap.ui.webc.common.d.ts +7 -2
- package/types/sap.ui.webc.fiori.d.ts +351 -2
- package/types/sap.ui.webc.main.d.ts +1035 -2
- package/types/sap.uiext.inbox.d.ts +124 -2
- package/types/sap.ushell.d.ts +1001 -322
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +123 -6
- package/types/sap.viz.d.ts +2619 -5
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +35 -10
- package/types/sap.zen.crosstab.d.ts +22 -7
- package/types/sap.zen.dsh.d.ts +64 -8
- package/types/dt-1.122.0-d.ts +0 -3
package/types/sap.ui.layout.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.123.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -46,6 +46,9 @@ declare namespace sap {
|
|
|
46
46
|
__implements__sap_ui_layout_cssgrid_IGridItemLayoutData: boolean;
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
+
/**
|
|
50
|
+
* Describes the settings that can be provided to the CSSGrid constructor.
|
|
51
|
+
*/
|
|
49
52
|
interface $CSSGridSettings extends sap.ui.core.$ControlSettings {
|
|
50
53
|
/**
|
|
51
54
|
* The width of the control
|
|
@@ -136,6 +139,9 @@ declare namespace sap {
|
|
|
136
139
|
| `{${string}}`;
|
|
137
140
|
}
|
|
138
141
|
|
|
142
|
+
/**
|
|
143
|
+
* Describes the settings that can be provided to the GridBasicLayout constructor.
|
|
144
|
+
*/
|
|
139
145
|
interface $GridBasicLayoutSettings
|
|
140
146
|
extends sap.ui.layout.cssgrid.$GridLayoutBaseSettings {
|
|
141
147
|
/**
|
|
@@ -203,6 +209,9 @@ declare namespace sap {
|
|
|
203
209
|
| `{${string}}`;
|
|
204
210
|
}
|
|
205
211
|
|
|
212
|
+
/**
|
|
213
|
+
* Describes the settings that can be provided to the GridBoxLayout constructor.
|
|
214
|
+
*/
|
|
206
215
|
interface $GridBoxLayoutSettings
|
|
207
216
|
extends sap.ui.layout.cssgrid.$GridLayoutBaseSettings {
|
|
208
217
|
/**
|
|
@@ -232,6 +241,9 @@ declare namespace sap {
|
|
|
232
241
|
| `{${string}}`;
|
|
233
242
|
}
|
|
234
243
|
|
|
244
|
+
/**
|
|
245
|
+
* Describes the settings that can be provided to the GridItemLayoutData constructor.
|
|
246
|
+
*/
|
|
235
247
|
interface $GridItemLayoutDataSettings
|
|
236
248
|
extends sap.ui.core.$LayoutDataSettings {
|
|
237
249
|
/**
|
|
@@ -283,9 +295,15 @@ declare namespace sap {
|
|
|
283
295
|
| `{${string}}`;
|
|
284
296
|
}
|
|
285
297
|
|
|
298
|
+
/**
|
|
299
|
+
* Describes the settings that can be provided to the GridLayoutBase constructor.
|
|
300
|
+
*/
|
|
286
301
|
interface $GridLayoutBaseSettings
|
|
287
302
|
extends sap.ui.base.$ManagedObjectSettings {}
|
|
288
303
|
|
|
304
|
+
/**
|
|
305
|
+
* Describes the settings that can be provided to the GridResponsiveLayout constructor.
|
|
306
|
+
*/
|
|
289
307
|
interface $GridResponsiveLayoutSettings
|
|
290
308
|
extends sap.ui.layout.cssgrid.$GridLayoutBaseSettings {
|
|
291
309
|
/**
|
|
@@ -330,6 +348,9 @@ declare namespace sap {
|
|
|
330
348
|
) => void;
|
|
331
349
|
}
|
|
332
350
|
|
|
351
|
+
/**
|
|
352
|
+
* Describes the settings that can be provided to the GridSettings constructor.
|
|
353
|
+
*/
|
|
333
354
|
interface $GridSettingsSettings
|
|
334
355
|
extends sap.ui.base.$ManagedObjectSettings {
|
|
335
356
|
/**
|
|
@@ -397,6 +418,9 @@ declare namespace sap {
|
|
|
397
418
|
| `{${string}}`;
|
|
398
419
|
}
|
|
399
420
|
|
|
421
|
+
/**
|
|
422
|
+
* Describes the settings that can be provided to the ResponsiveColumnItemLayoutData constructor.
|
|
423
|
+
*/
|
|
400
424
|
interface $ResponsiveColumnItemLayoutDataSettings
|
|
401
425
|
extends sap.ui.core.$LayoutDataSettings {
|
|
402
426
|
/**
|
|
@@ -416,6 +440,9 @@ declare namespace sap {
|
|
|
416
440
|
| `{${string}}`;
|
|
417
441
|
}
|
|
418
442
|
|
|
443
|
+
/**
|
|
444
|
+
* Describes the settings that can be provided to the ResponsiveColumnLayout constructor.
|
|
445
|
+
*/
|
|
419
446
|
interface $ResponsiveColumnLayoutSettings
|
|
420
447
|
extends sap.ui.layout.cssgrid.$GridLayoutBaseSettings {
|
|
421
448
|
/**
|
|
@@ -426,6 +453,9 @@ declare namespace sap {
|
|
|
426
453
|
) => void;
|
|
427
454
|
}
|
|
428
455
|
|
|
456
|
+
/**
|
|
457
|
+
* Parameters of the GridResponsiveLayout#layoutChange event.
|
|
458
|
+
*/
|
|
429
459
|
interface GridResponsiveLayout$LayoutChangeEventParameters {
|
|
430
460
|
/**
|
|
431
461
|
* The name of the newly active layout aggregation
|
|
@@ -433,6 +463,9 @@ declare namespace sap {
|
|
|
433
463
|
layout?: string;
|
|
434
464
|
}
|
|
435
465
|
|
|
466
|
+
/**
|
|
467
|
+
* Parameters of the ResponsiveColumnLayout#layoutChange event.
|
|
468
|
+
*/
|
|
436
469
|
interface ResponsiveColumnLayout$LayoutChangeEventParameters {
|
|
437
470
|
/**
|
|
438
471
|
* The name of the newly active layout - "S", "M", "ML", "L", "XL", "XXL" or "XXXL".
|
|
@@ -2814,11 +2847,17 @@ declare namespace sap {
|
|
|
2814
2847
|
*/
|
|
2815
2848
|
type CSSGridTrack = string;
|
|
2816
2849
|
|
|
2850
|
+
/**
|
|
2851
|
+
* Event object of the GridResponsiveLayout#layoutChange event.
|
|
2852
|
+
*/
|
|
2817
2853
|
type GridResponsiveLayout$LayoutChangeEvent = sap.ui.base.Event<
|
|
2818
2854
|
GridResponsiveLayout$LayoutChangeEventParameters,
|
|
2819
2855
|
GridResponsiveLayout
|
|
2820
2856
|
>;
|
|
2821
2857
|
|
|
2858
|
+
/**
|
|
2859
|
+
* Event object of the ResponsiveColumnLayout#layoutChange event.
|
|
2860
|
+
*/
|
|
2822
2861
|
type ResponsiveColumnLayout$LayoutChangeEvent = sap.ui.base.Event<
|
|
2823
2862
|
ResponsiveColumnLayout$LayoutChangeEventParameters,
|
|
2824
2863
|
ResponsiveColumnLayout
|
|
@@ -2826,6 +2865,9 @@ declare namespace sap {
|
|
|
2826
2865
|
}
|
|
2827
2866
|
|
|
2828
2867
|
namespace form {
|
|
2868
|
+
/**
|
|
2869
|
+
* Describes the settings that can be provided to the ColumnContainerData constructor.
|
|
2870
|
+
*/
|
|
2829
2871
|
interface $ColumnContainerDataSettings
|
|
2830
2872
|
extends sap.ui.core.$LayoutDataSettings {
|
|
2831
2873
|
/**
|
|
@@ -2857,6 +2899,9 @@ declare namespace sap {
|
|
|
2857
2899
|
| `{${string}}`;
|
|
2858
2900
|
}
|
|
2859
2901
|
|
|
2902
|
+
/**
|
|
2903
|
+
* Describes the settings that can be provided to the ColumnElementData constructor.
|
|
2904
|
+
*/
|
|
2860
2905
|
interface $ColumnElementDataSettings
|
|
2861
2906
|
extends sap.ui.core.$LayoutDataSettings {
|
|
2862
2907
|
/**
|
|
@@ -2882,6 +2927,9 @@ declare namespace sap {
|
|
|
2882
2927
|
| `{${string}}`;
|
|
2883
2928
|
}
|
|
2884
2929
|
|
|
2930
|
+
/**
|
|
2931
|
+
* Describes the settings that can be provided to the ColumnLayout constructor.
|
|
2932
|
+
*/
|
|
2885
2933
|
interface $ColumnLayoutSettings
|
|
2886
2934
|
extends sap.ui.layout.form.$FormLayoutSettings {
|
|
2887
2935
|
/**
|
|
@@ -2930,6 +2978,9 @@ declare namespace sap {
|
|
|
2930
2978
|
| `{${string}}`;
|
|
2931
2979
|
}
|
|
2932
2980
|
|
|
2981
|
+
/**
|
|
2982
|
+
* Describes the settings that can be provided to the Form constructor.
|
|
2983
|
+
*/
|
|
2933
2984
|
interface $FormSettings extends sap.ui.core.$ControlSettings {
|
|
2934
2985
|
/**
|
|
2935
2986
|
* Width of the `Form`.
|
|
@@ -3010,6 +3061,9 @@ declare namespace sap {
|
|
|
3010
3061
|
ariaLabelledBy?: Array<sap.ui.core.Control | string>;
|
|
3011
3062
|
}
|
|
3012
3063
|
|
|
3064
|
+
/**
|
|
3065
|
+
* Describes the settings that can be provided to the FormContainer constructor.
|
|
3066
|
+
*/
|
|
3013
3067
|
interface $FormContainerSettings extends sap.ui.core.$ElementSettings {
|
|
3014
3068
|
/**
|
|
3015
3069
|
* Container is expanded.
|
|
@@ -3086,6 +3140,9 @@ declare namespace sap {
|
|
|
3086
3140
|
ariaLabelledBy?: Array<sap.ui.core.Control | string>;
|
|
3087
3141
|
}
|
|
3088
3142
|
|
|
3143
|
+
/**
|
|
3144
|
+
* Describes the settings that can be provided to the FormElement constructor.
|
|
3145
|
+
*/
|
|
3089
3146
|
interface $FormElementSettings extends sap.ui.core.$ElementSettings {
|
|
3090
3147
|
/**
|
|
3091
3148
|
* If set to `false`, the `FormElement` is not rendered.
|
|
@@ -3120,6 +3177,9 @@ declare namespace sap {
|
|
|
3120
3177
|
| `{${string}}`;
|
|
3121
3178
|
}
|
|
3122
3179
|
|
|
3180
|
+
/**
|
|
3181
|
+
* Describes the settings that can be provided to the FormLayout constructor.
|
|
3182
|
+
*/
|
|
3123
3183
|
interface $FormLayoutSettings extends sap.ui.core.$ControlSettings {
|
|
3124
3184
|
/**
|
|
3125
3185
|
* Specifies the background color of the `Form` content.
|
|
@@ -3134,6 +3194,12 @@ declare namespace sap {
|
|
|
3134
3194
|
| `{${string}}`;
|
|
3135
3195
|
}
|
|
3136
3196
|
|
|
3197
|
+
/**
|
|
3198
|
+
* Describes the settings that can be provided to the GridContainerData constructor.
|
|
3199
|
+
*
|
|
3200
|
+
* @deprecated (since 1.67.0) - as `sap.ui.commons` library is deprecated and the `GridLayout` must not
|
|
3201
|
+
* be used in responsive applications. Please use `ResponsiveGridLayout` or `ColumnLayout` instead.
|
|
3202
|
+
*/
|
|
3137
3203
|
interface $GridContainerDataSettings
|
|
3138
3204
|
extends sap.ui.core.$LayoutDataSettings {
|
|
3139
3205
|
/**
|
|
@@ -3147,6 +3213,12 @@ declare namespace sap {
|
|
|
3147
3213
|
| `{${string}}`;
|
|
3148
3214
|
}
|
|
3149
3215
|
|
|
3216
|
+
/**
|
|
3217
|
+
* Describes the settings that can be provided to the GridElementData constructor.
|
|
3218
|
+
*
|
|
3219
|
+
* @deprecated (since 1.67.0) - as `sap.ui.commons` library is deprecated and the `GridLayout` must not
|
|
3220
|
+
* be used in responsive applications. Please use `ResponsiveGridLayout` or `ColumnLayout` instead.
|
|
3221
|
+
*/
|
|
3150
3222
|
interface $GridElementDataSettings
|
|
3151
3223
|
extends sap.ui.core.$LayoutDataSettings {
|
|
3152
3224
|
/**
|
|
@@ -3176,6 +3248,12 @@ declare namespace sap {
|
|
|
3176
3248
|
| `{${string}}`;
|
|
3177
3249
|
}
|
|
3178
3250
|
|
|
3251
|
+
/**
|
|
3252
|
+
* Describes the settings that can be provided to the GridLayout constructor.
|
|
3253
|
+
*
|
|
3254
|
+
* @deprecated (since 1.67.0) - as `sap.ui.commons` library is deprecated and the `GridLayout` must not
|
|
3255
|
+
* be used in responsive applications. Please use `ResponsiveGridLayout` or `ColumnLayout` instead.
|
|
3256
|
+
*/
|
|
3179
3257
|
interface $GridLayoutSettings
|
|
3180
3258
|
extends sap.ui.layout.form.$FormLayoutSettings {
|
|
3181
3259
|
/**
|
|
@@ -3191,6 +3269,9 @@ declare namespace sap {
|
|
|
3191
3269
|
| `{${string}}`;
|
|
3192
3270
|
}
|
|
3193
3271
|
|
|
3272
|
+
/**
|
|
3273
|
+
* Describes the settings that can be provided to the ResponsiveGridLayout constructor.
|
|
3274
|
+
*/
|
|
3194
3275
|
interface $ResponsiveGridLayoutSettings
|
|
3195
3276
|
extends sap.ui.layout.form.$FormLayoutSettings {
|
|
3196
3277
|
/**
|
|
@@ -3388,9 +3469,19 @@ declare namespace sap {
|
|
|
3388
3469
|
| `{${string}}`;
|
|
3389
3470
|
}
|
|
3390
3471
|
|
|
3472
|
+
/**
|
|
3473
|
+
* Describes the settings that can be provided to the ResponsiveLayout constructor.
|
|
3474
|
+
*
|
|
3475
|
+
* @deprecated (since 1.93) - replaced by {@link sap.ui.layout.form.ColumnLayout ColumnLayout}
|
|
3476
|
+
*/
|
|
3391
3477
|
interface $ResponsiveLayoutSettings
|
|
3392
3478
|
extends sap.ui.layout.form.$FormLayoutSettings {}
|
|
3393
3479
|
|
|
3480
|
+
/**
|
|
3481
|
+
* Describes the settings that can be provided to the SemanticFormElement constructor.
|
|
3482
|
+
*
|
|
3483
|
+
* @experimental (since 1.86)
|
|
3484
|
+
*/
|
|
3394
3485
|
interface $SemanticFormElementSettings
|
|
3395
3486
|
extends sap.ui.layout.form.$FormElementSettings {
|
|
3396
3487
|
/**
|
|
@@ -3417,6 +3508,9 @@ declare namespace sap {
|
|
|
3417
3508
|
| `{${string}}`;
|
|
3418
3509
|
}
|
|
3419
3510
|
|
|
3511
|
+
/**
|
|
3512
|
+
* Describes the settings that can be provided to the SimpleForm constructor.
|
|
3513
|
+
*/
|
|
3420
3514
|
interface $SimpleFormSettings extends sap.ui.core.$ControlSettings {
|
|
3421
3515
|
/**
|
|
3422
3516
|
* The maximum amount of groups (`{@link sap.ui.layout.form.FormContainer FormContainers}`) per row that
|
|
@@ -8130,7 +8224,9 @@ declare namespace sap {
|
|
|
8130
8224
|
*/
|
|
8131
8225
|
type GridElementCells = string;
|
|
8132
8226
|
}
|
|
8133
|
-
|
|
8227
|
+
/**
|
|
8228
|
+
* Describes the settings that can be provided to the BlockLayout constructor.
|
|
8229
|
+
*/
|
|
8134
8230
|
interface $BlockLayoutSettings extends sap.ui.core.$ControlSettings {
|
|
8135
8231
|
/**
|
|
8136
8232
|
* Determines the background used for the Layout
|
|
@@ -8162,6 +8258,9 @@ declare namespace sap {
|
|
|
8162
8258
|
| `{${string}}`;
|
|
8163
8259
|
}
|
|
8164
8260
|
|
|
8261
|
+
/**
|
|
8262
|
+
* Describes the settings that can be provided to the BlockLayoutCell constructor.
|
|
8263
|
+
*/
|
|
8165
8264
|
interface $BlockLayoutCellSettings extends sap.ui.core.$ControlSettings {
|
|
8166
8265
|
/**
|
|
8167
8266
|
* Defines the title of the cell. **Note:** When the `titleLink` aggregation is provided, the title of the
|
|
@@ -8243,6 +8342,9 @@ declare namespace sap {
|
|
|
8243
8342
|
titleLink?: sap.ui.core.Control;
|
|
8244
8343
|
}
|
|
8245
8344
|
|
|
8345
|
+
/**
|
|
8346
|
+
* Describes the settings that can be provided to the BlockLayoutCellData constructor.
|
|
8347
|
+
*/
|
|
8246
8348
|
interface $BlockLayoutCellDataSettings
|
|
8247
8349
|
extends sap.ui.core.$LayoutDataSettings {
|
|
8248
8350
|
/**
|
|
@@ -8278,6 +8380,9 @@ declare namespace sap {
|
|
|
8278
8380
|
| `{${string}}`;
|
|
8279
8381
|
}
|
|
8280
8382
|
|
|
8383
|
+
/**
|
|
8384
|
+
* Describes the settings that can be provided to the BlockLayoutRow constructor.
|
|
8385
|
+
*/
|
|
8281
8386
|
interface $BlockLayoutRowSettings extends sap.ui.core.$ControlSettings {
|
|
8282
8387
|
/**
|
|
8283
8388
|
* Sets the rendering mode of the BlockLayoutRow to scrollable. In scrollable mode, the cells get aligned
|
|
@@ -8320,6 +8425,9 @@ declare namespace sap {
|
|
|
8320
8425
|
accentCells?: Array<sap.ui.layout.BlockLayoutCell | string>;
|
|
8321
8426
|
}
|
|
8322
8427
|
|
|
8428
|
+
/**
|
|
8429
|
+
* Describes the settings that can be provided to the DynamicSideContent constructor.
|
|
8430
|
+
*/
|
|
8323
8431
|
interface $DynamicSideContentSettings
|
|
8324
8432
|
extends sap.ui.core.$ControlSettings {
|
|
8325
8433
|
/**
|
|
@@ -8455,6 +8563,9 @@ declare namespace sap {
|
|
|
8455
8563
|
) => void;
|
|
8456
8564
|
}
|
|
8457
8565
|
|
|
8566
|
+
/**
|
|
8567
|
+
* Describes the settings that can be provided to the FixFlex constructor.
|
|
8568
|
+
*/
|
|
8458
8569
|
interface $FixFlexSettings extends sap.ui.core.$ControlSettings {
|
|
8459
8570
|
/**
|
|
8460
8571
|
* Determines the direction of the layout of child elements. True for vertical and false for horizontal
|
|
@@ -8512,6 +8623,9 @@ declare namespace sap {
|
|
|
8512
8623
|
flexContent?: sap.ui.core.Control;
|
|
8513
8624
|
}
|
|
8514
8625
|
|
|
8626
|
+
/**
|
|
8627
|
+
* Describes the settings that can be provided to the Grid constructor.
|
|
8628
|
+
*/
|
|
8515
8629
|
interface $GridSettings extends sap.ui.core.$ControlSettings {
|
|
8516
8630
|
/**
|
|
8517
8631
|
* Optional. Defines the width of the `Grid`. If not specified, then 100%.
|
|
@@ -8598,6 +8712,9 @@ declare namespace sap {
|
|
|
8598
8712
|
ariaLabelledBy?: Array<sap.ui.core.Control | string>;
|
|
8599
8713
|
}
|
|
8600
8714
|
|
|
8715
|
+
/**
|
|
8716
|
+
* Describes the settings that can be provided to the GridData constructor.
|
|
8717
|
+
*/
|
|
8601
8718
|
interface $GridDataSettings extends sap.ui.core.$LayoutDataSettings {
|
|
8602
8719
|
/**
|
|
8603
8720
|
* A string type that represents the span values of the `Grid` for large, medium and small screens.
|
|
@@ -8887,6 +9004,9 @@ declare namespace sap {
|
|
|
8887
9004
|
| `{${string}}`;
|
|
8888
9005
|
}
|
|
8889
9006
|
|
|
9007
|
+
/**
|
|
9008
|
+
* Describes the settings that can be provided to the HorizontalLayout constructor.
|
|
9009
|
+
*/
|
|
8890
9010
|
interface $HorizontalLayoutSettings extends sap.ui.core.$ControlSettings {
|
|
8891
9011
|
/**
|
|
8892
9012
|
* Specifies whether the content inside the Layout shall be line-wrapped in the case that there is less
|
|
@@ -8907,6 +9027,9 @@ declare namespace sap {
|
|
|
8907
9027
|
| `{${string}}`;
|
|
8908
9028
|
}
|
|
8909
9029
|
|
|
9030
|
+
/**
|
|
9031
|
+
* Describes the settings that can be provided to the PaneContainer constructor.
|
|
9032
|
+
*/
|
|
8910
9033
|
interface $PaneContainerSettings extends sap.ui.core.$ElementSettings {
|
|
8911
9034
|
/**
|
|
8912
9035
|
* The orientation of the Splitter
|
|
@@ -8931,6 +9054,9 @@ declare namespace sap {
|
|
|
8931
9054
|
resize?: (oEvent: PaneContainer$ResizeEvent) => void;
|
|
8932
9055
|
}
|
|
8933
9056
|
|
|
9057
|
+
/**
|
|
9058
|
+
* Describes the settings that can be provided to the ResponsiveFlowLayout constructor.
|
|
9059
|
+
*/
|
|
8934
9060
|
interface $ResponsiveFlowLayoutSettings
|
|
8935
9061
|
extends sap.ui.core.$ControlSettings {
|
|
8936
9062
|
/**
|
|
@@ -8960,6 +9086,9 @@ declare namespace sap {
|
|
|
8960
9086
|
ariaLabelledBy?: Array<sap.ui.core.Control | string>;
|
|
8961
9087
|
}
|
|
8962
9088
|
|
|
9089
|
+
/**
|
|
9090
|
+
* Describes the settings that can be provided to the ResponsiveFlowLayoutData constructor.
|
|
9091
|
+
*/
|
|
8963
9092
|
interface $ResponsiveFlowLayoutDataSettings
|
|
8964
9093
|
extends sap.ui.core.$LayoutDataSettings {
|
|
8965
9094
|
/**
|
|
@@ -9008,6 +9137,9 @@ declare namespace sap {
|
|
|
9008
9137
|
| `{${string}}`;
|
|
9009
9138
|
}
|
|
9010
9139
|
|
|
9140
|
+
/**
|
|
9141
|
+
* Describes the settings that can be provided to the ResponsiveSplitter constructor.
|
|
9142
|
+
*/
|
|
9011
9143
|
interface $ResponsiveSplitterSettings
|
|
9012
9144
|
extends sap.ui.core.$ControlSettings {
|
|
9013
9145
|
/**
|
|
@@ -9038,6 +9170,9 @@ declare namespace sap {
|
|
|
9038
9170
|
defaultPane?: sap.ui.layout.SplitPane | string;
|
|
9039
9171
|
}
|
|
9040
9172
|
|
|
9173
|
+
/**
|
|
9174
|
+
* Describes the settings that can be provided to the SplitPane constructor.
|
|
9175
|
+
*/
|
|
9041
9176
|
interface $SplitPaneSettings extends sap.ui.core.$ElementSettings {
|
|
9042
9177
|
/**
|
|
9043
9178
|
* Determines whether the pane will be moved to the pagination
|
|
@@ -9065,6 +9200,9 @@ declare namespace sap {
|
|
|
9065
9200
|
content?: sap.ui.core.Control;
|
|
9066
9201
|
}
|
|
9067
9202
|
|
|
9203
|
+
/**
|
|
9204
|
+
* Describes the settings that can be provided to the Splitter constructor.
|
|
9205
|
+
*/
|
|
9068
9206
|
interface $SplitterSettings extends sap.ui.core.$ControlSettings {
|
|
9069
9207
|
/**
|
|
9070
9208
|
* Whether to split the contents horizontally (default) or vertically.
|
|
@@ -9105,6 +9243,9 @@ declare namespace sap {
|
|
|
9105
9243
|
resize?: (oEvent: Splitter$ResizeEvent) => void;
|
|
9106
9244
|
}
|
|
9107
9245
|
|
|
9246
|
+
/**
|
|
9247
|
+
* Describes the settings that can be provided to the SplitterLayoutData constructor.
|
|
9248
|
+
*/
|
|
9108
9249
|
interface $SplitterLayoutDataSettings
|
|
9109
9250
|
extends sap.ui.core.$LayoutDataSettings {
|
|
9110
9251
|
/**
|
|
@@ -9116,7 +9257,8 @@ declare namespace sap {
|
|
|
9116
9257
|
| `{${string}}`;
|
|
9117
9258
|
|
|
9118
9259
|
/**
|
|
9119
|
-
* The size of the splitter content. This property is updated when the area is resized by the user.
|
|
9260
|
+
* The size of the splitter content. This property is updated when the area is resized by the user. Allowed
|
|
9261
|
+
* size values are numeric values ending in "px", "rem", "%" and "auto".
|
|
9120
9262
|
*/
|
|
9121
9263
|
size?:
|
|
9122
9264
|
| sap.ui.core.CSSSize
|
|
@@ -9132,6 +9274,9 @@ declare namespace sap {
|
|
|
9132
9274
|
| `{${string}}`;
|
|
9133
9275
|
}
|
|
9134
9276
|
|
|
9277
|
+
/**
|
|
9278
|
+
* Describes the settings that can be provided to the VerticalLayout constructor.
|
|
9279
|
+
*/
|
|
9135
9280
|
interface $VerticalLayoutSettings extends sap.ui.core.$ControlSettings {
|
|
9136
9281
|
/**
|
|
9137
9282
|
* Width of the `VerticalLayout`. If no width is set, the width of the content is used. If the content of
|
|
@@ -9160,10 +9305,16 @@ declare namespace sap {
|
|
|
9160
9305
|
| `{${string}}`;
|
|
9161
9306
|
}
|
|
9162
9307
|
|
|
9308
|
+
/**
|
|
9309
|
+
* Parameters of the DynamicSideContent#breakpointChanged event.
|
|
9310
|
+
*/
|
|
9163
9311
|
interface DynamicSideContent$BreakpointChangedEventParameters {
|
|
9164
9312
|
currentBreakpoint?: string;
|
|
9165
9313
|
}
|
|
9166
9314
|
|
|
9315
|
+
/**
|
|
9316
|
+
* Parameters of the PaneContainer#resize event.
|
|
9317
|
+
*/
|
|
9167
9318
|
interface PaneContainer$ResizeEventParameters {
|
|
9168
9319
|
/**
|
|
9169
9320
|
* An array of values representing the old (pixel)sizes of the split panes, which are inside the pane container.
|
|
@@ -9176,6 +9327,9 @@ declare namespace sap {
|
|
|
9176
9327
|
newSizes?: float[];
|
|
9177
9328
|
}
|
|
9178
9329
|
|
|
9330
|
+
/**
|
|
9331
|
+
* Parameters of the Splitter#resize event.
|
|
9332
|
+
*/
|
|
9179
9333
|
interface Splitter$ResizeEventParameters {
|
|
9180
9334
|
/**
|
|
9181
9335
|
* The ID of the splitter control. The splitter control can also be accessed by calling getSource() on the
|
|
@@ -14325,11 +14479,9 @@ declare namespace sap {
|
|
|
14325
14479
|
): void;
|
|
14326
14480
|
}
|
|
14327
14481
|
/**
|
|
14328
|
-
* Holds layout data for the splitter contents.
|
|
14329
|
-
* "%" and "auto".
|
|
14482
|
+
* Holds layout data for the splitter contents.
|
|
14330
14483
|
*
|
|
14331
14484
|
* @since 1.22.0
|
|
14332
|
-
* @experimental (since 1.22.0) - API is not yet finished and might change completely
|
|
14333
14485
|
*/
|
|
14334
14486
|
class SplitterLayoutData extends sap.ui.core.LayoutData {
|
|
14335
14487
|
/**
|
|
@@ -14419,7 +14571,8 @@ declare namespace sap {
|
|
|
14419
14571
|
/**
|
|
14420
14572
|
* Gets current value of property {@link #getSize size}.
|
|
14421
14573
|
*
|
|
14422
|
-
* The size of the splitter content. This property is updated when the area is resized by the user.
|
|
14574
|
+
* The size of the splitter content. This property is updated when the area is resized by the user. Allowed
|
|
14575
|
+
* size values are numeric values ending in "px", "rem", "%" and "auto".
|
|
14423
14576
|
*
|
|
14424
14577
|
* Default value is `'auto'`.
|
|
14425
14578
|
*
|
|
@@ -14466,7 +14619,8 @@ declare namespace sap {
|
|
|
14466
14619
|
/**
|
|
14467
14620
|
* Sets a new value for property {@link #getSize size}.
|
|
14468
14621
|
*
|
|
14469
|
-
* The size of the splitter content. This property is updated when the area is resized by the user.
|
|
14622
|
+
* The size of the splitter content. This property is updated when the area is resized by the user. Allowed
|
|
14623
|
+
* size values are numeric values ending in "px", "rem", "%" and "auto".
|
|
14470
14624
|
*
|
|
14471
14625
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
14472
14626
|
*
|
|
@@ -14985,16 +15139,25 @@ declare namespace sap {
|
|
|
14985
15139
|
*/
|
|
14986
15140
|
type GridSpan = string;
|
|
14987
15141
|
|
|
15142
|
+
/**
|
|
15143
|
+
* Event object of the DynamicSideContent#breakpointChanged event.
|
|
15144
|
+
*/
|
|
14988
15145
|
type DynamicSideContent$BreakpointChangedEvent = sap.ui.base.Event<
|
|
14989
15146
|
DynamicSideContent$BreakpointChangedEventParameters,
|
|
14990
15147
|
DynamicSideContent
|
|
14991
15148
|
>;
|
|
14992
15149
|
|
|
15150
|
+
/**
|
|
15151
|
+
* Event object of the PaneContainer#resize event.
|
|
15152
|
+
*/
|
|
14993
15153
|
type PaneContainer$ResizeEvent = sap.ui.base.Event<
|
|
14994
15154
|
PaneContainer$ResizeEventParameters,
|
|
14995
15155
|
PaneContainer
|
|
14996
15156
|
>;
|
|
14997
15157
|
|
|
15158
|
+
/**
|
|
15159
|
+
* Event object of the Splitter#resize event.
|
|
15160
|
+
*/
|
|
14998
15161
|
type Splitter$ResizeEvent = sap.ui.base.Event<
|
|
14999
15162
|
Splitter$ResizeEventParameters,
|
|
15000
15163
|
Splitter
|