@sapui5/ts-types-esm 1.136.3 → 1.138.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.
Files changed (70) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +2 -1
  3. package/types/sap.apf.d.ts +30 -3
  4. package/types/sap.ca.ui.d.ts +1 -1
  5. package/types/sap.chart.d.ts +1 -1
  6. package/types/sap.collaboration.d.ts +1 -1
  7. package/types/sap.cux.home.d.ts +315 -65
  8. package/types/sap.esh.search.ui.d.ts +71 -1
  9. package/types/sap.f.d.ts +1 -1
  10. package/types/sap.fe.ariba.d.ts +3 -0
  11. package/types/sap.fe.base.d.ts +1 -1
  12. package/types/sap.fe.controls.d.ts +1 -1
  13. package/types/sap.fe.core.d.ts +50 -8
  14. package/types/sap.fe.ina.d.ts +1 -1
  15. package/types/sap.fe.macros.d.ts +170 -66
  16. package/types/sap.fe.navigation.d.ts +1 -1
  17. package/types/sap.fe.placeholder.d.ts +1 -1
  18. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  19. package/types/sap.fe.templates.d.ts +1 -1
  20. package/types/sap.fe.test.d.ts +4 -3
  21. package/types/sap.fe.tools.d.ts +1 -1
  22. package/types/sap.feedback.ui.d.ts +1 -1
  23. package/types/sap.gantt.d.ts +1 -1
  24. package/types/sap.insights.d.ts +1 -1
  25. package/types/sap.m.d.ts +1251 -564
  26. package/types/sap.makit.d.ts +1 -1
  27. package/types/sap.me.d.ts +1 -1
  28. package/types/sap.ndc.d.ts +1 -1
  29. package/types/sap.ovp.d.ts +1 -1
  30. package/types/sap.rules.ui.d.ts +1 -1
  31. package/types/sap.sac.df.d.ts +34 -1
  32. package/types/sap.suite.ui.commons.d.ts +4 -2
  33. package/types/sap.suite.ui.generic.template.d.ts +1 -1
  34. package/types/sap.suite.ui.microchart.d.ts +1 -1
  35. package/types/sap.tnt.d.ts +103 -16
  36. package/types/sap.ui.codeeditor.d.ts +1 -1
  37. package/types/sap.ui.commons.d.ts +1 -1
  38. package/types/sap.ui.comp.d.ts +67 -9
  39. package/types/sap.ui.core.d.ts +72 -69
  40. package/types/sap.ui.dt.d.ts +1 -1
  41. package/types/sap.ui.export.d.ts +221 -167
  42. package/types/sap.ui.fl.d.ts +3 -7
  43. package/types/sap.ui.generic.app.d.ts +1 -1
  44. package/types/sap.ui.generic.template.d.ts +1 -1
  45. package/types/sap.ui.integration.d.ts +44 -24
  46. package/types/sap.ui.layout.d.ts +1 -1
  47. package/types/{mdc-1.136.0-esm-d.ts → sap.ui.mdc.d.ts} +599 -297
  48. package/types/sap.ui.richtexteditor.d.ts +21 -17
  49. package/types/sap.ui.rta.d.ts +1 -1
  50. package/types/sap.ui.suite.d.ts +1 -1
  51. package/types/sap.ui.support.d.ts +1 -1
  52. package/types/sap.ui.table.d.ts +1 -1
  53. package/types/sap.ui.testrecorder.d.ts +1 -1
  54. package/types/sap.ui.unified.d.ts +9 -1
  55. package/types/sap.ui.ux3.d.ts +1 -1
  56. package/types/sap.ui.vbm.d.ts +75 -30
  57. package/types/sap.ui.vk.d.ts +364 -102
  58. package/types/sap.ui.vtm.d.ts +3 -2
  59. package/types/sap.ui.webc.common.d.ts +1 -1
  60. package/types/sap.ui.webc.fiori.d.ts +1 -1
  61. package/types/sap.ui.webc.main.d.ts +1 -1
  62. package/types/sap.uiext.inbox.d.ts +1 -1
  63. package/types/sap.ushell.d.ts +58 -44
  64. package/types/sap.ushell_abap.d.ts +1 -1
  65. package/types/sap.uxap.d.ts +1 -1
  66. package/types/sap.viz.d.ts +1 -1
  67. package/types/sap.webanalytics.core.d.ts +1 -1
  68. package/types/sap.zen.commons.d.ts +1 -1
  69. package/types/sap.zen.crosstab.d.ts +1 -1
  70. package/types/sap.zen.dsh.d.ts +1 -1
@@ -1,5 +1,34 @@
1
1
  // For Library Version: 0.0.1
2
2
 
3
+ declare module "sap/cux/home/App" {
4
+ import { default as BaseApp, $BaseAppSettings } from "sap/cux/home/BaseApp";
5
+
6
+ /**
7
+ * App class for managing and storing Apps.
8
+ *
9
+ * @since 1.121.0
10
+ */
11
+ export default class App extends BaseApp {
12
+ /**
13
+ * Constructor for a new App.
14
+ */
15
+ constructor(
16
+ /**
17
+ * ID for the new app, generated automatically if an ID is not provided
18
+ */
19
+ id?: string,
20
+ /**
21
+ * Initial settings for the new app
22
+ */
23
+ settings?: /* was: sap.cux.home.App.$AppSettings */ any
24
+ );
25
+ }
26
+ /**
27
+ * Describes the settings that can be provided to the App constructor.
28
+ */
29
+ export interface $AppSettings extends $BaseAppSettings {}
30
+ }
31
+
3
32
  declare module "sap/cux/home/AppsContainer" {
4
33
  import {
5
34
  default as BaseContainer,
@@ -10,7 +39,6 @@ declare module "sap/cux/home/AppsContainer" {
10
39
  * Container class for managing and storing apps.
11
40
  *
12
41
  * @since 1.121
13
- * @experimental As of version 1.121.
14
42
  */
15
43
  export default class AppsContainer extends BaseContainer {
16
44
  /**
@@ -29,12 +57,39 @@ declare module "sap/cux/home/AppsContainer" {
29
57
  }
30
58
  /**
31
59
  * Describes the settings that can be provided to the AppsContainer constructor.
32
- *
33
- * @experimental As of version 1.121.
34
60
  */
35
61
  export interface $AppsContainerSettings extends $BaseContainerSettings {}
36
62
  }
37
63
 
64
+ declare module "sap/cux/home/BaseApp" {
65
+ import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
66
+
67
+ /**
68
+ * Base App class for managing and storing Apps.
69
+ *
70
+ * @since 1.121.0
71
+ */
72
+ export default abstract class BaseApp extends UI5Element {
73
+ /**
74
+ * Constructor for a new Base App.
75
+ */
76
+ constructor(
77
+ /**
78
+ * ID for the new app, generated automatically if an ID is not provided
79
+ */
80
+ id?: string,
81
+ /**
82
+ * Initial settings for the new app
83
+ */
84
+ settings?: /* was: sap.cux.home.BaseApp.$BaseAppSettings */ any
85
+ );
86
+ }
87
+ /**
88
+ * Describes the settings that can be provided to the BaseApp constructor.
89
+ */
90
+ export interface $BaseAppSettings extends $ElementSettings {}
91
+ }
92
+
38
93
  declare module "sap/cux/home/BaseContainer" {
39
94
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
40
95
 
@@ -55,7 +110,6 @@ declare module "sap/cux/home/BaseContainer" {
55
110
  * Abstract base class for all container controls in the Home Page Layout.
56
111
  *
57
112
  * @since 1.121
58
- * @experimental As of version 1.121.
59
113
  */
60
114
  export default abstract class BaseContainer extends Control {
61
115
  /**
@@ -103,8 +157,6 @@ declare module "sap/cux/home/BaseContainer" {
103
157
  }
104
158
  /**
105
159
  * Describes the settings that can be provided to the BaseContainer constructor.
106
- *
107
- * @experimental As of version 1.121.
108
160
  */
109
161
  export interface $BaseContainerSettings extends $ControlSettings {
110
162
  /**
@@ -143,7 +195,6 @@ declare module "sap/cux/home/BaseLayout" {
143
195
  * Abstract base class for My Home layout.
144
196
  *
145
197
  * @since 1.121
146
- * @experimental As of version 1.121.
147
198
  */
148
199
  export default abstract class BaseLayout extends Page {
149
200
  /**
@@ -191,8 +242,6 @@ declare module "sap/cux/home/BaseLayout" {
191
242
  }
192
243
  /**
193
244
  * Describes the settings that can be provided to the BaseLayout constructor.
194
- *
195
- * @experimental As of version 1.121.
196
245
  */
197
246
  export interface $BaseLayoutSettings extends $PageSettings {
198
247
  /**
@@ -204,6 +253,99 @@ declare module "sap/cux/home/BaseLayout" {
204
253
  }
205
254
  }
206
255
 
256
+ declare module "sap/cux/home/BaseNewsItem" {
257
+ import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
258
+
259
+ /**
260
+ * Base class for managing and storing News items.
261
+ *
262
+ * @since 1.121
263
+ */
264
+ export default class BaseNewsItem extends UI5Element {
265
+ /**
266
+ * Constructor for a new Base News Item.
267
+ */
268
+ constructor(
269
+ /**
270
+ * ID for the new base news item, generated automatically if an ID is not provided
271
+ */
272
+ id?: string,
273
+ /**
274
+ * Initial settings for the new base news item
275
+ */
276
+ settings?: /* was: sap.cux.home.BaseNewsItem.$BaseNewsItemSettings */ any
277
+ );
278
+ }
279
+ /**
280
+ * Describes the settings that can be provided to the BaseNewsItem constructor.
281
+ */
282
+ export interface $BaseNewsItemSettings extends $ElementSettings {}
283
+ }
284
+
285
+ declare module "sap/cux/home/BaseNewsPanel" {
286
+ import {
287
+ default as BasePanel,
288
+ $BasePanelSettings,
289
+ } from "sap/cux/home/BasePanel";
290
+
291
+ /**
292
+ * Base Panel class for managing and storing News.
293
+ *
294
+ * @since 1.121
295
+ */
296
+ export default abstract class BaseNewsPanel extends BasePanel {
297
+ /**
298
+ * Constructor for a new Base News Panel.
299
+ */
300
+ constructor(
301
+ /**
302
+ * ID for the new panel, generated automatically if an ID is not provided
303
+ */
304
+ id?: string,
305
+ /**
306
+ * Initial settings for the new panel
307
+ */
308
+ settings?: /* was: sap.cux.home.BaseNewsPanel.$BaseNewsPanelSettings */ any
309
+ );
310
+ }
311
+ /**
312
+ * Describes the settings that can be provided to the BaseNewsPanel constructor.
313
+ */
314
+ export interface $BaseNewsPanelSettings extends $BasePanelSettings {}
315
+ }
316
+
317
+ declare module "sap/cux/home/BasePagePanel" {
318
+ import {
319
+ default as BasePanel,
320
+ $BasePanelSettings,
321
+ } from "sap/cux/home/BasePanel";
322
+
323
+ /**
324
+ * Base Panel class for managing and storing Pages.
325
+ *
326
+ * @since 1.121
327
+ */
328
+ export default abstract class BasePagePanel extends BasePanel {
329
+ /**
330
+ * Constructor for a new Base Page Panel.
331
+ */
332
+ constructor(
333
+ /**
334
+ * ID for the new panel, generated automatically if an ID is not provided
335
+ */
336
+ id?: string,
337
+ /**
338
+ * Initial settings for the new panel
339
+ */
340
+ settings?: /* was: sap.cux.home.BasePagePanel.$BasePagePanelSettings */ any
341
+ );
342
+ }
343
+ /**
344
+ * Describes the settings that can be provided to the BasePagePanel constructor.
345
+ */
346
+ export interface $BasePagePanelSettings extends $BasePanelSettings {}
347
+ }
348
+
207
349
  declare module "sap/cux/home/BasePanel" {
208
350
  import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
209
351
 
@@ -211,7 +353,6 @@ declare module "sap/cux/home/BasePanel" {
211
353
  * Abstract base class for all panels placed in {@link sap.cux.home.BaseContainer }.
212
354
  *
213
355
  * @since 1.121
214
- * @experimental As of version 1.121.
215
356
  */
216
357
  export default abstract class BasePanel extends UI5Element {
217
358
  /**
@@ -230,8 +371,6 @@ declare module "sap/cux/home/BasePanel" {
230
371
  }
231
372
  /**
232
373
  * Describes the settings that can be provided to the BasePanel constructor.
233
- *
234
- * @experimental As of version 1.121.
235
374
  */
236
375
  export interface $BasePanelSettings extends $ElementSettings {}
237
376
  }
@@ -245,7 +384,6 @@ declare module "sap/cux/home/BaseSettingsDialog" {
245
384
  * Abstract base class for custom settings dialog for {@link sap.cux.home.BaseLayout }.
246
385
  *
247
386
  * @since 1.121
248
- * @experimental As of version 1.121.
249
387
  */
250
388
  export default abstract class BaseSettingsDialog extends Dialog {
251
389
  /**
@@ -338,8 +476,6 @@ declare module "sap/cux/home/BaseSettingsDialog" {
338
476
  }
339
477
  /**
340
478
  * Describes the settings that can be provided to the BaseSettingsDialog constructor.
341
- *
342
- * @experimental As of version 1.121.
343
479
  */
344
480
  export interface $BaseSettingsDialogSettings extends $DialogSettings {}
345
481
  }
@@ -353,7 +489,6 @@ declare module "sap/cux/home/BaseSettingsPanel" {
353
489
  * Abstract base class for panels inside My Home Settings Dialog.
354
490
  *
355
491
  * @since 1.121
356
- * @experimental As of version 1.121.
357
492
  */
358
493
  export default abstract class BaseSettingsPanel extends UI5Element {
359
494
  /**
@@ -443,8 +578,6 @@ declare module "sap/cux/home/BaseSettingsPanel" {
443
578
  }
444
579
  /**
445
580
  * Describes the settings that can be provided to the BaseSettingsPanel constructor.
446
- *
447
- * @experimental As of version 1.121.
448
581
  */
449
582
  export interface $BaseSettingsPanelSettings extends $ElementSettings {}
450
583
  }
@@ -459,7 +592,6 @@ declare module "sap/cux/home/CardsPanel" {
459
592
  * Panel class for managing and storing Insights Cards.
460
593
  *
461
594
  * @since 1.122.0
462
- * @experimental As of version 1.122.0.
463
595
  */
464
596
  export default class CardsPanel extends BasePanel {
465
597
  /**
@@ -489,18 +621,47 @@ declare module "sap/cux/home/CardsPanel" {
489
621
  }
490
622
  /**
491
623
  * Describes the settings that can be provided to the CardsPanel constructor.
492
- *
493
- * @experimental As of version 1.122.0.
494
624
  */
495
625
  export interface $CardsPanelSettings extends $BasePanelSettings {}
496
626
  }
497
627
 
628
+ declare module "sap/cux/home/ErrorPanel" {
629
+ import {
630
+ default as BasePanel,
631
+ $BasePanelSettings,
632
+ } from "sap/cux/home/BasePanel";
633
+
634
+ /**
635
+ * Panel class for displaying Error Message.
636
+ *
637
+ * @since 1.122.0
638
+ */
639
+ export default class ErrorPanel extends BasePanel {
640
+ /**
641
+ * Constructor for a new Error Panel.
642
+ */
643
+ constructor(
644
+ /**
645
+ * ID for the new panel, generated automatically if an ID is not provided
646
+ */
647
+ id?: string,
648
+ /**
649
+ * Initial settings for the new panel
650
+ */
651
+ settings?: /* was: sap.cux.home.ErrorPanel.$ErrorPanelSettings */ any
652
+ );
653
+ }
654
+ /**
655
+ * Describes the settings that can be provided to the ErrorPanel constructor.
656
+ */
657
+ export interface $ErrorPanelSettings extends $BasePanelSettings {}
658
+ }
659
+
498
660
  declare module "sap/cux/home/FavAppPanel" {
499
661
  /**
500
662
  * Provides the FavAppPanel Class.
501
663
  *
502
664
  * @since 1.121.0
503
- * @experimental As of version 1.121.0.
504
665
  */
505
666
  export default class FavAppPanel
506
667
  extends /* was: sap.cux.home.BaseAppPersPanel */ Object
@@ -526,7 +687,6 @@ declare module "sap/cux/home/FrequentAppPanel" {
526
687
  * Provides the class for managing frequent apps.
527
688
  *
528
689
  * @since 1.121.0
529
- * @experimental As of version 1.121.0.
530
690
  */
531
691
  export default class FrequentAppPanel
532
692
  extends /* was: sap.cux.home.BaseAppPersPanel */ Object
@@ -547,6 +707,35 @@ declare module "sap/cux/home/FrequentAppPanel" {
547
707
  }
548
708
  }
549
709
 
710
+ declare module "sap/cux/home/Group" {
711
+ import { default as BaseApp, $BaseAppSettings } from "sap/cux/home/BaseApp";
712
+
713
+ /**
714
+ * Class for managing apps group.
715
+ *
716
+ * @since 1.121.0
717
+ */
718
+ export default class Group extends BaseApp {
719
+ /**
720
+ * Constructor for a new Group.
721
+ */
722
+ constructor(
723
+ /**
724
+ * ID for the new group, generated automatically if an ID is not provided
725
+ */
726
+ id?: string,
727
+ /**
728
+ * Initial settings for the new group
729
+ */
730
+ settings?: /* was: sap.cux.home.Group.$GroupSettings */ any
731
+ );
732
+ }
733
+ /**
734
+ * Describes the settings that can be provided to the Group constructor.
735
+ */
736
+ export interface $GroupSettings extends $BaseAppSettings {}
737
+ }
738
+
550
739
  declare module "sap/cux/home/InsightsContainer" {
551
740
  import {
552
741
  default as BaseContainer,
@@ -557,7 +746,6 @@ declare module "sap/cux/home/InsightsContainer" {
557
746
  * Container class for managing and storing Insights Tiles and Insights Cards.
558
747
  *
559
748
  * @since 1.121
560
- * @experimental As of version 1.121.
561
749
  */
562
750
  export default class InsightsContainer extends BaseContainer {
563
751
  /**
@@ -576,8 +764,6 @@ declare module "sap/cux/home/InsightsContainer" {
576
764
  }
577
765
  /**
578
766
  * Describes the settings that can be provided to the InsightsContainer constructor.
579
- *
580
- * @experimental As of version 1.121.
581
767
  */
582
768
  export interface $InsightsContainerSettings extends $BaseContainerSettings {}
583
769
  }
@@ -591,7 +777,6 @@ declare module "sap/cux/home/IToDoPanel" {
591
777
  * Common Interface for creating To-Do Panels displayed in the {@link sap.cux.home.ToDosContainer }.
592
778
  *
593
779
  * @since 1.121
594
- * @experimental As of version 1.121.
595
780
  */
596
781
  export interface IToDoPanel {
597
782
  __implements__sap_cux_home_IToDoPanel: boolean;
@@ -663,7 +848,6 @@ declare module "sap/cux/home/Layout" {
663
848
  * Layout class for the My Home layout.
664
849
  *
665
850
  * @since 1.121
666
- * @experimental As of version 1.121.
667
851
  */
668
852
  export default class Layout extends BaseLayout {
669
853
  /**
@@ -682,8 +866,6 @@ declare module "sap/cux/home/Layout" {
682
866
  }
683
867
  /**
684
868
  * Describes the settings that can be provided to the Layout constructor.
685
- *
686
- * @experimental As of version 1.121.
687
869
  */
688
870
  export interface $LayoutSettings extends $BaseLayoutSettings {}
689
871
  }
@@ -693,7 +875,6 @@ declare module "sap/cux/home/library" {
693
875
  * Supported News Types for {@link sap.cux.home.NewsPanel }.
694
876
  *
695
877
  * @since 1.121
696
- * @experimental As of version 1.121.
697
878
  */
698
879
  export enum NewsType {
699
880
  /**
@@ -724,7 +905,6 @@ declare module "sap/cux/home/MenuItem" {
724
905
  * Class for managing and storing menu items.
725
906
  *
726
907
  * @since 1.121
727
- * @experimental As of version 1.121.
728
908
  */
729
909
  export default class MenuItem extends UI5Element {
730
910
  /**
@@ -800,8 +980,6 @@ declare module "sap/cux/home/MenuItem" {
800
980
  }
801
981
  /**
802
982
  * Describes the settings that can be provided to the MenuItem constructor.
803
- *
804
- * @experimental As of version 1.121.
805
983
  */
806
984
  export interface $MenuItemSettings extends $ElementSettings {
807
985
  /**
@@ -849,7 +1027,6 @@ declare module "sap/cux/home/NewsAndPagesContainer" {
849
1027
  * Container class for managing and storing News and Pages.
850
1028
  *
851
1029
  * @since 1.121
852
- * @experimental As of version 1.121.
853
1030
  */
854
1031
  export default class NewsAndPagesContainer extends BaseContainer {
855
1032
  /**
@@ -868,25 +1045,27 @@ declare module "sap/cux/home/NewsAndPagesContainer" {
868
1045
  }
869
1046
  /**
870
1047
  * Describes the settings that can be provided to the NewsAndPagesContainer constructor.
871
- *
872
- * @experimental As of version 1.121.
873
1048
  */
874
1049
  export interface $NewsAndPagesContainerSettings
875
1050
  extends $BaseContainerSettings {}
876
1051
  }
877
1052
 
878
1053
  declare module "sap/cux/home/NewsPanel" {
1054
+ import {
1055
+ default as BaseNewsPanel,
1056
+ $BaseNewsPanelSettings,
1057
+ } from "sap/cux/home/BaseNewsPanel";
1058
+
879
1059
  import { NewsType } from "sap/cux/home/library";
880
1060
 
1061
+ import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
1062
+
881
1063
  /**
882
1064
  * Panel class for managing and storing News.
883
1065
  *
884
1066
  * @since 1.121
885
- * @experimental As of version 1.121.
886
1067
  */
887
- export default class NewsPanel
888
- extends /* was: sap.cux.home.BaseNewsPanel */ Object
889
- {
1068
+ export default class NewsPanel extends BaseNewsPanel {
890
1069
  /**
891
1070
  * Constructor for a new News Panel.
892
1071
  */
@@ -930,6 +1109,20 @@ declare module "sap/cux/home/NewsPanel" {
930
1109
  */
931
1110
  setUrl(): string;
932
1111
  }
1112
+ /**
1113
+ * Describes the settings that can be provided to the NewsPanel constructor.
1114
+ */
1115
+ export interface $NewsPanelSettings extends $BaseNewsPanelSettings {
1116
+ /**
1117
+ * Type of the news item.
1118
+ */
1119
+ type?: NewsType | PropertyBindingInfo | `{${string}}`;
1120
+
1121
+ /**
1122
+ * The URL of the news item.
1123
+ */
1124
+ url?: string | PropertyBindingInfo;
1125
+ }
933
1126
  }
934
1127
 
935
1128
  declare module "sap/cux/home/NoDataContainer" {
@@ -942,7 +1135,6 @@ declare module "sap/cux/home/NoDataContainer" {
942
1135
  * Container class to show no data content.
943
1136
  *
944
1137
  * @since 1.121
945
- * @experimental As of version 1.121.
946
1138
  */
947
1139
  export default class NoDataContainer extends BaseContainer {
948
1140
  /**
@@ -961,22 +1153,22 @@ declare module "sap/cux/home/NoDataContainer" {
961
1153
  }
962
1154
  /**
963
1155
  * Describes the settings that can be provided to the NoDataContainer constructor.
964
- *
965
- * @experimental As of version 1.121.
966
1156
  */
967
1157
  export interface $NoDataContainerSettings extends $BaseContainerSettings {}
968
1158
  }
969
1159
 
970
1160
  declare module "sap/cux/home/PagePanel" {
1161
+ import {
1162
+ default as BasePagePanel,
1163
+ $BasePagePanelSettings,
1164
+ } from "sap/cux/home/BasePagePanel";
1165
+
971
1166
  /**
972
1167
  * Panel class for managing and storing Pages.
973
1168
  *
974
1169
  * @since 1.122
975
- * @experimental As of version 1.122.
976
1170
  */
977
- export default class PagePanel
978
- extends /* was: sap.cux.home.BasePagePanel */ Object
979
- {
1171
+ export default class PagePanel extends BasePagePanel {
980
1172
  /**
981
1173
  * Constructor for a new Page panel.
982
1174
  */
@@ -991,6 +1183,10 @@ declare module "sap/cux/home/PagePanel" {
991
1183
  settings?: /* was: sap.cux.home.BasePagePanel.$BasePagePanelSettings */ any
992
1184
  );
993
1185
  }
1186
+ /**
1187
+ * Describes the settings that can be provided to the PagePanel constructor.
1188
+ */
1189
+ export interface $PagePanelSettings extends $BasePagePanelSettings {}
994
1190
  }
995
1191
 
996
1192
  declare module "sap/cux/home/RecentAppPanel" {
@@ -998,7 +1194,6 @@ declare module "sap/cux/home/RecentAppPanel" {
998
1194
  * Provides class for managing Recently Used apps.
999
1195
  *
1000
1196
  * @since 1.121.0
1001
- * @experimental As of version 1.121.0.
1002
1197
  */
1003
1198
  export default class RecentAppPanel
1004
1199
  extends /* was: sap.cux.home.BaseAppPersPanel */ Object
@@ -1024,7 +1219,6 @@ declare module "sap/cux/home/RecommendedAppPanel" {
1024
1219
  * Provides the RecommendedAppPanel Class.
1025
1220
  *
1026
1221
  * @since 1.128.0
1027
- * @experimental As of version 1.128.0.
1028
1222
  */
1029
1223
  export default class RecommendedAppPanel
1030
1224
  extends /* was: sap.cux.home.BaseAppPersPanel */ Object
@@ -1055,7 +1249,6 @@ declare module "sap/cux/home/SituationPanel" {
1055
1249
  * Panel class for managing and storing Situation cards.
1056
1250
  *
1057
1251
  * @since 1.121
1058
- * @experimental As of version 1.121.
1059
1252
  */
1060
1253
  export default class SituationPanel extends ToDoPanel {
1061
1254
  /**
@@ -1074,12 +1267,63 @@ declare module "sap/cux/home/SituationPanel" {
1074
1267
  }
1075
1268
  /**
1076
1269
  * Describes the settings that can be provided to the SituationPanel constructor.
1077
- *
1078
- * @experimental As of version 1.121.
1079
1270
  */
1080
1271
  export interface $SituationPanelSettings extends $ToDoPanelSettings {}
1081
1272
  }
1082
1273
 
1274
+ declare module "sap/cux/home/SpaceInsightsPanel" {
1275
+ import {
1276
+ default as BasePanel,
1277
+ $BasePanelSettings,
1278
+ } from "sap/cux/home/BasePanel";
1279
+
1280
+ /**
1281
+ * Tiles Panel class for managing and storing Space Insights Tiles.
1282
+ */
1283
+ export default class SpaceInsightsPanel extends BasePanel {
1284
+ /**
1285
+ * Constructor for a new Tiles Panel.
1286
+ */
1287
+ constructor(
1288
+ /**
1289
+ * ID for the new control, generated automatically if an ID is not provided
1290
+ */
1291
+ id?: string,
1292
+ /**
1293
+ * Initial settings for the new control
1294
+ */
1295
+ settings?: /* was: sap.cux.home.SpaceInsightsPanel.$SpaceInsightsPanelSettings */ any
1296
+ );
1297
+ }
1298
+ /**
1299
+ * Describes the settings that can be provided to the SpaceInsightsPanel constructor.
1300
+ */
1301
+ export interface $SpaceInsightsPanelSettings extends $BasePanelSettings {}
1302
+ }
1303
+
1304
+ declare module "sap/cux/home/SpacePanel" {
1305
+ /**
1306
+ * Provides the SpacePanel Class.
1307
+ */
1308
+ export default class SpacePanel
1309
+ extends /* was: sap.cux.home.BaseAppPersPanel */ Object
1310
+ {
1311
+ /**
1312
+ * Constructor for a new favorite app panel.
1313
+ */
1314
+ constructor(
1315
+ /**
1316
+ * ID for the new control, generated automatically if an ID is not provided
1317
+ */
1318
+ id?: string,
1319
+ /**
1320
+ * Initial settings for the new control
1321
+ */
1322
+ settings?: /* was: sap.cux.home.SpacePanel.$SpacePanelSettings */ any
1323
+ );
1324
+ }
1325
+ }
1326
+
1083
1327
  declare module "sap/cux/home/TaskPanel" {
1084
1328
  import {
1085
1329
  default as ToDoPanel,
@@ -1092,7 +1336,6 @@ declare module "sap/cux/home/TaskPanel" {
1092
1336
  * Panel class for managing and storing Task cards.
1093
1337
  *
1094
1338
  * @since 1.121
1095
- * @experimental As of version 1.121.
1096
1339
  */
1097
1340
  export default class TaskPanel extends ToDoPanel {
1098
1341
  /**
@@ -1140,8 +1383,6 @@ declare module "sap/cux/home/TaskPanel" {
1140
1383
  }
1141
1384
  /**
1142
1385
  * Describes the settings that can be provided to the TaskPanel constructor.
1143
- *
1144
- * @experimental As of version 1.121.
1145
1386
  */
1146
1387
  export interface $TaskPanelSettings extends $ToDoPanelSettings {
1147
1388
  /**
@@ -1166,7 +1407,6 @@ declare module "sap/cux/home/TilesPanel" {
1166
1407
  * Tiles Panel class for managing and storing Insights Tiles.
1167
1408
  *
1168
1409
  * @since 1.122.0
1169
- * @experimental As of version 1.122.0.
1170
1410
  */
1171
1411
  export default class TilesPanel extends BasePanel {
1172
1412
  /**
@@ -1185,8 +1425,6 @@ declare module "sap/cux/home/TilesPanel" {
1185
1425
  }
1186
1426
  /**
1187
1427
  * Describes the settings that can be provided to the TilesPanel constructor.
1188
- *
1189
- * @experimental As of version 1.122.0.
1190
1428
  */
1191
1429
  export interface $TilesPanelSettings extends $BasePanelSettings {}
1192
1430
  }
@@ -1209,7 +1447,6 @@ declare module "sap/cux/home/ToDoPanel" {
1209
1447
  * Abstract Panel class for managing and storing To-Do cards.
1210
1448
  *
1211
1449
  * @since 1.121
1212
- * @experimental As of version 1.121.
1213
1450
  */
1214
1451
  export default abstract class ToDoPanel
1215
1452
  extends BasePanel
@@ -1339,8 +1576,6 @@ declare module "sap/cux/home/ToDoPanel" {
1339
1576
  }
1340
1577
  /**
1341
1578
  * Describes the settings that can be provided to the ToDoPanel constructor.
1342
- *
1343
- * @experimental As of version 1.121.
1344
1579
  */
1345
1580
  export interface $ToDoPanelSettings extends $BasePanelSettings {
1346
1581
  /**
@@ -1375,7 +1610,6 @@ declare module "sap/cux/home/ToDosContainer" {
1375
1610
  * Container class for managing and storing To-Do cards.
1376
1611
  *
1377
1612
  * @since 1.121
1378
- * @experimental As of version 1.121.
1379
1613
  */
1380
1614
  export default class ToDosContainer extends BaseContainer {
1381
1615
  /**
@@ -1419,20 +1653,28 @@ declare module "sap/cux/home/ToDosContainer" {
1419
1653
  }
1420
1654
  /**
1421
1655
  * Describes the settings that can be provided to the ToDosContainer constructor.
1422
- *
1423
- * @experimental As of version 1.121.
1424
1656
  */
1425
1657
  export interface $ToDosContainerSettings extends $BaseContainerSettings {}
1426
1658
  }
1427
1659
 
1428
1660
  declare namespace sap {
1429
1661
  interface IUI5DefineDependencyNames {
1662
+ "sap/cux/home/App": undefined;
1663
+
1430
1664
  "sap/cux/home/AppsContainer": undefined;
1431
1665
 
1666
+ "sap/cux/home/BaseApp": undefined;
1667
+
1432
1668
  "sap/cux/home/BaseContainer": undefined;
1433
1669
 
1434
1670
  "sap/cux/home/BaseLayout": undefined;
1435
1671
 
1672
+ "sap/cux/home/BaseNewsItem": undefined;
1673
+
1674
+ "sap/cux/home/BaseNewsPanel": undefined;
1675
+
1676
+ "sap/cux/home/BasePagePanel": undefined;
1677
+
1436
1678
  "sap/cux/home/BasePanel": undefined;
1437
1679
 
1438
1680
  "sap/cux/home/BaseSettingsDialog": undefined;
@@ -1441,10 +1683,14 @@ declare namespace sap {
1441
1683
 
1442
1684
  "sap/cux/home/CardsPanel": undefined;
1443
1685
 
1686
+ "sap/cux/home/ErrorPanel": undefined;
1687
+
1444
1688
  "sap/cux/home/FavAppPanel": undefined;
1445
1689
 
1446
1690
  "sap/cux/home/FrequentAppPanel": undefined;
1447
1691
 
1692
+ "sap/cux/home/Group": undefined;
1693
+
1448
1694
  "sap/cux/home/InsightsContainer": undefined;
1449
1695
 
1450
1696
  "sap/cux/home/IToDoPanel": undefined;
@@ -1469,6 +1715,10 @@ declare namespace sap {
1469
1715
 
1470
1716
  "sap/cux/home/SituationPanel": undefined;
1471
1717
 
1718
+ "sap/cux/home/SpaceInsightsPanel": undefined;
1719
+
1720
+ "sap/cux/home/SpacePanel": undefined;
1721
+
1472
1722
  "sap/cux/home/TaskPanel": undefined;
1473
1723
 
1474
1724
  "sap/cux/home/TilesPanel": undefined;