@sapui5/ts-types-esm 1.133.0 → 1.134.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.cux.home.d.ts +0 -14
- package/types/sap.esh.search.ui.d.ts +7 -1
- package/types/sap.f.d.ts +53 -9
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +25 -3
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +64 -58
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +192 -136
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +629 -77
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +360 -98
- package/types/sap.suite.ui.commons.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +53 -30
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +107 -7
- package/types/sap.ui.codeeditor.d.ts +9 -7
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +9 -28
- package/types/sap.ui.core.d.ts +46779 -46490
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -3
- package/types/sap.ui.layout.d.ts +4 -2
- package/types/sap.ui.mdc.d.ts +227 -12
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +76 -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 +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +41 -47
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +335 -4
- package/types/sap.ui.vk.d.ts +4 -4
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +69 -4
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +7 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.134.2
|
|
2
2
|
|
|
3
3
|
declare module "sap/suite/ui/generic/template/library" {
|
|
4
4
|
/**
|
|
@@ -761,6 +761,22 @@ declare module "sap/suite/ui/generic/template/Canvas/extensionAPI/ExtensionAPI"
|
|
|
761
761
|
*/
|
|
762
762
|
fnFunction: Function
|
|
763
763
|
): void;
|
|
764
|
+
/**
|
|
765
|
+
* Returns a communication object for storing and accessing custom state information within the current
|
|
766
|
+
* app.
|
|
767
|
+
*
|
|
768
|
+
* - If `iLevel` is `0`, it returns a global communication object shared across components. - If `iLevel`
|
|
769
|
+
* is `1`, it returns a local communication object specific to the current canvas component.
|
|
770
|
+
*
|
|
771
|
+
*
|
|
772
|
+
* @returns The communication object.
|
|
773
|
+
*/
|
|
774
|
+
getCommunicationObject(
|
|
775
|
+
/**
|
|
776
|
+
* The scope level of the communication object (0 for global, 1 for local).
|
|
777
|
+
*/
|
|
778
|
+
iLevel: number
|
|
779
|
+
): object;
|
|
764
780
|
/**
|
|
765
781
|
* Get the Flexible Column Layout Action Buttons (Fullscreen, Exit Fullscreen and Close). Note that the
|
|
766
782
|
* usage of the Flexible Column Layout Action Buttons must have been switched on in the settings of the
|
|
@@ -2295,6 +2311,14 @@ declare module "sap/suite/ui/generic/template/ListReport/extensionAPI/ExtensionA
|
|
|
2295
2311
|
*/
|
|
2296
2312
|
oControl: Control
|
|
2297
2313
|
): void;
|
|
2314
|
+
/**
|
|
2315
|
+
* Returns the global communication object for storing and accessing custom state information within the
|
|
2316
|
+
* current app. This object can be used across components to share state information.
|
|
2317
|
+
*
|
|
2318
|
+
*
|
|
2319
|
+
* @returns The communication object.
|
|
2320
|
+
*/
|
|
2321
|
+
getCommunicationObject(): object;
|
|
2298
2322
|
/**
|
|
2299
2323
|
* Get the navigation controller for navigation actions
|
|
2300
2324
|
*
|
|
@@ -2303,11 +2327,10 @@ declare module "sap/suite/ui/generic/template/ListReport/extensionAPI/ExtensionA
|
|
|
2303
2327
|
*/
|
|
2304
2328
|
getNavigationController(): NavigationController;
|
|
2305
2329
|
/**
|
|
2306
|
-
* If
|
|
2330
|
+
* If multi view table is enabled, this function returns the selected variant's key.
|
|
2307
2331
|
*
|
|
2308
|
-
* @experimental
|
|
2309
2332
|
*
|
|
2310
|
-
* @returns The
|
|
2333
|
+
* @returns The currently selected variant key on the table.
|
|
2311
2334
|
*/
|
|
2312
2335
|
getQuickVariantSelectionKey(): string;
|
|
2313
2336
|
/**
|
|
@@ -2482,13 +2505,11 @@ declare module "sap/suite/ui/generic/template/ListReport/extensionAPI/ExtensionA
|
|
|
2482
2505
|
onClose?: Function
|
|
2483
2506
|
): void;
|
|
2484
2507
|
/**
|
|
2485
|
-
* If
|
|
2486
|
-
*
|
|
2487
|
-
* @experimental
|
|
2508
|
+
* If multi view table is enabled, this function switches the table's view to given variant key.
|
|
2488
2509
|
*/
|
|
2489
2510
|
setQuickVariantSelectionKey(
|
|
2490
2511
|
/**
|
|
2491
|
-
* The
|
|
2512
|
+
* The table variant key to be selected.
|
|
2492
2513
|
*/
|
|
2493
2514
|
sKey: string
|
|
2494
2515
|
): void;
|
|
@@ -3044,34 +3065,31 @@ declare module "sap/suite/ui/generic/template/ObjectPage/extensionAPI/DraftTrans
|
|
|
3044
3065
|
fnFunction: Function
|
|
3045
3066
|
): void;
|
|
3046
3067
|
/**
|
|
3047
|
-
*
|
|
3068
|
+
* Cancels the draft. Note that this method only works when you are on the root of a draft. The normal navigation
|
|
3048
3069
|
* which follows the cancellation of a draft is executed. Moreover, note that executing this method will
|
|
3049
3070
|
* set the App to be busy. However, it does not ensure, that the method is only called, when the App is
|
|
3050
3071
|
* currently unbusy. If you want to ensure that, you have to use {@link sap.suite.ui.generic.template.ObjectPage.extensionAPI.ExtensionAPI#securedExecution}.
|
|
3051
3072
|
*
|
|
3052
|
-
* @experimental
|
|
3053
3073
|
*
|
|
3054
|
-
* @returns
|
|
3074
|
+
* @returns A promise that is resolved when the draft is cancelled, rejected when it is not possible.
|
|
3055
3075
|
*/
|
|
3056
|
-
discardDraft():
|
|
3076
|
+
discardDraft(): Promise<void>;
|
|
3057
3077
|
/**
|
|
3058
|
-
*
|
|
3059
|
-
* changes in the model those pending changes are sent as a patch request with the side effect batch request.
|
|
3060
|
-
* If no source property and no source entity is passed a global side effect is executed
|
|
3061
|
-
*
|
|
3062
|
-
* @experimental
|
|
3078
|
+
* Checks if side effects exist for the given properties or entities and executes them. If there are pending
|
|
3079
|
+
* changes in the model, those pending changes are sent as a patch request with the side effect batch request.
|
|
3080
|
+
* If no source property and no source entity is passed, a global side effect is executed.
|
|
3063
3081
|
*/
|
|
3064
3082
|
executeSideEffects(
|
|
3065
3083
|
/**
|
|
3066
|
-
*
|
|
3084
|
+
* Object containing any of the following properties:
|
|
3067
3085
|
*/
|
|
3068
3086
|
oSideEffects?: {
|
|
3069
3087
|
/**
|
|
3070
|
-
*
|
|
3088
|
+
* Array with property paths
|
|
3071
3089
|
*/
|
|
3072
3090
|
sourceProperties: any[];
|
|
3073
3091
|
/**
|
|
3074
|
-
*
|
|
3092
|
+
* Array with navigation property paths
|
|
3075
3093
|
*/
|
|
3076
3094
|
sourceEntities: any[];
|
|
3077
3095
|
}
|
|
@@ -3182,6 +3200,14 @@ declare module "sap/suite/ui/generic/template/ObjectPage/extensionAPI/ExtensionA
|
|
|
3182
3200
|
*/
|
|
3183
3201
|
fnFunction: Function
|
|
3184
3202
|
): void;
|
|
3203
|
+
/**
|
|
3204
|
+
* Returns the global communication object for storing and accessing custom state information within the
|
|
3205
|
+
* current app. This object can be used across components to share state information.
|
|
3206
|
+
*
|
|
3207
|
+
*
|
|
3208
|
+
* @returns The communication object.
|
|
3209
|
+
*/
|
|
3210
|
+
getCommunicationObject(): object;
|
|
3185
3211
|
/**
|
|
3186
3212
|
* Get the navigation controller for navigation actions
|
|
3187
3213
|
*
|
|
@@ -3190,15 +3216,14 @@ declare module "sap/suite/ui/generic/template/ObjectPage/extensionAPI/ExtensionA
|
|
|
3190
3216
|
*/
|
|
3191
3217
|
getNavigationController(): NavigationController;
|
|
3192
3218
|
/**
|
|
3193
|
-
*
|
|
3219
|
+
* Returns the currently selected variant key on the table in the given object page section.
|
|
3194
3220
|
*
|
|
3195
|
-
* @experimental
|
|
3196
3221
|
*
|
|
3197
|
-
* @returns The
|
|
3222
|
+
* @returns The currently selected variant key on the table.
|
|
3198
3223
|
*/
|
|
3199
3224
|
getQuickVariantSelectionKey(
|
|
3200
3225
|
/**
|
|
3201
|
-
*
|
|
3226
|
+
* The object page section id in which the table is present.
|
|
3202
3227
|
*/
|
|
3203
3228
|
sSectionKey: string
|
|
3204
3229
|
): string;
|
|
@@ -3438,19 +3463,17 @@ declare module "sap/suite/ui/generic/template/ObjectPage/extensionAPI/ExtensionA
|
|
|
3438
3463
|
onClose?: Function
|
|
3439
3464
|
): void;
|
|
3440
3465
|
/**
|
|
3441
|
-
*
|
|
3442
|
-
*
|
|
3443
|
-
* @experimental
|
|
3466
|
+
* Switches the table's view to the given variant key.
|
|
3444
3467
|
*/
|
|
3445
3468
|
setQuickVariantSelectionKey(
|
|
3446
3469
|
/**
|
|
3447
|
-
*
|
|
3470
|
+
* The object page section id in which the table is present.
|
|
3448
3471
|
*/
|
|
3449
3472
|
sSectionKey: string,
|
|
3450
3473
|
/**
|
|
3451
|
-
* The
|
|
3474
|
+
* The table variant key to be selected.
|
|
3452
3475
|
*/
|
|
3453
|
-
|
|
3476
|
+
sVariantKey: string
|
|
3454
3477
|
): void;
|
|
3455
3478
|
}
|
|
3456
3479
|
}
|
package/types/sap.tnt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.134.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
/**
|
|
@@ -43,6 +43,24 @@ declare module "sap/tnt/library" {
|
|
|
43
43
|
*/
|
|
44
44
|
Narrow = "Narrow",
|
|
45
45
|
}
|
|
46
|
+
/**
|
|
47
|
+
* Available options for the Side Navigation design.
|
|
48
|
+
*
|
|
49
|
+
* This enum is part of the 'sap/tnt/library' module export and must be accessed by the property 'SideNavigationDesign'.
|
|
50
|
+
*
|
|
51
|
+
* @since 1.134.0
|
|
52
|
+
* @experimental Behavior might change.
|
|
53
|
+
*/
|
|
54
|
+
export enum SideNavigationDesign {
|
|
55
|
+
/**
|
|
56
|
+
* Side Navigation has a shadow and border.
|
|
57
|
+
*/
|
|
58
|
+
Decorated = "Decorated",
|
|
59
|
+
/**
|
|
60
|
+
* Side Navigation without any shadow or border.
|
|
61
|
+
*/
|
|
62
|
+
Plain = "Plain",
|
|
63
|
+
}
|
|
46
64
|
}
|
|
47
65
|
|
|
48
66
|
declare module "sap/tnt/IllustratedMessageType" {
|
|
@@ -1549,8 +1567,17 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1549
1567
|
/**
|
|
1550
1568
|
* Gets current value of property {@link #getSelectable selectable}.
|
|
1551
1569
|
*
|
|
1552
|
-
* Specifies if the item can be selected.
|
|
1553
|
-
*
|
|
1570
|
+
* Specifies if the item can be selected. By default all items are selectable.
|
|
1571
|
+
*
|
|
1572
|
+
* When a parent item's `selectable` property is set to `false`, selecting it will only expand or collapse
|
|
1573
|
+
* its sub-items.
|
|
1574
|
+
*
|
|
1575
|
+
* To improve user experience do not mix selectable parent items with not selectable parent items within
|
|
1576
|
+
* a single side navigation.
|
|
1577
|
+
*
|
|
1578
|
+
* **Guidelines:**
|
|
1579
|
+
* - External links should not be selectable.
|
|
1580
|
+
* - Items that trigger actions (with design "Action") should not be selectable.
|
|
1554
1581
|
*
|
|
1555
1582
|
* Default value is `true`.
|
|
1556
1583
|
*
|
|
@@ -1716,8 +1743,17 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1716
1743
|
/**
|
|
1717
1744
|
* Sets a new value for property {@link #getSelectable selectable}.
|
|
1718
1745
|
*
|
|
1719
|
-
* Specifies if the item can be selected.
|
|
1720
|
-
*
|
|
1746
|
+
* Specifies if the item can be selected. By default all items are selectable.
|
|
1747
|
+
*
|
|
1748
|
+
* When a parent item's `selectable` property is set to `false`, selecting it will only expand or collapse
|
|
1749
|
+
* its sub-items.
|
|
1750
|
+
*
|
|
1751
|
+
* To improve user experience do not mix selectable parent items with not selectable parent items within
|
|
1752
|
+
* a single side navigation.
|
|
1753
|
+
*
|
|
1754
|
+
* **Guidelines:**
|
|
1755
|
+
* - External links should not be selectable.
|
|
1756
|
+
* - Items that trigger actions (with design "Action") should not be selectable.
|
|
1721
1757
|
*
|
|
1722
1758
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1723
1759
|
*
|
|
@@ -1793,8 +1829,17 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1793
1829
|
visible?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1794
1830
|
|
|
1795
1831
|
/**
|
|
1796
|
-
* Specifies if the item can be selected.
|
|
1797
|
-
*
|
|
1832
|
+
* Specifies if the item can be selected. By default all items are selectable.
|
|
1833
|
+
*
|
|
1834
|
+
* When a parent item's `selectable` property is set to `false`, selecting it will only expand or collapse
|
|
1835
|
+
* its sub-items.
|
|
1836
|
+
*
|
|
1837
|
+
* To improve user experience do not mix selectable parent items with not selectable parent items within
|
|
1838
|
+
* a single side navigation.
|
|
1839
|
+
*
|
|
1840
|
+
* **Guidelines:**
|
|
1841
|
+
* - External links should not be selectable.
|
|
1842
|
+
* - Items that trigger actions (with design "Action") should not be selectable.
|
|
1798
1843
|
*
|
|
1799
1844
|
* @since 1.116
|
|
1800
1845
|
* @experimental As of version 1.116. Disclaimer: this property is in a beta state - incompatible API changes
|
|
@@ -2191,6 +2236,8 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
2191
2236
|
PropertyBindingInfo,
|
|
2192
2237
|
} from "sap/ui/base/ManagedObject";
|
|
2193
2238
|
|
|
2239
|
+
import { SideNavigationDesign } from "sap/tnt/library";
|
|
2240
|
+
|
|
2194
2241
|
import NavigationList from "sap/tnt/NavigationList";
|
|
2195
2242
|
|
|
2196
2243
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
@@ -2209,6 +2256,9 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
2209
2256
|
* - The flexible part adapts its size to the fixed one.
|
|
2210
2257
|
* - The flexible part has a scrollbar when the content is larger than the available space. **Note:**
|
|
2211
2258
|
* In order for the `SideNavigation` to stretch properly, its parent layout control should only be the `sap.tnt.ToolPage`.
|
|
2259
|
+
* **Note:** If used outside the intended parent layout `sap.tnt.ToolPage`, for example inside a `sap.m.ResponsivePopover`
|
|
2260
|
+
* to achieve a Side Navigation Overlay Mode, the application developer should set the `design` property
|
|
2261
|
+
* to `Plain`.
|
|
2212
2262
|
*
|
|
2213
2263
|
* @since 1.34
|
|
2214
2264
|
*/
|
|
@@ -2400,6 +2450,21 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
2400
2450
|
* @returns Value of property `ariaLabel`
|
|
2401
2451
|
*/
|
|
2402
2452
|
getAriaLabel(): string;
|
|
2453
|
+
/**
|
|
2454
|
+
* Gets current value of property {@link #getDesign design}.
|
|
2455
|
+
*
|
|
2456
|
+
* Specifies whether the control should have own container styling, such as a box-shadow and border, or
|
|
2457
|
+
* not. **Note:** This property has to be set to `Plain` when the control is used inside a `sap.m.ResponsivePopover`
|
|
2458
|
+
* to achieve a Side Navigation Overlay Mode.
|
|
2459
|
+
*
|
|
2460
|
+
* Default value is `Decorated`.
|
|
2461
|
+
*
|
|
2462
|
+
* @since 1.134
|
|
2463
|
+
* @experimental
|
|
2464
|
+
*
|
|
2465
|
+
* @returns Value of property `design`
|
|
2466
|
+
*/
|
|
2467
|
+
getDesign(): SideNavigationDesign;
|
|
2403
2468
|
/**
|
|
2404
2469
|
* Gets current value of property {@link #getExpanded expanded}.
|
|
2405
2470
|
*
|
|
@@ -2478,6 +2543,28 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
2478
2543
|
*/
|
|
2479
2544
|
sAriaLabel?: string
|
|
2480
2545
|
): this;
|
|
2546
|
+
/**
|
|
2547
|
+
* Sets a new value for property {@link #getDesign design}.
|
|
2548
|
+
*
|
|
2549
|
+
* Specifies whether the control should have own container styling, such as a box-shadow and border, or
|
|
2550
|
+
* not. **Note:** This property has to be set to `Plain` when the control is used inside a `sap.m.ResponsivePopover`
|
|
2551
|
+
* to achieve a Side Navigation Overlay Mode.
|
|
2552
|
+
*
|
|
2553
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2554
|
+
*
|
|
2555
|
+
* Default value is `Decorated`.
|
|
2556
|
+
*
|
|
2557
|
+
* @since 1.134
|
|
2558
|
+
* @experimental
|
|
2559
|
+
*
|
|
2560
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2561
|
+
*/
|
|
2562
|
+
setDesign(
|
|
2563
|
+
/**
|
|
2564
|
+
* New value for property `design`
|
|
2565
|
+
*/
|
|
2566
|
+
sDesign?: SideNavigationDesign | keyof typeof SideNavigationDesign
|
|
2567
|
+
): this;
|
|
2481
2568
|
/**
|
|
2482
2569
|
* Sets if the control is in expanded or collapsed mode.
|
|
2483
2570
|
*
|
|
@@ -2612,6 +2699,19 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
2612
2699
|
*/
|
|
2613
2700
|
ariaLabel?: string | PropertyBindingInfo;
|
|
2614
2701
|
|
|
2702
|
+
/**
|
|
2703
|
+
* Specifies whether the control should have own container styling, such as a box-shadow and border, or
|
|
2704
|
+
* not. **Note:** This property has to be set to `Plain` when the control is used inside a `sap.m.ResponsivePopover`
|
|
2705
|
+
* to achieve a Side Navigation Overlay Mode.
|
|
2706
|
+
*
|
|
2707
|
+
* @since 1.134
|
|
2708
|
+
* @experimental
|
|
2709
|
+
*/
|
|
2710
|
+
design?:
|
|
2711
|
+
| (SideNavigationDesign | keyof typeof SideNavigationDesign)
|
|
2712
|
+
| PropertyBindingInfo
|
|
2713
|
+
| `{${string}}`;
|
|
2714
|
+
|
|
2615
2715
|
/**
|
|
2616
2716
|
* Defines the content inside the flexible part.
|
|
2617
2717
|
*/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.134.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/codeeditor/library" {}
|
|
4
4
|
|
|
@@ -270,12 +270,13 @@ declare module "sap/ui/codeeditor/CodeEditor" {
|
|
|
270
270
|
*
|
|
271
271
|
* Sets the editor color theme. Possible values are:
|
|
272
272
|
* - default: best fitting to the current UI5 theme
|
|
273
|
-
* - any light theme from the list: chrome, clouds, crimson_editor, dawn, dreamweaver, eclipse,
|
|
274
|
-
* iplastic, solarized_light, textmate, tomorrow, xcode, kuroir, katzenmilch, sqlserver
|
|
273
|
+
* - any light theme from the list: chrome, clouds, crimson_editor, dawn, dreamweaver, eclipse, github_light_default,
|
|
274
|
+
* github, iplastic, solarized_light, textmate, tomorrow, xcode, kuroir, katzenmilch, sqlserver, cloud_editor
|
|
275
|
+
*
|
|
275
276
|
* - any dark theme from the list: hcb, hcb_bright, hcb_blue, ambiance, chaos, clouds_midnight, dracula,
|
|
276
277
|
* cobalt, gruvbox, gob, idle_fingers, kr_theme, merbivore, merbivore_soft, mono_industrial, monokai, nord_dark,
|
|
277
278
|
* one_dark, pastel_on_dark, solarized_dark, terminal, tomorrow_night, tomorrow_night_blue, tomorrow_night_bright,
|
|
278
|
-
* tomorrow_night_eighties, twilight, vibrant_ink, github_dark
|
|
279
|
+
* tomorrow_night_eighties, twilight, vibrant_ink, github_dark, cloud_editor_dark
|
|
279
280
|
*
|
|
280
281
|
* Default value is `"default"`.
|
|
281
282
|
*
|
|
@@ -688,12 +689,13 @@ declare module "sap/ui/codeeditor/CodeEditor" {
|
|
|
688
689
|
/**
|
|
689
690
|
* Sets the editor color theme. Possible values are:
|
|
690
691
|
* - default: best fitting to the current UI5 theme
|
|
691
|
-
* - any light theme from the list: chrome, clouds, crimson_editor, dawn, dreamweaver, eclipse,
|
|
692
|
-
* iplastic, solarized_light, textmate, tomorrow, xcode, kuroir, katzenmilch, sqlserver
|
|
692
|
+
* - any light theme from the list: chrome, clouds, crimson_editor, dawn, dreamweaver, eclipse, github_light_default,
|
|
693
|
+
* github, iplastic, solarized_light, textmate, tomorrow, xcode, kuroir, katzenmilch, sqlserver, cloud_editor
|
|
694
|
+
*
|
|
693
695
|
* - any dark theme from the list: hcb, hcb_bright, hcb_blue, ambiance, chaos, clouds_midnight, dracula,
|
|
694
696
|
* cobalt, gruvbox, gob, idle_fingers, kr_theme, merbivore, merbivore_soft, mono_industrial, monokai, nord_dark,
|
|
695
697
|
* one_dark, pastel_on_dark, solarized_dark, terminal, tomorrow_night, tomorrow_night_blue, tomorrow_night_bright,
|
|
696
|
-
* tomorrow_night_eighties, twilight, vibrant_ink, github_dark
|
|
698
|
+
* tomorrow_night_eighties, twilight, vibrant_ink, github_dark, cloud_editor_dark
|
|
697
699
|
*/
|
|
698
700
|
colorTheme?: string | PropertyBindingInfo;
|
|
699
701
|
|
package/types/sap.ui.comp.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.134.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/comp/library" {
|
|
4
4
|
/**
|
|
@@ -9816,29 +9816,6 @@ declare module "sap/ui/comp/navpopover/SemanticObjectController" {
|
|
|
9816
9816
|
*/
|
|
9817
9817
|
fnNavigationTargetsObtainedCallback: Function
|
|
9818
9818
|
): this;
|
|
9819
|
-
/**
|
|
9820
|
-
* Sets a new value for property {@link #getPrefetchNavigationTargets prefetchNavigationTargets}.
|
|
9821
|
-
*
|
|
9822
|
-
* If set to `true`, the SemanticObjectController will retrieve all navigation targets once and will disable
|
|
9823
|
-
* links for which no targets were found. Setting this value to `true` will trigger an additional roundtrip.
|
|
9824
|
-
*
|
|
9825
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9826
|
-
*
|
|
9827
|
-
* Default value is `false`.
|
|
9828
|
-
*
|
|
9829
|
-
* @since 1.28.0
|
|
9830
|
-
* @deprecated As of version 1.42.0. The property `prefetchNavigationTargets` is obsolete as navigation
|
|
9831
|
-
* targets are determined automatically. The SmartLink controls are re-rendered as soon as the asynchronous
|
|
9832
|
-
* determination of navigation targets has been completed.
|
|
9833
|
-
*
|
|
9834
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
9835
|
-
*/
|
|
9836
|
-
setPrefetchNavigationTargets(
|
|
9837
|
-
/**
|
|
9838
|
-
* New value for property `prefetchNavigationTargets`
|
|
9839
|
-
*/
|
|
9840
|
-
bPrefetchNavigationTargets?: boolean
|
|
9841
|
-
): this;
|
|
9842
9819
|
/**
|
|
9843
9820
|
* Sets a new value for property {@link #getReplaceSmartLinkNavigationTargetsObtained replaceSmartLinkNavigationTargetsObtained}.
|
|
9844
9821
|
*
|
|
@@ -32370,10 +32347,12 @@ declare module "sap/ui/comp/smarttable/SmartTable" {
|
|
|
32370
32347
|
* Returns the internally used table control. Depending on the concrete scenario, the return type is a `sap.m.Table`,
|
|
32371
32348
|
* `sap.ui.table.Table`, `sap.ui.table.TreeTable`, or `sap.ui.table.AnalyticalTable`.
|
|
32372
32349
|
*
|
|
32350
|
+
* If the internal table has not been initialized, the function returns `undefined`.
|
|
32351
|
+
*
|
|
32373
32352
|
*
|
|
32374
|
-
* @returns The table instance
|
|
32353
|
+
* @returns The table instance or undefined
|
|
32375
32354
|
*/
|
|
32376
|
-
getTable(): Control;
|
|
32355
|
+
getTable(): Control | undefined;
|
|
32377
32356
|
/**
|
|
32378
32357
|
* Gets current value of property {@link #getTableBindingPath tableBindingPath}.
|
|
32379
32358
|
*
|
|
@@ -36015,7 +35994,7 @@ declare module "sap/ui/comp/smartvariants/SmartVariantManagementMediator" {
|
|
|
36015
35994
|
|
|
36016
35995
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
36017
35996
|
|
|
36018
|
-
import VariantItem from "sap/
|
|
35997
|
+
import VariantItem from "sap/m/VariantItem";
|
|
36019
35998
|
|
|
36020
35999
|
import {
|
|
36021
36000
|
PropertyBindingInfo,
|
|
@@ -36697,7 +36676,7 @@ declare module "sap/ui/comp/smartvariants/SmartVariantManagementMediator" {
|
|
|
36697
36676
|
*/
|
|
36698
36677
|
getVariants(): any[];
|
|
36699
36678
|
/**
|
|
36700
|
-
* Checks for the provided `sap.
|
|
36679
|
+
* Checks for the provided `sap.m.VariantItem` in the aggregation {@link #getVariantItems variantItems}.
|
|
36701
36680
|
* and returns its index if found or -1 otherwise.
|
|
36702
36681
|
*
|
|
36703
36682
|
*
|
|
@@ -42471,6 +42450,8 @@ declare namespace sap {
|
|
|
42471
42450
|
|
|
42472
42451
|
"sap/ui/comp/config/FilterControlConfiguration": undefined;
|
|
42473
42452
|
|
|
42453
|
+
"sap/ui/comp/delegates/FlexibilityDelegate": undefined;
|
|
42454
|
+
|
|
42474
42455
|
"sap/ui/comp/filterbar/FilterBar": undefined;
|
|
42475
42456
|
|
|
42476
42457
|
"sap/ui/comp/filterbar/FilterGroupItem": undefined;
|