@openui5/ts-types 1.146.0 → 1.147.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/index.d.ts +0 -3
- package/types/sap.f.d.ts +144 -1
- package/types/sap.m.d.ts +376 -127
- package/types/sap.tnt.d.ts +1 -4
- package/types/sap.ui.codeeditor.d.ts +82 -46
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +175 -16
- 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 +23 -25
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +107 -20
- 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 +2 -2
- 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 +6 -9
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.uxap.d.ts +146 -1
- package/types/sap.ui.webc.common.d.ts +0 -173
- package/types/sap.ui.webc.fiori.d.ts +0 -16012
- package/types/sap.ui.webc.main.d.ts +0 -51158
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.147.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/m/p13n/Engine" {
|
|
4
4
|
/**
|
|
@@ -18438,6 +18438,63 @@ declare namespace sap {
|
|
|
18438
18438
|
QuickTotal
|
|
18439
18439
|
>;
|
|
18440
18440
|
}
|
|
18441
|
+
/**
|
|
18442
|
+
* Describes the settings that can be provided to the Title constructor.
|
|
18443
|
+
*/
|
|
18444
|
+
interface $TitleSettings extends sap.ui.core.$ControlSettings {
|
|
18445
|
+
/**
|
|
18446
|
+
* Defines the value that is displayed as the total row count.
|
|
18447
|
+
*
|
|
18448
|
+
* **Note:** A value of 0 represents an empty table, while a negative value indicates that the total count
|
|
18449
|
+
* is unknown. Although both cases are not displayed to the user, they are handled differently for accessibility
|
|
18450
|
+
* reasons.
|
|
18451
|
+
*/
|
|
18452
|
+
totalCount?:
|
|
18453
|
+
| int
|
|
18454
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
18455
|
+
| `{${string}}`;
|
|
18456
|
+
|
|
18457
|
+
/**
|
|
18458
|
+
* Defines the value that is displayed as the selected row count.
|
|
18459
|
+
*
|
|
18460
|
+
* **Note:** A value of 0 indicates that no rows are selected, while a negative value indicates that the
|
|
18461
|
+
* selected count is unknown. Although these cases are not displayed to the user, they are handled differently
|
|
18462
|
+
* for accessibility reasons.
|
|
18463
|
+
*/
|
|
18464
|
+
selectedCount?:
|
|
18465
|
+
| int
|
|
18466
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
18467
|
+
| `{${string}}`;
|
|
18468
|
+
|
|
18469
|
+
/**
|
|
18470
|
+
* Toggles between compact and extended display modes for the `selectedCount` and `totalCount`.
|
|
18471
|
+
*
|
|
18472
|
+
*
|
|
18473
|
+
* - **Compact mode (`false`)**: Displays counts in a condensed format.
|
|
18474
|
+
* - **Extended mode (`true`)**: Displays counts with separate descriptive labels.
|
|
18475
|
+
*/
|
|
18476
|
+
showExtendedView?:
|
|
18477
|
+
| boolean
|
|
18478
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
18479
|
+
| `{${string}}`;
|
|
18480
|
+
|
|
18481
|
+
/**
|
|
18482
|
+
* Determines whether the control is visible.
|
|
18483
|
+
*
|
|
18484
|
+
* **Note:** If set to `false`, the control is hidden but still rendered for accessibility reasons.
|
|
18485
|
+
*/
|
|
18486
|
+
visible?:
|
|
18487
|
+
| boolean
|
|
18488
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
18489
|
+
| `{${string}}`;
|
|
18490
|
+
|
|
18491
|
+
/**
|
|
18492
|
+
* Sets the title control, which is displayed in the toolbar as usual.
|
|
18493
|
+
*
|
|
18494
|
+
* **Note:** You must set a `title` to use this control.
|
|
18495
|
+
*/
|
|
18496
|
+
title?: sap.m.Title;
|
|
18497
|
+
}
|
|
18441
18498
|
|
|
18442
18499
|
/**
|
|
18443
18500
|
* The `ColumnWidthController` entity serves to create table-specific column width personalization changes.
|
|
@@ -18492,6 +18549,255 @@ declare namespace sap {
|
|
|
18492
18549
|
*/
|
|
18493
18550
|
static getMetadata(): sap.ui.base.Metadata;
|
|
18494
18551
|
}
|
|
18552
|
+
/**
|
|
18553
|
+
* A composite title control intended to display a table title along with optional total and selected row
|
|
18554
|
+
* counts.
|
|
18555
|
+
*
|
|
18556
|
+
* Overview: The `sap.m.table.Title` control renders the provided `sap.m.Title` control and optionally displays
|
|
18557
|
+
* the table's total row count, the selected row count, or both independently.
|
|
18558
|
+
*
|
|
18559
|
+
* @since 1.147
|
|
18560
|
+
*/
|
|
18561
|
+
class Title
|
|
18562
|
+
extends sap.ui.core.Control
|
|
18563
|
+
implements sap.ui.core.ITitle, sap.ui.core.IShrinkable
|
|
18564
|
+
{
|
|
18565
|
+
__implements__sap_ui_core_ITitle: boolean;
|
|
18566
|
+
__implements__sap_ui_core_IShrinkable: boolean;
|
|
18567
|
+
/**
|
|
18568
|
+
* Constructor for a new `sap.m.table.Title`.
|
|
18569
|
+
*
|
|
18570
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
18571
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
18572
|
+
* of the syntax of the settings object.
|
|
18573
|
+
*/
|
|
18574
|
+
constructor(
|
|
18575
|
+
/**
|
|
18576
|
+
* Initial settings for the new control
|
|
18577
|
+
*/
|
|
18578
|
+
mSettings?: sap.m.table.$TitleSettings
|
|
18579
|
+
);
|
|
18580
|
+
/**
|
|
18581
|
+
* Constructor for a new `sap.m.table.Title`.
|
|
18582
|
+
*
|
|
18583
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
18584
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
18585
|
+
* of the syntax of the settings object.
|
|
18586
|
+
*/
|
|
18587
|
+
constructor(
|
|
18588
|
+
/**
|
|
18589
|
+
* ID for the new control, generated automatically if no ID is given
|
|
18590
|
+
*/
|
|
18591
|
+
sId?: string,
|
|
18592
|
+
/**
|
|
18593
|
+
* Initial settings for the new control
|
|
18594
|
+
*/
|
|
18595
|
+
mSettings?: sap.m.table.$TitleSettings
|
|
18596
|
+
);
|
|
18597
|
+
|
|
18598
|
+
/**
|
|
18599
|
+
* Creates a new subclass of class sap.m.table.Title with name `sClassName` and enriches it with the information
|
|
18600
|
+
* contained in `oClassInfo`.
|
|
18601
|
+
*
|
|
18602
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
18603
|
+
*
|
|
18604
|
+
*
|
|
18605
|
+
* @returns Created class / constructor function
|
|
18606
|
+
*/
|
|
18607
|
+
static extend<T extends Record<string, unknown>>(
|
|
18608
|
+
/**
|
|
18609
|
+
* Name of the class being created
|
|
18610
|
+
*/
|
|
18611
|
+
sClassName: string,
|
|
18612
|
+
/**
|
|
18613
|
+
* Object literal with information about the class
|
|
18614
|
+
*/
|
|
18615
|
+
oClassInfo?: sap.ClassInfo<T, sap.m.table.Title>,
|
|
18616
|
+
/**
|
|
18617
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
18618
|
+
* used by this class
|
|
18619
|
+
*/
|
|
18620
|
+
FNMetaImpl?: Function
|
|
18621
|
+
): Function;
|
|
18622
|
+
/**
|
|
18623
|
+
* Returns a metadata object for class sap.m.table.Title.
|
|
18624
|
+
*
|
|
18625
|
+
*
|
|
18626
|
+
* @returns Metadata object describing this class
|
|
18627
|
+
*/
|
|
18628
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
18629
|
+
/**
|
|
18630
|
+
* Destroys the title in the aggregation {@link #getTitle title}.
|
|
18631
|
+
*
|
|
18632
|
+
*
|
|
18633
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
18634
|
+
*/
|
|
18635
|
+
destroyTitle(): this;
|
|
18636
|
+
/**
|
|
18637
|
+
* Gets current value of property {@link #getSelectedCount selectedCount}.
|
|
18638
|
+
*
|
|
18639
|
+
* Defines the value that is displayed as the selected row count.
|
|
18640
|
+
*
|
|
18641
|
+
* **Note:** A value of 0 indicates that no rows are selected, while a negative value indicates that the
|
|
18642
|
+
* selected count is unknown. Although these cases are not displayed to the user, they are handled differently
|
|
18643
|
+
* for accessibility reasons.
|
|
18644
|
+
*
|
|
18645
|
+
* Default value is `0`.
|
|
18646
|
+
*
|
|
18647
|
+
*
|
|
18648
|
+
* @returns Value of property `selectedCount`
|
|
18649
|
+
*/
|
|
18650
|
+
getSelectedCount(): int;
|
|
18651
|
+
/**
|
|
18652
|
+
* Gets current value of property {@link #getShowExtendedView showExtendedView}.
|
|
18653
|
+
*
|
|
18654
|
+
* Toggles between compact and extended display modes for the `selectedCount` and `totalCount`.
|
|
18655
|
+
*
|
|
18656
|
+
*
|
|
18657
|
+
* - **Compact mode (`false`)**: Displays counts in a condensed format.
|
|
18658
|
+
* - **Extended mode (`true`)**: Displays counts with separate descriptive labels.
|
|
18659
|
+
*
|
|
18660
|
+
* Default value is `false`.
|
|
18661
|
+
*
|
|
18662
|
+
*
|
|
18663
|
+
* @returns Value of property `showExtendedView`
|
|
18664
|
+
*/
|
|
18665
|
+
getShowExtendedView(): boolean;
|
|
18666
|
+
/**
|
|
18667
|
+
* Gets content of aggregation {@link #getTitle title}.
|
|
18668
|
+
*
|
|
18669
|
+
* Sets the title control, which is displayed in the toolbar as usual.
|
|
18670
|
+
*
|
|
18671
|
+
* **Note:** You must set a `title` to use this control.
|
|
18672
|
+
*/
|
|
18673
|
+
getTitle(): sap.m.Title;
|
|
18674
|
+
/**
|
|
18675
|
+
* Gets current value of property {@link #getTotalCount totalCount}.
|
|
18676
|
+
*
|
|
18677
|
+
* Defines the value that is displayed as the total row count.
|
|
18678
|
+
*
|
|
18679
|
+
* **Note:** A value of 0 represents an empty table, while a negative value indicates that the total count
|
|
18680
|
+
* is unknown. Although both cases are not displayed to the user, they are handled differently for accessibility
|
|
18681
|
+
* reasons.
|
|
18682
|
+
*
|
|
18683
|
+
* Default value is `0`.
|
|
18684
|
+
*
|
|
18685
|
+
*
|
|
18686
|
+
* @returns Value of property `totalCount`
|
|
18687
|
+
*/
|
|
18688
|
+
getTotalCount(): int;
|
|
18689
|
+
/**
|
|
18690
|
+
* Gets current value of property {@link #getVisible visible}.
|
|
18691
|
+
*
|
|
18692
|
+
* Determines whether the control is visible.
|
|
18693
|
+
*
|
|
18694
|
+
* **Note:** If set to `false`, the control is hidden but still rendered for accessibility reasons.
|
|
18695
|
+
*
|
|
18696
|
+
* Default value is `true`.
|
|
18697
|
+
*
|
|
18698
|
+
*
|
|
18699
|
+
* @returns Value of property `visible`
|
|
18700
|
+
*/
|
|
18701
|
+
getVisible(): boolean;
|
|
18702
|
+
/**
|
|
18703
|
+
* Sets a new value for property {@link #getSelectedCount selectedCount}.
|
|
18704
|
+
*
|
|
18705
|
+
* Defines the value that is displayed as the selected row count.
|
|
18706
|
+
*
|
|
18707
|
+
* **Note:** A value of 0 indicates that no rows are selected, while a negative value indicates that the
|
|
18708
|
+
* selected count is unknown. Although these cases are not displayed to the user, they are handled differently
|
|
18709
|
+
* for accessibility reasons.
|
|
18710
|
+
*
|
|
18711
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18712
|
+
*
|
|
18713
|
+
* Default value is `0`.
|
|
18714
|
+
*
|
|
18715
|
+
*
|
|
18716
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
18717
|
+
*/
|
|
18718
|
+
setSelectedCount(
|
|
18719
|
+
/**
|
|
18720
|
+
* New value for property `selectedCount`
|
|
18721
|
+
*/
|
|
18722
|
+
iSelectedCount?: int
|
|
18723
|
+
): this;
|
|
18724
|
+
/**
|
|
18725
|
+
* Sets a new value for property {@link #getShowExtendedView showExtendedView}.
|
|
18726
|
+
*
|
|
18727
|
+
* Toggles between compact and extended display modes for the `selectedCount` and `totalCount`.
|
|
18728
|
+
*
|
|
18729
|
+
*
|
|
18730
|
+
* - **Compact mode (`false`)**: Displays counts in a condensed format.
|
|
18731
|
+
* - **Extended mode (`true`)**: Displays counts with separate descriptive labels.
|
|
18732
|
+
*
|
|
18733
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18734
|
+
*
|
|
18735
|
+
* Default value is `false`.
|
|
18736
|
+
*
|
|
18737
|
+
*
|
|
18738
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
18739
|
+
*/
|
|
18740
|
+
setShowExtendedView(
|
|
18741
|
+
/**
|
|
18742
|
+
* New value for property `showExtendedView`
|
|
18743
|
+
*/
|
|
18744
|
+
bShowExtendedView?: boolean
|
|
18745
|
+
): this;
|
|
18746
|
+
/**
|
|
18747
|
+
* Sets the aggregated {@link #getTitle title}.
|
|
18748
|
+
*
|
|
18749
|
+
*
|
|
18750
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
18751
|
+
*/
|
|
18752
|
+
setTitle(
|
|
18753
|
+
/**
|
|
18754
|
+
* The title to set
|
|
18755
|
+
*/
|
|
18756
|
+
oTitle: sap.m.Title
|
|
18757
|
+
): this;
|
|
18758
|
+
/**
|
|
18759
|
+
* Sets a new value for property {@link #getTotalCount totalCount}.
|
|
18760
|
+
*
|
|
18761
|
+
* Defines the value that is displayed as the total row count.
|
|
18762
|
+
*
|
|
18763
|
+
* **Note:** A value of 0 represents an empty table, while a negative value indicates that the total count
|
|
18764
|
+
* is unknown. Although both cases are not displayed to the user, they are handled differently for accessibility
|
|
18765
|
+
* reasons.
|
|
18766
|
+
*
|
|
18767
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18768
|
+
*
|
|
18769
|
+
* Default value is `0`.
|
|
18770
|
+
*
|
|
18771
|
+
*
|
|
18772
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
18773
|
+
*/
|
|
18774
|
+
setTotalCount(
|
|
18775
|
+
/**
|
|
18776
|
+
* New value for property `totalCount`
|
|
18777
|
+
*/
|
|
18778
|
+
iTotalCount?: int
|
|
18779
|
+
): this;
|
|
18780
|
+
/**
|
|
18781
|
+
* Sets a new value for property {@link #getVisible visible}.
|
|
18782
|
+
*
|
|
18783
|
+
* Determines whether the control is visible.
|
|
18784
|
+
*
|
|
18785
|
+
* **Note:** If set to `false`, the control is hidden but still rendered for accessibility reasons.
|
|
18786
|
+
*
|
|
18787
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18788
|
+
*
|
|
18789
|
+
* Default value is `true`.
|
|
18790
|
+
*
|
|
18791
|
+
*
|
|
18792
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
18793
|
+
*/
|
|
18794
|
+
setVisible(
|
|
18795
|
+
/**
|
|
18796
|
+
* New value for property `visible`
|
|
18797
|
+
*/
|
|
18798
|
+
bVisible?: boolean
|
|
18799
|
+
): this;
|
|
18800
|
+
}
|
|
18495
18801
|
}
|
|
18496
18802
|
|
|
18497
18803
|
namespace upload {
|
|
@@ -18511,8 +18817,6 @@ declare namespace sap {
|
|
|
18511
18817
|
|
|
18512
18818
|
/**
|
|
18513
18819
|
* Describes the settings that can be provided to the Column constructor.
|
|
18514
|
-
*
|
|
18515
|
-
* @experimental As of version 1.120.
|
|
18516
18820
|
*/
|
|
18517
18821
|
interface $ColumnSettings extends sap.m.$ColumnSettings {
|
|
18518
18822
|
/**
|
|
@@ -19959,7 +20263,6 @@ declare namespace sap {
|
|
|
19959
20263
|
* control.
|
|
19960
20264
|
*
|
|
19961
20265
|
* @since 1.120
|
|
19962
|
-
* @experimental As of version 1.120.
|
|
19963
20266
|
*/
|
|
19964
20267
|
class Column extends sap.m.Column {
|
|
19965
20268
|
/**
|
|
@@ -28707,8 +29010,6 @@ declare namespace sap {
|
|
|
28707
29010
|
|
|
28708
29011
|
/**
|
|
28709
29012
|
* Describes the settings that can be provided to the ContentConfig constructor.
|
|
28710
|
-
*
|
|
28711
|
-
* @experimental As of version 1.122.
|
|
28712
29013
|
*/
|
|
28713
29014
|
interface $ContentConfigSettings extends sap.ui.core.$ElementSettings {
|
|
28714
29015
|
/**
|
|
@@ -33810,7 +34111,7 @@ declare namespace sap {
|
|
|
33810
34111
|
| `{${string}}`;
|
|
33811
34112
|
|
|
33812
34113
|
/**
|
|
33813
|
-
* Defines the maximum number of
|
|
34114
|
+
* Defines the maximum number of {@link sap.m.ListItemBase#getActions actions} displayed for the items.
|
|
33814
34115
|
*
|
|
33815
34116
|
* If the number of item actions exceeds the `itemActionCount` property value, an overflow button will appear,
|
|
33816
34117
|
* providing access to the additional actions.
|
|
@@ -33818,6 +34119,8 @@ declare namespace sap {
|
|
|
33818
34119
|
* **Note:** Only values between `0-2` enables the use of the new `actions` aggregation. When enabled, the
|
|
33819
34120
|
* {@link sap.m.ListMode Delete} mode and the {@link sap.m.ListType Detail} list item type have no effect.
|
|
33820
34121
|
* Instead, dedicated actions of {@link sap.m.ListItemActionType type} `Delete` or `Edit` should be used.
|
|
34122
|
+
* **Note:** As of version 1.147, items with type {@link sap.m.ListType Navigation} render the navigation
|
|
34123
|
+
* indicator as an action, which is not counted in `itemActionCount`.
|
|
33821
34124
|
*
|
|
33822
34125
|
* @since 1.137
|
|
33823
34126
|
*/
|
|
@@ -35685,8 +35988,6 @@ declare namespace sap {
|
|
|
35685
35988
|
* language. When set to false the font size will always be large
|
|
35686
35989
|
*
|
|
35687
35990
|
* @since 1.73
|
|
35688
|
-
* @experimental As of version 1.73. Disclaimer: this property is in a beta state - incompatible API changes
|
|
35689
|
-
* may be done before its official public release. Use at your own discretion.
|
|
35690
35991
|
*/
|
|
35691
35992
|
adaptiveFontSize?:
|
|
35692
35993
|
| boolean
|
|
@@ -40202,7 +40503,7 @@ declare namespace sap {
|
|
|
40202
40503
|
ariaLabelledBy?: Array<sap.ui.core.Control | string>;
|
|
40203
40504
|
|
|
40204
40505
|
/**
|
|
40205
|
-
*
|
|
40506
|
+
* The event is triggered when the user selects or deselects the radio button.
|
|
40206
40507
|
*/
|
|
40207
40508
|
select?: (oEvent: RadioButton$SelectEvent) => void;
|
|
40208
40509
|
}
|
|
@@ -43405,6 +43706,17 @@ declare namespace sap {
|
|
|
43405
43706
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
43406
43707
|
| `{${string}}`;
|
|
43407
43708
|
|
|
43709
|
+
/**
|
|
43710
|
+
* Specifies whether the user shall be allowed to change the state of the switch. When set to `false`, the
|
|
43711
|
+
* switch is in read-only mode and can still be focused and the user can copy the text from it.
|
|
43712
|
+
*
|
|
43713
|
+
* @since 1.147.0
|
|
43714
|
+
*/
|
|
43715
|
+
editable?:
|
|
43716
|
+
| boolean
|
|
43717
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
43718
|
+
| `{${string}}`;
|
|
43719
|
+
|
|
43408
43720
|
/**
|
|
43409
43721
|
* Association to controls / ids which label this control (see WAI-ARIA attribute aria-labelledby).
|
|
43410
43722
|
*
|
|
@@ -44254,8 +44566,6 @@ declare namespace sap {
|
|
|
44254
44566
|
|
|
44255
44567
|
/**
|
|
44256
44568
|
* Describes the settings that can be provided to the TileAttribute constructor.
|
|
44257
|
-
*
|
|
44258
|
-
* @experimental As of version 1.122.
|
|
44259
44569
|
*/
|
|
44260
44570
|
interface $TileAttributeSettings extends sap.ui.core.$ControlSettings {
|
|
44261
44571
|
/**
|
|
@@ -45969,11 +46279,6 @@ declare namespace sap {
|
|
|
45969
46279
|
*/
|
|
45970
46280
|
manageCancel?: (oEvent: sap.ui.base.Event) => void;
|
|
45971
46281
|
|
|
45972
|
-
/**
|
|
45973
|
-
* This event is fired when users opens the Manage Views dialog.
|
|
45974
|
-
*/
|
|
45975
|
-
manageOpen?: (oEvent: sap.ui.base.Event) => void;
|
|
45976
|
-
|
|
45977
46282
|
/**
|
|
45978
46283
|
* This event is fired when users apply changes variant information in the Manage Views dialog. Some
|
|
45979
46284
|
* of the parameters may be ommitted, depending on user selection.
|
|
@@ -48829,7 +49134,10 @@ declare namespace sap {
|
|
|
48829
49134
|
*/
|
|
48830
49135
|
interface RadioButton$SelectEventParameters {
|
|
48831
49136
|
/**
|
|
48832
|
-
*
|
|
49137
|
+
* Indicates whether the RadioButton is selected.
|
|
49138
|
+
*
|
|
49139
|
+
* **Note:** A single RadioButton cannot be deselected by user interaction. Deselection only occurs when
|
|
49140
|
+
* another RadioButton in the same group receives a selection.
|
|
48833
49141
|
*/
|
|
48834
49142
|
selected?: boolean;
|
|
48835
49143
|
}
|
|
@@ -50448,11 +50756,6 @@ declare namespace sap {
|
|
|
50448
50756
|
*/
|
|
50449
50757
|
interface VariantManagement$ManageCancelEventParameters {}
|
|
50450
50758
|
|
|
50451
|
-
/**
|
|
50452
|
-
* Parameters of the VariantManagement#manageOpen event.
|
|
50453
|
-
*/
|
|
50454
|
-
interface VariantManagement$ManageOpenEventParameters {}
|
|
50455
|
-
|
|
50456
50759
|
/**
|
|
50457
50760
|
* Parameters of the VariantManagement#save event.
|
|
50458
50761
|
*/
|
|
@@ -63994,7 +64297,6 @@ declare namespace sap {
|
|
|
63994
64297
|
* This element is used within the TileAttribute control that generates either a link or text
|
|
63995
64298
|
*
|
|
63996
64299
|
* @since 1.122
|
|
63997
|
-
* @experimental As of version 1.122.
|
|
63998
64300
|
*/
|
|
63999
64301
|
class ContentConfig extends sap.ui.core.Element {
|
|
64000
64302
|
/**
|
|
@@ -90053,7 +90355,7 @@ declare namespace sap {
|
|
|
90053
90355
|
/**
|
|
90054
90356
|
* Gets current value of property {@link #getItemActionCount itemActionCount}.
|
|
90055
90357
|
*
|
|
90056
|
-
* Defines the maximum number of
|
|
90358
|
+
* Defines the maximum number of {@link sap.m.ListItemBase#getActions actions} displayed for the items.
|
|
90057
90359
|
*
|
|
90058
90360
|
* If the number of item actions exceeds the `itemActionCount` property value, an overflow button will appear,
|
|
90059
90361
|
* providing access to the additional actions.
|
|
@@ -90061,6 +90363,8 @@ declare namespace sap {
|
|
|
90061
90363
|
* **Note:** Only values between `0-2` enables the use of the new `actions` aggregation. When enabled, the
|
|
90062
90364
|
* {@link sap.m.ListMode Delete} mode and the {@link sap.m.ListType Detail} list item type have no effect.
|
|
90063
90365
|
* Instead, dedicated actions of {@link sap.m.ListItemActionType type} `Delete` or `Edit` should be used.
|
|
90366
|
+
* **Note:** As of version 1.147, items with type {@link sap.m.ListType Navigation} render the navigation
|
|
90367
|
+
* indicator as an action, which is not counted in `itemActionCount`.
|
|
90064
90368
|
*
|
|
90065
90369
|
* Default value is `-1`.
|
|
90066
90370
|
*
|
|
@@ -90730,7 +91034,7 @@ declare namespace sap {
|
|
|
90730
91034
|
/**
|
|
90731
91035
|
* Sets a new value for property {@link #getItemActionCount itemActionCount}.
|
|
90732
91036
|
*
|
|
90733
|
-
* Defines the maximum number of
|
|
91037
|
+
* Defines the maximum number of {@link sap.m.ListItemBase#getActions actions} displayed for the items.
|
|
90734
91038
|
*
|
|
90735
91039
|
* If the number of item actions exceeds the `itemActionCount` property value, an overflow button will appear,
|
|
90736
91040
|
* providing access to the additional actions.
|
|
@@ -90738,6 +91042,8 @@ declare namespace sap {
|
|
|
90738
91042
|
* **Note:** Only values between `0-2` enables the use of the new `actions` aggregation. When enabled, the
|
|
90739
91043
|
* {@link sap.m.ListMode Delete} mode and the {@link sap.m.ListType Detail} list item type have no effect.
|
|
90740
91044
|
* Instead, dedicated actions of {@link sap.m.ListItemActionType type} `Delete` or `Edit` should be used.
|
|
91045
|
+
* **Note:** As of version 1.147, items with type {@link sap.m.ListType Navigation} render the navigation
|
|
91046
|
+
* indicator as an action, which is not counted in `itemActionCount`.
|
|
90741
91047
|
*
|
|
90742
91048
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
90743
91049
|
*
|
|
@@ -102412,8 +102718,6 @@ declare namespace sap {
|
|
|
102412
102718
|
* Default value is `true`.
|
|
102413
102719
|
*
|
|
102414
102720
|
* @since 1.73
|
|
102415
|
-
* @experimental As of version 1.73. Disclaimer: this property is in a beta state - incompatible API changes
|
|
102416
|
-
* may be done before its official public release. Use at your own discretion.
|
|
102417
102721
|
*
|
|
102418
102722
|
* @returns Value of property `adaptiveFontSize`
|
|
102419
102723
|
*/
|
|
@@ -102580,8 +102884,6 @@ declare namespace sap {
|
|
|
102580
102884
|
* Default value is `true`.
|
|
102581
102885
|
*
|
|
102582
102886
|
* @since 1.73
|
|
102583
|
-
* @experimental As of version 1.73. Disclaimer: this property is in a beta state - incompatible API changes
|
|
102584
|
-
* may be done before its official public release. Use at your own discretion.
|
|
102585
102887
|
*
|
|
102586
102888
|
* @returns Reference to `this` in order to allow method chaining
|
|
102587
102889
|
*/
|
|
@@ -108461,7 +108763,6 @@ declare namespace sap {
|
|
|
108461
108763
|
* Using more than one tokenizer in the same toolbar is not recomended, as it may lead to unexpected behavior.
|
|
108462
108764
|
* Do not use tokenizers within a toolbar if its active property is set to `true`.
|
|
108463
108765
|
*
|
|
108464
|
-
* @since 1.139
|
|
108465
108766
|
* @experimental As of version 1.139.
|
|
108466
108767
|
*/
|
|
108467
108768
|
class OverflowToolbarTokenizer
|
|
@@ -125782,7 +126083,7 @@ declare namespace sap {
|
|
|
125782
126083
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
125783
126084
|
* otherwise it will be bound to this `sap.m.RadioButton` itself.
|
|
125784
126085
|
*
|
|
125785
|
-
*
|
|
126086
|
+
* The event is triggered when the user selects or deselects the radio button.
|
|
125786
126087
|
*
|
|
125787
126088
|
*
|
|
125788
126089
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -125808,7 +126109,7 @@ declare namespace sap {
|
|
|
125808
126109
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
125809
126110
|
* otherwise it will be bound to this `sap.m.RadioButton` itself.
|
|
125810
126111
|
*
|
|
125811
|
-
*
|
|
126112
|
+
* The event is triggered when the user selects or deselects the radio button.
|
|
125812
126113
|
*
|
|
125813
126114
|
*
|
|
125814
126115
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -145305,6 +145606,19 @@ declare namespace sap {
|
|
|
145305
145606
|
* @returns Value of property `customTextOn`
|
|
145306
145607
|
*/
|
|
145307
145608
|
getCustomTextOn(): string;
|
|
145609
|
+
/**
|
|
145610
|
+
* Gets current value of property {@link #getEditable editable}.
|
|
145611
|
+
*
|
|
145612
|
+
* Specifies whether the user shall be allowed to change the state of the switch. When set to `false`, the
|
|
145613
|
+
* switch is in read-only mode and can still be focused and the user can copy the text from it.
|
|
145614
|
+
*
|
|
145615
|
+
* Default value is `true`.
|
|
145616
|
+
*
|
|
145617
|
+
* @since 1.147.0
|
|
145618
|
+
*
|
|
145619
|
+
* @returns Value of property `editable`
|
|
145620
|
+
*/
|
|
145621
|
+
getEditable(): boolean;
|
|
145308
145622
|
/**
|
|
145309
145623
|
* Gets current value of property {@link #getEnabled enabled}.
|
|
145310
145624
|
*
|
|
@@ -145413,6 +145727,26 @@ declare namespace sap {
|
|
|
145413
145727
|
*/
|
|
145414
145728
|
sCustomTextOn?: string
|
|
145415
145729
|
): this;
|
|
145730
|
+
/**
|
|
145731
|
+
* Sets a new value for property {@link #getEditable editable}.
|
|
145732
|
+
*
|
|
145733
|
+
* Specifies whether the user shall be allowed to change the state of the switch. When set to `false`, the
|
|
145734
|
+
* switch is in read-only mode and can still be focused and the user can copy the text from it.
|
|
145735
|
+
*
|
|
145736
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
145737
|
+
*
|
|
145738
|
+
* Default value is `true`.
|
|
145739
|
+
*
|
|
145740
|
+
* @since 1.147.0
|
|
145741
|
+
*
|
|
145742
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
145743
|
+
*/
|
|
145744
|
+
setEditable(
|
|
145745
|
+
/**
|
|
145746
|
+
* New value for property `editable`
|
|
145747
|
+
*/
|
|
145748
|
+
bEditable?: boolean
|
|
145749
|
+
): this;
|
|
145416
145750
|
/**
|
|
145417
145751
|
* Sets a new value for property {@link #getEnabled enabled}.
|
|
145418
145752
|
*
|
|
@@ -150599,7 +150933,6 @@ declare namespace sap {
|
|
|
150599
150933
|
* Holds detail of an attribute used in the ActionTile.
|
|
150600
150934
|
*
|
|
150601
150935
|
* @since 1.122
|
|
150602
|
-
* @experimental As of version 1.122.
|
|
150603
150936
|
*/
|
|
150604
150937
|
class TileAttribute extends sap.ui.core.Control {
|
|
150605
150938
|
/**
|
|
@@ -160772,53 +161105,6 @@ declare namespace sap {
|
|
|
160772
161105
|
*/
|
|
160773
161106
|
oListener?: object
|
|
160774
161107
|
): this;
|
|
160775
|
-
/**
|
|
160776
|
-
* Attaches event handler `fnFunction` to the {@link #event:manageOpen manageOpen} event of this `sap.m.VariantManagement`.
|
|
160777
|
-
*
|
|
160778
|
-
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
160779
|
-
* otherwise it will be bound to this `sap.m.VariantManagement` itself.
|
|
160780
|
-
*
|
|
160781
|
-
* This event is fired when users opens the Manage Views dialog.
|
|
160782
|
-
*
|
|
160783
|
-
*
|
|
160784
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
160785
|
-
*/
|
|
160786
|
-
attachManageOpen(
|
|
160787
|
-
/**
|
|
160788
|
-
* An application-specific payload object that will be passed to the event handler along with the event
|
|
160789
|
-
* object when firing the event
|
|
160790
|
-
*/
|
|
160791
|
-
oData: object,
|
|
160792
|
-
/**
|
|
160793
|
-
* The function to be called when the event occurs
|
|
160794
|
-
*/
|
|
160795
|
-
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
160796
|
-
/**
|
|
160797
|
-
* Context object to call the event handler with. Defaults to this `sap.m.VariantManagement` itself
|
|
160798
|
-
*/
|
|
160799
|
-
oListener?: object
|
|
160800
|
-
): this;
|
|
160801
|
-
/**
|
|
160802
|
-
* Attaches event handler `fnFunction` to the {@link #event:manageOpen manageOpen} event of this `sap.m.VariantManagement`.
|
|
160803
|
-
*
|
|
160804
|
-
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
160805
|
-
* otherwise it will be bound to this `sap.m.VariantManagement` itself.
|
|
160806
|
-
*
|
|
160807
|
-
* This event is fired when users opens the Manage Views dialog.
|
|
160808
|
-
*
|
|
160809
|
-
*
|
|
160810
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
160811
|
-
*/
|
|
160812
|
-
attachManageOpen(
|
|
160813
|
-
/**
|
|
160814
|
-
* The function to be called when the event occurs
|
|
160815
|
-
*/
|
|
160816
|
-
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
160817
|
-
/**
|
|
160818
|
-
* Context object to call the event handler with. Defaults to this `sap.m.VariantManagement` itself
|
|
160819
|
-
*/
|
|
160820
|
-
oListener?: object
|
|
160821
|
-
): this;
|
|
160822
161108
|
/**
|
|
160823
161109
|
* Attaches event handler `fnFunction` to the {@link #event:save save} event of this `sap.m.VariantManagement`.
|
|
160824
161110
|
*
|
|
@@ -160974,24 +161260,6 @@ declare namespace sap {
|
|
|
160974
161260
|
*/
|
|
160975
161261
|
oListener?: object
|
|
160976
161262
|
): this;
|
|
160977
|
-
/**
|
|
160978
|
-
* Detaches event handler `fnFunction` from the {@link #event:manageOpen manageOpen} event of this `sap.m.VariantManagement`.
|
|
160979
|
-
*
|
|
160980
|
-
* The passed function and listener object must match the ones used for event registration.
|
|
160981
|
-
*
|
|
160982
|
-
*
|
|
160983
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
160984
|
-
*/
|
|
160985
|
-
detachManageOpen(
|
|
160986
|
-
/**
|
|
160987
|
-
* The function to be called, when the event occurs
|
|
160988
|
-
*/
|
|
160989
|
-
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
160990
|
-
/**
|
|
160991
|
-
* Context object on which the given function had to be called
|
|
160992
|
-
*/
|
|
160993
|
-
oListener?: object
|
|
160994
|
-
): this;
|
|
160995
161263
|
/**
|
|
160996
161264
|
* Detaches event handler `fnFunction` from the {@link #event:save save} event of this `sap.m.VariantManagement`.
|
|
160997
161265
|
*
|
|
@@ -161067,19 +161335,6 @@ declare namespace sap {
|
|
|
161067
161335
|
*/
|
|
161068
161336
|
mParameters?: object
|
|
161069
161337
|
): this;
|
|
161070
|
-
/**
|
|
161071
|
-
* Fires event {@link #event:manageOpen manageOpen} to attached listeners.
|
|
161072
|
-
*
|
|
161073
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
161074
|
-
*
|
|
161075
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
161076
|
-
*/
|
|
161077
|
-
fireManageOpen(
|
|
161078
|
-
/**
|
|
161079
|
-
* Parameters to pass along with the event
|
|
161080
|
-
*/
|
|
161081
|
-
mParameters?: object
|
|
161082
|
-
): this;
|
|
161083
161338
|
/**
|
|
161084
161339
|
* Fires event {@link #event:save save} to attached listeners.
|
|
161085
161340
|
*
|
|
@@ -166517,7 +166772,6 @@ declare namespace sap {
|
|
|
166517
166772
|
* This enum is part of the 'sap/m/library' module export and must be accessed by the property 'ContentConfigType'.
|
|
166518
166773
|
*
|
|
166519
166774
|
* @since 1.122
|
|
166520
|
-
* @experimental As of version 1.122.
|
|
166521
166775
|
*/
|
|
166522
166776
|
enum ContentConfigType {
|
|
166523
166777
|
/**
|
|
@@ -167058,7 +167312,7 @@ declare namespace sap {
|
|
|
167058
167312
|
*
|
|
167059
167313
|
* Generic Tile renders buttons that are specified under 'actionButtons' aggregation
|
|
167060
167314
|
*
|
|
167061
|
-
* @
|
|
167315
|
+
* @since 1.96.0
|
|
167062
167316
|
*/
|
|
167063
167317
|
ActionMode = "ActionMode",
|
|
167064
167318
|
/**
|
|
@@ -167066,7 +167320,7 @@ declare namespace sap {
|
|
|
167066
167320
|
*
|
|
167067
167321
|
* Enables Article Mode.
|
|
167068
167322
|
*
|
|
167069
|
-
* @
|
|
167323
|
+
* @since 1.96.0
|
|
167070
167324
|
*/
|
|
167071
167325
|
ArticleMode = "ArticleMode",
|
|
167072
167326
|
/**
|
|
@@ -167085,7 +167339,6 @@ declare namespace sap {
|
|
|
167085
167339
|
* It is applicable only for the OneByOne FrameType and TwoByHalf FrameType.
|
|
167086
167340
|
*
|
|
167087
167341
|
* @since 1.96
|
|
167088
|
-
* @experimental As of version 1.96.
|
|
167089
167342
|
*/
|
|
167090
167343
|
IconMode = "IconMode",
|
|
167091
167344
|
/**
|
|
@@ -167223,7 +167476,7 @@ declare namespace sap {
|
|
|
167223
167476
|
*
|
|
167224
167477
|
* This enum is part of the 'sap/m/library' module export and must be accessed by the property 'IconTabFilterInteractionMode'.
|
|
167225
167478
|
*
|
|
167226
|
-
* @experimental As of version 1.121.
|
|
167479
|
+
* @experimental As of version 1.121.
|
|
167227
167480
|
*/
|
|
167228
167481
|
enum IconTabFilterInteractionMode {
|
|
167229
167482
|
/**
|
|
@@ -168073,7 +168326,8 @@ declare namespace sap {
|
|
|
168073
168326
|
*/
|
|
168074
168327
|
Active = "Active",
|
|
168075
168328
|
/**
|
|
168076
|
-
* Enables detail button of the list item that fires
|
|
168329
|
+
* Enables the detail button of the list item that fires the {@link sap.m.ListItemBase#event:detailPress detailPress }
|
|
168330
|
+
* event.
|
|
168077
168331
|
*/
|
|
168078
168332
|
Detail = "Detail",
|
|
168079
168333
|
/**
|
|
@@ -168086,7 +168340,8 @@ declare namespace sap {
|
|
|
168086
168340
|
*/
|
|
168087
168341
|
Inactive = "Inactive",
|
|
168088
168342
|
/**
|
|
168089
|
-
*
|
|
168343
|
+
* Enables the navigation button of the list item to navigate and display additional information about the
|
|
168344
|
+
* item. Fires the {@link sap.m.ListBase#event:itemPress} event when pressed.
|
|
168090
168345
|
*/
|
|
168091
168346
|
Navigation = "Navigation",
|
|
168092
168347
|
}
|
|
@@ -172521,14 +172776,6 @@ declare namespace sap {
|
|
|
172521
172776
|
VariantManagement
|
|
172522
172777
|
>;
|
|
172523
172778
|
|
|
172524
|
-
/**
|
|
172525
|
-
* Event object of the VariantManagement#manageOpen event.
|
|
172526
|
-
*/
|
|
172527
|
-
type VariantManagement$ManageOpenEvent = sap.ui.base.Event<
|
|
172528
|
-
VariantManagement$ManageOpenEventParameters,
|
|
172529
|
-
VariantManagement
|
|
172530
|
-
>;
|
|
172531
|
-
|
|
172532
172779
|
/**
|
|
172533
172780
|
* Event object of the VariantManagement#save event.
|
|
172534
172781
|
*/
|
|
@@ -173266,6 +173513,8 @@ declare namespace sap {
|
|
|
173266
173513
|
|
|
173267
173514
|
"sap/m/table/ColumnWidthController": undefined;
|
|
173268
173515
|
|
|
173516
|
+
"sap/m/table/Title": undefined;
|
|
173517
|
+
|
|
173269
173518
|
"sap/m/table/Util": undefined;
|
|
173270
173519
|
|
|
173271
173520
|
"sap/m/TablePersoController": undefined;
|