@sapui5/types 1.142.1 → 1.143.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 -0
- 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.cux.home.d.ts +7 -3
- package/types/sap.esh.search.ui.d.ts +651 -13
- package/types/sap.f.d.ts +8 -1
- package/types/sap.fe.ariba.d.ts +1 -1
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +1 -6
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +40 -78
- 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 +7 -2
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +167 -11
- 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 +216 -11
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +24 -2
- package/types/sap.tnt.d.ts +1 -1
- 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 +7 -4
- package/types/sap.ui.core.d.ts +62 -47
- 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 +3 -6
- 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 +27255 -0
- package/types/sap.ui.integration.d.ts +45 -9
- package/types/sap.ui.layout.d.ts +64 -46
- package/types/sap.ui.mdc.d.ts +529 -125
- package/types/sap.ui.richtexteditor.d.ts +52 -15
- 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 +35 -1
- 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.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +55 -1
- package/types/sap.ui.vtm.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.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +53 -8
- 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.143.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/integration/library" {
|
|
4
4
|
import { URI } from "sap/ui/core/library";
|
|
@@ -2314,7 +2314,9 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2314
2314
|
/**
|
|
2315
2315
|
* Facade of the {@link sap.ui.integration.widgets.Card} control.
|
|
2316
2316
|
*
|
|
2317
|
-
*
|
|
2317
|
+
* This facade contains methods accessible within the card extension. The available methods represent a
|
|
2318
|
+
* limited subset of all card methods, since not all card methods function as expected when called from
|
|
2319
|
+
* within the extension.
|
|
2318
2320
|
*/
|
|
2319
2321
|
export interface CardFacade {
|
|
2320
2322
|
__implements__sap_ui_integration_widgets_CardFacade: boolean;
|
|
@@ -2334,6 +2336,27 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2334
2336
|
*/
|
|
2335
2337
|
oActionDefinition: ActionDefinition
|
|
2336
2338
|
): this;
|
|
2339
|
+
/**
|
|
2340
|
+
* Destroys all the actionDefinitions in the aggregation {@link #getActionDefinitions actionDefinitions}.
|
|
2341
|
+
*
|
|
2342
|
+
* @since 1.85
|
|
2343
|
+
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
2344
|
+
* changes may be done before its official public release. Use at your own discretion.
|
|
2345
|
+
*
|
|
2346
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2347
|
+
*/
|
|
2348
|
+
destroyActionDefinitions(): this;
|
|
2349
|
+
/**
|
|
2350
|
+
* Gets content of aggregation {@link #getActionDefinitions actionDefinitions}.
|
|
2351
|
+
*
|
|
2352
|
+
* Actions definitions from which actions in the header menu of the card are created. **Note**: This aggregation
|
|
2353
|
+
* is destroyed when the property `manifest` changes.
|
|
2354
|
+
*
|
|
2355
|
+
* @since 1.85
|
|
2356
|
+
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
2357
|
+
* changes may be done before its official public release. Use at your own discretion.
|
|
2358
|
+
*/
|
|
2359
|
+
getActionDefinitions(): ActionDefinition[];
|
|
2337
2360
|
/**
|
|
2338
2361
|
* Gets current value of property {@link #getBaseUrl baseUrl}.
|
|
2339
2362
|
*
|
|
@@ -2369,6 +2392,11 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2369
2392
|
* @returns Object containing parameters in format `{parameterKey: parameterValue}`.
|
|
2370
2393
|
*/
|
|
2371
2394
|
getCombinedParameters(): Record<string, any>;
|
|
2395
|
+
/**
|
|
2396
|
+
* @deprecated As of version 1.143. Do not access the card dom reference, as this is not supported in a
|
|
2397
|
+
* mobile native environment.
|
|
2398
|
+
*/
|
|
2399
|
+
getDomRef(): void;
|
|
2372
2400
|
/**
|
|
2373
2401
|
* Returns a value from the Manifest based on the specified path.
|
|
2374
2402
|
*
|
|
@@ -2384,15 +2412,19 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2384
2412
|
*/
|
|
2385
2413
|
sPath: string
|
|
2386
2414
|
): any;
|
|
2415
|
+
/**
|
|
2416
|
+
* @deprecated As of version 1.143. Avoid accessing the models directly, use the binding syntax instead.
|
|
2417
|
+
*/
|
|
2418
|
+
getModel(): void;
|
|
2387
2419
|
/**
|
|
2388
2420
|
* Gets current value of property {@link #getParameters parameters}.
|
|
2389
2421
|
*
|
|
2390
|
-
* Overrides the default values of the parameters, which are defined in the manifest. The value
|
|
2391
|
-
* containing parameters in format `{parameterKey: parameterValue}`.
|
|
2422
|
+
* Overrides the default values of the parameters, which are defined in the manifest. The returned value
|
|
2423
|
+
* is an object containing parameters in format `{parameterKey: parameterValue}`.
|
|
2392
2424
|
*
|
|
2393
|
-
* @
|
|
2425
|
+
* @deprecated As of version 1.143. Use `getCombinedParameters()` instead.
|
|
2394
2426
|
*
|
|
2395
|
-
* @returns Value of property
|
|
2427
|
+
* @returns Value of property parameters
|
|
2396
2428
|
*/
|
|
2397
2429
|
getParameters(): object;
|
|
2398
2430
|
/**
|
|
@@ -2584,6 +2616,11 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2584
2616
|
*/
|
|
2585
2617
|
sKey: string
|
|
2586
2618
|
): Promise<string>;
|
|
2619
|
+
/**
|
|
2620
|
+
* @deprecated As of version 1.143. Use `hide()` to hide a card opened by `showCard()`. The card facade
|
|
2621
|
+
* does not provide methods for showing or hiding the main card itself.
|
|
2622
|
+
*/
|
|
2623
|
+
setVisible(): void;
|
|
2587
2624
|
/**
|
|
2588
2625
|
* Show blocking message in the card's content area. Should be used after the `manifestApplied` event or
|
|
2589
2626
|
* after the `cardReady` lifecycle hook in Component cards and Extensions.
|
|
@@ -3923,7 +3960,6 @@ declare module "sap/ui/integration/Host" {
|
|
|
3923
3960
|
* Examples may include, but are not limited to options like: share a card, remove a card.
|
|
3924
3961
|
*
|
|
3925
3962
|
* @since 1.75
|
|
3926
|
-
* @experimental As of version 1.75.
|
|
3927
3963
|
*/
|
|
3928
3964
|
export default class Host extends UI5Element {
|
|
3929
3965
|
/**
|
|
@@ -4484,6 +4520,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4484
4520
|
* Editor.
|
|
4485
4521
|
*
|
|
4486
4522
|
* @since 1.83
|
|
4523
|
+
* @experimental As of version 1.143.
|
|
4487
4524
|
*
|
|
4488
4525
|
* @returns A promise which contains the context structure.
|
|
4489
4526
|
*/
|
|
@@ -4500,6 +4537,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4500
4537
|
* userId: { value: "{context>sap.workzone/currentUser/id}" resolves to UserId } }
|
|
4501
4538
|
*
|
|
4502
4539
|
* @since 1.83
|
|
4540
|
+
* @experimental As of version 1.143.
|
|
4503
4541
|
*
|
|
4504
4542
|
* @returns A promise which resolves with the value of this context.
|
|
4505
4543
|
*/
|
|
@@ -4612,8 +4650,6 @@ declare module "sap/ui/integration/Host" {
|
|
|
4612
4650
|
}
|
|
4613
4651
|
/**
|
|
4614
4652
|
* Describes the settings that can be provided to the Host constructor.
|
|
4615
|
-
*
|
|
4616
|
-
* @experimental As of version 1.75.
|
|
4617
4653
|
*/
|
|
4618
4654
|
export interface $HostSettings extends $ElementSettings {
|
|
4619
4655
|
/**
|
package/types/sap.ui.layout.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.143.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/layout/library" {
|
|
4
4
|
import Control from "sap/ui/core/Control";
|
|
@@ -445,8 +445,9 @@ declare module "sap/ui/layout/library" {
|
|
|
445
445
|
ResponsiveLayout = "ResponsiveLayout",
|
|
446
446
|
}
|
|
447
447
|
/**
|
|
448
|
-
* An `int` type that defines how many cells a control inside of a column of a
|
|
449
|
-
*
|
|
448
|
+
* An `int` type that defines how many cells a control inside of a column of a {@link sap.ui.layout.form.Form Form }
|
|
449
|
+
* control using the {@link sap.ui.layout.form.ColumnLayout ColumnLayout} control as {@link sap.ui.layout.form.FormE#setLayout layout }
|
|
450
|
+
* can use.
|
|
450
451
|
*
|
|
451
452
|
* Allowed values are numbers from 1 to 12 and -1. -1 means the value is calculated.
|
|
452
453
|
*
|
|
@@ -455,8 +456,9 @@ declare module "sap/ui/layout/library" {
|
|
|
455
456
|
type ColumnCells = int;
|
|
456
457
|
|
|
457
458
|
/**
|
|
458
|
-
* An `int` type that defines how many columns a
|
|
459
|
-
*
|
|
459
|
+
* An `int` type that defines how many columns a {@link sap.ui.layout.form.Form Form} control using the
|
|
460
|
+
* {@link sap.ui.layout.form.ColumnLayout ColumnLayout} as {@link sap.ui.layout.form.FormE#setLayout layout }
|
|
461
|
+
* can have if it has large size
|
|
460
462
|
*
|
|
461
463
|
* Allowed values are numbers from 1 to 4. **Note:** In versions lower than 1.122 only 3 columns are allowed.
|
|
462
464
|
*
|
|
@@ -465,8 +467,9 @@ declare module "sap/ui/layout/library" {
|
|
|
465
467
|
type ColumnsL = int;
|
|
466
468
|
|
|
467
469
|
/**
|
|
468
|
-
* An `int` type that defines how many columns a
|
|
469
|
-
*
|
|
470
|
+
* An `int` type that defines how many columns a {@link sap.ui.layout.form.Form Form} control using the
|
|
471
|
+
* {@link sap.ui.layout.form.ColumnLayout ColumnLayout} as {@link sap.ui.layout.form.FormE#setLayout layout }
|
|
472
|
+
* can have if it has medium size
|
|
470
473
|
*
|
|
471
474
|
* Allowed values are numbers from 1 to 3. **Note:** In versions lower than 1.122 only 2 columns are allowed.
|
|
472
475
|
*
|
|
@@ -475,8 +478,9 @@ declare module "sap/ui/layout/library" {
|
|
|
475
478
|
type ColumnsM = int;
|
|
476
479
|
|
|
477
480
|
/**
|
|
478
|
-
* An `int` type that defines how many columns a
|
|
479
|
-
*
|
|
481
|
+
* An `int` type that defines how many columns a {@link sap.ui.layout.form.Form Form} control using the
|
|
482
|
+
* {@link sap.ui.layout.form.ColumnLayout ColumnLayout} as {@link sap.ui.layout.form.FormE#setLayout layout }
|
|
483
|
+
* can have if it has extra-large size
|
|
480
484
|
*
|
|
481
485
|
* Allowed values are numbers from 1 to 6. **Note:** In versions lower than 1.89 only 4 columns are allowed.
|
|
482
486
|
*
|
|
@@ -485,8 +489,9 @@ declare module "sap/ui/layout/library" {
|
|
|
485
489
|
type ColumnsXL = int;
|
|
486
490
|
|
|
487
491
|
/**
|
|
488
|
-
* An `int` type that defines how many cells beside the controls inside of a column of a
|
|
489
|
-
* using the
|
|
492
|
+
* An `int` type that defines how many cells beside the controls inside of a column of a {@link sap.ui.layout.form.Form Form }
|
|
493
|
+
* control using the {@link sap.ui.layout.form.ColumnLayout ColumnLayout} control as {@link sap.ui.layout.form.FormE#setLayout layout }
|
|
494
|
+
* are empty.
|
|
490
495
|
*
|
|
491
496
|
* Allowed values are numbers from 0 to 11.
|
|
492
497
|
*
|
|
@@ -5816,10 +5821,12 @@ declare module "sap/ui/layout/form/ColumnContainerData" {
|
|
|
5816
5821
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
5817
5822
|
|
|
5818
5823
|
/**
|
|
5819
|
-
* The
|
|
5824
|
+
* The {@link sap.ui.layout.form.ColumnLayout ColumnLayout}-specific layout data for the {@link sap.ui.layout.form.FormContainer FormContainer }
|
|
5825
|
+
* element.
|
|
5820
5826
|
*
|
|
5821
|
-
* Depending on its size, the
|
|
5822
|
-
*
|
|
5827
|
+
* Depending on its size, the {@link sap.ui.layout.form.Form Form} control is divided into 1, 2, 3 or 4
|
|
5828
|
+
* columns by the {@link sap.ui.layout.form.ColumnLayout ColumnLayout} control. Using `ColumnContainerData`,
|
|
5829
|
+
* the size of the {@link sap.ui.layout.form.FormContainer FormContainer} element can be influenced.
|
|
5823
5830
|
*
|
|
5824
5831
|
* @since 1.56.0
|
|
5825
5832
|
*/
|
|
@@ -5889,7 +5896,8 @@ declare module "sap/ui/layout/form/ColumnContainerData" {
|
|
|
5889
5896
|
/**
|
|
5890
5897
|
* Gets current value of property {@link #getColumnsL columnsL}.
|
|
5891
5898
|
*
|
|
5892
|
-
* Number of columns the
|
|
5899
|
+
* Number of columns the {@link sap.ui.layout.form.FormContainer FormContainer} element uses if the {@link sap.ui.layout.form.Form Form }
|
|
5900
|
+
* control has large size.
|
|
5893
5901
|
*
|
|
5894
5902
|
* The number of columns for large size must not be smaller than the number of columns for medium size.
|
|
5895
5903
|
*
|
|
@@ -5902,7 +5910,8 @@ declare module "sap/ui/layout/form/ColumnContainerData" {
|
|
|
5902
5910
|
/**
|
|
5903
5911
|
* Gets current value of property {@link #getColumnsM columnsM}.
|
|
5904
5912
|
*
|
|
5905
|
-
* Number of columns the
|
|
5913
|
+
* Number of columns the {@link sap.ui.layout.form.FormContainer FormContainer} element uses if the {@link sap.ui.layout.form.Form Form }
|
|
5914
|
+
* control has medium size.
|
|
5906
5915
|
*
|
|
5907
5916
|
* Default value is `1`.
|
|
5908
5917
|
*
|
|
@@ -5913,7 +5922,8 @@ declare module "sap/ui/layout/form/ColumnContainerData" {
|
|
|
5913
5922
|
/**
|
|
5914
5923
|
* Gets current value of property {@link #getColumnsXL columnsXL}.
|
|
5915
5924
|
*
|
|
5916
|
-
* Number of columns the
|
|
5925
|
+
* Number of columns the {@link sap.ui.layout.form.FormContainer FormContainer} element uses if the {@link sap.ui.layout.form.Form Form }
|
|
5926
|
+
* control has extra-large size.
|
|
5917
5927
|
*
|
|
5918
5928
|
* The number of columns for extra-large size must not be smaller than the number of columns for large size.
|
|
5919
5929
|
*
|
|
@@ -5926,7 +5936,8 @@ declare module "sap/ui/layout/form/ColumnContainerData" {
|
|
|
5926
5936
|
/**
|
|
5927
5937
|
* Sets a new value for property {@link #getColumnsL columnsL}.
|
|
5928
5938
|
*
|
|
5929
|
-
* Number of columns the
|
|
5939
|
+
* Number of columns the {@link sap.ui.layout.form.FormContainer FormContainer} element uses if the {@link sap.ui.layout.form.Form Form }
|
|
5940
|
+
* control has large size.
|
|
5930
5941
|
*
|
|
5931
5942
|
* The number of columns for large size must not be smaller than the number of columns for medium size.
|
|
5932
5943
|
*
|
|
@@ -5946,7 +5957,8 @@ declare module "sap/ui/layout/form/ColumnContainerData" {
|
|
|
5946
5957
|
/**
|
|
5947
5958
|
* Sets a new value for property {@link #getColumnsM columnsM}.
|
|
5948
5959
|
*
|
|
5949
|
-
* Number of columns the
|
|
5960
|
+
* Number of columns the {@link sap.ui.layout.form.FormContainer FormContainer} element uses if the {@link sap.ui.layout.form.Form Form }
|
|
5961
|
+
* control has medium size.
|
|
5950
5962
|
*
|
|
5951
5963
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5952
5964
|
*
|
|
@@ -5964,7 +5976,8 @@ declare module "sap/ui/layout/form/ColumnContainerData" {
|
|
|
5964
5976
|
/**
|
|
5965
5977
|
* Sets a new value for property {@link #getColumnsXL columnsXL}.
|
|
5966
5978
|
*
|
|
5967
|
-
* Number of columns the
|
|
5979
|
+
* Number of columns the {@link sap.ui.layout.form.FormContainer FormContainer} element uses if the {@link sap.ui.layout.form.Form Form }
|
|
5980
|
+
* control has extra-large size.
|
|
5968
5981
|
*
|
|
5969
5982
|
* The number of columns for extra-large size must not be smaller than the number of columns for large size.
|
|
5970
5983
|
*
|
|
@@ -5987,21 +6000,24 @@ declare module "sap/ui/layout/form/ColumnContainerData" {
|
|
|
5987
6000
|
*/
|
|
5988
6001
|
export interface $ColumnContainerDataSettings extends $LayoutDataSettings {
|
|
5989
6002
|
/**
|
|
5990
|
-
* Number of columns the
|
|
6003
|
+
* Number of columns the {@link sap.ui.layout.form.FormContainer FormContainer} element uses if the {@link sap.ui.layout.form.Form Form }
|
|
6004
|
+
* control has extra-large size.
|
|
5991
6005
|
*
|
|
5992
6006
|
* The number of columns for extra-large size must not be smaller than the number of columns for large size.
|
|
5993
6007
|
*/
|
|
5994
6008
|
columnsXL?: form.ColumnsXL | PropertyBindingInfo | `{${string}}`;
|
|
5995
6009
|
|
|
5996
6010
|
/**
|
|
5997
|
-
* Number of columns the
|
|
6011
|
+
* Number of columns the {@link sap.ui.layout.form.FormContainer FormContainer} element uses if the {@link sap.ui.layout.form.Form Form }
|
|
6012
|
+
* control has large size.
|
|
5998
6013
|
*
|
|
5999
6014
|
* The number of columns for large size must not be smaller than the number of columns for medium size.
|
|
6000
6015
|
*/
|
|
6001
6016
|
columnsL?: form.ColumnsL | PropertyBindingInfo | `{${string}}`;
|
|
6002
6017
|
|
|
6003
6018
|
/**
|
|
6004
|
-
* Number of columns the
|
|
6019
|
+
* Number of columns the {@link sap.ui.layout.form.FormContainer FormContainer} element uses if the {@link sap.ui.layout.form.Form Form }
|
|
6020
|
+
* control has medium size.
|
|
6005
6021
|
*/
|
|
6006
6022
|
columnsM?: form.ColumnsM | PropertyBindingInfo | `{${string}}`;
|
|
6007
6023
|
}
|
|
@@ -6020,10 +6036,12 @@ declare module "sap/ui/layout/form/ColumnElementData" {
|
|
|
6020
6036
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
6021
6037
|
|
|
6022
6038
|
/**
|
|
6023
|
-
* The
|
|
6039
|
+
* The {@link sap.ui.layout.form.ColumnLayout ColumnLayout}-specific layout data for the {@link sap.ui.layout.form.Form Form }
|
|
6040
|
+
* content fields.
|
|
6024
6041
|
*
|
|
6025
|
-
* One
|
|
6026
|
-
* the default calculation of the cells used for a field or label
|
|
6042
|
+
* One {@link sap.ui.layout.form.FormElement FormElement} element contains 12 cells and has two sizes, small
|
|
6043
|
+
* and large. Using `ColumnElementData`, the default calculation of the cells used for a field or label
|
|
6044
|
+
* can be overwritten.
|
|
6027
6045
|
*
|
|
6028
6046
|
* @since 1.56.0
|
|
6029
6047
|
*/
|
|
@@ -6093,10 +6111,10 @@ declare module "sap/ui/layout/form/ColumnElementData" {
|
|
|
6093
6111
|
/**
|
|
6094
6112
|
* Gets current value of property {@link #getCellsLarge cellsLarge}.
|
|
6095
6113
|
*
|
|
6096
|
-
* Number of cells used by a field if the
|
|
6097
|
-
* per default.
|
|
6114
|
+
* Number of cells used by a field if the {@link sap.ui.layout.form.FormElement FormElement} element is
|
|
6115
|
+
* large. The label is then beside the fields per default.
|
|
6098
6116
|
*
|
|
6099
|
-
* If set to `12`, the full size of the
|
|
6117
|
+
* If set to `12`, the full size of the {@link sap.ui.layout.form.FormElement FormElement} element is used.
|
|
6100
6118
|
*
|
|
6101
6119
|
* Default value is `8`.
|
|
6102
6120
|
*
|
|
@@ -6107,10 +6125,10 @@ declare module "sap/ui/layout/form/ColumnElementData" {
|
|
|
6107
6125
|
/**
|
|
6108
6126
|
* Gets current value of property {@link #getCellsSmall cellsSmall}.
|
|
6109
6127
|
*
|
|
6110
|
-
* Number of cells used by a field if the
|
|
6111
|
-
* per default.
|
|
6128
|
+
* Number of cells used by a field if the {@link sap.ui.layout.form.FormElement FormElement} element is
|
|
6129
|
+
* small. The label is then above the fields per default.
|
|
6112
6130
|
*
|
|
6113
|
-
* If set to `12`, the full size of the
|
|
6131
|
+
* If set to `12`, the full size of the {@link sap.ui.layout.form.FormElement FormElement} is used.
|
|
6114
6132
|
*
|
|
6115
6133
|
* Default value is `12`.
|
|
6116
6134
|
*
|
|
@@ -6121,10 +6139,10 @@ declare module "sap/ui/layout/form/ColumnElementData" {
|
|
|
6121
6139
|
/**
|
|
6122
6140
|
* Sets a new value for property {@link #getCellsLarge cellsLarge}.
|
|
6123
6141
|
*
|
|
6124
|
-
* Number of cells used by a field if the
|
|
6125
|
-
* per default.
|
|
6142
|
+
* Number of cells used by a field if the {@link sap.ui.layout.form.FormElement FormElement} element is
|
|
6143
|
+
* large. The label is then beside the fields per default.
|
|
6126
6144
|
*
|
|
6127
|
-
* If set to `12`, the full size of the
|
|
6145
|
+
* If set to `12`, the full size of the {@link sap.ui.layout.form.FormElement FormElement} element is used.
|
|
6128
6146
|
*
|
|
6129
6147
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
6130
6148
|
*
|
|
@@ -6142,10 +6160,10 @@ declare module "sap/ui/layout/form/ColumnElementData" {
|
|
|
6142
6160
|
/**
|
|
6143
6161
|
* Sets a new value for property {@link #getCellsSmall cellsSmall}.
|
|
6144
6162
|
*
|
|
6145
|
-
* Number of cells used by a field if the
|
|
6146
|
-
* per default.
|
|
6163
|
+
* Number of cells used by a field if the {@link sap.ui.layout.form.FormElement FormElement} element is
|
|
6164
|
+
* small. The label is then above the fields per default.
|
|
6147
6165
|
*
|
|
6148
|
-
* If set to `12`, the full size of the
|
|
6166
|
+
* If set to `12`, the full size of the {@link sap.ui.layout.form.FormElement FormElement} is used.
|
|
6149
6167
|
*
|
|
6150
6168
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
6151
6169
|
*
|
|
@@ -6166,18 +6184,18 @@ declare module "sap/ui/layout/form/ColumnElementData" {
|
|
|
6166
6184
|
*/
|
|
6167
6185
|
export interface $ColumnElementDataSettings extends $LayoutDataSettings {
|
|
6168
6186
|
/**
|
|
6169
|
-
* Number of cells used by a field if the
|
|
6170
|
-
* per default.
|
|
6187
|
+
* Number of cells used by a field if the {@link sap.ui.layout.form.FormElement FormElement} element is
|
|
6188
|
+
* large. The label is then beside the fields per default.
|
|
6171
6189
|
*
|
|
6172
|
-
* If set to `12`, the full size of the
|
|
6190
|
+
* If set to `12`, the full size of the {@link sap.ui.layout.form.FormElement FormElement} element is used.
|
|
6173
6191
|
*/
|
|
6174
6192
|
cellsLarge?: form.ColumnCells | PropertyBindingInfo | `{${string}}`;
|
|
6175
6193
|
|
|
6176
6194
|
/**
|
|
6177
|
-
* Number of cells used by a field if the
|
|
6178
|
-
* per default.
|
|
6195
|
+
* Number of cells used by a field if the {@link sap.ui.layout.form.FormElement FormElement} element is
|
|
6196
|
+
* small. The label is then above the fields per default.
|
|
6179
6197
|
*
|
|
6180
|
-
* If set to `12`, the full size of the
|
|
6198
|
+
* If set to `12`, the full size of the {@link sap.ui.layout.form.FormElement FormElement} is used.
|
|
6181
6199
|
*/
|
|
6182
6200
|
cellsSmall?: form.ColumnCells | PropertyBindingInfo | `{${string}}`;
|
|
6183
6201
|
}
|
|
@@ -6223,7 +6241,7 @@ declare module "sap/ui/layout/form/ColumnLayout" {
|
|
|
6223
6241
|
* of the used column. If there is enough space, the labels are beside the fields, otherwise above the fields.
|
|
6224
6242
|
*
|
|
6225
6243
|
* The default size of a content control of a {@link sap.ui.layout.form.FormElement FormElement} element
|
|
6226
|
-
* can be overwritten using {@link sap.ui.layout.form.ColumnElementData ColumnElementData} as
|
|
6244
|
+
* can be overwritten using {@link sap.ui.layout.form.ColumnElementData ColumnElementData} as {@link sap.ui.core.Element#setLayoutData LayoutData}.
|
|
6227
6245
|
* If one control assigned to a {@link sap.ui.layout.form.FormElement FormElement} element has {@link sap.ui.layout.form.ColumnElementData ColumnElementData }
|
|
6228
6246
|
* set, the size calculation of the other controls assigned to the {@link sap.ui.layout.form.FormElement FormElement }
|
|
6229
6247
|
* element might not lead to the expected result. In this case, use {@link sap.ui.layout.form.ColumnElementData ColumnElementData }
|
|
@@ -6234,7 +6252,7 @@ declare module "sap/ui/layout/form/ColumnLayout" {
|
|
|
6234
6252
|
* results than might be expected.
|
|
6235
6253
|
*
|
|
6236
6254
|
* **Note:** This control cannot be used stand-alone, it just renders a {@link sap.ui.layout.form.Form Form }
|
|
6237
|
-
* control, so it must be assigned to a {@link sap.ui.layout.form.Form Form} control using the
|
|
6255
|
+
* control, so it must be assigned to a {@link sap.ui.layout.form.Form Form} control using the {@link sap.ui.layout.form.Form#setLayout layout }
|
|
6238
6256
|
* aggregation.
|
|
6239
6257
|
*
|
|
6240
6258
|
* @since 1.56.0
|