@openui5/ts-types 1.99.0 → 1.100.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.
@@ -264,7 +264,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
264
264
  ): jQuery;
265
265
  }
266
266
 
267
- // For Library Version: 1.99.0
267
+ // For Library Version: 1.100.0
268
268
 
269
269
  declare module "sap/base/assert" {
270
270
  /**
@@ -693,7 +693,7 @@ declare module "sap/base/Log" {
693
693
  /**
694
694
  * The default log level
695
695
  */
696
- iLogLevel?: Level
696
+ iDefaultLogLevel?: Level
697
697
  ): object;
698
698
  /**
699
699
  * Creates a new info-level entry in the log with the given message, details and calling component.
@@ -3231,6 +3231,52 @@ declare module "sap/ui/performance/Measurement" {
3231
3231
  };
3232
3232
  }
3233
3233
 
3234
+ declare module "sap/ui/performance/trace/FESRHelper" {
3235
+ /**
3236
+ * @SINCE 1.100
3237
+ *
3238
+ * FESRHelper API Provides helper functionality for FESR and consumers of FESR
3239
+ */
3240
+ interface FESRHelper {
3241
+ /**
3242
+ * @SINCE 1.100
3243
+ *
3244
+ * Get semantic stepname for an event of a given element used for FESR.
3245
+ */
3246
+ getSemanticStepname(
3247
+ /**
3248
+ * The element conatining the semantic stepname
3249
+ */
3250
+ oElement: sap.ui.core.Element,
3251
+ /**
3252
+ * The event ID of the semantic stepname
3253
+ */
3254
+ sEventId: string
3255
+ ): string;
3256
+ /**
3257
+ * @SINCE 1.100
3258
+ *
3259
+ * Add semantic stepname for an event of a given element used for FESR.
3260
+ */
3261
+ setSemanticStepname(
3262
+ /**
3263
+ * The element the semantic stepname should be applied to
3264
+ */
3265
+ oElement: sap.ui.core.Element,
3266
+ /**
3267
+ * The event ID the semantic stepname is valid for
3268
+ */
3269
+ sEventId: string,
3270
+ /**
3271
+ * The semantic stepname
3272
+ */
3273
+ sStepname: string
3274
+ ): void;
3275
+ }
3276
+ const FESRHelper: FESRHelper;
3277
+ export default FESRHelper;
3278
+ }
3279
+
3234
3280
  declare module "sap/ui/performance/trace/Interaction" {
3235
3281
  /**
3236
3282
  * @SINCE 1.76
@@ -10861,7 +10907,7 @@ declare namespace sap {
10861
10907
  /**
10862
10908
  * Returns the calculated position of the drop action relative to the valid dropped control.
10863
10909
  */
10864
- getDropPosition(): string;
10910
+ getDropPosition(): sap.ui.core.dnd.RelativeDropPosition;
10865
10911
  /**
10866
10912
  * Returns the drop indicator.
10867
10913
  */
@@ -12094,6 +12140,25 @@ declare namespace sap {
12094
12140
  */
12095
12141
  OnOrBetween = "OnOrBetween",
12096
12142
  }
12143
+ /**
12144
+ * @SINCE 1.100.0
12145
+ *
12146
+ * Drop positions relative to a dropped element.
12147
+ */
12148
+ enum RelativeDropPosition {
12149
+ /**
12150
+ * Drop after the control.
12151
+ */
12152
+ After = "After",
12153
+ /**
12154
+ * Drop before the control.
12155
+ */
12156
+ Before = "Before",
12157
+ /**
12158
+ * Drop on the control.
12159
+ */
12160
+ On = "On",
12161
+ }
12097
12162
  }
12098
12163
  /**
12099
12164
  * Format classes
@@ -12124,8 +12189,9 @@ declare namespace sap {
12124
12189
  */
12125
12190
  oJSDate: Date,
12126
12191
  /**
12127
- * The IANA timezone ID in which the date will be calculated and formatted e.g. "America/New_York". If omitted,
12128
- * the timezone will be taken from {@link sap.ui.core.Configuration#getTimezone}.
12192
+ * The IANA timezone ID in which the date will be calculated and formatted e.g. "America/New_York". If the
12193
+ * parameter is omitted, `null` or an empty string, the timezone will be taken from {@link sap.ui.core.Configuration#getTimezone}.
12194
+ * For an invalid IANA timezone ID, an empty string will be returned.
12129
12195
  */
12130
12196
  sTimezone?: string
12131
12197
  ): string;
@@ -12142,8 +12208,9 @@ declare namespace sap {
12142
12208
  */
12143
12209
  sValue: string,
12144
12210
  /**
12145
- * The IANA timezone ID which should be used to convert the date e.g. "America/New_York". If omitted, the
12146
- * timezone will be taken from {@link sap.ui.core.Configuration#getTimezone}.
12211
+ * The IANA timezone ID which should be used to convert the date e.g. "America/New_York". If the parameter
12212
+ * is omitted, `null` or an empty string, the timezone will be taken from {@link sap.ui.core.Configuration#getTimezone}.
12213
+ * For an invalid IANA timezone ID, `null` will be returned.
12147
12214
  */
12148
12215
  sTimezone?: string,
12149
12216
  /**
@@ -12371,6 +12438,7 @@ declare namespace sap {
12371
12438
  ): sap.ui.core.format.DateFormat;
12372
12439
  /**
12373
12440
  * @SINCE 1.99.0
12441
+ * @EXPERIMENTAL (since 1.99.0)
12374
12442
  *
12375
12443
  * Get a datetimeWithTimezone instance of the DateFormat, which can be used for formatting.
12376
12444
  */
@@ -12397,7 +12465,7 @@ declare namespace sap {
12397
12465
  * - "Only": display only timezone It is ignored for formatting when an options pattern or a format
12398
12466
  * are supplied.
12399
12467
  */
12400
- showTimezone?: /* was: sap.ui.core.format.DateFormatTimezoneDisplay */ any;
12468
+ showTimezone?: sap.ui.core.format.DateFormatTimezoneDisplay;
12401
12469
  /**
12402
12470
  * Can be either 'short, 'medium', 'long' or 'full'. For datetime you can also define mixed styles, separated
12403
12471
  * with a slash, where the first part is the date style and the second part is the time style (e.g. "medium/short").
@@ -12521,6 +12589,9 @@ declare namespace sap {
12521
12589
  *
12522
12590
  * Uses the timezone from {@link sap.ui.core.Configuration#getTimezone}, which falls back to the browser's
12523
12591
  * local timezone to convert the given date.
12592
+ *
12593
+ * When using instances from getDateTimeWithTimezoneInstance, please see the corresponding documentation:
12594
+ * {@link sap.ui.core.format.DateFormat.getDateTimeWithTimezoneInstance#format}.
12524
12595
  */
12525
12596
  format(
12526
12597
  /**
@@ -12537,6 +12608,9 @@ declare namespace sap {
12537
12608
  *
12538
12609
  * Uses the timezone from {@link sap.ui.core.Configuration#getTimezone}, which falls back to the browser's
12539
12610
  * local timezone to convert the given date.
12611
+ *
12612
+ * When using instances from getDateTimeWithTimezoneInstance, please see the corresponding documentation:
12613
+ * {@link sap.ui.core.format.DateFormat.getDateTimeWithTimezoneInstance#parse}.
12540
12614
  */
12541
12615
  parse(
12542
12616
  /**
@@ -12544,7 +12618,7 @@ declare namespace sap {
12544
12618
  */
12545
12619
  sValue: string,
12546
12620
  /**
12547
- * whether to use UTC, if no timezone is contained
12621
+ * whether to use UTC
12548
12622
  */
12549
12623
  bUTC: boolean,
12550
12624
  /**
@@ -12759,51 +12833,43 @@ declare namespace sap {
12759
12833
  */
12760
12834
  oFormatOptions?: {
12761
12835
  /**
12762
- * defines minimal number of non-decimal digits
12836
+ * defines whether the currency is shown as a code in currency format. The currency symbol is displayed
12837
+ * when this option is set to `false` and a symbol has been defined for the given currency code.
12763
12838
  */
12764
- minIntegerDigits?: int;
12765
- /**
12766
- * defines maximum number of non-decimal digits. If the number exceeds this maximum, e.g. 1e+120, "?" characters
12767
- * are shown instead of digits.
12768
- */
12769
- maxIntegerDigits?: int;
12839
+ currencyCode?: boolean;
12770
12840
  /**
12771
- * defines minimal number of decimal digits
12841
+ * can be set either to 'standard' (the default value) or to 'accounting' for an accounting-specific currency
12842
+ * display
12772
12843
  */
12773
- minFractionDigits?: int;
12844
+ currencyContext?: string;
12774
12845
  /**
12775
- * defines maximum number of decimal digits
12846
+ * defines a set of custom currencies exclusive to this NumberFormat instance. Custom currencies must not
12847
+ * only consist of digits. If custom currencies are defined on the instance, no other currencies can be
12848
+ * formatted and parsed by this instance. Globally available custom currencies can be added via the global
12849
+ * configuration. See the above examples. See also {@link sap.ui.core.Configuration.FormatSettings#setCustomCurrencies}
12850
+ * and {@link sap.ui.core.Configuration.FormatSettings#addCustomCurrencies}.
12776
12851
  */
12777
- maxFractionDigits?: int;
12852
+ customCurrencies?: Record<string, object>;
12778
12853
  /**
12779
12854
  * defines the number of decimal digits
12780
12855
  */
12781
12856
  decimals?: int;
12782
12857
  /**
12783
- * defines the number of decimal in the shortened format string. If this isn't specified, the 'decimals'
12784
- * options is used
12785
- */
12786
- shortDecimals?: int;
12787
- /**
12788
- * only use short number formatting for values above this limit
12789
- */
12790
- shortLimit?: int;
12791
- /**
12792
- * @since 1.40 specifies a number from which the scale factor for 'short' or 'long' style format is generated.
12793
- * The generated scale factor is used for all numbers which are formatted with this format instance. This
12794
- * option has effect only when the option 'style' is set to 'short' or 'long'. This option is by default
12795
- * set with `undefined` which means the scale factor is selected automatically for each number being formatted.
12858
+ * defines the character used as decimal separator. Note: `decimalSeparator` must always be different from
12859
+ * `groupingSeparator`.
12796
12860
  */
12797
- shortRefNumber?: int;
12861
+ decimalSeparator?: string;
12798
12862
  /**
12799
- * @since 1.40 specifies whether the scale factor is shown in the formatted number. This option takes effect
12800
- * only when the 'style' options is set to either 'short' or 'long'.
12863
+ * @since 1.30.0 defines what an empty string is parsed as, and what is formatted as an empty string. The
12864
+ * allowed values are "" (empty string), NaN, `null`, or 0. The 'format' and 'parse' functions are done
12865
+ * in a symmetric way. For example, when this parameter is set to NaN, an empty string is parsed as [NaN,
12866
+ * undefined], and NaN is formatted as an empty string.
12801
12867
  */
12802
- showScale?: boolean;
12868
+ emptyString?: number;
12803
12869
  /**
12804
- * CLDR number pattern which is used to format the number
12870
+ * defines the grouping base size in digits if it is different from the grouping size (e.g. Indian grouping)
12805
12871
  */
12806
- pattern?: string;
12872
+ groupingBaseSize?: int;
12807
12873
  /**
12808
12874
  * defines whether grouping is enabled (show the grouping separators)
12809
12875
  */
@@ -12814,60 +12880,75 @@ declare namespace sap {
12814
12880
  */
12815
12881
  groupingSeparator?: string;
12816
12882
  /**
12817
- * defines the grouping size in digits, the default is three
12883
+ * defines the grouping size in digits; the default is `3`. It must be a positive number.
12818
12884
  */
12819
12885
  groupingSize?: int;
12820
12886
  /**
12821
- * defines the grouping base size in digits, in case it is different from the grouping size (e.g. indian
12822
- * grouping)
12887
+ * defines the maximum number of decimal digits
12823
12888
  */
12824
- groupingBaseSize?: int;
12889
+ maxFractionDigits?: int;
12825
12890
  /**
12826
- * defines the character used as decimal separator. Note: `decimalSeparator` must always be different from
12827
- * `groupingSeparator`.
12891
+ * defines the maximum number of non-decimal digits. If the number exceeds this maximum, e.g. 1e+120, "?"
12892
+ * characters are shown instead of digits.
12828
12893
  */
12829
- decimalSeparator?: string;
12894
+ maxIntegerDigits?: int;
12830
12895
  /**
12831
- * defines the used plus symbol
12896
+ * defines the minimal number of decimal digits
12832
12897
  */
12833
- plusSign?: string;
12898
+ minFractionDigits?: int;
12899
+ /**
12900
+ * defines the minimal number of non-decimal digits
12901
+ */
12902
+ minIntegerDigits?: int;
12834
12903
  /**
12835
12904
  * defines the used minus symbol
12836
12905
  */
12837
12906
  minusSign?: string;
12838
12907
  /**
12839
- * @since 1.28.2 defines whether to output string from parse function in order to keep the precision for
12840
- * big numbers. Numbers in scientific notation are parsed back to the standard notation. For example "5e-3"
12908
+ * @since 1.28.2 defines whether to output the string from the parse function in order to keep the precision
12909
+ * for big numbers. Numbers in scientific notation are parsed back to standard notation. For example, "5e-3"
12841
12910
  * is parsed to "0.005".
12842
12911
  */
12843
12912
  parseAsString?: boolean;
12913
+ /**
12914
+ * CLDR number pattern which is used to format the number
12915
+ */
12916
+ pattern?: string;
12917
+ /**
12918
+ * defines the used plus symbol
12919
+ */
12920
+ plusSign?: string;
12844
12921
  /**
12845
12922
  * Whether {@link #format} preserves decimal digits except trailing zeros in case there are more decimals
12846
12923
  * than the `maxFractionDigits` format option allows. If decimals are not preserved, the formatted number
12847
12924
  * is rounded to `maxFractionDigits`.
12848
12925
  */
12849
12926
  preserveDecimals?: boolean;
12850
- /**
12851
- * defines the style of format. Valid values are 'short, 'long' or 'standard' (based on CLDR decimalFormat).
12852
- * Numbers are formatted into compact forms when it's set to 'short' or 'long'. When this option is set,
12853
- * the default value of option 'precision' is set to 2. This can be changed by setting either min/maxFractionDigits,
12854
- * decimals, shortDecimals or precision option.
12855
- */
12856
- style?: string;
12857
12927
  /**
12858
12928
  * specifies a rounding behavior for discarding the digits after the maximum fraction digits defined by
12859
- * maxFractionDigits. Rounding will only be applied, if the passed value if of type number. This can be
12860
- * assigned by value in {@link sap.ui.core.format.NumberFormat.RoundingMode RoundingMode} or a function
12861
- * which will be used for rounding the number. The function is called with two parameters: the number and
12862
- * how many decimal digits should be reserved.
12929
+ * maxFractionDigits. Rounding will only be applied if the passed value is of type `number`. This can be
12930
+ * assigned
12931
+ * - by value in {@link sap.ui.core.format.NumberFormat.RoundingMode RoundingMode},
12932
+ * - via a function that is used for rounding the number and takes two parameters: the number itself,
12933
+ * and the number of decimal digits that should be reserved.
12863
12934
  */
12864
12935
  roundingMode?: sap.ui.core.format.NumberFormat.RoundingMode;
12865
12936
  /**
12866
- * Overrides the global configuration value {@link sap.ui.core.Configuration.FormatSettings#getTrailingCurrencyCode}
12867
- * whose default value is `true</>. This is ignored if oFormatOptions.currencyCode` is set to `false`
12868
- * or if `oFormatOptions.pattern` is supplied
12937
+ * defines the number of decimal in the shortened format string. If this isn't specified, the 'decimals'
12938
+ * options is used
12939
+ */
12940
+ shortDecimals?: int;
12941
+ /**
12942
+ * only use short number formatting for values above this limit
12869
12943
  */
12870
- trailingCurrencyCode?: boolean;
12944
+ shortLimit?: int;
12945
+ /**
12946
+ * @since 1.40 specifies a number from which the scale factor for 'short' or 'long' style format is generated.
12947
+ * The generated scale factor is used for all numbers which are formatted with this format instance. This
12948
+ * option has effect only when the option 'style' is set to 'short' or 'long'. This option is by default
12949
+ * set with `undefined` which means the scale factor is selected automatically for each number being formatted.
12950
+ */
12951
+ shortRefNumber?: int;
12871
12952
  /**
12872
12953
  * defines whether the currency code/symbol is shown in the formatted string, e.g. true: "1.00 EUR", false:
12873
12954
  * "1.00" for locale "en" If both `showMeasure` and `showNumber` are false, an empty string is returned
@@ -12880,29 +12961,23 @@ declare namespace sap {
12880
12961
  */
12881
12962
  showNumber?: boolean;
12882
12963
  /**
12883
- * defines whether the currency is shown as code in currency format. The currency symbol is displayed when
12884
- * this is set to false and there is a symbol defined for the given currency code.
12885
- */
12886
- currencyCode?: boolean;
12887
- /**
12888
- * It can be set either with 'standard' (the default value) or with 'accounting' for an accounting specific
12889
- * currency display
12964
+ * @since 1.40 specifies whether the scale factor is shown in the formatted number. This option takes effect
12965
+ * only when the 'style' options is set to either 'short' or 'long'.
12890
12966
  */
12891
- currencyContext?: string;
12967
+ showScale?: boolean;
12892
12968
  /**
12893
- * @since 1.30.0 defines what empty string is parsed as and what is formatted as empty string. The allowed
12894
- * values are "" (empty string), NaN, null or 0. The 'format' and 'parse' are done in a symmetric way. For
12895
- * example when this parameter is set to NaN, empty string is parsed as [NaN, undefined] and NaN is formatted
12896
- * as empty string.
12969
+ * defines the style of format. Valid values are 'short, 'long' or 'standard' (based on CLDR decimalFormat).
12970
+ * When set to 'short' or 'long', numbers are formatted into compact forms. When this option is set, the
12971
+ * default value of the 'precision' option is set to 2. This can be changed by setting either min/maxFractionDigits,
12972
+ * decimals, shortDecimals, or the 'precision' option itself.
12897
12973
  */
12898
- emptyString?: number;
12974
+ style?: string;
12899
12975
  /**
12900
- * defines a set of custom currencies exclusive to this NumberFormat instance. If custom currencies are
12901
- * defined on the instance, no other currencies can be formatted and parsed by this instance. Globally available
12902
- * custom currencies can be added via the global configuration. See the above examples. See also {@link
12903
- * sap.ui.core.Configuration.FormatSettings#setCustomCurrencies} and {@link sap.ui.core.Configuration.FormatSettings#addCustomCurrencies}.
12976
+ * overrides the global configuration value {@link sap.ui.core.Configuration.FormatSettings#getTrailingCurrencyCode},
12977
+ * which has a default value of `true</>. This is ignored if oFormatOptions.currencyCode` is set to
12978
+ * `false`, or if `oFormatOptions.pattern` is supplied.
12904
12979
  */
12905
- customCurrencies?: Record<string, object>;
12980
+ trailingCurrencyCode?: boolean;
12906
12981
  },
12907
12982
  /**
12908
12983
  * Locale to get the formatter for
@@ -12917,6 +12992,19 @@ declare namespace sap {
12917
12992
  *
12918
12993
  * This instance has HALF_AWAY_FROM_ZERO set as default rounding mode. Please set the roundingMode property
12919
12994
  * in oFormatOptions to change the default value.
12995
+ *
12996
+ * The following example shows how grouping is done:
12997
+ * ```javascript
12998
+ *
12999
+ * var oFormat = NumberFormat.getFloatInstance({
13000
+ * "groupingEnabled": true, // grouping is enabled
13001
+ * "groupingSeparator": '.', // grouping separator is '.'
13002
+ * "groupingSize": 3, // the amount of digits to be grouped (here: thousand)
13003
+ * "decimalSeparator": "," // the decimal separator must be different from the grouping separator
13004
+ * });
13005
+ *
13006
+ * oFormat.format(1234.56); // "1.234,56"
13007
+ * ```
12920
13008
  */
12921
13009
  static getFloatInstance(
12922
13010
  /**
@@ -12924,56 +13012,26 @@ declare namespace sap {
12924
13012
  * to the type and locale settings are used.
12925
13013
  */
12926
13014
  oFormatOptions?: {
12927
- /**
12928
- * defines minimal number of non-decimal digits
12929
- */
12930
- minIntegerDigits?: int;
12931
- /**
12932
- * defines maximum number of non-decimal digits. If the number exceeds this maximum, e.g. 1e+120, "?" characters
12933
- * are shown instead of digits.
12934
- */
12935
- maxIntegerDigits?: int;
12936
- /**
12937
- * defines minimal number of decimal digits
12938
- */
12939
- minFractionDigits?: int;
12940
- /**
12941
- * defines maximum number of decimal digits
12942
- */
12943
- maxFractionDigits?: int;
12944
13015
  /**
12945
13016
  * defines the number of decimal digits
12946
13017
  */
12947
13018
  decimals?: int;
12948
13019
  /**
12949
- * defines the number of decimal in the shortened format string. If this isn't specified, the 'decimals'
12950
- * options is used
12951
- */
12952
- shortDecimals?: int;
12953
- /**
12954
- * only use short number formatting for values above this limit
12955
- */
12956
- shortLimit?: int;
12957
- /**
12958
- * @since 1.40 specifies a number from which the scale factor for 'short' or 'long' style format is generated.
12959
- * The generated scale factor is used for all numbers which are formatted with this format instance. This
12960
- * option has effect only when the option 'style' is set to 'short' or 'long'. This option is by default
12961
- * set with `undefined` which means the scale factor is selected automatically for each number being formatted.
12962
- */
12963
- shortRefNumber?: int;
12964
- /**
12965
- * @since 1.40 specifies whether the scale factor is shown in the formatted number. This option takes effect
12966
- * only when the 'style' options is set to either 'short' or 'long'.
13020
+ * defines the character used as decimal separator. Note: `decimalSeparator` must always be different from
13021
+ * `groupingSeparator`.
12967
13022
  */
12968
- showScale?: boolean;
13023
+ decimalSeparator?: string;
12969
13024
  /**
12970
- * defines the number precision, number of decimals is calculated dependent on the integer digits
13025
+ * @since 1.30.0 defines what an empty string is parsed as, and what is formatted as an empty string. The
13026
+ * allowed values are "" (empty string), NaN, `null`, or 0. The 'format' and 'parse' functions are done
13027
+ * in a symmetric way. For example, when this parameter is set to NaN, an empty string is parsed as NaN,
13028
+ * and NaN is formatted as an empty string.
12971
13029
  */
12972
- precision?: int;
13030
+ emptyString?: number;
12973
13031
  /**
12974
- * CLDR number pattern which is used to format the number
13032
+ * defines the grouping base size in digits if it is different from the grouping size (e.g. Indian grouping)
12975
13033
  */
12976
- pattern?: string;
13034
+ groupingBaseSize?: int;
12977
13035
  /**
12978
13036
  * defines whether grouping is enabled (show the grouping separators)
12979
13037
  */
@@ -12984,61 +13042,91 @@ declare namespace sap {
12984
13042
  */
12985
13043
  groupingSeparator?: string;
12986
13044
  /**
12987
- * defines the grouping size in digits, the default is three
13045
+ * defines the grouping size in digits; the default is `3`. It must be a positive number.
12988
13046
  */
12989
13047
  groupingSize?: int;
12990
13048
  /**
12991
- * defines the grouping base size in digits, in case it is different from the grouping size (e.g. indian
12992
- * grouping)
13049
+ * defines the maximum number of decimal digits
12993
13050
  */
12994
- groupingBaseSize?: int;
13051
+ maxFractionDigits?: int;
12995
13052
  /**
12996
- * defines the character used as decimal separator. Note: `decimalSeparator` must always be different from
12997
- * `groupingSeparator`.
13053
+ * defines the maximum number of non-decimal digits. If the number exceeds this maximum, e.g. 1e+120, "?"
13054
+ * characters are shown instead of digits.
12998
13055
  */
12999
- decimalSeparator?: string;
13056
+ maxIntegerDigits?: int;
13000
13057
  /**
13001
- * defines the used plus symbol
13058
+ * defines the minimal number of decimal digits
13002
13059
  */
13003
- plusSign?: string;
13060
+ minFractionDigits?: int;
13061
+ /**
13062
+ * defines the minimal number of non-decimal digits
13063
+ */
13064
+ minIntegerDigits?: int;
13004
13065
  /**
13005
13066
  * defines the used minus symbol
13006
13067
  */
13007
13068
  minusSign?: string;
13008
13069
  /**
13009
- * @since 1.28.2 defines whether to output string from parse function in order to keep the precision for
13010
- * big numbers. Numbers in scientific notation are parsed back to the standard notation. For example "5e-3"
13070
+ * @since 1.28.2 defines whether to output the string from the parse function in order to keep the precision
13071
+ * for big numbers. Numbers in scientific notation are parsed back to standard notation. For example, "5e-3"
13011
13072
  * is parsed to "0.005".
13012
13073
  */
13013
13074
  parseAsString?: boolean;
13075
+ /**
13076
+ * CLDR number pattern which is used to format the number
13077
+ */
13078
+ pattern?: string;
13079
+ /**
13080
+ * defines the used plus symbol
13081
+ */
13082
+ plusSign?: string;
13083
+ /**
13084
+ * defines the numerical precision; the number of decimals is calculated dependent on the integer digits
13085
+ */
13086
+ precision?: int;
13014
13087
  /**
13015
13088
  * Whether {@link #format} preserves decimal digits except trailing zeros in case there are more decimals
13016
13089
  * than the `maxFractionDigits` format option allows. If decimals are not preserved, the formatted number
13017
13090
  * is rounded to `maxFractionDigits`.
13018
13091
  */
13019
13092
  preserveDecimals?: boolean;
13020
- /**
13021
- * defines the style of format. Valid values are 'short, 'long' or 'standard' (based on CLDR decimalFormat).
13022
- * Numbers are formatted into compact forms when it's set to 'short' or 'long'. When this option is set,
13023
- * the default value of option 'precision' is set to 2. This can be changed by setting either min/maxFractionDigits,
13024
- * decimals, shortDecimals or precision option.
13025
- */
13026
- style?: string;
13027
13093
  /**
13028
13094
  * specifies a rounding behavior for discarding the digits after the maximum fraction digits defined by
13029
- * maxFractionDigits. Rounding will only be applied, if the passed value if of type number. This can be
13030
- * assigned by value in {@link sap.ui.core.format.NumberFormat.RoundingMode RoundingMode} or a function
13031
- * which will be used for rounding the number. The function is called with two parameters: the number and
13032
- * how many decimal digits should be reserved.
13095
+ * maxFractionDigits. Rounding will only be applied if the passed value is of type `number`. This can be
13096
+ * assigned
13097
+ * - by value in {@link sap.ui.core.format.NumberFormat.RoundingMode RoundingMode},
13098
+ * - via a function that is used for rounding the number and takes two parameters: the number itself,
13099
+ * and the number of decimal digits that should be reserved.
13033
13100
  */
13034
13101
  roundingMode?: sap.ui.core.format.NumberFormat.RoundingMode;
13035
13102
  /**
13036
- * @since 1.30.0 defines what empty string is parsed as and what is formatted as empty string. The allowed
13037
- * values are "" (empty string), NaN, null or 0. The 'format' and 'parse' are done in a symmetric way. For
13038
- * example when this parameter is set to NaN, empty string is parsed as NaN and NaN is formatted as empty
13039
- * string.
13103
+ * defines the number of decimal in the shortened format string. If this isn't specified, the 'decimals'
13104
+ * options is used
13105
+ */
13106
+ shortDecimals?: int;
13107
+ /**
13108
+ * only use short number formatting for values above this limit
13040
13109
  */
13041
- emptyString?: number;
13110
+ shortLimit?: int;
13111
+ /**
13112
+ * @since 1.40 specifies a number from which the scale factor for 'short' or 'long' style format is generated.
13113
+ * The generated scale factor is used for all numbers which are formatted with this format instance. This
13114
+ * option has effect only when the option 'style' is set to 'short' or 'long'. This option is by default
13115
+ * set with `undefined` which means the scale factor is selected automatically for each number being formatted.
13116
+ */
13117
+ shortRefNumber?: int;
13118
+ /**
13119
+ * @since 1.40 specifies whether the scale factor is shown in the formatted number. This option takes effect
13120
+ * only when the 'style' options is set to either 'short' or 'long'.
13121
+ */
13122
+ showScale?: boolean;
13123
+ /**
13124
+ * defines the style of format. Valid values are 'short, 'long' or 'standard' (based on CLDR decimalFormat).
13125
+ * When set to 'short' or 'long', numbers are formatted into compact forms. When this option is set, the
13126
+ * default value of the 'precision' option is set to 2. This can be changed by setting either min/maxFractionDigits,
13127
+ * decimals, shortDecimals, or the 'precision' option itself.
13128
+ */
13129
+ style?: string;
13042
13130
  },
13043
13131
  /**
13044
13132
  * Locale to get the formatter for
@@ -13053,6 +13141,18 @@ declare namespace sap {
13053
13141
  *
13054
13142
  * This instance has TOWARDS_ZERO set as default rounding mode. Please set the roundingMode property
13055
13143
  * in oFormatOptions to change the default value.
13144
+ *
13145
+ * The following example shows how grouping is done:
13146
+ * ```javascript
13147
+ *
13148
+ * var oFormat = NumberFormat.getIntegerInstance({
13149
+ * "groupingEnabled": true, // grouping is enabled
13150
+ * "groupingSeparator": '.', // grouping separator is '.'
13151
+ * "groupingSize": 3 // the amount of digits to be grouped (here: thousand)
13152
+ * });
13153
+ *
13154
+ * oFormat.format(1234); // "1.234"
13155
+ * ```
13056
13156
  */
13057
13157
  static getIntegerInstance(
13058
13158
  /**
@@ -13061,26 +13161,92 @@ declare namespace sap {
13061
13161
  */
13062
13162
  oFormatOptions?: {
13063
13163
  /**
13064
- * defines minimal number of non-decimal digits
13164
+ * defines the number of decimal digits
13065
13165
  */
13066
- minIntegerDigits?: int;
13166
+ decimals?: int;
13167
+ /**
13168
+ * defines the character used as decimal separator. Note: `decimalSeparator` must always be different from
13169
+ * `groupingSeparator`.
13170
+ */
13171
+ decimalSeparator?: string;
13172
+ /**
13173
+ * @since 1.30.0 defines what an empty string is parsed as, and what is formatted as an empty string. The
13174
+ * allowed values are only NaN, null or 0. The 'format' and 'parse' functions are done in a symmetric way.
13175
+ * For example, when this parameter is set to NaN, an empty string is parsed as NaN, and NaN is formatted
13176
+ * as an empty string.
13177
+ */
13178
+ emptyString?: number;
13179
+ /**
13180
+ * defines the grouping base size in digits if it is different from the grouping size (e.g. Indian grouping)
13181
+ */
13182
+ groupingBaseSize?: int;
13183
+ /**
13184
+ * defines whether grouping is enabled (show the grouping separators)
13185
+ */
13186
+ groupingEnabled?: boolean;
13067
13187
  /**
13068
- * defines maximum number of non-decimal digits. If the number exceeds this maximum, e.g. 1e+120, "?" characters
13069
- * are shown instead of digits.
13188
+ * defines the character used as grouping separator. Note: `groupingSeparator` must always be different
13189
+ * from `decimalSeparator`.
13190
+ */
13191
+ groupingSeparator?: string;
13192
+ /**
13193
+ * defines the grouping size in digits; the default is `3`. It must be a positive number.
13194
+ */
13195
+ groupingSize?: int;
13196
+ /**
13197
+ * defines the maximum number of decimal digits
13198
+ */
13199
+ maxFractionDigits?: int;
13200
+ /**
13201
+ * defines the maximum number of non-decimal digits. If the number exceeds this maximum, e.g. 1e+120, "?"
13202
+ * characters are shown instead of digits.
13070
13203
  */
13071
13204
  maxIntegerDigits?: int;
13072
13205
  /**
13073
- * defines minimal number of decimal digits
13206
+ * defines the minimal number of decimal digits
13074
13207
  */
13075
13208
  minFractionDigits?: int;
13076
13209
  /**
13077
- * defines maximum number of decimal digits
13210
+ * defines the minimal number of non-decimal digits
13078
13211
  */
13079
- maxFractionDigits?: int;
13212
+ minIntegerDigits?: int;
13080
13213
  /**
13081
- * defines the number of decimal digits
13214
+ * defines the used minus symbol
13082
13215
  */
13083
- decimals?: int;
13216
+ minusSign?: string;
13217
+ /**
13218
+ * @since 1.28.2 defines whether to output the string from the parse function in order to keep the precision
13219
+ * for big numbers. Numbers in scientific notation are parsed back to standard notation. For example, "5e+3"
13220
+ * is parsed to "5000".
13221
+ */
13222
+ parseAsString?: boolean;
13223
+ /**
13224
+ * CLDR number pattern which is used to format the number
13225
+ */
13226
+ pattern?: string;
13227
+ /**
13228
+ * defines the used plus symbol
13229
+ */
13230
+ plusSign?: string;
13231
+ /**
13232
+ * defines the numerical precision; the number of decimals is calculated dependent on the integer digits
13233
+ */
13234
+ precision?: int;
13235
+ /**
13236
+ * Whether {@link #format} preserves decimal digits except trailing zeros in case there are more decimals
13237
+ * than the `maxFractionDigits` format option allows. If decimals are not preserved, the formatted number
13238
+ * is rounded to `maxFractionDigits`.
13239
+ */
13240
+ preserveDecimals?: boolean;
13241
+ /**
13242
+ * specifies a rounding behavior for discarding the digits after the maximum fraction digits defined by
13243
+ * maxFractionDigits. Rounding will only be applied if the passed value is of type `number`. This can be
13244
+ * assigned
13245
+ * - by value in {@link sap.ui.core.format.NumberFormat.RoundingMode RoundingMode},
13246
+ * - via a function that is used for rounding the number and takes two parameters: the number itself,
13247
+ * and the number of decimal digits that should be reserved.
13248
+ */
13249
+ roundingMode?: sap.ui.core.format.NumberFormat.RoundingMode;
13084
13250
  /**
13085
13251
  * defines the number of decimal in the shortened format string. If this isn't specified, the 'decimals'
13086
13252
  * options is used
@@ -13102,78 +13268,13 @@ declare namespace sap {
13102
13268
  * only when the 'style' options is set to either 'short' or 'long'.
13103
13269
  */
13104
13270
  showScale?: boolean;
13105
- /**
13106
- * defines the number precision, number of decimals is calculated dependent on the integer digits
13107
- */
13108
- precision?: int;
13109
- /**
13110
- * CLDR number pattern which is used to format the number
13111
- */
13112
- pattern?: string;
13113
- /**
13114
- * defines whether grouping is enabled (show the grouping separators)
13115
- */
13116
- groupingEnabled?: boolean;
13117
- /**
13118
- * defines the character used as grouping separator. Note: `groupingSeparator` must always be different
13119
- * from `decimalSeparator`.
13120
- */
13121
- groupingSeparator?: string;
13122
- /**
13123
- * defines the grouping size in digits, the default is three
13124
- */
13125
- groupingSize?: int;
13126
- /**
13127
- * defines the grouping base size in digits, in case it is different from the grouping size (e.g. indian
13128
- * grouping)
13129
- */
13130
- groupingBaseSize?: int;
13131
- /**
13132
- * defines the character used as decimal separator. Note: `decimalSeparator` must always be different from
13133
- * `groupingSeparator`.
13134
- */
13135
- decimalSeparator?: string;
13136
- /**
13137
- * defines the used plus symbol
13138
- */
13139
- plusSign?: string;
13140
- /**
13141
- * defines the used minus symbol
13142
- */
13143
- minusSign?: string;
13144
- /**
13145
- * @since 1.28.2 defines whether to output string from parse function in order to keep the precision for
13146
- * big numbers. Numbers in scientific notation are parsed back to the standard notation. For example "5e+3"
13147
- * is parsed to "5000".
13148
- */
13149
- parseAsString?: boolean;
13150
- /**
13151
- * Whether {@link #format} preserves decimal digits except trailing zeros in case there are more decimals
13152
- * than the `maxFractionDigits` format option allows. If decimals are not preserved, the formatted number
13153
- * is rounded to `maxFractionDigits`.
13154
- */
13155
- preserveDecimals?: boolean;
13156
13271
  /**
13157
13272
  * defines the style of format. Valid values are 'short, 'long' or 'standard' (based on CLDR decimalFormat).
13158
- * Numbers are formatted into compact forms when it's set to 'short' or 'long'. When this option is set,
13159
- * the default value of option 'precision' is set to 2. This can be changed by setting either min/maxFractionDigits,
13160
- * decimals, shortDecimals or precision option.
13273
+ * When set to 'short' or 'long', numbers are formatted into compact forms. When this option is set, the
13274
+ * default value of the 'precision' option is set to 2. This can be changed by setting either min/maxFractionDigits,
13275
+ * decimals, shortDecimals, or the 'precision' option itself.
13161
13276
  */
13162
13277
  style?: string;
13163
- /**
13164
- * specifies a rounding behavior for discarding the digits after the maximum fraction digits defined by
13165
- * maxFractionDigits. Rounding will only be applied, if the passed value if of type number. This can be
13166
- * assigned by value in {@link sap.ui.core.format.NumberFormat.RoundingMode RoundingMode} or a function
13167
- * which will be used for rounding the number. The function is called with two parameters: the number and
13168
- * how many decimal digits should be reserved.
13169
- */
13170
- roundingMode?: sap.ui.core.format.NumberFormat.RoundingMode;
13171
- /**
13172
- * @since 1.30.0 defines what empty string is parsed as and what is formatted as empty string. The allowed
13173
- * values are only NaN, null or 0. The 'format' and 'parse' are done in a symmetric way. For example when
13174
- * this parameter is set to NaN, empty string is parsed as NaN and NaN is formatted as empty string.
13175
- */
13176
- emptyString?: number;
13177
13278
  },
13178
13279
  /**
13179
13280
  * Locale to get the formatter for
@@ -13199,56 +13300,26 @@ declare namespace sap {
13199
13300
  * to the type and locale settings are used.
13200
13301
  */
13201
13302
  oFormatOptions?: {
13202
- /**
13203
- * defines minimal number of non-decimal digits
13204
- */
13205
- minIntegerDigits?: int;
13206
- /**
13207
- * defines maximum number of non-decimal digits. If the number exceeds this maximum, e.g. 1e+120, "?" characters
13208
- * are shown instead of digits.
13209
- */
13210
- maxIntegerDigits?: int;
13211
- /**
13212
- * defines minimal number of decimal digits
13213
- */
13214
- minFractionDigits?: int;
13215
- /**
13216
- * defines maximum number of decimal digits
13217
- */
13218
- maxFractionDigits?: int;
13219
13303
  /**
13220
13304
  * defines the number of decimal digits
13221
13305
  */
13222
13306
  decimals?: int;
13223
13307
  /**
13224
- * defines the number of decimal in the shortened format string. If this isn't specified, the 'decimals'
13225
- * options is used
13226
- */
13227
- shortDecimals?: int;
13228
- /**
13229
- * only use short number formatting for values above this limit
13230
- */
13231
- shortLimit?: int;
13232
- /**
13233
- * @since 1.40 specifies a number from which the scale factor for 'short' or 'long' style format is generated.
13234
- * The generated scale factor is used for all numbers which are formatted with this format instance. This
13235
- * option has effect only when the option 'style' is set to 'short' or 'long'. This option is by default
13236
- * set with `undefined` which means the scale factor is selected automatically for each number being formatted.
13237
- */
13238
- shortRefNumber?: int;
13239
- /**
13240
- * @since 1.40 specifies whether the scale factor is shown in the formatted number. This option takes effect
13241
- * only when the 'style' options is set to either 'short' or 'long'.
13308
+ * defines the character used as decimal separator. Note: `decimalSeparator` must always be different from
13309
+ * `groupingSeparator`.
13242
13310
  */
13243
- showScale?: boolean;
13311
+ decimalSeparator?: string;
13244
13312
  /**
13245
- * defines the number precision, number of decimals is calculated dependent on the integer digits
13313
+ * @since 1.30.0 defines what an empty string is parsed as, and what is formatted as an empty string. The
13314
+ * allowed values are "" (empty string), NaN, `null`, or 0. The 'format' and 'parse' functions are done
13315
+ * in a symmetric way. For example, when this parameter is set to NaN, an empty string is parsed as NaN,
13316
+ * and NaN is formatted as an empty string.
13246
13317
  */
13247
- precision?: int;
13318
+ emptyString?: number;
13248
13319
  /**
13249
- * CLDR number pattern which is used to format the number
13320
+ * defines the grouping base size in digits if it is different from the grouping size (e.g. Indian grouping)
13250
13321
  */
13251
- pattern?: string;
13322
+ groupingBaseSize?: int;
13252
13323
  /**
13253
13324
  * defines whether grouping is enabled (show the grouping separators)
13254
13325
  */
@@ -13259,65 +13330,95 @@ declare namespace sap {
13259
13330
  */
13260
13331
  groupingSeparator?: string;
13261
13332
  /**
13262
- * defines the grouping size in digits, the default is three
13333
+ * defines the grouping size in digits; the default is `3`. It must be a positive number.
13263
13334
  */
13264
13335
  groupingSize?: int;
13265
13336
  /**
13266
- * defines the grouping base size in digits, in case it is different from the grouping size (e.g. indian
13267
- * grouping)
13337
+ * defines the maximum number of decimal digits
13268
13338
  */
13269
- groupingBaseSize?: int;
13339
+ maxFractionDigits?: int;
13270
13340
  /**
13271
- * defines the character used as decimal separator. Note: `decimalSeparator` must always be different from
13272
- * `groupingSeparator`.
13341
+ * defines the maximum number of non-decimal digits. If the number exceeds this maximum, e.g. 1e+120, "?"
13342
+ * characters are shown instead of digits.
13273
13343
  */
13274
- decimalSeparator?: string;
13344
+ maxIntegerDigits?: int;
13275
13345
  /**
13276
- * defines the used plus symbol
13346
+ * defines the minimal number of decimal digits
13277
13347
  */
13278
- plusSign?: string;
13348
+ minFractionDigits?: int;
13349
+ /**
13350
+ * defines the minimal number of non-decimal digits
13351
+ */
13352
+ minIntegerDigits?: int;
13279
13353
  /**
13280
13354
  * defines the used minus symbol
13281
13355
  */
13282
13356
  minusSign?: string;
13357
+ /**
13358
+ * @since 1.28.2 defines whether to output the string from the parse function in order to keep the precision
13359
+ * for big numbers. Numbers in scientific notation are parsed back to standard notation. For example, "5e-3"
13360
+ * is parsed to "0.005".
13361
+ */
13362
+ parseAsString?: boolean;
13363
+ /**
13364
+ * CLDR number pattern which is used to format the number
13365
+ */
13366
+ pattern?: string;
13283
13367
  /**
13284
13368
  * defines the used percent symbol
13285
13369
  */
13286
13370
  percentSign?: string;
13287
13371
  /**
13288
- * @since 1.28.2 defines whether to output string from parse function in order to keep the precision for
13289
- * big numbers. Numbers in scientific notation are parsed back to the standard notation. For example "5e-3"
13290
- * is parsed to "0.005".
13372
+ * defines the used plus symbol
13291
13373
  */
13292
- parseAsString?: boolean;
13374
+ plusSign?: string;
13375
+ /**
13376
+ * defines the numerical precision; the number of decimals is calculated dependent on the integer digits
13377
+ */
13378
+ precision?: int;
13293
13379
  /**
13294
13380
  * Whether {@link #format} preserves decimal digits except trailing zeros in case there are more decimals
13295
13381
  * than the `maxFractionDigits` format option allows. If decimals are not preserved, the formatted number
13296
13382
  * is rounded to `maxFractionDigits`.
13297
13383
  */
13298
13384
  preserveDecimals?: boolean;
13299
- /**
13300
- * defines the style of format. Valid values are 'short, 'long' or 'standard' (based on CLDR decimalFormat).
13301
- * Numbers are formatted into compact forms when it's set to 'short' or 'long'. When this option is set,
13302
- * the default value of option 'precision' is set to 2. This can be changed by setting either min/maxFractionDigits,
13303
- * decimals, shortDecimals or precision option.
13304
- */
13305
- style?: string;
13306
13385
  /**
13307
13386
  * specifies a rounding behavior for discarding the digits after the maximum fraction digits defined by
13308
- * maxFractionDigits. Rounding will only be applied, if the passed value if of type number. This can be
13309
- * assigned by value in {@link sap.ui.core.format.NumberFormat.RoundingMode RoundingMode} or a function
13310
- * which will be used for rounding the number. The function is called with two parameters: the number and
13311
- * how many decimal digits should be reserved.
13387
+ * maxFractionDigits. Rounding will only be applied if the passed value is of type `number`. This can be
13388
+ * assigned
13389
+ * - by value in {@link sap.ui.core.format.NumberFormat.RoundingMode RoundingMode},
13390
+ * - via a function that is used for rounding the number and takes two parameters: the number itself,
13391
+ * and the number of decimal digits that should be reserved.
13312
13392
  */
13313
13393
  roundingMode?: sap.ui.core.format.NumberFormat.RoundingMode;
13314
13394
  /**
13315
- * @since 1.30.0 defines what empty string is parsed as and what is formatted as empty string. The allowed
13316
- * values are "" (empty string), NaN, null or 0. The 'format' and 'parse' are done in a symmetric way. For
13317
- * example when this parameter is set to NaN, empty string is parsed as NaN and NaN is formatted as empty
13318
- * string.
13395
+ * defines the number of decimal in the shortened format string. If this isn't specified, the 'decimals'
13396
+ * options is used
13319
13397
  */
13320
- emptyString?: number;
13398
+ shortDecimals?: int;
13399
+ /**
13400
+ * only use short number formatting for values above this limit
13401
+ */
13402
+ shortLimit?: int;
13403
+ /**
13404
+ * @since 1.40 specifies a number from which the scale factor for 'short' or 'long' style format is generated.
13405
+ * The generated scale factor is used for all numbers which are formatted with this format instance. This
13406
+ * option has effect only when the option 'style' is set to 'short' or 'long'. This option is by default
13407
+ * set with `undefined` which means the scale factor is selected automatically for each number being formatted.
13408
+ */
13409
+ shortRefNumber?: int;
13410
+ /**
13411
+ * @since 1.40 specifies whether the scale factor is shown in the formatted number. This option takes effect
13412
+ * only when the 'style' options is set to either 'short' or 'long'.
13413
+ */
13414
+ showScale?: boolean;
13415
+ /**
13416
+ * defines the style of format. Valid values are 'short, 'long' or 'standard' (based on CLDR decimalFormat).
13417
+ * When set to 'short' or 'long', numbers are formatted into compact forms. When this option is set, the
13418
+ * default value of the 'precision' option is set to 2. This can be changed by setting either min/maxFractionDigits,
13419
+ * decimals, shortDecimals, or the 'precision' option itself.
13420
+ */
13421
+ style?: string;
13321
13422
  },
13322
13423
  /**
13323
13424
  * Locale to get the formatter for
@@ -13340,55 +13441,35 @@ declare namespace sap {
13340
13441
  */
13341
13442
  oFormatOptions?: {
13342
13443
  /**
13343
- * defines minimal number of non-decimal digits
13344
- */
13345
- minIntegerDigits?: int;
13346
- /**
13347
- * defines maximum number of non-decimal digits. If the number exceeds this maximum, e.g. 1e+120, "?" characters
13348
- * are shown instead of digits.
13349
- */
13350
- maxIntegerDigits?: int;
13351
- /**
13352
- * defines minimal number of decimal digits
13444
+ * defines the allowed units for formatting and parsing, e.g. ["size-meter", "volume-liter", ...]
13353
13445
  */
13354
- minFractionDigits?: int;
13446
+ allowedUnits?: any[];
13355
13447
  /**
13356
- * defines maximum number of decimal digits
13448
+ * defines a set of custom units, e.g. {"electric-inductance": { "displayName": "henry", "unitPattern-count-one":
13449
+ * "{0} H", "unitPattern-count-other": "{0} H", "perUnitPattern": "{0}/H", "decimals": 2, "precision": 4
13450
+ * }}
13357
13451
  */
13358
- maxFractionDigits?: int;
13452
+ customUnits?: Record<string, object>;
13359
13453
  /**
13360
13454
  * defines the number of decimal digits
13361
13455
  */
13362
13456
  decimals?: int;
13363
13457
  /**
13364
- * defines the number of decimal in the shortened format string. If this isn't specified, the 'decimals'
13365
- * options is used
13366
- */
13367
- shortDecimals?: int;
13368
- /**
13369
- * only use short number formatting for values above this limit
13370
- */
13371
- shortLimit?: int;
13372
- /**
13373
- * @since 1.40 specifies a number from which the scale factor for 'short' or 'long' style format is generated.
13374
- * The generated scale factor is used for all numbers which are formatted with this format instance. This
13375
- * option has effect only when the option 'style' is set to 'short' or 'long'. This option is by default
13376
- * set with `undefined` which means the scale factor is selected automatically for each number being formatted.
13377
- */
13378
- shortRefNumber?: int;
13379
- /**
13380
- * @since 1.40 specifies whether the scale factor is shown in the formatted number. This option takes effect
13381
- * only when the 'style' options is set to either 'short' or 'long'.
13458
+ * defines the character used as decimal separator. Note: `decimalSeparator` must always be different from
13459
+ * `groupingSeparator`.
13382
13460
  */
13383
- showScale?: boolean;
13461
+ decimalSeparator?: string;
13384
13462
  /**
13385
- * defines the number precision, number of decimals is calculated dependent on the integer digits
13463
+ * @since 1.30.0 defines what an empty string is parsed as, and what is formatted as an empty string. The
13464
+ * allowed values are "" (empty string), NaN, `null`, or 0. The 'format' and 'parse' functions are done
13465
+ * in a symmetric way. For example, when this parameter is set to NaN, an empty string is parsed as [NaN,
13466
+ * undefined], and NaN is formatted as an empty string.
13386
13467
  */
13387
- precision?: int;
13468
+ emptyString?: number;
13388
13469
  /**
13389
- * CLDR number pattern which is used to format the number
13470
+ * defines the grouping base size in digits if it is different from the grouping size (e.g. Indian grouping)
13390
13471
  */
13391
- pattern?: string;
13472
+ groupingBaseSize?: int;
13392
13473
  /**
13393
13474
  * defines whether grouping is enabled (show the grouping separators)
13394
13475
  */
@@ -13399,64 +13480,79 @@ declare namespace sap {
13399
13480
  */
13400
13481
  groupingSeparator?: string;
13401
13482
  /**
13402
- * defines the grouping size in digits, the default is three
13483
+ * defines the grouping size in digits; the default is `3`. It must be a positive number.
13403
13484
  */
13404
13485
  groupingSize?: int;
13405
13486
  /**
13406
- * defines the grouping base size in digits, in case it is different from the grouping size (e.g. indian
13407
- * grouping)
13487
+ * defines the maximum number of decimal digits
13408
13488
  */
13409
- groupingBaseSize?: int;
13410
- /**
13411
- * defines the character used as decimal separator. Note: `decimalSeparator` must always be different from
13412
- * `groupingSeparator`.
13413
- */
13414
- decimalSeparator?: string;
13489
+ maxFractionDigits?: int;
13415
13490
  /**
13416
- * defines a set of custom units, e.g. {"electric-inductance": { "displayName": "henry", "unitPattern-count-one":
13417
- * "{0} H", "unitPattern-count-other": "{0} H", "perUnitPattern": "{0}/H", "decimals": 2, "precision": 4
13418
- * }}
13491
+ * defines the maximum number of non-decimal digits. If the number exceeds this maximum, e.g. 1e+120, "?"
13492
+ * characters are shown instead of digits.
13419
13493
  */
13420
- customUnits?: Record<string, object>;
13494
+ maxIntegerDigits?: int;
13421
13495
  /**
13422
- * defines the allowed units for formatting and parsing, e.g. ["size-meter", "volume-liter", ...]
13496
+ * defines the minimal number of decimal digits
13423
13497
  */
13424
- allowedUnits?: any[];
13498
+ minFractionDigits?: int;
13425
13499
  /**
13426
- * defines the used plus symbol
13500
+ * defines the minimal number of non-decimal digits
13427
13501
  */
13428
- plusSign?: string;
13502
+ minIntegerDigits?: int;
13429
13503
  /**
13430
13504
  * defines the used minus symbol
13431
13505
  */
13432
13506
  minusSign?: string;
13433
13507
  /**
13434
- * @since 1.28.2 defines whether to output string from parse function in order to keep the precision for
13435
- * big numbers. Numbers in scientific notation are parsed back to the standard notation. For example "5e-3"
13508
+ * @since 1.28.2 defines whether to output the string from the parse function in order to keep the precision
13509
+ * for big numbers. Numbers in scientific notation are parsed back to standard notation. For example, "5e-3"
13436
13510
  * is parsed to "0.005".
13437
13511
  */
13438
13512
  parseAsString?: boolean;
13513
+ /**
13514
+ * CLDR number pattern which is used to format the number
13515
+ */
13516
+ pattern?: string;
13517
+ /**
13518
+ * defines the used plus symbol
13519
+ */
13520
+ plusSign?: string;
13521
+ /**
13522
+ * defines the numerical precision; the number of decimals is calculated dependent on the integer digits
13523
+ */
13524
+ precision?: int;
13439
13525
  /**
13440
13526
  * Whether {@link #format} preserves decimal digits except trailing zeros in case there are more decimals
13441
13527
  * than the `maxFractionDigits` format option allows. If decimals are not preserved, the formatted number
13442
13528
  * is rounded to `maxFractionDigits`.
13443
13529
  */
13444
13530
  preserveDecimals?: boolean;
13445
- /**
13446
- * defines the style of format. Valid values are 'short, 'long' or 'standard' (based on CLDR decimalFormat).
13447
- * Numbers are formatted into compact forms when it's set to 'short' or 'long'. When this option is set,
13448
- * the default value of option 'precision' is set to 2. This can be changed by setting either min/maxFractionDigits,
13449
- * decimals, shortDecimals or precision option.
13450
- */
13451
- style?: string;
13452
13531
  /**
13453
13532
  * specifies a rounding behavior for discarding the digits after the maximum fraction digits defined by
13454
- * maxFractionDigits. Rounding will only be applied, if the passed value if of type number. This can be
13455
- * assigned by value in {@link sap.ui.core.format.NumberFormat.RoundingMode RoundingMode} or a function
13456
- * which will be used for rounding the number. The function is called with two parameters: the number and
13457
- * how many decimal digits should be reserved.
13533
+ * maxFractionDigits. Rounding will only be applied if the passed value is of type `number`. This can be
13534
+ * assigned
13535
+ * - by value in {@link sap.ui.core.format.NumberFormat.RoundingMode RoundingMode},
13536
+ * - via a function that is used for rounding the number and takes two parameters: the number itself,
13537
+ * and the number of decimal digits that should be reserved.
13458
13538
  */
13459
13539
  roundingMode?: sap.ui.core.format.NumberFormat.RoundingMode;
13540
+ /**
13541
+ * defines the number of decimals in the shortened format string. If this option isn't specified, the 'decimals'
13542
+ * option is used instead.
13543
+ */
13544
+ shortDecimals?: int;
13545
+ /**
13546
+ * only use short number formatting for values above this limit
13547
+ */
13548
+ shortLimit?: int;
13549
+ /**
13550
+ * @since 1.40 specifies a number from which the scale factor for the 'short' or 'long' style format is
13551
+ * generated. The generated scale factor is used for all numbers which are formatted with this format instance.
13552
+ * This option has effect only when the option 'style' is set to 'short' or 'long'. This option is by default
13553
+ * set with `undefined` which means the scale factor is selected automatically for each number being formatted.
13554
+ */
13555
+ shortRefNumber?: int;
13460
13556
  /**
13461
13557
  * defines whether the unit of measure is shown in the formatted string, e.g. for input 1 and "duration-day"
13462
13558
  * true: "1 day", false: "1". If both `showMeasure` and `showNumber` are false, an empty string is returned
@@ -13471,12 +13567,17 @@ declare namespace sap {
13471
13567
  */
13472
13568
  showNumber?: boolean;
13473
13569
  /**
13474
- * @since 1.30.0 defines what empty string is parsed as and what is formatted as empty string. The allowed
13475
- * values are "" (empty string), NaN, null or 0. The 'format' and 'parse' are done in a symmetric way. For
13476
- * example when this parameter is set to NaN, empty string is parsed as [NaN, undefined] and NaN is formatted
13477
- * as empty string.
13570
+ * @since 1.40 specifies whether the scale factor is shown in the formatted number. This option takes effect
13571
+ * only when the 'style' options is set to either 'short' or 'long'.
13572
+ */
13573
+ showScale?: boolean;
13574
+ /**
13575
+ * defines the style of format. Valid values are 'short, 'long' or 'standard' (based on CLDR decimalFormat).
13576
+ * When set to 'short' or 'long', numbers are formatted into compact forms. When this option is set, the
13577
+ * default value of the 'precision' option is set to 2. This can be changed by setting either min/maxFractionDigits,
13578
+ * decimals, shortDecimals, or the 'precision' option itself.
13478
13579
  */
13479
- emptyString?: number;
13580
+ style?: string;
13480
13581
  },
13481
13582
  /**
13482
13583
  * Locale to get the formatter for
@@ -13496,6 +13597,19 @@ declare namespace sap {
13496
13597
  */
13497
13598
  sMeasure?: string
13498
13599
  ): string;
13600
+ /**
13601
+ * @SINCE 1.100
13602
+ *
13603
+ * Returns the scaling factor which is calculated based on the format options and the current locale being
13604
+ * used.
13605
+ *
13606
+ * This function only returns a meaningful scaling factor when the 'style' formatting option is set to 'short'
13607
+ * or 'long', and the 'shortRefNumber' option for calculating the scale factor is set.
13608
+ *
13609
+ * Consider using this function when the 'showScale' option is set to `false`, which causes the scale factor
13610
+ * not to appear in every formatted number but in a shared place.
13611
+ */
13612
+ getScale(): string | undefined;
13499
13613
  /**
13500
13614
  * Parse a string which is formatted according to the given format options.
13501
13615
  */
@@ -13506,6 +13620,25 @@ declare namespace sap {
13506
13620
  sValue: string
13507
13621
  ): number | any[] | string;
13508
13622
  }
13623
+ /**
13624
+ * @SINCE 1.99.0
13625
+ *
13626
+ * Configuration options for the `showTimezone` format option of `DateFormat#getDateTimeWithTimezoneInstance`.
13627
+ */
13628
+ enum DateFormatTimezoneDisplay {
13629
+ /**
13630
+ * Do not add the IANA timezone ID to the format output.
13631
+ */
13632
+ Hide = "Hide",
13633
+ /**
13634
+ * Only output the IANA timezone ID.
13635
+ */
13636
+ Only = "Only",
13637
+ /**
13638
+ * Add the IANA timezone ID to the format output.
13639
+ */
13640
+ Show = "Show",
13641
+ }
13509
13642
  }
13510
13643
 
13511
13644
  namespace message {
@@ -15976,6 +16109,13 @@ declare namespace sap {
15976
16109
  * On root level, you can only define content for the default aggregation, e.g. without adding the `<content>`
15977
16110
  * tag. If you want to specify content for another aggregation of a view like `dependents`, place it in
15978
16111
  * a child control's dependents aggregation or add it by using {@link sap.ui.core.mvc.XMLView#addDependent}.
16112
+ *
16113
+ * **Note:**
16114
+ * The XML view offers special handling for context binding and style classes. You can specify them via
16115
+ * the `binding` and `class` attributes on a control's XML node. Please be aware that these attributes are
16116
+ * not properties of the respective controls and thus are not supported by a control's constructor. For
16117
+ * more information, see {@link topic:91f05e8b6f4d1014b6dd926db0e91070 Context Binding (Element Binding)}
16118
+ * and {@link topic:b564935324f449209354c7e2f9903f22 Using CSS Style Sheets in XML Views}.
15979
16119
  */
15980
16120
  class XMLView extends sap.ui.core.mvc.View {
15981
16121
  /**
@@ -16593,7 +16733,9 @@ declare namespace sap {
16593
16733
  * To replace the CLDR currency digits completely ` { "DEFAULT": {"digits": 2}, "ADP": {"digits": 0}, ...
16594
16734
  * "XPF": {"digits": 0} } `
16595
16735
  *
16596
- * Note: To unset the custom currencies: call with `undefined`
16736
+ * Note: To unset the custom currencies: call with `undefined` Custom currencies must not only consist of
16737
+ * digits but contain at least one non-digit character, e.g. "a", so that the measure part can be distinguished
16738
+ * from the number part.
16597
16739
  */
16598
16740
  setCustomCurrencies(
16599
16741
  /**
@@ -24008,9 +24150,17 @@ declare namespace sap {
24008
24150
 
24009
24151
  interface $IconSettings extends sap.ui.core.$ControlSettings {
24010
24152
  /**
24011
- * This property should be set by the return value of calling sap.ui.core.IconPool.getIconURI with an Icon
24012
- * name parameter and an optional collection parameter which is required when using application extended
24013
- * Icons. A list of standard FontIcon is available here.
24153
+ * This property can be set by following options:
24154
+ *
24155
+ * **Option 1:**
24156
+ * The value has to be matched by following pattern `sap-icon://collection-name/icon-name` where `collection-name`
24157
+ * and `icon-name` have to be replaced by the desired values. In case the default UI5 icons are used the
24158
+ * `collection-name` can be omited.
24159
+ * Example: `sap-icon://accept`
24160
+ *
24161
+ * **Option 2:** The value is determined by using {@link sap.ui.core.IconPool.getIconURI} with an Icon name
24162
+ * parameter and an optional collection parameter which is required when using application extended Icons.
24163
+ * Example: `IconPool.getIconURI("accept")`
24014
24164
  */
24015
24165
  src?: sap.ui.core.URI | sap.ui.base.ManagedObject.PropertyBindingInfo;
24016
24166
 
@@ -24668,6 +24818,28 @@ declare namespace sap {
24668
24818
  */
24669
24819
  oListener?: object
24670
24820
  ): void;
24821
+ /**
24822
+ * Attaches event handler `fnFunction` to the {@link #event:formatError formatError} event of `sap.ui.core.Core`.
24823
+ *
24824
+ * When called, the context of the listener (its `this`) will be bound to `oListener` if specified, otherwise
24825
+ * it will be bound to a dummy event provider object.
24826
+ *
24827
+ * Please note that this event is a bubbling event and may already be canceled before reaching the core.
24828
+ */
24829
+ attachFormatError(
24830
+ /**
24831
+ * An object that will be passed to the handler along with the event object when the event is fired
24832
+ */
24833
+ oData: object,
24834
+ /**
24835
+ * The function to be called, when the event occurs
24836
+ */
24837
+ fnFunction: Function,
24838
+ /**
24839
+ * Context object to call the event handler with. Defaults to a dummy event provider object
24840
+ */
24841
+ oListener?: object
24842
+ ): this;
24671
24843
  /**
24672
24844
  * Attaches event handler `fnFunction` to the {@link #event:formatError formatError} event of `sap.ui.core.Core`.
24673
24845
  *
@@ -27939,7 +28111,7 @@ declare namespace sap {
27939
28111
  /**
27940
28112
  * Static info to construct the metadata from
27941
28113
  */
27942
- oStaticInfo: object
28114
+ oClassInfo: object
27943
28115
  );
27944
28116
 
27945
28117
  /**
@@ -31203,8 +31375,10 @@ declare namespace sap {
31203
31375
  * Icon uses embedded font instead of pixel image. Comparing to image, Icon is easily scalable, color can
31204
31376
  * be altered live and various effects can be added using css.
31205
31377
  *
31206
- * A set of built in Icons is available and they can be fetched by calling sap.ui.core.IconPool.getIconURI
31207
- * and set this value to the src property on the Icon.
31378
+ * A set of built in Icons is available in the Icon
31379
+ * Explorer.
31380
+ *
31381
+ * For further information, see {@link topic:21ea0ea94614480d9a910b2e93431291 Icon and Icon Pool}.
31208
31382
  */
31209
31383
  class Icon
31210
31384
  extends sap.ui.core.Control
@@ -31455,9 +31629,17 @@ declare namespace sap {
31455
31629
  /**
31456
31630
  * Gets current value of property {@link #getSrc src}.
31457
31631
  *
31458
- * This property should be set by the return value of calling sap.ui.core.IconPool.getIconURI with an Icon
31459
- * name parameter and an optional collection parameter which is required when using application extended
31460
- * Icons. A list of standard FontIcon is available here.
31632
+ * This property can be set by following options:
31633
+ *
31634
+ * **Option 1:**
31635
+ * The value has to be matched by following pattern `sap-icon://collection-name/icon-name` where `collection-name`
31636
+ * and `icon-name` have to be replaced by the desired values. In case the default UI5 icons are used the
31637
+ * `collection-name` can be omited.
31638
+ * Example: `sap-icon://accept`
31639
+ *
31640
+ * **Option 2:** The value is determined by using {@link sap.ui.core.IconPool.getIconURI} with an Icon name
31641
+ * parameter and an optional collection parameter which is required when using application extended Icons.
31642
+ * Example: `IconPool.getIconURI("accept")`
31461
31643
  */
31462
31644
  getSrc(): sap.ui.core.URI;
31463
31645
  /**
@@ -31670,9 +31852,17 @@ declare namespace sap {
31670
31852
  /**
31671
31853
  * Sets a new value for property {@link #getSrc src}.
31672
31854
  *
31673
- * This property should be set by the return value of calling sap.ui.core.IconPool.getIconURI with an Icon
31674
- * name parameter and an optional collection parameter which is required when using application extended
31675
- * Icons. A list of standard FontIcon is available here.
31855
+ * This property can be set by following options:
31856
+ *
31857
+ * **Option 1:**
31858
+ * The value has to be matched by following pattern `sap-icon://collection-name/icon-name` where `collection-name`
31859
+ * and `icon-name` have to be replaced by the desired values. In case the default UI5 icons are used the
31860
+ * `collection-name` can be omited.
31861
+ * Example: `sap-icon://accept`
31862
+ *
31863
+ * **Option 2:** The value is determined by using {@link sap.ui.core.IconPool.getIconURI} with an Icon name
31864
+ * parameter and an optional collection parameter which is required when using application extended Icons.
31865
+ * Example: `IconPool.getIconURI("accept")`
31676
31866
  *
31677
31867
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
31678
31868
  */
@@ -34236,7 +34426,7 @@ declare namespace sap {
34236
34426
  * Opens the popup's content at the position either specified here or beforehand via {@link #setPosition}.
34237
34427
  * Content must be capable of being positioned via "position:absolute;" All parameters are optional (open()
34238
34428
  * may be called without any parameters). iDuration may just be omitted, but if any of "at", "of", "offset",
34239
- * "collision" is given, also the preceding positioning parameters ("my", at",...) must be given.
34429
+ * "collision" is given, also the preceding positional parameters ("my", at",...) must be given.
34240
34430
  *
34241
34431
  * If the Popup's OpenState is different from "CLOSED" (i.e. if the Popup is already open, opening or closing),
34242
34432
  * the call is ignored.
@@ -34273,7 +34463,7 @@ declare namespace sap {
34273
34463
  * defines how the position of an element should be adjusted in case it overflows the within area in some
34274
34464
  * direction.
34275
34465
  */
34276
- collision?: string,
34466
+ collision?: sap.ui.core.Collision,
34277
34467
  /**
34278
34468
  * defines the area the popup should be placed in. This affects the collision detection.
34279
34469
  */
@@ -34285,7 +34475,7 @@ declare namespace sap {
34285
34475
  /**
34286
34476
  * defines whether the popup should follow the dock reference when the reference changes its position.
34287
34477
  */
34288
- followOf?: boolean
34478
+ followOf?: boolean | Function | null
34289
34479
  ): void;
34290
34480
  /**
34291
34481
  * Sets the animation functions to use for opening and closing the Popup. Any null value will be ignored
@@ -34433,9 +34623,9 @@ declare namespace sap {
34433
34623
  offset?: string,
34434
34624
  /**
34435
34625
  * defines how the position of an element should be adjusted in case it overflows the within area in some
34436
- * direction. The valid values that refer to jQuery-UI's position parameters are "flip", "fit" and "none".
34626
+ * direction.
34437
34627
  */
34438
- collision?: string,
34628
+ collision?: sap.ui.core.Collision,
34439
34629
  /**
34440
34630
  * defines the area the popup should be placed in. This affects the collision detection.
34441
34631
  */
@@ -38036,8 +38226,10 @@ declare namespace sap {
38036
38226
  * Collision behavior: horizontal/vertical.
38037
38227
  *
38038
38228
  * Defines how the position of an element should be adjusted in case it overflows the window in some direction.
38039
- * For both directions this can be "flip", "fit" or "none". If only one behavior is provided it is applied
38040
- * to both directions. Examples: "flip", "fit none".
38229
+ * For both directions this can be "flip", "fit", "flipfit" or "none". If only one behavior is provided
38230
+ * it is applied to both directions.
38231
+ *
38232
+ * Examples: "flip", "fit none", "flipfit fit"
38041
38233
  */
38042
38234
  type Collision = string;
38043
38235
 
@@ -40110,19 +40302,56 @@ declare namespace sap {
40110
40302
  */
40111
40303
  getNodeContexts(
40112
40304
  /**
40113
- * specifying the aggregation level for which contexts shall be fetched. Supported parameters are:
40114
- *
40115
- * - oContext: parent context identifying the requested group of child contexts
40116
- * - level: level number for oContext, because it might occur at multiple levels; context with group ID
40117
- * `"/"` has level 0
40118
- * - numberOfExpandedLevels: number of child levels that shall be fetched automatically
40119
- * - startIndex: index of first child entry to return from the parent context (zero-based)
40120
- * - length: number of entries to return; counting begins at the given start index
40121
- * - threshold: number of additional entries that shall be locally available in the binding for subsequent
40122
- * accesses to child entries of the given parent context.
40305
+ * Parent context identifying the requested group of child contexts
40123
40306
  */
40124
- mParameters: object
40125
- ): any[];
40307
+ oContext: sap.ui.model.Context,
40308
+ /**
40309
+ * Parameters, specifying the aggregation level for which contexts shall be fetched or (legacy signature
40310
+ * variant) index of first child entry to return from the parent context (zero-based)
40311
+ */
40312
+ mParameters:
40313
+ | {
40314
+ /**
40315
+ * Level number for oContext, because it might occur at multiple levels; context with group ID `"/"` has
40316
+ * level 0
40317
+ */
40318
+ level: int;
40319
+ /**
40320
+ * Number of child levels that shall be fetched automatically
40321
+ */
40322
+ numberOfExpandedLevels?: int;
40323
+ /**
40324
+ * Index of first child entry to return from the parent context (zero-based)
40325
+ */
40326
+ startIndex?: int;
40327
+ /**
40328
+ * Number of entries to return; counting begins at the given start index
40329
+ */
40330
+ length?: int;
40331
+ /**
40332
+ * Number of additional entries that shall be locally available in the binding for subsequent accesses to
40333
+ * child entries of the given parent context
40334
+ */
40335
+ threshold?: int;
40336
+ }
40337
+ | int,
40338
+ /**
40339
+ * Same meaning as `mParameters.length`, legacy signature variant only
40340
+ */
40341
+ iLength?: int,
40342
+ /**
40343
+ * Same meaning as `mParameters.threshold`, legacy signature variant only
40344
+ */
40345
+ iThreshold?: int,
40346
+ /**
40347
+ * Same meaning as `mParameters.level`, legacy signature variant only
40348
+ */
40349
+ iLevel?: int,
40350
+ /**
40351
+ * Same meaning as `mParameters.numberOfExpandedLevels`, legacy signature variant only
40352
+ */
40353
+ iNumberOfExpandedLevels?: int
40354
+ ): sap.ui.model.Context[];
40126
40355
  /**
40127
40356
  * Gets the metadata of a property with a given name.
40128
40357
  */
@@ -40656,24 +40885,24 @@ declare namespace sap {
40656
40885
  bMerge?: boolean
40657
40886
  ): void;
40658
40887
  /**
40659
- * Sets a new value for the given property `sPropertyName` in the model. If the model value changed all
40660
- * interested parties are informed.
40888
+ * Sets `oValue` as new value for the property defined by the given `sPath` and `oContext`. Once the new
40889
+ * model value has been set, all interested parties are informed.
40661
40890
  */
40662
40891
  setProperty(
40663
40892
  /**
40664
- * path of the property to set
40893
+ * The path of the property to set
40665
40894
  */
40666
40895
  sPath: string,
40667
40896
  /**
40668
- * value to set the property to
40897
+ * The new value to be set for this property
40669
40898
  */
40670
40899
  oValue: any,
40671
40900
  /**
40672
- * the context which will be used to set the property
40901
+ * The context used to set the property
40673
40902
  */
40674
- oContext?: object,
40903
+ oContext?: sap.ui.model.Context,
40675
40904
  /**
40676
- * whether to update other bindings dependent on this property asynchronously
40905
+ * Whether to update other bindings dependent on this property asynchronously
40677
40906
  */
40678
40907
  bAsyncUpdate?: boolean
40679
40908
  ): boolean;
@@ -41663,16 +41892,20 @@ declare namespace sap {
41663
41892
  *
41664
41893
  * This class represents the `DateTimeWithTimezone` composite type which has the parts timestamp and time
41665
41894
  * zone. The type formats the timestamp part using the time zone part. For this, the timestamp part has
41666
- * to be provided in the UTC time zone.
41895
+ * to be provided in the UTC time zone. When using this type with the {@link sap.ui.model.odata.v2.ODataModel},
41896
+ * you need to set the parameter `useUndefinedIfUnresolved` for both parts.
41667
41897
  */
41668
41898
  class DateTimeWithTimezone extends sap.ui.model.CompositeType {
41669
41899
  /**
41670
41900
  * Constructor for a `DateTimeWithTimezone` composite type.
41901
+ * See:
41902
+ * {sap.ui.model.odata.v2.ODataModel#bindProperty}
41671
41903
  */
41672
41904
  constructor(
41673
41905
  /**
41674
41906
  * Format options. For a list of all available options, see {@link sap.ui.core.format.DateFormat.getDateTimeWithTimezoneInstance
41675
- * DateFormat}. Format options are immutable, that is, they can only be set once on construction.
41907
+ * DateFormat}. The `strictParsing` format option is set to `true` by default and can be overwritten. Format
41908
+ * options are immutable, that is, they can only be set once on construction.
41676
41909
  */
41677
41910
  oFormatOptions?: object,
41678
41911
  /**
@@ -43537,7 +43770,9 @@ declare namespace sap {
43537
43770
  * @SINCE 1.98.0
43538
43771
  *
43539
43772
  * Returns whether this context is inactive. An inactive context will only be sent to the server after the
43540
- * first property update. From then on it behaves like any other created context.
43773
+ * first property update. From then on it behaves like any other created context. The result of this function
43774
+ * can also be accessed via the "@$ui5.context.isInactive" instance annotation at the entity, see {@link
43775
+ * sap.ui.model.odata.v2.ODataModel#getProperty} for details.
43541
43776
  * See:
43542
43777
  * sap.ui.model.odata.v2.ODataListBinding#create
43543
43778
  * sap.ui.model.odata.v2.ODataModel#createEntry
@@ -43548,7 +43783,9 @@ declare namespace sap {
43548
43783
  *
43549
43784
  * For a context created using {@link sap.ui.model.odata.v2.ODataModel#createEntry} or {@link sap.ui.model.odata.v2.ODataListBinding#create},
43550
43785
  * the method returns `true` if the context is transient or `false` if the context is not transient. A transient
43551
- * context represents an entity created on the client which has not been persisted in the back end.
43786
+ * context represents an entity created on the client which has not been persisted in the back end. The
43787
+ * result of this function can also be accessed via the "@$ui5.context.isTransient" instance annotation
43788
+ * at the entity, see {@link sap.ui.model.odata.v2.ODataModel#getProperty} for details.
43552
43789
  */
43553
43790
  isTransient(): boolean;
43554
43791
  }
@@ -45178,7 +45415,8 @@ declare namespace sap {
45178
45415
  /**
45179
45416
  * Creates a new property binding for this model.
45180
45417
  * See:
45181
- * sap.ui.model.Model.prototype.bindProperty
45418
+ * sap.ui.model.Model#bindProperty
45419
+ * #getProperty
45182
45420
  */
45183
45421
  bindProperty(
45184
45422
  /**
@@ -45198,13 +45436,18 @@ declare namespace sap {
45198
45436
  * Whether this binding does not propagate model messages to the control; supported since 1.82.0. Some composite
45199
45437
  * types like {@link sap.ui.model.type.Currency} automatically ignore model messages for some of their parts
45200
45438
  * depending on their format options; setting this parameter to `true` or `false` overrules the automatism
45201
- * of the type.
45439
+ * of the type
45202
45440
  *
45203
45441
  * For example, a binding for a currency code is used in a composite binding for rendering the proper number
45204
45442
  * of decimals, but the currency code is not displayed in the attached control. In that case, messages for
45205
- * the currency code shall not be displayed at that control, only messages for the amount.
45443
+ * the currency code shall not be displayed at that control, only messages for the amount
45206
45444
  */
45207
45445
  ignoreMessages?: boolean;
45446
+ /**
45447
+ * Whether the value of the created property binding is `undefined` if it is unresolved; if not set, its
45448
+ * value is `null`. Supported since 1.100.0
45449
+ */
45450
+ useUndefinedIfUnresolved?: boolean;
45208
45451
  }
45209
45452
  ): sap.ui.model.PropertyBinding;
45210
45453
  /**
@@ -46247,11 +46490,13 @@ declare namespace sap {
46247
46490
  */
46248
46491
  getPendingChanges(): Record<string, object>;
46249
46492
  /**
46250
- * Returns the value for the property with the given `sPath`.
46493
+ * Returns the value for the property with the given `sPath`. Since 1.100, a path starting with "@$ui5."
46494
+ * which represents an instance annotation is supported. The following instance annotations are allowed;
46495
+ * they return information on the given oContext, which must be set and be an {@link sap.ui.model.odata.v2.Context}:
46496
+ *
46497
+ * - `@$ui5.context.isInactive`: The return value of {@link sap.ui.model.odata.v2.Context#isInactive}
46251
46498
  *
46252
- * If the path points to a navigation property which has been loaded via `$expand` then the `bIncludeExpandEntries`
46253
- * parameter determines if the navigation property should be included in the returned value or not. Please
46254
- * note that this currently works for 1..1 navigation properties only.
46499
+ * - `@$ui5.context.isTransient`: The return value of {@link sap.ui.model.odata.v2.Context#isTransient}
46255
46500
  */
46256
46501
  getProperty(
46257
46502
  /**
@@ -46263,11 +46508,9 @@ declare namespace sap {
46263
46508
  */
46264
46509
  oContext?: object,
46265
46510
  /**
46266
- * @deprecated Please use {@link #getObject} function with select/expand parameters instead. This parameter
46267
- * should be set when a URI or custom parameter with a `$expand` system query option was used to retrieve
46268
- * associated entries embedded/inline. If true then the `getProperty` function returns a desired property
46269
- * value/entry and includes the associated expand entries (if any). Note: A copy and not a reference of
46270
- * the entry will be returned.
46511
+ * Deprecated, use {@link #getObject} function with 'select' and 'expand' parameters instead. Whether entities
46512
+ * for navigation properties of this property which have been read via `$expand` are part of the return
46513
+ * value.
46271
46514
  */
46272
46515
  bIncludeExpandEntries?: boolean
46273
46516
  ): any;
@@ -48227,8 +48470,10 @@ declare namespace sap {
48227
48470
  */
48228
48471
  fnOnBeforeDestroy?: Function,
48229
48472
  /**
48230
- * Whether to request messages for this entity. Only used if `bKeepAlive` is `true`. The binding keeps requesting
48231
- * messages until it is destroyed. Supported since 1.92.0
48473
+ * Whether to request messages for this entity. Only used if `bKeepAlive` is `true`. Determines the messages
48474
+ * property from the annotation "com.sap.vocabularies.Common.v1.Messages" at the entity type. If found,
48475
+ * the binding keeps requesting messages until it is destroyed. Otherwise an error is logged in the console
48476
+ * and no messages are requested. Supported since 1.92.0
48232
48477
  */
48233
48478
  bRequestMessages?: boolean
48234
48479
  ): void;
@@ -48463,10 +48708,10 @@ declare namespace sap {
48463
48708
  * entity type, you can bind properties as usual, for example `<Text text="{street}"/>`.
48464
48709
  *
48465
48710
  * Since 1.98.0, a single-valued navigation property can be treated like a function if
48466
- * it has the same type as the operation binding's parent context, that parent context is in the
48467
- * collection (has an index, see {@link sap.ui.model.odata.v4.Context#getIndex}) of a list binding for a
48468
- * top-level entity set, there is a navigation property binding which points to that same entity set,
48469
- * no operation parameters have been set, the `bReplaceWithRVC` parameter is used.
48711
+ * it has the same type as the operation binding's parent context, that parent context is in a list
48712
+ * binding for a top-level entity set, there is a navigation property binding which points to that
48713
+ * same entity set, no operation parameters have been set, the `bReplaceWithRVC` parameter is
48714
+ * used.
48470
48715
  */
48471
48716
  execute(
48472
48717
  /**
@@ -48562,12 +48807,12 @@ declare namespace sap {
48562
48807
  hasPendingChanges(
48563
48808
  /**
48564
48809
  * Whether to ignore changes which will not be lost by APIs like {@link sap.ui.model.odata.v4.ODataListBinding#changeParameters
48565
- * changeParameters}, {@link sap.ui.model.odata.v4.ODataListBinding#filter filter}, {@link sap.ui.model.odata.v4.ODataListBinding#sort
48566
- * sort}, or {@link sap.ui.model.odata.v4.ODataListBinding#suspend suspend} because they relate to a {@link
48567
- * sap.ui.model.odata.v4.Context#setKeepAlive kept-alive} context of this binding. Since 1.98.0, {@link
48568
- * sap.ui.model.odata.v4.Context#isTransient transient} contexts of a {@link #getRootBinding root binding}
48569
- * are treated as kept-alive by this flag. Since 1.99.0, the same happens for bindings using the `$$ownRequest`
48570
- * parameter (see {@link sap.ui.model.odata.v4.ODataModel#bindList}).
48810
+ * changeParameters}, {@link sap.ui.model.odata.v4.ODataListBinding#filter filter}, {@link sap.ui.model.odata.v4.ODataListBinding#refresh
48811
+ * refresh} (since 1.100.0), {@link sap.ui.model.odata.v4.ODataListBinding#sort sort}, or {@link sap.ui.model.odata.v4.ODataListBinding#suspend
48812
+ * suspend} because they relate to a {@link sap.ui.model.odata.v4.Context#setKeepAlive kept-alive} context
48813
+ * of this binding (since 1.97.0). Since 1.98.0, {@link sap.ui.model.odata.v4.Context#isTransient transient}
48814
+ * contexts of a {@link #getRootBinding root binding} are treated as kept-alive by this flag. Since 1.99.0,
48815
+ * the same happens for bindings using the `$$ownRequest` parameter (see {@link sap.ui.model.odata.v4.ODataModel#bindList}).
48571
48816
  */
48572
48817
  bIgnoreKeptAlive?: boolean
48573
48818
  ): boolean;
@@ -48598,10 +48843,10 @@ declare namespace sap {
48598
48843
  * determines the binding's data; it is **independent** of the order of calls to {@link sap.ui.model.odata.v4.ODataModel#submitBatch}
48599
48844
  * with the given group ID.
48600
48845
  *
48601
- * If there are pending changes, an error is thrown. Use {@link #hasPendingChanges} to check if there are
48602
- * pending changes. If there are changes, call {@link sap.ui.model.odata.v4.ODataModel#submitBatch} to submit
48603
- * the changes or {@link sap.ui.model.odata.v4.ODataModel#resetChanges} to reset the changes before calling
48604
- * {@link #refresh}.
48846
+ * If there are pending changes that cannot be ignored, an error is thrown. Use {@link #hasPendingChanges}
48847
+ * to check if there are such pending changes. If there are, call {@link sap.ui.model.odata.v4.ODataModel#submitBatch}
48848
+ * to submit the changes or {@link sap.ui.model.odata.v4.ODataModel#resetChanges} to reset the changes before
48849
+ * calling {@link #refresh}.
48605
48850
  *
48606
48851
  * Use {@link #requestRefresh} if you want to wait for the refresh.
48607
48852
  * See:
@@ -49182,7 +49427,8 @@ declare namespace sap {
49182
49427
  * @SINCE 1.99.0
49183
49428
  *
49184
49429
  * Calls {@link sap.ui.model.odata.v4.Context#setKeepAlive} at the context for the given path and returns
49185
- * it.
49430
+ * it. Since 1.100.0 the function always returns such a context. If none exists yet, it is created without
49431
+ * data and a request for its entity is sent.
49186
49432
  * See:
49187
49433
  * sap.ui.model.odata.v4.Model#getKeepAliveContext
49188
49434
  */
@@ -49194,7 +49440,12 @@ declare namespace sap {
49194
49440
  /**
49195
49441
  * Whether to request messages for the context's entity
49196
49442
  */
49197
- bRequestMessages?: boolean
49443
+ bRequestMessages?: boolean,
49444
+ /**
49445
+ * The group ID used for read requests for the context's entity or its properties. If not given, the binding's
49446
+ * {@link #getGroupId group ID} is used. Supported since 1.100.0
49447
+ */
49448
+ sGroupId?: string
49198
49449
  ): sap.ui.model.odata.v4.Context | undefined;
49199
49450
  /**
49200
49451
  * @SINCE 1.37.0
@@ -49253,12 +49504,12 @@ declare namespace sap {
49253
49504
  hasPendingChanges(
49254
49505
  /**
49255
49506
  * Whether to ignore changes which will not be lost by APIs like {@link sap.ui.model.odata.v4.ODataListBinding#changeParameters
49256
- * changeParameters}, {@link sap.ui.model.odata.v4.ODataListBinding#filter filter}, {@link sap.ui.model.odata.v4.ODataListBinding#sort
49257
- * sort}, or {@link sap.ui.model.odata.v4.ODataListBinding#suspend suspend} because they relate to a {@link
49258
- * sap.ui.model.odata.v4.Context#setKeepAlive kept-alive} context of this binding. Since 1.98.0, {@link
49259
- * sap.ui.model.odata.v4.Context#isTransient transient} contexts of a {@link #getRootBinding root binding}
49260
- * are treated as kept-alive by this flag. Since 1.99.0, the same happens for bindings using the `$$ownRequest`
49261
- * parameter (see {@link sap.ui.model.odata.v4.ODataModel#bindList}).
49507
+ * changeParameters}, {@link sap.ui.model.odata.v4.ODataListBinding#filter filter}, {@link sap.ui.model.odata.v4.ODataListBinding#refresh
49508
+ * refresh} (since 1.100.0), {@link sap.ui.model.odata.v4.ODataListBinding#sort sort}, or {@link sap.ui.model.odata.v4.ODataListBinding#suspend
49509
+ * suspend} because they relate to a {@link sap.ui.model.odata.v4.Context#setKeepAlive kept-alive} context
49510
+ * of this binding (since 1.97.0). Since 1.98.0, {@link sap.ui.model.odata.v4.Context#isTransient transient}
49511
+ * contexts of a {@link #getRootBinding root binding} are treated as kept-alive by this flag. Since 1.99.0,
49512
+ * the same happens for bindings using the `$$ownRequest` parameter (see {@link sap.ui.model.odata.v4.ODataModel#bindList}).
49262
49513
  */
49263
49514
  bIgnoreKeptAlive?: boolean
49264
49515
  ): boolean;
@@ -49306,10 +49557,10 @@ declare namespace sap {
49306
49557
  * determines the binding's data; it is **independent** of the order of calls to {@link sap.ui.model.odata.v4.ODataModel#submitBatch}
49307
49558
  * with the given group ID.
49308
49559
  *
49309
- * If there are pending changes, an error is thrown. Use {@link #hasPendingChanges} to check if there are
49310
- * pending changes. If there are changes, call {@link sap.ui.model.odata.v4.ODataModel#submitBatch} to submit
49311
- * the changes or {@link sap.ui.model.odata.v4.ODataModel#resetChanges} to reset the changes before calling
49312
- * {@link #refresh}.
49560
+ * If there are pending changes that cannot be ignored, an error is thrown. Use {@link #hasPendingChanges}
49561
+ * to check if there are such pending changes. If there are, call {@link sap.ui.model.odata.v4.ODataModel#submitBatch}
49562
+ * to submit the changes or {@link sap.ui.model.odata.v4.ODataModel#resetChanges} to reset the changes before
49563
+ * calling {@link #refresh}.
49313
49564
  *
49314
49565
  * Use {@link #requestRefresh} if you want to wait for the refresh.
49315
49566
  * See:
@@ -50522,7 +50773,8 @@ declare namespace sap {
50522
50773
  $$canonicalPath?: boolean;
50523
50774
  /**
50524
50775
  * Whether this binding is considered for a match when {@link #getKeepAliveContext} is called; only the
50525
- * value `true` is allowed. Supported since 1.99.0
50776
+ * value `true` is allowed. Must not be combined with `$apply`, `$$aggregation`, `$$canonicalPath`, or `$$sharedRequest`.
50777
+ * If the binding is relative, `$$ownRequest` must be set as well. Supported since 1.99.0
50526
50778
  */
50527
50779
  $$getKeepAliveContext?: boolean;
50528
50780
  /**
@@ -50786,10 +51038,19 @@ declare namespace sap {
50786
51038
  * @SINCE 1.99.0
50787
51039
  *
50788
51040
  * Returns a context with the given path belonging to a matching list binding that has been marked with
50789
- * `$$getKeepAliveContext` (see {@link #bindList}). If such a context exists, it is returned and kept alive
50790
- * (see {@link sap.ui.model.odata.v4.Context#setKeepAlive}).
50791
- * See:
50792
- * sap.ui.model.odata.v4.ODataListBinding#getKeepAliveContext
51041
+ * `$$getKeepAliveContext` (see {@link #bindList}). If such a matching binding can be found, a context is
51042
+ * returned and kept alive (see {@link sap.ui.model.odata.v4.ODataListBinding#getKeepAliveContext}). Since
51043
+ * 1.100.0 a temporary binding is used if no such binding could be found. If such a binding is created or
51044
+ * resolved later, the context and its data are transferred to it, and the temporary binding is destroyed
51045
+ * again.
51046
+ *
51047
+ * A `$$getKeepAliveContext` binding matches if its resolved binding path is the collection path of the
51048
+ * context. If the context is created using a temporary binding and the parameters of the `$$getKeepAliveContext`
51049
+ * binding differ from the given `mParameters` (except `$$groupId` which is especially used for the context),
51050
+ * that binding later runs into an error when trying to read data.
51051
+ *
51052
+ * **Note**: The context received by this function may change its {@link sap.ui.model.odata.v4.Context#getBinding
51053
+ * binding} during its lifetime.
50793
51054
  */
50794
51055
  getKeepAliveContext(
50795
51056
  /**
@@ -50799,7 +51060,27 @@ declare namespace sap {
50799
51060
  /**
50800
51061
  * Whether to request messages for the context's entity
50801
51062
  */
50802
- bRequestMessages?: boolean
51063
+ bRequestMessages?: boolean,
51064
+ /**
51065
+ * Parameters for the context or the temporary binding; supported since 1.100.0. All custom query options
51066
+ * and the following binding-specific parameters for a list binding may be given (see {@link #bindList}
51067
+ * for details).
51068
+ */
51069
+ mParameters?: {
51070
+ /**
51071
+ * The group ID used for read requests for the context's entity or its properties. If not given, the model's
51072
+ * {@link #getGroupId group ID} is used
51073
+ */
51074
+ $$groupId?: string;
51075
+ /**
51076
+ * Whether implicit loading of side effects via PATCH requests is switched off
51077
+ */
51078
+ $$patchWithoutSideEffects?: boolean;
51079
+ /**
51080
+ * The group ID to be used for **update** requests triggered by the context's binding
51081
+ */
51082
+ $$updateGroupId?: string;
51083
+ }
50803
51084
  ): sap.ui.model.odata.v4.Context | undefined;
50804
51085
  /**
50805
51086
  * @SINCE 1.85.0
@@ -51085,12 +51366,12 @@ declare namespace sap {
51085
51366
  hasPendingChanges(
51086
51367
  /**
51087
51368
  * Whether to ignore changes which will not be lost by APIs like {@link sap.ui.model.odata.v4.ODataListBinding#changeParameters
51088
- * changeParameters}, {@link sap.ui.model.odata.v4.ODataListBinding#filter filter}, {@link sap.ui.model.odata.v4.ODataListBinding#sort
51089
- * sort}, or {@link sap.ui.model.odata.v4.ODataListBinding#suspend suspend} because they relate to a {@link
51090
- * sap.ui.model.odata.v4.Context#setKeepAlive kept-alive} context of this binding. Since 1.98.0, {@link
51091
- * sap.ui.model.odata.v4.Context#isTransient transient} contexts of a {@link #getRootBinding root binding}
51092
- * are treated as kept-alive by this flag. Since 1.99.0, the same happens for bindings using the `$$ownRequest`
51093
- * parameter (see {@link sap.ui.model.odata.v4.ODataModel#bindList}).
51369
+ * changeParameters}, {@link sap.ui.model.odata.v4.ODataListBinding#filter filter}, {@link sap.ui.model.odata.v4.ODataListBinding#refresh
51370
+ * refresh} (since 1.100.0), {@link sap.ui.model.odata.v4.ODataListBinding#sort sort}, or {@link sap.ui.model.odata.v4.ODataListBinding#suspend
51371
+ * suspend} because they relate to a {@link sap.ui.model.odata.v4.Context#setKeepAlive kept-alive} context
51372
+ * of this binding (since 1.97.0). Since 1.98.0, {@link sap.ui.model.odata.v4.Context#isTransient transient}
51373
+ * contexts of a {@link #getRootBinding root binding} are treated as kept-alive by this flag. Since 1.99.0,
51374
+ * the same happens for bindings using the `$$ownRequest` parameter (see {@link sap.ui.model.odata.v4.ODataModel#bindList}).
51094
51375
  */
51095
51376
  bIgnoreKeptAlive?: boolean
51096
51377
  ): boolean;
@@ -51112,10 +51393,10 @@ declare namespace sap {
51112
51393
  * determines the binding's data; it is **independent** of the order of calls to {@link sap.ui.model.odata.v4.ODataModel#submitBatch}
51113
51394
  * with the given group ID.
51114
51395
  *
51115
- * If there are pending changes, an error is thrown. Use {@link #hasPendingChanges} to check if there are
51116
- * pending changes. If there are changes, call {@link sap.ui.model.odata.v4.ODataModel#submitBatch} to submit
51117
- * the changes or {@link sap.ui.model.odata.v4.ODataModel#resetChanges} to reset the changes before calling
51118
- * {@link #refresh}.
51396
+ * If there are pending changes that cannot be ignored, an error is thrown. Use {@link #hasPendingChanges}
51397
+ * to check if there are such pending changes. If there are, call {@link sap.ui.model.odata.v4.ODataModel#submitBatch}
51398
+ * to submit the changes or {@link sap.ui.model.odata.v4.ODataModel#resetChanges} to reset the changes before
51399
+ * calling {@link #refresh}.
51119
51400
  *
51120
51401
  * Use {@link #requestRefresh} if you want to wait for the refresh.
51121
51402
  * See:
@@ -57171,6 +57452,18 @@ declare namespace sap {
57171
57452
  */
57172
57453
  aCurrentValues?: any[]
57173
57454
  ): any[] | any;
57455
+ /**
57456
+ * @SINCE 1.100.0
57457
+ *
57458
+ * Processes the types of the parts of this composite type. A concrete composite type may override this
57459
+ * method if it needs to derive information from the types of the parts.
57460
+ */
57461
+ processPartTypes(
57462
+ /**
57463
+ * Types of the composite binding's parts
57464
+ */
57465
+ aPartTypes: sap.ui.model.SimpleType[]
57466
+ ): void;
57174
57467
  /**
57175
57468
  * Validates whether the given raw values meet the defined constraints. This method does nothing if no constraints
57176
57469
  * are defined.
@@ -65041,7 +65334,7 @@ declare namespace sap {
65041
65334
  /**
65042
65335
  * the type of the target control(s)
65043
65336
  */
65044
- vControlType?: string,
65337
+ sControlType?: string,
65045
65338
  /**
65046
65339
  * if true, only popover and dialogs are searched for
65047
65340
  */
@@ -65307,9 +65600,9 @@ declare namespace sap {
65307
65600
  */
65308
65601
  sAggregationName: string,
65309
65602
  /**
65310
- * iNumber length to check against
65603
+ * length to check against
65311
65604
  */
65312
- int?: undefined
65605
+ iNumber: int
65313
65606
  ): this;
65314
65607
  /**
65315
65608
  * Adds a matcher to aggregation items checking for certain properties. At least one item must match the
@@ -65425,7 +65718,7 @@ declare namespace sap {
65425
65718
  /**
65426
65719
  * the type of the target control(s)
65427
65720
  */
65428
- vControlType: string
65721
+ sControlType: string
65429
65722
  ): this;
65430
65723
  /**
65431
65724
  * Defines whether target control is part of a popover or dialog (sets `searchOpenDialogs` property).
@@ -66202,6 +66495,8 @@ declare namespace sap {
66202
66495
 
66203
66496
  "sap/ui/core/format/DateFormat": undefined;
66204
66497
 
66498
+ "sap/ui/core/format/DateFormatTimezoneDisplay": undefined;
66499
+
66205
66500
  "sap/ui/core/format/FileSizeFormat": undefined;
66206
66501
 
66207
66502
  "sap/ui/core/format/ListFormat": undefined;
@@ -66726,6 +67021,8 @@ declare namespace sap {
66726
67021
 
66727
67022
  "sap/ui/performance/trace/FESR": undefined;
66728
67023
 
67024
+ "sap/ui/performance/trace/FESRHelper": undefined;
67025
+
66729
67026
  "sap/ui/performance/trace/initTraces": undefined;
66730
67027
 
66731
67028
  "sap/ui/performance/trace/Interaction": undefined;
@@ -66746,6 +67043,10 @@ declare namespace sap {
66746
67043
 
66747
67044
  "sap/ui/test/actions/Scroll": undefined;
66748
67045
 
67046
+ "sap/ui/test/generic/GenericTestCollection": undefined;
67047
+
67048
+ "sap/ui/test/generic/Utils": undefined;
67049
+
66749
67050
  "sap/ui/test/gherkin/dataTableUtils": undefined;
66750
67051
 
66751
67052
  "sap/ui/test/gherkin/opa5TestHarness": undefined;