@openui5/types 1.126.0 → 1.127.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.126.0
1
+ // For Library Version: 1.127.0
2
2
 
3
3
  declare module "sap/ui/codeeditor/library" {}
4
4
 
@@ -268,11 +268,14 @@ declare module "sap/ui/codeeditor/CodeEditor" {
268
268
  /**
269
269
  * Gets current value of property {@link #getColorTheme colorTheme}.
270
270
  *
271
- * Sets the editor color theme. Possible values are: default, hcb, hcb_bright, hcb_blue, theme-ambiance,
272
- * chaos, chrome, clouds, clouds_midnight, cobalt, crimson_editor, dawn, dreamweaver, eclipse, github, gob,
273
- * gruvbox, idle_fingers, iplastic, katzenmilch, kr_theme, kuroir, merbivore, merbivore_soft, mono_industrial,
274
- * monokai, pastel_on_dark, solarized_dark, solarized_light, sqlserver, terminal, textmate, tomorrow, tomorrow_night,
275
- * tomorrow_night_blue, tomorrow_night_bright, tomorrow_night_eighties, twilight, dracula vibrant_ink, xcode
271
+ * Sets the editor color theme. Possible values are:
272
+ * - default: best fitting to the current UI5 theme
273
+ * - any light theme from the list: chrome, clouds, crimson_editor, dawn, dreamweaver, eclipse, github,
274
+ * iplastic, solarized_light, textmate, tomorrow, xcode, kuroir, katzenmilch, sqlserver
275
+ * - any dark theme from the list: hcb, hcb_bright, hcb_blue, ambiance, chaos, clouds_midnight, dracula,
276
+ * cobalt, gruvbox, gob, idle_fingers, kr_theme, merbivore, merbivore_soft, mono_industrial, monokai, nord_dark,
277
+ * one_dark, pastel_on_dark, solarized_dark, terminal, tomorrow_night, tomorrow_night_blue, tomorrow_night_bright,
278
+ * tomorrow_night_eighties, twilight, vibrant_ink, github_dark
276
279
  *
277
280
  * Default value is `"default"`.
278
281
  *
@@ -679,11 +682,14 @@ declare module "sap/ui/codeeditor/CodeEditor" {
679
682
  maxLines?: int | PropertyBindingInfo | `{${string}}`;
680
683
 
681
684
  /**
682
- * Sets the editor color theme. Possible values are: default, hcb, hcb_bright, hcb_blue, theme-ambiance,
683
- * chaos, chrome, clouds, clouds_midnight, cobalt, crimson_editor, dawn, dreamweaver, eclipse, github, gob,
684
- * gruvbox, idle_fingers, iplastic, katzenmilch, kr_theme, kuroir, merbivore, merbivore_soft, mono_industrial,
685
- * monokai, pastel_on_dark, solarized_dark, solarized_light, sqlserver, terminal, textmate, tomorrow, tomorrow_night,
686
- * tomorrow_night_blue, tomorrow_night_bright, tomorrow_night_eighties, twilight, dracula vibrant_ink, xcode
685
+ * Sets the editor color theme. Possible values are:
686
+ * - default: best fitting to the current UI5 theme
687
+ * - any light theme from the list: chrome, clouds, crimson_editor, dawn, dreamweaver, eclipse, github,
688
+ * iplastic, solarized_light, textmate, tomorrow, xcode, kuroir, katzenmilch, sqlserver
689
+ * - any dark theme from the list: hcb, hcb_bright, hcb_blue, ambiance, chaos, clouds_midnight, dracula,
690
+ * cobalt, gruvbox, gob, idle_fingers, kr_theme, merbivore, merbivore_soft, mono_industrial, monokai, nord_dark,
691
+ * one_dark, pastel_on_dark, solarized_dark, terminal, tomorrow_night, tomorrow_night_blue, tomorrow_night_bright,
692
+ * tomorrow_night_eighties, twilight, vibrant_ink, github_dark
687
693
  */
688
694
  colorTheme?: string | PropertyBindingInfo;
689
695
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.126.0
1
+ // For Library Version: 1.127.0
2
2
 
3
3
  declare module "sap/ui/commons/library" {
4
4
  import { ColorPickerMode as ColorPickerMode1 } from "sap/ui/unified/library";
@@ -279,7 +279,7 @@ declare namespace sap {
279
279
  "sap/ui/thirdparty/qunit-2": undefined;
280
280
  }
281
281
  }
282
- // For Library Version: 1.126.0
282
+ // For Library Version: 1.127.0
283
283
 
284
284
  declare module "sap/base/assert" {
285
285
  /**
@@ -6272,6 +6272,10 @@ declare module "sap/ui/performance/trace/Interaction" {
6272
6272
  * The default PassportAction for startup
6273
6273
  */
6274
6274
  passportAction: string;
6275
+ /**
6276
+ * The root context ID
6277
+ */
6278
+ rootId: string;
6275
6279
  };
6276
6280
 
6277
6281
  /**
@@ -7152,6 +7156,43 @@ declare module "sap/ui/test/opaQunit" {
7152
7156
  ): void;
7153
7157
  }
7154
7158
 
7159
+ declare module "sap/ui/test/utils/nextUIUpdate" {
7160
+ /**
7161
+ * Return a Promise that resolves when the next Rendering is ready. If no rendering is sheduled it resolves
7162
+ * immediately.
7163
+ *
7164
+ * **Note:** No module from `sap/ui/test` should be used for productive coding!
7165
+ *
7166
+ * @since 1.127
7167
+ *
7168
+ * @returns A promise resolving when the next UI update is finished or rejecting when the next update fails.
7169
+ */
7170
+ export default function nextUIUpdate(
7171
+ /**
7172
+ * An optional sinon clock. When using sinon faketimers the clock must be ticked to ensure async rendering.
7173
+ * Async rendering is done with a setTimeout(0) so, when given, we tick the clock by 1.
7174
+ */
7175
+ clock?: {
7176
+ tick: Function;
7177
+ }
7178
+ ): Promise<undefined>;
7179
+ }
7180
+
7181
+ declare module "sap/ui/test/utils/waitForThemeApplied" {
7182
+ /**
7183
+ * Checks whether the theme has already been applied and if not, waits for the 'applied' event to be fired.
7184
+ *
7185
+ * Returns a rejected promise if the Core is not ready yet.
7186
+ *
7187
+ * **Note:** No module from `sap/ui/test` should be used for productive coding!
7188
+ *
7189
+ * @since 1.127
7190
+ *
7191
+ * @returns Promise that resolves when the theme has been applied
7192
+ */
7193
+ export default function waitForThemeApplied(): Promise<undefined>;
7194
+ }
7195
+
7155
7196
  declare module "sap/ui/util/Mobile" {
7156
7197
  /**
7157
7198
  * @since 1.58
@@ -14059,6 +14100,27 @@ declare module "sap/ui/core/library" {
14059
14100
  __implements__sap_ui_core_IShrinkable: boolean;
14060
14101
  }
14061
14102
 
14103
+ /**
14104
+ * Defines the selection mode of the menu items.
14105
+ *
14106
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'ItemSelectionMode'.
14107
+ *
14108
+ * @since 1.127.0
14109
+ */
14110
+ export enum ItemSelectionMode {
14111
+ /**
14112
+ * Multi selection mode (more than one menu item can be selected).
14113
+ */
14114
+ MultiSelect = "undefined",
14115
+ /**
14116
+ * No selection mode.
14117
+ */
14118
+ None = "undefined",
14119
+ /**
14120
+ * Single selection mode (only one menu item can be selected).
14121
+ */
14122
+ SingleSelect = "undefined",
14123
+ }
14062
14124
  /**
14063
14125
  * Marker interface for controls that can be used in `content` aggregation of the `sap.m.Title` control.
14064
14126
  *
@@ -18795,7 +18857,7 @@ declare module "sap/ui/core/Control" {
18795
18857
  *
18796
18858
  * @returns Current accessibility state of the control.
18797
18859
  */
18798
- getAccessibilityInfo(): AccessibilityInfo;
18860
+ getAccessibilityInfo?(): AccessibilityInfo;
18799
18861
  /**
18800
18862
  * Gets current value of property blocked.
18801
18863
  *
@@ -19462,7 +19524,7 @@ declare module "sap/ui/core/Core" {
19462
19524
  * @deprecated (since 1.118) - without replacement. In the next major version, synchronously rendering UI
19463
19525
  * updates is no longer supported as it can lead to unnecessary intermediate DOM updates or layout shifting
19464
19526
  * etc. Controls should rather use invalidation and apps should not trigger rendering at all but rather
19465
- * rely on the framework's automatic update mechanisms. Test code can use the test module `sap/ui/qunit/utils/nextUIUpdate`
19527
+ * rely on the framework's automatic update mechanisms. Test code can use the test module `sap/ui/test/utils/nextUIUpdate`
19466
19528
  * as a convenient way to wait for the next asynchronous rendering.
19467
19529
  */
19468
19530
  applyChanges(): void;
@@ -24383,7 +24445,7 @@ declare module "sap/ui/core/Element" {
24383
24445
  *
24384
24446
  * @ui5-protected Do not call from applications (only from related classes in the framework)
24385
24447
  */
24386
- enhanceAccessibilityState(
24448
+ enhanceAccessibilityState?(
24387
24449
  /**
24388
24450
  * The Control/Element for which ARIA properties are collected
24389
24451
  */
@@ -24530,6 +24592,36 @@ declare module "sap/ui/core/Element" {
24530
24592
  */
24531
24593
  sModelName?: string
24532
24594
  ): ContextBinding | undefined;
24595
+ /**
24596
+ * ID of the element which is the current target of the association {@link #getFieldHelpDisplay fieldHelpDisplay},
24597
+ * or `null`.
24598
+ */
24599
+ getFieldHelpDisplay(): ID | null;
24600
+ /**
24601
+ * This function (if available on the concrete subclass) provides information for the field help.
24602
+ *
24603
+ * Applications must not call this hook method directly, it is called by the framework.
24604
+ *
24605
+ * Subclasses should implement this hook to provide any necessary information for displaying field help:
24606
+ *
24607
+ *
24608
+ * ```javascript
24609
+ *
24610
+ * MyElement.prototype.getFieldHelpInfo = function() {
24611
+ * return {
24612
+ * label: "some label"
24613
+ * };
24614
+ * };
24615
+ * ```
24616
+ *
24617
+ *
24618
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
24619
+ *
24620
+ * @returns Field Help Information of the element.
24621
+ */
24622
+ getFieldHelpInfo?(): {
24623
+ label: string;
24624
+ };
24533
24625
  /**
24534
24626
  * Returns the DOM Element that should get the focus or `null` if there's no such element currently.
24535
24627
  *
@@ -24740,6 +24832,19 @@ declare module "sap/ui/core/Element" {
24740
24832
  * @returns Whether the element can get the focus after calling {@link #focus}
24741
24833
  */
24742
24834
  isFocusable(): boolean;
24835
+ /**
24836
+ * Handles the 'focusfail' event by attempting to find and focus on a tabbable element. The 'focusfail'
24837
+ * event is triggered when the current element, which initially holds the focus, becomes disabled or invisible.
24838
+ * The event is received by the parent of the element that failed to retain the focus.
24839
+ *
24840
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
24841
+ */
24842
+ onfocusfail(
24843
+ /**
24844
+ * The event object containing the source element that failed to gain focus.
24845
+ */
24846
+ oEvent: Event
24847
+ ): void;
24743
24848
  /**
24744
24849
  * This function either calls set[sPropertyName] or get[sPropertyName] with the specified property name
24745
24850
  * depending if an `oValue` is provided or not.
@@ -24858,6 +24963,19 @@ declare module "sap/ui/core/Element" {
24858
24963
  * @ui5-protected Do not call from applications (only from related classes in the framework)
24859
24964
  */
24860
24965
  rerender(): void;
24966
+ /**
24967
+ * Sets the associated {@link #getFieldHelpDisplay fieldHelpDisplay}.
24968
+ *
24969
+ *
24970
+ * @returns Reference to `this` in order to allow method chaining
24971
+ */
24972
+ setFieldHelpDisplay(
24973
+ /**
24974
+ * ID of an element which becomes the new target of this fieldHelpDisplay association; alternatively, an
24975
+ * element instance may be given
24976
+ */
24977
+ oFieldHelpDisplay: ID | UI5Element
24978
+ ): this;
24861
24979
  /**
24862
24980
  * Sets the {@link sap.ui.core.LayoutData} defining the layout constraints for this control when it is used
24863
24981
  * inside a layout.
@@ -25102,6 +25220,12 @@ declare module "sap/ui/core/Element" {
25102
25220
  | DragDropBase
25103
25221
  | AggregationBindingInfo
25104
25222
  | `{${string}}`;
25223
+
25224
+ /**
25225
+ * Reference to the element to show the field help for this control; if unset, field help is show on the
25226
+ * control itself.
25227
+ */
25228
+ fieldHelpDisplay?: UI5Element | string;
25105
25229
  }
25106
25230
 
25107
25231
  export namespace MetadataOptions {
@@ -33817,14 +33941,64 @@ declare module "sap/ui/core/mvc/ControllerExtension" {
33817
33941
  * **Note:** This static method is automatically propagated to subclasses of `ControllerExtension`.
33818
33942
  *
33819
33943
  *
33820
- * @returns A controller extension class
33944
+ * @returns The adapted controller extension class
33821
33945
  */
33822
- static override(
33946
+ static override<
33947
+ TheExtension extends new () => ControllerExtension,
33948
+ AddtlProps extends object,
33949
+ >(
33950
+ this: TheExtension,
33823
33951
  /**
33824
33952
  * The custom extension definition
33825
33953
  */
33826
- oExtension: Record<string, Function>
33827
- ): Function;
33954
+ customExtension: AddtlProps
33955
+ ): new () => InstanceType<TheExtension> & AddtlProps;
33956
+ /**
33957
+ * A marker method for applying controller extensions to controller class members in TypeScript code.
33958
+ * This method is only used to make TypeScript usage compatible to the UI5 runtime behavior, where an extension
33959
+ * *class* is assigned when the controller is defined, but each controller instance gets an *instance* of
33960
+ * this extension. This method call is removed in the class transformer when the ES class is transformed
33961
+ * to the traditional UI5 class definition syntax.
33962
+ *
33963
+ * To allow for proper removal, it may only be called directly on the base class `ControllerExtension`,
33964
+ * at the place where a controller extension is assigned to a member property of the new controller class.
33965
+ * The class transformation then removes this call. If it is not removed because it is used in any other
33966
+ * way, then it throws an error at runtime.
33967
+ *
33968
+ * Usage example:
33969
+ * ```javascript
33970
+ * import Routing from "sap/fe/core/controllerextensions/Routing";
33971
+ * import ControllerExtension from "sap/ui/core/mvc/ControllerExtension";
33972
+ * ...
33973
+ * export default class App extends Controller {
33974
+ * routing = ControllerExtension.use(Routing);
33975
+ * ```
33976
+ *
33977
+ * Usage example with overriding extension callbacks:
33978
+ * ```javascript
33979
+ * import Routing from "sap/fe/core/controllerextensions/Routing";
33980
+ * import ControllerExtension from "sap/ui/core/mvc/ControllerExtension";
33981
+ * ...
33982
+ * export default class App extends Controller {
33983
+ * routing = ControllerExtension.use(Routing.override({
33984
+ * ...
33985
+ * }));
33986
+ * ```
33987
+ *
33988
+ *
33989
+ *
33990
+ * @returns An instance of the given `ControllerExtension`. **NOTE:** this is only a dummy return type for
33991
+ * proper usage in TypeScript. This method does not actually return an instance of `ControllerExtension`,
33992
+ * but only throws an error at runtime. The sole purpose of this method is to mimic the actual runtime behavior
33993
+ * where a *class* is given when a controller is defined, but an *instance* is present in each controller
33994
+ * instance.
33995
+ */
33996
+ static use<TheExtension extends ControllerExtension>(
33997
+ /**
33998
+ * The ControllerExtension to use
33999
+ */
34000
+ extensionClass: new () => TheExtension
34001
+ ): TheExtension;
33828
34002
  /**
33829
34003
  * Returns an Element of the connected view with the given local ID.
33830
34004
  *
@@ -71048,7 +71222,7 @@ declare module "sap/ui/model/odata/v4/Context" {
71048
71222
  * of reset or failure.
71049
71223
  *
71050
71224
  * Since 1.125.0, deleting a node in a recursive hierarchy (see {@link sap.ui.model.odata.v4.ODataListBinding#setAggregation})
71051
- * is supported. As a precondition, the context must not be both {@link #setKeepAlive kept-alive} and hidden
71225
+ * is supported. As a precondition, the context must not be both {@link #setKeepAlive kept alive} and hidden
71052
71226
  * (for example due to a filter), and the group ID must not have {@link sap.ui.model.odata.v4.SubmitMode.API}.
71053
71227
  * Such a deletion is not a pending change.
71054
71228
  * See:
@@ -71106,14 +71280,22 @@ declare module "sap/ui/model/odata/v4/Context" {
71106
71280
  */
71107
71281
  destroy(): void;
71108
71282
  /**
71109
- * Expands the group node that this context points to.
71283
+ * Expands the group node that this context points to. Since 1.127.0, it is possible to expand a group node
71284
+ * by a given number of levels.
71110
71285
  * See:
71111
71286
  * #collapse
71112
71287
  * #isExpanded
71113
71288
  *
71114
71289
  * @since 1.77.0
71115
71290
  */
71116
- expand(): void;
71291
+ expand(
71292
+ /**
71293
+ * The number of levels to expand (@experimental as of version 1.127.0), `iLevels >= Number.MAX_SAFE_INTEGER`
71294
+ * can be used to expand all levels. If a node is expanded a second time, the expand state of the descendants
71295
+ * is not changed.
71296
+ */
71297
+ iLevels?: number
71298
+ ): void;
71117
71299
  /**
71118
71300
  * Returns the binding this context belongs to.
71119
71301
  *
@@ -72068,7 +72250,7 @@ declare module "sap/ui/model/odata/v4/ODataContextBinding" {
72068
72250
  * because they relate to a {@link sap.ui.model.odata.v4.Context#isKeepAlive kept-alive} (since 1.97.0)
72069
72251
  * or {@link sap.ui.model.odata.v4.Context#delete deleted} (since 1.108.0) context of this binding. Since
72070
72252
  * 1.98.0, {@link sap.ui.model.odata.v4.Context#isTransient transient} contexts of a {@link #getRootBinding root binding }
72071
- * are treated as kept-alive by this flag. Since 1.99.0, the same happens for bindings using the `$$ownRequest`
72253
+ * are treated as kept alive by this flag. Since 1.99.0, the same happens for bindings using the `$$ownRequest`
72072
72254
  * parameter (see {@link sap.ui.model.odata.v4.ODataModel#bindList}).
72073
72255
  */
72074
72256
  bIgnoreKeptAlive?: boolean
@@ -73109,7 +73291,7 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
73109
73291
  * because they relate to a {@link sap.ui.model.odata.v4.Context#isKeepAlive kept-alive} (since 1.97.0)
73110
73292
  * or {@link sap.ui.model.odata.v4.Context#delete deleted} (since 1.108.0) context of this binding. Since
73111
73293
  * 1.98.0, {@link sap.ui.model.odata.v4.Context#isTransient transient} contexts of a {@link #getRootBinding root binding }
73112
- * are treated as kept-alive by this flag. Since 1.99.0, the same happens for bindings using the `$$ownRequest`
73294
+ * are treated as kept alive by this flag. Since 1.99.0, the same happens for bindings using the `$$ownRequest`
73113
73295
  * parameter (see {@link sap.ui.model.odata.v4.ODataModel#bindList}).
73114
73296
  */
73115
73297
  bIgnoreKeptAlive?: boolean
@@ -74183,6 +74365,11 @@ declare module "sap/ui/model/odata/v4/ODataMetaModel" {
74183
74365
  * results in "@com.sap.vocabularies.Common.v1.Label" and a slash does not make any difference as long as
74184
74366
  * the annotation does not have a "$Type" property. A technical property (that is, a numerical segment
74185
74367
  * or one starting with a "$") immediately before "@sapui.name" is invalid, for example "/$EntityContainer@sapui.name".
74368
+ * Since 1.127.0, "@sapui.name" can also be used to access the resulting name of an entity set via
74369
+ * a navigation property binding. This allows XML Templating to use "${entitySet>@sapui.name}" no matter
74370
+ * whether the variable "entitySet" refers to "/TEAMS" or "/TEAMS/$NavigationPropertyBinding/TEAM_2_EMPLOYEES".
74371
+ * This way, "/TEAMS@sapui.name" results in "TEAMS" and "/TEAMS/$NavigationPropertyBinding/TEAM_2_EMPLOYEES@sapui.name"
74372
+ * results either in a simple name like "EMPLOYEES" or maybe in a path like "some.other.EntityContainer/SomeEntitySet".
74186
74373
  * The path must not continue after "@sapui.name".
74187
74374
  *
74188
74375
  * If the current object is a string value, that string value is treated as a relative path and followed
@@ -74659,7 +74846,8 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
74659
74846
  synchronizationMode?: string;
74660
74847
  /**
74661
74848
  * The group ID that is used for update requests. If no update group ID is specified, `mParameters.groupId`
74662
- * is used. Valid update group IDs are `undefined`, '$auto', '$direct' or an application group ID.
74849
+ * is used. Valid update group IDs are `undefined`, '$auto', '$auto.*', '$direct' or an application group
74850
+ * ID.
74663
74851
  */
74664
74852
  updateGroupId?: string;
74665
74853
  /**
@@ -75023,9 +75211,8 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
75023
75211
  * If the target type specified in the corresponding control property's binding info is "any" and the binding
75024
75212
  * is relative or points to metadata, the binding may have an object value; in this case and unless the
75025
75213
  * binding refers to an action advertisement the binding's mode must be {@link sap.ui.model.BindingMode.OneTime}.
75026
- * {@link sap.ui.model.BindingMode.OneWay OneWay} is also supported (@experimental as of version 1.126.0),
75027
- * but client-side updates of the object are not supported and `$$patchWithoutSideEffects` should be used
75028
- * for the parent entity.
75214
+ * {@link sap.ui.model.BindingMode.OneWay OneWay} is also supported (@experimental as of version 1.126.0)
75215
+ * for complex types and collections thereof; for entity types, use {@link #bindContext} instead.
75029
75216
  * See:
75030
75217
  * sap.ui.base.ManagedObject#bindProperty
75031
75218
  * sap.ui.model.Model#bindProperty
@@ -75920,7 +76107,7 @@ declare module "sap/ui/model/odata/v4/ODataPropertyBinding" {
75920
76107
  * because they relate to a {@link sap.ui.model.odata.v4.Context#isKeepAlive kept-alive} (since 1.97.0)
75921
76108
  * or {@link sap.ui.model.odata.v4.Context#delete deleted} (since 1.108.0) context of this binding. Since
75922
76109
  * 1.98.0, {@link sap.ui.model.odata.v4.Context#isTransient transient} contexts of a {@link #getRootBinding root binding }
75923
- * are treated as kept-alive by this flag. Since 1.99.0, the same happens for bindings using the `$$ownRequest`
76110
+ * are treated as kept alive by this flag. Since 1.99.0, the same happens for bindings using the `$$ownRequest`
75924
76111
  * parameter (see {@link sap.ui.model.odata.v4.ODataModel#bindList}).
75925
76112
  */
75926
76113
  bIgnoreKeptAlive?: boolean
@@ -84474,8 +84661,6 @@ declare module "sap/ui/test/RecordReplay" {
84474
84661
  }
84475
84662
  /**
84476
84663
  * Root namespace for JavaScript functionality provided by SAP SE.
84477
- *
84478
- * The `sap` namespace is automatically registered with the OpenAjax hub if it exists.
84479
84664
  */
84480
84665
  declare namespace sap {
84481
84666
  /**
@@ -87751,6 +87936,8 @@ declare namespace sap {
87751
87936
 
87752
87937
  "sap/ui/dom/includeStylesheet": undefined;
87753
87938
 
87939
+ "sap/ui/dom/isElementCovered": undefined;
87940
+
87754
87941
  "sap/ui/dom/isHidden": undefined;
87755
87942
 
87756
87943
  "sap/ui/dom/jquery/Aria": undefined;
@@ -88129,6 +88316,10 @@ declare namespace sap {
88129
88316
 
88130
88317
  "sap/ui/test/RecordReplay": undefined;
88131
88318
 
88319
+ "sap/ui/test/utils/nextUIUpdate": undefined;
88320
+
88321
+ "sap/ui/test/utils/waitForThemeApplied": undefined;
88322
+
88132
88323
  "sap/ui/thirdparty/jquery": undefined;
88133
88324
 
88134
88325
  "sap/ui/util/ActivityDetection": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.126.0
1
+ // For Library Version: 1.127.0
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.126.0
1
+ // For Library Version: 1.127.0
2
2
 
3
3
  declare module "sap/ui/fl/library" {}
4
4
 
@@ -1512,6 +1512,8 @@ declare namespace sap {
1512
1512
 
1513
1513
  "sap/ui/fl/apply/_internal/changes/descriptor/app/RemoveAllInboundsExceptOne": undefined;
1514
1514
 
1515
+ "sap/ui/fl/apply/_internal/changes/descriptor/app/SetAch": undefined;
1516
+
1515
1517
  "sap/ui/fl/apply/_internal/changes/descriptor/app/SetTitle": undefined;
1516
1518
 
1517
1519
  "sap/ui/fl/apply/_internal/changes/descriptor/fiori/SetAbstract": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.126.0
1
+ // For Library Version: 1.127.0
2
2
 
3
3
  declare module "sap/ui/integration/library" {
4
4
  import { URI } from "sap/ui/core/library";
@@ -1503,6 +1503,20 @@ declare module "sap/ui/integration/widgets/Card" {
1503
1503
  */
1504
1504
  bIgnoreKeyFallback?: boolean
1505
1505
  ): string;
1506
+ /**
1507
+ * Gets current value of property {@link #getUseProgressiveDisclosure useProgressiveDisclosure}.
1508
+ *
1509
+ * If the card should change depending on its size. This property is temporary. Should be used to enable
1510
+ * the feature for cards where it is needed.
1511
+ *
1512
+ * Default value is `false`.
1513
+ *
1514
+ * @since 1.127
1515
+ * @experimental (since 1.127)
1516
+ *
1517
+ * @returns Value of property `useProgressiveDisclosure`
1518
+ */
1519
+ getUseProgressiveDisclosure(): boolean;
1506
1520
  /**
1507
1521
  * Hide the blocking message that is shown in the card by `showBlockingMessage` call.
1508
1522
  *
@@ -1878,6 +1892,27 @@ declare module "sap/ui/integration/widgets/Card" {
1878
1892
  */
1879
1893
  sReferenceId?: string
1880
1894
  ): this;
1895
+ /**
1896
+ * Sets a new value for property {@link #getUseProgressiveDisclosure useProgressiveDisclosure}.
1897
+ *
1898
+ * If the card should change depending on its size. This property is temporary. Should be used to enable
1899
+ * the feature for cards where it is needed.
1900
+ *
1901
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1902
+ *
1903
+ * Default value is `false`.
1904
+ *
1905
+ * @since 1.127
1906
+ * @experimental (since 1.127)
1907
+ *
1908
+ * @returns Reference to `this` in order to allow method chaining
1909
+ */
1910
+ setUseProgressiveDisclosure(
1911
+ /**
1912
+ * New value for property `useProgressiveDisclosure`
1913
+ */
1914
+ bUseProgressiveDisclosure?: boolean
1915
+ ): this;
1881
1916
  /**
1882
1917
  * Show blocking message in the card's content area. Should be used after the `manifestApplied` event or
1883
1918
  * after the `cardReady` lifecycle hook in Component cards and Extensions.
@@ -2432,6 +2467,15 @@ declare module "sap/ui/integration/widgets/Card" {
2432
2467
  | PropertyBindingInfo
2433
2468
  | `{${string}}`;
2434
2469
 
2470
+ /**
2471
+ * If the card should change depending on its size. This property is temporary. Should be used to enable
2472
+ * the feature for cards where it is needed.
2473
+ *
2474
+ * @since 1.127
2475
+ * @experimental (since 1.127)
2476
+ */
2477
+ useProgressiveDisclosure?: boolean | PropertyBindingInfo | `{${string}}`;
2478
+
2435
2479
  /**
2436
2480
  * Actions definitions from which actions in the header menu of the card are created. **Note**: This aggregation
2437
2481
  * is destroyed when the property `manifest` changes.