@sapui5/ts-types-esm 1.146.0 → 1.147.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.
Files changed (69) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +0 -3
  3. package/types/sap.apf.d.ts +1 -1
  4. package/types/sap.ca.ui.d.ts +1 -1
  5. package/types/sap.chart.d.ts +4 -7
  6. package/types/sap.collaboration.d.ts +1 -1
  7. package/types/sap.esh.search.ui.d.ts +1 -52
  8. package/types/sap.f.d.ts +148 -2
  9. package/types/sap.fe.ariba.d.ts +1 -1
  10. package/types/sap.fe.controls.d.ts +1 -1
  11. package/types/sap.fe.core.d.ts +1 -1
  12. package/types/sap.fe.ina.d.ts +1 -1
  13. package/types/sap.fe.macros.d.ts +3892 -3211
  14. package/types/sap.fe.navigation.d.ts +1 -1
  15. package/types/sap.fe.placeholder.d.ts +1 -1
  16. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  17. package/types/sap.fe.templates.d.ts +1 -1
  18. package/types/sap.fe.test.d.ts +49 -1
  19. package/types/sap.fe.tools.d.ts +1 -1
  20. package/types/sap.feedback.ui.d.ts +1 -1
  21. package/types/sap.gantt.d.ts +184 -1
  22. package/types/sap.insights.d.ts +14 -1
  23. package/types/sap.m.d.ts +371 -127
  24. package/types/sap.makit.d.ts +1 -1
  25. package/types/sap.me.d.ts +1 -1
  26. package/types/sap.ndc.d.ts +1 -1
  27. package/types/sap.ovp.d.ts +1 -1
  28. package/types/sap.rules.ui.d.ts +1 -1
  29. package/types/sap.sac.df.d.ts +1 -1
  30. package/types/sap.suite.ui.commons.d.ts +122 -1
  31. package/types/sap.suite.ui.generic.template.d.ts +79 -1
  32. package/types/sap.suite.ui.microchart.d.ts +1 -1
  33. package/types/sap.tnt.d.ts +1 -4
  34. package/types/sap.ui.codeeditor.d.ts +82 -46
  35. package/types/sap.ui.commons.d.ts +1 -1
  36. package/types/sap.ui.comp.d.ts +5 -15
  37. package/types/sap.ui.core.d.ts +172 -16
  38. package/types/sap.ui.dt.d.ts +1 -1
  39. package/types/sap.ui.export.d.ts +1 -1
  40. package/types/sap.ui.fl.d.ts +5 -1
  41. package/types/sap.ui.generic.app.d.ts +5 -5
  42. package/types/sap.ui.generic.template.d.ts +1 -1
  43. package/types/sap.ui.geomap.d.ts +1 -1
  44. package/types/sap.ui.integration.d.ts +23 -25
  45. package/types/sap.ui.layout.d.ts +1 -1
  46. package/types/sap.ui.mdc.d.ts +112 -21
  47. package/types/sap.ui.richtexteditor.d.ts +1 -1
  48. package/types/sap.ui.rta.d.ts +1 -1
  49. package/types/sap.ui.suite.d.ts +1 -1
  50. package/types/sap.ui.support.d.ts +2 -2
  51. package/types/sap.ui.table.d.ts +1 -1
  52. package/types/sap.ui.testrecorder.d.ts +1 -1
  53. package/types/sap.ui.unified.d.ts +6 -9
  54. package/types/sap.ui.ux3.d.ts +1 -1
  55. package/types/sap.ui.vbm.d.ts +8 -24
  56. package/types/sap.ui.vk.d.ts +1 -1
  57. package/types/sap.ui.vtm.d.ts +1 -1
  58. package/types/sap.uiext.inbox.d.ts +1 -1
  59. package/types/sap.ushell.d.ts +416 -67
  60. package/types/sap.ushell_abap.d.ts +1 -1
  61. package/types/sap.uxap.d.ts +151 -2
  62. package/types/sap.viz.d.ts +4 -5
  63. package/types/sap.webanalytics.core.d.ts +1 -1
  64. package/types/sap.zen.commons.d.ts +1 -1
  65. package/types/sap.zen.crosstab.d.ts +1 -1
  66. package/types/sap.zen.dsh.d.ts +1 -1
  67. package/types/sap.ui.webc.common.d.ts +0 -164
  68. package/types/sap.ui.webc.fiori.d.ts +0 -16235
  69. package/types/sap.ui.webc.main.d.ts +0 -51365
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.146.0
1
+ // For Library Version: 1.147.0
2
2
 
3
3
  declare module "sap/ui/mdc/AggregationBaseDelegate" {
4
4
  import BaseDelegate from "sap/ui/mdc/BaseDelegate";
@@ -3767,6 +3767,17 @@ declare module "sap/ui/mdc/library" {
3767
3767
 
3768
3768
  import ParseException from "sap/ui/model/ParseException";
3769
3769
 
3770
+ export type DelegateConfig = {
3771
+ /**
3772
+ * Delegate module path
3773
+ */
3774
+ name: string;
3775
+ /**
3776
+ * defines application-specific information that can be used in the given delegate
3777
+ */
3778
+ payload?: any;
3779
+ };
3780
+
3770
3781
  /**
3771
3782
  * Acts a subset of the `FilterBarDelegate` that can be used in {@link module:sap/ui/mdc/TableDelegate.getFilterDelegate TableDelegate.getFilterDelegate }
3772
3783
  * or {@link module:sap/ui/mdc/ChartDelegate.getFilterDelegate Chart.getFilterDelegate} to enable inbuilt
@@ -4819,8 +4830,10 @@ declare module "sap/ui/mdc/Chart" {
4819
4830
  * Gets current value of property {@link #getDelegate delegate}.
4820
4831
  *
4821
4832
  * Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
4822
- * The object has the following properties:
4823
- * - `name` defines the path to the `Delegate` module
4833
+ * The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
4834
+ *
4835
+ * - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/ChartDelegate ChartDelegate}.
4836
+ *
4824
4837
  * - `payload` (optional) defines application-specific information that can be used in the given delegate
4825
4838
  * Sample delegate object:
4826
4839
  * ```javascript
@@ -5152,8 +5165,10 @@ declare module "sap/ui/mdc/Chart" {
5152
5165
  * Sets a new value for property {@link #getDelegate delegate}.
5153
5166
  *
5154
5167
  * Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
5155
- * The object has the following properties:
5156
- * - `name` defines the path to the `Delegate` module
5168
+ * The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
5169
+ *
5170
+ * - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/ChartDelegate ChartDelegate}.
5171
+ *
5157
5172
  * - `payload` (optional) defines application-specific information that can be used in the given delegate
5158
5173
  * Sample delegate object:
5159
5174
  * ```javascript
@@ -5518,8 +5533,10 @@ declare module "sap/ui/mdc/Chart" {
5518
5533
 
5519
5534
  /**
5520
5535
  * Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
5521
- * The object has the following properties:
5522
- * - `name` defines the path to the `Delegate` module
5536
+ * The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
5537
+ *
5538
+ * - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/ChartDelegate ChartDelegate}.
5539
+ *
5523
5540
  * - `payload` (optional) defines application-specific information that can be used in the given delegate
5524
5541
  * Sample delegate object:
5525
5542
  * ```javascript
@@ -7769,7 +7786,8 @@ declare module "sap/ui/mdc/Control" {
7769
7786
  export interface $ControlSettings extends $ControlSettings1 {
7770
7787
  /**
7771
7788
  * Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
7772
- * The object has the following properties:
7789
+ * The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
7790
+ *
7773
7791
  * - `name` defines the path to the `Delegate` module
7774
7792
  * - `payload` (optional) defines application-specific information that can be used in the given delegate
7775
7793
  * Sample delegate object:
@@ -7991,7 +8009,8 @@ declare module "sap/ui/mdc/Element" {
7991
8009
  export interface $ElementSettings extends $ElementSettings1 {
7992
8010
  /**
7993
8011
  * Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
7994
- * The object has the following properties:
8012
+ * The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
8013
+ *
7995
8014
  * - `name` defines the path to the `Delegate` module
7996
8015
  * - `payload` (optional) defines application-specific information that can be used in the given delegate
7997
8016
  * Sample delegate object:
@@ -13483,13 +13502,17 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
13483
13502
 
13484
13503
  import InvisibleText from "sap/ui/core/InvisibleText";
13485
13504
 
13505
+ import { MessageType, ID } from "sap/ui/core/library";
13506
+
13507
+ import Message from "sap/ui/core/message/Message";
13508
+
13486
13509
  import FilterBarValidationStatus from "sap/ui/mdc/enums/FilterBarValidationStatus";
13487
13510
 
13488
13511
  import FilterField from "sap/ui/mdc/FilterField";
13489
13512
 
13490
13513
  import ElementMetadata from "sap/ui/core/ElementMetadata";
13491
13514
 
13492
- import { ID } from "sap/ui/core/library";
13515
+ import Message1 from "sap/ui/core/Message";
13493
13516
 
13494
13517
  import VariantManagement from "sap/ui/fl/variants/VariantManagement";
13495
13518
 
@@ -13588,6 +13611,28 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
13588
13611
  */
13589
13612
  oInvisibleText: InvisibleText
13590
13613
  ): void;
13614
+ /**
13615
+ * Adds a message to the {@link sap.ui.model.message.MessageModel MessageModel} for a `propertyKey`. The
13616
+ * message is displayed on the corresponding {@link sap.ui.mdc.FilterField FilterField}.
13617
+ *
13618
+ * @since 1.147
13619
+ *
13620
+ * @returns The created message object
13621
+ */
13622
+ addMessage(
13623
+ /**
13624
+ * The `propertyKey` of the {@link sap.ui.mdc.FilterField FilterField}
13625
+ */
13626
+ sPropertyKey: string,
13627
+ /**
13628
+ * The message text
13629
+ */
13630
+ sMessage: string,
13631
+ /**
13632
+ * The message type
13633
+ */
13634
+ sMessageType: MessageType | keyof typeof MessageType
13635
+ ): Message;
13591
13636
  /**
13592
13637
  * Attaches event handler `fnFunction` to the {@link #event:filtersChanged filtersChanged} event of this
13593
13638
  * `sap.ui.mdc.filterbar.FilterBarBase`.
@@ -13834,8 +13879,10 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
13834
13879
  * Gets current value of property {@link #getDelegate delegate}.
13835
13880
  *
13836
13881
  * Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
13837
- * The object has the following properties:
13838
- * - `name` defines the path to the `Delegate` module
13882
+ * The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
13883
+ *
13884
+ * - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/FilterBarDelegate FilterBarDelegate}.
13885
+ *
13839
13886
  * - `payload` (optional) defines application-specific information that can be used in the given delegate
13840
13887
  * Sample delegate object:
13841
13888
  * ```javascript
@@ -13893,6 +13940,19 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
13893
13940
  * @returns Value of property `liveMode`
13894
13941
  */
13895
13942
  getLiveMode(): boolean;
13943
+ /**
13944
+ * Returns all messages associated with the given `propertyKey` from the {@link sap.ui.model.message.MessageModel MessageModel}.
13945
+ *
13946
+ * @since 1.147
13947
+ *
13948
+ * @returns Array of messages for the given `propertyKey`
13949
+ */
13950
+ getMessages(
13951
+ /**
13952
+ * The `propertyKey` of the {@link sap.ui.mdc.FilterField FilterField}
13953
+ */
13954
+ sPropertyKey: string
13955
+ ): Message[];
13896
13956
  /**
13897
13957
  * Gets the value of the basic search condition.
13898
13958
  *
@@ -13970,6 +14030,30 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
13970
14030
  * @returns Resolves after the initial filters have been applied and the metadata has been obtained
13971
14031
  */
13972
14032
  initializedWithMetadata(): Promise<any>;
14033
+ /**
14034
+ * Removes a given message from the {@link sap.ui.model.message.MessageModel MessageModel}. The message
14035
+ * is removed from the corresponding {@link sap.ui.mdc.FilterField FilterField}.
14036
+ *
14037
+ * @since 1.147
14038
+ */
14039
+ removeMessage(
14040
+ /**
14041
+ * The message to remove
14042
+ */
14043
+ oMessage: Message1
14044
+ ): void;
14045
+ /**
14046
+ * Removes all messages for the given `propertyKey` from the {@link sap.ui.model.message.MessageModel MessageModel}.
14047
+ * Clears the messages from the corresponding {@link sap.ui.mdc.FilterField FilterField}.
14048
+ *
14049
+ * @since 1.147
14050
+ */
14051
+ removeMessages(
14052
+ /**
14053
+ * The `propertyKey` of the {@link sap.ui.mdc.FilterField FilterField}
14054
+ */
14055
+ sPropertyKey: string
14056
+ ): void;
13973
14057
  /**
13974
14058
  * Sets the aggregated {@link #getBasicSearchField basicSearchField}.
13975
14059
  *
@@ -13986,8 +14070,10 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
13986
14070
  * Sets a new value for property {@link #getDelegate delegate}.
13987
14071
  *
13988
14072
  * Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
13989
- * The object has the following properties:
13990
- * - `name` defines the path to the `Delegate` module
14073
+ * The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
14074
+ *
14075
+ * - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/FilterBarDelegate FilterBarDelegate}.
14076
+ *
13991
14077
  * - `payload` (optional) defines application-specific information that can be used in the given delegate
13992
14078
  * Sample delegate object:
13993
14079
  * ```javascript
@@ -14141,8 +14227,10 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
14141
14227
  export interface $FilterBarBaseSettings extends $ControlSettings {
14142
14228
  /**
14143
14229
  * Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
14144
- * The object has the following properties:
14145
- * - `name` defines the path to the `Delegate` module
14230
+ * The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
14231
+ *
14232
+ * - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/FilterBarDelegate FilterBarDelegate}.
14233
+ *
14146
14234
  * - `payload` (optional) defines application-specific information that can be used in the given delegate
14147
14235
  * Sample delegate object:
14148
14236
  * ```javascript
@@ -14198,8 +14286,8 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
14198
14286
  * aggregation) should be specified here, rather than in the `FilterField` configuration.
14199
14287
  * **Note**: This property must not be bound.
14200
14288
  * **Node**: Please check {@link sap.ui.mdc.filterbar.PropertyInfo} for more information about the supported
14201
- * inner elements. **Note**: Existing properties (set via `sap.ui.mdc.filterbar.FilterBarBase#setPropertyInfo`)
14202
- * must not be removed and their attributes must not be changed during the {@link module:sap/ui/mdc/FilterBarDelegate.fetchProperties fetchProperties }
14289
+ * inner elements. **Note**: Existing properties (set via {@link #setPropertyInfo setPropertyInfo}) must
14290
+ * not be removed and their attributes must not be changed during the {@link module:sap/ui/mdc/FilterBarDelegate.fetchProperties fetchProperties }
14203
14291
  * callback. Otherwise validation errors might occur whenever personalization-related control features (such
14204
14292
  * as the opening of any personalization dialog) are activated.
14205
14293
  *
@@ -18088,7 +18176,8 @@ declare module "sap/ui/mdc/Table" {
18088
18176
  *
18089
18177
  * Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
18090
18178
  *
18091
- * The object has the following properties:
18179
+ * The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
18180
+ *
18092
18181
  * - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/TableDelegate TableDelegate}.
18093
18182
  *
18094
18183
  * - `payload` (optional) defines application-specific information that can be used in the given delegate
@@ -18649,7 +18738,8 @@ declare module "sap/ui/mdc/Table" {
18649
18738
  *
18650
18739
  * Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
18651
18740
  *
18652
- * The object has the following properties:
18741
+ * The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
18742
+ *
18653
18743
  * - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/TableDelegate TableDelegate}.
18654
18744
  *
18655
18745
  * - `payload` (optional) defines application-specific information that can be used in the given delegate
@@ -19325,7 +19415,8 @@ declare module "sap/ui/mdc/Table" {
19325
19415
  /**
19326
19416
  * Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
19327
19417
  *
19328
- * The object has the following properties:
19418
+ * The object has the following properties (see {@link sap.ui.mdc.DelegateConfig DelegateConfig}):
19419
+ *
19329
19420
  * - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/TableDelegate TableDelegate}.
19330
19421
  *
19331
19422
  * - `payload` (optional) defines application-specific information that can be used in the given delegate
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.146.0
1
+ // For Library Version: 1.147.0
2
2
 
3
3
  declare module "sap/ui/richtexteditor/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.146.0
1
+ // For Library Version: 1.147.0
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.146.0
1
+ // For Library Version: 1.147.0
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.146.0
1
+ // For Library Version: 1.147.0
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
@@ -166,7 +166,7 @@ declare module "sap/ui/support/library" {
166
166
  /**
167
167
  * Preset to find usages of deprecated controls, properties, aggregations and others.
168
168
  *
169
- * @experimental As of version 1.120.
169
+ * @since 1.120
170
170
  */
171
171
  Deprecations = "undefined",
172
172
  }
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.146.0
1
+ // For Library Version: 1.147.0
2
2
 
3
3
  declare module "sap/ui/table/library" {
4
4
  import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.146.0
1
+ // For Library Version: 1.147.0
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.146.0
1
+ // For Library Version: 1.147.0
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -33,7 +33,6 @@ declare module "sap/ui/unified/library" {
33
33
  * This enum is part of the 'sap/ui/unified/library' module export and must be accessed by the property
34
34
  * 'CalendarAppointmentRoundWidth'.
35
35
  *
36
- * @since 1.81.0
37
36
  * @experimental As of version 1.81.0.
38
37
  */
39
38
  export enum CalendarAppointmentRoundWidth {
@@ -232,8 +231,9 @@ declare module "sap/ui/unified/library" {
232
231
  * This enum is part of the 'sap/ui/unified/library' module export and must be accessed by the property
233
232
  * 'ContentSwitcherAnimation'.
234
233
  *
235
- * @since 1.16.0
236
- * @experimental As of version 1.16.0. API is not yet finished and might change completely
234
+ * @deprecated As of version 1.147.0. the concept has been discarded. API is not yet finished and might
235
+ * change completely
236
+ * @experimental As of version 1.16.0.
237
237
  */
238
238
  export enum ContentSwitcherAnimation {
239
239
  /**
@@ -20245,7 +20245,6 @@ declare module "sap/ui/unified/NonWorkingPeriod" {
20245
20245
  /**
20246
20246
  * NonWorkingPeriod
20247
20247
  *
20248
- * @since 1.27.0
20249
20248
  * @experimental As of version 1.127.0.
20250
20249
  */
20251
20250
  export default class NonWorkingPeriod extends UI5Element {
@@ -20404,7 +20403,6 @@ declare module "sap/ui/unified/RecurringNonWorkingPeriod" {
20404
20403
  *
20405
20404
  * Applications can inherit from this element to add own fields.
20406
20405
  *
20407
- * @since 1.127.0
20408
20406
  * @experimental As of version 1.127.0.
20409
20407
  */
20410
20408
  export default class RecurringNonWorkingPeriod extends NonWorkingPeriod {
@@ -23266,8 +23264,7 @@ declare module "sap/ui/unified/TimeRange" {
23266
23264
  /**
23267
23265
  * Time range for use in `NonWorkingPeriod`
23268
23266
  *
23269
- * @since 1.127.0
23270
- * @experimental As of version 1.127.0.
23267
+ * @experimental As of version 1.127.
23271
23268
  */
23272
23269
  export default class TimeRange extends UI5Element {
23273
23270
  /**
@@ -23433,7 +23430,7 @@ declare module "sap/ui/unified/TimeRange" {
23433
23430
  /**
23434
23431
  * Describes the settings that can be provided to the TimeRange constructor.
23435
23432
  *
23436
- * @experimental As of version 1.127.0.
23433
+ * @experimental As of version 1.127.
23437
23434
  */
23438
23435
  export interface $TimeRangeSettings extends $ElementSettings {
23439
23436
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.146.0
1
+ // For Library Version: 1.147.0
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.146.0
1
+ // For Library Version: 1.147.0
2
2
 
3
3
  declare module "sap/ui/vbm/library" {
4
4
  /**
@@ -5405,8 +5405,7 @@ declare module "sap/ui/vbm/ContainerLegendItem" {
5405
5405
  /**
5406
5406
  * Legend item control
5407
5407
  *
5408
- * @experimental As of version 1.38.0. This class is experimental and might be modified or removed in future
5409
- * versions.
5408
+ * @since 1.38.0
5410
5409
  */
5411
5410
  export default class ContainerLegendItem extends StandardListItem {
5412
5411
  /**
@@ -5524,9 +5523,6 @@ declare module "sap/ui/vbm/ContainerLegendItem" {
5524
5523
  }
5525
5524
  /**
5526
5525
  * Describes the settings that can be provided to the ContainerLegendItem constructor.
5527
- *
5528
- * @experimental As of version 1.38.0. This class is experimental and might be modified or removed in future
5529
- * versions.
5530
5526
  */
5531
5527
  export interface $ContainerLegendItemSettings
5532
5528
  extends $StandardListItemSettings {
@@ -8869,8 +8865,7 @@ declare module "sap/ui/vbm/GeoMap" {
8869
8865
  /**
8870
8866
  * Trigger the interactive creation mode to get a position or position array.
8871
8867
  *
8872
- * @experimental As of version 1.30.0. This method is experimental and might be modified or removerd in
8873
- * future versions.
8868
+ * @since 1.30.0
8874
8869
  *
8875
8870
  * @returns Indicator whether the creation mode could be triggered successfully or not.
8876
8871
  */
@@ -11311,8 +11306,7 @@ declare module "sap/ui/vbm/ListPanel" {
11311
11306
  /**
11312
11307
  * Aggregation control for the Legend
11313
11308
  *
11314
- * @experimental As of version 1.38.0. This class is experimental and might be modified or removed in future
11315
- * versions.
11309
+ * @since 1.38.0
11316
11310
  */
11317
11311
  export default class ListPanel extends Control {
11318
11312
  /**
@@ -11944,9 +11938,6 @@ declare module "sap/ui/vbm/ListPanel" {
11944
11938
  }
11945
11939
  /**
11946
11940
  * Describes the settings that can be provided to the ListPanel constructor.
11947
- *
11948
- * @experimental As of version 1.38.0. This class is experimental and might be modified or removed in future
11949
- * versions.
11950
11941
  */
11951
11942
  export interface $ListPanelSettings extends $ControlSettings {
11952
11943
  /**
@@ -12103,8 +12094,7 @@ declare module "sap/ui/vbm/ListPanelStack" {
12103
12094
  /**
12104
12095
  * ListPanelStack control
12105
12096
  *
12106
- * @experimental As of version 1.38.0. This class is experimental and might be modified or removed in future
12107
- * versions.
12097
+ * @since 1.38.0
12108
12098
  */
12109
12099
  export default class ListPanelStack extends Control {
12110
12100
  /**
@@ -12363,9 +12353,6 @@ declare module "sap/ui/vbm/ListPanelStack" {
12363
12353
  }
12364
12354
  /**
12365
12355
  * Describes the settings that can be provided to the ListPanelStack constructor.
12366
- *
12367
- * @experimental As of version 1.38.0. This class is experimental and might be modified or removed in future
12368
- * versions.
12369
12356
  */
12370
12357
  export interface $ListPanelStackSettings extends $ControlSettings {
12371
12358
  /**
@@ -14494,8 +14481,7 @@ declare module "sap/ui/vbm/Route" {
14494
14481
  *
14495
14482
  * Default value is `'Straight'`.
14496
14483
  *
14497
- * @experimental As of version 1.32.0. this method is experimental and might be modified or removed in future
14498
- * versions.
14484
+ * @since 1.32.0
14499
14485
  *
14500
14486
  * @returns Value of property `routetype`
14501
14487
  */
@@ -14808,8 +14794,7 @@ declare module "sap/ui/vbm/Route" {
14808
14794
  *
14809
14795
  * Default value is `'Straight'`.
14810
14796
  *
14811
- * @experimental As of version 1.32.0. this method is experimental and might be modified or removed in future
14812
- * versions.
14797
+ * @since 1.32.0
14813
14798
  *
14814
14799
  * @returns Reference to `this` in order to allow method chaining
14815
14800
  */
@@ -14904,8 +14889,7 @@ declare module "sap/ui/vbm/Route" {
14904
14889
  * Defines the type of the route, default is 'Straight'. Other types are 'Geodesic' which show the shortest
14905
14890
  * path between two points, e.g. flightroutes
14906
14891
  *
14907
- * @experimental As of version 1.32.0. this method is experimental and might be modified or removed in future
14908
- * versions.
14892
+ * @since 1.32.0
14909
14893
  */
14910
14894
  routetype?:
14911
14895
  | (RouteType | keyof typeof RouteType)
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.146.0
1
+ // For Library Version: 1.147.0
2
2
 
3
3
  declare module "sap/ui/vk/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.146.0
1
+ // For Library Version: 1.147.0
2
2
 
3
3
  declare module "sap/ui/vtm/library" {
4
4
  import Vtm from "sap/ui/vtm/Vtm";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.146.0
1
+ // For Library Version: 1.147.0
2
2
 
3
3
  declare module "sap/uiext/inbox/library" {}
4
4