@sapui5/ts-types 1.150.1 → 1.152.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/index.d.ts +1 -0
- 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.esh.search.ui.d.ts +427 -157
- package/types/sap.f.d.ts +1189 -292
- package/types/sap.fe.ariba.d.ts +1 -1
- package/types/sap.fe.base.d.ts +2 -222
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +61 -9
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +220 -85
- package/types/sap.fe.navigation.d.ts +3 -2
- 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 +12 -2
- package/types/sap.fe.test.d.ts +3 -3
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +138 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +246 -3
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +957 -1
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +178 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +4 -2
- package/types/sap.ui.core.d.ts +561 -245
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +7 -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.geomap.d.ts +10393 -8758
- package/types/sap.ui.integration.d.ts +130 -326
- package/types/sap.ui.joule.frontend.d.ts +710 -0
- package/types/sap.ui.layout.d.ts +33 -7
- package/types/sap.ui.mdc.d.ts +36 -8
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +4 -4
- 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 +2 -2
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +160 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +1 -1
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +84 -47
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -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
package/types/sap.fe.macros.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.152.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace fe {
|
|
@@ -100,6 +100,21 @@ declare namespace sap {
|
|
|
100
100
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
101
101
|
| `{${string}}`;
|
|
102
102
|
|
|
103
|
+
/**
|
|
104
|
+
* Only use this mode when the building block is used in a temporary context, such as in a dialog,
|
|
105
|
+
* and you don't want end-user personalization to persist across multiple invocations.
|
|
106
|
+
* When set to `true`, end-user personalization changes are retained only for the current invocation instance
|
|
107
|
+
* and are discarded on the next invocation, such as when the dialog is reopened.
|
|
108
|
+
* Additionally, if the building block is associated with a variant,
|
|
109
|
+
* changing the selected variant will not save or restore that variant in the next invocation.
|
|
110
|
+
* Note: Don't use `ignorePersonalizationChanges` on a chart with an existing ID. Create a new ID
|
|
111
|
+
* for the control to use this feature.
|
|
112
|
+
*/
|
|
113
|
+
ignorePersonalizationChanges?:
|
|
114
|
+
| boolean
|
|
115
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
116
|
+
| `{${string}}`;
|
|
117
|
+
|
|
103
118
|
/**
|
|
104
119
|
* Metadata path to the presentation context (UI.Chart with or without a qualifier)
|
|
105
120
|
*/
|
|
@@ -343,6 +358,13 @@ declare namespace sap {
|
|
|
343
358
|
* @returns Value of property `headerVisible`
|
|
344
359
|
*/
|
|
345
360
|
getHeaderVisible(): boolean;
|
|
361
|
+
/**
|
|
362
|
+
* Gets current value of property ignorePersonalizationChanges.
|
|
363
|
+
*
|
|
364
|
+
*
|
|
365
|
+
* @returns Value of property `ignorePersonalizationChanges`
|
|
366
|
+
*/
|
|
367
|
+
getIgnorePersonalizationChanges(): boolean;
|
|
346
368
|
/**
|
|
347
369
|
* Gets current value of property metaPath.
|
|
348
370
|
*
|
|
@@ -423,6 +445,13 @@ declare namespace sap {
|
|
|
423
445
|
* @returns Value of property `headerVisible`
|
|
424
446
|
*/
|
|
425
447
|
setHeaderVisible(): boolean;
|
|
448
|
+
/**
|
|
449
|
+
* Gets current value of property ignorePersonalizationChanges.
|
|
450
|
+
*
|
|
451
|
+
*
|
|
452
|
+
* @returns Value of property `ignorePersonalizationChanges`
|
|
453
|
+
*/
|
|
454
|
+
setIgnorePersonalizationChanges(): boolean;
|
|
426
455
|
/**
|
|
427
456
|
* Gets current value of property metaPath.
|
|
428
457
|
*
|
|
@@ -1416,6 +1445,21 @@ declare namespace sap {
|
|
|
1416
1445
|
*/
|
|
1417
1446
|
contextPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1418
1447
|
|
|
1448
|
+
/**
|
|
1449
|
+
* Only use this mode when the building block is used in a temporary context, such as in a dialog,
|
|
1450
|
+
* and you don't want end-user personalization to persist across multiple invocations.
|
|
1451
|
+
* When set to `true`, end-user personalization changes are retained only for the current invocation instance
|
|
1452
|
+
* and are discarded on the next invocation, such as when the dialog is reopened.
|
|
1453
|
+
* Additionally, if the building block is associated with a variant,
|
|
1454
|
+
* changing the selected variant will not save or restore that variant in the next invocation.
|
|
1455
|
+
* Note: Don't use `ignorePersonalizationChanges` on a filter bar with an existing ID. Create a new ID
|
|
1456
|
+
* for the control to use this feature.
|
|
1457
|
+
*/
|
|
1458
|
+
ignorePersonalizationChanges?:
|
|
1459
|
+
| boolean
|
|
1460
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
1461
|
+
| `{${string}}`;
|
|
1462
|
+
|
|
1419
1463
|
/**
|
|
1420
1464
|
* If true, the search is triggered automatically when a filter value is changed.
|
|
1421
1465
|
*/
|
|
@@ -2590,9 +2634,7 @@ declare namespace sap {
|
|
|
2590
2634
|
interface $ShareOptionsSettings
|
|
2591
2635
|
extends sap.fe.macros.controls.$BuildingBlockObjectPropertySettings {
|
|
2592
2636
|
/**
|
|
2593
|
-
* Controls visibility of the "Share
|
|
2594
|
-
* This option appears as either "Share in SAP Jam" or "Share in SAP Build Work Zone"
|
|
2595
|
-
* depending on the customer's deployment. Both labels refer to the same functionality.
|
|
2637
|
+
* Controls visibility of the "Share on SAP Build Work Zone" option.
|
|
2596
2638
|
*/
|
|
2597
2639
|
showShareInWorkzone?:
|
|
2598
2640
|
| boolean
|
|
@@ -3438,6 +3480,20 @@ declare namespace sap {
|
|
|
3438
3480
|
| string
|
|
3439
3481
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3440
3482
|
|
|
3483
|
+
/**
|
|
3484
|
+
* Use this mode when the table must not persist its personalization state between sessions.
|
|
3485
|
+
* When set to `true`, a transient `PersistenceProvider` is added to the table so that
|
|
3486
|
+
* personalization changes such as column visibility, sorting, and filtering are kept only for the current
|
|
3487
|
+
* session and are discarded on the next page load. In addition, variants and application states stored
|
|
3488
|
+
* with iAppState are not applied to the table.
|
|
3489
|
+
* Note: Don't use `ignorePersonalizationChanges` on a table with an existing ID. Create a new ID
|
|
3490
|
+
* for the control to use this feature.
|
|
3491
|
+
*/
|
|
3492
|
+
ignorePersonalizationChanges?:
|
|
3493
|
+
| boolean
|
|
3494
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
3495
|
+
| `{${string}}`;
|
|
3496
|
+
|
|
3441
3497
|
/**
|
|
3442
3498
|
* Indicates if the table should load data when initialized.
|
|
3443
3499
|
* This property is used only if a filter bar is associated with the table and doesn't use the liveMode.
|
|
@@ -3934,6 +3990,20 @@ declare namespace sap {
|
|
|
3934
3990
|
| string
|
|
3935
3991
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3936
3992
|
|
|
3993
|
+
/**
|
|
3994
|
+
* Use this mode when the table must not persist its personalization state between sessions.
|
|
3995
|
+
* When set to `true`, a transient `PersistenceProvider` is added to the table so that
|
|
3996
|
+
* personalization changes such as column visibility, sorting, and filtering are kept only for the current
|
|
3997
|
+
* session and are discarded on the next page load. In addition, variants and application states stored
|
|
3998
|
+
* with iAppState are not applied to the table.
|
|
3999
|
+
* Note: Don't use `ignorePersonalizationChanges` on a table with an existing ID. Create a new ID
|
|
4000
|
+
* for the control to use this feature.
|
|
4001
|
+
*/
|
|
4002
|
+
ignorePersonalizationChanges?:
|
|
4003
|
+
| boolean
|
|
4004
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
4005
|
+
| `{${string}}`;
|
|
4006
|
+
|
|
3937
4007
|
/**
|
|
3938
4008
|
* Indicates if the table should load data when initialized.
|
|
3939
4009
|
* This property is used only if a filter bar is associated with the table and doesn't use the liveMode.
|
|
@@ -5613,6 +5683,21 @@ declare namespace sap {
|
|
|
5613
5683
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
5614
5684
|
| `{${string}}`;
|
|
5615
5685
|
|
|
5686
|
+
/**
|
|
5687
|
+
* Only use this mode when the building block is used in a temporary context, such as in a dialog,
|
|
5688
|
+
* and you don't want end-user personalization to persist across multiple invocations.
|
|
5689
|
+
* When set to `true`, end-user personalization changes are retained only for the current invocation instance
|
|
5690
|
+
* and are discarded on the next invocation, such as when the dialog is reopened.
|
|
5691
|
+
* Additionally, if the building block is associated with a variant,
|
|
5692
|
+
* changing the selected variant will not save or restore that variant in the next invocation.
|
|
5693
|
+
* Note: Don't use `ignorePersonalizationChanges` on a chart with an existing ID. Create a new ID
|
|
5694
|
+
* for the control to use this feature.
|
|
5695
|
+
*/
|
|
5696
|
+
ignorePersonalizationChanges?:
|
|
5697
|
+
| boolean
|
|
5698
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
5699
|
+
| `{${string}}`;
|
|
5700
|
+
|
|
5616
5701
|
/**
|
|
5617
5702
|
* Metadata path to the presentation context (UI.Chart with or without a qualifier)
|
|
5618
5703
|
*/
|
|
@@ -5862,6 +5947,21 @@ declare namespace sap {
|
|
|
5862
5947
|
*/
|
|
5863
5948
|
contextPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
5864
5949
|
|
|
5950
|
+
/**
|
|
5951
|
+
* Only use this mode when the building block is used in a temporary context, such as in a dialog,
|
|
5952
|
+
* and you don't want end-user personalization to persist across multiple invocations.
|
|
5953
|
+
* When set to `true`, end-user personalization changes are retained only for the current invocation instance
|
|
5954
|
+
* and are discarded on the next invocation, such as when the dialog is reopened.
|
|
5955
|
+
* Additionally, if the building block is associated with a variant,
|
|
5956
|
+
* changing the selected variant will not save or restore that variant in the next invocation.
|
|
5957
|
+
* Note: Don't use `ignorePersonalizationChanges` on a filter bar with an existing ID. Create a new ID
|
|
5958
|
+
* for the control to use this feature.
|
|
5959
|
+
*/
|
|
5960
|
+
ignorePersonalizationChanges?:
|
|
5961
|
+
| boolean
|
|
5962
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
5963
|
+
| `{${string}}`;
|
|
5964
|
+
|
|
5865
5965
|
/**
|
|
5866
5966
|
* If true, the search is triggered automatically when a filter value is changed.
|
|
5867
5967
|
*/
|
|
@@ -5930,6 +6030,61 @@ declare namespace sap {
|
|
|
5930
6030
|
search?: (oEvent: sap.ui.base.Event) => void;
|
|
5931
6031
|
}
|
|
5932
6032
|
|
|
6033
|
+
/**
|
|
6034
|
+
* Describes the settings that can be provided to the Form constructor.
|
|
6035
|
+
*/
|
|
6036
|
+
interface $FormSettings extends sap.fe.macros.$MacroAPISettings {
|
|
6037
|
+
/**
|
|
6038
|
+
* Defines the path of the context used in the current page or block.
|
|
6039
|
+
* This setting is defined by the framework.
|
|
6040
|
+
*/
|
|
6041
|
+
contextPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
6042
|
+
|
|
6043
|
+
/**
|
|
6044
|
+
* Defines the relative path of the property in the metamodel, based on the current contextPath.
|
|
6045
|
+
*/
|
|
6046
|
+
metaPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
6047
|
+
|
|
6048
|
+
/**
|
|
6049
|
+
* Filters the navigation properties that can be used by flexibility features.
|
|
6050
|
+
* This property allows you to specify which navigation properties are available
|
|
6051
|
+
* for flexibility operations such as adding custom fields.
|
|
6052
|
+
* You can use the asterisk (*) wildcard to include all navigation properties,
|
|
6053
|
+
* or specify individual navigation property names to restrict the available options.
|
|
6054
|
+
* Example:
|
|
6055
|
+
* Allow all navigation properties: navigationPropertiesForAdaptationDialog: ["*"]
|
|
6056
|
+
* Example:
|
|
6057
|
+
* Allow only a specific navigation property: navigationPropertiesForAdaptationDialog: ["Customer/Name"]
|
|
6058
|
+
* Example:
|
|
6059
|
+
* Allow multiple specific navigation properties based on a wildcard: navigationPropertiesForAdaptationDialog:
|
|
6060
|
+
* ["Cust*\/Name"]
|
|
6061
|
+
*/
|
|
6062
|
+
navigationPropertiesForAdaptationDialog?:
|
|
6063
|
+
| string[]
|
|
6064
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
6065
|
+
| `{${string}}`;
|
|
6066
|
+
|
|
6067
|
+
/**
|
|
6068
|
+
* The title of the form control.
|
|
6069
|
+
*/
|
|
6070
|
+
title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
6071
|
+
|
|
6072
|
+
/**
|
|
6073
|
+
* Parameter which sets the visibility of the Form building block
|
|
6074
|
+
*/
|
|
6075
|
+
visible?:
|
|
6076
|
+
| boolean
|
|
6077
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
6078
|
+
| `{${string}}`;
|
|
6079
|
+
|
|
6080
|
+
/**
|
|
6081
|
+
* Defines the layout to be used within the form.
|
|
6082
|
+
* It defaults to the ColumnLayout, but you can also use a ResponsiveGridLayout.
|
|
6083
|
+
* All the properties of the ResponsiveGridLayout can be added to the configuration.
|
|
6084
|
+
*/
|
|
6085
|
+
layout?: sap.fe.macros.form.FormLayoutOptions;
|
|
6086
|
+
}
|
|
6087
|
+
|
|
5933
6088
|
/**
|
|
5934
6089
|
* Describes the settings that can be provided to the FormElement constructor.
|
|
5935
6090
|
*/
|
|
@@ -6199,11 +6354,7 @@ declare namespace sap {
|
|
|
6199
6354
|
/**
|
|
6200
6355
|
* Breadcrumbs to be displayed in the title area.
|
|
6201
6356
|
*/
|
|
6202
|
-
breadcrumbs?:
|
|
6203
|
-
| sap.ui.core.Control[]
|
|
6204
|
-
| sap.ui.core.Control
|
|
6205
|
-
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
6206
|
-
| `{${string}}`;
|
|
6357
|
+
breadcrumbs?: sap.ui.core.Control;
|
|
6207
6358
|
|
|
6208
6359
|
/**
|
|
6209
6360
|
* Footer content (for example, toolbar with buttons).
|
|
@@ -6565,6 +6716,20 @@ declare namespace sap {
|
|
|
6565
6716
|
*/
|
|
6566
6717
|
ignoredFields?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
6567
6718
|
|
|
6719
|
+
/**
|
|
6720
|
+
* Use this mode when the table must not persist its personalization state between sessions.
|
|
6721
|
+
* When set to `true`, a transient `PersistenceProvider` is added to the table so that
|
|
6722
|
+
* personalization changes such as column visibility, sorting, and filtering are kept only for the current
|
|
6723
|
+
* session and are discarded on the next page load. In addition, variants and application states stored
|
|
6724
|
+
* with iAppState are not applied to the table.
|
|
6725
|
+
* Note: Don't use `ignorePersonalizationChanges` on a table with an existing ID. Create a new ID
|
|
6726
|
+
* for the control to use this feature.
|
|
6727
|
+
*/
|
|
6728
|
+
ignorePersonalizationChanges?:
|
|
6729
|
+
| boolean
|
|
6730
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
6731
|
+
| `{${string}}`;
|
|
6732
|
+
|
|
6568
6733
|
/**
|
|
6569
6734
|
* Indicates if the table should load data when initialized.
|
|
6570
6735
|
* This property is used only if a filter bar is associated with the table and doesn't use the liveMode.
|
|
@@ -6987,6 +7152,20 @@ declare namespace sap {
|
|
|
6987
7152
|
*/
|
|
6988
7153
|
ignoredFields?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
6989
7154
|
|
|
7155
|
+
/**
|
|
7156
|
+
* Use this mode when the table must not persist its personalization state between sessions.
|
|
7157
|
+
* When set to `true`, a transient `PersistenceProvider` is added to the table so that
|
|
7158
|
+
* personalization changes such as column visibility, sorting, and filtering are kept only for the current
|
|
7159
|
+
* session and are discarded on the next page load. In addition, variants and application states stored
|
|
7160
|
+
* with iAppState are not applied to the table.
|
|
7161
|
+
* Note: Don't use `ignorePersonalizationChanges` on a table with an existing ID. Create a new ID
|
|
7162
|
+
* for the control to use this feature.
|
|
7163
|
+
*/
|
|
7164
|
+
ignorePersonalizationChanges?:
|
|
7165
|
+
| boolean
|
|
7166
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
7167
|
+
| `{${string}}`;
|
|
7168
|
+
|
|
6990
7169
|
/**
|
|
6991
7170
|
* Indicates if the table should load data when initialized.
|
|
6992
7171
|
* This property is used only if a filter bar is associated with the table and doesn't use the liveMode.
|
|
@@ -7306,64 +7485,6 @@ declare namespace sap {
|
|
|
7306
7485
|
interface $FlexibleColumnLayoutActionsSettings
|
|
7307
7486
|
extends sap.ui.core.$ControlSettings {}
|
|
7308
7487
|
|
|
7309
|
-
/**
|
|
7310
|
-
* Describes the settings that can be provided to the Form constructor.
|
|
7311
|
-
*/
|
|
7312
|
-
interface $FormSettings extends sap.ui.core.$ControlSettings {
|
|
7313
|
-
/**
|
|
7314
|
-
* Defines the path of the context used in the current page or block.
|
|
7315
|
-
* This setting is defined by the framework.
|
|
7316
|
-
*/
|
|
7317
|
-
contextPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7318
|
-
|
|
7319
|
-
/**
|
|
7320
|
-
* Defines the layout to be used within the form.
|
|
7321
|
-
* It defaults to the ColumnLayout, but you can also use a ResponsiveGridLayout.
|
|
7322
|
-
* All the properties of the ResponsiveGridLayout can be added to the configuration.
|
|
7323
|
-
*/
|
|
7324
|
-
layout?:
|
|
7325
|
-
| object
|
|
7326
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
7327
|
-
| `{${string}}`;
|
|
7328
|
-
|
|
7329
|
-
/**
|
|
7330
|
-
* Defines the relative path of the property in the metamodel, based on the current contextPath.
|
|
7331
|
-
*/
|
|
7332
|
-
metaPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7333
|
-
|
|
7334
|
-
/**
|
|
7335
|
-
* Filters the navigation properties that can be used by flexibility features.
|
|
7336
|
-
* This property allows you to specify which navigation properties are available
|
|
7337
|
-
* for flexibility operations such as adding custom fields.
|
|
7338
|
-
* You can use the asterisk (*) wildcard to include all navigation properties,
|
|
7339
|
-
* or specify individual navigation property names to restrict the available options.
|
|
7340
|
-
* Example:
|
|
7341
|
-
* Allow all navigation properties: navigationPropertiesForAdaptationDialog: ["*"]
|
|
7342
|
-
* Example:
|
|
7343
|
-
* Allow only a specific navigation property: navigationPropertiesForAdaptationDialog: ["Customer/Name"]
|
|
7344
|
-
* Example:
|
|
7345
|
-
* Allow multiple specific navigation properties based on a wildcard: navigationPropertiesForAdaptationDialog:
|
|
7346
|
-
* ["Cust*\/Name"]
|
|
7347
|
-
*/
|
|
7348
|
-
navigationPropertiesForAdaptationDialog?:
|
|
7349
|
-
| string[]
|
|
7350
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
7351
|
-
| `{${string}}`;
|
|
7352
|
-
|
|
7353
|
-
/**
|
|
7354
|
-
* The title of the form control.
|
|
7355
|
-
*/
|
|
7356
|
-
title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7357
|
-
|
|
7358
|
-
/**
|
|
7359
|
-
* Parameter which sets the visibility of the Form building block
|
|
7360
|
-
*/
|
|
7361
|
-
visible?:
|
|
7362
|
-
| boolean
|
|
7363
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
7364
|
-
| `{${string}}`;
|
|
7365
|
-
}
|
|
7366
|
-
|
|
7367
7488
|
/**
|
|
7368
7489
|
* Parameters of the AlwaysEditableField#change event.
|
|
7369
7490
|
*/
|
|
@@ -7886,6 +8007,13 @@ declare namespace sap {
|
|
|
7886
8007
|
* @returns Value of property `headerVisible`
|
|
7887
8008
|
*/
|
|
7888
8009
|
getHeaderVisible(): boolean;
|
|
8010
|
+
/**
|
|
8011
|
+
* Gets current value of property ignorePersonalizationChanges.
|
|
8012
|
+
*
|
|
8013
|
+
*
|
|
8014
|
+
* @returns Value of property `ignorePersonalizationChanges`
|
|
8015
|
+
*/
|
|
8016
|
+
getIgnorePersonalizationChanges(): boolean;
|
|
7889
8017
|
/**
|
|
7890
8018
|
* Gets current value of property metaPath.
|
|
7891
8019
|
*
|
|
@@ -7966,6 +8094,13 @@ declare namespace sap {
|
|
|
7966
8094
|
* @returns Value of property `headerVisible`
|
|
7967
8095
|
*/
|
|
7968
8096
|
setHeaderVisible(): boolean;
|
|
8097
|
+
/**
|
|
8098
|
+
* Gets current value of property ignorePersonalizationChanges.
|
|
8099
|
+
*
|
|
8100
|
+
*
|
|
8101
|
+
* @returns Value of property `ignorePersonalizationChanges`
|
|
8102
|
+
*/
|
|
8103
|
+
setIgnorePersonalizationChanges(): boolean;
|
|
7969
8104
|
/**
|
|
7970
8105
|
* Gets current value of property metaPath.
|
|
7971
8106
|
*
|
|
@@ -8990,6 +9125,21 @@ declare namespace sap {
|
|
|
8990
9125
|
*/
|
|
8991
9126
|
triggerSearch(): Promise<object | undefined>;
|
|
8992
9127
|
}
|
|
9128
|
+
/**
|
|
9129
|
+
* Building block for creating a Form based on the metadata provided by OData V4.
|
|
9130
|
+
*
|
|
9131
|
+
*
|
|
9132
|
+
* It is designed to work based on a FieldGroup annotation but can also work if you provide a ReferenceFacet
|
|
9133
|
+
* or a CollectionFacet
|
|
9134
|
+
*
|
|
9135
|
+
* Usage example:
|
|
9136
|
+
*
|
|
9137
|
+
* ```javascript
|
|
9138
|
+
*
|
|
9139
|
+
* <macros:Form id="MyForm" metaPath="@com.sap.vocabularies.UI.v1.FieldGroup#GeneralInformation" />
|
|
9140
|
+
* ```
|
|
9141
|
+
*/
|
|
9142
|
+
class Form extends sap.fe.macros.MacroAPI {}
|
|
8993
9143
|
/**
|
|
8994
9144
|
* Building block used to create a form element based on the metadata provided by OData V4.
|
|
8995
9145
|
*
|
|
@@ -9411,8 +9561,8 @@ declare namespace sap {
|
|
|
9411
9561
|
* Building block used to create the ‘Share’ functionality.
|
|
9412
9562
|
*
|
|
9413
9563
|
*
|
|
9414
|
-
* Please note that the 'Share
|
|
9415
|
-
* SAP
|
|
9564
|
+
* Please note that the 'Share on SAP Build Work Zone' option is only available on platforms that are integrated
|
|
9565
|
+
* with SAP Build Work Zone.
|
|
9416
9566
|
*
|
|
9417
9567
|
*
|
|
9418
9568
|
* If you are consuming this macro in an environment where the SAP Fiori launchpad is not available, then
|
|
@@ -10461,21 +10611,6 @@ declare namespace sap {
|
|
|
10461
10611
|
* @since 1.93.0
|
|
10462
10612
|
*/
|
|
10463
10613
|
class FlexibleColumnLayoutActions extends sap.ui.core.Control {}
|
|
10464
|
-
/**
|
|
10465
|
-
* Building block for creating a Form based on the metadata provided by OData V4.
|
|
10466
|
-
*
|
|
10467
|
-
*
|
|
10468
|
-
* It is designed to work based on a FieldGroup annotation but can also work if you provide a ReferenceFacet
|
|
10469
|
-
* or a CollectionFacet
|
|
10470
|
-
*
|
|
10471
|
-
* Usage example:
|
|
10472
|
-
*
|
|
10473
|
-
* ```javascript
|
|
10474
|
-
*
|
|
10475
|
-
* <macros:Form id="MyForm" metaPath="@com.sap.vocabularies.UI.v1.FieldGroup#GeneralInformation" />
|
|
10476
|
-
* ```
|
|
10477
|
-
*/
|
|
10478
|
-
class Form extends sap.ui.core.Control {}
|
|
10479
10614
|
|
|
10480
10615
|
/**
|
|
10481
10616
|
* Event object of the AlwaysEditableField#change event.
|
|
@@ -10696,7 +10831,7 @@ declare namespace sap {
|
|
|
10696
10831
|
|
|
10697
10832
|
"sap/fe/macros/filterBar/FilterFieldOverride": undefined;
|
|
10698
10833
|
|
|
10699
|
-
"sap/fe/macros/
|
|
10834
|
+
"sap/fe/macros/Form": undefined;
|
|
10700
10835
|
|
|
10701
10836
|
"sap/fe/macros/form/FormLayoutOptions": undefined;
|
|
10702
10837
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.152.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace fe {
|
|
@@ -372,7 +372,8 @@ declare namespace sap {
|
|
|
372
372
|
* - `oAppData.customData`
|
|
373
373
|
*
|
|
374
374
|
* which return the inner app data as stored in {@link #.navigate navigate} or {@link #.storeInnerAppStateAsync storeInnerAppStateAsync}.
|
|
375
|
-
* `oAppData.oDefaultedSelectionVariant` is
|
|
375
|
+
* `oAppData.oDefaultedSelectionVariant` is populated with the user default values when they are
|
|
376
|
+
* available (fetched from the cross-app state), otherwise it is an empty selection variant, and
|
|
376
377
|
* `oAppData.bNavSelVarHasDefaultsOnly` is `false` in this case.
|
|
377
378
|
*
|
|
378
379
|
* **Note:** If the navigation type is {@link sap.fe.navigation.NavType.initial} oAppData is an empty object!
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.152.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace fe {
|
|
@@ -259,7 +259,17 @@ declare namespace sap {
|
|
|
259
259
|
* The ID of the target section or subsection (without a view prefix, for example, "fe::FacetSection::TravelData"
|
|
260
260
|
* or "fe::SubSection::Details")
|
|
261
261
|
*/
|
|
262
|
-
sectionOrSubSectionId: string
|
|
262
|
+
sectionOrSubSectionId: string,
|
|
263
|
+
/**
|
|
264
|
+
* Navigation options
|
|
265
|
+
*/
|
|
266
|
+
options?: {
|
|
267
|
+
/**
|
|
268
|
+
* When true, suppresses the error dialog if the target section is not visible. Use this for programmatic
|
|
269
|
+
* navigation (for example, ViewState restoration) where a silent fallback is preferred.
|
|
270
|
+
*/
|
|
271
|
+
silent?: boolean;
|
|
272
|
+
}
|
|
263
273
|
): void;
|
|
264
274
|
/**
|
|
265
275
|
* Refreshes either the whole object page or only parts of it.
|
package/types/sap.fe.test.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.152.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace fe {
|
|
@@ -3282,7 +3282,7 @@ declare namespace sap {
|
|
|
3282
3282
|
/**
|
|
3283
3283
|
* Defines the expected state of the section, e.g. its visibility
|
|
3284
3284
|
*/
|
|
3285
|
-
mState
|
|
3285
|
+
mState?: object
|
|
3286
3286
|
): object;
|
|
3287
3287
|
/**
|
|
3288
3288
|
* Checks a sub-section.
|
|
@@ -3305,7 +3305,7 @@ declare namespace sap {
|
|
|
3305
3305
|
/**
|
|
3306
3306
|
* Defines the expected state of the sub-section, e.g. its visibility
|
|
3307
3307
|
*/
|
|
3308
|
-
mState
|
|
3308
|
+
mState?: object
|
|
3309
3309
|
): object;
|
|
3310
3310
|
/**
|
|
3311
3311
|
* Returns a {@link sap.fe.test.api.FilterBarAssertions} instance.
|
package/types/sap.fe.tools.d.ts
CHANGED