@sapui5/ts-types-esm 1.90.7 → 1.90.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/package.json +1 -1
  2. package/types/sap.apf.d.ts +234 -252
  3. package/types/sap.chart.d.ts +1 -1
  4. package/types/sap.f.d.ts +1 -1
  5. package/types/sap.fe.common.d.ts +1 -1
  6. package/types/sap.fe.core.d.ts +1 -1
  7. package/types/sap.fe.macros.d.ts +1 -1
  8. package/types/sap.fe.navigation.d.ts +1 -1
  9. package/types/sap.fe.placeholder.d.ts +1 -1
  10. package/types/sap.fe.plugins.d.ts +1 -1
  11. package/types/sap.fe.templates.d.ts +1 -1
  12. package/types/sap.fe.test.d.ts +1 -1
  13. package/types/sap.fe.tools.d.ts +1 -1
  14. package/types/sap.gantt.d.ts +1 -1
  15. package/types/sap.m.d.ts +1 -1
  16. package/types/sap.makit.d.ts +1 -1
  17. package/types/sap.me.d.ts +1 -1
  18. package/types/sap.ndc.d.ts +1 -1
  19. package/types/sap.ovp.d.ts +1 -1
  20. package/types/sap.suite.ui.generic.template.d.ts +1 -1
  21. package/types/sap.suite.ui.microchart.d.ts +1 -1
  22. package/types/sap.tnt.d.ts +1 -1
  23. package/types/sap.ui.codeeditor.d.ts +1 -1
  24. package/types/sap.ui.commons.d.ts +1 -1
  25. package/types/sap.ui.comp.d.ts +1 -1
  26. package/types/sap.ui.core.d.ts +1 -1
  27. package/types/sap.ui.dt.d.ts +1 -1
  28. package/types/sap.ui.export.d.ts +3 -3
  29. package/types/sap.ui.fl.d.ts +1 -1
  30. package/types/sap.ui.integration.d.ts +1 -1
  31. package/types/sap.ui.layout.d.ts +1 -1
  32. package/types/sap.ui.mdc.d.ts +1 -1
  33. package/types/sap.ui.richtexteditor.d.ts +1 -1
  34. package/types/sap.ui.rta.d.ts +1 -1
  35. package/types/sap.ui.suite.d.ts +1 -1
  36. package/types/sap.ui.support.d.ts +6 -6
  37. package/types/sap.ui.table.d.ts +1 -1
  38. package/types/sap.ui.testrecorder.d.ts +1 -1
  39. package/types/sap.ui.unified.d.ts +1 -1
  40. package/types/sap.ui.ux3.d.ts +1 -1
  41. package/types/sap.ui.vk.d.ts +1 -1
  42. package/types/sap.uiext.inbox.d.ts +1 -1
  43. package/types/sap.ushell.d.ts +1 -1
  44. package/types/sap.ushell_abap.d.ts +1 -1
  45. package/types/sap.uxap.d.ts +1 -1
  46. package/types/sap.viz.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/ts-types-esm",
3
- "version": "1.90.7",
3
+ "version": "1.90.11",
4
4
  "description": "SAPUI5 TypeScript Definitions - ES Modules",
5
5
  "homepage": "https://ui5.sap.com",
6
6
  "author": "SAP SE (https://www.sap.com)",
@@ -1,258 +1,7 @@
1
- // For Library Version: 1.90.1
1
+ // For Library Version: 1.90.2
2
2
 
3
3
  declare module "sap/apf/library" {}
4
4
 
5
- declare module "sap/apf/api" {
6
- import MessageObject from "sap/apf/core/messageObject";
7
-
8
- /**
9
- * Official API for Analysis Path Framework (APF)
10
- * The APF API provides a consuming application access to the functionality of the APF. It is assumed
11
- * that the consuming application extends type {@link sap.apf.base.Component}. The API reference is returned
12
- * by method {@link sap.apf.base.Component#getApi}.
13
- * Objects and types returned by methods of APF API or passed in parameters of APF API method also belong
14
- * to the API. These objects and types are documented in their respective sections of this documentation.
15
- * All methods, objects or types that are not explicitly documented as public are strictly internal and
16
- * may be changed without prior notice. This also includes all methods, objects or types being classified
17
- * as experimental.
18
- * Furthermore there is no need to instantiate required entities directly by applying the JavaScript 'new'-operator
19
- * on their respective constructors. Instead they should be created by consumers using a create method available
20
- * on API-level, such as e.g. {@link sap.apf.Api#createMessageObject} for {@link sap.apf.core.MessageObject}
21
- * or {@link sap.apf.Api#createFilter} for {@link sap.apf.utils.Filter}.
22
- */
23
- export default class Api {
24
- /**/
25
- constructor(
26
- /**
27
- * A reference to the calling Component.js. The reference provides access to parameters and context.
28
- */
29
- oComponent: any | any,
30
- /**
31
- * injected constructors and functions for testing only.
32
- */
33
- inject?: Object,
34
- /**
35
- * manifests of the component and the base component itself
36
- */
37
- manifests?: Object
38
- );
39
- /**
40
- * Contains 'api'
41
- */
42
- type: undefined;
43
-
44
- /**
45
- * @EXPERIMENTAL
46
- *
47
- * The handling of the window.onerror by the message handler is either switched on or off. Per default the
48
- * handling is deactivated.
49
- */
50
- activateOnErrorHandling(
51
- /**
52
- * Boolean true switches the winow.onerror handling on
53
- */
54
- bHandling: boolean
55
- ): undefined;
56
- /**
57
- * @deprecated (since 1.23.1) - Remains in api in order to maintain downward compatibility to 3 Wave 5 apps.
58
- * @EXPERIMENTAL
59
- *
60
- * Adds an element to the footer area.
61
- */
62
- addMasterFooterContent(
63
- /**
64
- * any valid UI5 control.
65
- */
66
- oControl: object
67
- ): void;
68
- /**
69
- * Adds a filter to the path. Subsequent changes need to be done by the update method providing the identifier.
70
- * Limitation: Only a single filter term or a disjunction/conjunction of single terms over a single property
71
- * is supported. Limitation: Only the operators EQ, LE (less equal than) and GE (greater equal than) are
72
- * supported.
73
- */
74
- addPathFilter(filter: sap.apf.utils.Filter): number;
75
- /**
76
- * Creates an empty filter object. Its methods can be used to create a logical filter expression.
77
- */
78
- createFilter(): sap.apf.utils.Filter;
79
- /**
80
- * Creates a message object, which is the mandatory parameter for API method putMessage. So first create
81
- * the message object and afterwards call putMessage with the message object as argument.
82
- */
83
- createMessageObject(
84
- /**
85
- * Configuration object for the message object.
86
- */
87
- oConfig: {
88
- /**
89
- * The message is classified by its code. The code identifies an entry in the message configuration.
90
- */
91
- code: string;
92
- /**
93
- * Additional parameters for the message. The parameters are filled into the message text, when the message
94
- * will be processed by the text resource handler.
95
- */
96
- aParameters?: Array<any>;
97
- /**
98
- * Reference of the calling object. This can be used later to visualize on the user interface, where the
99
- * message occurred.
100
- */
101
- oCallingObject?: object;
102
- /**
103
- * Raw text for non translated messages.
104
- */
105
- rawText?: string;
106
- }
107
- ): MessageObject;
108
- /**
109
- * Creates an object for performing an Odata Request get operation.
110
- * See:
111
- * sap.apf#createReadRequest
112
- */
113
- createReadRequest(
114
- /**
115
- * identifies a request configuration, which is contained in the analytical configuration. or the request
116
- * configuration is directly passed as an object oRequestConfiguration.
117
- */
118
- requestConfiguration: String | Object
119
- ): sap.apf.core.ReadRequest;
120
- /**
121
- * helps to call customer defined custom formatter function(fnCallback).
122
- */
123
- customFormat(
124
- /**
125
- * custom format function need to be called.
126
- */
127
- fnCallback: Function
128
- ): void;
129
- /**
130
- * Gets a path filter fragment for the given identifier by fully replacing the existing one.
131
- */
132
- getPathFilter(
133
- /**
134
- * Identifier of the path filter fragment as it was returned by addPathFilter method.
135
- */
136
- id: number | string
137
- ): sap.apf.utils.Filter;
138
- /**
139
- * Retrieves a text and applies HTML encoding
140
- */
141
- getTextHtmlEncoded(
142
- /**
143
- * || {string} Label object or text key
144
- */
145
- oLabel: object,
146
- /**
147
- * Array with parameters to replace place holders in text.
148
- */
149
- aParameters: string[]
150
- ): string;
151
- /**
152
- * Retrieves a text without application of HTML encoding
153
- */
154
- getTextNotHtmlEncoded(
155
- /**
156
- * || {string} Label object or text key
157
- */
158
- oLabel: object,
159
- /**
160
- * Array with parameters to replace place holders in text.
161
- */
162
- aParameters: string[]
163
- ): string;
164
- /**
165
- * @deprecated (since 1.23.1)
166
- * @EXPERIMENTAL
167
- *
168
- * Loads a new application configuration in JSON format. When called many times, the file is loaded only
169
- * the first time.
170
- */
171
- loadApplicationConfig(
172
- /**
173
- * The absolute path of an application configuration file. Host and port will be added in front of this
174
- * path.
175
- */
176
- sFilePath: string
177
- ): void;
178
- /**
179
- * A message is passed to the APF message handler for further processing. All message specific settings
180
- * (e.g. message code or severity) need to be passed within an APF message object instance.
181
- */
182
- putMessage(
183
- /**
184
- * The message object shall be created by method {@link sap.apf.Api#createMessageObject}.
185
- */
186
- oMessage: MessageObject
187
- ): undefined;
188
- /**
189
- * @EXPERIMENTAL
190
- *
191
- * Calls the sap.apf.core.instance#updatePath (also see {@link sap.apf.core.Path#update}) with proper callback
192
- * for UI. It also refreshes the steps either from the active step or all the steps depending on the boolean
193
- * value passed.
194
- */
195
- selectionChanged(bRefreshAllSteps: boolean): void;
196
- /**
197
- * Register the function callback to be executed after APF start-up and content has been created. Callback
198
- * is called with APF API instance as parameter and 'this' set to the Component instance.
199
- */
200
- setCallbackAfterApfStartup(
201
- /**
202
- * that will be executed after APF start-up and content has been created.
203
- */
204
- fnCallback: Function
205
- ): void;
206
- /**
207
- * Register the function callback to be executed before APF start-up. Callback is called with APF API instance
208
- * as parameter and 'this' set to the Component instance.
209
- */
210
- setCallbackBeforeApfStartup(
211
- /**
212
- * that will be executed before APF start-up.
213
- */
214
- fnCallback: Function
215
- ): void;
216
- /**
217
- * @EXPERIMENTAL
218
- *
219
- * Register the function callback to be executed on the given event type. fnCallback will be executed under
220
- * a context and will be passed with arguments depending on the event type.
221
- */
222
- setEventCallback(
223
- /**
224
- * is the type of event for registering the fnCallback for that particular event type printTriggered - Registers
225
- * a callback for initial page print, this callback returns 2d array contextChanged : Registers a callback
226
- * for context change, which will set the context of the application
227
- */
228
- sEventType: any,
229
- /**
230
- * that will be executed depending on the event type.
231
- */
232
- fnCallback: Function
233
- ): boolean;
234
- /**
235
- * true, when no fatal error occurred during startup phase. Startup phase includes the initialization +
236
- * startupApf
237
- */
238
- startupSucceeded(): boolean;
239
- /**
240
- * Updates a filter of the path. Limitation: Only a single filter term or a disjunction/conjunction of single
241
- * terms over a single property is supported. Limitation: Only the operators EQ, LE (less equal than) and
242
- * GE (greater equal than) are supported.
243
- */
244
- updatePathFilter(
245
- /**
246
- * Identifier of the path filter as it was returned by addPathFilter method. When using an ID of type string
247
- * the caller must ensure that it is unique.
248
- */
249
- id: number | string,
250
-
251
- filter: sap.apf.utils.Filter
252
- ): void;
253
- }
254
- }
255
-
256
5
  declare module "sap/apf/core/messageObject" {
257
6
  /**
258
7
  * The message object represents the APF specific message object for detailed evaluation. The message object
@@ -925,6 +674,239 @@ declare namespace sap {
925
674
  getId(): string;
926
675
  }
927
676
  }
677
+
678
+ /**
679
+ * Official API for Analysis Path Framework (APF)
680
+ * The APF API provides a consuming application access to the functionality of the APF. It is assumed
681
+ * that the consuming application extends type {@link sap.apf.base.Component}. The API reference is returned
682
+ * by method {@link sap.apf.base.Component#getApi}.
683
+ * Objects and types returned by methods of APF API or passed in parameters of APF API method also belong
684
+ * to the API. These objects and types are documented in their respective sections of this documentation.
685
+ * All methods, objects or types that are not explicitly documented as public are strictly internal and
686
+ * may be changed without prior notice. This also includes all methods, objects or types being classified
687
+ * as experimental.
688
+ * Furthermore there is no need to instantiate required entities directly by applying the JavaScript 'new'-operator
689
+ * on their respective constructors. Instead they should be created by consumers using a create method available
690
+ * on API-level, such as e.g. {@link sap.apf.Api#createMessageObject} for {@link sap.apf.core.MessageObject}
691
+ * or {@link sap.apf.Api#createFilter} for {@link sap.apf.utils.Filter}.
692
+ */
693
+ class Api {
694
+ /**/
695
+ constructor(
696
+ /**
697
+ * A reference to the calling Component.js. The reference provides access to parameters and context.
698
+ */
699
+ oComponent: /* was: sap.apf.Component */
700
+ | any
701
+ | /* was: sap.apf.base.Component */ any,
702
+ /**
703
+ * injected constructors and functions for testing only.
704
+ */
705
+ inject?: Object,
706
+ /**
707
+ * manifests of the component and the base component itself
708
+ */
709
+ manifests?: Object
710
+ );
711
+
712
+ /**
713
+ * @EXPERIMENTAL
714
+ *
715
+ * The handling of the window.onerror by the message handler is either switched on or off. Per default the
716
+ * handling is deactivated.
717
+ */
718
+ activateOnErrorHandling(
719
+ /**
720
+ * Boolean true switches the winow.onerror handling on
721
+ */
722
+ bHandling: boolean
723
+ ): undefined;
724
+ /**
725
+ * @deprecated (since 1.23.1) - Remains in api in order to maintain downward compatibility to 3 Wave 5 apps.
726
+ * @EXPERIMENTAL
727
+ *
728
+ * Adds an element to the footer area.
729
+ */
730
+ addMasterFooterContent(
731
+ /**
732
+ * any valid UI5 control.
733
+ */
734
+ oControl: object
735
+ ): void;
736
+ /**
737
+ * Adds a filter to the path. Subsequent changes need to be done by the update method providing the identifier.
738
+ * Limitation: Only a single filter term or a disjunction/conjunction of single terms over a single property
739
+ * is supported. Limitation: Only the operators EQ, LE (less equal than) and GE (greater equal than) are
740
+ * supported.
741
+ */
742
+ addPathFilter(filter: sap.apf.utils.Filter): number;
743
+ /**
744
+ * Creates an empty filter object. Its methods can be used to create a logical filter expression.
745
+ */
746
+ createFilter(): sap.apf.utils.Filter;
747
+ /**
748
+ * Creates a message object, which is the mandatory parameter for API method putMessage. So first create
749
+ * the message object and afterwards call putMessage with the message object as argument.
750
+ */
751
+ createMessageObject(
752
+ /**
753
+ * Configuration object for the message object.
754
+ */
755
+ oConfig: {
756
+ /**
757
+ * The message is classified by its code. The code identifies an entry in the message configuration.
758
+ */
759
+ code: string;
760
+ /**
761
+ * Additional parameters for the message. The parameters are filled into the message text, when the message
762
+ * will be processed by the text resource handler.
763
+ */
764
+ aParameters?: Array<any>;
765
+ /**
766
+ * Reference of the calling object. This can be used later to visualize on the user interface, where the
767
+ * message occurred.
768
+ */
769
+ oCallingObject?: object;
770
+ /**
771
+ * Raw text for non translated messages.
772
+ */
773
+ rawText?: string;
774
+ }
775
+ ): import("sap/apf/core/messageObject").default;
776
+ /**
777
+ * helps to call customer defined custom formatter function(fnCallback).
778
+ */
779
+ customFormat(
780
+ /**
781
+ * custom format function need to be called.
782
+ */
783
+ fnCallback: Function
784
+ ): void;
785
+ /**
786
+ * Gets a path filter fragment for the given identifier by fully replacing the existing one.
787
+ */
788
+ getPathFilter(
789
+ /**
790
+ * Identifier of the path filter fragment as it was returned by addPathFilter method.
791
+ */
792
+ id: number | string
793
+ ): sap.apf.utils.Filter;
794
+ /**
795
+ * Retrieves a text and applies HTML encoding
796
+ */
797
+ getTextHtmlEncoded(
798
+ /**
799
+ * || {string} Label object or text key
800
+ */
801
+ oLabel: object,
802
+ /**
803
+ * Array with parameters to replace place holders in text.
804
+ */
805
+ aParameters: string[]
806
+ ): string;
807
+ /**
808
+ * Retrieves a text without application of HTML encoding
809
+ */
810
+ getTextNotHtmlEncoded(
811
+ /**
812
+ * || {string} Label object or text key
813
+ */
814
+ oLabel: object,
815
+ /**
816
+ * Array with parameters to replace place holders in text.
817
+ */
818
+ aParameters: string[]
819
+ ): string;
820
+ /**
821
+ * @deprecated (since 1.23.1)
822
+ * @EXPERIMENTAL
823
+ *
824
+ * Loads a new application configuration in JSON format. When called many times, the file is loaded only
825
+ * the first time.
826
+ */
827
+ loadApplicationConfig(
828
+ /**
829
+ * The absolute path of an application configuration file. Host and port will be added in front of this
830
+ * path.
831
+ */
832
+ sFilePath: string
833
+ ): void;
834
+ /**
835
+ * A message is passed to the APF message handler for further processing. All message specific settings
836
+ * (e.g. message code or severity) need to be passed within an APF message object instance.
837
+ */
838
+ putMessage(
839
+ /**
840
+ * The message object shall be created by method {@link sap.apf.Api#createMessageObject}.
841
+ */
842
+ oMessage: import("sap/apf/core/messageObject").default
843
+ ): undefined;
844
+ /**
845
+ * @EXPERIMENTAL
846
+ *
847
+ * Calls the sap.apf.core.instance#updatePath (also see {@link sap.apf.core.Path#update}) with proper callback
848
+ * for UI. It also refreshes the steps either from the active step or all the steps depending on the boolean
849
+ * value passed.
850
+ */
851
+ selectionChanged(bRefreshAllSteps: boolean): void;
852
+ /**
853
+ * Register the function callback to be executed after APF start-up and content has been created. Callback
854
+ * is called with APF API instance as parameter and 'this' set to the Component instance.
855
+ */
856
+ setCallbackAfterApfStartup(
857
+ /**
858
+ * that will be executed after APF start-up and content has been created.
859
+ */
860
+ fnCallback: Function
861
+ ): void;
862
+ /**
863
+ * Register the function callback to be executed before APF start-up. Callback is called with APF API instance
864
+ * as parameter and 'this' set to the Component instance.
865
+ */
866
+ setCallbackBeforeApfStartup(
867
+ /**
868
+ * that will be executed before APF start-up.
869
+ */
870
+ fnCallback: Function
871
+ ): void;
872
+ /**
873
+ * @EXPERIMENTAL
874
+ *
875
+ * Register the function callback to be executed on the given event type. fnCallback will be executed under
876
+ * a context and will be passed with arguments depending on the event type.
877
+ */
878
+ setEventCallback(
879
+ /**
880
+ * is the type of event for registering the fnCallback for that particular event type printTriggered - Registers
881
+ * a callback for initial page print, this callback returns 2d array contextChanged : Registers a callback
882
+ * for context change, which will set the context of the application
883
+ */
884
+ sEventType: /* was: sap.apf.core.constants.eventTypes */ any,
885
+ /**
886
+ * that will be executed depending on the event type.
887
+ */
888
+ fnCallback: Function
889
+ ): boolean;
890
+ /**
891
+ * true, when no fatal error occurred during startup phase. Startup phase includes the initialization +
892
+ * startupApf
893
+ */
894
+ startupSucceeded(): boolean;
895
+ /**
896
+ * Updates a filter of the path. Limitation: Only a single filter term or a disjunction/conjunction of single
897
+ * terms over a single property is supported. Limitation: Only the operators EQ, LE (less equal than) and
898
+ * GE (greater equal than) are supported.
899
+ */
900
+ updatePathFilter(
901
+ /**
902
+ * Identifier of the path filter as it was returned by addPathFilter method. When using an ID of type string
903
+ * the caller must ensure that it is unique.
904
+ */
905
+ id: number | string,
906
+
907
+ filter: sap.apf.utils.Filter
908
+ ): void;
909
+ }
928
910
  }
929
911
 
930
912
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/chart/library" {
4
4
  import Dimension from "sap/chart/data/Dimension";
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  export interface IToolHeader {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.3
1
+ // For Library Version: 1.90.4
2
2
 
3
3
  declare module "sap/fe/common/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.3
1
+ // For Library Version: 1.90.4
2
2
 
3
3
  declare module "sap/fe/core/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.3
1
+ // For Library Version: 1.90.4
2
2
 
3
3
  declare module "sap/fe/macros/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.3
1
+ // For Library Version: 1.90.4
2
2
 
3
3
  declare module "sap/fe/navigation/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.3
1
+ // For Library Version: 1.90.4
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.3
1
+ // For Library Version: 1.90.4
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.3
1
+ // For Library Version: 1.90.4
2
2
 
3
3
  declare module "sap/fe/templates/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.3
1
+ // For Library Version: 1.90.4
2
2
 
3
3
  declare module "sap/fe/test/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.3
1
+ // For Library Version: 1.90.4
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.3
1
+ // For Library Version: 1.90.5
2
2
 
3
3
  declare module "sap/gantt/library" {
4
4
  /**
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/makit/library" {
4
4
  /**
package/types/sap.me.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/me/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/ndc/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.4
1
+ // For Library Version: 1.90.6
2
2
 
3
3
  declare module "sap/ovp/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.4
1
+ // For Library Version: 1.90.8
2
2
 
3
3
  declare module "sap/suite/ui/generic/template/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/suite/ui/microchart/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/ui/codeeditor/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/ui/commons/library" {
4
4
  import { ColorPickerMode as ColorPickerMode1 } from "sap/ui/unified/library";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/ui/comp/library" {
4
4
  /**
@@ -37,7 +37,7 @@ declare namespace QUnit {
37
37
  export type Assert = typeof QUnit.assert;
38
38
  }
39
39
 
40
- // For Library Version: 1.90.6
40
+ // For Library Version: 1.90.10
41
41
 
42
42
  declare module "sap/base/assert" {
43
43
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/ui/export/library" {
4
4
  /**
@@ -133,7 +133,7 @@ declare module "sap/ui/export/Spreadsheet" {
133
133
  * - `workbook.context` - Context object that will be applied to the generated file. It may contain the
134
134
  * following fields:
135
135
  * - `application` (string) - The application that creates the XLSX document (default: "SAP UI5")
136
- * - `version` (string) - Application version that creates the XLSX document (default: "1.90.6")
136
+ * - `version` (string) - Application version that creates the XLSX document (default: "1.90.10")
137
137
  * - `title` (string) - Title of the XLSX document (NOT the filename)
138
138
  * - `modifiedBy` (string) - User context for the XLSX document
139
139
  * - `sheetName` (string) - The label of the data sheet
@@ -219,7 +219,7 @@ declare module "sap/ui/export/Spreadsheet" {
219
219
  * columns: aColumns,
220
220
  * context: {
221
221
  * application: 'Debug Test Application',
222
- * version: '1.90.6',
222
+ * version: '1.90.10',
223
223
  * title: 'Some random title',
224
224
  * modifiedBy: 'John Doe',
225
225
  * metaSheetName: 'Custom metadata',
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/ui/fl/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/ui/integration/library" {
4
4
  import { URI } from "sap/ui/core/library";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/ui/layout/library" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/ui/richtexteditor/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  import UI5Element from "sap/ui/core/Element";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -1,8 +1,8 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
5
- * @SINCE 1.90.6
5
+ * @SINCE 1.90.10
6
6
  *
7
7
  * Defines the Audiences.
8
8
  */
@@ -21,7 +21,7 @@ declare module "sap/ui/support/library" {
21
21
  Internal = "Internal",
22
22
  }
23
23
  /**
24
- * @SINCE 1.90.6
24
+ * @SINCE 1.90.10
25
25
  *
26
26
  * Issue Categories.
27
27
  */
@@ -76,7 +76,7 @@ declare module "sap/ui/support/library" {
76
76
  Usage = "Usage",
77
77
  }
78
78
  /**
79
- * @SINCE 1.90.6
79
+ * @SINCE 1.90.10
80
80
  *
81
81
  * Analysis history formats.
82
82
  */
@@ -91,7 +91,7 @@ declare module "sap/ui/support/library" {
91
91
  String = "String",
92
92
  }
93
93
  /**
94
- * @SINCE 1.90.6
94
+ * @SINCE 1.90.10
95
95
  *
96
96
  * Defines severity types.
97
97
  */
@@ -110,7 +110,7 @@ declare module "sap/ui/support/library" {
110
110
  Medium = "Medium",
111
111
  }
112
112
  /**
113
- * @SINCE 1.90.6
113
+ * @SINCE 1.90.10
114
114
  *
115
115
  * Contains the available system presets.
116
116
  */
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/ui/table/library" {
4
4
  import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.2
1
+ // For Library Version: 1.90.3
2
2
 
3
3
  declare module "sap/ui/vk/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/uiext/inbox/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/ushell/components/factsheet/controls/PictureTile" {
4
4
  import { default as CustomTile, $CustomTileSettings } from "sap/m/CustomTile";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/ui2/srvc/ODataService" {
4
4
  import ODataWrapper from "sap/ui2/srvc/ODataWrapper";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/uxap/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.90.6
1
+ // For Library Version: 1.90.10
2
2
 
3
3
  declare module "sap/viz/library" {
4
4
  export namespace ui5 {