@openui5/ts-types 1.103.1 → 1.106.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 +236 -4
- package/types/sap.m.d.ts +2442 -195
- package/types/sap.tnt.d.ts +3 -3
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +31 -31
- package/types/sap.ui.core.d.ts +728 -284
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1117 -5
- package/types/sap.ui.integration.d.ts +138 -76
- package/types/sap.ui.layout.d.ts +7 -7
- package/types/sap.ui.mdc.d.ts +5 -1
- package/types/sap.ui.rta.d.ts +5 -1
- package/types/sap.ui.suite.d.ts +5 -5
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +26 -8
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +146 -19
- package/types/sap.ui.ux3.d.ts +11 -11
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +239 -43
- package/types/sap.ui.webc.main.d.ts +636 -146
- package/types/sap.uxap.d.ts +41 -1
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.106.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -7705,6 +7705,46 @@ declare namespace sap {
|
|
|
7705
7705
|
* If not set, a predefined text is used.
|
|
7706
7706
|
*/
|
|
7707
7707
|
lastColumnLabel?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7708
|
+
|
|
7709
|
+
/**
|
|
7710
|
+
* Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
7711
|
+
* control.
|
|
7712
|
+
*
|
|
7713
|
+
* If not set, a predefined text is used.
|
|
7714
|
+
*/
|
|
7715
|
+
firstColumnBackArrowLabel?:
|
|
7716
|
+
| string
|
|
7717
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7718
|
+
|
|
7719
|
+
/**
|
|
7720
|
+
* Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
7721
|
+
* control.
|
|
7722
|
+
*
|
|
7723
|
+
* If not set, a predefined text is used.
|
|
7724
|
+
*/
|
|
7725
|
+
middleColumnForwardArrowLabel?:
|
|
7726
|
+
| string
|
|
7727
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7728
|
+
|
|
7729
|
+
/**
|
|
7730
|
+
* Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
7731
|
+
* control.
|
|
7732
|
+
*
|
|
7733
|
+
* If not set, a predefined text is used.
|
|
7734
|
+
*/
|
|
7735
|
+
middleColumnBackArrowLabel?:
|
|
7736
|
+
| string
|
|
7737
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7738
|
+
|
|
7739
|
+
/**
|
|
7740
|
+
* Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
7741
|
+
* control.
|
|
7742
|
+
*
|
|
7743
|
+
* If not set, a predefined text is used.
|
|
7744
|
+
*/
|
|
7745
|
+
lastColumnForwardArrowLabel?:
|
|
7746
|
+
| string
|
|
7747
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7708
7748
|
}
|
|
7709
7749
|
|
|
7710
7750
|
interface $GridContainerSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -7821,6 +7861,16 @@ declare namespace sap {
|
|
|
7821
7861
|
*/
|
|
7822
7862
|
layoutXL?: sap.f.GridContainerSettings;
|
|
7823
7863
|
|
|
7864
|
+
/**
|
|
7865
|
+
* Association to controls / IDs which describe this control (see WAI-ARIA attribute aria-describedby).
|
|
7866
|
+
*/
|
|
7867
|
+
ariaDescribedBy?: Array<sap.ui.core.Control | string>;
|
|
7868
|
+
|
|
7869
|
+
/**
|
|
7870
|
+
* Association to controls / IDs which label this control (see WAI-ARIA attribute aria-labelledby).
|
|
7871
|
+
*/
|
|
7872
|
+
ariaLabelledBy?: Array<sap.ui.core.Control | string>;
|
|
7873
|
+
|
|
7824
7874
|
/**
|
|
7825
7875
|
* Fired when the currently active GridSettings change.
|
|
7826
7876
|
*/
|
|
@@ -11173,7 +11223,7 @@ declare namespace sap {
|
|
|
11173
11223
|
* The ariaDescribedBy to be removed or its index or ID
|
|
11174
11224
|
*/
|
|
11175
11225
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
11176
|
-
): sap.ui.core.ID;
|
|
11226
|
+
): sap.ui.core.ID | null;
|
|
11177
11227
|
/**
|
|
11178
11228
|
* @SINCE 1.50
|
|
11179
11229
|
*
|
|
@@ -13503,6 +13553,17 @@ declare namespace sap {
|
|
|
13503
13553
|
* @returns Metadata object describing this class
|
|
13504
13554
|
*/
|
|
13505
13555
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
13556
|
+
/**
|
|
13557
|
+
* Gets current value of property {@link #getFirstColumnBackArrowLabel firstColumnBackArrowLabel}.
|
|
13558
|
+
*
|
|
13559
|
+
* Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13560
|
+
* control.
|
|
13561
|
+
*
|
|
13562
|
+
* If not set, a predefined text is used.
|
|
13563
|
+
*
|
|
13564
|
+
* @returns Value of property `firstColumnBackArrowLabel`
|
|
13565
|
+
*/
|
|
13566
|
+
getFirstColumnBackArrowLabel(): string;
|
|
13506
13567
|
/**
|
|
13507
13568
|
* Gets current value of property {@link #getFirstColumnLabel firstColumnLabel}.
|
|
13508
13569
|
*
|
|
@@ -13514,6 +13575,17 @@ declare namespace sap {
|
|
|
13514
13575
|
* @returns Value of property `firstColumnLabel`
|
|
13515
13576
|
*/
|
|
13516
13577
|
getFirstColumnLabel(): string;
|
|
13578
|
+
/**
|
|
13579
|
+
* Gets current value of property {@link #getLastColumnForwardArrowLabel lastColumnForwardArrowLabel}.
|
|
13580
|
+
*
|
|
13581
|
+
* Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13582
|
+
* control.
|
|
13583
|
+
*
|
|
13584
|
+
* If not set, a predefined text is used.
|
|
13585
|
+
*
|
|
13586
|
+
* @returns Value of property `lastColumnForwardArrowLabel`
|
|
13587
|
+
*/
|
|
13588
|
+
getLastColumnForwardArrowLabel(): string;
|
|
13517
13589
|
/**
|
|
13518
13590
|
* Gets current value of property {@link #getLastColumnLabel lastColumnLabel}.
|
|
13519
13591
|
*
|
|
@@ -13525,6 +13597,28 @@ declare namespace sap {
|
|
|
13525
13597
|
* @returns Value of property `lastColumnLabel`
|
|
13526
13598
|
*/
|
|
13527
13599
|
getLastColumnLabel(): string;
|
|
13600
|
+
/**
|
|
13601
|
+
* Gets current value of property {@link #getMiddleColumnBackArrowLabel middleColumnBackArrowLabel}.
|
|
13602
|
+
*
|
|
13603
|
+
* Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13604
|
+
* control.
|
|
13605
|
+
*
|
|
13606
|
+
* If not set, a predefined text is used.
|
|
13607
|
+
*
|
|
13608
|
+
* @returns Value of property `middleColumnBackArrowLabel`
|
|
13609
|
+
*/
|
|
13610
|
+
getMiddleColumnBackArrowLabel(): string;
|
|
13611
|
+
/**
|
|
13612
|
+
* Gets current value of property {@link #getMiddleColumnForwardArrowLabel middleColumnForwardArrowLabel}.
|
|
13613
|
+
*
|
|
13614
|
+
* Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13615
|
+
* control.
|
|
13616
|
+
*
|
|
13617
|
+
* If not set, a predefined text is used.
|
|
13618
|
+
*
|
|
13619
|
+
* @returns Value of property `middleColumnForwardArrowLabel`
|
|
13620
|
+
*/
|
|
13621
|
+
getMiddleColumnForwardArrowLabel(): string;
|
|
13528
13622
|
/**
|
|
13529
13623
|
* Gets current value of property {@link #getMiddleColumnLabel middleColumnLabel}.
|
|
13530
13624
|
*
|
|
@@ -13536,6 +13630,24 @@ declare namespace sap {
|
|
|
13536
13630
|
* @returns Value of property `middleColumnLabel`
|
|
13537
13631
|
*/
|
|
13538
13632
|
getMiddleColumnLabel(): string;
|
|
13633
|
+
/**
|
|
13634
|
+
* Sets a new value for property {@link #getFirstColumnBackArrowLabel firstColumnBackArrowLabel}.
|
|
13635
|
+
*
|
|
13636
|
+
* Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13637
|
+
* control.
|
|
13638
|
+
*
|
|
13639
|
+
* If not set, a predefined text is used.
|
|
13640
|
+
*
|
|
13641
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
13642
|
+
*
|
|
13643
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
13644
|
+
*/
|
|
13645
|
+
setFirstColumnBackArrowLabel(
|
|
13646
|
+
/**
|
|
13647
|
+
* New value for property `firstColumnBackArrowLabel`
|
|
13648
|
+
*/
|
|
13649
|
+
sFirstColumnBackArrowLabel?: string
|
|
13650
|
+
): this;
|
|
13539
13651
|
/**
|
|
13540
13652
|
* Sets a new value for property {@link #getFirstColumnLabel firstColumnLabel}.
|
|
13541
13653
|
*
|
|
@@ -13554,6 +13666,24 @@ declare namespace sap {
|
|
|
13554
13666
|
*/
|
|
13555
13667
|
sFirstColumnLabel?: string
|
|
13556
13668
|
): this;
|
|
13669
|
+
/**
|
|
13670
|
+
* Sets a new value for property {@link #getLastColumnForwardArrowLabel lastColumnForwardArrowLabel}.
|
|
13671
|
+
*
|
|
13672
|
+
* Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13673
|
+
* control.
|
|
13674
|
+
*
|
|
13675
|
+
* If not set, a predefined text is used.
|
|
13676
|
+
*
|
|
13677
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
13678
|
+
*
|
|
13679
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
13680
|
+
*/
|
|
13681
|
+
setLastColumnForwardArrowLabel(
|
|
13682
|
+
/**
|
|
13683
|
+
* New value for property `lastColumnForwardArrowLabel`
|
|
13684
|
+
*/
|
|
13685
|
+
sLastColumnForwardArrowLabel?: string
|
|
13686
|
+
): this;
|
|
13557
13687
|
/**
|
|
13558
13688
|
* Sets a new value for property {@link #getLastColumnLabel lastColumnLabel}.
|
|
13559
13689
|
*
|
|
@@ -13572,6 +13702,42 @@ declare namespace sap {
|
|
|
13572
13702
|
*/
|
|
13573
13703
|
sLastColumnLabel?: string
|
|
13574
13704
|
): this;
|
|
13705
|
+
/**
|
|
13706
|
+
* Sets a new value for property {@link #getMiddleColumnBackArrowLabel middleColumnBackArrowLabel}.
|
|
13707
|
+
*
|
|
13708
|
+
* Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13709
|
+
* control.
|
|
13710
|
+
*
|
|
13711
|
+
* If not set, a predefined text is used.
|
|
13712
|
+
*
|
|
13713
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
13714
|
+
*
|
|
13715
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
13716
|
+
*/
|
|
13717
|
+
setMiddleColumnBackArrowLabel(
|
|
13718
|
+
/**
|
|
13719
|
+
* New value for property `middleColumnBackArrowLabel`
|
|
13720
|
+
*/
|
|
13721
|
+
sMiddleColumnBackArrowLabel?: string
|
|
13722
|
+
): this;
|
|
13723
|
+
/**
|
|
13724
|
+
* Sets a new value for property {@link #getMiddleColumnForwardArrowLabel middleColumnForwardArrowLabel}.
|
|
13725
|
+
*
|
|
13726
|
+
* Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13727
|
+
* control.
|
|
13728
|
+
*
|
|
13729
|
+
* If not set, a predefined text is used.
|
|
13730
|
+
*
|
|
13731
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
13732
|
+
*
|
|
13733
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
13734
|
+
*/
|
|
13735
|
+
setMiddleColumnForwardArrowLabel(
|
|
13736
|
+
/**
|
|
13737
|
+
* New value for property `middleColumnForwardArrowLabel`
|
|
13738
|
+
*/
|
|
13739
|
+
sMiddleColumnForwardArrowLabel?: string
|
|
13740
|
+
): this;
|
|
13575
13741
|
/**
|
|
13576
13742
|
* Sets a new value for property {@link #getMiddleColumnLabel middleColumnLabel}.
|
|
13577
13743
|
*
|
|
@@ -13937,6 +14103,28 @@ declare namespace sap {
|
|
|
13937
14103
|
* @returns Metadata object describing this class
|
|
13938
14104
|
*/
|
|
13939
14105
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
14106
|
+
/**
|
|
14107
|
+
* Adds some ariaDescribedBy into the association {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
14108
|
+
*
|
|
14109
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
14110
|
+
*/
|
|
14111
|
+
addAriaDescribedBy(
|
|
14112
|
+
/**
|
|
14113
|
+
* The ariaDescribedBy to add; if empty, nothing is inserted
|
|
14114
|
+
*/
|
|
14115
|
+
vAriaDescribedBy: sap.ui.core.ID | sap.ui.core.Control
|
|
14116
|
+
): this;
|
|
14117
|
+
/**
|
|
14118
|
+
* Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
14119
|
+
*
|
|
14120
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
14121
|
+
*/
|
|
14122
|
+
addAriaLabelledBy(
|
|
14123
|
+
/**
|
|
14124
|
+
* The ariaLabelledBy to add; if empty, nothing is inserted
|
|
14125
|
+
*/
|
|
14126
|
+
vAriaLabelledBy: sap.ui.core.ID | sap.ui.core.Control
|
|
14127
|
+
): this;
|
|
13940
14128
|
/**
|
|
13941
14129
|
* Adds some item to the aggregation {@link #getItems items}.
|
|
13942
14130
|
*
|
|
@@ -14302,6 +14490,16 @@ declare namespace sap {
|
|
|
14302
14490
|
* @returns Value of property `allowDenseFill`
|
|
14303
14491
|
*/
|
|
14304
14492
|
getAllowDenseFill(): boolean;
|
|
14493
|
+
/**
|
|
14494
|
+
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
|
|
14495
|
+
* ariaDescribedBy}.
|
|
14496
|
+
*/
|
|
14497
|
+
getAriaDescribedBy(): sap.ui.core.ID[];
|
|
14498
|
+
/**
|
|
14499
|
+
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
|
|
14500
|
+
* ariaLabelledBy}.
|
|
14501
|
+
*/
|
|
14502
|
+
getAriaLabelledBy(): sap.ui.core.ID[];
|
|
14305
14503
|
/**
|
|
14306
14504
|
* Gets current value of property {@link #getContainerQuery containerQuery}.
|
|
14307
14505
|
*
|
|
@@ -14444,6 +14642,18 @@ declare namespace sap {
|
|
|
14444
14642
|
*/
|
|
14445
14643
|
iIndex: int
|
|
14446
14644
|
): this;
|
|
14645
|
+
/**
|
|
14646
|
+
* Removes all the controls in the association named {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
14647
|
+
*
|
|
14648
|
+
* @returns An array of the removed elements (might be empty)
|
|
14649
|
+
*/
|
|
14650
|
+
removeAllAriaDescribedBy(): sap.ui.core.ID[];
|
|
14651
|
+
/**
|
|
14652
|
+
* Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
14653
|
+
*
|
|
14654
|
+
* @returns An array of the removed elements (might be empty)
|
|
14655
|
+
*/
|
|
14656
|
+
removeAllAriaLabelledBy(): sap.ui.core.ID[];
|
|
14447
14657
|
/**
|
|
14448
14658
|
* Removes all the controls from the aggregation {@link #getItems items}.
|
|
14449
14659
|
*
|
|
@@ -14452,17 +14662,39 @@ declare namespace sap {
|
|
|
14452
14662
|
* @returns An array of the removed elements (might be empty)
|
|
14453
14663
|
*/
|
|
14454
14664
|
removeAllItems(): sap.ui.core.Control[];
|
|
14665
|
+
/**
|
|
14666
|
+
* Removes an ariaDescribedBy from the association named {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
14667
|
+
*
|
|
14668
|
+
* @returns The removed ariaDescribedBy or `null`
|
|
14669
|
+
*/
|
|
14670
|
+
removeAriaDescribedBy(
|
|
14671
|
+
/**
|
|
14672
|
+
* The ariaDescribedBy to be removed or its index or ID
|
|
14673
|
+
*/
|
|
14674
|
+
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
14675
|
+
): sap.ui.core.ID | null;
|
|
14676
|
+
/**
|
|
14677
|
+
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
14678
|
+
*
|
|
14679
|
+
* @returns The removed ariaLabelledBy or `null`
|
|
14680
|
+
*/
|
|
14681
|
+
removeAriaLabelledBy(
|
|
14682
|
+
/**
|
|
14683
|
+
* The ariaLabelledBy to be removed or its index or ID
|
|
14684
|
+
*/
|
|
14685
|
+
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
14686
|
+
): sap.ui.core.ID | null;
|
|
14455
14687
|
/**
|
|
14456
14688
|
* Removes an item from the aggregation named `items`.
|
|
14457
14689
|
*
|
|
14458
|
-
* @returns The removed item or null
|
|
14690
|
+
* @returns The removed item or `null`.
|
|
14459
14691
|
*/
|
|
14460
14692
|
removeItem(
|
|
14461
14693
|
/**
|
|
14462
14694
|
* The item to remove or its index or ID.
|
|
14463
14695
|
*/
|
|
14464
14696
|
vItem: int | string | sap.ui.core.Item
|
|
14465
|
-
): sap.ui.core.Control;
|
|
14697
|
+
): sap.ui.core.Control | null;
|
|
14466
14698
|
/**
|
|
14467
14699
|
* @EXPERIMENTAL (since 1.66)
|
|
14468
14700
|
*
|