@openui5/types 1.117.1 → 1.119.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,3 +1,3 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.119.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.119.0
2
2
 
3
3
  declare module "sap/ui/fl/library" {}
4
4
 
@@ -7,7 +7,6 @@ declare module "sap/ui/fl/apply/api/ControlVariantApplyAPI" {
7
7
 
8
8
  /**
9
9
  * @since 1.67
10
- * @experimental (since 1.67)
11
10
  *
12
11
  * Provides an API for applications to work with control variants. See also {@link sap.ui.fl.variants.VariantManagement}.
13
12
  */
@@ -1528,8 +1527,6 @@ declare namespace sap {
1528
1527
 
1529
1528
  "sap/ui/fl/apply/api/UI2PersonalizationApplyAPI": undefined;
1530
1529
 
1531
- "sap/ui/fl/Cache": undefined;
1532
-
1533
1530
  "sap/ui/fl/changeHandler/Base": undefined;
1534
1531
 
1535
1532
  "sap/ui/fl/ChangePersistenceFactory": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.119.0
2
2
 
3
3
  declare module "sap/ui/integration/library" {
4
4
  import { URI } from "sap/ui/core/library";
@@ -140,6 +140,34 @@ declare module "sap/ui/integration/library" {
140
140
  */
141
141
  Transparent = "Transparent",
142
142
  }
143
+ /**
144
+ * @since 1.118
145
+ * @experimental (since 1.118) - For usage only by Work Zone.
146
+ *
147
+ * Possible variants for `{@link sap.ui.integration.widgets.Card}` rendering and behavior.
148
+ */
149
+ export enum CardDisplayVariant {
150
+ /**
151
+ * The standard card variant.
152
+ */
153
+ Standard = "Standard",
154
+ /**
155
+ * Card renders and behaves like a tile of size 2x1.
156
+ */
157
+ TileFlat = "TileFlat",
158
+ /**
159
+ * Card renders and behaves like a tile of size 4x1.
160
+ */
161
+ TileFlatWide = "TileFlatWide",
162
+ /**
163
+ * Card renders and behaves like a tile of size 2x2.
164
+ */
165
+ TileStandard = "TileStandard",
166
+ /**
167
+ * Card renders and behaves like a tile of size 4x2.
168
+ */
169
+ TileStandardWide = "TileStandardWide",
170
+ }
143
171
  /**
144
172
  * @experimental (since 1.79)
145
173
  *
@@ -611,6 +639,7 @@ declare module "sap/ui/integration/widgets/Card" {
611
639
  CardBlockingMessageType,
612
640
  CardDataMode,
613
641
  CardDesign,
642
+ CardDisplayVariant,
614
643
  CardPreviewMode,
615
644
  CardArea,
616
645
  CardActionType,
@@ -1310,6 +1339,19 @@ declare module "sap/ui/integration/widgets/Card" {
1310
1339
  * @returns Value of property `design`
1311
1340
  */
1312
1341
  getDesign(): CardDesign | keyof typeof CardDesign;
1342
+ /**
1343
+ * @since 1.118
1344
+ * @experimental (since 1.118) - For usage only by Work Zone.
1345
+ *
1346
+ * Gets current value of property {@link #getDisplayVariant displayVariant}.
1347
+ *
1348
+ * Defines the display variant for card rendering and behavior.
1349
+ *
1350
+ * Default value is `Standard`.
1351
+ *
1352
+ * @returns Value of property `displayVariant`
1353
+ */
1354
+ getDisplayVariant(): CardDisplayVariant | keyof typeof CardDisplayVariant;
1313
1355
  /**
1314
1356
  * @ui5-protected Do not call from applications (only from related classes in the framework)
1315
1357
  *
@@ -1680,6 +1722,26 @@ declare module "sap/ui/integration/widgets/Card" {
1680
1722
  */
1681
1723
  sDesign?: CardDesign | keyof typeof CardDesign
1682
1724
  ): this;
1725
+ /**
1726
+ * @since 1.118
1727
+ * @experimental (since 1.118) - For usage only by Work Zone.
1728
+ *
1729
+ * Sets a new value for property {@link #getDisplayVariant displayVariant}.
1730
+ *
1731
+ * Defines the display variant for card rendering and behavior.
1732
+ *
1733
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1734
+ *
1735
+ * Default value is `Standard`.
1736
+ *
1737
+ * @returns Reference to `this` in order to allow method chaining
1738
+ */
1739
+ setDisplayVariant(
1740
+ /**
1741
+ * New value for property `displayVariant`
1742
+ */
1743
+ sDisplayVariant?: CardDisplayVariant | keyof typeof CardDisplayVariant
1744
+ ): this;
1683
1745
  /**
1684
1746
  * Sets the associated {@link #getHost host}.
1685
1747
  *
@@ -1844,7 +1906,7 @@ declare module "sap/ui/integration/widgets/Card" {
1844
1906
  /**
1845
1907
  * Type of the message.
1846
1908
  */
1847
- sType: MessageType | keyof typeof MessageType
1909
+ sType: MessageType
1848
1910
  ): void;
1849
1911
  /**
1850
1912
  * @experimental (since 1.84)
@@ -2181,7 +2243,7 @@ declare module "sap/ui/integration/widgets/Card" {
2181
2243
  /**
2182
2244
  * Type of the message.
2183
2245
  */
2184
- sType: MessageType | keyof typeof MessageType
2246
+ sType: MessageType
2185
2247
  ): void;
2186
2248
  /**
2187
2249
  * @experimental (since 1.84)
@@ -2324,6 +2386,17 @@ declare module "sap/ui/integration/widgets/Card" {
2324
2386
  | PropertyBindingInfo
2325
2387
  | `{${string}}`;
2326
2388
 
2389
+ /**
2390
+ * @since 1.118
2391
+ * @experimental (since 1.118) - For usage only by Work Zone.
2392
+ *
2393
+ * Defines the display variant for card rendering and behavior.
2394
+ */
2395
+ displayVariant?:
2396
+ | (CardDisplayVariant | keyof typeof CardDisplayVariant)
2397
+ | PropertyBindingInfo
2398
+ | `{${string}}`;
2399
+
2327
2400
  /**
2328
2401
  * @since 1.112
2329
2402
  * @experimental (since 1.112)
@@ -4330,6 +4403,8 @@ declare namespace sap {
4330
4403
 
4331
4404
  "sap/ui/integration/editor/fields/viz/IconSelect": undefined;
4332
4405
 
4406
+ "sap/ui/integration/editor/fields/viz/ImageSelect": undefined;
4407
+
4333
4408
  "sap/ui/integration/editor/fields/viz/ShapeSelect": undefined;
4334
4409
 
4335
4410
  "sap/ui/integration/editor/fields/viz/VizBase": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.119.0
2
2
 
3
3
  declare module "sap/ui/layout/library" {
4
4
  import Control from "sap/ui/core/Control";