@sapui5/types 1.123.2 → 1.124.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 +5 -3
- package/types/sap.esh.search.ui.d.ts +126 -1
- package/types/sap.f.d.ts +49 -12
- package/types/sap.fe.core.d.ts +14 -6
- package/types/sap.fe.macros.d.ts +2319 -461
- 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 +31 -4
- 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 +3 -2
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +4149 -474
- 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 +225 -313
- package/types/sap.suite.ui.commons.d.ts +11 -5
- package/types/sap.suite.ui.generic.template.d.ts +31 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +3 -2
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +17 -9
- package/types/sap.ui.comp.d.ts +171 -31
- package/types/sap.ui.core.d.ts +130 -231
- package/types/sap.ui.dt.d.ts +6 -2
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +3 -2
- 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 -1
- package/types/sap.ui.layout.d.ts +7 -4
- package/types/sap.ui.mdc.d.ts +485 -758
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- 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 +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +4 -3
- package/types/sap.ui.ux3.d.ts +3 -2
- package/types/sap.ui.vbm.d.ts +3 -2
- package/types/sap.ui.vk.d.ts +77 -26
- package/types/sap.ui.vtm.d.ts +23 -12
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +191 -12
- package/types/sap.ui.webc.main.d.ts +557 -33
- package/types/sap.uiext.inbox.d.ts +62 -1
- package/types/sap.ushell.d.ts +649 -198
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +11 -6
- 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/package.json
CHANGED
package/types/sap.apf.d.ts
CHANGED
package/types/sap.ca.ui.d.ts
CHANGED
package/types/sap.chart.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.124.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/collaboration/library" {
|
|
4
4
|
/**
|
|
@@ -116,7 +116,8 @@ declare module "sap/collaboration/components/feed/Component" {
|
|
|
116
116
|
*/
|
|
117
117
|
export default class Component
|
|
118
118
|
extends UIComponent
|
|
119
|
-
implements IAsyncContentCreation
|
|
119
|
+
implements IAsyncContentCreation
|
|
120
|
+
{
|
|
120
121
|
__implements__sap_ui_core_IAsyncContentCreation: boolean;
|
|
121
122
|
/**
|
|
122
123
|
* Constructor for the Feed Component.
|
|
@@ -368,7 +369,8 @@ declare module "sap/collaboration/components/fiori/feed/Component" {
|
|
|
368
369
|
*/
|
|
369
370
|
export default class Component
|
|
370
371
|
extends UIComponent
|
|
371
|
-
implements IAsyncContentCreation
|
|
372
|
+
implements IAsyncContentCreation
|
|
373
|
+
{
|
|
372
374
|
__implements__sap_ui_core_IAsyncContentCreation: boolean;
|
|
373
375
|
/**
|
|
374
376
|
* Constructor for the Feed Component.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.124.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
4
4
|
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
@@ -101,6 +101,59 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
101
101
|
*/
|
|
102
102
|
oContent: Control
|
|
103
103
|
): this;
|
|
104
|
+
/**
|
|
105
|
+
* Attaches event handler `fnFunction` to the {@link #event:resultViewTypeChanged resultViewTypeChanged }
|
|
106
|
+
* event of this `sap.esh.search.ui.SearchCompositeControl`.
|
|
107
|
+
*
|
|
108
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
109
|
+
* otherwise it will be bound to this `sap.esh.search.ui.SearchCompositeControl` itself.
|
|
110
|
+
*
|
|
111
|
+
* Event is fired after result view type got changed (list, table or grid).
|
|
112
|
+
*
|
|
113
|
+
* @since 1.124
|
|
114
|
+
*
|
|
115
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
116
|
+
*/
|
|
117
|
+
attachResultViewTypeChanged(
|
|
118
|
+
/**
|
|
119
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
120
|
+
* object when firing the event
|
|
121
|
+
*/
|
|
122
|
+
oData: object,
|
|
123
|
+
/**
|
|
124
|
+
* The function to be called when the event occurs
|
|
125
|
+
*/
|
|
126
|
+
fnFunction: (p1: Event) => void,
|
|
127
|
+
/**
|
|
128
|
+
* Context object to call the event handler with. Defaults to this `sap.esh.search.ui.SearchCompositeControl`
|
|
129
|
+
* itself
|
|
130
|
+
*/
|
|
131
|
+
oListener?: object
|
|
132
|
+
): this;
|
|
133
|
+
/**
|
|
134
|
+
* Attaches event handler `fnFunction` to the {@link #event:resultViewTypeChanged resultViewTypeChanged }
|
|
135
|
+
* event of this `sap.esh.search.ui.SearchCompositeControl`.
|
|
136
|
+
*
|
|
137
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
138
|
+
* otherwise it will be bound to this `sap.esh.search.ui.SearchCompositeControl` itself.
|
|
139
|
+
*
|
|
140
|
+
* Event is fired after result view type got changed (list, table or grid).
|
|
141
|
+
*
|
|
142
|
+
* @since 1.124
|
|
143
|
+
*
|
|
144
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
145
|
+
*/
|
|
146
|
+
attachResultViewTypeChanged(
|
|
147
|
+
/**
|
|
148
|
+
* The function to be called when the event occurs
|
|
149
|
+
*/
|
|
150
|
+
fnFunction: (p1: Event) => void,
|
|
151
|
+
/**
|
|
152
|
+
* Context object to call the event handler with. Defaults to this `sap.esh.search.ui.SearchCompositeControl`
|
|
153
|
+
* itself
|
|
154
|
+
*/
|
|
155
|
+
oListener?: object
|
|
156
|
+
): this;
|
|
104
157
|
/**
|
|
105
158
|
* Attaches event handler `fnFunction` to the {@link #event:searchFinished searchFinished} event of this
|
|
106
159
|
* `sap.esh.search.ui.SearchCompositeControl`.
|
|
@@ -265,6 +318,26 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
265
318
|
* @returns Reference to `this` in order to allow method chaining
|
|
266
319
|
*/
|
|
267
320
|
destroyContent(): this;
|
|
321
|
+
/**
|
|
322
|
+
* Detaches event handler `fnFunction` from the {@link #event:resultViewTypeChanged resultViewTypeChanged }
|
|
323
|
+
* event of this `sap.esh.search.ui.SearchCompositeControl`.
|
|
324
|
+
*
|
|
325
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
326
|
+
*
|
|
327
|
+
* @since 1.124
|
|
328
|
+
*
|
|
329
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
330
|
+
*/
|
|
331
|
+
detachResultViewTypeChanged(
|
|
332
|
+
/**
|
|
333
|
+
* The function to be called, when the event occurs
|
|
334
|
+
*/
|
|
335
|
+
fnFunction: (p1: Event) => void,
|
|
336
|
+
/**
|
|
337
|
+
* Context object on which the given function had to be called
|
|
338
|
+
*/
|
|
339
|
+
oListener?: object
|
|
340
|
+
): this;
|
|
268
341
|
/**
|
|
269
342
|
* Detaches event handler `fnFunction` from the {@link #event:searchFinished searchFinished} event of this
|
|
270
343
|
* `sap.esh.search.ui.SearchCompositeControl`.
|
|
@@ -325,6 +398,20 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
325
398
|
*/
|
|
326
399
|
oListener?: object
|
|
327
400
|
): this;
|
|
401
|
+
/**
|
|
402
|
+
* Fires event {@link #event:resultViewTypeChanged resultViewTypeChanged} to attached listeners.
|
|
403
|
+
*
|
|
404
|
+
* @since 1.124
|
|
405
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
406
|
+
*
|
|
407
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
408
|
+
*/
|
|
409
|
+
fireResultViewTypeChanged(
|
|
410
|
+
/**
|
|
411
|
+
* Parameters to pass along with the event
|
|
412
|
+
*/
|
|
413
|
+
mParameters?: object
|
|
414
|
+
): this;
|
|
328
415
|
/**
|
|
329
416
|
* Fires event {@link #event:searchFinished searchFinished} to attached listeners.
|
|
330
417
|
*
|
|
@@ -736,6 +823,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
736
823
|
* execution of functions `setResultViewTypes` and `setResultViewType`. Note: The value of `resultViewTypes`
|
|
737
824
|
* and `resultViewType` must be compatible to each other.
|
|
738
825
|
*
|
|
826
|
+
* After the result view type has been changed, the event 'resultViewTypeChanged' is fired.
|
|
827
|
+
*
|
|
739
828
|
* Default value is `...see text or source`.
|
|
740
829
|
*
|
|
741
830
|
* @since 1.100.0
|
|
@@ -755,6 +844,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
755
844
|
* different view types. Possible value is `"searchResultList"`, `"searchResultTable"` or `"searchResultGrid"`.
|
|
756
845
|
* Note: The value of `resultViewTypes` and `resultViewType` must be compatible to each other.
|
|
757
846
|
*
|
|
847
|
+
* After the result view type has been changed, the event 'resultViewTypeChanged' is fired.
|
|
848
|
+
*
|
|
758
849
|
* Default value is `"searchResultList"`.
|
|
759
850
|
*
|
|
760
851
|
* @since 1.98.0
|
|
@@ -773,6 +864,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
773
864
|
* array items are `"searchResultList"`, `"searchResultTable"` and `"searchResultGrid"`. Note: The value
|
|
774
865
|
* of `resultViewTypes` and `resultViewType` must be compatible to each other.
|
|
775
866
|
*
|
|
867
|
+
* After the result view type has been changed, the event 'resultViewTypeChanged' is fired.
|
|
868
|
+
*
|
|
776
869
|
* Default value is `["searchResultList", "searchResultTable"]`.
|
|
777
870
|
*
|
|
778
871
|
* @since 1.98.0
|
|
@@ -1472,6 +1565,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1472
1565
|
* execution of functions `setResultViewTypes` and `setResultViewType`. Note: The value of `resultViewTypes`
|
|
1473
1566
|
* and `resultViewType` must be compatible to each other.
|
|
1474
1567
|
*
|
|
1568
|
+
* After the result view type has been changed, the event 'resultViewTypeChanged' is fired.
|
|
1569
|
+
*
|
|
1475
1570
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1476
1571
|
*
|
|
1477
1572
|
* Default value is `...see text or source`.
|
|
@@ -1498,6 +1593,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1498
1593
|
* different view types. Possible value is `"searchResultList"`, `"searchResultTable"` or `"searchResultGrid"`.
|
|
1499
1594
|
* Note: The value of `resultViewTypes` and `resultViewType` must be compatible to each other.
|
|
1500
1595
|
*
|
|
1596
|
+
* After the result view type has been changed, the event 'resultViewTypeChanged' is fired.
|
|
1597
|
+
*
|
|
1501
1598
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1502
1599
|
*
|
|
1503
1600
|
* Default value is `"searchResultList"`.
|
|
@@ -1523,6 +1620,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1523
1620
|
* array items are `"searchResultList"`, `"searchResultTable"` and `"searchResultGrid"`. Note: The value
|
|
1524
1621
|
* of `resultViewTypes` and `resultViewType` must be compatible to each other.
|
|
1525
1622
|
*
|
|
1623
|
+
* After the result view type has been changed, the event 'resultViewTypeChanged' is fired.
|
|
1624
|
+
*
|
|
1526
1625
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1527
1626
|
*
|
|
1528
1627
|
* Default value is `["searchResultList", "searchResultTable"]`.
|
|
@@ -1718,6 +1817,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1718
1817
|
* array items are `"searchResultList"`, `"searchResultTable"` and `"searchResultGrid"`. Note: The value
|
|
1719
1818
|
* of `resultViewTypes` and `resultViewType` must be compatible to each other.
|
|
1720
1819
|
*
|
|
1820
|
+
* After the result view type has been changed, the event 'resultViewTypeChanged' is fired.
|
|
1821
|
+
*
|
|
1721
1822
|
* @since 1.98.0
|
|
1722
1823
|
*/
|
|
1723
1824
|
resultViewTypes?: string[] | PropertyBindingInfo | `{${string}}`;
|
|
@@ -1732,6 +1833,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1732
1833
|
* different view types. Possible value is `"searchResultList"`, `"searchResultTable"` or `"searchResultGrid"`.
|
|
1733
1834
|
* Note: The value of `resultViewTypes` and `resultViewType` must be compatible to each other.
|
|
1734
1835
|
*
|
|
1836
|
+
* After the result view type has been changed, the event 'resultViewTypeChanged' is fired.
|
|
1837
|
+
*
|
|
1735
1838
|
* @since 1.98.0
|
|
1736
1839
|
*/
|
|
1737
1840
|
resultViewType?: string | PropertyBindingInfo;
|
|
@@ -1744,6 +1847,8 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1744
1847
|
* execution of functions `setResultViewTypes` and `setResultViewType`. Note: The value of `resultViewTypes`
|
|
1745
1848
|
* and `resultViewType` must be compatible to each other.
|
|
1746
1849
|
*
|
|
1850
|
+
* After the result view type has been changed, the event 'resultViewTypeChanged' is fired.
|
|
1851
|
+
*
|
|
1747
1852
|
* @since 1.100.0
|
|
1748
1853
|
*/
|
|
1749
1854
|
resultViewSettings?: string | PropertyBindingInfo;
|
|
@@ -2014,8 +2119,28 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
2014
2119
|
* @since 1.121
|
|
2015
2120
|
*/
|
|
2016
2121
|
selectionChanged?: (oEvent: Event) => void;
|
|
2122
|
+
|
|
2123
|
+
/**
|
|
2124
|
+
* Event is fired after result view type got changed (list, table or grid).
|
|
2125
|
+
*
|
|
2126
|
+
* @since 1.124
|
|
2127
|
+
*/
|
|
2128
|
+
resultViewTypeChanged?: (oEvent: Event) => void;
|
|
2017
2129
|
}
|
|
2018
2130
|
|
|
2131
|
+
/**
|
|
2132
|
+
* Parameters of the SearchCompositeControl#resultViewTypeChanged event.
|
|
2133
|
+
*/
|
|
2134
|
+
export interface SearchCompositeControl$ResultViewTypeChangedEventParameters {}
|
|
2135
|
+
|
|
2136
|
+
/**
|
|
2137
|
+
* Event object of the SearchCompositeControl#resultViewTypeChanged event.
|
|
2138
|
+
*/
|
|
2139
|
+
export type SearchCompositeControl$ResultViewTypeChangedEvent = Event<
|
|
2140
|
+
SearchCompositeControl$ResultViewTypeChangedEventParameters,
|
|
2141
|
+
SearchCompositeControl
|
|
2142
|
+
>;
|
|
2143
|
+
|
|
2019
2144
|
/**
|
|
2020
2145
|
* Parameters of the SearchCompositeControl#searchFinished event.
|
|
2021
2146
|
*/
|
package/types/sap.f.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.124.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
export interface IToolHeader {
|
|
@@ -2782,7 +2782,8 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
2782
2782
|
*/
|
|
2783
2783
|
export default class NumericHeader
|
|
2784
2784
|
extends BaseHeader
|
|
2785
|
-
implements cards.IHeader
|
|
2785
|
+
implements cards.IHeader
|
|
2786
|
+
{
|
|
2786
2787
|
__implements__sap_f_cards_IHeader: boolean;
|
|
2787
2788
|
/**
|
|
2788
2789
|
* Constructor for a new `NumericHeader`.
|
|
@@ -2905,6 +2906,14 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
2905
2906
|
*/
|
|
2906
2907
|
oListener?: object
|
|
2907
2908
|
): this;
|
|
2909
|
+
/**
|
|
2910
|
+
* Destroys the microChart in the aggregation {@link #getMicroChart microChart}.
|
|
2911
|
+
*
|
|
2912
|
+
* @experimental (since 1.124)
|
|
2913
|
+
*
|
|
2914
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2915
|
+
*/
|
|
2916
|
+
destroyMicroChart(): this;
|
|
2908
2917
|
/**
|
|
2909
2918
|
* Destroys all the sideIndicators in the aggregation {@link #getSideIndicators sideIndicators}.
|
|
2910
2919
|
*
|
|
@@ -3087,6 +3096,14 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
3087
3096
|
* @returns Value of property `iconVisible`
|
|
3088
3097
|
*/
|
|
3089
3098
|
getIconVisible(): boolean;
|
|
3099
|
+
/**
|
|
3100
|
+
* Gets content of aggregation {@link #getMicroChart microChart}.
|
|
3101
|
+
*
|
|
3102
|
+
* Micro Chart
|
|
3103
|
+
*
|
|
3104
|
+
* @experimental (since 1.124)
|
|
3105
|
+
*/
|
|
3106
|
+
getMicroChart(): Control;
|
|
3090
3107
|
/**
|
|
3091
3108
|
* Gets current value of property {@link #getNumber number}.
|
|
3092
3109
|
*
|
|
@@ -3483,6 +3500,19 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
3483
3500
|
*/
|
|
3484
3501
|
bIconVisible?: boolean
|
|
3485
3502
|
): this;
|
|
3503
|
+
/**
|
|
3504
|
+
* Sets the aggregated {@link #getMicroChart microChart}.
|
|
3505
|
+
*
|
|
3506
|
+
* @experimental (since 1.124)
|
|
3507
|
+
*
|
|
3508
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3509
|
+
*/
|
|
3510
|
+
setMicroChart(
|
|
3511
|
+
/**
|
|
3512
|
+
* The microChart to set
|
|
3513
|
+
*/
|
|
3514
|
+
oMicroChart: Control
|
|
3515
|
+
): this;
|
|
3486
3516
|
/**
|
|
3487
3517
|
* Sets a new value for property {@link #getNumber number}.
|
|
3488
3518
|
*
|
|
@@ -3914,6 +3944,13 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
3914
3944
|
| AggregationBindingInfo
|
|
3915
3945
|
| `{${string}}`;
|
|
3916
3946
|
|
|
3947
|
+
/**
|
|
3948
|
+
* Micro Chart
|
|
3949
|
+
*
|
|
3950
|
+
* @experimental (since 1.124)
|
|
3951
|
+
*/
|
|
3952
|
+
microChart?: Control;
|
|
3953
|
+
|
|
3917
3954
|
/**
|
|
3918
3955
|
* Fires when the user presses the control.
|
|
3919
3956
|
*/
|
|
@@ -4252,9 +4289,7 @@ declare module "sap/f/dnd/GridDropInfo" {
|
|
|
4252
4289
|
* @returns Value of property `dropIndicatorSize`
|
|
4253
4290
|
*/
|
|
4254
4291
|
getDropIndicatorSize():
|
|
4255
|
-
| ((
|
|
4256
|
-
p1: Control
|
|
4257
|
-
) => {
|
|
4292
|
+
| ((p1: Control) => {
|
|
4258
4293
|
rows: int;
|
|
4259
4294
|
|
|
4260
4295
|
columns: int;
|
|
@@ -4283,9 +4318,7 @@ declare module "sap/f/dnd/GridDropInfo" {
|
|
|
4283
4318
|
/**
|
|
4284
4319
|
* New value for property `dropIndicatorSize`
|
|
4285
4320
|
*/
|
|
4286
|
-
fnDropIndicatorSize?: (
|
|
4287
|
-
p1: Control
|
|
4288
|
-
) => {
|
|
4321
|
+
fnDropIndicatorSize?: (p1: Control) => {
|
|
4289
4322
|
rows: int;
|
|
4290
4323
|
|
|
4291
4324
|
columns: int;
|
|
@@ -7144,7 +7177,8 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
7144
7177
|
*/
|
|
7145
7178
|
export default class FlexibleColumnLayout
|
|
7146
7179
|
extends Control
|
|
7147
|
-
implements IPlaceholderSupport
|
|
7180
|
+
implements IPlaceholderSupport
|
|
7181
|
+
{
|
|
7148
7182
|
__implements__sap_ui_core_IPlaceholderSupport: boolean;
|
|
7149
7183
|
/**
|
|
7150
7184
|
* Constructor for a new `sap.f.FlexibleColumnLayout`.
|
|
@@ -10467,7 +10501,8 @@ declare module "sap/f/GridContainer" {
|
|
|
10467
10501
|
*/
|
|
10468
10502
|
export default class GridContainer
|
|
10469
10503
|
extends Control
|
|
10470
|
-
implements dnd.IGridDroppable
|
|
10504
|
+
implements dnd.IGridDroppable
|
|
10505
|
+
{
|
|
10471
10506
|
__implements__sap_f_dnd_IGridDroppable: boolean;
|
|
10472
10507
|
/**
|
|
10473
10508
|
* Constructor for a new `sap.f.GridContainer`.
|
|
@@ -12106,7 +12141,8 @@ declare module "sap/f/GridList" {
|
|
|
12106
12141
|
*/
|
|
12107
12142
|
export default class GridList
|
|
12108
12143
|
extends ListBase
|
|
12109
|
-
implements cssgrid.IGridConfigurable, dnd.IGridDroppable
|
|
12144
|
+
implements cssgrid.IGridConfigurable, dnd.IGridDroppable
|
|
12145
|
+
{
|
|
12110
12146
|
__implements__sap_ui_layout_cssgrid_IGridConfigurable: boolean;
|
|
12111
12147
|
__implements__sap_f_dnd_IGridDroppable: boolean;
|
|
12112
12148
|
/**
|
|
@@ -19455,7 +19491,8 @@ declare module "sap/f/ShellBar" {
|
|
|
19455
19491
|
*/
|
|
19456
19492
|
export default class ShellBar
|
|
19457
19493
|
extends Control
|
|
19458
|
-
implements IShellBar, IBar, IToolHeader
|
|
19494
|
+
implements IShellBar, IBar, IToolHeader
|
|
19495
|
+
{
|
|
19459
19496
|
__implements__sap_f_IShellBar: boolean;
|
|
19460
19497
|
__implements__sap_m_IBar: boolean;
|
|
19461
19498
|
__implements__sap_tnt_IToolHeader: boolean;
|
package/types/sap.fe.core.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.124.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/fe/core/AppComponent" {
|
|
4
4
|
import {
|
|
@@ -6,6 +6,8 @@ declare module "sap/fe/core/AppComponent" {
|
|
|
6
6
|
$UIComponentSettings,
|
|
7
7
|
} from "sap/ui/core/UIComponent";
|
|
8
8
|
|
|
9
|
+
import { IAsyncContentCreation } from "sap/ui/core/library";
|
|
10
|
+
|
|
9
11
|
/**
|
|
10
12
|
* Main class for components used for an application in SAP Fiori elements.
|
|
11
13
|
* Application developers using the templates and building blocks provided by SAP Fiori elements should
|
|
@@ -19,7 +21,12 @@ declare module "sap/fe/core/AppComponent" {
|
|
|
19
21
|
*
|
|
20
22
|
* - sap.fe.core.rootView.Fcl when using sap.f.routing.Router (FCL use case)
|
|
21
23
|
*/
|
|
22
|
-
export default class AppComponent
|
|
24
|
+
export default class AppComponent
|
|
25
|
+
extends UIComponent
|
|
26
|
+
implements IAsyncContentCreation
|
|
27
|
+
{
|
|
28
|
+
__implements__sap_ui_core_IAsyncContentCreation: boolean;
|
|
29
|
+
|
|
23
30
|
/**
|
|
24
31
|
* Changes the page configuration of SAP Fiori elements.
|
|
25
32
|
* This method enables you to change the page configuration of SAP Fiori elements.
|
|
@@ -1406,7 +1413,7 @@ declare module "sap/fe/core/controllerextensions/ViewState" {
|
|
|
1406
1413
|
/**
|
|
1407
1414
|
* Extensible array of promises to be resolved before continuing
|
|
1408
1415
|
*/
|
|
1409
|
-
aPromises:
|
|
1416
|
+
aPromises: any,
|
|
1410
1417
|
/**
|
|
1411
1418
|
* Navigation type responsible for the applying the state
|
|
1412
1419
|
*/
|
|
@@ -1500,7 +1507,8 @@ declare module "sap/fe/core/fpm/Component" {
|
|
|
1500
1507
|
* @experimental (since 1.92.0)
|
|
1501
1508
|
*/
|
|
1502
1509
|
export default class Component
|
|
1503
|
-
/* was: sap.fe.core.TemplateComponent */
|
|
1510
|
+
extends /* was: sap.fe.core.TemplateComponent */ Object
|
|
1511
|
+
{
|
|
1504
1512
|
/**
|
|
1505
1513
|
* Returns the current AppComponent.
|
|
1506
1514
|
*
|
|
@@ -1522,7 +1530,7 @@ declare module "sap/fe/core/rootView/Fcl.controller" {
|
|
|
1522
1530
|
* @since 1.110.0
|
|
1523
1531
|
*/
|
|
1524
1532
|
export default class Fcl
|
|
1525
|
-
/* was: sap.fe.core.rootView.RootViewBaseController */
|
|
1533
|
+
extends /* was: sap.fe.core.rootView.RootViewBaseController */ Object {}
|
|
1526
1534
|
}
|
|
1527
1535
|
|
|
1528
1536
|
declare module "sap/fe/core/rootView/NavContainer.controller" {
|
|
@@ -1536,7 +1544,7 @@ declare module "sap/fe/core/rootView/NavContainer.controller" {
|
|
|
1536
1544
|
* @since 1.108.0
|
|
1537
1545
|
*/
|
|
1538
1546
|
export default class NavContainer
|
|
1539
|
-
/* was: sap.fe.core.rootView.RootViewBaseController */
|
|
1547
|
+
extends /* was: sap.fe.core.rootView.RootViewBaseController */ Object {}
|
|
1540
1548
|
}
|
|
1541
1549
|
|
|
1542
1550
|
declare namespace sap {
|