@sapui5/ts-types 1.148.1 → 1.149.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.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +4 -4
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.ariba.d.ts +1 -1
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +1 -1
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +17 -17
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +19 -5
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +56 -2
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +26 -4
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +3 -1
- package/types/sap.suite.ui.commons.d.ts +48 -1
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +45 -1
- package/types/sap.tnt.d.ts +83 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +41 -10
- package/types/sap.ui.core.d.ts +308 -387
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.geomap.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +39 -2
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +10 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +687 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +1 -1
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +337 -1
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.export.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.geomap.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.149.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/AggregationBaseDelegate" {
|
|
4
4
|
import BaseDelegate from "sap/ui/mdc/BaseDelegate";
|
|
@@ -1505,6 +1505,29 @@ declare module "sap/ui/mdc/FilterBarDelegate" {
|
|
|
1505
1505
|
*/
|
|
1506
1506
|
oFilterBar: sap.ui.mdc.FilterBar
|
|
1507
1507
|
): Promise<sap.ui.mdc.filterbar.PropertyInfo[]>;
|
|
1508
|
+
/**
|
|
1509
|
+
* Returns default values for a property.
|
|
1510
|
+
*
|
|
1511
|
+
* This function is called when a user adds a condition representing default values or a variant using such
|
|
1512
|
+
* a condition is applied.
|
|
1513
|
+
*
|
|
1514
|
+
* As this function might be called multiple times, the default values should be cached and not be determined
|
|
1515
|
+
* again for each call.
|
|
1516
|
+
*
|
|
1517
|
+
* @since 1.149
|
|
1518
|
+
*
|
|
1519
|
+
* @returns Array of default value conditions in external format
|
|
1520
|
+
*/
|
|
1521
|
+
getDefaultValues(
|
|
1522
|
+
/**
|
|
1523
|
+
* Instance of the {@link sap.ui.mdc.filterbar.FilterBarBase FilterBar} control
|
|
1524
|
+
*/
|
|
1525
|
+
oFilterBar: sap.ui.mdc.filterbar.FilterBarBase,
|
|
1526
|
+
/**
|
|
1527
|
+
* Property key of the filter field
|
|
1528
|
+
*/
|
|
1529
|
+
sPropertyKey: string
|
|
1530
|
+
): sap.ui.mdc.condition.ConditionObject[];
|
|
1508
1531
|
/**
|
|
1509
1532
|
* propertyInfo This method is called during the appliance of the remove condition change. The intention
|
|
1510
1533
|
* is to update the {@link sap.ui.mdc.FilterBarBase#setPropertyInfo propertyInfo} property.
|
|
@@ -3030,7 +3053,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
3030
3053
|
| sap.ui.mdc.util.FilterConditionMap;
|
|
3031
3054
|
/**
|
|
3032
3055
|
* Returns filters that are used when updating the binding of the `ValueHelp`.
|
|
3033
|
-
*
|
|
3056
|
+
* By default, this method returns a set of {@link sap.ui.model.Filter Filters} originating from an available
|
|
3034
3057
|
* {@link sap.ui.mdc.FilterBar FilterBar} or the delegate's own {@link module:sap/ui/mdc/ValueHelpDelegate.getFilterConditions getFilterConditions }
|
|
3035
3058
|
* implementation.
|
|
3036
3059
|
*
|
|
@@ -5098,6 +5121,11 @@ declare namespace sap {
|
|
|
5098
5121
|
* Function to determine the text copied into clipboard
|
|
5099
5122
|
*/
|
|
5100
5123
|
getTextForCopy?: Function;
|
|
5124
|
+
/**
|
|
5125
|
+
* If set, the operator handles default values. The values are used for display and to create filters, but
|
|
5126
|
+
* cannot be set manually.
|
|
5127
|
+
*/
|
|
5128
|
+
useDefaultValues?: boolean;
|
|
5101
5129
|
}
|
|
5102
5130
|
);
|
|
5103
5131
|
|
|
@@ -5685,6 +5713,15 @@ declare namespace sap {
|
|
|
5685
5713
|
* @since 1.99.0
|
|
5686
5714
|
*/
|
|
5687
5715
|
DATETOYEAR = "DATETOYEAR",
|
|
5716
|
+
/**
|
|
5717
|
+
* "Default values" operator is using user-specific default values. The values themselves are not stored
|
|
5718
|
+
* in variants.
|
|
5719
|
+
*
|
|
5720
|
+
* The operator is available for all types.
|
|
5721
|
+
*
|
|
5722
|
+
* @since 1.149.0
|
|
5723
|
+
*/
|
|
5724
|
+
DefaultValues = "DefaultValues",
|
|
5688
5725
|
/**
|
|
5689
5726
|
* "empty" operator
|
|
5690
5727
|
*
|
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.149.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -99,6 +99,9 @@ declare namespace sap {
|
|
|
99
99
|
* row and the group level property path according to `groupLevels` in {@link sap.ui.model.odata.v4.ODataListBinding#setAggregation}).
|
|
100
100
|
* The function must return a string that is used as the title of the group header row.
|
|
101
101
|
*
|
|
102
|
+
* **Note:** Setting a new formatter does not immediately update the group header titles. The titles are
|
|
103
|
+
* updated at the next binding update.
|
|
104
|
+
*
|
|
102
105
|
* Function signature: `groupHeaderFormatter(oContext: sap.ui.model.odata.v4.Context, sPropertyPath: string):
|
|
103
106
|
* string`
|
|
104
107
|
*/
|
|
@@ -723,6 +726,9 @@ declare namespace sap {
|
|
|
723
726
|
* row and the group level property path according to `groupLevels` in {@link sap.ui.model.odata.v4.ODataListBinding#setAggregation}).
|
|
724
727
|
* The function must return a string that is used as the title of the group header row.
|
|
725
728
|
*
|
|
729
|
+
* **Note:** Setting a new formatter does not immediately update the group header titles. The titles are
|
|
730
|
+
* updated at the next binding update.
|
|
731
|
+
*
|
|
726
732
|
* Function signature: `groupHeaderFormatter(oContext: sap.ui.model.odata.v4.Context, sPropertyPath: string):
|
|
727
733
|
* string`
|
|
728
734
|
*
|
|
@@ -757,6 +763,9 @@ declare namespace sap {
|
|
|
757
763
|
* row and the group level property path according to `groupLevels` in {@link sap.ui.model.odata.v4.ODataListBinding#setAggregation}).
|
|
758
764
|
* The function must return a string that is used as the title of the group header row.
|
|
759
765
|
*
|
|
766
|
+
* **Note:** Setting a new formatter does not immediately update the group header titles. The titles are
|
|
767
|
+
* updated at the next binding update.
|
|
768
|
+
*
|
|
760
769
|
* Function signature: `groupHeaderFormatter(oContext: sap.ui.model.odata.v4.Context, sPropertyPath: string):
|
|
761
770
|
* string`
|
|
762
771
|
*
|