@openui5/ts-types 1.138.0 → 1.140.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,94 @@
1
- // For Library Version: 1.138.0
1
+ // For Library Version: 1.140.0
2
+
3
+ declare module "sap/m/p13n/Engine" {
4
+ /**
5
+ * The personalization state change event.
6
+ *
7
+ * @since 1.140.0
8
+ */
9
+ export type Engine$StateChangeEvent = {
10
+ /**
11
+ * Control for which the state change event was fired.
12
+ */
13
+ control?: sap.ui.core.Control;
14
+ /**
15
+ * Changed (delta) state of the control. The keys of the object refer to the controller keys used in the
16
+ * `Engine` registration. The values can be an array of any of the following types:
17
+ * - {@link module:sap/m/p13n/Engine$StateChangeEventSelectionState StateChangeEventSelectionState}
18
+ * - {@link module:sap/m/p13n/Engine$StateChangeEventSortState StateChangeEventSortState}
19
+ * - {@link module:sap/m/p13n/Engine$StateChangeEventGroupState StateChangeEventGroupState}
20
+ * - {@link module:sap/m/p13n/Engine$StateChangeEventFilterState StateChangeEventFilterState}
21
+ * - Custom controller state definitions
22
+ */
23
+ state?: Record<
24
+ string,
25
+ | Engine$StateChangeEventSelectionState[]
26
+ | Engine$StateChangeEventSortState[]
27
+ | Engine$StateChangeEventGroupState[]
28
+ | Engine$StateChangeEventFilterState[]
29
+ | any[]
30
+ >;
31
+ };
32
+
33
+ /**
34
+ * The state for changes of the `FilterController`. The keys of the object are the filter keys used in the
35
+ * `Engine` registration. The values are arrays of {@link sap.ui.mdc.condition.ConditionObject ConditionObject}.
36
+ *
37
+ * @since 1.140.0
38
+ */
39
+ export type Engine$StateChangeEventFilterState = Record<
40
+ string,
41
+ sap.m.p13n.FilterStateItem[]
42
+ >;
43
+
44
+ /**
45
+ * The state for changes of the `GroupController`.
46
+ *
47
+ * @since 1.140.0
48
+ */
49
+ export type Engine$StateChangeEventGroupState = {
50
+ /**
51
+ * The key of the affected group order
52
+ */
53
+ key: string;
54
+ /**
55
+ * The position of the group order
56
+ */
57
+ index: number;
58
+ };
59
+
60
+ /**
61
+ * The state for changes of the `SelectionController`.
62
+ *
63
+ * @since 1.140.0
64
+ */
65
+ export type Engine$StateChangeEventSelectionState = {
66
+ /**
67
+ * The key of the item affected
68
+ */
69
+ key: string;
70
+ };
71
+
72
+ /**
73
+ * The state for changes of the `SortController`.
74
+ *
75
+ * @since 1.140.0
76
+ */
77
+ export type Engine$StateChangeEventSortState = {
78
+ /**
79
+ * The key of the affected sort order
80
+ */
81
+ key: string;
82
+ /**
83
+ * The position of the sort order
84
+ */
85
+ index: number;
86
+ /**
87
+ * Indicates whether the sort order is descending
88
+ */
89
+ descending: boolean;
90
+ };
91
+ }
2
92
 
3
93
  declare namespace sap {
4
94
  /**
@@ -745,7 +835,9 @@ declare namespace sap {
745
835
  /**
746
836
  * The handler function to call when the event occurs
747
837
  */
748
- fnStateEventHandler: (p1: sap.ui.base.Event) => void,
838
+ fnStateEventHandler: (
839
+ p1: import("sap/m/p13n/Engine").Engine$StateChangeEvent
840
+ ) => void,
749
841
  /**
750
842
  * The context object to call the event handler with (value of `this` in the event handler function).
751
843
  */
@@ -2868,6 +2960,9 @@ declare namespace sap {
2868
2960
  *
2869
2961
  * This can be useful for maintaining the original structure of the data when it is pasted into a new location
2870
2962
  * (e.g. spreadsheets).
2963
+ *
2964
+ * **Note:** Sparse copying must not be enabled in combination with `sap.ui.table.plugins.ODataV4MultiSelection`
2965
+ * or the `sap.ui.mdc.Table` with the `sap.ui.mdc.odata.v4.TableDelegate`.
2871
2966
  */
2872
2967
  copySparse?:
2873
2968
  | boolean
@@ -4492,6 +4587,9 @@ declare namespace sap {
4492
4587
  * This can be useful for maintaining the original structure of the data when it is pasted into a new location
4493
4588
  * (e.g. spreadsheets).
4494
4589
  *
4590
+ * **Note:** Sparse copying must not be enabled in combination with `sap.ui.table.plugins.ODataV4MultiSelection`
4591
+ * or the `sap.ui.mdc.Table` with the `sap.ui.mdc.odata.v4.TableDelegate`.
4592
+ *
4495
4593
  * Default value is `false`.
4496
4594
  *
4497
4595
  *
@@ -4604,6 +4702,9 @@ declare namespace sap {
4604
4702
  * This can be useful for maintaining the original structure of the data when it is pasted into a new location
4605
4703
  * (e.g. spreadsheets).
4606
4704
  *
4705
+ * **Note:** Sparse copying must not be enabled in combination with `sap.ui.table.plugins.ODataV4MultiSelection`
4706
+ * or the `sap.ui.mdc.Table` with the `sap.ui.mdc.odata.v4.TableDelegate`.
4707
+ *
4607
4708
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4608
4709
  *
4609
4710
  * Default value is `false`.
@@ -5412,6 +5513,7 @@ declare namespace sap {
5412
5513
  * - {@link sap.ui.mdc.Table MDC Table}
5413
5514
  * - {@link sap.m.Table Responsive Table}
5414
5515
  * - {@link sap.m.GridTable Grid Table}
5516
+ * - {@link sap.ui.table.TreeTable Tree Table}
5415
5517
  *
5416
5518
  * Consider the following before using the plugin:
5417
5519
  * - It gets activated when it is added as a dependent to the table control. It gets deactivated when
@@ -5420,6 +5522,9 @@ declare namespace sap {
5420
5522
  *
5421
5523
  * - Configuring the rowConfiguration aggregation (type {@link sap.m.upload.UploadItemConfiguration UploadItemConfiguration})
5422
5524
  * of this plugin is mandatory to use the features such as file preview, download etc.
5525
+ * - For the plugin to work with the tree table control, the isDirectoryPath property of the rowConfiguration
5526
+ * aggregation must be set. This indicates if the context of the row is a directory or a file. It helps
5527
+ * the plugin with the file preview feature.
5423
5528
  * - It works only with the table control when the table is bound to the model to perform the operations
5424
5529
  * such as rename, download etc.
5425
5530
  *
@@ -7432,15 +7537,26 @@ declare namespace sap {
7432
7537
  ): this;
7433
7538
  }
7434
7539
  /**
7435
- * SAPUI5 mobile `Router`. The difference to the {@link sap.ui.core.routing.Router} are the `level`, `transition`,
7436
- * and `transitionParameters` properties that you can specify in every Route or Target created by this router.
7540
+ * The `sap.m.routing.Router` is a specialized extension of `{@link sap.ui.core.routing.Router}`, designed
7541
+ * specifically for the following containers in the `sap.m` library: `sap.m.App`, `sap.m.SplitApp`, or `sap.m.NavContainer`.
7542
+ *
7543
+ * It provides additional target and route configuration options that are optimized for the containers,
7544
+ * including support for animated transitions and navigation hierarchy levels.
7545
+ *
7546
+ * Compared to `{@link sap.ui.core.routing.Router}`, it adds support for additional Target properties:
7547
+ *
7548
+ * - `level`: Defines the hierarchical level of the target view for proper history and back navigation
7549
+ * handling
7550
+ * - `transition`: Specifies the type of transition animation between views (e.g., `slide`, `fade`)
7551
+ * - `transitionParameters`: Custom parameters for transitions
7552
+ *
7553
+ * For constructor parameters, see `{@link sap.ui.core.routing.Router#constructor}`.
7437
7554
  *
7438
7555
  * @since 1.28.1
7439
7556
  */
7440
7557
  class Router extends sap.ui.core.routing.Router {
7441
7558
  /**
7442
- * Constructor for a new `sap.m.routing.Router`. See `{@link sap.ui.core.routing.Router}` for the constructor
7443
- * arguments.
7559
+ * Constructor for a new `sap.m.routing.Router`.
7444
7560
  */
7445
7561
  constructor(
7446
7562
  /**
@@ -18480,6 +18596,16 @@ declare namespace sap {
18480
18596
  | sap.ui.base.ManagedObject.PropertyBindingInfo
18481
18597
  | `{${string}}`;
18482
18598
 
18599
+ /**
18600
+ * Specifies whether the item is a file or a directory. Used mainly for plugin with the tree table structure.
18601
+ *
18602
+ * @since 1.139
18603
+ */
18604
+ isDirectory?:
18605
+ | boolean
18606
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
18607
+ | `{${string}}`;
18608
+
18483
18609
  /**
18484
18610
  * Header fields to be included in the header section of an XMLHttpRequest (XHR) request
18485
18611
  */
@@ -18548,6 +18674,18 @@ declare namespace sap {
18548
18674
  isTrustedSourcePath?:
18549
18675
  | string
18550
18676
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
18677
+
18678
+ /**
18679
+ * Specifies the path in the model to confirm if it is a file or a directory. This is used to determine
18680
+ * if the context is file or a directory. If it is a directory, it cannot be previewed. Set this property
18681
+ * to the path in the model to determine if it is a file or a directory. The value of this path evaluated
18682
+ * should be boolean.
18683
+ *
18684
+ * @since 1.139
18685
+ */
18686
+ isDirectoryPath?:
18687
+ | string
18688
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
18551
18689
  }
18552
18690
 
18553
18691
  /**
@@ -21564,6 +21702,18 @@ declare namespace sap {
21564
21702
  * Header fields to be included in the header section of an XMLHttpRequest (XHR) request
21565
21703
  */
21566
21704
  getHeaderFields(): sap.ui.core.Item[];
21705
+ /**
21706
+ * Gets current value of property {@link #getIsDirectory isDirectory}.
21707
+ *
21708
+ * Specifies whether the item is a file or a directory. Used mainly for plugin with the tree table structure.
21709
+ *
21710
+ * Default value is `false`.
21711
+ *
21712
+ * @since 1.139
21713
+ *
21714
+ * @returns Value of property `isDirectory`
21715
+ */
21716
+ getIsDirectory(): boolean;
21567
21717
  /**
21568
21718
  * Gets current value of property {@link #getIsTrustedSource isTrustedSource}.
21569
21719
  *
@@ -21719,6 +21869,25 @@ declare namespace sap {
21719
21869
  */
21720
21870
  fFileSize?: float
21721
21871
  ): this;
21872
+ /**
21873
+ * Sets a new value for property {@link #getIsDirectory isDirectory}.
21874
+ *
21875
+ * Specifies whether the item is a file or a directory. Used mainly for plugin with the tree table structure.
21876
+ *
21877
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
21878
+ *
21879
+ * Default value is `false`.
21880
+ *
21881
+ * @since 1.139
21882
+ *
21883
+ * @returns Reference to `this` in order to allow method chaining
21884
+ */
21885
+ setIsDirectory(
21886
+ /**
21887
+ * New value for property `isDirectory`
21888
+ */
21889
+ bIsDirectory?: boolean
21890
+ ): this;
21722
21891
  /**
21723
21892
  * Sets a new value for property {@link #getIsTrustedSource isTrustedSource}.
21724
21893
  *
@@ -21925,6 +22094,19 @@ declare namespace sap {
21925
22094
  * @returns Value of property `fileSizePath`
21926
22095
  */
21927
22096
  getFileSizePath(): string;
22097
+ /**
22098
+ * Gets current value of property {@link #getIsDirectoryPath isDirectoryPath}.
22099
+ *
22100
+ * Specifies the path in the model to confirm if it is a file or a directory. This is used to determine
22101
+ * if the context is file or a directory. If it is a directory, it cannot be previewed. Set this property
22102
+ * to the path in the model to determine if it is a file or a directory. The value of this path evaluated
22103
+ * should be boolean.
22104
+ *
22105
+ * @since 1.139
22106
+ *
22107
+ * @returns Value of property `isDirectoryPath`
22108
+ */
22109
+ getIsDirectoryPath(): string;
21928
22110
  /**
21929
22111
  * Gets current value of property {@link #getIsTrustedSourcePath isTrustedSourcePath}.
21930
22112
  *
@@ -22006,6 +22188,26 @@ declare namespace sap {
22006
22188
  */
22007
22189
  sFileSizePath?: string
22008
22190
  ): this;
22191
+ /**
22192
+ * Sets a new value for property {@link #getIsDirectoryPath isDirectoryPath}.
22193
+ *
22194
+ * Specifies the path in the model to confirm if it is a file or a directory. This is used to determine
22195
+ * if the context is file or a directory. If it is a directory, it cannot be previewed. Set this property
22196
+ * to the path in the model to determine if it is a file or a directory. The value of this path evaluated
22197
+ * should be boolean.
22198
+ *
22199
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
22200
+ *
22201
+ * @since 1.139
22202
+ *
22203
+ * @returns Reference to `this` in order to allow method chaining
22204
+ */
22205
+ setIsDirectoryPath(
22206
+ /**
22207
+ * New value for property `isDirectoryPath`
22208
+ */
22209
+ sIsDirectoryPath?: string
22210
+ ): this;
22009
22211
  /**
22010
22212
  * Sets a new value for property {@link #getIsTrustedSourcePath isTrustedSourcePath}.
22011
22213
  *
@@ -29929,6 +30131,20 @@ declare namespace sap {
29929
30131
  | string
29930
30132
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
29931
30133
 
30134
+ /**
30135
+ * Defines the actions that are displayed next to the text area. These buttons can be used to trigger actions,
30136
+ * such as attaching a file. This is a {@link sap.m.Button} If the actions are not set, the post button
30137
+ * is displayed as the last control in the feed input. **Note:** Only `sap.m.Button` is supported for this
30138
+ * aggregation. If another control is provided, an error is logged and actions are ignored.
30139
+ *
30140
+ * @since 1.139
30141
+ */
30142
+ actions?:
30143
+ | sap.ui.core.Control[]
30144
+ | sap.ui.core.Control
30145
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
30146
+ | `{${string}}`;
30147
+
29932
30148
  /**
29933
30149
  * The Post event is triggered when the user has entered a value and pressed the post button. After firing
29934
30150
  * this event, the value is reset.
@@ -33265,12 +33481,12 @@ declare namespace sap {
33265
33481
  * for the `selected` property of the item is not used. It also needs to be turned off if the binding context
33266
33482
  * of the item does not always point to the same entry in the model, for example, if the order of the data
33267
33483
  * in the `JSONModel` is changed. **Note:** This feature leverages the built-in selection mechanism of the
33268
- * corresponding binding context when the OData V4 model is used. Therefore, all binding-relevant limitations
33484
+ * corresponding binding context if the OData V4 model is used. Therefore, all binding-relevant limitations
33269
33485
  * apply in this context as well. For more details, see the {@link sap.ui.model.odata.v4.Context#setSelected setSelected},
33270
33486
  * the {@link sap.ui.model.odata.v4.ODataModel#bindList bindList}, and the {@link sap.ui.model.odata.v4.ODataMetaModel#requestValueListInfo requestValueListInfo }
33271
- * API documentation. Do not enable this feature when `$$SharedRequests` or `$$clearSelectionOnFilter` is
33272
- * active. **Note:** If this property is set to `false`, a possible binding context update of items (for
33273
- * example, filtering or sorting the list binding) would clear the selection of the items.
33487
+ * API documentation. Do not enable this feature if `$$sharedRequest` or `$$clearSelectionOnFilter` is active.
33488
+ * **Note:** If this property is set to `false`, a possible binding context update of items (for example,
33489
+ * filtering or sorting the list binding) would clear the selection of the items.
33274
33490
  *
33275
33491
  * @since 1.16.6
33276
33492
  */
@@ -34537,6 +34753,13 @@ declare namespace sap {
34537
34753
  * @since 1.58
34538
34754
  */
34539
34755
  activeTitlePress?: (oEvent: MessageView$ActiveTitlePressEvent) => void;
34756
+
34757
+ /**
34758
+ * Event fired when the close button in custom header is clicked.
34759
+ *
34760
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
34761
+ */
34762
+ onClose?: (oEvent: sap.ui.base.Event) => void;
34540
34763
  }
34541
34764
 
34542
34765
  /**
@@ -36408,6 +36631,36 @@ declare namespace sap {
36408
36631
  interface $OverflowToolbarToggleButtonSettings
36409
36632
  extends sap.m.$ToggleButtonSettings {}
36410
36633
 
36634
+ /**
36635
+ * Describes the settings that can be provided to the OverflowToolbarTokenizer constructor.
36636
+ *
36637
+ * @experimental As of version 1.139.
36638
+ */
36639
+ interface $OverflowToolbarTokenizerSettings extends sap.m.$ButtonSettings {
36640
+ /**
36641
+ * Property for the text of a sap.m.Label displayed with sap.m.OverflowToolbarTokenizer. It is also displayed
36642
+ * as an n-More button text when used inside a `sap.m.OverflowToolbar`.
36643
+ */
36644
+ labelText?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
36645
+
36646
+ /**
36647
+ * Defines the mode that the OverflowToolbarTokenizer will use:
36648
+ * - `sap.m.OverflowToolbarTokenizerRenderMode.Loose` mode shows all tokens, no matter the width of the
36649
+ * Tokenizer
36650
+ * - `sap.m.OverflowToolbarTokenizerRenderMode.Narrow` mode restricts the tokenizer to display only the
36651
+ * maximum number of tokens that fit within its width, adding an n-More indicator for the remaining tokens
36652
+ *
36653
+ * - `sap.m.OverflowToolbarTokenizerRenderMode.Overflow` mode forces the tokenizer to show only `sap.m.Button`
36654
+ * as an n-More indicator without visible tokens. It is used when `sap.m.OverflowToolbarTokenizer` is within
36655
+ * the `sap.m.OverflowToolbar` overflow area
36656
+ *
36657
+ * **Note**: Have in mind that the `renderMode` property is used internally by the OverflowToolbarTokenizer
36658
+ * and controls that use the OverflowToolbarTokenizer. Therefore, modifying this property may alter the
36659
+ * expected behavior of the control.
36660
+ */
36661
+ renderMode?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
36662
+ }
36663
+
36411
36664
  /**
36412
36665
  * Describes the settings that can be provided to the P13nColumnsItem constructor.
36413
36666
  *
@@ -40708,6 +40961,16 @@ declare namespace sap {
40708
40961
  | sap.ui.base.ManagedObject.PropertyBindingInfo
40709
40962
  | `{${string}}`;
40710
40963
 
40964
+ /**
40965
+ * Defines the separator type for the two columns layout when Select is in read-only mode.
40966
+ *
40967
+ * @since 1.140
40968
+ */
40969
+ twoColumnSeparator?:
40970
+ | sap.m.SelectTwoColumnSeparator
40971
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
40972
+ | `{${string}}`;
40973
+
40711
40974
  /**
40712
40975
  * Defines the items contained within this control.
40713
40976
  *
@@ -47164,6 +47427,11 @@ declare namespace sap {
47164
47427
  */
47165
47428
  interface MessageView$LongtextLoadedEventParameters {}
47166
47429
 
47430
+ /**
47431
+ * Parameters of the MessageView#onClose event.
47432
+ */
47433
+ interface MessageView$OnCloseEventParameters {}
47434
+
47167
47435
  /**
47168
47436
  * Parameters of the MessageView#urlValidated event.
47169
47437
  */
@@ -72056,6 +72324,19 @@ declare namespace sap {
72056
72324
  * @returns Metadata object describing this class
72057
72325
  */
72058
72326
  static getMetadata(): sap.ui.core.ElementMetadata;
72327
+ /**
72328
+ * Adds some action to the aggregation {@link #getActions actions}.
72329
+ *
72330
+ * @since 1.139
72331
+ *
72332
+ * @returns Reference to `this` in order to allow method chaining
72333
+ */
72334
+ addAction(
72335
+ /**
72336
+ * The action to add; if empty, nothing is inserted
72337
+ */
72338
+ oAction: sap.ui.core.Control
72339
+ ): this;
72059
72340
  /**
72060
72341
  * Attaches event handler `fnFunction` to the {@link #event:post post} event of this `sap.m.FeedInput`.
72061
72342
  *
@@ -72105,6 +72386,14 @@ declare namespace sap {
72105
72386
  */
72106
72387
  oListener?: object
72107
72388
  ): this;
72389
+ /**
72390
+ * Destroys all the actions in the aggregation {@link #getActions actions}.
72391
+ *
72392
+ * @since 1.139
72393
+ *
72394
+ * @returns Reference to `this` in order to allow method chaining
72395
+ */
72396
+ destroyActions(): this;
72108
72397
  /**
72109
72398
  * Detaches event handler `fnFunction` from the {@link #event:post post} event of this `sap.m.FeedInput`.
72110
72399
  *
@@ -72136,6 +72425,17 @@ declare namespace sap {
72136
72425
  */
72137
72426
  mParameters?: sap.m.FeedInput$PostEventParameters
72138
72427
  ): this;
72428
+ /**
72429
+ * Gets content of aggregation {@link #getActions actions}.
72430
+ *
72431
+ * Defines the actions that are displayed next to the text area. These buttons can be used to trigger actions,
72432
+ * such as attaching a file. This is a {@link sap.m.Button} If the actions are not set, the post button
72433
+ * is displayed as the last control in the feed input. **Note:** Only `sap.m.Button` is supported for this
72434
+ * aggregation. If another control is provided, an error is logged and actions are ignored.
72435
+ *
72436
+ * @since 1.139
72437
+ */
72438
+ getActions(): sap.ui.core.Control[];
72139
72439
  /**
72140
72440
  * Gets current value of property {@link #getAriaLabelForPicture ariaLabelForPicture}.
72141
72441
  *
@@ -72334,6 +72634,62 @@ declare namespace sap {
72334
72634
  * @returns Value of property `value`
72335
72635
  */
72336
72636
  getValue(): string;
72637
+ /**
72638
+ * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getActions actions}. and returns
72639
+ * its index if found or -1 otherwise.
72640
+ *
72641
+ * @since 1.139
72642
+ *
72643
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
72644
+ */
72645
+ indexOfAction(
72646
+ /**
72647
+ * The action whose index is looked for
72648
+ */
72649
+ oAction: sap.ui.core.Control
72650
+ ): int;
72651
+ /**
72652
+ * Inserts a action into the aggregation {@link #getActions actions}.
72653
+ *
72654
+ * @since 1.139
72655
+ *
72656
+ * @returns Reference to `this` in order to allow method chaining
72657
+ */
72658
+ insertAction(
72659
+ /**
72660
+ * The action to insert; if empty, nothing is inserted
72661
+ */
72662
+ oAction: sap.ui.core.Control,
72663
+ /**
72664
+ * The `0`-based index the action should be inserted at; for a negative value of `iIndex`, the action is
72665
+ * inserted at position 0; for a value greater than the current size of the aggregation, the action is inserted
72666
+ * at the last position
72667
+ */
72668
+ iIndex: int
72669
+ ): this;
72670
+ /**
72671
+ * Removes a action from the aggregation {@link #getActions actions}.
72672
+ *
72673
+ * @since 1.139
72674
+ *
72675
+ * @returns The removed action or `null`
72676
+ */
72677
+ removeAction(
72678
+ /**
72679
+ * The action to remove or its index or id
72680
+ */
72681
+ vAction: int | string | sap.ui.core.Control
72682
+ ): sap.ui.core.Control | null;
72683
+ /**
72684
+ * Removes all the controls from the aggregation {@link #getActions actions}.
72685
+ *
72686
+ * Additionally, it unregisters them from the hosting UIArea.
72687
+ *
72688
+ * @since 1.139
72689
+ *
72690
+ * @returns An array of the removed elements (might be empty)
72691
+ */
72692
+ removeAllActions(): sap.ui.core.Control[];
72337
72693
  /**
72338
72694
  * Sets a new value for property {@link #getAriaLabelForPicture ariaLabelForPicture}.
72339
72695
  *
@@ -89243,12 +89599,12 @@ declare namespace sap {
89243
89599
  * for the `selected` property of the item is not used. It also needs to be turned off if the binding context
89244
89600
  * of the item does not always point to the same entry in the model, for example, if the order of the data
89245
89601
  * in the `JSONModel` is changed. **Note:** This feature leverages the built-in selection mechanism of the
89246
- * corresponding binding context when the OData V4 model is used. Therefore, all binding-relevant limitations
89602
+ * corresponding binding context if the OData V4 model is used. Therefore, all binding-relevant limitations
89247
89603
  * apply in this context as well. For more details, see the {@link sap.ui.model.odata.v4.Context#setSelected setSelected},
89248
89604
  * the {@link sap.ui.model.odata.v4.ODataModel#bindList bindList}, and the {@link sap.ui.model.odata.v4.ODataMetaModel#requestValueListInfo requestValueListInfo }
89249
- * API documentation. Do not enable this feature when `$$SharedRequests` or `$$clearSelectionOnFilter` is
89250
- * active. **Note:** If this property is set to `false`, a possible binding context update of items (for
89251
- * example, filtering or sorting the list binding) would clear the selection of the items.
89605
+ * API documentation. Do not enable this feature if `$$sharedRequest` or `$$clearSelectionOnFilter` is active.
89606
+ * **Note:** If this property is set to `false`, a possible binding context update of items (for example,
89607
+ * filtering or sorting the list binding) would clear the selection of the items.
89252
89608
  *
89253
89609
  * Default value is `true`.
89254
89610
  *
@@ -89944,12 +90300,12 @@ declare namespace sap {
89944
90300
  * for the `selected` property of the item is not used. It also needs to be turned off if the binding context
89945
90301
  * of the item does not always point to the same entry in the model, for example, if the order of the data
89946
90302
  * in the `JSONModel` is changed. **Note:** This feature leverages the built-in selection mechanism of the
89947
- * corresponding binding context when the OData V4 model is used. Therefore, all binding-relevant limitations
90303
+ * corresponding binding context if the OData V4 model is used. Therefore, all binding-relevant limitations
89948
90304
  * apply in this context as well. For more details, see the {@link sap.ui.model.odata.v4.Context#setSelected setSelected},
89949
90305
  * the {@link sap.ui.model.odata.v4.ODataModel#bindList bindList}, and the {@link sap.ui.model.odata.v4.ODataMetaModel#requestValueListInfo requestValueListInfo }
89950
- * API documentation. Do not enable this feature when `$$SharedRequests` or `$$clearSelectionOnFilter` is
89951
- * active. **Note:** If this property is set to `false`, a possible binding context update of items (for
89952
- * example, filtering or sorting the list binding) would clear the selection of the items.
90306
+ * API documentation. Do not enable this feature if `$$sharedRequest` or `$$clearSelectionOnFilter` is active.
90307
+ * **Note:** If this property is set to `false`, a possible binding context update of items (for example,
90308
+ * filtering or sorting the list binding) would clear the selection of the items.
89953
90309
  *
89954
90310
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
89955
90311
  *
@@ -96550,6 +96906,12 @@ declare namespace sap {
96550
96906
  */
96551
96907
  mSettings?: sap.m.$MessageViewSettings
96552
96908
  );
96909
+ /**
96910
+ * Defines whether the custom header of details page will be shown.
96911
+ *
96912
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
96913
+ */
96914
+ _bShowCustomHeader: boolean;
96553
96915
 
96554
96916
  /**
96555
96917
  * Creates a new subclass of class sap.m.MessageView with name `sClassName` and enriches it with the information
@@ -96857,6 +97219,55 @@ declare namespace sap {
96857
97219
  */
96858
97220
  oListener?: object
96859
97221
  ): this;
97222
+ /**
97223
+ * Attaches event handler `fnFunction` to the {@link #event:onClose onClose} event of this `sap.m.MessageView`.
97224
+ *
97225
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
97226
+ * otherwise it will be bound to this `sap.m.MessageView` itself.
97227
+ *
97228
+ * Event fired when the close button in custom header is clicked.
97229
+ *
97230
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
97231
+ *
97232
+ * @returns Reference to `this` in order to allow method chaining
97233
+ */
97234
+ attachOnClose(
97235
+ /**
97236
+ * An application-specific payload object that will be passed to the event handler along with the event
97237
+ * object when firing the event
97238
+ */
97239
+ oData: object,
97240
+ /**
97241
+ * The function to be called when the event occurs
97242
+ */
97243
+ fnFunction: (p1: sap.ui.base.Event) => void,
97244
+ /**
97245
+ * Context object to call the event handler with. Defaults to this `sap.m.MessageView` itself
97246
+ */
97247
+ oListener?: object
97248
+ ): this;
97249
+ /**
97250
+ * Attaches event handler `fnFunction` to the {@link #event:onClose onClose} event of this `sap.m.MessageView`.
97251
+ *
97252
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
97253
+ * otherwise it will be bound to this `sap.m.MessageView` itself.
97254
+ *
97255
+ * Event fired when the close button in custom header is clicked.
97256
+ *
97257
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
97258
+ *
97259
+ * @returns Reference to `this` in order to allow method chaining
97260
+ */
97261
+ attachOnClose(
97262
+ /**
97263
+ * The function to be called when the event occurs
97264
+ */
97265
+ fnFunction: (p1: sap.ui.base.Event) => void,
97266
+ /**
97267
+ * Context object to call the event handler with. Defaults to this `sap.m.MessageView` itself
97268
+ */
97269
+ oListener?: object
97270
+ ): this;
96860
97271
  /**
96861
97272
  * Attaches event handler `fnFunction` to the {@link #event:urlValidated urlValidated} event of this `sap.m.MessageView`.
96862
97273
  *
@@ -97012,6 +97423,25 @@ declare namespace sap {
97012
97423
  */
97013
97424
  oListener?: object
97014
97425
  ): this;
97426
+ /**
97427
+ * Detaches event handler `fnFunction` from the {@link #event:onClose onClose} event of this `sap.m.MessageView`.
97428
+ *
97429
+ * The passed function and listener object must match the ones used for event registration.
97430
+ *
97431
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
97432
+ *
97433
+ * @returns Reference to `this` in order to allow method chaining
97434
+ */
97435
+ detachOnClose(
97436
+ /**
97437
+ * The function to be called, when the event occurs
97438
+ */
97439
+ fnFunction: (p1: sap.ui.base.Event) => void,
97440
+ /**
97441
+ * Context object on which the given function had to be called
97442
+ */
97443
+ oListener?: object
97444
+ ): this;
97015
97445
  /**
97016
97446
  * Detaches event handler `fnFunction` from the {@link #event:urlValidated urlValidated} event of this `sap.m.MessageView`.
97017
97447
  *
@@ -97097,6 +97527,19 @@ declare namespace sap {
97097
97527
  */
97098
97528
  mParameters?: object
97099
97529
  ): this;
97530
+ /**
97531
+ * Fires event {@link #event:onClose onClose} to attached listeners.
97532
+ *
97533
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
97534
+ *
97535
+ * @returns Reference to `this` in order to allow method chaining
97536
+ */
97537
+ fireOnClose(
97538
+ /**
97539
+ * Parameters to pass along with the event
97540
+ */
97541
+ mParameters?: object
97542
+ ): this;
97100
97543
  /**
97101
97544
  * Fires event {@link #event:urlValidated urlValidated} to attached listeners.
97102
97545
  *
@@ -97130,6 +97573,15 @@ declare namespace sap {
97130
97573
  * @returns Value of property `asyncURLHandler`
97131
97574
  */
97132
97575
  getAsyncURLHandler(): Function;
97576
+ /**
97577
+ * Returns the close button used in the header of the MessageView. The button is only visible on non-phone
97578
+ * devices and triggers the `onClose` event when pressed.
97579
+ *
97580
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
97581
+ *
97582
+ * @returns The close button instance.
97583
+ */
97584
+ getCloseBtn(): sap.m.Button;
97133
97585
  /**
97134
97586
  * Gets current value of property {@link #getGroupItems groupItems}.
97135
97587
  *
@@ -97196,6 +97648,17 @@ declare namespace sap {
97196
97648
  */
97197
97649
  iIndex: int
97198
97650
  ): this;
97651
+ /**
97652
+ * Inserts a title into the given title container of the MessageView's header.
97653
+ *
97654
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
97655
+ */
97656
+ insertTitle(
97657
+ /**
97658
+ * The parent control where the title should be inserted.
97659
+ */
97660
+ oTitleParent: sap.ui.core.Control
97661
+ ): void;
97199
97662
  /**
97200
97663
  * Navigates back to the list page
97201
97664
  */
@@ -97303,6 +97766,13 @@ declare namespace sap {
97303
97766
  */
97304
97767
  bShowDetailsPageHeader?: boolean
97305
97768
  ): this;
97769
+ /**
97770
+ * Sets up the header for the MessageView's ListPage based on the current configuration. If `showCustomHeader`
97771
+ * is enabled, a custom header and a sub-header are applied. Otherwise, a standard list header is used.
97772
+ *
97773
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
97774
+ */
97775
+ setupCustomHeader(): void;
97306
97776
  }
97307
97777
  /**
97308
97778
  * The MultiComboBox control provides a list box with items and a text field allowing the user to either
@@ -106650,6 +107120,7 @@ declare namespace sap {
106650
107120
  * - {@link sap.m.SegmentedButton}
106651
107121
  * - {@link sap.m.Select}
106652
107122
  * - {@link sap.m.TimePicker}
107123
+ * - {@link sap.m.OverflowToolbarTokenizer}
106653
107124
  * - {@link sap.m.ToggleButton}
106654
107125
  * - {@link sap.m.ToolbarSeparator}
106655
107126
  * - {@link sap.ui.comp.smartfield.SmartField}
@@ -107239,6 +107710,165 @@ declare namespace sap {
107239
107710
  */
107240
107711
  static getMetadata(): sap.ui.core.ElementMetadata;
107241
107712
  }
107713
+ /**
107714
+ * Represents an {@link sap.m.Button} that shows its text only when in the overflow area of an {@link sap.m.OverflowToolbar}.
107715
+ *
107716
+ * **Note:** This control is intended to be used exclusively in the context of `sap.m.Toolbar` and `sap.m.OverflowToolbar`.
107717
+ * Using more than one tokenizer in the same toolbar is not recomended, as it may lead to unexpected behavior.
107718
+ * Do not use tokenizers within a toolbar if its active property is set to `true`.
107719
+ *
107720
+ * @since 1.139
107721
+ * @experimental As of version 1.139.
107722
+ */
107723
+ class OverflowToolbarTokenizer
107724
+ extends sap.m.Button
107725
+ implements sap.m.IOverflowToolbarContent, sap.m.IToolbarInteractiveControl
107726
+ {
107727
+ __implements__sap_m_IOverflowToolbarContent: boolean;
107728
+ __implements__sap_m_IToolbarInteractiveControl: boolean;
107729
+ /**
107730
+ * Constructor for a new `OverflowToolbarTokenizer`.
107731
+ *
107732
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
107733
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
107734
+ * of the syntax of the settings object.
107735
+ */
107736
+ constructor(
107737
+ /**
107738
+ * Initial settings for the new control
107739
+ */
107740
+ mSettings?: sap.m.$OverflowToolbarTokenizerSettings
107741
+ );
107742
+ /**
107743
+ * Constructor for a new `OverflowToolbarTokenizer`.
107744
+ *
107745
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
107746
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
107747
+ * of the syntax of the settings object.
107748
+ */
107749
+ constructor(
107750
+ /**
107751
+ * ID for the new control, generated automatically if no ID is given
107752
+ */
107753
+ sId?: string,
107754
+ /**
107755
+ * Initial settings for the new control
107756
+ */
107757
+ mSettings?: sap.m.$OverflowToolbarTokenizerSettings
107758
+ );
107759
+
107760
+ /**
107761
+ * Creates a new subclass of class sap.m.OverflowToolbarTokenizer with name `sClassName` and enriches it
107762
+ * with the information contained in `oClassInfo`.
107763
+ *
107764
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.m.Button.extend}.
107765
+ *
107766
+ *
107767
+ * @returns Created class / constructor function
107768
+ */
107769
+ static extend<T extends Record<string, unknown>>(
107770
+ /**
107771
+ * Name of the class being created
107772
+ */
107773
+ sClassName: string,
107774
+ /**
107775
+ * Object literal with information about the class
107776
+ */
107777
+ oClassInfo?: sap.ClassInfo<T, sap.m.OverflowToolbarTokenizer>,
107778
+ /**
107779
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
107780
+ * used by this class
107781
+ */
107782
+ FNMetaImpl?: Function
107783
+ ): Function;
107784
+ /**
107785
+ * Returns a metadata object for class sap.m.OverflowToolbarTokenizer.
107786
+ *
107787
+ *
107788
+ * @returns Metadata object describing this class
107789
+ */
107790
+ static getMetadata(): sap.ui.core.ElementMetadata;
107791
+ /**
107792
+ * Gets current value of property {@link #getLabelText labelText}.
107793
+ *
107794
+ * Property for the text of a sap.m.Label displayed with sap.m.OverflowToolbarTokenizer. It is also displayed
107795
+ * as an n-More button text when used inside a `sap.m.OverflowToolbar`.
107796
+ *
107797
+ *
107798
+ * @returns Value of property `labelText`
107799
+ */
107800
+ getLabelText(): string;
107801
+ /**
107802
+ * Gets current value of property {@link #getRenderMode renderMode}.
107803
+ *
107804
+ * Defines the mode that the OverflowToolbarTokenizer will use:
107805
+ * - `sap.m.OverflowToolbarTokenizerRenderMode.Loose` mode shows all tokens, no matter the width of the
107806
+ * Tokenizer
107807
+ * - `sap.m.OverflowToolbarTokenizerRenderMode.Narrow` mode restricts the tokenizer to display only the
107808
+ * maximum number of tokens that fit within its width, adding an n-More indicator for the remaining tokens
107809
+ *
107810
+ * - `sap.m.OverflowToolbarTokenizerRenderMode.Overflow` mode forces the tokenizer to show only `sap.m.Button`
107811
+ * as an n-More indicator without visible tokens. It is used when `sap.m.OverflowToolbarTokenizer` is within
107812
+ * the `sap.m.OverflowToolbar` overflow area
107813
+ *
107814
+ * **Note**: Have in mind that the `renderMode` property is used internally by the OverflowToolbarTokenizer
107815
+ * and controls that use the OverflowToolbarTokenizer. Therefore, modifying this property may alter the
107816
+ * expected behavior of the control.
107817
+ *
107818
+ * Default value is `RenderMode.Narrow`.
107819
+ *
107820
+ *
107821
+ * @returns Value of property `renderMode`
107822
+ */
107823
+ getRenderMode(): string;
107824
+ /**
107825
+ * Sets a new value for property {@link #getLabelText labelText}.
107826
+ *
107827
+ * Property for the text of a sap.m.Label displayed with sap.m.OverflowToolbarTokenizer. It is also displayed
107828
+ * as an n-More button text when used inside a `sap.m.OverflowToolbar`.
107829
+ *
107830
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
107831
+ *
107832
+ *
107833
+ * @returns Reference to `this` in order to allow method chaining
107834
+ */
107835
+ setLabelText(
107836
+ /**
107837
+ * New value for property `labelText`
107838
+ */
107839
+ sLabelText?: string
107840
+ ): this;
107841
+ /**
107842
+ * Sets a new value for property {@link #getRenderMode renderMode}.
107843
+ *
107844
+ * Defines the mode that the OverflowToolbarTokenizer will use:
107845
+ * - `sap.m.OverflowToolbarTokenizerRenderMode.Loose` mode shows all tokens, no matter the width of the
107846
+ * Tokenizer
107847
+ * - `sap.m.OverflowToolbarTokenizerRenderMode.Narrow` mode restricts the tokenizer to display only the
107848
+ * maximum number of tokens that fit within its width, adding an n-More indicator for the remaining tokens
107849
+ *
107850
+ * - `sap.m.OverflowToolbarTokenizerRenderMode.Overflow` mode forces the tokenizer to show only `sap.m.Button`
107851
+ * as an n-More indicator without visible tokens. It is used when `sap.m.OverflowToolbarTokenizer` is within
107852
+ * the `sap.m.OverflowToolbar` overflow area
107853
+ *
107854
+ * **Note**: Have in mind that the `renderMode` property is used internally by the OverflowToolbarTokenizer
107855
+ * and controls that use the OverflowToolbarTokenizer. Therefore, modifying this property may alter the
107856
+ * expected behavior of the control.
107857
+ *
107858
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
107859
+ *
107860
+ * Default value is `RenderMode.Narrow`.
107861
+ *
107862
+ *
107863
+ * @returns Reference to `this` in order to allow method chaining
107864
+ */
107865
+ setRenderMode(
107866
+ /**
107867
+ * New value for property `renderMode`
107868
+ */
107869
+ sRenderMode?: string
107870
+ ): this;
107871
+ }
107242
107872
  /**
107243
107873
  * Type for `columnsItems` aggregation in `P13nColumnsPanel` control.
107244
107874
  *
@@ -117680,17 +118310,27 @@ declare namespace sap {
117680
118310
  sAppointmentRoundWidth?: sap.ui.unified.CalendarAppointmentRoundWidth
117681
118311
  ): this;
117682
118312
  /**
117683
- * Set the appointment reduced height property to the appointments in the calendar
118313
+ * Sets a new value for property {@link #getAppointmentsReducedHeight appointmentsReducedHeight}.
118314
+ *
118315
+ * Determines whether the appointments that have only title without text are rendered with smaller height.
117684
118316
  *
118317
+ * **Note:** On phone devices this property is ignored, appointments are always rendered in full height
118318
+ * to facilitate touching.
118319
+ *
118320
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
118321
+ *
118322
+ * Default value is `false`.
118323
+ *
118324
+ * @since 1.38.0
117685
118325
  * @deprecated As of version 1.119. Please use the `appointmentHeight` with value "Automatic" property instead.
117686
118326
  *
117687
- * @returns Reference to `this` for method chaining
118327
+ * @returns Reference to `this` in order to allow method chaining
117688
118328
  */
117689
118329
  setAppointmentsReducedHeight(
117690
118330
  /**
117691
- * if set to true, the appointments will have a reduced height
118331
+ * New value for property `appointmentsReducedHeight`
117692
118332
  */
117693
- bAppointmentsReducedHeight: boolean
118333
+ bAppointmentsReducedHeight?: boolean
117694
118334
  ): this;
117695
118335
  /**
117696
118336
  * Sets a new value for property {@link #getAppointmentsVisualization appointmentsVisualization}.
@@ -117940,26 +118580,39 @@ declare namespace sap {
117940
118580
  sNoDataText?: string
117941
118581
  ): this;
117942
118582
  /**
117943
- * Sets the primaryCalendarType. If not set, the calendar type of the global configuration is used.
118583
+ * Sets a new value for property {@link #getPrimaryCalendarType primaryCalendarType}.
118584
+ *
118585
+ * If set, the calendar type is used for display. If not set, the calendar type of the global configuration
118586
+ * is used.
117944
118587
  *
118588
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
117945
118589
  *
117946
- * @returns `this` to allow method chaining
118590
+ * @since 1.108.0
118591
+ *
118592
+ * @returns Reference to `this` in order to allow method chaining
117947
118593
  */
117948
118594
  setPrimaryCalendarType(
117949
118595
  /**
117950
- * the `CalendarType` to set as `sap.m.PlanningCalendar` `primaryCalendarType`.
118596
+ * New value for property `primaryCalendarType`
117951
118597
  */
117952
118598
  sPrimaryCalendarType: import("sap/base/i18n/date/CalendarType").default
117953
118599
  ): this;
117954
118600
  /**
117955
- * Sets the secondaryCalendarType.
118601
+ * Sets a new value for property {@link #getSecondaryCalendarType secondaryCalendarType}.
118602
+ *
118603
+ * If set, the days are also represented in this calendar type. If not set, the dates are only represented
118604
+ * in the primary calendar type. Note: The second calendar type won't be represented in the DOM when this
118605
+ * property is not set explicitly.
117956
118606
  *
118607
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
117957
118608
  *
117958
- * @returns `this` to allow method chaining
118609
+ * @since 1.109.0
118610
+ *
118611
+ * @returns Reference to `this` in order to allow method chaining
117959
118612
  */
117960
118613
  setSecondaryCalendarType(
117961
118614
  /**
117962
- * the `CalendarType` to set as `sap.m.PlanningCalendar` `secondaryCalendarType`.
118615
+ * New value for property `secondaryCalendarType`
117963
118616
  */
117964
118617
  sSecondaryCalendarType: import("sap/base/i18n/date/CalendarType").default
117965
118618
  ): this;
@@ -118100,16 +118753,42 @@ declare namespace sap {
118100
118753
  oDate: Date
118101
118754
  ): this;
118102
118755
  /**
118103
- * Sets the stickyHeader property.
118756
+ * Sets a new value for property {@link #getStickyHeader stickyHeader}.
118757
+ *
118758
+ * Determines whether the header area will remain visible (fixed on top) when the rest of the content is
118759
+ * scrolled out of view.
118104
118760
  *
118761
+ * The sticky header behavior is automatically disabled on phones in landscape mode for better visibility
118762
+ * of the content.
118105
118763
  *
118106
- * @returns this pointer for chaining
118764
+ * **Note:** There is limited browser support, hence the API is in experimental state. Browsers that currently
118765
+ * support this feature are Chrome (desktop and mobile), Safari (desktop and mobile) and Edge 41.
118766
+ *
118767
+ * There are also some known issues with respect to the scrolling behavior and focus handling. A few are
118768
+ * given below:
118769
+ *
118770
+ * When the PlanningCalendar is placed in certain layout containers, for example the `GridLayout` control,
118771
+ * the column headers do not fix at the top of the viewport. Similar behavior is also observed with the
118772
+ * `ObjectPage` control.
118773
+ *
118774
+ * This API should not be used in production environment.
118775
+ *
118776
+ * **Note:** The `stickyHeader` of the `PlanningCalendar` uses the `sticky` property of `sap.m.Table`. Therefore,
118777
+ * all features and restrictions of the property in `sap.m.Table` apply to the `PlanningCalendar` as well.
118778
+ *
118779
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
118780
+ *
118781
+ * Default value is `false`.
118782
+ *
118783
+ * @since 1.54
118784
+ *
118785
+ * @returns Reference to `this` in order to allow method chaining
118107
118786
  */
118108
118787
  setStickyHeader(
118109
118788
  /**
118110
- * Whether the header area will remain visible (fixed on top)
118789
+ * New value for property `stickyHeader`
118111
118790
  */
118112
- bStick: boolean
118791
+ bStickyHeader?: boolean
118113
118792
  ): this;
118114
118793
  /**
118115
118794
  * Sets a new value for property {@link #getViewKey viewKey}.
@@ -118133,16 +118812,20 @@ declare namespace sap {
118133
118812
  sViewKey?: string
118134
118813
  ): this;
118135
118814
  /**
118136
- * Sets the width property and ensures that the start date is in sync with each row timeline.
118815
+ * Sets a new value for property {@link #getWidth width}.
118816
+ *
118817
+ * Specifies the width of the `PlanningCalendar`.
118818
+ *
118819
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
118137
118820
  *
118138
118821
  *
118139
- * @returns this for method chaining
118822
+ * @returns Reference to `this` in order to allow method chaining
118140
118823
  */
118141
118824
  setWidth(
118142
118825
  /**
118143
- * the width to be set to the PlanningCalendar
118826
+ * New value for property `width`
118144
118827
  */
118145
- sWidth: sap.ui.core.CSSSize
118828
+ sWidth?: sap.ui.core.CSSSize
118146
118829
  ): this;
118147
118830
  }
118148
118831
  /**
@@ -130601,6 +131284,18 @@ declare namespace sap {
130601
131284
  * @returns Value of property `textDirection`
130602
131285
  */
130603
131286
  getTextDirection(): sap.ui.core.TextDirection;
131287
+ /**
131288
+ * Gets current value of property {@link #getTwoColumnSeparator twoColumnSeparator}.
131289
+ *
131290
+ * Defines the separator type for the two columns layout when Select is in read-only mode.
131291
+ *
131292
+ * Default value is `Dash`.
131293
+ *
131294
+ * @since 1.140
131295
+ *
131296
+ * @returns Value of property `twoColumnSeparator`
131297
+ */
131298
+ getTwoColumnSeparator(): sap.m.SelectTwoColumnSeparator;
130604
131299
  /**
130605
131300
  * Gets current value of property {@link #getType type}.
130606
131301
  *
@@ -131089,6 +131784,25 @@ declare namespace sap {
131089
131784
  */
131090
131785
  sTextDirection?: sap.ui.core.TextDirection
131091
131786
  ): this;
131787
+ /**
131788
+ * Sets a new value for property {@link #getTwoColumnSeparator twoColumnSeparator}.
131789
+ *
131790
+ * Defines the separator type for the two columns layout when Select is in read-only mode.
131791
+ *
131792
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
131793
+ *
131794
+ * Default value is `Dash`.
131795
+ *
131796
+ * @since 1.140
131797
+ *
131798
+ * @returns Reference to `this` in order to allow method chaining
131799
+ */
131800
+ setTwoColumnSeparator(
131801
+ /**
131802
+ * New value for property `twoColumnSeparator`
131803
+ */
131804
+ sTwoColumnSeparator?: sap.m.SelectTwoColumnSeparator
131805
+ ): this;
131092
131806
  /**
131093
131807
  * Sets a new value for property {@link #getType type}.
131094
131808
  *
@@ -159638,6 +160352,8 @@ declare namespace sap {
159638
160352
  ): this;
159639
160353
  /**
159640
160354
  * Enables the programmatic selection of a variant.
160355
+ *
160356
+ * @since 1.121
159641
160357
  */
159642
160358
  setCurrentVariantKey(
159643
160359
  /**
@@ -164225,6 +164941,66 @@ declare namespace sap {
164225
164941
  * Accent 9
164226
164942
  */
164227
164943
  Accent9 = "Accent9",
164944
+ /**
164945
+ * Indication 1
164946
+ *
164947
+ * @since 1.140.0
164948
+ */
164949
+ Indication1 = "Indication1",
164950
+ /**
164951
+ * Indication 10
164952
+ *
164953
+ * @since 1.140.0
164954
+ */
164955
+ Indication10 = "Indication10",
164956
+ /**
164957
+ * Indication 2
164958
+ *
164959
+ * @since 1.140.0
164960
+ */
164961
+ Indication2 = "Indication2",
164962
+ /**
164963
+ * Indication 3
164964
+ *
164965
+ * @since 1.140.0
164966
+ */
164967
+ Indication3 = "Indication3",
164968
+ /**
164969
+ * Indication 4
164970
+ *
164971
+ * @since 1.140.0
164972
+ */
164973
+ Indication4 = "Indication4",
164974
+ /**
164975
+ * Indication 5
164976
+ *
164977
+ * @since 1.140.0
164978
+ */
164979
+ Indication5 = "Indication5",
164980
+ /**
164981
+ * Indication 6
164982
+ *
164983
+ * @since 1.140.0
164984
+ */
164985
+ Indication6 = "Indication6",
164986
+ /**
164987
+ * Indication 7
164988
+ *
164989
+ * @since 1.140.0
164990
+ */
164991
+ Indication7 = "Indication7",
164992
+ /**
164993
+ * Indication 8
164994
+ *
164995
+ * @since 1.140.0
164996
+ */
164997
+ Indication8 = "Indication8",
164998
+ /**
164999
+ * Indication 9
165000
+ *
165001
+ * @since 1.140.0
165002
+ */
165003
+ Indication9 = "Indication9",
164228
165004
  }
164229
165005
  /**
164230
165006
  * Possible background color options for the {@link sap.m.Avatar} control.
@@ -166442,6 +167218,30 @@ declare namespace sap {
166442
167218
  */
166443
167219
  NeverOverflow = "NeverOverflow",
166444
167220
  }
167221
+ /**
167222
+ * Types of `sap.m.OverflowToolbarTokenizerRenderMode` responsive modes
167223
+ *
167224
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'OverflowToolbarTokenizerRenderMode'.
167225
+ *
167226
+ * @since 1.139
167227
+ */
167228
+ enum OverflowToolbarTokenizerRenderMode {
167229
+ /**
167230
+ * In `Loose` mode, `sap.m.OverflowToolbarTokenizer` shows all its tokens, even if it requires scrolling.
167231
+ */
167232
+ Loose = "Loose",
167233
+ /**
167234
+ * In `Narrow` mode, `sap.m.OverflowToolbarTokenizer` shows as many tokens as its width allows and an n-More
167235
+ * indicator with the count of the hidden tokens. The rest of the tokens remain hidden.
167236
+ */
167237
+ Narrow = "Narrow",
167238
+ /**
167239
+ * In `Overflow` mode, `sap.m.OverflowToolbarTokenizer` shows only a `sap.m.Button` as an n-More indicator
167240
+ * without visible tokens. This mode is used when `sap.m.OverflowToolbarTokenizer` is within the `sap.m.OverflowToolbar`
167241
+ * overflow area.
167242
+ */
167243
+ Overflow = "Overflow",
167244
+ }
166445
167245
  /**
166446
167246
  * undefined
166447
167247
  *
@@ -167066,6 +167866,27 @@ declare namespace sap {
167066
167866
  */
167067
167867
  None = "None",
167068
167868
  }
167869
+ /**
167870
+ * Enumeration for different separators for two columns layout when Select is in read-only mode.
167871
+ *
167872
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'SelectTwoColumnSeparator'.
167873
+ *
167874
+ * @since 1.140
167875
+ */
167876
+ enum SelectTwoColumnSeparator {
167877
+ /**
167878
+ * Will show bullet(·) as separator on two columns layout when Select is in read-only mode.
167879
+ */
167880
+ Bullet = "Bullet",
167881
+ /**
167882
+ * Will show N-dash(–) as separator on two columns layout when Select is in read-only mode.
167883
+ */
167884
+ Dash = "Dash",
167885
+ /**
167886
+ * Will show vertical line(|) as separator on two columns layout when Select is in read-only mode.
167887
+ */
167888
+ VerticalLine = "VerticalLine",
167889
+ }
167069
167890
  /**
167070
167891
  * Enumeration for different Select types.
167071
167892
  *
@@ -169137,6 +169958,14 @@ declare namespace sap {
169137
169958
  MessageView
169138
169959
  >;
169139
169960
 
169961
+ /**
169962
+ * Event object of the MessageView#onClose event.
169963
+ */
169964
+ type MessageView$OnCloseEvent = sap.ui.base.Event<
169965
+ MessageView$OnCloseEventParameters,
169966
+ MessageView
169967
+ >;
169968
+
169140
169969
  /**
169141
169970
  * Event object of the MessageView#urlValidated event.
169142
169971
  */
@@ -171005,6 +171834,8 @@ declare namespace sap {
171005
171834
 
171006
171835
  "sap/m/OverflowToolbarToggleButton": undefined;
171007
171836
 
171837
+ "sap/m/OverflowToolbarTokenizer": undefined;
171838
+
171008
171839
  "sap/m/p13n/AbstractContainer": undefined;
171009
171840
 
171010
171841
  "sap/m/p13n/AbstractContainerItem": undefined;