@openui5/ts-types 1.143.1 → 1.145.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/package.json +1 -1
- package/types/index.d.ts +1 -1
- package/types/sap.f.d.ts +4 -4
- package/types/sap.m.d.ts +313 -71
- package/types/sap.tnt.d.ts +19 -7
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +3439 -246
- package/types/sap.ui.core.d.ts +751 -257
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +9 -5
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +18 -18
- package/types/sap.ui.mdc.d.ts +458 -113
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +3 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +5 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +162 -4
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +3 -1
- package/types/sap.ui.webc.fiori.d.ts +31 -1
- package/types/sap.ui.webc.main.d.ts +70 -1
- package/types/sap.uxap.d.ts +18 -8
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.145.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -700,6 +700,8 @@ declare namespace sap {
|
|
|
700
700
|
* Defined color values for the Task Circle Control
|
|
701
701
|
*
|
|
702
702
|
* This enum is part of the 'sap/ui/suite/library' module export and must be accessed by the property 'TaskCircleColor'.
|
|
703
|
+
*
|
|
704
|
+
* @deprecated As of version 1.108. because it is part of the deprecated package sap.ui.suite
|
|
703
705
|
*/
|
|
704
706
|
enum TaskCircleColor {
|
|
705
707
|
/**
|
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.145.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -4675,6 +4675,10 @@ declare namespace sap {
|
|
|
4675
4675
|
* @returns Value of property `collapseRecursive`
|
|
4676
4676
|
*/
|
|
4677
4677
|
getCollapseRecursive(): boolean;
|
|
4678
|
+
/**
|
|
4679
|
+
* Returns the Columns of the AnalyticalTable.
|
|
4680
|
+
*/
|
|
4681
|
+
getColumns(): sap.ui.table.AnalyticalColumn[];
|
|
4678
4682
|
/**
|
|
4679
4683
|
* Gets current value of property {@link #getColumnVisibilityMenuSorter columnVisibilityMenuSorter}.
|
|
4680
4684
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.145.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -595,6 +595,16 @@ declare namespace sap {
|
|
|
595
595
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
596
596
|
| `{${string}}`;
|
|
597
597
|
|
|
598
|
+
/**
|
|
599
|
+
* Determines if the week numbers are displayed.
|
|
600
|
+
*
|
|
601
|
+
* @since 1.145.0
|
|
602
|
+
*/
|
|
603
|
+
showWeekNumbers?:
|
|
604
|
+
| boolean
|
|
605
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
606
|
+
| `{${string}}`;
|
|
607
|
+
|
|
598
608
|
/**
|
|
599
609
|
* Date ranges for selected dates. If `singleSelection` is set, only the first entry is used.
|
|
600
610
|
*
|
|
@@ -4127,6 +4137,18 @@ declare namespace sap {
|
|
|
4127
4137
|
* @returns Value of property `showHeader`
|
|
4128
4138
|
*/
|
|
4129
4139
|
getShowHeader(): boolean;
|
|
4140
|
+
/**
|
|
4141
|
+
* Gets current value of property {@link #getShowWeekNumbers showWeekNumbers}.
|
|
4142
|
+
*
|
|
4143
|
+
* Determines if the week numbers are displayed.
|
|
4144
|
+
*
|
|
4145
|
+
* Default value is `false`.
|
|
4146
|
+
*
|
|
4147
|
+
* @since 1.145.0
|
|
4148
|
+
*
|
|
4149
|
+
* @returns Value of property `showWeekNumbers`
|
|
4150
|
+
*/
|
|
4151
|
+
getShowWeekNumbers(): boolean;
|
|
4130
4152
|
/**
|
|
4131
4153
|
* Gets current value of property {@link #getSingleSelection singleSelection}.
|
|
4132
4154
|
*
|
|
@@ -4363,6 +4385,25 @@ declare namespace sap {
|
|
|
4363
4385
|
*/
|
|
4364
4386
|
bShowHeader?: boolean
|
|
4365
4387
|
): this;
|
|
4388
|
+
/**
|
|
4389
|
+
* Sets a new value for property {@link #getShowWeekNumbers showWeekNumbers}.
|
|
4390
|
+
*
|
|
4391
|
+
* Determines if the week numbers are displayed.
|
|
4392
|
+
*
|
|
4393
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4394
|
+
*
|
|
4395
|
+
* Default value is `false`.
|
|
4396
|
+
*
|
|
4397
|
+
* @since 1.145.0
|
|
4398
|
+
*
|
|
4399
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4400
|
+
*/
|
|
4401
|
+
setShowWeekNumbers(
|
|
4402
|
+
/**
|
|
4403
|
+
* New value for property `showWeekNumbers`
|
|
4404
|
+
*/
|
|
4405
|
+
bShowWeekNumbers?: boolean
|
|
4406
|
+
): this;
|
|
4366
4407
|
/**
|
|
4367
4408
|
* Sets a new value for property {@link #getSingleSelection singleSelection}.
|
|
4368
4409
|
*
|
|
@@ -7369,6 +7410,7 @@ declare namespace sap {
|
|
|
7369
7410
|
* If not specified, the base icon is used. If an icon font icon is used, this property is ignored.
|
|
7370
7411
|
*
|
|
7371
7412
|
* @since 1.26.0
|
|
7413
|
+
* @deprecated As of version 1.144. because it was relevant for `sap.ui.commons.FileUploader`.
|
|
7372
7414
|
*/
|
|
7373
7415
|
iconHovered?:
|
|
7374
7416
|
| sap.ui.core.URI
|
|
@@ -7382,6 +7424,7 @@ declare namespace sap {
|
|
|
7382
7424
|
* If not specified, the base or hovered icon is used. If an icon font icon is used, this property is ignored.
|
|
7383
7425
|
*
|
|
7384
7426
|
* @since 1.26.0
|
|
7427
|
+
* @deprecated As of version 1.144. because it was relevant for `sap.ui.commons.FileUploader`.
|
|
7385
7428
|
*/
|
|
7386
7429
|
iconSelected?:
|
|
7387
7430
|
| sap.ui.core.URI
|
|
@@ -7418,6 +7461,16 @@ declare namespace sap {
|
|
|
7418
7461
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
7419
7462
|
| `{${string}}`;
|
|
7420
7463
|
|
|
7464
|
+
/**
|
|
7465
|
+
* Indicates whether the file uploader is required.
|
|
7466
|
+
*
|
|
7467
|
+
* @since 1.144
|
|
7468
|
+
*/
|
|
7469
|
+
required?:
|
|
7470
|
+
| boolean
|
|
7471
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
7472
|
+
| `{${string}}`;
|
|
7473
|
+
|
|
7421
7474
|
/**
|
|
7422
7475
|
* The parameters for the `FileUploader` which are rendered as a hidden input field.
|
|
7423
7476
|
*
|
|
@@ -7690,7 +7743,7 @@ declare namespace sap {
|
|
|
7690
7743
|
* Determines whether the `MenuItem` is selected (default is set to `false`). A selected `MenuItem` has
|
|
7691
7744
|
* a check mark rendered at its end. **Note: ** selection functionality works only if the menu item is a
|
|
7692
7745
|
* member of `MenuItemGroup` with `itemSelectionMode` set to {@link sap.ui.core.ItemSelectionMode.SingleSelect }
|
|
7693
|
-
* or {@link sap.ui.
|
|
7746
|
+
* or {@link sap.ui.core.ItemSelectionMode.MultiSelect}.
|
|
7694
7747
|
*
|
|
7695
7748
|
* @since 1.127.0
|
|
7696
7749
|
*/
|
|
@@ -8863,6 +8916,67 @@ declare namespace sap {
|
|
|
8863
8916
|
*/
|
|
8864
8917
|
interface ShellOverlay$ClosedEventParameters {}
|
|
8865
8918
|
|
|
8919
|
+
/**
|
|
8920
|
+
* FileUploader renderer.
|
|
8921
|
+
*
|
|
8922
|
+
* @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
8923
|
+
*/
|
|
8924
|
+
interface FileUploaderRenderer {
|
|
8925
|
+
/**
|
|
8926
|
+
* Adds the CSS value state classes to the control's root element using the provided {@link sap.ui.core.RenderManager}.
|
|
8927
|
+
*
|
|
8928
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8929
|
+
*/
|
|
8930
|
+
addValueStateClasses(
|
|
8931
|
+
/**
|
|
8932
|
+
* The RenderManager used for writing to the render output buffer.
|
|
8933
|
+
*/
|
|
8934
|
+
oRm: sap.ui.core.RenderManager,
|
|
8935
|
+
/**
|
|
8936
|
+
* An object representation of the control that should be rendered.
|
|
8937
|
+
*/
|
|
8938
|
+
oFileUploader: sap.ui.unified.FileUploader
|
|
8939
|
+
): void;
|
|
8940
|
+
/**
|
|
8941
|
+
* Returns the accessibility state of the control. Hook for the subclasses.
|
|
8942
|
+
*
|
|
8943
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8944
|
+
*
|
|
8945
|
+
* @returns The accessibility state object.
|
|
8946
|
+
*/
|
|
8947
|
+
getAccessibilityState(): /* was: sap.m.InputBaseAccessibilityState */ any;
|
|
8948
|
+
/**
|
|
8949
|
+
* Renders the hidden aria-describedby and error message nodes for accessibility.
|
|
8950
|
+
*
|
|
8951
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8952
|
+
*/
|
|
8953
|
+
renderValueStateAccDom(
|
|
8954
|
+
/**
|
|
8955
|
+
* The RenderManager used for writing to the render output buffer.
|
|
8956
|
+
*/
|
|
8957
|
+
oRm: sap.ui.core.RenderManager,
|
|
8958
|
+
/**
|
|
8959
|
+
* An object representation of the control that should be rendered.
|
|
8960
|
+
*/
|
|
8961
|
+
oFileUploader: sap.ui.unified.FileUploader
|
|
8962
|
+
): void;
|
|
8963
|
+
/**
|
|
8964
|
+
* Writes the accessibility state of the control. Hook for the subclasses.
|
|
8965
|
+
*
|
|
8966
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8967
|
+
*/
|
|
8968
|
+
writeAccessibilityState(
|
|
8969
|
+
/**
|
|
8970
|
+
* The RenderManager used for writing to the render output buffer.
|
|
8971
|
+
*/
|
|
8972
|
+
oRm: sap.ui.core.RenderManager,
|
|
8973
|
+
/**
|
|
8974
|
+
* An object representation of the control that should be rendered.
|
|
8975
|
+
*/
|
|
8976
|
+
oFileUploader: /* was: sap.m.InputBase */ any
|
|
8977
|
+
): void;
|
|
8978
|
+
}
|
|
8979
|
+
|
|
8866
8980
|
/**
|
|
8867
8981
|
* Basic Calendar. This calendar is used for DatePickers
|
|
8868
8982
|
*
|
|
@@ -16376,7 +16490,7 @@ declare namespace sap {
|
|
|
16376
16490
|
*
|
|
16377
16491
|
* @since 1.25.0
|
|
16378
16492
|
*
|
|
16379
|
-
* @returns Reference to `this` for method chaining
|
|
16493
|
+
* @returns Reference to `this` for method chaining.
|
|
16380
16494
|
*/
|
|
16381
16495
|
clear(): this;
|
|
16382
16496
|
/**
|
|
@@ -16925,6 +17039,7 @@ declare namespace sap {
|
|
|
16925
17039
|
* Default value is `empty string`.
|
|
16926
17040
|
*
|
|
16927
17041
|
* @since 1.26.0
|
|
17042
|
+
* @deprecated As of version 1.144. because it was relevant for `sap.ui.commons.FileUploader`.
|
|
16928
17043
|
*
|
|
16929
17044
|
* @returns Value of property `iconHovered`
|
|
16930
17045
|
*/
|
|
@@ -16952,10 +17067,18 @@ declare namespace sap {
|
|
|
16952
17067
|
* Default value is `empty string`.
|
|
16953
17068
|
*
|
|
16954
17069
|
* @since 1.26.0
|
|
17070
|
+
* @deprecated As of version 1.144. because it was relevant for `sap.ui.commons.FileUploader`.
|
|
16955
17071
|
*
|
|
16956
17072
|
* @returns Value of property `iconSelected`
|
|
16957
17073
|
*/
|
|
16958
17074
|
getIconSelected(): sap.ui.core.URI;
|
|
17075
|
+
/**
|
|
17076
|
+
* Returns the id that should be used by external labels pointing to the native input.
|
|
17077
|
+
*
|
|
17078
|
+
*
|
|
17079
|
+
* @returns ID of the native input element.
|
|
17080
|
+
*/
|
|
17081
|
+
getIdForLabel(): string;
|
|
16959
17082
|
/**
|
|
16960
17083
|
* Gets current value of property {@link #getMaximumFilenameLength maximumFilenameLength}.
|
|
16961
17084
|
*
|
|
@@ -17056,6 +17179,18 @@ declare namespace sap {
|
|
|
17056
17179
|
*/
|
|
17057
17180
|
aBlobs: Blob[]
|
|
17058
17181
|
): Promise<Blob[]>;
|
|
17182
|
+
/**
|
|
17183
|
+
* Gets current value of property {@link #getRequired required}.
|
|
17184
|
+
*
|
|
17185
|
+
* Indicates whether the file uploader is required.
|
|
17186
|
+
*
|
|
17187
|
+
* Default value is `false`.
|
|
17188
|
+
*
|
|
17189
|
+
* @since 1.144
|
|
17190
|
+
*
|
|
17191
|
+
* @returns Value of property `required`
|
|
17192
|
+
*/
|
|
17193
|
+
getRequired(): boolean;
|
|
17059
17194
|
/**
|
|
17060
17195
|
* Gets current value of property {@link #getSameFilenameAllowed sameFilenameAllowed}.
|
|
17061
17196
|
*
|
|
@@ -17515,6 +17650,7 @@ declare namespace sap {
|
|
|
17515
17650
|
* Default value is `empty string`.
|
|
17516
17651
|
*
|
|
17517
17652
|
* @since 1.26.0
|
|
17653
|
+
* @deprecated As of version 1.144. because it was relevant for `sap.ui.commons.FileUploader`.
|
|
17518
17654
|
*
|
|
17519
17655
|
* @returns Reference to `this` in order to allow method chaining
|
|
17520
17656
|
*/
|
|
@@ -17556,6 +17692,7 @@ declare namespace sap {
|
|
|
17556
17692
|
* Default value is `empty string`.
|
|
17557
17693
|
*
|
|
17558
17694
|
* @since 1.26.0
|
|
17695
|
+
* @deprecated As of version 1.144. because it was relevant for `sap.ui.commons.FileUploader`.
|
|
17559
17696
|
*
|
|
17560
17697
|
* @returns Reference to `this` in order to allow method chaining
|
|
17561
17698
|
*/
|
|
@@ -17678,6 +17815,25 @@ declare namespace sap {
|
|
|
17678
17815
|
*/
|
|
17679
17816
|
sPlaceholder?: string
|
|
17680
17817
|
): this;
|
|
17818
|
+
/**
|
|
17819
|
+
* Sets a new value for property {@link #getRequired required}.
|
|
17820
|
+
*
|
|
17821
|
+
* Indicates whether the file uploader is required.
|
|
17822
|
+
*
|
|
17823
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
17824
|
+
*
|
|
17825
|
+
* Default value is `false`.
|
|
17826
|
+
*
|
|
17827
|
+
* @since 1.144
|
|
17828
|
+
*
|
|
17829
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
17830
|
+
*/
|
|
17831
|
+
setRequired(
|
|
17832
|
+
/**
|
|
17833
|
+
* New value for property `required`
|
|
17834
|
+
*/
|
|
17835
|
+
bRequired?: boolean
|
|
17836
|
+
): this;
|
|
17681
17837
|
/**
|
|
17682
17838
|
* Sets a new value for property {@link #getSameFilenameAllowed sameFilenameAllowed}.
|
|
17683
17839
|
*
|
|
@@ -18541,7 +18697,7 @@ declare namespace sap {
|
|
|
18541
18697
|
/**
|
|
18542
18698
|
* Returns all items that have `selected` properties set to `true`. **Note:** Only items with `selected`
|
|
18543
18699
|
* property set that are members of `MenuItemGroup` with `ItemSelectionMode` property set to {@link sap.ui.core.ItemSelectionMode.SingleSelect }
|
|
18544
|
-
* or {@link sap.ui.
|
|
18700
|
+
* or {@link sap.ui.core.ItemSelectionMode.MultiSelect}> are taken into account.
|
|
18545
18701
|
*
|
|
18546
18702
|
* @since 1.127.0
|
|
18547
18703
|
*
|
|
@@ -23206,6 +23362,8 @@ declare namespace sap {
|
|
|
23206
23362
|
|
|
23207
23363
|
"sap/ui/unified/FileUploaderParameter": undefined;
|
|
23208
23364
|
|
|
23365
|
+
"sap/ui/unified/FileUploaderRenderer": undefined;
|
|
23366
|
+
|
|
23209
23367
|
"sap/ui/unified/FileUploaderXHRSettings": undefined;
|
|
23210
23368
|
|
|
23211
23369
|
"sap/ui/unified/library": undefined;
|
package/types/sap.ui.ux3.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.145.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -24,6 +24,8 @@ declare namespace sap {
|
|
|
24
24
|
/**
|
|
25
25
|
* The structure of the "metadata" object which is passed when inheriting from sap.ui.core.Element using
|
|
26
26
|
* its static "extend" method. See {@link sap.ui.core.Element.extend} for details on its usage.
|
|
27
|
+
*
|
|
28
|
+
* @deprecated As of version 1.118.0. because it is part of the deprecated package sap.ui.webc.common.WebComponent
|
|
27
29
|
*/
|
|
28
30
|
type MetadataOptions = sap.ui.core.webc.WebComponent.MetadataOptions;
|
|
29
31
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.145.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -16,6 +16,7 @@ declare namespace sap {
|
|
|
16
16
|
* Interface for components that may be slotted inside `ui5-page` as header and footer.
|
|
17
17
|
*
|
|
18
18
|
* @since 1.99.0
|
|
19
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
19
20
|
* @experimental As of version 1.99.0. This API is experimental and might change significantly.
|
|
20
21
|
*/
|
|
21
22
|
interface IBar {
|
|
@@ -26,6 +27,7 @@ declare namespace sap {
|
|
|
26
27
|
* Interface for components that may be slotted inside `ui5-view-settings-dialog` as filter items
|
|
27
28
|
*
|
|
28
29
|
* @since 1.97.0
|
|
30
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
29
31
|
* @experimental As of version 1.97.0. This API is experimental and might change significantly.
|
|
30
32
|
*/
|
|
31
33
|
interface IFilterItem {
|
|
@@ -36,6 +38,7 @@ declare namespace sap {
|
|
|
36
38
|
* Interface for components that may be slotted inside `ui5-filter-item` as values
|
|
37
39
|
*
|
|
38
40
|
* @since 1.97.0
|
|
41
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
39
42
|
* @experimental As of version 1.97.0. This API is experimental and might change significantly.
|
|
40
43
|
*/
|
|
41
44
|
interface IFilterItemOption {
|
|
@@ -46,6 +49,7 @@ declare namespace sap {
|
|
|
46
49
|
* Interface for components that can be slotted inside `ui5-media-gallery` as items.
|
|
47
50
|
*
|
|
48
51
|
* @since 1.99.0
|
|
52
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
49
53
|
* @experimental As of version 1.99.0. This API is experimental and might change significantly.
|
|
50
54
|
*/
|
|
51
55
|
interface IMediaGalleryItem {
|
|
@@ -56,6 +60,7 @@ declare namespace sap {
|
|
|
56
60
|
* Interface for components that may be slotted as an action inside `ui5-li-notification` and `ui5-li-notification-group`
|
|
57
61
|
*
|
|
58
62
|
* @since 1.92.0
|
|
63
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
59
64
|
* @experimental As of version 1.92.0. This API is experimental and might change significantly.
|
|
60
65
|
*/
|
|
61
66
|
interface INotificationAction {
|
|
@@ -66,6 +71,7 @@ declare namespace sap {
|
|
|
66
71
|
* Interface for components that may be slotted inside a notification list
|
|
67
72
|
*
|
|
68
73
|
* @since 1.92.0
|
|
74
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
69
75
|
* @experimental As of version 1.92.0. This API is experimental and might change significantly.
|
|
70
76
|
*/
|
|
71
77
|
interface INotificationListItem {
|
|
@@ -76,6 +82,7 @@ declare namespace sap {
|
|
|
76
82
|
* Interface for components that may be slotted inside `ui5-product-switch` as items
|
|
77
83
|
*
|
|
78
84
|
* @since 1.92.0
|
|
85
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
79
86
|
* @experimental As of version 1.92.0. This API is experimental and might change significantly.
|
|
80
87
|
*/
|
|
81
88
|
interface IProductSwitchItem {
|
|
@@ -86,6 +93,7 @@ declare namespace sap {
|
|
|
86
93
|
* Interface for components that may be slotted inside `ui5-shellbar` as items
|
|
87
94
|
*
|
|
88
95
|
* @since 1.92.0
|
|
96
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
89
97
|
* @experimental As of version 1.92.0. This API is experimental and might change significantly.
|
|
90
98
|
*/
|
|
91
99
|
interface IShellBarItem {
|
|
@@ -96,6 +104,7 @@ declare namespace sap {
|
|
|
96
104
|
* Interface for components that may be slotted inside `ui5-side-navigation` as items
|
|
97
105
|
*
|
|
98
106
|
* @since 1.92.0
|
|
107
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
99
108
|
* @experimental As of version 1.92.0. This API is experimental and might change significantly.
|
|
100
109
|
*/
|
|
101
110
|
interface ISideNavigationItem {
|
|
@@ -106,6 +115,7 @@ declare namespace sap {
|
|
|
106
115
|
* Interface for components that may be slotted inside `ui5-side-navigation-item` as sub-items
|
|
107
116
|
*
|
|
108
117
|
* @since 1.92.0
|
|
118
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
109
119
|
* @experimental As of version 1.92.0. This API is experimental and might change significantly.
|
|
110
120
|
*/
|
|
111
121
|
interface ISideNavigationSubItem {
|
|
@@ -116,6 +126,7 @@ declare namespace sap {
|
|
|
116
126
|
* Interface for components that may be slotted inside `ui5-view-settings-dialog` as sort items
|
|
117
127
|
*
|
|
118
128
|
* @since 1.97.0
|
|
129
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
119
130
|
* @experimental As of version 1.97.0. This API is experimental and might change significantly.
|
|
120
131
|
*/
|
|
121
132
|
interface ISortItem {
|
|
@@ -126,6 +137,7 @@ declare namespace sap {
|
|
|
126
137
|
* Interface for components that may be slotted inside `ui5-timeline` as items
|
|
127
138
|
*
|
|
128
139
|
* @since 1.92.0
|
|
140
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
129
141
|
* @experimental As of version 1.92.0. This API is experimental and might change significantly.
|
|
130
142
|
*/
|
|
131
143
|
interface ITimelineItem {
|
|
@@ -136,6 +148,7 @@ declare namespace sap {
|
|
|
136
148
|
* Interface for components that may be slotted inside `ui5-upload-collection` as items
|
|
137
149
|
*
|
|
138
150
|
* @since 1.92.0
|
|
151
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
139
152
|
* @experimental As of version 1.92.0. This API is experimental and might change significantly.
|
|
140
153
|
*/
|
|
141
154
|
interface IUploadCollectionItem {
|
|
@@ -146,6 +159,7 @@ declare namespace sap {
|
|
|
146
159
|
* Interface for components that may be slotted inside `ui5-wizard` as wizard steps
|
|
147
160
|
*
|
|
148
161
|
* @since 1.92.0
|
|
162
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
149
163
|
* @experimental As of version 1.92.0. This API is experimental and might change significantly.
|
|
150
164
|
*/
|
|
151
165
|
interface IWizardStep {
|
|
@@ -14849,6 +14863,7 @@ declare namespace sap {
|
|
|
14849
14863
|
* 'BarDesign'.
|
|
14850
14864
|
*
|
|
14851
14865
|
* @since 1.92.0
|
|
14866
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
14852
14867
|
* @experimental As of version 1.92.0. This API is experimental and might change significantly.
|
|
14853
14868
|
*/
|
|
14854
14869
|
enum BarDesign {
|
|
@@ -14876,6 +14891,7 @@ declare namespace sap {
|
|
|
14876
14891
|
* 'FCLLayout'.
|
|
14877
14892
|
*
|
|
14878
14893
|
* @since 1.92.0
|
|
14894
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
14879
14895
|
* @experimental As of version 1.92.0. This API is experimental and might change significantly.
|
|
14880
14896
|
*/
|
|
14881
14897
|
enum FCLLayout {
|
|
@@ -14953,6 +14969,7 @@ declare namespace sap {
|
|
|
14953
14969
|
* 'IllustrationMessageSize'.
|
|
14954
14970
|
*
|
|
14955
14971
|
* @since 1.106.0
|
|
14972
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
14956
14973
|
* @experimental As of version 1.106.0. This API is experimental and might change significantly.
|
|
14957
14974
|
*/
|
|
14958
14975
|
enum IllustrationMessageSize {
|
|
@@ -14991,6 +15008,7 @@ declare namespace sap {
|
|
|
14991
15008
|
* 'IllustrationMessageType'.
|
|
14992
15009
|
*
|
|
14993
15010
|
* @since 1.95.0
|
|
15011
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
14994
15012
|
* @experimental As of version 1.95.0. This API is experimental and might change significantly.
|
|
14995
15013
|
*/
|
|
14996
15014
|
enum IllustrationMessageType {
|
|
@@ -15374,6 +15392,7 @@ declare namespace sap {
|
|
|
15374
15392
|
* 'MediaGalleryItemLayout'.
|
|
15375
15393
|
*
|
|
15376
15394
|
* @since 1.99.0
|
|
15395
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
15377
15396
|
* @experimental As of version 1.99.0. This API is experimental and might change significantly.
|
|
15378
15397
|
*/
|
|
15379
15398
|
enum MediaGalleryItemLayout {
|
|
@@ -15397,6 +15416,7 @@ declare namespace sap {
|
|
|
15397
15416
|
* 'MediaGalleryLayout'.
|
|
15398
15417
|
*
|
|
15399
15418
|
* @since 1.99.0
|
|
15419
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
15400
15420
|
* @experimental As of version 1.99.0. This API is experimental and might change significantly.
|
|
15401
15421
|
*/
|
|
15402
15422
|
enum MediaGalleryLayout {
|
|
@@ -15420,6 +15440,7 @@ declare namespace sap {
|
|
|
15420
15440
|
* 'MediaGalleryMenuHorizontalAlign'.
|
|
15421
15441
|
*
|
|
15422
15442
|
* @since 1.99.0
|
|
15443
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
15423
15444
|
* @experimental As of version 1.99.0. This API is experimental and might change significantly.
|
|
15424
15445
|
*/
|
|
15425
15446
|
enum MediaGalleryMenuHorizontalAlign {
|
|
@@ -15439,6 +15460,7 @@ declare namespace sap {
|
|
|
15439
15460
|
* 'MediaGalleryMenuVerticalAlign'.
|
|
15440
15461
|
*
|
|
15441
15462
|
* @since 1.99.0
|
|
15463
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
15442
15464
|
* @experimental As of version 1.99.0. This API is experimental and might change significantly.
|
|
15443
15465
|
*/
|
|
15444
15466
|
enum MediaGalleryMenuVerticalAlign {
|
|
@@ -15458,6 +15480,7 @@ declare namespace sap {
|
|
|
15458
15480
|
* 'PageBackgroundDesign'.
|
|
15459
15481
|
*
|
|
15460
15482
|
* @since 1.92.0
|
|
15483
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
15461
15484
|
* @experimental As of version 1.92.0. This API is experimental and might change significantly.
|
|
15462
15485
|
*/
|
|
15463
15486
|
enum PageBackgroundDesign {
|
|
@@ -15481,6 +15504,7 @@ declare namespace sap {
|
|
|
15481
15504
|
* 'SideContentFallDown'.
|
|
15482
15505
|
*
|
|
15483
15506
|
* @since 1.99.0
|
|
15507
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
15484
15508
|
* @experimental As of version 1.99.0. This API is experimental and might change significantly.
|
|
15485
15509
|
*/
|
|
15486
15510
|
enum SideContentFallDown {
|
|
@@ -15508,6 +15532,7 @@ declare namespace sap {
|
|
|
15508
15532
|
* 'SideContentPosition'.
|
|
15509
15533
|
*
|
|
15510
15534
|
* @since 1.99.0
|
|
15535
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
15511
15536
|
* @experimental As of version 1.99.0. This API is experimental and might change significantly.
|
|
15512
15537
|
*/
|
|
15513
15538
|
enum SideContentPosition {
|
|
@@ -15529,6 +15554,7 @@ declare namespace sap {
|
|
|
15529
15554
|
* 'SideContentVisibility'.
|
|
15530
15555
|
*
|
|
15531
15556
|
* @since 1.99.0
|
|
15557
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
15532
15558
|
* @experimental As of version 1.99.0. This API is experimental and might change significantly.
|
|
15533
15559
|
*/
|
|
15534
15560
|
enum SideContentVisibility {
|
|
@@ -15560,6 +15586,7 @@ declare namespace sap {
|
|
|
15560
15586
|
* 'TimelineLayout'.
|
|
15561
15587
|
*
|
|
15562
15588
|
* @since 1.92.0
|
|
15589
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
15563
15590
|
* @experimental As of version 1.92.0. This API is experimental and might change significantly.
|
|
15564
15591
|
*/
|
|
15565
15592
|
enum TimelineLayout {
|
|
@@ -15579,6 +15606,7 @@ declare namespace sap {
|
|
|
15579
15606
|
* 'UploadState'.
|
|
15580
15607
|
*
|
|
15581
15608
|
* @since 1.92.0
|
|
15609
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
15582
15610
|
* @experimental As of version 1.92.0. This API is experimental and might change significantly.
|
|
15583
15611
|
*/
|
|
15584
15612
|
enum UploadState {
|
|
@@ -15606,6 +15634,7 @@ declare namespace sap {
|
|
|
15606
15634
|
* 'ViewSettingsDialogMode'.
|
|
15607
15635
|
*
|
|
15608
15636
|
* @since 1.115.0
|
|
15637
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
15609
15638
|
* @experimental As of version 1.115.0. This API is experimental and might change significantly.
|
|
15610
15639
|
*/
|
|
15611
15640
|
enum ViewSettingsDialogMode {
|
|
@@ -15625,6 +15654,7 @@ declare namespace sap {
|
|
|
15625
15654
|
* 'WizardContentLayout'.
|
|
15626
15655
|
*
|
|
15627
15656
|
* @since 1.92.0
|
|
15657
|
+
* @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
|
|
15628
15658
|
* @experimental As of version 1.92.0. This API is experimental and might change significantly.
|
|
15629
15659
|
*/
|
|
15630
15660
|
enum WizardContentLayout {
|