@openui5/ts-types 1.114.13 → 1.114.14
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/sap.f.d.ts +1 -1
- package/types/sap.m.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.core.d.ts +11 -13
- package/types/sap.ui.dt.d.ts +1 -1
- 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.rta.d.ts +1 -1
- 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 +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -280,7 +280,7 @@ declare namespace sap {
|
|
|
280
280
|
}
|
|
281
281
|
}
|
|
282
282
|
|
|
283
|
-
// For Library Version: 1.114.
|
|
283
|
+
// For Library Version: 1.114.14
|
|
284
284
|
|
|
285
285
|
declare module "sap/base/assert" {
|
|
286
286
|
/**
|
|
@@ -38398,35 +38398,33 @@ declare namespace sap {
|
|
|
38398
38398
|
/**
|
|
38399
38399
|
* Get month names in width "narrow", "abbreviated" or "wide".
|
|
38400
38400
|
*
|
|
38401
|
-
* @returns array of month names
|
|
38401
|
+
* @returns The array of month names
|
|
38402
38402
|
*/
|
|
38403
38403
|
getMonths(
|
|
38404
38404
|
/**
|
|
38405
|
-
*
|
|
38405
|
+
* The required width for the month names
|
|
38406
38406
|
*/
|
|
38407
|
-
sWidth:
|
|
38407
|
+
sWidth: "narrow" | "abbreviated" | "wide",
|
|
38408
38408
|
/**
|
|
38409
|
-
*
|
|
38410
|
-
* or calculated from locale.
|
|
38409
|
+
* The type of calendar; defaults to the calendar type either set in configuration or calculated from locale
|
|
38411
38410
|
*/
|
|
38412
38411
|
sCalendarType?: sap.ui.core.CalendarType
|
|
38413
|
-
):
|
|
38412
|
+
): string[];
|
|
38414
38413
|
/**
|
|
38415
38414
|
* Get standalone month names in width "narrow", "abbreviated" or "wide".
|
|
38416
38415
|
*
|
|
38417
|
-
* @returns array of month names
|
|
38416
|
+
* @returns The array of standalone month names
|
|
38418
38417
|
*/
|
|
38419
38418
|
getMonthsStandAlone(
|
|
38420
38419
|
/**
|
|
38421
|
-
*
|
|
38420
|
+
* The required width for the month names
|
|
38422
38421
|
*/
|
|
38423
|
-
sWidth:
|
|
38422
|
+
sWidth: "narrow" | "abbreviated" | "wide",
|
|
38424
38423
|
/**
|
|
38425
|
-
*
|
|
38426
|
-
* or calculated from locale.
|
|
38424
|
+
* The type of calendar; defaults to the calendar type either set in configuration or calculated from locale
|
|
38427
38425
|
*/
|
|
38428
38426
|
sCalendarType?: sap.ui.core.CalendarType
|
|
38429
|
-
):
|
|
38427
|
+
): string[];
|
|
38430
38428
|
/**
|
|
38431
38429
|
* Get number symbol "decimal", "group", "plusSign", "minusSign", "percentSign".
|
|
38432
38430
|
*
|
package/types/sap.ui.dt.d.ts
CHANGED
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
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED