@sapui5/ts-types 1.104.2 → 1.106.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 (64) 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 +2 -2
  5. package/types/sap.collaboration.d.ts +25 -25
  6. package/types/sap.esh.search.ui.d.ts +939 -1
  7. package/types/sap.f.d.ts +80 -4
  8. package/types/sap.fe.common.d.ts +1 -1
  9. package/types/sap.fe.core.d.ts +5 -5
  10. package/types/sap.fe.macros.d.ts +30 -98
  11. package/types/sap.fe.navigation.d.ts +53 -5
  12. package/types/sap.fe.templates.d.ts +155 -1
  13. package/types/sap.fe.test.d.ts +17 -3
  14. package/types/sap.feedback.ui.d.ts +1 -1
  15. package/types/sap.gantt.d.ts +218 -57
  16. package/types/sap.insights.d.ts +1 -1
  17. package/types/sap.landvisz.d.ts +1 -1
  18. package/types/sap.m.d.ts +583 -149
  19. package/types/sap.makit.d.ts +1 -1
  20. package/types/sap.me.d.ts +1 -1
  21. package/types/sap.ndc.d.ts +68 -3
  22. package/types/sap.ovp.d.ts +1 -1
  23. package/types/sap.rules.ui.d.ts +1 -1
  24. package/types/sap.sac.df.d.ts +152 -171
  25. package/types/sap.sac.grid.d.ts +1 -1
  26. package/types/sap.suite.ui.commons.d.ts +121 -16
  27. package/types/sap.suite.ui.generic.template.d.ts +17 -3
  28. package/types/sap.suite.ui.microchart.d.ts +13 -13
  29. package/types/sap.tnt.d.ts +3 -3
  30. package/types/sap.ui.codeeditor.d.ts +1 -1
  31. package/types/sap.ui.commons.d.ts +31 -31
  32. package/types/sap.ui.comp.d.ts +182 -57
  33. package/types/sap.ui.core.d.ts +618 -265
  34. package/types/sap.ui.dt.d.ts +1 -1
  35. package/types/sap.ui.export.d.ts +3 -3
  36. package/types/sap.ui.fl.d.ts +1117 -5
  37. package/types/sap.ui.generic.app.d.ts +14 -11
  38. package/types/sap.ui.generic.template.d.ts +1 -1
  39. package/types/sap.ui.integration.d.ts +101 -18
  40. package/types/sap.ui.layout.d.ts +7 -7
  41. package/types/sap.ui.mdc.d.ts +5 -1
  42. package/types/sap.ui.richtexteditor.d.ts +2 -2
  43. package/types/sap.ui.rta.d.ts +3 -1
  44. package/types/sap.ui.suite.d.ts +5 -5
  45. package/types/sap.ui.support.d.ts +1 -1
  46. package/types/sap.ui.table.d.ts +26 -8
  47. package/types/sap.ui.testrecorder.d.ts +1 -1
  48. package/types/sap.ui.unified.d.ts +66 -19
  49. package/types/sap.ui.ux3.d.ts +11 -11
  50. package/types/sap.ui.vbm.d.ts +3 -3
  51. package/types/sap.ui.vk.d.ts +315 -24
  52. package/types/sap.ui.vtm.d.ts +2 -2
  53. package/types/sap.ui.webc.common.d.ts +1 -1
  54. package/types/sap.ui.webc.fiori.d.ts +239 -43
  55. package/types/sap.ui.webc.main.d.ts +636 -146
  56. package/types/sap.uiext.inbox.d.ts +1 -1
  57. package/types/sap.ushell.d.ts +12 -10
  58. package/types/sap.ushell_abap.d.ts +1 -215
  59. package/types/sap.uxap.d.ts +41 -1
  60. package/types/sap.viz.d.ts +1 -1
  61. package/types/sap.webanalytics.core.d.ts +2 -6
  62. package/types/sap.zen.commons.d.ts +1 -1
  63. package/types/sap.zen.crosstab.d.ts +1 -1
  64. package/types/sap.zen.dsh.d.ts +1 -1
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.104.0
1
+ // For Library Version: 1.106.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
package/types/sap.me.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.104.0
1
+ // For Library Version: 1.106.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.104.0
1
+ // For Library Version: 1.106.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -62,6 +62,14 @@ declare namespace sap {
62
62
  | sap.ui.base.ManagedObject.PropertyBindingInfo
63
63
  | `{${string}}`;
64
64
 
65
+ /**
66
+ * If set to true, the camera should be used for scanning in Zebra Enterprise Browser.
67
+ */
68
+ keepCameraScan?:
69
+ | boolean
70
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
71
+ | `{${string}}`;
72
+
65
73
  /**
66
74
  * Event is fired when the scanning is finished or cancelled
67
75
  */
@@ -92,6 +100,16 @@ declare namespace sap {
92
100
  * );
93
101
  * });
94
102
  * ```
103
+ *
104
+ *
105
+ * The Barcode Scanner control integrates with the laser scanner when the page is loaded in the Enterprise
106
+ * Browser on a Zebra device. To enable laser scanning with a Zebra device, two JavaScript files (ebapi.js
107
+ * and eb.barcode.js) need to be loaded during runtime by the Enterprise Browser.
108
+ * - Your company admin / IT should configure the Barcode API settings in the Enterprise Browser config.xml
109
+ * file using mobile device management (MDM). Refer to CustomDOMElements
110
+ * for detailed information (recommended).
111
+ * - Developers can load these files directly into an HTML file. Refer to Enabling the API for detailed
112
+ * information.
95
113
  */
96
114
  interface BarcodeScanner {
97
115
  /**
@@ -100,6 +118,12 @@ declare namespace sap {
100
118
  * method.)
101
119
  */
102
120
  closeScanDialog(): void;
121
+ /**
122
+ * Returns the API info that will be used to scan.
123
+ *
124
+ * @returns The Barcode Scanner API info. (e.g. ZebraEnterpriseBrowser, Cordova, ZXing or unknown)
125
+ */
126
+ getScanAPIInfo(): string;
103
127
  /**
104
128
  * Returns the status model of the BarcodeScanner. It is a JSON model which contains a single boolean property
105
129
  * '`available`' indicating whether or not the bar code scanner feature is available. It can be used to
@@ -141,7 +165,8 @@ declare namespace sap {
141
165
  * "Enter Product Bar Code",
142
166
  * true,
143
167
  * 30,
144
- * 1
168
+ * 1,
169
+ * false
145
170
  * );
146
171
  * });
147
172
  * ```
@@ -174,7 +199,20 @@ declare namespace sap {
174
199
  /**
175
200
  * Defines the zoom of the camera. This parameter is not supported on iOS.
176
201
  */
177
- zoom?: float
202
+ zoom?: float,
203
+ /**
204
+ * Flag, which defines whether the camera should be used for scanning in Zebra Enterprise Browser.
205
+ */
206
+ keepCameraScan?: boolean
207
+ ): void;
208
+ /**
209
+ * Set the callback function for the physical scan button.
210
+ */
211
+ setPhysicalScan(
212
+ /**
213
+ * Function to be called when the scanning is done by pressing physical scan button.
214
+ */
215
+ fnPhysicalScan?: Function
178
216
  ): void;
179
217
  }
180
218
  const BarcodeScanner: BarcodeScanner;
@@ -501,6 +539,16 @@ declare namespace sap {
501
539
  * @returns Value of property `frameRate`
502
540
  */
503
541
  getFrameRate(): float;
542
+ /**
543
+ * Gets current value of property {@link #getKeepCameraScan keepCameraScan}.
544
+ *
545
+ * If set to true, the camera should be used for scanning in Zebra Enterprise Browser.
546
+ *
547
+ * Default value is `false`.
548
+ *
549
+ * @returns Value of property `keepCameraScan`
550
+ */
551
+ getKeepCameraScan(): boolean;
504
552
  /**
505
553
  * Gets current value of property {@link #getPreferFrontCamera preferFrontCamera}.
506
554
  *
@@ -579,6 +627,23 @@ declare namespace sap {
579
627
  */
580
628
  fFrameRate: float
581
629
  ): this;
630
+ /**
631
+ * Sets a new value for property {@link #getKeepCameraScan keepCameraScan}.
632
+ *
633
+ * If set to true, the camera should be used for scanning in Zebra Enterprise Browser.
634
+ *
635
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
636
+ *
637
+ * Default value is `false`.
638
+ *
639
+ * @returns Reference to `this` in order to allow method chaining
640
+ */
641
+ setKeepCameraScan(
642
+ /**
643
+ * New value for property `keepCameraScan`
644
+ */
645
+ bKeepCameraScan?: boolean
646
+ ): this;
582
647
  /**
583
648
  * Sets a new value for property {@link #getPreferFrontCamera preferFrontCamera}.
584
649
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.104.0
1
+ // For Library Version: 1.106.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.104.1
1
+ // For Library Version: 1.106.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace rules {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.104.0
1
+ // For Library Version: 1.106.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace sac {
@@ -896,7 +896,7 @@ declare namespace sap {
896
896
  * The associative array of all `SemanticStyle` for the `MultiDimModel` VariableGroups: The associative
897
897
  * array of registered Variable Groups Messages: The list of all messages posted by the Analytical Engine
898
898
  */
899
- class MultiDimModel extends sap.ui.model.Model {
899
+ class MultiDimModel /* was: sap.sac.df.DFKernel */ extends Object {
900
900
  /**
901
901
  * Constructor for a new OlapMode.
902
902
  *
@@ -908,7 +908,7 @@ declare namespace sap {
908
908
  * Creates a new subclass of class sap.sac.df.olap.MultiDimModel with name `sClassName` and enriches it
909
909
  * with the information contained in `oClassInfo`.
910
910
  *
911
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.model.Model.extend}.
911
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.sac.df.DFKernel.extend}.
912
912
  *
913
913
  * @returns Created class / constructor function
914
914
  */
@@ -1343,14 +1343,18 @@ declare namespace sap {
1343
1343
  * The HANA/MDS analytic engine
1344
1344
  */
1345
1345
  HANA = "HANA",
1346
- /**
1347
- * The in place WASABI Engine
1348
- */
1349
- WASABI = "WASABI",
1350
1346
  }
1351
1347
  }
1352
1348
 
1353
1349
  interface $FlexAnalysisSettings extends sap.ui.core.$ControlSettings {
1350
+ /**
1351
+ * Indicates Flexible Analysis component automatically requests the ResultSet for the shown data source
1352
+ */
1353
+ autoUpdate?:
1354
+ | boolean
1355
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1356
+ | `{${string}}`;
1357
+
1354
1358
  /**
1355
1359
  * URI of the advanced configuration to be fetched
1356
1360
  */
@@ -1363,11 +1367,6 @@ declare namespace sap {
1363
1367
  */
1364
1368
  configObject?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
1365
1369
 
1366
- /**
1367
- * Id of the DFModel to be used
1368
- */
1369
- kernelId?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
1370
-
1371
1370
  /**
1372
1371
  * Width of the component
1373
1372
  */
@@ -1385,9 +1384,9 @@ declare namespace sap {
1385
1384
  | `{${string}}`;
1386
1385
 
1387
1386
  /**
1388
- * Sets if the status bar of FlexAnalysis is hidden
1387
+ * Sets if the Design Panel of FlexAnalysis is hidden
1389
1388
  */
1390
- hideStatusBar?:
1389
+ hideDesignPanel?:
1391
1390
  | boolean
1392
1391
  | sap.ui.base.ManagedObject.PropertyBindingInfo
1393
1392
  | `{${string}}`;
@@ -1400,6 +1399,14 @@ declare namespace sap {
1400
1399
  | sap.ui.base.ManagedObject.PropertyBindingInfo
1401
1400
  | `{${string}}`;
1402
1401
 
1402
+ /**
1403
+ * Sets if the status bar of FlexAnalysis is hidden
1404
+ */
1405
+ hideStatusBar?:
1406
+ | boolean
1407
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1408
+ | `{${string}}`;
1409
+
1403
1410
  /**
1404
1411
  * Sets if the toolbar of FlexAnalysis is hidden
1405
1412
  */
@@ -1408,6 +1415,14 @@ declare namespace sap {
1408
1415
  | sap.ui.base.ManagedObject.PropertyBindingInfo
1409
1416
  | `{${string}}`;
1410
1417
 
1418
+ /**
1419
+ * Sets if the filter of FlexAnalysis is hidden
1420
+ */
1421
+ hideFilterLine?:
1422
+ | boolean
1423
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1424
+ | `{${string}}`;
1425
+
1411
1426
  /**
1412
1427
  * Additional Flag to be passed to the control TODO: Document the possibilities
1413
1428
  */
@@ -1450,7 +1465,7 @@ declare namespace sap {
1450
1465
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
1451
1466
 
1452
1467
  /**
1453
- * Dataprovider for
1468
+ * Name of the Data Provider from the corresponding MultiDimModel to be used
1454
1469
  */
1455
1470
  dataProvider?:
1456
1471
  | any
@@ -1458,14 +1473,20 @@ declare namespace sap {
1458
1473
  | `{${string}}`;
1459
1474
 
1460
1475
  /**
1461
- * Id of the MutliDeimModel to use
1476
+ * Id of the MultiDimModel to use
1462
1477
  */
1463
- modelId?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
1478
+ multiDimModelId?:
1479
+ | string
1480
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
1464
1481
 
1465
1482
  /**
1466
- * event called when the query is updated
1483
+ * Indicates if the variable are handled internal handling by FlexAnalysis. If set to false it is done via
1484
+ * corresponding MultiDimModel
1467
1485
  */
1468
- queryExecuted?: (oEvent: sap.ui.base.Event) => void;
1486
+ implicitVariableHandling?:
1487
+ | boolean
1488
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1489
+ | `{${string}}`;
1469
1490
  }
1470
1491
 
1471
1492
  interface $PivotTableSettings extends sap.ui.core.$ControlSettings {
@@ -1491,49 +1512,6 @@ declare namespace sap {
1491
1512
  navigationCmd?: (oEvent: sap.ui.base.Event) => void;
1492
1513
  }
1493
1514
 
1494
- /**
1495
- * @EXPERIMENTAL
1496
- *
1497
- * Model implementation to access Firefly kernel
1498
- */
1499
- class DFKernel extends sap.ui.model.Model {
1500
- /**
1501
- * The DFKernel is a UI5 model which provides access to Firefly kernel - core infrastructure like processes,
1502
- * connections and system definitions. This shared parts can be used by other Controls, Models and Components
1503
- * provided by sap.sac-df library.
1504
- */
1505
- constructor();
1506
-
1507
- /**
1508
- * Creates a new subclass of class sap.sac.df.DFKernel with name `sClassName` and enriches it with the information
1509
- * contained in `oClassInfo`.
1510
- *
1511
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.model.Model.extend}.
1512
- *
1513
- * @returns Created class / constructor function
1514
- */
1515
- static extend<T extends Record<string, unknown>>(
1516
- /**
1517
- * Name of the class being created
1518
- */
1519
- sClassName: string,
1520
- /**
1521
- * Object literal with information about the class
1522
- */
1523
- oClassInfo?: sap.ClassInfo<T, sap.sac.df.DFKernel>,
1524
- /**
1525
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1526
- * used by this class
1527
- */
1528
- FNMetaImpl?: Function
1529
- ): Function;
1530
- /**
1531
- * Returns a metadata object for class sap.sac.df.DFKernel.
1532
- *
1533
- * @returns Metadata object describing this class
1534
- */
1535
- static getMetadata(): sap.ui.base.Metadata;
1536
- }
1537
1515
  /**
1538
1516
  * @EXPERIMENTAL
1539
1517
  *
@@ -1588,51 +1566,6 @@ declare namespace sap {
1588
1566
  * @returns Metadata object describing this class
1589
1567
  */
1590
1568
  static getMetadata(): sap.ui.core.ElementMetadata;
1591
- /**
1592
- * Attaches event handler `fnFunction` to the {@link #event:queryExecuted queryExecuted} event of this `sap.sac.df.FlexAnalysis`.
1593
- *
1594
- * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
1595
- * otherwise it will be bound to this `sap.sac.df.FlexAnalysis` itself.
1596
- *
1597
- * event called when the query is updated
1598
- *
1599
- * @returns Reference to `this` in order to allow method chaining
1600
- */
1601
- attachQueryExecuted(
1602
- /**
1603
- * An application-specific payload object that will be passed to the event handler along with the event
1604
- * object when firing the event
1605
- */
1606
- oData: object,
1607
- /**
1608
- * The function to be called when the event occurs
1609
- */
1610
- fnFunction: (p1: sap.ui.base.Event) => void,
1611
- /**
1612
- * Context object to call the event handler with. Defaults to this `sap.sac.df.FlexAnalysis` itself
1613
- */
1614
- oListener?: object
1615
- ): this;
1616
- /**
1617
- * Attaches event handler `fnFunction` to the {@link #event:queryExecuted queryExecuted} event of this `sap.sac.df.FlexAnalysis`.
1618
- *
1619
- * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
1620
- * otherwise it will be bound to this `sap.sac.df.FlexAnalysis` itself.
1621
- *
1622
- * event called when the query is updated
1623
- *
1624
- * @returns Reference to `this` in order to allow method chaining
1625
- */
1626
- attachQueryExecuted(
1627
- /**
1628
- * The function to be called when the event occurs
1629
- */
1630
- fnFunction: (p1: sap.ui.base.Event) => void,
1631
- /**
1632
- * Context object to call the event handler with. Defaults to this `sap.sac.df.FlexAnalysis` itself
1633
- */
1634
- oListener?: object
1635
- ): this;
1636
1569
  /**
1637
1570
  * Binds property {@link #getDataProvider dataProvider} to model data.
1638
1571
  *
@@ -1648,34 +1581,15 @@ declare namespace sap {
1648
1581
  oBindingInfo: sap.ui.base.ManagedObject.PropertyBindingInfo
1649
1582
  ): this;
1650
1583
  /**
1651
- * Detaches event handler `fnFunction` from the {@link #event:queryExecuted queryExecuted} event of this
1652
- * `sap.sac.df.FlexAnalysis`.
1584
+ * Gets current value of property {@link #getAutoUpdate autoUpdate}.
1653
1585
  *
1654
- * The passed function and listener object must match the ones used for event registration.
1586
+ * Indicates Flexible Analysis component automatically requests the ResultSet for the shown data source
1655
1587
  *
1656
- * @returns Reference to `this` in order to allow method chaining
1657
- */
1658
- detachQueryExecuted(
1659
- /**
1660
- * The function to be called, when the event occurs
1661
- */
1662
- fnFunction: (p1: sap.ui.base.Event) => void,
1663
- /**
1664
- * Context object on which the given function had to be called
1665
- */
1666
- oListener?: object
1667
- ): this;
1668
- /**
1669
- * Fires event {@link #event:queryExecuted queryExecuted} to attached listeners.
1588
+ * Default value is `true`.
1670
1589
  *
1671
- * @returns Reference to `this` in order to allow method chaining
1590
+ * @returns Value of property `autoUpdate`
1672
1591
  */
1673
- fireQueryExecuted(
1674
- /**
1675
- * Parameters to pass along with the event
1676
- */
1677
- mParameters?: object
1678
- ): this;
1592
+ getAutoUpdate(): boolean;
1679
1593
  /**
1680
1594
  * Gets current value of property {@link #getClientIdentifier clientIdentifier}.
1681
1595
  *
@@ -1703,7 +1617,7 @@ declare namespace sap {
1703
1617
  /**
1704
1618
  * Gets current value of property {@link #getDataProvider dataProvider}.
1705
1619
  *
1706
- * Dataprovider for
1620
+ * Name of the Data Provider from the corresponding MultiDimModel to be used
1707
1621
  *
1708
1622
  * @returns Value of property `dataProvider`
1709
1623
  */
@@ -1738,6 +1652,26 @@ declare namespace sap {
1738
1652
  * @returns Value of property `height`
1739
1653
  */
1740
1654
  getHeight(): sap.ui.core.CSSSize;
1655
+ /**
1656
+ * Gets current value of property {@link #getHideDesignPanel hideDesignPanel}.
1657
+ *
1658
+ * Sets if the Design Panel of FlexAnalysis is hidden
1659
+ *
1660
+ * Default value is `true`.
1661
+ *
1662
+ * @returns Value of property `hideDesignPanel`
1663
+ */
1664
+ getHideDesignPanel(): boolean;
1665
+ /**
1666
+ * Gets current value of property {@link #getHideFilterLine hideFilterLine}.
1667
+ *
1668
+ * Sets if the filter of FlexAnalysis is hidden
1669
+ *
1670
+ * Default value is `false`.
1671
+ *
1672
+ * @returns Value of property `hideFilterLine`
1673
+ */
1674
+ getHideFilterLine(): boolean;
1741
1675
  /**
1742
1676
  * Gets current value of property {@link #getHideMenuBar hideMenuBar}.
1743
1677
  *
@@ -1769,42 +1703,41 @@ declare namespace sap {
1769
1703
  */
1770
1704
  getHideToolBar(): boolean;
1771
1705
  /**
1772
- * Gets current value of property {@link #getKeepAliveInterval keepAliveInterval}.
1706
+ * Gets current value of property {@link #getImplicitVariableHandling implicitVariableHandling}.
1773
1707
  *
1774
- * Interval to keep the InA session alive. values less than 1 deactivates the keep alive handling
1708
+ * Indicates if the variable are handled internal handling by FlexAnalysis. If set to false it is done via
1709
+ * corresponding MultiDimModel
1775
1710
  *
1776
- * Default value is `0`.
1711
+ * Default value is `true`.
1777
1712
  *
1778
- * @returns Value of property `keepAliveInterval`
1713
+ * @returns Value of property `implicitVariableHandling`
1779
1714
  */
1780
- getKeepAliveInterval(): int;
1715
+ getImplicitVariableHandling(): boolean;
1781
1716
  /**
1782
- * Gets current value of property {@link #getKernelId kernelId}.
1717
+ * Gets current value of property {@link #getKeepAliveInterval keepAliveInterval}.
1783
1718
  *
1784
- * Id of the DFModel to be used
1719
+ * Interval to keep the InA session alive. values less than 1 deactivates the keep alive handling
1785
1720
  *
1786
- * Default value is `"dfk"`.
1721
+ * Default value is `0`.
1787
1722
  *
1788
- * @returns Value of property `kernelId`
1723
+ * @returns Value of property `keepAliveInterval`
1789
1724
  */
1790
- getKernelId(): string;
1725
+ getKeepAliveInterval(): int;
1791
1726
  /**
1792
- * Gets current value of property {@link #getModelId modelId}.
1727
+ * Gets current value of property {@link #getMultiDimModelId multiDimModelId}.
1793
1728
  *
1794
- * Id of the MutliDeimModel to use
1729
+ * Id of the MultiDimModel to use
1795
1730
  *
1796
1731
  * Default value is `"om"`.
1797
1732
  *
1798
- * @returns Value of property `modelId`
1733
+ * @returns Value of property `multiDimModelId`
1799
1734
  */
1800
- getModelId(): string;
1735
+ getMultiDimModelId(): string;
1801
1736
  /**
1802
1737
  * Gets current value of property {@link #getSystemName systemName}.
1803
1738
  *
1804
1739
  * System to take data from. If not set or set to "local" current url will be used to determine the system
1805
1740
  *
1806
- * Default value is `"local"`.
1807
- *
1808
1741
  * @returns Value of property `systemName`
1809
1742
  */
1810
1743
  getSystemName(): string;
@@ -1828,6 +1761,23 @@ declare namespace sap {
1828
1761
  * @returns Value of property `width`
1829
1762
  */
1830
1763
  getWidth(): sap.ui.core.CSSSize;
1764
+ /**
1765
+ * Sets a new value for property {@link #getAutoUpdate autoUpdate}.
1766
+ *
1767
+ * Indicates Flexible Analysis component automatically requests the ResultSet for the shown data source
1768
+ *
1769
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1770
+ *
1771
+ * Default value is `true`.
1772
+ *
1773
+ * @returns Reference to `this` in order to allow method chaining
1774
+ */
1775
+ setAutoUpdate(
1776
+ /**
1777
+ * New value for property `autoUpdate`
1778
+ */
1779
+ bAutoUpdate?: boolean
1780
+ ): this;
1831
1781
  /**
1832
1782
  * Sets a new value for property {@link #getClientIdentifier clientIdentifier}.
1833
1783
  *
@@ -1876,7 +1826,7 @@ declare namespace sap {
1876
1826
  /**
1877
1827
  * Sets a new value for property {@link #getDataProvider dataProvider}.
1878
1828
  *
1879
- * Dataprovider for
1829
+ * Name of the Data Provider from the corresponding MultiDimModel to be used
1880
1830
  *
1881
1831
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1882
1832
  *
@@ -1939,6 +1889,40 @@ declare namespace sap {
1939
1889
  */
1940
1890
  sHeight?: sap.ui.core.CSSSize
1941
1891
  ): this;
1892
+ /**
1893
+ * Sets a new value for property {@link #getHideDesignPanel hideDesignPanel}.
1894
+ *
1895
+ * Sets if the Design Panel of FlexAnalysis is hidden
1896
+ *
1897
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1898
+ *
1899
+ * Default value is `true`.
1900
+ *
1901
+ * @returns Reference to `this` in order to allow method chaining
1902
+ */
1903
+ setHideDesignPanel(
1904
+ /**
1905
+ * New value for property `hideDesignPanel`
1906
+ */
1907
+ bHideDesignPanel?: boolean
1908
+ ): this;
1909
+ /**
1910
+ * Sets a new value for property {@link #getHideFilterLine hideFilterLine}.
1911
+ *
1912
+ * Sets if the filter of FlexAnalysis is hidden
1913
+ *
1914
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1915
+ *
1916
+ * Default value is `false`.
1917
+ *
1918
+ * @returns Reference to `this` in order to allow method chaining
1919
+ */
1920
+ setHideFilterLine(
1921
+ /**
1922
+ * New value for property `hideFilterLine`
1923
+ */
1924
+ bHideFilterLine?: boolean
1925
+ ): this;
1942
1926
  /**
1943
1927
  * Sets a new value for property {@link #getHideMenuBar hideMenuBar}.
1944
1928
  *
@@ -1991,43 +1975,44 @@ declare namespace sap {
1991
1975
  bHideToolBar?: boolean
1992
1976
  ): this;
1993
1977
  /**
1994
- * Sets a new value for property {@link #getKeepAliveInterval keepAliveInterval}.
1978
+ * Sets a new value for property {@link #getImplicitVariableHandling implicitVariableHandling}.
1995
1979
  *
1996
- * Interval to keep the InA session alive. values less than 1 deactivates the keep alive handling
1980
+ * Indicates if the variable are handled internal handling by FlexAnalysis. If set to false it is done via
1981
+ * corresponding MultiDimModel
1997
1982
  *
1998
1983
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1999
1984
  *
2000
- * Default value is `0`.
1985
+ * Default value is `true`.
2001
1986
  *
2002
1987
  * @returns Reference to `this` in order to allow method chaining
2003
1988
  */
2004
- setKeepAliveInterval(
1989
+ setImplicitVariableHandling(
2005
1990
  /**
2006
- * New value for property `keepAliveInterval`
1991
+ * New value for property `implicitVariableHandling`
2007
1992
  */
2008
- iKeepAliveInterval?: int
1993
+ bImplicitVariableHandling?: boolean
2009
1994
  ): this;
2010
1995
  /**
2011
- * Sets a new value for property {@link #getKernelId kernelId}.
1996
+ * Sets a new value for property {@link #getKeepAliveInterval keepAliveInterval}.
2012
1997
  *
2013
- * Id of the DFModel to be used
1998
+ * Interval to keep the InA session alive. values less than 1 deactivates the keep alive handling
2014
1999
  *
2015
2000
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2016
2001
  *
2017
- * Default value is `"dfk"`.
2002
+ * Default value is `0`.
2018
2003
  *
2019
2004
  * @returns Reference to `this` in order to allow method chaining
2020
2005
  */
2021
- setKernelId(
2006
+ setKeepAliveInterval(
2022
2007
  /**
2023
- * New value for property `kernelId`
2008
+ * New value for property `keepAliveInterval`
2024
2009
  */
2025
- sKernelId?: string
2010
+ iKeepAliveInterval?: int
2026
2011
  ): this;
2027
2012
  /**
2028
- * Sets a new value for property {@link #getModelId modelId}.
2013
+ * Sets a new value for property {@link #getMultiDimModelId multiDimModelId}.
2029
2014
  *
2030
- * Id of the MutliDeimModel to use
2015
+ * Id of the MultiDimModel to use
2031
2016
  *
2032
2017
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2033
2018
  *
@@ -2035,11 +2020,11 @@ declare namespace sap {
2035
2020
  *
2036
2021
  * @returns Reference to `this` in order to allow method chaining
2037
2022
  */
2038
- setModelId(
2023
+ setMultiDimModelId(
2039
2024
  /**
2040
- * New value for property `modelId`
2025
+ * New value for property `multiDimModelId`
2041
2026
  */
2042
- sModelId?: string
2027
+ sMultiDimModelId?: string
2043
2028
  ): this;
2044
2029
  /**
2045
2030
  * Sets a new value for property {@link #getSystemName systemName}.
@@ -2048,15 +2033,13 @@ declare namespace sap {
2048
2033
  *
2049
2034
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2050
2035
  *
2051
- * Default value is `"local"`.
2052
- *
2053
2036
  * @returns Reference to `this` in order to allow method chaining
2054
2037
  */
2055
2038
  setSystemName(
2056
2039
  /**
2057
2040
  * New value for property `systemName`
2058
2041
  */
2059
- sSystemName?: string
2042
+ sSystemName: string
2060
2043
  ): this;
2061
2044
  /**
2062
2045
  * Sets a new value for property {@link #getSystemType systemType}.
@@ -2329,8 +2312,6 @@ declare namespace sap {
2329
2312
  }
2330
2313
 
2331
2314
  interface IUI5DefineDependencyNames {
2332
- "sap/sac/df/DFKernel": undefined;
2333
-
2334
2315
  "sap/sac/df/FlexAnalysis": undefined;
2335
2316
 
2336
2317
  "sap/sac/df/library": undefined;