@sapui5/ts-types 1.84.51 → 1.84.52
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 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.core.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +1 -1
- package/types/sap.fe.plugins.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.m.d.ts +1 -1
- 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.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +1 -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 +1 -1
- package/types/sap.ui.core.d.ts +9 -1
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +3 -3
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +1 -1
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +6 -6
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +25 -7
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.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.fe.navigation.d.ts → sap.fe.navigation-1.84.18-d.ts} +0 -0
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
/// <reference path="./sap.ui.rta.d.ts"/>
|
|
34
34
|
/// <reference path="./sap.fe.core.d.ts"/>
|
|
35
35
|
/// <reference path="./sap.fe.macros.d.ts"/>
|
|
36
|
-
/// <reference path="./sap.fe.navigation.d.ts"/>
|
|
36
|
+
/// <reference path="./sap.fe.navigation-1.84.18-d.ts"/>
|
|
37
37
|
/// <reference path="./sap.fe.plugins.d.ts"/>
|
|
38
38
|
/// <reference path="./sap.fe.templates.d.ts"/>
|
|
39
39
|
/// <reference path="./sap.fe.test.d.ts"/>
|
package/types/sap.ca.ui.d.ts
CHANGED
package/types/sap.chart.d.ts
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
package/types/sap.fe.macros.d.ts
CHANGED
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.fe.tools.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
package/types/sap.makit.d.ts
CHANGED
package/types/sap.me.d.ts
CHANGED
package/types/sap.ndc.d.ts
CHANGED
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.comp.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ declare module "sap/base/util/Version";
|
|
|
18
18
|
declare module "sap/ui/performance/Measurement.Entry";
|
|
19
19
|
|
|
20
20
|
declare module "sap/ui/util/Storage.Type";
|
|
21
|
-
// For Library Version: 1.84.
|
|
21
|
+
// For Library Version: 1.84.49
|
|
22
22
|
/**
|
|
23
23
|
* Root namespace for JavaScript functionality provided by SAP SE.
|
|
24
24
|
*
|
|
@@ -31880,6 +31880,10 @@ declare namespace sap {
|
|
|
31880
31880
|
* The version of the operating system as `float`.
|
|
31881
31881
|
*
|
|
31882
31882
|
* Might be `-1` if no version can be determined.
|
|
31883
|
+
*
|
|
31884
|
+
* **Note:** The property `version` may not contain the correct version for Windows 11 onwards, depending
|
|
31885
|
+
* on the point in time, the property is accessed or the browser's capability to provide the version. In
|
|
31886
|
+
* this case the `version` property may contain `10`.
|
|
31883
31887
|
*/
|
|
31884
31888
|
export const version: number;
|
|
31885
31889
|
|
|
@@ -31887,6 +31891,10 @@ declare namespace sap {
|
|
|
31887
31891
|
* The version of the operating system as `string`.
|
|
31888
31892
|
*
|
|
31889
31893
|
* Might be empty if no version can be determined.
|
|
31894
|
+
*
|
|
31895
|
+
* **Note:** The property `versionStr` may not contain the correct version for Windows 11 onwards, depending
|
|
31896
|
+
* on the point in time, the property is accessed or the browser's capability to provide the version. In
|
|
31897
|
+
* this case the `versionStr` property may contain `10`.
|
|
31890
31898
|
*/
|
|
31891
31899
|
export const versionStr: String;
|
|
31892
31900
|
|
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.export.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.84.
|
|
1
|
+
// For Library Version: 1.84.49
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
|
|
@@ -75,7 +75,7 @@ class Spreadsheet{
|
|
|
75
75
|
* - `workbook.context` - Context object that will be applied to the generated file. It may contain the
|
|
76
76
|
* following fields:
|
|
77
77
|
* - `application` (string) - The application that creates the XLSX document (default: "SAP UI5")
|
|
78
|
-
* - `version` (string) - Application version that creates the XLSX document (default: "1.84.
|
|
78
|
+
* - `version` (string) - Application version that creates the XLSX document (default: "1.84.49")
|
|
79
79
|
* - `title` (string) - Title of the XLSX document (NOT the filename)
|
|
80
80
|
* - `modifiedBy` (string) - User context for the XLSX document
|
|
81
81
|
* - `sheetName` (string) - The label of the data sheet
|
|
@@ -161,7 +161,7 @@ class Spreadsheet{
|
|
|
161
161
|
* columns: aColumns,
|
|
162
162
|
* context: {
|
|
163
163
|
* application: 'Debug Test Application',
|
|
164
|
-
* version: '1.84.
|
|
164
|
+
* version: '1.84.49',
|
|
165
165
|
* title: 'Some random title',
|
|
166
166
|
* modifiedBy: 'John Doe',
|
|
167
167
|
* metaSheetName: 'Custom metadata',
|
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.84.
|
|
1
|
+
// For Library Version: 1.84.49
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -237,7 +237,7 @@ declare namespace sap {
|
|
|
237
237
|
static getType(): string;
|
|
238
238
|
}
|
|
239
239
|
/**
|
|
240
|
-
* @SINCE 1.84.
|
|
240
|
+
* @SINCE 1.84.49
|
|
241
241
|
*
|
|
242
242
|
* Defines the Audiences.
|
|
243
243
|
*/
|
|
@@ -256,7 +256,7 @@ declare namespace sap {
|
|
|
256
256
|
Internal,
|
|
257
257
|
}
|
|
258
258
|
/**
|
|
259
|
-
* @SINCE 1.84.
|
|
259
|
+
* @SINCE 1.84.49
|
|
260
260
|
*
|
|
261
261
|
* Issue Categories.
|
|
262
262
|
*/
|
|
@@ -311,7 +311,7 @@ declare namespace sap {
|
|
|
311
311
|
Usage,
|
|
312
312
|
}
|
|
313
313
|
/**
|
|
314
|
-
* @SINCE 1.84.
|
|
314
|
+
* @SINCE 1.84.49
|
|
315
315
|
*
|
|
316
316
|
* Analysis history formats.
|
|
317
317
|
*/
|
|
@@ -326,7 +326,7 @@ declare namespace sap {
|
|
|
326
326
|
String,
|
|
327
327
|
}
|
|
328
328
|
/**
|
|
329
|
-
* @SINCE 1.84.
|
|
329
|
+
* @SINCE 1.84.49
|
|
330
330
|
*
|
|
331
331
|
* Defines severity types.
|
|
332
332
|
*/
|
|
@@ -345,7 +345,7 @@ declare namespace sap {
|
|
|
345
345
|
Medium,
|
|
346
346
|
}
|
|
347
347
|
/**
|
|
348
|
-
* @SINCE 1.84.
|
|
348
|
+
* @SINCE 1.84.49
|
|
349
349
|
*
|
|
350
350
|
* Contains the available system presets.
|
|
351
351
|
*/
|
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.84.
|
|
1
|
+
// For Library Version: 1.84.49
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -4295,8 +4295,14 @@ declare namespace sap {
|
|
|
4295
4295
|
/**
|
|
4296
4296
|
* @SINCE 1.28.9
|
|
4297
4297
|
*
|
|
4298
|
-
*
|
|
4299
|
-
*
|
|
4298
|
+
* This property sets chosen days of the week as non-working days, and overrides the weekend days defined
|
|
4299
|
+
* in the locale settings. If set, the provided weekdays are displayed as non-working days.
|
|
4300
|
+
*
|
|
4301
|
+
* Users could override the non-working days for each week. Valid values inside the array are from 0
|
|
4302
|
+
* to 6. For example:
|
|
4303
|
+
* - A single day for each week - `[3]`.
|
|
4304
|
+
* - All days for each week - `[0,1,2,3,4,5,6]`.
|
|
4305
|
+
* - None of the days for each week - `[]`. In this case all weekdays are working days.
|
|
4300
4306
|
*
|
|
4301
4307
|
* **Note:** Keep in mind that this property sets only weekly-recurring days as non-working. If you need
|
|
4302
4308
|
* specific dates or dates ranges, such as national holidays, use the `specialDates` aggregation to set
|
|
@@ -6376,8 +6382,14 @@ declare namespace sap {
|
|
|
6376
6382
|
*
|
|
6377
6383
|
* Gets current value of property {@link #getNonWorkingDays nonWorkingDays}.
|
|
6378
6384
|
*
|
|
6379
|
-
*
|
|
6380
|
-
*
|
|
6385
|
+
* This property sets chosen days of the week as non-working days, and overrides the weekend days defined
|
|
6386
|
+
* in the locale settings. If set, the provided weekdays are displayed as non-working days.
|
|
6387
|
+
*
|
|
6388
|
+
* Users could override the non-working days for each week. Valid values inside the array are from 0
|
|
6389
|
+
* to 6. For example:
|
|
6390
|
+
* - A single day for each week - `[3]`.
|
|
6391
|
+
* - All days for each week - `[0,1,2,3,4,5,6]`.
|
|
6392
|
+
* - None of the days for each week - `[]`. In this case all weekdays are working days.
|
|
6381
6393
|
*
|
|
6382
6394
|
* **Note:** Keep in mind that this property sets only weekly-recurring days as non-working. If you need
|
|
6383
6395
|
* specific dates or dates ranges, such as national holidays, use the `specialDates` aggregation to set
|
|
@@ -6725,8 +6737,14 @@ declare namespace sap {
|
|
|
6725
6737
|
*
|
|
6726
6738
|
* Sets a new value for property {@link #getNonWorkingDays nonWorkingDays}.
|
|
6727
6739
|
*
|
|
6728
|
-
*
|
|
6729
|
-
*
|
|
6740
|
+
* This property sets chosen days of the week as non-working days, and overrides the weekend days defined
|
|
6741
|
+
* in the locale settings. If set, the provided weekdays are displayed as non-working days.
|
|
6742
|
+
*
|
|
6743
|
+
* Users could override the non-working days for each week. Valid values inside the array are from 0
|
|
6744
|
+
* to 6. For example:
|
|
6745
|
+
* - A single day for each week - `[3]`.
|
|
6746
|
+
* - All days for each week - `[0,1,2,3,4,5,6]`.
|
|
6747
|
+
* - None of the days for each week - `[]`. In this case all weekdays are working days.
|
|
6730
6748
|
*
|
|
6731
6749
|
* **Note:** Keep in mind that this property sets only weekly-recurring days as non-working. If you need
|
|
6732
6750
|
* specific dates or dates ranges, such as national holidays, use the `specialDates` aggregation to set
|
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ushell.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED
package/types/sap.zen.dsh.d.ts
CHANGED
|
File without changes
|