@sapui5/types 1.113.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.
Files changed (66) hide show
  1. package/LICENSE.txt +35 -0
  2. package/README.md +35 -0
  3. package/package.json +23 -0
  4. package/types/index.d.ts +67 -0
  5. package/types/sap.apf.d.ts +1026 -0
  6. package/types/sap.ca.ui.d.ts +14005 -0
  7. package/types/sap.chart.d.ts +4815 -0
  8. package/types/sap.collaboration.d.ts +2704 -0
  9. package/types/sap.esh.search.ui.d.ts +1595 -0
  10. package/types/sap.f.d.ts +20085 -0
  11. package/types/sap.fe.core.d.ts +1508 -0
  12. package/types/sap.fe.macros.d.ts +975 -0
  13. package/types/sap.fe.navigation.d.ts +917 -0
  14. package/types/sap.fe.templates.d.ts +522 -0
  15. package/types/sap.fe.test.d.ts +3533 -0
  16. package/types/sap.feedback.ui.d.ts +3 -0
  17. package/types/sap.gantt.d.ts +51684 -0
  18. package/types/sap.insights.d.ts +23 -0
  19. package/types/sap.landvisz.d.ts +7952 -0
  20. package/types/sap.m.d.ts +147796 -0
  21. package/types/sap.makit.d.ts +4533 -0
  22. package/types/sap.me.d.ts +3665 -0
  23. package/types/sap.ndc.d.ts +774 -0
  24. package/types/sap.ovp.d.ts +176 -0
  25. package/types/sap.rules.ui.d.ts +1471 -0
  26. package/types/sap.sac.df.d.ts +2292 -0
  27. package/types/sap.sac.grid.d.ts +774 -0
  28. package/types/sap.suite.ui.commons.d.ts +46971 -0
  29. package/types/sap.suite.ui.generic.template.d.ts +3431 -0
  30. package/types/sap.suite.ui.microchart.d.ts +12652 -0
  31. package/types/sap.tnt.d.ts +2227 -0
  32. package/types/sap.ui.codeeditor.d.ts +693 -0
  33. package/types/sap.ui.commons.d.ts +30235 -0
  34. package/types/sap.ui.comp.d.ts +37411 -0
  35. package/types/sap.ui.core.d.ts +78872 -0
  36. package/types/sap.ui.dt.d.ts +3 -0
  37. package/types/sap.ui.export.d.ts +843 -0
  38. package/types/sap.ui.fl.d.ts +1663 -0
  39. package/types/sap.ui.generic.app.d.ts +2683 -0
  40. package/types/sap.ui.generic.template.d.ts +3 -0
  41. package/types/sap.ui.integration.d.ts +4032 -0
  42. package/types/sap.ui.layout.d.ts +14472 -0
  43. package/types/sap.ui.mdc.d.ts +476 -0
  44. package/types/sap.ui.richtexteditor.d.ts +1666 -0
  45. package/types/sap.ui.rta.d.ts +124 -0
  46. package/types/sap.ui.suite.d.ts +685 -0
  47. package/types/sap.ui.support.d.ts +453 -0
  48. package/types/sap.ui.table.d.ts +9325 -0
  49. package/types/sap.ui.testrecorder.d.ts +9 -0
  50. package/types/sap.ui.unified.d.ts +20640 -0
  51. package/types/sap.ui.ux3.d.ts +18288 -0
  52. package/types/sap.ui.vbm.d.ts +17251 -0
  53. package/types/sap.ui.vk.d.ts +42381 -0
  54. package/types/sap.ui.vtm.d.ts +10547 -0
  55. package/types/sap.ui.webc.common.d.ts +113 -0
  56. package/types/sap.ui.webc.fiori.d.ts +13850 -0
  57. package/types/sap.ui.webc.main.d.ts +40833 -0
  58. package/types/sap.uiext.inbox.d.ts +4079 -0
  59. package/types/sap.ushell.d.ts +10255 -0
  60. package/types/sap.ushell_abap.d.ts +9 -0
  61. package/types/sap.uxap.d.ts +7636 -0
  62. package/types/sap.viz.d.ts +51209 -0
  63. package/types/sap.webanalytics.core.d.ts +3 -0
  64. package/types/sap.zen.commons.d.ts +1542 -0
  65. package/types/sap.zen.crosstab.d.ts +1159 -0
  66. package/types/sap.zen.dsh.d.ts +2132 -0
@@ -0,0 +1,476 @@
1
+ // For Library Version: 1.113.0
2
+
3
+ declare module "sap/ui/mdc/enum/FilterBarValidationStatus" {
4
+ /**
5
+ * @SINCE 1.110
6
+ *
7
+ * Enumeration of the possible validation types.
8
+ */
9
+ enum FilterBarValidationStatus {
10
+ /**
11
+ * Filter field in error state.
12
+ */
13
+ FieldInErrorState = "undefined",
14
+ /**
15
+ * No errors detected.
16
+ */
17
+ NoError = "undefined",
18
+ /**
19
+ * Required filter filed without a value.
20
+ */
21
+ RequiredHasNoValue = "undefined",
22
+ }
23
+ export default FilterBarValidationStatus;
24
+ }
25
+
26
+ declare module "sap/ui/mdc/filterbar/vh/FilterContainer" {
27
+ import Metadata from "sap/ui/base/Metadata";
28
+
29
+ /**
30
+ * @SINCE 1.84.0
31
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
32
+ *
33
+ * The FilterContainer is a IFilterContainer implementation for `AlignedFlowLayout`
34
+ */
35
+ export default class FilterContainer
36
+ /* was: sap.ui.mdc.filterbar.IFilterContainer */ extends Object {
37
+ /**
38
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
39
+ *
40
+ * Constructor for a new filterBar/vh/FilterContainer.
41
+ *
42
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
43
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
44
+ * of the syntax of the settings object.
45
+ */
46
+ constructor(
47
+ /**
48
+ * ID for the new control, generated automatically if no ID is given
49
+ */
50
+ sId?: string
51
+ );
52
+
53
+ /**
54
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
55
+ *
56
+ * Creates a new subclass of class sap.ui.mdc.filterbar.vh.FilterContainer with name `sClassName` and enriches
57
+ * it with the information contained in `oClassInfo`.
58
+ *
59
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.mdc.filterbar.IFilterContainer.extend}.
60
+ *
61
+ * @returns Created class / constructor function
62
+ */
63
+ static extend<T extends Record<string, unknown>>(
64
+ /**
65
+ * Name of the class being created
66
+ */
67
+ sClassName: string,
68
+ /**
69
+ * Object literal with information about the class
70
+ */
71
+ oClassInfo?: sap.ClassInfo<T, FilterContainer>,
72
+ /**
73
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
74
+ * used by this class
75
+ */
76
+ FNMetaImpl?: Function
77
+ ): Function;
78
+ /**
79
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
80
+ *
81
+ * Returns a metadata object for class sap.ui.mdc.filterbar.vh.FilterContainer.
82
+ *
83
+ * @returns Metadata object describing this class
84
+ */
85
+ static getMetadata(): Metadata;
86
+ }
87
+ }
88
+
89
+ declare module "sap/ui/mdc/p13n/panels/FilterPanel" {
90
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
91
+
92
+ import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
93
+
94
+ /**
95
+ * P13n `FilterItem` object type.
96
+ */
97
+ export type FilterItem = {
98
+ /**
99
+ * The unique key of the item
100
+ */
101
+ name: string;
102
+ /**
103
+ * The label describing the personalization item
104
+ */
105
+ label: string;
106
+ /**
107
+ * Defines whether there is a visible grid shown in the panel for this key, also triggers the call of the
108
+ * `#itemFactory` function
109
+ */
110
+ active: boolean;
111
+ };
112
+
113
+ /**
114
+ * @SINCE 1.107
115
+ * @EXPERIMENTAL (since 1.107)
116
+ *
117
+ * This control can be used to customize personalization content for filtering for an associated control
118
+ * instance.
119
+ */
120
+ export default class FilterPanel
121
+ /* was: sap.m.p13n.QueryPanel */ extends Object {
122
+ /**
123
+ * Constructor for a new `FilterPanel`.
124
+ *
125
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
126
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
127
+ * of the syntax of the settings object.
128
+ */
129
+ constructor(
130
+ /**
131
+ * Initial settings for the new control
132
+ */
133
+ mSettings?: $FilterPanelSettings
134
+ );
135
+ /**
136
+ * Constructor for a new `FilterPanel`.
137
+ *
138
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
139
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
140
+ * of the syntax of the settings object.
141
+ */
142
+ constructor(
143
+ /**
144
+ * ID for the new control, generated automatically if no ID is given
145
+ */
146
+ sId?: string,
147
+ /**
148
+ * Initial settings for the new control
149
+ */
150
+ mSettings?: $FilterPanelSettings
151
+ );
152
+
153
+ /**
154
+ * Creates a new subclass of class sap.ui.mdc.p13n.panels.FilterPanel with name `sClassName` and enriches
155
+ * it with the information contained in `oClassInfo`.
156
+ *
157
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.m.p13n.QueryPanel.extend}.
158
+ *
159
+ * @returns Created class / constructor function
160
+ */
161
+ static extend<T extends Record<string, unknown>>(
162
+ /**
163
+ * Name of the class being created
164
+ */
165
+ sClassName: string,
166
+ /**
167
+ * Object literal with information about the class
168
+ */
169
+ oClassInfo?: sap.ClassInfo<T, FilterPanel>,
170
+ /**
171
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
172
+ * used by this class
173
+ */
174
+ FNMetaImpl?: Function
175
+ ): Function;
176
+ /**
177
+ * Returns a metadata object for class sap.ui.mdc.p13n.panels.FilterPanel.
178
+ *
179
+ * @returns Metadata object describing this class
180
+ */
181
+ static getMetadata(): ElementMetadata;
182
+ /**
183
+ * Gets current value of property {@link #getItemFactory itemFactory}.
184
+ *
185
+ * A factory function that will be called whenever the user selects a new entry from the `ComboBox`. The
186
+ * factory must return a single control instance of an input based control to provide custom filter capabilities.
187
+ * This control is then going to be added in the grid layout provided by the `QueryPanel`. Whenever the
188
+ * `FilterPanel#setP13nData` method will be called, the `active` can be used to update the current set of
189
+ * active factory controls.
190
+ *
191
+ * **Note:**: The Panel will not handle the lifecylce of the provided factory control instance, in case
192
+ * the row is going to be removed, the according consumer needs to decide about destroying or keeping the
193
+ * control instance. In addition, the `getIdForLabel` method can be used to return a focusable children
194
+ * control to provide the `labelFor` reference.
195
+ *
196
+ * @returns Value of property `itemFactory`
197
+ */
198
+ getItemFactory(): Function;
199
+ /**
200
+ * Sets a new value for property {@link #getItemFactory itemFactory}.
201
+ *
202
+ * A factory function that will be called whenever the user selects a new entry from the `ComboBox`. The
203
+ * factory must return a single control instance of an input based control to provide custom filter capabilities.
204
+ * This control is then going to be added in the grid layout provided by the `QueryPanel`. Whenever the
205
+ * `FilterPanel#setP13nData` method will be called, the `active` can be used to update the current set of
206
+ * active factory controls.
207
+ *
208
+ * **Note:**: The Panel will not handle the lifecylce of the provided factory control instance, in case
209
+ * the row is going to be removed, the according consumer needs to decide about destroying or keeping the
210
+ * control instance. In addition, the `getIdForLabel` method can be used to return a focusable children
211
+ * control to provide the `labelFor` reference.
212
+ *
213
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
214
+ *
215
+ * @returns Reference to `this` in order to allow method chaining
216
+ */
217
+ setItemFactory(
218
+ /**
219
+ * New value for property `itemFactory`
220
+ */
221
+ fnItemFactory: Function
222
+ ): this;
223
+ /**
224
+ * Sets the personalization state of the panel instance.
225
+ *
226
+ * @returns The FilterPanel instance
227
+ */
228
+ setP13nData(
229
+ /**
230
+ * An array containing the personalization state
231
+ */
232
+ aP13nData: FilterItem[]
233
+ ): this;
234
+ }
235
+
236
+ export interface $FilterPanelSettings
237
+ extends /* was: sap.m.p13n.$QueryPanelSettings */ Object {
238
+ /**
239
+ * A factory function that will be called whenever the user selects a new entry from the `ComboBox`. The
240
+ * factory must return a single control instance of an input based control to provide custom filter capabilities.
241
+ * This control is then going to be added in the grid layout provided by the `QueryPanel`. Whenever the
242
+ * `FilterPanel#setP13nData` method will be called, the `active` can be used to update the current set of
243
+ * active factory controls.
244
+ *
245
+ * **Note:**: The Panel will not handle the lifecylce of the provided factory control instance, in case
246
+ * the row is going to be removed, the according consumer needs to decide about destroying or keeping the
247
+ * control instance. In addition, the `getIdForLabel` method can be used to return a focusable children
248
+ * control to provide the `labelFor` reference.
249
+ */
250
+ itemFactory?: Function | PropertyBindingInfo | `{${string}}`;
251
+ }
252
+ }
253
+
254
+ declare namespace sap {
255
+ interface IUI5DefineDependencyNames {
256
+ "sap/ui/mdc/ActionToolbar": undefined;
257
+
258
+ "sap/ui/mdc/actiontoolbar/ActionToolbarAction": undefined;
259
+
260
+ "sap/ui/mdc/Chart": undefined;
261
+
262
+ "sap/ui/mdc/chart/ChartImplementationContainer": undefined;
263
+
264
+ "sap/ui/mdc/chart/ChartSelectionDetails": undefined;
265
+
266
+ "sap/ui/mdc/chart/Item": undefined;
267
+
268
+ "sap/ui/mdc/chart/SelectionDetailsActions": undefined;
269
+
270
+ "sap/ui/mdc/ChartDelegate": undefined;
271
+
272
+ "sap/ui/mdc/condition/Condition": undefined;
273
+
274
+ "sap/ui/mdc/condition/ConditionConverter": undefined;
275
+
276
+ "sap/ui/mdc/condition/ConditionModel": undefined;
277
+
278
+ "sap/ui/mdc/condition/ConditionModelPropertyBinding": undefined;
279
+
280
+ "sap/ui/mdc/condition/ConditionValidateException": undefined;
281
+
282
+ "sap/ui/mdc/condition/FilterConverter": undefined;
283
+
284
+ "sap/ui/mdc/condition/FilterOperatorUtil": undefined;
285
+
286
+ "sap/ui/mdc/condition/Operator": undefined;
287
+
288
+ "sap/ui/mdc/condition/OperatorDynamicDateOption": undefined;
289
+
290
+ "sap/ui/mdc/condition/RangeOperator": undefined;
291
+
292
+ "sap/ui/mdc/Control": undefined;
293
+
294
+ "sap/ui/mdc/Element": undefined;
295
+
296
+ "sap/ui/mdc/enum/ActionToolbarActionAlignment": undefined;
297
+
298
+ "sap/ui/mdc/enum/BaseType": undefined;
299
+
300
+ "sap/ui/mdc/enum/ConditionValidated": undefined;
301
+
302
+ "sap/ui/mdc/enum/ContentMode": undefined;
303
+
304
+ "sap/ui/mdc/enum/EditMode": undefined;
305
+
306
+ "sap/ui/mdc/enum/FieldDisplay": undefined;
307
+
308
+ "sap/ui/mdc/enum/FilterBarValidationStatus": undefined;
309
+
310
+ "sap/ui/mdc/enum/PersistenceMode": undefined;
311
+
312
+ "sap/ui/mdc/enum/ProcessingStrategy": undefined;
313
+
314
+ "sap/ui/mdc/enum/PropagationReason": undefined;
315
+
316
+ "sap/ui/mdc/enum/ReasonMode": undefined;
317
+
318
+ "sap/ui/mdc/enum/SelectType": undefined;
319
+
320
+ "sap/ui/mdc/Field": undefined;
321
+
322
+ "sap/ui/mdc/field/ConditionsType": undefined;
323
+
324
+ "sap/ui/mdc/field/ConditionType": undefined;
325
+
326
+ "sap/ui/mdc/field/CustomFieldInfo": undefined;
327
+
328
+ "sap/ui/mdc/field/DefineConditionPanel": undefined;
329
+
330
+ "sap/ui/mdc/field/DynamicDateRangeConditionsType": undefined;
331
+
332
+ "sap/ui/mdc/field/FieldBase": undefined;
333
+
334
+ "sap/ui/mdc/field/FieldBaseDelegate": undefined;
335
+
336
+ "sap/ui/mdc/field/FieldInfoBase": undefined;
337
+
338
+ "sap/ui/mdc/field/FieldInput": undefined;
339
+
340
+ "sap/ui/mdc/field/FieldMultiInput": undefined;
341
+
342
+ "sap/ui/mdc/field/ListFieldHelpItem": undefined;
343
+
344
+ "sap/ui/mdc/field/MultiValueFieldDelegate": undefined;
345
+
346
+ "sap/ui/mdc/field/MultiValueFieldItem": undefined;
347
+
348
+ "sap/ui/mdc/field/TokenDisplay": undefined;
349
+
350
+ "sap/ui/mdc/field/TokenizerDisplay": undefined;
351
+
352
+ "sap/ui/mdc/FilterBar": undefined;
353
+
354
+ "sap/ui/mdc/filterbar/aligned/FilterContainer": undefined;
355
+
356
+ "sap/ui/mdc/filterbar/aligned/FilterItemLayout": undefined;
357
+
358
+ "sap/ui/mdc/filterbar/FilterBarBase": undefined;
359
+
360
+ "sap/ui/mdc/filterbar/p13n/AdaptationFilterBar": undefined;
361
+
362
+ "sap/ui/mdc/filterbar/vh/CollectiveSearchSelect": undefined;
363
+
364
+ "sap/ui/mdc/filterbar/vh/FilterBar": undefined;
365
+
366
+ "sap/ui/mdc/filterbar/vh/FilterContainer": undefined;
367
+
368
+ "sap/ui/mdc/FilterBarDelegate": undefined;
369
+
370
+ "sap/ui/mdc/FilterField": undefined;
371
+
372
+ "sap/ui/mdc/library": undefined;
373
+
374
+ "sap/ui/mdc/Link": undefined;
375
+
376
+ "sap/ui/mdc/link/LinkItem": undefined;
377
+
378
+ "sap/ui/mdc/LinkDelegate": undefined;
379
+
380
+ "sap/ui/mdc/mixin/AdaptationMixin": undefined;
381
+
382
+ "sap/ui/mdc/mixin/DelegateMixin": undefined;
383
+
384
+ "sap/ui/mdc/mixin/FilterIntegrationMixin": undefined;
385
+
386
+ "sap/ui/mdc/mixin/PromiseMixin": undefined;
387
+
388
+ "sap/ui/mdc/mixin/PropertyHelperMixin": undefined;
389
+
390
+ "sap/ui/mdc/MultiValueField": undefined;
391
+
392
+ "sap/ui/mdc/odata/TypeUtil": undefined;
393
+
394
+ "sap/ui/mdc/odata/v4/FieldBaseDelegate": undefined;
395
+
396
+ "sap/ui/mdc/odata/v4/TableDelegate": undefined;
397
+
398
+ "sap/ui/mdc/odata/v4/TypeUtil": undefined;
399
+
400
+ "sap/ui/mdc/odata/v4/ValueHelpDelegate": undefined;
401
+
402
+ "sap/ui/mdc/p13n/panels/FilterPanel": undefined;
403
+
404
+ "sap/ui/mdc/p13n/StateUtil": undefined;
405
+
406
+ "sap/ui/mdc/p13n/UIManager": undefined;
407
+
408
+ "sap/ui/mdc/Table": undefined;
409
+
410
+ "sap/ui/mdc/table/Column": undefined;
411
+
412
+ "sap/ui/mdc/table/ColumnSettings": undefined;
413
+
414
+ "sap/ui/mdc/table/CreationRow": undefined;
415
+
416
+ "sap/ui/mdc/table/GridTableType": undefined;
417
+
418
+ "sap/ui/mdc/table/PropertyHelper": undefined;
419
+
420
+ "sap/ui/mdc/table/ResponsiveColumnSettings": undefined;
421
+
422
+ "sap/ui/mdc/table/ResponsiveTableType": undefined;
423
+
424
+ "sap/ui/mdc/table/RowActionItem": undefined;
425
+
426
+ "sap/ui/mdc/table/RowSettings": undefined;
427
+
428
+ "sap/ui/mdc/table/TableTypeBase": undefined;
429
+
430
+ "sap/ui/mdc/table/TreeTableType": undefined;
431
+
432
+ "sap/ui/mdc/table/V4AnalyticsPropertyHelper": undefined;
433
+
434
+ "sap/ui/mdc/TableDelegate": undefined;
435
+
436
+ "sap/ui/mdc/util/DateUtil": undefined;
437
+
438
+ "sap/ui/mdc/util/FilterUtil": undefined;
439
+
440
+ "sap/ui/mdc/util/InfoBar": undefined;
441
+
442
+ "sap/ui/mdc/util/PromiseCache": undefined;
443
+
444
+ "sap/ui/mdc/util/PropertyHelper": undefined;
445
+
446
+ "sap/ui/mdc/util/TypeUtil": undefined;
447
+
448
+ "sap/ui/mdc/ValueHelp": undefined;
449
+
450
+ "sap/ui/mdc/valuehelp/base/Container": undefined;
451
+
452
+ "sap/ui/mdc/valuehelp/base/Content": undefined;
453
+
454
+ "sap/ui/mdc/valuehelp/base/DialogTab": undefined;
455
+
456
+ "sap/ui/mdc/valuehelp/base/FilterableListContent": undefined;
457
+
458
+ "sap/ui/mdc/valuehelp/base/ListContent": undefined;
459
+
460
+ "sap/ui/mdc/valuehelp/content/Bool": undefined;
461
+
462
+ "sap/ui/mdc/valuehelp/content/Conditions": undefined;
463
+
464
+ "sap/ui/mdc/valuehelp/content/FixedList": undefined;
465
+
466
+ "sap/ui/mdc/valuehelp/content/MDCTable": undefined;
467
+
468
+ "sap/ui/mdc/valuehelp/content/MTable": undefined;
469
+
470
+ "sap/ui/mdc/valuehelp/Dialog": undefined;
471
+
472
+ "sap/ui/mdc/valuehelp/Popover": undefined;
473
+
474
+ "sap/ui/mdc/ValueHelpDelegate": undefined;
475
+ }
476
+ }