@openui5/types 1.143.0 → 1.144.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.0
1
+ // For Library Version: 1.144.0
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -15548,7 +15548,7 @@ declare module "sap/ui/unified/FileUploader" {
15548
15548
  *
15549
15549
  * @since 1.25.0
15550
15550
  *
15551
- * @returns Reference to `this` for method chaining
15551
+ * @returns Reference to `this` for method chaining.
15552
15552
  */
15553
15553
  clear(): this;
15554
15554
  /**
@@ -16097,6 +16097,7 @@ declare module "sap/ui/unified/FileUploader" {
16097
16097
  * Default value is `empty string`.
16098
16098
  *
16099
16099
  * @since 1.26.0
16100
+ * @deprecated As of version 1.144. because it was relevant for `sap.ui.commons.FileUploader`.
16100
16101
  *
16101
16102
  * @returns Value of property `iconHovered`
16102
16103
  */
@@ -16124,10 +16125,18 @@ declare module "sap/ui/unified/FileUploader" {
16124
16125
  * Default value is `empty string`.
16125
16126
  *
16126
16127
  * @since 1.26.0
16128
+ * @deprecated As of version 1.144. because it was relevant for `sap.ui.commons.FileUploader`.
16127
16129
  *
16128
16130
  * @returns Value of property `iconSelected`
16129
16131
  */
16130
16132
  getIconSelected(): URI;
16133
+ /**
16134
+ * Returns the id that should be used by external labels pointing to the native input.
16135
+ *
16136
+ *
16137
+ * @returns ID of the native input element.
16138
+ */
16139
+ getIdForLabel(): string;
16131
16140
  /**
16132
16141
  * Gets current value of property {@link #getMaximumFilenameLength maximumFilenameLength}.
16133
16142
  *
@@ -16228,6 +16237,18 @@ declare module "sap/ui/unified/FileUploader" {
16228
16237
  */
16229
16238
  aBlobs: Blob[]
16230
16239
  ): Promise<Blob[]>;
16240
+ /**
16241
+ * Gets current value of property {@link #getRequired required}.
16242
+ *
16243
+ * Indicates whether the file uploader is required.
16244
+ *
16245
+ * Default value is `false`.
16246
+ *
16247
+ * @since 1.144
16248
+ *
16249
+ * @returns Value of property `required`
16250
+ */
16251
+ getRequired(): boolean;
16231
16252
  /**
16232
16253
  * Gets current value of property {@link #getSameFilenameAllowed sameFilenameAllowed}.
16233
16254
  *
@@ -16687,6 +16708,7 @@ declare module "sap/ui/unified/FileUploader" {
16687
16708
  * Default value is `empty string`.
16688
16709
  *
16689
16710
  * @since 1.26.0
16711
+ * @deprecated As of version 1.144. because it was relevant for `sap.ui.commons.FileUploader`.
16690
16712
  *
16691
16713
  * @returns Reference to `this` in order to allow method chaining
16692
16714
  */
@@ -16728,6 +16750,7 @@ declare module "sap/ui/unified/FileUploader" {
16728
16750
  * Default value is `empty string`.
16729
16751
  *
16730
16752
  * @since 1.26.0
16753
+ * @deprecated As of version 1.144. because it was relevant for `sap.ui.commons.FileUploader`.
16731
16754
  *
16732
16755
  * @returns Reference to `this` in order to allow method chaining
16733
16756
  */
@@ -16850,6 +16873,25 @@ declare module "sap/ui/unified/FileUploader" {
16850
16873
  */
16851
16874
  sPlaceholder?: string
16852
16875
  ): this;
16876
+ /**
16877
+ * Sets a new value for property {@link #getRequired required}.
16878
+ *
16879
+ * Indicates whether the file uploader is required.
16880
+ *
16881
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
16882
+ *
16883
+ * Default value is `false`.
16884
+ *
16885
+ * @since 1.144
16886
+ *
16887
+ * @returns Reference to `this` in order to allow method chaining
16888
+ */
16889
+ setRequired(
16890
+ /**
16891
+ * New value for property `required`
16892
+ */
16893
+ bRequired?: boolean
16894
+ ): this;
16853
16895
  /**
16854
16896
  * Sets a new value for property {@link #getSameFilenameAllowed sameFilenameAllowed}.
16855
16897
  *
@@ -17246,6 +17288,7 @@ declare module "sap/ui/unified/FileUploader" {
17246
17288
  * If not specified, the base icon is used. If an icon font icon is used, this property is ignored.
17247
17289
  *
17248
17290
  * @since 1.26.0
17291
+ * @deprecated As of version 1.144. because it was relevant for `sap.ui.commons.FileUploader`.
17249
17292
  */
17250
17293
  iconHovered?: URI | PropertyBindingInfo | `{${string}}`;
17251
17294
 
@@ -17256,6 +17299,7 @@ declare module "sap/ui/unified/FileUploader" {
17256
17299
  * If not specified, the base or hovered icon is used. If an icon font icon is used, this property is ignored.
17257
17300
  *
17258
17301
  * @since 1.26.0
17302
+ * @deprecated As of version 1.144. because it was relevant for `sap.ui.commons.FileUploader`.
17259
17303
  */
17260
17304
  iconSelected?: URI | PropertyBindingInfo | `{${string}}`;
17261
17305
 
@@ -17280,6 +17324,13 @@ declare module "sap/ui/unified/FileUploader" {
17280
17324
  */
17281
17325
  directory?: boolean | PropertyBindingInfo | `{${string}}`;
17282
17326
 
17327
+ /**
17328
+ * Indicates whether the file uploader is required.
17329
+ *
17330
+ * @since 1.144
17331
+ */
17332
+ required?: boolean | PropertyBindingInfo | `{${string}}`;
17333
+
17283
17334
  /**
17284
17335
  * The parameters for the `FileUploader` which are rendered as a hidden input field.
17285
17336
  *
@@ -17880,6 +17931,75 @@ declare module "sap/ui/unified/FileUploaderParameter" {
17880
17931
  }
17881
17932
  }
17882
17933
 
17934
+ declare module "sap/ui/unified/FileUploaderRenderer" {
17935
+ import RenderManager from "sap/ui/core/RenderManager";
17936
+
17937
+ import FileUploader from "sap/ui/unified/FileUploader";
17938
+
17939
+ /**
17940
+ * FileUploader renderer.
17941
+ *
17942
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
17943
+ */
17944
+ interface FileUploaderRenderer {
17945
+ /**
17946
+ * Adds the CSS value state classes to the control's root element using the provided {@link sap.ui.core.RenderManager}.
17947
+ *
17948
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
17949
+ */
17950
+ addValueStateClasses(
17951
+ /**
17952
+ * The RenderManager used for writing to the render output buffer.
17953
+ */
17954
+ oRm: RenderManager,
17955
+ /**
17956
+ * An object representation of the control that should be rendered.
17957
+ */
17958
+ oFileUploader: FileUploader
17959
+ ): void;
17960
+ /**
17961
+ * Returns the accessibility state of the control. Hook for the subclasses.
17962
+ *
17963
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
17964
+ *
17965
+ * @returns The accessibility state object.
17966
+ */
17967
+ getAccessibilityState(): /* was: sap.m.InputBaseAccessibilityState */ any;
17968
+ /**
17969
+ * Renders the hidden aria-describedby and error message nodes for accessibility.
17970
+ *
17971
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
17972
+ */
17973
+ renderValueStateAccDom(
17974
+ /**
17975
+ * The RenderManager used for writing to the render output buffer.
17976
+ */
17977
+ oRm: RenderManager,
17978
+ /**
17979
+ * An object representation of the control that should be rendered.
17980
+ */
17981
+ oFileUploader: FileUploader
17982
+ ): void;
17983
+ /**
17984
+ * Writes the accessibility state of the control. Hook for the subclasses.
17985
+ *
17986
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
17987
+ */
17988
+ writeAccessibilityState(
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: /* was: sap.m.InputBase */ any
17997
+ ): void;
17998
+ }
17999
+ const FileUploaderRenderer: FileUploaderRenderer;
18000
+ export default FileUploaderRenderer;
18001
+ }
18002
+
17883
18003
  declare module "sap/ui/unified/FileUploaderXHRSettings" {
17884
18004
  import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
17885
18005
 
@@ -18444,7 +18564,7 @@ declare module "sap/ui/unified/Menu" {
18444
18564
  /**
18445
18565
  * Returns all items that have `selected` properties set to `true`. **Note:** Only items with `selected`
18446
18566
  * 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.
18567
+ * or {@link sap.ui.core.ItemSelectionMode.MultiSelect}> are taken into account.
18448
18568
  *
18449
18569
  * @since 1.127.0
18450
18570
  *
@@ -19130,7 +19250,7 @@ declare module "sap/ui/unified/MenuItem" {
19130
19250
  * Determines whether the `MenuItem` is selected (default is set to `false`). A selected `MenuItem` has
19131
19251
  * a check mark rendered at its end. **Note: ** selection functionality works only if the menu item is a
19132
19252
  * member of `MenuItemGroup` with `itemSelectionMode` set to {@link sap.ui.core.ItemSelectionMode.SingleSelect }
19133
- * or {@link sap.ui.unified.ItemSelectionMode.MultiSelect}.
19253
+ * or {@link sap.ui.core.ItemSelectionMode.MultiSelect}.
19134
19254
  *
19135
19255
  * @since 1.127.0
19136
19256
  */
@@ -23316,6 +23436,8 @@ declare namespace sap {
23316
23436
 
23317
23437
  "sap/ui/unified/FileUploaderParameter": undefined;
23318
23438
 
23439
+ "sap/ui/unified/FileUploaderRenderer": undefined;
23440
+
23319
23441
  "sap/ui/unified/FileUploaderXHRSettings": undefined;
23320
23442
 
23321
23443
  "sap/ui/unified/library": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.143.0
1
+ // For Library Version: 1.144.0
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.143.0
1
+ // For Library Version: 1.144.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.0
1
+ // For Library Version: 1.144.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 {