@openui5/types 1.119.0 → 1.120.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/sap.f.d.ts +2 -2
- package/types/sap.m.d.ts +5723 -155
- package/types/sap.tnt.d.ts +45 -2
- 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 +1744 -143
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +14 -4
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +125 -102
- package/types/sap.ui.mdc.d.ts +2142 -1439
- 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 +7 -1
- package/types/sap.ui.table.d.ts +121 -47
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +454 -136
- package/types/sap.ui.webc.main.d.ts +3737 -1084
- package/types/sap.uxap.d.ts +1 -1
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.120.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/fl/library" {}
|
|
4
4
|
|
|
@@ -1276,6 +1276,8 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1276
1276
|
}
|
|
1277
1277
|
|
|
1278
1278
|
declare module "sap/ui/fl/write/_internal/fieldExtensibility/ABAPExtensibilityVariant" {
|
|
1279
|
+
import BaseObject from "sap/ui/base/Object";
|
|
1280
|
+
|
|
1279
1281
|
import Metadata from "sap/ui/base/Metadata";
|
|
1280
1282
|
|
|
1281
1283
|
/**
|
|
@@ -1284,7 +1286,7 @@ declare module "sap/ui/fl/write/_internal/fieldExtensibility/ABAPExtensibilityVa
|
|
|
1284
1286
|
* Abstraction providing an API to handle an ABAP extension variant. Serves also as base class and dummy
|
|
1285
1287
|
* implementation.
|
|
1286
1288
|
*/
|
|
1287
|
-
interface ABAPExtensibilityVariant {
|
|
1289
|
+
interface ABAPExtensibilityVariant extends BaseObject {
|
|
1288
1290
|
/**
|
|
1289
1291
|
* Creates a new subclass of class sap.ui.fl.write._internal.fieldExtensibility.ABAPExtensibilityVariant
|
|
1290
1292
|
* with name `sClassName` and enriches it with the information contained in `oClassInfo`.
|
|
@@ -1320,6 +1322,8 @@ declare module "sap/ui/fl/write/_internal/fieldExtensibility/ABAPExtensibilityVa
|
|
|
1320
1322
|
}
|
|
1321
1323
|
|
|
1322
1324
|
declare module "sap/ui/fl/write/_internal/fieldExtensibility/MultiTenantABAPExtensibilityVariant" {
|
|
1325
|
+
import ABAPExtensibilityVariant from "sap/ui/fl/write/_internal/fieldExtensibility/ABAPExtensibilityVariant";
|
|
1326
|
+
|
|
1323
1327
|
import Metadata from "sap/ui/base/Metadata";
|
|
1324
1328
|
|
|
1325
1329
|
/**
|
|
@@ -1327,7 +1331,8 @@ declare module "sap/ui/fl/write/_internal/fieldExtensibility/MultiTenantABAPExte
|
|
|
1327
1331
|
*
|
|
1328
1332
|
* Extension variant for ABAP multi tenant environments (via so called Predefined Fields)
|
|
1329
1333
|
*/
|
|
1330
|
-
interface MultiTenantABAPExtensibilityVariant
|
|
1334
|
+
interface MultiTenantABAPExtensibilityVariant
|
|
1335
|
+
extends ABAPExtensibilityVariant {
|
|
1331
1336
|
/**
|
|
1332
1337
|
* Creates a new subclass of class sap.ui.fl.write._internal.fieldExtensibility.MultiTenantABAPExtensibilityVariant
|
|
1333
1338
|
* with name `sClassName` and enriches it with the information contained in `oClassInfo`.
|
|
@@ -1363,6 +1368,8 @@ declare module "sap/ui/fl/write/_internal/fieldExtensibility/MultiTenantABAPExte
|
|
|
1363
1368
|
}
|
|
1364
1369
|
|
|
1365
1370
|
declare module "sap/ui/fl/write/_internal/fieldExtensibility/SingleTenantABAPExtensibilityVariant" {
|
|
1371
|
+
import ABAPExtensibilityVariant from "sap/ui/fl/write/_internal/fieldExtensibility/ABAPExtensibilityVariant";
|
|
1372
|
+
|
|
1366
1373
|
import Metadata from "sap/ui/base/Metadata";
|
|
1367
1374
|
|
|
1368
1375
|
/**
|
|
@@ -1370,7 +1377,8 @@ declare module "sap/ui/fl/write/_internal/fieldExtensibility/SingleTenantABAPExt
|
|
|
1370
1377
|
*
|
|
1371
1378
|
* Extension variant for ABAP single tenant environnments (via so called Custom Fields)
|
|
1372
1379
|
*/
|
|
1373
|
-
interface SingleTenantABAPExtensibilityVariant
|
|
1380
|
+
interface SingleTenantABAPExtensibilityVariant
|
|
1381
|
+
extends ABAPExtensibilityVariant {
|
|
1374
1382
|
/**
|
|
1375
1383
|
* Creates a new subclass of class sap.ui.fl.write._internal.fieldExtensibility.SingleTenantABAPExtensibilityVariant
|
|
1376
1384
|
* with name `sClassName` and enriches it with the information contained in `oClassInfo`.
|
|
@@ -1623,6 +1631,8 @@ declare namespace sap {
|
|
|
1623
1631
|
|
|
1624
1632
|
"sap/ui/fl/write/_internal/flexState/FlexObjectState": undefined;
|
|
1625
1633
|
|
|
1634
|
+
"sap/ui/fl/write/_internal/flexState/UI2Personalization/UI2PersonalizationState": undefined;
|
|
1635
|
+
|
|
1626
1636
|
"sap/ui/fl/write/_internal/Storage": undefined;
|
|
1627
1637
|
|
|
1628
1638
|
"sap/ui/fl/write/_internal/StorageFeaturesMerger": undefined;
|
package/types/sap.ui.layout.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.120.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/layout/library" {
|
|
4
4
|
import Control from "sap/ui/core/Control";
|
|
@@ -468,6 +468,9 @@ declare module "sap/ui/layout/library" {
|
|
|
468
468
|
type EmptyCells = int;
|
|
469
469
|
|
|
470
470
|
/**
|
|
471
|
+
* @deprecated (since 1.67.0) - as `sap.ui.commons` library is deprecated and the `GridLayout` must not
|
|
472
|
+
* be used in responsive applications. Please use `ResponsiveGridLayout` or `ColumnLayout` instead.
|
|
473
|
+
*
|
|
471
474
|
* A string that defines the number of used cells in a `GridLayout`. This can be a number from 1 to 16,
|
|
472
475
|
* "auto" or "full". If set to "auto" the size is determined by the number of fields and the available cells.
|
|
473
476
|
* For labels the auto size is 3 cells. If set to "full" only one field is allowed within the `FormElement`.
|
|
@@ -5764,38 +5767,46 @@ declare module "sap/ui/layout/form/ColumnLayout" {
|
|
|
5764
5767
|
/**
|
|
5765
5768
|
* @since 1.56.0
|
|
5766
5769
|
*
|
|
5767
|
-
* The `ColumnLayout` control renders a
|
|
5768
|
-
* size, the
|
|
5769
|
-
* M - max. 2 columns and S - 1 column.)
|
|
5770
|
-
*
|
|
5771
|
-
* The
|
|
5772
|
-
*
|
|
5773
|
-
*
|
|
5774
|
-
*
|
|
5775
|
-
*
|
|
5776
|
-
*
|
|
5777
|
-
* will
|
|
5778
|
-
*
|
|
5779
|
-
*
|
|
5780
|
-
*
|
|
5781
|
-
*
|
|
5782
|
-
*
|
|
5783
|
-
*
|
|
5784
|
-
*
|
|
5785
|
-
*
|
|
5786
|
-
*
|
|
5787
|
-
*
|
|
5788
|
-
*
|
|
5789
|
-
*
|
|
5790
|
-
*
|
|
5791
|
-
*
|
|
5792
|
-
*
|
|
5793
|
-
*
|
|
5794
|
-
*
|
|
5795
|
-
*
|
|
5796
|
-
*
|
|
5797
|
-
*
|
|
5798
|
-
*
|
|
5770
|
+
* The `ColumnLayout` control renders a {@link sap.ui.layout.form.Form Form} control in a column-based responsive
|
|
5771
|
+
* way. Depending on its size, the {@link sap.ui.layout.form.Form Form} control is divided into one or more
|
|
5772
|
+
* columns. (XL - max. 4 columns, L - max. 3 columns, M - max. 2 columns and S - 1 column.)
|
|
5773
|
+
*
|
|
5774
|
+
* The {@link sap.ui.layout.form.FormContainer FormContainer} elements are spread out to the columns depending
|
|
5775
|
+
* on the number of {@link sap.ui.layout.form.FormContainer FormContainer} elements and their size. For
|
|
5776
|
+
* example, if there are 4 columns and 2 {@link sap.ui.layout.form.FormContainer FormContainer} elements,
|
|
5777
|
+
* each {@link sap.ui.layout.form.FormContainer FormContainer} element will use 2 columns. If there are
|
|
5778
|
+
* 3 columns and 2 {@link sap.ui.layout.form.FormContainer FormContainer} elements, the larger one will
|
|
5779
|
+
* use 2 columns, the smaller one 1 column. The size of a {@link sap.ui.layout.form.FormContainer FormContainer }
|
|
5780
|
+
* element will be determined based on the number of visible {@link sap.ui.layout.form.FormElement FormElement }
|
|
5781
|
+
* elements assigned to it. If there are more {@link sap.ui.layout.form.FormContainer FormContainer} elements
|
|
5782
|
+
* than columns, every {@link sap.ui.layout.form.FormContainer FormContainer} element uses only one column.
|
|
5783
|
+
* So the last row of the {@link sap.ui.layout.form.Form Form} control will not be fully used.
|
|
5784
|
+
*
|
|
5785
|
+
* The default size of the {@link sap.ui.layout.form.FormContainer FormContainer} element can be overwritten
|
|
5786
|
+
* by using {@link sap.ui.layout.form.ColumnContainerData ColumnContainerData} as `LayoutData`. If one {@link sap.ui.layout.form.FormContainer FormContainer }
|
|
5787
|
+
* element has {@link sap.ui.layout.form.ColumnContainerData ColumnContainerData} set, the size calculation
|
|
5788
|
+
* of the other {@link sap.ui.layout.form.FormContainer FormContainer} elements might not lead to the expected
|
|
5789
|
+
* result. In this case, use {@link sap.ui.layout.form.ColumnContainerData ColumnContainerData} also for
|
|
5790
|
+
* the other {@link sap.ui.layout.form.FormContainer FormContainer} elements.
|
|
5791
|
+
*
|
|
5792
|
+
* The {@link sap.ui.layout.form.FormElement FormElement} elements are spread out to the columns of a {@link sap.ui.layout.form.FormContainer FormContainer }
|
|
5793
|
+
* element arranged in a newspaper-like order. The position of the labels and fields depends on the size
|
|
5794
|
+
* of the used column. If there is enough space, the labels are beside the fields, otherwise above the fields.
|
|
5795
|
+
*
|
|
5796
|
+
* The default size of a content control of a {@link sap.ui.layout.form.FormElement FormElement} element
|
|
5797
|
+
* can be overwritten using {@link sap.ui.layout.form.ColumnElementData ColumnElementData} as `LayoutData`.
|
|
5798
|
+
* If one control assigned to a {@link sap.ui.layout.form.FormElement FormElement} element has {@link sap.ui.layout.form.ColumnElementData ColumnElementData }
|
|
5799
|
+
* set, the size calculation of the other controls assigned to the {@link sap.ui.layout.form.FormElement FormElement }
|
|
5800
|
+
* element might not lead to the expected result. In this case, use {@link sap.ui.layout.form.ColumnElementData ColumnElementData }
|
|
5801
|
+
* for the other controls, assigned to the {@link sap.ui.layout.form.FormElement FormElement} element, too.
|
|
5802
|
+
*
|
|
5803
|
+
* The placement of the {@link sap.ui.layout.form.FormElement FormElement} elements is made by the browser
|
|
5804
|
+
* `column-count` logic. So this can be different in different browsers and lead in some cases to other
|
|
5805
|
+
* results than might be expected.
|
|
5806
|
+
*
|
|
5807
|
+
* **Note:** This control cannot be used stand-alone, it just renders a {@link sap.ui.layout.form.Form Form }
|
|
5808
|
+
* control, so it must be assigned to a {@link sap.ui.layout.form.Form Form} control using the `layout`
|
|
5809
|
+
* aggregation.
|
|
5799
5810
|
*/
|
|
5800
5811
|
export default class ColumnLayout extends FormLayout {
|
|
5801
5812
|
/**
|
|
@@ -7382,6 +7393,8 @@ declare module "sap/ui/layout/form/GridContainerData" {
|
|
|
7382
7393
|
|
|
7383
7394
|
/**
|
|
7384
7395
|
* @since 1.16.0
|
|
7396
|
+
* @deprecated (since 1.67.0) - as `sap.ui.commons` library is deprecated and the `GridLayout` must not
|
|
7397
|
+
* be used in responsive applications. Please use `ResponsiveGridLayout` or `ColumnLayout` instead.
|
|
7385
7398
|
*
|
|
7386
7399
|
* The `GridLayout`-specific layout data for `FormContainers`.
|
|
7387
7400
|
*/
|
|
@@ -7503,6 +7516,8 @@ declare module "sap/ui/layout/form/GridElementData" {
|
|
|
7503
7516
|
|
|
7504
7517
|
/**
|
|
7505
7518
|
* @since 1.16.0
|
|
7519
|
+
* @deprecated (since 1.67.0) - as `sap.ui.commons` library is deprecated and the `GridLayout` must not
|
|
7520
|
+
* be used in responsive applications. Please use `ResponsiveGridLayout` or `ColumnLayout` instead.
|
|
7506
7521
|
*
|
|
7507
7522
|
* The `GridLayout`-specific layout data for `FormElement` fields.
|
|
7508
7523
|
*/
|
|
@@ -7817,21 +7832,24 @@ declare module "sap/ui/layout/form/ResponsiveGridLayout" {
|
|
|
7817
7832
|
/**
|
|
7818
7833
|
* @since 1.16.0
|
|
7819
7834
|
*
|
|
7820
|
-
* The `ResponsiveGridLayout` control renders a
|
|
7821
|
-
*
|
|
7822
|
-
*
|
|
7823
|
-
*
|
|
7824
|
-
*
|
|
7835
|
+
* The `ResponsiveGridLayout` control renders a {@link sap.ui.layout.form.Form Form} using a responsive
|
|
7836
|
+
* grid. Internally the {@link sap.ui.layout.Grid Grid} control is used for rendering. Using this layout,
|
|
7837
|
+
* the {@link sap.ui.layout.form.Form Form} is rendered in a responsive way. Depending on the available
|
|
7838
|
+
* space, the {@link sap.ui.layout.form.FormContainer FormContainers} are rendered in one or different columns
|
|
7839
|
+
* and the labels are rendered in the same row as the fields or above the fields. This behavior can be influenced
|
|
7840
|
+
* by the properties of this layout control.
|
|
7825
7841
|
*
|
|
7826
|
-
* On the
|
|
7827
|
-
*
|
|
7842
|
+
* On the {@link sap.ui.layout.form.FormContainer FormContainers}, labels and content fields, {@link sap.ui.layout.GridGata GridData }
|
|
7843
|
+
* can be used to change the default rendering. {@link sap.ui.layout.GridGata GridData} is not supported
|
|
7844
|
+
* for {@link sap.ui.layout.form.FormElement FormElements}.
|
|
7828
7845
|
*
|
|
7829
|
-
* **Note:** If
|
|
7830
|
-
* This means that in some cases, the calculation for the other content may
|
|
7831
|
-
* In such cases,
|
|
7846
|
+
* **Note:** If {@link sap.ui.layout.GridGata GridData} is used, this may result in a much more complex
|
|
7847
|
+
* layout than the default one. This means that in some cases, the calculation for the other content may
|
|
7848
|
+
* not bring the expected result. In such cases, {@link sap.ui.layout.GridGata GridData} should be used
|
|
7849
|
+
* for all content controls to disable the default behavior.
|
|
7832
7850
|
*
|
|
7833
|
-
* This control cannot be used stand-alone, it just renders a
|
|
7834
|
-
* using the `layout` aggregation.
|
|
7851
|
+
* This control cannot be used stand-alone, it just renders a {@link sap.ui.layout.form.Form Form}, so it
|
|
7852
|
+
* must be assigned to a {@link sap.ui.layout.form.Form Form} using the `layout` aggregation.
|
|
7835
7853
|
*/
|
|
7836
7854
|
export default class ResponsiveGridLayout extends FormLayout {
|
|
7837
7855
|
/**
|
|
@@ -7899,14 +7917,15 @@ declare module "sap/ui/layout/form/ResponsiveGridLayout" {
|
|
|
7899
7917
|
*
|
|
7900
7918
|
* Gets current value of property {@link #getAdjustLabelSpan adjustLabelSpan}.
|
|
7901
7919
|
*
|
|
7902
|
-
* If set, the usage of `labelSpanL` and `labelSpanM` are dependent on the number of
|
|
7903
|
-
* one row. If only one
|
|
7904
|
-
* of the label. This is the same for medium and large `Forms`.
|
|
7905
|
-
*
|
|
7906
|
-
*
|
|
7920
|
+
* If set, the usage of `labelSpanL` and `labelSpanM` are dependent on the number of {@link sap.ui.layout.form.FormContainer FormContainers }
|
|
7921
|
+
* in one row. If only one {@link sap.ui.layout.form.FormContainer FormContainer} is displayed in one row,
|
|
7922
|
+
* `labelSpanM` is used to define the size of the label. This is the same for medium and large `Forms`.
|
|
7923
|
+
* This is done to align the labels on forms where full-size {@link sap.ui.layout.form.FormContainer FormContainers }
|
|
7924
|
+
* and multiple-column rows are used in the same {@link sap.ui.layout.form.Form Form} (because every {@link sap.ui.layout.form.FormContainer FormContainer }
|
|
7925
|
+
* has its own {@link sap.ui.layout.Grid Grid} inside).
|
|
7907
7926
|
*
|
|
7908
|
-
* If not set, the usage of `labelSpanL` and `labelSpanM` are dependent on the
|
|
7909
|
-
*
|
|
7927
|
+
* If not set, the usage of `labelSpanL` and `labelSpanM` are dependent on the {@link sap.ui.layout.form.Form Form }
|
|
7928
|
+
* size. The number of {@link sap.ui.layout.form.FormContainer FormContainers} doesn't matter in this case.
|
|
7910
7929
|
*
|
|
7911
7930
|
* Default value is `true`.
|
|
7912
7931
|
*
|
|
@@ -8049,8 +8068,9 @@ declare module "sap/ui/layout/form/ResponsiveGridLayout" {
|
|
|
8049
8068
|
*
|
|
8050
8069
|
* Default span for labels in large size.
|
|
8051
8070
|
*
|
|
8052
|
-
* **Note:** If `adjustLabelSpan` is set, this property is only used if more than 1
|
|
8053
|
-
* one line. If only 1
|
|
8071
|
+
* **Note:** If `adjustLabelSpan` is set, this property is only used if more than 1 {@link sap.ui.layout.form.FormContainer FormContainer }
|
|
8072
|
+
* is in one line. If only 1 {@link sap.ui.layout.form.FormContainer FormContainer} is in the line, then
|
|
8073
|
+
* the `labelSpanM` value is used.
|
|
8054
8074
|
*
|
|
8055
8075
|
* Default value is `4`.
|
|
8056
8076
|
*
|
|
@@ -8064,8 +8084,9 @@ declare module "sap/ui/layout/form/ResponsiveGridLayout" {
|
|
|
8064
8084
|
*
|
|
8065
8085
|
* Default span for labels in medium size.
|
|
8066
8086
|
*
|
|
8067
|
-
* **Note:** If `adjustLabelSpan` is set this property is used for full-size
|
|
8068
|
-
* one
|
|
8087
|
+
* **Note:** If `adjustLabelSpan` is set this property is used for full-size {@link sap.ui.layout.form.FormContainer FormContainers}.
|
|
8088
|
+
* If more than one {@link sap.ui.layout.form.FormContainer FormContainer} is in one line, `labelSpanL`
|
|
8089
|
+
* is used.
|
|
8069
8090
|
*
|
|
8070
8091
|
* Default value is `2`.
|
|
8071
8092
|
*
|
|
@@ -8104,11 +8125,13 @@ declare module "sap/ui/layout/form/ResponsiveGridLayout" {
|
|
|
8104
8125
|
*
|
|
8105
8126
|
* Gets current value of property {@link #getSingleContainerFullSize singleContainerFullSize}.
|
|
8106
8127
|
*
|
|
8107
|
-
* If the
|
|
8108
|
-
*
|
|
8109
|
-
*
|
|
8128
|
+
* If the {@link sap.ui.layout.form.Form Form} contains only one single {@link sap.ui.layout.form.FormContainer FormContainer }
|
|
8129
|
+
* and this property is set, the {@link sap.ui.layout.form.FormContainer FormContainer} is displayed using
|
|
8130
|
+
* the full size of the {@link sap.ui.layout.form.Form Form}. In this case the properties `columnsXL`, `columnsL`
|
|
8131
|
+
* and `columnsM` are ignored.
|
|
8110
8132
|
*
|
|
8111
|
-
* In all other cases the
|
|
8133
|
+
* In all other cases the {@link sap.ui.layout.form.FormContainer FormContainer} is displayed in the size
|
|
8134
|
+
* of one column.
|
|
8112
8135
|
*
|
|
8113
8136
|
* Default value is `true`.
|
|
8114
8137
|
*
|
|
@@ -8120,14 +8143,15 @@ declare module "sap/ui/layout/form/ResponsiveGridLayout" {
|
|
|
8120
8143
|
*
|
|
8121
8144
|
* Sets a new value for property {@link #getAdjustLabelSpan adjustLabelSpan}.
|
|
8122
8145
|
*
|
|
8123
|
-
* If set, the usage of `labelSpanL` and `labelSpanM` are dependent on the number of
|
|
8124
|
-
* one row. If only one
|
|
8125
|
-
* of the label. This is the same for medium and large `Forms`.
|
|
8126
|
-
*
|
|
8127
|
-
*
|
|
8146
|
+
* If set, the usage of `labelSpanL` and `labelSpanM` are dependent on the number of {@link sap.ui.layout.form.FormContainer FormContainers }
|
|
8147
|
+
* in one row. If only one {@link sap.ui.layout.form.FormContainer FormContainer} is displayed in one row,
|
|
8148
|
+
* `labelSpanM` is used to define the size of the label. This is the same for medium and large `Forms`.
|
|
8149
|
+
* This is done to align the labels on forms where full-size {@link sap.ui.layout.form.FormContainer FormContainers }
|
|
8150
|
+
* and multiple-column rows are used in the same {@link sap.ui.layout.form.Form Form} (because every {@link sap.ui.layout.form.FormContainer FormContainer }
|
|
8151
|
+
* has its own {@link sap.ui.layout.Grid Grid} inside).
|
|
8128
8152
|
*
|
|
8129
|
-
* If not set, the usage of `labelSpanL` and `labelSpanM` are dependent on the
|
|
8130
|
-
*
|
|
8153
|
+
* If not set, the usage of `labelSpanL` and `labelSpanM` are dependent on the {@link sap.ui.layout.form.Form Form }
|
|
8154
|
+
* size. The number of {@link sap.ui.layout.form.FormContainer FormContainers} doesn't matter in this case.
|
|
8131
8155
|
*
|
|
8132
8156
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
8133
8157
|
*
|
|
@@ -8347,8 +8371,9 @@ declare module "sap/ui/layout/form/ResponsiveGridLayout" {
|
|
|
8347
8371
|
*
|
|
8348
8372
|
* Default span for labels in large size.
|
|
8349
8373
|
*
|
|
8350
|
-
* **Note:** If `adjustLabelSpan` is set, this property is only used if more than 1
|
|
8351
|
-
* one line. If only 1
|
|
8374
|
+
* **Note:** If `adjustLabelSpan` is set, this property is only used if more than 1 {@link sap.ui.layout.form.FormContainer FormContainer }
|
|
8375
|
+
* is in one line. If only 1 {@link sap.ui.layout.form.FormContainer FormContainer} is in the line, then
|
|
8376
|
+
* the `labelSpanM` value is used.
|
|
8352
8377
|
*
|
|
8353
8378
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
8354
8379
|
*
|
|
@@ -8369,8 +8394,9 @@ declare module "sap/ui/layout/form/ResponsiveGridLayout" {
|
|
|
8369
8394
|
*
|
|
8370
8395
|
* Default span for labels in medium size.
|
|
8371
8396
|
*
|
|
8372
|
-
* **Note:** If `adjustLabelSpan` is set this property is used for full-size
|
|
8373
|
-
* one
|
|
8397
|
+
* **Note:** If `adjustLabelSpan` is set this property is used for full-size {@link sap.ui.layout.form.FormContainer FormContainers}.
|
|
8398
|
+
* If more than one {@link sap.ui.layout.form.FormContainer FormContainer} is in one line, `labelSpanL`
|
|
8399
|
+
* is used.
|
|
8374
8400
|
*
|
|
8375
8401
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
8376
8402
|
*
|
|
@@ -8430,11 +8456,13 @@ declare module "sap/ui/layout/form/ResponsiveGridLayout" {
|
|
|
8430
8456
|
*
|
|
8431
8457
|
* Sets a new value for property {@link #getSingleContainerFullSize singleContainerFullSize}.
|
|
8432
8458
|
*
|
|
8433
|
-
* If the
|
|
8434
|
-
*
|
|
8435
|
-
*
|
|
8459
|
+
* If the {@link sap.ui.layout.form.Form Form} contains only one single {@link sap.ui.layout.form.FormContainer FormContainer }
|
|
8460
|
+
* and this property is set, the {@link sap.ui.layout.form.FormContainer FormContainer} is displayed using
|
|
8461
|
+
* the full size of the {@link sap.ui.layout.form.Form Form}. In this case the properties `columnsXL`, `columnsL`
|
|
8462
|
+
* and `columnsM` are ignored.
|
|
8436
8463
|
*
|
|
8437
|
-
* In all other cases the
|
|
8464
|
+
* In all other cases the {@link sap.ui.layout.form.FormContainer FormContainer} is displayed in the size
|
|
8465
|
+
* of one column.
|
|
8438
8466
|
*
|
|
8439
8467
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
8440
8468
|
*
|
|
@@ -8466,8 +8494,9 @@ declare module "sap/ui/layout/form/ResponsiveGridLayout" {
|
|
|
8466
8494
|
*
|
|
8467
8495
|
* Default span for labels in large size.
|
|
8468
8496
|
*
|
|
8469
|
-
* **Note:** If `adjustLabelSpan` is set, this property is only used if more than 1
|
|
8470
|
-
* one line. If only 1
|
|
8497
|
+
* **Note:** If `adjustLabelSpan` is set, this property is only used if more than 1 {@link sap.ui.layout.form.FormContainer FormContainer }
|
|
8498
|
+
* is in one line. If only 1 {@link sap.ui.layout.form.FormContainer FormContainer} is in the line, then
|
|
8499
|
+
* the `labelSpanM` value is used.
|
|
8471
8500
|
*/
|
|
8472
8501
|
labelSpanL?: int | PropertyBindingInfo | `{${string}}`;
|
|
8473
8502
|
|
|
@@ -8476,8 +8505,9 @@ declare module "sap/ui/layout/form/ResponsiveGridLayout" {
|
|
|
8476
8505
|
*
|
|
8477
8506
|
* Default span for labels in medium size.
|
|
8478
8507
|
*
|
|
8479
|
-
* **Note:** If `adjustLabelSpan` is set this property is used for full-size
|
|
8480
|
-
* one
|
|
8508
|
+
* **Note:** If `adjustLabelSpan` is set this property is used for full-size {@link sap.ui.layout.form.FormContainer FormContainers}.
|
|
8509
|
+
* If more than one {@link sap.ui.layout.form.FormContainer FormContainer} is in one line, `labelSpanL`
|
|
8510
|
+
* is used.
|
|
8481
8511
|
*/
|
|
8482
8512
|
labelSpanM?: int | PropertyBindingInfo | `{${string}}`;
|
|
8483
8513
|
|
|
@@ -8491,14 +8521,15 @@ declare module "sap/ui/layout/form/ResponsiveGridLayout" {
|
|
|
8491
8521
|
/**
|
|
8492
8522
|
* @since 1.34.0
|
|
8493
8523
|
*
|
|
8494
|
-
* If set, the usage of `labelSpanL` and `labelSpanM` are dependent on the number of
|
|
8495
|
-
* one row. If only one
|
|
8496
|
-
* of the label. This is the same for medium and large `Forms`.
|
|
8497
|
-
*
|
|
8498
|
-
*
|
|
8524
|
+
* If set, the usage of `labelSpanL` and `labelSpanM` are dependent on the number of {@link sap.ui.layout.form.FormContainer FormContainers }
|
|
8525
|
+
* in one row. If only one {@link sap.ui.layout.form.FormContainer FormContainer} is displayed in one row,
|
|
8526
|
+
* `labelSpanM` is used to define the size of the label. This is the same for medium and large `Forms`.
|
|
8527
|
+
* This is done to align the labels on forms where full-size {@link sap.ui.layout.form.FormContainer FormContainers }
|
|
8528
|
+
* and multiple-column rows are used in the same {@link sap.ui.layout.form.Form Form} (because every {@link sap.ui.layout.form.FormContainer FormContainer }
|
|
8529
|
+
* has its own {@link sap.ui.layout.Grid Grid} inside).
|
|
8499
8530
|
*
|
|
8500
|
-
* If not set, the usage of `labelSpanL` and `labelSpanM` are dependent on the
|
|
8501
|
-
*
|
|
8531
|
+
* If not set, the usage of `labelSpanL` and `labelSpanM` are dependent on the {@link sap.ui.layout.form.Form Form }
|
|
8532
|
+
* size. The number of {@link sap.ui.layout.form.FormContainer FormContainers} doesn't matter in this case.
|
|
8502
8533
|
*/
|
|
8503
8534
|
adjustLabelSpan?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
8504
8535
|
|
|
@@ -8563,11 +8594,13 @@ declare module "sap/ui/layout/form/ResponsiveGridLayout" {
|
|
|
8563
8594
|
/**
|
|
8564
8595
|
* @since 1.34.0
|
|
8565
8596
|
*
|
|
8566
|
-
* If the
|
|
8567
|
-
*
|
|
8568
|
-
*
|
|
8597
|
+
* If the {@link sap.ui.layout.form.Form Form} contains only one single {@link sap.ui.layout.form.FormContainer FormContainer }
|
|
8598
|
+
* and this property is set, the {@link sap.ui.layout.form.FormContainer FormContainer} is displayed using
|
|
8599
|
+
* the full size of the {@link sap.ui.layout.form.Form Form}. In this case the properties `columnsXL`, `columnsL`
|
|
8600
|
+
* and `columnsM` are ignored.
|
|
8569
8601
|
*
|
|
8570
|
-
* In all other cases the
|
|
8602
|
+
* In all other cases the {@link sap.ui.layout.form.FormContainer FormContainer} is displayed in the size
|
|
8603
|
+
* of one column.
|
|
8571
8604
|
*/
|
|
8572
8605
|
singleContainerFullSize?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
8573
8606
|
|
|
@@ -13971,9 +14004,8 @@ declare module "sap/ui/layout/SplitterLayoutData" {
|
|
|
13971
14004
|
* @since 1.22.0
|
|
13972
14005
|
* @experimental (since 1.22.0) - API is not yet finished and might change completely
|
|
13973
14006
|
*
|
|
13974
|
-
* Holds layout data for the splitter contents. Allowed size values are numeric values ending in "px"
|
|
13975
|
-
* "%" and
|
|
13976
|
-
* the content dynamically and is not directly set as style property.)
|
|
14007
|
+
* Holds layout data for the splitter contents. Allowed size values are numeric values ending in "px", "rem",
|
|
14008
|
+
* "%" and "auto".
|
|
13977
14009
|
*/
|
|
13978
14010
|
export default class SplitterLayoutData extends LayoutData {
|
|
13979
14011
|
/**
|
|
@@ -14061,9 +14093,6 @@ declare module "sap/ui/layout/SplitterLayoutData" {
|
|
|
14061
14093
|
*
|
|
14062
14094
|
* The size of the splitter content. This property is updated when the area is resized by the user.
|
|
14063
14095
|
*
|
|
14064
|
-
* **Note:** Resizing areas in the sap.ui.layout.Splitter sets this property to "px" values, while resizing
|
|
14065
|
-
* areas in the sap.ui.layout.ResponsiveSplitter sets it to % values.
|
|
14066
|
-
*
|
|
14067
14096
|
* Default value is `'auto'`.
|
|
14068
14097
|
*
|
|
14069
14098
|
* @returns Value of property `size`
|
|
@@ -14108,9 +14137,6 @@ declare module "sap/ui/layout/SplitterLayoutData" {
|
|
|
14108
14137
|
*
|
|
14109
14138
|
* The size of the splitter content. This property is updated when the area is resized by the user.
|
|
14110
14139
|
*
|
|
14111
|
-
* **Note:** Resizing areas in the sap.ui.layout.Splitter sets this property to "px" values, while resizing
|
|
14112
|
-
* areas in the sap.ui.layout.ResponsiveSplitter sets it to % values.
|
|
14113
|
-
*
|
|
14114
14140
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
14115
14141
|
*
|
|
14116
14142
|
* Default value is `'auto'`.
|
|
@@ -14133,9 +14159,6 @@ declare module "sap/ui/layout/SplitterLayoutData" {
|
|
|
14133
14159
|
|
|
14134
14160
|
/**
|
|
14135
14161
|
* The size of the splitter content. This property is updated when the area is resized by the user.
|
|
14136
|
-
*
|
|
14137
|
-
* **Note:** Resizing areas in the sap.ui.layout.Splitter sets this property to "px" values, while resizing
|
|
14138
|
-
* areas in the sap.ui.layout.ResponsiveSplitter sets it to % values.
|
|
14139
14162
|
*/
|
|
14140
14163
|
size?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
14141
14164
|
|