@openui5/ts-types 1.97.1 → 1.98.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.97.1
1
+ // For Library Version: 1.98.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -2256,7 +2256,7 @@ declare namespace sap {
2256
2256
  *
2257
2257
  *
2258
2258
  *
2259
- * **Limitations:** `growing="Scroll"` is not supported for Internet Explorer, on IE the component will
2259
+ * **Restrictions:** `growing="Scroll"` is not supported for Internet Explorer, on IE the component will
2260
2260
  * fallback to `growing="Button"`.
2261
2261
  */
2262
2262
  growing?:
@@ -4104,7 +4104,7 @@ declare namespace sap {
4104
4104
  *
4105
4105
  *
4106
4106
  *
4107
- * **Limitations:** `growing="Scroll"` is not supported for Internet Explorer, and the component will fallback
4107
+ * **Restrictions:** `growing="Scroll"` is not supported for Internet Explorer, and the component will fallback
4108
4108
  * to `growing="Button"`.
4109
4109
  */
4110
4110
  growing?:
@@ -4168,7 +4168,7 @@ declare namespace sap {
4168
4168
  * Determines whether the column headers remain fixed at the top of the page during vertical scrolling as
4169
4169
  * long as the Web Component is in the viewport.
4170
4170
  *
4171
- * **Limitations:**
4171
+ * **Restrictions:**
4172
4172
  * - Browsers that do not support this feature:
4173
4173
  * Internet Explorer
4174
4174
  * - Microsoft Edge lower than version 41 (EdgeHTML 16)
@@ -16274,7 +16274,7 @@ declare namespace sap {
16274
16274
  * The `sap.ui.webc.main.List` component allows displaying a list of items, advanced keyboard handling support
16275
16275
  * for navigating between items, and predefined modes to improve the development efficiency.
16276
16276
  *
16277
- * The `sap.ui.webc.main.List` is а container for the available list items:
16277
+ * The `sap.ui.webc.main.List` is a container for the available list items:
16278
16278
  * - `sap.ui.webc.main.StandardListItem`
16279
16279
  * - `sap.ui.webc.main.CustomListItem`
16280
16280
  * - `sap.ui.webc.main.GroupHeaderListItem`
@@ -16893,7 +16893,7 @@ declare namespace sap {
16893
16893
  *
16894
16894
  *
16895
16895
  *
16896
- * **Limitations:** `growing="Scroll"` is not supported for Internet Explorer, on IE the component will
16896
+ * **Restrictions:** `growing="Scroll"` is not supported for Internet Explorer, on IE the component will
16897
16897
  * fallback to `growing="Button"`.
16898
16898
  *
16899
16899
  * Default value is `None`.
@@ -17168,7 +17168,7 @@ declare namespace sap {
17168
17168
  *
17169
17169
  *
17170
17170
  *
17171
- * **Limitations:** `growing="Scroll"` is not supported for Internet Explorer, on IE the component will
17171
+ * **Restrictions:** `growing="Scroll"` is not supported for Internet Explorer, on IE the component will
17172
17172
  * fallback to `growing="Button"`.
17173
17173
  *
17174
17174
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
@@ -17627,11 +17627,6 @@ declare namespace sap {
17627
17627
  * - Delete - deletes the token and focuses the previous token.
17628
17628
  * - Backspace - deletes the token and focus the next token.
17629
17629
  *
17630
- * In the context of `sap.ui.webc.main.MultiComboBox`, you can provide a custom stable DOM ref for:
17631
- *
17632
- * - Every `sap.ui.webc.main.MultiComboBoxItem` that you provide. Example: `<ui5-mcb-item stable-dom-ref="item1"></ui5-mcb-item>`
17633
- *
17634
- *
17635
17630
  * CSS Shadow Parts:
17636
17631
  *
17637
17632
  * CSS Shadow Parts
@@ -23810,13 +23805,6 @@ declare namespace sap {
23810
23805
  * - [ESC] - Closes the drop-down without changing the selection.
23811
23806
  * - [HOME] - Navigates to first option
23812
23807
  * - [END] - Navigates to the last option
23813
- *
23814
- *
23815
- * Stable DOM Refs:
23816
- *
23817
- * In the context of `sap.ui.webc.main.Select`, you can provide a custom stable DOM ref for:
23818
- * - Every `sap.ui.webc.main.Option` that you provide. Example: `
23819
- * `
23820
23808
  */
23821
23809
  class Select extends sap.ui.webc.common.WebComponent {
23822
23810
  /**
@@ -26339,6 +26327,11 @@ declare namespace sap {
26339
26327
  * Default value is `false`.
26340
26328
  */
26341
26329
  getSelected(): boolean;
26330
+ /**
26331
+ * Returns the DOM reference of the tab that is placed in the header. **Note:** If you need a DOM ref to
26332
+ * the tab content please use the `getDomRef` method.
26333
+ */
26334
+ getTabInStripDomRef(): void;
26342
26335
  /**
26343
26336
  * Gets current value of property {@link #getText text}.
26344
26337
  *
@@ -26507,12 +26500,6 @@ declare namespace sap {
26507
26500
  * The `sap.ui.webc.main.TabContainer` can hold two types of entities:
26508
26501
  * - `sap.ui.webc.main.Tab` - contains all the information on an item (text and icon)
26509
26502
  * - `sap.ui.webc.main.TabSeparator` - used to separate tabs with a vertical line
26510
- *
26511
- * Stable DOM Refs:
26512
- *
26513
- * In the context of `sap.ui.webc.main.TabContainer`, you can provide a custom stable DOM refs for:
26514
- *
26515
- * - Each `sap.ui.webc.main.Tab` Example: ` `
26516
26503
  */
26517
26504
  class TabContainer extends sap.ui.webc.common.WebComponent {
26518
26505
  /**
@@ -27332,7 +27319,7 @@ declare namespace sap {
27332
27319
  *
27333
27320
  *
27334
27321
  *
27335
- * **Limitations:** `growing="Scroll"` is not supported for Internet Explorer, and the component will fallback
27322
+ * **Restrictions:** `growing="Scroll"` is not supported for Internet Explorer, and the component will fallback
27336
27323
  * to `growing="Button"`.
27337
27324
  *
27338
27325
  * Default value is `None`.
@@ -27413,7 +27400,7 @@ declare namespace sap {
27413
27400
  * Determines whether the column headers remain fixed at the top of the page during vertical scrolling as
27414
27401
  * long as the Web Component is in the viewport.
27415
27402
  *
27416
- * **Limitations:**
27403
+ * **Restrictions:**
27417
27404
  * - Browsers that do not support this feature:
27418
27405
  * Internet Explorer
27419
27406
  * - Microsoft Edge lower than version 41 (EdgeHTML 16)
@@ -27562,7 +27549,7 @@ declare namespace sap {
27562
27549
  *
27563
27550
  *
27564
27551
  *
27565
- * **Limitations:** `growing="Scroll"` is not supported for Internet Explorer, and the component will fallback
27552
+ * **Restrictions:** `growing="Scroll"` is not supported for Internet Explorer, and the component will fallback
27566
27553
  * to `growing="Button"`.
27567
27554
  *
27568
27555
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
@@ -27684,7 +27671,7 @@ declare namespace sap {
27684
27671
  * Determines whether the column headers remain fixed at the top of the page during vertical scrolling as
27685
27672
  * long as the Web Component is in the viewport.
27686
27673
  *
27687
- * **Limitations:**
27674
+ * **Restrictions:**
27688
27675
  * - Browsers that do not support this feature:
27689
27676
  * Internet Explorer
27690
27677
  * - Microsoft Edge lower than version 41 (EdgeHTML 16)
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.97.1
1
+ // For Library Version: 1.98.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**