@openui5/types 1.144.0 → 1.145.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 +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 -99
- 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 +378 -50
- 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 +7 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +39 -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.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/AggregationBaseDelegate" {
|
|
4
4
|
import BaseDelegate from "sap/ui/mdc/BaseDelegate";
|
|
@@ -173,7 +173,6 @@ declare module "sap/ui/mdc/ChartDelegate" {
|
|
|
173
173
|
* the internal behavior.
|
|
174
174
|
*
|
|
175
175
|
* @since 1.88
|
|
176
|
-
* @experimental As of version 1.88.
|
|
177
176
|
*/
|
|
178
177
|
interface ChartDelegate extends AggregationBaseDelegate {
|
|
179
178
|
/**
|
|
@@ -824,8 +823,10 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
824
823
|
*/
|
|
825
824
|
interface FieldBaseDelegate extends BaseDelegate {
|
|
826
825
|
/**
|
|
827
|
-
* Enables applications to control condition updates based on
|
|
828
|
-
*
|
|
826
|
+
* Enables applications to control condition updates based on {@link sap.ui.mdc.Field#getValue value} /
|
|
827
|
+
* {@link sap.ui.mdc.Field#getAdditionalValue additionalValue} property changes of a {@link sap.ui.mdc.Field Field }
|
|
828
|
+
* or {@link sap.ui.mdc.field.MultiValueFieldItem#getKey key} / {@link sap.ui.mdc.field.MultiValueFieldItem#getDescription description }
|
|
829
|
+
* property changes of a {@link sap.ui.mdc.MultiValueField MultiValueField}.
|
|
829
830
|
* By default, this method returns a condition with an `EQ` operator.
|
|
830
831
|
*
|
|
831
832
|
* **Note:** Custom implementations of this method may lead to intransparency as a field's condition may
|
|
@@ -855,8 +856,10 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
855
856
|
oCurrentCondition: undefined | ConditionObject
|
|
856
857
|
): undefined | ConditionObject;
|
|
857
858
|
/**
|
|
858
|
-
* Enables applications to control condition updates based on
|
|
859
|
-
*
|
|
859
|
+
* Enables applications to control condition updates based on {@link sap.ui.mdc.Field#getValue value} /
|
|
860
|
+
* {@link sap.ui.mdc.Field#getAdditionalValue additionalValue} property changes of a {@link sap.ui.mdc.Field Field }
|
|
861
|
+
* or {@link sap.ui.mdc.field.MultiValueFieldItem#getKey key} / {@link sap.ui.mdc.field.MultiValueFieldItem#getDescription description }
|
|
862
|
+
* property changes of a {@link sap.ui.mdc.MultiValueField MultiValueField}.
|
|
860
863
|
* By default, this method returns a condition with an `EQ` operator.
|
|
861
864
|
*
|
|
862
865
|
* **Note:** Custom implementations of this method may lead to intransparency as a field's condition may
|
|
@@ -1441,11 +1444,10 @@ declare module "sap/ui/mdc/field/MultiValueFieldDelegate" {
|
|
|
1441
1444
|
/**
|
|
1442
1445
|
* Implements the model-specific logic to update items after conditions have been updated.
|
|
1443
1446
|
*
|
|
1444
|
-
* Items can be removed, updated, or added. Use the binding information of the
|
|
1445
|
-
* to update the data in the related model.
|
|
1447
|
+
* Items can be removed, updated, or added. Use the binding information of the {@link sap.ui.mdc.MultiValueField MultiValueField }
|
|
1448
|
+
* control to update the data in the related model.
|
|
1446
1449
|
*
|
|
1447
1450
|
* @deprecated As of version 1.142. replaced by {@link module:sap/ui/mdc/field/MultiValueFieldDelegate.updateItemsFromConditions updateItemsFromConditions}.
|
|
1448
|
-
* @experimental
|
|
1449
1451
|
*/
|
|
1450
1452
|
updateItems(
|
|
1451
1453
|
/**
|
|
@@ -1453,32 +1455,31 @@ declare module "sap/ui/mdc/field/MultiValueFieldDelegate" {
|
|
|
1453
1455
|
*/
|
|
1454
1456
|
oPayload: object,
|
|
1455
1457
|
/**
|
|
1456
|
-
* Current conditions of the
|
|
1458
|
+
* Current conditions of the {@link sap.ui.mdc.MultiValueField MultiValueField} control
|
|
1457
1459
|
*/
|
|
1458
1460
|
aConditions: ConditionObject[],
|
|
1459
1461
|
/**
|
|
1460
|
-
* Current
|
|
1461
|
-
* model
|
|
1462
|
+
* Current {@link sap.ui.mdc.MultiValueField MultiValueField} control to determine binding information to
|
|
1463
|
+
* update the values of the related model
|
|
1462
1464
|
*/
|
|
1463
1465
|
oMultiValueField: MultiValueField
|
|
1464
1466
|
): void;
|
|
1465
1467
|
/**
|
|
1466
1468
|
* Implements the model-specific logic to update items after conditions have been updated.
|
|
1467
1469
|
*
|
|
1468
|
-
* Items can be removed, updated, or added. Use the binding information of the
|
|
1469
|
-
* to update the data in the related model.
|
|
1470
|
+
* Items can be removed, updated, or added. Use the binding information of the {@link sap.ui.mdc.MultiValueField MultiValueField }
|
|
1471
|
+
* control to update the data in the related model.
|
|
1470
1472
|
*
|
|
1471
1473
|
* @since 1.142
|
|
1472
|
-
* @experimental
|
|
1473
1474
|
*/
|
|
1474
1475
|
updateItemsFromConditions(
|
|
1475
1476
|
/**
|
|
1476
|
-
* Current
|
|
1477
|
-
* model
|
|
1477
|
+
* Current {@link sap.ui.mdc.MultiValueField MultiValueField} control to determine binding information to
|
|
1478
|
+
* update the values of the related model
|
|
1478
1479
|
*/
|
|
1479
1480
|
oMultiValueField: MultiValueField,
|
|
1480
1481
|
/**
|
|
1481
|
-
* Current conditions of the
|
|
1482
|
+
* Current conditions of the {@link sap.ui.mdc.MultiValueField MultiValueField} control
|
|
1482
1483
|
*/
|
|
1483
1484
|
aConditions: ConditionObject[]
|
|
1484
1485
|
): void;
|
|
@@ -1566,6 +1567,8 @@ declare module "sap/ui/mdc/FilterBarDelegate" {
|
|
|
1566
1567
|
/**
|
|
1567
1568
|
* A validator to evaluate the `FilterBar` state.
|
|
1568
1569
|
*
|
|
1570
|
+
* **Note:** Conditions of filters with error will be removed if shown on P13n dialog.
|
|
1571
|
+
*
|
|
1569
1572
|
*
|
|
1570
1573
|
* @returns The inner `FilterBar` state
|
|
1571
1574
|
*/
|
|
@@ -4561,7 +4564,6 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
4561
4564
|
* via an implementation of a `ChartDelegate` module.
|
|
4562
4565
|
*
|
|
4563
4566
|
* @since 1.88
|
|
4564
|
-
* @experimental As of version 1.88.
|
|
4565
4567
|
*/
|
|
4566
4568
|
export default class Chart extends Control implements IFilterSource, IxState {
|
|
4567
4569
|
__implements__sap_ui_mdc_IFilterSource: boolean;
|
|
@@ -4634,6 +4636,19 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
4634
4636
|
* @returns Metadata object describing this class
|
|
4635
4637
|
*/
|
|
4636
4638
|
static getMetadata(): ElementMetadata;
|
|
4639
|
+
/**
|
|
4640
|
+
* Adds some chartAction to the aggregation {@link #getChartActions chartActions}.
|
|
4641
|
+
*
|
|
4642
|
+
* @since 1.145
|
|
4643
|
+
*
|
|
4644
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4645
|
+
*/
|
|
4646
|
+
addChartAction(
|
|
4647
|
+
/**
|
|
4648
|
+
* The chartAction to add; if empty, nothing is inserted
|
|
4649
|
+
*/
|
|
4650
|
+
oChartAction: Control1
|
|
4651
|
+
): this;
|
|
4637
4652
|
/**
|
|
4638
4653
|
* Attaches event handler `fnFunction` to the {@link #event:selectionDetailsActionPressed selectionDetailsActionPressed }
|
|
4639
4654
|
* event of this `sap.ui.mdc.Chart`.
|
|
@@ -4683,6 +4698,14 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
4683
4698
|
*/
|
|
4684
4699
|
oListener?: object
|
|
4685
4700
|
): this;
|
|
4701
|
+
/**
|
|
4702
|
+
* Destroys all the chartActions in the aggregation {@link #getChartActions chartActions}.
|
|
4703
|
+
*
|
|
4704
|
+
* @since 1.145
|
|
4705
|
+
*
|
|
4706
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4707
|
+
*/
|
|
4708
|
+
destroyChartActions(): this;
|
|
4686
4709
|
/**
|
|
4687
4710
|
* Destroys the noData in the aggregation {@link #getNoData noData}.
|
|
4688
4711
|
*
|
|
@@ -4760,6 +4783,20 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
4760
4783
|
* @returns Value of property `autoBindOnInit`
|
|
4761
4784
|
*/
|
|
4762
4785
|
getAutoBindOnInit(): boolean;
|
|
4786
|
+
/**
|
|
4787
|
+
* Gets content of aggregation {@link #getChartActions chartActions}.
|
|
4788
|
+
*
|
|
4789
|
+
* Additional chart-related actions that are positioned together with other chart-generated actions, based
|
|
4790
|
+
* on the {@link sap.ui.mdc.chart.ActionLayoutData ActionLayoutData} provided.
|
|
4791
|
+
*
|
|
4792
|
+
* **Note:** All actions should use layout data of the {@link sap.ui.mdc.chart.ActionLayoutData ActionLayoutData }
|
|
4793
|
+
* type to ensure correct ordering. Actions that do not use this layout data will be placed after the chart-generated
|
|
4794
|
+
* actions.
|
|
4795
|
+
* **Note:** As with other chart-generated actions, these actions are excluded from the UI adaptation.
|
|
4796
|
+
*
|
|
4797
|
+
* @since 1.145
|
|
4798
|
+
*/
|
|
4799
|
+
getChartActions(): Control1[];
|
|
4763
4800
|
/**
|
|
4764
4801
|
* Gets current value of property {@link #getChartType chartType}.
|
|
4765
4802
|
*
|
|
@@ -4797,7 +4834,6 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
4797
4834
|
*
|
|
4798
4835
|
* Default value is `...see text or source`.
|
|
4799
4836
|
*
|
|
4800
|
-
* @experimental
|
|
4801
4837
|
*
|
|
4802
4838
|
* @returns Value of property `delegate`
|
|
4803
4839
|
*/
|
|
@@ -5015,6 +5051,20 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
5015
5051
|
*/
|
|
5016
5052
|
oAction: Control1
|
|
5017
5053
|
): int;
|
|
5054
|
+
/**
|
|
5055
|
+
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getChartActions chartActions}.
|
|
5056
|
+
* and returns its index if found or -1 otherwise.
|
|
5057
|
+
*
|
|
5058
|
+
* @since 1.145
|
|
5059
|
+
*
|
|
5060
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
5061
|
+
*/
|
|
5062
|
+
indexOfChartAction(
|
|
5063
|
+
/**
|
|
5064
|
+
* The chartAction whose index is looked for
|
|
5065
|
+
*/
|
|
5066
|
+
oChartAction: Control1
|
|
5067
|
+
): int;
|
|
5018
5068
|
/**
|
|
5019
5069
|
* Checks for the provided `sap.ui.mdc.chart.Item` in the aggregation {@link #getItems items}. and returns
|
|
5020
5070
|
* its index if found or -1 otherwise.
|
|
@@ -5028,6 +5078,25 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
5028
5078
|
*/
|
|
5029
5079
|
oItem: Item
|
|
5030
5080
|
): int;
|
|
5081
|
+
/**
|
|
5082
|
+
* Inserts a chartAction into the aggregation {@link #getChartActions chartActions}.
|
|
5083
|
+
*
|
|
5084
|
+
* @since 1.145
|
|
5085
|
+
*
|
|
5086
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5087
|
+
*/
|
|
5088
|
+
insertChartAction(
|
|
5089
|
+
/**
|
|
5090
|
+
* The chartAction to insert; if empty, nothing is inserted
|
|
5091
|
+
*/
|
|
5092
|
+
oChartAction: Control1,
|
|
5093
|
+
/**
|
|
5094
|
+
* The `0`-based index the chartAction should be inserted at; for a negative value of `iIndex`, the chartAction
|
|
5095
|
+
* is inserted at position 0; for a value greater than the current size of the aggregation, the chartAction
|
|
5096
|
+
* is inserted at the last position
|
|
5097
|
+
*/
|
|
5098
|
+
iIndex: int
|
|
5099
|
+
): this;
|
|
5031
5100
|
/**
|
|
5032
5101
|
* Executes a rebind considering the provided external and inbuilt filtering.
|
|
5033
5102
|
*
|
|
@@ -5037,6 +5106,29 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
5037
5106
|
* for example because there are invalid filters.
|
|
5038
5107
|
*/
|
|
5039
5108
|
rebind(): Promise<any>;
|
|
5109
|
+
/**
|
|
5110
|
+
* Removes all the controls from the aggregation {@link #getChartActions chartActions}.
|
|
5111
|
+
*
|
|
5112
|
+
* Additionally, it unregisters them from the hosting UIArea.
|
|
5113
|
+
*
|
|
5114
|
+
* @since 1.145
|
|
5115
|
+
*
|
|
5116
|
+
* @returns An array of the removed elements (might be empty)
|
|
5117
|
+
*/
|
|
5118
|
+
removeAllChartActions(): Control1[];
|
|
5119
|
+
/**
|
|
5120
|
+
* Removes a chartAction from the aggregation {@link #getChartActions chartActions}.
|
|
5121
|
+
*
|
|
5122
|
+
* @since 1.145
|
|
5123
|
+
*
|
|
5124
|
+
* @returns The removed chartAction or `null`
|
|
5125
|
+
*/
|
|
5126
|
+
removeChartAction(
|
|
5127
|
+
/**
|
|
5128
|
+
* The chartAction to remove or its index or id
|
|
5129
|
+
*/
|
|
5130
|
+
vChartAction: int | string | Control1
|
|
5131
|
+
): Control1 | null;
|
|
5040
5132
|
/**
|
|
5041
5133
|
* Sets a new value for property {@link #getAutoBindOnInit autoBindOnInit}.
|
|
5042
5134
|
*
|
|
@@ -5077,7 +5169,6 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
5077
5169
|
*
|
|
5078
5170
|
* Default value is `...see text or source`.
|
|
5079
5171
|
*
|
|
5080
|
-
* @experimental
|
|
5081
5172
|
*
|
|
5082
5173
|
* @returns Reference to `this` in order to allow method chaining
|
|
5083
5174
|
*/
|
|
@@ -5395,8 +5486,6 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
5395
5486
|
* - `aggregatable`
|
|
5396
5487
|
* - `role`
|
|
5397
5488
|
* - `dataType`
|
|
5398
|
-
*
|
|
5399
|
-
* @experimental As of version 1.80.
|
|
5400
5489
|
*/
|
|
5401
5490
|
export type PropertyInfo = PropertyInfo1 & {
|
|
5402
5491
|
/**
|
|
@@ -5415,8 +5504,6 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
5415
5504
|
|
|
5416
5505
|
/**
|
|
5417
5506
|
* Describes the settings that can be provided to the Chart constructor.
|
|
5418
|
-
*
|
|
5419
|
-
* @experimental As of version 1.88.
|
|
5420
5507
|
*/
|
|
5421
5508
|
export interface $ChartSettings extends $ControlSettings {
|
|
5422
5509
|
/**
|
|
@@ -5443,8 +5530,6 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
5443
5530
|
* **Note:** Ensure that the related file can be requested (any required library has to be loaded before
|
|
5444
5531
|
* that).
|
|
5445
5532
|
* Do not bind or modify the module. This property can only be configured during control initialization.
|
|
5446
|
-
*
|
|
5447
|
-
* @experimental
|
|
5448
5533
|
*/
|
|
5449
5534
|
delegate?: object | PropertyBindingInfo | `{${string}}`;
|
|
5450
5535
|
|
|
@@ -5605,6 +5690,23 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
5605
5690
|
*/
|
|
5606
5691
|
actions?: Control1[] | Control1 | AggregationBindingInfo | `{${string}}`;
|
|
5607
5692
|
|
|
5693
|
+
/**
|
|
5694
|
+
* Additional chart-related actions that are positioned together with other chart-generated actions, based
|
|
5695
|
+
* on the {@link sap.ui.mdc.chart.ActionLayoutData ActionLayoutData} provided.
|
|
5696
|
+
*
|
|
5697
|
+
* **Note:** All actions should use layout data of the {@link sap.ui.mdc.chart.ActionLayoutData ActionLayoutData }
|
|
5698
|
+
* type to ensure correct ordering. Actions that do not use this layout data will be placed after the chart-generated
|
|
5699
|
+
* actions.
|
|
5700
|
+
* **Note:** As with other chart-generated actions, these actions are excluded from the UI adaptation.
|
|
5701
|
+
*
|
|
5702
|
+
* @since 1.145
|
|
5703
|
+
*/
|
|
5704
|
+
chartActions?:
|
|
5705
|
+
| Control1[]
|
|
5706
|
+
| Control1
|
|
5707
|
+
| AggregationBindingInfo
|
|
5708
|
+
| `{${string}}`;
|
|
5709
|
+
|
|
5608
5710
|
/**
|
|
5609
5711
|
* Feeds details popover actions for data point selection in the chart.
|
|
5610
5712
|
* For more information, see {@link sap.ui.mdc.chart.SelectionDetailsActions SelectionDetailsActions}.
|
|
@@ -5679,6 +5781,138 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
5679
5781
|
>;
|
|
5680
5782
|
}
|
|
5681
5783
|
|
|
5784
|
+
declare module "sap/ui/mdc/chart/ActionLayoutData" {
|
|
5785
|
+
import {
|
|
5786
|
+
default as OverflowToolbarLayoutData,
|
|
5787
|
+
$OverflowToolbarLayoutDataSettings,
|
|
5788
|
+
} from "sap/m/OverflowToolbarLayoutData";
|
|
5789
|
+
|
|
5790
|
+
import { IActionLayoutData } from "sap/ui/mdc/library";
|
|
5791
|
+
|
|
5792
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
5793
|
+
|
|
5794
|
+
import ChartActionPosition from "sap/ui/mdc/enums/ChartActionPosition";
|
|
5795
|
+
|
|
5796
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
5797
|
+
|
|
5798
|
+
/**
|
|
5799
|
+
* Defines the layout data for the {@link sap.ui.mdc.Chart#getActions actions} and {@link sap.ui.mdc.Chart#getChartActions chartActions }
|
|
5800
|
+
* of the {@link sap.ui.mdc.Chart Chart}.
|
|
5801
|
+
*
|
|
5802
|
+
* @since 1.145
|
|
5803
|
+
*/
|
|
5804
|
+
export default class ActionLayoutData
|
|
5805
|
+
extends OverflowToolbarLayoutData
|
|
5806
|
+
implements IActionLayoutData
|
|
5807
|
+
{
|
|
5808
|
+
__implements__sap_ui_mdc_IActionLayoutData: boolean;
|
|
5809
|
+
/**
|
|
5810
|
+
* Constructor for a new `ActionLayoutData`.
|
|
5811
|
+
*
|
|
5812
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
5813
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
5814
|
+
* of the syntax of the settings object.
|
|
5815
|
+
*/
|
|
5816
|
+
constructor(
|
|
5817
|
+
/**
|
|
5818
|
+
* Initial settings for the new layout data
|
|
5819
|
+
*/
|
|
5820
|
+
mSettings?: $ActionLayoutDataSettings
|
|
5821
|
+
);
|
|
5822
|
+
/**
|
|
5823
|
+
* Constructor for a new `ActionLayoutData`.
|
|
5824
|
+
*
|
|
5825
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
5826
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
5827
|
+
* of the syntax of the settings object.
|
|
5828
|
+
*/
|
|
5829
|
+
constructor(
|
|
5830
|
+
/**
|
|
5831
|
+
* ID for the new layout data, generated automatically if no ID is given
|
|
5832
|
+
*/
|
|
5833
|
+
sId?: string,
|
|
5834
|
+
/**
|
|
5835
|
+
* Initial settings for the new layout data
|
|
5836
|
+
*/
|
|
5837
|
+
mSettings?: $ActionLayoutDataSettings
|
|
5838
|
+
);
|
|
5839
|
+
|
|
5840
|
+
/**
|
|
5841
|
+
* Creates a new subclass of class sap.ui.mdc.chart.ActionLayoutData with name `sClassName` and enriches
|
|
5842
|
+
* it with the information contained in `oClassInfo`.
|
|
5843
|
+
*
|
|
5844
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.OverflowToolbarLayoutData.extend}.
|
|
5845
|
+
*
|
|
5846
|
+
*
|
|
5847
|
+
* @returns Created class / constructor function
|
|
5848
|
+
*/
|
|
5849
|
+
static extend<T extends Record<string, unknown>>(
|
|
5850
|
+
/**
|
|
5851
|
+
* Name of the class being created
|
|
5852
|
+
*/
|
|
5853
|
+
sClassName: string,
|
|
5854
|
+
/**
|
|
5855
|
+
* Object literal with information about the class
|
|
5856
|
+
*/
|
|
5857
|
+
oClassInfo?: sap.ClassInfo<T, ActionLayoutData>,
|
|
5858
|
+
/**
|
|
5859
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
5860
|
+
* used by this class
|
|
5861
|
+
*/
|
|
5862
|
+
FNMetaImpl?: Function
|
|
5863
|
+
): Function;
|
|
5864
|
+
/**
|
|
5865
|
+
* Returns a metadata object for class sap.ui.mdc.chart.ActionLayoutData.
|
|
5866
|
+
*
|
|
5867
|
+
*
|
|
5868
|
+
* @returns Metadata object describing this class
|
|
5869
|
+
*/
|
|
5870
|
+
static getMetadata(): ElementMetadata;
|
|
5871
|
+
/**
|
|
5872
|
+
* Gets current value of property {@link #getPosition position}.
|
|
5873
|
+
*
|
|
5874
|
+
* Defines the position of the action within the group of chart actions.
|
|
5875
|
+
*
|
|
5876
|
+
* Default value is `EndActions`.
|
|
5877
|
+
*
|
|
5878
|
+
*
|
|
5879
|
+
* @returns Value of property `position`
|
|
5880
|
+
*/
|
|
5881
|
+
getPosition(): ChartActionPosition;
|
|
5882
|
+
/**
|
|
5883
|
+
* Sets a new value for property {@link #getPosition position}.
|
|
5884
|
+
*
|
|
5885
|
+
* Defines the position of the action within the group of chart actions.
|
|
5886
|
+
*
|
|
5887
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5888
|
+
*
|
|
5889
|
+
* Default value is `EndActions`.
|
|
5890
|
+
*
|
|
5891
|
+
*
|
|
5892
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5893
|
+
*/
|
|
5894
|
+
setPosition(
|
|
5895
|
+
/**
|
|
5896
|
+
* New value for property `position`
|
|
5897
|
+
*/
|
|
5898
|
+
sPosition?: ChartActionPosition | keyof typeof ChartActionPosition
|
|
5899
|
+
): this;
|
|
5900
|
+
}
|
|
5901
|
+
/**
|
|
5902
|
+
* Describes the settings that can be provided to the ActionLayoutData constructor.
|
|
5903
|
+
*/
|
|
5904
|
+
export interface $ActionLayoutDataSettings
|
|
5905
|
+
extends $OverflowToolbarLayoutDataSettings {
|
|
5906
|
+
/**
|
|
5907
|
+
* Defines the position of the action within the group of chart actions.
|
|
5908
|
+
*/
|
|
5909
|
+
position?:
|
|
5910
|
+
| (ChartActionPosition | keyof typeof ChartActionPosition)
|
|
5911
|
+
| PropertyBindingInfo
|
|
5912
|
+
| `{${string}}`;
|
|
5913
|
+
}
|
|
5914
|
+
}
|
|
5915
|
+
|
|
5682
5916
|
declare module "sap/ui/mdc/chart/ChartImplementationContainer" {
|
|
5683
5917
|
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
5684
5918
|
|
|
@@ -5693,7 +5927,6 @@ declare module "sap/ui/mdc/chart/ChartImplementationContainer" {
|
|
|
5693
5927
|
* Based on the `showNoDataStruct` the `content` or `noDataContent` will be shown.
|
|
5694
5928
|
*
|
|
5695
5929
|
* @since 1.105
|
|
5696
|
-
* @experimental As of version 1.105.
|
|
5697
5930
|
*/
|
|
5698
5931
|
export default class ChartImplementationContainer extends Control {
|
|
5699
5932
|
/**
|
|
@@ -5805,8 +6038,6 @@ declare module "sap/ui/mdc/chart/ChartImplementationContainer" {
|
|
|
5805
6038
|
}
|
|
5806
6039
|
/**
|
|
5807
6040
|
* Describes the settings that can be provided to the ChartImplementationContainer constructor.
|
|
5808
|
-
*
|
|
5809
|
-
* @experimental As of version 1.105.
|
|
5810
6041
|
*/
|
|
5811
6042
|
export interface $ChartImplementationContainerSettings
|
|
5812
6043
|
extends $ControlSettings {
|
|
@@ -5850,7 +6081,6 @@ declare module "sap/ui/mdc/chart/ChartSelectionDetails" {
|
|
|
5850
6081
|
* the configuration specified.
|
|
5851
6082
|
*
|
|
5852
6083
|
* @since 1.88
|
|
5853
|
-
* @experimental As of version 1.88.
|
|
5854
6084
|
*/
|
|
5855
6085
|
export default class ChartSelectionDetails extends SelectionDetails {
|
|
5856
6086
|
/**
|
|
@@ -5994,8 +6224,6 @@ declare module "sap/ui/mdc/chart/ChartSelectionDetails" {
|
|
|
5994
6224
|
}
|
|
5995
6225
|
/**
|
|
5996
6226
|
* Describes the settings that can be provided to the ChartSelectionDetails constructor.
|
|
5997
|
-
*
|
|
5998
|
-
* @experimental As of version 1.88.
|
|
5999
6227
|
*/
|
|
6000
6228
|
export interface $ChartSelectionDetailsSettings
|
|
6001
6229
|
extends $SelectionDetailsSettings {
|
|
@@ -6037,7 +6265,6 @@ declare module "sap/ui/mdc/chart/Item" {
|
|
|
6037
6265
|
* The `Item` control for the chart/property metadata used within MDC Chart.
|
|
6038
6266
|
*
|
|
6039
6267
|
* @since 1.88
|
|
6040
|
-
* @experimental As of version 1.88.
|
|
6041
6268
|
*/
|
|
6042
6269
|
export default class Item extends UI5Element {
|
|
6043
6270
|
/**
|
|
@@ -6242,8 +6469,6 @@ declare module "sap/ui/mdc/chart/Item" {
|
|
|
6242
6469
|
}
|
|
6243
6470
|
/**
|
|
6244
6471
|
* Describes the settings that can be provided to the Item constructor.
|
|
6245
|
-
*
|
|
6246
|
-
* @experimental As of version 1.88.
|
|
6247
6472
|
*/
|
|
6248
6473
|
export interface $ItemSettings extends $ElementSettings {
|
|
6249
6474
|
/**
|
|
@@ -6294,7 +6519,6 @@ declare module "sap/ui/mdc/chart/SelectionDetailsActions" {
|
|
|
6294
6519
|
* The `SelectionDetailsActions` is used to provide additional functionality to the Details popover.
|
|
6295
6520
|
*
|
|
6296
6521
|
* @since 1.88
|
|
6297
|
-
* @experimental As of version 1.88.
|
|
6298
6522
|
*/
|
|
6299
6523
|
export default class SelectionDetailsActions extends UI5Element {
|
|
6300
6524
|
/**
|
|
@@ -6593,8 +6817,6 @@ declare module "sap/ui/mdc/chart/SelectionDetailsActions" {
|
|
|
6593
6817
|
}
|
|
6594
6818
|
/**
|
|
6595
6819
|
* Describes the settings that can be provided to the SelectionDetailsActions constructor.
|
|
6596
|
-
*
|
|
6597
|
-
* @experimental As of version 1.88.
|
|
6598
6820
|
*/
|
|
6599
6821
|
export interface $SelectionDetailsActionsSettings extends $ElementSettings {
|
|
6600
6822
|
/**
|
|
@@ -7848,12 +8070,65 @@ declare module "sap/ui/mdc/enums/BaseType" {
|
|
|
7848
8070
|
export default BaseType;
|
|
7849
8071
|
}
|
|
7850
8072
|
|
|
8073
|
+
declare module "sap/ui/mdc/enums/ChartActionPosition" {
|
|
8074
|
+
/**
|
|
8075
|
+
* Defines the supported positions for chart-relevant actions within the chart toolbar, in accordance with
|
|
8076
|
+
* the {@link https://www.sap.com/design-system/fiori-design-web/ui-elements/chart-toolbar/ SAP Design System}.
|
|
8077
|
+
*
|
|
8078
|
+
* @since 1.145
|
|
8079
|
+
*/
|
|
8080
|
+
enum ChartActionPosition {
|
|
8081
|
+
/**
|
|
8082
|
+
* Extension point for actions displayed after all chart-relevant actions.
|
|
8083
|
+
*/
|
|
8084
|
+
EndActions = "EndActions",
|
|
8085
|
+
/**
|
|
8086
|
+
* The position of the drill-down action in the personalization actions group.
|
|
8087
|
+
*/
|
|
8088
|
+
PersonalizationActionsDrillDown = "PersonalizationActionsDrillDown",
|
|
8089
|
+
/**
|
|
8090
|
+
* The position of the legend action in the personalization actions group.
|
|
8091
|
+
*/
|
|
8092
|
+
PersonalizationActionsLegend = "PersonalizationActionsLegend",
|
|
8093
|
+
/**
|
|
8094
|
+
* The position of the selection details action in the personalization actions group.
|
|
8095
|
+
*/
|
|
8096
|
+
PersonalizationActionsSelectionDetails = "PersonalizationActionsSelectionDetails",
|
|
8097
|
+
/**
|
|
8098
|
+
* The position of the settings action in the personalization actions group.
|
|
8099
|
+
*/
|
|
8100
|
+
PersonalizationActionsSettings = "PersonalizationActionsSettings",
|
|
8101
|
+
/**
|
|
8102
|
+
* The position of the zoom in action in the personalization actions group.
|
|
8103
|
+
*/
|
|
8104
|
+
PersonalizationActionsZoomIn = "PersonalizationActionsZoomIn",
|
|
8105
|
+
/**
|
|
8106
|
+
* The position of the zoom out action in the personalization actions group.
|
|
8107
|
+
*/
|
|
8108
|
+
PersonalizationActionsZoomOut = "PersonalizationActionsZoomOut",
|
|
8109
|
+
/**
|
|
8110
|
+
* Extension point for the share actions. These actions allow users to share chart content with another
|
|
8111
|
+
* application or with the homepage as a tile, such as Send as Email, Save as Tile.
|
|
8112
|
+
*/
|
|
8113
|
+
ShareActions = "ShareActions",
|
|
8114
|
+
/**
|
|
8115
|
+
* Extension point for the view actions. These actions change the representation of the entire chart, such
|
|
8116
|
+
* as View Switch, Fullscreen.
|
|
8117
|
+
*/
|
|
8118
|
+
ViewActions = "ViewActions",
|
|
8119
|
+
/**
|
|
8120
|
+
* The position of the chart type menu in the view actions group.
|
|
8121
|
+
*/
|
|
8122
|
+
ViewActionsChartType = "ViewActionsChartType",
|
|
8123
|
+
}
|
|
8124
|
+
export default ChartActionPosition;
|
|
8125
|
+
}
|
|
8126
|
+
|
|
7851
8127
|
declare module "sap/ui/mdc/enums/ChartP13nMode" {
|
|
7852
8128
|
/**
|
|
7853
8129
|
* Defines the personalization mode of the chart.
|
|
7854
8130
|
*
|
|
7855
8131
|
* @since 1.115
|
|
7856
|
-
* @experimental As of version 1.115.
|
|
7857
8132
|
*/
|
|
7858
8133
|
enum ChartP13nMode {
|
|
7859
8134
|
/**
|
|
@@ -7882,7 +8157,6 @@ declare module "sap/ui/mdc/enums/ChartToolbarActionType" {
|
|
|
7882
8157
|
* Can be used to remove some of the default `ToolbarAction`. For more information, see {@link sap.ui.mdc.Chart#ignoreToolbarActions}.
|
|
7883
8158
|
*
|
|
7884
8159
|
* @since 1.115
|
|
7885
|
-
* @experimental As of version 1.115.
|
|
7886
8160
|
*/
|
|
7887
8161
|
enum ChartToolbarActionType {
|
|
7888
8162
|
/**
|
|
@@ -13916,8 +14190,13 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
13916
14190
|
|
|
13917
14191
|
/**
|
|
13918
14192
|
* Specifies the filter metadata.
|
|
14193
|
+
* The format is the same as the return type of the {@link module:sap/ui/mdc/FilterBarDelegate.fetchProperties fetchProperties }
|
|
14194
|
+
* delegate function.
|
|
14195
|
+
* Properties specified here must be consistent with properties returned by the {@link module:sap/ui/mdc/FilterBarDelegate.fetchProperties fetchProperties }
|
|
14196
|
+
* callback, otherwise validation errors might occur.
|
|
14197
|
+
* Metadata for initially rendered {@link sap.ui.mdc.FilterField FilterFields} (those in the `filterItems`
|
|
14198
|
+
* aggregation) should be specified here, rather than in the `FilterField` configuration.
|
|
13919
14199
|
* **Note**: This property must not be bound.
|
|
13920
|
-
* **Note**: This property is used exclusively for SAPUI5 flexibility/ Fiori Elements. Do not use it otherwise.
|
|
13921
14200
|
* **Node**: Please check {@link sap.ui.mdc.filterbar.PropertyInfo} for more information about the supported
|
|
13922
14201
|
* inner elements. **Note**: Existing properties (set via `sap.ui.mdc.filterbar.FilterBarBase#setPropertyInfo`)
|
|
13923
14202
|
* must not be removed and their attributes must not be changed during the {@link module:sap/ui/mdc/FilterBarDelegate.fetchProperties fetchProperties }
|
|
@@ -14981,7 +15260,7 @@ declare module "sap/ui/mdc/Geomap" {
|
|
|
14981
15260
|
*
|
|
14982
15261
|
* Default value is `...see text or source`.
|
|
14983
15262
|
*
|
|
14984
|
-
* @experimental
|
|
15263
|
+
* @experimental As of version 1.142.
|
|
14985
15264
|
*
|
|
14986
15265
|
* @returns Value of property `delegate`
|
|
14987
15266
|
*/
|
|
@@ -15184,7 +15463,7 @@ declare module "sap/ui/mdc/Geomap" {
|
|
|
15184
15463
|
*
|
|
15185
15464
|
* Default value is `...see text or source`.
|
|
15186
15465
|
*
|
|
15187
|
-
* @experimental
|
|
15466
|
+
* @experimental As of version 1.142.
|
|
15188
15467
|
*
|
|
15189
15468
|
* @returns Reference to `this` in order to allow method chaining
|
|
15190
15469
|
*/
|
|
@@ -15477,7 +15756,7 @@ declare module "sap/ui/mdc/Geomap" {
|
|
|
15477
15756
|
* that).
|
|
15478
15757
|
* Do not bind or modify the module. This property can only be configured during control initialization.
|
|
15479
15758
|
*
|
|
15480
|
-
* @experimental
|
|
15759
|
+
* @experimental As of version 1.142.
|
|
15481
15760
|
*/
|
|
15482
15761
|
delegate?: object | PropertyBindingInfo | `{${string}}`;
|
|
15483
15762
|
|
|
@@ -16652,7 +16931,6 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
16652
16931
|
*
|
|
16653
16932
|
* Default value is `...see text or source`.
|
|
16654
16933
|
*
|
|
16655
|
-
* @experimental
|
|
16656
16934
|
*
|
|
16657
16935
|
* @returns Value of property `delegate`
|
|
16658
16936
|
*/
|
|
@@ -16821,7 +17099,6 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
16821
17099
|
*
|
|
16822
17100
|
* Default value is `...see text or source`.
|
|
16823
17101
|
*
|
|
16824
|
-
* @experimental
|
|
16825
17102
|
*
|
|
16826
17103
|
* @returns Reference to `this` in order to allow method chaining
|
|
16827
17104
|
*/
|
|
@@ -16895,8 +17172,6 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
16895
17172
|
* **Note:** Ensure that the related file can be requested (any required library has to be loaded before
|
|
16896
17173
|
* that).
|
|
16897
17174
|
* Do not bind or modify the module. This property can only be configured during control initialization.
|
|
16898
|
-
*
|
|
16899
|
-
* @experimental
|
|
16900
17175
|
*/
|
|
16901
17176
|
delegate?: object | PropertyBindingInfo | `{${string}}`;
|
|
16902
17177
|
|
|
@@ -24537,10 +24812,12 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
24537
24812
|
declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
24538
24813
|
import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
|
|
24539
24814
|
|
|
24540
|
-
import {
|
|
24815
|
+
import { ID } from "sap/ui/core/library";
|
|
24541
24816
|
|
|
24542
24817
|
import Control from "sap/ui/core/Control";
|
|
24543
24818
|
|
|
24819
|
+
import { ConditionObject } from "sap/ui/mdc/condition/Condition";
|
|
24820
|
+
|
|
24544
24821
|
import {
|
|
24545
24822
|
ItemForValueConfiguration,
|
|
24546
24823
|
ValueHelpItem,
|
|
@@ -24633,6 +24910,19 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
24633
24910
|
* @returns Metadata object describing this class
|
|
24634
24911
|
*/
|
|
24635
24912
|
static getMetadata(): ElementMetadata;
|
|
24913
|
+
/**
|
|
24914
|
+
* Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
24915
|
+
*
|
|
24916
|
+
* @since 1.145.0
|
|
24917
|
+
*
|
|
24918
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
24919
|
+
*/
|
|
24920
|
+
addAriaLabelledBy(
|
|
24921
|
+
/**
|
|
24922
|
+
* The ariaLabelledBy to add; if empty, nothing is inserted
|
|
24923
|
+
*/
|
|
24924
|
+
vAriaLabelledBy: ID | Control
|
|
24925
|
+
): this;
|
|
24636
24926
|
/**
|
|
24637
24927
|
* Provides access to the delegate initialization `Promise` of the value help.
|
|
24638
24928
|
*
|
|
@@ -24663,6 +24953,12 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
24663
24953
|
*/
|
|
24664
24954
|
oPayload?: object
|
|
24665
24955
|
): ConditionObject;
|
|
24956
|
+
/**
|
|
24957
|
+
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
24958
|
+
*
|
|
24959
|
+
* @since 1.145.0
|
|
24960
|
+
*/
|
|
24961
|
+
getAriaLabelledBy(): ID[];
|
|
24666
24962
|
/**
|
|
24667
24963
|
* Loads additional dependencies, creates and returns displayed content.
|
|
24668
24964
|
*
|
|
@@ -24908,6 +25204,27 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
24908
25204
|
* @returns `true` if a scrolling mechanism is needed
|
|
24909
25205
|
*/
|
|
24910
25206
|
provideScrolling(): boolean;
|
|
25207
|
+
/**
|
|
25208
|
+
* Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
25209
|
+
*
|
|
25210
|
+
* @since 1.145.0
|
|
25211
|
+
*
|
|
25212
|
+
* @returns An array of the removed elements (might be empty)
|
|
25213
|
+
*/
|
|
25214
|
+
removeAllAriaLabelledBy(): ID[];
|
|
25215
|
+
/**
|
|
25216
|
+
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
25217
|
+
*
|
|
25218
|
+
* @since 1.145.0
|
|
25219
|
+
*
|
|
25220
|
+
* @returns The removed ariaLabelledBy or `null`
|
|
25221
|
+
*/
|
|
25222
|
+
removeAriaLabelledBy(
|
|
25223
|
+
/**
|
|
25224
|
+
* The ariaLabelledBy to be removed or its index or ID
|
|
25225
|
+
*/
|
|
25226
|
+
vAriaLabelledBy: int | ID | Control
|
|
25227
|
+
): ID | null;
|
|
24911
25228
|
/**
|
|
24912
25229
|
* The focus visualization of the field help needs to be removed as the user starts typing into the source
|
|
24913
25230
|
* control.
|
|
@@ -25016,6 +25333,13 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
25016
25333
|
* Hide content temporary.
|
|
25017
25334
|
*/
|
|
25018
25335
|
visible?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
25336
|
+
|
|
25337
|
+
/**
|
|
25338
|
+
* Association to controls / IDs that label this control (see WAI-ARIA attribute aria-labelledby).
|
|
25339
|
+
*
|
|
25340
|
+
* @since 1.145.0
|
|
25341
|
+
*/
|
|
25342
|
+
ariaLabelledBy?: Array<Control | string>;
|
|
25019
25343
|
}
|
|
25020
25344
|
|
|
25021
25345
|
/**
|
|
@@ -27596,6 +27920,8 @@ declare namespace sap {
|
|
|
27596
27920
|
|
|
27597
27921
|
"sap/ui/mdc/Chart": undefined;
|
|
27598
27922
|
|
|
27923
|
+
"sap/ui/mdc/chart/ActionLayoutData": undefined;
|
|
27924
|
+
|
|
27599
27925
|
"sap/ui/mdc/chart/ChartImplementationContainer": undefined;
|
|
27600
27926
|
|
|
27601
27927
|
"sap/ui/mdc/chart/ChartSelectionDetails": undefined;
|
|
@@ -27664,6 +27990,8 @@ declare namespace sap {
|
|
|
27664
27990
|
|
|
27665
27991
|
"sap/ui/mdc/enums/BaseType": undefined;
|
|
27666
27992
|
|
|
27993
|
+
"sap/ui/mdc/enums/ChartActionPosition": undefined;
|
|
27994
|
+
|
|
27667
27995
|
"sap/ui/mdc/enums/ChartP13nMode": undefined;
|
|
27668
27996
|
|
|
27669
27997
|
"sap/ui/mdc/enums/ChartToolbarActionType": undefined;
|