@sapui5/ts-types 1.106.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.
Files changed (65) hide show
  1. package/README.md +6 -2
  2. package/package.json +1 -1
  3. package/types/sap.apf.d.ts +1 -1
  4. package/types/sap.ca.ui.d.ts +1 -1
  5. package/types/sap.chart.d.ts +1 -1
  6. package/types/sap.collaboration.d.ts +1 -1
  7. package/types/sap.esh.search.ui.d.ts +63 -25
  8. package/types/sap.f.d.ts +810 -163
  9. package/types/sap.fe.common.d.ts +1 -1
  10. package/types/sap.fe.core.d.ts +47 -47
  11. package/types/sap.fe.macros.d.ts +82 -6
  12. package/types/sap.fe.navigation.d.ts +1 -1
  13. package/types/sap.fe.templates.d.ts +51 -4
  14. package/types/sap.fe.test.d.ts +1 -1
  15. package/types/sap.feedback.ui.d.ts +1 -1
  16. package/types/sap.gantt.d.ts +9 -1
  17. package/types/sap.insights.d.ts +1 -1
  18. package/types/sap.landvisz.d.ts +1 -1
  19. package/types/sap.m.d.ts +149 -99
  20. package/types/sap.makit.d.ts +1 -1
  21. package/types/sap.me.d.ts +1 -1
  22. package/types/sap.ndc.d.ts +1 -1
  23. package/types/sap.ovp.d.ts +1 -1
  24. package/types/sap.rules.ui.d.ts +1 -1
  25. package/types/sap.sac.df.d.ts +301 -1
  26. package/types/sap.sac.grid.d.ts +1 -1
  27. package/types/sap.suite.ui.commons.d.ts +2 -37
  28. package/types/sap.suite.ui.generic.template.d.ts +15 -2
  29. package/types/sap.suite.ui.microchart.d.ts +1 -1
  30. package/types/sap.tnt.d.ts +1 -1
  31. package/types/sap.ui.codeeditor.d.ts +1 -1
  32. package/types/sap.ui.commons.d.ts +1 -1
  33. package/types/sap.ui.comp.d.ts +61 -1
  34. package/types/sap.ui.core.d.ts +443 -147
  35. package/types/sap.ui.dt.d.ts +1 -1
  36. package/types/sap.ui.export.d.ts +1 -1
  37. package/types/sap.ui.fl.d.ts +3 -1
  38. package/types/sap.ui.generic.app.d.ts +1 -1
  39. package/types/sap.ui.generic.template.d.ts +1 -1
  40. package/types/sap.ui.integration.d.ts +195 -19
  41. package/types/sap.ui.layout.d.ts +1 -1
  42. package/types/sap.ui.mdc.d.ts +5 -1
  43. package/types/sap.ui.richtexteditor.d.ts +36 -17
  44. package/types/sap.ui.rta.d.ts +1 -1
  45. package/types/sap.ui.suite.d.ts +1 -1
  46. package/types/sap.ui.support.d.ts +1 -1
  47. package/types/sap.ui.table.d.ts +7 -7
  48. package/types/sap.ui.testrecorder.d.ts +1 -1
  49. package/types/sap.ui.unified.d.ts +1 -1
  50. package/types/sap.ui.ux3.d.ts +1 -1
  51. package/types/sap.ui.vbm.d.ts +1 -1
  52. package/types/sap.ui.vk.d.ts +1 -1
  53. package/types/sap.ui.vtm.d.ts +1 -1
  54. package/types/sap.ui.webc.common.d.ts +1 -1
  55. package/types/sap.ui.webc.fiori.d.ts +1 -1
  56. package/types/sap.ui.webc.main.d.ts +1 -1
  57. package/types/sap.uiext.inbox.d.ts +1 -1
  58. package/types/sap.ushell.d.ts +1 -1
  59. package/types/sap.ushell_abap.d.ts +1 -1
  60. package/types/sap.uxap.d.ts +36 -1
  61. package/types/sap.viz.d.ts +1 -1
  62. package/types/sap.webanalytics.core.d.ts +1 -1
  63. package/types/sap.zen.commons.d.ts +1 -1
  64. package/types/sap.zen.crosstab.d.ts +1 -1
  65. package/types/sap.zen.dsh.d.ts +1 -1
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.106.0
1
+ // For Library Version: 1.107.1
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 in the {@link
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 such
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 should be used whenever personalization should be enabled by considering a certain persistence
603
- * layer. Available controller implementations for the registration process are:
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}: can be used to define a list of selectable
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.GroupController GroupController}: can be used to define a list of groupable properties
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}: Can be used in combination
617
- * with `sap.ui.fl.variants.VariantManagement` to persist state in variant using `sap.ui.fl` capabilities.
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
- * can be used to store personalization state in the local storage
621
- * - {@link sap.m.p13n.modification.ModificationHandler ModificationHandler}: will be used by default
622
- * - this handler will not persist state.
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
- * Apply a State on a control by passing an object that contains the registered controller key and an object
658
- * matching the innter subcontroller housekeeping.
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 on the current control state
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 may be fired every time
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
- * Deregister a registered control. By deregistering a control the control will be removed from the `Engine`
694
- * registry and all instance specific sub modules such as the registered controllers are going to be destroyed.
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 should only be called once per instance to register provided classes of `sap.m.p13n.Controller`
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)
734
- *
735
- * This method can be used to trigger a reset on the provided control instance.
718
+ * This method can be used to trigger a reset to the provided control instance.
736
719
  *
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 according control instance.
724
+ * The related control instance
742
725
  */
743
726
  oControl: sap.ui.core.Control,
744
727
  /**
745
- * The key for the affected config.
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 externalized state for a given control instance, after all necessary changes have been
753
- * applied (e.g. modification handler appliance). After the returned Promise has been resolved, the returned
754
- * State is in sync with the according state object of the control.
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 a Promise resolving in the current control state.
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 to be personalized
756
+ * The control instance that is personalized
774
757
  */
775
758
  oControl: sap.ui.core.Control,
776
759
  /**
777
- * The affected panels that should be added to the `sap.m.p13n.Popup`
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 in case the mode is set
790
- * to `ResponsivePopover`)
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 to be used by the `sap.m.p13n.Popup` control
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 sort specific personalization implementations.
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 to be personalized by this controller
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 specific personalization implementations.
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 to be personalized by this controller
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 personalized aggregation
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 sort specific personalization implementations.
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 to be personalized by this controller
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
  */
@@ -9833,6 +9830,14 @@ declare namespace sap {
9833
9830
  | string
9834
9831
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
9835
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
+
9836
9841
  /**
9837
9842
  * Items representing files that have already been uploaded.
9838
9843
  */
@@ -12438,6 +12443,16 @@ declare namespace sap {
12438
12443
  * @returns Instance of the default `sap.ui.unified.FileUploader`.
12439
12444
  */
12440
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;
12441
12456
  /**
12442
12457
  * Gets current value of property {@link #getDragDropDescription dragDropDescription}.
12443
12458
  *
@@ -12907,6 +12922,23 @@ declare namespace sap {
12907
12922
  */
12908
12923
  sCloudFilePickerServiceUrl?: sap.ui.core.URI
12909
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;
12910
12942
  /**
12911
12943
  * Sets a new value for property {@link #getDragDropDescription dragDropDescription}.
12912
12944
  *
@@ -15617,7 +15649,7 @@ declare namespace sap {
15617
15649
  | `{${string}}`;
15618
15650
 
15619
15651
  /**
15620
- * Defines the List of colors displayed in the palette. Minimum is 2 colors, maximum is 15 colors.
15652
+ * Defines the list of colors displayed in the palette. Minimum is 2 colors, maximum is 15 colors.
15621
15653
  */
15622
15654
  colors?:
15623
15655
  | sap.ui.core.CSSColor[]
@@ -15633,7 +15665,8 @@ declare namespace sap {
15633
15665
  | `{${string}}`;
15634
15666
 
15635
15667
  /**
15636
- * Denotes if the color has been chosen by selecting the "Default Color" button (true or false)
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.
15637
15670
  */
15638
15671
  showMoreColorsButton?:
15639
15672
  | boolean
@@ -19739,7 +19772,7 @@ declare namespace sap {
19739
19772
  * Defines the display text formatter function.
19740
19773
  */
19741
19774
  textFormatter?:
19742
- | any
19775
+ | Function
19743
19776
  | sap.ui.base.ManagedObject.PropertyBindingInfo
19744
19777
  | `{${string}}`;
19745
19778
 
@@ -19749,7 +19782,7 @@ declare namespace sap {
19749
19782
  * Defines the validation callback function called when a suggestion row gets selected.
19750
19783
  */
19751
19784
  suggestionRowValidator?:
19752
- | any
19785
+ | Function
19753
19786
  | sap.ui.base.ManagedObject.PropertyBindingInfo
19754
19787
  | `{${string}}`;
19755
19788
 
@@ -20361,7 +20394,7 @@ declare namespace sap {
20361
20394
  * @SINCE 1.104.0
20362
20395
  *
20363
20396
  * Describes the accessibility role of the link:
20364
- * - `LinkAccessibleRole.Default` - a navagation is expected to the location given in `href` property
20397
+ * - `LinkAccessibleRole.Default` - a navigation is expected to the location given in `href` property
20365
20398
  *
20366
20399
  * - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
20367
20400
  * scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
@@ -21384,7 +21417,7 @@ declare namespace sap {
21384
21417
  * function. You can use this function in order to validate the description before displaying it.
21385
21418
  */
21386
21419
  asyncDescriptionHandler?:
21387
- | any
21420
+ | Function
21388
21421
  | sap.ui.base.ManagedObject.PropertyBindingInfo
21389
21422
  | `{${string}}`;
21390
21423
 
@@ -21393,7 +21426,7 @@ declare namespace sap {
21393
21426
  * function. You can use this function in order to validate URLs before displaying them inside the description.
21394
21427
  */
21395
21428
  asyncURLHandler?:
21396
- | any
21429
+ | Function
21397
21430
  | sap.ui.base.ManagedObject.PropertyBindingInfo
21398
21431
  | `{${string}}`;
21399
21432
 
@@ -21569,7 +21602,7 @@ declare namespace sap {
21569
21602
  * function.
21570
21603
  */
21571
21604
  asyncDescriptionHandler?:
21572
- | any
21605
+ | Function
21573
21606
  | sap.ui.base.ManagedObject.PropertyBindingInfo
21574
21607
  | `{${string}}`;
21575
21608
 
@@ -21578,7 +21611,7 @@ declare namespace sap {
21578
21611
  * function.
21579
21612
  */
21580
21613
  asyncURLHandler?:
21581
- | any
21614
+ | Function
21582
21615
  | sap.ui.base.ManagedObject.PropertyBindingInfo
21583
21616
  | `{${string}}`;
21584
21617
 
@@ -27728,7 +27761,9 @@ declare namespace sap {
27728
27761
  * @SINCE 1.11.2
27729
27762
  *
27730
27763
  * Determines whether the background image (if configured) should be proportionally stretched to cover the
27731
- * 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").
27732
27767
  */
27733
27768
  backgroundRepeat?:
27734
27769
  | boolean
@@ -40576,6 +40611,8 @@ declare namespace sap {
40576
40611
  ): this;
40577
40612
  /**
40578
40613
  * Closes the `ColorPalettePopover`.
40614
+ *
40615
+ * @returns Reference to the closed control
40579
40616
  */
40580
40617
  close(): sap.ui.core.Control;
40581
40618
  /**
@@ -40625,7 +40662,7 @@ declare namespace sap {
40625
40662
  */
40626
40663
  mParameters?: {
40627
40664
  /**
40628
- * The color that is returned when user chooses the "Default Color" button.
40665
+ * The selected color value.
40629
40666
  */
40630
40667
  value?: sap.ui.core.CSSColor;
40631
40668
  /**
@@ -40687,7 +40724,7 @@ declare namespace sap {
40687
40724
  /**
40688
40725
  * Gets current value of property {@link #getColors colors}.
40689
40726
  *
40690
- * Defines the List of colors displayed in the palette. Minimum is 2 colors, maximum is 15 colors.
40727
+ * Defines the list of colors displayed in the palette. Minimum is 2 colors, maximum is 15 colors.
40691
40728
  *
40692
40729
  * Default value is `["gold", "darkorange", "indianred", "darkmagenta", "cornflowerblue", "deepskyblue",
40693
40730
  * "darkcyan", "olivedrab", "darkslategray", "azure", "white", "lightgray", "darkgray", "dimgray", "black"]`.
@@ -40729,7 +40766,8 @@ declare namespace sap {
40729
40766
  /**
40730
40767
  * Gets current value of property {@link #getShowMoreColorsButton showMoreColorsButton}.
40731
40768
  *
40732
- * Denotes if the color has been chosen by selecting the "Default Color" button (true or false)
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.
40733
40771
  *
40734
40772
  * Default value is `true`.
40735
40773
  *
@@ -40748,6 +40786,21 @@ declare namespace sap {
40748
40786
  * @returns Value of property `showRecentColorsSection`
40749
40787
  */
40750
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;
40751
40804
  /**
40752
40805
  * Sets a selected color for the ColorPicker control.
40753
40806
  *
@@ -40762,7 +40815,7 @@ declare namespace sap {
40762
40815
  /**
40763
40816
  * Sets a new value for property {@link #getColors colors}.
40764
40817
  *
40765
- * Defines the List of colors displayed in the palette. Minimum is 2 colors, maximum is 15 colors.
40818
+ * Defines the list of colors displayed in the palette. Minimum is 2 colors, maximum is 15 colors.
40766
40819
  *
40767
40820
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
40768
40821
  *
@@ -40832,7 +40885,8 @@ declare namespace sap {
40832
40885
  /**
40833
40886
  * Sets a new value for property {@link #getShowMoreColorsButton showMoreColorsButton}.
40834
40887
  *
40835
- * Denotes if the color has been chosen by selecting the "Default Color" button (true or false)
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.
40836
40890
  *
40837
40891
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
40838
40892
  *
@@ -61986,11 +62040,9 @@ declare namespace sap {
61986
62040
  *
61987
62041
  * Defines the validation callback function called when a suggestion row gets selected.
61988
62042
  *
61989
- * Default value is `empty string`.
61990
- *
61991
62043
  * @returns Value of property `suggestionRowValidator`
61992
62044
  */
61993
- getSuggestionRowValidator(): any;
62045
+ getSuggestionRowValidator(): Function;
61994
62046
  /**
61995
62047
  * @SINCE 1.44
61996
62048
  *
@@ -62010,11 +62062,9 @@ declare namespace sap {
62010
62062
  *
62011
62063
  * Defines the display text formatter function.
62012
62064
  *
62013
- * Default value is `empty string`.
62014
- *
62015
62065
  * @returns Value of property `textFormatter`
62016
62066
  */
62017
- getTextFormatter(): any;
62067
+ getTextFormatter(): Function;
62018
62068
  /**
62019
62069
  * Gets current value of property {@link #getType type}.
62020
62070
  *
@@ -62754,15 +62804,13 @@ declare namespace sap {
62754
62804
  *
62755
62805
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
62756
62806
  *
62757
- * Default value is `empty string`.
62758
- *
62759
62807
  * @returns Reference to `this` in order to allow method chaining
62760
62808
  */
62761
62809
  setSuggestionRowValidator(
62762
62810
  /**
62763
62811
  * New value for property `suggestionRowValidator`
62764
62812
  */
62765
- oSuggestionRowValidator?: any
62813
+ fnSuggestionRowValidator?: Function
62766
62814
  ): this;
62767
62815
  /**
62768
62816
  * @SINCE 1.44
@@ -62792,15 +62840,13 @@ declare namespace sap {
62792
62840
  *
62793
62841
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
62794
62842
  *
62795
- * Default value is `empty string`.
62796
- *
62797
62843
  * @returns Reference to `this` in order to allow method chaining
62798
62844
  */
62799
62845
  setTextFormatter(
62800
62846
  /**
62801
62847
  * New value for property `textFormatter`
62802
62848
  */
62803
- oTextFormatter?: any
62849
+ fnTextFormatter?: Function
62804
62850
  ): this;
62805
62851
  /**
62806
62852
  * Sets a new value for property {@link #getType type}.
@@ -65106,7 +65152,7 @@ declare namespace sap {
65106
65152
  * Gets current value of property {@link #getAccessibleRole accessibleRole}.
65107
65153
  *
65108
65154
  * Describes the accessibility role of the link:
65109
- * - `LinkAccessibleRole.Default` - a navagation is expected to the location given in `href` property
65155
+ * - `LinkAccessibleRole.Default` - a navigation is expected to the location given in `href` property
65110
65156
  *
65111
65157
  * - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
65112
65158
  * scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
@@ -65341,7 +65387,7 @@ declare namespace sap {
65341
65387
  * Sets a new value for property {@link #getAccessibleRole accessibleRole}.
65342
65388
  *
65343
65389
  * Describes the accessibility role of the link:
65344
- * - `LinkAccessibleRole.Default` - a navagation is expected to the location given in `href` property
65390
+ * - `LinkAccessibleRole.Default` - a navigation is expected to the location given in `href` property
65345
65391
  *
65346
65392
  * - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
65347
65393
  * scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
@@ -72480,7 +72526,7 @@ declare namespace sap {
72480
72526
  *
72481
72527
  * @returns Value of property `asyncDescriptionHandler`
72482
72528
  */
72483
- getAsyncDescriptionHandler(): any;
72529
+ getAsyncDescriptionHandler(): Function;
72484
72530
  /**
72485
72531
  * Gets current value of property {@link #getAsyncURLHandler asyncURLHandler}.
72486
72532
  *
@@ -72489,7 +72535,7 @@ declare namespace sap {
72489
72535
  *
72490
72536
  * @returns Value of property `asyncURLHandler`
72491
72537
  */
72492
- getAsyncURLHandler(): any;
72538
+ getAsyncURLHandler(): Function;
72493
72539
  /**
72494
72540
  * @SINCE 1.73
72495
72541
  *
@@ -72622,7 +72668,7 @@ declare namespace sap {
72622
72668
  /**
72623
72669
  * New value for property `asyncDescriptionHandler`
72624
72670
  */
72625
- oAsyncDescriptionHandler?: any
72671
+ fnAsyncDescriptionHandler?: Function
72626
72672
  ): this;
72627
72673
  /**
72628
72674
  * Sets a new value for property {@link #getAsyncURLHandler asyncURLHandler}.
@@ -72638,7 +72684,7 @@ declare namespace sap {
72638
72684
  /**
72639
72685
  * New value for property `asyncURLHandler`
72640
72686
  */
72641
- oAsyncURLHandler?: any
72687
+ fnAsyncURLHandler?: Function
72642
72688
  ): this;
72643
72689
  /**
72644
72690
  * @SINCE 1.73
@@ -73791,7 +73837,7 @@ declare namespace sap {
73791
73837
  *
73792
73838
  * @returns Value of property `asyncDescriptionHandler`
73793
73839
  */
73794
- getAsyncDescriptionHandler(): any;
73840
+ getAsyncDescriptionHandler(): Function;
73795
73841
  /**
73796
73842
  * Gets current value of property {@link #getAsyncURLHandler asyncURLHandler}.
73797
73843
  *
@@ -73800,7 +73846,7 @@ declare namespace sap {
73800
73846
  *
73801
73847
  * @returns Value of property `asyncURLHandler`
73802
73848
  */
73803
- getAsyncURLHandler(): any;
73849
+ getAsyncURLHandler(): Function;
73804
73850
  /**
73805
73851
  * Gets current value of property {@link #getGroupItems groupItems}.
73806
73852
  *
@@ -73900,7 +73946,7 @@ declare namespace sap {
73900
73946
  /**
73901
73947
  * New value for property `asyncDescriptionHandler`
73902
73948
  */
73903
- oAsyncDescriptionHandler?: any
73949
+ fnAsyncDescriptionHandler?: Function
73904
73950
  ): this;
73905
73951
  /**
73906
73952
  * Sets a new value for property {@link #getAsyncURLHandler asyncURLHandler}.
@@ -73916,7 +73962,7 @@ declare namespace sap {
73916
73962
  /**
73917
73963
  * New value for property `asyncURLHandler`
73918
73964
  */
73919
- oAsyncURLHandler?: any
73965
+ fnAsyncURLHandler?: Function
73920
73966
  ): this;
73921
73967
  /**
73922
73968
  * Sets a new value for property {@link #getGroupItems groupItems}.
@@ -109395,7 +109441,9 @@ declare namespace sap {
109395
109441
  * Gets current value of property {@link #getBackgroundRepeat backgroundRepeat}.
109396
109442
  *
109397
109443
  * Determines whether the background image (if configured) should be proportionally stretched to cover the
109398
- * 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").
109399
109447
  *
109400
109448
  * Default value is `false`.
109401
109449
  *
@@ -109573,7 +109621,9 @@ declare namespace sap {
109573
109621
  * Sets a new value for property {@link #getBackgroundRepeat backgroundRepeat}.
109574
109622
  *
109575
109623
  * Determines whether the background image (if configured) should be proportionally stretched to cover the
109576
- * 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").
109577
109627
  *
109578
109628
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
109579
109629
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.106.0
1
+ // For Library Version: 1.107.1
2
2
 
3
3
  declare namespace sap {
4
4
  /**
package/types/sap.me.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.106.0
1
+ // For Library Version: 1.107.1
2
2
 
3
3
  declare namespace sap {
4
4
  /**