@openui5/types 1.133.0 → 1.134.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.133.0
1
+ // For Library Version: 1.134.0
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.133.0
1
+ // For Library Version: 1.134.0
2
2
 
3
3
  declare module "sap/ui/fl/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.133.0
1
+ // For Library Version: 1.134.0
2
2
 
3
3
  declare module "sap/ui/integration/library" {
4
4
  import { URI } from "sap/ui/core/library";
@@ -4966,8 +4966,6 @@ declare namespace sap {
4966
4966
 
4967
4967
  "sap/ui/integration/util/ManifestResolver": undefined;
4968
4968
 
4969
- "sap/ui/integration/util/openCardShowMore": undefined;
4970
-
4971
4969
  "sap/ui/integration/util/RequestDataProvider": undefined;
4972
4970
 
4973
4971
  "sap/ui/integration/util/SkeletonCard": undefined;
@@ -1,10 +1,12 @@
1
- // For Library Version: 1.133.0
1
+ // For Library Version: 1.134.0
2
2
 
3
3
  declare module "sap/ui/layout/library" {
4
4
  import Control from "sap/ui/core/Control";
5
5
 
6
6
  import GridLayoutBase from "sap/ui/layout/cssgrid/GridLayoutBase";
7
7
 
8
+ import { CSSGapShortHand } from "sap/ui/core/library";
9
+
8
10
  /**
9
11
  * Available Background Design.
10
12
  *
@@ -373,7 +375,7 @@ declare module "sap/ui/layout/library" {
373
375
  *
374
376
  * @since 1.60.0
375
377
  */
376
- type CSSGridGapShortHand = string;
378
+ type CSSGridGapShortHand = CSSGapShortHand;
377
379
 
378
380
  /**
379
381
  * A string type that represents one or two grid lines. Used to define the position and size of a single
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.133.0
1
+ // For Library Version: 1.134.0
2
2
 
3
3
  declare module "sap/ui/mdc/AggregationBaseDelegate" {
4
4
  import BaseDelegate from "sap/ui/mdc/BaseDelegate";
@@ -1630,7 +1630,9 @@ declare module "sap/ui/mdc/FilterBarDelegate" {
1630
1630
  /**
1631
1631
  * Status of the validation as returned via {@link sap.ui.mdc.filterbar.FilterBarBase#checkValidationState checkValidationState}
1632
1632
  */
1633
- status: FilterBarValidationStatus;
1633
+ status:
1634
+ | FilterBarValidationStatus
1635
+ | keyof typeof FilterBarValidationStatus;
1634
1636
  }
1635
1637
  ): void;
1636
1638
  }
@@ -2522,7 +2524,7 @@ declare module "sap/ui/mdc/util/TypeMap" {
2522
2524
  * Class path as `string` where each name is separated by '.'
2523
2525
  */
2524
2526
  sDataType: string
2525
- ): (p1: SimpleType) => void;
2527
+ ): new () => SimpleType;
2526
2528
  /**
2527
2529
  * Gets the data type class name for a given name or alias.
2528
2530
  *
@@ -3739,6 +3741,170 @@ declare module "sap/ui/mdc/library" {
3739
3741
  }
3740
3742
  }
3741
3743
 
3744
+ declare module "sap/ui/mdc/actiontoolbar/ActionToolbarAction" {
3745
+ import { default as Control, $ControlSettings } from "sap/ui/core/Control";
3746
+
3747
+ import { IOverflowToolbarContent } from "sap/m/library";
3748
+
3749
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
3750
+
3751
+ import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
3752
+
3753
+ /**
3754
+ * The action for an {@link sap.ui.mdc.ActionToolbar ActionToolbar} control with given layout information
3755
+ * that determines where the wrapped control is displayed on the `ActionToolbar`.
3756
+ *
3757
+ * @since 1.58
3758
+ */
3759
+ export default class ActionToolbarAction
3760
+ extends Control
3761
+ implements IOverflowToolbarContent
3762
+ {
3763
+ __implements__sap_m_IOverflowToolbarContent: boolean;
3764
+ /**
3765
+ * Constructor for a new ActionToolbarAction.
3766
+ *
3767
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
3768
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3769
+ * of the syntax of the settings object.
3770
+ */
3771
+ constructor(
3772
+ /**
3773
+ * Initial settings for the new control
3774
+ */
3775
+ mSettings?: $ActionToolbarActionSettings
3776
+ );
3777
+ /**
3778
+ * Constructor for a new ActionToolbarAction.
3779
+ *
3780
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
3781
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3782
+ * of the syntax of the settings object.
3783
+ */
3784
+ constructor(
3785
+ /**
3786
+ * ID for the new control, generated automatically if no ID is given
3787
+ */
3788
+ sId?: string,
3789
+ /**
3790
+ * Initial settings for the new control
3791
+ */
3792
+ mSettings?: $ActionToolbarActionSettings
3793
+ );
3794
+
3795
+ /**
3796
+ * Creates a new subclass of class sap.ui.mdc.actiontoolbar.ActionToolbarAction with name `sClassName` and
3797
+ * enriches it with the information contained in `oClassInfo`.
3798
+ *
3799
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
3800
+ *
3801
+ *
3802
+ * @returns Created class / constructor function
3803
+ */
3804
+ static extend<T extends Record<string, unknown>>(
3805
+ /**
3806
+ * Name of the class being created
3807
+ */
3808
+ sClassName: string,
3809
+ /**
3810
+ * Object literal with information about the class
3811
+ */
3812
+ oClassInfo?: sap.ClassInfo<T, ActionToolbarAction>,
3813
+ /**
3814
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3815
+ * used by this class
3816
+ */
3817
+ FNMetaImpl?: Function
3818
+ ): Function;
3819
+ /**
3820
+ * Returns a metadata object for class sap.ui.mdc.actiontoolbar.ActionToolbarAction.
3821
+ *
3822
+ *
3823
+ * @returns Metadata object describing this class
3824
+ */
3825
+ static getMetadata(): ElementMetadata;
3826
+ /**
3827
+ * Destroys the action in the aggregation {@link #getAction action}.
3828
+ *
3829
+ *
3830
+ * @returns Reference to `this` in order to allow method chaining
3831
+ */
3832
+ destroyAction(): this;
3833
+ /**
3834
+ * Gets content of aggregation {@link #getAction action}.
3835
+ *
3836
+ * The control that is displayed on the `ActionToolbar`.
3837
+ */
3838
+ getAction(): Control;
3839
+ /**
3840
+ * Gets current value of property {@link #getLayoutInformation layoutInformation}.
3841
+ *
3842
+ * Contains the information where the action is displayed on the `ActionToolbar`.
3843
+ *
3844
+ * Default value is `...see text or source`.
3845
+ *
3846
+ *
3847
+ * @returns Value of property `layoutInformation`
3848
+ */
3849
+ getLayoutInformation(): object;
3850
+ /**
3851
+ * Observes changes in `Action` aggregation.
3852
+ *
3853
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3854
+ */
3855
+ observeChanges(
3856
+ /**
3857
+ * Changes
3858
+ */
3859
+ oChanges: object
3860
+ ): void;
3861
+ /**
3862
+ * Sets the aggregated {@link #getAction action}.
3863
+ *
3864
+ *
3865
+ * @returns Reference to `this` in order to allow method chaining
3866
+ */
3867
+ setAction(
3868
+ /**
3869
+ * The action to set
3870
+ */
3871
+ oAction: Control
3872
+ ): this;
3873
+ /**
3874
+ * Sets a new value for property {@link #getLayoutInformation layoutInformation}.
3875
+ *
3876
+ * Contains the information where the action is displayed on the `ActionToolbar`.
3877
+ *
3878
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3879
+ *
3880
+ * Default value is `...see text or source`.
3881
+ *
3882
+ *
3883
+ * @returns Reference to `this` in order to allow method chaining
3884
+ */
3885
+ setLayoutInformation(
3886
+ /**
3887
+ * New value for property `layoutInformation`
3888
+ */
3889
+ oLayoutInformation?: object
3890
+ ): this;
3891
+ }
3892
+ /**
3893
+ * Describes the settings that can be provided to the ActionToolbarAction constructor.
3894
+ */
3895
+ export interface $ActionToolbarActionSettings extends $ControlSettings {
3896
+ /**
3897
+ * Contains the information where the action is displayed on the `ActionToolbar`.
3898
+ */
3899
+ layoutInformation?: object | PropertyBindingInfo | `{${string}}`;
3900
+
3901
+ /**
3902
+ * The control that is displayed on the `ActionToolbar`.
3903
+ */
3904
+ action?: Control;
3905
+ }
3906
+ }
3907
+
3742
3908
  declare module "sap/ui/mdc/Chart" {
3743
3909
  import { default as Control, $ControlSettings } from "sap/ui/mdc/Control";
3744
3910
 
@@ -7287,15 +7453,15 @@ declare module "sap/ui/mdc/enums/FilterBarValidationStatus" {
7287
7453
  /**
7288
7454
  * Filter field in error state.
7289
7455
  */
7290
- FieldInErrorState = "undefined",
7456
+ FieldInErrorState = "FieldInErrorState",
7291
7457
  /**
7292
7458
  * No errors detected.
7293
7459
  */
7294
- NoError = "undefined",
7460
+ NoError = "NoError",
7295
7461
  /**
7296
7462
  * Required filter field without a value.
7297
7463
  */
7298
- RequiredHasNoValue = "undefined",
7464
+ RequiredHasNoValue = "RequiredHasNoValue",
7299
7465
  }
7300
7466
  export default FilterBarValidationStatus;
7301
7467
  }
@@ -8028,16 +8194,16 @@ declare module "sap/ui/mdc/enums/OperatorValueType" {
8028
8194
  /**
8029
8195
  * The `Type` of the `Field` or `FilterField` using the `Operator` is used.
8030
8196
  */
8031
- Self = "self",
8197
+ Self = "Self",
8032
8198
  /**
8033
8199
  * The `Type` of the `Field` or `FilterField` using the `Operator` is used for validation, but the user
8034
8200
  * input is used as value.
8035
8201
  */
8036
- SelfNoParse = "selfNoParse",
8202
+ SelfNoParse = "SelfNoParse",
8037
8203
  /**
8038
8204
  * A simple string type is used to display static text.
8039
8205
  */
8040
- Static = "static",
8206
+ Static = "Static",
8041
8207
  }
8042
8208
  export default OperatorValueType;
8043
8209
  }
@@ -8060,7 +8226,7 @@ declare module "sap/ui/mdc/enums/ReasonMode" {
8060
8226
  /**
8061
8227
  * Used if the mentioned reasons are not applicable.
8062
8228
  */
8063
- Unclear = "",
8229
+ Unclear = "Unclear",
8064
8230
  /**
8065
8231
  * The applied variant is marked as Apply Automatically.
8066
8232
  */
@@ -12902,7 +13068,7 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
12902
13068
  * - `{@link sap.ui.mdc.enums.ReasonMode.Go}`: Search is triggered based on pressing the Go button
12903
13069
  * - `{@link sap.ui.mdc.enums.ReasonMode.Unclear}`: Any other reasons for the search
12904
13070
  */
12905
- reason?: ReasonMode;
13071
+ reason?: ReasonMode | keyof typeof ReasonMode;
12906
13072
  }
12907
13073
 
12908
13074
  /**
@@ -12915,19 +13081,62 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
12915
13081
  }
12916
13082
 
12917
13083
  declare module "sap/ui/mdc/filterbar/IFilterContainer" {
13084
+ import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
13085
+
12918
13086
  import FilterField from "sap/ui/mdc/FilterField";
12919
13087
 
12920
13088
  import Control from "sap/ui/core/Control";
12921
13089
 
13090
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
13091
+
12922
13092
  /**
12923
13093
  * The `IFilterContainer` is the base container for the visualization of the filter items in the {@link sap.ui.mdc.FilterBar FilterBar }
12924
13094
  * control.
12925
13095
  *
12926
13096
  * @since 1.61.0
12927
13097
  */
12928
- export default class IFilterContainer {
13098
+ export default class IFilterContainer extends UI5Element {
13099
+ /**
13100
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
13101
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
13102
+ * of the syntax of the settings object.
13103
+ *
13104
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.core.Element#constructor sap.ui.core.Element }
13105
+ * can be used.
13106
+ */
12929
13107
  constructor();
12930
13108
 
13109
+ /**
13110
+ * Creates a new subclass of class sap.ui.mdc.filterbar.IFilterContainer with name `sClassName` and enriches
13111
+ * it with the information contained in `oClassInfo`.
13112
+ *
13113
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
13114
+ *
13115
+ *
13116
+ * @returns Created class / constructor function
13117
+ */
13118
+ static extend<T extends Record<string, unknown>>(
13119
+ /**
13120
+ * Name of the class being created
13121
+ */
13122
+ sClassName: string,
13123
+ /**
13124
+ * Object literal with information about the class
13125
+ */
13126
+ oClassInfo?: sap.ClassInfo<T, IFilterContainer>,
13127
+ /**
13128
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
13129
+ * used by this class
13130
+ */
13131
+ FNMetaImpl?: Function
13132
+ ): Function;
13133
+ /**
13134
+ * Returns a metadata object for class sap.ui.mdc.filterbar.IFilterContainer.
13135
+ *
13136
+ *
13137
+ * @returns Metadata object describing this class
13138
+ */
13139
+ static getMetadata(): ElementMetadata;
12931
13140
  /**
12932
13141
  * Overwrites the default exit to clean up the created layout properly.
12933
13142
  */
@@ -12973,6 +13182,10 @@ declare module "sap/ui/mdc/filterbar/IFilterContainer" {
12973
13182
  oControl: FilterField
12974
13183
  ): void;
12975
13184
  }
13185
+ /**
13186
+ * Describes the settings that can be provided to the IFilterContainer constructor.
13187
+ */
13188
+ export interface $IFilterContainerSettings extends $ElementSettings {}
12976
13189
  }
12977
13190
 
12978
13191
  declare module "sap/ui/mdc/filterbar/vh/FilterBar" {
@@ -25104,6 +25317,8 @@ declare module "sap/ui/mdc/valuehelp/Popover" {
25104
25317
 
25105
25318
  declare namespace sap {
25106
25319
  interface IUI5DefineDependencyNames {
25320
+ "sap/ui/mdc/actiontoolbar/ActionToolbarAction": undefined;
25321
+
25107
25322
  "sap/ui/mdc/AggregationBaseDelegate": undefined;
25108
25323
 
25109
25324
  "sap/ui/mdc/BaseDelegate": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.133.0
1
+ // For Library Version: 1.134.0
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  import Control from "sap/ui/core/Control";
@@ -96,6 +96,81 @@ declare module "sap/ui/rta/enablement/TestDelegate" {
96
96
  export default TestDelegate;
97
97
  }
98
98
 
99
+ declare module "sap/ui/rta/plugin/annotations/AnnotationChangeDialog" {
100
+ /**
101
+ * Annotation change definition
102
+ */
103
+ export type AnnotationChangeDefinition = {
104
+ /**
105
+ * Change type
106
+ */
107
+ annotationChangeType: string;
108
+ /**
109
+ * Change content
110
+ */
111
+ content: {
112
+ /**
113
+ * Path of the property
114
+ */
115
+ annotationPath: string;
116
+ /**
117
+ * New value
118
+ */
119
+ value: string;
120
+ };
121
+ /**
122
+ * Url of the OData service
123
+ */
124
+ serviceUrl: string;
125
+ };
126
+
127
+ /**
128
+ * Annotation change info
129
+ */
130
+ export type AnnotationChangeInfo = {
131
+ /**
132
+ * Url of the OData service
133
+ */
134
+ serviceUrl: string;
135
+ /**
136
+ * Array of properties
137
+ */
138
+ properties: Array<{
139
+ /**
140
+ * Path of the property
141
+ */
142
+ annotationPath: string;
143
+ /**
144
+ * Name of the property
145
+ */
146
+ propertyName: string;
147
+ /**
148
+ * Current value of the property
149
+ */
150
+ currentValue: string;
151
+ }>;
152
+ /**
153
+ * Array of possible values for value list type properties
154
+ */
155
+ possibleValues: Array<{
156
+ /**
157
+ * Key of the option
158
+ */
159
+ key: string;
160
+ /**
161
+ * Text of the option
162
+ */
163
+ text: string;
164
+ }>;
165
+ /**
166
+ * Name of the property that should be filtered for initially
167
+ */
168
+ preSelectedProperty?: string;
169
+ };
170
+
171
+ export type getAnnotationChangeInfo = () => AnnotationChangeInfo;
172
+ }
173
+
99
174
  declare namespace sap {
100
175
  interface IUI5DefineDependencyNames {
101
176
  "sap/ui/rta/api/startAdaptation": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.133.0
1
+ // For Library Version: 1.134.0
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.133.0
1
+ // For Library Version: 1.134.0
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.133.0
1
+ // For Library Version: 1.134.0
2
2
 
3
3
  declare module "sap/ui/table/library" {
4
4
  import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.133.0
1
+ // For Library Version: 1.134.0
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.133.0
1
+ // For Library Version: 1.134.0
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -948,7 +948,10 @@ declare module "sap/ui/unified/Calendar" {
948
948
  /**
949
949
  * Gets current value of property {@link #getIntervalSelection intervalSelection}.
950
950
  *
951
- * If set, interval selection is allowed
951
+ * Determines if an interval of dates can be selected.
952
+ *
953
+ * **Note:** This property should be set to `false` if `singleSelection` is set to `false`, as selecting
954
+ * multiple intervals is not supported.
952
955
  *
953
956
  * Default value is `false`.
954
957
  *
@@ -1095,7 +1098,10 @@ declare module "sap/ui/unified/Calendar" {
1095
1098
  /**
1096
1099
  * Gets current value of property {@link #getSingleSelection singleSelection}.
1097
1100
  *
1098
- * If set, only a single date or interval, if intervalSelection is enabled, can be selected
1101
+ * Determines if a single date or single interval, when `intervalSelection` is set to `true`, can be selected.
1102
+ *
1103
+ * **Note:** This property should be set to `true` if `intervalSelection` is set to `true`, as selecting
1104
+ * multiple intervals is not supported.
1099
1105
  *
1100
1106
  * Default value is `true`.
1101
1107
  *
@@ -1369,24 +1375,6 @@ declare module "sap/ui/unified/Calendar" {
1369
1375
  */
1370
1376
  oInitialFocusedDate?: object
1371
1377
  ): this;
1372
- /**
1373
- * Sets a new value for property {@link #getIntervalSelection intervalSelection}.
1374
- *
1375
- * If set, interval selection is allowed
1376
- *
1377
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1378
- *
1379
- * Default value is `false`.
1380
- *
1381
- *
1382
- * @returns Reference to `this` in order to allow method chaining
1383
- */
1384
- setIntervalSelection(
1385
- /**
1386
- * New value for property `intervalSelection`
1387
- */
1388
- bIntervalSelection?: boolean
1389
- ): this;
1390
1378
  /**
1391
1379
  * Sets the associated {@link #getLegend legend}.
1392
1380
  *
@@ -1546,24 +1534,6 @@ declare module "sap/ui/unified/Calendar" {
1546
1534
  */
1547
1535
  bShowWeekNumbers?: boolean
1548
1536
  ): this;
1549
- /**
1550
- * Sets a new value for property {@link #getSingleSelection singleSelection}.
1551
- *
1552
- * If set, only a single date or interval, if intervalSelection is enabled, can be selected
1553
- *
1554
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1555
- *
1556
- * Default value is `true`.
1557
- *
1558
- *
1559
- * @returns Reference to `this` in order to allow method chaining
1560
- */
1561
- setSingleSelection(
1562
- /**
1563
- * New value for property `singleSelection`
1564
- */
1565
- bSingleSelection?: boolean
1566
- ): this;
1567
1537
  /**
1568
1538
  * Sets a new value for property {@link #getWidth width}.
1569
1539
  *
@@ -1589,12 +1559,18 @@ declare module "sap/ui/unified/Calendar" {
1589
1559
  */
1590
1560
  export interface $CalendarSettings extends $ControlSettings {
1591
1561
  /**
1592
- * If set, interval selection is allowed
1562
+ * Determines if an interval of dates can be selected.
1563
+ *
1564
+ * **Note:** This property should be set to `false` if `singleSelection` is set to `false`, as selecting
1565
+ * multiple intervals is not supported.
1593
1566
  */
1594
1567
  intervalSelection?: boolean | PropertyBindingInfo | `{${string}}`;
1595
1568
 
1596
1569
  /**
1597
- * If set, only a single date or interval, if intervalSelection is enabled, can be selected
1570
+ * Determines if a single date or single interval, when `intervalSelection` is set to `true`, can be selected.
1571
+ *
1572
+ * **Note:** This property should be set to `true` if `intervalSelection` is set to `true`, as selecting
1573
+ * multiple intervals is not supported.
1598
1574
  */
1599
1575
  singleSelection?: boolean | PropertyBindingInfo | `{${string}}`;
1600
1576
 
@@ -4974,7 +4950,10 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
4974
4950
  /**
4975
4951
  * Gets current value of property {@link #getIntervalSelection intervalSelection}.
4976
4952
  *
4977
- * If set, interval selection is allowed
4953
+ * Determines if an interval of dates can be selected.
4954
+ *
4955
+ * **Note:** This property should be set to `false` if `_singleSelection` is set to `false`, as selecting
4956
+ * multiple intervals is not supported.
4978
4957
  *
4979
4958
  * Default value is `false`.
4980
4959
  *
@@ -5150,7 +5129,10 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
5150
5129
  /**
5151
5130
  * Sets a new value for property {@link #getIntervalSelection intervalSelection}.
5152
5131
  *
5153
- * If set, interval selection is allowed
5132
+ * Determines if an interval of dates can be selected.
5133
+ *
5134
+ * **Note:** This property should be set to `false` if `_singleSelection` is set to `false`, as selecting
5135
+ * multiple intervals is not supported.
5154
5136
  *
5155
5137
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5156
5138
  *
@@ -5273,7 +5255,10 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
5273
5255
  months?: int | PropertyBindingInfo | `{${string}}`;
5274
5256
 
5275
5257
  /**
5276
- * If set, interval selection is allowed
5258
+ * Determines if an interval of dates can be selected.
5259
+ *
5260
+ * **Note:** This property should be set to `false` if `_singleSelection` is set to `false`, as selecting
5261
+ * multiple intervals is not supported.
5277
5262
  *
5278
5263
  * @since 1.74
5279
5264
  */
@@ -7294,7 +7279,10 @@ declare module "sap/ui/unified/calendar/YearPicker" {
7294
7279
  /**
7295
7280
  * Gets current value of property {@link #getIntervalSelection intervalSelection}.
7296
7281
  *
7297
- * If set, interval selection is allowed
7282
+ * Determines if an interval of dates can be selected.
7283
+ *
7284
+ * **Note:** This property should be set to `false` if `_singleSelection` is set to `false`, as selecting
7285
+ * multiple intervals is not supported.
7298
7286
  *
7299
7287
  * Default value is `false`.
7300
7288
  *
@@ -7461,7 +7449,10 @@ declare module "sap/ui/unified/calendar/YearPicker" {
7461
7449
  /**
7462
7450
  * Sets a new value for property {@link #getIntervalSelection intervalSelection}.
7463
7451
  *
7464
- * If set, interval selection is allowed
7452
+ * Determines if an interval of dates can be selected.
7453
+ *
7454
+ * **Note:** This property should be set to `false` if `_singleSelection` is set to `false`, as selecting
7455
+ * multiple intervals is not supported.
7465
7456
  *
7466
7457
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7467
7458
  *
@@ -7552,7 +7543,10 @@ declare module "sap/ui/unified/calendar/YearPicker" {
7552
7543
  years?: int | PropertyBindingInfo | `{${string}}`;
7553
7544
 
7554
7545
  /**
7555
- * If set, interval selection is allowed
7546
+ * Determines if an interval of dates can be selected.
7547
+ *
7548
+ * **Note:** This property should be set to `false` if `_singleSelection` is set to `false`, as selecting
7549
+ * multiple intervals is not supported.
7556
7550
  *
7557
7551
  * @since 1.74
7558
7552
  */
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.133.0
1
+ // For Library Version: 1.134.0
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.133.0
1
+ // For Library Version: 1.134.0
2
2
 
3
3
  declare module "sap/ui/webc/common/library" {}
4
4