@sapui5/ts-types 1.150.1 → 1.152.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.
- package/package.json +1 -1
- package/types/index.d.ts +1 -0
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +427 -157
- package/types/sap.f.d.ts +1189 -292
- package/types/sap.fe.ariba.d.ts +1 -1
- package/types/sap.fe.base.d.ts +2 -222
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +61 -9
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +220 -85
- package/types/sap.fe.navigation.d.ts +3 -2
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +12 -2
- package/types/sap.fe.test.d.ts +3 -3
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +138 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +246 -3
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +957 -1
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +178 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +4 -2
- package/types/sap.ui.core.d.ts +561 -245
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +7 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.geomap.d.ts +10393 -8758
- package/types/sap.ui.integration.d.ts +130 -326
- package/types/sap.ui.joule.frontend.d.ts +710 -0
- package/types/sap.ui.layout.d.ts +33 -7
- package/types/sap.ui.mdc.d.ts +36 -8
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +4 -4
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +2 -2
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +160 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +1 -1
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +84 -47
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
package/types/sap.ui.layout.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.152.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -193,15 +193,21 @@ declare namespace sap {
|
|
|
193
193
|
| `{${string}}`;
|
|
194
194
|
|
|
195
195
|
/**
|
|
196
|
-
* Title of the `Form`. Can either be a
|
|
197
|
-
* of the title can be set.
|
|
196
|
+
* Title of the `Form`. Can either be a {@link sap.ui.core.Title Title} element or a string. If a `Title`
|
|
197
|
+
* element it used, the style of the title can be set.
|
|
198
198
|
*
|
|
199
199
|
* **Note:** If a {@link #getToolbar Toolbar} is used, the `Title` is ignored.
|
|
200
200
|
*
|
|
201
201
|
* **Note:** If the title is provided as a string, the title is rendered with a theme-dependent default
|
|
202
202
|
* level. As the `Form` control cannot know the structure of the page, this might not fit the page structure.
|
|
203
|
-
* In this case, provide the title using a
|
|
203
|
+
* In this case, provide the title using a {@link sap.ui.core.Title Title} element and set its {@link sap.ui.core.Title#setLevel level }
|
|
204
204
|
* to the needed value.
|
|
205
|
+
*
|
|
206
|
+
* **Note:** Do not use {@link sap.ui.core.Title#setIcon icon} for {@link sap.ui.core.Title Title}. If an
|
|
207
|
+
* icon is needed, use a {@link #setToolbar Toolbar} to show both title and icon.
|
|
208
|
+
*
|
|
209
|
+
* **Note:** Do not use {@link sap.ui.core.Title#setEmphasized emphasized} for {@link sap.ui.core.Title Title}.
|
|
210
|
+
* This is not supported in current themes and might lead to accessibillity issues.
|
|
205
211
|
*/
|
|
206
212
|
title?:
|
|
207
213
|
| string
|
|
@@ -288,6 +294,12 @@ declare namespace sap {
|
|
|
288
294
|
* level. As the `Form` control cannot know the structure of the page, this might not fit the page structure.
|
|
289
295
|
* In this case provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel level }
|
|
290
296
|
* to the needed value.
|
|
297
|
+
*
|
|
298
|
+
* **Note:** Do not use {@link sap.ui.core.Title#setIcon icon} for {@link sap.ui.core.Title Title}. If an
|
|
299
|
+
* icon is needed, use a {@link #setToolbar Toolbar} to show both title and icon.
|
|
300
|
+
*
|
|
301
|
+
* **Note:** Do not use {@link sap.ui.core.Title#setEmphasized emphasized} for {@link sap.ui.core.Title Title}.
|
|
302
|
+
* This is not supported in current themes and might lead to accessibillity issues.
|
|
291
303
|
*/
|
|
292
304
|
title?:
|
|
293
305
|
| string
|
|
@@ -1881,15 +1893,21 @@ declare namespace sap {
|
|
|
1881
1893
|
/**
|
|
1882
1894
|
* Gets content of aggregation {@link #getTitle title}.
|
|
1883
1895
|
*
|
|
1884
|
-
* Title of the `Form`. Can either be a
|
|
1885
|
-
* of the title can be set.
|
|
1896
|
+
* Title of the `Form`. Can either be a {@link sap.ui.core.Title Title} element or a string. If a `Title`
|
|
1897
|
+
* element it used, the style of the title can be set.
|
|
1886
1898
|
*
|
|
1887
1899
|
* **Note:** If a {@link #getToolbar Toolbar} is used, the `Title` is ignored.
|
|
1888
1900
|
*
|
|
1889
1901
|
* **Note:** If the title is provided as a string, the title is rendered with a theme-dependent default
|
|
1890
1902
|
* level. As the `Form` control cannot know the structure of the page, this might not fit the page structure.
|
|
1891
|
-
* In this case, provide the title using a
|
|
1903
|
+
* In this case, provide the title using a {@link sap.ui.core.Title Title} element and set its {@link sap.ui.core.Title#setLevel level }
|
|
1892
1904
|
* to the needed value.
|
|
1905
|
+
*
|
|
1906
|
+
* **Note:** Do not use {@link sap.ui.core.Title#setIcon icon} for {@link sap.ui.core.Title Title}. If an
|
|
1907
|
+
* icon is needed, use a {@link #setToolbar Toolbar} to show both title and icon.
|
|
1908
|
+
*
|
|
1909
|
+
* **Note:** Do not use {@link sap.ui.core.Title#setEmphasized emphasized} for {@link sap.ui.core.Title Title}.
|
|
1910
|
+
* This is not supported in current themes and might lead to accessibillity issues.
|
|
1893
1911
|
*/
|
|
1894
1912
|
getTitle(): sap.ui.core.Title | string;
|
|
1895
1913
|
/**
|
|
@@ -2254,6 +2272,12 @@ declare namespace sap {
|
|
|
2254
2272
|
* level. As the `Form` control cannot know the structure of the page, this might not fit the page structure.
|
|
2255
2273
|
* In this case provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel level }
|
|
2256
2274
|
* to the needed value.
|
|
2275
|
+
*
|
|
2276
|
+
* **Note:** Do not use {@link sap.ui.core.Title#setIcon icon} for {@link sap.ui.core.Title Title}. If an
|
|
2277
|
+
* icon is needed, use a {@link #setToolbar Toolbar} to show both title and icon.
|
|
2278
|
+
*
|
|
2279
|
+
* **Note:** Do not use {@link sap.ui.core.Title#setEmphasized emphasized} for {@link sap.ui.core.Title Title}.
|
|
2280
|
+
* This is not supported in current themes and might lead to accessibillity issues.
|
|
2257
2281
|
*/
|
|
2258
2282
|
getTitle(): sap.ui.core.Title | string;
|
|
2259
2283
|
/**
|
|
@@ -15319,6 +15343,8 @@ declare namespace sap {
|
|
|
15319
15343
|
|
|
15320
15344
|
"sap/ui/layout/form/FormLayout": undefined;
|
|
15321
15345
|
|
|
15346
|
+
"sap/ui/layout/form/FormTitleUtil": undefined;
|
|
15347
|
+
|
|
15322
15348
|
"sap/ui/layout/form/GridContainerData": undefined;
|
|
15323
15349
|
|
|
15324
15350
|
"sap/ui/layout/form/GridElementData": undefined;
|
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.152.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/AggregationBaseDelegate" {
|
|
4
4
|
import BaseDelegate from "sap/ui/mdc/BaseDelegate";
|
|
@@ -1476,14 +1476,9 @@ declare module "sap/ui/mdc/FilterBarDelegate" {
|
|
|
1476
1476
|
*/
|
|
1477
1477
|
oFilterBar: sap.ui.mdc.FilterBar,
|
|
1478
1478
|
/**
|
|
1479
|
-
*
|
|
1479
|
+
* Status of the validation {@link sap.ui.mdc.enums.FilterBarValidationStatus}
|
|
1480
1480
|
*/
|
|
1481
|
-
|
|
1482
|
-
/**
|
|
1483
|
-
* Status of the validation {@link sap.ui.mdc.enums.FilterBarValidationStatus}
|
|
1484
|
-
*/
|
|
1485
|
-
status?: string;
|
|
1486
|
-
}
|
|
1481
|
+
sValidationStatus?: string
|
|
1487
1482
|
): sap.ui.mdc.enums.FilterBarValidationStatus;
|
|
1488
1483
|
/**
|
|
1489
1484
|
* Retrieves the relevant metadata for a given payload and returns the property info array.
|
|
@@ -2104,6 +2099,14 @@ declare module "sap/ui/mdc/odata/v4/TableDelegate" {
|
|
|
2104
2099
|
* The `p13nMode` `Group` is not supported if the table type is {@link sap.ui.mdc.table.TreeTableType TreeTable}.
|
|
2105
2100
|
* This cannot be changed in your delegate implementation.
|
|
2106
2101
|
*
|
|
2102
|
+
* **Note:** When grouping in the {@link sap.ui.mdc.table.ResponsiveTableType ResponsiveTable}, the paths
|
|
2103
|
+
* required for the group header text (the grouped property's path and, if defined, the path of its text
|
|
2104
|
+
* property) are conveyed via {@link sap.ui.model.Sorter#getGroupPaths}. The {@link sap.ui.model.odata.v4.ODataListBinding }
|
|
2105
|
+
* evaluates these paths only if the {@link sap.ui.model.odata.v4.ODataModel} runs with `autoExpandSelect`
|
|
2106
|
+
* enabled; without it, paths that traverse a `NavigationProperty` are not loaded and the group header text
|
|
2107
|
+
* is incomplete. Applications that must run without `autoExpandSelect` and require grouping by such properties
|
|
2108
|
+
* need to override the delegate to add the required `$expand` to the binding parameters.
|
|
2109
|
+
*
|
|
2107
2110
|
* All binding-related limitations regarding selection also apply in the context of this delegate. For details,
|
|
2108
2111
|
* see {@link sap.ui.model.odata.v4.Context#setSelected} and {@link sap.ui.model.odata.v4.ODataModel#bindList}.
|
|
2109
2112
|
*
|
|
@@ -2510,6 +2513,31 @@ declare module "sap/ui/mdc/TableDelegate" {
|
|
|
2510
2513
|
*/
|
|
2511
2514
|
oBindingInfo: sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
2512
2515
|
): void;
|
|
2516
|
+
/**
|
|
2517
|
+
* Validation hook that is invoked when the user confirms the personalization dialog.
|
|
2518
|
+
*
|
|
2519
|
+
* Applications can use this hook to validate the current personalization state, display their own messages,
|
|
2520
|
+
* and prevent the dialog from closing by resolving to `false`.
|
|
2521
|
+
*
|
|
2522
|
+
* Providing accessible feedback (e.g. screen reader announcements) while the validation is ongoing or once
|
|
2523
|
+
* it has completed is the responsibility of the implementation.
|
|
2524
|
+
*
|
|
2525
|
+
* @since 1.152
|
|
2526
|
+
*
|
|
2527
|
+
* @returns A promise that resolves to `false` (or the literal value `false`) to prevent the dialog from
|
|
2528
|
+
* closing. Any other value allows the dialog to close.
|
|
2529
|
+
*/
|
|
2530
|
+
validateP13nState(
|
|
2531
|
+
/**
|
|
2532
|
+
* Instance of the table
|
|
2533
|
+
*/
|
|
2534
|
+
oTable: sap.ui.mdc.Table,
|
|
2535
|
+
/**
|
|
2536
|
+
* The theoretical (not yet applied) external state of the table's personalization. The format matches the
|
|
2537
|
+
* one processed by {@link sap.ui.mdc.p13n.StateUtil StateUtil}.
|
|
2538
|
+
*/
|
|
2539
|
+
oState: object
|
|
2540
|
+
): Promise<boolean> | boolean;
|
|
2513
2541
|
}
|
|
2514
2542
|
const TableDelegate: TableDelegate;
|
|
2515
2543
|
export default TableDelegate;
|
package/types/sap.ui.rta.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.152.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/rta/api/startAdaptation" {
|
|
4
4
|
/**
|
|
@@ -183,7 +183,7 @@ declare namespace sap {
|
|
|
183
183
|
text: string;
|
|
184
184
|
}>;
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* Annotation path of the property to preselect
|
|
187
187
|
*/
|
|
188
188
|
preSelectedProperty?: string;
|
|
189
189
|
};
|
|
@@ -212,12 +212,12 @@ declare namespace sap {
|
|
|
212
212
|
|
|
213
213
|
"sap/ui/rta/service/Outline": undefined;
|
|
214
214
|
|
|
215
|
+
"sap/ui/rta/service/OverlayInfo": undefined;
|
|
216
|
+
|
|
215
217
|
"sap/ui/rta/service/Property": undefined;
|
|
216
218
|
|
|
217
219
|
"sap/ui/rta/service/Selection": undefined;
|
|
218
220
|
|
|
219
|
-
"sap/ui/rta/service/SupportTools": undefined;
|
|
220
|
-
|
|
221
221
|
"sap/ui/rta/util/ReloadManager": undefined;
|
|
222
222
|
}
|
|
223
223
|
}
|
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.152.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -181,7 +181,7 @@ declare namespace sap {
|
|
|
181
181
|
/**
|
|
182
182
|
* Array of indices whose selection has been changed (either selected or deselected)
|
|
183
183
|
*/
|
|
184
|
-
|
|
184
|
+
rowIndices?: int[];
|
|
185
185
|
|
|
186
186
|
/**
|
|
187
187
|
* Indicates whether the selection limit has been reached
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.152.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -326,6 +326,19 @@ declare namespace sap {
|
|
|
326
326
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
327
327
|
| `{${string}}`;
|
|
328
328
|
|
|
329
|
+
/**
|
|
330
|
+
* Determines whether the header of the week numbers column is displayed. The column header text is translated
|
|
331
|
+
* according to the active language.
|
|
332
|
+
*
|
|
333
|
+
* **Note:** Takes effect only when `showWeekNumbers` is set to `true`.
|
|
334
|
+
*
|
|
335
|
+
* @since 1.151
|
|
336
|
+
*/
|
|
337
|
+
showWeekNumbersHeader?:
|
|
338
|
+
| boolean
|
|
339
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
340
|
+
| `{${string}}`;
|
|
341
|
+
|
|
329
342
|
/**
|
|
330
343
|
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
331
344
|
* global configuration is used. Note: This property should not be used with firstDayOfWeek property.
|
|
@@ -2743,6 +2756,21 @@ declare namespace sap {
|
|
|
2743
2756
|
* @returns Value of property `showWeekNumbers`
|
|
2744
2757
|
*/
|
|
2745
2758
|
getShowWeekNumbers(): boolean;
|
|
2759
|
+
/**
|
|
2760
|
+
* Gets current value of property {@link #getShowWeekNumbersHeader showWeekNumbersHeader}.
|
|
2761
|
+
*
|
|
2762
|
+
* Determines whether the header of the week numbers column is displayed. The column header text is translated
|
|
2763
|
+
* according to the active language.
|
|
2764
|
+
*
|
|
2765
|
+
* **Note:** Takes effect only when `showWeekNumbers` is set to `true`.
|
|
2766
|
+
*
|
|
2767
|
+
* Default value is `false`.
|
|
2768
|
+
*
|
|
2769
|
+
* @since 1.151
|
|
2770
|
+
*
|
|
2771
|
+
* @returns Value of property `showWeekNumbersHeader`
|
|
2772
|
+
*/
|
|
2773
|
+
getShowWeekNumbersHeader(): boolean;
|
|
2746
2774
|
/**
|
|
2747
2775
|
* Gets current value of property {@link #getSingleSelection singleSelection}.
|
|
2748
2776
|
*
|
|
@@ -3160,6 +3188,28 @@ declare namespace sap {
|
|
|
3160
3188
|
*/
|
|
3161
3189
|
bShowWeekNumbers?: boolean
|
|
3162
3190
|
): this;
|
|
3191
|
+
/**
|
|
3192
|
+
* Sets a new value for property {@link #getShowWeekNumbersHeader showWeekNumbersHeader}.
|
|
3193
|
+
*
|
|
3194
|
+
* Determines whether the header of the week numbers column is displayed. The column header text is translated
|
|
3195
|
+
* according to the active language.
|
|
3196
|
+
*
|
|
3197
|
+
* **Note:** Takes effect only when `showWeekNumbers` is set to `true`.
|
|
3198
|
+
*
|
|
3199
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3200
|
+
*
|
|
3201
|
+
* Default value is `false`.
|
|
3202
|
+
*
|
|
3203
|
+
* @since 1.151
|
|
3204
|
+
*
|
|
3205
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3206
|
+
*/
|
|
3207
|
+
setShowWeekNumbersHeader(
|
|
3208
|
+
/**
|
|
3209
|
+
* New value for property `showWeekNumbersHeader`
|
|
3210
|
+
*/
|
|
3211
|
+
bShowWeekNumbersHeader?: boolean
|
|
3212
|
+
): this;
|
|
3163
3213
|
/**
|
|
3164
3214
|
* Sets a new value for property {@link #getSingleSelection singleSelection}.
|
|
3165
3215
|
*
|
|
@@ -5965,6 +6015,19 @@ declare namespace sap {
|
|
|
5965
6015
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
5966
6016
|
| `{${string}}`;
|
|
5967
6017
|
|
|
6018
|
+
/**
|
|
6019
|
+
* Determines whether the header of the week numbers column is displayed. The column header text is translated
|
|
6020
|
+
* according to the active language.
|
|
6021
|
+
*
|
|
6022
|
+
* **Note:** Takes effect only when `showWeekNumbers` is set to `true`.
|
|
6023
|
+
*
|
|
6024
|
+
* @since 1.151
|
|
6025
|
+
*/
|
|
6026
|
+
showWeekNumbersHeader?:
|
|
6027
|
+
| boolean
|
|
6028
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
6029
|
+
| `{${string}}`;
|
|
6030
|
+
|
|
5968
6031
|
/**
|
|
5969
6032
|
* Determines whether there is a shortcut navigation to Today. When used in Month, Year or Year-range picker
|
|
5970
6033
|
* view, the calendar navigates to Day picker view.
|
|
@@ -7206,6 +7269,22 @@ declare namespace sap {
|
|
|
7206
7269
|
| sap.ui.core.CSSColor
|
|
7207
7270
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
7208
7271
|
| `{${string}}`;
|
|
7272
|
+
|
|
7273
|
+
/**
|
|
7274
|
+
* Defines the value of the `aria-haspopup` attribute of the day cell.
|
|
7275
|
+
*
|
|
7276
|
+
* **Note:** Use this property only when the cell is related to a popover/popup. The value should be equal
|
|
7277
|
+
* to the main/root role of the popup.
|
|
7278
|
+
*
|
|
7279
|
+
* **Note:** Setting `type` to `sap.ui.unified.CalendarDayType.None` together with this property allows
|
|
7280
|
+
* adding the attribute without any visual marking.
|
|
7281
|
+
*
|
|
7282
|
+
* @since 1.152.0
|
|
7283
|
+
*/
|
|
7284
|
+
ariaHasPopup?:
|
|
7285
|
+
| sap.ui.core.aria.HasPopup
|
|
7286
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
7287
|
+
| `{${string}}`;
|
|
7209
7288
|
}
|
|
7210
7289
|
|
|
7211
7290
|
/**
|
|
@@ -9822,6 +9901,21 @@ declare namespace sap {
|
|
|
9822
9901
|
* @returns Value of property `showWeekNumbers`
|
|
9823
9902
|
*/
|
|
9824
9903
|
getShowWeekNumbers(): boolean;
|
|
9904
|
+
/**
|
|
9905
|
+
* Gets current value of property {@link #getShowWeekNumbersHeader showWeekNumbersHeader}.
|
|
9906
|
+
*
|
|
9907
|
+
* Determines whether the header of the week numbers column is displayed. The column header text is translated
|
|
9908
|
+
* according to the active language.
|
|
9909
|
+
*
|
|
9910
|
+
* **Note:** Takes effect only when `showWeekNumbers` is set to `true`.
|
|
9911
|
+
*
|
|
9912
|
+
* Default value is `false`.
|
|
9913
|
+
*
|
|
9914
|
+
* @since 1.151
|
|
9915
|
+
*
|
|
9916
|
+
* @returns Value of property `showWeekNumbersHeader`
|
|
9917
|
+
*/
|
|
9918
|
+
getShowWeekNumbersHeader(): boolean;
|
|
9825
9919
|
/**
|
|
9826
9920
|
* Gets current value of property {@link #getSingleSelection singleSelection}.
|
|
9827
9921
|
*
|
|
@@ -10274,6 +10368,28 @@ declare namespace sap {
|
|
|
10274
10368
|
*/
|
|
10275
10369
|
bShowWeekNumbers?: boolean
|
|
10276
10370
|
): this;
|
|
10371
|
+
/**
|
|
10372
|
+
* Sets a new value for property {@link #getShowWeekNumbersHeader showWeekNumbersHeader}.
|
|
10373
|
+
*
|
|
10374
|
+
* Determines whether the header of the week numbers column is displayed. The column header text is translated
|
|
10375
|
+
* according to the active language.
|
|
10376
|
+
*
|
|
10377
|
+
* **Note:** Takes effect only when `showWeekNumbers` is set to `true`.
|
|
10378
|
+
*
|
|
10379
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10380
|
+
*
|
|
10381
|
+
* Default value is `false`.
|
|
10382
|
+
*
|
|
10383
|
+
* @since 1.151
|
|
10384
|
+
*
|
|
10385
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
10386
|
+
*/
|
|
10387
|
+
setShowWeekNumbersHeader(
|
|
10388
|
+
/**
|
|
10389
|
+
* New value for property `showWeekNumbersHeader`
|
|
10390
|
+
*/
|
|
10391
|
+
bShowWeekNumbersHeader?: boolean
|
|
10392
|
+
): this;
|
|
10277
10393
|
/**
|
|
10278
10394
|
* Setter for the property `singleSelection`. If set to `true` only a single date or single interval, when
|
|
10279
10395
|
* `intervalSelection` is set to `true`, can be selected.
|
|
@@ -15798,6 +15914,24 @@ declare namespace sap {
|
|
|
15798
15914
|
* @returns Metadata object describing this class
|
|
15799
15915
|
*/
|
|
15800
15916
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
15917
|
+
/**
|
|
15918
|
+
* Gets current value of property {@link #getAriaHasPopup ariaHasPopup}.
|
|
15919
|
+
*
|
|
15920
|
+
* Defines the value of the `aria-haspopup` attribute of the day cell.
|
|
15921
|
+
*
|
|
15922
|
+
* **Note:** Use this property only when the cell is related to a popover/popup. The value should be equal
|
|
15923
|
+
* to the main/root role of the popup.
|
|
15924
|
+
*
|
|
15925
|
+
* **Note:** Setting `type` to `sap.ui.unified.CalendarDayType.None` together with this property allows
|
|
15926
|
+
* adding the attribute without any visual marking.
|
|
15927
|
+
*
|
|
15928
|
+
* Default value is `None`.
|
|
15929
|
+
*
|
|
15930
|
+
* @since 1.152.0
|
|
15931
|
+
*
|
|
15932
|
+
* @returns Value of property `ariaHasPopup`
|
|
15933
|
+
*/
|
|
15934
|
+
getAriaHasPopup(): sap.ui.core.aria.HasPopup;
|
|
15801
15935
|
/**
|
|
15802
15936
|
* Gets current value of property {@link #getColor color}.
|
|
15803
15937
|
*
|
|
@@ -15833,6 +15967,31 @@ declare namespace sap {
|
|
|
15833
15967
|
* @returns Value of property `type`
|
|
15834
15968
|
*/
|
|
15835
15969
|
getType(): sap.ui.unified.CalendarDayType;
|
|
15970
|
+
/**
|
|
15971
|
+
* Sets a new value for property {@link #getAriaHasPopup ariaHasPopup}.
|
|
15972
|
+
*
|
|
15973
|
+
* Defines the value of the `aria-haspopup` attribute of the day cell.
|
|
15974
|
+
*
|
|
15975
|
+
* **Note:** Use this property only when the cell is related to a popover/popup. The value should be equal
|
|
15976
|
+
* to the main/root role of the popup.
|
|
15977
|
+
*
|
|
15978
|
+
* **Note:** Setting `type` to `sap.ui.unified.CalendarDayType.None` together with this property allows
|
|
15979
|
+
* adding the attribute without any visual marking.
|
|
15980
|
+
*
|
|
15981
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
15982
|
+
*
|
|
15983
|
+
* Default value is `None`.
|
|
15984
|
+
*
|
|
15985
|
+
* @since 1.152.0
|
|
15986
|
+
*
|
|
15987
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
15988
|
+
*/
|
|
15989
|
+
setAriaHasPopup(
|
|
15990
|
+
/**
|
|
15991
|
+
* New value for property `ariaHasPopup`
|
|
15992
|
+
*/
|
|
15993
|
+
sAriaHasPopup?: sap.ui.core.aria.HasPopup
|
|
15994
|
+
): this;
|
|
15836
15995
|
/**
|
|
15837
15996
|
* Sets a new value for property {@link #getColor color}.
|
|
15838
15997
|
*
|
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ui.vbm.d.ts
CHANGED
package/types/sap.ui.vk.d.ts
CHANGED
package/types/sap.ui.vtm.d.ts
CHANGED