@openui5/ts-types 1.105.1 → 1.107.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/README.md +5 -1
- package/package.json +1 -1
- package/types/sap.f.d.ts +859 -136
- package/types/sap.m.d.ts +535 -201
- package/types/sap.tnt.d.ts +3 -3
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +31 -31
- package/types/sap.ui.core.d.ts +864 -367
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +5 -3
- package/types/sap.ui.integration.d.ts +256 -49
- package/types/sap.ui.layout.d.ts +7 -7
- package/types/sap.ui.mdc.d.ts +7 -1
- package/types/sap.ui.rta.d.ts +3 -1
- package/types/sap.ui.suite.d.ts +5 -5
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +32 -14
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +16 -16
- package/types/sap.ui.ux3.d.ts +11 -11
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +31 -28
- package/types/sap.ui.webc.main.d.ts +132 -104
- package/types/sap.uxap.d.ts +76 -1
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.107.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -393,7 +393,7 @@ declare namespace sap {
|
|
|
393
393
|
* @EXPERIMENTAL (since 1.104)
|
|
394
394
|
*
|
|
395
395
|
* This class offers `sap.ui.fl` capabilities. It should be used as the persistence layer in the {@link
|
|
396
|
-
* sap.m.p13n.Engine#register Engine#register}process.
|
|
396
|
+
* sap.m.p13n.Engine#register Engine#register} process.
|
|
397
397
|
*/
|
|
398
398
|
class FlexModificationHandler {
|
|
399
399
|
constructor();
|
|
@@ -401,8 +401,8 @@ declare namespace sap {
|
|
|
401
401
|
/**
|
|
402
402
|
* @EXPERIMENTAL (since 1.104)
|
|
403
403
|
*
|
|
404
|
-
* This class offers `localStorage` capabilities. It should be used as the persistence layer
|
|
405
|
-
* sap.m.p13n.Engine#register Engine#register} process.
|
|
404
|
+
* This class offers `localStorage` persistence capabilities. It should be used as the persistence layer
|
|
405
|
+
* in the {@link sap.m.p13n.Engine#register Engine#register} process.
|
|
406
406
|
*/
|
|
407
407
|
class LocalStorageModificationHandler {
|
|
408
408
|
constructor();
|
|
@@ -591,35 +591,34 @@ declare namespace sap {
|
|
|
591
591
|
* @SINCE 1.104
|
|
592
592
|
* @EXPERIMENTAL (since 1.104)
|
|
593
593
|
*
|
|
594
|
-
* The `Engine` offers personalization capabilities by registering a control instance for modification
|
|
595
|
-
* as:
|
|
594
|
+
* The `Engine` entity offers personalization capabilities by registering a control instance for modification,
|
|
595
|
+
* such as:
|
|
596
596
|
*
|
|
597
597
|
*
|
|
598
598
|
* - `sap.m.p13n.Popup` initialization
|
|
599
599
|
* - Storing personalization states by choosing the desired persistence layer
|
|
600
600
|
* - State appliance considering the persistence layer
|
|
601
601
|
*
|
|
602
|
-
* The Engine
|
|
603
|
-
*
|
|
602
|
+
* The Engine must be used whenever personalization should be enabled by taking a certain persistence layer
|
|
603
|
+
* into account. Available controller implementations for the registration process are:
|
|
604
604
|
*
|
|
605
605
|
*
|
|
606
|
-
* - {@link sap.m.p13n.SelectionController SelectionController}:
|
|
607
|
-
* entries
|
|
608
|
-
* - {@link sap.m.p13n.SortController SortController}: can be used to define a list of sortable properties
|
|
606
|
+
* - {@link sap.m.p13n.SelectionController SelectionController}: Used to define a list of selectable entries
|
|
609
607
|
*
|
|
610
|
-
* - {@link sap.m.p13n.
|
|
608
|
+
* - {@link sap.m.p13n.SortController SortController}: Used to define a list of sortable properties
|
|
609
|
+
* - {@link sap.m.p13n.GroupController GroupController}: Used to define a list of groupable properties
|
|
611
610
|
*
|
|
612
611
|
*
|
|
613
612
|
* The following persistence layers can be chosen for personalization services:
|
|
614
613
|
*
|
|
615
614
|
*
|
|
616
|
-
* - {@link sap.m.p13n.modification.FlexModificationHandler FlexModificationHandler}:
|
|
617
|
-
* with `sap.ui.fl.variants.VariantManagement` to persist state in
|
|
615
|
+
* - {@link sap.m.p13n.modification.FlexModificationHandler FlexModificationHandler}: Used in combination
|
|
616
|
+
* with `sap.ui.fl.variants.VariantManagement` to persist a state in variants using `sap.ui.fl` capabilities.
|
|
618
617
|
*
|
|
619
618
|
* - {@link sap.m.p13n.modification.LocalStorageModificationHandler LocalStorageModificationHandler}:
|
|
620
|
-
*
|
|
621
|
-
* - {@link sap.m.p13n.modification.ModificationHandler ModificationHandler}:
|
|
622
|
-
*
|
|
619
|
+
* Used to store a personalization state in the local storage
|
|
620
|
+
* - {@link sap.m.p13n.modification.ModificationHandler ModificationHandler}: Used by default - this handler
|
|
621
|
+
* will not persist a state.
|
|
623
622
|
*/
|
|
624
623
|
interface Engine {
|
|
625
624
|
/**
|
|
@@ -654,8 +653,8 @@ declare namespace sap {
|
|
|
654
653
|
/**
|
|
655
654
|
* @EXPERIMENTAL (since 1.104)
|
|
656
655
|
*
|
|
657
|
-
*
|
|
658
|
-
* matching the
|
|
656
|
+
* Applies a state to a control by passing an object that contains the registered controller key and an
|
|
657
|
+
* object matching the inner subcontroller logic.
|
|
659
658
|
*
|
|
660
659
|
* @returns A Promise resolving after the state has been applied
|
|
661
660
|
*/
|
|
@@ -669,14 +668,14 @@ declare namespace sap {
|
|
|
669
668
|
*/
|
|
670
669
|
oState: object,
|
|
671
670
|
/**
|
|
672
|
-
* Defines whether the state should be an additional delta
|
|
671
|
+
* Defines whether the state should be an additional delta of the current control state
|
|
673
672
|
*/
|
|
674
673
|
bApplyAbsolute: boolean
|
|
675
674
|
): Promise<any>;
|
|
676
675
|
/**
|
|
677
676
|
* @EXPERIMENTAL (since 1.104)
|
|
678
677
|
*
|
|
679
|
-
* Attaches an event handler to the `StateHandlerRegistry` class. The event handler
|
|
678
|
+
* Attaches an event handler to the `StateHandlerRegistry` class. The event handler is fired every time
|
|
680
679
|
* a user triggers a personalization change for a control instance during runtime.
|
|
681
680
|
*
|
|
682
681
|
* @returns Returns `this` to allow method chaining
|
|
@@ -690,8 +689,8 @@ declare namespace sap {
|
|
|
690
689
|
/**
|
|
691
690
|
* @EXPERIMENTAL (since 1.104)
|
|
692
691
|
*
|
|
693
|
-
*
|
|
694
|
-
* registry and all instance
|
|
692
|
+
* Unregisters a registered control. By unregistering a control the control is removed from the `Engine`
|
|
693
|
+
* registry, and all instance-specific submodules, such as the registered controllers, are destroyed.
|
|
695
694
|
*/
|
|
696
695
|
deregister(
|
|
697
696
|
/**
|
|
@@ -716,44 +715,28 @@ declare namespace sap {
|
|
|
716
715
|
/**
|
|
717
716
|
* @EXPERIMENTAL (since 1.104)
|
|
718
717
|
*
|
|
719
|
-
* This method
|
|
720
|
-
* for the control instance.
|
|
721
|
-
*/
|
|
722
|
-
register(
|
|
723
|
-
/**
|
|
724
|
-
* The control instance to be registered for adaptation
|
|
725
|
-
*/
|
|
726
|
-
oControl: sap.ui.core.Control,
|
|
727
|
-
/**
|
|
728
|
-
* The config object providing key value pairs of keys and `sap.m.p13n.*Controller` classes.
|
|
729
|
-
*/
|
|
730
|
-
oConfig: Object
|
|
731
|
-
): void;
|
|
732
|
-
/**
|
|
733
|
-
* @EXPERIMENTAL (since 1.104)
|
|
718
|
+
* This method can be used to trigger a reset to the provided control instance.
|
|
734
719
|
*
|
|
735
|
-
*
|
|
736
|
-
*
|
|
737
|
-
* @returns A Promise resolving once the reset is completed.
|
|
720
|
+
* @returns A Promise resolving once the reset is completed
|
|
738
721
|
*/
|
|
739
722
|
reset(
|
|
740
723
|
/**
|
|
741
|
-
* The
|
|
724
|
+
* The related control instance
|
|
742
725
|
*/
|
|
743
726
|
oControl: sap.ui.core.Control,
|
|
744
727
|
/**
|
|
745
|
-
* The key for the affected
|
|
728
|
+
* The key for the affected configuration
|
|
746
729
|
*/
|
|
747
730
|
aKeys: string
|
|
748
731
|
): Promise<any>;
|
|
749
732
|
/**
|
|
750
733
|
* @EXPERIMENTAL (since 1.104)
|
|
751
734
|
*
|
|
752
|
-
* Retrieves the
|
|
753
|
-
*
|
|
754
|
-
*
|
|
735
|
+
* Retrieves the state for a given control instance after all necessary changes have been applied (e.g.
|
|
736
|
+
* modification handler appliance). After the returned `Promise` has been resolved, the returned state is
|
|
737
|
+
* in sync with the related state object of the control.
|
|
755
738
|
*
|
|
756
|
-
* @returns
|
|
739
|
+
* @returns A Promise resolving in the current control state
|
|
757
740
|
*/
|
|
758
741
|
retrieveState(
|
|
759
742
|
/**
|
|
@@ -766,15 +749,15 @@ declare namespace sap {
|
|
|
766
749
|
*
|
|
767
750
|
* Opens the personalization dialog.
|
|
768
751
|
*
|
|
769
|
-
* @returns Promise resolving in the `sap.m.p13n.Popup` instance
|
|
752
|
+
* @returns Promise resolving in the `sap.m.p13n.Popup` instance
|
|
770
753
|
*/
|
|
771
754
|
show(
|
|
772
755
|
/**
|
|
773
|
-
* The control instance
|
|
756
|
+
* The control instance that is personalized
|
|
774
757
|
*/
|
|
775
758
|
oControl: sap.ui.core.Control,
|
|
776
759
|
/**
|
|
777
|
-
* The affected panels that
|
|
760
|
+
* The affected panels that are added to the `sap.m.p13n.Popup`
|
|
778
761
|
*/
|
|
779
762
|
vPanelKeys: string | string[],
|
|
780
763
|
/**
|
|
@@ -786,12 +769,12 @@ declare namespace sap {
|
|
|
786
769
|
*/
|
|
787
770
|
title?: string;
|
|
788
771
|
/**
|
|
789
|
-
* The source control to be used by the `sap.m.p13n.Popup` control (only necessary
|
|
790
|
-
*
|
|
772
|
+
* The source control to be used by the `sap.m.p13n.Popup` control (only necessary if the mode is set to
|
|
773
|
+
* `ResponsivePopover`)
|
|
791
774
|
*/
|
|
792
775
|
source?: sap.ui.core.Control;
|
|
793
776
|
/**
|
|
794
|
-
* The mode
|
|
777
|
+
* The mode is used by the `sap.m.p13n.Popup` control
|
|
795
778
|
*/
|
|
796
779
|
mode?: object;
|
|
797
780
|
/**
|
|
@@ -1048,7 +1031,7 @@ declare namespace sap {
|
|
|
1048
1031
|
* @SINCE 1.104
|
|
1049
1032
|
* @EXPERIMENTAL
|
|
1050
1033
|
*
|
|
1051
|
-
* The `GroupController` serves as base class to create
|
|
1034
|
+
* The `GroupController` entity serves as a base class to create group-specific personalization implementations.
|
|
1052
1035
|
*/
|
|
1053
1036
|
class GroupController extends sap.ui.base.Object {
|
|
1054
1037
|
/**
|
|
@@ -1064,7 +1047,7 @@ declare namespace sap {
|
|
|
1064
1047
|
*/
|
|
1065
1048
|
mSettings?: {
|
|
1066
1049
|
/**
|
|
1067
|
-
* The control instance
|
|
1050
|
+
* The control instance that is personalized by this controller
|
|
1068
1051
|
*/
|
|
1069
1052
|
control: sap.ui.core.Control;
|
|
1070
1053
|
}
|
|
@@ -1593,7 +1576,7 @@ declare namespace sap {
|
|
|
1593
1576
|
/**
|
|
1594
1577
|
* @EXPERIMENTAL (since 1.104)
|
|
1595
1578
|
*
|
|
1596
|
-
* The `SelectionController` serves as base class to create control
|
|
1579
|
+
* The `SelectionController` entity serves as a base class to create control-specific personalization implementations.
|
|
1597
1580
|
*/
|
|
1598
1581
|
class SelectionController extends sap.ui.base.Object {
|
|
1599
1582
|
/**
|
|
@@ -1609,11 +1592,11 @@ declare namespace sap {
|
|
|
1609
1592
|
*/
|
|
1610
1593
|
mSettings?: {
|
|
1611
1594
|
/**
|
|
1612
|
-
* The control instance
|
|
1595
|
+
* The control instance that is personalized by this controller
|
|
1613
1596
|
*/
|
|
1614
1597
|
control: sap.ui.core.Control;
|
|
1615
1598
|
/**
|
|
1616
|
-
* The name of the
|
|
1599
|
+
* The name of the aggregation that is now managed by this controller
|
|
1617
1600
|
*/
|
|
1618
1601
|
targetAggregation: string;
|
|
1619
1602
|
}
|
|
@@ -1896,7 +1879,8 @@ declare namespace sap {
|
|
|
1896
1879
|
/**
|
|
1897
1880
|
* @EXPERIMENTAL (since 1.104)
|
|
1898
1881
|
*
|
|
1899
|
-
* The `SortController` serves as base class to create
|
|
1882
|
+
* The `SortController` entity serves as a base class to create personalization implementations that are
|
|
1883
|
+
* specific to sorting.
|
|
1900
1884
|
*/
|
|
1901
1885
|
class SortController extends sap.ui.base.Object {
|
|
1902
1886
|
/**
|
|
@@ -1912,7 +1896,7 @@ declare namespace sap {
|
|
|
1912
1896
|
*/
|
|
1913
1897
|
mSettings?: {
|
|
1914
1898
|
/**
|
|
1915
|
-
* The control instance
|
|
1899
|
+
* The control instance that is personalized by this controller
|
|
1916
1900
|
*/
|
|
1917
1901
|
control: sap.ui.core.Control;
|
|
1918
1902
|
}
|
|
@@ -2057,6 +2041,19 @@ declare namespace sap {
|
|
|
2057
2041
|
): this;
|
|
2058
2042
|
}
|
|
2059
2043
|
|
|
2044
|
+
/**
|
|
2045
|
+
* @EXPERIMENTAL (since 1.104)
|
|
2046
|
+
*
|
|
2047
|
+
* The central registration for personalization functionality. The registration is a precondition for using
|
|
2048
|
+
* `Engine` functionality for a control instance. Once the control instance has been registered, it can
|
|
2049
|
+
* be passed to the related `Engine` methods that always expect a control instance as parameter. Only registered
|
|
2050
|
+
* control instances can be used for personalization through the `Engine`.
|
|
2051
|
+
*/
|
|
2052
|
+
type EngineRegistrationConfig = (
|
|
2053
|
+
oControl: sap.ui.core.Control,
|
|
2054
|
+
oConfig: sap.m.p13n.EngineRegistrationConfig
|
|
2055
|
+
) => object;
|
|
2056
|
+
|
|
2060
2057
|
/**
|
|
2061
2058
|
* P13n `GroupItem` object type.
|
|
2062
2059
|
*/
|
|
@@ -9803,6 +9800,44 @@ declare namespace sap {
|
|
|
9803
9800
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
9804
9801
|
| `{${string}}`;
|
|
9805
9802
|
|
|
9803
|
+
/**
|
|
9804
|
+
* @EXPERIMENTAL (since 1.106)
|
|
9805
|
+
*
|
|
9806
|
+
* Enables CloudFile picker feature to upload files from cloud.
|
|
9807
|
+
*/
|
|
9808
|
+
cloudFilePickerEnabled?:
|
|
9809
|
+
| boolean
|
|
9810
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
9811
|
+
| `{${string}}`;
|
|
9812
|
+
|
|
9813
|
+
/**
|
|
9814
|
+
* @EXPERIMENTAL (since 1.106)
|
|
9815
|
+
*
|
|
9816
|
+
* Url of the FileShare OData V4 service supplied for CloudFile picker control.
|
|
9817
|
+
*/
|
|
9818
|
+
cloudFilePickerServiceUrl?:
|
|
9819
|
+
| sap.ui.core.URI
|
|
9820
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
9821
|
+
| `{${string}}`;
|
|
9822
|
+
|
|
9823
|
+
/**
|
|
9824
|
+
* @EXPERIMENTAL (since 1.106)
|
|
9825
|
+
*
|
|
9826
|
+
* The text of the CloudFile picker button. The default text is "Upload from cloud" (translated to the respective
|
|
9827
|
+
* language).
|
|
9828
|
+
*/
|
|
9829
|
+
cloudFilePickerButtonText?:
|
|
9830
|
+
| string
|
|
9831
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
9832
|
+
|
|
9833
|
+
/**
|
|
9834
|
+
* Lets the user upload entire files from directories and sub directories.
|
|
9835
|
+
*/
|
|
9836
|
+
directory?:
|
|
9837
|
+
| boolean
|
|
9838
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
9839
|
+
| `{${string}}`;
|
|
9840
|
+
|
|
9806
9841
|
/**
|
|
9807
9842
|
* Items representing files that have already been uploaded.
|
|
9808
9843
|
*/
|
|
@@ -12363,6 +12398,43 @@ declare namespace sap {
|
|
|
12363
12398
|
item?: sap.m.upload.UploadSetItem;
|
|
12364
12399
|
}
|
|
12365
12400
|
): this;
|
|
12401
|
+
/**
|
|
12402
|
+
* @EXPERIMENTAL (since 1.106)
|
|
12403
|
+
*
|
|
12404
|
+
* Gets current value of property {@link #getCloudFilePickerButtonText cloudFilePickerButtonText}.
|
|
12405
|
+
*
|
|
12406
|
+
* The text of the CloudFile picker button. The default text is "Upload from cloud" (translated to the respective
|
|
12407
|
+
* language).
|
|
12408
|
+
*
|
|
12409
|
+
* Default value is `empty string`.
|
|
12410
|
+
*
|
|
12411
|
+
* @returns Value of property `cloudFilePickerButtonText`
|
|
12412
|
+
*/
|
|
12413
|
+
getCloudFilePickerButtonText(): string;
|
|
12414
|
+
/**
|
|
12415
|
+
* @EXPERIMENTAL (since 1.106)
|
|
12416
|
+
*
|
|
12417
|
+
* Gets current value of property {@link #getCloudFilePickerEnabled cloudFilePickerEnabled}.
|
|
12418
|
+
*
|
|
12419
|
+
* Enables CloudFile picker feature to upload files from cloud.
|
|
12420
|
+
*
|
|
12421
|
+
* Default value is `false`.
|
|
12422
|
+
*
|
|
12423
|
+
* @returns Value of property `cloudFilePickerEnabled`
|
|
12424
|
+
*/
|
|
12425
|
+
getCloudFilePickerEnabled(): boolean;
|
|
12426
|
+
/**
|
|
12427
|
+
* @EXPERIMENTAL (since 1.106)
|
|
12428
|
+
*
|
|
12429
|
+
* Gets current value of property {@link #getCloudFilePickerServiceUrl cloudFilePickerServiceUrl}.
|
|
12430
|
+
*
|
|
12431
|
+
* Url of the FileShare OData V4 service supplied for CloudFile picker control.
|
|
12432
|
+
*
|
|
12433
|
+
* Default value is `empty string`.
|
|
12434
|
+
*
|
|
12435
|
+
* @returns Value of property `cloudFilePickerServiceUrl`
|
|
12436
|
+
*/
|
|
12437
|
+
getCloudFilePickerServiceUrl(): sap.ui.core.URI;
|
|
12366
12438
|
/**
|
|
12367
12439
|
* Returns an instance of the default `sap.ui.unified.FileUploader` used for adding files using the operating
|
|
12368
12440
|
* system's open file dialog, so that it can be customized, for example made invisible or assigned a different
|
|
@@ -12371,6 +12443,16 @@ declare namespace sap {
|
|
|
12371
12443
|
* @returns Instance of the default `sap.ui.unified.FileUploader`.
|
|
12372
12444
|
*/
|
|
12373
12445
|
getDefaultFileUploader(): sap.ui.unified.FileUploader;
|
|
12446
|
+
/**
|
|
12447
|
+
* Gets current value of property {@link #getDirectory directory}.
|
|
12448
|
+
*
|
|
12449
|
+
* Lets the user upload entire files from directories and sub directories.
|
|
12450
|
+
*
|
|
12451
|
+
* Default value is `false`.
|
|
12452
|
+
*
|
|
12453
|
+
* @returns Value of property `directory`
|
|
12454
|
+
*/
|
|
12455
|
+
getDirectory(): boolean;
|
|
12374
12456
|
/**
|
|
12375
12457
|
* Gets current value of property {@link #getDragDropDescription dragDropDescription}.
|
|
12376
12458
|
*
|
|
@@ -12782,6 +12864,81 @@ declare namespace sap {
|
|
|
12782
12864
|
* @returns this to allow method chaining
|
|
12783
12865
|
*/
|
|
12784
12866
|
selectAll(): this;
|
|
12867
|
+
/**
|
|
12868
|
+
* @EXPERIMENTAL (since 1.106)
|
|
12869
|
+
*
|
|
12870
|
+
* Sets a new value for property {@link #getCloudFilePickerButtonText cloudFilePickerButtonText}.
|
|
12871
|
+
*
|
|
12872
|
+
* The text of the CloudFile picker button. The default text is "Upload from cloud" (translated to the respective
|
|
12873
|
+
* language).
|
|
12874
|
+
*
|
|
12875
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
12876
|
+
*
|
|
12877
|
+
* Default value is `empty string`.
|
|
12878
|
+
*
|
|
12879
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
12880
|
+
*/
|
|
12881
|
+
setCloudFilePickerButtonText(
|
|
12882
|
+
/**
|
|
12883
|
+
* New value for property `cloudFilePickerButtonText`
|
|
12884
|
+
*/
|
|
12885
|
+
sCloudFilePickerButtonText?: string
|
|
12886
|
+
): this;
|
|
12887
|
+
/**
|
|
12888
|
+
* @EXPERIMENTAL (since 1.106)
|
|
12889
|
+
*
|
|
12890
|
+
* Sets a new value for property {@link #getCloudFilePickerEnabled cloudFilePickerEnabled}.
|
|
12891
|
+
*
|
|
12892
|
+
* Enables CloudFile picker feature to upload files from cloud.
|
|
12893
|
+
*
|
|
12894
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
12895
|
+
*
|
|
12896
|
+
* Default value is `false`.
|
|
12897
|
+
*
|
|
12898
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
12899
|
+
*/
|
|
12900
|
+
setCloudFilePickerEnabled(
|
|
12901
|
+
/**
|
|
12902
|
+
* New value for property `cloudFilePickerEnabled`
|
|
12903
|
+
*/
|
|
12904
|
+
bCloudFilePickerEnabled?: boolean
|
|
12905
|
+
): this;
|
|
12906
|
+
/**
|
|
12907
|
+
* @EXPERIMENTAL (since 1.106)
|
|
12908
|
+
*
|
|
12909
|
+
* Sets a new value for property {@link #getCloudFilePickerServiceUrl cloudFilePickerServiceUrl}.
|
|
12910
|
+
*
|
|
12911
|
+
* Url of the FileShare OData V4 service supplied for CloudFile picker control.
|
|
12912
|
+
*
|
|
12913
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
12914
|
+
*
|
|
12915
|
+
* Default value is `empty string`.
|
|
12916
|
+
*
|
|
12917
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
12918
|
+
*/
|
|
12919
|
+
setCloudFilePickerServiceUrl(
|
|
12920
|
+
/**
|
|
12921
|
+
* New value for property `cloudFilePickerServiceUrl`
|
|
12922
|
+
*/
|
|
12923
|
+
sCloudFilePickerServiceUrl?: sap.ui.core.URI
|
|
12924
|
+
): this;
|
|
12925
|
+
/**
|
|
12926
|
+
* Sets a new value for property {@link #getDirectory directory}.
|
|
12927
|
+
*
|
|
12928
|
+
* Lets the user upload entire files from directories and sub directories.
|
|
12929
|
+
*
|
|
12930
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
12931
|
+
*
|
|
12932
|
+
* Default value is `false`.
|
|
12933
|
+
*
|
|
12934
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
12935
|
+
*/
|
|
12936
|
+
setDirectory(
|
|
12937
|
+
/**
|
|
12938
|
+
* New value for property `directory`
|
|
12939
|
+
*/
|
|
12940
|
+
bDirectory?: boolean
|
|
12941
|
+
): this;
|
|
12785
12942
|
/**
|
|
12786
12943
|
* Sets a new value for property {@link #getDragDropDescription dragDropDescription}.
|
|
12787
12944
|
*
|
|
@@ -15492,7 +15649,7 @@ declare namespace sap {
|
|
|
15492
15649
|
| `{${string}}`;
|
|
15493
15650
|
|
|
15494
15651
|
/**
|
|
15495
|
-
* Defines the
|
|
15652
|
+
* Defines the list of colors displayed in the palette. Minimum is 2 colors, maximum is 15 colors.
|
|
15496
15653
|
*/
|
|
15497
15654
|
colors?:
|
|
15498
15655
|
| sap.ui.core.CSSColor[]
|
|
@@ -15508,7 +15665,8 @@ declare namespace sap {
|
|
|
15508
15665
|
| `{${string}}`;
|
|
15509
15666
|
|
|
15510
15667
|
/**
|
|
15511
|
-
*
|
|
15668
|
+
* Whether the popover shows a "More colors..." button that opens an additional color picker for the user
|
|
15669
|
+
* to choose specific colors, not present in the predefined range.
|
|
15512
15670
|
*/
|
|
15513
15671
|
showMoreColorsButton?:
|
|
15514
15672
|
| boolean
|
|
@@ -18319,10 +18477,7 @@ declare namespace sap {
|
|
|
18319
18477
|
*
|
|
18320
18478
|
* Background color of the GenericTile. Only applicable for IconMode.
|
|
18321
18479
|
*/
|
|
18322
|
-
backgroundColor?:
|
|
18323
|
-
| sap.ui.core.CSSColor
|
|
18324
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
18325
|
-
| `{${string}}`;
|
|
18480
|
+
backgroundColor?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
18326
18481
|
|
|
18327
18482
|
/**
|
|
18328
18483
|
* @SINCE 1.95
|
|
@@ -18346,6 +18501,17 @@ declare namespace sap {
|
|
|
18346
18501
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
18347
18502
|
| `{${string}}`;
|
|
18348
18503
|
|
|
18504
|
+
/**
|
|
18505
|
+
* @SINCE 1.106
|
|
18506
|
+
* @EXPERIMENTAL (since 1.106)
|
|
18507
|
+
*
|
|
18508
|
+
* The Tile rerenders on theme change.
|
|
18509
|
+
*/
|
|
18510
|
+
renderOnThemeChange?:
|
|
18511
|
+
| boolean
|
|
18512
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
18513
|
+
| `{${string}}`;
|
|
18514
|
+
|
|
18349
18515
|
/**
|
|
18350
18516
|
* The content of the tile.
|
|
18351
18517
|
*/
|
|
@@ -19145,6 +19311,13 @@ declare namespace sap {
|
|
|
19145
19311
|
| sap.m.Button
|
|
19146
19312
|
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
19147
19313
|
| `{${string}}`;
|
|
19314
|
+
|
|
19315
|
+
/**
|
|
19316
|
+
* @SINCE 1.106.0
|
|
19317
|
+
*
|
|
19318
|
+
* Association to controls / IDs which label those controls (see WAI-ARIA attribute aria-labelledBy).
|
|
19319
|
+
*/
|
|
19320
|
+
illustrationAriaLabelledBy?: Array<sap.ui.core.Control | string>;
|
|
19148
19321
|
}
|
|
19149
19322
|
|
|
19150
19323
|
interface $IllustrationSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -19168,6 +19341,13 @@ declare namespace sap {
|
|
|
19168
19341
|
* Defines which illustration type should be used when building the Symbol ID.
|
|
19169
19342
|
*/
|
|
19170
19343
|
type?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
19344
|
+
|
|
19345
|
+
/**
|
|
19346
|
+
* @SINCE 1.106.0
|
|
19347
|
+
*
|
|
19348
|
+
* Association to controls / IDs which label those controls (see WAI-ARIA attribute aria-labelledBy).
|
|
19349
|
+
*/
|
|
19350
|
+
ariaLabelledBy?: Array<sap.ui.core.Control | string>;
|
|
19171
19351
|
}
|
|
19172
19352
|
|
|
19173
19353
|
interface $ImageSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -19424,7 +19604,8 @@ declare namespace sap {
|
|
|
19424
19604
|
/**
|
|
19425
19605
|
* Maximum number of characters. Value '0' means the feature is switched off. This parameter is not compatible
|
|
19426
19606
|
* with the input type `sap.m.InputType.Number`. If the input type is set to `Number`, the `maxLength` value
|
|
19427
|
-
* is ignored.
|
|
19607
|
+
* is ignored. If the `maxLength` is set after there is already a longer value, this value will not get
|
|
19608
|
+
* truncated. The `maxLength` property has effect only when the value is modified by user interaction.
|
|
19428
19609
|
*/
|
|
19429
19610
|
maxLength?:
|
|
19430
19611
|
| int
|
|
@@ -19591,7 +19772,7 @@ declare namespace sap {
|
|
|
19591
19772
|
* Defines the display text formatter function.
|
|
19592
19773
|
*/
|
|
19593
19774
|
textFormatter?:
|
|
19594
|
-
|
|
|
19775
|
+
| Function
|
|
19595
19776
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
19596
19777
|
| `{${string}}`;
|
|
19597
19778
|
|
|
@@ -19601,7 +19782,7 @@ declare namespace sap {
|
|
|
19601
19782
|
* Defines the validation callback function called when a suggestion row gets selected.
|
|
19602
19783
|
*/
|
|
19603
19784
|
suggestionRowValidator?:
|
|
19604
|
-
|
|
|
19785
|
+
| Function
|
|
19605
19786
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
19606
19787
|
| `{${string}}`;
|
|
19607
19788
|
|
|
@@ -20213,7 +20394,7 @@ declare namespace sap {
|
|
|
20213
20394
|
* @SINCE 1.104.0
|
|
20214
20395
|
*
|
|
20215
20396
|
* Describes the accessibility role of the link:
|
|
20216
|
-
* - `LinkAccessibleRole.Default` - a
|
|
20397
|
+
* - `LinkAccessibleRole.Default` - a navigation is expected to the location given in `href` property
|
|
20217
20398
|
*
|
|
20218
20399
|
* - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
|
|
20219
20400
|
* scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
|
|
@@ -21236,7 +21417,7 @@ declare namespace sap {
|
|
|
21236
21417
|
* function. You can use this function in order to validate the description before displaying it.
|
|
21237
21418
|
*/
|
|
21238
21419
|
asyncDescriptionHandler?:
|
|
21239
|
-
|
|
|
21420
|
+
| Function
|
|
21240
21421
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
21241
21422
|
| `{${string}}`;
|
|
21242
21423
|
|
|
@@ -21245,7 +21426,7 @@ declare namespace sap {
|
|
|
21245
21426
|
* function. You can use this function in order to validate URLs before displaying them inside the description.
|
|
21246
21427
|
*/
|
|
21247
21428
|
asyncURLHandler?:
|
|
21248
|
-
|
|
|
21429
|
+
| Function
|
|
21249
21430
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
21250
21431
|
| `{${string}}`;
|
|
21251
21432
|
|
|
@@ -21421,7 +21602,7 @@ declare namespace sap {
|
|
|
21421
21602
|
* function.
|
|
21422
21603
|
*/
|
|
21423
21604
|
asyncDescriptionHandler?:
|
|
21424
|
-
|
|
|
21605
|
+
| Function
|
|
21425
21606
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
21426
21607
|
| `{${string}}`;
|
|
21427
21608
|
|
|
@@ -21430,7 +21611,7 @@ declare namespace sap {
|
|
|
21430
21611
|
* function.
|
|
21431
21612
|
*/
|
|
21432
21613
|
asyncURLHandler?:
|
|
21433
|
-
|
|
|
21614
|
+
| Function
|
|
21434
21615
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
21435
21616
|
| `{${string}}`;
|
|
21436
21617
|
|
|
@@ -27580,7 +27761,9 @@ declare namespace sap {
|
|
|
27580
27761
|
* @SINCE 1.11.2
|
|
27581
27762
|
*
|
|
27582
27763
|
* Determines whether the background image (if configured) should be proportionally stretched to cover the
|
|
27583
|
-
* whole Shell (false, default) or whether it should be tiled (true).
|
|
27764
|
+
* whole Shell (false, default) or whether it should be tiled (true). Note: the image will not be displayed
|
|
27765
|
+
* when the `sap.m.Shell` content is fully overlapping the `sap.m.Shell` background (e.g. when "appWidthLimited"
|
|
27766
|
+
* is set to "false").
|
|
27584
27767
|
*/
|
|
27585
27768
|
backgroundRepeat?:
|
|
27586
27769
|
| boolean
|
|
@@ -31531,7 +31714,9 @@ declare namespace sap {
|
|
|
31531
31714
|
*
|
|
31532
31715
|
* This association is used only when the `enableBranching` property of the Wizard is set to true. Use the
|
|
31533
31716
|
* association to store the next steps that are about to come after the current. If this is going to be
|
|
31534
|
-
* a final step - leave this association empty.
|
|
31717
|
+
* a final step - leave this association empty. **NOTE:** The association needs to be set prior the step
|
|
31718
|
+
* is shown. Dynamical addition of subsequent steps is not supported use case especially when the current
|
|
31719
|
+
* step is final (the association was empty before the step was displayed).
|
|
31535
31720
|
*/
|
|
31536
31721
|
subsequentSteps?: Array<sap.m.WizardStep | string>;
|
|
31537
31722
|
|
|
@@ -32248,8 +32433,7 @@ declare namespace sap {
|
|
|
32248
32433
|
*/
|
|
32249
32434
|
addLightBoxInstance(
|
|
32250
32435
|
/**
|
|
32251
|
-
*
|
|
32252
|
-
* as long as it has a close method.
|
|
32436
|
+
* LightBox to be added to instance manager.
|
|
32253
32437
|
*/
|
|
32254
32438
|
oLightBox: sap.m.LightBox
|
|
32255
32439
|
): this;
|
|
@@ -32301,7 +32485,7 @@ declare namespace sap {
|
|
|
32301
32485
|
*/
|
|
32302
32486
|
getOpenDialogs(): sap.ui.core.Control[];
|
|
32303
32487
|
/**
|
|
32304
|
-
* Gets all of the open LightBoxes. If there's no
|
|
32488
|
+
* Gets all of the open LightBoxes. If there's no LightBox open, an empty array is returned.
|
|
32305
32489
|
*
|
|
32306
32490
|
* @returns The opened LightBoxes.
|
|
32307
32491
|
*/
|
|
@@ -32410,20 +32594,18 @@ declare namespace sap {
|
|
|
32410
32594
|
/**
|
|
32411
32595
|
* Removes control from predefined dialog category in instance manager.
|
|
32412
32596
|
*
|
|
32413
|
-
* @returns The removed
|
|
32414
|
-
* of the removed popover.
|
|
32597
|
+
* @returns The removed dialog, or `null` if the dialog isn't managed.
|
|
32415
32598
|
*/
|
|
32416
32599
|
removeDialogInstance(
|
|
32417
32600
|
/**
|
|
32418
32601
|
* to be removed from instance manager.
|
|
32419
32602
|
*/
|
|
32420
32603
|
oDialog: sap.ui.core.Control
|
|
32421
|
-
): sap.ui.core.Control;
|
|
32604
|
+
): sap.ui.core.Control | null;
|
|
32422
32605
|
/**
|
|
32423
32606
|
* Removes a managed instance from the given category.
|
|
32424
32607
|
*
|
|
32425
|
-
* @returns The removed instance or `null
|
|
32426
|
-
* of the instance object.
|
|
32608
|
+
* @returns The removed instance, or `null` if the instance isn't managed.
|
|
32427
32609
|
*/
|
|
32428
32610
|
removeInstance(
|
|
32429
32611
|
/**
|
|
@@ -32438,8 +32620,7 @@ declare namespace sap {
|
|
|
32438
32620
|
/**
|
|
32439
32621
|
* Removes control from predefined lightbox category in instance manager.
|
|
32440
32622
|
*
|
|
32441
|
-
* @returns The removed
|
|
32442
|
-
* of the removed LightBox.
|
|
32623
|
+
* @returns The removed LightBox, or `null` if the LightBox isn't managed.
|
|
32443
32624
|
*/
|
|
32444
32625
|
removeLightBoxInstance(
|
|
32445
32626
|
/**
|
|
@@ -32450,8 +32631,7 @@ declare namespace sap {
|
|
|
32450
32631
|
/**
|
|
32451
32632
|
* Removes control from predefined popover category in instance manager.
|
|
32452
32633
|
*
|
|
32453
|
-
* @returns The removed popover or `null
|
|
32454
|
-
* of the removed popover.
|
|
32634
|
+
* @returns The removed popover, or `null` if the popover isn't managed.
|
|
32455
32635
|
*/
|
|
32456
32636
|
removePopoverInstance(
|
|
32457
32637
|
/**
|
|
@@ -35480,7 +35660,7 @@ declare namespace sap {
|
|
|
35480
35660
|
* The ariaDescribedBy to be removed or its index or ID
|
|
35481
35661
|
*/
|
|
35482
35662
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
35483
|
-
): sap.ui.core.ID;
|
|
35663
|
+
): sap.ui.core.ID | null;
|
|
35484
35664
|
/**
|
|
35485
35665
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
35486
35666
|
*
|
|
@@ -35491,7 +35671,7 @@ declare namespace sap {
|
|
|
35491
35671
|
* The ariaLabelledBy to be removed or its index or ID
|
|
35492
35672
|
*/
|
|
35493
35673
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
35494
|
-
): sap.ui.core.ID;
|
|
35674
|
+
): sap.ui.core.ID | null;
|
|
35495
35675
|
/**
|
|
35496
35676
|
* @SINCE 1.99.0
|
|
35497
35677
|
*
|
|
@@ -36312,7 +36492,7 @@ declare namespace sap {
|
|
|
36312
36492
|
* The ariaLabelledBy to be removed or its index or ID
|
|
36313
36493
|
*/
|
|
36314
36494
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
36315
|
-
): sap.ui.core.ID;
|
|
36495
|
+
): sap.ui.core.ID | null;
|
|
36316
36496
|
/**
|
|
36317
36497
|
* Removes a contentLeft from the aggregation {@link #getContentLeft contentLeft}.
|
|
36318
36498
|
*
|
|
@@ -36773,7 +36953,7 @@ declare namespace sap {
|
|
|
36773
36953
|
* The ariaLabelledBy to be removed or its index or ID
|
|
36774
36954
|
*/
|
|
36775
36955
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
36776
|
-
): sap.ui.core.ID;
|
|
36956
|
+
): sap.ui.core.ID | null;
|
|
36777
36957
|
/**
|
|
36778
36958
|
* @SINCE 1.34
|
|
36779
36959
|
*
|
|
@@ -37151,7 +37331,7 @@ declare namespace sap {
|
|
|
37151
37331
|
* The ariaLabelledBy to be removed or its index or ID
|
|
37152
37332
|
*/
|
|
37153
37333
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
37154
|
-
): sap.ui.core.ID;
|
|
37334
|
+
): sap.ui.core.ID | null;
|
|
37155
37335
|
/**
|
|
37156
37336
|
* Shows the text for the cancel button.
|
|
37157
37337
|
*
|
|
@@ -37503,7 +37683,7 @@ declare namespace sap {
|
|
|
37503
37683
|
* The ariaLabelledBy to be removed or its index or ID
|
|
37504
37684
|
*/
|
|
37505
37685
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
37506
|
-
): sap.ui.core.ID;
|
|
37686
|
+
): sap.ui.core.ID | null;
|
|
37507
37687
|
/**
|
|
37508
37688
|
* Sets a new value for property {@link #getCustomIcon customIcon}.
|
|
37509
37689
|
*
|
|
@@ -38097,7 +38277,7 @@ declare namespace sap {
|
|
|
38097
38277
|
* The ariaDescribedBy to be removed or its index or ID
|
|
38098
38278
|
*/
|
|
38099
38279
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
38100
|
-
): sap.ui.core.ID;
|
|
38280
|
+
): sap.ui.core.ID | null;
|
|
38101
38281
|
/**
|
|
38102
38282
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
38103
38283
|
*
|
|
@@ -38108,7 +38288,7 @@ declare namespace sap {
|
|
|
38108
38288
|
* The ariaLabelledBy to be removed or its index or ID
|
|
38109
38289
|
*/
|
|
38110
38290
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
38111
|
-
): sap.ui.core.ID;
|
|
38291
|
+
): sap.ui.core.ID | null;
|
|
38112
38292
|
/**
|
|
38113
38293
|
* Sets a new value for property {@link #getActiveIcon activeIcon}.
|
|
38114
38294
|
*
|
|
@@ -39627,7 +39807,7 @@ declare namespace sap {
|
|
|
39627
39807
|
* The ariaDescribedBy to be removed or its index or ID
|
|
39628
39808
|
*/
|
|
39629
39809
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
39630
|
-
): sap.ui.core.ID;
|
|
39810
|
+
): sap.ui.core.ID | null;
|
|
39631
39811
|
/**
|
|
39632
39812
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
39633
39813
|
*
|
|
@@ -39638,7 +39818,7 @@ declare namespace sap {
|
|
|
39638
39818
|
* The ariaLabelledBy to be removed or its index or ID
|
|
39639
39819
|
*/
|
|
39640
39820
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
39641
|
-
): sap.ui.core.ID;
|
|
39821
|
+
): sap.ui.core.ID | null;
|
|
39642
39822
|
/**
|
|
39643
39823
|
* Sets a new value for property {@link #getActiveHandling activeHandling}.
|
|
39644
39824
|
*
|
|
@@ -40431,6 +40611,8 @@ declare namespace sap {
|
|
|
40431
40611
|
): this;
|
|
40432
40612
|
/**
|
|
40433
40613
|
* Closes the `ColorPalettePopover`.
|
|
40614
|
+
*
|
|
40615
|
+
* @returns Reference to the closed control
|
|
40434
40616
|
*/
|
|
40435
40617
|
close(): sap.ui.core.Control;
|
|
40436
40618
|
/**
|
|
@@ -40480,7 +40662,7 @@ declare namespace sap {
|
|
|
40480
40662
|
*/
|
|
40481
40663
|
mParameters?: {
|
|
40482
40664
|
/**
|
|
40483
|
-
* The color
|
|
40665
|
+
* The selected color value.
|
|
40484
40666
|
*/
|
|
40485
40667
|
value?: sap.ui.core.CSSColor;
|
|
40486
40668
|
/**
|
|
@@ -40542,7 +40724,7 @@ declare namespace sap {
|
|
|
40542
40724
|
/**
|
|
40543
40725
|
* Gets current value of property {@link #getColors colors}.
|
|
40544
40726
|
*
|
|
40545
|
-
* Defines the
|
|
40727
|
+
* Defines the list of colors displayed in the palette. Minimum is 2 colors, maximum is 15 colors.
|
|
40546
40728
|
*
|
|
40547
40729
|
* Default value is `["gold", "darkorange", "indianred", "darkmagenta", "cornflowerblue", "deepskyblue",
|
|
40548
40730
|
* "darkcyan", "olivedrab", "darkslategray", "azure", "white", "lightgray", "darkgray", "dimgray", "black"]`.
|
|
@@ -40584,7 +40766,8 @@ declare namespace sap {
|
|
|
40584
40766
|
/**
|
|
40585
40767
|
* Gets current value of property {@link #getShowMoreColorsButton showMoreColorsButton}.
|
|
40586
40768
|
*
|
|
40587
|
-
*
|
|
40769
|
+
* Whether the popover shows a "More colors..." button that opens an additional color picker for the user
|
|
40770
|
+
* to choose specific colors, not present in the predefined range.
|
|
40588
40771
|
*
|
|
40589
40772
|
* Default value is `true`.
|
|
40590
40773
|
*
|
|
@@ -40603,6 +40786,21 @@ declare namespace sap {
|
|
|
40603
40786
|
* @returns Value of property `showRecentColorsSection`
|
|
40604
40787
|
*/
|
|
40605
40788
|
getShowRecentColorsSection(): boolean;
|
|
40789
|
+
/**
|
|
40790
|
+
* Opens the `ColorPalettePopover`.
|
|
40791
|
+
*
|
|
40792
|
+
* On table or desktop devices, the popover is positioned relative to the given `oControl` parameter. On
|
|
40793
|
+
* phones, it is shown full screen, the `oControl` parameter is ignored.
|
|
40794
|
+
*
|
|
40795
|
+
* @returns Reference to the opened control
|
|
40796
|
+
*/
|
|
40797
|
+
openBy(
|
|
40798
|
+
/**
|
|
40799
|
+
* When displayed on a tablet or desktop device, the `ColorPalettePopover` is positioned relative to this
|
|
40800
|
+
* control
|
|
40801
|
+
*/
|
|
40802
|
+
oCpntrol: sap.ui.core.Control
|
|
40803
|
+
): sap.ui.core.Control;
|
|
40606
40804
|
/**
|
|
40607
40805
|
* Sets a selected color for the ColorPicker control.
|
|
40608
40806
|
*
|
|
@@ -40617,7 +40815,7 @@ declare namespace sap {
|
|
|
40617
40815
|
/**
|
|
40618
40816
|
* Sets a new value for property {@link #getColors colors}.
|
|
40619
40817
|
*
|
|
40620
|
-
* Defines the
|
|
40818
|
+
* Defines the list of colors displayed in the palette. Minimum is 2 colors, maximum is 15 colors.
|
|
40621
40819
|
*
|
|
40622
40820
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
40623
40821
|
*
|
|
@@ -40687,7 +40885,8 @@ declare namespace sap {
|
|
|
40687
40885
|
/**
|
|
40688
40886
|
* Sets a new value for property {@link #getShowMoreColorsButton showMoreColorsButton}.
|
|
40689
40887
|
*
|
|
40690
|
-
*
|
|
40888
|
+
* Whether the popover shows a "More colors..." button that opens an additional color picker for the user
|
|
40889
|
+
* to choose specific colors, not present in the predefined range.
|
|
40691
40890
|
*
|
|
40692
40891
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
40693
40892
|
*
|
|
@@ -40830,7 +41029,7 @@ declare namespace sap {
|
|
|
40830
41029
|
/**
|
|
40831
41030
|
* @SINCE 1.98.0
|
|
40832
41031
|
*
|
|
40833
|
-
* Returns the `sap.ui.core.IColumnHeaderMenu<\code>, which is the current target of the association
|
|
41032
|
+
* Returns the `sap.ui.core.IColumnHeaderMenu<\code>, which is the current target of the association headerMenu`,
|
|
40834
41033
|
* or null.
|
|
40835
41034
|
*/
|
|
40836
41035
|
getColumnHeaderMenu(): sap.ui.core.IColumnHeaderMenu;
|
|
@@ -42480,7 +42679,7 @@ declare namespace sap {
|
|
|
42480
42679
|
*
|
|
42481
42680
|
* @returns The list instance object or `null`.
|
|
42482
42681
|
*/
|
|
42483
|
-
getList(): sap.m.List;
|
|
42682
|
+
getList(): sap.m.List | null;
|
|
42484
42683
|
/**
|
|
42485
42684
|
* Gets current value of property {@link #getOpen open}.
|
|
42486
42685
|
*
|
|
@@ -44422,14 +44621,14 @@ declare namespace sap {
|
|
|
44422
44621
|
*
|
|
44423
44622
|
* Removes a `specialDate` from the aggregation `specialDates`.
|
|
44424
44623
|
*
|
|
44425
|
-
* @returns The removed `specialDate` or null
|
|
44624
|
+
* @returns The removed `specialDate` or `null`
|
|
44426
44625
|
*/
|
|
44427
44626
|
removeSpecialDate(
|
|
44428
44627
|
/**
|
|
44429
|
-
* The `specialDate` to remove or its index or
|
|
44628
|
+
* The `specialDate` to remove or its index or ID
|
|
44430
44629
|
*/
|
|
44431
44630
|
oSpecialDate: sap.ui.unified.DateTypeRange
|
|
44432
|
-
): sap.ui.unified.DateTypeRange;
|
|
44631
|
+
): sap.ui.unified.DateTypeRange | null;
|
|
44433
44632
|
/**
|
|
44434
44633
|
* Sets the displayFormat of the DatePicker.
|
|
44435
44634
|
*
|
|
@@ -45647,7 +45846,7 @@ declare namespace sap {
|
|
|
45647
45846
|
* The ariaLabelledBy to be removed or its index or ID
|
|
45648
45847
|
*/
|
|
45649
45848
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
45650
|
-
): sap.ui.core.ID;
|
|
45849
|
+
): sap.ui.core.ID | null;
|
|
45651
45850
|
/**
|
|
45652
45851
|
* Sets a new value for property {@link #getDateValue dateValue}.
|
|
45653
45852
|
*
|
|
@@ -47171,7 +47370,7 @@ declare namespace sap {
|
|
|
47171
47370
|
* The ariaDescribedBy to be removed or its index or ID
|
|
47172
47371
|
*/
|
|
47173
47372
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
47174
|
-
): sap.ui.core.ID;
|
|
47373
|
+
): sap.ui.core.ID | null;
|
|
47175
47374
|
/**
|
|
47176
47375
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
47177
47376
|
*
|
|
@@ -47182,7 +47381,7 @@ declare namespace sap {
|
|
|
47182
47381
|
* The ariaLabelledBy to be removed or its index or ID
|
|
47183
47382
|
*/
|
|
47184
47383
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
47185
|
-
): sap.ui.core.ID;
|
|
47384
|
+
): sap.ui.core.ID | null;
|
|
47186
47385
|
/**
|
|
47187
47386
|
* @SINCE 1.21.1
|
|
47188
47387
|
*
|
|
@@ -48766,7 +48965,7 @@ declare namespace sap {
|
|
|
48766
48965
|
* The ariaDescribedBy to be removed or its index or ID
|
|
48767
48966
|
*/
|
|
48768
48967
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
48769
|
-
): sap.ui.core.ID;
|
|
48968
|
+
): sap.ui.core.ID | null;
|
|
48770
48969
|
/**
|
|
48771
48970
|
* @SINCE 1.92
|
|
48772
48971
|
*
|
|
@@ -48779,7 +48978,7 @@ declare namespace sap {
|
|
|
48779
48978
|
* The ariaLabelledBy to be removed or its index or ID
|
|
48780
48979
|
*/
|
|
48781
48980
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
48782
|
-
): sap.ui.core.ID;
|
|
48981
|
+
): sap.ui.core.ID | null;
|
|
48783
48982
|
/**
|
|
48784
48983
|
* @SINCE 1.92
|
|
48785
48984
|
*
|
|
@@ -54431,7 +54630,7 @@ declare namespace sap {
|
|
|
54431
54630
|
* The ariaLabelledBy to be removed or its index or ID
|
|
54432
54631
|
*/
|
|
54433
54632
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
54434
|
-
): sap.ui.core.ID;
|
|
54633
|
+
): sap.ui.core.ID | null;
|
|
54435
54634
|
/**
|
|
54436
54635
|
* Sets a new value for property {@link #getDesign design}.
|
|
54437
54636
|
*
|
|
@@ -54811,9 +55010,11 @@ declare namespace sap {
|
|
|
54811
55010
|
*
|
|
54812
55011
|
* Background color of the GenericTile. Only applicable for IconMode.
|
|
54813
55012
|
*
|
|
55013
|
+
* Default value is `...see text or source`.
|
|
55014
|
+
*
|
|
54814
55015
|
* @returns Value of property `backgroundColor`
|
|
54815
55016
|
*/
|
|
54816
|
-
getBackgroundColor():
|
|
55017
|
+
getBackgroundColor(): string;
|
|
54817
55018
|
/**
|
|
54818
55019
|
* Gets current value of property {@link #getBackgroundImage backgroundImage}.
|
|
54819
55020
|
*
|
|
@@ -54942,6 +55143,19 @@ declare namespace sap {
|
|
|
54942
55143
|
* @returns Value of property `pressEnabled`
|
|
54943
55144
|
*/
|
|
54944
55145
|
getPressEnabled(): boolean;
|
|
55146
|
+
/**
|
|
55147
|
+
* @SINCE 1.106
|
|
55148
|
+
* @EXPERIMENTAL (since 1.106)
|
|
55149
|
+
*
|
|
55150
|
+
* Gets current value of property {@link #getRenderOnThemeChange renderOnThemeChange}.
|
|
55151
|
+
*
|
|
55152
|
+
* The Tile rerenders on theme change.
|
|
55153
|
+
*
|
|
55154
|
+
* Default value is `false`.
|
|
55155
|
+
*
|
|
55156
|
+
* @returns Value of property `renderOnThemeChange`
|
|
55157
|
+
*/
|
|
55158
|
+
getRenderOnThemeChange(): boolean;
|
|
54945
55159
|
/**
|
|
54946
55160
|
* @SINCE 1.46.0
|
|
54947
55161
|
*
|
|
@@ -55270,13 +55484,15 @@ declare namespace sap {
|
|
|
55270
55484
|
*
|
|
55271
55485
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
55272
55486
|
*
|
|
55487
|
+
* Default value is `...see text or source`.
|
|
55488
|
+
*
|
|
55273
55489
|
* @returns Reference to `this` in order to allow method chaining
|
|
55274
55490
|
*/
|
|
55275
55491
|
setBackgroundColor(
|
|
55276
55492
|
/**
|
|
55277
55493
|
* New value for property `backgroundColor`
|
|
55278
55494
|
*/
|
|
55279
|
-
sBackgroundColor
|
|
55495
|
+
sBackgroundColor?: string
|
|
55280
55496
|
): this;
|
|
55281
55497
|
/**
|
|
55282
55498
|
* Sets a new value for property {@link #getBackgroundImage backgroundImage}.
|
|
@@ -55471,6 +55687,26 @@ declare namespace sap {
|
|
|
55471
55687
|
*/
|
|
55472
55688
|
value: boolean
|
|
55473
55689
|
): void;
|
|
55690
|
+
/**
|
|
55691
|
+
* @SINCE 1.106
|
|
55692
|
+
* @EXPERIMENTAL (since 1.106)
|
|
55693
|
+
*
|
|
55694
|
+
* Sets a new value for property {@link #getRenderOnThemeChange renderOnThemeChange}.
|
|
55695
|
+
*
|
|
55696
|
+
* The Tile rerenders on theme change.
|
|
55697
|
+
*
|
|
55698
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
55699
|
+
*
|
|
55700
|
+
* Default value is `false`.
|
|
55701
|
+
*
|
|
55702
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
55703
|
+
*/
|
|
55704
|
+
setRenderOnThemeChange(
|
|
55705
|
+
/**
|
|
55706
|
+
* New value for property `renderOnThemeChange`
|
|
55707
|
+
*/
|
|
55708
|
+
bRenderOnThemeChange?: boolean
|
|
55709
|
+
): this;
|
|
55474
55710
|
/**
|
|
55475
55711
|
* @SINCE 1.46.0
|
|
55476
55712
|
*
|
|
@@ -56517,7 +56753,7 @@ declare namespace sap {
|
|
|
56517
56753
|
* The ariaLabelledBy to be removed or its index or ID
|
|
56518
56754
|
*/
|
|
56519
56755
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
56520
|
-
): sap.ui.core.ID;
|
|
56756
|
+
): sap.ui.core.ID | null;
|
|
56521
56757
|
/**
|
|
56522
56758
|
* Removes a content from the aggregation {@link #getContent content}.
|
|
56523
56759
|
*
|
|
@@ -59010,6 +59246,19 @@ declare namespace sap {
|
|
|
59010
59246
|
*/
|
|
59011
59247
|
oAdditionalContent: sap.m.Button
|
|
59012
59248
|
): this;
|
|
59249
|
+
/**
|
|
59250
|
+
* @SINCE 1.106.0
|
|
59251
|
+
*
|
|
59252
|
+
* Adds some illustrationAriaLabelledBy into the association {@link #getIllustrationAriaLabelledBy illustrationAriaLabelledBy}.
|
|
59253
|
+
*
|
|
59254
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
59255
|
+
*/
|
|
59256
|
+
addIllustrationAriaLabelledBy(
|
|
59257
|
+
/**
|
|
59258
|
+
* The illustrationAriaLabelledBy to add; if empty, nothing is inserted
|
|
59259
|
+
*/
|
|
59260
|
+
vIllustrationAriaLabelledBy: sap.ui.core.ID | sap.ui.core.Control
|
|
59261
|
+
): this;
|
|
59013
59262
|
/**
|
|
59014
59263
|
* @SINCE 1.98
|
|
59015
59264
|
*
|
|
@@ -59091,6 +59340,13 @@ declare namespace sap {
|
|
|
59091
59340
|
* @returns Value of property `enableVerticalResponsiveness`
|
|
59092
59341
|
*/
|
|
59093
59342
|
getEnableVerticalResponsiveness(): boolean;
|
|
59343
|
+
/**
|
|
59344
|
+
* @SINCE 1.106.0
|
|
59345
|
+
*
|
|
59346
|
+
* Returns array of IDs of the elements which are the current targets of the association {@link #getIllustrationAriaLabelledBy
|
|
59347
|
+
* illustrationAriaLabelledBy}.
|
|
59348
|
+
*/
|
|
59349
|
+
getIllustrationAriaLabelledBy(): sap.ui.core.ID[];
|
|
59094
59350
|
/**
|
|
59095
59351
|
* @SINCE 1.98
|
|
59096
59352
|
*
|
|
@@ -59197,6 +59453,28 @@ declare namespace sap {
|
|
|
59197
59453
|
* @returns An array of the removed elements (might be empty)
|
|
59198
59454
|
*/
|
|
59199
59455
|
removeAllAdditionalContent(): sap.m.Button[];
|
|
59456
|
+
/**
|
|
59457
|
+
* @SINCE 1.106.0
|
|
59458
|
+
*
|
|
59459
|
+
* Removes all the controls in the association named {@link #getIllustrationAriaLabelledBy illustrationAriaLabelledBy}.
|
|
59460
|
+
*
|
|
59461
|
+
* @returns An array of the removed elements (might be empty)
|
|
59462
|
+
*/
|
|
59463
|
+
removeAllIllustrationAriaLabelledBy(): sap.ui.core.ID[];
|
|
59464
|
+
/**
|
|
59465
|
+
* @SINCE 1.106.0
|
|
59466
|
+
*
|
|
59467
|
+
* Removes an illustrationAriaLabelledBy from the association named {@link #getIllustrationAriaLabelledBy
|
|
59468
|
+
* illustrationAriaLabelledBy}.
|
|
59469
|
+
*
|
|
59470
|
+
* @returns The removed illustrationAriaLabelledBy or `null`
|
|
59471
|
+
*/
|
|
59472
|
+
removeIllustrationAriaLabelledBy(
|
|
59473
|
+
/**
|
|
59474
|
+
* The illustrationAriaLabelledBy to be removed or its index or ID
|
|
59475
|
+
*/
|
|
59476
|
+
vIllustrationAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
59477
|
+
): sap.ui.core.ID | null;
|
|
59200
59478
|
/**
|
|
59201
59479
|
* @SINCE 1.98
|
|
59202
59480
|
*
|
|
@@ -59375,6 +59653,26 @@ declare namespace sap {
|
|
|
59375
59653
|
* @returns Metadata object describing this class
|
|
59376
59654
|
*/
|
|
59377
59655
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
59656
|
+
/**
|
|
59657
|
+
* @SINCE 1.106.0
|
|
59658
|
+
*
|
|
59659
|
+
* Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
59660
|
+
*
|
|
59661
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
59662
|
+
*/
|
|
59663
|
+
addAriaLabelledBy(
|
|
59664
|
+
/**
|
|
59665
|
+
* The ariaLabelledBy to add; if empty, nothing is inserted
|
|
59666
|
+
*/
|
|
59667
|
+
vAriaLabelledBy: sap.ui.core.ID | sap.ui.core.Control
|
|
59668
|
+
): this;
|
|
59669
|
+
/**
|
|
59670
|
+
* @SINCE 1.106.0
|
|
59671
|
+
*
|
|
59672
|
+
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
|
|
59673
|
+
* ariaLabelledBy}.
|
|
59674
|
+
*/
|
|
59675
|
+
getAriaLabelledBy(): sap.ui.core.ID[];
|
|
59378
59676
|
/**
|
|
59379
59677
|
* @SINCE 1.98
|
|
59380
59678
|
*
|
|
@@ -59405,6 +59703,27 @@ declare namespace sap {
|
|
|
59405
59703
|
* @returns Value of property `type`
|
|
59406
59704
|
*/
|
|
59407
59705
|
getType(): string;
|
|
59706
|
+
/**
|
|
59707
|
+
* @SINCE 1.106.0
|
|
59708
|
+
*
|
|
59709
|
+
* Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
59710
|
+
*
|
|
59711
|
+
* @returns An array of the removed elements (might be empty)
|
|
59712
|
+
*/
|
|
59713
|
+
removeAllAriaLabelledBy(): sap.ui.core.ID[];
|
|
59714
|
+
/**
|
|
59715
|
+
* @SINCE 1.106.0
|
|
59716
|
+
*
|
|
59717
|
+
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
59718
|
+
*
|
|
59719
|
+
* @returns The removed ariaLabelledBy or `null`
|
|
59720
|
+
*/
|
|
59721
|
+
removeAriaLabelledBy(
|
|
59722
|
+
/**
|
|
59723
|
+
* The ariaLabelledBy to be removed or its index or ID
|
|
59724
|
+
*/
|
|
59725
|
+
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
59726
|
+
): sap.ui.core.ID | null;
|
|
59408
59727
|
/**
|
|
59409
59728
|
* @SINCE 1.98
|
|
59410
59729
|
*
|
|
@@ -60187,7 +60506,7 @@ declare namespace sap {
|
|
|
60187
60506
|
* The ariaDescribedBy to be removed or its index or ID
|
|
60188
60507
|
*/
|
|
60189
60508
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
60190
|
-
): sap.ui.core.ID;
|
|
60509
|
+
): sap.ui.core.ID | null;
|
|
60191
60510
|
/**
|
|
60192
60511
|
* @SINCE 1.79
|
|
60193
60512
|
*
|
|
@@ -60200,7 +60519,7 @@ declare namespace sap {
|
|
|
60200
60519
|
* The ariaDetails to be removed or its index or ID
|
|
60201
60520
|
*/
|
|
60202
60521
|
vAriaDetails: int | sap.ui.core.ID | sap.ui.core.Control
|
|
60203
|
-
): sap.ui.core.ID;
|
|
60522
|
+
): sap.ui.core.ID | null;
|
|
60204
60523
|
/**
|
|
60205
60524
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
60206
60525
|
*
|
|
@@ -60211,7 +60530,7 @@ declare namespace sap {
|
|
|
60211
60530
|
* The ariaLabelledBy to be removed or its index or ID
|
|
60212
60531
|
*/
|
|
60213
60532
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
60214
|
-
): sap.ui.core.ID;
|
|
60533
|
+
): sap.ui.core.ID | null;
|
|
60215
60534
|
/**
|
|
60216
60535
|
* Sets a new value for property {@link #getActiveSrc activeSrc}.
|
|
60217
60536
|
*
|
|
@@ -61524,7 +61843,8 @@ declare namespace sap {
|
|
|
61524
61843
|
*
|
|
61525
61844
|
* Maximum number of characters. Value '0' means the feature is switched off. This parameter is not compatible
|
|
61526
61845
|
* with the input type `sap.m.InputType.Number`. If the input type is set to `Number`, the `maxLength` value
|
|
61527
|
-
* is ignored.
|
|
61846
|
+
* is ignored. If the `maxLength` is set after there is already a longer value, this value will not get
|
|
61847
|
+
* truncated. The `maxLength` property has effect only when the value is modified by user interaction.
|
|
61528
61848
|
*
|
|
61529
61849
|
* Default value is `0`.
|
|
61530
61850
|
*
|
|
@@ -61720,11 +62040,9 @@ declare namespace sap {
|
|
|
61720
62040
|
*
|
|
61721
62041
|
* Defines the validation callback function called when a suggestion row gets selected.
|
|
61722
62042
|
*
|
|
61723
|
-
* Default value is `empty string`.
|
|
61724
|
-
*
|
|
61725
62043
|
* @returns Value of property `suggestionRowValidator`
|
|
61726
62044
|
*/
|
|
61727
|
-
getSuggestionRowValidator():
|
|
62045
|
+
getSuggestionRowValidator(): Function;
|
|
61728
62046
|
/**
|
|
61729
62047
|
* @SINCE 1.44
|
|
61730
62048
|
*
|
|
@@ -61744,11 +62062,9 @@ declare namespace sap {
|
|
|
61744
62062
|
*
|
|
61745
62063
|
* Defines the display text formatter function.
|
|
61746
62064
|
*
|
|
61747
|
-
* Default value is `empty string`.
|
|
61748
|
-
*
|
|
61749
62065
|
* @returns Value of property `textFormatter`
|
|
61750
62066
|
*/
|
|
61751
|
-
getTextFormatter():
|
|
62067
|
+
getTextFormatter(): Function;
|
|
61752
62068
|
/**
|
|
61753
62069
|
* Gets current value of property {@link #getType type}.
|
|
61754
62070
|
*
|
|
@@ -62271,7 +62587,8 @@ declare namespace sap {
|
|
|
62271
62587
|
*
|
|
62272
62588
|
* Maximum number of characters. Value '0' means the feature is switched off. This parameter is not compatible
|
|
62273
62589
|
* with the input type `sap.m.InputType.Number`. If the input type is set to `Number`, the `maxLength` value
|
|
62274
|
-
* is ignored.
|
|
62590
|
+
* is ignored. If the `maxLength` is set after there is already a longer value, this value will not get
|
|
62591
|
+
* truncated. The `maxLength` property has effect only when the value is modified by user interaction.
|
|
62275
62592
|
*
|
|
62276
62593
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
62277
62594
|
*
|
|
@@ -62487,15 +62804,13 @@ declare namespace sap {
|
|
|
62487
62804
|
*
|
|
62488
62805
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
62489
62806
|
*
|
|
62490
|
-
* Default value is `empty string`.
|
|
62491
|
-
*
|
|
62492
62807
|
* @returns Reference to `this` in order to allow method chaining
|
|
62493
62808
|
*/
|
|
62494
62809
|
setSuggestionRowValidator(
|
|
62495
62810
|
/**
|
|
62496
62811
|
* New value for property `suggestionRowValidator`
|
|
62497
62812
|
*/
|
|
62498
|
-
|
|
62813
|
+
fnSuggestionRowValidator?: Function
|
|
62499
62814
|
): this;
|
|
62500
62815
|
/**
|
|
62501
62816
|
* @SINCE 1.44
|
|
@@ -62525,15 +62840,13 @@ declare namespace sap {
|
|
|
62525
62840
|
*
|
|
62526
62841
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
62527
62842
|
*
|
|
62528
|
-
* Default value is `empty string`.
|
|
62529
|
-
*
|
|
62530
62843
|
* @returns Reference to `this` in order to allow method chaining
|
|
62531
62844
|
*/
|
|
62532
62845
|
setTextFormatter(
|
|
62533
62846
|
/**
|
|
62534
62847
|
* New value for property `textFormatter`
|
|
62535
62848
|
*/
|
|
62536
|
-
|
|
62849
|
+
fnTextFormatter?: Function
|
|
62537
62850
|
): this;
|
|
62538
62851
|
/**
|
|
62539
62852
|
* Sets a new value for property {@link #getType type}.
|
|
@@ -63265,7 +63578,7 @@ declare namespace sap {
|
|
|
63265
63578
|
* The ariaDescribedBy to be removed or its index or ID
|
|
63266
63579
|
*/
|
|
63267
63580
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
63268
|
-
): sap.ui.core.ID;
|
|
63581
|
+
): sap.ui.core.ID | null;
|
|
63269
63582
|
/**
|
|
63270
63583
|
* @SINCE 1.27.0
|
|
63271
63584
|
*
|
|
@@ -63278,7 +63591,7 @@ declare namespace sap {
|
|
|
63278
63591
|
* The ariaLabelledBy to be removed or its index or ID
|
|
63279
63592
|
*/
|
|
63280
63593
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
63281
|
-
): sap.ui.core.ID;
|
|
63594
|
+
): sap.ui.core.ID | null;
|
|
63282
63595
|
/**
|
|
63283
63596
|
* @SINCE 1.22.1
|
|
63284
63597
|
*
|
|
@@ -64257,7 +64570,7 @@ declare namespace sap {
|
|
|
64257
64570
|
*
|
|
64258
64571
|
* Additional Information:
|
|
64259
64572
|
*
|
|
64260
|
-
* Check out the API Reference.
|
|
64573
|
+
* Check out the {@link sap.m.LightBoxItem API Reference}.
|
|
64261
64574
|
*/
|
|
64262
64575
|
class LightBox
|
|
64263
64576
|
extends sap.ui.core.Control
|
|
@@ -64839,7 +65152,7 @@ declare namespace sap {
|
|
|
64839
65152
|
* Gets current value of property {@link #getAccessibleRole accessibleRole}.
|
|
64840
65153
|
*
|
|
64841
65154
|
* Describes the accessibility role of the link:
|
|
64842
|
-
* - `LinkAccessibleRole.Default` - a
|
|
65155
|
+
* - `LinkAccessibleRole.Default` - a navigation is expected to the location given in `href` property
|
|
64843
65156
|
*
|
|
64844
65157
|
* - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
|
|
64845
65158
|
* scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
|
|
@@ -65056,7 +65369,7 @@ declare namespace sap {
|
|
|
65056
65369
|
* The ariaDescribedBy to be removed or its index or ID
|
|
65057
65370
|
*/
|
|
65058
65371
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
65059
|
-
): sap.ui.core.ID;
|
|
65372
|
+
): sap.ui.core.ID | null;
|
|
65060
65373
|
/**
|
|
65061
65374
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
65062
65375
|
*
|
|
@@ -65067,14 +65380,14 @@ declare namespace sap {
|
|
|
65067
65380
|
* The ariaLabelledBy to be removed or its index or ID
|
|
65068
65381
|
*/
|
|
65069
65382
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
65070
|
-
): sap.ui.core.ID;
|
|
65383
|
+
): sap.ui.core.ID | null;
|
|
65071
65384
|
/**
|
|
65072
65385
|
* @SINCE 1.104.0
|
|
65073
65386
|
*
|
|
65074
65387
|
* Sets a new value for property {@link #getAccessibleRole accessibleRole}.
|
|
65075
65388
|
*
|
|
65076
65389
|
* Describes the accessibility role of the link:
|
|
65077
|
-
* - `LinkAccessibleRole.Default` - a
|
|
65390
|
+
* - `LinkAccessibleRole.Default` - a navigation is expected to the location given in `href` property
|
|
65078
65391
|
*
|
|
65079
65392
|
* - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
|
|
65080
65393
|
* scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
|
|
@@ -67040,7 +67353,7 @@ declare namespace sap {
|
|
|
67040
67353
|
* The ariaLabelledBy to be removed or its index or ID
|
|
67041
67354
|
*/
|
|
67042
67355
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
67043
|
-
): sap.ui.core.ID;
|
|
67356
|
+
): sap.ui.core.ID | null;
|
|
67044
67357
|
/**
|
|
67045
67358
|
* Removes a item from the aggregation {@link #getItems items}.
|
|
67046
67359
|
*
|
|
@@ -68200,7 +68513,7 @@ declare namespace sap {
|
|
|
68200
68513
|
* The ariaLabelledBy to be removed or its index or ID
|
|
68201
68514
|
*/
|
|
68202
68515
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
68203
|
-
): sap.ui.core.ID;
|
|
68516
|
+
): sap.ui.core.ID | null;
|
|
68204
68517
|
/**
|
|
68205
68518
|
* Sets a new value for property {@link #getCounter counter}.
|
|
68206
68519
|
*
|
|
@@ -69639,7 +69952,7 @@ declare namespace sap {
|
|
|
69639
69952
|
* The ariaDescribedBy to be removed or its index or ID
|
|
69640
69953
|
*/
|
|
69641
69954
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
69642
|
-
): sap.ui.core.ID;
|
|
69955
|
+
): sap.ui.core.ID | null;
|
|
69643
69956
|
/**
|
|
69644
69957
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
69645
69958
|
*
|
|
@@ -69650,7 +69963,7 @@ declare namespace sap {
|
|
|
69650
69963
|
* The ariaLabelledBy to be removed or its index or ID
|
|
69651
69964
|
*/
|
|
69652
69965
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
69653
|
-
): sap.ui.core.ID;
|
|
69966
|
+
): sap.ui.core.ID | null;
|
|
69654
69967
|
/**
|
|
69655
69968
|
* Sets a new value for property {@link #getActiveIcon activeIcon}.
|
|
69656
69969
|
*
|
|
@@ -71116,7 +71429,7 @@ declare namespace sap {
|
|
|
71116
71429
|
* The ariaDescribedBy to be removed or its index or ID
|
|
71117
71430
|
*/
|
|
71118
71431
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
71119
|
-
): sap.ui.core.ID;
|
|
71432
|
+
): sap.ui.core.ID | null;
|
|
71120
71433
|
/**
|
|
71121
71434
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
71122
71435
|
*
|
|
@@ -71127,7 +71440,7 @@ declare namespace sap {
|
|
|
71127
71440
|
* The ariaLabelledBy to be removed or its index or ID
|
|
71128
71441
|
*/
|
|
71129
71442
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
71130
|
-
): sap.ui.core.ID;
|
|
71443
|
+
): sap.ui.core.ID | null;
|
|
71131
71444
|
/**
|
|
71132
71445
|
* @SINCE 1.54
|
|
71133
71446
|
*
|
|
@@ -72213,7 +72526,7 @@ declare namespace sap {
|
|
|
72213
72526
|
*
|
|
72214
72527
|
* @returns Value of property `asyncDescriptionHandler`
|
|
72215
72528
|
*/
|
|
72216
|
-
getAsyncDescriptionHandler():
|
|
72529
|
+
getAsyncDescriptionHandler(): Function;
|
|
72217
72530
|
/**
|
|
72218
72531
|
* Gets current value of property {@link #getAsyncURLHandler asyncURLHandler}.
|
|
72219
72532
|
*
|
|
@@ -72222,7 +72535,7 @@ declare namespace sap {
|
|
|
72222
72535
|
*
|
|
72223
72536
|
* @returns Value of property `asyncURLHandler`
|
|
72224
72537
|
*/
|
|
72225
|
-
getAsyncURLHandler():
|
|
72538
|
+
getAsyncURLHandler(): Function;
|
|
72226
72539
|
/**
|
|
72227
72540
|
* @SINCE 1.73
|
|
72228
72541
|
*
|
|
@@ -72355,7 +72668,7 @@ declare namespace sap {
|
|
|
72355
72668
|
/**
|
|
72356
72669
|
* New value for property `asyncDescriptionHandler`
|
|
72357
72670
|
*/
|
|
72358
|
-
|
|
72671
|
+
fnAsyncDescriptionHandler?: Function
|
|
72359
72672
|
): this;
|
|
72360
72673
|
/**
|
|
72361
72674
|
* Sets a new value for property {@link #getAsyncURLHandler asyncURLHandler}.
|
|
@@ -72371,7 +72684,7 @@ declare namespace sap {
|
|
|
72371
72684
|
/**
|
|
72372
72685
|
* New value for property `asyncURLHandler`
|
|
72373
72686
|
*/
|
|
72374
|
-
|
|
72687
|
+
fnAsyncURLHandler?: Function
|
|
72375
72688
|
): this;
|
|
72376
72689
|
/**
|
|
72377
72690
|
* @SINCE 1.73
|
|
@@ -73524,7 +73837,7 @@ declare namespace sap {
|
|
|
73524
73837
|
*
|
|
73525
73838
|
* @returns Value of property `asyncDescriptionHandler`
|
|
73526
73839
|
*/
|
|
73527
|
-
getAsyncDescriptionHandler():
|
|
73840
|
+
getAsyncDescriptionHandler(): Function;
|
|
73528
73841
|
/**
|
|
73529
73842
|
* Gets current value of property {@link #getAsyncURLHandler asyncURLHandler}.
|
|
73530
73843
|
*
|
|
@@ -73533,7 +73846,7 @@ declare namespace sap {
|
|
|
73533
73846
|
*
|
|
73534
73847
|
* @returns Value of property `asyncURLHandler`
|
|
73535
73848
|
*/
|
|
73536
|
-
getAsyncURLHandler():
|
|
73849
|
+
getAsyncURLHandler(): Function;
|
|
73537
73850
|
/**
|
|
73538
73851
|
* Gets current value of property {@link #getGroupItems groupItems}.
|
|
73539
73852
|
*
|
|
@@ -73633,7 +73946,7 @@ declare namespace sap {
|
|
|
73633
73946
|
/**
|
|
73634
73947
|
* New value for property `asyncDescriptionHandler`
|
|
73635
73948
|
*/
|
|
73636
|
-
|
|
73949
|
+
fnAsyncDescriptionHandler?: Function
|
|
73637
73950
|
): this;
|
|
73638
73951
|
/**
|
|
73639
73952
|
* Sets a new value for property {@link #getAsyncURLHandler asyncURLHandler}.
|
|
@@ -73649,7 +73962,7 @@ declare namespace sap {
|
|
|
73649
73962
|
/**
|
|
73650
73963
|
* New value for property `asyncURLHandler`
|
|
73651
73964
|
*/
|
|
73652
|
-
|
|
73965
|
+
fnAsyncURLHandler?: Function
|
|
73653
73966
|
): this;
|
|
73654
73967
|
/**
|
|
73655
73968
|
* Sets a new value for property {@link #getGroupItems groupItems}.
|
|
@@ -79220,7 +79533,7 @@ declare namespace sap {
|
|
|
79220
79533
|
* The ariaDescribedBy to be removed or its index or ID
|
|
79221
79534
|
*/
|
|
79222
79535
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
79223
|
-
): sap.ui.core.ID;
|
|
79536
|
+
): sap.ui.core.ID | null;
|
|
79224
79537
|
/**
|
|
79225
79538
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
79226
79539
|
*
|
|
@@ -79231,7 +79544,7 @@ declare namespace sap {
|
|
|
79231
79544
|
* The ariaLabelledBy to be removed or its index or ID
|
|
79232
79545
|
*/
|
|
79233
79546
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
79234
|
-
): sap.ui.core.ID;
|
|
79547
|
+
): sap.ui.core.ID | null;
|
|
79235
79548
|
/**
|
|
79236
79549
|
* Removes a attribute from the aggregation {@link #getAttributes attributes}.
|
|
79237
79550
|
*
|
|
@@ -80109,7 +80422,7 @@ declare namespace sap {
|
|
|
80109
80422
|
* The ariaLabelledBy to be removed or its index or ID
|
|
80110
80423
|
*/
|
|
80111
80424
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
80112
|
-
): sap.ui.core.ID;
|
|
80425
|
+
): sap.ui.core.ID | null;
|
|
80113
80426
|
/**
|
|
80114
80427
|
* @deprecated (since 1.24.0) - There is no replacement for the moment.
|
|
80115
80428
|
*
|
|
@@ -81163,7 +81476,7 @@ declare namespace sap {
|
|
|
81163
81476
|
* The ariaDescribedBy to be removed or its index or ID
|
|
81164
81477
|
*/
|
|
81165
81478
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
81166
|
-
): sap.ui.core.ID;
|
|
81479
|
+
): sap.ui.core.ID | null;
|
|
81167
81480
|
/**
|
|
81168
81481
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
81169
81482
|
*
|
|
@@ -81174,7 +81487,7 @@ declare namespace sap {
|
|
|
81174
81487
|
* The ariaLabelledBy to be removed or its index or ID
|
|
81175
81488
|
*/
|
|
81176
81489
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
81177
|
-
): sap.ui.core.ID;
|
|
81490
|
+
): sap.ui.core.ID | null;
|
|
81178
81491
|
/**
|
|
81179
81492
|
* Sets a new value for property {@link #getAdditionalInfo additionalInfo}.
|
|
81180
81493
|
*
|
|
@@ -81569,7 +81882,7 @@ declare namespace sap {
|
|
|
81569
81882
|
* The ariaDescribedBy to be removed or its index or ID
|
|
81570
81883
|
*/
|
|
81571
81884
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
81572
|
-
): sap.ui.core.ID;
|
|
81885
|
+
): sap.ui.core.ID | null;
|
|
81573
81886
|
/**
|
|
81574
81887
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
81575
81888
|
*
|
|
@@ -81580,7 +81893,7 @@ declare namespace sap {
|
|
|
81580
81893
|
* The ariaLabelledBy to be removed or its index or ID
|
|
81581
81894
|
*/
|
|
81582
81895
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
81583
|
-
): sap.ui.core.ID;
|
|
81896
|
+
): sap.ui.core.ID | null;
|
|
81584
81897
|
/**
|
|
81585
81898
|
* @SINCE 1.86
|
|
81586
81899
|
*
|
|
@@ -82054,7 +82367,7 @@ declare namespace sap {
|
|
|
82054
82367
|
* The ariaDescribedBy to be removed or its index or ID
|
|
82055
82368
|
*/
|
|
82056
82369
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
82057
|
-
): sap.ui.core.ID;
|
|
82370
|
+
): sap.ui.core.ID | null;
|
|
82058
82371
|
/**
|
|
82059
82372
|
* @SINCE 1.54
|
|
82060
82373
|
*
|
|
@@ -92449,7 +92762,7 @@ declare namespace sap {
|
|
|
92449
92762
|
* The ariaLabelledBy to be removed or its index or ID
|
|
92450
92763
|
*/
|
|
92451
92764
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
92452
|
-
): sap.ui.core.ID;
|
|
92765
|
+
): sap.ui.core.ID | null;
|
|
92453
92766
|
/**
|
|
92454
92767
|
* Removes a row from the aggregation {@link #getRows rows}.
|
|
92455
92768
|
*
|
|
@@ -95684,7 +95997,7 @@ declare namespace sap {
|
|
|
95684
95997
|
* The ariaDescribedBy to be removed or its index or ID
|
|
95685
95998
|
*/
|
|
95686
95999
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
95687
|
-
): sap.ui.core.ID;
|
|
96000
|
+
): sap.ui.core.ID | null;
|
|
95688
96001
|
/**
|
|
95689
96002
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
95690
96003
|
*
|
|
@@ -95695,7 +96008,7 @@ declare namespace sap {
|
|
|
95695
96008
|
* The ariaLabelledBy to be removed or its index or ID
|
|
95696
96009
|
*/
|
|
95697
96010
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
95698
|
-
): sap.ui.core.ID;
|
|
96011
|
+
): sap.ui.core.ID | null;
|
|
95699
96012
|
/**
|
|
95700
96013
|
* Removes a content from the aggregation {@link #getContent content}.
|
|
95701
96014
|
*
|
|
@@ -96393,7 +96706,7 @@ declare namespace sap {
|
|
|
96393
96706
|
* The ariaDescribedBy to be removed or its index or ID
|
|
96394
96707
|
*/
|
|
96395
96708
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
96396
|
-
): sap.ui.core.ID;
|
|
96709
|
+
): sap.ui.core.ID | null;
|
|
96397
96710
|
/**
|
|
96398
96711
|
* @SINCE 1.69
|
|
96399
96712
|
*
|
|
@@ -96406,7 +96719,7 @@ declare namespace sap {
|
|
|
96406
96719
|
* The ariaLabelledBy to be removed or its index or ID
|
|
96407
96720
|
*/
|
|
96408
96721
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
96409
|
-
): sap.ui.core.ID;
|
|
96722
|
+
): sap.ui.core.ID | null;
|
|
96410
96723
|
/**
|
|
96411
96724
|
* @SINCE 1.73
|
|
96412
96725
|
*
|
|
@@ -99161,7 +99474,7 @@ declare namespace sap {
|
|
|
99161
99474
|
* The ariaDescribedBy to be removed or its index or ID
|
|
99162
99475
|
*/
|
|
99163
99476
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
99164
|
-
): sap.ui.core.ID;
|
|
99477
|
+
): sap.ui.core.ID | null;
|
|
99165
99478
|
/**
|
|
99166
99479
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
99167
99480
|
*
|
|
@@ -99172,7 +99485,7 @@ declare namespace sap {
|
|
|
99172
99485
|
* The ariaLabelledBy to be removed or its index or ID
|
|
99173
99486
|
*/
|
|
99174
99487
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
99175
|
-
): sap.ui.core.ID;
|
|
99488
|
+
): sap.ui.core.ID | null;
|
|
99176
99489
|
/**
|
|
99177
99490
|
* Sets a new value for property {@link #getActiveHandling activeHandling}.
|
|
99178
99491
|
*
|
|
@@ -99755,7 +100068,7 @@ declare namespace sap {
|
|
|
99755
100068
|
* The ariaDescribedBy to be removed or its index or ID
|
|
99756
100069
|
*/
|
|
99757
100070
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
99758
|
-
): sap.ui.core.ID;
|
|
100071
|
+
): sap.ui.core.ID | null;
|
|
99759
100072
|
/**
|
|
99760
100073
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
99761
100074
|
*
|
|
@@ -99766,7 +100079,7 @@ declare namespace sap {
|
|
|
99766
100079
|
* The ariaLabelledBy to be removed or its index or ID
|
|
99767
100080
|
*/
|
|
99768
100081
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
99769
|
-
): sap.ui.core.ID;
|
|
100082
|
+
): sap.ui.core.ID | null;
|
|
99770
100083
|
/**
|
|
99771
100084
|
* Removes a radio button from the group.
|
|
99772
100085
|
*
|
|
@@ -100477,7 +100790,7 @@ declare namespace sap {
|
|
|
100477
100790
|
* The ariaDescribedBy to be removed or its index or ID
|
|
100478
100791
|
*/
|
|
100479
100792
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
100480
|
-
): sap.ui.core.ID;
|
|
100793
|
+
): sap.ui.core.ID | null;
|
|
100481
100794
|
/**
|
|
100482
100795
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
100483
100796
|
*
|
|
@@ -100488,7 +100801,7 @@ declare namespace sap {
|
|
|
100488
100801
|
* The ariaLabelledBy to be removed or its index or ID
|
|
100489
100802
|
*/
|
|
100490
100803
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
100491
|
-
): sap.ui.core.ID;
|
|
100804
|
+
): sap.ui.core.ID | null;
|
|
100492
100805
|
/**
|
|
100493
100806
|
* @SINCE 1.50.0
|
|
100494
100807
|
*
|
|
@@ -101416,7 +101729,7 @@ declare namespace sap {
|
|
|
101416
101729
|
* The ariaDescribedBy to be removed or its index or ID
|
|
101417
101730
|
*/
|
|
101418
101731
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
101419
|
-
): sap.ui.core.ID;
|
|
101732
|
+
): sap.ui.core.ID | null;
|
|
101420
101733
|
/**
|
|
101421
101734
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
101422
101735
|
*
|
|
@@ -101427,7 +101740,7 @@ declare namespace sap {
|
|
|
101427
101740
|
* The ariaLabelledBy to be removed or its index or ID
|
|
101428
101741
|
*/
|
|
101429
101742
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
101430
|
-
): sap.ui.core.ID;
|
|
101743
|
+
): sap.ui.core.ID | null;
|
|
101431
101744
|
/**
|
|
101432
101745
|
* Removes a content from the aggregation {@link #getContent content}.
|
|
101433
101746
|
*
|
|
@@ -102939,7 +103252,7 @@ declare namespace sap {
|
|
|
102939
103252
|
* The ariaDescribedBy to be removed or its index or ID
|
|
102940
103253
|
*/
|
|
102941
103254
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
102942
|
-
): sap.ui.core.ID;
|
|
103255
|
+
): sap.ui.core.ID | null;
|
|
102943
103256
|
/**
|
|
102944
103257
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
102945
103258
|
*
|
|
@@ -102950,7 +103263,7 @@ declare namespace sap {
|
|
|
102950
103263
|
* The ariaLabelledBy to be removed or its index or ID
|
|
102951
103264
|
*/
|
|
102952
103265
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
102953
|
-
): sap.ui.core.ID;
|
|
103266
|
+
): sap.ui.core.ID | null;
|
|
102954
103267
|
/**
|
|
102955
103268
|
* @SINCE 1.34
|
|
102956
103269
|
*
|
|
@@ -103782,7 +104095,7 @@ declare namespace sap {
|
|
|
103782
104095
|
* The ariaDescribedBy to be removed or its index or ID
|
|
103783
104096
|
*/
|
|
103784
104097
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
103785
|
-
): sap.ui.core.ID;
|
|
104098
|
+
): sap.ui.core.ID | null;
|
|
103786
104099
|
/**
|
|
103787
104100
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
103788
104101
|
*
|
|
@@ -103793,7 +104106,7 @@ declare namespace sap {
|
|
|
103793
104106
|
* The ariaLabelledBy to be removed or its index or ID
|
|
103794
104107
|
*/
|
|
103795
104108
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
103796
|
-
): sap.ui.core.ID;
|
|
104109
|
+
): sap.ui.core.ID | null;
|
|
103797
104110
|
/**
|
|
103798
104111
|
* @deprecated (since 1.28.0) - replaced by `items` aggregation
|
|
103799
104112
|
*
|
|
@@ -104609,14 +104922,14 @@ declare namespace sap {
|
|
|
104609
104922
|
*
|
|
104610
104923
|
* **Note: ** If duplicate keys exist, the first item matching the key is returned.
|
|
104611
104924
|
*
|
|
104612
|
-
* @returns The `sap.ui.core.Item` instance or `null` if
|
|
104925
|
+
* @returns The `sap.ui.core.Item` instance or `null` if there is no such item
|
|
104613
104926
|
*/
|
|
104614
104927
|
getItemByKey(
|
|
104615
104928
|
/**
|
|
104616
104929
|
* An item key that specifies the item to be retrieved.
|
|
104617
104930
|
*/
|
|
104618
104931
|
sKey: string
|
|
104619
|
-
): sap.ui.core.Item;
|
|
104932
|
+
): sap.ui.core.Item | null;
|
|
104620
104933
|
/**
|
|
104621
104934
|
* Gets aggregation `items`.
|
|
104622
104935
|
*
|
|
@@ -104905,7 +105218,7 @@ declare namespace sap {
|
|
|
104905
105218
|
* The ariaLabelledBy to be removed or its index or ID
|
|
104906
105219
|
*/
|
|
104907
105220
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
104908
|
-
): sap.ui.core.ID;
|
|
105221
|
+
): sap.ui.core.ID | null;
|
|
104909
105222
|
/**
|
|
104910
105223
|
* Removes an item from the aggregation named `items`.
|
|
104911
105224
|
*
|
|
@@ -108744,7 +109057,7 @@ declare namespace sap {
|
|
|
108744
109057
|
* The ariaLabelledBy to be removed or its index or ID
|
|
108745
109058
|
*/
|
|
108746
109059
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
108747
|
-
): sap.ui.core.ID;
|
|
109060
|
+
): sap.ui.core.ID | null;
|
|
108748
109061
|
/**
|
|
108749
109062
|
* Removes an item from the aggregation named `items`.
|
|
108750
109063
|
*
|
|
@@ -109128,7 +109441,9 @@ declare namespace sap {
|
|
|
109128
109441
|
* Gets current value of property {@link #getBackgroundRepeat backgroundRepeat}.
|
|
109129
109442
|
*
|
|
109130
109443
|
* Determines whether the background image (if configured) should be proportionally stretched to cover the
|
|
109131
|
-
* whole Shell (false, default) or whether it should be tiled (true).
|
|
109444
|
+
* whole Shell (false, default) or whether it should be tiled (true). Note: the image will not be displayed
|
|
109445
|
+
* when the `sap.m.Shell` content is fully overlapping the `sap.m.Shell` background (e.g. when "appWidthLimited"
|
|
109446
|
+
* is set to "false").
|
|
109132
109447
|
*
|
|
109133
109448
|
* Default value is `false`.
|
|
109134
109449
|
*
|
|
@@ -109306,7 +109621,9 @@ declare namespace sap {
|
|
|
109306
109621
|
* Sets a new value for property {@link #getBackgroundRepeat backgroundRepeat}.
|
|
109307
109622
|
*
|
|
109308
109623
|
* Determines whether the background image (if configured) should be proportionally stretched to cover the
|
|
109309
|
-
* whole Shell (false, default) or whether it should be tiled (true).
|
|
109624
|
+
* whole Shell (false, default) or whether it should be tiled (true). Note: the image will not be displayed
|
|
109625
|
+
* when the `sap.m.Shell` content is fully overlapping the `sap.m.Shell` background (e.g. when "appWidthLimited"
|
|
109626
|
+
* is set to "false").
|
|
109310
109627
|
*
|
|
109311
109628
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
109312
109629
|
*
|
|
@@ -110593,16 +110910,16 @@ declare namespace sap {
|
|
|
110593
110910
|
/**
|
|
110594
110911
|
* @SINCE 1.75
|
|
110595
110912
|
*
|
|
110596
|
-
* Finds the view object by given key
|
|
110913
|
+
* Finds the view object by given key.
|
|
110597
110914
|
*
|
|
110598
|
-
* @returns the view object which matched the given `sKey`, or null if there is no such view
|
|
110915
|
+
* @returns the view object which matched the given `sKey`, or `null` if there is no such view
|
|
110599
110916
|
*/
|
|
110600
110917
|
getViewByKey(
|
|
110601
110918
|
/**
|
|
110602
110919
|
* The key of the view
|
|
110603
110920
|
*/
|
|
110604
110921
|
sKey: string
|
|
110605
|
-
): sap.m.SinglePlanningCalendarView;
|
|
110922
|
+
): sap.m.SinglePlanningCalendarView | null;
|
|
110606
110923
|
/**
|
|
110607
110924
|
* Gets content of aggregation {@link #getViews views}.
|
|
110608
110925
|
*
|
|
@@ -112143,7 +112460,7 @@ declare namespace sap {
|
|
|
112143
112460
|
* The ariaLabelledBy to be removed or its index or ID
|
|
112144
112461
|
*/
|
|
112145
112462
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
112146
|
-
): sap.ui.core.ID;
|
|
112463
|
+
): sap.ui.core.ID | null;
|
|
112147
112464
|
/**
|
|
112148
112465
|
* @SINCE 1.56
|
|
112149
112466
|
*
|
|
@@ -115896,7 +116213,7 @@ declare namespace sap {
|
|
|
115896
116213
|
* The ariaDescribedBy to be removed or its index or ID
|
|
115897
116214
|
*/
|
|
115898
116215
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
115899
|
-
): sap.ui.core.ID;
|
|
116216
|
+
): sap.ui.core.ID | null;
|
|
115900
116217
|
/**
|
|
115901
116218
|
* Sets a new value for property {@link #getActiveIcon activeIcon}.
|
|
115902
116219
|
*
|
|
@@ -116649,7 +116966,7 @@ declare namespace sap {
|
|
|
116649
116966
|
* The ariaDescribedBy to be removed or its index or ID
|
|
116650
116967
|
*/
|
|
116651
116968
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
116652
|
-
): sap.ui.core.ID;
|
|
116969
|
+
): sap.ui.core.ID | null;
|
|
116653
116970
|
/**
|
|
116654
116971
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
116655
116972
|
*
|
|
@@ -116660,7 +116977,7 @@ declare namespace sap {
|
|
|
116660
116977
|
* The ariaLabelledBy to be removed or its index or ID
|
|
116661
116978
|
*/
|
|
116662
116979
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
116663
|
-
): sap.ui.core.ID;
|
|
116980
|
+
): sap.ui.core.ID | null;
|
|
116664
116981
|
/**
|
|
116665
116982
|
* @SINCE 1.54
|
|
116666
116983
|
*
|
|
@@ -117379,7 +117696,7 @@ declare namespace sap {
|
|
|
117379
117696
|
* The ariaLabelledBy to be removed or its index or ID
|
|
117380
117697
|
*/
|
|
117381
117698
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
117382
|
-
): sap.ui.core.ID;
|
|
117699
|
+
): sap.ui.core.ID | null;
|
|
117383
117700
|
/**
|
|
117384
117701
|
* Sets a new value for property {@link #getCustomTextOff customTextOff}.
|
|
117385
117702
|
*
|
|
@@ -119576,7 +119893,7 @@ declare namespace sap {
|
|
|
119576
119893
|
* The table to be removed or its index or ID
|
|
119577
119894
|
*/
|
|
119578
119895
|
vTable: int | sap.ui.core.ID | sap.m.Table
|
|
119579
|
-
): sap.ui.core.ID;
|
|
119896
|
+
): sap.ui.core.ID | null;
|
|
119580
119897
|
/**
|
|
119581
119898
|
* Persist the personalizations
|
|
119582
119899
|
*/
|
|
@@ -125903,7 +126220,7 @@ declare namespace sap {
|
|
|
125903
126220
|
* The ariaDescribedBy to be removed or its index or ID
|
|
125904
126221
|
*/
|
|
125905
126222
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
125906
|
-
): sap.ui.core.ID;
|
|
126223
|
+
): sap.ui.core.ID | null;
|
|
125907
126224
|
/**
|
|
125908
126225
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
125909
126226
|
*
|
|
@@ -125914,7 +126231,7 @@ declare namespace sap {
|
|
|
125914
126231
|
* The ariaLabelledBy to be removed or its index or ID
|
|
125915
126232
|
*/
|
|
125916
126233
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
125917
|
-
): sap.ui.core.ID;
|
|
126234
|
+
): sap.ui.core.ID | null;
|
|
125918
126235
|
/**
|
|
125919
126236
|
* Sets a new value for property {@link #getEditable editable}.
|
|
125920
126237
|
*
|
|
@@ -126626,7 +126943,7 @@ declare namespace sap {
|
|
|
126626
126943
|
* The ariaDescribedBy to be removed or its index or ID
|
|
126627
126944
|
*/
|
|
126628
126945
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
126629
|
-
): sap.ui.core.ID;
|
|
126946
|
+
): sap.ui.core.ID | null;
|
|
126630
126947
|
/**
|
|
126631
126948
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
126632
126949
|
*
|
|
@@ -126637,7 +126954,7 @@ declare namespace sap {
|
|
|
126637
126954
|
* The ariaLabelledBy to be removed or its index or ID
|
|
126638
126955
|
*/
|
|
126639
126956
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
126640
|
-
): sap.ui.core.ID;
|
|
126957
|
+
): sap.ui.core.ID | null;
|
|
126641
126958
|
/**
|
|
126642
126959
|
* Removes a token from the aggregation {@link #getTokens tokens}.
|
|
126643
126960
|
*
|
|
@@ -127174,7 +127491,7 @@ declare namespace sap {
|
|
|
127174
127491
|
* The ariaLabelledBy to be removed or its index or ID
|
|
127175
127492
|
*/
|
|
127176
127493
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
127177
|
-
): sap.ui.core.ID;
|
|
127494
|
+
): sap.ui.core.ID | null;
|
|
127178
127495
|
/**
|
|
127179
127496
|
* Removes a content from the aggregation {@link #getContent content}.
|
|
127180
127497
|
*
|
|
@@ -134552,6 +134869,14 @@ declare namespace sap {
|
|
|
134552
134869
|
* control. Also, in order to achieve the target Fiori design, the `sapUiNoContentPadding` class needs to
|
|
134553
134870
|
* be added to the {@link sap.f.DynamicPage} as well as `sapUiResponsivePadding--header`, `sapUiResponsivePadding--content`
|
|
134554
134871
|
* to the `sap.m.Wizard`.
|
|
134872
|
+
*
|
|
134873
|
+
* **Note:** The `sap.m.Wizard` control does not support runtime (dynamic) changes to the available paths
|
|
134874
|
+
* (when branching is used) or additional steps being added after the last step. What is meant by runtime
|
|
134875
|
+
* (dynamic) changes to the available paths: If the `sap.m.Wizard` is set as branching, and the available
|
|
134876
|
+
* paths are:
|
|
134877
|
+
* - A -> B -> C
|
|
134878
|
+
* - A -> B -> D Changing the `subsequentSteps` association of step C to point to step D (creating
|
|
134879
|
+
* A -> B -> C -> D path) is not supported.
|
|
134555
134880
|
*/
|
|
134556
134881
|
class Wizard
|
|
134557
134882
|
extends sap.ui.core.Control
|
|
@@ -135571,7 +135896,7 @@ declare namespace sap {
|
|
|
135571
135896
|
* The subsequentStep to be removed or its index or ID
|
|
135572
135897
|
*/
|
|
135573
135898
|
vSubsequentStep: int | sap.ui.core.ID | sap.m.WizardStep
|
|
135574
|
-
): sap.ui.core.ID;
|
|
135899
|
+
): sap.ui.core.ID | null;
|
|
135575
135900
|
/**
|
|
135576
135901
|
* Sets a new value for property {@link #getIcon icon}.
|
|
135577
135902
|
*
|
|
@@ -136903,6 +137228,15 @@ declare namespace sap {
|
|
|
136903
137228
|
* DOM element.
|
|
136904
137229
|
*/
|
|
136905
137230
|
Image = "Image",
|
|
137231
|
+
/**
|
|
137232
|
+
* @EXPERIMENTAL (since 1.106)
|
|
137233
|
+
*
|
|
137234
|
+
* The image is rendered with 'div' tag, containing the inline 'svg' **Note:** Please, be aware that this
|
|
137235
|
+
* feature works under the Browser's Cross-Origin Resource Sharing (CORS) policy. This means that a web
|
|
137236
|
+
* application using those APIs can only request resources from the same origin the application was loaded
|
|
137237
|
+
* from unless the response from other origins includes the right CORS headers.
|
|
137238
|
+
*/
|
|
137239
|
+
InlineSvg = "InlineSvg",
|
|
136906
137240
|
}
|
|
136907
137241
|
/**
|
|
136908
137242
|
* @SINCE 1.44.0
|