@sapui5/ts-types-esm 1.136.2 → 1.138.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/index.d.ts +2 -1
- package/types/sap.apf.d.ts +30 -3
- 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.cux.home.d.ts +315 -65
- package/types/sap.esh.search.ui.d.ts +71 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.ariba.d.ts +3 -0
- 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 +50 -8
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +192 -66
- 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 +1 -1
- package/types/sap.fe.test.d.ts +4 -3
- 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 +1261 -566
- 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 +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +34 -1
- package/types/sap.suite.ui.commons.d.ts +4 -2
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +103 -16
- 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 +67 -9
- package/types/sap.ui.core.d.ts +62 -49
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +221 -167
- package/types/sap.ui.fl.d.ts +3 -7
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +44 -24
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/{mdc-1.136.0-esm-d.ts → sap.ui.mdc.d.ts} +599 -297
- package/types/sap.ui.richtexteditor.d.ts +21 -17
- 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 +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +9 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +75 -30
- package/types/sap.ui.vk.d.ts +364 -102
- package/types/sap.ui.vtm.d.ts +3 -2
- 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.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +58 -31
- 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.fe.macros.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.138.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/fe/macros/Chart" {
|
|
4
4
|
import {
|
|
@@ -327,7 +327,7 @@ declare module "sap/fe/macros/CollectionBindingInfo" {
|
|
|
327
327
|
import Sorter from "sap/ui/model/Sorter";
|
|
328
328
|
|
|
329
329
|
/**
|
|
330
|
-
* API to add parameters to the collection binding
|
|
330
|
+
* API to add parameters to the collection binding info.
|
|
331
331
|
*/
|
|
332
332
|
export default class CollectionBindingInfo {
|
|
333
333
|
/**
|
|
@@ -357,6 +357,27 @@ declare module "sap/fe/macros/CollectionBindingInfo" {
|
|
|
357
357
|
*/
|
|
358
358
|
sorter: Sorter
|
|
359
359
|
): void;
|
|
360
|
+
/**
|
|
361
|
+
* Attach the events to the table binding.
|
|
362
|
+
*/
|
|
363
|
+
attachEvent(
|
|
364
|
+
/**
|
|
365
|
+
* The event ID to attach the callback to
|
|
366
|
+
*/
|
|
367
|
+
eventId: string,
|
|
368
|
+
/**
|
|
369
|
+
* The callback function to be executed when the event is triggered
|
|
370
|
+
*/
|
|
371
|
+
callback: Function,
|
|
372
|
+
/**
|
|
373
|
+
* The listener object that will be used as the context for the callback function
|
|
374
|
+
*/
|
|
375
|
+
listener?: object,
|
|
376
|
+
/**
|
|
377
|
+
* Data that will be passed to the callback function when the event is triggered
|
|
378
|
+
*/
|
|
379
|
+
data?: object
|
|
380
|
+
): void;
|
|
360
381
|
/**
|
|
361
382
|
* Retrieve the 'serialized' binding info, useful if you want to create your own binding
|
|
362
383
|
*
|
|
@@ -556,6 +577,58 @@ declare module "sap/fe/macros/Field" {
|
|
|
556
577
|
>;
|
|
557
578
|
}
|
|
558
579
|
|
|
580
|
+
declare module "sap/fe/macros/FormElement" {
|
|
581
|
+
import {
|
|
582
|
+
default as FormElement1,
|
|
583
|
+
$FormElementSettings as $FormElementSettings1,
|
|
584
|
+
} from "sap/ui/layout/form/FormElement";
|
|
585
|
+
|
|
586
|
+
import {
|
|
587
|
+
PropertyBindingInfo,
|
|
588
|
+
AggregationBindingInfo,
|
|
589
|
+
} from "sap/ui/base/ManagedObject";
|
|
590
|
+
|
|
591
|
+
import Control from "sap/ui/core/Control";
|
|
592
|
+
|
|
593
|
+
/**
|
|
594
|
+
* Building block used to create a form element based on the metadata provided by OData V4.
|
|
595
|
+
*
|
|
596
|
+
* @since 1.90.0
|
|
597
|
+
*/
|
|
598
|
+
export default class FormElement extends FormElement1 {}
|
|
599
|
+
/**
|
|
600
|
+
* Describes the settings that can be provided to the FormElement constructor.
|
|
601
|
+
*/
|
|
602
|
+
export interface $FormElementSettings extends $FormElementSettings1 {
|
|
603
|
+
/**
|
|
604
|
+
* Defines the path of the context used in the current page or block.
|
|
605
|
+
* This setting is defined by the framework.
|
|
606
|
+
*/
|
|
607
|
+
contextPath?: string | PropertyBindingInfo;
|
|
608
|
+
|
|
609
|
+
/**
|
|
610
|
+
* Label shown for the field. If not set, the label from the annotations will be shown.
|
|
611
|
+
*/
|
|
612
|
+
label?: string | PropertyBindingInfo;
|
|
613
|
+
|
|
614
|
+
/**
|
|
615
|
+
* Defines the relative path of the property in the metamodel, based on the current contextPath.
|
|
616
|
+
*/
|
|
617
|
+
metaPath?: string | PropertyBindingInfo;
|
|
618
|
+
|
|
619
|
+
/**
|
|
620
|
+
* If set to false, the FormElement is not rendered.
|
|
621
|
+
*/
|
|
622
|
+
visible?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
623
|
+
|
|
624
|
+
/**
|
|
625
|
+
* Optional aggregation of controls that should be displayed inside the FormElement.
|
|
626
|
+
* If not set, a default Field building block will be rendered
|
|
627
|
+
*/
|
|
628
|
+
fields?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
|
|
629
|
+
}
|
|
630
|
+
}
|
|
631
|
+
|
|
559
632
|
declare module "sap/fe/macros/KPITag" {
|
|
560
633
|
import {
|
|
561
634
|
default as BuildingBlock,
|
|
@@ -878,7 +951,7 @@ declare module "sap/fe/macros/MultiValueField" {
|
|
|
878
951
|
contextPath?: string | PropertyBindingInfo;
|
|
879
952
|
|
|
880
953
|
/**
|
|
881
|
-
* Property added to be able to add data / items to the multi
|
|
954
|
+
* Property added to be able to add data / items to the multi-input field using a different model
|
|
882
955
|
*/
|
|
883
956
|
items?: any | PropertyBindingInfo | `{${string}}`;
|
|
884
957
|
|
|
@@ -2042,6 +2115,9 @@ declare module "sap/fe/macros/filterBar/FilterBar" {
|
|
|
2042
2115
|
getFilters(): object;
|
|
2043
2116
|
/**
|
|
2044
2117
|
* Get the selection variant from the filter bar.
|
|
2118
|
+
* Note: This method returns all the filter values that are set in the filter bar, including the text from
|
|
2119
|
+
* the search field (with $search as the property name). However, it doesn't return any filter field condition
|
|
2120
|
+
* that uses a custom operator.
|
|
2045
2121
|
*
|
|
2046
2122
|
*
|
|
2047
2123
|
* @returns A promise which resolves with a {@link sap.fe.navigation.SelectionVariant }
|
|
@@ -2119,6 +2195,8 @@ declare module "sap/fe/macros/filterBar/FilterBar" {
|
|
|
2119
2195
|
/**
|
|
2120
2196
|
* Sets {@link sap.fe.navigation.SelectionVariant } to the filter bar. Note: setSelectionVariant will clear
|
|
2121
2197
|
* existing filters and then apply the SelectionVariant values.
|
|
2198
|
+
* Note: This method cannot set the search field text or any filter field condition that relies on a custom
|
|
2199
|
+
* operator.
|
|
2122
2200
|
*
|
|
2123
2201
|
*
|
|
2124
2202
|
* @returns A promise for asynchronous handling
|
|
@@ -2310,6 +2388,9 @@ declare module "sap/fe/macros/filterBar/FilterBarAPI" {
|
|
|
2310
2388
|
getFilters(): object;
|
|
2311
2389
|
/**
|
|
2312
2390
|
* Get the selection variant from the filter bar.
|
|
2391
|
+
* Note: This method returns all the filter values that are set in the filter bar, including the text from
|
|
2392
|
+
* the search field (with $search as the property name). However, it doesn't return any filter field condition
|
|
2393
|
+
* that uses a custom operator.
|
|
2313
2394
|
*
|
|
2314
2395
|
*
|
|
2315
2396
|
* @returns A promise which resolves with a {@link sap.fe.navigation.SelectionVariant }
|
|
@@ -2387,6 +2468,8 @@ declare module "sap/fe/macros/filterBar/FilterBarAPI" {
|
|
|
2387
2468
|
/**
|
|
2388
2469
|
* Sets {@link sap.fe.navigation.SelectionVariant } to the filter bar. Note: setSelectionVariant will clear
|
|
2389
2470
|
* existing filters and then apply the SelectionVariant values.
|
|
2471
|
+
* Note: This method cannot set the search field text or any filter field condition that relies on a custom
|
|
2472
|
+
* operator.
|
|
2390
2473
|
*
|
|
2391
2474
|
*
|
|
2392
2475
|
* @returns A promise for asynchronous handling
|
|
@@ -2601,67 +2684,6 @@ declare module "sap/fe/macros/form/Form.block" {
|
|
|
2601
2684
|
}
|
|
2602
2685
|
}
|
|
2603
2686
|
|
|
2604
|
-
declare module "sap/fe/macros/form/FormElement.block" {
|
|
2605
|
-
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
2606
|
-
|
|
2607
|
-
import Context from "sap/ui/model/Context";
|
|
2608
|
-
|
|
2609
|
-
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
2610
|
-
|
|
2611
|
-
import Event from "sap/ui/base/Event";
|
|
2612
|
-
|
|
2613
|
-
/**
|
|
2614
|
-
* Building block used to create a form element based on the metadata provided by OData V4.
|
|
2615
|
-
*
|
|
2616
|
-
* @since 1.90.0
|
|
2617
|
-
*/
|
|
2618
|
-
export default class FormElement extends Control {}
|
|
2619
|
-
/**
|
|
2620
|
-
* Describes the settings that can be provided to the FormElement constructor.
|
|
2621
|
-
*/
|
|
2622
|
-
export interface $FormElementSettings extends $ControlSettings {
|
|
2623
|
-
/**
|
|
2624
|
-
* Defines the path of the context used in the current page or block.
|
|
2625
|
-
* This setting is defined by the framework.
|
|
2626
|
-
*/
|
|
2627
|
-
contextPath?: Context | PropertyBindingInfo | `{${string}}`;
|
|
2628
|
-
|
|
2629
|
-
/**
|
|
2630
|
-
* Label shown for the field. If not set, the label from the annotations will be shown.
|
|
2631
|
-
*/
|
|
2632
|
-
label?: string | PropertyBindingInfo;
|
|
2633
|
-
|
|
2634
|
-
/**
|
|
2635
|
-
* Defines the relative path of the property in the metamodel, based on the current contextPath.
|
|
2636
|
-
*/
|
|
2637
|
-
metaPath?: Context | PropertyBindingInfo | `{${string}}`;
|
|
2638
|
-
|
|
2639
|
-
/**
|
|
2640
|
-
* If set to false, the FormElement is not rendered.
|
|
2641
|
-
*/
|
|
2642
|
-
visible?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
2643
|
-
|
|
2644
|
-
/**
|
|
2645
|
-
* Optional aggregation of controls that should be displayed inside the FormElement.
|
|
2646
|
-
* If not set, a default Field building block will be rendered
|
|
2647
|
-
*/
|
|
2648
|
-
fields?: Control;
|
|
2649
|
-
}
|
|
2650
|
-
|
|
2651
|
-
/**
|
|
2652
|
-
* Parameters of the FormElement#change event.
|
|
2653
|
-
*/
|
|
2654
|
-
export interface FormElement$ChangeEventParameters {}
|
|
2655
|
-
|
|
2656
|
-
/**
|
|
2657
|
-
* Event object of the FormElement#change event.
|
|
2658
|
-
*/
|
|
2659
|
-
export type FormElement$ChangeEvent = Event<
|
|
2660
|
-
FormElement$ChangeEventParameters,
|
|
2661
|
-
FormElement
|
|
2662
|
-
>;
|
|
2663
|
-
}
|
|
2664
|
-
|
|
2665
2687
|
declare module "sap/fe/macros/microchart/MicroChart" {
|
|
2666
2688
|
import {
|
|
2667
2689
|
default as MicroChart1,
|
|
@@ -2924,6 +2946,11 @@ declare module "sap/fe/macros/table/Action" {
|
|
|
2924
2946
|
*/
|
|
2925
2947
|
enableOnSelect?: string | PropertyBindingInfo;
|
|
2926
2948
|
|
|
2949
|
+
/**
|
|
2950
|
+
* Displays the AI Icon on the action button.
|
|
2951
|
+
*/
|
|
2952
|
+
isAIOperation?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
2953
|
+
|
|
2927
2954
|
/**
|
|
2928
2955
|
* Unique identifier of the action
|
|
2929
2956
|
*/
|
|
@@ -3126,6 +3153,11 @@ declare module "sap/fe/macros/table/ActionOverride" {
|
|
|
3126
3153
|
*/
|
|
3127
3154
|
enableOnSelect?: string | PropertyBindingInfo;
|
|
3128
3155
|
|
|
3156
|
+
/**
|
|
3157
|
+
* Displays the AI Icon on the action button.
|
|
3158
|
+
*/
|
|
3159
|
+
isAIOperation?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3160
|
+
|
|
3129
3161
|
/**
|
|
3130
3162
|
* Unique identifier of the action to overridden.
|
|
3131
3163
|
*/
|
|
@@ -3198,6 +3230,12 @@ declare module "sap/fe/macros/table/Column" {
|
|
|
3198
3230
|
*/
|
|
3199
3231
|
anchor?: string | PropertyBindingInfo;
|
|
3200
3232
|
|
|
3233
|
+
/**
|
|
3234
|
+
* The column availability
|
|
3235
|
+
* Allowed values are `Default`, `Adaptation`, `Hidden`
|
|
3236
|
+
*/
|
|
3237
|
+
availability?: string | PropertyBindingInfo;
|
|
3238
|
+
|
|
3201
3239
|
/**
|
|
3202
3240
|
* The text that will be displayed for this column header
|
|
3203
3241
|
*/
|
|
@@ -3231,6 +3269,16 @@ declare module "sap/fe/macros/table/Column" {
|
|
|
3231
3269
|
*/
|
|
3232
3270
|
properties?: string[] | PropertyBindingInfo | `{${string}}`;
|
|
3233
3271
|
|
|
3272
|
+
/**
|
|
3273
|
+
* Determines if the information in the column is required.
|
|
3274
|
+
*/
|
|
3275
|
+
required?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3276
|
+
|
|
3277
|
+
/**
|
|
3278
|
+
* Determines the text displayed for the column tooltip
|
|
3279
|
+
*/
|
|
3280
|
+
tooltip?: string | PropertyBindingInfo;
|
|
3281
|
+
|
|
3234
3282
|
/**
|
|
3235
3283
|
* Determines the column's width.
|
|
3236
3284
|
* Allowed values are 'auto', 'value', and 'inherit', according to {@link sap.ui.core.CSSSize }
|
|
@@ -3312,6 +3360,12 @@ declare module "sap/fe/macros/table/ColumnOverride" {
|
|
|
3312
3360
|
*/
|
|
3313
3361
|
export interface $ColumnOverrideSettings
|
|
3314
3362
|
extends $BuildingBlockObjectPropertySettings {
|
|
3363
|
+
/**
|
|
3364
|
+
* The column availability
|
|
3365
|
+
* Allowed values are `Default`, `Adaptation`, `Hidden``
|
|
3366
|
+
*/
|
|
3367
|
+
availability?: string | PropertyBindingInfo;
|
|
3368
|
+
|
|
3315
3369
|
/**
|
|
3316
3370
|
* Aligns the header as well as the content horizontally
|
|
3317
3371
|
*/
|
|
@@ -3476,7 +3530,7 @@ declare module "sap/fe/macros/table/Table.block" {
|
|
|
3476
3530
|
* <macros:Table id="MyTable" metaPath="@com.sap.vocabularies.UI.v1.LineItem" />
|
|
3477
3531
|
* ```
|
|
3478
3532
|
*
|
|
3479
|
-
* {@link demo:sap/fe/core/fpmExplorer/index.html#/buildingBlocks/table Overview of Table Building Blocks}
|
|
3533
|
+
* {@link demo:sap/fe/core/fpmExplorer/index.html#/buildingBlocks/table/tableDefault Overview of Table Building Blocks}
|
|
3480
3534
|
*/
|
|
3481
3535
|
export default class Table extends MacroAPI {
|
|
3482
3536
|
/**
|
|
@@ -3510,6 +3564,13 @@ declare module "sap/fe/macros/table/Table.block" {
|
|
|
3510
3564
|
type?: /* was: sap.ui.core.message.MessageType */ any;
|
|
3511
3565
|
}
|
|
3512
3566
|
): Promise<string>;
|
|
3567
|
+
/**
|
|
3568
|
+
* Get the count of the row binding of the table.
|
|
3569
|
+
*
|
|
3570
|
+
*
|
|
3571
|
+
* @returns The count of the row binding
|
|
3572
|
+
*/
|
|
3573
|
+
getCount(): number | undefined;
|
|
3513
3574
|
/**
|
|
3514
3575
|
* Get the variant management applied to the table.
|
|
3515
3576
|
*
|
|
@@ -3666,6 +3727,12 @@ declare module "sap/fe/macros/table/Table.block" {
|
|
|
3666
3727
|
*/
|
|
3667
3728
|
creationMode?: TableCreationOptions | PropertyBindingInfo | `{${string}}`;
|
|
3668
3729
|
|
|
3730
|
+
/**
|
|
3731
|
+
* Determines whether the number of fixed columns can be configured in the Column Settings dialog.
|
|
3732
|
+
* This property doesn't apply for responsive tables
|
|
3733
|
+
*/
|
|
3734
|
+
disableColumnFreeze?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3735
|
+
|
|
3669
3736
|
/**
|
|
3670
3737
|
* Controls if the copy functionality of the table is disabled or not.
|
|
3671
3738
|
*/
|
|
@@ -3835,6 +3902,11 @@ declare module "sap/fe/macros/table/Table.block" {
|
|
|
3835
3902
|
*/
|
|
3836
3903
|
selectionMode?: string | PropertyBindingInfo;
|
|
3837
3904
|
|
|
3905
|
+
/**
|
|
3906
|
+
* Defines the number of records to be initially requested from the back end.
|
|
3907
|
+
*/
|
|
3908
|
+
threshold?: int | PropertyBindingInfo | `{${string}}`;
|
|
3909
|
+
|
|
3838
3910
|
/**
|
|
3839
3911
|
* Defines the type of table that will be used by the building block to render the data.
|
|
3840
3912
|
* Allowed values are `GridTable`, `ResponsiveTable` and `AnalyticalTable`.
|
|
@@ -4066,6 +4138,13 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
4066
4138
|
type?: /* was: sap.ui.core.message.MessageType */ any;
|
|
4067
4139
|
}
|
|
4068
4140
|
): Promise<string>;
|
|
4141
|
+
/**
|
|
4142
|
+
* Get the count of the row binding of the table.
|
|
4143
|
+
*
|
|
4144
|
+
*
|
|
4145
|
+
* @returns The count of the row binding
|
|
4146
|
+
*/
|
|
4147
|
+
getCount(): number | undefined;
|
|
4069
4148
|
/**
|
|
4070
4149
|
* Get the variant management applied to the table.
|
|
4071
4150
|
*
|
|
@@ -4275,6 +4354,12 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
4275
4354
|
*/
|
|
4276
4355
|
creationMode?: TableCreationOptions | PropertyBindingInfo | `{${string}}`;
|
|
4277
4356
|
|
|
4357
|
+
/**
|
|
4358
|
+
* Determines whether the number of fixed columns can be configured in the Column Settings dialog.
|
|
4359
|
+
* This property doesn't apply for responsive tables
|
|
4360
|
+
*/
|
|
4361
|
+
disableColumnFreeze?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
4362
|
+
|
|
4278
4363
|
/**
|
|
4279
4364
|
* Controls if the copy functionality of the table is disabled or not.
|
|
4280
4365
|
*/
|
|
@@ -4444,6 +4529,11 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
4444
4529
|
*/
|
|
4445
4530
|
selectionMode?: string | PropertyBindingInfo;
|
|
4446
4531
|
|
|
4532
|
+
/**
|
|
4533
|
+
* Defines the number of records to be initially requested from the back end.
|
|
4534
|
+
*/
|
|
4535
|
+
threshold?: int | PropertyBindingInfo | `{${string}}`;
|
|
4536
|
+
|
|
4447
4537
|
/**
|
|
4448
4538
|
* Defines the type of table that will be used by the building block to render the data.
|
|
4449
4539
|
* Allowed values are `GridTable`, `ResponsiveTable` and `AnalyticalTable`.
|
|
@@ -4693,6 +4783,13 @@ declare module "sap/fe/macros/table/TreeTable.block" {
|
|
|
4693
4783
|
type?: /* was: sap.ui.core.message.MessageType */ any;
|
|
4694
4784
|
}
|
|
4695
4785
|
): Promise<string>;
|
|
4786
|
+
/**
|
|
4787
|
+
* Get the count of the row binding of the table.
|
|
4788
|
+
*
|
|
4789
|
+
*
|
|
4790
|
+
* @returns The count of the row binding
|
|
4791
|
+
*/
|
|
4792
|
+
getCount(): number | undefined;
|
|
4696
4793
|
/**
|
|
4697
4794
|
* Get the variant management applied to the table.
|
|
4698
4795
|
*
|
|
@@ -4852,6 +4949,12 @@ declare module "sap/fe/macros/table/TreeTable.block" {
|
|
|
4852
4949
|
| PropertyBindingInfo
|
|
4853
4950
|
| `{${string}}`;
|
|
4854
4951
|
|
|
4952
|
+
/**
|
|
4953
|
+
* Determines whether the number of fixed columns can be configured in the Column Settings dialog.
|
|
4954
|
+
* This property doesn't apply for responsive tables
|
|
4955
|
+
*/
|
|
4956
|
+
disableColumnFreeze?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
4957
|
+
|
|
4855
4958
|
/**
|
|
4856
4959
|
* Controls if the copy functionality of the table is disabled or not.
|
|
4857
4960
|
*/
|
|
@@ -5046,6 +5149,11 @@ declare module "sap/fe/macros/table/TreeTable.block" {
|
|
|
5046
5149
|
*/
|
|
5047
5150
|
selectionMode?: string | PropertyBindingInfo;
|
|
5048
5151
|
|
|
5152
|
+
/**
|
|
5153
|
+
* Defines the number of records to be initially requested from the back end.
|
|
5154
|
+
*/
|
|
5155
|
+
threshold?: int | PropertyBindingInfo | `{${string}}`;
|
|
5156
|
+
|
|
5049
5157
|
/**
|
|
5050
5158
|
* Defines the type of table that will be used by the building block to render the data. This setting is
|
|
5051
5159
|
* defined by the framework.
|
|
@@ -5281,6 +5389,13 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
5281
5389
|
type?: /* was: sap.ui.core.message.MessageType */ any;
|
|
5282
5390
|
}
|
|
5283
5391
|
): Promise<string>;
|
|
5392
|
+
/**
|
|
5393
|
+
* Get the count of the row binding of the table.
|
|
5394
|
+
*
|
|
5395
|
+
*
|
|
5396
|
+
* @returns The count of the row binding
|
|
5397
|
+
*/
|
|
5398
|
+
getCount(): number | undefined;
|
|
5284
5399
|
/**
|
|
5285
5400
|
* Get the variant management applied to the table.
|
|
5286
5401
|
*
|
|
@@ -5494,6 +5609,12 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
5494
5609
|
| PropertyBindingInfo
|
|
5495
5610
|
| `{${string}}`;
|
|
5496
5611
|
|
|
5612
|
+
/**
|
|
5613
|
+
* Determines whether the number of fixed columns can be configured in the Column Settings dialog.
|
|
5614
|
+
* This property doesn't apply for responsive tables
|
|
5615
|
+
*/
|
|
5616
|
+
disableColumnFreeze?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
5617
|
+
|
|
5497
5618
|
/**
|
|
5498
5619
|
* Controls if the copy functionality of the table is disabled or not.
|
|
5499
5620
|
*/
|
|
@@ -5688,6 +5809,11 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
5688
5809
|
*/
|
|
5689
5810
|
selectionMode?: string | PropertyBindingInfo;
|
|
5690
5811
|
|
|
5812
|
+
/**
|
|
5813
|
+
* Defines the number of records to be initially requested from the back end.
|
|
5814
|
+
*/
|
|
5815
|
+
threshold?: int | PropertyBindingInfo | `{${string}}`;
|
|
5816
|
+
|
|
5691
5817
|
/**
|
|
5692
5818
|
* Defines the type of table that will be used by the building block to render the data. This setting is
|
|
5693
5819
|
* defined by the framework.
|
|
@@ -5998,7 +6124,7 @@ declare namespace sap {
|
|
|
5998
6124
|
|
|
5999
6125
|
"sap/fe/macros/form/Form.block": undefined;
|
|
6000
6126
|
|
|
6001
|
-
"sap/fe/macros/
|
|
6127
|
+
"sap/fe/macros/FormElement": undefined;
|
|
6002
6128
|
|
|
6003
6129
|
"sap/fe/macros/KPITag": undefined;
|
|
6004
6130
|
|
package/types/sap.fe.test.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.138.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/fe/test/library" {}
|
|
4
4
|
|
|
@@ -1079,6 +1079,7 @@ declare module "sap/fe/test/api/FilterBarAssertions" {
|
|
|
1079
1079
|
iCheckFilterAdaptation(): object;
|
|
1080
1080
|
/**
|
|
1081
1081
|
* Checks a filter field. If `vConditionValues` is `undefined`, the current condition values are ignored.
|
|
1082
|
+
* Only the value of the field itself is considered, i.e. text arrangements are not part of the check.
|
|
1082
1083
|
*
|
|
1083
1084
|
*
|
|
1084
1085
|
* @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
@@ -3356,7 +3357,7 @@ declare module "sap/fe/test/JourneyRunner" {
|
|
|
3356
3357
|
* ```javascript
|
|
3357
3358
|
* .run(mSettings, Journey1, Journey2, ...)```
|
|
3358
3359
|
*/
|
|
3359
|
-
_vJourneys: Array<
|
|
3360
|
+
_vJourneys: Array<Function> | string[]
|
|
3360
3361
|
): object;
|
|
3361
3362
|
/**
|
|
3362
3363
|
* Executes the journeys in the given order.
|
|
@@ -3374,7 +3375,7 @@ declare module "sap/fe/test/JourneyRunner" {
|
|
|
3374
3375
|
* ```javascript
|
|
3375
3376
|
* .run(mSettings, Journey1, Journey2, ...)```
|
|
3376
3377
|
*/
|
|
3377
|
-
_vJourneys: Array<
|
|
3378
|
+
_vJourneys: Array<Function> | string[]
|
|
3378
3379
|
): object;
|
|
3379
3380
|
}
|
|
3380
3381
|
}
|
package/types/sap.fe.tools.d.ts
CHANGED
package/types/sap.gantt.d.ts
CHANGED
package/types/sap.insights.d.ts
CHANGED