@openui5/ts-types 1.144.0 → 1.145.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.m.d.ts +29 -12
- package/types/sap.tnt.d.ts +19 -11
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +140 -97
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +5 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +356 -49
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +5 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +42 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uxap.d.ts +18 -8
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.145.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/AggregationBaseDelegate" {
|
|
4
4
|
import BaseDelegate from "sap/ui/mdc/BaseDelegate";
|
|
@@ -147,7 +147,6 @@ declare module "sap/ui/mdc/ChartDelegate" {
|
|
|
147
147
|
* the internal behavior.
|
|
148
148
|
*
|
|
149
149
|
* @since 1.88
|
|
150
|
-
* @experimental As of version 1.88.
|
|
151
150
|
*/
|
|
152
151
|
interface ChartDelegate extends AggregationBaseDelegate {
|
|
153
152
|
/**
|
|
@@ -710,8 +709,10 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
710
709
|
*/
|
|
711
710
|
interface FieldBaseDelegate extends BaseDelegate {
|
|
712
711
|
/**
|
|
713
|
-
* Enables applications to control condition updates based on
|
|
714
|
-
*
|
|
712
|
+
* Enables applications to control condition updates based on {@link sap.ui.mdc.Field#getValue value} /
|
|
713
|
+
* {@link sap.ui.mdc.Field#getAdditionalValue additionalValue} property changes of a {@link sap.ui.mdc.Field Field }
|
|
714
|
+
* or {@link sap.ui.mdc.field.MultiValueFieldItem#getKey key} / {@link sap.ui.mdc.field.MultiValueFieldItem#getDescription description }
|
|
715
|
+
* property changes of a {@link sap.ui.mdc.MultiValueField MultiValueField}.
|
|
715
716
|
* By default, this method returns a condition with an `EQ` operator.
|
|
716
717
|
*
|
|
717
718
|
* **Note:** Custom implementations of this method may lead to intransparency as a field's condition may
|
|
@@ -741,8 +742,10 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
741
742
|
oCurrentCondition: undefined | sap.ui.mdc.condition.ConditionObject
|
|
742
743
|
): undefined | sap.ui.mdc.condition.ConditionObject;
|
|
743
744
|
/**
|
|
744
|
-
* Enables applications to control condition updates based on
|
|
745
|
-
*
|
|
745
|
+
* Enables applications to control condition updates based on {@link sap.ui.mdc.Field#getValue value} /
|
|
746
|
+
* {@link sap.ui.mdc.Field#getAdditionalValue additionalValue} property changes of a {@link sap.ui.mdc.Field Field }
|
|
747
|
+
* or {@link sap.ui.mdc.field.MultiValueFieldItem#getKey key} / {@link sap.ui.mdc.field.MultiValueFieldItem#getDescription description }
|
|
748
|
+
* property changes of a {@link sap.ui.mdc.MultiValueField MultiValueField}.
|
|
746
749
|
* By default, this method returns a condition with an `EQ` operator.
|
|
747
750
|
*
|
|
748
751
|
* **Note:** Custom implementations of this method may lead to intransparency as a field's condition may
|
|
@@ -1339,11 +1342,10 @@ declare module "sap/ui/mdc/field/MultiValueFieldDelegate" {
|
|
|
1339
1342
|
/**
|
|
1340
1343
|
* Implements the model-specific logic to update items after conditions have been updated.
|
|
1341
1344
|
*
|
|
1342
|
-
* Items can be removed, updated, or added. Use the binding information of the
|
|
1343
|
-
* to update the data in the related model.
|
|
1345
|
+
* Items can be removed, updated, or added. Use the binding information of the {@link sap.ui.mdc.MultiValueField MultiValueField }
|
|
1346
|
+
* control to update the data in the related model.
|
|
1344
1347
|
*
|
|
1345
1348
|
* @deprecated As of version 1.142. replaced by {@link module:sap/ui/mdc/field/MultiValueFieldDelegate.updateItemsFromConditions updateItemsFromConditions}.
|
|
1346
|
-
* @experimental
|
|
1347
1349
|
*/
|
|
1348
1350
|
updateItems(
|
|
1349
1351
|
/**
|
|
@@ -1351,32 +1353,31 @@ declare module "sap/ui/mdc/field/MultiValueFieldDelegate" {
|
|
|
1351
1353
|
*/
|
|
1352
1354
|
oPayload: object,
|
|
1353
1355
|
/**
|
|
1354
|
-
* Current conditions of the
|
|
1356
|
+
* Current conditions of the {@link sap.ui.mdc.MultiValueField MultiValueField} control
|
|
1355
1357
|
*/
|
|
1356
1358
|
aConditions: sap.ui.mdc.condition.ConditionObject[],
|
|
1357
1359
|
/**
|
|
1358
|
-
* Current
|
|
1359
|
-
* model
|
|
1360
|
+
* Current {@link sap.ui.mdc.MultiValueField MultiValueField} control to determine binding information to
|
|
1361
|
+
* update the values of the related model
|
|
1360
1362
|
*/
|
|
1361
1363
|
oMultiValueField: sap.ui.mdc.MultiValueField
|
|
1362
1364
|
): void;
|
|
1363
1365
|
/**
|
|
1364
1366
|
* Implements the model-specific logic to update items after conditions have been updated.
|
|
1365
1367
|
*
|
|
1366
|
-
* Items can be removed, updated, or added. Use the binding information of the
|
|
1367
|
-
* to update the data in the related model.
|
|
1368
|
+
* Items can be removed, updated, or added. Use the binding information of the {@link sap.ui.mdc.MultiValueField MultiValueField }
|
|
1369
|
+
* control to update the data in the related model.
|
|
1368
1370
|
*
|
|
1369
1371
|
* @since 1.142
|
|
1370
|
-
* @experimental
|
|
1371
1372
|
*/
|
|
1372
1373
|
updateItemsFromConditions(
|
|
1373
1374
|
/**
|
|
1374
|
-
* Current
|
|
1375
|
-
* model
|
|
1375
|
+
* Current {@link sap.ui.mdc.MultiValueField MultiValueField} control to determine binding information to
|
|
1376
|
+
* update the values of the related model
|
|
1376
1377
|
*/
|
|
1377
1378
|
oMultiValueField: sap.ui.mdc.MultiValueField,
|
|
1378
1379
|
/**
|
|
1379
|
-
* Current conditions of the
|
|
1380
|
+
* Current conditions of the {@link sap.ui.mdc.MultiValueField MultiValueField} control
|
|
1380
1381
|
*/
|
|
1381
1382
|
aConditions: sap.ui.mdc.condition.ConditionObject[]
|
|
1382
1383
|
): void;
|
|
@@ -1458,6 +1459,8 @@ declare module "sap/ui/mdc/FilterBarDelegate" {
|
|
|
1458
1459
|
/**
|
|
1459
1460
|
* A validator to evaluate the `FilterBar` state.
|
|
1460
1461
|
*
|
|
1462
|
+
* **Note:** Conditions of filters with error will be removed if shown on P13n dialog.
|
|
1463
|
+
*
|
|
1461
1464
|
*
|
|
1462
1465
|
* @returns The inner `FilterBar` state
|
|
1463
1466
|
*/
|
|
@@ -3438,10 +3441,22 @@ declare namespace sap {
|
|
|
3438
3441
|
*/
|
|
3439
3442
|
namespace mdc {
|
|
3440
3443
|
namespace chart {
|
|
3444
|
+
/**
|
|
3445
|
+
* Describes the settings that can be provided to the ActionLayoutData constructor.
|
|
3446
|
+
*/
|
|
3447
|
+
interface $ActionLayoutDataSettings
|
|
3448
|
+
extends sap.m.$OverflowToolbarLayoutDataSettings {
|
|
3449
|
+
/**
|
|
3450
|
+
* Defines the position of the action within the group of chart actions.
|
|
3451
|
+
*/
|
|
3452
|
+
position?:
|
|
3453
|
+
| sap.ui.mdc.enums.ChartActionPosition
|
|
3454
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
3455
|
+
| `{${string}}`;
|
|
3456
|
+
}
|
|
3457
|
+
|
|
3441
3458
|
/**
|
|
3442
3459
|
* Describes the settings that can be provided to the ChartImplementationContainer constructor.
|
|
3443
|
-
*
|
|
3444
|
-
* @experimental As of version 1.105.
|
|
3445
3460
|
*/
|
|
3446
3461
|
interface $ChartImplementationContainerSettings
|
|
3447
3462
|
extends sap.ui.core.$ControlSettings {
|
|
@@ -3474,8 +3489,6 @@ declare namespace sap {
|
|
|
3474
3489
|
|
|
3475
3490
|
/**
|
|
3476
3491
|
* Describes the settings that can be provided to the ChartSelectionDetails constructor.
|
|
3477
|
-
*
|
|
3478
|
-
* @experimental As of version 1.88.
|
|
3479
3492
|
*/
|
|
3480
3493
|
interface $ChartSelectionDetailsSettings
|
|
3481
3494
|
extends sap.m.$SelectionDetailsSettings {
|
|
@@ -3513,8 +3526,6 @@ declare namespace sap {
|
|
|
3513
3526
|
|
|
3514
3527
|
/**
|
|
3515
3528
|
* Describes the settings that can be provided to the Item constructor.
|
|
3516
|
-
*
|
|
3517
|
-
* @experimental As of version 1.88.
|
|
3518
3529
|
*/
|
|
3519
3530
|
interface $ItemSettings extends sap.ui.core.$ElementSettings {
|
|
3520
3531
|
/**
|
|
@@ -3553,8 +3564,6 @@ declare namespace sap {
|
|
|
3553
3564
|
|
|
3554
3565
|
/**
|
|
3555
3566
|
* Describes the settings that can be provided to the SelectionDetailsActions constructor.
|
|
3556
|
-
*
|
|
3557
|
-
* @experimental As of version 1.88.
|
|
3558
3567
|
*/
|
|
3559
3568
|
interface $SelectionDetailsActionsSettings
|
|
3560
3569
|
extends sap.ui.core.$ElementSettings {
|
|
@@ -3586,12 +3595,114 @@ declare namespace sap {
|
|
|
3586
3595
|
| `{${string}}`;
|
|
3587
3596
|
}
|
|
3588
3597
|
|
|
3598
|
+
/**
|
|
3599
|
+
* Defines the layout data for the {@link sap.ui.mdc.Chart#getActions actions} and {@link sap.ui.mdc.Chart#getChartActions chartActions }
|
|
3600
|
+
* of the {@link sap.ui.mdc.Chart Chart}.
|
|
3601
|
+
*
|
|
3602
|
+
* @since 1.145
|
|
3603
|
+
*/
|
|
3604
|
+
class ActionLayoutData
|
|
3605
|
+
extends sap.m.OverflowToolbarLayoutData
|
|
3606
|
+
implements sap.ui.mdc.IActionLayoutData
|
|
3607
|
+
{
|
|
3608
|
+
__implements__sap_ui_mdc_IActionLayoutData: boolean;
|
|
3609
|
+
/**
|
|
3610
|
+
* Constructor for a new `ActionLayoutData`.
|
|
3611
|
+
*
|
|
3612
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
3613
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
3614
|
+
* of the syntax of the settings object.
|
|
3615
|
+
*/
|
|
3616
|
+
constructor(
|
|
3617
|
+
/**
|
|
3618
|
+
* Initial settings for the new layout data
|
|
3619
|
+
*/
|
|
3620
|
+
mSettings?: sap.ui.mdc.chart.$ActionLayoutDataSettings
|
|
3621
|
+
);
|
|
3622
|
+
/**
|
|
3623
|
+
* Constructor for a new `ActionLayoutData`.
|
|
3624
|
+
*
|
|
3625
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
3626
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
3627
|
+
* of the syntax of the settings object.
|
|
3628
|
+
*/
|
|
3629
|
+
constructor(
|
|
3630
|
+
/**
|
|
3631
|
+
* ID for the new layout data, generated automatically if no ID is given
|
|
3632
|
+
*/
|
|
3633
|
+
sId?: string,
|
|
3634
|
+
/**
|
|
3635
|
+
* Initial settings for the new layout data
|
|
3636
|
+
*/
|
|
3637
|
+
mSettings?: sap.ui.mdc.chart.$ActionLayoutDataSettings
|
|
3638
|
+
);
|
|
3639
|
+
|
|
3640
|
+
/**
|
|
3641
|
+
* Creates a new subclass of class sap.ui.mdc.chart.ActionLayoutData with name `sClassName` and enriches
|
|
3642
|
+
* it with the information contained in `oClassInfo`.
|
|
3643
|
+
*
|
|
3644
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.OverflowToolbarLayoutData.extend}.
|
|
3645
|
+
*
|
|
3646
|
+
*
|
|
3647
|
+
* @returns Created class / constructor function
|
|
3648
|
+
*/
|
|
3649
|
+
static extend<T extends Record<string, unknown>>(
|
|
3650
|
+
/**
|
|
3651
|
+
* Name of the class being created
|
|
3652
|
+
*/
|
|
3653
|
+
sClassName: string,
|
|
3654
|
+
/**
|
|
3655
|
+
* Object literal with information about the class
|
|
3656
|
+
*/
|
|
3657
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.mdc.chart.ActionLayoutData>,
|
|
3658
|
+
/**
|
|
3659
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
3660
|
+
* used by this class
|
|
3661
|
+
*/
|
|
3662
|
+
FNMetaImpl?: Function
|
|
3663
|
+
): Function;
|
|
3664
|
+
/**
|
|
3665
|
+
* Returns a metadata object for class sap.ui.mdc.chart.ActionLayoutData.
|
|
3666
|
+
*
|
|
3667
|
+
*
|
|
3668
|
+
* @returns Metadata object describing this class
|
|
3669
|
+
*/
|
|
3670
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3671
|
+
/**
|
|
3672
|
+
* Gets current value of property {@link #getPosition position}.
|
|
3673
|
+
*
|
|
3674
|
+
* Defines the position of the action within the group of chart actions.
|
|
3675
|
+
*
|
|
3676
|
+
* Default value is `EndActions`.
|
|
3677
|
+
*
|
|
3678
|
+
*
|
|
3679
|
+
* @returns Value of property `position`
|
|
3680
|
+
*/
|
|
3681
|
+
getPosition(): sap.ui.mdc.enums.ChartActionPosition;
|
|
3682
|
+
/**
|
|
3683
|
+
* Sets a new value for property {@link #getPosition position}.
|
|
3684
|
+
*
|
|
3685
|
+
* Defines the position of the action within the group of chart actions.
|
|
3686
|
+
*
|
|
3687
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3688
|
+
*
|
|
3689
|
+
* Default value is `EndActions`.
|
|
3690
|
+
*
|
|
3691
|
+
*
|
|
3692
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3693
|
+
*/
|
|
3694
|
+
setPosition(
|
|
3695
|
+
/**
|
|
3696
|
+
* New value for property `position`
|
|
3697
|
+
*/
|
|
3698
|
+
sPosition?: sap.ui.mdc.enums.ChartActionPosition
|
|
3699
|
+
): this;
|
|
3700
|
+
}
|
|
3589
3701
|
/**
|
|
3590
3702
|
* The `ChartImplementationContainer` creates a container for the `content` (chart) and `noDataContent`.
|
|
3591
3703
|
* Based on the `showNoDataStruct` the `content` or `noDataContent` will be shown.
|
|
3592
3704
|
*
|
|
3593
3705
|
* @since 1.105
|
|
3594
|
-
* @experimental As of version 1.105.
|
|
3595
3706
|
*/
|
|
3596
3707
|
class ChartImplementationContainer extends sap.ui.core.Control {
|
|
3597
3708
|
/**
|
|
@@ -3709,7 +3820,6 @@ declare namespace sap {
|
|
|
3709
3820
|
* the configuration specified.
|
|
3710
3821
|
*
|
|
3711
3822
|
* @since 1.88
|
|
3712
|
-
* @experimental As of version 1.88.
|
|
3713
3823
|
*/
|
|
3714
3824
|
class ChartSelectionDetails extends sap.m.SelectionDetails {
|
|
3715
3825
|
/**
|
|
@@ -3858,7 +3968,6 @@ declare namespace sap {
|
|
|
3858
3968
|
* The `Item` control for the chart/property metadata used within MDC Chart.
|
|
3859
3969
|
*
|
|
3860
3970
|
* @since 1.88
|
|
3861
|
-
* @experimental As of version 1.88.
|
|
3862
3971
|
*/
|
|
3863
3972
|
class Item extends sap.ui.core.Element {
|
|
3864
3973
|
/**
|
|
@@ -4065,7 +4174,6 @@ declare namespace sap {
|
|
|
4065
4174
|
* The `SelectionDetailsActions` is used to provide additional functionality to the Details popover.
|
|
4066
4175
|
*
|
|
4067
4176
|
* @since 1.88
|
|
4068
|
-
* @experimental As of version 1.88.
|
|
4069
4177
|
*/
|
|
4070
4178
|
class SelectionDetailsActions extends sap.ui.core.Element {
|
|
4071
4179
|
/**
|
|
@@ -4409,8 +4517,6 @@ declare namespace sap {
|
|
|
4409
4517
|
* - `aggregatable`
|
|
4410
4518
|
* - `role`
|
|
4411
4519
|
* - `dataType`
|
|
4412
|
-
*
|
|
4413
|
-
* @experimental As of version 1.80.
|
|
4414
4520
|
*/
|
|
4415
4521
|
type PropertyInfo = sap.ui.mdc.util.PropertyInfo & {
|
|
4416
4522
|
/**
|
|
@@ -5225,11 +5331,60 @@ declare namespace sap {
|
|
|
5225
5331
|
*/
|
|
5226
5332
|
Unit = "Unit",
|
|
5227
5333
|
}
|
|
5334
|
+
/**
|
|
5335
|
+
* Defines the supported positions for chart-relevant actions within the chart toolbar, in accordance with
|
|
5336
|
+
* the {@link https://www.sap.com/design-system/fiori-design-web/ui-elements/chart-toolbar/ SAP Design System}.
|
|
5337
|
+
*
|
|
5338
|
+
* @since 1.145
|
|
5339
|
+
*/
|
|
5340
|
+
enum ChartActionPosition {
|
|
5341
|
+
/**
|
|
5342
|
+
* Extension point for actions displayed after all chart-relevant actions.
|
|
5343
|
+
*/
|
|
5344
|
+
EndActions = "EndActions",
|
|
5345
|
+
/**
|
|
5346
|
+
* The position of the drill-down action in the personalization actions group.
|
|
5347
|
+
*/
|
|
5348
|
+
PersonalizationActionsDrillDown = "PersonalizationActionsDrillDown",
|
|
5349
|
+
/**
|
|
5350
|
+
* The position of the legend action in the personalization actions group.
|
|
5351
|
+
*/
|
|
5352
|
+
PersonalizationActionsLegend = "PersonalizationActionsLegend",
|
|
5353
|
+
/**
|
|
5354
|
+
* The position of the selection details action in the personalization actions group.
|
|
5355
|
+
*/
|
|
5356
|
+
PersonalizationActionsSelectionDetails = "PersonalizationActionsSelectionDetails",
|
|
5357
|
+
/**
|
|
5358
|
+
* The position of the settings action in the personalization actions group.
|
|
5359
|
+
*/
|
|
5360
|
+
PersonalizationActionsSettings = "PersonalizationActionsSettings",
|
|
5361
|
+
/**
|
|
5362
|
+
* The position of the zoom in action in the personalization actions group.
|
|
5363
|
+
*/
|
|
5364
|
+
PersonalizationActionsZoomIn = "PersonalizationActionsZoomIn",
|
|
5365
|
+
/**
|
|
5366
|
+
* The position of the zoom out action in the personalization actions group.
|
|
5367
|
+
*/
|
|
5368
|
+
PersonalizationActionsZoomOut = "PersonalizationActionsZoomOut",
|
|
5369
|
+
/**
|
|
5370
|
+
* Extension point for the share actions. These actions allow users to share chart content with another
|
|
5371
|
+
* application or with the homepage as a tile, such as Send as Email, Save as Tile.
|
|
5372
|
+
*/
|
|
5373
|
+
ShareActions = "ShareActions",
|
|
5374
|
+
/**
|
|
5375
|
+
* Extension point for the view actions. These actions change the representation of the entire chart, such
|
|
5376
|
+
* as View Switch, Fullscreen.
|
|
5377
|
+
*/
|
|
5378
|
+
ViewActions = "ViewActions",
|
|
5379
|
+
/**
|
|
5380
|
+
* The position of the chart type menu in the view actions group.
|
|
5381
|
+
*/
|
|
5382
|
+
ViewActionsChartType = "ViewActionsChartType",
|
|
5383
|
+
}
|
|
5228
5384
|
/**
|
|
5229
5385
|
* Defines the personalization mode of the chart.
|
|
5230
5386
|
*
|
|
5231
5387
|
* @since 1.115
|
|
5232
|
-
* @experimental As of version 1.115.
|
|
5233
5388
|
*/
|
|
5234
5389
|
enum ChartP13nMode {
|
|
5235
5390
|
/**
|
|
@@ -5254,7 +5409,6 @@ declare namespace sap {
|
|
|
5254
5409
|
* Can be used to remove some of the default `ToolbarAction`. For more information, see {@link sap.ui.mdc.Chart#ignoreToolbarActions}.
|
|
5255
5410
|
*
|
|
5256
5411
|
* @since 1.115
|
|
5257
|
-
* @experimental As of version 1.115.
|
|
5258
5412
|
*/
|
|
5259
5413
|
enum ChartToolbarActionType {
|
|
5260
5414
|
/**
|
|
@@ -9790,8 +9944,13 @@ declare namespace sap {
|
|
|
9790
9944
|
|
|
9791
9945
|
/**
|
|
9792
9946
|
* Specifies the filter metadata.
|
|
9947
|
+
* The format is the same as the return type of the {@link module:sap/ui/mdc/FilterBarDelegate.fetchProperties fetchProperties }
|
|
9948
|
+
* delegate function.
|
|
9949
|
+
* Properties specified here must be consistent with properties returned by the {@link module:sap/ui/mdc/FilterBarDelegate.fetchProperties fetchProperties }
|
|
9950
|
+
* callback, otherwise validation errors might occur.
|
|
9951
|
+
* Metadata for initially rendered {@link sap.ui.mdc.FilterField FilterFields} (those in the `filterItems`
|
|
9952
|
+
* aggregation) should be specified here, rather than in the `FilterField` configuration.
|
|
9793
9953
|
* **Note**: This property must not be bound.
|
|
9794
|
-
* **Note**: This property is used exclusively for SAPUI5 flexibility/ Fiori Elements. Do not use it otherwise.
|
|
9795
9954
|
* **Node**: Please check {@link sap.ui.mdc.filterbar.PropertyInfo} for more information about the supported
|
|
9796
9955
|
* inner elements. **Note**: Existing properties (set via `sap.ui.mdc.filterbar.FilterBarBase#setPropertyInfo`)
|
|
9797
9956
|
* must not be removed and their attributes must not be changed during the {@link module:sap/ui/mdc/FilterBarDelegate.fetchProperties fetchProperties }
|
|
@@ -11165,6 +11324,13 @@ declare namespace sap {
|
|
|
11165
11324
|
| boolean
|
|
11166
11325
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
11167
11326
|
| `{${string}}`;
|
|
11327
|
+
|
|
11328
|
+
/**
|
|
11329
|
+
* Association to controls / IDs that label this control (see WAI-ARIA attribute aria-labelledby).
|
|
11330
|
+
*
|
|
11331
|
+
* @since 1.145.0
|
|
11332
|
+
*/
|
|
11333
|
+
ariaLabelledBy?: Array<sap.ui.core.Control | string>;
|
|
11168
11334
|
}
|
|
11169
11335
|
|
|
11170
11336
|
/**
|
|
@@ -12095,6 +12261,19 @@ declare namespace sap {
|
|
|
12095
12261
|
* @returns Metadata object describing this class
|
|
12096
12262
|
*/
|
|
12097
12263
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
12264
|
+
/**
|
|
12265
|
+
* Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
12266
|
+
*
|
|
12267
|
+
* @since 1.145.0
|
|
12268
|
+
*
|
|
12269
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
12270
|
+
*/
|
|
12271
|
+
addAriaLabelledBy(
|
|
12272
|
+
/**
|
|
12273
|
+
* The ariaLabelledBy to add; if empty, nothing is inserted
|
|
12274
|
+
*/
|
|
12275
|
+
vAriaLabelledBy: sap.ui.core.ID | sap.ui.core.Control
|
|
12276
|
+
): this;
|
|
12098
12277
|
/**
|
|
12099
12278
|
* Provides access to the delegate initialization `Promise` of the value help.
|
|
12100
12279
|
*
|
|
@@ -12125,6 +12304,12 @@ declare namespace sap {
|
|
|
12125
12304
|
*/
|
|
12126
12305
|
oPayload?: object
|
|
12127
12306
|
): sap.ui.mdc.condition.ConditionObject;
|
|
12307
|
+
/**
|
|
12308
|
+
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
12309
|
+
*
|
|
12310
|
+
* @since 1.145.0
|
|
12311
|
+
*/
|
|
12312
|
+
getAriaLabelledBy(): sap.ui.core.ID[];
|
|
12128
12313
|
/**
|
|
12129
12314
|
* Loads additional dependencies, creates and returns displayed content.
|
|
12130
12315
|
*
|
|
@@ -12370,6 +12555,27 @@ declare namespace sap {
|
|
|
12370
12555
|
* @returns `true` if a scrolling mechanism is needed
|
|
12371
12556
|
*/
|
|
12372
12557
|
provideScrolling(): boolean;
|
|
12558
|
+
/**
|
|
12559
|
+
* Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
12560
|
+
*
|
|
12561
|
+
* @since 1.145.0
|
|
12562
|
+
*
|
|
12563
|
+
* @returns An array of the removed elements (might be empty)
|
|
12564
|
+
*/
|
|
12565
|
+
removeAllAriaLabelledBy(): sap.ui.core.ID[];
|
|
12566
|
+
/**
|
|
12567
|
+
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
12568
|
+
*
|
|
12569
|
+
* @since 1.145.0
|
|
12570
|
+
*
|
|
12571
|
+
* @returns The removed ariaLabelledBy or `null`
|
|
12572
|
+
*/
|
|
12573
|
+
removeAriaLabelledBy(
|
|
12574
|
+
/**
|
|
12575
|
+
* The ariaLabelledBy to be removed or its index or ID
|
|
12576
|
+
*/
|
|
12577
|
+
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
12578
|
+
): sap.ui.core.ID | null;
|
|
12373
12579
|
/**
|
|
12374
12580
|
* The focus visualization of the field help needs to be removed as the user starts typing into the source
|
|
12375
12581
|
* control.
|
|
@@ -19518,8 +19724,6 @@ declare namespace sap {
|
|
|
19518
19724
|
|
|
19519
19725
|
/**
|
|
19520
19726
|
* Describes the settings that can be provided to the Chart constructor.
|
|
19521
|
-
*
|
|
19522
|
-
* @experimental As of version 1.88.
|
|
19523
19727
|
*/
|
|
19524
19728
|
interface $ChartSettings extends sap.ui.mdc.$ControlSettings {
|
|
19525
19729
|
/**
|
|
@@ -19552,8 +19756,6 @@ declare namespace sap {
|
|
|
19552
19756
|
* **Note:** Ensure that the related file can be requested (any required library has to be loaded before
|
|
19553
19757
|
* that).
|
|
19554
19758
|
* Do not bind or modify the module. This property can only be configured during control initialization.
|
|
19555
|
-
*
|
|
19556
|
-
* @experimental
|
|
19557
19759
|
*/
|
|
19558
19760
|
delegate?:
|
|
19559
19761
|
| object
|
|
@@ -19755,6 +19957,23 @@ declare namespace sap {
|
|
|
19755
19957
|
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
19756
19958
|
| `{${string}}`;
|
|
19757
19959
|
|
|
19960
|
+
/**
|
|
19961
|
+
* Additional chart-related actions that are positioned together with other chart-generated actions, based
|
|
19962
|
+
* on the {@link sap.ui.mdc.chart.ActionLayoutData ActionLayoutData} provided.
|
|
19963
|
+
*
|
|
19964
|
+
* **Note:** All actions should use layout data of the {@link sap.ui.mdc.chart.ActionLayoutData ActionLayoutData }
|
|
19965
|
+
* type to ensure correct ordering. Actions that do not use this layout data will be placed after the chart-generated
|
|
19966
|
+
* actions.
|
|
19967
|
+
* **Note:** As with other chart-generated actions, these actions are excluded from the UI adaptation.
|
|
19968
|
+
*
|
|
19969
|
+
* @since 1.145
|
|
19970
|
+
*/
|
|
19971
|
+
chartActions?:
|
|
19972
|
+
| sap.ui.core.Control[]
|
|
19973
|
+
| sap.ui.core.Control
|
|
19974
|
+
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
19975
|
+
| `{${string}}`;
|
|
19976
|
+
|
|
19758
19977
|
/**
|
|
19759
19978
|
* Feeds details popover actions for data point selection in the chart.
|
|
19760
19979
|
* For more information, see {@link sap.ui.mdc.chart.SelectionDetailsActions SelectionDetailsActions}.
|
|
@@ -20091,7 +20310,7 @@ declare namespace sap {
|
|
|
20091
20310
|
* that).
|
|
20092
20311
|
* Do not bind or modify the module. This property can only be configured during control initialization.
|
|
20093
20312
|
*
|
|
20094
|
-
* @experimental
|
|
20313
|
+
* @experimental As of version 1.142.
|
|
20095
20314
|
*/
|
|
20096
20315
|
delegate?:
|
|
20097
20316
|
| object
|
|
@@ -20191,8 +20410,6 @@ declare namespace sap {
|
|
|
20191
20410
|
* **Note:** Ensure that the related file can be requested (any required library has to be loaded before
|
|
20192
20411
|
* that).
|
|
20193
20412
|
* Do not bind or modify the module. This property can only be configured during control initialization.
|
|
20194
|
-
*
|
|
20195
|
-
* @experimental
|
|
20196
20413
|
*/
|
|
20197
20414
|
delegate?:
|
|
20198
20415
|
| object
|
|
@@ -21134,7 +21351,6 @@ declare namespace sap {
|
|
|
21134
21351
|
* via an implementation of a `ChartDelegate` module.
|
|
21135
21352
|
*
|
|
21136
21353
|
* @since 1.88
|
|
21137
|
-
* @experimental As of version 1.88.
|
|
21138
21354
|
*/
|
|
21139
21355
|
class Chart
|
|
21140
21356
|
extends sap.ui.mdc.Control
|
|
@@ -21210,6 +21426,19 @@ declare namespace sap {
|
|
|
21210
21426
|
* @returns Metadata object describing this class
|
|
21211
21427
|
*/
|
|
21212
21428
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
21429
|
+
/**
|
|
21430
|
+
* Adds some chartAction to the aggregation {@link #getChartActions chartActions}.
|
|
21431
|
+
*
|
|
21432
|
+
* @since 1.145
|
|
21433
|
+
*
|
|
21434
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
21435
|
+
*/
|
|
21436
|
+
addChartAction(
|
|
21437
|
+
/**
|
|
21438
|
+
* The chartAction to add; if empty, nothing is inserted
|
|
21439
|
+
*/
|
|
21440
|
+
oChartAction: sap.ui.core.Control
|
|
21441
|
+
): this;
|
|
21213
21442
|
/**
|
|
21214
21443
|
* Attaches event handler `fnFunction` to the {@link #event:selectionDetailsActionPressed selectionDetailsActionPressed }
|
|
21215
21444
|
* event of this `sap.ui.mdc.Chart`.
|
|
@@ -21259,6 +21488,14 @@ declare namespace sap {
|
|
|
21259
21488
|
*/
|
|
21260
21489
|
oListener?: object
|
|
21261
21490
|
): this;
|
|
21491
|
+
/**
|
|
21492
|
+
* Destroys all the chartActions in the aggregation {@link #getChartActions chartActions}.
|
|
21493
|
+
*
|
|
21494
|
+
* @since 1.145
|
|
21495
|
+
*
|
|
21496
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
21497
|
+
*/
|
|
21498
|
+
destroyChartActions(): this;
|
|
21262
21499
|
/**
|
|
21263
21500
|
* Destroys the noData in the aggregation {@link #getNoData noData}.
|
|
21264
21501
|
*
|
|
@@ -21336,6 +21573,20 @@ declare namespace sap {
|
|
|
21336
21573
|
* @returns Value of property `autoBindOnInit`
|
|
21337
21574
|
*/
|
|
21338
21575
|
getAutoBindOnInit(): boolean;
|
|
21576
|
+
/**
|
|
21577
|
+
* Gets content of aggregation {@link #getChartActions chartActions}.
|
|
21578
|
+
*
|
|
21579
|
+
* Additional chart-related actions that are positioned together with other chart-generated actions, based
|
|
21580
|
+
* on the {@link sap.ui.mdc.chart.ActionLayoutData ActionLayoutData} provided.
|
|
21581
|
+
*
|
|
21582
|
+
* **Note:** All actions should use layout data of the {@link sap.ui.mdc.chart.ActionLayoutData ActionLayoutData }
|
|
21583
|
+
* type to ensure correct ordering. Actions that do not use this layout data will be placed after the chart-generated
|
|
21584
|
+
* actions.
|
|
21585
|
+
* **Note:** As with other chart-generated actions, these actions are excluded from the UI adaptation.
|
|
21586
|
+
*
|
|
21587
|
+
* @since 1.145
|
|
21588
|
+
*/
|
|
21589
|
+
getChartActions(): sap.ui.core.Control[];
|
|
21339
21590
|
/**
|
|
21340
21591
|
* Gets current value of property {@link #getChartType chartType}.
|
|
21341
21592
|
*
|
|
@@ -21373,7 +21624,6 @@ declare namespace sap {
|
|
|
21373
21624
|
*
|
|
21374
21625
|
* Default value is `...see text or source`.
|
|
21375
21626
|
*
|
|
21376
|
-
* @experimental
|
|
21377
21627
|
*
|
|
21378
21628
|
* @returns Value of property `delegate`
|
|
21379
21629
|
*/
|
|
@@ -21591,6 +21841,20 @@ declare namespace sap {
|
|
|
21591
21841
|
*/
|
|
21592
21842
|
oAction: sap.ui.core.Control
|
|
21593
21843
|
): int;
|
|
21844
|
+
/**
|
|
21845
|
+
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getChartActions chartActions}.
|
|
21846
|
+
* and returns its index if found or -1 otherwise.
|
|
21847
|
+
*
|
|
21848
|
+
* @since 1.145
|
|
21849
|
+
*
|
|
21850
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
21851
|
+
*/
|
|
21852
|
+
indexOfChartAction(
|
|
21853
|
+
/**
|
|
21854
|
+
* The chartAction whose index is looked for
|
|
21855
|
+
*/
|
|
21856
|
+
oChartAction: sap.ui.core.Control
|
|
21857
|
+
): int;
|
|
21594
21858
|
/**
|
|
21595
21859
|
* Checks for the provided `sap.ui.mdc.chart.Item` in the aggregation {@link #getItems items}. and returns
|
|
21596
21860
|
* its index if found or -1 otherwise.
|
|
@@ -21604,6 +21868,25 @@ declare namespace sap {
|
|
|
21604
21868
|
*/
|
|
21605
21869
|
oItem: sap.ui.mdc.chart.Item
|
|
21606
21870
|
): int;
|
|
21871
|
+
/**
|
|
21872
|
+
* Inserts a chartAction into the aggregation {@link #getChartActions chartActions}.
|
|
21873
|
+
*
|
|
21874
|
+
* @since 1.145
|
|
21875
|
+
*
|
|
21876
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
21877
|
+
*/
|
|
21878
|
+
insertChartAction(
|
|
21879
|
+
/**
|
|
21880
|
+
* The chartAction to insert; if empty, nothing is inserted
|
|
21881
|
+
*/
|
|
21882
|
+
oChartAction: sap.ui.core.Control,
|
|
21883
|
+
/**
|
|
21884
|
+
* The `0`-based index the chartAction should be inserted at; for a negative value of `iIndex`, the chartAction
|
|
21885
|
+
* is inserted at position 0; for a value greater than the current size of the aggregation, the chartAction
|
|
21886
|
+
* is inserted at the last position
|
|
21887
|
+
*/
|
|
21888
|
+
iIndex: int
|
|
21889
|
+
): this;
|
|
21607
21890
|
/**
|
|
21608
21891
|
* Executes a rebind considering the provided external and inbuilt filtering.
|
|
21609
21892
|
*
|
|
@@ -21613,6 +21896,29 @@ declare namespace sap {
|
|
|
21613
21896
|
* for example because there are invalid filters.
|
|
21614
21897
|
*/
|
|
21615
21898
|
rebind(): Promise<any>;
|
|
21899
|
+
/**
|
|
21900
|
+
* Removes all the controls from the aggregation {@link #getChartActions chartActions}.
|
|
21901
|
+
*
|
|
21902
|
+
* Additionally, it unregisters them from the hosting UIArea.
|
|
21903
|
+
*
|
|
21904
|
+
* @since 1.145
|
|
21905
|
+
*
|
|
21906
|
+
* @returns An array of the removed elements (might be empty)
|
|
21907
|
+
*/
|
|
21908
|
+
removeAllChartActions(): sap.ui.core.Control[];
|
|
21909
|
+
/**
|
|
21910
|
+
* Removes a chartAction from the aggregation {@link #getChartActions chartActions}.
|
|
21911
|
+
*
|
|
21912
|
+
* @since 1.145
|
|
21913
|
+
*
|
|
21914
|
+
* @returns The removed chartAction or `null`
|
|
21915
|
+
*/
|
|
21916
|
+
removeChartAction(
|
|
21917
|
+
/**
|
|
21918
|
+
* The chartAction to remove or its index or id
|
|
21919
|
+
*/
|
|
21920
|
+
vChartAction: int | string | sap.ui.core.Control
|
|
21921
|
+
): sap.ui.core.Control | null;
|
|
21616
21922
|
/**
|
|
21617
21923
|
* Sets a new value for property {@link #getAutoBindOnInit autoBindOnInit}.
|
|
21618
21924
|
*
|
|
@@ -21653,7 +21959,6 @@ declare namespace sap {
|
|
|
21653
21959
|
*
|
|
21654
21960
|
* Default value is `...see text or source`.
|
|
21655
21961
|
*
|
|
21656
|
-
* @experimental
|
|
21657
21962
|
*
|
|
21658
21963
|
* @returns Reference to `this` in order to allow method chaining
|
|
21659
21964
|
*/
|
|
@@ -23580,7 +23885,7 @@ declare namespace sap {
|
|
|
23580
23885
|
*
|
|
23581
23886
|
* Default value is `...see text or source`.
|
|
23582
23887
|
*
|
|
23583
|
-
* @experimental
|
|
23888
|
+
* @experimental As of version 1.142.
|
|
23584
23889
|
*
|
|
23585
23890
|
* @returns Value of property `delegate`
|
|
23586
23891
|
*/
|
|
@@ -23783,7 +24088,7 @@ declare namespace sap {
|
|
|
23783
24088
|
*
|
|
23784
24089
|
* Default value is `...see text or source`.
|
|
23785
24090
|
*
|
|
23786
|
-
* @experimental
|
|
24091
|
+
* @experimental As of version 1.142.
|
|
23787
24092
|
*
|
|
23788
24093
|
* @returns Reference to `this` in order to allow method chaining
|
|
23789
24094
|
*/
|
|
@@ -24446,7 +24751,6 @@ declare namespace sap {
|
|
|
24446
24751
|
*
|
|
24447
24752
|
* Default value is `...see text or source`.
|
|
24448
24753
|
*
|
|
24449
|
-
* @experimental
|
|
24450
24754
|
*
|
|
24451
24755
|
* @returns Value of property `delegate`
|
|
24452
24756
|
*/
|
|
@@ -24615,7 +24919,6 @@ declare namespace sap {
|
|
|
24615
24919
|
*
|
|
24616
24920
|
* Default value is `...see text or source`.
|
|
24617
24921
|
*
|
|
24618
|
-
* @experimental
|
|
24619
24922
|
*
|
|
24620
24923
|
* @returns Reference to `this` in order to allow method chaining
|
|
24621
24924
|
*/
|
|
@@ -27093,6 +27396,8 @@ declare namespace sap {
|
|
|
27093
27396
|
|
|
27094
27397
|
"sap/ui/mdc/Chart": undefined;
|
|
27095
27398
|
|
|
27399
|
+
"sap/ui/mdc/chart/ActionLayoutData": undefined;
|
|
27400
|
+
|
|
27096
27401
|
"sap/ui/mdc/chart/ChartImplementationContainer": undefined;
|
|
27097
27402
|
|
|
27098
27403
|
"sap/ui/mdc/chart/ChartSelectionDetails": undefined;
|
|
@@ -27161,6 +27466,8 @@ declare namespace sap {
|
|
|
27161
27466
|
|
|
27162
27467
|
"sap/ui/mdc/enums/BaseType": undefined;
|
|
27163
27468
|
|
|
27469
|
+
"sap/ui/mdc/enums/ChartActionPosition": undefined;
|
|
27470
|
+
|
|
27164
27471
|
"sap/ui/mdc/enums/ChartP13nMode": undefined;
|
|
27165
27472
|
|
|
27166
27473
|
"sap/ui/mdc/enums/ChartToolbarActionType": undefined;
|