@openui5/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.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.143.1
1
+ // For Library Version: 1.145.0
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,10 +1,12 @@
1
- // For Library Version: 1.143.1
1
+ // For Library Version: 1.145.0
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
5
5
  * Defined color values for the Task Circle Control
6
6
  *
7
7
  * This enum is part of the 'sap/ui/suite/library' module export and must be accessed by the property 'TaskCircleColor'.
8
+ *
9
+ * @deprecated As of version 1.108. because it is part of the deprecated package sap.ui.suite
8
10
  */
9
11
  export enum TaskCircleColor {
10
12
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.143.1
1
+ // For Library Version: 1.145.0
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.143.1
1
+ // For Library Version: 1.145.0
2
2
 
3
3
  declare module "sap/ui/table/library" {
4
4
  import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
@@ -608,6 +608,8 @@ declare module "sap/ui/table/AnalyticalTable" {
608
608
  Table$GroupEventParameters,
609
609
  } from "sap/ui/table/Table";
610
610
 
611
+ import AnalyticalColumn from "sap/ui/table/AnalyticalColumn";
612
+
611
613
  import { ID } from "sap/ui/core/library";
612
614
 
613
615
  import ElementMetadata from "sap/ui/core/ElementMetadata";
@@ -903,6 +905,10 @@ declare module "sap/ui/table/AnalyticalTable" {
903
905
  * @returns Value of property `collapseRecursive`
904
906
  */
905
907
  getCollapseRecursive(): boolean;
908
+ /**
909
+ * Returns the Columns of the AnalyticalTable.
910
+ */
911
+ getColumns(): AnalyticalColumn[];
906
912
  /**
907
913
  * Gets current value of property {@link #getColumnVisibilityMenuSorter columnVisibilityMenuSorter}.
908
914
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.143.1
1
+ // For Library Version: 1.145.0
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.143.1
1
+ // For Library Version: 1.145.0
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -5769,6 +5769,18 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
5769
5769
  * @returns Value of property `showHeader`
5770
5770
  */
5771
5771
  getShowHeader(): boolean;
5772
+ /**
5773
+ * Gets current value of property {@link #getShowWeekNumbers showWeekNumbers}.
5774
+ *
5775
+ * Determines if the week numbers are displayed.
5776
+ *
5777
+ * Default value is `false`.
5778
+ *
5779
+ * @since 1.145.0
5780
+ *
5781
+ * @returns Value of property `showWeekNumbers`
5782
+ */
5783
+ getShowWeekNumbers(): boolean;
5772
5784
  /**
5773
5785
  * Gets current value of property {@link #getSingleSelection singleSelection}.
5774
5786
  *
@@ -6005,6 +6017,25 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
6005
6017
  */
6006
6018
  bShowHeader?: boolean
6007
6019
  ): this;
6020
+ /**
6021
+ * Sets a new value for property {@link #getShowWeekNumbers showWeekNumbers}.
6022
+ *
6023
+ * Determines if the week numbers are displayed.
6024
+ *
6025
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6026
+ *
6027
+ * Default value is `false`.
6028
+ *
6029
+ * @since 1.145.0
6030
+ *
6031
+ * @returns Reference to `this` in order to allow method chaining
6032
+ */
6033
+ setShowWeekNumbers(
6034
+ /**
6035
+ * New value for property `showWeekNumbers`
6036
+ */
6037
+ bShowWeekNumbers?: boolean
6038
+ ): this;
6008
6039
  /**
6009
6040
  * Sets a new value for property {@link #getSingleSelection singleSelection}.
6010
6041
  *
@@ -6078,6 +6109,13 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
6078
6109
  */
6079
6110
  showHeader?: boolean | PropertyBindingInfo | `{${string}}`;
6080
6111
 
6112
+ /**
6113
+ * Determines if the week numbers are displayed.
6114
+ *
6115
+ * @since 1.145.0
6116
+ */
6117
+ showWeekNumbers?: boolean | PropertyBindingInfo | `{${string}}`;
6118
+
6081
6119
  /**
6082
6120
  * Date ranges for selected dates. If `singleSelection` is set, only the first entry is used.
6083
6121
  *
@@ -15548,7 +15586,7 @@ declare module "sap/ui/unified/FileUploader" {
15548
15586
  *
15549
15587
  * @since 1.25.0
15550
15588
  *
15551
- * @returns Reference to `this` for method chaining
15589
+ * @returns Reference to `this` for method chaining.
15552
15590
  */
15553
15591
  clear(): this;
15554
15592
  /**
@@ -16097,6 +16135,7 @@ declare module "sap/ui/unified/FileUploader" {
16097
16135
  * Default value is `empty string`.
16098
16136
  *
16099
16137
  * @since 1.26.0
16138
+ * @deprecated As of version 1.144. because it was relevant for `sap.ui.commons.FileUploader`.
16100
16139
  *
16101
16140
  * @returns Value of property `iconHovered`
16102
16141
  */
@@ -16124,10 +16163,18 @@ declare module "sap/ui/unified/FileUploader" {
16124
16163
  * Default value is `empty string`.
16125
16164
  *
16126
16165
  * @since 1.26.0
16166
+ * @deprecated As of version 1.144. because it was relevant for `sap.ui.commons.FileUploader`.
16127
16167
  *
16128
16168
  * @returns Value of property `iconSelected`
16129
16169
  */
16130
16170
  getIconSelected(): URI;
16171
+ /**
16172
+ * Returns the id that should be used by external labels pointing to the native input.
16173
+ *
16174
+ *
16175
+ * @returns ID of the native input element.
16176
+ */
16177
+ getIdForLabel(): string;
16131
16178
  /**
16132
16179
  * Gets current value of property {@link #getMaximumFilenameLength maximumFilenameLength}.
16133
16180
  *
@@ -16228,6 +16275,18 @@ declare module "sap/ui/unified/FileUploader" {
16228
16275
  */
16229
16276
  aBlobs: Blob[]
16230
16277
  ): Promise<Blob[]>;
16278
+ /**
16279
+ * Gets current value of property {@link #getRequired required}.
16280
+ *
16281
+ * Indicates whether the file uploader is required.
16282
+ *
16283
+ * Default value is `false`.
16284
+ *
16285
+ * @since 1.144
16286
+ *
16287
+ * @returns Value of property `required`
16288
+ */
16289
+ getRequired(): boolean;
16231
16290
  /**
16232
16291
  * Gets current value of property {@link #getSameFilenameAllowed sameFilenameAllowed}.
16233
16292
  *
@@ -16687,6 +16746,7 @@ declare module "sap/ui/unified/FileUploader" {
16687
16746
  * Default value is `empty string`.
16688
16747
  *
16689
16748
  * @since 1.26.0
16749
+ * @deprecated As of version 1.144. because it was relevant for `sap.ui.commons.FileUploader`.
16690
16750
  *
16691
16751
  * @returns Reference to `this` in order to allow method chaining
16692
16752
  */
@@ -16728,6 +16788,7 @@ declare module "sap/ui/unified/FileUploader" {
16728
16788
  * Default value is `empty string`.
16729
16789
  *
16730
16790
  * @since 1.26.0
16791
+ * @deprecated As of version 1.144. because it was relevant for `sap.ui.commons.FileUploader`.
16731
16792
  *
16732
16793
  * @returns Reference to `this` in order to allow method chaining
16733
16794
  */
@@ -16850,6 +16911,25 @@ declare module "sap/ui/unified/FileUploader" {
16850
16911
  */
16851
16912
  sPlaceholder?: string
16852
16913
  ): this;
16914
+ /**
16915
+ * Sets a new value for property {@link #getRequired required}.
16916
+ *
16917
+ * Indicates whether the file uploader is required.
16918
+ *
16919
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
16920
+ *
16921
+ * Default value is `false`.
16922
+ *
16923
+ * @since 1.144
16924
+ *
16925
+ * @returns Reference to `this` in order to allow method chaining
16926
+ */
16927
+ setRequired(
16928
+ /**
16929
+ * New value for property `required`
16930
+ */
16931
+ bRequired?: boolean
16932
+ ): this;
16853
16933
  /**
16854
16934
  * Sets a new value for property {@link #getSameFilenameAllowed sameFilenameAllowed}.
16855
16935
  *
@@ -17246,6 +17326,7 @@ declare module "sap/ui/unified/FileUploader" {
17246
17326
  * If not specified, the base icon is used. If an icon font icon is used, this property is ignored.
17247
17327
  *
17248
17328
  * @since 1.26.0
17329
+ * @deprecated As of version 1.144. because it was relevant for `sap.ui.commons.FileUploader`.
17249
17330
  */
17250
17331
  iconHovered?: URI | PropertyBindingInfo | `{${string}}`;
17251
17332
 
@@ -17256,6 +17337,7 @@ declare module "sap/ui/unified/FileUploader" {
17256
17337
  * If not specified, the base or hovered icon is used. If an icon font icon is used, this property is ignored.
17257
17338
  *
17258
17339
  * @since 1.26.0
17340
+ * @deprecated As of version 1.144. because it was relevant for `sap.ui.commons.FileUploader`.
17259
17341
  */
17260
17342
  iconSelected?: URI | PropertyBindingInfo | `{${string}}`;
17261
17343
 
@@ -17280,6 +17362,13 @@ declare module "sap/ui/unified/FileUploader" {
17280
17362
  */
17281
17363
  directory?: boolean | PropertyBindingInfo | `{${string}}`;
17282
17364
 
17365
+ /**
17366
+ * Indicates whether the file uploader is required.
17367
+ *
17368
+ * @since 1.144
17369
+ */
17370
+ required?: boolean | PropertyBindingInfo | `{${string}}`;
17371
+
17283
17372
  /**
17284
17373
  * The parameters for the `FileUploader` which are rendered as a hidden input field.
17285
17374
  *
@@ -17880,6 +17969,75 @@ declare module "sap/ui/unified/FileUploaderParameter" {
17880
17969
  }
17881
17970
  }
17882
17971
 
17972
+ declare module "sap/ui/unified/FileUploaderRenderer" {
17973
+ import RenderManager from "sap/ui/core/RenderManager";
17974
+
17975
+ import FileUploader from "sap/ui/unified/FileUploader";
17976
+
17977
+ /**
17978
+ * FileUploader renderer.
17979
+ *
17980
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
17981
+ */
17982
+ interface FileUploaderRenderer {
17983
+ /**
17984
+ * Adds the CSS value state classes to the control's root element using the provided {@link sap.ui.core.RenderManager}.
17985
+ *
17986
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
17987
+ */
17988
+ addValueStateClasses(
17989
+ /**
17990
+ * The RenderManager used for writing to the render output buffer.
17991
+ */
17992
+ oRm: RenderManager,
17993
+ /**
17994
+ * An object representation of the control that should be rendered.
17995
+ */
17996
+ oFileUploader: FileUploader
17997
+ ): void;
17998
+ /**
17999
+ * Returns the accessibility state of the control. Hook for the subclasses.
18000
+ *
18001
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
18002
+ *
18003
+ * @returns The accessibility state object.
18004
+ */
18005
+ getAccessibilityState(): /* was: sap.m.InputBaseAccessibilityState */ any;
18006
+ /**
18007
+ * Renders the hidden aria-describedby and error message nodes for accessibility.
18008
+ *
18009
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
18010
+ */
18011
+ renderValueStateAccDom(
18012
+ /**
18013
+ * The RenderManager used for writing to the render output buffer.
18014
+ */
18015
+ oRm: RenderManager,
18016
+ /**
18017
+ * An object representation of the control that should be rendered.
18018
+ */
18019
+ oFileUploader: FileUploader
18020
+ ): void;
18021
+ /**
18022
+ * Writes the accessibility state of the control. Hook for the subclasses.
18023
+ *
18024
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
18025
+ */
18026
+ writeAccessibilityState(
18027
+ /**
18028
+ * The RenderManager used for writing to the render output buffer.
18029
+ */
18030
+ oRm: RenderManager,
18031
+ /**
18032
+ * An object representation of the control that should be rendered.
18033
+ */
18034
+ oFileUploader: /* was: sap.m.InputBase */ any
18035
+ ): void;
18036
+ }
18037
+ const FileUploaderRenderer: FileUploaderRenderer;
18038
+ export default FileUploaderRenderer;
18039
+ }
18040
+
17883
18041
  declare module "sap/ui/unified/FileUploaderXHRSettings" {
17884
18042
  import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
17885
18043
 
@@ -18444,7 +18602,7 @@ declare module "sap/ui/unified/Menu" {
18444
18602
  /**
18445
18603
  * Returns all items that have `selected` properties set to `true`. **Note:** Only items with `selected`
18446
18604
  * property set that are members of `MenuItemGroup` with `ItemSelectionMode` property set to {@link sap.ui.core.ItemSelectionMode.SingleSelect }
18447
- * or {@link sap.ui.unified.ItemSelectionMode.MultiSelect}> are taken into account.
18605
+ * or {@link sap.ui.core.ItemSelectionMode.MultiSelect}> are taken into account.
18448
18606
  *
18449
18607
  * @since 1.127.0
18450
18608
  *
@@ -19130,7 +19288,7 @@ declare module "sap/ui/unified/MenuItem" {
19130
19288
  * Determines whether the `MenuItem` is selected (default is set to `false`). A selected `MenuItem` has
19131
19289
  * a check mark rendered at its end. **Note: ** selection functionality works only if the menu item is a
19132
19290
  * member of `MenuItemGroup` with `itemSelectionMode` set to {@link sap.ui.core.ItemSelectionMode.SingleSelect }
19133
- * or {@link sap.ui.unified.ItemSelectionMode.MultiSelect}.
19291
+ * or {@link sap.ui.core.ItemSelectionMode.MultiSelect}.
19134
19292
  *
19135
19293
  * @since 1.127.0
19136
19294
  */
@@ -23316,6 +23474,8 @@ declare namespace sap {
23316
23474
 
23317
23475
  "sap/ui/unified/FileUploaderParameter": undefined;
23318
23476
 
23477
+ "sap/ui/unified/FileUploaderRenderer": undefined;
23478
+
23319
23479
  "sap/ui/unified/FileUploaderXHRSettings": undefined;
23320
23480
 
23321
23481
  "sap/ui/unified/library": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.143.1
1
+ // For Library Version: 1.145.0
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.143.1
1
+ // For Library Version: 1.145.0
2
2
 
3
3
  declare module "sap/ui/webc/common/library" {}
4
4
 
@@ -114,6 +114,8 @@ declare module "sap/ui/webc/common/WebComponent" {
114
114
  /**
115
115
  * The structure of the "metadata" object which is passed when inheriting from sap.ui.core.Element using
116
116
  * its static "extend" method. See {@link sap.ui.core.Element.extend} for details on its usage.
117
+ *
118
+ * @deprecated As of version 1.118.0. because it is part of the deprecated package sap.ui.webc.common.WebComponent
117
119
  */
118
120
  export type MetadataOptions = MetadataOptions1;
119
121
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.143.1
1
+ // For Library Version: 1.145.0
2
2
 
3
3
  declare module "sap/ui/webc/fiori/library" {
4
4
  /**
@@ -8,6 +8,7 @@ declare module "sap/ui/webc/fiori/library" {
8
8
  * 'BarDesign'.
9
9
  *
10
10
  * @since 1.92.0
11
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
11
12
  * @experimental As of version 1.92.0. This API is experimental and might change significantly.
12
13
  */
13
14
  export enum BarDesign {
@@ -35,6 +36,7 @@ declare module "sap/ui/webc/fiori/library" {
35
36
  * 'FCLLayout'.
36
37
  *
37
38
  * @since 1.92.0
39
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
38
40
  * @experimental As of version 1.92.0. This API is experimental and might change significantly.
39
41
  */
40
42
  export enum FCLLayout {
@@ -109,6 +111,7 @@ declare module "sap/ui/webc/fiori/library" {
109
111
  * Interface for components that may be slotted inside `ui5-page` as header and footer.
110
112
  *
111
113
  * @since 1.99.0
114
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
112
115
  * @experimental As of version 1.99.0. This API is experimental and might change significantly.
113
116
  */
114
117
  export interface IBar {
@@ -119,6 +122,7 @@ declare module "sap/ui/webc/fiori/library" {
119
122
  * Interface for components that may be slotted inside `ui5-view-settings-dialog` as filter items
120
123
  *
121
124
  * @since 1.97.0
125
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
122
126
  * @experimental As of version 1.97.0. This API is experimental and might change significantly.
123
127
  */
124
128
  export interface IFilterItem {
@@ -129,6 +133,7 @@ declare module "sap/ui/webc/fiori/library" {
129
133
  * Interface for components that may be slotted inside `ui5-filter-item` as values
130
134
  *
131
135
  * @since 1.97.0
136
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
132
137
  * @experimental As of version 1.97.0. This API is experimental and might change significantly.
133
138
  */
134
139
  export interface IFilterItemOption {
@@ -142,6 +147,7 @@ declare module "sap/ui/webc/fiori/library" {
142
147
  * 'IllustrationMessageSize'.
143
148
  *
144
149
  * @since 1.106.0
150
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
145
151
  * @experimental As of version 1.106.0. This API is experimental and might change significantly.
146
152
  */
147
153
  export enum IllustrationMessageSize {
@@ -180,6 +186,7 @@ declare module "sap/ui/webc/fiori/library" {
180
186
  * 'IllustrationMessageType'.
181
187
  *
182
188
  * @since 1.95.0
189
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
183
190
  * @experimental As of version 1.95.0. This API is experimental and might change significantly.
184
191
  */
185
192
  export enum IllustrationMessageType {
@@ -560,6 +567,7 @@ declare module "sap/ui/webc/fiori/library" {
560
567
  * Interface for components that can be slotted inside `ui5-media-gallery` as items.
561
568
  *
562
569
  * @since 1.99.0
570
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
563
571
  * @experimental As of version 1.99.0. This API is experimental and might change significantly.
564
572
  */
565
573
  export interface IMediaGalleryItem {
@@ -570,6 +578,7 @@ declare module "sap/ui/webc/fiori/library" {
570
578
  * Interface for components that may be slotted as an action inside `ui5-li-notification` and `ui5-li-notification-group`
571
579
  *
572
580
  * @since 1.92.0
581
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
573
582
  * @experimental As of version 1.92.0. This API is experimental and might change significantly.
574
583
  */
575
584
  export interface INotificationAction {
@@ -580,6 +589,7 @@ declare module "sap/ui/webc/fiori/library" {
580
589
  * Interface for components that may be slotted inside a notification list
581
590
  *
582
591
  * @since 1.92.0
592
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
583
593
  * @experimental As of version 1.92.0. This API is experimental and might change significantly.
584
594
  */
585
595
  export interface INotificationListItem {
@@ -590,6 +600,7 @@ declare module "sap/ui/webc/fiori/library" {
590
600
  * Interface for components that may be slotted inside `ui5-product-switch` as items
591
601
  *
592
602
  * @since 1.92.0
603
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
593
604
  * @experimental As of version 1.92.0. This API is experimental and might change significantly.
594
605
  */
595
606
  export interface IProductSwitchItem {
@@ -600,6 +611,7 @@ declare module "sap/ui/webc/fiori/library" {
600
611
  * Interface for components that may be slotted inside `ui5-shellbar` as items
601
612
  *
602
613
  * @since 1.92.0
614
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
603
615
  * @experimental As of version 1.92.0. This API is experimental and might change significantly.
604
616
  */
605
617
  export interface IShellBarItem {
@@ -610,6 +622,7 @@ declare module "sap/ui/webc/fiori/library" {
610
622
  * Interface for components that may be slotted inside `ui5-side-navigation` as items
611
623
  *
612
624
  * @since 1.92.0
625
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
613
626
  * @experimental As of version 1.92.0. This API is experimental and might change significantly.
614
627
  */
615
628
  export interface ISideNavigationItem {
@@ -620,6 +633,7 @@ declare module "sap/ui/webc/fiori/library" {
620
633
  * Interface for components that may be slotted inside `ui5-side-navigation-item` as sub-items
621
634
  *
622
635
  * @since 1.92.0
636
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
623
637
  * @experimental As of version 1.92.0. This API is experimental and might change significantly.
624
638
  */
625
639
  export interface ISideNavigationSubItem {
@@ -630,6 +644,7 @@ declare module "sap/ui/webc/fiori/library" {
630
644
  * Interface for components that may be slotted inside `ui5-view-settings-dialog` as sort items
631
645
  *
632
646
  * @since 1.97.0
647
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
633
648
  * @experimental As of version 1.97.0. This API is experimental and might change significantly.
634
649
  */
635
650
  export interface ISortItem {
@@ -640,6 +655,7 @@ declare module "sap/ui/webc/fiori/library" {
640
655
  * Interface for components that may be slotted inside `ui5-timeline` as items
641
656
  *
642
657
  * @since 1.92.0
658
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
643
659
  * @experimental As of version 1.92.0. This API is experimental and might change significantly.
644
660
  */
645
661
  export interface ITimelineItem {
@@ -650,6 +666,7 @@ declare module "sap/ui/webc/fiori/library" {
650
666
  * Interface for components that may be slotted inside `ui5-upload-collection` as items
651
667
  *
652
668
  * @since 1.92.0
669
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
653
670
  * @experimental As of version 1.92.0. This API is experimental and might change significantly.
654
671
  */
655
672
  export interface IUploadCollectionItem {
@@ -660,6 +677,7 @@ declare module "sap/ui/webc/fiori/library" {
660
677
  * Interface for components that may be slotted inside `ui5-wizard` as wizard steps
661
678
  *
662
679
  * @since 1.92.0
680
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
663
681
  * @experimental As of version 1.92.0. This API is experimental and might change significantly.
664
682
  */
665
683
  export interface IWizardStep {
@@ -673,6 +691,7 @@ declare module "sap/ui/webc/fiori/library" {
673
691
  * 'MediaGalleryItemLayout'.
674
692
  *
675
693
  * @since 1.99.0
694
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
676
695
  * @experimental As of version 1.99.0. This API is experimental and might change significantly.
677
696
  */
678
697
  export enum MediaGalleryItemLayout {
@@ -696,6 +715,7 @@ declare module "sap/ui/webc/fiori/library" {
696
715
  * 'MediaGalleryLayout'.
697
716
  *
698
717
  * @since 1.99.0
718
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
699
719
  * @experimental As of version 1.99.0. This API is experimental and might change significantly.
700
720
  */
701
721
  export enum MediaGalleryLayout {
@@ -719,6 +739,7 @@ declare module "sap/ui/webc/fiori/library" {
719
739
  * 'MediaGalleryMenuHorizontalAlign'.
720
740
  *
721
741
  * @since 1.99.0
742
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
722
743
  * @experimental As of version 1.99.0. This API is experimental and might change significantly.
723
744
  */
724
745
  export enum MediaGalleryMenuHorizontalAlign {
@@ -738,6 +759,7 @@ declare module "sap/ui/webc/fiori/library" {
738
759
  * 'MediaGalleryMenuVerticalAlign'.
739
760
  *
740
761
  * @since 1.99.0
762
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
741
763
  * @experimental As of version 1.99.0. This API is experimental and might change significantly.
742
764
  */
743
765
  export enum MediaGalleryMenuVerticalAlign {
@@ -757,6 +779,7 @@ declare module "sap/ui/webc/fiori/library" {
757
779
  * 'PageBackgroundDesign'.
758
780
  *
759
781
  * @since 1.92.0
782
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
760
783
  * @experimental As of version 1.92.0. This API is experimental and might change significantly.
761
784
  */
762
785
  export enum PageBackgroundDesign {
@@ -780,6 +803,7 @@ declare module "sap/ui/webc/fiori/library" {
780
803
  * 'SideContentFallDown'.
781
804
  *
782
805
  * @since 1.99.0
806
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
783
807
  * @experimental As of version 1.99.0. This API is experimental and might change significantly.
784
808
  */
785
809
  export enum SideContentFallDown {
@@ -807,6 +831,7 @@ declare module "sap/ui/webc/fiori/library" {
807
831
  * 'SideContentPosition'.
808
832
  *
809
833
  * @since 1.99.0
834
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
810
835
  * @experimental As of version 1.99.0. This API is experimental and might change significantly.
811
836
  */
812
837
  export enum SideContentPosition {
@@ -828,6 +853,7 @@ declare module "sap/ui/webc/fiori/library" {
828
853
  * 'SideContentVisibility'.
829
854
  *
830
855
  * @since 1.99.0
856
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
831
857
  * @experimental As of version 1.99.0. This API is experimental and might change significantly.
832
858
  */
833
859
  export enum SideContentVisibility {
@@ -859,6 +885,7 @@ declare module "sap/ui/webc/fiori/library" {
859
885
  * 'TimelineLayout'.
860
886
  *
861
887
  * @since 1.92.0
888
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
862
889
  * @experimental As of version 1.92.0. This API is experimental and might change significantly.
863
890
  */
864
891
  export enum TimelineLayout {
@@ -878,6 +905,7 @@ declare module "sap/ui/webc/fiori/library" {
878
905
  * 'UploadState'.
879
906
  *
880
907
  * @since 1.92.0
908
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
881
909
  * @experimental As of version 1.92.0. This API is experimental and might change significantly.
882
910
  */
883
911
  export enum UploadState {
@@ -905,6 +933,7 @@ declare module "sap/ui/webc/fiori/library" {
905
933
  * 'ViewSettingsDialogMode'.
906
934
  *
907
935
  * @since 1.115.0
936
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
908
937
  * @experimental As of version 1.115.0. This API is experimental and might change significantly.
909
938
  */
910
939
  export enum ViewSettingsDialogMode {
@@ -924,6 +953,7 @@ declare module "sap/ui/webc/fiori/library" {
924
953
  * 'WizardContentLayout'.
925
954
  *
926
955
  * @since 1.92.0
956
+ * @deprecated As of version 1.120. because it is part of the deprecated package sap.ui.webc.fiori
927
957
  * @experimental As of version 1.92.0. This API is experimental and might change significantly.
928
958
  */
929
959
  export enum WizardContentLayout {