@openui5/ts-types-esm 1.94.0 → 1.95.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/sap.f.d.ts +257 -1
- package/types/sap.m.d.ts +81 -9
- package/types/sap.tnt.d.ts +11 -12
- package/types/sap.ui.codeeditor.d.ts +29 -31
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +446 -275
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +3 -1
- package/types/sap.ui.integration.d.ts +13 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +13 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +6 -6
- package/types/sap.ui.table.d.ts +7 -4
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +136 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1591 -410
- package/types/sap.ui.webc.main.d.ts +6230 -4743
- package/types/sap.uxap.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.95.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
export interface IToolHeader {
|
|
@@ -2381,6 +2381,8 @@ declare module "sap/f/cards/NumericSideIndicator" {
|
|
|
2381
2381
|
|
|
2382
2382
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
2383
2383
|
|
|
2384
|
+
import { ValueColor } from "sap/m/library";
|
|
2385
|
+
|
|
2384
2386
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
2385
2387
|
|
|
2386
2388
|
/**
|
|
@@ -2451,6 +2453,16 @@ declare module "sap/f/cards/NumericSideIndicator" {
|
|
|
2451
2453
|
* The numeric value
|
|
2452
2454
|
*/
|
|
2453
2455
|
getNumber(): string;
|
|
2456
|
+
/**
|
|
2457
|
+
* @EXPERIMENTAL (since 1.95)
|
|
2458
|
+
*
|
|
2459
|
+
* Gets current value of property {@link #getState state}.
|
|
2460
|
+
*
|
|
2461
|
+
* The semantic color which represents the state of the side indicator.
|
|
2462
|
+
*
|
|
2463
|
+
* Default value is `"None"`.
|
|
2464
|
+
*/
|
|
2465
|
+
getState(): ValueColor | keyof typeof ValueColor;
|
|
2454
2466
|
/**
|
|
2455
2467
|
* Gets current value of property {@link #getTitle title}.
|
|
2456
2468
|
*
|
|
@@ -2472,6 +2484,23 @@ declare module "sap/f/cards/NumericSideIndicator" {
|
|
|
2472
2484
|
*/
|
|
2473
2485
|
sValue: string
|
|
2474
2486
|
): this;
|
|
2487
|
+
/**
|
|
2488
|
+
* @EXPERIMENTAL (since 1.95)
|
|
2489
|
+
*
|
|
2490
|
+
* Sets a new value for property {@link #getState state}.
|
|
2491
|
+
*
|
|
2492
|
+
* The semantic color which represents the state of the side indicator.
|
|
2493
|
+
*
|
|
2494
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2495
|
+
*
|
|
2496
|
+
* Default value is `"None"`.
|
|
2497
|
+
*/
|
|
2498
|
+
setState(
|
|
2499
|
+
/**
|
|
2500
|
+
* New value for property `state`
|
|
2501
|
+
*/
|
|
2502
|
+
sState?: ValueColor | keyof typeof ValueColor
|
|
2503
|
+
): this;
|
|
2475
2504
|
/**
|
|
2476
2505
|
* Sets the title.
|
|
2477
2506
|
*/
|
|
@@ -2507,6 +2536,13 @@ declare module "sap/f/cards/NumericSideIndicator" {
|
|
|
2507
2536
|
* Defines the unit of measurement (scaling prefix) for the numeric value
|
|
2508
2537
|
*/
|
|
2509
2538
|
unit?: string | PropertyBindingInfo;
|
|
2539
|
+
|
|
2540
|
+
/**
|
|
2541
|
+
* @EXPERIMENTAL (since 1.95)
|
|
2542
|
+
*
|
|
2543
|
+
* The semantic color which represents the state of the side indicator.
|
|
2544
|
+
*/
|
|
2545
|
+
state?: (ValueColor | keyof typeof ValueColor) | PropertyBindingInfo;
|
|
2510
2546
|
}
|
|
2511
2547
|
}
|
|
2512
2548
|
|
|
@@ -5072,6 +5108,8 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
5072
5108
|
|
|
5073
5109
|
import { BackgroundDesign } from "sap/m/library";
|
|
5074
5110
|
|
|
5111
|
+
import FlexibleColumnLayoutAccessibleLandmarkInfo from "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo";
|
|
5112
|
+
|
|
5075
5113
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
5076
5114
|
|
|
5077
5115
|
import {
|
|
@@ -5751,6 +5789,12 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
5751
5789
|
* Destroys all the endColumnPages in the aggregation {@link #getEndColumnPages endColumnPages}.
|
|
5752
5790
|
*/
|
|
5753
5791
|
destroyEndColumnPages(): this;
|
|
5792
|
+
/**
|
|
5793
|
+
* @SINCE 1.95
|
|
5794
|
+
*
|
|
5795
|
+
* Destroys the landmarkInfo in the aggregation {@link #getLandmarkInfo landmarkInfo}.
|
|
5796
|
+
*/
|
|
5797
|
+
destroyLandmarkInfo(): this;
|
|
5754
5798
|
/**
|
|
5755
5799
|
* Destroys all the midColumnPages in the aggregation {@link #getMidColumnPages midColumnPages}.
|
|
5756
5800
|
*/
|
|
@@ -6355,6 +6399,16 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
6355
6399
|
* or `null`.
|
|
6356
6400
|
*/
|
|
6357
6401
|
getInitialMidColumnPage(): ID;
|
|
6402
|
+
/**
|
|
6403
|
+
* @SINCE 1.95
|
|
6404
|
+
*
|
|
6405
|
+
* Gets content of aggregation {@link #getLandmarkInfo landmarkInfo}.
|
|
6406
|
+
*
|
|
6407
|
+
* Accessible landmark settings to be applied on the containers of the `sap.f.FlexibleColumnLayout` control.
|
|
6408
|
+
*
|
|
6409
|
+
* If not set, no landmarks will be written.
|
|
6410
|
+
*/
|
|
6411
|
+
getLandmarkInfo(): FlexibleColumnLayoutAccessibleLandmarkInfo;
|
|
6358
6412
|
/**
|
|
6359
6413
|
* Gets current value of property {@link #getLayout layout}.
|
|
6360
6414
|
*
|
|
@@ -6645,6 +6699,17 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
6645
6699
|
*/
|
|
6646
6700
|
oInitialMidColumnPage: ID | Control
|
|
6647
6701
|
): this;
|
|
6702
|
+
/**
|
|
6703
|
+
* @SINCE 1.95
|
|
6704
|
+
*
|
|
6705
|
+
* Sets the aggregated {@link #getLandmarkInfo landmarkInfo}.
|
|
6706
|
+
*/
|
|
6707
|
+
setLandmarkInfo(
|
|
6708
|
+
/**
|
|
6709
|
+
* The landmarkInfo to set
|
|
6710
|
+
*/
|
|
6711
|
+
oLandmarkInfo: FlexibleColumnLayoutAccessibleLandmarkInfo
|
|
6712
|
+
): this;
|
|
6648
6713
|
/**
|
|
6649
6714
|
* Sets a new value for property {@link #getLayout layout}.
|
|
6650
6715
|
*
|
|
@@ -7076,6 +7141,15 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
7076
7141
|
*/
|
|
7077
7142
|
endColumnPages?: Control[] | Control | AggregationBindingInfo;
|
|
7078
7143
|
|
|
7144
|
+
/**
|
|
7145
|
+
* @SINCE 1.95
|
|
7146
|
+
*
|
|
7147
|
+
* Accessible landmark settings to be applied on the containers of the `sap.f.FlexibleColumnLayout` control.
|
|
7148
|
+
*
|
|
7149
|
+
* If not set, no landmarks will be written.
|
|
7150
|
+
*/
|
|
7151
|
+
landmarkInfo?: FlexibleColumnLayoutAccessibleLandmarkInfo;
|
|
7152
|
+
|
|
7079
7153
|
/**
|
|
7080
7154
|
* Sets the initial `Begin` column page, which is displayed on application launch.
|
|
7081
7155
|
*/
|
|
@@ -7156,6 +7230,182 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
7156
7230
|
}
|
|
7157
7231
|
}
|
|
7158
7232
|
|
|
7233
|
+
declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
|
|
7234
|
+
import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
|
|
7235
|
+
|
|
7236
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
7237
|
+
|
|
7238
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
7239
|
+
|
|
7240
|
+
/**
|
|
7241
|
+
* @SINCE 1.95
|
|
7242
|
+
*
|
|
7243
|
+
* Settings for accessible landmarks which can be applied to the container elements of a `sap.f.FlexibleColumnLayout`
|
|
7244
|
+
* control. For example, these landmarks are used by assistive technologies (such as screen readers) to
|
|
7245
|
+
* provide a meaningful columns overview.
|
|
7246
|
+
*/
|
|
7247
|
+
export default class FlexibleColumnLayoutAccessibleLandmarkInfo extends UI5Element {
|
|
7248
|
+
/**
|
|
7249
|
+
* Constructor for a new `sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo` element.
|
|
7250
|
+
*
|
|
7251
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
7252
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
7253
|
+
* of the syntax of the settings object.
|
|
7254
|
+
*/
|
|
7255
|
+
constructor(
|
|
7256
|
+
/**
|
|
7257
|
+
* Initial settings for the new element
|
|
7258
|
+
*/
|
|
7259
|
+
mSettings?: $FlexibleColumnLayoutAccessibleLandmarkInfoSettings
|
|
7260
|
+
);
|
|
7261
|
+
/**
|
|
7262
|
+
* Constructor for a new `sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo` element.
|
|
7263
|
+
*
|
|
7264
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
7265
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
7266
|
+
* of the syntax of the settings object.
|
|
7267
|
+
*/
|
|
7268
|
+
constructor(
|
|
7269
|
+
/**
|
|
7270
|
+
* ID for the new element, generated automatically if no ID is given
|
|
7271
|
+
*/
|
|
7272
|
+
sId?: string,
|
|
7273
|
+
/**
|
|
7274
|
+
* Initial settings for the new element
|
|
7275
|
+
*/
|
|
7276
|
+
mSettings?: $FlexibleColumnLayoutAccessibleLandmarkInfoSettings
|
|
7277
|
+
);
|
|
7278
|
+
|
|
7279
|
+
/**
|
|
7280
|
+
* Creates a new subclass of class sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo with name `sClassName`
|
|
7281
|
+
* and enriches it with the information contained in `oClassInfo`.
|
|
7282
|
+
*
|
|
7283
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
7284
|
+
*/
|
|
7285
|
+
static extend<T extends Record<string, unknown>>(
|
|
7286
|
+
/**
|
|
7287
|
+
* Name of the class being created
|
|
7288
|
+
*/
|
|
7289
|
+
sClassName: string,
|
|
7290
|
+
/**
|
|
7291
|
+
* Object literal with information about the class
|
|
7292
|
+
*/
|
|
7293
|
+
oClassInfo?: sap.ClassInfo<T, FlexibleColumnLayoutAccessibleLandmarkInfo>,
|
|
7294
|
+
/**
|
|
7295
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
7296
|
+
* used by this class
|
|
7297
|
+
*/
|
|
7298
|
+
FNMetaImpl?: Function
|
|
7299
|
+
): Function;
|
|
7300
|
+
/**
|
|
7301
|
+
* Returns a metadata object for class sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo.
|
|
7302
|
+
*/
|
|
7303
|
+
static getMetadata(): ElementMetadata;
|
|
7304
|
+
/**
|
|
7305
|
+
* Gets current value of property {@link #getFirstColumnLabel firstColumnLabel}.
|
|
7306
|
+
*
|
|
7307
|
+
* Text that describes the landmark of the first column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
7308
|
+
* control.
|
|
7309
|
+
*
|
|
7310
|
+
* If not set, a predefined text is used.
|
|
7311
|
+
*/
|
|
7312
|
+
getFirstColumnLabel(): string;
|
|
7313
|
+
/**
|
|
7314
|
+
* Gets current value of property {@link #getLastColumnLabel lastColumnLabel}.
|
|
7315
|
+
*
|
|
7316
|
+
* Text that describes the landmark of the last column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
7317
|
+
* control.
|
|
7318
|
+
*
|
|
7319
|
+
* If not set, a predefined text is used.
|
|
7320
|
+
*/
|
|
7321
|
+
getLastColumnLabel(): string;
|
|
7322
|
+
/**
|
|
7323
|
+
* Gets current value of property {@link #getMiddleColumnLabel middleColumnLabel}.
|
|
7324
|
+
*
|
|
7325
|
+
* Text that describes the landmark of the middle column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
7326
|
+
* control.
|
|
7327
|
+
*
|
|
7328
|
+
* If not set, a predefined text is used.
|
|
7329
|
+
*/
|
|
7330
|
+
getMiddleColumnLabel(): string;
|
|
7331
|
+
/**
|
|
7332
|
+
* Sets a new value for property {@link #getFirstColumnLabel firstColumnLabel}.
|
|
7333
|
+
*
|
|
7334
|
+
* Text that describes the landmark of the first column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
7335
|
+
* control.
|
|
7336
|
+
*
|
|
7337
|
+
* If not set, a predefined text is used.
|
|
7338
|
+
*
|
|
7339
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
7340
|
+
*/
|
|
7341
|
+
setFirstColumnLabel(
|
|
7342
|
+
/**
|
|
7343
|
+
* New value for property `firstColumnLabel`
|
|
7344
|
+
*/
|
|
7345
|
+
sFirstColumnLabel?: string
|
|
7346
|
+
): this;
|
|
7347
|
+
/**
|
|
7348
|
+
* Sets a new value for property {@link #getLastColumnLabel lastColumnLabel}.
|
|
7349
|
+
*
|
|
7350
|
+
* Text that describes the landmark of the last column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
7351
|
+
* control.
|
|
7352
|
+
*
|
|
7353
|
+
* If not set, a predefined text is used.
|
|
7354
|
+
*
|
|
7355
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
7356
|
+
*/
|
|
7357
|
+
setLastColumnLabel(
|
|
7358
|
+
/**
|
|
7359
|
+
* New value for property `lastColumnLabel`
|
|
7360
|
+
*/
|
|
7361
|
+
sLastColumnLabel?: string
|
|
7362
|
+
): this;
|
|
7363
|
+
/**
|
|
7364
|
+
* Sets a new value for property {@link #getMiddleColumnLabel middleColumnLabel}.
|
|
7365
|
+
*
|
|
7366
|
+
* Text that describes the landmark of the middle column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
7367
|
+
* control.
|
|
7368
|
+
*
|
|
7369
|
+
* If not set, a predefined text is used.
|
|
7370
|
+
*
|
|
7371
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
7372
|
+
*/
|
|
7373
|
+
setMiddleColumnLabel(
|
|
7374
|
+
/**
|
|
7375
|
+
* New value for property `middleColumnLabel`
|
|
7376
|
+
*/
|
|
7377
|
+
sMiddleColumnLabel?: string
|
|
7378
|
+
): this;
|
|
7379
|
+
}
|
|
7380
|
+
|
|
7381
|
+
export interface $FlexibleColumnLayoutAccessibleLandmarkInfoSettings
|
|
7382
|
+
extends $ElementSettings {
|
|
7383
|
+
/**
|
|
7384
|
+
* Text that describes the landmark of the first column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
7385
|
+
* control.
|
|
7386
|
+
*
|
|
7387
|
+
* If not set, a predefined text is used.
|
|
7388
|
+
*/
|
|
7389
|
+
firstColumnLabel?: string | PropertyBindingInfo;
|
|
7390
|
+
|
|
7391
|
+
/**
|
|
7392
|
+
* Text that describes the landmark of the middle column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
7393
|
+
* control.
|
|
7394
|
+
*
|
|
7395
|
+
* If not set, a predefined text is used.
|
|
7396
|
+
*/
|
|
7397
|
+
middleColumnLabel?: string | PropertyBindingInfo;
|
|
7398
|
+
|
|
7399
|
+
/**
|
|
7400
|
+
* Text that describes the landmark of the last column of the corresponding `sap.f.FlexibleColumnLayout`
|
|
7401
|
+
* control.
|
|
7402
|
+
*
|
|
7403
|
+
* If not set, a predefined text is used.
|
|
7404
|
+
*/
|
|
7405
|
+
lastColumnLabel?: string | PropertyBindingInfo;
|
|
7406
|
+
}
|
|
7407
|
+
}
|
|
7408
|
+
|
|
7159
7409
|
declare module "sap/f/FlexibleColumnLayoutSemanticHelper" {
|
|
7160
7410
|
import FlexibleColumnLayout from "sap/f/FlexibleColumnLayout";
|
|
7161
7411
|
|
|
@@ -13496,6 +13746,8 @@ declare module "sap/f/semantic/SemanticPage" {
|
|
|
13496
13746
|
* The `customShareActions` are placed in the `ShareMenu` area of the `SemanticPage` title, right after
|
|
13497
13747
|
* the semantic actions.
|
|
13498
13748
|
*
|
|
13749
|
+
* The text and icon of the button inside the `customShareActions` aggregation, can be customized.
|
|
13750
|
+
*
|
|
13499
13751
|
* **Note:** If the `titleSnappedOnMobile` aggregation is set, its content overrides this aggregation when
|
|
13500
13752
|
* the control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
|
|
13501
13753
|
* state.
|
|
@@ -15168,6 +15420,8 @@ declare module "sap/f/semantic/SemanticPage" {
|
|
|
15168
15420
|
* The `customShareActions` are placed in the `ShareMenu` area of the `SemanticPage` title, right after
|
|
15169
15421
|
* the semantic actions.
|
|
15170
15422
|
*
|
|
15423
|
+
* The text and icon of the button inside the `customShareActions` aggregation, can be customized.
|
|
15424
|
+
*
|
|
15171
15425
|
* **Note:** If the `titleSnappedOnMobile` aggregation is set, its content overrides this aggregation when
|
|
15172
15426
|
* the control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
|
|
15173
15427
|
* state.
|
|
@@ -16870,6 +17124,8 @@ declare namespace sap {
|
|
|
16870
17124
|
|
|
16871
17125
|
"sap/f/FlexibleColumnLayout": undefined;
|
|
16872
17126
|
|
|
17127
|
+
"sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo": undefined;
|
|
17128
|
+
|
|
16873
17129
|
"sap/f/FlexibleColumnLayoutSemanticHelper": undefined;
|
|
16874
17130
|
|
|
16875
17131
|
"sap/f/GridContainer": undefined;
|
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.95.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -13874,6 +13874,19 @@ declare module "sap/m/DatePicker" {
|
|
|
13874
13874
|
* are only displayed in the primary calendar type
|
|
13875
13875
|
*/
|
|
13876
13876
|
getSecondaryCalendarType(): CalendarType | keyof typeof CalendarType;
|
|
13877
|
+
/**
|
|
13878
|
+
* @SINCE 1.95
|
|
13879
|
+
*
|
|
13880
|
+
* Gets current value of property {@link #getShowCurrentDateButton showCurrentDateButton}.
|
|
13881
|
+
*
|
|
13882
|
+
* Determines whether there is a shortcut navigation to Today. When used in Month, Year or Year-range picker
|
|
13883
|
+
* view, the calendar navigates to Day picker view.
|
|
13884
|
+
*
|
|
13885
|
+
* Note: The Current date button appears if the `displayFormat` property allows entering day.
|
|
13886
|
+
*
|
|
13887
|
+
* Default value is `false`.
|
|
13888
|
+
*/
|
|
13889
|
+
getShowCurrentDateButton(): boolean;
|
|
13877
13890
|
/**
|
|
13878
13891
|
* @SINCE 1.70
|
|
13879
13892
|
*
|
|
@@ -14073,6 +14086,26 @@ declare module "sap/m/DatePicker" {
|
|
|
14073
14086
|
*/
|
|
14074
14087
|
sSecondaryCalendarType?: CalendarType | keyof typeof CalendarType
|
|
14075
14088
|
): this;
|
|
14089
|
+
/**
|
|
14090
|
+
* @SINCE 1.95
|
|
14091
|
+
*
|
|
14092
|
+
* Sets a new value for property {@link #getShowCurrentDateButton showCurrentDateButton}.
|
|
14093
|
+
*
|
|
14094
|
+
* Determines whether there is a shortcut navigation to Today. When used in Month, Year or Year-range picker
|
|
14095
|
+
* view, the calendar navigates to Day picker view.
|
|
14096
|
+
*
|
|
14097
|
+
* Note: The Current date button appears if the `displayFormat` property allows entering day.
|
|
14098
|
+
*
|
|
14099
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
14100
|
+
*
|
|
14101
|
+
* Default value is `false`.
|
|
14102
|
+
*/
|
|
14103
|
+
setShowCurrentDateButton(
|
|
14104
|
+
/**
|
|
14105
|
+
* New value for property `showCurrentDateButton`
|
|
14106
|
+
*/
|
|
14107
|
+
bShowCurrentDateButton?: boolean
|
|
14108
|
+
): this;
|
|
14076
14109
|
/**
|
|
14077
14110
|
* @SINCE 1.70
|
|
14078
14111
|
*
|
|
@@ -14162,6 +14195,16 @@ declare module "sap/m/DatePicker" {
|
|
|
14162
14195
|
*/
|
|
14163
14196
|
showFooter?: boolean | PropertyBindingInfo;
|
|
14164
14197
|
|
|
14198
|
+
/**
|
|
14199
|
+
* @SINCE 1.95
|
|
14200
|
+
*
|
|
14201
|
+
* Determines whether there is a shortcut navigation to Today. When used in Month, Year or Year-range picker
|
|
14202
|
+
* view, the calendar navigates to Day picker view.
|
|
14203
|
+
*
|
|
14204
|
+
* Note: The Current date button appears if the `displayFormat` property allows entering day.
|
|
14205
|
+
*/
|
|
14206
|
+
showCurrentDateButton?: boolean | PropertyBindingInfo;
|
|
14207
|
+
|
|
14165
14208
|
/**
|
|
14166
14209
|
* @SINCE 1.38.5
|
|
14167
14210
|
*
|
|
@@ -45251,6 +45294,8 @@ declare module "sap/m/MultiComboBox" {
|
|
|
45251
45294
|
declare module "sap/m/MultiInput" {
|
|
45252
45295
|
import { default as Input, $InputSettings } from "sap/m/Input";
|
|
45253
45296
|
|
|
45297
|
+
import { ISemanticFormContent } from "sap/ui/core/library";
|
|
45298
|
+
|
|
45254
45299
|
import Token from "sap/m/Token";
|
|
45255
45300
|
|
|
45256
45301
|
import Event from "sap/ui/base/Event";
|
|
@@ -45303,7 +45348,10 @@ declare module "sap/m/MultiInput" {
|
|
|
45303
45348
|
* - You can review the tokens by pressing the right or left arrows on the keyboard.
|
|
45304
45349
|
* - You can select single tokens or a range of tokens and you can copy/cut/delete them.
|
|
45305
45350
|
*/
|
|
45306
|
-
export default class MultiInput
|
|
45351
|
+
export default class MultiInput
|
|
45352
|
+
extends Input
|
|
45353
|
+
implements ISemanticFormContent {
|
|
45354
|
+
__implements__sap_ui_core_ISemanticFormContent: boolean;
|
|
45307
45355
|
/**
|
|
45308
45356
|
* Constructor for a new MultiInput.
|
|
45309
45357
|
*
|
|
@@ -62920,7 +62968,12 @@ declare module "sap/m/PDFViewer" {
|
|
|
62920
62968
|
/**
|
|
62921
62969
|
* Parameters to pass along with the event
|
|
62922
62970
|
*/
|
|
62923
|
-
mParameters?:
|
|
62971
|
+
mParameters?: {
|
|
62972
|
+
/**
|
|
62973
|
+
* The iframe element.
|
|
62974
|
+
*/
|
|
62975
|
+
target?: any;
|
|
62976
|
+
}
|
|
62924
62977
|
): this;
|
|
62925
62978
|
/**
|
|
62926
62979
|
* Fires event {@link #event:loaded loaded} to attached listeners.
|
|
@@ -78913,6 +78966,10 @@ declare module "sap/m/Select" {
|
|
|
78913
78966
|
* The selected item.
|
|
78914
78967
|
*/
|
|
78915
78968
|
selectedItem?: Item;
|
|
78969
|
+
/**
|
|
78970
|
+
* The previous selected item.
|
|
78971
|
+
*/
|
|
78972
|
+
previousSelectedItem?: Item;
|
|
78916
78973
|
}
|
|
78917
78974
|
): this;
|
|
78918
78975
|
/**
|
|
@@ -95561,7 +95618,9 @@ declare module "sap/m/StandardListItem" {
|
|
|
95561
95618
|
/**
|
|
95562
95619
|
* Gets current value of property {@link #getInfo info}.
|
|
95563
95620
|
*
|
|
95564
|
-
* Defines an additional information text.
|
|
95621
|
+
* Defines an additional information text. **Note:** A wrapping of the information text is also supported
|
|
95622
|
+
* as of version 1.95, if `wrapping=true`. Although long strings are supported for the information text,
|
|
95623
|
+
* it is recommended to use short strings. For more details, see {@link #getWrapping wrapping}.
|
|
95565
95624
|
*/
|
|
95566
95625
|
getInfo(): string;
|
|
95567
95626
|
/**
|
|
@@ -95640,6 +95699,9 @@ declare module "sap/m/StandardListItem" {
|
|
|
95640
95699
|
*
|
|
95641
95700
|
* In the desktop mode, initial rendering of the control contains 300 characters along with a button to
|
|
95642
95701
|
* expand and collapse the text whereas in the phone mode, the character limit is set to 100 characters.
|
|
95702
|
+
* A wrapping of the information text is supported as of 1.95. But expanding and collapsing the information
|
|
95703
|
+
* text is not possible. A wrapping of the information text is disabled if `infoStateInverted` is set to
|
|
95704
|
+
* `true`.
|
|
95643
95705
|
*
|
|
95644
95706
|
* Default value is `false`.
|
|
95645
95707
|
*/
|
|
@@ -95739,7 +95801,9 @@ declare module "sap/m/StandardListItem" {
|
|
|
95739
95801
|
/**
|
|
95740
95802
|
* Sets a new value for property {@link #getInfo info}.
|
|
95741
95803
|
*
|
|
95742
|
-
* Defines an additional information text.
|
|
95804
|
+
* Defines an additional information text. **Note:** A wrapping of the information text is also supported
|
|
95805
|
+
* as of version 1.95, if `wrapping=true`. Although long strings are supported for the information text,
|
|
95806
|
+
* it is recommended to use short strings. For more details, see {@link #getWrapping wrapping}.
|
|
95743
95807
|
*
|
|
95744
95808
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
95745
95809
|
*/
|
|
@@ -95867,6 +95931,9 @@ declare module "sap/m/StandardListItem" {
|
|
|
95867
95931
|
*
|
|
95868
95932
|
* In the desktop mode, initial rendering of the control contains 300 characters along with a button to
|
|
95869
95933
|
* expand and collapse the text whereas in the phone mode, the character limit is set to 100 characters.
|
|
95934
|
+
* A wrapping of the information text is supported as of 1.95. But expanding and collapsing the information
|
|
95935
|
+
* text is not possible. A wrapping of the information text is disabled if `infoStateInverted` is set to
|
|
95936
|
+
* `true`.
|
|
95870
95937
|
*
|
|
95871
95938
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
95872
95939
|
*
|
|
@@ -95916,7 +95983,9 @@ declare module "sap/m/StandardListItem" {
|
|
|
95916
95983
|
activeIcon?: URI | PropertyBindingInfo;
|
|
95917
95984
|
|
|
95918
95985
|
/**
|
|
95919
|
-
* Defines an additional information text.
|
|
95986
|
+
* Defines an additional information text. **Note:** A wrapping of the information text is also supported
|
|
95987
|
+
* as of version 1.95, if `wrapping=true`. Although long strings are supported for the information text,
|
|
95988
|
+
* it is recommended to use short strings. For more details, see {@link #getWrapping wrapping}.
|
|
95920
95989
|
*/
|
|
95921
95990
|
info?: string | PropertyBindingInfo;
|
|
95922
95991
|
|
|
@@ -95963,6 +96032,9 @@ declare module "sap/m/StandardListItem" {
|
|
|
95963
96032
|
*
|
|
95964
96033
|
* In the desktop mode, initial rendering of the control contains 300 characters along with a button to
|
|
95965
96034
|
* expand and collapse the text whereas in the phone mode, the character limit is set to 100 characters.
|
|
96035
|
+
* A wrapping of the information text is supported as of 1.95. But expanding and collapsing the information
|
|
96036
|
+
* text is not possible. A wrapping of the information text is disabled if `infoStateInverted` is set to
|
|
96037
|
+
* `true`.
|
|
95966
96038
|
*/
|
|
95967
96039
|
wrapping?: boolean | PropertyBindingInfo;
|
|
95968
96040
|
|
|
@@ -102665,7 +102737,7 @@ declare module "sap/m/TextArea" {
|
|
|
102665
102737
|
* Gets current value of property {@link #getGrowing growing}.
|
|
102666
102738
|
*
|
|
102667
102739
|
* Indicates the ability of the control to automatically grow and shrink dynamically with its content. **Note:**
|
|
102668
|
-
*
|
|
102740
|
+
* This property should not be used when the `height` property is set.
|
|
102669
102741
|
*
|
|
102670
102742
|
* Default value is `false`.
|
|
102671
102743
|
*/
|
|
@@ -102759,7 +102831,7 @@ declare module "sap/m/TextArea" {
|
|
|
102759
102831
|
* Sets a new value for property {@link #getGrowing growing}.
|
|
102760
102832
|
*
|
|
102761
102833
|
* Indicates the ability of the control to automatically grow and shrink dynamically with its content. **Note:**
|
|
102762
|
-
*
|
|
102834
|
+
* This property should not be used when the `height` property is set.
|
|
102763
102835
|
*
|
|
102764
102836
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
102765
102837
|
*
|
|
@@ -102941,7 +103013,7 @@ declare module "sap/m/TextArea" {
|
|
|
102941
103013
|
* @SINCE 1.38.0
|
|
102942
103014
|
*
|
|
102943
103015
|
* Indicates the ability of the control to automatically grow and shrink dynamically with its content. **Note:**
|
|
102944
|
-
*
|
|
103016
|
+
* This property should not be used when the `height` property is set.
|
|
102945
103017
|
*/
|
|
102946
103018
|
growing?: boolean | PropertyBindingInfo;
|
|
102947
103019
|
|
package/types/sap.tnt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.95.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
/**
|
|
@@ -1509,17 +1509,16 @@ declare module "sap/tnt/ToolHeader" {
|
|
|
1509
1509
|
* The ToolHeader stylizes the contained controls with the Shell color parameters, to match the dark design
|
|
1510
1510
|
* requirement. However, that's not a dark theme.
|
|
1511
1511
|
*
|
|
1512
|
-
* Only the following controls are supported:
|
|
1513
|
-
*
|
|
1514
|
-
*
|
|
1515
|
-
*
|
|
1516
|
-
*
|
|
1517
|
-
*
|
|
1518
|
-
*
|
|
1519
|
-
*
|
|
1520
|
-
*
|
|
1521
|
-
*
|
|
1522
|
-
* Should be used for triggering Mega menu. If there is no Mega menu, use Title (H6) instead.
|
|
1512
|
+
* Only the following controls are supported: Control name Supported
|
|
1513
|
+
* Not supported sap.m.Text Single line text, text truncation Wrapping
|
|
1514
|
+
* sap.m.Title Single line text, text truncation. Consider using title headings
|
|
1515
|
+
* of H4, H5, H6. Wrapping sap.m.Label Single line text, text truncation
|
|
1516
|
+
* Wrapping sap.m.ObjectStatus Labels, semantic colors Indication
|
|
1517
|
+
* colors sap.ui.core.Icon sap.ui.core.IconColor enumeration for both icons
|
|
1518
|
+
* and backgrounds. Interaction state colors sap.m.Button Buttons
|
|
1519
|
+
* in their Back, Default, Transparent and Up types. All four types are over-styled to look as transparent
|
|
1520
|
+
* buttons. - sap.m.MenuButton Emphasized button type. Should be used
|
|
1521
|
+
* for triggering Mega menu. If there is no Mega menu, use Title (H6) instead.
|
|
1523
1522
|
* Default (over-styled as Transparent) and Transparent types are used for standard menu representation.
|
|
1524
1523
|
* - sap.m.Select Default and IconOnly types. IconOnly looks like a button
|
|
1525
1524
|
* while Default looks is like an input. Semantic states sap.m.SearchField
|