@openui5/ts-types 1.142.1 → 1.143.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",
3
- "version": "1.142.1",
3
+ "version": "1.143.1",
4
4
  "description": "OpenUI5 TypeScript Definitions",
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.142.1
1
+ // For Library Version: 1.143.1
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -20469,6 +20469,13 @@ declare namespace sap {
20469
20469
  unbindValue(): this;
20470
20470
  }
20471
20471
  /**
20472
+ * **Note:** `sap.f.ShellBar` is not UXC-compliant and will no longer be aligned with future UXC design
20473
+ * updates. For UXC-compliant applications, use the ui5-shellbar web component instead. It can be integrated
20474
+ * seamlessly using ui5-tooling-modules. See {@link https://ui5.sap.com/#/topic/1c80793df5bb424091954697fc0b2828 Using Web Components}.
20475
+ *
20476
+ *
20477
+ *
20478
+ *
20472
20479
  * A horizontal bar control holding multiple child controls used as application shell header.
20473
20480
  *
20474
20481
  * Overview:
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.1
1
+ // For Library Version: 1.143.1
2
2
 
3
3
  declare module "sap/m/p13n/Engine" {
4
4
  /**
@@ -34724,9 +34724,40 @@ declare namespace sap {
34724
34724
  | sap.ui.base.ManagedObject.PropertyBindingInfo
34725
34725
  | `{${string}}`;
34726
34726
 
34727
+ /**
34728
+ * Determines the color set variant of the MessageStrip. Available options:
34729
+ * - **Default** - Uses standard semantic colors based on the type property (Information, Success, Warning,
34730
+ * Error)
34731
+ * - **ColorSet1** - Uses a custom color palette with 10 predefined color schemes
34732
+ * - **ColorSet2** - Uses an alternative custom color palette with 10 predefined color schemes When
34733
+ * ColorSet1 or ColorSet2 is selected, the `colorScheme` property determines which of the 10 color variations
34734
+ * is applied.
34735
+ *
34736
+ * **Note:** When using ColorSet1 or ColorSet2 designs, the type property is still used for semantic purposes
34737
+ * but will be ignored for visual styling.
34738
+ *
34739
+ * @since 1.143.0
34740
+ */
34741
+ colorSet?:
34742
+ | sap.m.MessageStripColorSet
34743
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
34744
+ | `{${string}}`;
34745
+
34746
+ /**
34747
+ * Determines the color scheme when using ColorSet1 or ColorSet2 colorSet variants. Available values are
34748
+ * 1 through 10, each providing a different color variation. This property is only effective when `colorSet`
34749
+ * is set to "ColorSet1" or "ColorSet2".
34750
+ *
34751
+ * @since 1.143.0
34752
+ */
34753
+ colorScheme?:
34754
+ | int
34755
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
34756
+ | `{${string}}`;
34757
+
34727
34758
  /**
34728
34759
  * Determines a custom icon which is displayed. If none is set, the default icon for this message type is
34729
- * used.
34760
+ * used. **Note**: For ColorSet1 and ColorSet2 designs, no default icon is displayed unless explicitly provided.
34730
34761
  */
34731
34762
  customIcon?:
34732
34763
  | sap.ui.core.URI
@@ -38155,11 +38186,6 @@ declare namespace sap {
38155
38186
  * Specifies the path to the PDF file to display. Can be set to a relative or an absolute path.
38156
38187
  * Optionally, this property can also be set to a data URI path or a blob URL, provided that this data
38157
38188
  * URI or blob URL is allowed in advance. For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
38158
- *
38159
- * Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
38160
- * GET request to ensure it exists and is accessible. This validation:
38161
- * - Prevents loading invalid or non-existent PDF files
38162
- * - If validation fails, error content is displayed instead of attempting PDF load
38163
38189
  */
38164
38190
  source?:
38165
38191
  | sap.ui.core.URI
@@ -40780,7 +40806,7 @@ declare namespace sap {
40780
40806
  * - **ContentFit**: Each button is sized according to its content.
40781
40807
  * - **EqualSized**: All buttons have equal width, regardless of their content.
40782
40808
  *
40783
- * @since 1.42.0
40809
+ * @since 1.142.0
40784
40810
  */
40785
40811
  contentMode?:
40786
40812
  | sap.m.SegmentedButtonContentMode
@@ -96568,7 +96594,8 @@ declare namespace sap {
96568
96594
  /**
96569
96595
  * MessageStrip is a control that enables the embedding of application-related messages in the application.
96570
96596
  * Overview: The message strip displays 4 types of messages, each with a corresponding semantic color and
96571
- * icon: Information, Success, Warning and Error.
96597
+ * icon: Information, Success, Warning and Error. Additionally, it supports custom color schemes through
96598
+ * ColorSet1 and ColorSet2 design types, each providing 10 predefined color variations.
96572
96599
  *
96573
96600
  * Each message can have a close button, so that it can be removed from the UI if needed.
96574
96601
  *
@@ -96580,10 +96607,14 @@ declare namespace sap {
96580
96607
  * - <u> With version 1.85
96581
96608
  * - <br>
96582
96609
  *
96610
+ * Color Schemes: When using ColorSet1 or ColorSet2 as the design type, you can specify a `colorScheme`
96611
+ * from "1" to "10" to apply different color variations. This allows for better visual categorization and
96612
+ * theming flexibility while maintaining accessibility standards.
96613
+ *
96583
96614
  * Dynamically generated Message Strip: To meet the accessibility requirements when using dynamically generated
96584
96615
  * Message Strip you must implement it alongside `sap.ui.core.InvisibleMessage`. This will allow screen
96585
96616
  * readers to announce it in real time. We suggest such dynamically generated message strips to be announced
96586
- * as Information Bar, as shown in our Dynamic Message Strip Generator sample.”
96617
+ * as Information Bar, as shown in our "Dynamic Message Strip Generator sample."
96587
96618
  *
96588
96619
  * Usage: When to use:
96589
96620
  * - You want to provide information or status update within the detail area of an object When not
@@ -96771,6 +96802,41 @@ declare namespace sap {
96771
96802
  */
96772
96803
  mParameters?: object
96773
96804
  ): this;
96805
+ /**
96806
+ * Gets current value of property {@link #getColorScheme colorScheme}.
96807
+ *
96808
+ * Determines the color scheme when using ColorSet1 or ColorSet2 colorSet variants. Available values are
96809
+ * 1 through 10, each providing a different color variation. This property is only effective when `colorSet`
96810
+ * is set to "ColorSet1" or "ColorSet2".
96811
+ *
96812
+ * Default value is `1`.
96813
+ *
96814
+ * @since 1.143.0
96815
+ *
96816
+ * @returns Value of property `colorScheme`
96817
+ */
96818
+ getColorScheme(): int;
96819
+ /**
96820
+ * Gets current value of property {@link #getColorSet colorSet}.
96821
+ *
96822
+ * Determines the color set variant of the MessageStrip. Available options:
96823
+ * - **Default** - Uses standard semantic colors based on the type property (Information, Success, Warning,
96824
+ * Error)
96825
+ * - **ColorSet1** - Uses a custom color palette with 10 predefined color schemes
96826
+ * - **ColorSet2** - Uses an alternative custom color palette with 10 predefined color schemes When
96827
+ * ColorSet1 or ColorSet2 is selected, the `colorScheme` property determines which of the 10 color variations
96828
+ * is applied.
96829
+ *
96830
+ * **Note:** When using ColorSet1 or ColorSet2 designs, the type property is still used for semantic purposes
96831
+ * but will be ignored for visual styling.
96832
+ *
96833
+ * Default value is `Default`.
96834
+ *
96835
+ * @since 1.143.0
96836
+ *
96837
+ * @returns Value of property `colorSet`
96838
+ */
96839
+ getColorSet(): sap.m.MessageStripColorSet;
96774
96840
  /**
96775
96841
  * Gets content of aggregation {@link #getControls controls}.
96776
96842
  *
@@ -96785,7 +96851,7 @@ declare namespace sap {
96785
96851
  * Gets current value of property {@link #getCustomIcon customIcon}.
96786
96852
  *
96787
96853
  * Determines a custom icon which is displayed. If none is set, the default icon for this message type is
96788
- * used.
96854
+ * used. **Note**: For ColorSet1 and ColorSet2 designs, no default icon is displayed unless explicitly provided.
96789
96855
  *
96790
96856
  * Default value is `empty string`.
96791
96857
  *
@@ -96923,11 +96989,60 @@ declare namespace sap {
96923
96989
  */
96924
96990
  vControl: int | string | sap.m.Link
96925
96991
  ): sap.m.Link | null;
96992
+ /**
96993
+ * Sets a new value for property {@link #getColorScheme colorScheme}.
96994
+ *
96995
+ * Determines the color scheme when using ColorSet1 or ColorSet2 colorSet variants. Available values are
96996
+ * 1 through 10, each providing a different color variation. This property is only effective when `colorSet`
96997
+ * is set to "ColorSet1" or "ColorSet2".
96998
+ *
96999
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
97000
+ *
97001
+ * Default value is `1`.
97002
+ *
97003
+ * @since 1.143.0
97004
+ *
97005
+ * @returns Reference to `this` in order to allow method chaining
97006
+ */
97007
+ setColorScheme(
97008
+ /**
97009
+ * New value for property `colorScheme`
97010
+ */
97011
+ iColorScheme?: int
97012
+ ): this;
97013
+ /**
97014
+ * Sets a new value for property {@link #getColorSet colorSet}.
97015
+ *
97016
+ * Determines the color set variant of the MessageStrip. Available options:
97017
+ * - **Default** - Uses standard semantic colors based on the type property (Information, Success, Warning,
97018
+ * Error)
97019
+ * - **ColorSet1** - Uses a custom color palette with 10 predefined color schemes
97020
+ * - **ColorSet2** - Uses an alternative custom color palette with 10 predefined color schemes When
97021
+ * ColorSet1 or ColorSet2 is selected, the `colorScheme` property determines which of the 10 color variations
97022
+ * is applied.
97023
+ *
97024
+ * **Note:** When using ColorSet1 or ColorSet2 designs, the type property is still used for semantic purposes
97025
+ * but will be ignored for visual styling.
97026
+ *
97027
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
97028
+ *
97029
+ * Default value is `Default`.
97030
+ *
97031
+ * @since 1.143.0
97032
+ *
97033
+ * @returns Reference to `this` in order to allow method chaining
97034
+ */
97035
+ setColorSet(
97036
+ /**
97037
+ * New value for property `colorSet`
97038
+ */
97039
+ sColorSet?: sap.m.MessageStripColorSet
97040
+ ): this;
96926
97041
  /**
96927
97042
  * Sets a new value for property {@link #getCustomIcon customIcon}.
96928
97043
  *
96929
97044
  * Determines a custom icon which is displayed. If none is set, the default icon for this message type is
96930
- * used.
97045
+ * used. **Note**: For ColorSet1 and ColorSet2 designs, no default icon is displayed unless explicitly provided.
96931
97046
  *
96932
97047
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
96933
97048
  *
@@ -116703,11 +116818,6 @@ declare namespace sap {
116703
116818
  * Optionally, this property can also be set to a data URI path or a blob URL, provided that this data
116704
116819
  * URI or blob URL is allowed in advance. For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
116705
116820
  *
116706
- * Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
116707
- * GET request to ensure it exists and is accessible. This validation:
116708
- * - Prevents loading invalid or non-existent PDF files
116709
- * - If validation fails, error content is displayed instead of attempting PDF load
116710
- *
116711
116821
  *
116712
116822
  * @returns Value of property `source`
116713
116823
  */
@@ -116957,11 +117067,6 @@ declare namespace sap {
116957
117067
  * Optionally, this property can also be set to a data URI path or a blob URL, provided that this data
116958
117068
  * URI or blob URL is allowed in advance. For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
116959
117069
  *
116960
- * Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
116961
- * GET request to ensure it exists and is accessible. This validation:
116962
- * - Prevents loading invalid or non-existent PDF files
116963
- * - If validation fails, error content is displayed instead of attempting PDF load
116964
- *
116965
117070
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
116966
117071
  *
116967
117072
  *
@@ -128866,13 +128971,11 @@ declare namespace sap {
128866
128971
  implements
128867
128972
  sap.ui.core.IFormContent,
128868
128973
  sap.f.IShellBar,
128869
- sap.m.IToolbarInteractiveControl,
128870
- sap.m.IOverflowToolbarContent
128974
+ sap.m.IToolbarInteractiveControl
128871
128975
  {
128872
128976
  __implements__sap_ui_core_IFormContent: boolean;
128873
128977
  __implements__sap_f_IShellBar: boolean;
128874
128978
  __implements__sap_m_IToolbarInteractiveControl: boolean;
128875
- __implements__sap_m_IOverflowToolbarContent: boolean;
128876
128979
  /**
128877
128980
  * Constructor for a new SearchField.
128878
128981
  *
@@ -129375,14 +129478,6 @@ declare namespace sap {
129375
129478
  * @returns Value of property `maxLength`
129376
129479
  */
129377
129480
  getMaxLength(): int;
129378
- /**
129379
- * Enables the `sap.m.SearchField` to be used inside sap.m.OverflowToolbar. Required by the {@link sap.m.IOverflowToolbarContent }
129380
- * interface.
129381
- *
129382
- *
129383
- * @returns Configuration information for the `sap.m.IOverflowToolbarContent` interface.
129384
- */
129385
- getOverflowToolbarConfig(): sap.m.OverflowToolbarConfig;
129386
129481
  /**
129387
129482
  * Gets current value of property {@link #getPlaceholder placeholder}.
129388
129483
  *
@@ -130274,7 +130369,7 @@ declare namespace sap {
130274
130369
  *
130275
130370
  * Default value is `EqualSized`.
130276
130371
  *
130277
- * @since 1.42.0
130372
+ * @since 1.142.0
130278
130373
  *
130279
130374
  * @returns Value of property `contentMode`
130280
130375
  */
@@ -130498,7 +130593,7 @@ declare namespace sap {
130498
130593
  *
130499
130594
  * Default value is `EqualSized`.
130500
130595
  *
130501
- * @since 1.42.0
130596
+ * @since 1.142.0
130502
130597
  *
130503
130598
  * @returns Reference to `this` in order to allow method chaining
130504
130599
  */
@@ -167402,6 +167497,8 @@ declare namespace sap {
167402
167497
  None = "None",
167403
167498
  /**
167404
167499
  * Right-positioned single selection mode (only one list item can be selected).
167500
+ *
167501
+ * @deprecated As of version 1.143. replaced by {@link sap.m.ListMode.SingleSelectLeft}.
167405
167502
  */
167406
167503
  SingleSelect = "SingleSelect",
167407
167504
  /**
@@ -167503,6 +167600,34 @@ declare namespace sap {
167503
167600
  */
167504
167601
  Split = "Split",
167505
167602
  }
167603
+ /**
167604
+ * Available color set variants for the {@link sap.m.MessageStrip} control.
167605
+ *
167606
+ * **Notes:**
167607
+ * - The Default color set uses standard semantic colors based on the message type (Information, Success,
167608
+ * Warning, Error).
167609
+ * - ColorSet1 and ColorSet2 provide custom color palettes with 10 predefined color schemes each.
167610
+ * - When using ColorSet1 or ColorSet2, the `colorScheme` property determines which color variation is
167611
+ * applied.
167612
+ *
167613
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'MessageStripColorSet'.
167614
+ *
167615
+ * @since 1.143.0
167616
+ */
167617
+ enum MessageStripColorSet {
167618
+ /**
167619
+ * Uses a custom color palette with predefined color schemes
167620
+ */
167621
+ ColorSet1 = "ColorSet1",
167622
+ /**
167623
+ * Uses an alternative custom color palette with predefined color schemes
167624
+ */
167625
+ ColorSet2 = "ColorSet2",
167626
+ /**
167627
+ * Uses standard semantic colors based on the type property (Information, Success, Warning, Error)
167628
+ */
167629
+ Default = "Default",
167630
+ }
167506
167631
  /**
167507
167632
  * Enumeration of the `multiSelectMode>/code> in ListBase`.
167508
167633
  *
@@ -168231,13 +168356,13 @@ declare namespace sap {
168231
168356
  /**
168232
168357
  * Each item fits its content and extra space is placed after the last item.
168233
168358
  *
168234
- * @since 1.42
168359
+ * @since 1.142.0
168235
168360
  */
168236
168361
  ContentFit = "ContentFit",
168237
168362
  /**
168238
168363
  * All items are sized equally to fill the available space.
168239
168364
  *
168240
- * @since 1.42
168365
+ * @since 1.142.0
168241
168366
  */
168242
168367
  EqualSized = "EqualSized",
168243
168368
  }
@@ -172301,6 +172426,8 @@ declare namespace sap {
172301
172426
 
172302
172427
  "sap/m/p13n/modules/AdaptationProvider": undefined;
172303
172428
 
172429
+ "sap/m/p13n/PersistenceProvider": undefined;
172430
+
172304
172431
  "sap/m/p13n/Popup": undefined;
172305
172432
 
172306
172433
  "sap/m/p13n/QueryPanel": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.1
1
+ // For Library Version: 1.143.1
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.1
1
+ // For Library Version: 1.143.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.1
1
+ // For Library Version: 1.143.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {