@openui5/ts-types 1.105.0 → 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 +80 -4
- package/types/sap.m.d.ts +387 -103
- 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 +426 -225
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +3 -3
- package/types/sap.ui.integration.d.ts +64 -33
- package/types/sap.ui.layout.d.ts +7 -7
- package/types/sap.ui.mdc.d.ts +3 -1
- package/types/sap.ui.rta.d.ts +3 -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 +16 -16
- 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 +31 -28
- package/types/sap.ui.webc.main.d.ts +132 -104
- 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
|
/**
|
|
@@ -7861,6 +7861,16 @@ declare namespace sap {
|
|
|
7861
7861
|
*/
|
|
7862
7862
|
layoutXL?: sap.f.GridContainerSettings;
|
|
7863
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
|
+
|
|
7864
7874
|
/**
|
|
7865
7875
|
* Fired when the currently active GridSettings change.
|
|
7866
7876
|
*/
|
|
@@ -11213,7 +11223,7 @@ declare namespace sap {
|
|
|
11213
11223
|
* The ariaDescribedBy to be removed or its index or ID
|
|
11214
11224
|
*/
|
|
11215
11225
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
11216
|
-
): sap.ui.core.ID;
|
|
11226
|
+
): sap.ui.core.ID | null;
|
|
11217
11227
|
/**
|
|
11218
11228
|
* @SINCE 1.50
|
|
11219
11229
|
*
|
|
@@ -14093,6 +14103,28 @@ declare namespace sap {
|
|
|
14093
14103
|
* @returns Metadata object describing this class
|
|
14094
14104
|
*/
|
|
14095
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;
|
|
14096
14128
|
/**
|
|
14097
14129
|
* Adds some item to the aggregation {@link #getItems items}.
|
|
14098
14130
|
*
|
|
@@ -14458,6 +14490,16 @@ declare namespace sap {
|
|
|
14458
14490
|
* @returns Value of property `allowDenseFill`
|
|
14459
14491
|
*/
|
|
14460
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[];
|
|
14461
14503
|
/**
|
|
14462
14504
|
* Gets current value of property {@link #getContainerQuery containerQuery}.
|
|
14463
14505
|
*
|
|
@@ -14600,6 +14642,18 @@ declare namespace sap {
|
|
|
14600
14642
|
*/
|
|
14601
14643
|
iIndex: int
|
|
14602
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[];
|
|
14603
14657
|
/**
|
|
14604
14658
|
* Removes all the controls from the aggregation {@link #getItems items}.
|
|
14605
14659
|
*
|
|
@@ -14608,17 +14662,39 @@ declare namespace sap {
|
|
|
14608
14662
|
* @returns An array of the removed elements (might be empty)
|
|
14609
14663
|
*/
|
|
14610
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;
|
|
14611
14687
|
/**
|
|
14612
14688
|
* Removes an item from the aggregation named `items`.
|
|
14613
14689
|
*
|
|
14614
|
-
* @returns The removed item or null
|
|
14690
|
+
* @returns The removed item or `null`.
|
|
14615
14691
|
*/
|
|
14616
14692
|
removeItem(
|
|
14617
14693
|
/**
|
|
14618
14694
|
* The item to remove or its index or ID.
|
|
14619
14695
|
*/
|
|
14620
14696
|
vItem: int | string | sap.ui.core.Item
|
|
14621
|
-
): sap.ui.core.Control;
|
|
14697
|
+
): sap.ui.core.Control | null;
|
|
14622
14698
|
/**
|
|
14623
14699
|
* @EXPERIMENTAL (since 1.66)
|
|
14624
14700
|
*
|