@openui5/ts-types 1.117.1 → 1.119.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/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.119.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -131,23 +131,28 @@ declare namespace sap {
131
131
  namespace p13n {
132
132
  /**
133
133
  * @since 1.97
134
- * @experimental
135
134
  *
136
135
  * Interface for P13nPopup which are suitable as content for the `sap.m.p13n.Popup`. Implementation of this
137
136
  * interface should include the following methods:
138
137
  * - `getTitle`
138
+ * - `getVerticalScrolling`
139
139
  */
140
140
  interface IContent {
141
141
  __implements__sap_m_p13n_IContent: boolean;
142
142
 
143
143
  /**
144
- * @experimental
145
- *
146
144
  * Returns the title, which should be displayed in the P13nPopup to describe related content.
147
145
  *
148
146
  * @returns The title for the corresponding content to be displayed in the `sap.m.p13n.Popup`.
149
147
  */
150
148
  getTitle(): string;
149
+ /**
150
+ * Optionally returns the enablement of the contents vertical scrolling in case only one panel is used to
151
+ * determine if the content provides its own scrolling capabilites.
152
+ *
153
+ * @returns The enablement of the vertical scrolling enablement for the `sap.m.p13n.Popup`.
154
+ */
155
+ getVerticalScrolling?(): boolean;
151
156
  }
152
157
 
153
158
  interface $BasePanelSettings extends sap.ui.core.$ControlSettings {
@@ -291,6 +296,14 @@ declare namespace sap {
291
296
  | Function
292
297
  | sap.ui.base.ManagedObject.PropertyBindingInfo
293
298
  | `{${string}}`;
299
+
300
+ /**
301
+ * Defines the multi-selection mode for the inner list control.
302
+ */
303
+ multiSelectMode?:
304
+ | sap.m.MultiSelectMode
305
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
306
+ | `{${string}}`;
294
307
  }
295
308
 
296
309
  interface $SortPanelSettings
@@ -1510,6 +1523,16 @@ declare namespace sap {
1510
1523
  * @returns Value of property `itemFactory`
1511
1524
  */
1512
1525
  getItemFactory(): Function;
1526
+ /**
1527
+ * Gets current value of property {@link #getMultiSelectMode multiSelectMode}.
1528
+ *
1529
+ * Defines the multi-selection mode for the inner list control.
1530
+ *
1531
+ * Default value is `ClearAll`.
1532
+ *
1533
+ * @returns Value of property `multiSelectMode`
1534
+ */
1535
+ getMultiSelectMode(): sap.m.MultiSelectMode;
1513
1536
  /**
1514
1537
  * Gets current value of property {@link #getShowHeader showHeader}.
1515
1538
  *
@@ -1602,6 +1625,23 @@ declare namespace sap {
1602
1625
  */
1603
1626
  fnItemFactory: Function
1604
1627
  ): this;
1628
+ /**
1629
+ * Sets a new value for property {@link #getMultiSelectMode multiSelectMode}.
1630
+ *
1631
+ * Defines the multi-selection mode for the inner list control.
1632
+ *
1633
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1634
+ *
1635
+ * Default value is `ClearAll`.
1636
+ *
1637
+ * @returns Reference to `this` in order to allow method chaining
1638
+ */
1639
+ setMultiSelectMode(
1640
+ /**
1641
+ * New value for property `multiSelectMode`
1642
+ */
1643
+ sMultiSelectMode?: sap.m.MultiSelectMode
1644
+ ): this;
1605
1645
  /**
1606
1646
  * Sets the personalization state of the panel instance.
1607
1647
  *
@@ -2051,6 +2091,25 @@ declare namespace sap {
2051
2091
  ) => any | any[] | undefined | null;
2052
2092
  }
2053
2093
 
2094
+ interface $CellSelectorSettings extends sap.ui.core.$ElementSettings {
2095
+ /**
2096
+ * For the {@link sap.ui.table.Table} control, defines the number of row contexts that needs to be retrived
2097
+ * from the binding when the range selection (e.g. enhancing the cell selection block to cover all rows
2098
+ * of a column) is triggered by the user. This helps to make the contexts already available for the user
2099
+ * actions after the cell selection (e.g. copy to clipboard). This property accepts positive integer values.
2100
+ * **Note:** To avoid performance problems, the `rangeLimit` should only be set higher than the default
2101
+ * value of 200 in the following cases:
2102
+ * - With client-side models
2103
+ * - With server-side models if they are used in client mode
2104
+ * - If the entity set is small In other cases, it is recommended to set the `rangeLimit` to at
2105
+ * least double the value of the {@link sap.ui.table.Table#getThreshold threshold} property.
2106
+ */
2107
+ rangeLimit?:
2108
+ | int
2109
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
2110
+ | `{${string}}`;
2111
+ }
2112
+
2054
2113
  interface $ColumnResizerSettings extends sap.ui.core.$ElementSettings {
2055
2114
  /**
2056
2115
  * This event is fired when the column is resized.
@@ -2117,6 +2176,21 @@ declare namespace sap {
2117
2176
  | sap.ui.base.ManagedObject.PropertyBindingInfo
2118
2177
  | `{${string}}`;
2119
2178
 
2179
+ /**
2180
+ * @since 1.119
2181
+ *
2182
+ * This property determines the copy preference when performing a copy operation.
2183
+ *
2184
+ * If the property is set to `Full`, all selected content is copied. This includes selected rows and cells.
2185
+ *
2186
+ * If the property is set to `Cells`, cell selection takes precedence during copying. If cells are selected
2187
+ * along with rows, only the cell selection is copied. If no cells are selected, the row selection is copied.
2188
+ */
2189
+ copyPreference?:
2190
+ | sap.m.plugins.CopyPreference
2191
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
2192
+ | `{${string}}`;
2193
+
2120
2194
  /**
2121
2195
  * This event is fired if there is a selection, and the user triggers the copy action.
2122
2196
  *
@@ -2260,6 +2334,135 @@ declare namespace sap {
2260
2334
  text?: string;
2261
2335
  }
2262
2336
 
2337
+ /**
2338
+ * @since 1.119
2339
+ * @experimental (since 1.119) - This class is experimental. The API might be changed in the future.
2340
+ *
2341
+ * The `CellSelector` plugin enables cell selection inside the table when it is added as a dependent to
2342
+ * the control. It allows the user to individually select a cell block.
2343
+ *
2344
+ * The `CellSelector` plugin currently does not offer touch support.
2345
+ *
2346
+ * The `CellSelector` plugin cannot be used if the following applies:
2347
+ * - Drag for rows is active
2348
+ * - The target control is not a {@link sap.ui.table.Table}
2349
+ * - If used in combination with {@link sap.ui.table.Table#cellClick} If used in combination with
2350
+ * the following selection behavior: `sap.ui.table.SelectionBehavior.RowOnly` and `sap.ui.table.SelectionBehavior.Row`
2351
+ *
2352
+ *
2353
+ * When the `CellSelector` is used in combination with the {@link sap.ui.mdc.Table}, modifying the following
2354
+ * settings on the {@link sap.ui.mdc.Table} may lead to problems:
2355
+ * - attaching a {@link sap.ui.mdc.Table#rowPress rowPress} event to the table after initialization of
2356
+ * table and plugin
2357
+ * - changing {@link sap.ui.mdc.Table#getSelectionMode selectionMode} to something else than `Multi`
2358
+ */
2359
+ class CellSelector extends sap.ui.core.Element {
2360
+ /**
2361
+ * Constructor for a new CellSelector plugin.
2362
+ *
2363
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
2364
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
2365
+ * of the syntax of the settings object.
2366
+ */
2367
+ constructor(
2368
+ /**
2369
+ * Initial settings for the new `CellSelector`
2370
+ */
2371
+ mSettings?: sap.m.plugins.$CellSelectorSettings
2372
+ );
2373
+ /**
2374
+ * Constructor for a new CellSelector plugin.
2375
+ *
2376
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
2377
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
2378
+ * of the syntax of the settings object.
2379
+ */
2380
+ constructor(
2381
+ /**
2382
+ * ID for the new `CellSelector`, generated automatically if no id is given
2383
+ */
2384
+ sId?: string,
2385
+ /**
2386
+ * Initial settings for the new `CellSelector`
2387
+ */
2388
+ mSettings?: sap.m.plugins.$CellSelectorSettings
2389
+ );
2390
+
2391
+ /**
2392
+ * Creates a new subclass of class sap.m.plugins.CellSelector with name `sClassName` and enriches it with
2393
+ * the information contained in `oClassInfo`.
2394
+ *
2395
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
2396
+ *
2397
+ * @returns Created class / constructor function
2398
+ */
2399
+ static extend<T extends Record<string, unknown>>(
2400
+ /**
2401
+ * Name of the class being created
2402
+ */
2403
+ sClassName: string,
2404
+ /**
2405
+ * Object literal with information about the class
2406
+ */
2407
+ oClassInfo?: sap.ClassInfo<T, sap.m.plugins.CellSelector>,
2408
+ /**
2409
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2410
+ * used by this class
2411
+ */
2412
+ FNMetaImpl?: Function
2413
+ ): Function;
2414
+ /**
2415
+ * Returns a metadata object for class sap.m.plugins.CellSelector.
2416
+ *
2417
+ * @returns Metadata object describing this class
2418
+ */
2419
+ static getMetadata(): sap.ui.core.ElementMetadata;
2420
+ /**
2421
+ * Gets current value of property {@link #getRangeLimit rangeLimit}.
2422
+ *
2423
+ * For the {@link sap.ui.table.Table} control, defines the number of row contexts that needs to be retrived
2424
+ * from the binding when the range selection (e.g. enhancing the cell selection block to cover all rows
2425
+ * of a column) is triggered by the user. This helps to make the contexts already available for the user
2426
+ * actions after the cell selection (e.g. copy to clipboard). This property accepts positive integer values.
2427
+ * **Note:** To avoid performance problems, the `rangeLimit` should only be set higher than the default
2428
+ * value of 200 in the following cases:
2429
+ * - With client-side models
2430
+ * - With server-side models if they are used in client mode
2431
+ * - If the entity set is small In other cases, it is recommended to set the `rangeLimit` to at
2432
+ * least double the value of the {@link sap.ui.table.Table#getThreshold threshold} property.
2433
+ *
2434
+ * Default value is `200`.
2435
+ *
2436
+ * @returns Value of property `rangeLimit`
2437
+ */
2438
+ getRangeLimit(): int;
2439
+ /**
2440
+ * Sets a new value for property {@link #getRangeLimit rangeLimit}.
2441
+ *
2442
+ * For the {@link sap.ui.table.Table} control, defines the number of row contexts that needs to be retrived
2443
+ * from the binding when the range selection (e.g. enhancing the cell selection block to cover all rows
2444
+ * of a column) is triggered by the user. This helps to make the contexts already available for the user
2445
+ * actions after the cell selection (e.g. copy to clipboard). This property accepts positive integer values.
2446
+ * **Note:** To avoid performance problems, the `rangeLimit` should only be set higher than the default
2447
+ * value of 200 in the following cases:
2448
+ * - With client-side models
2449
+ * - With server-side models if they are used in client mode
2450
+ * - If the entity set is small In other cases, it is recommended to set the `rangeLimit` to at
2451
+ * least double the value of the {@link sap.ui.table.Table#getThreshold threshold} property.
2452
+ *
2453
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2454
+ *
2455
+ * Default value is `200`.
2456
+ *
2457
+ * @returns Reference to `this` in order to allow method chaining
2458
+ */
2459
+ setRangeLimit(
2460
+ /**
2461
+ * New value for property `rangeLimit`
2462
+ */
2463
+ iRangeLimit?: int
2464
+ ): this;
2465
+ }
2263
2466
  /**
2264
2467
  * @since 1.91
2265
2468
  *
@@ -2607,6 +2810,23 @@ declare namespace sap {
2607
2810
  */
2608
2811
  mSettings?: object
2609
2812
  ): sap.m.OverflowToolbarButton;
2813
+ /**
2814
+ * @since 1.119
2815
+ *
2816
+ * Gets current value of property {@link #getCopyPreference copyPreference}.
2817
+ *
2818
+ * This property determines the copy preference when performing a copy operation.
2819
+ *
2820
+ * If the property is set to `Full`, all selected content is copied. This includes selected rows and cells.
2821
+ *
2822
+ * If the property is set to `Cells`, cell selection takes precedence during copying. If cells are selected
2823
+ * along with rows, only the cell selection is copied. If no cells are selected, the row selection is copied.
2824
+ *
2825
+ * Default value is `Cells`.
2826
+ *
2827
+ * @returns Value of property `copyPreference`
2828
+ */
2829
+ getCopyPreference(): sap.m.plugins.CopyPreference;
2610
2830
  /**
2611
2831
  * Gets current value of property {@link #getCopySparse copySparse}.
2612
2832
  *
@@ -2677,6 +2897,30 @@ declare namespace sap {
2677
2897
  * @returns Value of property `visible`
2678
2898
  */
2679
2899
  getVisible(): boolean;
2900
+ /**
2901
+ * @since 1.119
2902
+ *
2903
+ * Sets a new value for property {@link #getCopyPreference copyPreference}.
2904
+ *
2905
+ * This property determines the copy preference when performing a copy operation.
2906
+ *
2907
+ * If the property is set to `Full`, all selected content is copied. This includes selected rows and cells.
2908
+ *
2909
+ * If the property is set to `Cells`, cell selection takes precedence during copying. If cells are selected
2910
+ * along with rows, only the cell selection is copied. If no cells are selected, the row selection is copied.
2911
+ *
2912
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2913
+ *
2914
+ * Default value is `Cells`.
2915
+ *
2916
+ * @returns Reference to `this` in order to allow method chaining
2917
+ */
2918
+ setCopyPreference(
2919
+ /**
2920
+ * New value for property `copyPreference`
2921
+ */
2922
+ sCopyPreference?: sap.m.plugins.CopyPreference
2923
+ ): this;
2680
2924
  /**
2681
2925
  * Sets a new value for property {@link #getCopySparse copySparse}.
2682
2926
  *
@@ -3438,6 +3682,23 @@ declare namespace sap {
3438
3682
  oPasteFor: sap.ui.core.ID | sap.ui.core.Control
3439
3683
  ): this;
3440
3684
  }
3685
+ /**
3686
+ * @since 1.119
3687
+ *
3688
+ * Enumeration of the `copyPreference` in `CopyProvider`. Determines what is copied during a copy operation.
3689
+ */
3690
+ enum CopyPreference {
3691
+ /**
3692
+ * If cells are selected, only the content of the selected cells is copied, regardless of any other rows
3693
+ * or elements that might also be selected. If no cells are selected, the copy operation will default to
3694
+ * copying the selected rows.
3695
+ */
3696
+ Cells = "Cells",
3697
+ /**
3698
+ * The entire selected scope is copied, including both row and cell selection.
3699
+ */
3700
+ Full = "Full",
3701
+ }
3441
3702
 
3442
3703
  type ColumnResizer$ColumnResizeEvent = sap.ui.base.Event<
3443
3704
  ColumnResizer$ColumnResizeEventParameters,
@@ -10923,27 +11184,33 @@ declare namespace sap {
10923
11184
  *
10924
11185
  * Fires event {@link #event:cancel cancel} to attached listeners.
10925
11186
  *
10926
- * @returns Reference to `this` in order to allow method chaining
11187
+ * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
11188
+ * event object. The return value of this method indicates whether the default action should be executed.
11189
+ *
11190
+ * @returns Whether or not to prevent the default action
10927
11191
  */
10928
11192
  fireCancel(
10929
11193
  /**
10930
11194
  * Parameters to pass along with the event
10931
11195
  */
10932
11196
  mParameters?: object
10933
- ): this;
11197
+ ): boolean;
10934
11198
  /**
10935
11199
  * @ui5-protected Do not call from applications (only from related classes in the framework)
10936
11200
  *
10937
11201
  * Fires event {@link #event:confirm confirm} to attached listeners.
10938
11202
  *
10939
- * @returns Reference to `this` in order to allow method chaining
11203
+ * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
11204
+ * event object. The return value of this method indicates whether the default action should be executed.
11205
+ *
11206
+ * @returns Whether or not to prevent the default action
10940
11207
  */
10941
11208
  fireConfirm(
10942
11209
  /**
10943
11210
  * Parameters to pass along with the event
10944
11211
  */
10945
11212
  mParameters?: object
10946
- ): this;
11213
+ ): boolean;
10947
11214
  /**
10948
11215
  * @ui5-protected Do not call from applications (only from related classes in the framework)
10949
11216
  *
@@ -13052,6 +13319,30 @@ declare namespace sap {
13052
13319
  }
13053
13320
 
13054
13321
  namespace upload {
13322
+ namespace UploadSetwithTable {
13323
+ /**
13324
+ * Item info object sent as paramter to {@link sap.m.upload.UploadSetwithTable.itemValidationHandler itemValidationHandler callback}
13325
+ */
13326
+ type ItemInfo = {
13327
+ /**
13328
+ * Current item queued for upload.
13329
+ */
13330
+ oItem: /* was: sap.m.upload.UploadSetwithTableItem */ any;
13331
+ /**
13332
+ * Total count of items queued for upload.
13333
+ */
13334
+ iTotalItemsForUpload: number;
13335
+ };
13336
+
13337
+ /**
13338
+ * Callback function to perform additional validations or configurations for the item queued up for upload
13339
+ * and to finally trigger the upload.
13340
+ */
13341
+ type itemValidationHandler = (
13342
+ oItemInfo: sap.m.upload.UploadSetwithTable.ItemInfo
13343
+ ) => Promise</* was: sap.m.upload.UploadSetwithTableItem */ any>;
13344
+ }
13345
+
13055
13346
  interface $UploaderSettings extends sap.ui.core.$ElementSettings {
13056
13347
  /**
13057
13348
  * URL where the next file is going to be uploaded to.
@@ -18250,6 +18541,15 @@ declare namespace sap {
18250
18541
  ): void;
18251
18542
  }
18252
18543
 
18544
+ /**
18545
+ * @since 1.119
18546
+ *
18547
+ * Common interface for sap.m.ColumnListItem and sap.m.GroupHeaderListItem
18548
+ */
18549
+ interface ITableItem {
18550
+ __implements__sap_m_ITableItem: boolean;
18551
+ }
18552
+
18253
18553
  /**
18254
18554
  * sap.m.NavContainerChild is an artificial interface with the only purpose to bear the documentation of
18255
18555
  * pseudo events triggered by sap.m.NavContainer on its child controls when navigation occurs and child
@@ -21449,6 +21749,8 @@ declare namespace sap {
21449
21749
  | `{${string}}`;
21450
21750
 
21451
21751
  /**
21752
+ * @deprecated (since 1.88) - Image replaced by {@link sap.m.Avatar }
21753
+ *
21452
21754
  * Some mobile devices support higher resolution images while others do not. Therefore, you should provide
21453
21755
  * image resources for all relevant densities. If the property is set to "true", one or more requests are
21454
21756
  * sent to the server to try and get the perfect density version of an image. If an image of a certain density
@@ -21458,8 +21760,6 @@ declare namespace sap {
21458
21760
  * round-trips.
21459
21761
  *
21460
21762
  * Please be aware that this property is relevant only for images and not for icons.
21461
- *
21462
- * Deprecated as of version 1.88. Image is replaced by avatar.
21463
21763
  */
21464
21764
  iconDensityAware?:
21465
21765
  | boolean
@@ -21479,9 +21779,10 @@ declare namespace sap {
21479
21779
  | `{${string}}`;
21480
21780
 
21481
21781
  /**
21782
+ * @deprecated (since 1.88) - This will not have any effect in code now.
21783
+ *
21482
21784
  * Text for Picture which will be read by screenreader. If a new ariaLabelForPicture is set, any previously
21483
- * set ariaLabelForPicture is deactivated. Deprecated as of version 1.88. This will not have any effect
21484
- * in code now.
21785
+ * set ariaLabelForPicture is deactivated.
21485
21786
  */
21486
21787
  ariaLabelForPicture?:
21487
21788
  | string
@@ -21596,12 +21897,12 @@ declare namespace sap {
21596
21897
  | `{${string}}`;
21597
21898
 
21598
21899
  /**
21900
+ * @deprecated (since 1.88) - Image is replaced by {@link sap.m.Avatar }
21901
+ *
21599
21902
  * By default, this is set to true but then one or more requests are sent trying to get the density perfect
21600
21903
  * version of image if this version of image doesn't exist on the server.
21601
21904
  *
21602
21905
  * If bandwidth is the key for the application, set this value to false.
21603
- *
21604
- * Deprecated as of version 1.88. Image is replaced by avatar.
21605
21906
  */
21606
21907
  iconDensityAware?:
21607
21908
  | boolean
@@ -22363,6 +22664,18 @@ declare namespace sap {
22363
22664
  */
22364
22665
  tileBadge?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
22365
22666
 
22667
+ /**
22668
+ * @since 1.118
22669
+ * @experimental (since 1.113)
22670
+ *
22671
+ * Sets the offset for the Drop Area associated with a Generic Tile. The offset is applied uniformly to
22672
+ * all the tile edges.
22673
+ */
22674
+ dropAreaOffset?:
22675
+ | int
22676
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
22677
+ | `{${string}}`;
22678
+
22366
22679
  /**
22367
22680
  * The content of the tile.
22368
22681
  */
@@ -23532,6 +23845,7 @@ declare namespace sap {
23532
23845
 
23533
23846
  /**
23534
23847
  * @since 1.21.0
23848
+ * @deprecated (since 1.119) - The property valueHelpOnly should not be used anymore
23535
23849
  *
23536
23850
  * If set to true, direct text input is disabled and the control will trigger the event "valueHelpRequest"
23537
23851
  * for all user interactions. The properties "showValueHelp", "editable", and "enabled" must be set to true,
@@ -23752,9 +24066,8 @@ declare namespace sap {
23752
24066
  * to come would overwrite the previous ones.
23753
24067
  */
23754
24068
  suggestionRows?:
23755
- | Array<sap.m.GroupHeaderListItem | sap.m.ColumnListItem>
23756
- | sap.m.GroupHeaderListItem
23757
- | sap.m.ColumnListItem
24069
+ | sap.m.ITableItem[]
24070
+ | sap.m.ITableItem
23758
24071
  | sap.ui.base.ManagedObject.AggregationBindingInfo
23759
24072
  | `{${string}}`;
23760
24073
 
@@ -28737,6 +29050,7 @@ declare namespace sap {
28737
29050
 
28738
29051
  /**
28739
29052
  * @since 1.38.0
29053
+ * @deprecated (since 1.119) - Please use the `appointmentHeight` with value "Automatic" property instead.
28740
29054
  *
28741
29055
  * Determines whether the appointments that have only title without text are rendered with smaller height.
28742
29056
  *
@@ -28933,6 +29247,14 @@ declare namespace sap {
28933
29247
  | sap.ui.base.ManagedObject.PropertyBindingInfo
28934
29248
  | `{${string}}`;
28935
29249
 
29250
+ /**
29251
+ * Defines the shape of the `Avatar`.
29252
+ */
29253
+ iconShape?:
29254
+ | sap.m.AvatarShape
29255
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
29256
+ | `{${string}}`;
29257
+
28936
29258
  /**
28937
29259
  * Rows of the `PlanningCalendar`.
28938
29260
  */
@@ -29023,10 +29345,18 @@ declare namespace sap {
29023
29345
 
29024
29346
  /**
29025
29347
  * @since 1.46.0
29348
+ * @deprecated (since 1.119)
29026
29349
  *
29027
29350
  * Fires when a row header is clicked.
29028
29351
  */
29029
29352
  rowHeaderClick?: (oEvent: PlanningCalendar$RowHeaderClickEvent) => void;
29353
+
29354
+ /**
29355
+ * @since 1.119.0
29356
+ *
29357
+ * Fires when a row header press is triggered with mouse click, SPACE or ENTER press.
29358
+ */
29359
+ rowHeaderPress?: (oEvent: PlanningCalendar$RowHeaderPressEvent) => void;
29030
29360
  }
29031
29361
 
29032
29362
  interface $PlanningCalendarLegendSettings
@@ -37259,6 +37589,21 @@ declare namespace sap {
37259
37589
  row?: sap.m.PlanningCalendarRow;
37260
37590
  }
37261
37591
 
37592
+ interface PlanningCalendar$RowHeaderPressEventParameters {
37593
+ /**
37594
+ * The ID of the `PlanningCalendarRowHeader` of the selected appointment.
37595
+ *
37596
+ * **Note:** Intended to be used as an easy way to get an ID of a `PlanningCalendarRowHeader`. Do NOT use
37597
+ * for modification.
37598
+ */
37599
+ headerId?: string;
37600
+
37601
+ /**
37602
+ * The row user pressed.
37603
+ */
37604
+ row?: sap.m.PlanningCalendarRow;
37605
+ }
37606
+
37262
37607
  interface PlanningCalendar$RowSelectionChangeEventParameters {
37263
37608
  /**
37264
37609
  * Array of rows whose selection has changed.
@@ -39021,6 +39366,20 @@ declare namespace sap {
39021
39366
  * {@link sap.m.IllustrationPool.loadRestOfTheAssets} API.
39022
39367
  */
39023
39368
  interface IllustrationPool {
39369
+ /**
39370
+ * @since 1.116.0
39371
+ *
39372
+ * Returns the metadata of an Illustration Set. The metadata contains the names of the symbols and the theme
39373
+ * mappings. If the Illustration Set is not registered, an error is logged and null is returned.
39374
+ *
39375
+ * @returns The metadata of the Illustration Set
39376
+ */
39377
+ getIllustrationSetMetadata(
39378
+ /**
39379
+ * The name of the illustration set
39380
+ */
39381
+ sSet: string
39382
+ ): object;
39024
39383
  /**
39025
39384
  * Loads an SVG asset depending on the input asset ID.
39026
39385
  */
@@ -39032,7 +39391,13 @@ declare namespace sap {
39032
39391
  /**
39033
39392
  * the ID of the Illustration instance which is requiring the asset
39034
39393
  */
39035
- sInstanceId: string
39394
+ sInstanceId: string,
39395
+ /**
39396
+ * The prefix of the path of the asset being loaded. Used for loading assets from different collections.
39397
+ * Used to store the asset ID in the DOM pool, so it can be distinguished from other assets with the same
39398
+ * ID.
39399
+ */
39400
+ sIdPrefix: string
39036
39401
  ): void;
39037
39402
  /**
39038
39403
  * Loads the rest of the SVG assets for a given illustration set.
@@ -49154,7 +49519,10 @@ declare namespace sap {
49154
49519
  * **Note:** This control should only be used within the `sap.m.Table` control. The inherited `counter`
49155
49520
  * property of `sap.m.ListItemBase` is not supported.
49156
49521
  */
49157
- class ColumnListItem extends sap.m.ListItemBase {
49522
+ class ColumnListItem
49523
+ extends sap.m.ListItemBase
49524
+ implements sap.m.ITableItem {
49525
+ __implements__sap_m_ITableItem: boolean;
49158
49526
  /**
49159
49527
  * Constructor for a new ColumnListItem.
49160
49528
  *
@@ -55679,9 +56047,9 @@ declare namespace sap {
55679
56047
  * popup. Standard options are arranged in 6 groups - from 1 to 6. 1 - Single Dates 2 - Date Ranges 3 -
55680
56048
  * Weeks 4 - Months 5 - Quarters 6 - Years
55681
56049
  *
55682
- * @returns A group index
56050
+ * @returns A group key from {@link sap.m.DynamicDateRangeGroups}
55683
56051
  */
55684
- getGroup(): int;
56052
+ getGroup(): int | string;
55685
56053
  /**
55686
56054
  * Provides the option's group header text.
55687
56055
  *
@@ -55953,6 +56321,21 @@ declare namespace sap {
55953
56321
  */
55954
56322
  oCustomOption: sap.m.DynamicDateOption
55955
56323
  ): this;
56324
+ /**
56325
+ * @since 1.118
56326
+ *
56327
+ * Adds a group to the enumeration containing the current groups in `sap.m.DynamicDateRange`
56328
+ */
56329
+ addGroup(
56330
+ /**
56331
+ * the name that the group will be selected by.
56332
+ */
56333
+ sGroupName: string,
56334
+ /**
56335
+ * the group header that will be presented in the list.
56336
+ */
56337
+ sGroupHeader: string
56338
+ ): void;
55956
56339
  /**
55957
56340
  * @since 1.92
55958
56341
  *
@@ -56114,6 +56497,14 @@ declare namespace sap {
56114
56497
  * @returns Value of property `enableGroupHeaders`
56115
56498
  */
56116
56499
  getEnableGroupHeaders(): boolean;
56500
+ /**
56501
+ * @since 1.118
56502
+ *
56503
+ * Provides the option's group header text.
56504
+ *
56505
+ * @returns A group header
56506
+ */
56507
+ getGroupHeader(): string;
56117
56508
  /**
56118
56509
  * @since 1.105
56119
56510
  *
@@ -56363,6 +56754,10 @@ declare namespace sap {
56363
56754
  */
56364
56755
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
56365
56756
  ): sap.ui.core.ID | null;
56757
+ /**
56758
+ * Removes all additionally added groups
56759
+ */
56760
+ removeCustomGroups(): void;
56366
56761
  /**
56367
56762
  * Removes a customOption from the aggregation {@link #getCustomOptions customOptions}.
56368
56763
  *
@@ -56451,6 +56846,19 @@ declare namespace sap {
56451
56846
  */
56452
56847
  bEnableGroupHeaders?: boolean
56453
56848
  ): this;
56849
+ /**
56850
+ * Sets a new header to an existing custom group.
56851
+ */
56852
+ setGroupHeader(
56853
+ /**
56854
+ * the name that the group will be selected by.
56855
+ */
56856
+ sGroupName: string,
56857
+ /**
56858
+ * the group header that will be presented in the list.
56859
+ */
56860
+ sGroupHeader: string
56861
+ ): void;
56454
56862
  /**
56455
56863
  * @since 1.105
56456
56864
  *
@@ -57780,23 +58188,6 @@ declare namespace sap {
57780
58188
  * @returns Value of property `text`
57781
58189
  */
57782
58190
  getText(): string;
57783
- /**
57784
- * @deprecated (since 1.18.11) - replaced by `setCounter` method
57785
- *
57786
- * Sets a new value for property {@link #getCount count}.
57787
- *
57788
- * Defines the number of objects that match this item in the target data set.
57789
- *
57790
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
57791
- *
57792
- * @returns Reference to `this` in order to allow method chaining
57793
- */
57794
- setCount(
57795
- /**
57796
- * New value for property `count`
57797
- */
57798
- iCount?: int
57799
- ): this;
57800
58191
  /**
57801
58192
  * Sets a new value for property {@link #getKey key}.
57802
58193
  *
@@ -58414,27 +58805,6 @@ declare namespace sap {
58414
58805
  */
58415
58806
  mode: sap.m.ListMode
58416
58807
  ): this;
58417
- /**
58418
- * @deprecated (since 1.20.0) - replaced by `setMode` method. `FacetFilterList` overrides the `setMode`
58419
- * method to restrict the possible modes to `MultiSelect` and `SingleSelectMaster`. All other modes are
58420
- * ignored and will not be set.
58421
- *
58422
- * Sets a new value for property {@link #getMultiSelect multiSelect}.
58423
- *
58424
- * Specifies whether multiple or single selection is used.
58425
- *
58426
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
58427
- *
58428
- * Default value is `true`.
58429
- *
58430
- * @returns Reference to `this` in order to allow method chaining
58431
- */
58432
- setMultiSelect(
58433
- /**
58434
- * New value for property `multiSelect`
58435
- */
58436
- bMultiSelect?: boolean
58437
- ): this;
58438
58808
  /**
58439
58809
  * @since 1.22.1
58440
58810
  *
@@ -58982,11 +59352,12 @@ declare namespace sap {
58982
59352
  mParameters?: sap.m.FeedInput$PostEventParameters
58983
59353
  ): this;
58984
59354
  /**
59355
+ * @deprecated (since 1.88) - This will not have any effect in code now.
59356
+ *
58985
59357
  * Gets current value of property {@link #getAriaLabelForPicture ariaLabelForPicture}.
58986
59358
  *
58987
59359
  * Text for Picture which will be read by screenreader. If a new ariaLabelForPicture is set, any previously
58988
- * set ariaLabelForPicture is deactivated. Deprecated as of version 1.88. This will not have any effect
58989
- * in code now.
59360
+ * set ariaLabelForPicture is deactivated.
58990
59361
  *
58991
59362
  * @returns Value of property `ariaLabelForPicture`
58992
59363
  */
@@ -59047,6 +59418,8 @@ declare namespace sap {
59047
59418
  */
59048
59419
  getIcon(): sap.ui.core.URI;
59049
59420
  /**
59421
+ * @deprecated (since 1.88) - Image replaced by {@link sap.m.Avatar }
59422
+ *
59050
59423
  * Gets current value of property {@link #getIconDensityAware iconDensityAware}.
59051
59424
  *
59052
59425
  * Some mobile devices support higher resolution images while others do not. Therefore, you should provide
@@ -59059,8 +59432,6 @@ declare namespace sap {
59059
59432
  *
59060
59433
  * Please be aware that this property is relevant only for images and not for icons.
59061
59434
  *
59062
- * Deprecated as of version 1.88. Image is replaced by avatar.
59063
- *
59064
59435
  * Default value is `true`.
59065
59436
  *
59066
59437
  * @returns Value of property `iconDensityAware`
@@ -59169,11 +59540,12 @@ declare namespace sap {
59169
59540
  */
59170
59541
  getValue(): string;
59171
59542
  /**
59543
+ * @deprecated (since 1.88) - This will not have any effect in code now.
59544
+ *
59172
59545
  * Sets a new value for property {@link #getAriaLabelForPicture ariaLabelForPicture}.
59173
59546
  *
59174
59547
  * Text for Picture which will be read by screenreader. If a new ariaLabelForPicture is set, any previously
59175
- * set ariaLabelForPicture is deactivated. Deprecated as of version 1.88. This will not have any effect
59176
- * in code now.
59548
+ * set ariaLabelForPicture is deactivated.
59177
59549
  *
59178
59550
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
59179
59551
  *
@@ -59276,6 +59648,8 @@ declare namespace sap {
59276
59648
  sIcon?: sap.ui.core.URI
59277
59649
  ): this;
59278
59650
  /**
59651
+ * @deprecated (since 1.88) - Image replaced by {@link sap.m.Avatar }
59652
+ *
59279
59653
  * Sets a new value for property {@link #getIconDensityAware iconDensityAware}.
59280
59654
  *
59281
59655
  * Some mobile devices support higher resolution images while others do not. Therefore, you should provide
@@ -59288,8 +59662,6 @@ declare namespace sap {
59288
59662
  *
59289
59663
  * Please be aware that this property is relevant only for images and not for icons.
59290
59664
  *
59291
- * Deprecated as of version 1.88. Image is replaced by avatar.
59292
- *
59293
59665
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
59294
59666
  *
59295
59667
  * Default value is `true`.
@@ -59771,6 +60143,8 @@ declare namespace sap {
59771
60143
  */
59772
60144
  getIconActive(): boolean;
59773
60145
  /**
60146
+ * @deprecated (since 1.88) - Image is replaced by {@link sap.m.Avatar }
60147
+ *
59774
60148
  * Gets current value of property {@link #getIconDensityAware iconDensityAware}.
59775
60149
  *
59776
60150
  * By default, this is set to true but then one or more requests are sent trying to get the density perfect
@@ -59778,8 +60152,6 @@ declare namespace sap {
59778
60152
  *
59779
60153
  * If bandwidth is the key for the application, set this value to false.
59780
60154
  *
59781
- * Deprecated as of version 1.88. Image is replaced by avatar.
59782
- *
59783
60155
  * Default value is `true`.
59784
60156
  *
59785
60157
  * @returns Value of property `iconDensityAware`
@@ -60057,6 +60429,8 @@ declare namespace sap {
60057
60429
  bIconActive?: boolean
60058
60430
  ): this;
60059
60431
  /**
60432
+ * @deprecated (since 1.88) - Image is replaced by {@link sap.m.Avatar }
60433
+ *
60060
60434
  * Sets a new value for property {@link #getIconDensityAware iconDensityAware}.
60061
60435
  *
60062
60436
  * By default, this is set to true but then one or more requests are sent trying to get the density perfect
@@ -60064,8 +60438,6 @@ declare namespace sap {
60064
60438
  *
60065
60439
  * If bandwidth is the key for the application, set this value to false.
60066
60440
  *
60067
- * Deprecated as of version 1.88. Image is replaced by avatar.
60068
- *
60069
60441
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
60070
60442
  *
60071
60443
  * Default value is `true`.
@@ -62409,6 +62781,20 @@ declare namespace sap {
62409
62781
  * @returns An array containing all of the tile's bounding rectangles
62410
62782
  */
62411
62783
  getBoundingRects(): object[];
62784
+ /**
62785
+ * @since 1.118
62786
+ * @experimental (since 1.113)
62787
+ *
62788
+ * Gets current value of property {@link #getDropAreaOffset dropAreaOffset}.
62789
+ *
62790
+ * Sets the offset for the Drop Area associated with a Generic Tile. The offset is applied uniformly to
62791
+ * all the tile edges.
62792
+ *
62793
+ * Default value is `0`.
62794
+ *
62795
+ * @returns Value of property `dropAreaOffset`
62796
+ */
62797
+ getDropAreaOffset(): int;
62412
62798
  /**
62413
62799
  * @experimental (since 1.96)
62414
62800
  *
@@ -62902,6 +63288,27 @@ declare namespace sap {
62902
63288
  */
62903
63289
  sBackgroundImage?: sap.ui.core.URI
62904
63290
  ): this;
63291
+ /**
63292
+ * @since 1.118
63293
+ * @experimental (since 1.113)
63294
+ *
63295
+ * Sets a new value for property {@link #getDropAreaOffset dropAreaOffset}.
63296
+ *
63297
+ * Sets the offset for the Drop Area associated with a Generic Tile. The offset is applied uniformly to
63298
+ * all the tile edges.
63299
+ *
63300
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
63301
+ *
63302
+ * Default value is `0`.
63303
+ *
63304
+ * @returns Reference to `this` in order to allow method chaining
63305
+ */
63306
+ setDropAreaOffset(
63307
+ /**
63308
+ * New value for property `dropAreaOffset`
63309
+ */
63310
+ iDropAreaOffset?: int
63311
+ ): this;
62905
63312
  /**
62906
63313
  * @experimental (since 1.96)
62907
63314
  *
@@ -63357,7 +63764,10 @@ declare namespace sap {
63357
63764
  * in `sap.m.List` and `sap.m.Table`. **Note:** The inherited properties `unread`, `selected`, `counter`
63358
63765
  * and `press` event from `sap.m.ListItemBase` are not supported.
63359
63766
  */
63360
- class GroupHeaderListItem extends sap.m.ListItemBase {
63767
+ class GroupHeaderListItem
63768
+ extends sap.m.ListItemBase
63769
+ implements sap.m.ITableItem {
63770
+ __implements__sap_m_ITableItem: boolean;
63361
63771
  /**
63362
63772
  * Constructor for a new GroupHeaderListItem.
63363
63773
  *
@@ -68681,7 +69091,7 @@ declare namespace sap {
68681
69091
  /**
68682
69092
  * The suggestionRow to add; if empty, nothing is inserted
68683
69093
  */
68684
- vSuggestionRow: sap.m.ColumnListItem | sap.m.GroupHeaderListItem
69094
+ oSuggestionRow: sap.m.ITableItem
68685
69095
  ): this;
68686
69096
  /**
68687
69097
  * Attaches event handler `fnFunction` to the {@link #event:liveChange liveChange} event of this `sap.m.Input`.
@@ -69479,9 +69889,7 @@ declare namespace sap {
69479
69889
  * event method. **Note:** If `suggestionItems` & `suggestionRows` are set in parallel, the last aggeragtion
69480
69890
  * to come would overwrite the previous ones.
69481
69891
  */
69482
- getSuggestionRows(): Array<
69483
- sap.m.ColumnListItem | sap.m.GroupHeaderListItem
69484
- >;
69892
+ getSuggestionRows(): sap.m.ITableItem[];
69485
69893
  /**
69486
69894
  * @since 1.44
69487
69895
  *
@@ -69551,6 +69959,7 @@ declare namespace sap {
69551
69959
  getValueHelpIconSrc(): sap.ui.core.URI;
69552
69960
  /**
69553
69961
  * @since 1.21.0
69962
+ * @deprecated (since 1.119) - The property valueHelpOnly should not be used anymore
69554
69963
  *
69555
69964
  * Gets current value of property {@link #getValueHelpOnly valueHelpOnly}.
69556
69965
  *
@@ -69623,7 +70032,7 @@ declare namespace sap {
69623
70032
  /**
69624
70033
  * @since 1.21.1
69625
70034
  *
69626
- * Checks for the provided `sap.m.ColumnListItem` in the aggregation {@link #getSuggestionRows suggestionRows}.
70035
+ * Checks for the provided `sap.m.ITableItem` in the aggregation {@link #getSuggestionRows suggestionRows}.
69627
70036
  * and returns its index if found or -1 otherwise.
69628
70037
  *
69629
70038
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
@@ -69632,7 +70041,7 @@ declare namespace sap {
69632
70041
  /**
69633
70042
  * The suggestionRow whose index is looked for
69634
70043
  */
69635
- vSuggestionRow: sap.m.ColumnListItem | sap.m.GroupHeaderListItem
70044
+ oSuggestionRow: sap.m.ITableItem
69636
70045
  ): int;
69637
70046
  /**
69638
70047
  * @since 1.21.1
@@ -69679,7 +70088,7 @@ declare namespace sap {
69679
70088
  /**
69680
70089
  * The suggestionRow to insert; if empty, nothing is inserted
69681
70090
  */
69682
- vSuggestionRow: sap.m.ColumnListItem | sap.m.GroupHeaderListItem,
70091
+ oSuggestionRow: sap.m.ITableItem,
69683
70092
  /**
69684
70093
  * The `0`-based index the suggestionRow should be inserted at; for a negative value of `iIndex`, the suggestionRow
69685
70094
  * is inserted at position 0; for a value greater than the current size of the aggregation, the suggestionRow
@@ -69702,6 +70111,7 @@ declare namespace sap {
69702
70111
  */
69703
70112
  isMobileDevice(): boolean;
69704
70113
  /**
70114
+ * @deprecated (since 1.119) - the property valueHelpOnly should not be used anymore
69705
70115
  * @ui5-protected Do not call from applications (only from related classes in the framework)
69706
70116
  *
69707
70117
  * Gets the supported openers for the valueHelpOnly. In the context of the Input, all targets are valid.
@@ -69837,9 +70247,7 @@ declare namespace sap {
69837
70247
  *
69838
70248
  * @returns An array of the removed elements (might be empty)
69839
70249
  */
69840
- removeAllSuggestionRows(): Array<
69841
- sap.m.ColumnListItem | sap.m.GroupHeaderListItem
69842
- >;
70250
+ removeAllSuggestionRows(): sap.m.ITableItem[];
69843
70251
  /**
69844
70252
  * @since 1.21.1
69845
70253
  *
@@ -69875,12 +70283,8 @@ declare namespace sap {
69875
70283
  /**
69876
70284
  * The suggestionRow to remove or its index or id
69877
70285
  */
69878
- vSuggestionRow:
69879
- | int
69880
- | string
69881
- | sap.m.ColumnListItem
69882
- | sap.m.GroupHeaderListItem
69883
- ): sap.m.ColumnListItem | sap.m.GroupHeaderListItem | null;
70286
+ vSuggestionRow: int | string | sap.m.ITableItem
70287
+ ): sap.m.ITableItem | null;
69884
70288
  /**
69885
70289
  * @since 1.61
69886
70290
  *
@@ -70387,6 +70791,7 @@ declare namespace sap {
70387
70791
  ): this;
70388
70792
  /**
70389
70793
  * @since 1.21.0
70794
+ * @deprecated (since 1.119) - The property valueHelpOnly should not be used anymore
70390
70795
  *
70391
70796
  * Sets a new value for property {@link #getValueHelpOnly valueHelpOnly}.
70392
70797
  *
@@ -74178,22 +74583,6 @@ declare namespace sap {
74178
74583
  */
74179
74584
  oListener?: object
74180
74585
  ): this;
74181
- /**
74182
- * @ui5-protected Do not call from applications (only from related classes in the framework)
74183
- *
74184
- * This method is a hook for the RenderManager that gets called during the rendering of child Controls.
74185
- * It allows to add, remove and update existing accessibility attributes (ARIA) of those controls.
74186
- */
74187
- enhanceAccessibilityState(
74188
- /**
74189
- * The Control that gets rendered by the RenderManager
74190
- */
74191
- oElement: sap.ui.core.Control,
74192
- /**
74193
- * The mapping of "aria-" prefixed attributes
74194
- */
74195
- mAriaProps: object
74196
- ): void;
74197
74586
  /**
74198
74587
  * @since 1.54
74199
74588
  * @ui5-protected Do not call from applications (only from related classes in the framework)
@@ -74555,7 +74944,7 @@ declare namespace sap {
74555
74944
  *
74556
74945
  * Defines keyboard handling behavior of the control.
74557
74946
  *
74558
- * Default value is `Navigation`.
74947
+ * Default value is `"Navigation"`.
74559
74948
  *
74560
74949
  * @returns Value of property `keyboardMode`
74561
74950
  */
@@ -75165,7 +75554,7 @@ declare namespace sap {
75165
75554
  *
75166
75555
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
75167
75556
  *
75168
- * Default value is `Navigation`.
75557
+ * Default value is `"Navigation"`.
75169
75558
  *
75170
75559
  * @returns Reference to `this` in order to allow method chaining
75171
75560
  */
@@ -82401,6 +82790,7 @@ declare namespace sap {
82401
82790
  iIndex: int
82402
82791
  ): this;
82403
82792
  /**
82793
+ * @deprecated (since 1.119) - the property valueHelpOnly should not be used anymore
82404
82794
  * @ui5-protected Do not call from applications (only from related classes in the framework)
82405
82795
  *
82406
82796
  * Gets the supported openers for the valueHelpOnly.
@@ -99359,6 +99749,7 @@ declare namespace sap {
99359
99749
  ): this;
99360
99750
  /**
99361
99751
  * @since 1.46.0
99752
+ * @deprecated (since 1.119)
99362
99753
  *
99363
99754
  * Attaches event handler `fnFunction` to the {@link #event:rowHeaderClick rowHeaderClick} event of this
99364
99755
  * `sap.m.PlanningCalendar`.
@@ -99387,6 +99778,7 @@ declare namespace sap {
99387
99778
  ): this;
99388
99779
  /**
99389
99780
  * @since 1.46.0
99781
+ * @deprecated (since 1.119)
99390
99782
  *
99391
99783
  * Attaches event handler `fnFunction` to the {@link #event:rowHeaderClick rowHeaderClick} event of this
99392
99784
  * `sap.m.PlanningCalendar`.
@@ -99408,6 +99800,57 @@ declare namespace sap {
99408
99800
  */
99409
99801
  oListener?: object
99410
99802
  ): this;
99803
+ /**
99804
+ * @since 1.119.0
99805
+ *
99806
+ * Attaches event handler `fnFunction` to the {@link #event:rowHeaderPress rowHeaderPress} event of this
99807
+ * `sap.m.PlanningCalendar`.
99808
+ *
99809
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
99810
+ * otherwise it will be bound to this `sap.m.PlanningCalendar` itself.
99811
+ *
99812
+ * Fires when a row header press is triggered with mouse click, SPACE or ENTER press.
99813
+ *
99814
+ * @returns Reference to `this` in order to allow method chaining
99815
+ */
99816
+ attachRowHeaderPress(
99817
+ /**
99818
+ * An application-specific payload object that will be passed to the event handler along with the event
99819
+ * object when firing the event
99820
+ */
99821
+ oData: object,
99822
+ /**
99823
+ * The function to be called when the event occurs
99824
+ */
99825
+ fnFunction: (p1: PlanningCalendar$RowHeaderPressEvent) => void,
99826
+ /**
99827
+ * Context object to call the event handler with. Defaults to this `sap.m.PlanningCalendar` itself
99828
+ */
99829
+ oListener?: object
99830
+ ): this;
99831
+ /**
99832
+ * @since 1.119.0
99833
+ *
99834
+ * Attaches event handler `fnFunction` to the {@link #event:rowHeaderPress rowHeaderPress} event of this
99835
+ * `sap.m.PlanningCalendar`.
99836
+ *
99837
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
99838
+ * otherwise it will be bound to this `sap.m.PlanningCalendar` itself.
99839
+ *
99840
+ * Fires when a row header press is triggered with mouse click, SPACE or ENTER press.
99841
+ *
99842
+ * @returns Reference to `this` in order to allow method chaining
99843
+ */
99844
+ attachRowHeaderPress(
99845
+ /**
99846
+ * The function to be called when the event occurs
99847
+ */
99848
+ fnFunction: (p1: PlanningCalendar$RowHeaderPressEvent) => void,
99849
+ /**
99850
+ * Context object to call the event handler with. Defaults to this `sap.m.PlanningCalendar` itself
99851
+ */
99852
+ oListener?: object
99853
+ ): this;
99411
99854
  /**
99412
99855
  * Attaches event handler `fnFunction` to the {@link #event:rowSelectionChange rowSelectionChange} event
99413
99856
  * of this `sap.m.PlanningCalendar`.
@@ -99615,6 +100058,7 @@ declare namespace sap {
99615
100058
  ): this;
99616
100059
  /**
99617
100060
  * @since 1.46.0
100061
+ * @deprecated (since 1.119)
99618
100062
  *
99619
100063
  * Detaches event handler `fnFunction` from the {@link #event:rowHeaderClick rowHeaderClick} event of this
99620
100064
  * `sap.m.PlanningCalendar`.
@@ -99633,6 +100077,26 @@ declare namespace sap {
99633
100077
  */
99634
100078
  oListener?: object
99635
100079
  ): this;
100080
+ /**
100081
+ * @since 1.119.0
100082
+ *
100083
+ * Detaches event handler `fnFunction` from the {@link #event:rowHeaderPress rowHeaderPress} event of this
100084
+ * `sap.m.PlanningCalendar`.
100085
+ *
100086
+ * The passed function and listener object must match the ones used for event registration.
100087
+ *
100088
+ * @returns Reference to `this` in order to allow method chaining
100089
+ */
100090
+ detachRowHeaderPress(
100091
+ /**
100092
+ * The function to be called, when the event occurs
100093
+ */
100094
+ fnFunction: (p1: PlanningCalendar$RowHeaderPressEvent) => void,
100095
+ /**
100096
+ * Context object on which the given function had to be called
100097
+ */
100098
+ oListener?: object
100099
+ ): this;
99636
100100
  /**
99637
100101
  * Detaches event handler `fnFunction` from the {@link #event:rowSelectionChange rowSelectionChange} event
99638
100102
  * of this `sap.m.PlanningCalendar`.
@@ -99714,6 +100178,7 @@ declare namespace sap {
99714
100178
  ): this;
99715
100179
  /**
99716
100180
  * @since 1.46.0
100181
+ * @deprecated (since 1.119)
99717
100182
  * @ui5-protected Do not call from applications (only from related classes in the framework)
99718
100183
  *
99719
100184
  * Fires event {@link #event:rowHeaderClick rowHeaderClick} to attached listeners.
@@ -99726,6 +100191,20 @@ declare namespace sap {
99726
100191
  */
99727
100192
  mParameters?: sap.m.PlanningCalendar$RowHeaderClickEventParameters
99728
100193
  ): this;
100194
+ /**
100195
+ * @since 1.119.0
100196
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
100197
+ *
100198
+ * Fires event {@link #event:rowHeaderPress rowHeaderPress} to attached listeners.
100199
+ *
100200
+ * @returns Reference to `this` in order to allow method chaining
100201
+ */
100202
+ fireRowHeaderPress(
100203
+ /**
100204
+ * Parameters to pass along with the event
100205
+ */
100206
+ mParameters?: sap.m.PlanningCalendar$RowHeaderPressEventParameters
100207
+ ): this;
99729
100208
  /**
99730
100209
  * @ui5-protected Do not call from applications (only from related classes in the framework)
99731
100210
  *
@@ -99793,6 +100272,7 @@ declare namespace sap {
99793
100272
  getAppointmentRoundWidth(): sap.ui.unified.CalendarAppointmentRoundWidth;
99794
100273
  /**
99795
100274
  * @since 1.38.0
100275
+ * @deprecated (since 1.119) - Please use the `appointmentHeight` with value "Automatic" property instead.
99796
100276
  *
99797
100277
  * Gets current value of property {@link #getAppointmentsReducedHeight appointmentsReducedHeight}.
99798
100278
  *
@@ -99908,6 +100388,16 @@ declare namespace sap {
99908
100388
  * @returns Value of property `height`
99909
100389
  */
99910
100390
  getHeight(): sap.ui.core.CSSSize;
100391
+ /**
100392
+ * Gets current value of property {@link #getIconShape iconShape}.
100393
+ *
100394
+ * Defines the shape of the `Avatar`.
100395
+ *
100396
+ * Default value is `Circle`.
100397
+ *
100398
+ * @returns Value of property `iconShape`
100399
+ */
100400
+ getIconShape(): sap.m.AvatarShape;
99911
100401
  /**
99912
100402
  * @since 1.40.0
99913
100403
  *
@@ -100441,6 +100931,7 @@ declare namespace sap {
100441
100931
  ): this;
100442
100932
  /**
100443
100933
  * @since 1.38.0
100934
+ * @deprecated (since 1.119) - Please use the `appointmentHeight` with value "Automatic" property instead.
100444
100935
  *
100445
100936
  * Sets a new value for property {@link #getAppointmentsReducedHeight appointmentsReducedHeight}.
100446
100937
  *
@@ -100596,6 +101087,23 @@ declare namespace sap {
100596
101087
  */
100597
101088
  sHeight?: sap.ui.core.CSSSize
100598
101089
  ): this;
101090
+ /**
101091
+ * Sets a new value for property {@link #getIconShape iconShape}.
101092
+ *
101093
+ * Defines the shape of the `Avatar`.
101094
+ *
101095
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
101096
+ *
101097
+ * Default value is `Circle`.
101098
+ *
101099
+ * @returns Reference to `this` in order to allow method chaining
101100
+ */
101101
+ setIconShape(
101102
+ /**
101103
+ * New value for property `iconShape`
101104
+ */
101105
+ sIconShape?: sap.m.AvatarShape
101106
+ ): this;
100599
101107
  /**
100600
101108
  * @since 1.40.0
100601
101109
  *
@@ -125318,17 +125826,6 @@ declare namespace sap {
125318
125826
  * @returns Metadata object describing this class
125319
125827
  */
125320
125828
  static getMetadata(): sap.ui.core.ElementMetadata;
125321
- /**
125322
- * Adds some item to the aggregation {@link #getItems items}.
125323
- *
125324
- * @returns Reference to `this` in order to allow method chaining
125325
- */
125326
- addItem(
125327
- /**
125328
- * The item to add; if empty, nothing is inserted
125329
- */
125330
- oItem: sap.m.TabContainerItem
125331
- ): this;
125332
125829
  /**
125333
125830
  * Attaches event handler `fnFunction` to the {@link #event:addNewButtonPress addNewButtonPress} event of
125334
125831
  * this `sap.m.TabContainer`.
@@ -125480,12 +125977,6 @@ declare namespace sap {
125480
125977
  */
125481
125978
  oBindingInfo: sap.ui.base.ManagedObject.AggregationBindingInfo
125482
125979
  ): this;
125483
- /**
125484
- * Destroys all the items in the aggregation {@link #getItems items}.
125485
- *
125486
- * @returns Reference to `this` in order to allow method chaining
125487
- */
125488
- destroyItems(): this;
125489
125980
  /**
125490
125981
  * Detaches event handler `fnFunction` from the {@link #event:addNewButtonPress addNewButtonPress} event
125491
125982
  * of this `sap.m.TabContainer`.
@@ -125628,31 +126119,6 @@ declare namespace sap {
125628
126119
  */
125629
126120
  oItem: sap.m.TabContainerItem
125630
126121
  ): int;
125631
- /**
125632
- * Inserts a item into the aggregation {@link #getItems items}.
125633
- *
125634
- * @returns Reference to `this` in order to allow method chaining
125635
- */
125636
- insertItem(
125637
- /**
125638
- * The item to insert; if empty, nothing is inserted
125639
- */
125640
- oItem: sap.m.TabContainerItem,
125641
- /**
125642
- * The `0`-based index the item should be inserted at; for a negative value of `iIndex`, the item is inserted
125643
- * at position 0; for a value greater than the current size of the aggregation, the item is inserted at
125644
- * the last position
125645
- */
125646
- iIndex: int
125647
- ): this;
125648
- /**
125649
- * Removes all the controls from the aggregation {@link #getItems items}.
125650
- *
125651
- * Additionally, it unregisters them from the hosting UIArea.
125652
- *
125653
- * @returns An array of the removed elements (might be empty)
125654
- */
125655
- removeAllItems(): sap.m.TabContainerItem[];
125656
126122
  /**
125657
126123
  * Removes an item from the aggregation named `items`.
125658
126124
  *
@@ -143703,6 +144169,37 @@ declare namespace sap {
143703
144169
  */
143704
144170
  Saving = "Saving",
143705
144171
  }
144172
+ /**
144173
+ * @since 1.118
144174
+ *
144175
+ * Defines the groups in {@link sap.m.DynamicDateRange}.
144176
+ */
144177
+ enum DynamicDateRangeGroups {
144178
+ /**
144179
+ * Group of options that provide selection of date ranges.
144180
+ */
144181
+ DateRanges = "DateRanges",
144182
+ /**
144183
+ * Group of options that provide selection of month related ranges.
144184
+ */
144185
+ Month = "Month",
144186
+ /**
144187
+ * Group of options that provide selection of quarter related ranges.
144188
+ */
144189
+ Quarters = "Quarters",
144190
+ /**
144191
+ * Group of options that provide selection of single dates.
144192
+ */
144193
+ SingleDates = "SingleDates",
144194
+ /**
144195
+ * Group of options that provide selection of week related ranges.
144196
+ */
144197
+ Weeks = "Weeks",
144198
+ /**
144199
+ * Group of options that provide selection of year related ranges.
144200
+ */
144201
+ Years = "Years",
144202
+ }
143706
144203
  /**
143707
144204
  * @since 1.87
143708
144205
  *
@@ -144736,18 +145233,19 @@ declare namespace sap {
144736
145233
  */
144737
145234
  enum ListKeyboardMode {
144738
145235
  /**
144739
- * This mode is suitable if the number of items is limited and if there are editable fields within the item.
145236
+ * This mode is suitable if there are only editable fields within the item.
144740
145237
  *
144741
- * While the last/first interactive element within an item has the focus, pressing tab/shift+tab moves the
144742
- * focus to the next/previous element in the tab chain after/before the item .
145238
+ * In this mode, the first focus goes to the first interactive element within the first item and this is
145239
+ * the only difference between the `Edit` and `Navigation` mode.
144743
145240
  */
144744
145241
  Edit = "Edit",
144745
145242
  /**
144746
- * This default mode is suitable if the number of items is unlimited or if there is no editable field within
144747
- * the item.
145243
+ * This default mode is suitable if the List or Table contains editable and/or non-editable fields.
144748
145244
  *
144749
- * While the last/first interactive element within an item has the focus, pressing tab/shift+tab moves the
144750
- * focus to the next/previous element in the tab chain after/before the `sap.m.List` or `sap.m.Table`.
145245
+ * In this mode, the first focus goes to the first item. If the focus is on the item, or cell, pressing
145246
+ * tab/shift+tab moves the focus to the next/previous element in the tab chain after/before the `sap.m.List`
145247
+ * or `sap.m.Table` control. If the focus is on the interactive element, pressing tab/shift+tab moves the
145248
+ * focus to the next/previous element in the tab chain after/before the focused interactive element.
144751
145249
  */
144752
145250
  Navigation = "Navigation",
144753
145251
  }
@@ -147214,6 +147712,11 @@ declare namespace sap {
147214
147712
  PlanningCalendar
147215
147713
  >;
147216
147714
 
147715
+ type PlanningCalendar$RowHeaderPressEvent = sap.ui.base.Event<
147716
+ PlanningCalendar$RowHeaderPressEventParameters,
147717
+ PlanningCalendar
147718
+ >;
147719
+
147217
147720
  type PlanningCalendar$RowSelectionChangeEvent = sap.ui.base.Event<
147218
147721
  PlanningCalendar$RowSelectionChangeEventParameters,
147219
147722
  PlanningCalendar
@@ -148223,6 +148726,8 @@ declare namespace sap {
148223
148726
 
148224
148727
  "sap/m/PlanningCalendarView": undefined;
148225
148728
 
148729
+ "sap/m/plugins/CellSelector": undefined;
148730
+
148226
148731
  "sap/m/plugins/ColumnResizer": undefined;
148227
148732
 
148228
148733
  "sap/m/plugins/CopyProvider": undefined;
@@ -148491,6 +148996,8 @@ declare namespace sap {
148491
148996
 
148492
148997
  "sap/m/upload/UploadSetToolbarPlaceholder": undefined;
148493
148998
 
148999
+ "sap/m/upload/UploadSetwithTable": undefined;
149000
+
148494
149001
  "sap/m/UploadCollection": undefined;
148495
149002
 
148496
149003
  "sap/m/UploadCollectionItem": undefined;