@openui5/ts-types 1.102.2 → 1.104.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 +320 -24
- package/types/sap.m.d.ts +2388 -334
- package/types/sap.tnt.d.ts +5 -5
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +36 -36
- package/types/sap.ui.core.d.ts +384 -111
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +3 -1
- package/types/sap.ui.integration.d.ts +43 -64
- package/types/sap.ui.layout.d.ts +33 -41
- package/types/sap.ui.mdc.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +3 -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 +9 -9
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +115 -35
- package/types/sap.ui.ux3.d.ts +43 -43
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +30 -30
- package/types/sap.ui.webc.main.d.ts +49 -49
- package/types/sap.uxap.d.ts +13 -13
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.104.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
interface IUI5DefineDependencyNames {
|
|
@@ -56,6 +56,8 @@ declare namespace sap {
|
|
|
56
56
|
|
|
57
57
|
"sap/ui/fl/apply/_internal/flexObjects/UpdatableChange": undefined;
|
|
58
58
|
|
|
59
|
+
"sap/ui/fl/apply/_internal/flexObjects/Variant": undefined;
|
|
60
|
+
|
|
59
61
|
"sap/ui/fl/apply/_internal/flexState/changes/DependencyHandler": undefined;
|
|
60
62
|
|
|
61
63
|
"sap/ui/fl/apply/_internal/flexState/changes/ExtensionPointState": undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.104.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -357,17 +357,7 @@ declare namespace sap {
|
|
|
357
357
|
}
|
|
358
358
|
|
|
359
359
|
interface $ExtensionSettings
|
|
360
|
-
extends sap.ui.
|
|
361
|
-
/**
|
|
362
|
-
* @EXPERIMENTAL (since 1.94)
|
|
363
|
-
*
|
|
364
|
-
* The formatters, which can be used in the manifest.
|
|
365
|
-
*/
|
|
366
|
-
formatters?:
|
|
367
|
-
| object
|
|
368
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
369
|
-
| `{${string}}`;
|
|
370
|
-
}
|
|
360
|
+
extends sap.ui.integration.$ExtensionSettings {}
|
|
371
361
|
|
|
372
362
|
/**
|
|
373
363
|
* @SINCE 1.94
|
|
@@ -375,13 +365,9 @@ declare namespace sap {
|
|
|
375
365
|
* Brings JavaScript capabilities for an {@link sap.ui.integration.editor.Editor} where custom logic can
|
|
376
366
|
* be implemented.
|
|
377
367
|
*/
|
|
378
|
-
class Extension extends sap.ui.
|
|
368
|
+
class Extension extends sap.ui.integration.Extension {
|
|
379
369
|
/**
|
|
380
370
|
* Constructor for a new `Extension`.
|
|
381
|
-
*
|
|
382
|
-
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
383
|
-
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
384
|
-
* of the syntax of the settings object.
|
|
385
371
|
*/
|
|
386
372
|
constructor(
|
|
387
373
|
/**
|
|
@@ -391,10 +377,6 @@ declare namespace sap {
|
|
|
391
377
|
);
|
|
392
378
|
/**
|
|
393
379
|
* Constructor for a new `Extension`.
|
|
394
|
-
*
|
|
395
|
-
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
396
|
-
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
397
|
-
* of the syntax of the settings object.
|
|
398
380
|
*/
|
|
399
381
|
constructor(
|
|
400
382
|
/**
|
|
@@ -407,51 +389,12 @@ declare namespace sap {
|
|
|
407
389
|
mSettings?: sap.ui.integration.editor.$ExtensionSettings
|
|
408
390
|
);
|
|
409
391
|
|
|
410
|
-
/**
|
|
411
|
-
* Creates a new subclass of class sap.ui.integration.editor.Extension with name `sClassName` and enriches
|
|
412
|
-
* it with the information contained in `oClassInfo`.
|
|
413
|
-
*
|
|
414
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.ManagedObject.extend}.
|
|
415
|
-
*
|
|
416
|
-
* @returns Created class / constructor function
|
|
417
|
-
*/
|
|
418
|
-
static extend<T extends Record<string, unknown>>(
|
|
419
|
-
/**
|
|
420
|
-
* Name of the class being created
|
|
421
|
-
*/
|
|
422
|
-
sClassName: string,
|
|
423
|
-
/**
|
|
424
|
-
* Object literal with information about the class
|
|
425
|
-
*/
|
|
426
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.integration.editor.Extension>,
|
|
427
|
-
/**
|
|
428
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
429
|
-
* used by this class
|
|
430
|
-
*/
|
|
431
|
-
FNMetaImpl?: Function
|
|
432
|
-
): Function;
|
|
433
|
-
/**
|
|
434
|
-
* Returns a metadata object for class sap.ui.integration.editor.Extension.
|
|
435
|
-
*
|
|
436
|
-
* @returns Metadata object describing this class
|
|
437
|
-
*/
|
|
438
|
-
static getMetadata(): sap.ui.base.ManagedObjectMetadata;
|
|
439
392
|
/**
|
|
440
393
|
* Returns an interface to the editor, which uses this extension.
|
|
441
394
|
*
|
|
442
395
|
* @returns An interface to the card.
|
|
443
396
|
*/
|
|
444
397
|
getEditor(): sap.ui.integration.widgets.CardFacade;
|
|
445
|
-
/**
|
|
446
|
-
* @EXPERIMENTAL (since 1.94)
|
|
447
|
-
*
|
|
448
|
-
* Gets current value of property {@link #getFormatters formatters}.
|
|
449
|
-
*
|
|
450
|
-
* The formatters, which can be used in the manifest.
|
|
451
|
-
*
|
|
452
|
-
* @returns Value of property `formatters`
|
|
453
|
-
*/
|
|
454
|
-
getFormatters(): object;
|
|
455
398
|
/**
|
|
456
399
|
* Called when the editor is ready.
|
|
457
400
|
*/
|
|
@@ -635,7 +578,7 @@ declare namespace sap {
|
|
|
635
578
|
| int
|
|
636
579
|
| string
|
|
637
580
|
| sap.ui.integration.ActionDefinition
|
|
638
|
-
): sap.ui.integration.ActionDefinition;
|
|
581
|
+
): sap.ui.integration.ActionDefinition | null;
|
|
639
582
|
/**
|
|
640
583
|
* @EXPERIMENTAL (since 1.79)
|
|
641
584
|
*
|
|
@@ -760,6 +703,11 @@ declare namespace sap {
|
|
|
760
703
|
}
|
|
761
704
|
|
|
762
705
|
interface $CardSettings extends sap.f.$CardBaseSettings {
|
|
706
|
+
/**
|
|
707
|
+
* Optional property which can be used by the host to reference the card. Does not affect the card behavior.
|
|
708
|
+
*/
|
|
709
|
+
referenceId?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
710
|
+
|
|
763
711
|
/**
|
|
764
712
|
* The URL of the manifest or an object.
|
|
765
713
|
*/
|
|
@@ -1503,6 +1451,16 @@ declare namespace sap {
|
|
|
1503
1451
|
*/
|
|
1504
1452
|
sPath: string
|
|
1505
1453
|
): Object;
|
|
1454
|
+
/**
|
|
1455
|
+
* Gets current value of property {@link #getReferenceId referenceId}.
|
|
1456
|
+
*
|
|
1457
|
+
* Optional property which can be used by the host to reference the card. Does not affect the card behavior.
|
|
1458
|
+
*
|
|
1459
|
+
* Default value is `empty string`.
|
|
1460
|
+
*
|
|
1461
|
+
* @returns Value of property `referenceId`
|
|
1462
|
+
*/
|
|
1463
|
+
getReferenceId(): string;
|
|
1506
1464
|
/**
|
|
1507
1465
|
* @EXPERIMENTAL (since 1.83)
|
|
1508
1466
|
*
|
|
@@ -1624,7 +1582,7 @@ declare namespace sap {
|
|
|
1624
1582
|
| int
|
|
1625
1583
|
| string
|
|
1626
1584
|
| sap.ui.integration.ActionDefinition
|
|
1627
|
-
): sap.ui.integration.ActionDefinition;
|
|
1585
|
+
): sap.ui.integration.ActionDefinition | null;
|
|
1628
1586
|
/**
|
|
1629
1587
|
* @SINCE 1.85
|
|
1630
1588
|
* @EXPERIMENTAL (since 1.85)
|
|
@@ -1787,6 +1745,23 @@ declare namespace sap {
|
|
|
1787
1745
|
*/
|
|
1788
1746
|
sManifestChanges: object[]
|
|
1789
1747
|
): this;
|
|
1748
|
+
/**
|
|
1749
|
+
* Sets a new value for property {@link #getReferenceId referenceId}.
|
|
1750
|
+
*
|
|
1751
|
+
* Optional property which can be used by the host to reference the card. Does not affect the card behavior.
|
|
1752
|
+
*
|
|
1753
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1754
|
+
*
|
|
1755
|
+
* Default value is `empty string`.
|
|
1756
|
+
*
|
|
1757
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1758
|
+
*/
|
|
1759
|
+
setReferenceId(
|
|
1760
|
+
/**
|
|
1761
|
+
* New value for property `referenceId`
|
|
1762
|
+
*/
|
|
1763
|
+
sReferenceId?: string
|
|
1764
|
+
): this;
|
|
1790
1765
|
/**
|
|
1791
1766
|
* Displays the loading placeholders on the whole card, or a particular area of the card. **Note:** Only
|
|
1792
1767
|
* areas that contain binding will receive a loading placeholder.
|
|
@@ -3062,9 +3037,13 @@ declare namespace sap {
|
|
|
3062
3037
|
*/
|
|
3063
3038
|
getDestination(
|
|
3064
3039
|
/**
|
|
3065
|
-
* The name of the destination.
|
|
3040
|
+
* The name of the destination.
|
|
3041
|
+
*/
|
|
3042
|
+
sDestinationName: string,
|
|
3043
|
+
/**
|
|
3044
|
+
* The card that depends on the destination. Most often the name which is used in the SAP Cloud Platform.
|
|
3066
3045
|
*/
|
|
3067
|
-
|
|
3046
|
+
oCard: sap.ui.integration.widgets.Card
|
|
3068
3047
|
): Promise<any>;
|
|
3069
3048
|
/**
|
|
3070
3049
|
* @SINCE 1.83
|
package/types/sap.ui.layout.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.104.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -781,7 +781,7 @@ declare namespace sap {
|
|
|
781
781
|
* The item to remove or its index or id
|
|
782
782
|
*/
|
|
783
783
|
vItem: int | string | sap.ui.core.Control
|
|
784
|
-
): sap.ui.core.Control;
|
|
784
|
+
): sap.ui.core.Control | null;
|
|
785
785
|
/**
|
|
786
786
|
* Sets the aggregated {@link #getCustomLayout customLayout}.
|
|
787
787
|
*
|
|
@@ -1766,10 +1766,9 @@ declare namespace sap {
|
|
|
1766
1766
|
aElements: sap.ui.core.Control[] | HTMLElement[]
|
|
1767
1767
|
): void;
|
|
1768
1768
|
/**
|
|
1769
|
-
* Should return
|
|
1770
|
-
* classes
|
|
1769
|
+
* Should return the active GridSettings. Must be implemented by child classes.
|
|
1771
1770
|
*/
|
|
1772
|
-
getActiveGridSettings():
|
|
1771
|
+
getActiveGridSettings(): sap.ui.layout.cssgrid.GridSettings;
|
|
1773
1772
|
/**
|
|
1774
1773
|
*
|
|
1775
1774
|
* @returns If the Grid Layout is responsive.
|
|
@@ -4555,7 +4554,7 @@ declare namespace sap {
|
|
|
4555
4554
|
* The formContainer to remove or its index or id
|
|
4556
4555
|
*/
|
|
4557
4556
|
vFormContainer: int | string | sap.ui.layout.form.FormContainer
|
|
4558
|
-
): sap.ui.layout.form.FormContainer;
|
|
4557
|
+
): sap.ui.layout.form.FormContainer | null;
|
|
4559
4558
|
/**
|
|
4560
4559
|
* @SINCE 1.20.0
|
|
4561
4560
|
*
|
|
@@ -4913,7 +4912,7 @@ declare namespace sap {
|
|
|
4913
4912
|
* The formElement to remove or its index or id
|
|
4914
4913
|
*/
|
|
4915
4914
|
vFormElement: int | string | sap.ui.layout.form.FormElement
|
|
4916
|
-
): sap.ui.layout.form.FormElement;
|
|
4915
|
+
): sap.ui.layout.form.FormElement | null;
|
|
4917
4916
|
/**
|
|
4918
4917
|
* Sets a new value for property {@link #getExpandable expandable}.
|
|
4919
4918
|
*
|
|
@@ -5195,7 +5194,7 @@ declare namespace sap {
|
|
|
5195
5194
|
* The field to remove or its index or id
|
|
5196
5195
|
*/
|
|
5197
5196
|
vField: int | string | sap.ui.core.Control
|
|
5198
|
-
): sap.ui.core.Control;
|
|
5197
|
+
): sap.ui.core.Control | null;
|
|
5199
5198
|
/**
|
|
5200
5199
|
* Sets the aggregated {@link #getLabel label}.
|
|
5201
5200
|
*
|
|
@@ -6576,7 +6575,7 @@ declare namespace sap {
|
|
|
6576
6575
|
* The fieldLabel to remove or its index or id
|
|
6577
6576
|
*/
|
|
6578
6577
|
vFieldLabel: int | string | sap.ui.core.Label
|
|
6579
|
-
): sap.ui.core.Label;
|
|
6578
|
+
): sap.ui.core.Label | null;
|
|
6580
6579
|
/**
|
|
6581
6580
|
* Sets a new value for property {@link #getDelimiter delimiter}.
|
|
6582
6581
|
*
|
|
@@ -7218,7 +7217,7 @@ declare namespace sap {
|
|
|
7218
7217
|
* The content to remove or its index or id
|
|
7219
7218
|
*/
|
|
7220
7219
|
vContent: int | string | sap.ui.core.Element
|
|
7221
|
-
): sap.ui.core.Element;
|
|
7220
|
+
): sap.ui.core.Element | null;
|
|
7222
7221
|
/**
|
|
7223
7222
|
* @SINCE 1.34.0
|
|
7224
7223
|
*
|
|
@@ -7930,8 +7929,7 @@ declare namespace sap {
|
|
|
7930
7929
|
/**
|
|
7931
7930
|
* @SINCE 1.48
|
|
7932
7931
|
*
|
|
7933
|
-
* The Background color set from which the background color will be selected.
|
|
7934
|
-
* from the predefined sets your colors could later be customized from the Theme Designer. **Note:** backgroundColorSet
|
|
7932
|
+
* The Background color set from which the background color will be selected. **Note:** backgroundColorSet
|
|
7935
7933
|
* should be used only in combination with backgroundColorShade.
|
|
7936
7934
|
*/
|
|
7937
7935
|
backgroundColorSet?:
|
|
@@ -7942,9 +7940,8 @@ declare namespace sap {
|
|
|
7942
7940
|
/**
|
|
7943
7941
|
* @SINCE 1.48
|
|
7944
7942
|
*
|
|
7945
|
-
* The index of the background color in the color set from which the color will be selected.
|
|
7946
|
-
*
|
|
7947
|
-
* backgroundColorShade should be used only in combination with backgroundColorSet.
|
|
7943
|
+
* The index of the background color in the color set from which the color will be selected. **Note:** backgroundColorShade
|
|
7944
|
+
* should be used only in combination with backgroundColorSet.
|
|
7948
7945
|
*/
|
|
7949
7946
|
backgroundColorShade?:
|
|
7950
7947
|
| sap.ui.layout.BlockLayoutCellColorShade
|
|
@@ -8865,10 +8862,9 @@ declare namespace sap {
|
|
|
8865
8862
|
* are attached directly to the blocks of the layout.
|
|
8866
8863
|
*
|
|
8867
8864
|
* **Note:** With version 1.48 colors can be set for each individual {@link sap.ui.layout.BlockLayoutCell
|
|
8868
|
-
* cell}. There are 11 pre-defined color sets, each with 4 different shades for the Belize theme and
|
|
8869
|
-
* shades for the
|
|
8870
|
-
*
|
|
8871
|
-
* (shade).
|
|
8865
|
+
* cell}. There are 11 pre-defined color sets, each with 4 different shades for the SAP Belize theme and
|
|
8866
|
+
* 6 different shades for the Quartz and Horizon themes. To change the background of a particular cell,
|
|
8867
|
+
* set `backgroundColorSet` (main color) and `backgroundColorShade` (shade).
|
|
8872
8868
|
*
|
|
8873
8869
|
* **Note:** Usage of disabled, emphasized or subtle links as titles is not recommended. Dark background
|
|
8874
8870
|
* designs, for example Accent, are not fully supported with regards to Accessibility when used with links
|
|
@@ -9043,7 +9039,7 @@ declare namespace sap {
|
|
|
9043
9039
|
* The content to remove or its index or id
|
|
9044
9040
|
*/
|
|
9045
9041
|
vContent: int | string | sap.ui.layout.BlockLayoutRow
|
|
9046
|
-
): sap.ui.layout.BlockLayoutRow;
|
|
9042
|
+
): sap.ui.layout.BlockLayoutRow | null;
|
|
9047
9043
|
/**
|
|
9048
9044
|
* @SINCE 1.42
|
|
9049
9045
|
*
|
|
@@ -9180,8 +9176,7 @@ declare namespace sap {
|
|
|
9180
9176
|
*
|
|
9181
9177
|
* Gets current value of property {@link #getBackgroundColorSet backgroundColorSet}.
|
|
9182
9178
|
*
|
|
9183
|
-
* The Background color set from which the background color will be selected.
|
|
9184
|
-
* from the predefined sets your colors could later be customized from the Theme Designer. **Note:** backgroundColorSet
|
|
9179
|
+
* The Background color set from which the background color will be selected. **Note:** backgroundColorSet
|
|
9185
9180
|
* should be used only in combination with backgroundColorShade.
|
|
9186
9181
|
*
|
|
9187
9182
|
* @returns Value of property `backgroundColorSet`
|
|
@@ -9192,9 +9187,8 @@ declare namespace sap {
|
|
|
9192
9187
|
*
|
|
9193
9188
|
* Gets current value of property {@link #getBackgroundColorShade backgroundColorShade}.
|
|
9194
9189
|
*
|
|
9195
|
-
* The index of the background color in the color set from which the color will be selected.
|
|
9196
|
-
*
|
|
9197
|
-
* backgroundColorShade should be used only in combination with backgroundColorSet.
|
|
9190
|
+
* The index of the background color in the color set from which the color will be selected. **Note:** backgroundColorShade
|
|
9191
|
+
* should be used only in combination with backgroundColorSet.
|
|
9198
9192
|
*
|
|
9199
9193
|
* @returns Value of property `backgroundColorShade`
|
|
9200
9194
|
*/
|
|
@@ -9310,14 +9304,13 @@ declare namespace sap {
|
|
|
9310
9304
|
* The content to remove or its index or id
|
|
9311
9305
|
*/
|
|
9312
9306
|
vContent: int | string | sap.ui.core.Control
|
|
9313
|
-
): sap.ui.core.Control;
|
|
9307
|
+
): sap.ui.core.Control | null;
|
|
9314
9308
|
/**
|
|
9315
9309
|
* @SINCE 1.48
|
|
9316
9310
|
*
|
|
9317
9311
|
* Sets a new value for property {@link #getBackgroundColorSet backgroundColorSet}.
|
|
9318
9312
|
*
|
|
9319
|
-
* The Background color set from which the background color will be selected.
|
|
9320
|
-
* from the predefined sets your colors could later be customized from the Theme Designer. **Note:** backgroundColorSet
|
|
9313
|
+
* The Background color set from which the background color will be selected. **Note:** backgroundColorSet
|
|
9321
9314
|
* should be used only in combination with backgroundColorShade.
|
|
9322
9315
|
*
|
|
9323
9316
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
@@ -9335,9 +9328,8 @@ declare namespace sap {
|
|
|
9335
9328
|
*
|
|
9336
9329
|
* Sets a new value for property {@link #getBackgroundColorShade backgroundColorShade}.
|
|
9337
9330
|
*
|
|
9338
|
-
* The index of the background color in the color set from which the color will be selected.
|
|
9339
|
-
*
|
|
9340
|
-
* backgroundColorShade should be used only in combination with backgroundColorSet.
|
|
9331
|
+
* The index of the background color in the color set from which the color will be selected. **Note:** backgroundColorShade
|
|
9332
|
+
* should be used only in combination with backgroundColorSet.
|
|
9341
9333
|
*
|
|
9342
9334
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9343
9335
|
*
|
|
@@ -9803,7 +9795,7 @@ declare namespace sap {
|
|
|
9803
9795
|
* The content to remove or its index or id
|
|
9804
9796
|
*/
|
|
9805
9797
|
vContent: int | string | sap.ui.layout.BlockLayoutCell
|
|
9806
|
-
): sap.ui.layout.BlockLayoutCell;
|
|
9798
|
+
): sap.ui.layout.BlockLayoutCell | null;
|
|
9807
9799
|
/**
|
|
9808
9800
|
* @SINCE 1.42
|
|
9809
9801
|
*
|
|
@@ -10283,7 +10275,7 @@ declare namespace sap {
|
|
|
10283
10275
|
* The mainContent to remove or its index or id
|
|
10284
10276
|
*/
|
|
10285
10277
|
vMainContent: int | string | sap.ui.core.Control
|
|
10286
|
-
): sap.ui.core.Control;
|
|
10278
|
+
): sap.ui.core.Control | null;
|
|
10287
10279
|
/**
|
|
10288
10280
|
* Removes a sideContent from the aggregation {@link #getSideContent sideContent}.
|
|
10289
10281
|
*
|
|
@@ -10294,7 +10286,7 @@ declare namespace sap {
|
|
|
10294
10286
|
* The sideContent to remove or its index or id
|
|
10295
10287
|
*/
|
|
10296
10288
|
vSideContent: int | string | sap.ui.core.Control
|
|
10297
|
-
): sap.ui.core.Control;
|
|
10289
|
+
): sap.ui.core.Control | null;
|
|
10298
10290
|
/**
|
|
10299
10291
|
* Sets a new value for property {@link #getContainerQuery containerQuery}.
|
|
10300
10292
|
*
|
|
@@ -10629,7 +10621,7 @@ declare namespace sap {
|
|
|
10629
10621
|
* The fixContent to remove or its index or id
|
|
10630
10622
|
*/
|
|
10631
10623
|
vFixContent: int | string | sap.ui.core.Control
|
|
10632
|
-
): sap.ui.core.Control;
|
|
10624
|
+
): sap.ui.core.Control | null;
|
|
10633
10625
|
/**
|
|
10634
10626
|
* Sets a new value for property {@link #getFixContentSize fixContentSize}.
|
|
10635
10627
|
*
|
|
@@ -11008,7 +11000,7 @@ declare namespace sap {
|
|
|
11008
11000
|
* The content to remove or its index or id
|
|
11009
11001
|
*/
|
|
11010
11002
|
vContent: int | string | sap.ui.core.Control
|
|
11011
|
-
): sap.ui.core.Control;
|
|
11003
|
+
): sap.ui.core.Control | null;
|
|
11012
11004
|
/**
|
|
11013
11005
|
* Sets a new value for property {@link #getContainerQuery containerQuery}.
|
|
11014
11006
|
*
|
|
@@ -12204,7 +12196,7 @@ declare namespace sap {
|
|
|
12204
12196
|
* The content to remove or its index or id
|
|
12205
12197
|
*/
|
|
12206
12198
|
vContent: int | string | sap.ui.core.Control
|
|
12207
|
-
): sap.ui.core.Control;
|
|
12199
|
+
): sap.ui.core.Control | null;
|
|
12208
12200
|
/**
|
|
12209
12201
|
* Sets a new value for property {@link #getAllowWrapping allowWrapping}.
|
|
12210
12202
|
*
|
|
@@ -13574,7 +13566,7 @@ declare namespace sap {
|
|
|
13574
13566
|
* The contentArea to remove or its index or id
|
|
13575
13567
|
*/
|
|
13576
13568
|
vContentArea: int | string | sap.ui.core.Control
|
|
13577
|
-
): sap.ui.core.Control;
|
|
13569
|
+
): sap.ui.core.Control | null;
|
|
13578
13570
|
/**
|
|
13579
13571
|
* Resets the size (width or height) of each of the content areas.
|
|
13580
13572
|
*/
|
|
@@ -13961,7 +13953,7 @@ declare namespace sap {
|
|
|
13961
13953
|
* The content to remove or its index or id
|
|
13962
13954
|
*/
|
|
13963
13955
|
vContent: int | string | sap.ui.core.Control
|
|
13964
|
-
): sap.ui.core.Control;
|
|
13956
|
+
): sap.ui.core.Control | null;
|
|
13965
13957
|
/**
|
|
13966
13958
|
* Sets a new value for property {@link #getEnabled enabled}.
|
|
13967
13959
|
*
|
|
@@ -14120,11 +14112,11 @@ declare namespace sap {
|
|
|
14120
14112
|
*/
|
|
14121
14113
|
ShadeD = "ShadeD",
|
|
14122
14114
|
/**
|
|
14123
|
-
* Shade E - available only for
|
|
14115
|
+
* Shade E - available only for SAP Quartz and Horizon themes
|
|
14124
14116
|
*/
|
|
14125
14117
|
ShadeE = "ShadeE",
|
|
14126
14118
|
/**
|
|
14127
|
-
* Shade F - available only for
|
|
14119
|
+
* Shade F - available only for SAP Quartz and Horizon themes
|
|
14128
14120
|
*/
|
|
14129
14121
|
ShadeF = "ShadeF",
|
|
14130
14122
|
}
|
package/types/sap.ui.mdc.d.ts
CHANGED
package/types/sap.ui.rta.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.104.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/rta/api/startAdaptation" {
|
|
4
4
|
/**
|
|
@@ -111,5 +111,7 @@ declare namespace sap {
|
|
|
111
111
|
"sap/ui/rta/service/Property": undefined;
|
|
112
112
|
|
|
113
113
|
"sap/ui/rta/service/Selection": undefined;
|
|
114
|
+
|
|
115
|
+
"sap/ui/rta/util/ReloadManager": undefined;
|
|
114
116
|
}
|
|
115
117
|
}
|
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.104.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -3373,7 +3373,7 @@ declare namespace sap {
|
|
|
3373
3373
|
* The multiLabel to remove or its index or id
|
|
3374
3374
|
*/
|
|
3375
3375
|
vMultiLabel: int | string | sap.ui.core.Control
|
|
3376
|
-
): sap.ui.core.Control;
|
|
3376
|
+
): sap.ui.core.Control | null;
|
|
3377
3377
|
/**
|
|
3378
3378
|
* @SINCE 1.21.1
|
|
3379
3379
|
*
|
|
@@ -4062,7 +4062,7 @@ declare namespace sap {
|
|
|
4062
4062
|
* The cell to remove or its index or id
|
|
4063
4063
|
*/
|
|
4064
4064
|
vCell: int | string | sap.ui.core.Control
|
|
4065
|
-
): sap.ui.core.Control;
|
|
4065
|
+
): sap.ui.core.Control | null;
|
|
4066
4066
|
}
|
|
4067
4067
|
/**
|
|
4068
4068
|
* @SINCE 1.45
|
|
@@ -4212,7 +4212,7 @@ declare namespace sap {
|
|
|
4212
4212
|
* The item to remove or its index or id
|
|
4213
4213
|
*/
|
|
4214
4214
|
vItem: int | string | sap.ui.table.RowActionItem
|
|
4215
|
-
): sap.ui.table.RowActionItem;
|
|
4215
|
+
): sap.ui.table.RowActionItem | null;
|
|
4216
4216
|
/**
|
|
4217
4217
|
* Sets a new value for property {@link #getVisible visible}.
|
|
4218
4218
|
*
|
|
@@ -6612,7 +6612,7 @@ declare namespace sap {
|
|
|
6612
6612
|
* For server-based models you should consider to only make this API call when the index is within the currently
|
|
6613
6613
|
* visible scroll area.
|
|
6614
6614
|
*
|
|
6615
|
-
* @returns The context at this index or null
|
|
6615
|
+
* @returns The context at this index or `null`
|
|
6616
6616
|
*/
|
|
6617
6617
|
getContextByIndex(
|
|
6618
6618
|
/**
|
|
@@ -7311,7 +7311,7 @@ declare namespace sap {
|
|
|
7311
7311
|
* The column to remove or its index or id
|
|
7312
7312
|
*/
|
|
7313
7313
|
vColumn: int | string | sap.ui.table.Column
|
|
7314
|
-
): sap.ui.table.Column;
|
|
7314
|
+
): sap.ui.table.Column | null;
|
|
7315
7315
|
/**
|
|
7316
7316
|
* Removes a extension from the aggregation {@link #getExtension extension}.
|
|
7317
7317
|
*
|
|
@@ -7322,7 +7322,7 @@ declare namespace sap {
|
|
|
7322
7322
|
* The extension to remove or its index or id
|
|
7323
7323
|
*/
|
|
7324
7324
|
vExtension: int | string | sap.ui.core.Control
|
|
7325
|
-
): sap.ui.core.Control;
|
|
7325
|
+
): sap.ui.core.Control | null;
|
|
7326
7326
|
/**
|
|
7327
7327
|
* @SINCE 1.64
|
|
7328
7328
|
*
|
|
@@ -7335,7 +7335,7 @@ declare namespace sap {
|
|
|
7335
7335
|
* The plugin to remove or its index or id
|
|
7336
7336
|
*/
|
|
7337
7337
|
vPlugin: int | string | sap.ui.table.plugins.SelectionPlugin
|
|
7338
|
-
): sap.ui.table.plugins.SelectionPlugin;
|
|
7338
|
+
): sap.ui.table.plugins.SelectionPlugin | null;
|
|
7339
7339
|
/**
|
|
7340
7340
|
* Removes a row from the aggregation {@link #getRows rows}.
|
|
7341
7341
|
*
|
|
@@ -7346,7 +7346,7 @@ declare namespace sap {
|
|
|
7346
7346
|
* The row to remove or its index or id
|
|
7347
7347
|
*/
|
|
7348
7348
|
vRow: int | string | sap.ui.table.Row
|
|
7349
|
-
): sap.ui.table.Row;
|
|
7349
|
+
): sap.ui.table.Row | null;
|
|
7350
7350
|
/**
|
|
7351
7351
|
* Removes the given selection interval from the selection. In case of single selection, only `iIndexTo`
|
|
7352
7352
|
* is removed from the selection.
|