@openui5/types 1.126.1 → 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.1
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.1
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.1
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 {
@@ -71098,7 +71222,7 @@ declare module "sap/ui/model/odata/v4/Context" {
71098
71222
  * of reset or failure.
71099
71223
  *
71100
71224
  * Since 1.125.0, deleting a node in a recursive hierarchy (see {@link sap.ui.model.odata.v4.ODataListBinding#setAggregation})
71101
- * 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
71102
71226
  * (for example due to a filter), and the group ID must not have {@link sap.ui.model.odata.v4.SubmitMode.API}.
71103
71227
  * Such a deletion is not a pending change.
71104
71228
  * See:
@@ -71156,14 +71280,22 @@ declare module "sap/ui/model/odata/v4/Context" {
71156
71280
  */
71157
71281
  destroy(): void;
71158
71282
  /**
71159
- * 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.
71160
71285
  * See:
71161
71286
  * #collapse
71162
71287
  * #isExpanded
71163
71288
  *
71164
71289
  * @since 1.77.0
71165
71290
  */
71166
- 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;
71167
71299
  /**
71168
71300
  * Returns the binding this context belongs to.
71169
71301
  *
@@ -72118,7 +72250,7 @@ declare module "sap/ui/model/odata/v4/ODataContextBinding" {
72118
72250
  * because they relate to a {@link sap.ui.model.odata.v4.Context#isKeepAlive kept-alive} (since 1.97.0)
72119
72251
  * or {@link sap.ui.model.odata.v4.Context#delete deleted} (since 1.108.0) context of this binding. Since
72120
72252
  * 1.98.0, {@link sap.ui.model.odata.v4.Context#isTransient transient} contexts of a {@link #getRootBinding root binding }
72121
- * 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`
72122
72254
  * parameter (see {@link sap.ui.model.odata.v4.ODataModel#bindList}).
72123
72255
  */
72124
72256
  bIgnoreKeptAlive?: boolean
@@ -73159,7 +73291,7 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
73159
73291
  * because they relate to a {@link sap.ui.model.odata.v4.Context#isKeepAlive kept-alive} (since 1.97.0)
73160
73292
  * or {@link sap.ui.model.odata.v4.Context#delete deleted} (since 1.108.0) context of this binding. Since
73161
73293
  * 1.98.0, {@link sap.ui.model.odata.v4.Context#isTransient transient} contexts of a {@link #getRootBinding root binding }
73162
- * 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`
73163
73295
  * parameter (see {@link sap.ui.model.odata.v4.ODataModel#bindList}).
73164
73296
  */
73165
73297
  bIgnoreKeptAlive?: boolean
@@ -74233,6 +74365,11 @@ declare module "sap/ui/model/odata/v4/ODataMetaModel" {
74233
74365
  * results in "@com.sap.vocabularies.Common.v1.Label" and a slash does not make any difference as long as
74234
74366
  * the annotation does not have a "$Type" property. A technical property (that is, a numerical segment
74235
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".
74236
74373
  * The path must not continue after "@sapui.name".
74237
74374
  *
74238
74375
  * If the current object is a string value, that string value is treated as a relative path and followed
@@ -74709,7 +74846,8 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
74709
74846
  synchronizationMode?: string;
74710
74847
  /**
74711
74848
  * The group ID that is used for update requests. If no update group ID is specified, `mParameters.groupId`
74712
- * 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.
74713
74851
  */
74714
74852
  updateGroupId?: string;
74715
74853
  /**
@@ -75073,9 +75211,8 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
75073
75211
  * If the target type specified in the corresponding control property's binding info is "any" and the binding
75074
75212
  * is relative or points to metadata, the binding may have an object value; in this case and unless the
75075
75213
  * binding refers to an action advertisement the binding's mode must be {@link sap.ui.model.BindingMode.OneTime}.
75076
- * {@link sap.ui.model.BindingMode.OneWay OneWay} is also supported (@experimental as of version 1.126.0),
75077
- * but client-side updates of the object are not supported and `$$patchWithoutSideEffects` should be used
75078
- * 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.
75079
75216
  * See:
75080
75217
  * sap.ui.base.ManagedObject#bindProperty
75081
75218
  * sap.ui.model.Model#bindProperty
@@ -75970,7 +76107,7 @@ declare module "sap/ui/model/odata/v4/ODataPropertyBinding" {
75970
76107
  * because they relate to a {@link sap.ui.model.odata.v4.Context#isKeepAlive kept-alive} (since 1.97.0)
75971
76108
  * or {@link sap.ui.model.odata.v4.Context#delete deleted} (since 1.108.0) context of this binding. Since
75972
76109
  * 1.98.0, {@link sap.ui.model.odata.v4.Context#isTransient transient} contexts of a {@link #getRootBinding root binding }
75973
- * 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`
75974
76111
  * parameter (see {@link sap.ui.model.odata.v4.ODataModel#bindList}).
75975
76112
  */
75976
76113
  bIgnoreKeptAlive?: boolean
@@ -84524,8 +84661,6 @@ declare module "sap/ui/test/RecordReplay" {
84524
84661
  }
84525
84662
  /**
84526
84663
  * Root namespace for JavaScript functionality provided by SAP SE.
84527
- *
84528
- * The `sap` namespace is automatically registered with the OpenAjax hub if it exists.
84529
84664
  */
84530
84665
  declare namespace sap {
84531
84666
  /**
@@ -87801,6 +87936,8 @@ declare namespace sap {
87801
87936
 
87802
87937
  "sap/ui/dom/includeStylesheet": undefined;
87803
87938
 
87939
+ "sap/ui/dom/isElementCovered": undefined;
87940
+
87804
87941
  "sap/ui/dom/isHidden": undefined;
87805
87942
 
87806
87943
  "sap/ui/dom/jquery/Aria": undefined;
@@ -88179,6 +88316,10 @@ declare namespace sap {
88179
88316
 
88180
88317
  "sap/ui/test/RecordReplay": undefined;
88181
88318
 
88319
+ "sap/ui/test/utils/nextUIUpdate": undefined;
88320
+
88321
+ "sap/ui/test/utils/waitForThemeApplied": undefined;
88322
+
88182
88323
  "sap/ui/thirdparty/jquery": undefined;
88183
88324
 
88184
88325
  "sap/ui/util/ActivityDetection": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.126.1
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.1
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.1
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.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.126.1
1
+ // For Library Version: 1.127.0
2
2
 
3
3
  declare module "sap/ui/layout/library" {
4
4
  import Control from "sap/ui/core/Control";
@@ -6718,7 +6718,7 @@ declare module "sap/ui/layout/form/Form" {
6718
6718
  *
6719
6719
  * **Note:** If the title is provided as a string, the title is rendered with a theme-dependent default
6720
6720
  * level. As the `Form` control cannot know the structure of the page, this might not fit the page structure.
6721
- * In this case provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel level }
6721
+ * In this case, provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel level }
6722
6722
  * to the needed value.
6723
6723
  */
6724
6724
  getTitle(): Title | string;
@@ -6728,7 +6728,7 @@ declare module "sap/ui/layout/form/Form" {
6728
6728
  * Toolbar of the `Form`.
6729
6729
  *
6730
6730
  * **Note:** If a `Toolbar` is used, the `Title` is ignored. If a title is needed inside the `Toolbar` it
6731
- * must be added at content to the `Toolbar`. In this case add the `Title` to the `ariaLabelledBy` association.
6731
+ * must be added at content to the `Toolbar`. In this case, add the `Title` to the `ariaLabelledBy` association.
6732
6732
  * Use the right title level to meet the visual requirements. This might be theme-dependent.
6733
6733
  *
6734
6734
  * @since 1.36.0
@@ -6944,7 +6944,7 @@ declare module "sap/ui/layout/form/Form" {
6944
6944
  *
6945
6945
  * **Note:** If the title is provided as a string, the title is rendered with a theme-dependent default
6946
6946
  * level. As the `Form` control cannot know the structure of the page, this might not fit the page structure.
6947
- * In this case provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel level }
6947
+ * In this case, provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel level }
6948
6948
  * to the needed value.
6949
6949
  */
6950
6950
  title?: string | Title | PropertyBindingInfo;
@@ -6953,7 +6953,7 @@ declare module "sap/ui/layout/form/Form" {
6953
6953
  * Toolbar of the `Form`.
6954
6954
  *
6955
6955
  * **Note:** If a `Toolbar` is used, the `Title` is ignored. If a title is needed inside the `Toolbar` it
6956
- * must be added at content to the `Toolbar`. In this case add the `Title` to the `ariaLabelledBy` association.
6956
+ * must be added at content to the `Toolbar`. In this case, add the `Title` to the `ariaLabelledBy` association.
6957
6957
  * Use the right title level to meet the visual requirements. This might be theme-dependent.
6958
6958
  *
6959
6959
  * @since 1.36.0
@@ -6969,6 +6969,10 @@ declare module "sap/ui/layout/form/Form" {
6969
6969
  /**
6970
6970
  * Association to controls / IDs that label this control (see WAI-ARIA attribute `aria-labelledby`).
6971
6971
  *
6972
+ * **Note:** Every `Form` needs to have some title or label (at least for screen reader support). If no
6973
+ * `Title` is set, and the `Form` is not a child or a control with a title, such as {@link sap.m.Panel Panel }
6974
+ * or {@link sap.m.Dialog Dialog}, a label or title needs to be assigned using the `ariaLabelledBy` association.
6975
+ *
6972
6976
  * @since 1.28.0
6973
6977
  */
6974
6978
  ariaLabelledBy?: Array<Control | string>;
@@ -7429,6 +7433,10 @@ declare module "sap/ui/layout/form/FormContainer" {
7429
7433
  * **Note:** This attribute is only rendered if the `FormContainer` has it's own DOM representation in the
7430
7434
  * used `FormLayout`.
7431
7435
  *
7436
+ * **Note:** If there is more than one `FormContainers`, every `FormContainer` needs to have some title
7437
+ * or label (at least for screen reader support). If no `Title` is set, a label or title needs to be assigned
7438
+ * using the `ariaLabelledBy` association.
7439
+ *
7432
7440
  * @since 1.36.0
7433
7441
  */
7434
7442
  ariaLabelledBy?: Array<Control | string>;
@@ -10075,6 +10083,13 @@ declare module "sap/ui/layout/form/SimpleForm" {
10075
10083
  *
10076
10084
  * Title element of the `SimpleForm`. Can either be a `Title` element, or a string.
10077
10085
  *
10086
+ * **Note:** If a `Toolbar` is used, the `Title` is ignored.
10087
+ *
10088
+ * **Note:** If the title is provided as a string, the title is rendered with a theme-dependent default
10089
+ * level. As the `Form` control cannot know the structure of the page, this might not fit the page structure.
10090
+ * In this case, provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel level }
10091
+ * to the needed value.
10092
+ *
10078
10093
  * @since 1.16.3
10079
10094
  */
10080
10095
  getTitle(): Title | string;
@@ -10084,7 +10099,7 @@ declare module "sap/ui/layout/form/SimpleForm" {
10084
10099
  * Toolbar of the `SimpleForm`.
10085
10100
  *
10086
10101
  * **Note:** If a `Toolbar` is used, the `Title` is ignored. If a title is needed inside the `Toolbar` it
10087
- * must be added at content to the `Toolbar`. In this case add the `Title` to the `ariaLabelledBy` association.
10102
+ * must be added at content to the `Toolbar`. In this case, add the `Title` to the `ariaLabelledBy` association.
10088
10103
  *
10089
10104
  * @since 1.36.0
10090
10105
  */
@@ -11041,6 +11056,13 @@ declare module "sap/ui/layout/form/SimpleForm" {
11041
11056
  /**
11042
11057
  * Title element of the `SimpleForm`. Can either be a `Title` element, or a string.
11043
11058
  *
11059
+ * **Note:** If a `Toolbar` is used, the `Title` is ignored.
11060
+ *
11061
+ * **Note:** If the title is provided as a string, the title is rendered with a theme-dependent default
11062
+ * level. As the `Form` control cannot know the structure of the page, this might not fit the page structure.
11063
+ * In this case, provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel level }
11064
+ * to the needed value.
11065
+ *
11044
11066
  * @since 1.16.3
11045
11067
  */
11046
11068
  title?: string | Title | PropertyBindingInfo;
@@ -11049,7 +11071,7 @@ declare module "sap/ui/layout/form/SimpleForm" {
11049
11071
  * Toolbar of the `SimpleForm`.
11050
11072
  *
11051
11073
  * **Note:** If a `Toolbar` is used, the `Title` is ignored. If a title is needed inside the `Toolbar` it
11052
- * must be added at content to the `Toolbar`. In this case add the `Title` to the `ariaLabelledBy` association.
11074
+ * must be added at content to the `Toolbar`. In this case, add the `Title` to the `ariaLabelledBy` association.
11053
11075
  *
11054
11076
  * @since 1.36.0
11055
11077
  */
@@ -11058,6 +11080,10 @@ declare module "sap/ui/layout/form/SimpleForm" {
11058
11080
  /**
11059
11081
  * Association to controls / IDs which label this control (see WAI-ARIA attribute `aria-labelledby`).
11060
11082
  *
11083
+ * **Note:** Every `Form` needs to have some title or label (at least for screen reader support). If no
11084
+ * `Title` is set, and the `Form` is not a child or a control with a title, such as {@link sap.m.Panel Panel }
11085
+ * or {@link sap.m.Dialog Dialog}, a label or title needs to be assigned using the `ariaLabelledBy` association.
11086
+ *
11061
11087
  * @since 1.32.0
11062
11088
  */
11063
11089
  ariaLabelledBy?: Array<Control | string>;
@@ -14977,6 +15003,9 @@ declare module "sap/ui/layout/VerticalLayout" {
14977
15003
  /**
14978
15004
  * In this layout the content controls are rendered one below the other.
14979
15005
  *
15006
+ * **Note:** `VerticalLayout` is not a focusable element and therefore the inheritance of the `tooltip`
15007
+ * property isn't supported.
15008
+ *
14980
15009
  * @since 1.16.0
14981
15010
  */
14982
15011
  export default class VerticalLayout extends Control {