@openui5/ts-types 1.108.0 → 1.109.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.108.0
1
+ // For Library Version: 1.109.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.0
1
+ // For Library Version: 1.109.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -102,6 +102,26 @@ declare namespace sap {
102
102
  | sap.ui.base.ManagedObject.PropertyBindingInfo
103
103
  | `{${string}}`;
104
104
 
105
+ /**
106
+ * @SINCE 1.109
107
+ *
108
+ * Defines the style of the title. For more information, see {@link sap.m.Title#setTitleStyle}.
109
+ */
110
+ titleStyle?:
111
+ | sap.ui.core.TitleLevel
112
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
113
+ | `{${string}}`;
114
+
115
+ /**
116
+ * @SINCE 1.109
117
+ *
118
+ * Sets the maximum width of the control.
119
+ */
120
+ maxWidth?:
121
+ | sap.ui.core.CSSSize
122
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
123
+ | `{${string}}`;
124
+
105
125
  /**
106
126
  * Contains the ids of the controls for which the variant management is responsible.
107
127
  */
@@ -143,7 +163,8 @@ declare namespace sap {
143
163
  */
144
164
  class VariantManagement
145
165
  extends sap.ui.core.Control
146
- implements sap.m.IOverflowToolbarContent {
166
+ implements sap.ui.core.IShrinkable, sap.m.IOverflowToolbarContent {
167
+ __implements__sap_ui_core_IShrinkable: boolean;
147
168
  __implements__sap_m_IOverflowToolbarContent: boolean;
148
169
  /**
149
170
  * Constructor for a new `VariantManagement`.
@@ -219,7 +240,7 @@ declare namespace sap {
219
240
  * The control to add; if empty, nothing is inserted
220
241
  */
221
242
  vFor: sap.ui.core.ID | sap.ui.core.Control
222
- ): Object;
243
+ ): this;
223
244
  /**
224
245
  * Attaches event handler `fnFunction` to the {@link #event:cancel cancel} event of this `sap.ui.fl.variants.VariantManagement`.
225
246
  *
@@ -728,6 +749,18 @@ declare namespace sap {
728
749
  * @returns Value of property `manualVariantKey`
729
750
  */
730
751
  getManualVariantKey(): boolean;
752
+ /**
753
+ * @SINCE 1.109
754
+ *
755
+ * Gets current value of property {@link #getMaxWidth maxWidth}.
756
+ *
757
+ * Sets the maximum width of the control.
758
+ *
759
+ * Default value is `"100%"`.
760
+ *
761
+ * @returns Value of property `maxWidth`
762
+ */
763
+ getMaxWidth(): sap.ui.core.CSSSize;
731
764
  /**
732
765
  * Gets current value of property {@link #getModelName modelName}.
733
766
  *
@@ -750,7 +783,11 @@ declare namespace sap {
750
783
  *
751
784
  * @returns Configuration information for the `sap.m.IOverflowToolbarContent` interface.
752
785
  */
753
- getOverflowToolbarConfig(): object;
786
+ getOverflowToolbarConfig(): {
787
+ canOverflow: boolean;
788
+
789
+ invalidationEvents: string[];
790
+ };
754
791
  /**
755
792
  * Gets current value of property {@link #getResetOnContextChange resetOnContextChange}.
756
793
  *
@@ -773,6 +810,18 @@ declare namespace sap {
773
810
  * @returns Value of property `showSetAsDefault`
774
811
  */
775
812
  getShowSetAsDefault(): boolean;
813
+ /**
814
+ * @SINCE 1.109
815
+ *
816
+ * Gets current value of property {@link #getTitleStyle titleStyle}.
817
+ *
818
+ * Defines the style of the title. For more information, see {@link sap.m.Title#setTitleStyle}.
819
+ *
820
+ * Default value is `Auto`.
821
+ *
822
+ * @returns Value of property `titleStyle`
823
+ */
824
+ getTitleStyle(): sap.ui.core.TitleLevel;
776
825
  /**
777
826
  * Gets current value of property {@link #getUpdateVariantInURL updateVariantInURL}.
778
827
  *
@@ -925,6 +974,25 @@ declare namespace sap {
925
974
  */
926
975
  bManualVariantKey?: boolean
927
976
  ): this;
977
+ /**
978
+ * @SINCE 1.109
979
+ *
980
+ * Sets a new value for property {@link #getMaxWidth maxWidth}.
981
+ *
982
+ * Sets the maximum width of the control.
983
+ *
984
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
985
+ *
986
+ * Default value is `"100%"`.
987
+ *
988
+ * @returns Reference to `this` in order to allow method chaining
989
+ */
990
+ setMaxWidth(
991
+ /**
992
+ * New value for property `maxWidth`
993
+ */
994
+ sMaxWidth?: sap.ui.core.CSSSize
995
+ ): this;
928
996
  /**
929
997
  * Sets a new value for property {@link #getModelName modelName}.
930
998
  *
@@ -978,6 +1046,25 @@ declare namespace sap {
978
1046
  */
979
1047
  bShowSetAsDefault?: boolean
980
1048
  ): this;
1049
+ /**
1050
+ * @SINCE 1.109
1051
+ *
1052
+ * Sets a new value for property {@link #getTitleStyle titleStyle}.
1053
+ *
1054
+ * Defines the style of the title. For more information, see {@link sap.m.Title#setTitleStyle}.
1055
+ *
1056
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1057
+ *
1058
+ * Default value is `Auto`.
1059
+ *
1060
+ * @returns Reference to `this` in order to allow method chaining
1061
+ */
1062
+ setTitleStyle(
1063
+ /**
1064
+ * New value for property `titleStyle`
1065
+ */
1066
+ sTitleStyle?: sap.ui.core.TitleLevel
1067
+ ): this;
981
1068
  /**
982
1069
  * Sets a new value for property {@link #getUpdateVariantInURL updateVariantInURL}.
983
1070
  *
@@ -1158,8 +1245,6 @@ declare namespace sap {
1158
1245
 
1159
1246
  "sap/ui/fl/apply/_internal/flexObjects/CompVariant": undefined;
1160
1247
 
1161
- "sap/ui/fl/apply/_internal/flexObjects/CompVariantRevertData": undefined;
1162
-
1163
1248
  "sap/ui/fl/apply/_internal/flexObjects/ControllerExtensionChange": undefined;
1164
1249
 
1165
1250
  "sap/ui/fl/apply/_internal/flexObjects/FlexObject": undefined;
@@ -1168,7 +1253,7 @@ declare namespace sap {
1168
1253
 
1169
1254
  "sap/ui/fl/apply/_internal/flexObjects/FlVariant": undefined;
1170
1255
 
1171
- "sap/ui/fl/apply/_internal/flexObjects/RevertData": undefined;
1256
+ "sap/ui/fl/apply/_internal/flexObjects/UIChange": undefined;
1172
1257
 
1173
1258
  "sap/ui/fl/apply/_internal/flexObjects/UpdatableChange": undefined;
1174
1259
 
@@ -1204,8 +1289,6 @@ declare namespace sap {
1204
1289
 
1205
1290
  "sap/ui/fl/Cache": undefined;
1206
1291
 
1207
- "sap/ui/fl/Change": undefined;
1208
-
1209
1292
  "sap/ui/fl/changeHandler/Base": undefined;
1210
1293
 
1211
1294
  "sap/ui/fl/ChangePersistenceFactory": undefined;
@@ -1236,8 +1319,6 @@ declare namespace sap {
1236
1319
 
1237
1320
  "sap/ui/fl/initial/_internal/Storage": undefined;
1238
1321
 
1239
- "sap/ui/fl/initial/_internal/storageResultDisassemble": undefined;
1240
-
1241
1322
  "sap/ui/fl/initial/_internal/StorageUtils": undefined;
1242
1323
 
1243
1324
  "sap/ui/fl/interfaces/BaseLoadConnector": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.0
1
+ // For Library Version: 1.109.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -809,6 +809,17 @@ declare namespace sap {
809
809
  | sap.ui.base.ManagedObject.PropertyBindingInfo
810
810
  | `{${string}}`;
811
811
 
812
+ /**
813
+ * @SINCE 1.109
814
+ * @EXPERIMENTAL (since 1.109)
815
+ *
816
+ * Defines the design of the `Card`.
817
+ */
818
+ design?:
819
+ | sap.ui.integration.CardDesign
820
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
821
+ | `{${string}}`;
822
+
812
823
  /**
813
824
  * @SINCE 1.85
814
825
  * @EXPERIMENTAL (since 1.85) - Disclaimer: this aggregation is in a beta state - incompatible API changes
@@ -1497,11 +1508,24 @@ declare namespace sap {
1497
1508
  *
1498
1509
  * Defines the state of the `Card`. When set to `Inactive`, the `Card` doesn't make requests.
1499
1510
  *
1500
- * Default value is `Active`.
1511
+ * Default value is `Auto`.
1501
1512
  *
1502
1513
  * @returns Value of property `dataMode`
1503
1514
  */
1504
1515
  getDataMode(): sap.ui.integration.CardDataMode;
1516
+ /**
1517
+ * @SINCE 1.109
1518
+ * @EXPERIMENTAL (since 1.109)
1519
+ *
1520
+ * Gets current value of property {@link #getDesign design}.
1521
+ *
1522
+ * Defines the design of the `Card`.
1523
+ *
1524
+ * Default value is `Solid`.
1525
+ *
1526
+ * @returns Value of property `design`
1527
+ */
1528
+ getDesign(): sap.ui.integration.CardDesign;
1505
1529
  /**
1506
1530
  * Returns the DOM Element that should get the focus.
1507
1531
  *
@@ -1825,6 +1849,26 @@ declare namespace sap {
1825
1849
  */
1826
1850
  sMode: sap.ui.integration.CardDataMode
1827
1851
  ): this;
1852
+ /**
1853
+ * @SINCE 1.109
1854
+ * @EXPERIMENTAL (since 1.109)
1855
+ *
1856
+ * Sets a new value for property {@link #getDesign design}.
1857
+ *
1858
+ * Defines the design of the `Card`.
1859
+ *
1860
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1861
+ *
1862
+ * Default value is `Solid`.
1863
+ *
1864
+ * @returns Reference to `this` in order to allow method chaining
1865
+ */
1866
+ setDesign(
1867
+ /**
1868
+ * New value for property `design`
1869
+ */
1870
+ sDesign?: sap.ui.integration.CardDesign
1871
+ ): this;
1828
1872
  /**
1829
1873
  * Sets the associated {@link #getHost host}.
1830
1874
  *
@@ -2777,7 +2821,7 @@ declare namespace sap {
2777
2821
  */
2778
2822
  loadDependencies(): Promise<any>;
2779
2823
  /**
2780
- * Called when the card is ready.
2824
+ * Called after the card is initialized.
2781
2825
  */
2782
2826
  onCardReady(): void;
2783
2827
  }
@@ -3507,6 +3551,22 @@ declare namespace sap {
3507
3551
  */
3508
3552
  Inactive = "Inactive",
3509
3553
  }
3554
+ /**
3555
+ * @SINCE 1.109
3556
+ * @EXPERIMENTAL (since 1.109)
3557
+ *
3558
+ * Possible designs for `{@link sap.ui.integration.widgets.Card}`.
3559
+ */
3560
+ enum CardDesign {
3561
+ /**
3562
+ * When in this mode, the card has a solid background.
3563
+ */
3564
+ Solid = "Solid",
3565
+ /**
3566
+ * When in this mode, the card background is transparent.
3567
+ */
3568
+ Transparent = "Transparent",
3569
+ }
3510
3570
  /**
3511
3571
  * @EXPERIMENTAL (since 1.79)
3512
3572
  *
@@ -3582,8 +3642,6 @@ declare namespace sap {
3582
3642
 
3583
3643
  "sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IconEditor": undefined;
3584
3644
 
3585
- "sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IsInIconPool.validator": undefined;
3586
-
3587
3645
  "sap/ui/integration/designtime/baseEditor/propertyEditor/integerEditor/IntegerEditor": undefined;
3588
3646
 
3589
3647
  "sap/ui/integration/designtime/baseEditor/propertyEditor/jsonEditor/JsonEditor": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.0
1
+ // For Library Version: 1.109.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.0
1
+ // For Library Version: 1.109.0
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -200,6 +200,8 @@ declare namespace sap {
200
200
 
201
201
  "sap/ui/mdc/table/TableTypeBase": undefined;
202
202
 
203
+ "sap/ui/mdc/table/TreeTableType": undefined;
204
+
203
205
  "sap/ui/mdc/table/V4AnalyticsPropertyHelper": undefined;
204
206
 
205
207
  "sap/ui/mdc/TableDelegate": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.0
1
+ // For Library Version: 1.109.0
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.0
1
+ // For Library Version: 1.109.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {