@openui5/ts-types 1.131.1 → 1.132.1

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.1
1
+ // For Library Version: 1.132.1
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  /**
@@ -100,6 +100,8 @@ declare namespace sap {
100
100
 
101
101
  "sap/ui/rta/enablement/TestDelegate": undefined;
102
102
 
103
+ "sap/ui/rta/plugin/annotations/AnnotationChangeDialog": undefined;
104
+
103
105
  "sap/ui/rta/service/Action": undefined;
104
106
 
105
107
  "sap/ui/rta/service/ControllerExtension": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.1
1
+ // For Library Version: 1.132.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.1
1
+ // For Library Version: 1.132.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.1
1
+ // For Library Version: 1.132.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1933,6 +1933,10 @@ declare namespace sap {
1933
1933
  * If this property is set to `true` and the `sortOrder` property is `None`, `sortOrder` is automatically
1934
1934
  * set to `Ascending`. If this property is `true` and `sortOrder` is `None`, the sort indicator is not shown.
1935
1935
  *
1936
+ * **Note:** Even though the `sorted` property has been deprecated, is still required in the UI5 1.x versions
1937
+ * to show the sort indicator. With UI5 2.x, the `sorted` property will be removed and the sort indicator
1938
+ * will be shown based on the `sortOrder`.
1939
+ *
1936
1940
  * @deprecated (since 1.120) - replaced by {@link sap.ui.core.SortOrder SortOrder.None} for the `sortOrder`
1937
1941
  * property
1938
1942
  */
@@ -5021,6 +5025,10 @@ declare namespace sap {
5021
5025
  * If this property is set to `true` and the `sortOrder` property is `None`, `sortOrder` is automatically
5022
5026
  * set to `Ascending`. If this property is `true` and `sortOrder` is `None`, the sort indicator is not shown.
5023
5027
  *
5028
+ * **Note:** Even though the `sorted` property has been deprecated, is still required in the UI5 1.x versions
5029
+ * to show the sort indicator. With UI5 2.x, the `sorted` property will be removed and the sort indicator
5030
+ * will be shown based on the `sortOrder`.
5031
+ *
5024
5032
  * Default value is `false`.
5025
5033
  *
5026
5034
  * @deprecated (since 1.120) - replaced by {@link sap.ui.core.SortOrder SortOrder.None} for the `sortOrder`
@@ -5542,6 +5550,10 @@ declare namespace sap {
5542
5550
  * If this property is set to `true` and the `sortOrder` property is `None`, `sortOrder` is automatically
5543
5551
  * set to `Ascending`. If this property is `true` and `sortOrder` is `None`, the sort indicator is not shown.
5544
5552
  *
5553
+ * **Note:** Even though the `sorted` property has been deprecated, is still required in the UI5 1.x versions
5554
+ * to show the sort indicator. With UI5 2.x, the `sorted` property will be removed and the sort indicator
5555
+ * will be shown based on the `sortOrder`.
5556
+ *
5545
5557
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5546
5558
  *
5547
5559
  * Default value is `false`.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.1
1
+ // For Library Version: 1.132.1
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.1
1
+ // For Library Version: 1.132.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -5819,8 +5819,14 @@ declare namespace sap {
5819
5819
  | `{${string}}`;
5820
5820
 
5821
5821
  /**
5822
- * If set, the provided weekdays are displayed as non-working days. Valid values inside the array are 0
5823
- * to 6. If not set, the weekend defined in the locale settings is displayed as non-working days.
5822
+ * This property sets chosen days of the week as non-working days, and overrides the weekend days defined
5823
+ * in the locale settings. If set, the provided weekdays are displayed as non-working days.
5824
+ *
5825
+ * Users could override the non-working days for each week. Valid values inside the array are from 0
5826
+ * to 6. For example:
5827
+ * - A single day for each week - `[3]`.
5828
+ * - All days for each week - `[0,1,2,3,4,5,6]`.
5829
+ * - None of the days for each week - `[]`. In this case all weekdays are working days.
5824
5830
  *
5825
5831
  * **Note:** Keep in mind that this property sets only weekly-recurring days as non-working. If you need
5826
5832
  * specific dates or dates ranges, such as national holidays, use the `specialDates` aggregation to set
@@ -7703,7 +7709,6 @@ declare namespace sap {
7703
7709
  * of custom elements, such as icons and buttons.
7704
7710
  *
7705
7711
  * @since 1.131
7706
- * @experimental
7707
7712
  */
7708
7713
  endContent?:
7709
7714
  | sap.ui.core.Control[]
@@ -9493,8 +9498,14 @@ declare namespace sap {
9493
9498
  /**
9494
9499
  * Gets current value of property {@link #getNonWorkingDays nonWorkingDays}.
9495
9500
  *
9496
- * If set, the provided weekdays are displayed as non-working days. Valid values inside the array are 0
9497
- * to 6. If not set, the weekend defined in the locale settings is displayed as non-working days.
9501
+ * This property sets chosen days of the week as non-working days, and overrides the weekend days defined
9502
+ * in the locale settings. If set, the provided weekdays are displayed as non-working days.
9503
+ *
9504
+ * Users could override the non-working days for each week. Valid values inside the array are from 0
9505
+ * to 6. For example:
9506
+ * - A single day for each week - `[3]`.
9507
+ * - All days for each week - `[0,1,2,3,4,5,6]`.
9508
+ * - None of the days for each week - `[]`. In this case all weekdays are working days.
9498
9509
  *
9499
9510
  * **Note:** Keep in mind that this property sets only weekly-recurring days as non-working. If you need
9500
9511
  * specific dates or dates ranges, such as national holidays, use the `specialDates` aggregation to set
@@ -9921,8 +9932,14 @@ declare namespace sap {
9921
9932
  /**
9922
9933
  * Sets a new value for property {@link #getNonWorkingDays nonWorkingDays}.
9923
9934
  *
9924
- * If set, the provided weekdays are displayed as non-working days. Valid values inside the array are 0
9925
- * to 6. If not set, the weekend defined in the locale settings is displayed as non-working days.
9935
+ * This property sets chosen days of the week as non-working days, and overrides the weekend days defined
9936
+ * in the locale settings. If set, the provided weekdays are displayed as non-working days.
9937
+ *
9938
+ * Users could override the non-working days for each week. Valid values inside the array are from 0
9939
+ * to 6. For example:
9940
+ * - A single day for each week - `[3]`.
9941
+ * - All days for each week - `[0,1,2,3,4,5,6]`.
9942
+ * - None of the days for each week - `[]`. In this case all weekdays are working days.
9926
9943
  *
9927
9944
  * **Note:** Keep in mind that this property sets only weekly-recurring days as non-working. If you need
9928
9945
  * specific dates or dates ranges, such as national holidays, use the `specialDates` aggregation to set
@@ -18819,7 +18836,6 @@ declare namespace sap {
18819
18836
  * Adds some endContent to the aggregation {@link #getEndContent endContent}.
18820
18837
  *
18821
18838
  * @since 1.131
18822
- * @experimental
18823
18839
  *
18824
18840
  * @returns Reference to `this` in order to allow method chaining
18825
18841
  */
@@ -18833,7 +18849,6 @@ declare namespace sap {
18833
18849
  * Destroys all the endContent in the aggregation {@link #getEndContent endContent}.
18834
18850
  *
18835
18851
  * @since 1.131
18836
- * @experimental
18837
18852
  *
18838
18853
  * @returns Reference to `this` in order to allow method chaining
18839
18854
  */
@@ -18849,7 +18864,6 @@ declare namespace sap {
18849
18864
  * of custom elements, such as icons and buttons.
18850
18865
  *
18851
18866
  * @since 1.131
18852
- * @experimental
18853
18867
  */
18854
18868
  getEndContent(): sap.ui.core.Control[];
18855
18869
  /**
@@ -18901,7 +18915,6 @@ declare namespace sap {
18901
18915
  * returns its index if found or -1 otherwise.
18902
18916
  *
18903
18917
  * @since 1.131
18904
- * @experimental
18905
18918
  *
18906
18919
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
18907
18920
  */
@@ -18915,7 +18928,6 @@ declare namespace sap {
18915
18928
  * Inserts a endContent into the aggregation {@link #getEndContent endContent}.
18916
18929
  *
18917
18930
  * @since 1.131
18918
- * @experimental
18919
18931
  *
18920
18932
  * @returns Reference to `this` in order to allow method chaining
18921
18933
  */
@@ -18944,7 +18956,6 @@ declare namespace sap {
18944
18956
  * Additionally, it unregisters them from the hosting UIArea.
18945
18957
  *
18946
18958
  * @since 1.131
18947
- * @experimental
18948
18959
  *
18949
18960
  * @returns An array of the removed elements (might be empty)
18950
18961
  */
@@ -18965,7 +18976,6 @@ declare namespace sap {
18965
18976
  * Removes a endContent from the aggregation {@link #getEndContent endContent}.
18966
18977
  *
18967
18978
  * @since 1.131
18968
- * @experimental
18969
18979
  *
18970
18980
  * @returns The removed endContent or `null`
18971
18981
  */
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.1
1
+ // For Library Version: 1.132.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.1
1
+ // For Library Version: 1.132.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.1
1
+ // For Library Version: 1.132.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.1
1
+ // For Library Version: 1.132.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.1
1
+ // For Library Version: 1.132.1
2
2
 
3
3
  declare namespace sap {
4
4
  /**