@sapui5/ts-types 1.145.1 → 1.147.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 +3 -6
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +4 -7
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +59 -67
- package/types/sap.f.d.ts +214 -528
- 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 +1725 -1041
- 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 +49 -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 +229 -1
- package/types/sap.insights.d.ts +14 -1
- package/types/{mobile-1.145.0-d.ts → sap.m.d.ts} +607 -48
- 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 +1 -1
- package/types/sap.suite.ui.commons.d.ts +294 -10
- package/types/sap.suite.ui.generic.template.d.ts +79 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +9 -19
- package/types/sap.ui.codeeditor.d.ts +82 -46
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +5 -15
- package/types/{core-1.145.0-d.ts → sap.ui.core.d.ts} +1209 -376
- 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 +9 -1
- package/types/sap.ui.generic.app.d.ts +5 -5
- 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 +87 -289
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/{mdc-1.145.0-d.ts → sap.ui.mdc.d.ts} +108 -21
- package/types/sap.ui.richtexteditor.d.ts +6 -6
- 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 +41 -11
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +8 -24
- package/types/sap.ui.vk.d.ts +216 -2
- package/types/sap.ui.vtm.d.ts +2 -2
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +590 -196
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +146 -1
- package/types/sap.viz.d.ts +4 -5
- 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.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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.147.0
|
|
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
|
/**
|
|
@@ -28010,8 +28313,10 @@ declare namespace sap {
|
|
|
28010
28313
|
* Defines how many pages are displayed in the visible area of the `Carousel` control. Value should be a
|
|
28011
28314
|
* positive number.
|
|
28012
28315
|
*
|
|
28013
|
-
* **Note:** When this property is set to something different
|
|
28316
|
+
* **Note:** When this property is set to something different from the default value, the `loop` property
|
|
28014
28317
|
* of `Carousel` is ignored.
|
|
28318
|
+
*
|
|
28319
|
+
* **Note:** This property is ignored when the `responsive` property is set to `true`.
|
|
28015
28320
|
*/
|
|
28016
28321
|
visiblePagesCount?:
|
|
28017
28322
|
| int
|
|
@@ -28031,6 +28336,35 @@ declare namespace sap {
|
|
|
28031
28336
|
| sap.m.CarouselScrollMode
|
|
28032
28337
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
28033
28338
|
| `{${string}}`;
|
|
28339
|
+
|
|
28340
|
+
/**
|
|
28341
|
+
* Activates the responsive layout mode, where the number of visible carousel pages automatically adjusts
|
|
28342
|
+
* based on the available width and the specified page width.
|
|
28343
|
+
*
|
|
28344
|
+
* When this option is enabled, the carousel dynamically calculates and displays as many items as can fit
|
|
28345
|
+
* within the viewport while adhering to the `minPageWidth` constraint.
|
|
28346
|
+
*
|
|
28347
|
+
* **Note:** Enabling this option overrides the `visiblePagesCount` property and disables the `loop` functionality
|
|
28348
|
+
* of the carousel.
|
|
28349
|
+
*/
|
|
28350
|
+
responsive?:
|
|
28351
|
+
| boolean
|
|
28352
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
28353
|
+
| `{${string}}`;
|
|
28354
|
+
|
|
28355
|
+
/**
|
|
28356
|
+
* Defines the minimum width, in pixels, for each page to be displayed in the `Carousel` control.
|
|
28357
|
+
*
|
|
28358
|
+
* This property is used as a constraint when `responsive` mode is enabled, ensuring that pages are never
|
|
28359
|
+
* rendered smaller than this specified width. The carousel automatically calculates the number of pages
|
|
28360
|
+
* that can fit within the available viewport while respecting the specified minimum width requirement.
|
|
28361
|
+
*
|
|
28362
|
+
* **Note:** This property is only effective when the `responsive` property is set to `true`.
|
|
28363
|
+
*/
|
|
28364
|
+
minPageWidth?:
|
|
28365
|
+
| int
|
|
28366
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
28367
|
+
| `{${string}}`;
|
|
28034
28368
|
}
|
|
28035
28369
|
|
|
28036
28370
|
/**
|
|
@@ -28676,8 +29010,6 @@ declare namespace sap {
|
|
|
28676
29010
|
|
|
28677
29011
|
/**
|
|
28678
29012
|
* Describes the settings that can be provided to the ContentConfig constructor.
|
|
28679
|
-
*
|
|
28680
|
-
* @experimental As of version 1.122.
|
|
28681
29013
|
*/
|
|
28682
29014
|
interface $ContentConfigSettings extends sap.ui.core.$ElementSettings {
|
|
28683
29015
|
/**
|
|
@@ -30858,6 +31190,7 @@ declare namespace sap {
|
|
|
30858
31190
|
* - `strong`
|
|
30859
31191
|
* - `span`
|
|
30860
31192
|
* - `u`
|
|
31193
|
+
* - `s`
|
|
30861
31194
|
* - `dl`
|
|
30862
31195
|
* - `dt`
|
|
30863
31196
|
* - `dd`
|
|
@@ -31836,8 +32169,7 @@ declare namespace sap {
|
|
|
31836
32169
|
/**
|
|
31837
32170
|
* Specifies the interaction mode.
|
|
31838
32171
|
*
|
|
31839
|
-
* @experimental As of version 1.121.
|
|
31840
|
-
* may be done before its official public release. Use at your own discretion.
|
|
32172
|
+
* @experimental As of version 1.121.
|
|
31841
32173
|
*/
|
|
31842
32174
|
interactionMode?:
|
|
31843
32175
|
| sap.m.IconTabFilterInteractionMode
|
|
@@ -33779,7 +34111,7 @@ declare namespace sap {
|
|
|
33779
34111
|
| `{${string}}`;
|
|
33780
34112
|
|
|
33781
34113
|
/**
|
|
33782
|
-
* Defines the maximum number of
|
|
34114
|
+
* Defines the maximum number of {@link sap.m.ListItemBase#getActions actions} displayed for the items.
|
|
33783
34115
|
*
|
|
33784
34116
|
* If the number of item actions exceeds the `itemActionCount` property value, an overflow button will appear,
|
|
33785
34117
|
* providing access to the additional actions.
|
|
@@ -33787,6 +34119,8 @@ declare namespace sap {
|
|
|
33787
34119
|
* **Note:** Only values between `0-2` enables the use of the new `actions` aggregation. When enabled, the
|
|
33788
34120
|
* {@link sap.m.ListMode Delete} mode and the {@link sap.m.ListType Detail} list item type have no effect.
|
|
33789
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`.
|
|
33790
34124
|
*
|
|
33791
34125
|
* @since 1.137
|
|
33792
34126
|
*/
|
|
@@ -34220,6 +34554,13 @@ declare namespace sap {
|
|
|
34220
34554
|
*/
|
|
34221
34555
|
closed?: (oEvent: sap.ui.base.Event) => void;
|
|
34222
34556
|
|
|
34557
|
+
/**
|
|
34558
|
+
* Fired when the menu is opened.
|
|
34559
|
+
*
|
|
34560
|
+
* @since 1.146
|
|
34561
|
+
*/
|
|
34562
|
+
open?: (oEvent: sap.ui.base.Event) => void;
|
|
34563
|
+
|
|
34223
34564
|
/**
|
|
34224
34565
|
* Fired before the menu is closed. This event can be prevented which effectively prevents the menu from
|
|
34225
34566
|
* closing.
|
|
@@ -35647,8 +35988,6 @@ declare namespace sap {
|
|
|
35647
35988
|
* language. When set to false the font size will always be large
|
|
35648
35989
|
*
|
|
35649
35990
|
* @since 1.73
|
|
35650
|
-
* @experimental As of version 1.73. Disclaimer: this property is in a beta state - incompatible API changes
|
|
35651
|
-
* may be done before its official public release. Use at your own discretion.
|
|
35652
35991
|
*/
|
|
35653
35992
|
adaptiveFontSize?:
|
|
35654
35993
|
| boolean
|
|
@@ -40164,7 +40503,7 @@ declare namespace sap {
|
|
|
40164
40503
|
ariaLabelledBy?: Array<sap.ui.core.Control | string>;
|
|
40165
40504
|
|
|
40166
40505
|
/**
|
|
40167
|
-
*
|
|
40506
|
+
* The event is triggered when the user selects or deselects the radio button.
|
|
40168
40507
|
*/
|
|
40169
40508
|
select?: (oEvent: RadioButton$SelectEvent) => void;
|
|
40170
40509
|
}
|
|
@@ -43367,6 +43706,17 @@ declare namespace sap {
|
|
|
43367
43706
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
43368
43707
|
| `{${string}}`;
|
|
43369
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
|
+
|
|
43370
43720
|
/**
|
|
43371
43721
|
* Association to controls / ids which label this control (see WAI-ARIA attribute aria-labelledby).
|
|
43372
43722
|
*
|
|
@@ -43559,8 +43909,7 @@ declare namespace sap {
|
|
|
43559
43909
|
| `{${string}}`;
|
|
43560
43910
|
|
|
43561
43911
|
/**
|
|
43562
|
-
* Enables alternating table row colors.
|
|
43563
|
-
* Deep themes. Alternate row coloring is not available for the High Contrast Black/White themes.
|
|
43912
|
+
* Enables alternating table row colors.
|
|
43564
43913
|
*
|
|
43565
43914
|
* @since 1.52
|
|
43566
43915
|
*/
|
|
@@ -44217,8 +44566,6 @@ declare namespace sap {
|
|
|
44217
44566
|
|
|
44218
44567
|
/**
|
|
44219
44568
|
* Describes the settings that can be provided to the TileAttribute constructor.
|
|
44220
|
-
*
|
|
44221
|
-
* @experimental As of version 1.122.
|
|
44222
44569
|
*/
|
|
44223
44570
|
interface $TileAttributeSettings extends sap.ui.core.$ControlSettings {
|
|
44224
44571
|
/**
|
|
@@ -47600,6 +47947,11 @@ declare namespace sap {
|
|
|
47600
47947
|
item?: sap.m.IMenuItem;
|
|
47601
47948
|
}
|
|
47602
47949
|
|
|
47950
|
+
/**
|
|
47951
|
+
* Parameters of the Menu#open event.
|
|
47952
|
+
*/
|
|
47953
|
+
interface Menu$OpenEventParameters {}
|
|
47954
|
+
|
|
47603
47955
|
/**
|
|
47604
47956
|
* Parameters of the MenuButton#beforeMenuOpen event.
|
|
47605
47957
|
*/
|
|
@@ -48782,7 +49134,10 @@ declare namespace sap {
|
|
|
48782
49134
|
*/
|
|
48783
49135
|
interface RadioButton$SelectEventParameters {
|
|
48784
49136
|
/**
|
|
48785
|
-
*
|
|
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.
|
|
48786
49141
|
*/
|
|
48787
49142
|
selected?: boolean;
|
|
48788
49143
|
}
|
|
@@ -58780,6 +59135,8 @@ declare namespace sap {
|
|
|
58780
59135
|
* the navigation arrows.
|
|
58781
59136
|
* - On desktop, navigation is done with the navigation arrows.
|
|
58782
59137
|
* - The paging indicator (when activated) is visible on each form factor.
|
|
59138
|
+
* - When using {@link sap.m.CarouselLayout CarouselLayout} with the `responsive` property set to `true`,
|
|
59139
|
+
* the number of visible pages adjusts automatically based on the available width and the specified `minPageWidth`.
|
|
58783
59140
|
*/
|
|
58784
59141
|
class Carousel extends sap.ui.core.Control {
|
|
58785
59142
|
/**
|
|
@@ -59750,6 +60107,41 @@ declare namespace sap {
|
|
|
59750
60107
|
* @returns Metadata object describing this class
|
|
59751
60108
|
*/
|
|
59752
60109
|
static getMetadata(): sap.ui.base.ManagedObjectMetadata;
|
|
60110
|
+
/**
|
|
60111
|
+
* Gets current value of property {@link #getMinPageWidth minPageWidth}.
|
|
60112
|
+
*
|
|
60113
|
+
* Defines the minimum width, in pixels, for each page to be displayed in the `Carousel` control.
|
|
60114
|
+
*
|
|
60115
|
+
* This property is used as a constraint when `responsive` mode is enabled, ensuring that pages are never
|
|
60116
|
+
* rendered smaller than this specified width. The carousel automatically calculates the number of pages
|
|
60117
|
+
* that can fit within the available viewport while respecting the specified minimum width requirement.
|
|
60118
|
+
*
|
|
60119
|
+
* **Note:** This property is only effective when the `responsive` property is set to `true`.
|
|
60120
|
+
*
|
|
60121
|
+
* Default value is `148`.
|
|
60122
|
+
*
|
|
60123
|
+
*
|
|
60124
|
+
* @returns Value of property `minPageWidth`
|
|
60125
|
+
*/
|
|
60126
|
+
getMinPageWidth(): int;
|
|
60127
|
+
/**
|
|
60128
|
+
* Gets current value of property {@link #getResponsive responsive}.
|
|
60129
|
+
*
|
|
60130
|
+
* Activates the responsive layout mode, where the number of visible carousel pages automatically adjusts
|
|
60131
|
+
* based on the available width and the specified page width.
|
|
60132
|
+
*
|
|
60133
|
+
* When this option is enabled, the carousel dynamically calculates and displays as many items as can fit
|
|
60134
|
+
* within the viewport while adhering to the `minPageWidth` constraint.
|
|
60135
|
+
*
|
|
60136
|
+
* **Note:** Enabling this option overrides the `visiblePagesCount` property and disables the `loop` functionality
|
|
60137
|
+
* of the carousel.
|
|
60138
|
+
*
|
|
60139
|
+
* Default value is `false`.
|
|
60140
|
+
*
|
|
60141
|
+
*
|
|
60142
|
+
* @returns Value of property `responsive`
|
|
60143
|
+
*/
|
|
60144
|
+
getResponsive(): boolean;
|
|
59753
60145
|
/**
|
|
59754
60146
|
* Gets current value of property {@link #getScrollMode scrollMode}.
|
|
59755
60147
|
*
|
|
@@ -59772,15 +60164,66 @@ declare namespace sap {
|
|
|
59772
60164
|
* Defines how many pages are displayed in the visible area of the `Carousel` control. Value should be a
|
|
59773
60165
|
* positive number.
|
|
59774
60166
|
*
|
|
59775
|
-
* **Note:** When this property is set to something different
|
|
60167
|
+
* **Note:** When this property is set to something different from the default value, the `loop` property
|
|
59776
60168
|
* of `Carousel` is ignored.
|
|
59777
60169
|
*
|
|
60170
|
+
* **Note:** This property is ignored when the `responsive` property is set to `true`.
|
|
60171
|
+
*
|
|
59778
60172
|
* Default value is `1`.
|
|
59779
60173
|
*
|
|
59780
60174
|
*
|
|
59781
60175
|
* @returns Value of property `visiblePagesCount`
|
|
59782
60176
|
*/
|
|
59783
60177
|
getVisiblePagesCount(): int;
|
|
60178
|
+
/**
|
|
60179
|
+
* Sets a new value for property {@link #getMinPageWidth minPageWidth}.
|
|
60180
|
+
*
|
|
60181
|
+
* Defines the minimum width, in pixels, for each page to be displayed in the `Carousel` control.
|
|
60182
|
+
*
|
|
60183
|
+
* This property is used as a constraint when `responsive` mode is enabled, ensuring that pages are never
|
|
60184
|
+
* rendered smaller than this specified width. The carousel automatically calculates the number of pages
|
|
60185
|
+
* that can fit within the available viewport while respecting the specified minimum width requirement.
|
|
60186
|
+
*
|
|
60187
|
+
* **Note:** This property is only effective when the `responsive` property is set to `true`.
|
|
60188
|
+
*
|
|
60189
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
60190
|
+
*
|
|
60191
|
+
* Default value is `148`.
|
|
60192
|
+
*
|
|
60193
|
+
*
|
|
60194
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
60195
|
+
*/
|
|
60196
|
+
setMinPageWidth(
|
|
60197
|
+
/**
|
|
60198
|
+
* New value for property `minPageWidth`
|
|
60199
|
+
*/
|
|
60200
|
+
iMinPageWidth?: int
|
|
60201
|
+
): this;
|
|
60202
|
+
/**
|
|
60203
|
+
* Sets a new value for property {@link #getResponsive responsive}.
|
|
60204
|
+
*
|
|
60205
|
+
* Activates the responsive layout mode, where the number of visible carousel pages automatically adjusts
|
|
60206
|
+
* based on the available width and the specified page width.
|
|
60207
|
+
*
|
|
60208
|
+
* When this option is enabled, the carousel dynamically calculates and displays as many items as can fit
|
|
60209
|
+
* within the viewport while adhering to the `minPageWidth` constraint.
|
|
60210
|
+
*
|
|
60211
|
+
* **Note:** Enabling this option overrides the `visiblePagesCount` property and disables the `loop` functionality
|
|
60212
|
+
* of the carousel.
|
|
60213
|
+
*
|
|
60214
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
60215
|
+
*
|
|
60216
|
+
* Default value is `false`.
|
|
60217
|
+
*
|
|
60218
|
+
*
|
|
60219
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
60220
|
+
*/
|
|
60221
|
+
setResponsive(
|
|
60222
|
+
/**
|
|
60223
|
+
* New value for property `responsive`
|
|
60224
|
+
*/
|
|
60225
|
+
bResponsive?: boolean
|
|
60226
|
+
): this;
|
|
59784
60227
|
/**
|
|
59785
60228
|
* Sets a new value for property {@link #getScrollMode scrollMode}.
|
|
59786
60229
|
*
|
|
@@ -59810,9 +60253,11 @@ declare namespace sap {
|
|
|
59810
60253
|
* Defines how many pages are displayed in the visible area of the `Carousel` control. Value should be a
|
|
59811
60254
|
* positive number.
|
|
59812
60255
|
*
|
|
59813
|
-
* **Note:** When this property is set to something different
|
|
60256
|
+
* **Note:** When this property is set to something different from the default value, the `loop` property
|
|
59814
60257
|
* of `Carousel` is ignored.
|
|
59815
60258
|
*
|
|
60259
|
+
* **Note:** This property is ignored when the `responsive` property is set to `true`.
|
|
60260
|
+
*
|
|
59816
60261
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
59817
60262
|
*
|
|
59818
60263
|
* Default value is `1`.
|
|
@@ -63852,7 +64297,6 @@ declare namespace sap {
|
|
|
63852
64297
|
* This element is used within the TileAttribute control that generates either a link or text
|
|
63853
64298
|
*
|
|
63854
64299
|
* @since 1.122
|
|
63855
|
-
* @experimental As of version 1.122.
|
|
63856
64300
|
*/
|
|
63857
64301
|
class ContentConfig extends sap.ui.core.Element {
|
|
63858
64302
|
/**
|
|
@@ -75550,6 +75994,7 @@ declare namespace sap {
|
|
|
75550
75994
|
* - `strong`
|
|
75551
75995
|
* - `span`
|
|
75552
75996
|
* - `u`
|
|
75997
|
+
* - `s`
|
|
75553
75998
|
* - `dl`
|
|
75554
75999
|
* - `dt`
|
|
75555
76000
|
* - `dd`
|
|
@@ -79790,8 +80235,7 @@ declare namespace sap {
|
|
|
79790
80235
|
*
|
|
79791
80236
|
* Default value is `Auto`.
|
|
79792
80237
|
*
|
|
79793
|
-
* @experimental As of version 1.121.
|
|
79794
|
-
* may be done before its official public release. Use at your own discretion.
|
|
80238
|
+
* @experimental As of version 1.121.
|
|
79795
80239
|
*
|
|
79796
80240
|
* @returns Value of property `interactionMode`
|
|
79797
80241
|
*/
|
|
@@ -80094,8 +80538,7 @@ declare namespace sap {
|
|
|
80094
80538
|
*
|
|
80095
80539
|
* Default value is `Auto`.
|
|
80096
80540
|
*
|
|
80097
|
-
* @experimental As of version 1.121.
|
|
80098
|
-
* may be done before its official public release. Use at your own discretion.
|
|
80541
|
+
* @experimental As of version 1.121.
|
|
80099
80542
|
*
|
|
80100
80543
|
* @returns Reference to `this` in order to allow method chaining
|
|
80101
80544
|
*/
|
|
@@ -89912,7 +90355,7 @@ declare namespace sap {
|
|
|
89912
90355
|
/**
|
|
89913
90356
|
* Gets current value of property {@link #getItemActionCount itemActionCount}.
|
|
89914
90357
|
*
|
|
89915
|
-
* Defines the maximum number of
|
|
90358
|
+
* Defines the maximum number of {@link sap.m.ListItemBase#getActions actions} displayed for the items.
|
|
89916
90359
|
*
|
|
89917
90360
|
* If the number of item actions exceeds the `itemActionCount` property value, an overflow button will appear,
|
|
89918
90361
|
* providing access to the additional actions.
|
|
@@ -89920,6 +90363,8 @@ declare namespace sap {
|
|
|
89920
90363
|
* **Note:** Only values between `0-2` enables the use of the new `actions` aggregation. When enabled, the
|
|
89921
90364
|
* {@link sap.m.ListMode Delete} mode and the {@link sap.m.ListType Detail} list item type have no effect.
|
|
89922
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`.
|
|
89923
90368
|
*
|
|
89924
90369
|
* Default value is `-1`.
|
|
89925
90370
|
*
|
|
@@ -90589,7 +91034,7 @@ declare namespace sap {
|
|
|
90589
91034
|
/**
|
|
90590
91035
|
* Sets a new value for property {@link #getItemActionCount itemActionCount}.
|
|
90591
91036
|
*
|
|
90592
|
-
* Defines the maximum number of
|
|
91037
|
+
* Defines the maximum number of {@link sap.m.ListItemBase#getActions actions} displayed for the items.
|
|
90593
91038
|
*
|
|
90594
91039
|
* If the number of item actions exceeds the `itemActionCount` property value, an overflow button will appear,
|
|
90595
91040
|
* providing access to the additional actions.
|
|
@@ -90597,6 +91042,8 @@ declare namespace sap {
|
|
|
90597
91042
|
* **Note:** Only values between `0-2` enables the use of the new `actions` aggregation. When enabled, the
|
|
90598
91043
|
* {@link sap.m.ListMode Delete} mode and the {@link sap.m.ListType Detail} list item type have no effect.
|
|
90599
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`.
|
|
90600
91047
|
*
|
|
90601
91048
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
90602
91049
|
*
|
|
@@ -92810,6 +93257,55 @@ declare namespace sap {
|
|
|
92810
93257
|
*/
|
|
92811
93258
|
oListener?: object
|
|
92812
93259
|
): this;
|
|
93260
|
+
/**
|
|
93261
|
+
* Attaches event handler `fnFunction` to the {@link #event:open open} event of this `sap.m.Menu`.
|
|
93262
|
+
*
|
|
93263
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
93264
|
+
* otherwise it will be bound to this `sap.m.Menu` itself.
|
|
93265
|
+
*
|
|
93266
|
+
* Fired when the menu is opened.
|
|
93267
|
+
*
|
|
93268
|
+
* @since 1.146
|
|
93269
|
+
*
|
|
93270
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
93271
|
+
*/
|
|
93272
|
+
attachOpen(
|
|
93273
|
+
/**
|
|
93274
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
93275
|
+
* object when firing the event
|
|
93276
|
+
*/
|
|
93277
|
+
oData: object,
|
|
93278
|
+
/**
|
|
93279
|
+
* The function to be called when the event occurs
|
|
93280
|
+
*/
|
|
93281
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
93282
|
+
/**
|
|
93283
|
+
* Context object to call the event handler with. Defaults to this `sap.m.Menu` itself
|
|
93284
|
+
*/
|
|
93285
|
+
oListener?: object
|
|
93286
|
+
): this;
|
|
93287
|
+
/**
|
|
93288
|
+
* Attaches event handler `fnFunction` to the {@link #event:open open} event of this `sap.m.Menu`.
|
|
93289
|
+
*
|
|
93290
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
93291
|
+
* otherwise it will be bound to this `sap.m.Menu` itself.
|
|
93292
|
+
*
|
|
93293
|
+
* Fired when the menu is opened.
|
|
93294
|
+
*
|
|
93295
|
+
* @since 1.146
|
|
93296
|
+
*
|
|
93297
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
93298
|
+
*/
|
|
93299
|
+
attachOpen(
|
|
93300
|
+
/**
|
|
93301
|
+
* The function to be called when the event occurs
|
|
93302
|
+
*/
|
|
93303
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
93304
|
+
/**
|
|
93305
|
+
* Context object to call the event handler with. Defaults to this `sap.m.Menu` itself
|
|
93306
|
+
*/
|
|
93307
|
+
oListener?: object
|
|
93308
|
+
): this;
|
|
92813
93309
|
/**
|
|
92814
93310
|
* Binds aggregation {@link #getItems items} to model data.
|
|
92815
93311
|
*
|
|
@@ -92899,6 +93395,25 @@ declare namespace sap {
|
|
|
92899
93395
|
*/
|
|
92900
93396
|
oListener?: object
|
|
92901
93397
|
): this;
|
|
93398
|
+
/**
|
|
93399
|
+
* Detaches event handler `fnFunction` from the {@link #event:open open} event of this `sap.m.Menu`.
|
|
93400
|
+
*
|
|
93401
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
93402
|
+
*
|
|
93403
|
+
* @since 1.146
|
|
93404
|
+
*
|
|
93405
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
93406
|
+
*/
|
|
93407
|
+
detachOpen(
|
|
93408
|
+
/**
|
|
93409
|
+
* The function to be called, when the event occurs
|
|
93410
|
+
*/
|
|
93411
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
93412
|
+
/**
|
|
93413
|
+
* Context object on which the given function had to be called
|
|
93414
|
+
*/
|
|
93415
|
+
oListener?: object
|
|
93416
|
+
): this;
|
|
92902
93417
|
/**
|
|
92903
93418
|
* Fires event {@link #event:beforeClose beforeClose} to attached listeners.
|
|
92904
93419
|
*
|
|
@@ -92942,6 +93457,20 @@ declare namespace sap {
|
|
|
92942
93457
|
*/
|
|
92943
93458
|
mParameters?: sap.m.Menu$ItemSelectedEventParameters
|
|
92944
93459
|
): this;
|
|
93460
|
+
/**
|
|
93461
|
+
* Fires event {@link #event:open open} to attached listeners.
|
|
93462
|
+
*
|
|
93463
|
+
* @since 1.146
|
|
93464
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
93465
|
+
*
|
|
93466
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
93467
|
+
*/
|
|
93468
|
+
fireOpen(
|
|
93469
|
+
/**
|
|
93470
|
+
* Parameters to pass along with the event
|
|
93471
|
+
*/
|
|
93472
|
+
mParameters?: object
|
|
93473
|
+
): this;
|
|
92945
93474
|
/**
|
|
92946
93475
|
* Gets content of aggregation {@link #getItems items}.
|
|
92947
93476
|
*
|
|
@@ -102189,8 +102718,6 @@ declare namespace sap {
|
|
|
102189
102718
|
* Default value is `true`.
|
|
102190
102719
|
*
|
|
102191
102720
|
* @since 1.73
|
|
102192
|
-
* @experimental As of version 1.73. Disclaimer: this property is in a beta state - incompatible API changes
|
|
102193
|
-
* may be done before its official public release. Use at your own discretion.
|
|
102194
102721
|
*
|
|
102195
102722
|
* @returns Value of property `adaptiveFontSize`
|
|
102196
102723
|
*/
|
|
@@ -102357,8 +102884,6 @@ declare namespace sap {
|
|
|
102357
102884
|
* Default value is `true`.
|
|
102358
102885
|
*
|
|
102359
102886
|
* @since 1.73
|
|
102360
|
-
* @experimental As of version 1.73. Disclaimer: this property is in a beta state - incompatible API changes
|
|
102361
|
-
* may be done before its official public release. Use at your own discretion.
|
|
102362
102887
|
*
|
|
102363
102888
|
* @returns Reference to `this` in order to allow method chaining
|
|
102364
102889
|
*/
|
|
@@ -108238,7 +108763,6 @@ declare namespace sap {
|
|
|
108238
108763
|
* Using more than one tokenizer in the same toolbar is not recomended, as it may lead to unexpected behavior.
|
|
108239
108764
|
* Do not use tokenizers within a toolbar if its active property is set to `true`.
|
|
108240
108765
|
*
|
|
108241
|
-
* @since 1.139
|
|
108242
108766
|
* @experimental As of version 1.139.
|
|
108243
108767
|
*/
|
|
108244
108768
|
class OverflowToolbarTokenizer
|
|
@@ -125559,7 +126083,7 @@ declare namespace sap {
|
|
|
125559
126083
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
125560
126084
|
* otherwise it will be bound to this `sap.m.RadioButton` itself.
|
|
125561
126085
|
*
|
|
125562
|
-
*
|
|
126086
|
+
* The event is triggered when the user selects or deselects the radio button.
|
|
125563
126087
|
*
|
|
125564
126088
|
*
|
|
125565
126089
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -125585,7 +126109,7 @@ declare namespace sap {
|
|
|
125585
126109
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
125586
126110
|
* otherwise it will be bound to this `sap.m.RadioButton` itself.
|
|
125587
126111
|
*
|
|
125588
|
-
*
|
|
126112
|
+
* The event is triggered when the user selects or deselects the radio button.
|
|
125589
126113
|
*
|
|
125590
126114
|
*
|
|
125591
126115
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -145082,6 +145606,19 @@ declare namespace sap {
|
|
|
145082
145606
|
* @returns Value of property `customTextOn`
|
|
145083
145607
|
*/
|
|
145084
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;
|
|
145085
145622
|
/**
|
|
145086
145623
|
* Gets current value of property {@link #getEnabled enabled}.
|
|
145087
145624
|
*
|
|
@@ -145190,6 +145727,26 @@ declare namespace sap {
|
|
|
145190
145727
|
*/
|
|
145191
145728
|
sCustomTextOn?: string
|
|
145192
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;
|
|
145193
145750
|
/**
|
|
145194
145751
|
* Sets a new value for property {@link #getEnabled enabled}.
|
|
145195
145752
|
*
|
|
@@ -146535,8 +147092,7 @@ declare namespace sap {
|
|
|
146535
147092
|
/**
|
|
146536
147093
|
* Gets current value of property {@link #getAlternateRowColors alternateRowColors}.
|
|
146537
147094
|
*
|
|
146538
|
-
* Enables alternating table row colors.
|
|
146539
|
-
* Deep themes. Alternate row coloring is not available for the High Contrast Black/White themes.
|
|
147095
|
+
* Enables alternating table row colors.
|
|
146540
147096
|
*
|
|
146541
147097
|
* Default value is `false`.
|
|
146542
147098
|
*
|
|
@@ -146759,8 +147315,7 @@ declare namespace sap {
|
|
|
146759
147315
|
/**
|
|
146760
147316
|
* Sets a new value for property {@link #getAlternateRowColors alternateRowColors}.
|
|
146761
147317
|
*
|
|
146762
|
-
* Enables alternating table row colors.
|
|
146763
|
-
* Deep themes. Alternate row coloring is not available for the High Contrast Black/White themes.
|
|
147318
|
+
* Enables alternating table row colors.
|
|
146764
147319
|
*
|
|
146765
147320
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
146766
147321
|
*
|
|
@@ -150378,7 +150933,6 @@ declare namespace sap {
|
|
|
150378
150933
|
* Holds detail of an attribute used in the ActionTile.
|
|
150379
150934
|
*
|
|
150380
150935
|
* @since 1.122
|
|
150381
|
-
* @experimental As of version 1.122.
|
|
150382
150936
|
*/
|
|
150383
150937
|
class TileAttribute extends sap.ui.core.Control {
|
|
150384
150938
|
/**
|
|
@@ -166218,7 +166772,6 @@ declare namespace sap {
|
|
|
166218
166772
|
* This enum is part of the 'sap/m/library' module export and must be accessed by the property 'ContentConfigType'.
|
|
166219
166773
|
*
|
|
166220
166774
|
* @since 1.122
|
|
166221
|
-
* @experimental As of version 1.122.
|
|
166222
166775
|
*/
|
|
166223
166776
|
enum ContentConfigType {
|
|
166224
166777
|
/**
|
|
@@ -166759,7 +167312,7 @@ declare namespace sap {
|
|
|
166759
167312
|
*
|
|
166760
167313
|
* Generic Tile renders buttons that are specified under 'actionButtons' aggregation
|
|
166761
167314
|
*
|
|
166762
|
-
* @
|
|
167315
|
+
* @since 1.96.0
|
|
166763
167316
|
*/
|
|
166764
167317
|
ActionMode = "ActionMode",
|
|
166765
167318
|
/**
|
|
@@ -166767,7 +167320,7 @@ declare namespace sap {
|
|
|
166767
167320
|
*
|
|
166768
167321
|
* Enables Article Mode.
|
|
166769
167322
|
*
|
|
166770
|
-
* @
|
|
167323
|
+
* @since 1.96.0
|
|
166771
167324
|
*/
|
|
166772
167325
|
ArticleMode = "ArticleMode",
|
|
166773
167326
|
/**
|
|
@@ -166786,7 +167339,6 @@ declare namespace sap {
|
|
|
166786
167339
|
* It is applicable only for the OneByOne FrameType and TwoByHalf FrameType.
|
|
166787
167340
|
*
|
|
166788
167341
|
* @since 1.96
|
|
166789
|
-
* @experimental As of version 1.96.
|
|
166790
167342
|
*/
|
|
166791
167343
|
IconMode = "IconMode",
|
|
166792
167344
|
/**
|
|
@@ -166924,7 +167476,7 @@ declare namespace sap {
|
|
|
166924
167476
|
*
|
|
166925
167477
|
* This enum is part of the 'sap/m/library' module export and must be accessed by the property 'IconTabFilterInteractionMode'.
|
|
166926
167478
|
*
|
|
166927
|
-
* @experimental As of version 1.121.
|
|
167479
|
+
* @experimental As of version 1.121.
|
|
166928
167480
|
*/
|
|
166929
167481
|
enum IconTabFilterInteractionMode {
|
|
166930
167482
|
/**
|
|
@@ -167426,8 +167978,6 @@ declare namespace sap {
|
|
|
167426
167978
|
* feature works under the Browser's Cross-Origin Resource Sharing (CORS) policy. This means that a web
|
|
167427
167979
|
* application using those APIs can only request resources from the same origin the application was loaded
|
|
167428
167980
|
* from unless the response from other origins includes the right CORS headers.
|
|
167429
|
-
*
|
|
167430
|
-
* @experimental As of version 1.106.
|
|
167431
167981
|
*/
|
|
167432
167982
|
InlineSvg = "InlineSvg",
|
|
167433
167983
|
}
|
|
@@ -167776,7 +168326,8 @@ declare namespace sap {
|
|
|
167776
168326
|
*/
|
|
167777
168327
|
Active = "Active",
|
|
167778
168328
|
/**
|
|
167779
|
-
* 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.
|
|
167780
168331
|
*/
|
|
167781
168332
|
Detail = "Detail",
|
|
167782
168333
|
/**
|
|
@@ -167789,7 +168340,8 @@ declare namespace sap {
|
|
|
167789
168340
|
*/
|
|
167790
168341
|
Inactive = "Inactive",
|
|
167791
168342
|
/**
|
|
167792
|
-
*
|
|
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.
|
|
167793
168345
|
*/
|
|
167794
168346
|
Navigation = "Navigation",
|
|
167795
168347
|
}
|
|
@@ -170608,6 +171160,11 @@ declare namespace sap {
|
|
|
170608
171160
|
Menu
|
|
170609
171161
|
>;
|
|
170610
171162
|
|
|
171163
|
+
/**
|
|
171164
|
+
* Event object of the Menu#open event.
|
|
171165
|
+
*/
|
|
171166
|
+
type Menu$OpenEvent = sap.ui.base.Event<Menu$OpenEventParameters, Menu>;
|
|
171167
|
+
|
|
170611
171168
|
/**
|
|
170612
171169
|
* Event object of the MenuButton#beforeMenuOpen event.
|
|
170613
171170
|
*/
|
|
@@ -172956,6 +173513,8 @@ declare namespace sap {
|
|
|
172956
173513
|
|
|
172957
173514
|
"sap/m/table/ColumnWidthController": undefined;
|
|
172958
173515
|
|
|
173516
|
+
"sap/m/table/Title": undefined;
|
|
173517
|
+
|
|
172959
173518
|
"sap/m/table/Util": undefined;
|
|
172960
173519
|
|
|
172961
173520
|
"sap/m/TablePersoController": undefined;
|