@openui5/ts-types 1.99.0 → 1.100.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.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.99.0
1
+ // For Library Version: 1.100.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -175,17 +175,17 @@ declare namespace sap {
175
175
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
176
176
 
177
177
  /**
178
- * Defines the content in the middle of the bar
178
+ * Defines the content at the end of the bar
179
179
  */
180
- content?:
180
+ endContent?:
181
181
  | sap.ui.core.Control[]
182
182
  | sap.ui.core.Control
183
183
  | sap.ui.base.ManagedObject.AggregationBindingInfo;
184
184
 
185
185
  /**
186
- * Defines the content at the end of the bar
186
+ * Defines the content in the middle of the bar
187
187
  */
188
- endContent?:
188
+ middleContent?:
189
189
  | sap.ui.core.Control[]
190
190
  | sap.ui.core.Control
191
191
  | sap.ui.base.ManagedObject.AggregationBindingInfo;
@@ -562,9 +562,10 @@ declare namespace sap {
562
562
  interface $MediaGalleryItemSettings
563
563
  extends sap.ui.webc.common.$WebComponentSettings {
564
564
  /**
565
- * Defines whether the component is in disabled state.
565
+ * Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
566
+ * the tab chain.
566
567
  */
567
- disabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
568
+ enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
568
569
 
569
570
  /**
570
571
  * Determines the layout of the item container.
@@ -585,18 +586,12 @@ declare namespace sap {
585
586
  /**
586
587
  * Defines the content of the component.
587
588
  */
588
- content?:
589
- | sap.ui.core.Control[]
590
- | sap.ui.core.Control
591
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
589
+ content?: sap.ui.core.Control;
592
590
 
593
591
  /**
594
592
  * Defines the content of the thumbnail.
595
593
  */
596
- thumbnail?:
597
- | sap.ui.core.Control[]
598
- | sap.ui.core.Control
599
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
594
+ thumbnail?: sap.ui.core.Control;
600
595
  }
601
596
 
602
597
  interface $NotificationActionSettings
@@ -618,11 +613,10 @@ declare namespace sap {
618
613
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
619
614
 
620
615
  /**
621
- * Defines if the action is disabled.
622
- *
623
- * **Note:** a disabled action can't be pressed or focused, and it is not in the tab chain.
616
+ * Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
617
+ * the tab chain.
624
618
  */
625
- disabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
619
+ enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
626
620
 
627
621
  /**
628
622
  * Defines the `icon` source URI.
@@ -1232,6 +1226,13 @@ declare namespace sap {
1232
1226
 
1233
1227
  interface $TimelineSettings
1234
1228
  extends sap.ui.webc.common.$WebComponentSettings {
1229
+ /**
1230
+ * Defines the accessible aria name of the component.
1231
+ */
1232
+ accessibleName?:
1233
+ | string
1234
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
1235
+
1235
1236
  /**
1236
1237
  * Defines the height of the control
1237
1238
  */
@@ -1321,7 +1322,7 @@ declare namespace sap {
1321
1322
  interface $UploadCollectionSettings
1322
1323
  extends sap.ui.webc.common.$WebComponentSettings {
1323
1324
  /**
1324
- * Sets the accessible aria name of the component.
1325
+ * Defines the accessible aria name of the component.
1325
1326
  */
1326
1327
  accessibleName?:
1327
1328
  | string
@@ -1592,15 +1593,10 @@ declare namespace sap {
1592
1593
  branching?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
1593
1594
 
1594
1595
  /**
1595
- * Defines if the step is `disabled`. When disabled the step is displayed, but the user can't select the
1596
- * step by clicking or navigate to it with scrolling.
1597
- *
1598
- *
1599
- *
1600
- * **Note:** Step can't be `selected` and `disabled` at the same time. In this case the `selected` property
1601
- * would take precedence.
1596
+ * Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
1597
+ * the tab chain.
1602
1598
  */
1603
- disabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
1599
+ enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
1604
1600
 
1605
1601
  /**
1606
1602
  * Defines the `icon` of the step.
@@ -1739,22 +1735,22 @@ declare namespace sap {
1739
1735
  */
1740
1736
  static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
1741
1737
  /**
1742
- * Adds some content to the aggregation {@link #getContent content}.
1738
+ * Adds some endContent to the aggregation {@link #getEndContent endContent}.
1743
1739
  */
1744
- addContent(
1740
+ addEndContent(
1745
1741
  /**
1746
- * The content to add; if empty, nothing is inserted
1742
+ * The endContent to add; if empty, nothing is inserted
1747
1743
  */
1748
- oContent: sap.ui.core.Control
1744
+ oEndContent: sap.ui.core.Control
1749
1745
  ): this;
1750
1746
  /**
1751
- * Adds some endContent to the aggregation {@link #getEndContent endContent}.
1747
+ * Adds some middleContent to the aggregation {@link #getMiddleContent middleContent}.
1752
1748
  */
1753
- addEndContent(
1749
+ addMiddleContent(
1754
1750
  /**
1755
- * The endContent to add; if empty, nothing is inserted
1751
+ * The middleContent to add; if empty, nothing is inserted
1756
1752
  */
1757
- oEndContent: sap.ui.core.Control
1753
+ oMiddleContent: sap.ui.core.Control
1758
1754
  ): this;
1759
1755
  /**
1760
1756
  * Adds some startContent to the aggregation {@link #getStartContent startContent}.
@@ -1765,24 +1761,18 @@ declare namespace sap {
1765
1761
  */
1766
1762
  oStartContent: sap.ui.core.Control
1767
1763
  ): this;
1768
- /**
1769
- * Destroys all the content in the aggregation {@link #getContent content}.
1770
- */
1771
- destroyContent(): this;
1772
1764
  /**
1773
1765
  * Destroys all the endContent in the aggregation {@link #getEndContent endContent}.
1774
1766
  */
1775
1767
  destroyEndContent(): this;
1776
1768
  /**
1777
- * Destroys all the startContent in the aggregation {@link #getStartContent startContent}.
1769
+ * Destroys all the middleContent in the aggregation {@link #getMiddleContent middleContent}.
1778
1770
  */
1779
- destroyStartContent(): this;
1771
+ destroyMiddleContent(): this;
1780
1772
  /**
1781
- * Gets content of aggregation {@link #getContent content}.
1782
- *
1783
- * Defines the content in the middle of the bar
1773
+ * Destroys all the startContent in the aggregation {@link #getStartContent startContent}.
1784
1774
  */
1785
- getContent(): sap.ui.core.Control[];
1775
+ destroyStartContent(): this;
1786
1776
  /**
1787
1777
  * Gets current value of property {@link #getDesign design}.
1788
1778
  *
@@ -1805,6 +1795,12 @@ declare namespace sap {
1805
1795
  * Defines the content at the end of the bar
1806
1796
  */
1807
1797
  getEndContent(): sap.ui.core.Control[];
1798
+ /**
1799
+ * Gets content of aggregation {@link #getMiddleContent middleContent}.
1800
+ *
1801
+ * Defines the content in the middle of the bar
1802
+ */
1803
+ getMiddleContent(): sap.ui.core.Control[];
1808
1804
  /**
1809
1805
  * Gets content of aggregation {@link #getStartContent startContent}.
1810
1806
  *
@@ -1817,16 +1813,6 @@ declare namespace sap {
1817
1813
  * Defines the width of the control
1818
1814
  */
1819
1815
  getWidth(): sap.ui.core.CSSSize;
1820
- /**
1821
- * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getContent content}. and returns
1822
- * its index if found or -1 otherwise.
1823
- */
1824
- indexOfContent(
1825
- /**
1826
- * The content whose index is looked for
1827
- */
1828
- oContent: sap.ui.core.Control
1829
- ): int;
1830
1816
  /**
1831
1817
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getEndContent endContent}. and
1832
1818
  * returns its index if found or -1 otherwise.
@@ -1837,6 +1823,16 @@ declare namespace sap {
1837
1823
  */
1838
1824
  oEndContent: sap.ui.core.Control
1839
1825
  ): int;
1826
+ /**
1827
+ * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getMiddleContent middleContent}.
1828
+ * and returns its index if found or -1 otherwise.
1829
+ */
1830
+ indexOfMiddleContent(
1831
+ /**
1832
+ * The middleContent whose index is looked for
1833
+ */
1834
+ oMiddleContent: sap.ui.core.Control
1835
+ ): int;
1840
1836
  /**
1841
1837
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getStartContent startContent}.
1842
1838
  * and returns its index if found or -1 otherwise.
@@ -1848,31 +1844,31 @@ declare namespace sap {
1848
1844
  oStartContent: sap.ui.core.Control
1849
1845
  ): int;
1850
1846
  /**
1851
- * Inserts a content into the aggregation {@link #getContent content}.
1847
+ * Inserts a endContent into the aggregation {@link #getEndContent endContent}.
1852
1848
  */
1853
- insertContent(
1849
+ insertEndContent(
1854
1850
  /**
1855
- * The content to insert; if empty, nothing is inserted
1851
+ * The endContent to insert; if empty, nothing is inserted
1856
1852
  */
1857
- oContent: sap.ui.core.Control,
1853
+ oEndContent: sap.ui.core.Control,
1858
1854
  /**
1859
- * The `0`-based index the content should be inserted at; for a negative value of `iIndex`, the content
1860
- * is inserted at position 0; for a value greater than the current size of the aggregation, the content
1855
+ * The `0`-based index the endContent should be inserted at; for a negative value of `iIndex`, the endContent
1856
+ * is inserted at position 0; for a value greater than the current size of the aggregation, the endContent
1861
1857
  * is inserted at the last position
1862
1858
  */
1863
1859
  iIndex: int
1864
1860
  ): this;
1865
1861
  /**
1866
- * Inserts a endContent into the aggregation {@link #getEndContent endContent}.
1862
+ * Inserts a middleContent into the aggregation {@link #getMiddleContent middleContent}.
1867
1863
  */
1868
- insertEndContent(
1864
+ insertMiddleContent(
1869
1865
  /**
1870
- * The endContent to insert; if empty, nothing is inserted
1866
+ * The middleContent to insert; if empty, nothing is inserted
1871
1867
  */
1872
- oEndContent: sap.ui.core.Control,
1868
+ oMiddleContent: sap.ui.core.Control,
1873
1869
  /**
1874
- * The `0`-based index the endContent should be inserted at; for a negative value of `iIndex`, the endContent
1875
- * is inserted at position 0; for a value greater than the current size of the aggregation, the endContent
1870
+ * The `0`-based index the middleContent should be inserted at; for a negative value of `iIndex`, the middleContent
1871
+ * is inserted at position 0; for a value greater than the current size of the aggregation, the middleContent
1876
1872
  * is inserted at the last position
1877
1873
  */
1878
1874
  iIndex: int
@@ -1893,17 +1889,17 @@ declare namespace sap {
1893
1889
  iIndex: int
1894
1890
  ): this;
1895
1891
  /**
1896
- * Removes all the controls from the aggregation {@link #getContent content}.
1892
+ * Removes all the controls from the aggregation {@link #getEndContent endContent}.
1897
1893
  *
1898
1894
  * Additionally, it unregisters them from the hosting UIArea.
1899
1895
  */
1900
- removeAllContent(): sap.ui.core.Control[];
1896
+ removeAllEndContent(): sap.ui.core.Control[];
1901
1897
  /**
1902
- * Removes all the controls from the aggregation {@link #getEndContent endContent}.
1898
+ * Removes all the controls from the aggregation {@link #getMiddleContent middleContent}.
1903
1899
  *
1904
1900
  * Additionally, it unregisters them from the hosting UIArea.
1905
1901
  */
1906
- removeAllEndContent(): sap.ui.core.Control[];
1902
+ removeAllMiddleContent(): sap.ui.core.Control[];
1907
1903
  /**
1908
1904
  * Removes all the controls from the aggregation {@link #getStartContent startContent}.
1909
1905
  *
@@ -1911,22 +1907,22 @@ declare namespace sap {
1911
1907
  */
1912
1908
  removeAllStartContent(): sap.ui.core.Control[];
1913
1909
  /**
1914
- * Removes a content from the aggregation {@link #getContent content}.
1910
+ * Removes a endContent from the aggregation {@link #getEndContent endContent}.
1915
1911
  */
1916
- removeContent(
1912
+ removeEndContent(
1917
1913
  /**
1918
- * The content to remove or its index or id
1914
+ * The endContent to remove or its index or id
1919
1915
  */
1920
- vContent: int | string | sap.ui.core.Control
1916
+ vEndContent: int | string | sap.ui.core.Control
1921
1917
  ): sap.ui.core.Control;
1922
1918
  /**
1923
- * Removes a endContent from the aggregation {@link #getEndContent endContent}.
1919
+ * Removes a middleContent from the aggregation {@link #getMiddleContent middleContent}.
1924
1920
  */
1925
- removeEndContent(
1921
+ removeMiddleContent(
1926
1922
  /**
1927
- * The endContent to remove or its index or id
1923
+ * The middleContent to remove or its index or id
1928
1924
  */
1929
- vEndContent: int | string | sap.ui.core.Control
1925
+ vMiddleContent: int | string | sap.ui.core.Control
1930
1926
  ): sap.ui.core.Control;
1931
1927
  /**
1932
1928
  * Removes a startContent from the aggregation {@link #getStartContent startContent}.
@@ -4288,29 +4284,11 @@ declare namespace sap {
4288
4284
  */
4289
4285
  static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
4290
4286
  /**
4291
- * Adds some content to the aggregation {@link #getContent content}.
4292
- */
4293
- addContent(
4294
- /**
4295
- * The content to add; if empty, nothing is inserted
4296
- */
4297
- oContent: sap.ui.core.Control
4298
- ): this;
4299
- /**
4300
- * Adds some thumbnail to the aggregation {@link #getThumbnail thumbnail}.
4301
- */
4302
- addThumbnail(
4303
- /**
4304
- * The thumbnail to add; if empty, nothing is inserted
4305
- */
4306
- oThumbnail: sap.ui.core.Control
4307
- ): this;
4308
- /**
4309
- * Destroys all the content in the aggregation {@link #getContent content}.
4287
+ * Destroys the content in the aggregation {@link #getContent content}.
4310
4288
  */
4311
4289
  destroyContent(): this;
4312
4290
  /**
4313
- * Destroys all the thumbnail in the aggregation {@link #getThumbnail thumbnail}.
4291
+ * Destroys the thumbnail in the aggregation {@link #getThumbnail thumbnail}.
4314
4292
  */
4315
4293
  destroyThumbnail(): this;
4316
4294
  /**
@@ -4318,15 +4296,16 @@ declare namespace sap {
4318
4296
  *
4319
4297
  * Defines the content of the component.
4320
4298
  */
4321
- getContent(): sap.ui.core.Control[];
4299
+ getContent(): sap.ui.core.Control;
4322
4300
  /**
4323
- * Gets current value of property {@link #getDisabled disabled}.
4301
+ * Gets current value of property {@link #getEnabled enabled}.
4324
4302
  *
4325
- * Defines whether the component is in disabled state.
4303
+ * Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
4304
+ * the tab chain.
4326
4305
  *
4327
- * Default value is `false`.
4306
+ * Default value is `true`.
4328
4307
  */
4329
- getDisabled(): boolean;
4308
+ getEnabled(): boolean;
4330
4309
  /**
4331
4310
  * Gets current value of property {@link #getLayout layout}.
4332
4311
  *
@@ -4352,101 +4331,31 @@ declare namespace sap {
4352
4331
  *
4353
4332
  * Defines the content of the thumbnail.
4354
4333
  */
4355
- getThumbnail(): sap.ui.core.Control[];
4334
+ getThumbnail(): sap.ui.core.Control;
4356
4335
  /**
4357
- * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getContent content}. and returns
4358
- * its index if found or -1 otherwise.
4336
+ * Sets the aggregated {@link #getContent content}.
4359
4337
  */
4360
- indexOfContent(
4338
+ setContent(
4361
4339
  /**
4362
- * The content whose index is looked for
4340
+ * The content to set
4363
4341
  */
4364
4342
  oContent: sap.ui.core.Control
4365
- ): int;
4366
- /**
4367
- * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getThumbnail thumbnail}. and
4368
- * returns its index if found or -1 otherwise.
4369
- */
4370
- indexOfThumbnail(
4371
- /**
4372
- * The thumbnail whose index is looked for
4373
- */
4374
- oThumbnail: sap.ui.core.Control
4375
- ): int;
4376
- /**
4377
- * Inserts a content into the aggregation {@link #getContent content}.
4378
- */
4379
- insertContent(
4380
- /**
4381
- * The content to insert; if empty, nothing is inserted
4382
- */
4383
- oContent: sap.ui.core.Control,
4384
- /**
4385
- * The `0`-based index the content should be inserted at; for a negative value of `iIndex`, the content
4386
- * is inserted at position 0; for a value greater than the current size of the aggregation, the content
4387
- * is inserted at the last position
4388
- */
4389
- iIndex: int
4390
- ): this;
4391
- /**
4392
- * Inserts a thumbnail into the aggregation {@link #getThumbnail thumbnail}.
4393
- */
4394
- insertThumbnail(
4395
- /**
4396
- * The thumbnail to insert; if empty, nothing is inserted
4397
- */
4398
- oThumbnail: sap.ui.core.Control,
4399
- /**
4400
- * The `0`-based index the thumbnail should be inserted at; for a negative value of `iIndex`, the thumbnail
4401
- * is inserted at position 0; for a value greater than the current size of the aggregation, the thumbnail
4402
- * is inserted at the last position
4403
- */
4404
- iIndex: int
4405
4343
  ): this;
4406
4344
  /**
4407
- * Removes all the controls from the aggregation {@link #getContent content}.
4345
+ * Sets a new value for property {@link #getEnabled enabled}.
4408
4346
  *
4409
- * Additionally, it unregisters them from the hosting UIArea.
4410
- */
4411
- removeAllContent(): sap.ui.core.Control[];
4412
- /**
4413
- * Removes all the controls from the aggregation {@link #getThumbnail thumbnail}.
4414
- *
4415
- * Additionally, it unregisters them from the hosting UIArea.
4416
- */
4417
- removeAllThumbnail(): sap.ui.core.Control[];
4418
- /**
4419
- * Removes a content from the aggregation {@link #getContent content}.
4420
- */
4421
- removeContent(
4422
- /**
4423
- * The content to remove or its index or id
4424
- */
4425
- vContent: int | string | sap.ui.core.Control
4426
- ): sap.ui.core.Control;
4427
- /**
4428
- * Removes a thumbnail from the aggregation {@link #getThumbnail thumbnail}.
4429
- */
4430
- removeThumbnail(
4431
- /**
4432
- * The thumbnail to remove or its index or id
4433
- */
4434
- vThumbnail: int | string | sap.ui.core.Control
4435
- ): sap.ui.core.Control;
4436
- /**
4437
- * Sets a new value for property {@link #getDisabled disabled}.
4438
- *
4439
- * Defines whether the component is in disabled state.
4347
+ * Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
4348
+ * the tab chain.
4440
4349
  *
4441
4350
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4442
4351
  *
4443
- * Default value is `false`.
4352
+ * Default value is `true`.
4444
4353
  */
4445
- setDisabled(
4354
+ setEnabled(
4446
4355
  /**
4447
- * New value for property `disabled`
4356
+ * New value for property `enabled`
4448
4357
  */
4449
- bDisabled?: boolean
4358
+ bEnabled?: boolean
4450
4359
  ): this;
4451
4360
  /**
4452
4361
  * Sets a new value for property {@link #getLayout layout}.
@@ -4482,6 +4391,15 @@ declare namespace sap {
4482
4391
  */
4483
4392
  bSelected?: boolean
4484
4393
  ): this;
4394
+ /**
4395
+ * Sets the aggregated {@link #getThumbnail thumbnail}.
4396
+ */
4397
+ setThumbnail(
4398
+ /**
4399
+ * The thumbnail to set
4400
+ */
4401
+ oThumbnail: sap.ui.core.Control
4402
+ ): this;
4485
4403
  }
4486
4404
  /**
4487
4405
  * @SINCE 1.92.0
@@ -4568,15 +4486,14 @@ declare namespace sap {
4568
4486
  */
4569
4487
  getDesign(): sap.ui.webc.main.ButtonDesign;
4570
4488
  /**
4571
- * Gets current value of property {@link #getDisabled disabled}.
4572
- *
4573
- * Defines if the action is disabled.
4489
+ * Gets current value of property {@link #getEnabled enabled}.
4574
4490
  *
4575
- * **Note:** a disabled action can't be pressed or focused, and it is not in the tab chain.
4491
+ * Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
4492
+ * the tab chain.
4576
4493
  *
4577
- * Default value is `false`.
4494
+ * Default value is `true`.
4578
4495
  */
4579
- getDisabled(): boolean;
4496
+ getEnabled(): boolean;
4580
4497
  /**
4581
4498
  * Gets current value of property {@link #getIcon icon}.
4582
4499
  *
@@ -4621,21 +4538,20 @@ declare namespace sap {
4621
4538
  sDesign?: sap.ui.webc.main.ButtonDesign
4622
4539
  ): this;
4623
4540
  /**
4624
- * Sets a new value for property {@link #getDisabled disabled}.
4625
- *
4626
- * Defines if the action is disabled.
4541
+ * Sets a new value for property {@link #getEnabled enabled}.
4627
4542
  *
4628
- * **Note:** a disabled action can't be pressed or focused, and it is not in the tab chain.
4543
+ * Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
4544
+ * the tab chain.
4629
4545
  *
4630
4546
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4631
4547
  *
4632
- * Default value is `false`.
4548
+ * Default value is `true`.
4633
4549
  */
4634
- setDisabled(
4550
+ setEnabled(
4635
4551
  /**
4636
- * New value for property `disabled`
4552
+ * New value for property `enabled`
4637
4553
  */
4638
- bDisabled?: boolean
4554
+ bEnabled?: boolean
4639
4555
  ): this;
4640
4556
  /**
4641
4557
  * Sets a new value for property {@link #getIcon icon}.
@@ -7801,6 +7717,9 @@ declare namespace sap {
7801
7717
  ): this;
7802
7718
  /**
7803
7719
  * Fires event {@link #event:selectionChange selectionChange} to attached listeners.
7720
+ *
7721
+ * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
7722
+ * event object. The return value of this method indicates whether the default action should be executed.
7804
7723
  */
7805
7724
  fireSelectionChange(
7806
7725
  /**
@@ -7812,7 +7731,7 @@ declare namespace sap {
7812
7731
  */
7813
7732
  item?: HTMLElement;
7814
7733
  }
7815
- ): this;
7734
+ ): boolean;
7816
7735
  /**
7817
7736
  * Gets current value of property {@link #getCollapsed collapsed}.
7818
7737
  *
@@ -8596,6 +8515,12 @@ declare namespace sap {
8596
8515
  * Destroys all the items in the aggregation {@link #getItems items}.
8597
8516
  */
8598
8517
  destroyItems(): this;
8518
+ /**
8519
+ * Gets current value of property {@link #getAccessibleName accessibleName}.
8520
+ *
8521
+ * Defines the accessible aria name of the component.
8522
+ */
8523
+ getAccessibleName(): string;
8599
8524
  /**
8600
8525
  * Gets current value of property {@link #getHeight height}.
8601
8526
  *
@@ -8668,6 +8593,19 @@ declare namespace sap {
8668
8593
  */
8669
8594
  vItem: int | string | sap.ui.webc.fiori.ITimelineItem
8670
8595
  ): sap.ui.webc.fiori.ITimelineItem;
8596
+ /**
8597
+ * Sets a new value for property {@link #getAccessibleName accessibleName}.
8598
+ *
8599
+ * Defines the accessible aria name of the component.
8600
+ *
8601
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8602
+ */
8603
+ setAccessibleName(
8604
+ /**
8605
+ * New value for property `accessibleName`
8606
+ */
8607
+ sAccessibleName: string
8608
+ ): this;
8671
8609
  /**
8672
8610
  * Sets a new value for property {@link #getHeight height}.
8673
8611
  *
@@ -9362,7 +9300,7 @@ declare namespace sap {
9362
9300
  /**
9363
9301
  * Gets current value of property {@link #getAccessibleName accessibleName}.
9364
9302
  *
9365
- * Sets the accessible aria name of the component.
9303
+ * Defines the accessible aria name of the component.
9366
9304
  *
9367
9305
  * Default value is `empty string`.
9368
9306
  */
@@ -9522,7 +9460,7 @@ declare namespace sap {
9522
9460
  /**
9523
9461
  * Sets a new value for property {@link #getAccessibleName accessibleName}.
9524
9462
  *
9525
- * Sets the accessible aria name of the component.
9463
+ * Defines the accessible aria name of the component.
9526
9464
  *
9527
9465
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
9528
9466
  *
@@ -10491,6 +10429,18 @@ declare namespace sap {
10491
10429
  * The currently selected `sap.ui.webc.fiori.SortItem` text attribute.
10492
10430
  */
10493
10431
  sortBy?: string;
10432
+ /**
10433
+ * The currently selected `sap.ui.webc.fiori.SortItem`.
10434
+ */
10435
+ sortByItem?: HTMLElement;
10436
+ /**
10437
+ * The selected sort order (true = descending, false = ascending).
10438
+ */
10439
+ sortDescending?: boolean;
10440
+ /**
10441
+ * The selected filters items.
10442
+ */
10443
+ filterItems?: any[];
10494
10444
  }
10495
10445
  ): this;
10496
10446
  /**
@@ -10509,6 +10459,18 @@ declare namespace sap {
10509
10459
  * The currently selected `sap.ui.webc.fiori.SortItem` text attribute.
10510
10460
  */
10511
10461
  sortBy?: string;
10462
+ /**
10463
+ * The currently selected `sap.ui.webc.fiori.SortItem`.
10464
+ */
10465
+ sortByItem?: HTMLElement;
10466
+ /**
10467
+ * The selected sort order (true = descending, false = ascending).
10468
+ */
10469
+ sortDescending?: boolean;
10470
+ /**
10471
+ * The selected filters items.
10472
+ */
10473
+ filterItems?: any[];
10512
10474
  }
10513
10475
  ): this;
10514
10476
  /**
@@ -11027,19 +10989,14 @@ declare namespace sap {
11027
10989
  */
11028
10990
  getContent(): sap.ui.core.Control[];
11029
10991
  /**
11030
- * Gets current value of property {@link #getDisabled disabled}.
10992
+ * Gets current value of property {@link #getEnabled enabled}.
11031
10993
  *
11032
- * Defines if the step is `disabled`. When disabled the step is displayed, but the user can't select the
11033
- * step by clicking or navigate to it with scrolling.
11034
- *
11035
- *
11036
- *
11037
- * **Note:** Step can't be `selected` and `disabled` at the same time. In this case the `selected` property
11038
- * would take precedence.
10994
+ * Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
10995
+ * the tab chain.
11039
10996
  *
11040
- * Default value is `false`.
10997
+ * Default value is `true`.
11041
10998
  */
11042
- getDisabled(): boolean;
10999
+ getEnabled(): boolean;
11043
11000
  /**
11044
11001
  * Gets current value of property {@link #getIcon icon}.
11045
11002
  *
@@ -11155,25 +11112,20 @@ declare namespace sap {
11155
11112
  bBranching?: boolean
11156
11113
  ): this;
11157
11114
  /**
11158
- * Sets a new value for property {@link #getDisabled disabled}.
11159
- *
11160
- * Defines if the step is `disabled`. When disabled the step is displayed, but the user can't select the
11161
- * step by clicking or navigate to it with scrolling.
11162
- *
11115
+ * Sets a new value for property {@link #getEnabled enabled}.
11163
11116
  *
11164
- *
11165
- * **Note:** Step can't be `selected` and `disabled` at the same time. In this case the `selected` property
11166
- * would take precedence.
11117
+ * Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
11118
+ * the tab chain.
11167
11119
  *
11168
11120
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
11169
11121
  *
11170
- * Default value is `false`.
11122
+ * Default value is `true`.
11171
11123
  */
11172
- setDisabled(
11124
+ setEnabled(
11173
11125
  /**
11174
- * New value for property `disabled`
11126
+ * New value for property `enabled`
11175
11127
  */
11176
- bDisabled?: boolean
11128
+ bEnabled?: boolean
11177
11129
  ): this;
11178
11130
  /**
11179
11131
  * Sets a new value for property {@link #getIcon icon}.
@@ -11557,6 +11509,46 @@ declare namespace sap {
11557
11509
  * "Tent" illustration type.
11558
11510
  */
11559
11511
  Tent = "Tent",
11512
+ /**
11513
+ * "TntChartArea" illustration type.
11514
+ */
11515
+ TntChartArea = "TntChartArea",
11516
+ /**
11517
+ * "TntChartArea2" illustration type.
11518
+ */
11519
+ TntChartArea2 = "TntChartArea2",
11520
+ /**
11521
+ * "TntChartBar" illustration type.
11522
+ */
11523
+ TntChartBar = "TntChartBar",
11524
+ /**
11525
+ * "TntChartBPMNFlow" illustration type.
11526
+ */
11527
+ TntChartBPMNFlow = "TntChartBPMNFlow",
11528
+ /**
11529
+ * "TntChartBullet" illustration type.
11530
+ */
11531
+ TntChartBullet = "TntChartBullet",
11532
+ /**
11533
+ * "TntChartDoughnut" illustration type.
11534
+ */
11535
+ TntChartDoughnut = "TntChartDoughnut",
11536
+ /**
11537
+ * "TntChartFlow" illustration type.
11538
+ */
11539
+ TntChartFlow = "TntChartFlow",
11540
+ /**
11541
+ * "TntChartGantt" illustration type.
11542
+ */
11543
+ TntChartGantt = "TntChartGantt",
11544
+ /**
11545
+ * "TntChartOrg" illustration type.
11546
+ */
11547
+ TntChartOrg = "TntChartOrg",
11548
+ /**
11549
+ * "TntChartPie" illustration type.
11550
+ */
11551
+ TntChartPie = "TntChartPie",
11560
11552
  /**
11561
11553
  * "TntCodePlaceholder" illustration type.
11562
11554
  */
@@ -11565,6 +11557,10 @@ declare namespace sap {
11565
11557
  * "TntCompany" illustration type.
11566
11558
  */
11567
11559
  TntCompany = "TntCompany",
11560
+ /**
11561
+ * "TntComponents" illustration type.
11562
+ */
11563
+ TntComponents = "TntComponents",
11568
11564
  /**
11569
11565
  * "TntExternalLink" illustration type.
11570
11566
  */
@@ -11601,6 +11597,10 @@ declare namespace sap {
11601
11597
  * "TntRadar" illustration type.
11602
11598
  */
11603
11599
  TntRadar = "TntRadar",
11600
+ /**
11601
+ * "TntSecrets" illustration type.
11602
+ */
11603
+ TntSecrets = "TntSecrets",
11604
11604
  /**
11605
11605
  * "TntServices" illustration type.
11606
11606
  */
@@ -11621,6 +11621,22 @@ declare namespace sap {
11621
11621
  * "TntSuccessfulAuth" illustration type.
11622
11622
  */
11623
11623
  TntSuccessfulAuth = "TntSuccessfulAuth",
11624
+ /**
11625
+ * "TntSystems" illustration type.
11626
+ */
11627
+ TntSystems = "TntSystems",
11628
+ /**
11629
+ * "TntTeams" illustration type.
11630
+ */
11631
+ TntTeams = "TntTeams",
11632
+ /**
11633
+ * "TntTools" illustration type.
11634
+ */
11635
+ TntTools = "TntTools",
11636
+ /**
11637
+ * "TntUnableToLoad" illustration type.
11638
+ */
11639
+ TntUnableToLoad = "TntUnableToLoad",
11624
11640
  /**
11625
11641
  * "TntUnlock" illustration type.
11626
11642
  */
@@ -11629,6 +11645,10 @@ declare namespace sap {
11629
11645
  * "TntUnsuccessfulAuth" illustration type.
11630
11646
  */
11631
11647
  TntUnsuccessfulAuth = "TntUnsuccessfulAuth",
11648
+ /**
11649
+ * "TntUser2" illustration type.
11650
+ */
11651
+ TntUser2 = "TntUser2",
11632
11652
  /**
11633
11653
  * "Unable To Load" illustration type.
11634
11654
  */