@openui5/ts-types 1.105.1 → 1.107.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.
- package/README.md +5 -1
- package/package.json +1 -1
- package/types/sap.f.d.ts +859 -136
- package/types/sap.m.d.ts +535 -201
- package/types/sap.tnt.d.ts +3 -3
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +31 -31
- package/types/sap.ui.core.d.ts +864 -367
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +5 -3
- package/types/sap.ui.integration.d.ts +256 -49
- package/types/sap.ui.layout.d.ts +7 -7
- package/types/sap.ui.mdc.d.ts +7 -1
- package/types/sap.ui.rta.d.ts +3 -1
- package/types/sap.ui.suite.d.ts +5 -5
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +32 -14
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +16 -16
- package/types/sap.ui.ux3.d.ts +11 -11
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +31 -28
- package/types/sap.ui.webc.main.d.ts +132 -104
- package/types/sap.uxap.d.ts +76 -1
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.107.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -644,7 +644,7 @@ declare namespace sap {
|
|
|
644
644
|
* If the column is grouped, this formatter is used to format the value in the group header
|
|
645
645
|
*/
|
|
646
646
|
groupHeaderFormatter?:
|
|
647
|
-
|
|
|
647
|
+
| Function
|
|
648
648
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
649
649
|
| `{${string}}`;
|
|
650
650
|
}
|
|
@@ -1677,12 +1677,18 @@ declare namespace sap {
|
|
|
1677
1677
|
columnMove?: (oEvent: sap.ui.base.Event) => void;
|
|
1678
1678
|
|
|
1679
1679
|
/**
|
|
1680
|
-
* fired
|
|
1680
|
+
* This event is fired before a sort order is applied to a column, if the table is sorted via {@link sap.ui.table.Table#sort}
|
|
1681
|
+
* call or user interaction with the column header.
|
|
1682
|
+
*
|
|
1683
|
+
* Sorters that are directly applied to the table binding will not fire this event.
|
|
1681
1684
|
*/
|
|
1682
1685
|
sort?: (oEvent: sap.ui.base.Event) => void;
|
|
1683
1686
|
|
|
1684
1687
|
/**
|
|
1685
|
-
* fired
|
|
1688
|
+
* This event is fired before a filter is applied to a column, if the table is filtered via {@link sap.ui.table.Table#filter}
|
|
1689
|
+
* call or user interaction with the column header.
|
|
1690
|
+
*
|
|
1691
|
+
* Filters that are directly applied to the table binding will not fire this event.
|
|
1686
1692
|
*/
|
|
1687
1693
|
filter?: (oEvent: sap.ui.base.Event) => void;
|
|
1688
1694
|
|
|
@@ -1870,7 +1876,7 @@ declare namespace sap {
|
|
|
1870
1876
|
*
|
|
1871
1877
|
* Setting collapseRecursive to true means, that when collapsing a node all subsequent child nodes will
|
|
1872
1878
|
* also be collapsed. This property is only supported with sap.ui.model.odata.v2.ODataModel. **Note:** collapseRecursive
|
|
1873
|
-
* is currently **not** supported if your OData service exposes the hierarchy annotation `hierarchy-descendant-count-for`.
|
|
1879
|
+
* is currently **not** supported if your OData service exposes the hierarchy annotation `hierarchy-node-descendant-count-for`.
|
|
1874
1880
|
* In this case the value of the collapseRecursive property is ignored. For more information about the OData
|
|
1875
1881
|
* hierarchy annotations, please see the **SAP Annotations for OData Version 2.0** specification.
|
|
1876
1882
|
*
|
|
@@ -1994,7 +2000,7 @@ declare namespace sap {
|
|
|
1994
2000
|
*
|
|
1995
2001
|
* @returns Value of property `groupHeaderFormatter`
|
|
1996
2002
|
*/
|
|
1997
|
-
getGroupHeaderFormatter():
|
|
2003
|
+
getGroupHeaderFormatter(): Function;
|
|
1998
2004
|
/**
|
|
1999
2005
|
* Gets current value of property {@link #getInResult inResult}.
|
|
2000
2006
|
*
|
|
@@ -2049,7 +2055,7 @@ declare namespace sap {
|
|
|
2049
2055
|
/**
|
|
2050
2056
|
* New value for property `groupHeaderFormatter`
|
|
2051
2057
|
*/
|
|
2052
|
-
|
|
2058
|
+
fnGroupHeaderFormatter?: Function
|
|
2053
2059
|
): this;
|
|
2054
2060
|
/**
|
|
2055
2061
|
* Sets a new value for property {@link #getInResult inResult}.
|
|
@@ -5315,7 +5321,10 @@ declare namespace sap {
|
|
|
5315
5321
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
5316
5322
|
* otherwise it will be bound to this `sap.ui.table.Table` itself.
|
|
5317
5323
|
*
|
|
5318
|
-
* fired
|
|
5324
|
+
* This event is fired before a filter is applied to a column, if the table is filtered via {@link sap.ui.table.Table#filter}
|
|
5325
|
+
* call or user interaction with the column header.
|
|
5326
|
+
*
|
|
5327
|
+
* Filters that are directly applied to the table binding will not fire this event.
|
|
5319
5328
|
*
|
|
5320
5329
|
* @returns Reference to `this` in order to allow method chaining
|
|
5321
5330
|
*/
|
|
@@ -5340,7 +5349,10 @@ declare namespace sap {
|
|
|
5340
5349
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
5341
5350
|
* otherwise it will be bound to this `sap.ui.table.Table` itself.
|
|
5342
5351
|
*
|
|
5343
|
-
* fired
|
|
5352
|
+
* This event is fired before a filter is applied to a column, if the table is filtered via {@link sap.ui.table.Table#filter}
|
|
5353
|
+
* call or user interaction with the column header.
|
|
5354
|
+
*
|
|
5355
|
+
* Filters that are directly applied to the table binding will not fire this event.
|
|
5344
5356
|
*
|
|
5345
5357
|
* @returns Reference to `this` in order to allow method chaining
|
|
5346
5358
|
*/
|
|
@@ -5617,7 +5629,10 @@ declare namespace sap {
|
|
|
5617
5629
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
5618
5630
|
* otherwise it will be bound to this `sap.ui.table.Table` itself.
|
|
5619
5631
|
*
|
|
5620
|
-
* fired
|
|
5632
|
+
* This event is fired before a sort order is applied to a column, if the table is sorted via {@link sap.ui.table.Table#sort}
|
|
5633
|
+
* call or user interaction with the column header.
|
|
5634
|
+
*
|
|
5635
|
+
* Sorters that are directly applied to the table binding will not fire this event.
|
|
5621
5636
|
*
|
|
5622
5637
|
* @returns Reference to `this` in order to allow method chaining
|
|
5623
5638
|
*/
|
|
@@ -5642,7 +5657,10 @@ declare namespace sap {
|
|
|
5642
5657
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
5643
5658
|
* otherwise it will be bound to this `sap.ui.table.Table` itself.
|
|
5644
5659
|
*
|
|
5645
|
-
* fired
|
|
5660
|
+
* This event is fired before a sort order is applied to a column, if the table is sorted via {@link sap.ui.table.Table#sort}
|
|
5661
|
+
* call or user interaction with the column header.
|
|
5662
|
+
*
|
|
5663
|
+
* Sorters that are directly applied to the table binding will not fire this event.
|
|
5646
5664
|
*
|
|
5647
5665
|
* @returns Reference to `this` in order to allow method chaining
|
|
5648
5666
|
*/
|
|
@@ -7300,7 +7318,7 @@ declare namespace sap {
|
|
|
7300
7318
|
* The ariaLabelledBy to be removed or its index or ID
|
|
7301
7319
|
*/
|
|
7302
7320
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
7303
|
-
): sap.ui.core.ID;
|
|
7321
|
+
): sap.ui.core.ID | null;
|
|
7304
7322
|
/**
|
|
7305
7323
|
* Removes a column from the aggregation {@link #getColumns columns}.
|
|
7306
7324
|
*
|
|
@@ -8597,7 +8615,7 @@ declare namespace sap {
|
|
|
8597
8615
|
*
|
|
8598
8616
|
* Setting collapseRecursive to true means, that when collapsing a node all subsequent child nodes will
|
|
8599
8617
|
* also be collapsed. This property is only supported with sap.ui.model.odata.v2.ODataModel. **Note:** collapseRecursive
|
|
8600
|
-
* is currently **not** supported if your OData service exposes the hierarchy annotation `hierarchy-descendant-count-for`.
|
|
8618
|
+
* is currently **not** supported if your OData service exposes the hierarchy annotation `hierarchy-node-descendant-count-for`.
|
|
8601
8619
|
* In this case the value of the collapseRecursive property is ignored. For more information about the OData
|
|
8602
8620
|
* hierarchy annotations, please see the **SAP Annotations for OData Version 2.0** specification.
|
|
8603
8621
|
*
|
|
@@ -8759,7 +8777,7 @@ declare namespace sap {
|
|
|
8759
8777
|
*
|
|
8760
8778
|
* Setting collapseRecursive to true means, that when collapsing a node all subsequent child nodes will
|
|
8761
8779
|
* also be collapsed. This property is only supported with sap.ui.model.odata.v2.ODataModel. **Note:** collapseRecursive
|
|
8762
|
-
* is currently **not** supported if your OData service exposes the hierarchy annotation `hierarchy-descendant-count-for`.
|
|
8780
|
+
* is currently **not** supported if your OData service exposes the hierarchy annotation `hierarchy-node-descendant-count-for`.
|
|
8763
8781
|
* In this case the value of the collapseRecursive property is ignored. For more information about the OData
|
|
8764
8782
|
* hierarchy annotations, please see the **SAP Annotations for OData Version 2.0** specification.
|
|
8765
8783
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.107.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -2600,7 +2600,7 @@ declare namespace sap {
|
|
|
2600
2600
|
* The ariaLabelledBy to be removed or its index or ID
|
|
2601
2601
|
*/
|
|
2602
2602
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
2603
|
-
): sap.ui.core.ID;
|
|
2603
|
+
): sap.ui.core.ID | null;
|
|
2604
2604
|
/**
|
|
2605
2605
|
* @SINCE 1.38.0
|
|
2606
2606
|
*
|
|
@@ -3250,7 +3250,7 @@ declare namespace sap {
|
|
|
3250
3250
|
* The ariaLabelledBy to be removed or its index or ID
|
|
3251
3251
|
*/
|
|
3252
3252
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
3253
|
-
): sap.ui.core.ID;
|
|
3253
|
+
): sap.ui.core.ID | null;
|
|
3254
3254
|
/**
|
|
3255
3255
|
* @SINCE 1.74
|
|
3256
3256
|
*
|
|
@@ -3871,7 +3871,7 @@ declare namespace sap {
|
|
|
3871
3871
|
* The ariaLabelledBy to be removed or its index or ID
|
|
3872
3872
|
*/
|
|
3873
3873
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
3874
|
-
): sap.ui.core.ID;
|
|
3874
|
+
): sap.ui.core.ID | null;
|
|
3875
3875
|
/**
|
|
3876
3876
|
* Removes a selectedDate from the aggregation {@link #getSelectedDates selectedDates}.
|
|
3877
3877
|
*
|
|
@@ -4484,7 +4484,7 @@ declare namespace sap {
|
|
|
4484
4484
|
* The ariaLabelledBy to be removed or its index or ID
|
|
4485
4485
|
*/
|
|
4486
4486
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
4487
|
-
): sap.ui.core.ID;
|
|
4487
|
+
): sap.ui.core.ID | null;
|
|
4488
4488
|
/**
|
|
4489
4489
|
* Removes a selectedDate from the aggregation {@link #getSelectedDates selectedDates}.
|
|
4490
4490
|
*
|
|
@@ -8250,7 +8250,7 @@ declare namespace sap {
|
|
|
8250
8250
|
* The ariaLabelledBy to be removed or its index or ID
|
|
8251
8251
|
*/
|
|
8252
8252
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
8253
|
-
): sap.ui.core.ID;
|
|
8253
|
+
): sap.ui.core.ID | null;
|
|
8254
8254
|
/**
|
|
8255
8255
|
* @SINCE 1.38.0
|
|
8256
8256
|
*
|
|
@@ -10037,7 +10037,7 @@ declare namespace sap {
|
|
|
10037
10037
|
* The ariaLabelledBy to be removed or its index or ID
|
|
10038
10038
|
*/
|
|
10039
10039
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
10040
|
-
): sap.ui.core.ID;
|
|
10040
|
+
): sap.ui.core.ID | null;
|
|
10041
10041
|
/**
|
|
10042
10042
|
* Removes a selectedDate from the aggregation {@link #getSelectedDates selectedDates}.
|
|
10043
10043
|
*
|
|
@@ -11074,7 +11074,7 @@ declare namespace sap {
|
|
|
11074
11074
|
* The ariaLabelledBy to be removed or its index or ID
|
|
11075
11075
|
*/
|
|
11076
11076
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
11077
|
-
): sap.ui.core.ID;
|
|
11077
|
+
): sap.ui.core.ID | null;
|
|
11078
11078
|
/**
|
|
11079
11079
|
* Removes a intervalHeader from the aggregation {@link #getIntervalHeaders intervalHeaders}.
|
|
11080
11080
|
*
|
|
@@ -12070,7 +12070,7 @@ declare namespace sap {
|
|
|
12070
12070
|
* The ariaLabelledBy to be removed or its index or ID
|
|
12071
12071
|
*/
|
|
12072
12072
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
12073
|
-
): sap.ui.core.ID;
|
|
12073
|
+
): sap.ui.core.ID | null;
|
|
12074
12074
|
/**
|
|
12075
12075
|
* Removes a selectedDate from the aggregation {@link #getSelectedDates selectedDates}.
|
|
12076
12076
|
*
|
|
@@ -15688,7 +15688,7 @@ declare namespace sap {
|
|
|
15688
15688
|
* The ariaDescribedBy to be removed or its index or ID
|
|
15689
15689
|
*/
|
|
15690
15690
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
15691
|
-
): sap.ui.core.ID;
|
|
15691
|
+
): sap.ui.core.ID | null;
|
|
15692
15692
|
/**
|
|
15693
15693
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
15694
15694
|
*
|
|
@@ -15699,7 +15699,7 @@ declare namespace sap {
|
|
|
15699
15699
|
* The ariaLabelledBy to be removed or its index or ID
|
|
15700
15700
|
*/
|
|
15701
15701
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
15702
|
-
): sap.ui.core.ID;
|
|
15702
|
+
): sap.ui.core.ID | null;
|
|
15703
15703
|
/**
|
|
15704
15704
|
* Removes a headerParameter from the aggregation {@link #getHeaderParameters headerParameters}.
|
|
15705
15705
|
*
|
|
@@ -16855,7 +16855,7 @@ declare namespace sap {
|
|
|
16855
16855
|
* The ariaLabelledBy to be removed or its index or ID
|
|
16856
16856
|
*/
|
|
16857
16857
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
16858
|
-
): sap.ui.core.ID;
|
|
16858
|
+
): sap.ui.core.ID | null;
|
|
16859
16859
|
/**
|
|
16860
16860
|
* Removes a item from the aggregation {@link #getItems items}.
|
|
16861
16861
|
*
|
|
@@ -17067,7 +17067,7 @@ declare namespace sap {
|
|
|
17067
17067
|
* The ariaLabelledBy to be removed or its index or ID
|
|
17068
17068
|
*/
|
|
17069
17069
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
17070
|
-
): sap.ui.core.ID;
|
|
17070
|
+
): sap.ui.core.ID | null;
|
|
17071
17071
|
/**
|
|
17072
17072
|
* Sets a new value for property {@link #getIcon icon}.
|
|
17073
17073
|
*
|
|
@@ -18404,7 +18404,7 @@ declare namespace sap {
|
|
|
18404
18404
|
* The ariaLabelledBy to be removed or its index or ID
|
|
18405
18405
|
*/
|
|
18406
18406
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
18407
|
-
): sap.ui.core.ID;
|
|
18407
|
+
): sap.ui.core.ID | null;
|
|
18408
18408
|
/**
|
|
18409
18409
|
* Sets a new value for property {@link #getIcon icon}.
|
|
18410
18410
|
*
|
|
@@ -18739,7 +18739,7 @@ declare namespace sap {
|
|
|
18739
18739
|
* The ariaLabelledBy to be removed or its index or ID
|
|
18740
18740
|
*/
|
|
18741
18741
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
18742
|
-
): sap.ui.core.ID;
|
|
18742
|
+
): sap.ui.core.ID | null;
|
|
18743
18743
|
/**
|
|
18744
18744
|
* Sets a new value for property {@link #getImage image}.
|
|
18745
18745
|
*
|
|
@@ -19369,7 +19369,7 @@ declare namespace sap {
|
|
|
19369
19369
|
* The ariaLabelledBy to be removed or its index or ID
|
|
19370
19370
|
*/
|
|
19371
19371
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
19372
|
-
): sap.ui.core.ID;
|
|
19372
|
+
): sap.ui.core.ID | null;
|
|
19373
19373
|
/**
|
|
19374
19374
|
* Removes a content from the aggregation {@link #getContent content}.
|
|
19375
19375
|
*
|
package/types/sap.ui.ux3.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.107.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -3249,14 +3249,14 @@ declare namespace sap {
|
|
|
3249
3249
|
): sap.ui.core.Item | null;
|
|
3250
3250
|
/**
|
|
3251
3251
|
*
|
|
3252
|
-
* @returns the
|
|
3252
|
+
* @returns the ID of the removed selected item or `null`
|
|
3253
3253
|
*/
|
|
3254
3254
|
removeSelectedItem(
|
|
3255
3255
|
/**
|
|
3256
|
-
* the
|
|
3256
|
+
* the selected item to remove or its index or ID
|
|
3257
3257
|
*/
|
|
3258
3258
|
vSelectedItem: int | string | sap.ui.core.Item
|
|
3259
|
-
): string;
|
|
3259
|
+
): string | null | undefined;
|
|
3260
3260
|
/**
|
|
3261
3261
|
* Sets a new value for property {@link #getEditable editable}.
|
|
3262
3262
|
*
|
|
@@ -3760,25 +3760,25 @@ declare namespace sap {
|
|
|
3760
3760
|
/**
|
|
3761
3761
|
* Removes a collection from the aggregation named `collections`.
|
|
3762
3762
|
*
|
|
3763
|
-
* @returns the removed collection or null
|
|
3763
|
+
* @returns the removed collection or `null`
|
|
3764
3764
|
*/
|
|
3765
3765
|
removeCollection(
|
|
3766
3766
|
/**
|
|
3767
|
-
* the collection to remove or its index or
|
|
3767
|
+
* the collection to remove or its index or ID
|
|
3768
3768
|
*/
|
|
3769
3769
|
vCollection: int | string | sap.ui.ux3.Collection
|
|
3770
|
-
): sap.ui.ux3.Collection;
|
|
3770
|
+
): sap.ui.ux3.Collection | null;
|
|
3771
3771
|
/**
|
|
3772
3772
|
* Removes a content from the aggregation named `content`.
|
|
3773
3773
|
*
|
|
3774
|
-
* @returns the removed content or null
|
|
3774
|
+
* @returns the removed content or `null`
|
|
3775
3775
|
*/
|
|
3776
3776
|
removeContent(
|
|
3777
3777
|
/**
|
|
3778
|
-
* the content to remove or its index or
|
|
3778
|
+
* the content to remove or its index or ID
|
|
3779
3779
|
*/
|
|
3780
3780
|
vContent: int | string | sap.ui.core.Control
|
|
3781
|
-
): sap.ui.core.Control;
|
|
3781
|
+
): sap.ui.core.Control | null;
|
|
3782
3782
|
/**
|
|
3783
3783
|
* Sets a new value for property {@link #getFitParent fitParent}.
|
|
3784
3784
|
*
|
|
@@ -10473,7 +10473,7 @@ declare namespace sap {
|
|
|
10473
10473
|
* The associatedItem to be removed or its index or ID
|
|
10474
10474
|
*/
|
|
10475
10475
|
vAssociatedItem: int | sap.ui.core.ID | sap.ui.ux3.NavigationItem
|
|
10476
|
-
): sap.ui.core.ID;
|
|
10476
|
+
): sap.ui.core.ID | null;
|
|
10477
10477
|
/**
|
|
10478
10478
|
* Removes a item from the aggregation {@link #getItems items}.
|
|
10479
10479
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.107.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -686,7 +686,7 @@ declare namespace sap {
|
|
|
686
686
|
* Defines the `icon` source URI.
|
|
687
687
|
*
|
|
688
688
|
* **Note:** SAP-icons font provides numerous built-in icons. To find all the available icons, see the
|
|
689
|
-
* Icon Explorer.
|
|
689
|
+
* {@link demo:sap/m/demokit/iconExplorer/webapp/index.html Icon Explorer}.
|
|
690
690
|
*/
|
|
691
691
|
icon?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
692
692
|
|
|
@@ -1009,7 +1009,7 @@ declare namespace sap {
|
|
|
1009
1009
|
* ui5-product-switch-item icon="palette"```
|
|
1010
1010
|
*
|
|
1011
1011
|
*
|
|
1012
|
-
* See all the available icons in the Icon Explorer.
|
|
1012
|
+
* See all the available icons in the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html Icon Explorer}.
|
|
1013
1013
|
*/
|
|
1014
1014
|
icon?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1015
1015
|
|
|
@@ -1283,7 +1283,7 @@ declare namespace sap {
|
|
|
1283
1283
|
*
|
|
1284
1284
|
*
|
|
1285
1285
|
* The SAP-icons font provides numerous options.
|
|
1286
|
-
* See all the available icons in the Icon Explorer.
|
|
1286
|
+
* See all the available icons in the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html Icon Explorer}.
|
|
1287
1287
|
*/
|
|
1288
1288
|
icon?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1289
1289
|
|
|
@@ -1329,7 +1329,7 @@ declare namespace sap {
|
|
|
1329
1329
|
*
|
|
1330
1330
|
*
|
|
1331
1331
|
* The SAP-icons font provides numerous options.
|
|
1332
|
-
* See all the available icons in the Icon Explorer.
|
|
1332
|
+
* See all the available icons in the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html Icon Explorer}.
|
|
1333
1333
|
*/
|
|
1334
1334
|
icon?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1335
1335
|
|
|
@@ -1420,7 +1420,7 @@ declare namespace sap {
|
|
|
1420
1420
|
*
|
|
1421
1421
|
*
|
|
1422
1422
|
*
|
|
1423
|
-
* See all the available icons in the Icon Explorer.
|
|
1423
|
+
* See all the available icons in the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html Icon Explorer}.
|
|
1424
1424
|
*/
|
|
1425
1425
|
icon?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1426
1426
|
|
|
@@ -1786,7 +1786,8 @@ declare namespace sap {
|
|
|
1786
1786
|
*
|
|
1787
1787
|
*
|
|
1788
1788
|
*
|
|
1789
|
-
* The SAP-icons font provides numerous options. See all the available icons in the
|
|
1789
|
+
* The SAP-icons font provides numerous options. See all the available icons in the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html
|
|
1790
|
+
* Icon Explorer}.
|
|
1790
1791
|
*/
|
|
1791
1792
|
icon?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1792
1793
|
|
|
@@ -1850,8 +1851,8 @@ declare namespace sap {
|
|
|
1850
1851
|
*
|
|
1851
1852
|
* CSS Shadow Parts:
|
|
1852
1853
|
*
|
|
1853
|
-
* CSS Shadow Parts
|
|
1854
|
-
*
|
|
1854
|
+
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/::part CSS Shadow Parts} allow developers to
|
|
1855
|
+
* style elements inside the Shadow DOM.
|
|
1855
1856
|
* The `sap.ui.webc.fiori.Bar` exposes the following CSS Shadow Parts:
|
|
1856
1857
|
* - bar - Used to style the wrapper of the content of the component
|
|
1857
1858
|
*
|
|
@@ -2216,7 +2217,7 @@ declare namespace sap {
|
|
|
2216
2217
|
*
|
|
2217
2218
|
* Internally, the component uses the zxing-js/library third party OSS.
|
|
2218
2219
|
*
|
|
2219
|
-
* For a list of supported barcode formats, see the zxing-js/library
|
|
2220
|
+
* For a list of supported barcode formats, see the {@link https://github.com/zxing-js/library zxing-js/library}
|
|
2220
2221
|
* documentation.
|
|
2221
2222
|
*/
|
|
2222
2223
|
class BarcodeScannerDialog extends sap.ui.webc.common.WebComponent {
|
|
@@ -5062,7 +5063,7 @@ declare namespace sap {
|
|
|
5062
5063
|
* Defines the `icon` source URI.
|
|
5063
5064
|
*
|
|
5064
5065
|
* **Note:** SAP-icons font provides numerous built-in icons. To find all the available icons, see the
|
|
5065
|
-
* Icon Explorer.
|
|
5066
|
+
* {@link demo:sap/m/demokit/iconExplorer/webapp/index.html Icon Explorer}.
|
|
5066
5067
|
*
|
|
5067
5068
|
* Default value is `empty string`.
|
|
5068
5069
|
*
|
|
@@ -5129,7 +5130,7 @@ declare namespace sap {
|
|
|
5129
5130
|
* Defines the `icon` source URI.
|
|
5130
5131
|
*
|
|
5131
5132
|
* **Note:** SAP-icons font provides numerous built-in icons. To find all the available icons, see the
|
|
5132
|
-
* Icon Explorer.
|
|
5133
|
+
* {@link demo:sap/m/demokit/iconExplorer/webapp/index.html Icon Explorer}.
|
|
5133
5134
|
*
|
|
5134
5135
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5135
5136
|
*
|
|
@@ -5180,8 +5181,8 @@ declare namespace sap {
|
|
|
5180
5181
|
*
|
|
5181
5182
|
* CSS Shadow Parts:
|
|
5182
5183
|
*
|
|
5183
|
-
* CSS Shadow Parts
|
|
5184
|
-
*
|
|
5184
|
+
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/::part CSS Shadow Parts} allow developers to
|
|
5185
|
+
* style elements inside the Shadow DOM.
|
|
5185
5186
|
* The `sap.ui.webc.fiori.NotificationListGroupItem` exposes the following CSS Shadow Parts:
|
|
5186
5187
|
* - title-text - Used to style the titleText of the notification list group item
|
|
5187
5188
|
*/
|
|
@@ -5798,8 +5799,8 @@ declare namespace sap {
|
|
|
5798
5799
|
*
|
|
5799
5800
|
* CSS Shadow Parts:
|
|
5800
5801
|
*
|
|
5801
|
-
* CSS Shadow Parts
|
|
5802
|
-
*
|
|
5802
|
+
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/::part CSS Shadow Parts} allow developers to
|
|
5803
|
+
* style elements inside the Shadow DOM.
|
|
5803
5804
|
* The `sap.ui.webc.fiori.NotificationListItem` exposes the following CSS Shadow Parts:
|
|
5804
5805
|
* - title-text - Used to style the titleText of the notification list item
|
|
5805
5806
|
*/
|
|
@@ -7056,7 +7057,7 @@ declare namespace sap {
|
|
|
7056
7057
|
* ui5-product-switch-item icon="palette"```
|
|
7057
7058
|
*
|
|
7058
7059
|
*
|
|
7059
|
-
* See all the available icons in the Icon Explorer.
|
|
7060
|
+
* See all the available icons in the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html Icon Explorer}.
|
|
7060
7061
|
*
|
|
7061
7062
|
* Default value is `empty string`.
|
|
7062
7063
|
*
|
|
@@ -7121,7 +7122,7 @@ declare namespace sap {
|
|
|
7121
7122
|
* ui5-product-switch-item icon="palette"```
|
|
7122
7123
|
*
|
|
7123
7124
|
*
|
|
7124
|
-
* See all the available icons in the Icon Explorer.
|
|
7125
|
+
* See all the available icons in the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html Icon Explorer}.
|
|
7125
7126
|
*
|
|
7126
7127
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
7127
7128
|
*
|
|
@@ -7234,8 +7235,8 @@ declare namespace sap {
|
|
|
7234
7235
|
*
|
|
7235
7236
|
* CSS Shadow Parts:
|
|
7236
7237
|
*
|
|
7237
|
-
* CSS Shadow Parts
|
|
7238
|
-
*
|
|
7238
|
+
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/::part CSS Shadow Parts} allow developers to
|
|
7239
|
+
* style elements inside the Shadow DOM.
|
|
7239
7240
|
* The `sap.ui.webc.fiori.ShellBar` exposes the following CSS Shadow Parts:
|
|
7240
7241
|
* - root - Used to style the outermost wrapper of the `sap.ui.webc.fiori.ShellBar`
|
|
7241
7242
|
*
|
|
@@ -9027,7 +9028,7 @@ declare namespace sap {
|
|
|
9027
9028
|
*
|
|
9028
9029
|
*
|
|
9029
9030
|
* The SAP-icons font provides numerous options.
|
|
9030
|
-
* See all the available icons in the Icon Explorer.
|
|
9031
|
+
* See all the available icons in the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html Icon Explorer}.
|
|
9031
9032
|
*
|
|
9032
9033
|
* Default value is `empty string`.
|
|
9033
9034
|
*
|
|
@@ -9146,7 +9147,7 @@ declare namespace sap {
|
|
|
9146
9147
|
*
|
|
9147
9148
|
*
|
|
9148
9149
|
* The SAP-icons font provides numerous options.
|
|
9149
|
-
* See all the available icons in the Icon Explorer.
|
|
9150
|
+
* See all the available icons in the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html Icon Explorer}.
|
|
9150
9151
|
*
|
|
9151
9152
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9152
9153
|
*
|
|
@@ -9299,7 +9300,7 @@ declare namespace sap {
|
|
|
9299
9300
|
*
|
|
9300
9301
|
*
|
|
9301
9302
|
* The SAP-icons font provides numerous options.
|
|
9302
|
-
* See all the available icons in the Icon Explorer.
|
|
9303
|
+
* See all the available icons in the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html Icon Explorer}.
|
|
9303
9304
|
*
|
|
9304
9305
|
* Default value is `empty string`.
|
|
9305
9306
|
*
|
|
@@ -9334,7 +9335,7 @@ declare namespace sap {
|
|
|
9334
9335
|
*
|
|
9335
9336
|
*
|
|
9336
9337
|
* The SAP-icons font provides numerous options.
|
|
9337
|
-
* See all the available icons in the Icon Explorer.
|
|
9338
|
+
* See all the available icons in the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html Icon Explorer}.
|
|
9338
9339
|
*
|
|
9339
9340
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9340
9341
|
*
|
|
@@ -9944,7 +9945,7 @@ declare namespace sap {
|
|
|
9944
9945
|
*
|
|
9945
9946
|
*
|
|
9946
9947
|
*
|
|
9947
|
-
* See all the available icons in the Icon Explorer.
|
|
9948
|
+
* See all the available icons in the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html Icon Explorer}.
|
|
9948
9949
|
*
|
|
9949
9950
|
* Default value is `empty string`.
|
|
9950
9951
|
*
|
|
@@ -10047,7 +10048,7 @@ declare namespace sap {
|
|
|
10047
10048
|
*
|
|
10048
10049
|
*
|
|
10049
10050
|
*
|
|
10050
|
-
* See all the available icons in the Icon Explorer.
|
|
10051
|
+
* See all the available icons in the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html Icon Explorer}.
|
|
10051
10052
|
*
|
|
10052
10053
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10053
10054
|
*
|
|
@@ -12502,7 +12503,8 @@ declare namespace sap {
|
|
|
12502
12503
|
*
|
|
12503
12504
|
*
|
|
12504
12505
|
*
|
|
12505
|
-
* The SAP-icons font provides numerous options. See all the available icons in the
|
|
12506
|
+
* The SAP-icons font provides numerous options. See all the available icons in the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html
|
|
12507
|
+
* Icon Explorer}.
|
|
12506
12508
|
*
|
|
12507
12509
|
* Default value is `empty string`.
|
|
12508
12510
|
*
|
|
@@ -12652,7 +12654,8 @@ declare namespace sap {
|
|
|
12652
12654
|
*
|
|
12653
12655
|
*
|
|
12654
12656
|
*
|
|
12655
|
-
* The SAP-icons font provides numerous options. See all the available icons in the
|
|
12657
|
+
* The SAP-icons font provides numerous options. See all the available icons in the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html
|
|
12658
|
+
* Icon Explorer}.
|
|
12656
12659
|
*
|
|
12657
12660
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
12658
12661
|
*
|