@sapui5/ts-types 1.96.1 → 1.97.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 (63) hide show
  1. package/package.json +1 -1
  2. package/types/sap.apf.d.ts +6 -6
  3. package/types/sap.ca.ui.d.ts +1 -1
  4. package/types/sap.chart.d.ts +1 -1
  5. package/types/sap.collaboration.d.ts +1 -1
  6. package/types/sap.esh.search.ui.d.ts +1 -1
  7. package/types/sap.f.d.ts +1 -1
  8. package/types/sap.fe.common.d.ts +1 -1
  9. package/types/sap.fe.core.d.ts +1 -1
  10. package/types/sap.fe.macros.d.ts +1 -1
  11. package/types/sap.fe.navigation.d.ts +1 -1
  12. package/types/sap.fe.placeholder.d.ts +1 -1
  13. package/types/sap.fe.plugins.d.ts +1 -1
  14. package/types/sap.fe.semantics.d.ts +1 -1
  15. package/types/sap.fe.templates.d.ts +1 -1
  16. package/types/sap.fe.test.d.ts +89 -4
  17. package/types/sap.fe.tools.d.ts +1 -1
  18. package/types/sap.feedback.ui.d.ts +1 -1
  19. package/types/sap.gantt.d.ts +167 -1
  20. package/types/sap.landvisz.d.ts +1 -1
  21. package/types/sap.m.d.ts +490 -45
  22. package/types/sap.makit.d.ts +1 -1
  23. package/types/sap.me.d.ts +1 -1
  24. package/types/sap.ndc.d.ts +1 -1
  25. package/types/sap.ovp.d.ts +44 -1
  26. package/types/sap.rules.ui.d.ts +1 -1
  27. package/types/sap.sac.grid.d.ts +1 -1
  28. package/types/sap.suite.ui.commons.d.ts +1 -1
  29. package/types/sap.suite.ui.generic.template.d.ts +13 -13
  30. package/types/sap.suite.ui.microchart.d.ts +1 -1
  31. package/types/sap.tnt.d.ts +1 -1
  32. package/types/sap.ui.codeeditor.d.ts +7 -1
  33. package/types/sap.ui.commons.d.ts +1 -1
  34. package/types/sap.ui.comp.d.ts +309 -9
  35. package/types/sap.ui.core.d.ts +389 -165
  36. package/types/sap.ui.dt.d.ts +1 -1
  37. package/types/sap.ui.export.d.ts +3 -3
  38. package/types/sap.ui.fl.d.ts +1 -3
  39. package/types/sap.ui.generic.app.d.ts +1 -1
  40. package/types/sap.ui.generic.template.d.ts +1 -1
  41. package/types/sap.ui.integration.d.ts +42 -1
  42. package/types/sap.ui.layout.d.ts +1 -1
  43. package/types/sap.ui.mdc.d.ts +20 -10
  44. package/types/sap.ui.richtexteditor.d.ts +1 -1
  45. package/types/sap.ui.rta.d.ts +5 -11
  46. package/types/sap.ui.suite.d.ts +1 -1
  47. package/types/sap.ui.support.d.ts +6 -6
  48. package/types/sap.ui.table.d.ts +3 -3
  49. package/types/sap.ui.testrecorder.d.ts +1 -1
  50. package/types/sap.ui.unified.d.ts +43 -1
  51. package/types/sap.ui.ux3.d.ts +1 -1
  52. package/types/sap.ui.vbm.d.ts +1 -1
  53. package/types/sap.ui.vk.d.ts +199 -92
  54. package/types/sap.ui.vtm.d.ts +2 -1
  55. package/types/sap.uiext.inbox.d.ts +1 -1
  56. package/types/sap.ushell.d.ts +62 -10
  57. package/types/sap.ushell_abap.d.ts +1 -1
  58. package/types/sap.uxap.d.ts +1 -1
  59. package/types/sap.viz.d.ts +1 -1
  60. package/types/sap.webanalytics.core.d.ts +1 -1
  61. package/types/sap.zen.commons.d.ts +1 -1
  62. package/types/sap.zen.crosstab.d.ts +1 -1
  63. package/types/sap.zen.dsh.d.ts +1 -1
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -4020,6 +4020,38 @@ declare namespace sap {
4020
4020
  */
4021
4021
  query: object
4022
4022
  ): THREE.Object3D[];
4023
+ /**
4024
+ * Find nodes by UsageId path.
4025
+ *
4026
+ * The method can return multiple nodes matching `path` especially when `path contains a string "**"`.
4027
+ */
4028
+ findNodesByUsageIdPath(
4029
+ /**
4030
+ * A UsageId name which the keys in `path` belong to.
4031
+ */
4032
+ usageIdName: string,
4033
+ /**
4034
+ * An array of UsageId keys where each item is a single JSON like object with properties `name` and `value`
4035
+ * for single-key UsageIds and an array of such objects for multi-key UsageIds. The item can can be a string
4036
+ * `"*"` to indicate that it can be any node or the item can be a string `"**"` to indicate that some nodes
4037
+ * can be skipped.
4038
+ */
4039
+ path: any[],
4040
+ /**
4041
+ * Optional settings for the method.
4042
+ */
4043
+ options?: {
4044
+ /**
4045
+ * An optional non-`null` node reference for limiting the scope of search with a subtree starting with the
4046
+ * `options.searchUnder` node excluding the `options.searchUnder` node itself.
4047
+ */
4048
+ searchUnder?: any;
4049
+ /**
4050
+ * An indicator to search in ***closed*** nodes as well.
4051
+ */
4052
+ stepIntoClosedNodes?: boolean;
4053
+ }
4054
+ ): any[];
4023
4055
  /**
4024
4056
  * Returns a list of reference objects belonging to the ancestors of a particular node.
4025
4057
  */
@@ -5713,6 +5745,11 @@ declare namespace sap {
5713
5745
  }
5714
5746
 
5715
5747
  interface $RedlineToolSettings extends sap.ui.vk.tools.$ToolSettings {
5748
+ /**
5749
+ * Determines if elements editing is enabled
5750
+ */
5751
+ editable?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
5752
+
5716
5753
  /**
5717
5754
  * The redline element/elements which will be rendered as soon as the redline tool is activated.
5718
5755
  */
@@ -10110,6 +10147,14 @@ declare namespace sap {
10110
10147
  elementId?: string;
10111
10148
  }
10112
10149
  ): this;
10150
+ /**
10151
+ * Gets current value of property {@link #getEditable editable}.
10152
+ *
10153
+ * Determines if elements editing is enabled
10154
+ *
10155
+ * Default value is `true`.
10156
+ */
10157
+ getEditable(): boolean;
10113
10158
  /**
10114
10159
  * Gets content of aggregation {@link #getRedlineElements redlineElements}.
10115
10160
  *
@@ -10186,6 +10231,21 @@ declare namespace sap {
10186
10231
  */
10187
10232
  vRedlineElement: int | string | sap.ui.vk.RedlineElement
10188
10233
  ): sap.ui.vk.RedlineElement;
10234
+ /**
10235
+ * Sets a new value for property {@link #getEditable editable}.
10236
+ *
10237
+ * Determines if elements editing is enabled
10238
+ *
10239
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
10240
+ *
10241
+ * Default value is `true`.
10242
+ */
10243
+ setEditable(
10244
+ /**
10245
+ * New value for property `editable`
10246
+ */
10247
+ bEditable?: boolean
10248
+ ): this;
10189
10249
  /**
10190
10250
  * Prepares the RedlineTool control for adding a new instance of {sap.ui.vk.RedlineElement}.
10191
10251
  */
@@ -13679,14 +13739,14 @@ declare namespace sap {
13679
13739
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
13680
13740
 
13681
13741
  /**
13682
- * Optional parameter to load UsageIds. Valid values: true - Load all UsageIds. This is potentially very
13683
- * expensive, as there could be many UsageIds defined for the tenant which are not relevant to the current
13684
- * application. false - Do not load any UsageIds. string - A single non-empty string which defines the name
13685
- * of the requested UsageId. string[] - An array of non-empty strings which define the names of requested
13686
- * UsageIds.
13742
+ * Optional parameter to load UsageIds. Valid values:
13743
+ * `true` - Load all UsageIds. This is potentially very expensive, as there could be many UsageIds defined
13744
+ * for the tenant which are not relevant to the current application. `false` - Do not load any UsageIds.
13745
+ * `string` - A single non-empty string which defines the name of the requested UsageId. `string[]`
13746
+ * - An array of non-empty strings which define the names of requested UsageIds.
13687
13747
  */
13688
- includeUsageId?: /* was: sap.ui.vk.IncludeUsageIdType */
13689
- | any
13748
+ includeUsageId?:
13749
+ | sap.ui.vk.IncludeUsageIdType
13690
13750
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
13691
13751
 
13692
13752
  /**
@@ -14698,6 +14758,13 @@ declare namespace sap {
14698
14758
  * ignored.
14699
14759
  */
14700
14760
  aspectRatio?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
14761
+
14762
+ /**
14763
+ * Flag for auto-playing animation on view activation (optional)
14764
+ */
14765
+ autoPlayAnimation?:
14766
+ | boolean
14767
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
14701
14768
  }
14702
14769
 
14703
14770
  interface $ViewerSettings extends sap.ui.core.$ControlSettings {
@@ -15257,6 +15324,93 @@ declare namespace sap {
15257
15324
  outlineWidthChanged?: (oEvent: sap.ui.base.Event) => void;
15258
15325
  }
15259
15326
 
15327
+ /**
15328
+ * @SINCE 1.96.0
15329
+ *
15330
+ * This type defines possible valid values for property {@link sap.ui.vk.ContentResource#getIncludeUsageId
15331
+ * ContentResource.includeUsageId}.
15332
+ *
15333
+ * The possible valid values:
15334
+ * `true` - Load all UsageIds. This is potentially very expensive, as there could be many UsageIds defined
15335
+ * for the tenant which are not relevant to the current application. `false` - Do not load any UsageIds.
15336
+ * `string` - A single non-empty string which defines the name of the requested UsageId. `string[]`
15337
+ * - An array of non-empty strings which define the names of requested UsageIds.
15338
+ */
15339
+ interface IncludeUsageIdType {}
15340
+ const IncludeUsageIdType: IncludeUsageIdType;
15341
+
15342
+ /**
15343
+ * @SINCE 1.32.0
15344
+ *
15345
+ * Transformation matrix is an array of 12 numbers in a row major mode.
15346
+ */
15347
+ interface TransformationMatrix {
15348
+ /**
15349
+ * Converts matrix from 3x2 to 4x3.
15350
+ */
15351
+ convert3x2To4x3(
15352
+ /**
15353
+ * The matrix to convert.
15354
+ */
15355
+ m3x2: float[]
15356
+ ): float[];
15357
+ /**
15358
+ * Converts matrix from 4x3 to 3x2.
15359
+ */
15360
+ convert4x3To3x2(
15361
+ /**
15362
+ * The matrix 4x3 to convert.
15363
+ */
15364
+ m4x3: float[]
15365
+ ): float[];
15366
+ /**
15367
+ * Converts matrix from 4x4 to 3x2.
15368
+ */
15369
+ convert4x4To3x2(
15370
+ /**
15371
+ * The matrix 4x4 to convert.
15372
+ */
15373
+ m4x4: float[]
15374
+ ): float[];
15375
+ /**
15376
+ * Converts matrix from 4x4 or 4x4 to 3x2.
15377
+ */
15378
+ convertTo3x2(
15379
+ /**
15380
+ * The matrix 4x4 or 4x3 to convert.
15381
+ */
15382
+ m: float[]
15383
+ ): float[];
15384
+ /**
15385
+ * Converts matrix from 4x4 to 4x3.
15386
+ */
15387
+ convertTo4x3(
15388
+ /**
15389
+ * The matrix to convert. The last column must be [0, 0, 0, 1].
15390
+ */
15391
+ matrix4x4: float[]
15392
+ ): float[];
15393
+ /**
15394
+ * Converts matrix from 4x3 to 4x4.
15395
+ */
15396
+ convertTo4x4(
15397
+ /**
15398
+ * The matrix to convert.
15399
+ */
15400
+ matrix4x3: float[]
15401
+ ): float[];
15402
+ /**
15403
+ * Parses the given string value and converts it into an array of numbers.
15404
+ */
15405
+ parseValue(
15406
+ /**
15407
+ * a comma or white space delimited string
15408
+ */
15409
+ value: string
15410
+ ): float[];
15411
+ }
15412
+ const TransformationMatrix: TransformationMatrix;
15413
+
15260
15414
  /**
15261
15415
  * @EXPERIMENTAL (since 1.67.0)
15262
15416
  *
@@ -18383,15 +18537,15 @@ declare namespace sap {
18383
18537
  /**
18384
18538
  * Gets current value of property {@link #getIncludeUsageId includeUsageId}.
18385
18539
  *
18386
- * Optional parameter to load UsageIds. Valid values: true - Load all UsageIds. This is potentially very
18387
- * expensive, as there could be many UsageIds defined for the tenant which are not relevant to the current
18388
- * application. false - Do not load any UsageIds. string - A single non-empty string which defines the name
18389
- * of the requested UsageId. string[] - An array of non-empty strings which define the names of requested
18390
- * UsageIds.
18540
+ * Optional parameter to load UsageIds. Valid values:
18541
+ * `true` - Load all UsageIds. This is potentially very expensive, as there could be many UsageIds defined
18542
+ * for the tenant which are not relevant to the current application. `false` - Do not load any UsageIds.
18543
+ * `string` - A single non-empty string which defines the name of the requested UsageId. `string[]`
18544
+ * - An array of non-empty strings which define the names of requested UsageIds.
18391
18545
  *
18392
18546
  * Default value is `false`.
18393
18547
  */
18394
- getIncludeUsageId(): /* was: sap.ui.vk.IncludeUsageIdType */ any;
18548
+ getIncludeUsageId(): sap.ui.vk.IncludeUsageIdType;
18395
18549
  /**
18396
18550
  * Gets current value of property {@link #getLocalMatrix localMatrix}.
18397
18551
  *
@@ -18639,11 +18793,11 @@ declare namespace sap {
18639
18793
  /**
18640
18794
  * Sets a new value for property {@link #getIncludeUsageId includeUsageId}.
18641
18795
  *
18642
- * Optional parameter to load UsageIds. Valid values: true - Load all UsageIds. This is potentially very
18643
- * expensive, as there could be many UsageIds defined for the tenant which are not relevant to the current
18644
- * application. false - Do not load any UsageIds. string - A single non-empty string which defines the name
18645
- * of the requested UsageId. string[] - An array of non-empty strings which define the names of requested
18646
- * UsageIds.
18796
+ * Optional parameter to load UsageIds. Valid values:
18797
+ * `true` - Load all UsageIds. This is potentially very expensive, as there could be many UsageIds defined
18798
+ * for the tenant which are not relevant to the current application. `false` - Do not load any UsageIds.
18799
+ * `string` - A single non-empty string which defines the name of the requested UsageId. `string[]`
18800
+ * - An array of non-empty strings which define the names of requested UsageIds.
18647
18801
  *
18648
18802
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
18649
18803
  *
@@ -18653,7 +18807,7 @@ declare namespace sap {
18653
18807
  /**
18654
18808
  * New value for property `includeUsageId`
18655
18809
  */
18656
- sIncludeUsageId?: /* was: sap.ui.vk.IncludeUsageIdType */ any
18810
+ sIncludeUsageId?: sap.ui.vk.IncludeUsageIdType
18657
18811
  ): this;
18658
18812
  /**
18659
18813
  * Sets a new value for property {@link #getLocalMatrix localMatrix}.
@@ -28094,78 +28248,6 @@ declare namespace sap {
28094
28248
  oViewer: sap.ui.core.ID | sap.ui.vk.Viewer
28095
28249
  ): this;
28096
28250
  }
28097
- /**
28098
- * @SINCE 1.32.0
28099
- *
28100
- * Transformation matrix is an array of 12 numbers in a row major mode.
28101
- */
28102
- class TransformationMatrix {
28103
- constructor();
28104
-
28105
- /**
28106
- * Converts matrix from 3x2 to 4x3.
28107
- */
28108
- static convert3x2To4x3(
28109
- /**
28110
- * The matrix to convert.
28111
- */
28112
- m3x2: number[]
28113
- ): number[];
28114
- /**
28115
- * Converts matrix from 4x3 to 3x2.
28116
- */
28117
- static convert4x3To3x2(
28118
- /**
28119
- * The matrix 4x3 to convert.
28120
- */
28121
- m4x3: number[]
28122
- ): number[];
28123
- /**
28124
- * Converts matrix from 4x4 to 3x2.
28125
- */
28126
- static convert4x4To3x2(
28127
- /**
28128
- * The matrix 4x4 to convert.
28129
- */
28130
- m4x4: number[]
28131
- ): number[];
28132
- /**
28133
- * Converts matrix from 4x4 or 4x4 to 3x2.
28134
- */
28135
- static convertTo3x2(
28136
- /**
28137
- * The matrix 4x4 or 4x3 to convert.
28138
- */
28139
- m: number[]
28140
- ): number[];
28141
- /**
28142
- * Converts matrix from 4x4 to 4x3.
28143
- */
28144
- static convertTo4x3(
28145
- /**
28146
- * The matrix to convert. The last column must be [0, 0, 0, 1].
28147
- */
28148
- matrix4x4: number[]
28149
- ): number[];
28150
- /**
28151
- * Converts matrix from 4x3 to 4x4.
28152
- */
28153
- static convertTo4x4(
28154
- /**
28155
- * The matrix to convert.
28156
- */
28157
- matrix4x3: number[]
28158
- ): number[];
28159
- /**
28160
- * Parses the given string value and converts it into an array of numbers.
28161
- */
28162
- static parseValue(
28163
- /**
28164
- * a comma or white space delimited string
28165
- */
28166
- value: string
28167
- ): number[];
28168
- }
28169
28251
  /**
28170
28252
  * Provides the interface for the view.
28171
28253
  */
@@ -28218,6 +28300,14 @@ declare namespace sap {
28218
28300
  * ignored.
28219
28301
  */
28220
28302
  getAspectRatio(): float;
28303
+ /**
28304
+ * Gets current value of property {@link #getAutoPlayAnimation autoPlayAnimation}.
28305
+ *
28306
+ * Flag for auto-playing animation on view activation (optional)
28307
+ *
28308
+ * Default value is `true`.
28309
+ */
28310
+ getAutoPlayAnimation(): boolean;
28221
28311
  /**
28222
28312
  * @EXPERIMENTAL (since 1.73.0)
28223
28313
  *
@@ -28262,6 +28352,21 @@ declare namespace sap {
28262
28352
  */
28263
28353
  fAspectRatio: float
28264
28354
  ): this;
28355
+ /**
28356
+ * Sets a new value for property {@link #getAutoPlayAnimation autoPlayAnimation}.
28357
+ *
28358
+ * Flag for auto-playing animation on view activation (optional)
28359
+ *
28360
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
28361
+ *
28362
+ * Default value is `true`.
28363
+ */
28364
+ setAutoPlayAnimation(
28365
+ /**
28366
+ * New value for property `autoPlayAnimation`
28367
+ */
28368
+ bAutoPlayAnimation?: boolean
28369
+ ): this;
28265
28370
  /**
28266
28371
  * @EXPERIMENTAL (since 1.73.0)
28267
28372
  *
@@ -34174,6 +34279,8 @@ declare namespace sap {
34174
34279
 
34175
34280
  "sap/ui/vk/ImageContentManager": undefined;
34176
34281
 
34282
+ "sap/ui/vk/IncludeUsageIdType": undefined;
34283
+
34177
34284
  "sap/ui/vk/LayerProxy": undefined;
34178
34285
 
34179
34286
  "sap/ui/vk/LegendItem": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -2980,6 +2980,7 @@ declare namespace sap {
2980
2980
  *
2981
2981
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2982
2982
  */
2983
+ // @ts-ignore - unlike the overridden method in the base class, Column.setTooltip() only accepts strings because sap.ui.vtm.Column re-defines the 'tooltip' aggregation as a property
2983
2984
  setTooltip(
2984
2985
  /**
2985
2986
  * New value for property `tooltip`
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.2
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace uiext {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.1
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -3327,7 +3327,8 @@ declare namespace sap {
3327
3327
  ): string;
3328
3328
  /**
3329
3329
  * Returns the keywords associated with a catalog tile which can be used to find the catalog tile in a search.
3330
- * Note: getCatalogTileView **must** be called **before** this method. Otherwise the keywords may be incomplete.
3330
+ * Note: getCatalogTileViewControl **must** be called **before** this method. Otherwise the keywords may
3331
+ * be incomplete.
3331
3332
  */
3332
3333
  getCatalogTileKeywords(
3333
3334
  /**
@@ -3397,8 +3398,7 @@ declare namespace sap {
3397
3398
  oCatalogTile: object
3398
3399
  ): string[];
3399
3400
  /**
3400
- * Returns the navigation target URL of a catalog tile. If the catalog tile does not exist, this function
3401
- * implicitly instantiates it using {@link #getCatalogTileView(oCatalogTile)}.
3401
+ * Returns the navigation target URL of a catalog tile.
3402
3402
  */
3403
3403
  getCatalogTileTargetURL(
3404
3404
  /**
@@ -9207,6 +9207,62 @@ declare namespace sap {
9207
9207
  ): this;
9208
9208
  }
9209
9209
  }
9210
+
9211
+ namespace tile {
9212
+ /**
9213
+ * @SINCE 1.15.0
9214
+ *
9215
+ * An applauncher tile for simple, static apps, displaying title, subtitle, an icon and additional information
9216
+ */
9217
+ class StaticTile /* was: sap.ushell.ui.tile.TileBase */ extends Object {
9218
+ /**
9219
+ * Constructor for a new ui/tile/StaticTile.
9220
+ *
9221
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
9222
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
9223
+ * of the syntax of the settings object.
9224
+ *
9225
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ushell.ui.tile.TileBase#constructor
9226
+ * sap.ushell.ui.tile.TileBase} can be used.
9227
+ */
9228
+ constructor(
9229
+ /**
9230
+ * id for the new control, generated automatically if no id is given
9231
+ */
9232
+ sId?: string,
9233
+ /**
9234
+ * initial settings for the new control
9235
+ */
9236
+ mSettings?: object
9237
+ );
9238
+
9239
+ /**
9240
+ * Creates a new subclass of class sap.ushell.ui.tile.StaticTile with name `sClassName` and enriches it
9241
+ * with the information contained in `oClassInfo`.
9242
+ *
9243
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ushell.ui.tile.TileBase.extend}.
9244
+ */
9245
+ static extend<T extends Record<string, unknown>>(
9246
+ /**
9247
+ * Name of the class being created
9248
+ */
9249
+ sClassName: string,
9250
+ /**
9251
+ * Object literal with information about the class
9252
+ */
9253
+ oClassInfo?: sap.ClassInfo<T, sap.ushell.ui.tile.StaticTile>,
9254
+ /**
9255
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9256
+ * used by this class
9257
+ */
9258
+ FNMetaImpl?: Function
9259
+ ): Function;
9260
+ /**
9261
+ * Returns a metadata object for class sap.ushell.ui.tile.StaticTile.
9262
+ */
9263
+ static getMetadata(): sap.ui.base.Metadata;
9264
+ }
9265
+ }
9210
9266
  }
9211
9267
 
9212
9268
  namespace ui5service {
@@ -9516,12 +9572,6 @@ declare namespace sap {
9516
9572
 
9517
9573
  InProgress = "InProgress",
9518
9574
  }
9519
- /**
9520
- * @SINCE 1.89.0
9521
- *
9522
- * Denotes the types of UI5-components loaded by FLP
9523
- */
9524
- enum UI5ComponentType {}
9525
9575
  }
9526
9576
 
9527
9577
  interface IUI5DefineDependencyNames {
@@ -9603,6 +9653,8 @@ declare namespace sap {
9603
9653
 
9604
9654
  "sap/ushell/ui/shell/ToolAreaItem": undefined;
9605
9655
 
9656
+ "sap/ushell/ui/tile/StaticTile": undefined;
9657
+
9606
9658
  "sap/ushell/ui5service/_ShellUIService/shelluiservice.class.factory": undefined;
9607
9659
 
9608
9660
  "sap/ushell/ui5service/UserStatus": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.1
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.2
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.2
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace zen {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace zen {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace zen {