@openui5/ts-types-esm 1.96.12 → 1.96.13
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 +103 -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 +123 -2
- 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 +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 +107 -13
- 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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.96.
|
|
1
|
+
// For Library Version: 1.96.13
|
|
2
2
|
|
|
3
3
|
declare module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -13583,6 +13583,8 @@ declare module "sap/m/DatePicker" {
|
|
|
13583
13583
|
|
|
13584
13584
|
import DateRange from "sap/ui/unified/DateRange";
|
|
13585
13585
|
|
|
13586
|
+
import CalendarWeekNumbering from "sap/ui/core/date/CalendarWeekNumbering";
|
|
13587
|
+
|
|
13586
13588
|
import { ID } from "sap/ui/core/library";
|
|
13587
13589
|
|
|
13588
13590
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
@@ -13840,6 +13842,18 @@ declare module "sap/m/DatePicker" {
|
|
|
13840
13842
|
* sap.ui.core.Control#getAccessibilityInfo
|
|
13841
13843
|
*/
|
|
13842
13844
|
getAccessibilityInfo(): object;
|
|
13845
|
+
/**
|
|
13846
|
+
* @SINCE 1.96.15
|
|
13847
|
+
*
|
|
13848
|
+
* Gets current value of property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
13849
|
+
*
|
|
13850
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
13851
|
+
* global configuration is used. Note: This API has been introduced with version 1.108 and downported to
|
|
13852
|
+
* this release with patch level 15.
|
|
13853
|
+
*/
|
|
13854
|
+
getCalendarWeekNumbering():
|
|
13855
|
+
| CalendarWeekNumbering
|
|
13856
|
+
| keyof typeof CalendarWeekNumbering;
|
|
13843
13857
|
/**
|
|
13844
13858
|
* The date as JavaScript Date object. This is independent from any formatter.
|
|
13845
13859
|
*
|
|
@@ -13868,6 +13882,24 @@ declare module "sap/m/DatePicker" {
|
|
|
13868
13882
|
* Default value is `empty string`.
|
|
13869
13883
|
*/
|
|
13870
13884
|
getDisplayFormatType(): string;
|
|
13885
|
+
/**
|
|
13886
|
+
* @SINCE 1.97
|
|
13887
|
+
*
|
|
13888
|
+
* Gets current value of property {@link #getHideInput hideInput}.
|
|
13889
|
+
*
|
|
13890
|
+
* Determines whether the input field of the picker is hidden or visible. When set to `true`, the input
|
|
13891
|
+
* field becomes invisible and there is no way to open the picker popover. In that case it can be opened
|
|
13892
|
+
* by another control through calling of picker's `openBy` method, and the opening control's DOM reference
|
|
13893
|
+
* must be provided as parameter.
|
|
13894
|
+
*
|
|
13895
|
+
* Note: Since the picker is not responsible for accessibility attributes of the control which opens its
|
|
13896
|
+
* popover, those attributes should be added by the application developer. The following is recommended
|
|
13897
|
+
* to be added to the opening control: a text or tooltip that describes the action (example: "Open Date
|
|
13898
|
+
* Picker"), and also aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
|
|
13899
|
+
*
|
|
13900
|
+
* Default value is `false`.
|
|
13901
|
+
*/
|
|
13902
|
+
getHideInput(): boolean;
|
|
13871
13903
|
/**
|
|
13872
13904
|
* @SINCE 1.38.5
|
|
13873
13905
|
*
|
|
@@ -14024,6 +14056,25 @@ declare module "sap/m/DatePicker" {
|
|
|
14024
14056
|
*/
|
|
14025
14057
|
oSpecialDate: DateTypeRange
|
|
14026
14058
|
): DateTypeRange;
|
|
14059
|
+
/**
|
|
14060
|
+
* @SINCE 1.96.15
|
|
14061
|
+
*
|
|
14062
|
+
* Sets a new value for property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
14063
|
+
*
|
|
14064
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
14065
|
+
* global configuration is used. Note: This API has been introduced with version 1.108 and downported to
|
|
14066
|
+
* this release with patch level 15.
|
|
14067
|
+
*
|
|
14068
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
14069
|
+
*/
|
|
14070
|
+
setCalendarWeekNumbering(
|
|
14071
|
+
/**
|
|
14072
|
+
* New value for property `calendarWeekNumbering`
|
|
14073
|
+
*/
|
|
14074
|
+
sCalendarWeekNumbering?:
|
|
14075
|
+
| CalendarWeekNumbering
|
|
14076
|
+
| keyof typeof CalendarWeekNumbering
|
|
14077
|
+
): this;
|
|
14027
14078
|
/**
|
|
14028
14079
|
* Sets the displayFormat of the DatePicker.
|
|
14029
14080
|
*/
|
|
@@ -14053,6 +14104,31 @@ declare module "sap/m/DatePicker" {
|
|
|
14053
14104
|
*/
|
|
14054
14105
|
sDisplayFormatType?: string
|
|
14055
14106
|
): this;
|
|
14107
|
+
/**
|
|
14108
|
+
* @SINCE 1.97
|
|
14109
|
+
*
|
|
14110
|
+
* Sets a new value for property {@link #getHideInput hideInput}.
|
|
14111
|
+
*
|
|
14112
|
+
* Determines whether the input field of the picker is hidden or visible. When set to `true`, the input
|
|
14113
|
+
* field becomes invisible and there is no way to open the picker popover. In that case it can be opened
|
|
14114
|
+
* by another control through calling of picker's `openBy` method, and the opening control's DOM reference
|
|
14115
|
+
* must be provided as parameter.
|
|
14116
|
+
*
|
|
14117
|
+
* Note: Since the picker is not responsible for accessibility attributes of the control which opens its
|
|
14118
|
+
* popover, those attributes should be added by the application developer. The following is recommended
|
|
14119
|
+
* to be added to the opening control: a text or tooltip that describes the action (example: "Open Date
|
|
14120
|
+
* Picker"), and also aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
|
|
14121
|
+
*
|
|
14122
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
14123
|
+
*
|
|
14124
|
+
* Default value is `false`.
|
|
14125
|
+
*/
|
|
14126
|
+
setHideInput(
|
|
14127
|
+
/**
|
|
14128
|
+
* New value for property `hideInput`
|
|
14129
|
+
*/
|
|
14130
|
+
bHideInput?: boolean
|
|
14131
|
+
): this;
|
|
14056
14132
|
/**
|
|
14057
14133
|
* @SINCE 1.38.5
|
|
14058
14134
|
*
|
|
@@ -14236,6 +14312,32 @@ declare module "sap/m/DatePicker" {
|
|
|
14236
14312
|
*/
|
|
14237
14313
|
showCurrentDateButton?: boolean | PropertyBindingInfo;
|
|
14238
14314
|
|
|
14315
|
+
/**
|
|
14316
|
+
* @SINCE 1.97
|
|
14317
|
+
*
|
|
14318
|
+
* Determines whether the input field of the picker is hidden or visible. When set to `true`, the input
|
|
14319
|
+
* field becomes invisible and there is no way to open the picker popover. In that case it can be opened
|
|
14320
|
+
* by another control through calling of picker's `openBy` method, and the opening control's DOM reference
|
|
14321
|
+
* must be provided as parameter.
|
|
14322
|
+
*
|
|
14323
|
+
* Note: Since the picker is not responsible for accessibility attributes of the control which opens its
|
|
14324
|
+
* popover, those attributes should be added by the application developer. The following is recommended
|
|
14325
|
+
* to be added to the opening control: a text or tooltip that describes the action (example: "Open Date
|
|
14326
|
+
* Picker"), and also aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
|
|
14327
|
+
*/
|
|
14328
|
+
hideInput?: boolean | PropertyBindingInfo;
|
|
14329
|
+
|
|
14330
|
+
/**
|
|
14331
|
+
* @SINCE 1.96.15
|
|
14332
|
+
*
|
|
14333
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
14334
|
+
* global configuration is used. Note: This API has been introduced with version 1.108 and downported to
|
|
14335
|
+
* this release with patch level 15.
|
|
14336
|
+
*/
|
|
14337
|
+
calendarWeekNumbering?:
|
|
14338
|
+
| (CalendarWeekNumbering | keyof typeof CalendarWeekNumbering)
|
|
14339
|
+
| PropertyBindingInfo;
|
|
14340
|
+
|
|
14239
14341
|
/**
|
|
14240
14342
|
* @SINCE 1.38.5
|
|
14241
14343
|
*
|
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -264,7 +264,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
|
|
|
264
264
|
): jQuery;
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
-
// For Library Version: 1.96.
|
|
267
|
+
// For Library Version: 1.96.13
|
|
268
268
|
|
|
269
269
|
declare module "sap/base/assert" {
|
|
270
270
|
/**
|
|
@@ -941,6 +941,9 @@ declare module "sap/base/security/URLListValidator" {
|
|
|
941
941
|
*
|
|
942
942
|
* Note: Adding the first entry to the list of allowed entries will disallow all URLs but the ones matching
|
|
943
943
|
* the newly added entry.
|
|
944
|
+
*
|
|
945
|
+
* **Note**: It is strongly recommended to set a path only in combination with an origin (never set a path
|
|
946
|
+
* alone). There's almost no case where checking only the path of a URL would allow to ensure its validity.
|
|
944
947
|
*/
|
|
945
948
|
add(
|
|
946
949
|
/**
|
|
@@ -973,7 +976,13 @@ declare module "sap/base/security/URLListValidator" {
|
|
|
973
976
|
/**
|
|
974
977
|
* Validates a URL. Check if it's not a script or other security issue.
|
|
975
978
|
*
|
|
976
|
-
*
|
|
979
|
+
* **Note**: It is strongly recommended to validate only absolute URLs. There's almost no case where checking
|
|
980
|
+
* only the path of a URL would allow to ensure its validity. For compatibility reasons, this API cannot
|
|
981
|
+
* automatically resolve URLs relative to `document.baseURI`, but callers should do so. In that case, and
|
|
982
|
+
* when the allow list is not empty, an entry for the origin of `document.baseURI` must be added to the
|
|
983
|
+
* allow list.
|
|
984
|
+
*
|
|
985
|
+
* Details: Splits the given URL into components and checks for allowed characters according to RFC 3986:
|
|
977
986
|
*
|
|
978
987
|
*
|
|
979
988
|
* ```javascript
|
|
@@ -2086,6 +2095,52 @@ declare module "sap/ui/core/ComponentSupport" {
|
|
|
2086
2095
|
export default ComponentSupport;
|
|
2087
2096
|
}
|
|
2088
2097
|
|
|
2098
|
+
declare module "sap/ui/core/date/CalendarUtils" {
|
|
2099
|
+
import CalendarWeekNumbering from "sap/ui/core/date/CalendarWeekNumbering";
|
|
2100
|
+
|
|
2101
|
+
import Locale from "sap/ui/core/Locale";
|
|
2102
|
+
|
|
2103
|
+
/**
|
|
2104
|
+
* @SINCE 1.96.15
|
|
2105
|
+
*
|
|
2106
|
+
* Provides calendar-related utilities.
|
|
2107
|
+
*
|
|
2108
|
+
* Note: This API has been introduced with version 1.108 and downported to this release with patch level
|
|
2109
|
+
* 15.
|
|
2110
|
+
*/
|
|
2111
|
+
interface CalendarUtils {
|
|
2112
|
+
/**
|
|
2113
|
+
* @SINCE 1.96.15
|
|
2114
|
+
*
|
|
2115
|
+
* Resolves calendar week configuration.
|
|
2116
|
+
*
|
|
2117
|
+
* Returns an object with the following fields:
|
|
2118
|
+
* - `firstDayOfWeek`: specifies the first day of the week starting with `0` (which is Sunday)
|
|
2119
|
+
* - `minimalDaysInFirstWeek`: minimal days at the beginning of the year which define the first calendar
|
|
2120
|
+
* week
|
|
2121
|
+
*
|
|
2122
|
+
* Note: This API has been introduced with version 1.108 and downported to this release with patch level
|
|
2123
|
+
* 15.
|
|
2124
|
+
*/
|
|
2125
|
+
getWeekConfigurationValues(
|
|
2126
|
+
/**
|
|
2127
|
+
* The calendar week numbering; if omitted, `Default` is used.
|
|
2128
|
+
*/
|
|
2129
|
+
sCalendarWeekNumbering?:
|
|
2130
|
+
| CalendarWeekNumbering
|
|
2131
|
+
| keyof typeof CalendarWeekNumbering,
|
|
2132
|
+
/**
|
|
2133
|
+
* The locale to use; if not provided, this falls back to the format locale from the Configuration; see
|
|
2134
|
+
* {@link sap.ui.core.Configuration.FormatSettings#getFormatLocale}. Is only used when `sCalendarWeekNumbering`
|
|
2135
|
+
* is set to `Default`.
|
|
2136
|
+
*/
|
|
2137
|
+
oLocale?: Locale
|
|
2138
|
+
): Object | undefined;
|
|
2139
|
+
}
|
|
2140
|
+
const CalendarUtils: CalendarUtils;
|
|
2141
|
+
export default CalendarUtils;
|
|
2142
|
+
}
|
|
2143
|
+
|
|
2089
2144
|
declare module "sap/ui/core/InvisibleRenderer" {
|
|
2090
2145
|
import Control from "sap/ui/core/Control";
|
|
2091
2146
|
|
|
@@ -14482,6 +14537,45 @@ declare module "sap/ui/core/CustomData" {
|
|
|
14482
14537
|
}
|
|
14483
14538
|
}
|
|
14484
14539
|
|
|
14540
|
+
declare module "sap/ui/core/date/CalendarWeekNumbering" {
|
|
14541
|
+
/**
|
|
14542
|
+
* @SINCE 1.96.15
|
|
14543
|
+
*
|
|
14544
|
+
* The `CalendarWeekNumbering` enum defines how to calculate calendar weeks. Each value defines:
|
|
14545
|
+
* - The first day of the week,
|
|
14546
|
+
* - the first week of the year.
|
|
14547
|
+
*
|
|
14548
|
+
* Note: This API has been introduced with version 1.108 and downported to this release with patch level
|
|
14549
|
+
* 15.
|
|
14550
|
+
*/
|
|
14551
|
+
enum CalendarWeekNumbering {
|
|
14552
|
+
/**
|
|
14553
|
+
* The default calendar week numbering:
|
|
14554
|
+
*
|
|
14555
|
+
* The framework determines the week numbering scheme; currently it is derived from the active format locale.
|
|
14556
|
+
* Future versions of UI5 might select a different week numbering scheme.
|
|
14557
|
+
*/
|
|
14558
|
+
Default = "Default",
|
|
14559
|
+
/**
|
|
14560
|
+
* Official calendar week numbering in most of Europe (ISO 8601 standard):
|
|
14561
|
+
* Monday is first day of the week, the week containing January 4th is first week of the year.
|
|
14562
|
+
*/
|
|
14563
|
+
ISO_8601 = "ISO_8601",
|
|
14564
|
+
/**
|
|
14565
|
+
* Official calendar week numbering in much of the Middle East (Middle Eastern calendar):
|
|
14566
|
+
* Saturday is first day of the week, the week containing January 1st is first week of the year.
|
|
14567
|
+
*/
|
|
14568
|
+
MiddleEastern = "MiddleEastern",
|
|
14569
|
+
/**
|
|
14570
|
+
* Official calendar week numbering in the United States, Canada, Brazil, Israel, Japan, and other countries
|
|
14571
|
+
* (Western traditional calendar):
|
|
14572
|
+
* Sunday is first day of the week, the week containing January 1st is first week of the year.
|
|
14573
|
+
*/
|
|
14574
|
+
WesternTraditional = "WesternTraditional",
|
|
14575
|
+
}
|
|
14576
|
+
export default CalendarWeekNumbering;
|
|
14577
|
+
}
|
|
14578
|
+
|
|
14485
14579
|
declare module "sap/ui/core/DeclarativeSupport" {
|
|
14486
14580
|
import HTMLView from "sap/ui/core/mvc/HTMLView";
|
|
14487
14581
|
|
|
@@ -17725,6 +17819,8 @@ declare module "sap/ui/core/ExtensionPoint" {
|
|
|
17725
17819
|
}
|
|
17726
17820
|
|
|
17727
17821
|
declare module "sap/ui/core/format/DateFormat" {
|
|
17822
|
+
import CalendarWeekNumbering from "sap/ui/core/date/CalendarWeekNumbering";
|
|
17823
|
+
|
|
17728
17824
|
import CalendarType from "sap/ui/core/CalendarType";
|
|
17729
17825
|
|
|
17730
17826
|
import Locale from "sap/ui/core/Locale";
|
|
@@ -17748,6 +17844,13 @@ declare module "sap/ui/core/format/DateFormat" {
|
|
|
17748
17844
|
* Object which defines the format options
|
|
17749
17845
|
*/
|
|
17750
17846
|
oFormatOptions?: {
|
|
17847
|
+
/**
|
|
17848
|
+
* @since 1.96.15 specifies the calendar week numbering. Note: This API has been introduced with version
|
|
17849
|
+
* 1.108 and downported to this release with patch level 15.
|
|
17850
|
+
*/
|
|
17851
|
+
calendarWeekNumbering?:
|
|
17852
|
+
| CalendarWeekNumbering
|
|
17853
|
+
| keyof typeof CalendarWeekNumbering;
|
|
17751
17854
|
/**
|
|
17752
17855
|
* @since 1.34.0 contains pattern symbols (e.g. "yMMMd" or "Hms") which will be converted into the pattern
|
|
17753
17856
|
* in the used locale, which matches the wanted symbols best. The symbols must be in canonical order, that
|
|
@@ -17824,6 +17927,13 @@ declare module "sap/ui/core/format/DateFormat" {
|
|
|
17824
17927
|
* Object which defines the format options
|
|
17825
17928
|
*/
|
|
17826
17929
|
oFormatOptions?: {
|
|
17930
|
+
/**
|
|
17931
|
+
* @since 1.96.15 specifies the calendar week numbering. Note: This API has been introduced with version
|
|
17932
|
+
* 1.108 and downported to this release with patch level 15.
|
|
17933
|
+
*/
|
|
17934
|
+
calendarWeekNumbering?:
|
|
17935
|
+
| CalendarWeekNumbering
|
|
17936
|
+
| keyof typeof CalendarWeekNumbering;
|
|
17827
17937
|
/**
|
|
17828
17938
|
* @since 1.34.0 contains pattern symbols (e.g. "yMMMd" or "Hms") which will be converted into the pattern
|
|
17829
17939
|
* in the used locale, which matches the wanted symbols best. The symbols must be in canonical order, that
|
|
@@ -17903,6 +18013,13 @@ declare module "sap/ui/core/format/DateFormat" {
|
|
|
17903
18013
|
* Object which defines the format options
|
|
17904
18014
|
*/
|
|
17905
18015
|
oFormatOptions?: {
|
|
18016
|
+
/**
|
|
18017
|
+
* @since 1.96.15 specifies the calendar week numbering. Note: This API has been introduced with version
|
|
18018
|
+
* 1.108 and downported to this release with patch level 15.
|
|
18019
|
+
*/
|
|
18020
|
+
calendarWeekNumbering?:
|
|
18021
|
+
| CalendarWeekNumbering
|
|
18022
|
+
| keyof typeof CalendarWeekNumbering;
|
|
17906
18023
|
/**
|
|
17907
18024
|
* @since 1.34.0 contains pattern symbols (e.g. "yMMMd" or "Hms") which will be converted into the pattern
|
|
17908
18025
|
* in the used locale, which matches the wanted symbols best. The symbols must be in canonical order, that
|
|
@@ -67852,6 +67969,10 @@ declare namespace sap {
|
|
|
67852
67969
|
|
|
67853
67970
|
"sap/ui/core/CustomData": undefined;
|
|
67854
67971
|
|
|
67972
|
+
"sap/ui/core/date/CalendarUtils": undefined;
|
|
67973
|
+
|
|
67974
|
+
"sap/ui/core/date/CalendarWeekNumbering": undefined;
|
|
67975
|
+
|
|
67855
67976
|
"sap/ui/core/date/UniversalDate": undefined;
|
|
67856
67977
|
|
|
67857
67978
|
"sap/ui/core/date/UniversalDateUtils": undefined;
|
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
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
// For Library Version: 1.96.
|
|
1
|
+
// For Library Version: 1.96.13
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/support/library" {
|
|
4
4
|
/**
|
|
5
|
-
* @SINCE 1.96.
|
|
5
|
+
* @SINCE 1.96.13
|
|
6
6
|
*
|
|
7
7
|
* Defines the Audiences.
|
|
8
8
|
*/
|
|
@@ -21,7 +21,7 @@ declare module "sap/ui/support/library" {
|
|
|
21
21
|
Internal = "Internal",
|
|
22
22
|
}
|
|
23
23
|
/**
|
|
24
|
-
* @SINCE 1.96.
|
|
24
|
+
* @SINCE 1.96.13
|
|
25
25
|
*
|
|
26
26
|
* Issue Categories.
|
|
27
27
|
*/
|
|
@@ -76,7 +76,7 @@ declare module "sap/ui/support/library" {
|
|
|
76
76
|
Usage = "Usage",
|
|
77
77
|
}
|
|
78
78
|
/**
|
|
79
|
-
* @SINCE 1.96.
|
|
79
|
+
* @SINCE 1.96.13
|
|
80
80
|
*
|
|
81
81
|
* Analysis history formats.
|
|
82
82
|
*/
|
|
@@ -91,7 +91,7 @@ declare module "sap/ui/support/library" {
|
|
|
91
91
|
String = "String",
|
|
92
92
|
}
|
|
93
93
|
/**
|
|
94
|
-
* @SINCE 1.96.
|
|
94
|
+
* @SINCE 1.96.13
|
|
95
95
|
*
|
|
96
96
|
* Defines severity types.
|
|
97
97
|
*/
|
|
@@ -110,7 +110,7 @@ declare module "sap/ui/support/library" {
|
|
|
110
110
|
Medium = "Medium",
|
|
111
111
|
}
|
|
112
112
|
/**
|
|
113
|
-
* @SINCE 1.96.
|
|
113
|
+
* @SINCE 1.96.13
|
|
114
114
|
*
|
|
115
115
|
* Contains the available system presets.
|
|
116
116
|
*/
|
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.96.
|
|
1
|
+
// For Library Version: 1.96.13
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/unified/library" {
|
|
4
4
|
/**
|
|
@@ -329,6 +329,8 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
329
329
|
|
|
330
330
|
import Event from "sap/ui/base/Event";
|
|
331
331
|
|
|
332
|
+
import CalendarWeekNumbering from "sap/ui/core/date/CalendarWeekNumbering";
|
|
333
|
+
|
|
332
334
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
333
335
|
|
|
334
336
|
import CalendarType from "sap/ui/core/CalendarType";
|
|
@@ -795,6 +797,18 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
795
797
|
* ariaLabelledBy}.
|
|
796
798
|
*/
|
|
797
799
|
getAriaLabelledBy(): ID[];
|
|
800
|
+
/**
|
|
801
|
+
* @SINCE 1.96.15
|
|
802
|
+
*
|
|
803
|
+
* Gets current value of property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
804
|
+
*
|
|
805
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
806
|
+
* global configuration is used. Note: This property should not be used with firstDayOfWeek property. Note:
|
|
807
|
+
* This API has been introduced with version 1.108 and downported to this release with patch level 15.
|
|
808
|
+
*/
|
|
809
|
+
getCalendarWeekNumbering():
|
|
810
|
+
| CalendarWeekNumbering
|
|
811
|
+
| keyof typeof CalendarWeekNumbering;
|
|
798
812
|
/**
|
|
799
813
|
* @SINCE 1.38.0
|
|
800
814
|
*
|
|
@@ -811,8 +825,9 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
811
825
|
*
|
|
812
826
|
* Gets current value of property {@link #getFirstDayOfWeek firstDayOfWeek}.
|
|
813
827
|
*
|
|
814
|
-
* If set, the
|
|
815
|
-
* is set, the default
|
|
828
|
+
* If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
|
|
829
|
+
* valid property is set, the current locale's default is applied. Note: This property should not be used
|
|
830
|
+
* with the calendarWeekNumbering property.
|
|
816
831
|
*
|
|
817
832
|
* Default value is `-1`.
|
|
818
833
|
*/
|
|
@@ -1132,13 +1147,33 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1132
1147
|
*/
|
|
1133
1148
|
vSpecialDate: int | string | DateTypeRange
|
|
1134
1149
|
): DateTypeRange;
|
|
1150
|
+
/**
|
|
1151
|
+
* @SINCE 1.96.15
|
|
1152
|
+
*
|
|
1153
|
+
* Sets a new value for property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
1154
|
+
*
|
|
1155
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
1156
|
+
* global configuration is used. Note: This property should not be used with firstDayOfWeek property. Note:
|
|
1157
|
+
* This API has been introduced with version 1.108 and downported to this release with patch level 15.
|
|
1158
|
+
*
|
|
1159
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1160
|
+
*/
|
|
1161
|
+
setCalendarWeekNumbering(
|
|
1162
|
+
/**
|
|
1163
|
+
* New value for property `calendarWeekNumbering`
|
|
1164
|
+
*/
|
|
1165
|
+
sCalendarWeekNumbering?:
|
|
1166
|
+
| CalendarWeekNumbering
|
|
1167
|
+
| keyof typeof CalendarWeekNumbering
|
|
1168
|
+
): this;
|
|
1135
1169
|
/**
|
|
1136
1170
|
* @SINCE 1.28.9
|
|
1137
1171
|
*
|
|
1138
1172
|
* Sets a new value for property {@link #getFirstDayOfWeek firstDayOfWeek}.
|
|
1139
1173
|
*
|
|
1140
|
-
* If set, the
|
|
1141
|
-
* is set, the default
|
|
1174
|
+
* If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
|
|
1175
|
+
* valid property is set, the current locale's default is applied. Note: This property should not be used
|
|
1176
|
+
* with the calendarWeekNumbering property.
|
|
1142
1177
|
*
|
|
1143
1178
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1144
1179
|
*
|
|
@@ -1356,8 +1391,9 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1356
1391
|
/**
|
|
1357
1392
|
* @SINCE 1.28.9
|
|
1358
1393
|
*
|
|
1359
|
-
* If set, the
|
|
1360
|
-
* is set, the default
|
|
1394
|
+
* If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
|
|
1395
|
+
* valid property is set, the current locale's default is applied. Note: This property should not be used
|
|
1396
|
+
* with the calendarWeekNumbering property.
|
|
1361
1397
|
*/
|
|
1362
1398
|
firstDayOfWeek?: int | PropertyBindingInfo;
|
|
1363
1399
|
|
|
@@ -1446,6 +1482,17 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1446
1482
|
*/
|
|
1447
1483
|
showCurrentDateButton?: boolean | PropertyBindingInfo;
|
|
1448
1484
|
|
|
1485
|
+
/**
|
|
1486
|
+
* @SINCE 1.96.15
|
|
1487
|
+
*
|
|
1488
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
1489
|
+
* global configuration is used. Note: This property should not be used with firstDayOfWeek property. Note:
|
|
1490
|
+
* This API has been introduced with version 1.108 and downported to this release with patch level 15.
|
|
1491
|
+
*/
|
|
1492
|
+
calendarWeekNumbering?:
|
|
1493
|
+
| (CalendarWeekNumbering | keyof typeof CalendarWeekNumbering)
|
|
1494
|
+
| PropertyBindingInfo;
|
|
1495
|
+
|
|
1449
1496
|
/**
|
|
1450
1497
|
* Dates or date ranges for selected dates.
|
|
1451
1498
|
*
|
|
@@ -2697,6 +2744,8 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
2697
2744
|
|
|
2698
2745
|
import Event from "sap/ui/base/Event";
|
|
2699
2746
|
|
|
2747
|
+
import CalendarWeekNumbering from "sap/ui/core/date/CalendarWeekNumbering";
|
|
2748
|
+
|
|
2700
2749
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
2701
2750
|
|
|
2702
2751
|
import CalendarType from "sap/ui/core/CalendarType";
|
|
@@ -3091,6 +3140,18 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
3091
3140
|
* ariaLabelledBy}.
|
|
3092
3141
|
*/
|
|
3093
3142
|
getAriaLabelledBy(): ID[];
|
|
3143
|
+
/**
|
|
3144
|
+
* @SINCE 1.96.15
|
|
3145
|
+
*
|
|
3146
|
+
* Gets current value of property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
3147
|
+
*
|
|
3148
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
3149
|
+
* global configuration is used. Note: This property should not be used with firstDayOfWeek property. Note:
|
|
3150
|
+
* This API has been introduced with version 1.108 and downported to this release with patch level 15.
|
|
3151
|
+
*/
|
|
3152
|
+
getCalendarWeekNumbering():
|
|
3153
|
+
| CalendarWeekNumbering
|
|
3154
|
+
| keyof typeof CalendarWeekNumbering;
|
|
3094
3155
|
/**
|
|
3095
3156
|
* Gets current value of property {@link #getDate date}.
|
|
3096
3157
|
*
|
|
@@ -3111,8 +3172,9 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
3111
3172
|
*
|
|
3112
3173
|
* Gets current value of property {@link #getFirstDayOfWeek firstDayOfWeek}.
|
|
3113
3174
|
*
|
|
3114
|
-
* If set, the
|
|
3115
|
-
* is set, the default
|
|
3175
|
+
* If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
|
|
3176
|
+
* valid property is set, the current locale's default is applied. Note: This property should not be used
|
|
3177
|
+
* with the calendarWeekNumbering property.
|
|
3116
3178
|
*
|
|
3117
3179
|
* Default value is `-1`.
|
|
3118
3180
|
*/
|
|
@@ -3352,6 +3414,25 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
3352
3414
|
*/
|
|
3353
3415
|
vSpecialDate: int | string | DateTypeRange
|
|
3354
3416
|
): DateTypeRange;
|
|
3417
|
+
/**
|
|
3418
|
+
* @SINCE 1.96.15
|
|
3419
|
+
*
|
|
3420
|
+
* Sets a new value for property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
3421
|
+
*
|
|
3422
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
3423
|
+
* global configuration is used. Note: This property should not be used with firstDayOfWeek property. Note:
|
|
3424
|
+
* This API has been introduced with version 1.108 and downported to this release with patch level 15.
|
|
3425
|
+
*
|
|
3426
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3427
|
+
*/
|
|
3428
|
+
setCalendarWeekNumbering(
|
|
3429
|
+
/**
|
|
3430
|
+
* New value for property `calendarWeekNumbering`
|
|
3431
|
+
*/
|
|
3432
|
+
sCalendarWeekNumbering?:
|
|
3433
|
+
| CalendarWeekNumbering
|
|
3434
|
+
| keyof typeof CalendarWeekNumbering
|
|
3435
|
+
): this;
|
|
3355
3436
|
/**
|
|
3356
3437
|
* Sets a new value for property {@link #getDate date}.
|
|
3357
3438
|
*
|
|
@@ -3371,8 +3452,9 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
3371
3452
|
*
|
|
3372
3453
|
* Sets a new value for property {@link #getFirstDayOfWeek firstDayOfWeek}.
|
|
3373
3454
|
*
|
|
3374
|
-
* If set, the
|
|
3375
|
-
* is set, the default
|
|
3455
|
+
* If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
|
|
3456
|
+
* valid property is set, the current locale's default is applied. Note: This property should not be used
|
|
3457
|
+
* with the calendarWeekNumbering property.
|
|
3376
3458
|
*
|
|
3377
3459
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3378
3460
|
*
|
|
@@ -3551,8 +3633,9 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
3551
3633
|
/**
|
|
3552
3634
|
* @SINCE 1.28.9
|
|
3553
3635
|
*
|
|
3554
|
-
* If set, the
|
|
3555
|
-
* is set, the default
|
|
3636
|
+
* If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
|
|
3637
|
+
* valid property is set, the current locale's default is applied. Note: This property should not be used
|
|
3638
|
+
* with the calendarWeekNumbering property.
|
|
3556
3639
|
*/
|
|
3557
3640
|
firstDayOfWeek?: int | PropertyBindingInfo;
|
|
3558
3641
|
|
|
@@ -3601,6 +3684,17 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
3601
3684
|
*/
|
|
3602
3685
|
showWeekNumbers?: boolean | PropertyBindingInfo;
|
|
3603
3686
|
|
|
3687
|
+
/**
|
|
3688
|
+
* @SINCE 1.96.15
|
|
3689
|
+
*
|
|
3690
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
3691
|
+
* global configuration is used. Note: This property should not be used with firstDayOfWeek property. Note:
|
|
3692
|
+
* This API has been introduced with version 1.108 and downported to this release with patch level 15.
|
|
3693
|
+
*/
|
|
3694
|
+
calendarWeekNumbering?:
|
|
3695
|
+
| (CalendarWeekNumbering | keyof typeof CalendarWeekNumbering)
|
|
3696
|
+
| PropertyBindingInfo;
|
|
3697
|
+
|
|
3604
3698
|
/**
|
|
3605
3699
|
* Date Ranges for selected dates of the DatePicker
|
|
3606
3700
|
*/
|
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED