@openui5/ts-types-esm 1.147.1 → 1.148.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.m.d.ts +193 -36
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +264 -20
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +25 -1
- package/types/sap.ui.integration.d.ts +6 -3
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +237 -3
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +4 -4
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.148.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -2584,71 +2584,159 @@ declare module "sap/m/library" {
|
|
|
2584
2584
|
Overflow = "Overflow",
|
|
2585
2585
|
}
|
|
2586
2586
|
/**
|
|
2587
|
-
*
|
|
2587
|
+
* Operations for conditions used in the personalization condition panel.
|
|
2588
2588
|
*
|
|
2589
2589
|
* This enum is part of the 'sap/m/library' module export and must be accessed by the property 'P13nConditionOperation'.
|
|
2590
2590
|
*/
|
|
2591
2591
|
export enum P13nConditionOperation {
|
|
2592
|
+
/**
|
|
2593
|
+
* "ascending" operation: sorts values in ascending order.
|
|
2594
|
+
*/
|
|
2592
2595
|
Ascending = "Ascending",
|
|
2593
|
-
|
|
2596
|
+
/**
|
|
2597
|
+
* "average" operation: calculates the average of values.
|
|
2598
|
+
*/
|
|
2594
2599
|
Average = "Average",
|
|
2595
|
-
|
|
2600
|
+
/**
|
|
2601
|
+
* "between" operation: filters for values between two given operands.
|
|
2602
|
+
*/
|
|
2596
2603
|
BT = "BT",
|
|
2597
|
-
|
|
2604
|
+
/**
|
|
2605
|
+
* "contains" operation: filters for values that contain the given substring.
|
|
2606
|
+
*/
|
|
2598
2607
|
Contains = "Contains",
|
|
2599
|
-
|
|
2608
|
+
/**
|
|
2609
|
+
* "default values" operation: applies default values for the condition.
|
|
2610
|
+
*
|
|
2611
|
+
* @since 1.148
|
|
2612
|
+
*/
|
|
2613
|
+
DefaultValues = "DefaultValues",
|
|
2614
|
+
/**
|
|
2615
|
+
* "descending" operation: sorts values in descending order.
|
|
2616
|
+
*/
|
|
2600
2617
|
Descending = "Descending",
|
|
2601
|
-
|
|
2618
|
+
/**
|
|
2619
|
+
* "empty" operation: filters for entries whose value is empty.
|
|
2620
|
+
*/
|
|
2602
2621
|
Empty = "Empty",
|
|
2603
|
-
|
|
2622
|
+
/**
|
|
2623
|
+
* "ends with" operation: filters for values that end with the given string.
|
|
2624
|
+
*/
|
|
2604
2625
|
EndsWith = "EndsWith",
|
|
2605
|
-
|
|
2626
|
+
/**
|
|
2627
|
+
* "equal to" operation: filters for values equal to the given operand.
|
|
2628
|
+
*/
|
|
2606
2629
|
EQ = "EQ",
|
|
2607
|
-
|
|
2630
|
+
/**
|
|
2631
|
+
* "greater than or equal to" operation: filters for values greater than or equal to the given operand.
|
|
2632
|
+
*/
|
|
2608
2633
|
GE = "GE",
|
|
2609
|
-
|
|
2634
|
+
/**
|
|
2635
|
+
* "group ascending" operation: groups values in ascending order.
|
|
2636
|
+
*/
|
|
2610
2637
|
GroupAscending = "GroupAscending",
|
|
2611
|
-
|
|
2638
|
+
/**
|
|
2639
|
+
* "group descending" operation: groups values in descending order.
|
|
2640
|
+
*/
|
|
2612
2641
|
GroupDescending = "GroupDescending",
|
|
2613
|
-
|
|
2642
|
+
/**
|
|
2643
|
+
* "greater than" operation: filters for values greater than the given operand.
|
|
2644
|
+
*/
|
|
2614
2645
|
GT = "GT",
|
|
2615
|
-
|
|
2646
|
+
/**
|
|
2647
|
+
* "initial" operation: filters for entries whose value has not been changed from its initial state.
|
|
2648
|
+
*/
|
|
2616
2649
|
Initial = "Initial",
|
|
2617
|
-
|
|
2650
|
+
/**
|
|
2651
|
+
* "less than or equal to" operation: filters for values less than or equal to the given operand.
|
|
2652
|
+
*/
|
|
2618
2653
|
LE = "LE",
|
|
2619
|
-
|
|
2654
|
+
/**
|
|
2655
|
+
* "less than" operation: filters for values less than the given operand.
|
|
2656
|
+
*/
|
|
2620
2657
|
LT = "LT",
|
|
2621
|
-
|
|
2658
|
+
/**
|
|
2659
|
+
* "maximum" operation: determines the maximum value.
|
|
2660
|
+
*/
|
|
2622
2661
|
Maximum = "Maximum",
|
|
2623
|
-
|
|
2662
|
+
/**
|
|
2663
|
+
* "minimum" operation: determines the minimum value.
|
|
2664
|
+
*/
|
|
2624
2665
|
Minimum = "Minimum",
|
|
2625
|
-
|
|
2666
|
+
/**
|
|
2667
|
+
* "not between" operation: excludes values between two given operands.
|
|
2668
|
+
*/
|
|
2626
2669
|
NotBT = "NotBT",
|
|
2627
|
-
|
|
2670
|
+
/**
|
|
2671
|
+
* "does not contain" operation: excludes values that contain the given substring.
|
|
2672
|
+
*/
|
|
2628
2673
|
NotContains = "NotContains",
|
|
2629
|
-
|
|
2674
|
+
/**
|
|
2675
|
+
* "not empty" operation: excludes entries whose value is empty.
|
|
2676
|
+
*/
|
|
2630
2677
|
NotEmpty = "NotEmpty",
|
|
2631
|
-
|
|
2678
|
+
/**
|
|
2679
|
+
* "does not end with" operation: excludes values that end with the given string.
|
|
2680
|
+
*/
|
|
2632
2681
|
NotEndsWith = "NotEndsWith",
|
|
2633
|
-
|
|
2682
|
+
/**
|
|
2683
|
+
* "not equal to" operation: excludes values equal to the given operand.
|
|
2684
|
+
*/
|
|
2634
2685
|
NotEQ = "NotEQ",
|
|
2635
|
-
|
|
2686
|
+
/**
|
|
2687
|
+
* "not greater than or equal to" operation: excludes values greater than or equal to the given operand.
|
|
2688
|
+
*/
|
|
2636
2689
|
NotGE = "NotGE",
|
|
2637
|
-
|
|
2690
|
+
/**
|
|
2691
|
+
* "not greater than" operation: excludes values greater than the given operand.
|
|
2692
|
+
*/
|
|
2638
2693
|
NotGT = "NotGT",
|
|
2639
|
-
|
|
2694
|
+
/**
|
|
2695
|
+
* "not initial" operation: excludes entries whose value has not been changed from its initial state.
|
|
2696
|
+
*/
|
|
2640
2697
|
NotInitial = "NotInitial",
|
|
2641
|
-
|
|
2698
|
+
/**
|
|
2699
|
+
* "not less than or equal to" operation: excludes values less than or equal to the given operand.
|
|
2700
|
+
*/
|
|
2642
2701
|
NotLE = "NotLE",
|
|
2643
|
-
|
|
2702
|
+
/**
|
|
2703
|
+
* "not less than" operation: excludes values less than the given operand.
|
|
2704
|
+
*/
|
|
2644
2705
|
NotLT = "NotLT",
|
|
2645
|
-
|
|
2706
|
+
/**
|
|
2707
|
+
* "does not start with" operation: excludes values that start with the given string.
|
|
2708
|
+
*/
|
|
2646
2709
|
NotStartsWith = "NotStartsWith",
|
|
2647
|
-
|
|
2710
|
+
/**
|
|
2711
|
+
* "starts with" operation: filters for values that start with the given string.
|
|
2712
|
+
*/
|
|
2648
2713
|
StartsWith = "StartsWith",
|
|
2649
|
-
|
|
2714
|
+
/**
|
|
2715
|
+
* "total" operation: calculates the total of values.
|
|
2716
|
+
*/
|
|
2650
2717
|
Total = "Total",
|
|
2651
2718
|
}
|
|
2719
|
+
/**
|
|
2720
|
+
* Type of a condition operation in the personalization condition panel.
|
|
2721
|
+
*
|
|
2722
|
+
* This enum is part of the 'sap/m/library' module export and must be accessed by the property 'P13nConditionOperationType'.
|
|
2723
|
+
*/
|
|
2724
|
+
export enum P13nConditionOperationType {
|
|
2725
|
+
/**
|
|
2726
|
+
* Default values for the condition.
|
|
2727
|
+
*
|
|
2728
|
+
* @since 1.148
|
|
2729
|
+
*/
|
|
2730
|
+
DefaultValues = "DefaultValues",
|
|
2731
|
+
/**
|
|
2732
|
+
* Values that should be excluded from the result.
|
|
2733
|
+
*/
|
|
2734
|
+
Exclude = "Exclude",
|
|
2735
|
+
/**
|
|
2736
|
+
* Values that should be included in the result.
|
|
2737
|
+
*/
|
|
2738
|
+
Include = "Include",
|
|
2739
|
+
}
|
|
2652
2740
|
/**
|
|
2653
2741
|
* Type of panels used in the personalization dialog.
|
|
2654
2742
|
*
|
|
@@ -56538,14 +56626,20 @@ declare module "sap/m/Menu" {
|
|
|
56538
56626
|
declare module "sap/m/MenuButton" {
|
|
56539
56627
|
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
56540
56628
|
|
|
56629
|
+
import {
|
|
56630
|
+
IFormContent,
|
|
56631
|
+
ID,
|
|
56632
|
+
URI,
|
|
56633
|
+
TextDirection,
|
|
56634
|
+
CSSSize,
|
|
56635
|
+
} from "sap/ui/core/library";
|
|
56636
|
+
|
|
56541
56637
|
import {
|
|
56542
56638
|
IToolbarInteractiveControl,
|
|
56543
56639
|
MenuButtonMode,
|
|
56544
56640
|
ButtonType,
|
|
56545
56641
|
} from "sap/m/library";
|
|
56546
56642
|
|
|
56547
|
-
import { ID, URI, TextDirection, CSSSize } from "sap/ui/core/library";
|
|
56548
|
-
|
|
56549
56643
|
import Event from "sap/ui/base/Event";
|
|
56550
56644
|
|
|
56551
56645
|
import Menu from "sap/m/Menu";
|
|
@@ -56563,8 +56657,9 @@ declare module "sap/m/MenuButton" {
|
|
|
56563
56657
|
*/
|
|
56564
56658
|
export default class MenuButton
|
|
56565
56659
|
extends Control
|
|
56566
|
-
implements IToolbarInteractiveControl
|
|
56660
|
+
implements IFormContent, IToolbarInteractiveControl
|
|
56567
56661
|
{
|
|
56662
|
+
__implements__sap_ui_core_IFormContent: boolean;
|
|
56568
56663
|
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
56569
56664
|
/**
|
|
56570
56665
|
* Constructor for a new MenuButton.
|
|
@@ -56874,6 +56969,16 @@ declare module "sap/m/MenuButton" {
|
|
|
56874
56969
|
* @returns Value of property `enabled`
|
|
56875
56970
|
*/
|
|
56876
56971
|
getEnabled(): boolean;
|
|
56972
|
+
/**
|
|
56973
|
+
* Implements {@link sap.ui.core.IFormContent} interface.
|
|
56974
|
+
*
|
|
56975
|
+
* `MenuButton` must not be stretched by the Form layout because it should keep its natural width.
|
|
56976
|
+
*
|
|
56977
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
56978
|
+
*
|
|
56979
|
+
* @returns `true`
|
|
56980
|
+
*/
|
|
56981
|
+
getFormDoNotAdjustWidth(): boolean;
|
|
56877
56982
|
/**
|
|
56878
56983
|
* Gets current value of property {@link #getIcon icon}.
|
|
56879
56984
|
*
|
|
@@ -62429,6 +62534,11 @@ declare module "sap/m/MessageStrip" {
|
|
|
62429
62534
|
* - `em`
|
|
62430
62535
|
* - `strong`
|
|
62431
62536
|
* - `u`
|
|
62537
|
+
* - `span` (with `style` and `class` attributes)
|
|
62538
|
+
*
|
|
62539
|
+
* **Inline Icons:** You can embed icons within the message text using the `span` element with the SAP-icons
|
|
62540
|
+
* font family. Use direct Unicode characters or the helper function {@link sap.m.MessageStripUtilities.getInlineIcon}.
|
|
62541
|
+
* See the {@link sap.m.MessageStrip Samples} for usage examples.
|
|
62432
62542
|
*
|
|
62433
62543
|
* Default value is `false`.
|
|
62434
62544
|
*
|
|
@@ -62627,6 +62737,11 @@ declare module "sap/m/MessageStrip" {
|
|
|
62627
62737
|
* - `em`
|
|
62628
62738
|
* - `strong`
|
|
62629
62739
|
* - `u`
|
|
62740
|
+
* - `span` (with `style` and `class` attributes)
|
|
62741
|
+
*
|
|
62742
|
+
* **Inline Icons:** You can embed icons within the message text using the `span` element with the SAP-icons
|
|
62743
|
+
* font family. Use direct Unicode characters or the helper function {@link sap.m.MessageStripUtilities.getInlineIcon}.
|
|
62744
|
+
* See the {@link sap.m.MessageStrip Samples} for usage examples.
|
|
62630
62745
|
*
|
|
62631
62746
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
62632
62747
|
*
|
|
@@ -62798,6 +62913,11 @@ declare module "sap/m/MessageStrip" {
|
|
|
62798
62913
|
* - `em`
|
|
62799
62914
|
* - `strong`
|
|
62800
62915
|
* - `u`
|
|
62916
|
+
* - `span` (with `style` and `class` attributes)
|
|
62917
|
+
*
|
|
62918
|
+
* **Inline Icons:** You can embed icons within the message text using the `span` element with the SAP-icons
|
|
62919
|
+
* font family. Use direct Unicode characters or the helper function {@link sap.m.MessageStripUtilities.getInlineIcon}.
|
|
62920
|
+
* See the {@link sap.m.MessageStrip Samples} for usage examples.
|
|
62801
62921
|
*
|
|
62802
62922
|
* @since 1.50
|
|
62803
62923
|
*/
|
|
@@ -100755,6 +100875,17 @@ declare module "sap/m/Popover" {
|
|
|
100755
100875
|
* instead.
|
|
100756
100876
|
*/
|
|
100757
100877
|
getLeftButton(): ID | null;
|
|
100878
|
+
/**
|
|
100879
|
+
* Gets current value of property {@link #getMaxHeight maxHeight}.
|
|
100880
|
+
*
|
|
100881
|
+
* Sets the maximum height of the Popover. When the content exceeds this height, scrolling is enabled. This
|
|
100882
|
+
* property applies to the entire Popover, including the header, content, and footer.
|
|
100883
|
+
*
|
|
100884
|
+
* @since 1.148
|
|
100885
|
+
*
|
|
100886
|
+
* @returns Value of property `maxHeight`
|
|
100887
|
+
*/
|
|
100888
|
+
getMaxHeight(): CSSSize;
|
|
100758
100889
|
/**
|
|
100759
100890
|
* Gets current value of property {@link #getModal modal}.
|
|
100760
100891
|
*
|
|
@@ -101236,6 +101367,24 @@ declare module "sap/m/Popover" {
|
|
|
101236
101367
|
*/
|
|
101237
101368
|
oLeftButton: ID | Button
|
|
101238
101369
|
): this;
|
|
101370
|
+
/**
|
|
101371
|
+
* Sets a new value for property {@link #getMaxHeight maxHeight}.
|
|
101372
|
+
*
|
|
101373
|
+
* Sets the maximum height of the Popover. When the content exceeds this height, scrolling is enabled. This
|
|
101374
|
+
* property applies to the entire Popover, including the header, content, and footer.
|
|
101375
|
+
*
|
|
101376
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
101377
|
+
*
|
|
101378
|
+
* @since 1.148
|
|
101379
|
+
*
|
|
101380
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
101381
|
+
*/
|
|
101382
|
+
setMaxHeight(
|
|
101383
|
+
/**
|
|
101384
|
+
* New value for property `maxHeight`
|
|
101385
|
+
*/
|
|
101386
|
+
sMaxHeight?: CSSSize
|
|
101387
|
+
): this;
|
|
101239
101388
|
/**
|
|
101240
101389
|
* Setter for property `modal`. This overwrites the default setter of the property `modal` to avoid rerendering
|
|
101241
101390
|
* the whole popover control.
|
|
@@ -101536,6 +101685,14 @@ declare module "sap/m/Popover" {
|
|
|
101536
101685
|
*/
|
|
101537
101686
|
contentHeight?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
101538
101687
|
|
|
101688
|
+
/**
|
|
101689
|
+
* Sets the maximum height of the Popover. When the content exceeds this height, scrolling is enabled. This
|
|
101690
|
+
* property applies to the entire Popover, including the header, content, and footer.
|
|
101691
|
+
*
|
|
101692
|
+
* @since 1.148
|
|
101693
|
+
*/
|
|
101694
|
+
maxHeight?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
101695
|
+
|
|
101539
101696
|
/**
|
|
101540
101697
|
* This property is deprecated. Please use properties verticalScrolling and horizontalScrolling instead.
|
|
101541
101698
|
* If you still use this property it will be mapped on the new properties verticalScrolling and horizontalScrolling.
|
|
@@ -145243,8 +145400,8 @@ declare module "sap/m/table/Title" {
|
|
|
145243
145400
|
* A composite title control intended to display a table title along with optional total and selected row
|
|
145244
145401
|
* counts.
|
|
145245
145402
|
*
|
|
145246
|
-
*
|
|
145247
|
-
*
|
|
145403
|
+
* The `sap.m.table.Title` control renders the provided `sap.m.Title` control and optionally displays the
|
|
145404
|
+
* table's total row count, the selected row count, or both independently.
|
|
145248
145405
|
*
|
|
145249
145406
|
* @since 1.147
|
|
145250
145407
|
*/
|
package/types/sap.tnt.d.ts
CHANGED