@sapui5/ts-types 1.127.2 → 1.128.1

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 (67) hide show
  1. package/package.json +1 -1
  2. package/types/sap.apf.d.ts +1 -1
  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.cux.home.d.ts +225 -19
  7. package/types/sap.esh.search.ui.d.ts +1 -1
  8. package/types/sap.f.d.ts +1366 -198
  9. package/types/sap.fe.base.d.ts +1 -1
  10. package/types/sap.fe.core.d.ts +11 -26
  11. package/types/sap.fe.ina.d.ts +1 -1
  12. package/types/sap.fe.macros.d.ts +10 -1
  13. package/types/sap.fe.navigation.d.ts +1 -1
  14. package/types/sap.fe.placeholder.d.ts +1 -1
  15. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  16. package/types/sap.fe.templates.d.ts +14 -3
  17. package/types/sap.fe.test.d.ts +3 -3
  18. package/types/sap.fe.tools.d.ts +1 -1
  19. package/types/sap.feedback.ui.d.ts +1 -1
  20. package/types/sap.gantt.d.ts +123 -64
  21. package/types/sap.insights.d.ts +24 -1
  22. package/types/sap.m.d.ts +329 -23
  23. package/types/sap.makit.d.ts +1 -1
  24. package/types/sap.me.d.ts +1 -1
  25. package/types/sap.ndc.d.ts +1 -1
  26. package/types/sap.ovp.d.ts +1 -1
  27. package/types/sap.rules.ui.d.ts +1 -1
  28. package/types/sap.sac.df.d.ts +96 -23
  29. package/types/sap.suite.ui.commons.d.ts +1 -1
  30. package/types/sap.suite.ui.generic.template.d.ts +1 -1
  31. package/types/sap.suite.ui.microchart.d.ts +1 -1
  32. package/types/sap.tnt.d.ts +1 -1
  33. package/types/sap.ui.codeeditor.d.ts +10 -4
  34. package/types/sap.ui.commons.d.ts +1 -1
  35. package/types/sap.ui.comp.d.ts +1010 -4
  36. package/types/sap.ui.core.d.ts +48 -28
  37. package/types/sap.ui.dt.d.ts +1 -1
  38. package/types/sap.ui.export.d.ts +1 -1
  39. package/types/sap.ui.fl.d.ts +10 -4
  40. package/types/sap.ui.generic.app.d.ts +1 -1
  41. package/types/sap.ui.generic.template.d.ts +1 -1
  42. package/types/sap.ui.integration.d.ts +53 -4
  43. package/types/sap.ui.layout.d.ts +5 -5
  44. package/types/sap.ui.mdc.d.ts +426 -204
  45. package/types/sap.ui.richtexteditor.d.ts +1 -1
  46. package/types/sap.ui.rta.d.ts +1 -1
  47. package/types/sap.ui.suite.d.ts +1 -1
  48. package/types/sap.ui.support.d.ts +1 -1
  49. package/types/sap.ui.table.d.ts +94 -23
  50. package/types/sap.ui.testrecorder.d.ts +1 -1
  51. package/types/sap.ui.unified.d.ts +601 -1
  52. package/types/sap.ui.ux3.d.ts +1 -1
  53. package/types/sap.ui.vbm.d.ts +1 -1
  54. package/types/sap.ui.vk.d.ts +47 -22
  55. package/types/sap.ui.vtm.d.ts +1 -1
  56. package/types/sap.ui.webc.common.d.ts +1 -1
  57. package/types/sap.ui.webc.fiori.d.ts +1 -1
  58. package/types/sap.ui.webc.main.d.ts +1 -1
  59. package/types/sap.uiext.inbox.d.ts +1 -1
  60. package/types/sap.ushell.d.ts +16 -8
  61. package/types/sap.ushell_abap.d.ts +1 -1
  62. package/types/sap.uxap.d.ts +46 -1
  63. package/types/sap.viz.d.ts +1 -1
  64. package/types/sap.webanalytics.core.d.ts +1 -1
  65. package/types/sap.zen.commons.d.ts +1 -1
  66. package/types/sap.zen.crosstab.d.ts +1 -1
  67. package/types/sap.zen.dsh.d.ts +1 -1
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.0
1
+ // For Library Version: 1.128.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace sac {
@@ -396,7 +396,8 @@ declare namespace sap {
396
396
  * "TechName": "",
397
397
  * "Description": "",
398
398
  * "SemanticObject": "
399
- * }]
399
+ * }],
400
+ * "SupportedOperators": ["EQ"]
400
401
  * ```
401
402
  *
402
403
  *
@@ -1811,14 +1812,6 @@ declare namespace sap {
1811
1812
  * Defines the relative path of the property in the metamodel, based on the current contextPath.
1812
1813
  */
1813
1814
  metaPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
1814
-
1815
- /**
1816
- * Search attributes for the token validation. Available options are Key and Text
1817
- */
1818
- searchAttributes?:
1819
- | string[]
1820
- | sap.ui.base.ManagedObject.PropertyBindingInfo
1821
- | `{${string}}`;
1822
1815
  }
1823
1816
 
1824
1817
  /**
@@ -2238,45 +2231,123 @@ declare namespace sap {
2238
2231
  */
2239
2232
  getMetaPath(): string;
2240
2233
  /**
2241
- * Gets current value of property {@link #getSearchAttributes searchAttributes}.
2234
+ * Sets a new value for property {@link #getMetaPath metaPath}.
2242
2235
  *
2243
- * Search attributes for the token validation. Available options are Key and Text
2236
+ * Defines the relative path of the property in the metamodel, based on the current contextPath.
2237
+ *
2238
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2244
2239
  *
2245
2240
  *
2246
- * @returns Value of property `searchAttributes`
2241
+ * @returns Reference to `this` in order to allow method chaining
2247
2242
  */
2248
- getSearchAttributes(): string[];
2243
+ setMetaPath(
2244
+ /**
2245
+ * New value for property `metaPath`
2246
+ */
2247
+ sMetaPath: string
2248
+ ): this;
2249
+ }
2250
+ /**
2251
+ * A Filter Panel based on Multidimensional Model
2252
+ *
2253
+ * @experimental (since 1.128)
2254
+ */
2255
+ class FilterPanel
2256
+ extends /* was: sap.ui.mdc.p13n.panels.FilterPanel */ Object
2257
+ {
2249
2258
  /**
2250
- * Sets a new value for property {@link #getMetaPath metaPath}.
2259
+ * Constructor for a new Filter Panel.
2260
+ *
2261
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
2262
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
2263
+ * of the syntax of the settings object.
2264
+ */
2265
+ constructor();
2266
+
2267
+ /**
2268
+ * Creates a new subclass of class sap.sac.df.FilterPanel with name `sClassName` and enriches it with the
2269
+ * information contained in `oClassInfo`.
2270
+ *
2271
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.mdc.p13n.panels.FilterPanel.extend}.
2272
+ *
2273
+ *
2274
+ * @returns Created class / constructor function
2275
+ */
2276
+ static extend<T extends Record<string, unknown>>(
2277
+ /**
2278
+ * Name of the class being created
2279
+ */
2280
+ sClassName: string,
2281
+ /**
2282
+ * Object literal with information about the class
2283
+ */
2284
+ oClassInfo?: sap.ClassInfo<T, sap.sac.df.FilterPanel>,
2285
+ /**
2286
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2287
+ * used by this class
2288
+ */
2289
+ FNMetaImpl?: Function
2290
+ ): Function;
2291
+ /**
2292
+ * Returns a metadata object for class sap.sac.df.FilterPanel.
2293
+ *
2294
+ *
2295
+ * @returns Metadata object describing this class
2296
+ */
2297
+ static getMetadata(): sap.ui.base.Metadata;
2298
+ /**
2299
+ * Gets current value of property {@link #getEnableReorder enableReorder}.
2300
+ *
2301
+ * Determines whether the reordering of personalization items is enabled.
2302
+ *
2303
+ * Default value is `false`.
2304
+ *
2305
+ *
2306
+ * @returns Value of property `enableReorder`
2307
+ */
2308
+ getEnableReorder(): boolean;
2309
+ /**
2310
+ * Gets current value of property {@link #getMetaPath metaPath}.
2251
2311
  *
2252
2312
  * Defines the relative path of the property in the metamodel, based on the current contextPath.
2253
2313
  *
2314
+ *
2315
+ * @returns Value of property `metaPath`
2316
+ */
2317
+ getMetaPath(): string;
2318
+ /**
2319
+ * Sets a new value for property {@link #getEnableReorder enableReorder}.
2320
+ *
2321
+ * Determines whether the reordering of personalization items is enabled.
2322
+ *
2254
2323
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2255
2324
  *
2325
+ * Default value is `false`.
2326
+ *
2256
2327
  *
2257
2328
  * @returns Reference to `this` in order to allow method chaining
2258
2329
  */
2259
- setMetaPath(
2330
+ setEnableReorder(
2260
2331
  /**
2261
- * New value for property `metaPath`
2332
+ * New value for property `enableReorder`
2262
2333
  */
2263
- sMetaPath: string
2334
+ bEnableReorder?: boolean
2264
2335
  ): this;
2265
2336
  /**
2266
- * Sets a new value for property {@link #getSearchAttributes searchAttributes}.
2337
+ * Sets a new value for property {@link #getMetaPath metaPath}.
2267
2338
  *
2268
- * Search attributes for the token validation. Available options are Key and Text
2339
+ * Defines the relative path of the property in the metamodel, based on the current contextPath.
2269
2340
  *
2270
2341
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2271
2342
  *
2272
2343
  *
2273
2344
  * @returns Reference to `this` in order to allow method chaining
2274
2345
  */
2275
- setSearchAttributes(
2346
+ setMetaPath(
2276
2347
  /**
2277
- * New value for property `searchAttributes`
2348
+ * New value for property `metaPath`
2278
2349
  */
2279
- sSearchAttributes: string[]
2350
+ sMetaPath: string
2280
2351
  ): this;
2281
2352
  }
2282
2353
  /**
@@ -3440,6 +3511,8 @@ declare namespace sap {
3440
3511
 
3441
3512
  "sap/sac/df/FilterField": undefined;
3442
3513
 
3514
+ "sap/sac/df/FilterPanel": undefined;
3515
+
3443
3516
  "sap/sac/df/FlexAnalysis": undefined;
3444
3517
 
3445
3518
  "sap/sac/df/FlexAnalysisPanel": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.0
1
+ // For Library Version: 1.128.0
2
2
 
3
3
  declare module "sap/suite/ui/commons/collaboration/BaseHelperService" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.2
1
+ // For Library Version: 1.128.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace suite {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.0
1
+ // For Library Version: 1.128.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace suite {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.0
1
+ // For Library Version: 1.128.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.0
1
+ // For Library Version: 1.128.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -102,7 +102,9 @@ declare namespace sap {
102
102
  colorTheme?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
103
103
 
104
104
  /**
105
- * Sets whether to show syntax hints in the editor. This flag is only available if line numbers are shown.
105
+ * Sets whether to show syntax hints in the editor. Those hints are visualized as value state icons in the
106
+ * line numbers area. The hint text is shown in tooltip of those icons. **Note:** This flag is only available
107
+ * if line numbers are shown.
106
108
  */
107
109
  syntaxHints?:
108
110
  | boolean
@@ -489,7 +491,9 @@ declare namespace sap {
489
491
  /**
490
492
  * Gets current value of property {@link #getSyntaxHints syntaxHints}.
491
493
  *
492
- * Sets whether to show syntax hints in the editor. This flag is only available if line numbers are shown.
494
+ * Sets whether to show syntax hints in the editor. Those hints are visualized as value state icons in the
495
+ * line numbers area. The hint text is shown in tooltip of those icons. **Note:** This flag is only available
496
+ * if line numbers are shown.
493
497
  *
494
498
  * Default value is `true`.
495
499
  *
@@ -655,7 +659,9 @@ declare namespace sap {
655
659
  /**
656
660
  * Sets a new value for property {@link #getSyntaxHints syntaxHints}.
657
661
  *
658
- * Sets whether to show syntax hints in the editor. This flag is only available if line numbers are shown.
662
+ * Sets whether to show syntax hints in the editor. Those hints are visualized as value state icons in the
663
+ * line numbers area. The hint text is shown in tooltip of those icons. **Note:** This flag is only available
664
+ * if line numbers are shown.
659
665
  *
660
666
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
661
667
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.0
1
+ // For Library Version: 1.128.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {