@openui5/types 1.131.0 → 1.132.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.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.0
1
+ // For Library Version: 1.132.0
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  import Control from "sap/ui/core/Control";
@@ -106,6 +106,8 @@ declare namespace sap {
106
106
 
107
107
  "sap/ui/rta/enablement/TestDelegate": undefined;
108
108
 
109
+ "sap/ui/rta/plugin/annotations/AnnotationChangeDialog": undefined;
110
+
109
111
  "sap/ui/rta/service/Action": undefined;
110
112
 
111
113
  "sap/ui/rta/service/ControllerExtension": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.0
1
+ // For Library Version: 1.132.0
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.0
1
+ // For Library Version: 1.132.0
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.0
1
+ // For Library Version: 1.132.0
2
2
 
3
3
  declare module "sap/ui/table/library" {
4
4
  import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
@@ -1974,6 +1974,10 @@ declare module "sap/ui/table/Column" {
1974
1974
  * If this property is set to `true` and the `sortOrder` property is `None`, `sortOrder` is automatically
1975
1975
  * set to `Ascending`. If this property is `true` and `sortOrder` is `None`, the sort indicator is not shown.
1976
1976
  *
1977
+ * **Note:** Even though the `sorted` property has been deprecated, is still required in the UI5 1.x versions
1978
+ * to show the sort indicator. With UI5 2.x, the `sorted` property will be removed and the sort indicator
1979
+ * will be shown based on the `sortOrder`.
1980
+ *
1977
1981
  * Default value is `false`.
1978
1982
  *
1979
1983
  * @deprecated (since 1.120) - replaced by {@link sap.ui.core.SortOrder SortOrder.None} for the `sortOrder`
@@ -2495,6 +2499,10 @@ declare module "sap/ui/table/Column" {
2495
2499
  * If this property is set to `true` and the `sortOrder` property is `None`, `sortOrder` is automatically
2496
2500
  * set to `Ascending`. If this property is `true` and `sortOrder` is `None`, the sort indicator is not shown.
2497
2501
  *
2502
+ * **Note:** Even though the `sorted` property has been deprecated, is still required in the UI5 1.x versions
2503
+ * to show the sort indicator. With UI5 2.x, the `sorted` property will be removed and the sort indicator
2504
+ * will be shown based on the `sortOrder`.
2505
+ *
2498
2506
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2499
2507
  *
2500
2508
  * Default value is `false`.
@@ -2685,6 +2693,10 @@ declare module "sap/ui/table/Column" {
2685
2693
  * If this property is set to `true` and the `sortOrder` property is `None`, `sortOrder` is automatically
2686
2694
  * set to `Ascending`. If this property is `true` and `sortOrder` is `None`, the sort indicator is not shown.
2687
2695
  *
2696
+ * **Note:** Even though the `sorted` property has been deprecated, is still required in the UI5 1.x versions
2697
+ * to show the sort indicator. With UI5 2.x, the `sorted` property will be removed and the sort indicator
2698
+ * will be shown based on the `sortOrder`.
2699
+ *
2688
2700
  * @deprecated (since 1.120) - replaced by {@link sap.ui.core.SortOrder SortOrder.None} for the `sortOrder`
2689
2701
  * property
2690
2702
  */
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.0
1
+ // For Library Version: 1.132.0
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.0
1
+ // For Library Version: 1.132.0
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -1015,8 +1015,14 @@ declare module "sap/ui/unified/Calendar" {
1015
1015
  /**
1016
1016
  * Gets current value of property {@link #getNonWorkingDays nonWorkingDays}.
1017
1017
  *
1018
- * If set, the provided weekdays are displayed as non-working days. Valid values inside the array are 0
1019
- * to 6. If not set, the weekend defined in the locale settings is displayed as non-working days.
1018
+ * This property sets chosen days of the week as non-working days, and overrides the weekend days defined
1019
+ * in the locale settings. If set, the provided weekdays are displayed as non-working days.
1020
+ *
1021
+ * Users could override the non-working days for each week. Valid values inside the array are from 0
1022
+ * to 6. For example:
1023
+ * - A single day for each week - `[3]`.
1024
+ * - All days for each week - `[0,1,2,3,4,5,6]`.
1025
+ * - None of the days for each week - `[]`. In this case all weekdays are working days.
1020
1026
  *
1021
1027
  * **Note:** Keep in mind that this property sets only weekly-recurring days as non-working. If you need
1022
1028
  * specific dates or dates ranges, such as national holidays, use the `specialDates` aggregation to set
@@ -1443,8 +1449,14 @@ declare module "sap/ui/unified/Calendar" {
1443
1449
  /**
1444
1450
  * Sets a new value for property {@link #getNonWorkingDays nonWorkingDays}.
1445
1451
  *
1446
- * If set, the provided weekdays are displayed as non-working days. Valid values inside the array are 0
1447
- * to 6. If not set, the weekend defined in the locale settings is displayed as non-working days.
1452
+ * This property sets chosen days of the week as non-working days, and overrides the weekend days defined
1453
+ * in the locale settings. If set, the provided weekdays are displayed as non-working days.
1454
+ *
1455
+ * Users could override the non-working days for each week. Valid values inside the array are from 0
1456
+ * to 6. For example:
1457
+ * - A single day for each week - `[3]`.
1458
+ * - All days for each week - `[0,1,2,3,4,5,6]`.
1459
+ * - None of the days for each week - `[]`. In this case all weekdays are working days.
1448
1460
  *
1449
1461
  * **Note:** Keep in mind that this property sets only weekly-recurring days as non-working. If you need
1450
1462
  * specific dates or dates ranges, such as national holidays, use the `specialDates` aggregation to set
@@ -1605,8 +1617,14 @@ declare module "sap/ui/unified/Calendar" {
1605
1617
  firstDayOfWeek?: int | PropertyBindingInfo | `{${string}}`;
1606
1618
 
1607
1619
  /**
1608
- * If set, the provided weekdays are displayed as non-working days. Valid values inside the array are 0
1609
- * to 6. If not set, the weekend defined in the locale settings is displayed as non-working days.
1620
+ * This property sets chosen days of the week as non-working days, and overrides the weekend days defined
1621
+ * in the locale settings. If set, the provided weekdays are displayed as non-working days.
1622
+ *
1623
+ * Users could override the non-working days for each week. Valid values inside the array are from 0
1624
+ * to 6. For example:
1625
+ * - A single day for each week - `[3]`.
1626
+ * - All days for each week - `[0,1,2,3,4,5,6]`.
1627
+ * - None of the days for each week - `[]`. In this case all weekdays are working days.
1610
1628
  *
1611
1629
  * **Note:** Keep in mind that this property sets only weekly-recurring days as non-working. If you need
1612
1630
  * specific dates or dates ranges, such as national holidays, use the `specialDates` aggregation to set
@@ -18834,7 +18852,6 @@ declare module "sap/ui/unified/MenuItem" {
18834
18852
  * Adds some endContent to the aggregation {@link #getEndContent endContent}.
18835
18853
  *
18836
18854
  * @since 1.131
18837
- * @experimental
18838
18855
  *
18839
18856
  * @returns Reference to `this` in order to allow method chaining
18840
18857
  */
@@ -18848,7 +18865,6 @@ declare module "sap/ui/unified/MenuItem" {
18848
18865
  * Destroys all the endContent in the aggregation {@link #getEndContent endContent}.
18849
18866
  *
18850
18867
  * @since 1.131
18851
- * @experimental
18852
18868
  *
18853
18869
  * @returns Reference to `this` in order to allow method chaining
18854
18870
  */
@@ -18864,7 +18880,6 @@ declare module "sap/ui/unified/MenuItem" {
18864
18880
  * of custom elements, such as icons and buttons.
18865
18881
  *
18866
18882
  * @since 1.131
18867
- * @experimental
18868
18883
  */
18869
18884
  getEndContent(): Control[];
18870
18885
  /**
@@ -18916,7 +18931,6 @@ declare module "sap/ui/unified/MenuItem" {
18916
18931
  * returns its index if found or -1 otherwise.
18917
18932
  *
18918
18933
  * @since 1.131
18919
- * @experimental
18920
18934
  *
18921
18935
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
18922
18936
  */
@@ -18930,7 +18944,6 @@ declare module "sap/ui/unified/MenuItem" {
18930
18944
  * Inserts a endContent into the aggregation {@link #getEndContent endContent}.
18931
18945
  *
18932
18946
  * @since 1.131
18933
- * @experimental
18934
18947
  *
18935
18948
  * @returns Reference to `this` in order to allow method chaining
18936
18949
  */
@@ -18959,7 +18972,6 @@ declare module "sap/ui/unified/MenuItem" {
18959
18972
  * Additionally, it unregisters them from the hosting UIArea.
18960
18973
  *
18961
18974
  * @since 1.131
18962
- * @experimental
18963
18975
  *
18964
18976
  * @returns An array of the removed elements (might be empty)
18965
18977
  */
@@ -18980,7 +18992,6 @@ declare module "sap/ui/unified/MenuItem" {
18980
18992
  * Removes a endContent from the aggregation {@link #getEndContent endContent}.
18981
18993
  *
18982
18994
  * @since 1.131
18983
- * @experimental
18984
18995
  *
18985
18996
  * @returns The removed endContent or `null`
18986
18997
  */
@@ -19101,7 +19112,6 @@ declare module "sap/ui/unified/MenuItem" {
19101
19112
  * of custom elements, such as icons and buttons.
19102
19113
  *
19103
19114
  * @since 1.131
19104
- * @experimental
19105
19115
  */
19106
19116
  endContent?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
19107
19117
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.0
1
+ // For Library Version: 1.132.0
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.0
1
+ // For Library Version: 1.132.0
2
2
 
3
3
  declare module "sap/ui/webc/common/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.0
1
+ // For Library Version: 1.132.0
2
2
 
3
3
  declare module "sap/ui/webc/fiori/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.0
1
+ // For Library Version: 1.132.0
2
2
 
3
3
  declare module "sap/ui/webc/main/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.0
1
+ // For Library Version: 1.132.0
2
2
 
3
3
  declare module "sap/uxap/library" {
4
4
  /**