@openui5/ts-types-esm 1.102.0 → 1.102.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/ts-types-esm",
3
- "version": "1.102.0",
3
+ "version": "1.102.1",
4
4
  "description": "OpenUI5 TypeScript Definitions - ES Modules",
5
5
  "homepage": "https://openui5.org",
6
6
  "author": "SAP SE (https://www.sap.com)",
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.1
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  export interface IToolHeader {
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.1
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -1960,6 +1960,31 @@ declare module "sap/m/library" {
1960
1960
  */
1961
1961
  GridSmall = "GridSmall",
1962
1962
  }
1963
+ /**
1964
+ * Defines the priority for the TileContent in ActionMode
1965
+ */
1966
+ export enum Priority {
1967
+ /**
1968
+ * It displays high priority color for the GenericTag
1969
+ */
1970
+ High = "High",
1971
+ /**
1972
+ * It displays low priority color for the GenericTag
1973
+ */
1974
+ Low = "Low",
1975
+ /**
1976
+ * It displays medium priority color for the GenericTag
1977
+ */
1978
+ Medium = "Medium",
1979
+ /**
1980
+ * The priority is not set
1981
+ */
1982
+ None = "None",
1983
+ /**
1984
+ * It displays very high priority color for the GenericTag
1985
+ */
1986
+ VeryHigh = "VeryHigh",
1987
+ }
1963
1988
  /**
1964
1989
  * QuickViewGroupElement is a combination of one label and another control (Link or Text) associated to
1965
1990
  * this label.
@@ -28400,6 +28425,18 @@ declare module "sap/m/GenericTile" {
28400
28425
  * to display an icon or image use sap.m.ImageContent control instead.
28401
28426
  */
28402
28427
  getIcon(): Control;
28428
+ /**
28429
+ * @EXPERIMENTAL
28430
+ *
28431
+ * Gets current value of property {@link #getIconLoaded iconLoaded}.
28432
+ *
28433
+ * The load state of the tileIcon.
28434
+ *
28435
+ * Default value is `true`.
28436
+ *
28437
+ * @returns Value of property `iconLoaded`
28438
+ */
28439
+ getIconLoaded(): boolean;
28403
28440
  /**
28404
28441
  * Gets current value of property {@link #getImageDescription imageDescription}.
28405
28442
  *
@@ -28889,6 +28926,25 @@ declare module "sap/m/GenericTile" {
28889
28926
  */
28890
28927
  oIcon: Control
28891
28928
  ): this;
28929
+ /**
28930
+ * @EXPERIMENTAL
28931
+ *
28932
+ * Sets a new value for property {@link #getIconLoaded iconLoaded}.
28933
+ *
28934
+ * The load state of the tileIcon.
28935
+ *
28936
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
28937
+ *
28938
+ * Default value is `true`.
28939
+ *
28940
+ * @returns Reference to `this` in order to allow method chaining
28941
+ */
28942
+ setIconLoaded(
28943
+ /**
28944
+ * New value for property `iconLoaded`
28945
+ */
28946
+ bIconLoaded?: boolean
28947
+ ): this;
28892
28948
  /**
28893
28949
  * Sets a new value for property {@link #getImageDescription imageDescription}.
28894
28950
  *
@@ -29378,6 +29434,13 @@ declare module "sap/m/GenericTile" {
29378
29434
  | PropertyBindingInfo
29379
29435
  | `{${string}}`;
29380
29436
 
29437
+ /**
29438
+ * @EXPERIMENTAL
29439
+ *
29440
+ * The load state of the tileIcon.
29441
+ */
29442
+ iconLoaded?: boolean | PropertyBindingInfo | `{${string}}`;
29443
+
29381
29444
  /**
29382
29445
  * The content of the tile.
29383
29446
  */
@@ -119451,12 +119514,16 @@ declare module "sap/m/TileContent" {
119451
119514
  PropertyBindingInfo,
119452
119515
  } from "sap/ui/base/ManagedObject";
119453
119516
 
119454
- import { ValueColor, FrameType, Size, LoadState } from "sap/m/library";
119517
+ import {
119518
+ ValueColor,
119519
+ FrameType,
119520
+ Priority,
119521
+ Size,
119522
+ LoadState,
119523
+ } from "sap/m/library";
119455
119524
 
119456
119525
  import ElementMetadata from "sap/ui/core/ElementMetadata";
119457
119526
 
119458
- import { Priority } from "sap/ui/core/library";
119459
-
119460
119527
  /**
119461
119528
  * @SINCE 1.34.0
119462
119529
  *
@@ -119601,6 +119668,16 @@ declare module "sap/m/TileContent" {
119601
119668
  * @returns Value of property `priority`
119602
119669
  */
119603
119670
  getPriority(): Priority | keyof typeof Priority;
119671
+ /**
119672
+ * @EXPERIMENTAL (since 1.103)
119673
+ *
119674
+ * Gets current value of property {@link #getPriorityText priorityText}.
119675
+ *
119676
+ * Sets the Text inside the Priority badge in Generic Tile ActionMode.
119677
+ *
119678
+ * @returns Value of property `priorityText`
119679
+ */
119680
+ getPriorityText(): string;
119604
119681
  /**
119605
119682
  * @deprecated (since 1.38.0) - The TileContent control has now a fixed size, depending on the used media
119606
119683
  * (desktop, tablet or phone).
@@ -119733,6 +119810,23 @@ declare module "sap/m/TileContent" {
119733
119810
  */
119734
119811
  sPriority?: Priority | keyof typeof Priority
119735
119812
  ): this;
119813
+ /**
119814
+ * @EXPERIMENTAL (since 1.103)
119815
+ *
119816
+ * Sets a new value for property {@link #getPriorityText priorityText}.
119817
+ *
119818
+ * Sets the Text inside the Priority badge in Generic Tile ActionMode.
119819
+ *
119820
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
119821
+ *
119822
+ * @returns Reference to `this` in order to allow method chaining
119823
+ */
119824
+ setPriorityText(
119825
+ /**
119826
+ * New value for property `priorityText`
119827
+ */
119828
+ sPriorityText?: string
119829
+ ): this;
119736
119830
  /**
119737
119831
  * Setter for protected property to enable or disable content rendering. This function does not invalidate
119738
119832
  * the control.
@@ -119873,6 +119967,13 @@ declare module "sap/m/TileContent" {
119873
119967
  | PropertyBindingInfo
119874
119968
  | `{${string}}`;
119875
119969
 
119970
+ /**
119971
+ * @EXPERIMENTAL (since 1.103)
119972
+ *
119973
+ * Sets the Text inside the Priority badge in Generic Tile ActionMode.
119974
+ */
119975
+ priorityText?: string | PropertyBindingInfo;
119976
+
119876
119977
  /**
119877
119978
  * @SINCE 1.100.0
119878
119979
  *
@@ -127943,6 +128044,18 @@ declare module "sap/m/upload/UploadSet" {
127943
128044
  */
127944
128045
  iIndex: int
127945
128046
  ): this;
128047
+ /**
128048
+ * Opens the FileUploader dialog. When an UploadSetItem is provided, this method can be used to update a
128049
+ * file with a new version.
128050
+ *
128051
+ * @returns this to allow method chaining
128052
+ */
128053
+ openFileDialog(
128054
+ /**
128055
+ * The UploadSetItem to update with a new version. This parameter is mandatory.
128056
+ */
128057
+ item: /* was: sap.m.UploadSetItem */ any
128058
+ ): this;
127946
128059
  /**
127947
128060
  * Attaches all necessary handlers to the given uploader instance, so that the progress and status of the
127948
128061
  * upload can be displayed and monitored. This is necessary in case when custom uploader is used.
@@ -129616,6 +129729,88 @@ declare module "sap/m/upload/UploadSetItem" {
129616
129729
  }
129617
129730
  }
129618
129731
 
129732
+ declare module "sap/m/upload/UploadSetToolbarPlaceholder" {
129733
+ import { default as Control, $ControlSettings } from "sap/ui/core/Control";
129734
+
129735
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
129736
+
129737
+ /**
129738
+ * Used to create a customizable toolbar for the UploadSet. A FileUploader instance is required in the toolbar
129739
+ * and it is placed by the application.
129740
+ */
129741
+ export default class UploadSetToolbarPlaceholder extends Control {
129742
+ /**
129743
+ * Constructor for a new UploadSetToolbarPlaceholder.
129744
+ *
129745
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
129746
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
129747
+ * of the syntax of the settings object.
129748
+ *
129749
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.core.Control#constructor
129750
+ * sap.ui.core.Control} can be used.
129751
+ */
129752
+ constructor(
129753
+ /**
129754
+ * initial settings for the new control
129755
+ */
129756
+ mSettings?: $UploadSetToolbarPlaceholderSettings
129757
+ );
129758
+ /**
129759
+ * Constructor for a new UploadSetToolbarPlaceholder.
129760
+ *
129761
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
129762
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
129763
+ * of the syntax of the settings object.
129764
+ *
129765
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.core.Control#constructor
129766
+ * sap.ui.core.Control} can be used.
129767
+ */
129768
+ constructor(
129769
+ /**
129770
+ * ID for the new control, generated automatically if no ID is given
129771
+ */
129772
+ sId?: string,
129773
+ /**
129774
+ * initial settings for the new control
129775
+ */
129776
+ mSettings?: $UploadSetToolbarPlaceholderSettings
129777
+ );
129778
+
129779
+ /**
129780
+ * Creates a new subclass of class sap.m.upload.UploadSetToolbarPlaceholder with name `sClassName` and enriches
129781
+ * it with the information contained in `oClassInfo`.
129782
+ *
129783
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
129784
+ *
129785
+ * @returns Created class / constructor function
129786
+ */
129787
+ static extend<T extends Record<string, unknown>>(
129788
+ /**
129789
+ * Name of the class being created
129790
+ */
129791
+ sClassName: string,
129792
+ /**
129793
+ * Object literal with information about the class
129794
+ */
129795
+ oClassInfo?: sap.ClassInfo<T, UploadSetToolbarPlaceholder>,
129796
+ /**
129797
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
129798
+ * used by this class
129799
+ */
129800
+ FNMetaImpl?: Function
129801
+ ): Function;
129802
+ /**
129803
+ * Returns a metadata object for class sap.m.upload.UploadSetToolbarPlaceholder.
129804
+ *
129805
+ * @returns Metadata object describing this class
129806
+ */
129807
+ static getMetadata(): ElementMetadata;
129808
+ }
129809
+
129810
+ export interface $UploadSetToolbarPlaceholderSettings
129811
+ extends $ControlSettings {}
129812
+ }
129813
+
129619
129814
  declare module "sap/m/UploadCollection" {
129620
129815
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
129621
129816
 
@@ -138778,6 +138973,8 @@ declare namespace sap {
138778
138973
 
138779
138974
  "sap/m/upload/UploadSetItem": undefined;
138780
138975
 
138976
+ "sap/m/upload/UploadSetToolbarPlaceholder": undefined;
138977
+
138781
138978
  "sap/m/UploadCollection": undefined;
138782
138979
 
138783
138980
  "sap/m/UploadCollectionItem": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.1
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.1
2
2
 
3
3
  declare module "sap/ui/codeeditor/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.1
2
2
 
3
3
  declare module "sap/ui/commons/library" {
4
4
  import { ColorPickerMode as ColorPickerMode1 } from "sap/ui/unified/library";
@@ -264,7 +264,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
264
264
  ): jQuery;
265
265
  }
266
266
 
267
- // For Library Version: 1.102.0
267
+ // For Library Version: 1.102.1
268
268
 
269
269
  declare module "sap/base/assert" {
270
270
  /**
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.1
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.1
2
2
 
3
3
  declare module "sap/ui/fl/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.1
2
2
 
3
3
  declare module "sap/ui/integration/library" {
4
4
  import { URI } from "sap/ui/core/library";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.1
2
2
 
3
3
  declare module "sap/ui/layout/library" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.1
2
2
 
3
3
  declare module "sap/ui/mdc/filterbar/vh/FilterContainer" {
4
4
  import Metadata from "sap/ui/base/Metadata";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.1
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.1
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.1
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.1
2
2
 
3
3
  declare module "sap/ui/table/library" {
4
4
  import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.1
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.1
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.1
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.1
2
2
 
3
3
  declare module "sap/ui/webc/common/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.1
2
2
 
3
3
  declare module "sap/ui/webc/fiori/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.1
2
2
 
3
3
  declare module "sap/ui/webc/main/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.102.1
2
2
 
3
3
  declare module "sap/uxap/library" {
4
4
  /**