@openui5/ts-types 1.124.7 → 1.124.8
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 +1 -1
- package/types/sap.m.d.ts +4 -1
- 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.core.d.ts +6 -1
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +46 -32
- 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 +1 -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.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.uxap.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.124.
|
|
1
|
+
// For Library Version: 1.124.8
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -21220,6 +21220,9 @@ declare namespace sap {
|
|
|
21220
21220
|
* attach them to your application.
|
|
21221
21221
|
* This control builds on the {@link sap.m.UploadCollection} control, providing better handling of headers
|
|
21222
21222
|
* and requests, unified behavior of instant and deferred uploads, as well as improved progress indication.
|
|
21223
|
+
* We now ensure that the control handles item insertion and deletion if the items aggregation is not bound
|
|
21224
|
+
* to a model. It allows the connected model to not only manage the insertion and deletion updates but it
|
|
21225
|
+
* also helps to avoid template-related issues and ensures better data handling.
|
|
21223
21226
|
*
|
|
21224
21227
|
* @since 1.63
|
|
21225
21228
|
*/
|
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -279,7 +279,7 @@ declare namespace sap {
|
|
|
279
279
|
"sap/ui/thirdparty/qunit-2": undefined;
|
|
280
280
|
}
|
|
281
281
|
}
|
|
282
|
-
// For Library Version: 1.124.
|
|
282
|
+
// For Library Version: 1.124.8
|
|
283
283
|
|
|
284
284
|
declare module "sap/base/assert" {
|
|
285
285
|
/**
|
|
@@ -15675,6 +15675,11 @@ declare namespace sap {
|
|
|
15675
15675
|
* Native scrolling does not need content wrapper. In this case, ID of the container element should be provided.
|
|
15676
15676
|
*/
|
|
15677
15677
|
scrollContainerId?: string;
|
|
15678
|
+
/**
|
|
15679
|
+
* if true, the delegate event listeners are called before the event listeners of the element; default is
|
|
15680
|
+
* "false".
|
|
15681
|
+
*/
|
|
15682
|
+
callBefore?: boolean;
|
|
15678
15683
|
}
|
|
15679
15684
|
);
|
|
15680
15685
|
|
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.124.
|
|
1
|
+
// For Library Version: 1.124.8
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/AggregationBaseDelegate" {
|
|
4
4
|
import BaseDelegate from "sap/ui/mdc/BaseDelegate";
|
|
@@ -2540,7 +2540,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
2540
2540
|
* This might be extended with payload-dependent filters.
|
|
2541
2541
|
*
|
|
2542
2542
|
* @since 1.101.0
|
|
2543
|
-
* @deprecated
|
|
2543
|
+
* @deprecated (since 1.118) - replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.findConditionsForContext findConditionsForContext}.
|
|
2544
2544
|
*
|
|
2545
2545
|
* @returns `true` if item is selected
|
|
2546
2546
|
*/
|
|
@@ -21328,7 +21328,8 @@ declare namespace sap {
|
|
|
21328
21328
|
*
|
|
21329
21329
|
* Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
|
|
21330
21330
|
*
|
|
21331
|
-
* @deprecated -
|
|
21331
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. Use the `value` property and
|
|
21332
|
+
* `additionalValue` property to bind the control.
|
|
21332
21333
|
*
|
|
21333
21334
|
* @returns Reference to `this` to allow method chaining
|
|
21334
21335
|
*/
|
|
@@ -21401,7 +21402,8 @@ declare namespace sap {
|
|
|
21401
21402
|
*
|
|
21402
21403
|
* Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
|
|
21403
21404
|
*
|
|
21404
|
-
* @deprecated -
|
|
21405
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. Use the `value` property and
|
|
21406
|
+
* `additionalValue` property to bind the control.
|
|
21405
21407
|
*
|
|
21406
21408
|
* @returns Conditions of the field
|
|
21407
21409
|
*/
|
|
@@ -21414,7 +21416,8 @@ declare namespace sap {
|
|
|
21414
21416
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
21415
21417
|
* value of the `dataType` property is ignored.
|
|
21416
21418
|
*
|
|
21417
|
-
* @deprecated -
|
|
21419
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. The type in the binding to
|
|
21420
|
+
* the `value` property is used.
|
|
21418
21421
|
*
|
|
21419
21422
|
* @returns Value of property `dataType`
|
|
21420
21423
|
*/
|
|
@@ -21427,8 +21430,8 @@ declare namespace sap {
|
|
|
21427
21430
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
21428
21431
|
* values of the `dataType` property and the `dataTypeConstraints` property are ignored.
|
|
21429
21432
|
*
|
|
21430
|
-
* @deprecated
|
|
21431
|
-
* used.
|
|
21433
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. The `Constraints` of the type
|
|
21434
|
+
* in the binding to the `value` property is used.
|
|
21432
21435
|
*
|
|
21433
21436
|
* @returns Value of property `dataTypeConstraints`
|
|
21434
21437
|
*/
|
|
@@ -21441,8 +21444,8 @@ declare namespace sap {
|
|
|
21441
21444
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
21442
21445
|
* values of the `dataType` property and the `dataTypeFormatOptions` property are ignored.
|
|
21443
21446
|
*
|
|
21444
|
-
* @deprecated
|
|
21445
|
-
* used.
|
|
21447
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. The `FormatOptions` of the
|
|
21448
|
+
* type in the binding to the `value` property is used.
|
|
21446
21449
|
*
|
|
21447
21450
|
* @returns Value of property `dataTypeFormatOptions`
|
|
21448
21451
|
*/
|
|
@@ -21482,7 +21485,8 @@ declare namespace sap {
|
|
|
21482
21485
|
*
|
|
21483
21486
|
* Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
|
|
21484
21487
|
*
|
|
21485
|
-
* @deprecated -
|
|
21488
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. Use the `value` property and
|
|
21489
|
+
* `additionalValue` property to bind the control.
|
|
21486
21490
|
*
|
|
21487
21491
|
* @returns Reference to `this` to allow method chaining
|
|
21488
21492
|
*/
|
|
@@ -21500,7 +21504,8 @@ declare namespace sap {
|
|
|
21500
21504
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
21501
21505
|
* value of the `dataType` property is ignored.
|
|
21502
21506
|
*
|
|
21503
|
-
* @deprecated -
|
|
21507
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. The type in the binding to
|
|
21508
|
+
* the `value` property is used.
|
|
21504
21509
|
*
|
|
21505
21510
|
* @returns Reference to `this` to allow method chaining
|
|
21506
21511
|
*/
|
|
@@ -21518,8 +21523,8 @@ declare namespace sap {
|
|
|
21518
21523
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
21519
21524
|
* values of the `dataType` property and the `dataTypeConstraints` property are ignored.
|
|
21520
21525
|
*
|
|
21521
|
-
* @deprecated
|
|
21522
|
-
* used.
|
|
21526
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. The `Constraints` of the type
|
|
21527
|
+
* in the binding to the `value` property is used.
|
|
21523
21528
|
*
|
|
21524
21529
|
* @returns Reference to `this` to allow method chaining
|
|
21525
21530
|
*/
|
|
@@ -21537,8 +21542,8 @@ declare namespace sap {
|
|
|
21537
21542
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
21538
21543
|
* values of the `dataType` property and the `dataTypeFormatOptions` property are ignored.
|
|
21539
21544
|
*
|
|
21540
|
-
* @deprecated
|
|
21541
|
-
* used.
|
|
21545
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. The `FormatOptions` of the
|
|
21546
|
+
* type in the binding to the `value` property is used.
|
|
21542
21547
|
*
|
|
21543
21548
|
* @returns Reference to `this` to allow method chaining
|
|
21544
21549
|
*/
|
|
@@ -21551,7 +21556,7 @@ declare namespace sap {
|
|
|
21551
21556
|
/**
|
|
21552
21557
|
* This property must not be set for the `Field`
|
|
21553
21558
|
*
|
|
21554
|
-
* @deprecated
|
|
21559
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`.
|
|
21555
21560
|
*
|
|
21556
21561
|
* @returns `this` to allow method chaining.
|
|
21557
21562
|
*/
|
|
@@ -21591,7 +21596,8 @@ declare namespace sap {
|
|
|
21591
21596
|
*
|
|
21592
21597
|
* Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
|
|
21593
21598
|
*
|
|
21594
|
-
* @deprecated -
|
|
21599
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. Use the `value` property and
|
|
21600
|
+
* `additionalValue` property to bind the control.
|
|
21595
21601
|
*
|
|
21596
21602
|
* @returns Reference to `this` to allow method chaining
|
|
21597
21603
|
*/
|
|
@@ -22548,7 +22554,8 @@ declare namespace sap {
|
|
|
22548
22554
|
*
|
|
22549
22555
|
* Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
|
|
22550
22556
|
*
|
|
22551
|
-
* @deprecated -
|
|
22557
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. Use the `items`
|
|
22558
|
+
* aggregation to bind the control.
|
|
22552
22559
|
*
|
|
22553
22560
|
* @returns Reference to `this` to allow method chaining
|
|
22554
22561
|
*/
|
|
@@ -22616,7 +22623,8 @@ declare namespace sap {
|
|
|
22616
22623
|
*
|
|
22617
22624
|
* Do not use the `conditions` property, use the `items` aggregation instead.
|
|
22618
22625
|
*
|
|
22619
|
-
* @deprecated -
|
|
22626
|
+
* @deprecated (since 1.54) - this property is not supported for the `MultiValueField`. Use the `items`
|
|
22627
|
+
* aggregation to bind the control.
|
|
22620
22628
|
*
|
|
22621
22629
|
* @returns conditions of the field
|
|
22622
22630
|
*/
|
|
@@ -22629,7 +22637,8 @@ declare namespace sap {
|
|
|
22629
22637
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
22630
22638
|
* the value of the `dataType` property is ignored.
|
|
22631
22639
|
*
|
|
22632
|
-
* @deprecated
|
|
22640
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. The type in the
|
|
22641
|
+
* binding to the `items` aggregation is used.
|
|
22633
22642
|
*
|
|
22634
22643
|
* @returns Value of property `dataType`
|
|
22635
22644
|
*/
|
|
@@ -22642,8 +22651,8 @@ declare namespace sap {
|
|
|
22642
22651
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
22643
22652
|
* the values of the `dataType` property and the `dataTypeConstraints` property are ignored.
|
|
22644
22653
|
*
|
|
22645
|
-
* @deprecated -
|
|
22646
|
-
* used.
|
|
22654
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. The type in the
|
|
22655
|
+
* binding to the `items` aggregation is used.
|
|
22647
22656
|
*
|
|
22648
22657
|
* @returns Value of property `dataTypeConstraints`
|
|
22649
22658
|
*/
|
|
@@ -22656,8 +22665,8 @@ declare namespace sap {
|
|
|
22656
22665
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
22657
22666
|
* the values of the `dataType` property and the `dataTypeFormatOptions` property are ignored.
|
|
22658
22667
|
*
|
|
22659
|
-
* @deprecated -
|
|
22660
|
-
* used.
|
|
22668
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. The type in the
|
|
22669
|
+
* binding to the `items` aggregation is used.
|
|
22661
22670
|
*
|
|
22662
22671
|
* @returns Value of property `dataTypeFormatOptions`
|
|
22663
22672
|
*/
|
|
@@ -22700,7 +22709,7 @@ declare namespace sap {
|
|
|
22700
22709
|
/**
|
|
22701
22710
|
* Gets current value of property {@link #getMultipleLines multipleLines}.
|
|
22702
22711
|
*
|
|
22703
|
-
* @deprecated -
|
|
22712
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`.
|
|
22704
22713
|
*
|
|
22705
22714
|
* @returns Value for property `multipleLines`
|
|
22706
22715
|
*/
|
|
@@ -22762,7 +22771,8 @@ declare namespace sap {
|
|
|
22762
22771
|
*
|
|
22763
22772
|
* Do not use the `conditions` property, use the `items` aggregation instead.
|
|
22764
22773
|
*
|
|
22765
|
-
* @deprecated -
|
|
22774
|
+
* @deprecated (since 1.54) - this property is not supported for the `MultiValueField`. Use the `items`
|
|
22775
|
+
* aggregation to bind the control.
|
|
22766
22776
|
*
|
|
22767
22777
|
* @returns Reference to `this` to allow method chaining
|
|
22768
22778
|
*/
|
|
@@ -22779,7 +22789,8 @@ declare namespace sap {
|
|
|
22779
22789
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
22780
22790
|
* the value of the `dataType` property is ignored.
|
|
22781
22791
|
*
|
|
22782
|
-
* @deprecated
|
|
22792
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. The type in the
|
|
22793
|
+
* binding to the `items` aggregation is used.
|
|
22783
22794
|
*
|
|
22784
22795
|
* @returns Reference to `this` to allow method chaining
|
|
22785
22796
|
*/
|
|
@@ -22797,7 +22808,8 @@ declare namespace sap {
|
|
|
22797
22808
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
22798
22809
|
* the values of the `dataType` property and the `dataTypeConstraints` property are ignored.
|
|
22799
22810
|
*
|
|
22800
|
-
* @deprecated
|
|
22811
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. The type in the
|
|
22812
|
+
* binding to the `items` aggregation is used.
|
|
22801
22813
|
*
|
|
22802
22814
|
* @returns Reference to `this` to allow method chaining
|
|
22803
22815
|
*/
|
|
@@ -22815,7 +22827,8 @@ declare namespace sap {
|
|
|
22815
22827
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
22816
22828
|
* the values of the `dataType` property and the `dataTypeFormatOptions` property are ignored.
|
|
22817
22829
|
*
|
|
22818
|
-
* @deprecated
|
|
22830
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. The type in the
|
|
22831
|
+
* binding to the `items` aggregation is used.
|
|
22819
22832
|
*
|
|
22820
22833
|
* @returns Reference to `this` to allow method chaining
|
|
22821
22834
|
*/
|
|
@@ -22860,7 +22873,7 @@ declare namespace sap {
|
|
|
22860
22873
|
/**
|
|
22861
22874
|
* This property must not be set for the `MultiValueField` control.
|
|
22862
22875
|
*
|
|
22863
|
-
* @deprecated
|
|
22876
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField` control.
|
|
22864
22877
|
*
|
|
22865
22878
|
* @returns `this` to allow method chaining.
|
|
22866
22879
|
*/
|
|
@@ -22873,7 +22886,7 @@ declare namespace sap {
|
|
|
22873
22886
|
/**
|
|
22874
22887
|
* Sets a new value for property {@link #getMultipleLines multipleLines}.
|
|
22875
22888
|
*
|
|
22876
|
-
* @deprecated -
|
|
22889
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`.
|
|
22877
22890
|
*
|
|
22878
22891
|
* @returns Reference to `this` to allow method chaining
|
|
22879
22892
|
*/
|
|
@@ -22888,7 +22901,8 @@ declare namespace sap {
|
|
|
22888
22901
|
*
|
|
22889
22902
|
* Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
|
|
22890
22903
|
*
|
|
22891
|
-
* @deprecated -
|
|
22904
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. Use the `items`
|
|
22905
|
+
* aggregation to bind the control.
|
|
22892
22906
|
*
|
|
22893
22907
|
* @returns Reference to `this` to allow method chaining
|
|
22894
22908
|
*/
|
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED