@openui5/ts-types-esm 1.92.0 → 1.95.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.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.92.0
1
+ // For Library Version: 1.95.0
2
2
 
3
3
  declare module "sap/ui/webc/fiori/library" {
4
4
  /**
@@ -98,6 +98,58 @@ declare module "sap/ui/webc/fiori/library" {
98
98
  */
99
99
  TwoColumnsStartExpanded = "TwoColumnsStartExpanded",
100
100
  }
101
+ /**
102
+ * @SINCE 1.92.0
103
+ * @EXPERIMENTAL (since 1.92.0)
104
+ *
105
+ * Different illustration types of Illustrated Message.
106
+ */
107
+ export enum IllustrationMessageType {
108
+ /**
109
+ * "BeforeSearch" illustration type.
110
+ */
111
+ BeforeSearch = "BeforeSearch",
112
+ /**
113
+ * "NoActivities" illustration type.
114
+ */
115
+ NoActivities = "NoActivities",
116
+ /**
117
+ * "NoData" illustration type.
118
+ */
119
+ NoData = "NoData",
120
+ /**
121
+ * "NoEntries" illustration type.
122
+ */
123
+ NoEntries = "NoEntries",
124
+ /**
125
+ * "NoMail" illustration type.
126
+ */
127
+ NoMail = "NoMail",
128
+ /**
129
+ * "NoNotifications" illustration type.
130
+ */
131
+ NoNotifications = "NoNotifications",
132
+ /**
133
+ * "NoSavedItems" illustration type.
134
+ */
135
+ NoSavedItems = "NoSavedItems",
136
+ /**
137
+ * "NoSearchResults" illustration type.
138
+ */
139
+ NoSearchResults = "NoSearchResults",
140
+ /**
141
+ * "NoTasks" illustration type.
142
+ */
143
+ NoTasks = "NoTasks",
144
+ /**
145
+ * "UnableToLoad" illustration type.
146
+ */
147
+ UnableToLoad = "UnableToLoad",
148
+ /**
149
+ * "UnableToUpload" illustration type.
150
+ */
151
+ UnableToUpload = "UnableToUpload",
152
+ }
101
153
  /**
102
154
  * @SINCE 1.92.0
103
155
  * @EXPERIMENTAL (since 1.92.0)
@@ -208,6 +260,22 @@ declare module "sap/ui/webc/fiori/library" {
208
260
  */
209
261
  Transparent = "Transparent",
210
262
  }
263
+ /**
264
+ * @SINCE 1.92.0
265
+ * @EXPERIMENTAL (since 1.92.0)
266
+ *
267
+ * Different types of Timeline.
268
+ */
269
+ export enum TimelineLayout {
270
+ /**
271
+ * Horizontal layout
272
+ */
273
+ Horizontal = "Horizontal",
274
+ /**
275
+ * Vertical layout Default type
276
+ */
277
+ Vertical = "Vertical",
278
+ }
211
279
  /**
212
280
  * @SINCE 1.92.0
213
281
  * @EXPERIMENTAL (since 1.92.0)
@@ -259,16 +327,23 @@ declare module "sap/ui/webc/fiori/Bar" {
259
327
  *
260
328
  * Overview: The Bar is a container which is primarily used to hold titles, buttons and input elements and
261
329
  * its design and functionality is the basis for page headers and footers. The component consists of three
262
- * areas to hold its content - startContent, middleContent and endContent. It has the capability to center
263
- * content, such as a title, while having other components on the left and right side.
330
+ * areas to hold its content - startContent slot, default slot and endContent slot. It has the capability
331
+ * to center content, such as a title, while having other components on the left and right side.
264
332
  *
265
333
  * Usage: With the use of the design property, you can set the style of the Bar to appear designed like
266
334
  * a Header, Subheader, Footer and FloatingFooter.
267
335
  * **Note:** Do not place a Bar inside another Bar or inside any bar-like component. Doing so may cause
268
336
  * unpredictable behavior.
269
337
  *
270
- * Responsive Behavior: The middleContent will be centered in the available space between the startContent
338
+ * Responsive Behavior: The default slot will be centered in the available space between the startContent
271
339
  * and the endContent areas, therefore it might not always be centered in the entire bar.
340
+ *
341
+ * CSS Shadow Parts:
342
+ *
343
+ * CSS Shadow Parts
344
+ * allow developers to style elements inside the Shadow DOM.
345
+ * The `sap.ui.webc.fiori.Bar` exposes the following CSS Shadow Parts:
346
+ * - bar - Used to style the wrapper of the content of the component
272
347
  */
273
348
  export default class Bar extends WebComponent {
274
349
  /**
@@ -303,22 +378,47 @@ declare module "sap/ui/webc/fiori/Bar" {
303
378
  );
304
379
 
305
380
  /**
306
- * Adds some endContent to the aggregation {@link #getEndContent endContent}.
381
+ * Creates a new subclass of class sap.ui.webc.fiori.Bar with name `sClassName` and enriches it with the
382
+ * information contained in `oClassInfo`.
383
+ *
384
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
307
385
  */
308
- addEndContent(
386
+ static extend<T extends Record<string, unknown>>(
309
387
  /**
310
- * The endContent to add; if empty, nothing is inserted
388
+ * Name of the class being created
311
389
  */
312
- oEndContent: Control
390
+ sClassName: string,
391
+ /**
392
+ * Object literal with information about the class
393
+ */
394
+ oClassInfo?: sap.ClassInfo<T, Bar>,
395
+ /**
396
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
397
+ * used by this class
398
+ */
399
+ FNMetaImpl?: Function
400
+ ): Function;
401
+ /**
402
+ * Returns a metadata object for class sap.ui.webc.fiori.Bar.
403
+ */
404
+ static getMetadata(): WebComponentMetadata;
405
+ /**
406
+ * Adds some content to the aggregation {@link #getContent content}.
407
+ */
408
+ addContent(
409
+ /**
410
+ * The content to add; if empty, nothing is inserted
411
+ */
412
+ oContent: Control
313
413
  ): this;
314
414
  /**
315
- * Adds some middleContent to the aggregation {@link #getMiddleContent middleContent}.
415
+ * Adds some endContent to the aggregation {@link #getEndContent endContent}.
316
416
  */
317
- addMiddleContent(
417
+ addEndContent(
318
418
  /**
319
- * The middleContent to add; if empty, nothing is inserted
419
+ * The endContent to add; if empty, nothing is inserted
320
420
  */
321
- oMiddleContent: Control
421
+ oEndContent: Control
322
422
  ): this;
323
423
  /**
324
424
  * Adds some startContent to the aggregation {@link #getStartContent startContent}.
@@ -330,38 +430,23 @@ declare module "sap/ui/webc/fiori/Bar" {
330
430
  oStartContent: Control
331
431
  ): this;
332
432
  /**
333
- * Destroys all the endContent in the aggregation {@link #getEndContent endContent}.
433
+ * Destroys all the content in the aggregation {@link #getContent content}.
334
434
  */
335
- destroyEndContent(): this;
435
+ destroyContent(): this;
336
436
  /**
337
- * Destroys all the middleContent in the aggregation {@link #getMiddleContent middleContent}.
437
+ * Destroys all the endContent in the aggregation {@link #getEndContent endContent}.
338
438
  */
339
- destroyMiddleContent(): this;
439
+ destroyEndContent(): this;
340
440
  /**
341
441
  * Destroys all the startContent in the aggregation {@link #getStartContent startContent}.
342
442
  */
343
443
  destroyStartContent(): this;
344
444
  /**
345
- * Creates a new subclass of class sap.ui.webc.fiori.Bar with name `sClassName` and enriches it with the
346
- * information contained in `oClassInfo`.
445
+ * Gets content of aggregation {@link #getContent content}.
347
446
  *
348
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
447
+ * Defines the content in the middle of the bar
349
448
  */
350
- static extend<T extends Record<string, unknown>>(
351
- /**
352
- * Name of the class being created
353
- */
354
- sClassName: string,
355
- /**
356
- * Object literal with information about the class
357
- */
358
- oClassInfo?: sap.ClassInfo<T, Bar>,
359
- /**
360
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
361
- * used by this class
362
- */
363
- FNMetaImpl?: Function
364
- ): Function;
449
+ getContent(): Control[];
365
450
  /**
366
451
  * Gets current value of property {@link #getDesign design}.
367
452
  *
@@ -384,16 +469,6 @@ declare module "sap/ui/webc/fiori/Bar" {
384
469
  * Defines the content at the end of the bar
385
470
  */
386
471
  getEndContent(): Control[];
387
- /**
388
- * Returns a metadata object for class sap.ui.webc.fiori.Bar.
389
- */
390
- static getMetadata(): WebComponentMetadata;
391
- /**
392
- * Gets content of aggregation {@link #getMiddleContent middleContent}.
393
- *
394
- * Defines the content in the middle of the bar
395
- */
396
- getMiddleContent(): Control[];
397
472
  /**
398
473
  * Gets content of aggregation {@link #getStartContent startContent}.
399
474
  *
@@ -407,24 +482,24 @@ declare module "sap/ui/webc/fiori/Bar" {
407
482
  */
408
483
  getWidth(): CSSSize;
409
484
  /**
410
- * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getEndContent endContent}. and
411
- * returns its index if found or -1 otherwise.
485
+ * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getContent content}. and returns
486
+ * its index if found or -1 otherwise.
412
487
  */
413
- indexOfEndContent(
488
+ indexOfContent(
414
489
  /**
415
- * The endContent whose index is looked for
490
+ * The content whose index is looked for
416
491
  */
417
- oEndContent: Control
492
+ oContent: Control
418
493
  ): int;
419
494
  /**
420
- * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getMiddleContent middleContent}.
421
- * and returns its index if found or -1 otherwise.
495
+ * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getEndContent endContent}. and
496
+ * returns its index if found or -1 otherwise.
422
497
  */
423
- indexOfMiddleContent(
498
+ indexOfEndContent(
424
499
  /**
425
- * The middleContent whose index is looked for
500
+ * The endContent whose index is looked for
426
501
  */
427
- oMiddleContent: Control
502
+ oEndContent: Control
428
503
  ): int;
429
504
  /**
430
505
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getStartContent startContent}.
@@ -437,31 +512,31 @@ declare module "sap/ui/webc/fiori/Bar" {
437
512
  oStartContent: Control
438
513
  ): int;
439
514
  /**
440
- * Inserts a endContent into the aggregation {@link #getEndContent endContent}.
515
+ * Inserts a content into the aggregation {@link #getContent content}.
441
516
  */
442
- insertEndContent(
517
+ insertContent(
443
518
  /**
444
- * The endContent to insert; if empty, nothing is inserted
519
+ * The content to insert; if empty, nothing is inserted
445
520
  */
446
- oEndContent: Control,
521
+ oContent: Control,
447
522
  /**
448
- * The `0`-based index the endContent should be inserted at; for a negative value of `iIndex`, the endContent
449
- * is inserted at position 0; for a value greater than the current size of the aggregation, the endContent
523
+ * The `0`-based index the content should be inserted at; for a negative value of `iIndex`, the content
524
+ * is inserted at position 0; for a value greater than the current size of the aggregation, the content
450
525
  * is inserted at the last position
451
526
  */
452
527
  iIndex: int
453
528
  ): this;
454
529
  /**
455
- * Inserts a middleContent into the aggregation {@link #getMiddleContent middleContent}.
530
+ * Inserts a endContent into the aggregation {@link #getEndContent endContent}.
456
531
  */
457
- insertMiddleContent(
532
+ insertEndContent(
458
533
  /**
459
- * The middleContent to insert; if empty, nothing is inserted
534
+ * The endContent to insert; if empty, nothing is inserted
460
535
  */
461
- oMiddleContent: Control,
536
+ oEndContent: Control,
462
537
  /**
463
- * The `0`-based index the middleContent should be inserted at; for a negative value of `iIndex`, the middleContent
464
- * is inserted at position 0; for a value greater than the current size of the aggregation, the middleContent
538
+ * The `0`-based index the endContent should be inserted at; for a negative value of `iIndex`, the endContent
539
+ * is inserted at position 0; for a value greater than the current size of the aggregation, the endContent
465
540
  * is inserted at the last position
466
541
  */
467
542
  iIndex: int
@@ -482,17 +557,17 @@ declare module "sap/ui/webc/fiori/Bar" {
482
557
  iIndex: int
483
558
  ): this;
484
559
  /**
485
- * Removes all the controls from the aggregation {@link #getEndContent endContent}.
560
+ * Removes all the controls from the aggregation {@link #getContent content}.
486
561
  *
487
562
  * Additionally, it unregisters them from the hosting UIArea.
488
563
  */
489
- removeAllEndContent(): Control[];
564
+ removeAllContent(): Control[];
490
565
  /**
491
- * Removes all the controls from the aggregation {@link #getMiddleContent middleContent}.
566
+ * Removes all the controls from the aggregation {@link #getEndContent endContent}.
492
567
  *
493
568
  * Additionally, it unregisters them from the hosting UIArea.
494
569
  */
495
- removeAllMiddleContent(): Control[];
570
+ removeAllEndContent(): Control[];
496
571
  /**
497
572
  * Removes all the controls from the aggregation {@link #getStartContent startContent}.
498
573
  *
@@ -500,22 +575,22 @@ declare module "sap/ui/webc/fiori/Bar" {
500
575
  */
501
576
  removeAllStartContent(): Control[];
502
577
  /**
503
- * Removes a endContent from the aggregation {@link #getEndContent endContent}.
578
+ * Removes a content from the aggregation {@link #getContent content}.
504
579
  */
505
- removeEndContent(
580
+ removeContent(
506
581
  /**
507
- * The endContent to remove or its index or id
582
+ * The content to remove or its index or id
508
583
  */
509
- vEndContent: int | string | Control
584
+ vContent: int | string | Control
510
585
  ): Control;
511
586
  /**
512
- * Removes a middleContent from the aggregation {@link #getMiddleContent middleContent}.
587
+ * Removes a endContent from the aggregation {@link #getEndContent endContent}.
513
588
  */
514
- removeMiddleContent(
589
+ removeEndContent(
515
590
  /**
516
- * The middleContent to remove or its index or id
591
+ * The endContent to remove or its index or id
517
592
  */
518
- vMiddleContent: int | string | Control
593
+ vEndContent: int | string | Control
519
594
  ): Control;
520
595
  /**
521
596
  * Removes a startContent from the aggregation {@link #getStartContent startContent}.
@@ -584,14 +659,14 @@ declare module "sap/ui/webc/fiori/Bar" {
584
659
  width?: CSSSize | PropertyBindingInfo;
585
660
 
586
661
  /**
587
- * Defines the content at the end of the bar
662
+ * Defines the content in the middle of the bar
588
663
  */
589
- endContent?: Control[] | Control | AggregationBindingInfo;
664
+ content?: Control[] | Control | AggregationBindingInfo;
590
665
 
591
666
  /**
592
- * Defines the content in the middle of the bar
667
+ * Defines the content at the end of the bar
593
668
  */
594
- middleContent?: Control[] | Control | AggregationBindingInfo;
669
+ endContent?: Control[] | Control | AggregationBindingInfo;
595
670
 
596
671
  /**
597
672
  * Defines the content at the start of the bar
@@ -600,7 +675,7 @@ declare module "sap/ui/webc/fiori/Bar" {
600
675
  }
601
676
  }
602
677
 
603
- declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
678
+ declare module "sap/ui/webc/fiori/BarcodeScannerDialog" {
604
679
  import {
605
680
  default as WebComponent,
606
681
  $WebComponentSettings,
@@ -608,49 +683,29 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
608
683
 
609
684
  import Event from "sap/ui/base/Event";
610
685
 
611
- import Control from "sap/ui/core/Control";
612
-
613
- import { CSSSize } from "sap/ui/core/library";
614
-
615
- import { FCLLayout } from "sap/ui/webc/fiori/library";
616
-
617
686
  import WebComponentMetadata from "sap/ui/webc/common/WebComponentMetadata";
618
687
 
619
- import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
620
-
621
688
  /**
622
689
  * @SINCE 1.92.0
623
690
  * @EXPERIMENTAL (since 1.92.0)
624
691
  *
625
692
  * Overview:
626
693
  *
627
- * The `FlexibleColumnLayout` implements the master-detail-detail paradigm by displaying up to three pages
628
- * in separate columns. There are several possible layouts that can be changed either with the component
629
- * API, or by pressing the arrows, displayed between the columns.
630
- *
631
- * Usage:
632
- *
633
- * Use this component for applications that need to display several logical levels of related information
634
- * side by side (e.g. list of items, item, sub-item, etc.). The Component is flexible in a sense that the
635
- * application can focus the user's attention on one particular column.
636
- *
637
- * Responsive Behavior:
638
- *
639
- * The `FlexibleColumnLayout` automatically displays the maximum possible number of columns based on `layout`
640
- * property and the window size. The component would display 1 column for window size smaller than 599px,
641
- * up to two columns between 599px and 1023px, and 3 columns for sizes bigger than 1023px.
642
- *
643
- *
694
+ * The `BarcodeScannerDialog` component provides barcode scanning functionality for all devices that support
695
+ * the `MediaDevices.getUserMedia()` native API. Opening the dialog launches the device camera and scans
696
+ * for known barcode formats.
644
697
  *
645
- * Keyboard Handling:
698
+ * A `scanSuccess` event fires whenever a barcode is identified and a `scanError` event fires when the
699
+ * scan failed (for example, due to missing permisions).
646
700
  *
701
+ * Internally, the component uses the zxing-js/library third party OSS.
647
702
  *
648
- * - [SPACE, ENTER, RETURN] - If focus is on the layout toggle button (arrow button), once activated,
649
- * it triggers the associated action (such as expand/collapse the column).
703
+ * For a list of supported barcode formats, see the zxing-js/library
704
+ * documentation.
650
705
  */
651
- export default class FlexibleColumnLayout extends WebComponent {
706
+ export default class BarcodeScannerDialog extends WebComponent {
652
707
  /**
653
- * Constructor for a new `FlexibleColumnLayout`.
708
+ * Constructor for a new `BarcodeScannerDialog`.
654
709
  *
655
710
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
656
711
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
@@ -660,10 +715,10 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
660
715
  /**
661
716
  * Initial settings for the new control
662
717
  */
663
- mSettings?: $FlexibleColumnLayoutSettings
718
+ mSettings?: $BarcodeScannerDialogSettings
664
719
  );
665
720
  /**
666
- * Constructor for a new `FlexibleColumnLayout`.
721
+ * Constructor for a new `BarcodeScannerDialog`.
667
722
  *
668
723
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
669
724
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
@@ -677,19 +732,43 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
677
732
  /**
678
733
  * Initial settings for the new control
679
734
  */
680
- mSettings?: $FlexibleColumnLayoutSettings
735
+ mSettings?: $BarcodeScannerDialogSettings
681
736
  );
682
737
 
683
738
  /**
684
- * Attaches event handler `fnFunction` to the {@link #event:layoutChange layoutChange} event of this `sap.ui.webc.fiori.FlexibleColumnLayout`.
739
+ * Creates a new subclass of class sap.ui.webc.fiori.BarcodeScannerDialog with name `sClassName` and enriches
740
+ * it with the information contained in `oClassInfo`.
741
+ *
742
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
743
+ */
744
+ static extend<T extends Record<string, unknown>>(
745
+ /**
746
+ * Name of the class being created
747
+ */
748
+ sClassName: string,
749
+ /**
750
+ * Object literal with information about the class
751
+ */
752
+ oClassInfo?: sap.ClassInfo<T, BarcodeScannerDialog>,
753
+ /**
754
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
755
+ * used by this class
756
+ */
757
+ FNMetaImpl?: Function
758
+ ): Function;
759
+ /**
760
+ * Returns a metadata object for class sap.ui.webc.fiori.BarcodeScannerDialog.
761
+ */
762
+ static getMetadata(): WebComponentMetadata;
763
+ /**
764
+ * Attaches event handler `fnFunction` to the {@link #event:scanError scanError} event of this `sap.ui.webc.fiori.BarcodeScannerDialog`.
685
765
  *
686
766
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
687
- * otherwise it will be bound to this `sap.ui.webc.fiori.FlexibleColumnLayout` itself.
767
+ * otherwise it will be bound to this `sap.ui.webc.fiori.BarcodeScannerDialog` itself.
688
768
  *
689
- * Fired when the layout changes via user interaction by clicking the arrows or by changing the component
690
- * size due to resizing.
769
+ * Fires when the scan fails with error.
691
770
  */
692
- attachLayoutChange(
771
+ attachScanError(
693
772
  /**
694
773
  * An application-specific payload object that will be passed to the event handler along with the event
695
774
  * object when firing the event
@@ -700,49 +779,98 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
700
779
  */
701
780
  fnFunction: (p1: Event) => void,
702
781
  /**
703
- * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.FlexibleColumnLayout`
782
+ * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.BarcodeScannerDialog`
704
783
  * itself
705
784
  */
706
785
  oListener?: object
707
786
  ): this;
708
787
  /**
709
- * Attaches event handler `fnFunction` to the {@link #event:layoutChange layoutChange} event of this `sap.ui.webc.fiori.FlexibleColumnLayout`.
788
+ * Attaches event handler `fnFunction` to the {@link #event:scanError scanError} event of this `sap.ui.webc.fiori.BarcodeScannerDialog`.
710
789
  *
711
790
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
712
- * otherwise it will be bound to this `sap.ui.webc.fiori.FlexibleColumnLayout` itself.
791
+ * otherwise it will be bound to this `sap.ui.webc.fiori.BarcodeScannerDialog` itself.
713
792
  *
714
- * Fired when the layout changes via user interaction by clicking the arrows or by changing the component
715
- * size due to resizing.
793
+ * Fires when the scan fails with error.
716
794
  */
717
- attachLayoutChange(
795
+ attachScanError(
718
796
  /**
719
797
  * The function to be called when the event occurs
720
798
  */
721
799
  fnFunction: (p1: Event) => void,
722
800
  /**
723
- * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.FlexibleColumnLayout`
801
+ * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.BarcodeScannerDialog`
724
802
  * itself
725
803
  */
726
804
  oListener?: object
727
805
  ): this;
728
806
  /**
729
- * Destroys the endColumn in the aggregation {@link #getEndColumn endColumn}.
730
- */
731
- destroyEndColumn(): this;
732
- /**
733
- * Destroys the midColumn in the aggregation {@link #getMidColumn midColumn}.
734
- */
735
- destroyMidColumn(): this;
736
- /**
737
- * Destroys the startColumn in the aggregation {@link #getStartColumn startColumn}.
738
- */
739
- destroyStartColumn(): this;
740
- /**
741
- * Detaches event handler `fnFunction` from the {@link #event:layoutChange layoutChange} event of this `sap.ui.webc.fiori.FlexibleColumnLayout`.
807
+ * Attaches event handler `fnFunction` to the {@link #event:scanSuccess scanSuccess} event of this `sap.ui.webc.fiori.BarcodeScannerDialog`.
742
808
  *
743
- * The passed function and listener object must match the ones used for event registration.
809
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
810
+ * otherwise it will be bound to this `sap.ui.webc.fiori.BarcodeScannerDialog` itself.
811
+ *
812
+ * Fires when the scan is completed successfuuly.
744
813
  */
745
- detachLayoutChange(
814
+ attachScanSuccess(
815
+ /**
816
+ * An application-specific payload object that will be passed to the event handler along with the event
817
+ * object when firing the event
818
+ */
819
+ oData: object,
820
+ /**
821
+ * The function to be called when the event occurs
822
+ */
823
+ fnFunction: (p1: Event) => void,
824
+ /**
825
+ * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.BarcodeScannerDialog`
826
+ * itself
827
+ */
828
+ oListener?: object
829
+ ): this;
830
+ /**
831
+ * Attaches event handler `fnFunction` to the {@link #event:scanSuccess scanSuccess} event of this `sap.ui.webc.fiori.BarcodeScannerDialog`.
832
+ *
833
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
834
+ * otherwise it will be bound to this `sap.ui.webc.fiori.BarcodeScannerDialog` itself.
835
+ *
836
+ * Fires when the scan is completed successfuuly.
837
+ */
838
+ attachScanSuccess(
839
+ /**
840
+ * The function to be called when the event occurs
841
+ */
842
+ fnFunction: (p1: Event) => void,
843
+ /**
844
+ * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.BarcodeScannerDialog`
845
+ * itself
846
+ */
847
+ oListener?: object
848
+ ): this;
849
+ /**
850
+ * Closes the dialog and the scan session.
851
+ */
852
+ close(): void;
853
+ /**
854
+ * Detaches event handler `fnFunction` from the {@link #event:scanError scanError} event of this `sap.ui.webc.fiori.BarcodeScannerDialog`.
855
+ *
856
+ * The passed function and listener object must match the ones used for event registration.
857
+ */
858
+ detachScanError(
859
+ /**
860
+ * The function to be called, when the event occurs
861
+ */
862
+ fnFunction: (p1: Event) => void,
863
+ /**
864
+ * Context object on which the given function had to be called
865
+ */
866
+ oListener?: object
867
+ ): this;
868
+ /**
869
+ * Detaches event handler `fnFunction` from the {@link #event:scanSuccess scanSuccess} event of this `sap.ui.webc.fiori.BarcodeScannerDialog`.
870
+ *
871
+ * The passed function and listener object must match the ones used for event registration.
872
+ */
873
+ detachScanSuccess(
746
874
  /**
747
875
  * The function to be called, when the event occurs
748
876
  */
@@ -752,6 +880,137 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
752
880
  */
753
881
  oListener?: object
754
882
  ): this;
883
+ /**
884
+ * Fires event {@link #event:scanError scanError} to attached listeners.
885
+ */
886
+ fireScanError(
887
+ /**
888
+ * Parameters to pass along with the event
889
+ */
890
+ mParameters?: {
891
+ /**
892
+ * the error message
893
+ */
894
+ message?: string;
895
+ }
896
+ ): this;
897
+ /**
898
+ * Fires event {@link #event:scanSuccess scanSuccess} to attached listeners.
899
+ */
900
+ fireScanSuccess(
901
+ /**
902
+ * Parameters to pass along with the event
903
+ */
904
+ mParameters?: {
905
+ /**
906
+ * the scan result as string
907
+ */
908
+ text?: string;
909
+ /**
910
+ * the scan result as a Uint8Array
911
+ */
912
+ rawBytes?: object;
913
+ }
914
+ ): this;
915
+ /**
916
+ * Shows a dialog with the camera videostream. Starts a scan session.
917
+ */
918
+ show(): void;
919
+ }
920
+
921
+ export interface $BarcodeScannerDialogSettings extends $WebComponentSettings {
922
+ /**
923
+ * Fires when the scan fails with error.
924
+ */
925
+ scanError?: (oEvent: Event) => void;
926
+
927
+ /**
928
+ * Fires when the scan is completed successfuuly.
929
+ */
930
+ scanSuccess?: (oEvent: Event) => void;
931
+ }
932
+ }
933
+
934
+ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
935
+ import {
936
+ default as WebComponent,
937
+ $WebComponentSettings,
938
+ } from "sap/ui/webc/common/WebComponent";
939
+
940
+ import Event from "sap/ui/base/Event";
941
+
942
+ import Control from "sap/ui/core/Control";
943
+
944
+ import { CSSSize } from "sap/ui/core/library";
945
+
946
+ import { FCLLayout } from "sap/ui/webc/fiori/library";
947
+
948
+ import WebComponentMetadata from "sap/ui/webc/common/WebComponentMetadata";
949
+
950
+ import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
951
+
952
+ /**
953
+ * @SINCE 1.92.0
954
+ * @EXPERIMENTAL (since 1.92.0)
955
+ *
956
+ * Overview:
957
+ *
958
+ * The `FlexibleColumnLayout` implements the master-detail-detail paradigm by displaying up to three pages
959
+ * in separate columns. There are several possible layouts that can be changed either with the component
960
+ * API, or by pressing the arrows, displayed between the columns.
961
+ *
962
+ * Usage:
963
+ *
964
+ * Use this component for applications that need to display several logical levels of related information
965
+ * side by side (e.g. list of items, item, sub-item, etc.). The Component is flexible in a sense that the
966
+ * application can focus the user's attention on one particular column.
967
+ *
968
+ * Responsive Behavior:
969
+ *
970
+ * The `FlexibleColumnLayout` automatically displays the maximum possible number of columns based on `layout`
971
+ * property and the window size. The component would display 1 column for window size smaller than 599px,
972
+ * up to two columns between 599px and 1023px, and 3 columns for sizes bigger than 1023px.
973
+ *
974
+ *
975
+ *
976
+ * Keyboard Handling:
977
+ *
978
+ *
979
+ * - [SPACE, ENTER, RETURN] - If focus is on the layout toggle button (arrow button), once activated,
980
+ * it triggers the associated action (such as expand/collapse the column).
981
+ */
982
+ export default class FlexibleColumnLayout extends WebComponent {
983
+ /**
984
+ * Constructor for a new `FlexibleColumnLayout`.
985
+ *
986
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
987
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
988
+ * of the syntax of the settings object.
989
+ */
990
+ constructor(
991
+ /**
992
+ * Initial settings for the new control
993
+ */
994
+ mSettings?: $FlexibleColumnLayoutSettings
995
+ );
996
+ /**
997
+ * Constructor for a new `FlexibleColumnLayout`.
998
+ *
999
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
1000
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
1001
+ * of the syntax of the settings object.
1002
+ */
1003
+ constructor(
1004
+ /**
1005
+ * ID for the new control, generated automatically if no ID is given
1006
+ */
1007
+ sId?: string,
1008
+ /**
1009
+ * Initial settings for the new control
1010
+ */
1011
+ mSettings?: $FlexibleColumnLayoutSettings
1012
+ );
1013
+
755
1014
  /**
756
1015
  * Creates a new subclass of class sap.ui.webc.fiori.FlexibleColumnLayout with name `sClassName` and enriches
757
1016
  * it with the information contained in `oClassInfo`.
@@ -773,6 +1032,82 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
773
1032
  */
774
1033
  FNMetaImpl?: Function
775
1034
  ): Function;
1035
+ /**
1036
+ * Returns a metadata object for class sap.ui.webc.fiori.FlexibleColumnLayout.
1037
+ */
1038
+ static getMetadata(): WebComponentMetadata;
1039
+ /**
1040
+ * Attaches event handler `fnFunction` to the {@link #event:layoutChange layoutChange} event of this `sap.ui.webc.fiori.FlexibleColumnLayout`.
1041
+ *
1042
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
1043
+ * otherwise it will be bound to this `sap.ui.webc.fiori.FlexibleColumnLayout` itself.
1044
+ *
1045
+ * Fired when the layout changes via user interaction by clicking the arrows or by changing the component
1046
+ * size due to resizing.
1047
+ */
1048
+ attachLayoutChange(
1049
+ /**
1050
+ * An application-specific payload object that will be passed to the event handler along with the event
1051
+ * object when firing the event
1052
+ */
1053
+ oData: object,
1054
+ /**
1055
+ * The function to be called when the event occurs
1056
+ */
1057
+ fnFunction: (p1: Event) => void,
1058
+ /**
1059
+ * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.FlexibleColumnLayout`
1060
+ * itself
1061
+ */
1062
+ oListener?: object
1063
+ ): this;
1064
+ /**
1065
+ * Attaches event handler `fnFunction` to the {@link #event:layoutChange layoutChange} event of this `sap.ui.webc.fiori.FlexibleColumnLayout`.
1066
+ *
1067
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
1068
+ * otherwise it will be bound to this `sap.ui.webc.fiori.FlexibleColumnLayout` itself.
1069
+ *
1070
+ * Fired when the layout changes via user interaction by clicking the arrows or by changing the component
1071
+ * size due to resizing.
1072
+ */
1073
+ attachLayoutChange(
1074
+ /**
1075
+ * The function to be called when the event occurs
1076
+ */
1077
+ fnFunction: (p1: Event) => void,
1078
+ /**
1079
+ * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.FlexibleColumnLayout`
1080
+ * itself
1081
+ */
1082
+ oListener?: object
1083
+ ): this;
1084
+ /**
1085
+ * Destroys the endColumn in the aggregation {@link #getEndColumn endColumn}.
1086
+ */
1087
+ destroyEndColumn(): this;
1088
+ /**
1089
+ * Destroys the midColumn in the aggregation {@link #getMidColumn midColumn}.
1090
+ */
1091
+ destroyMidColumn(): this;
1092
+ /**
1093
+ * Destroys the startColumn in the aggregation {@link #getStartColumn startColumn}.
1094
+ */
1095
+ destroyStartColumn(): this;
1096
+ /**
1097
+ * Detaches event handler `fnFunction` from the {@link #event:layoutChange layoutChange} event of this `sap.ui.webc.fiori.FlexibleColumnLayout`.
1098
+ *
1099
+ * The passed function and listener object must match the ones used for event registration.
1100
+ */
1101
+ detachLayoutChange(
1102
+ /**
1103
+ * The function to be called, when the event occurs
1104
+ */
1105
+ fnFunction: (p1: Event) => void,
1106
+ /**
1107
+ * Context object on which the given function had to be called
1108
+ */
1109
+ oListener?: object
1110
+ ): this;
776
1111
  /**
777
1112
  * Fires event {@link #event:layoutChange layoutChange} to attached listeners.
778
1113
  */
@@ -824,6 +1159,8 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
824
1159
  * right - `endArrowLeftText`: the text that the second arrow (between the `mid` and `end` columns) will
825
1160
  * have when pointing to the left - `endArrowRightText`: the text that the second arrow (between the `mid`
826
1161
  * and `end` columns) will have when pointing to the right
1162
+ *
1163
+ * Default value is `{}`.
827
1164
  */
828
1165
  getAccessibilityTexts(): object;
829
1166
  /**
@@ -882,10 +1219,6 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
882
1219
  * Default value is `OneColumn`.
883
1220
  */
884
1221
  getLayout(): FCLLayout | keyof typeof FCLLayout;
885
- /**
886
- * Returns a metadata object for class sap.ui.webc.fiori.FlexibleColumnLayout.
887
- */
888
- static getMetadata(): WebComponentMetadata;
889
1222
  /**
890
1223
  * Gets content of aggregation {@link #getMidColumn midColumn}.
891
1224
  *
@@ -931,12 +1264,14 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
931
1264
  * and `end` columns) will have when pointing to the right
932
1265
  *
933
1266
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1267
+ *
1268
+ * Default value is `{}`.
934
1269
  */
935
1270
  setAccessibilityTexts(
936
1271
  /**
937
1272
  * New value for property `accessibilityTexts`
938
1273
  */
939
- oAccessibilityTexts: object
1274
+ oAccessibilityTexts?: object
940
1275
  ): this;
941
1276
  /**
942
1277
  * Sets the aggregated {@link #getEndColumn endColumn}.
@@ -1111,29 +1446,325 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
1111
1446
  * Fired when the layout changes via user interaction by clicking the arrows or by changing the component
1112
1447
  * size due to resizing.
1113
1448
  */
1114
- layoutChange?: Function;
1449
+ layoutChange?: (oEvent: Event) => void;
1115
1450
  }
1116
1451
  }
1117
1452
 
1118
- declare module "sap/ui/webc/fiori/NotificationAction" {
1453
+ declare module "sap/ui/webc/fiori/IllustratedMessage" {
1119
1454
  import {
1120
1455
  default as WebComponent,
1121
1456
  $WebComponentSettings,
1122
1457
  } from "sap/ui/webc/common/WebComponent";
1123
1458
 
1124
- import { INotificationAction } from "sap/ui/webc/fiori/library";
1125
-
1126
- import { ButtonDesign } from "sap/ui/webc/main/library";
1459
+ import { IButton } from "sap/ui/webc/main/library";
1127
1460
 
1128
1461
  import WebComponentMetadata from "sap/ui/webc/common/WebComponentMetadata";
1129
1462
 
1130
- import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
1463
+ import { IllustrationMessageType } from "sap/ui/webc/fiori/library";
1131
1464
 
1132
- /**
1133
- * @SINCE 1.92.0
1134
- * @EXPERIMENTAL (since 1.92.0)
1135
- *
1136
- * The `sap.ui.webc.fiori.NotificationAction` represents an abstract action, used in the `sap.ui.webc.fiori.NotificationListItem`
1465
+ import Control from "sap/ui/core/Control";
1466
+
1467
+ import {
1468
+ PropertyBindingInfo,
1469
+ AggregationBindingInfo,
1470
+ } from "sap/ui/base/ManagedObject";
1471
+
1472
+ /**
1473
+ * @SINCE 1.92.0
1474
+ * @EXPERIMENTAL (since 1.92.0)
1475
+ *
1476
+ * Overview: An IllustratedMessage is a recommended combination of a solution-oriented message, an engaging
1477
+ * illustration, and conversational tone to better communicate an empty or a success state than just show
1478
+ * a message alone.
1479
+ *
1480
+ * Each illustration has default internationalised title and subtitle texts. Also they can be managed with
1481
+ * `titleText` and `subtitleText` properties.
1482
+ *
1483
+ * Structure: The IllustratedMessage consists of the following elements, which are displayed below each
1484
+ * other in the following order:
1485
+ *
1486
+ *
1487
+ *
1488
+ * - Illustration
1489
+ * - Title
1490
+ * - Subtitle
1491
+ * - Actions
1492
+ *
1493
+ * Usage: `sap.ui.webc.fiori.IllustratedMessage` is meant to be used inside container component, for example
1494
+ * a `sap.ui.webc.main.Card`, a `sap.ui.webc.main.Dialog` or a `sap.ui.webc.fiori.Page`
1495
+ */
1496
+ export default class IllustratedMessage extends WebComponent {
1497
+ /**
1498
+ * Constructor for a new `IllustratedMessage`.
1499
+ *
1500
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
1501
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
1502
+ * of the syntax of the settings object.
1503
+ */
1504
+ constructor(
1505
+ /**
1506
+ * Initial settings for the new control
1507
+ */
1508
+ mSettings?: $IllustratedMessageSettings
1509
+ );
1510
+ /**
1511
+ * Constructor for a new `IllustratedMessage`.
1512
+ *
1513
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
1514
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
1515
+ * of the syntax of the settings object.
1516
+ */
1517
+ constructor(
1518
+ /**
1519
+ * ID for the new control, generated automatically if no ID is given
1520
+ */
1521
+ sId?: string,
1522
+ /**
1523
+ * Initial settings for the new control
1524
+ */
1525
+ mSettings?: $IllustratedMessageSettings
1526
+ );
1527
+
1528
+ /**
1529
+ * Creates a new subclass of class sap.ui.webc.fiori.IllustratedMessage with name `sClassName` and enriches
1530
+ * it with the information contained in `oClassInfo`.
1531
+ *
1532
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
1533
+ */
1534
+ static extend<T extends Record<string, unknown>>(
1535
+ /**
1536
+ * Name of the class being created
1537
+ */
1538
+ sClassName: string,
1539
+ /**
1540
+ * Object literal with information about the class
1541
+ */
1542
+ oClassInfo?: sap.ClassInfo<T, IllustratedMessage>,
1543
+ /**
1544
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1545
+ * used by this class
1546
+ */
1547
+ FNMetaImpl?: Function
1548
+ ): Function;
1549
+ /**
1550
+ * Returns a metadata object for class sap.ui.webc.fiori.IllustratedMessage.
1551
+ */
1552
+ static getMetadata(): WebComponentMetadata;
1553
+ /**
1554
+ * Adds some action to the aggregation {@link #getActions actions}.
1555
+ */
1556
+ addAction(
1557
+ /**
1558
+ * The action to add; if empty, nothing is inserted
1559
+ */
1560
+ oAction: IButton
1561
+ ): this;
1562
+ /**
1563
+ * Destroys all the actions in the aggregation {@link #getActions actions}.
1564
+ */
1565
+ destroyActions(): this;
1566
+ /**
1567
+ * Destroys the subtitle in the aggregation {@link #getSubtitle subtitle}.
1568
+ */
1569
+ destroySubtitle(): this;
1570
+ /**
1571
+ * Gets content of aggregation {@link #getActions actions}.
1572
+ *
1573
+ * Defines the component actions.
1574
+ */
1575
+ getActions(): IButton[];
1576
+ /**
1577
+ * Gets current value of property {@link #getName name}.
1578
+ *
1579
+ * Default value is `BeforeSearch`.
1580
+ */
1581
+ getName(): IllustrationMessageType | keyof typeof IllustrationMessageType;
1582
+ /**
1583
+ * Gets content of aggregation {@link #getSubtitle subtitle}.
1584
+ *
1585
+ * Defines the subtitle of the component.
1586
+ *
1587
+ * **Note:** Using this slot, the default subtitle text of illustration and the value of `subtitleText`
1588
+ * property will be overwritten.
1589
+ */
1590
+ getSubtitle(): Control;
1591
+ /**
1592
+ * Gets current value of property {@link #getSubtitleText subtitleText}.
1593
+ *
1594
+ * Defines the subtitle of the component.
1595
+ *
1596
+ * **Note:** Using this property, the default subtitle text of illustration will be overwritten.
1597
+ *
1598
+ * **Note:** Using `subtitle` slot, the default of this property will be overwritten.
1599
+ *
1600
+ * Default value is `empty string`.
1601
+ */
1602
+ getSubtitleText(): string;
1603
+ /**
1604
+ * Gets current value of property {@link #getTitleText titleText}.
1605
+ *
1606
+ * Defines the title of the component.
1607
+ *
1608
+ * **Note:** Using this property, the default title text of illustration will be overwritten.
1609
+ *
1610
+ * Default value is `empty string`.
1611
+ */
1612
+ getTitleText(): string;
1613
+ /**
1614
+ * Checks for the provided `sap.ui.webc.main.IButton` in the aggregation {@link #getActions actions}. and
1615
+ * returns its index if found or -1 otherwise.
1616
+ */
1617
+ indexOfAction(
1618
+ /**
1619
+ * The action whose index is looked for
1620
+ */
1621
+ oAction: IButton
1622
+ ): int;
1623
+ /**
1624
+ * Inserts a action into the aggregation {@link #getActions actions}.
1625
+ */
1626
+ insertAction(
1627
+ /**
1628
+ * The action to insert; if empty, nothing is inserted
1629
+ */
1630
+ oAction: IButton,
1631
+ /**
1632
+ * The `0`-based index the action should be inserted at; for a negative value of `iIndex`, the action is
1633
+ * inserted at position 0; for a value greater than the current size of the aggregation, the action is inserted
1634
+ * at the last position
1635
+ */
1636
+ iIndex: int
1637
+ ): this;
1638
+ /**
1639
+ * Removes a action from the aggregation {@link #getActions actions}.
1640
+ */
1641
+ removeAction(
1642
+ /**
1643
+ * The action to remove or its index or id
1644
+ */
1645
+ vAction: int | string | IButton
1646
+ ): IButton;
1647
+ /**
1648
+ * Removes all the controls from the aggregation {@link #getActions actions}.
1649
+ *
1650
+ * Additionally, it unregisters them from the hosting UIArea.
1651
+ */
1652
+ removeAllActions(): IButton[];
1653
+ /**
1654
+ * Sets a new value for property {@link #getName name}.
1655
+ *
1656
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1657
+ *
1658
+ * Default value is `BeforeSearch`.
1659
+ */
1660
+ setName(
1661
+ /**
1662
+ * New value for property `name`
1663
+ */
1664
+ sName?: IllustrationMessageType | keyof typeof IllustrationMessageType
1665
+ ): this;
1666
+ /**
1667
+ * Sets the aggregated {@link #getSubtitle subtitle}.
1668
+ */
1669
+ setSubtitle(
1670
+ /**
1671
+ * The subtitle to set
1672
+ */
1673
+ oSubtitle: Control
1674
+ ): this;
1675
+ /**
1676
+ * Sets a new value for property {@link #getSubtitleText subtitleText}.
1677
+ *
1678
+ * Defines the subtitle of the component.
1679
+ *
1680
+ * **Note:** Using this property, the default subtitle text of illustration will be overwritten.
1681
+ *
1682
+ * **Note:** Using `subtitle` slot, the default of this property will be overwritten.
1683
+ *
1684
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1685
+ *
1686
+ * Default value is `empty string`.
1687
+ */
1688
+ setSubtitleText(
1689
+ /**
1690
+ * New value for property `subtitleText`
1691
+ */
1692
+ sSubtitleText?: string
1693
+ ): this;
1694
+ /**
1695
+ * Sets a new value for property {@link #getTitleText titleText}.
1696
+ *
1697
+ * Defines the title of the component.
1698
+ *
1699
+ * **Note:** Using this property, the default title text of illustration will be overwritten.
1700
+ *
1701
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1702
+ *
1703
+ * Default value is `empty string`.
1704
+ */
1705
+ setTitleText(
1706
+ /**
1707
+ * New value for property `titleText`
1708
+ */
1709
+ sTitleText?: string
1710
+ ): this;
1711
+ }
1712
+
1713
+ export interface $IllustratedMessageSettings extends $WebComponentSettings {
1714
+ name?:
1715
+ | (IllustrationMessageType | keyof typeof IllustrationMessageType)
1716
+ | PropertyBindingInfo;
1717
+
1718
+ /**
1719
+ * Defines the subtitle of the component.
1720
+ *
1721
+ * **Note:** Using this property, the default subtitle text of illustration will be overwritten.
1722
+ *
1723
+ * **Note:** Using `subtitle` slot, the default of this property will be overwritten.
1724
+ */
1725
+ subtitleText?: string | PropertyBindingInfo;
1726
+
1727
+ /**
1728
+ * Defines the title of the component.
1729
+ *
1730
+ * **Note:** Using this property, the default title text of illustration will be overwritten.
1731
+ */
1732
+ titleText?: string | PropertyBindingInfo;
1733
+
1734
+ /**
1735
+ * Defines the component actions.
1736
+ */
1737
+ actions?: IButton[] | IButton | AggregationBindingInfo;
1738
+
1739
+ /**
1740
+ * Defines the subtitle of the component.
1741
+ *
1742
+ * **Note:** Using this slot, the default subtitle text of illustration and the value of `subtitleText`
1743
+ * property will be overwritten.
1744
+ */
1745
+ subtitle?: Control;
1746
+ }
1747
+ }
1748
+
1749
+ declare module "sap/ui/webc/fiori/NotificationAction" {
1750
+ import {
1751
+ default as WebComponent,
1752
+ $WebComponentSettings,
1753
+ } from "sap/ui/webc/common/WebComponent";
1754
+
1755
+ import { INotificationAction } from "sap/ui/webc/fiori/library";
1756
+
1757
+ import { ButtonDesign } from "sap/ui/webc/main/library";
1758
+
1759
+ import WebComponentMetadata from "sap/ui/webc/common/WebComponentMetadata";
1760
+
1761
+ import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
1762
+
1763
+ /**
1764
+ * @SINCE 1.92.0
1765
+ * @EXPERIMENTAL (since 1.92.0)
1766
+ *
1767
+ * The `sap.ui.webc.fiori.NotificationAction` represents an abstract action, used in the `sap.ui.webc.fiori.NotificationListItem`
1137
1768
  * and the `sap.ui.webc.fiori.NotificationListGroupItem` items.
1138
1769
  */
1139
1770
  export default class NotificationAction
@@ -1192,6 +1823,10 @@ declare module "sap/ui/webc/fiori/NotificationAction" {
1192
1823
  */
1193
1824
  FNMetaImpl?: Function
1194
1825
  ): Function;
1826
+ /**
1827
+ * Returns a metadata object for class sap.ui.webc.fiori.NotificationAction.
1828
+ */
1829
+ static getMetadata(): WebComponentMetadata;
1195
1830
  /**
1196
1831
  * Gets current value of property {@link #getDesign design}.
1197
1832
  *
@@ -1230,10 +1865,6 @@ declare module "sap/ui/webc/fiori/NotificationAction" {
1230
1865
  * Default value is `empty string`.
1231
1866
  */
1232
1867
  getIcon(): string;
1233
- /**
1234
- * Returns a metadata object for class sap.ui.webc.fiori.NotificationAction.
1235
- */
1236
- static getMetadata(): WebComponentMetadata;
1237
1868
  /**
1238
1869
  * Gets current value of property {@link #getText text}.
1239
1870
  *
@@ -1388,7 +2019,7 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
1388
2019
  * The component consists of:
1389
2020
  * - `Toggle` button to expand and collapse the group
1390
2021
  * - `Priority` icon to display the priority of the group
1391
- * - `Heading` to entitle the group
2022
+ * - `TitleText` to entitle the group
1392
2023
  * - Custom actions - with the use of `sap.ui.webc.fiori.NotificationAction`
1393
2024
  * - Items of the group
1394
2025
  *
@@ -1399,7 +2030,7 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
1399
2030
  * CSS Shadow Parts
1400
2031
  * allow developers to style elements inside the Shadow DOM.
1401
2032
  * The `sap.ui.webc.fiori.NotificationListGroupItem` exposes the following CSS Shadow Parts:
1402
- * - heading - Used to style the heading of the notification list group item
2033
+ * - title-text - Used to style the titleText of the notification list group item
1403
2034
  */
1404
2035
  export default class NotificationListGroupItem
1405
2036
  extends WebComponent
@@ -1437,13 +2068,38 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
1437
2068
  );
1438
2069
 
1439
2070
  /**
1440
- * Adds some action to the aggregation {@link #getActions actions}.
2071
+ * Creates a new subclass of class sap.ui.webc.fiori.NotificationListGroupItem with name `sClassName` and
2072
+ * enriches it with the information contained in `oClassInfo`.
2073
+ *
2074
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
1441
2075
  */
1442
- addAction(
2076
+ static extend<T extends Record<string, unknown>>(
1443
2077
  /**
1444
- * The action to add; if empty, nothing is inserted
2078
+ * Name of the class being created
1445
2079
  */
1446
- oAction: INotificationAction
2080
+ sClassName: string,
2081
+ /**
2082
+ * Object literal with information about the class
2083
+ */
2084
+ oClassInfo?: sap.ClassInfo<T, NotificationListGroupItem>,
2085
+ /**
2086
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2087
+ * used by this class
2088
+ */
2089
+ FNMetaImpl?: Function
2090
+ ): Function;
2091
+ /**
2092
+ * Returns a metadata object for class sap.ui.webc.fiori.NotificationListGroupItem.
2093
+ */
2094
+ static getMetadata(): WebComponentMetadata;
2095
+ /**
2096
+ * Adds some action to the aggregation {@link #getActions actions}.
2097
+ */
2098
+ addAction(
2099
+ /**
2100
+ * The action to add; if empty, nothing is inserted
2101
+ */
2102
+ oAction: INotificationAction
1447
2103
  ): this;
1448
2104
  /**
1449
2105
  * Adds some item to the aggregation {@link #getItems items}.
@@ -1578,27 +2234,6 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
1578
2234
  */
1579
2235
  oListener?: object
1580
2236
  ): this;
1581
- /**
1582
- * Creates a new subclass of class sap.ui.webc.fiori.NotificationListGroupItem with name `sClassName` and
1583
- * enriches it with the information contained in `oClassInfo`.
1584
- *
1585
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
1586
- */
1587
- static extend<T extends Record<string, unknown>>(
1588
- /**
1589
- * Name of the class being created
1590
- */
1591
- sClassName: string,
1592
- /**
1593
- * Object literal with information about the class
1594
- */
1595
- oClassInfo?: sap.ClassInfo<T, NotificationListGroupItem>,
1596
- /**
1597
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1598
- * used by this class
1599
- */
1600
- FNMetaImpl?: Function
1601
- ): Function;
1602
2237
  /**
1603
2238
  * Fires event {@link #event:close close} to attached listeners.
1604
2239
  */
@@ -1634,21 +2269,21 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
1634
2269
  */
1635
2270
  getBusy(): boolean;
1636
2271
  /**
1637
- * Gets current value of property {@link #getCollapsed collapsed}.
2272
+ * Gets current value of property {@link #getBusyDelay busyDelay}.
1638
2273
  *
1639
- * Defines if the group is collapsed or expanded.
2274
+ * Defines the delay in milliseconds, after which the busy indicator will show up for this component.
1640
2275
  *
1641
- * Default value is `false`.
2276
+ * Default value is `1000`.
1642
2277
  */
1643
- getCollapsed(): boolean;
2278
+ getBusyDelay(): int;
1644
2279
  /**
1645
- * Gets current value of property {@link #getHeading heading}.
2280
+ * Gets current value of property {@link #getCollapsed collapsed}.
1646
2281
  *
1647
- * Defines the `heading` of the item.
2282
+ * Defines if the group is collapsed or expanded.
1648
2283
  *
1649
- * Default value is `empty string`.
2284
+ * Default value is `false`.
1650
2285
  */
1651
- getHeading(): string;
2286
+ getCollapsed(): boolean;
1652
2287
  /**
1653
2288
  * Gets content of aggregation {@link #getItems items}.
1654
2289
  *
@@ -1656,10 +2291,6 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
1656
2291
  * items.
1657
2292
  */
1658
2293
  getItems(): INotificationListItem[];
1659
- /**
1660
- * Returns a metadata object for class sap.ui.webc.fiori.NotificationListGroupItem.
1661
- */
1662
- static getMetadata(): WebComponentMetadata;
1663
2294
  /**
1664
2295
  * Gets current value of property {@link #getPriority priority}.
1665
2296
  *
@@ -1677,7 +2308,7 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
1677
2308
  *
1678
2309
  * Defines if the `notification` is new or has been already read.
1679
2310
  *
1680
- * **Note:** if set to `false` the `heading` has bold font, if set to true - it has a normal font.
2311
+ * **Note:** if set to `false` the `titleText` has bold font, if set to true - it has a normal font.
1681
2312
  *
1682
2313
  * Default value is `false`.
1683
2314
  */
@@ -1698,6 +2329,14 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
1698
2329
  * Default value is `false`.
1699
2330
  */
1700
2331
  getShowCounter(): boolean;
2332
+ /**
2333
+ * Gets current value of property {@link #getTitleText titleText}.
2334
+ *
2335
+ * Defines the `titleText` of the item.
2336
+ *
2337
+ * Default value is `empty string`.
2338
+ */
2339
+ getTitleText(): string;
1701
2340
  /**
1702
2341
  * Checks for the provided `sap.ui.webc.fiori.INotificationAction` in the aggregation {@link #getActions
1703
2342
  * actions}. and returns its index if found or -1 otherwise.
@@ -1794,34 +2433,34 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
1794
2433
  bBusy?: boolean
1795
2434
  ): this;
1796
2435
  /**
1797
- * Sets a new value for property {@link #getCollapsed collapsed}.
2436
+ * Sets a new value for property {@link #getBusyDelay busyDelay}.
1798
2437
  *
1799
- * Defines if the group is collapsed or expanded.
2438
+ * Defines the delay in milliseconds, after which the busy indicator will show up for this component.
1800
2439
  *
1801
2440
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1802
2441
  *
1803
- * Default value is `false`.
2442
+ * Default value is `1000`.
1804
2443
  */
1805
- setCollapsed(
2444
+ setBusyDelay(
1806
2445
  /**
1807
- * New value for property `collapsed`
2446
+ * New value for property `busyDelay`
1808
2447
  */
1809
- bCollapsed?: boolean
2448
+ iBusyDelay?: int
1810
2449
  ): this;
1811
2450
  /**
1812
- * Sets a new value for property {@link #getHeading heading}.
2451
+ * Sets a new value for property {@link #getCollapsed collapsed}.
1813
2452
  *
1814
- * Defines the `heading` of the item.
2453
+ * Defines if the group is collapsed or expanded.
1815
2454
  *
1816
2455
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1817
2456
  *
1818
- * Default value is `empty string`.
2457
+ * Default value is `false`.
1819
2458
  */
1820
- setHeading(
2459
+ setCollapsed(
1821
2460
  /**
1822
- * New value for property `heading`
2461
+ * New value for property `collapsed`
1823
2462
  */
1824
- sHeading?: string
2463
+ bCollapsed?: boolean
1825
2464
  ): this;
1826
2465
  /**
1827
2466
  * Sets a new value for property {@link #getPriority priority}.
@@ -1847,7 +2486,7 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
1847
2486
  *
1848
2487
  * Defines if the `notification` is new or has been already read.
1849
2488
  *
1850
- * **Note:** if set to `false` the `heading` has bold font, if set to true - it has a normal font.
2489
+ * **Note:** if set to `false` the `titleText` has bold font, if set to true - it has a normal font.
1851
2490
  *
1852
2491
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1853
2492
  *
@@ -1889,6 +2528,21 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
1889
2528
  */
1890
2529
  bShowCounter?: boolean
1891
2530
  ): this;
2531
+ /**
2532
+ * Sets a new value for property {@link #getTitleText titleText}.
2533
+ *
2534
+ * Defines the `titleText` of the item.
2535
+ *
2536
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2537
+ *
2538
+ * Default value is `empty string`.
2539
+ */
2540
+ setTitleText(
2541
+ /**
2542
+ * New value for property `titleText`
2543
+ */
2544
+ sTitleText?: string
2545
+ ): this;
1892
2546
  }
1893
2547
 
1894
2548
  export interface $NotificationListGroupItemSettings
@@ -1899,14 +2553,14 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
1899
2553
  busy?: boolean | PropertyBindingInfo;
1900
2554
 
1901
2555
  /**
1902
- * Defines if the group is collapsed or expanded.
2556
+ * Defines the delay in milliseconds, after which the busy indicator will show up for this component.
1903
2557
  */
1904
- collapsed?: boolean | PropertyBindingInfo;
2558
+ busyDelay?: int | PropertyBindingInfo;
1905
2559
 
1906
2560
  /**
1907
- * Defines the `heading` of the item.
2561
+ * Defines if the group is collapsed or expanded.
1908
2562
  */
1909
- heading?: string | PropertyBindingInfo;
2563
+ collapsed?: boolean | PropertyBindingInfo;
1910
2564
 
1911
2565
  /**
1912
2566
  * Defines the `priority` of the item. Available options are:
@@ -1920,7 +2574,7 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
1920
2574
  /**
1921
2575
  * Defines if the `notification` is new or has been already read.
1922
2576
  *
1923
- * **Note:** if set to `false` the `heading` has bold font, if set to true - it has a normal font.
2577
+ * **Note:** if set to `false` the `titleText` has bold font, if set to true - it has a normal font.
1924
2578
  */
1925
2579
  read?: boolean | PropertyBindingInfo;
1926
2580
 
@@ -1934,6 +2588,11 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
1934
2588
  */
1935
2589
  showCounter?: boolean | PropertyBindingInfo;
1936
2590
 
2591
+ /**
2592
+ * Defines the `titleText` of the item.
2593
+ */
2594
+ titleText?: string | PropertyBindingInfo;
2595
+
1937
2596
  /**
1938
2597
  * Defines the actions, displayed in the top-right area.
1939
2598
  *
@@ -1956,12 +2615,12 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
1956
2615
  /**
1957
2616
  * Fired when the `Close` button is pressed.
1958
2617
  */
1959
- close?: Function;
2618
+ close?: (oEvent: Event) => void;
1960
2619
 
1961
2620
  /**
1962
2621
  * Fired when the `sap.ui.webc.fiori.NotificationListGroupItem` is expanded/collapsed by user interaction.
1963
2622
  */
1964
- toggle?: Function;
2623
+ toggle?: (oEvent: Event) => void;
1965
2624
  }
1966
2625
  }
1967
2626
 
@@ -1976,7 +2635,12 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
1976
2635
  INotificationAction,
1977
2636
  } from "sap/ui/webc/fiori/library";
1978
2637
 
1979
- import { IListItem, IAvatar, Priority } from "sap/ui/webc/main/library";
2638
+ import {
2639
+ IListItem,
2640
+ IAvatar,
2641
+ Priority,
2642
+ WrappingType,
2643
+ } from "sap/ui/webc/main/library";
1980
2644
 
1981
2645
  import Control from "sap/ui/core/Control";
1982
2646
 
@@ -1997,13 +2661,13 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
1997
2661
  *
1998
2662
  *
1999
2663
  *
2000
- * The component has a rich set of various properties that allows the user to set `avatar`, `heading`, descriptive
2001
- * `content` and `footnotes` to fully describe a notification.
2664
+ * The component has a rich set of various properties that allows the user to set `avatar`, `titleText`,
2665
+ * descriptive `content` and `footnotes` to fully describe a notification.
2002
2666
  *
2003
2667
  *
2004
2668
  * The user can:
2005
2669
  * - display a `Close` button
2006
- * - can control whether the `heading` and `description` should wrap or truncate and display a `ShowMore`
2670
+ * - can control whether the `titleText` and `description` should wrap or truncate and display a `ShowMore`
2007
2671
  * button to switch between less and more information
2008
2672
  * - add custom actions by using the `sap.ui.webc.fiori.NotificationAction` component
2009
2673
  *
@@ -2014,7 +2678,7 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
2014
2678
  * CSS Shadow Parts
2015
2679
  * allow developers to style elements inside the Shadow DOM.
2016
2680
  * The `sap.ui.webc.fiori.NotificationListItem` exposes the following CSS Shadow Parts:
2017
- * - heading - Used to style the heading of the notification list item
2681
+ * - title-text - Used to style the titleText of the notification list item
2018
2682
  */
2019
2683
  export default class NotificationListItem
2020
2684
  extends WebComponent
@@ -2052,6 +2716,31 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
2052
2716
  mSettings?: $NotificationListItemSettings
2053
2717
  );
2054
2718
 
2719
+ /**
2720
+ * Creates a new subclass of class sap.ui.webc.fiori.NotificationListItem with name `sClassName` and enriches
2721
+ * it with the information contained in `oClassInfo`.
2722
+ *
2723
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
2724
+ */
2725
+ static extend<T extends Record<string, unknown>>(
2726
+ /**
2727
+ * Name of the class being created
2728
+ */
2729
+ sClassName: string,
2730
+ /**
2731
+ * Object literal with information about the class
2732
+ */
2733
+ oClassInfo?: sap.ClassInfo<T, NotificationListItem>,
2734
+ /**
2735
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2736
+ * used by this class
2737
+ */
2738
+ FNMetaImpl?: Function
2739
+ ): Function;
2740
+ /**
2741
+ * Returns a metadata object for class sap.ui.webc.fiori.NotificationListItem.
2742
+ */
2743
+ static getMetadata(): WebComponentMetadata;
2055
2744
  /**
2056
2745
  * Adds some action to the aggregation {@link #getActions actions}.
2057
2746
  */
@@ -2140,27 +2829,6 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
2140
2829
  */
2141
2830
  oListener?: object
2142
2831
  ): this;
2143
- /**
2144
- * Creates a new subclass of class sap.ui.webc.fiori.NotificationListItem with name `sClassName` and enriches
2145
- * it with the information contained in `oClassInfo`.
2146
- *
2147
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
2148
- */
2149
- static extend<T extends Record<string, unknown>>(
2150
- /**
2151
- * Name of the class being created
2152
- */
2153
- sClassName: string,
2154
- /**
2155
- * Object literal with information about the class
2156
- */
2157
- oClassInfo?: sap.ClassInfo<T, NotificationListItem>,
2158
- /**
2159
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2160
- * used by this class
2161
- */
2162
- FNMetaImpl?: Function
2163
- ): Function;
2164
2832
  /**
2165
2833
  * Fires event {@link #event:close close} to attached listeners.
2166
2834
  */
@@ -2199,6 +2867,14 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
2199
2867
  * Default value is `false`.
2200
2868
  */
2201
2869
  getBusy(): boolean;
2870
+ /**
2871
+ * Gets current value of property {@link #getBusyDelay busyDelay}.
2872
+ *
2873
+ * Defines the delay in milliseconds, after which the busy indicator will show up for this component.
2874
+ *
2875
+ * Default value is `1000`.
2876
+ */
2877
+ getBusyDelay(): int;
2202
2878
  /**
2203
2879
  * Gets current value of property {@link #getDescription description}.
2204
2880
  *
@@ -2210,21 +2886,9 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
2210
2886
  /**
2211
2887
  * Gets content of aggregation {@link #getFootnotes footnotes}.
2212
2888
  *
2213
- * Defines the elements, dipalyed in the footer of the of the `sap.ui.webc.fiori.NotificationListItem`.
2889
+ * Defines the elements, displayed in the footer of the of the component.
2214
2890
  */
2215
2891
  getFootnotes(): Control[];
2216
- /**
2217
- * Gets current value of property {@link #getHeading heading}.
2218
- *
2219
- * Defines the `heading` of the item.
2220
- *
2221
- * Default value is `empty string`.
2222
- */
2223
- getHeading(): string;
2224
- /**
2225
- * Returns a metadata object for class sap.ui.webc.fiori.NotificationListItem.
2226
- */
2227
- static getMetadata(): WebComponentMetadata;
2228
2892
  /**
2229
2893
  * Gets current value of property {@link #getPriority priority}.
2230
2894
  *
@@ -2242,7 +2906,7 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
2242
2906
  *
2243
2907
  * Defines if the `notification` is new or has been already read.
2244
2908
  *
2245
- * **Note:** if set to `false` the `heading` has bold font, if set to true - it has a normal font.
2909
+ * **Note:** if set to `false` the `titleText` has bold font, if set to true - it has a normal font.
2246
2910
  *
2247
2911
  * Default value is `false`.
2248
2912
  */
@@ -2256,17 +2920,25 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
2256
2920
  */
2257
2921
  getShowClose(): boolean;
2258
2922
  /**
2259
- * Gets current value of property {@link #getWrap wrap}.
2923
+ * Gets current value of property {@link #getTitleText titleText}.
2260
2924
  *
2261
- * Defines if the `heading` and `description` should wrap, they truncate by default.
2925
+ * Defines the `titleText` of the item.
2262
2926
  *
2927
+ * Default value is `empty string`.
2928
+ */
2929
+ getTitleText(): string;
2930
+ /**
2931
+ * Gets current value of property {@link #getWrappingType wrappingType}.
2263
2932
  *
2933
+ * Defines if the `titleText` and `description` should wrap, they truncate by default.
2264
2934
  *
2265
- * **Note:** by default the `heading` and `decription`, and a `ShowMore/Less` button would be displayed.
2266
2935
  *
2267
- * Default value is `false`.
2936
+ *
2937
+ * **Note:** by default the `titleText` and `decription`, and a `ShowMore/Less` button would be displayed.
2938
+ *
2939
+ * Default value is `None`.
2268
2940
  */
2269
- getWrap(): boolean;
2941
+ getWrappingType(): WrappingType | keyof typeof WrappingType;
2270
2942
  /**
2271
2943
  * Checks for the provided `sap.ui.webc.fiori.INotificationAction` in the aggregation {@link #getActions
2272
2944
  * actions}. and returns its index if found or -1 otherwise.
@@ -2372,34 +3044,34 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
2372
3044
  bBusy?: boolean
2373
3045
  ): this;
2374
3046
  /**
2375
- * Sets a new value for property {@link #getDescription description}.
3047
+ * Sets a new value for property {@link #getBusyDelay busyDelay}.
2376
3048
  *
2377
- * Defines the content of the control
3049
+ * Defines the delay in milliseconds, after which the busy indicator will show up for this component.
2378
3050
  *
2379
3051
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2380
3052
  *
2381
- * Default value is `empty string`.
3053
+ * Default value is `1000`.
2382
3054
  */
2383
- setDescription(
3055
+ setBusyDelay(
2384
3056
  /**
2385
- * New value for property `description`
3057
+ * New value for property `busyDelay`
2386
3058
  */
2387
- sDescription?: string
3059
+ iBusyDelay?: int
2388
3060
  ): this;
2389
3061
  /**
2390
- * Sets a new value for property {@link #getHeading heading}.
3062
+ * Sets a new value for property {@link #getDescription description}.
2391
3063
  *
2392
- * Defines the `heading` of the item.
3064
+ * Defines the content of the control
2393
3065
  *
2394
3066
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2395
3067
  *
2396
3068
  * Default value is `empty string`.
2397
3069
  */
2398
- setHeading(
3070
+ setDescription(
2399
3071
  /**
2400
- * New value for property `heading`
3072
+ * New value for property `description`
2401
3073
  */
2402
- sHeading?: string
3074
+ sDescription?: string
2403
3075
  ): this;
2404
3076
  /**
2405
3077
  * Sets a new value for property {@link #getPriority priority}.
@@ -2425,7 +3097,7 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
2425
3097
  *
2426
3098
  * Defines if the `notification` is new or has been already read.
2427
3099
  *
2428
- * **Note:** if set to `false` the `heading` has bold font, if set to true - it has a normal font.
3100
+ * **Note:** if set to `false` the `titleText` has bold font, if set to true - it has a normal font.
2429
3101
  *
2430
3102
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2431
3103
  *
@@ -2453,23 +3125,38 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
2453
3125
  bShowClose?: boolean
2454
3126
  ): this;
2455
3127
  /**
2456
- * Sets a new value for property {@link #getWrap wrap}.
3128
+ * Sets a new value for property {@link #getTitleText titleText}.
3129
+ *
3130
+ * Defines the `titleText` of the item.
3131
+ *
3132
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3133
+ *
3134
+ * Default value is `empty string`.
3135
+ */
3136
+ setTitleText(
3137
+ /**
3138
+ * New value for property `titleText`
3139
+ */
3140
+ sTitleText?: string
3141
+ ): this;
3142
+ /**
3143
+ * Sets a new value for property {@link #getWrappingType wrappingType}.
2457
3144
  *
2458
- * Defines if the `heading` and `description` should wrap, they truncate by default.
3145
+ * Defines if the `titleText` and `description` should wrap, they truncate by default.
2459
3146
  *
2460
3147
  *
2461
3148
  *
2462
- * **Note:** by default the `heading` and `decription`, and a `ShowMore/Less` button would be displayed.
3149
+ * **Note:** by default the `titleText` and `decription`, and a `ShowMore/Less` button would be displayed.
2463
3150
  *
2464
3151
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2465
3152
  *
2466
- * Default value is `false`.
3153
+ * Default value is `None`.
2467
3154
  */
2468
- setWrap(
3155
+ setWrappingType(
2469
3156
  /**
2470
- * New value for property `wrap`
3157
+ * New value for property `wrappingType`
2471
3158
  */
2472
- bWrap?: boolean
3159
+ sWrappingType?: WrappingType | keyof typeof WrappingType
2473
3160
  ): this;
2474
3161
  }
2475
3162
 
@@ -2480,14 +3167,14 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
2480
3167
  busy?: boolean | PropertyBindingInfo;
2481
3168
 
2482
3169
  /**
2483
- * Defines the content of the control
3170
+ * Defines the delay in milliseconds, after which the busy indicator will show up for this component.
2484
3171
  */
2485
- description?: string | PropertyBindingInfo;
3172
+ busyDelay?: int | PropertyBindingInfo;
2486
3173
 
2487
3174
  /**
2488
- * Defines the `heading` of the item.
3175
+ * Defines the content of the control
2489
3176
  */
2490
- heading?: string | PropertyBindingInfo;
3177
+ description?: string | PropertyBindingInfo;
2491
3178
 
2492
3179
  /**
2493
3180
  * Defines the `priority` of the item. Available options are:
@@ -2501,7 +3188,7 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
2501
3188
  /**
2502
3189
  * Defines if the `notification` is new or has been already read.
2503
3190
  *
2504
- * **Note:** if set to `false` the `heading` has bold font, if set to true - it has a normal font.
3191
+ * **Note:** if set to `false` the `titleText` has bold font, if set to true - it has a normal font.
2505
3192
  */
2506
3193
  read?: boolean | PropertyBindingInfo;
2507
3194
 
@@ -2511,13 +3198,20 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
2511
3198
  showClose?: boolean | PropertyBindingInfo;
2512
3199
 
2513
3200
  /**
2514
- * Defines if the `heading` and `description` should wrap, they truncate by default.
3201
+ * Defines the `titleText` of the item.
3202
+ */
3203
+ titleText?: string | PropertyBindingInfo;
3204
+
3205
+ /**
3206
+ * Defines if the `titleText` and `description` should wrap, they truncate by default.
2515
3207
  *
2516
3208
  *
2517
3209
  *
2518
- * **Note:** by default the `heading` and `decription`, and a `ShowMore/Less` button would be displayed.
3210
+ * **Note:** by default the `titleText` and `decription`, and a `ShowMore/Less` button would be displayed.
2519
3211
  */
2520
- wrap?: boolean | PropertyBindingInfo;
3212
+ wrappingType?:
3213
+ | (WrappingType | keyof typeof WrappingType)
3214
+ | PropertyBindingInfo;
2521
3215
 
2522
3216
  /**
2523
3217
  * Defines the actions, displayed in the top-right area.
@@ -2542,14 +3236,14 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
2542
3236
  avatar?: IAvatar;
2543
3237
 
2544
3238
  /**
2545
- * Defines the elements, dipalyed in the footer of the of the `sap.ui.webc.fiori.NotificationListItem`.
3239
+ * Defines the elements, displayed in the footer of the of the component.
2546
3240
  */
2547
3241
  footnotes?: Control[] | Control | AggregationBindingInfo;
2548
3242
 
2549
3243
  /**
2550
3244
  * Fired when the `Close` button is pressed.
2551
3245
  */
2552
- close?: Function;
3246
+ close?: (oEvent: Event) => void;
2553
3247
  }
2554
3248
  }
2555
3249
 
@@ -2622,6 +3316,31 @@ declare module "sap/ui/webc/fiori/Page" {
2622
3316
  mSettings?: $PageSettings
2623
3317
  );
2624
3318
 
3319
+ /**
3320
+ * Creates a new subclass of class sap.ui.webc.fiori.Page with name `sClassName` and enriches it with the
3321
+ * information contained in `oClassInfo`.
3322
+ *
3323
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
3324
+ */
3325
+ static extend<T extends Record<string, unknown>>(
3326
+ /**
3327
+ * Name of the class being created
3328
+ */
3329
+ sClassName: string,
3330
+ /**
3331
+ * Object literal with information about the class
3332
+ */
3333
+ oClassInfo?: sap.ClassInfo<T, Page>,
3334
+ /**
3335
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3336
+ * used by this class
3337
+ */
3338
+ FNMetaImpl?: Function
3339
+ ): Function;
3340
+ /**
3341
+ * Returns a metadata object for class sap.ui.webc.fiori.Page.
3342
+ */
3343
+ static getMetadata(): WebComponentMetadata;
2625
3344
  /**
2626
3345
  * Adds some content to the aggregation {@link #getContent content}.
2627
3346
  */
@@ -2661,27 +3380,6 @@ declare module "sap/ui/webc/fiori/Page" {
2661
3380
  * Destroys all the header in the aggregation {@link #getHeader header}.
2662
3381
  */
2663
3382
  destroyHeader(): this;
2664
- /**
2665
- * Creates a new subclass of class sap.ui.webc.fiori.Page with name `sClassName` and enriches it with the
2666
- * information contained in `oClassInfo`.
2667
- *
2668
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
2669
- */
2670
- static extend<T extends Record<string, unknown>>(
2671
- /**
2672
- * Name of the class being created
2673
- */
2674
- sClassName: string,
2675
- /**
2676
- * Object literal with information about the class
2677
- */
2678
- oClassInfo?: sap.ClassInfo<T, Page>,
2679
- /**
2680
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2681
- * used by this class
2682
- */
2683
- FNMetaImpl?: Function
2684
- ): Function;
2685
3383
  /**
2686
3384
  * Gets current value of property {@link #getBackgroundDesign backgroundDesign}.
2687
3385
  *
@@ -2751,10 +3449,6 @@ declare module "sap/ui/webc/fiori/Page" {
2751
3449
  * Default value is `false`.
2752
3450
  */
2753
3451
  getHideFooter(): boolean;
2754
- /**
2755
- * Returns a metadata object for class sap.ui.webc.fiori.Page.
2756
- */
2757
- static getMetadata(): WebComponentMetadata;
2758
3452
  /**
2759
3453
  * Gets current value of property {@link #getWidth width}.
2760
3454
  *
@@ -3107,19 +3801,6 @@ declare module "sap/ui/webc/fiori/ProductSwitch" {
3107
3801
  mSettings?: $ProductSwitchSettings
3108
3802
  );
3109
3803
 
3110
- /**
3111
- * Adds some item to the aggregation {@link #getItems items}.
3112
- */
3113
- addItem(
3114
- /**
3115
- * The item to add; if empty, nothing is inserted
3116
- */
3117
- oItem: IProductSwitchItem
3118
- ): this;
3119
- /**
3120
- * Destroys all the items in the aggregation {@link #getItems items}.
3121
- */
3122
- destroyItems(): this;
3123
3804
  /**
3124
3805
  * Creates a new subclass of class sap.ui.webc.fiori.ProductSwitch with name `sClassName` and enriches it
3125
3806
  * with the information contained in `oClassInfo`.
@@ -3141,16 +3822,29 @@ declare module "sap/ui/webc/fiori/ProductSwitch" {
3141
3822
  */
3142
3823
  FNMetaImpl?: Function
3143
3824
  ): Function;
3825
+ /**
3826
+ * Returns a metadata object for class sap.ui.webc.fiori.ProductSwitch.
3827
+ */
3828
+ static getMetadata(): WebComponentMetadata;
3829
+ /**
3830
+ * Adds some item to the aggregation {@link #getItems items}.
3831
+ */
3832
+ addItem(
3833
+ /**
3834
+ * The item to add; if empty, nothing is inserted
3835
+ */
3836
+ oItem: IProductSwitchItem
3837
+ ): this;
3838
+ /**
3839
+ * Destroys all the items in the aggregation {@link #getItems items}.
3840
+ */
3841
+ destroyItems(): this;
3144
3842
  /**
3145
3843
  * Gets content of aggregation {@link #getItems items}.
3146
3844
  *
3147
3845
  * Defines the items of the `sap.ui.webc.fiori.ProductSwitch`.
3148
3846
  */
3149
3847
  getItems(): IProductSwitchItem[];
3150
- /**
3151
- * Returns a metadata object for class sap.ui.webc.fiori.ProductSwitch.
3152
- */
3153
- static getMetadata(): WebComponentMetadata;
3154
3848
  /**
3155
3849
  * Checks for the provided `sap.ui.webc.fiori.IProductSwitchItem` in the aggregation {@link #getItems items}.
3156
3850
  * and returns its index if found or -1 otherwise.
@@ -3269,6 +3963,31 @@ declare module "sap/ui/webc/fiori/ProductSwitchItem" {
3269
3963
  mSettings?: $ProductSwitchItemSettings
3270
3964
  );
3271
3965
 
3966
+ /**
3967
+ * Creates a new subclass of class sap.ui.webc.fiori.ProductSwitchItem with name `sClassName` and enriches
3968
+ * it with the information contained in `oClassInfo`.
3969
+ *
3970
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
3971
+ */
3972
+ static extend<T extends Record<string, unknown>>(
3973
+ /**
3974
+ * Name of the class being created
3975
+ */
3976
+ sClassName: string,
3977
+ /**
3978
+ * Object literal with information about the class
3979
+ */
3980
+ oClassInfo?: sap.ClassInfo<T, ProductSwitchItem>,
3981
+ /**
3982
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3983
+ * used by this class
3984
+ */
3985
+ FNMetaImpl?: Function
3986
+ ): Function;
3987
+ /**
3988
+ * Returns a metadata object for class sap.ui.webc.fiori.ProductSwitchItem.
3989
+ */
3990
+ static getMetadata(): WebComponentMetadata;
3272
3991
  /**
3273
3992
  * Attaches event handler `fnFunction` to the {@link #event:click click} event of this `sap.ui.webc.fiori.ProductSwitchItem`.
3274
3993
  *
@@ -3329,27 +4048,6 @@ declare module "sap/ui/webc/fiori/ProductSwitchItem" {
3329
4048
  */
3330
4049
  oListener?: object
3331
4050
  ): this;
3332
- /**
3333
- * Creates a new subclass of class sap.ui.webc.fiori.ProductSwitchItem with name `sClassName` and enriches
3334
- * it with the information contained in `oClassInfo`.
3335
- *
3336
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
3337
- */
3338
- static extend<T extends Record<string, unknown>>(
3339
- /**
3340
- * Name of the class being created
3341
- */
3342
- sClassName: string,
3343
- /**
3344
- * Object literal with information about the class
3345
- */
3346
- oClassInfo?: sap.ClassInfo<T, ProductSwitchItem>,
3347
- /**
3348
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3349
- * used by this class
3350
- */
3351
- FNMetaImpl?: Function
3352
- ): Function;
3353
4051
  /**
3354
4052
  * Fires event {@link #event:click click} to attached listeners.
3355
4053
  */
@@ -3375,10 +4073,6 @@ declare module "sap/ui/webc/fiori/ProductSwitchItem" {
3375
4073
  * Default value is `empty string`.
3376
4074
  */
3377
4075
  getIcon(): string;
3378
- /**
3379
- * Returns a metadata object for class sap.ui.webc.fiori.ProductSwitchItem.
3380
- */
3381
- static getMetadata(): WebComponentMetadata;
3382
4076
  /**
3383
4077
  * Gets current value of property {@link #getSubtitleText subtitleText}.
3384
4078
  *
@@ -3555,7 +4249,7 @@ declare module "sap/ui/webc/fiori/ProductSwitchItem" {
3555
4249
  * Fired when the `sap.ui.webc.fiori.ProductSwitchItem` is activated either with a click/tap or by using
3556
4250
  * the Enter or Space key.
3557
4251
  */
3558
- click?: Function;
4252
+ click?: (oEvent: Event) => void;
3559
4253
  }
3560
4254
  }
3561
4255
 
@@ -3647,6 +4341,31 @@ declare module "sap/ui/webc/fiori/ShellBar" {
3647
4341
  mSettings?: $ShellBarSettings
3648
4342
  );
3649
4343
 
4344
+ /**
4345
+ * Creates a new subclass of class sap.ui.webc.fiori.ShellBar with name `sClassName` and enriches it with
4346
+ * the information contained in `oClassInfo`.
4347
+ *
4348
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
4349
+ */
4350
+ static extend<T extends Record<string, unknown>>(
4351
+ /**
4352
+ * Name of the class being created
4353
+ */
4354
+ sClassName: string,
4355
+ /**
4356
+ * Object literal with information about the class
4357
+ */
4358
+ oClassInfo?: sap.ClassInfo<T, ShellBar>,
4359
+ /**
4360
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4361
+ * used by this class
4362
+ */
4363
+ FNMetaImpl?: Function
4364
+ ): Function;
4365
+ /**
4366
+ * Returns a metadata object for class sap.ui.webc.fiori.ShellBar.
4367
+ */
4368
+ static getMetadata(): WebComponentMetadata;
3650
4369
  /**
3651
4370
  * Adds some item to the aggregation {@link #getItems items}.
3652
4371
  */
@@ -4041,27 +4760,6 @@ declare module "sap/ui/webc/fiori/ShellBar" {
4041
4760
  */
4042
4761
  oListener?: object
4043
4762
  ): this;
4044
- /**
4045
- * Creates a new subclass of class sap.ui.webc.fiori.ShellBar with name `sClassName` and enriches it with
4046
- * the information contained in `oClassInfo`.
4047
- *
4048
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
4049
- */
4050
- static extend<T extends Record<string, unknown>>(
4051
- /**
4052
- * Name of the class being created
4053
- */
4054
- sClassName: string,
4055
- /**
4056
- * Object literal with information about the class
4057
- */
4058
- oClassInfo?: sap.ClassInfo<T, ShellBar>,
4059
- /**
4060
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4061
- * used by this class
4062
- */
4063
- FNMetaImpl?: Function
4064
- ): Function;
4065
4763
  /**
4066
4764
  * Fires event {@link #event:coPilotClick coPilotClick} to attached listeners.
4067
4765
  */
@@ -4157,7 +4855,7 @@ declare module "sap/ui/webc/fiori/ShellBar" {
4157
4855
  *
4158
4856
  * Defines the `sap.ui.webc.fiori.ShellBar` aditional items.
4159
4857
  *
4160
- * **Note:** You can use the  <ui5-shellbar-item></ui5-shellbar-item>.
4858
+ * **Note:** You can use the <ui5-shellbar-item></ui5-shellbar-item>.
4161
4859
  */
4162
4860
  getItems(): IShellBarItem[];
4163
4861
  /**
@@ -4172,13 +4870,9 @@ declare module "sap/ui/webc/fiori/ShellBar" {
4172
4870
  *
4173
4871
  * Defines the items displayed in menu after a click on the primary title.
4174
4872
  *
4175
- * **Note:** You can use the  <ui5-li></ui5-li> and its ancestors.
4873
+ * **Note:** You can use the <ui5-li></ui5-li> and its ancestors.
4176
4874
  */
4177
4875
  getMenuItems(): IListItem[];
4178
- /**
4179
- * Returns a metadata object for class sap.ui.webc.fiori.ShellBar.
4180
- */
4181
- static getMetadata(): WebComponentMetadata;
4182
4876
  /**
4183
4877
  * Gets current value of property {@link #getNotificationsCount notificationsCount}.
4184
4878
  *
@@ -4510,7 +5204,7 @@ declare module "sap/ui/webc/fiori/ShellBar" {
4510
5204
  /**
4511
5205
  * Defines the `sap.ui.webc.fiori.ShellBar` aditional items.
4512
5206
  *
4513
- * **Note:** You can use the  <ui5-shellbar-item></ui5-shellbar-item>.
5207
+ * **Note:** You can use the <ui5-shellbar-item></ui5-shellbar-item>.
4514
5208
  */
4515
5209
  items?: IShellBarItem[] | IShellBarItem | AggregationBindingInfo;
4516
5210
 
@@ -4523,7 +5217,7 @@ declare module "sap/ui/webc/fiori/ShellBar" {
4523
5217
  /**
4524
5218
  * Defines the items displayed in menu after a click on the primary title.
4525
5219
  *
4526
- * **Note:** You can use the  <ui5-li></ui5-li> and its ancestors.
5220
+ * **Note:** You can use the <ui5-li></ui5-li> and its ancestors.
4527
5221
  */
4528
5222
  menuItems?: IListItem[] | IListItem | AggregationBindingInfo;
4529
5223
 
@@ -4550,34 +5244,34 @@ declare module "sap/ui/webc/fiori/ShellBar" {
4550
5244
  /**
4551
5245
  * Fired, when the co pilot is activated.
4552
5246
  */
4553
- coPilotClick?: Function;
5247
+ coPilotClick?: (oEvent: Event) => void;
4554
5248
 
4555
5249
  /**
4556
5250
  * Fired, when the logo is activated.
4557
5251
  */
4558
- logoClick?: Function;
5252
+ logoClick?: (oEvent: Event) => void;
4559
5253
 
4560
5254
  /**
4561
5255
  * Fired, when a menu item is activated **Note:** You can prevent closing of oveflow popover by calling
4562
5256
  * `event.preventDefault()`.
4563
5257
  */
4564
- menuItemClick?: Function;
5258
+ menuItemClick?: (oEvent: Event) => void;
4565
5259
 
4566
5260
  /**
4567
5261
  * Fired, when the notification icon is activated.
4568
5262
  */
4569
- notificationsClick?: Function;
5263
+ notificationsClick?: (oEvent: Event) => void;
4570
5264
 
4571
5265
  /**
4572
5266
  * Fired, when the product switch icon is activated. **Note:** You can prevent closing of oveflow popover
4573
5267
  * by calling `event.preventDefault()`.
4574
5268
  */
4575
- productSwitchClick?: Function;
5269
+ productSwitchClick?: (oEvent: Event) => void;
4576
5270
 
4577
5271
  /**
4578
5272
  * Fired, when the profile slot is present.
4579
5273
  */
4580
- profileClick?: Function;
5274
+ profileClick?: (oEvent: Event) => void;
4581
5275
  }
4582
5276
  }
4583
5277
 
@@ -4634,6 +5328,31 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
4634
5328
  mSettings?: $ShellBarItemSettings
4635
5329
  );
4636
5330
 
5331
+ /**
5332
+ * Creates a new subclass of class sap.ui.webc.fiori.ShellBarItem with name `sClassName` and enriches it
5333
+ * with the information contained in `oClassInfo`.
5334
+ *
5335
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
5336
+ */
5337
+ static extend<T extends Record<string, unknown>>(
5338
+ /**
5339
+ * Name of the class being created
5340
+ */
5341
+ sClassName: string,
5342
+ /**
5343
+ * Object literal with information about the class
5344
+ */
5345
+ oClassInfo?: sap.ClassInfo<T, ShellBarItem>,
5346
+ /**
5347
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5348
+ * used by this class
5349
+ */
5350
+ FNMetaImpl?: Function
5351
+ ): Function;
5352
+ /**
5353
+ * Returns a metadata object for class sap.ui.webc.fiori.ShellBarItem.
5354
+ */
5355
+ static getMetadata(): WebComponentMetadata;
4637
5356
  /**
4638
5357
  * Attaches event handler `fnFunction` to the {@link #event:itemClick itemClick} event of this `sap.ui.webc.fiori.ShellBarItem`.
4639
5358
  *
@@ -4690,27 +5409,6 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
4690
5409
  */
4691
5410
  oListener?: object
4692
5411
  ): this;
4693
- /**
4694
- * Creates a new subclass of class sap.ui.webc.fiori.ShellBarItem with name `sClassName` and enriches it
4695
- * with the information contained in `oClassInfo`.
4696
- *
4697
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
4698
- */
4699
- static extend<T extends Record<string, unknown>>(
4700
- /**
4701
- * Name of the class being created
4702
- */
4703
- sClassName: string,
4704
- /**
4705
- * Object literal with information about the class
4706
- */
4707
- oClassInfo?: sap.ClassInfo<T, ShellBarItem>,
4708
- /**
4709
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4710
- * used by this class
4711
- */
4712
- FNMetaImpl?: Function
4713
- ): Function;
4714
5412
  /**
4715
5413
  * Fires event {@link #event:itemClick itemClick} to attached listeners.
4716
5414
  *
@@ -4744,10 +5442,6 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
4744
5442
  * Default value is `empty string`.
4745
5443
  */
4746
5444
  getIcon(): string;
4747
- /**
4748
- * Returns a metadata object for class sap.ui.webc.fiori.ShellBarItem.
4749
- */
4750
- static getMetadata(): WebComponentMetadata;
4751
5445
  /**
4752
5446
  * Gets current value of property {@link #getText text}.
4753
5447
  *
@@ -4822,7 +5516,7 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
4822
5516
  /**
4823
5517
  * Fired, when the item is pressed.
4824
5518
  */
4825
- itemClick?: Function;
5519
+ itemClick?: (oEvent: Event) => void;
4826
5520
  }
4827
5521
  }
4828
5522
 
@@ -4898,6 +5592,31 @@ declare module "sap/ui/webc/fiori/SideNavigation" {
4898
5592
  mSettings?: $SideNavigationSettings
4899
5593
  );
4900
5594
 
5595
+ /**
5596
+ * Creates a new subclass of class sap.ui.webc.fiori.SideNavigation with name `sClassName` and enriches
5597
+ * it with the information contained in `oClassInfo`.
5598
+ *
5599
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
5600
+ */
5601
+ static extend<T extends Record<string, unknown>>(
5602
+ /**
5603
+ * Name of the class being created
5604
+ */
5605
+ sClassName: string,
5606
+ /**
5607
+ * Object literal with information about the class
5608
+ */
5609
+ oClassInfo?: sap.ClassInfo<T, SideNavigation>,
5610
+ /**
5611
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5612
+ * used by this class
5613
+ */
5614
+ FNMetaImpl?: Function
5615
+ ): Function;
5616
+ /**
5617
+ * Returns a metadata object for class sap.ui.webc.fiori.SideNavigation.
5618
+ */
5619
+ static getMetadata(): WebComponentMetadata;
4901
5620
  /**
4902
5621
  * Adds some fixedItem to the aggregation {@link #getFixedItems fixedItems}.
4903
5622
  */
@@ -4996,27 +5715,6 @@ declare module "sap/ui/webc/fiori/SideNavigation" {
4996
5715
  */
4997
5716
  oListener?: object
4998
5717
  ): this;
4999
- /**
5000
- * Creates a new subclass of class sap.ui.webc.fiori.SideNavigation with name `sClassName` and enriches
5001
- * it with the information contained in `oClassInfo`.
5002
- *
5003
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
5004
- */
5005
- static extend<T extends Record<string, unknown>>(
5006
- /**
5007
- * Name of the class being created
5008
- */
5009
- sClassName: string,
5010
- /**
5011
- * Object literal with information about the class
5012
- */
5013
- oClassInfo?: sap.ClassInfo<T, SideNavigation>,
5014
- /**
5015
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5016
- * used by this class
5017
- */
5018
- FNMetaImpl?: Function
5019
- ): Function;
5020
5718
  /**
5021
5719
  * Fires event {@link #event:selectionChange selectionChange} to attached listeners.
5022
5720
  */
@@ -5068,10 +5766,6 @@ declare module "sap/ui/webc/fiori/SideNavigation" {
5068
5766
  * items, nested inside the items.
5069
5767
  */
5070
5768
  getItems(): ISideNavigationItem[];
5071
- /**
5072
- * Returns a metadata object for class sap.ui.webc.fiori.SideNavigation.
5073
- */
5074
- static getMetadata(): WebComponentMetadata;
5075
5769
  /**
5076
5770
  * Checks for the provided `sap.ui.webc.fiori.ISideNavigationItem` in the aggregation {@link #getFixedItems
5077
5771
  * fixedItems}. and returns its index if found or -1 otherwise.
@@ -5250,7 +5944,7 @@ declare module "sap/ui/webc/fiori/SideNavigation" {
5250
5944
  /**
5251
5945
  * Fired when the selection has changed via user interaction
5252
5946
  */
5253
- selectionChange?: Function;
5947
+ selectionChange?: (oEvent: Event) => void;
5254
5948
  }
5255
5949
  }
5256
5950
 
@@ -5316,19 +6010,6 @@ declare module "sap/ui/webc/fiori/SideNavigationItem" {
5316
6010
  mSettings?: $SideNavigationItemSettings
5317
6011
  );
5318
6012
 
5319
- /**
5320
- * Adds some item to the aggregation {@link #getItems items}.
5321
- */
5322
- addItem(
5323
- /**
5324
- * The item to add; if empty, nothing is inserted
5325
- */
5326
- oItem: ISideNavigationSubItem
5327
- ): this;
5328
- /**
5329
- * Destroys all the items in the aggregation {@link #getItems items}.
5330
- */
5331
- destroyItems(): this;
5332
6013
  /**
5333
6014
  * Creates a new subclass of class sap.ui.webc.fiori.SideNavigationItem with name `sClassName` and enriches
5334
6015
  * it with the information contained in `oClassInfo`.
@@ -5351,13 +6032,30 @@ declare module "sap/ui/webc/fiori/SideNavigationItem" {
5351
6032
  FNMetaImpl?: Function
5352
6033
  ): Function;
5353
6034
  /**
5354
- * Gets current value of property {@link #getExpanded expanded}.
5355
- *
5356
- * Defines if the item is expanded
5357
- *
5358
- * Default value is `false`.
6035
+ * Returns a metadata object for class sap.ui.webc.fiori.SideNavigationItem.
5359
6036
  */
5360
- getExpanded(): boolean;
6037
+ static getMetadata(): WebComponentMetadata;
6038
+ /**
6039
+ * Adds some item to the aggregation {@link #getItems items}.
6040
+ */
6041
+ addItem(
6042
+ /**
6043
+ * The item to add; if empty, nothing is inserted
6044
+ */
6045
+ oItem: ISideNavigationSubItem
6046
+ ): this;
6047
+ /**
6048
+ * Destroys all the items in the aggregation {@link #getItems items}.
6049
+ */
6050
+ destroyItems(): this;
6051
+ /**
6052
+ * Gets current value of property {@link #getExpanded expanded}.
6053
+ *
6054
+ * Defines if the item is expanded
6055
+ *
6056
+ * Default value is `false`.
6057
+ */
6058
+ getExpanded(): boolean;
5361
6059
  /**
5362
6060
  * Gets current value of property {@link #getIcon icon}.
5363
6061
  *
@@ -5377,10 +6075,6 @@ declare module "sap/ui/webc/fiori/SideNavigationItem" {
5377
6075
  * If you wish to nest menus, you can pass inner menu items to the default slot.
5378
6076
  */
5379
6077
  getItems(): ISideNavigationSubItem[];
5380
- /**
5381
- * Returns a metadata object for class sap.ui.webc.fiori.SideNavigationItem.
5382
- */
5383
- static getMetadata(): WebComponentMetadata;
5384
6078
  /**
5385
6079
  * Gets current value of property {@link #getSelected selected}.
5386
6080
  *
@@ -5654,6 +6348,10 @@ declare module "sap/ui/webc/fiori/SideNavigationSubItem" {
5654
6348
  */
5655
6349
  FNMetaImpl?: Function
5656
6350
  ): Function;
6351
+ /**
6352
+ * Returns a metadata object for class sap.ui.webc.fiori.SideNavigationSubItem.
6353
+ */
6354
+ static getMetadata(): WebComponentMetadata;
5657
6355
  /**
5658
6356
  * Gets current value of property {@link #getIcon icon}.
5659
6357
  *
@@ -5667,10 +6365,6 @@ declare module "sap/ui/webc/fiori/SideNavigationSubItem" {
5667
6365
  * Default value is `empty string`.
5668
6366
  */
5669
6367
  getIcon(): string;
5670
- /**
5671
- * Returns a metadata object for class sap.ui.webc.fiori.SideNavigationSubItem.
5672
- */
5673
- static getMetadata(): WebComponentMetadata;
5674
6368
  /**
5675
6369
  * Gets current value of property {@link #getSelected selected}.
5676
6370
  *
@@ -5769,7 +6463,7 @@ declare module "sap/ui/webc/fiori/Timeline" {
5769
6463
  $WebComponentSettings,
5770
6464
  } from "sap/ui/webc/common/WebComponent";
5771
6465
 
5772
- import { ITimelineItem } from "sap/ui/webc/fiori/library";
6466
+ import { ITimelineItem, TimelineLayout } from "sap/ui/webc/fiori/library";
5773
6467
 
5774
6468
  import { CSSSize } from "sap/ui/core/library";
5775
6469
 
@@ -5825,19 +6519,6 @@ declare module "sap/ui/webc/fiori/Timeline" {
5825
6519
  mSettings?: $TimelineSettings
5826
6520
  );
5827
6521
 
5828
- /**
5829
- * Adds some item to the aggregation {@link #getItems items}.
5830
- */
5831
- addItem(
5832
- /**
5833
- * The item to add; if empty, nothing is inserted
5834
- */
5835
- oItem: ITimelineItem
5836
- ): this;
5837
- /**
5838
- * Destroys all the items in the aggregation {@link #getItems items}.
5839
- */
5840
- destroyItems(): this;
5841
6522
  /**
5842
6523
  * Creates a new subclass of class sap.ui.webc.fiori.Timeline with name `sClassName` and enriches it with
5843
6524
  * the information contained in `oClassInfo`.
@@ -5859,6 +6540,23 @@ declare module "sap/ui/webc/fiori/Timeline" {
5859
6540
  */
5860
6541
  FNMetaImpl?: Function
5861
6542
  ): Function;
6543
+ /**
6544
+ * Returns a metadata object for class sap.ui.webc.fiori.Timeline.
6545
+ */
6546
+ static getMetadata(): WebComponentMetadata;
6547
+ /**
6548
+ * Adds some item to the aggregation {@link #getItems items}.
6549
+ */
6550
+ addItem(
6551
+ /**
6552
+ * The item to add; if empty, nothing is inserted
6553
+ */
6554
+ oItem: ITimelineItem
6555
+ ): this;
6556
+ /**
6557
+ * Destroys all the items in the aggregation {@link #getItems items}.
6558
+ */
6559
+ destroyItems(): this;
5862
6560
  /**
5863
6561
  * Gets current value of property {@link #getHeight height}.
5864
6562
  *
@@ -5872,9 +6570,19 @@ declare module "sap/ui/webc/fiori/Timeline" {
5872
6570
  */
5873
6571
  getItems(): ITimelineItem[];
5874
6572
  /**
5875
- * Returns a metadata object for class sap.ui.webc.fiori.Timeline.
6573
+ * Gets current value of property {@link #getLayout layout}.
6574
+ *
6575
+ * Defines the items orientation.
6576
+ *
6577
+ *
6578
+ *
6579
+ * **Note:** Available options are:
6580
+ * - `Vertical`
6581
+ * - `Horizontal`
6582
+ *
6583
+ * Default value is `Vertical`.
5876
6584
  */
5877
- static getMetadata(): WebComponentMetadata;
6585
+ getLayout(): TimelineLayout | keyof typeof TimelineLayout;
5878
6586
  /**
5879
6587
  * Gets current value of property {@link #getWidth width}.
5880
6588
  *
@@ -5934,6 +6642,27 @@ declare module "sap/ui/webc/fiori/Timeline" {
5934
6642
  */
5935
6643
  sHeight?: CSSSize
5936
6644
  ): this;
6645
+ /**
6646
+ * Sets a new value for property {@link #getLayout layout}.
6647
+ *
6648
+ * Defines the items orientation.
6649
+ *
6650
+ *
6651
+ *
6652
+ * **Note:** Available options are:
6653
+ * - `Vertical`
6654
+ * - `Horizontal`
6655
+ *
6656
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6657
+ *
6658
+ * Default value is `Vertical`.
6659
+ */
6660
+ setLayout(
6661
+ /**
6662
+ * New value for property `layout`
6663
+ */
6664
+ sLayout?: TimelineLayout | keyof typeof TimelineLayout
6665
+ ): this;
5937
6666
  /**
5938
6667
  * Sets a new value for property {@link #getWidth width}.
5939
6668
  *
@@ -5955,6 +6684,19 @@ declare module "sap/ui/webc/fiori/Timeline" {
5955
6684
  */
5956
6685
  height?: CSSSize | PropertyBindingInfo;
5957
6686
 
6687
+ /**
6688
+ * Defines the items orientation.
6689
+ *
6690
+ *
6691
+ *
6692
+ * **Note:** Available options are:
6693
+ * - `Vertical`
6694
+ * - `Horizontal`
6695
+ */
6696
+ layout?:
6697
+ | (TimelineLayout | keyof typeof TimelineLayout)
6698
+ | PropertyBindingInfo;
6699
+
5958
6700
  /**
5959
6701
  * Defines the width of the control
5960
6702
  */
@@ -6029,6 +6771,31 @@ declare module "sap/ui/webc/fiori/TimelineItem" {
6029
6771
  mSettings?: $TimelineItemSettings
6030
6772
  );
6031
6773
 
6774
+ /**
6775
+ * Creates a new subclass of class sap.ui.webc.fiori.TimelineItem with name `sClassName` and enriches it
6776
+ * with the information contained in `oClassInfo`.
6777
+ *
6778
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
6779
+ */
6780
+ static extend<T extends Record<string, unknown>>(
6781
+ /**
6782
+ * Name of the class being created
6783
+ */
6784
+ sClassName: string,
6785
+ /**
6786
+ * Object literal with information about the class
6787
+ */
6788
+ oClassInfo?: sap.ClassInfo<T, TimelineItem>,
6789
+ /**
6790
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6791
+ * used by this class
6792
+ */
6793
+ FNMetaImpl?: Function
6794
+ ): Function;
6795
+ /**
6796
+ * Returns a metadata object for class sap.ui.webc.fiori.TimelineItem.
6797
+ */
6798
+ static getMetadata(): WebComponentMetadata;
6032
6799
  /**
6033
6800
  * Adds some content to the aggregation {@link #getContent content}.
6034
6801
  */
@@ -6039,16 +6806,16 @@ declare module "sap/ui/webc/fiori/TimelineItem" {
6039
6806
  oContent: Control
6040
6807
  ): this;
6041
6808
  /**
6042
- * Attaches event handler `fnFunction` to the {@link #event:itemNameClick itemNameClick} event of this `sap.ui.webc.fiori.TimelineItem`.
6809
+ * Attaches event handler `fnFunction` to the {@link #event:nameClick nameClick} event of this `sap.ui.webc.fiori.TimelineItem`.
6043
6810
  *
6044
6811
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
6045
6812
  * otherwise it will be bound to this `sap.ui.webc.fiori.TimelineItem` itself.
6046
6813
  *
6047
6814
  * Fired when the item name is pressed either with a click/tap or by using the Enter or Space key.
6048
6815
  *
6049
- * **Note:** The event will not be fired if the `item-name-clickable` attribute is not set.
6816
+ * **Note:** The event will not be fired if the `name-clickable` attribute is not set.
6050
6817
  */
6051
- attachItemNameClick(
6818
+ attachNameClick(
6052
6819
  /**
6053
6820
  * An application-specific payload object that will be passed to the event handler along with the event
6054
6821
  * object when firing the event
@@ -6064,16 +6831,16 @@ declare module "sap/ui/webc/fiori/TimelineItem" {
6064
6831
  oListener?: object
6065
6832
  ): this;
6066
6833
  /**
6067
- * Attaches event handler `fnFunction` to the {@link #event:itemNameClick itemNameClick} event of this `sap.ui.webc.fiori.TimelineItem`.
6834
+ * Attaches event handler `fnFunction` to the {@link #event:nameClick nameClick} event of this `sap.ui.webc.fiori.TimelineItem`.
6068
6835
  *
6069
6836
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
6070
6837
  * otherwise it will be bound to this `sap.ui.webc.fiori.TimelineItem` itself.
6071
6838
  *
6072
6839
  * Fired when the item name is pressed either with a click/tap or by using the Enter or Space key.
6073
6840
  *
6074
- * **Note:** The event will not be fired if the `item-name-clickable` attribute is not set.
6841
+ * **Note:** The event will not be fired if the `name-clickable` attribute is not set.
6075
6842
  */
6076
- attachItemNameClick(
6843
+ attachNameClick(
6077
6844
  /**
6078
6845
  * The function to be called when the event occurs
6079
6846
  */
@@ -6088,12 +6855,11 @@ declare module "sap/ui/webc/fiori/TimelineItem" {
6088
6855
  */
6089
6856
  destroyContent(): this;
6090
6857
  /**
6091
- * Detaches event handler `fnFunction` from the {@link #event:itemNameClick itemNameClick} event of this
6092
- * `sap.ui.webc.fiori.TimelineItem`.
6858
+ * Detaches event handler `fnFunction` from the {@link #event:nameClick nameClick} event of this `sap.ui.webc.fiori.TimelineItem`.
6093
6859
  *
6094
6860
  * The passed function and listener object must match the ones used for event registration.
6095
6861
  */
6096
- detachItemNameClick(
6862
+ detachNameClick(
6097
6863
  /**
6098
6864
  * The function to be called, when the event occurs
6099
6865
  */
@@ -6104,30 +6870,9 @@ declare module "sap/ui/webc/fiori/TimelineItem" {
6104
6870
  oListener?: object
6105
6871
  ): this;
6106
6872
  /**
6107
- * Creates a new subclass of class sap.ui.webc.fiori.TimelineItem with name `sClassName` and enriches it
6108
- * with the information contained in `oClassInfo`.
6109
- *
6110
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
6111
- */
6112
- static extend<T extends Record<string, unknown>>(
6113
- /**
6114
- * Name of the class being created
6115
- */
6116
- sClassName: string,
6117
- /**
6118
- * Object literal with information about the class
6119
- */
6120
- oClassInfo?: sap.ClassInfo<T, TimelineItem>,
6121
- /**
6122
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6123
- * used by this class
6124
- */
6125
- FNMetaImpl?: Function
6126
- ): Function;
6127
- /**
6128
- * Fires event {@link #event:itemNameClick itemNameClick} to attached listeners.
6873
+ * Fires event {@link #event:nameClick nameClick} to attached listeners.
6129
6874
  */
6130
- fireItemNameClick(
6875
+ fireNameClick(
6131
6876
  /**
6132
6877
  * Parameters to pass along with the event
6133
6878
  */
@@ -6153,25 +6898,21 @@ declare module "sap/ui/webc/fiori/TimelineItem" {
6153
6898
  */
6154
6899
  getIcon(): string;
6155
6900
  /**
6156
- * Gets current value of property {@link #getItemName itemName}.
6901
+ * Gets current value of property {@link #getName name}.
6157
6902
  *
6158
- * Defines the name of the item.
6903
+ * Defines the name of the item, displayed before the `title-text`.
6159
6904
  *
6160
6905
  * Default value is `empty string`.
6161
6906
  */
6162
- getItemName(): string;
6907
+ getName(): string;
6163
6908
  /**
6164
- * Gets current value of property {@link #getItemNameClickable itemNameClickable}.
6909
+ * Gets current value of property {@link #getNameClickable nameClickable}.
6165
6910
  *
6166
- * Defines whether the `itemName` is clickable.
6911
+ * Defines if the `name` is clickable.
6167
6912
  *
6168
6913
  * Default value is `false`.
6169
6914
  */
6170
- getItemNameClickable(): boolean;
6171
- /**
6172
- * Returns a metadata object for class sap.ui.webc.fiori.TimelineItem.
6173
- */
6174
- static getMetadata(): WebComponentMetadata;
6915
+ getNameClickable(): boolean;
6175
6916
  /**
6176
6917
  * Gets current value of property {@link #getSubtitleText subtitleText}.
6177
6918
  *
@@ -6249,34 +6990,34 @@ declare module "sap/ui/webc/fiori/TimelineItem" {
6249
6990
  sIcon?: string
6250
6991
  ): this;
6251
6992
  /**
6252
- * Sets a new value for property {@link #getItemName itemName}.
6993
+ * Sets a new value for property {@link #getName name}.
6253
6994
  *
6254
- * Defines the name of the item.
6995
+ * Defines the name of the item, displayed before the `title-text`.
6255
6996
  *
6256
6997
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6257
6998
  *
6258
6999
  * Default value is `empty string`.
6259
7000
  */
6260
- setItemName(
7001
+ setName(
6261
7002
  /**
6262
- * New value for property `itemName`
7003
+ * New value for property `name`
6263
7004
  */
6264
- sItemName?: string
7005
+ sName?: string
6265
7006
  ): this;
6266
7007
  /**
6267
- * Sets a new value for property {@link #getItemNameClickable itemNameClickable}.
7008
+ * Sets a new value for property {@link #getNameClickable nameClickable}.
6268
7009
  *
6269
- * Defines whether the `itemName` is clickable.
7010
+ * Defines if the `name` is clickable.
6270
7011
  *
6271
7012
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6272
7013
  *
6273
7014
  * Default value is `false`.
6274
7015
  */
6275
- setItemNameClickable(
7016
+ setNameClickable(
6276
7017
  /**
6277
- * New value for property `itemNameClickable`
7018
+ * New value for property `nameClickable`
6278
7019
  */
6279
- bItemNameClickable?: boolean
7020
+ bNameClickable?: boolean
6280
7021
  ): this;
6281
7022
  /**
6282
7023
  * Sets a new value for property {@link #getSubtitleText subtitleText}.
@@ -6322,14 +7063,14 @@ declare module "sap/ui/webc/fiori/TimelineItem" {
6322
7063
  icon?: string | PropertyBindingInfo;
6323
7064
 
6324
7065
  /**
6325
- * Defines the name of the item.
7066
+ * Defines the name of the item, displayed before the `title-text`.
6326
7067
  */
6327
- itemName?: string | PropertyBindingInfo;
7068
+ name?: string | PropertyBindingInfo;
6328
7069
 
6329
7070
  /**
6330
- * Defines whether the `itemName` is clickable.
7071
+ * Defines if the `name` is clickable.
6331
7072
  */
6332
- itemNameClickable?: boolean | PropertyBindingInfo;
7073
+ nameClickable?: boolean | PropertyBindingInfo;
6333
7074
 
6334
7075
  /**
6335
7076
  * Defines the subtitle text of the component.
@@ -6349,9 +7090,9 @@ declare module "sap/ui/webc/fiori/TimelineItem" {
6349
7090
  /**
6350
7091
  * Fired when the item name is pressed either with a click/tap or by using the Enter or Space key.
6351
7092
  *
6352
- * **Note:** The event will not be fired if the `item-name-clickable` attribute is not set.
7093
+ * **Note:** The event will not be fired if the `name-clickable` attribute is not set.
6353
7094
  */
6354
- itemNameClick?: Function;
7095
+ nameClick?: (oEvent: Event) => void;
6355
7096
  }
6356
7097
  }
6357
7098
 
@@ -6417,6 +7158,31 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
6417
7158
  mSettings?: $UploadCollectionSettings
6418
7159
  );
6419
7160
 
7161
+ /**
7162
+ * Creates a new subclass of class sap.ui.webc.fiori.UploadCollection with name `sClassName` and enriches
7163
+ * it with the information contained in `oClassInfo`.
7164
+ *
7165
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
7166
+ */
7167
+ static extend<T extends Record<string, unknown>>(
7168
+ /**
7169
+ * Name of the class being created
7170
+ */
7171
+ sClassName: string,
7172
+ /**
7173
+ * Object literal with information about the class
7174
+ */
7175
+ oClassInfo?: sap.ClassInfo<T, UploadCollection>,
7176
+ /**
7177
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7178
+ * used by this class
7179
+ */
7180
+ FNMetaImpl?: Function
7181
+ ): Function;
7182
+ /**
7183
+ * Returns a metadata object for class sap.ui.webc.fiori.UploadCollection.
7184
+ */
7185
+ static getMetadata(): WebComponentMetadata;
6420
7186
  /**
6421
7187
  * Adds some header to the aggregation {@link #getHeader header}.
6422
7188
  */
@@ -6485,7 +7251,7 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
6485
7251
  oListener?: object
6486
7252
  ): this;
6487
7253
  /**
6488
- * Attaches event handler `fnFunction` to the {@link #event:fileDeleted fileDeleted} event of this `sap.ui.webc.fiori.UploadCollection`.
7254
+ * Attaches event handler `fnFunction` to the {@link #event:itemDelete itemDelete} event of this `sap.ui.webc.fiori.UploadCollection`.
6489
7255
  *
6490
7256
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
6491
7257
  * otherwise it will be bound to this `sap.ui.webc.fiori.UploadCollection` itself.
@@ -6495,7 +7261,7 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
6495
7261
  * **Note:** A Delete button is displayed on each item, when the `sap.ui.webc.fiori.UploadCollection` `mode`
6496
7262
  * property is set to `Delete`.
6497
7263
  */
6498
- attachFileDeleted(
7264
+ attachItemDelete(
6499
7265
  /**
6500
7266
  * An application-specific payload object that will be passed to the event handler along with the event
6501
7267
  * object when firing the event
@@ -6512,7 +7278,7 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
6512
7278
  oListener?: object
6513
7279
  ): this;
6514
7280
  /**
6515
- * Attaches event handler `fnFunction` to the {@link #event:fileDeleted fileDeleted} event of this `sap.ui.webc.fiori.UploadCollection`.
7281
+ * Attaches event handler `fnFunction` to the {@link #event:itemDelete itemDelete} event of this `sap.ui.webc.fiori.UploadCollection`.
6516
7282
  *
6517
7283
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
6518
7284
  * otherwise it will be bound to this `sap.ui.webc.fiori.UploadCollection` itself.
@@ -6522,7 +7288,7 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
6522
7288
  * **Note:** A Delete button is displayed on each item, when the `sap.ui.webc.fiori.UploadCollection` `mode`
6523
7289
  * property is set to `Delete`.
6524
7290
  */
6525
- attachFileDeleted(
7291
+ attachItemDelete(
6526
7292
  /**
6527
7293
  * The function to be called when the event occurs
6528
7294
  */
@@ -6602,11 +7368,11 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
6602
7368
  oListener?: object
6603
7369
  ): this;
6604
7370
  /**
6605
- * Detaches event handler `fnFunction` from the {@link #event:fileDeleted fileDeleted} event of this `sap.ui.webc.fiori.UploadCollection`.
7371
+ * Detaches event handler `fnFunction` from the {@link #event:itemDelete itemDelete} event of this `sap.ui.webc.fiori.UploadCollection`.
6606
7372
  *
6607
7373
  * The passed function and listener object must match the ones used for event registration.
6608
7374
  */
6609
- detachFileDeleted(
7375
+ detachItemDelete(
6610
7376
  /**
6611
7377
  * The function to be called, when the event occurs
6612
7378
  */
@@ -6632,27 +7398,6 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
6632
7398
  */
6633
7399
  oListener?: object
6634
7400
  ): this;
6635
- /**
6636
- * Creates a new subclass of class sap.ui.webc.fiori.UploadCollection with name `sClassName` and enriches
6637
- * it with the information contained in `oClassInfo`.
6638
- *
6639
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
6640
- */
6641
- static extend<T extends Record<string, unknown>>(
6642
- /**
6643
- * Name of the class being created
6644
- */
6645
- sClassName: string,
6646
- /**
6647
- * Object literal with information about the class
6648
- */
6649
- oClassInfo?: sap.ClassInfo<T, UploadCollection>,
6650
- /**
6651
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6652
- * used by this class
6653
- */
6654
- FNMetaImpl?: Function
6655
- ): Function;
6656
7401
  /**
6657
7402
  * Fires event {@link #event:drop drop} to attached listeners.
6658
7403
  */
@@ -6668,9 +7413,9 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
6668
7413
  }
6669
7414
  ): this;
6670
7415
  /**
6671
- * Fires event {@link #event:fileDeleted fileDeleted} to attached listeners.
7416
+ * Fires event {@link #event:itemDelete itemDelete} to attached listeners.
6672
7417
  */
6673
- fireFileDeleted(
7418
+ fireItemDelete(
6674
7419
  /**
6675
7420
  * Parameters to pass along with the event
6676
7421
  */
@@ -6726,10 +7471,6 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
6726
7471
  * **Note:** Use `sap.ui.webc.fiori.UploadCollectionItem` for the intended design.
6727
7472
  */
6728
7473
  getItems(): IUploadCollectionItem[];
6729
- /**
6730
- * Returns a metadata object for class sap.ui.webc.fiori.UploadCollection.
6731
- */
6732
- static getMetadata(): WebComponentMetadata;
6733
7474
  /**
6734
7475
  * Gets current value of property {@link #getMode mode}.
6735
7476
  *
@@ -7011,7 +7752,7 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
7011
7752
  * **Note:** The `drop` event is fired only when elements are dropped within the drag and drop overlay
7012
7753
  * and ignored for the other parts of the `sap.ui.webc.fiori.UploadCollection`.
7013
7754
  */
7014
- drop?: Function;
7755
+ drop?: (oEvent: Event) => void;
7015
7756
 
7016
7757
  /**
7017
7758
  * Fired when the Delete button of any item is pressed.
@@ -7019,12 +7760,12 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
7019
7760
  * **Note:** A Delete button is displayed on each item, when the `sap.ui.webc.fiori.UploadCollection` `mode`
7020
7761
  * property is set to `Delete`.
7021
7762
  */
7022
- fileDeleted?: Function;
7763
+ itemDelete?: (oEvent: Event) => void;
7023
7764
 
7024
7765
  /**
7025
7766
  * Fired when selection is changed by user interaction in `SingleSelect` and `MultiSelect` modes.
7026
7767
  */
7027
- selectionChange?: Function;
7768
+ selectionChange?: (oEvent: Event) => void;
7028
7769
  }
7029
7770
  }
7030
7771
 
@@ -7091,6 +7832,31 @@ declare module "sap/ui/webc/fiori/UploadCollectionItem" {
7091
7832
  mSettings?: $UploadCollectionItemSettings
7092
7833
  );
7093
7834
 
7835
+ /**
7836
+ * Creates a new subclass of class sap.ui.webc.fiori.UploadCollectionItem with name `sClassName` and enriches
7837
+ * it with the information contained in `oClassInfo`.
7838
+ *
7839
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
7840
+ */
7841
+ static extend<T extends Record<string, unknown>>(
7842
+ /**
7843
+ * Name of the class being created
7844
+ */
7845
+ sClassName: string,
7846
+ /**
7847
+ * Object literal with information about the class
7848
+ */
7849
+ oClassInfo?: sap.ClassInfo<T, UploadCollectionItem>,
7850
+ /**
7851
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7852
+ * used by this class
7853
+ */
7854
+ FNMetaImpl?: Function
7855
+ ): Function;
7856
+ /**
7857
+ * Returns a metadata object for class sap.ui.webc.fiori.UploadCollectionItem.
7858
+ */
7859
+ static getMetadata(): WebComponentMetadata;
7094
7860
  /**
7095
7861
  * Adds some content to the aggregation {@link #getContent content}.
7096
7862
  */
@@ -7359,27 +8125,6 @@ declare module "sap/ui/webc/fiori/UploadCollectionItem" {
7359
8125
  */
7360
8126
  oListener?: object
7361
8127
  ): this;
7362
- /**
7363
- * Creates a new subclass of class sap.ui.webc.fiori.UploadCollectionItem with name `sClassName` and enriches
7364
- * it with the information contained in `oClassInfo`.
7365
- *
7366
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
7367
- */
7368
- static extend<T extends Record<string, unknown>>(
7369
- /**
7370
- * Name of the class being created
7371
- */
7372
- sClassName: string,
7373
- /**
7374
- * Object literal with information about the class
7375
- */
7376
- oClassInfo?: sap.ClassInfo<T, UploadCollectionItem>,
7377
- /**
7378
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7379
- * used by this class
7380
- */
7381
- FNMetaImpl?: Function
7382
- ): Function;
7383
8128
  /**
7384
8129
  * Fires event {@link #event:fileNameClick fileNameClick} to attached listeners.
7385
8130
  */
@@ -7422,10 +8167,18 @@ declare module "sap/ui/webc/fiori/UploadCollectionItem" {
7422
8167
  * Hold the description of the `sap.ui.webc.fiori.UploadCollectionItem`. Will be shown below the file name.
7423
8168
  */
7424
8169
  getContent(): Control[];
8170
+ /**
8171
+ * Gets current value of property {@link #getDisableDeleteButton disableDeleteButton}.
8172
+ *
8173
+ * Disables the delete button.
8174
+ *
8175
+ * Default value is `false`.
8176
+ */
8177
+ getDisableDeleteButton(): boolean;
7425
8178
  /**
7426
8179
  * Gets current value of property {@link #getFile file}.
7427
8180
  *
7428
- * Holds `File`, associated with this item.
8181
+ * Holds an instance of `File` associated with this item.
7429
8182
  */
7430
8183
  getFile(): object;
7431
8184
  /**
@@ -7445,35 +8198,23 @@ declare module "sap/ui/webc/fiori/UploadCollectionItem" {
7445
8198
  */
7446
8199
  getFileNameClickable(): boolean;
7447
8200
  /**
7448
- * Returns a metadata object for class sap.ui.webc.fiori.UploadCollectionItem.
7449
- */
7450
- static getMetadata(): WebComponentMetadata;
7451
- /**
7452
- * Gets current value of property {@link #getNoDelete noDelete}.
8201
+ * Gets current value of property {@link #getHideRetryButton hideRetryButton}.
7453
8202
  *
7454
- * Removes delete option from `sap.ui.webc.fiori.UploadCollection` with `mode` `Delete` for this item.
8203
+ * Hides the retry button when `uploadState` property is `Error`.
7455
8204
  *
7456
8205
  * Default value is `false`.
7457
8206
  */
7458
- getNoDelete(): boolean;
8207
+ getHideRetryButton(): boolean;
7459
8208
  /**
7460
- * Gets current value of property {@link #getNoRetry noRetry}.
8209
+ * Gets current value of property {@link #getHideTerminateButton hideTerminateButton}.
7461
8210
  *
7462
- * Hides the retry button when `uploadState` property is `Error`.
8211
+ * Hides the terminate button when `uploadState` property is `Uploading`.
7463
8212
  *
7464
8213
  * Default value is `false`.
7465
8214
  */
7466
- getNoRetry(): boolean;
8215
+ getHideTerminateButton(): boolean;
7467
8216
  /**
7468
- * Gets current value of property {@link #getNoTerminate noTerminate}.
7469
- *
7470
- * Hides the terminate button when `uploadState` property is `Uploading`.
7471
- *
7472
- * Default value is `false`.
7473
- */
7474
- getNoTerminate(): boolean;
7475
- /**
7476
- * Gets current value of property {@link #getProgress progress}.
8217
+ * Gets current value of property {@link #getProgress progress}.
7477
8218
  *
7478
8219
  * The upload progress in percentage.
7479
8220
  *
@@ -7540,10 +8281,25 @@ declare module "sap/ui/webc/fiori/UploadCollectionItem" {
7540
8281
  */
7541
8282
  vContent: int | string | Control
7542
8283
  ): Control;
8284
+ /**
8285
+ * Sets a new value for property {@link #getDisableDeleteButton disableDeleteButton}.
8286
+ *
8287
+ * Disables the delete button.
8288
+ *
8289
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8290
+ *
8291
+ * Default value is `false`.
8292
+ */
8293
+ setDisableDeleteButton(
8294
+ /**
8295
+ * New value for property `disableDeleteButton`
8296
+ */
8297
+ bDisableDeleteButton?: boolean
8298
+ ): this;
7543
8299
  /**
7544
8300
  * Sets a new value for property {@link #getFile file}.
7545
8301
  *
7546
- * Holds `File`, associated with this item.
8302
+ * Holds an instance of `File` associated with this item.
7547
8303
  *
7548
8304
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7549
8305
  */
@@ -7584,22 +8340,7 @@ declare module "sap/ui/webc/fiori/UploadCollectionItem" {
7584
8340
  bFileNameClickable?: boolean
7585
8341
  ): this;
7586
8342
  /**
7587
- * Sets a new value for property {@link #getNoDelete noDelete}.
7588
- *
7589
- * Removes delete option from `sap.ui.webc.fiori.UploadCollection` with `mode` `Delete` for this item.
7590
- *
7591
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7592
- *
7593
- * Default value is `false`.
7594
- */
7595
- setNoDelete(
7596
- /**
7597
- * New value for property `noDelete`
7598
- */
7599
- bNoDelete?: boolean
7600
- ): this;
7601
- /**
7602
- * Sets a new value for property {@link #getNoRetry noRetry}.
8343
+ * Sets a new value for property {@link #getHideRetryButton hideRetryButton}.
7603
8344
  *
7604
8345
  * Hides the retry button when `uploadState` property is `Error`.
7605
8346
  *
@@ -7607,14 +8348,14 @@ declare module "sap/ui/webc/fiori/UploadCollectionItem" {
7607
8348
  *
7608
8349
  * Default value is `false`.
7609
8350
  */
7610
- setNoRetry(
8351
+ setHideRetryButton(
7611
8352
  /**
7612
- * New value for property `noRetry`
8353
+ * New value for property `hideRetryButton`
7613
8354
  */
7614
- bNoRetry?: boolean
8355
+ bHideRetryButton?: boolean
7615
8356
  ): this;
7616
8357
  /**
7617
- * Sets a new value for property {@link #getNoTerminate noTerminate}.
8358
+ * Sets a new value for property {@link #getHideTerminateButton hideTerminateButton}.
7618
8359
  *
7619
8360
  * Hides the terminate button when `uploadState` property is `Uploading`.
7620
8361
  *
@@ -7622,11 +8363,11 @@ declare module "sap/ui/webc/fiori/UploadCollectionItem" {
7622
8363
  *
7623
8364
  * Default value is `false`.
7624
8365
  */
7625
- setNoTerminate(
8366
+ setHideTerminateButton(
7626
8367
  /**
7627
- * New value for property `noTerminate`
8368
+ * New value for property `hideTerminateButton`
7628
8369
  */
7629
- bNoTerminate?: boolean
8370
+ bHideTerminateButton?: boolean
7630
8371
  ): this;
7631
8372
  /**
7632
8373
  * Sets a new value for property {@link #getProgress progress}.
@@ -7650,116 +8391,470 @@ declare module "sap/ui/webc/fiori/UploadCollectionItem" {
7650
8391
  */
7651
8392
  setThumbnail(
7652
8393
  /**
7653
- * The thumbnail to set
8394
+ * The thumbnail to set
8395
+ */
8396
+ oThumbnail: Control
8397
+ ): this;
8398
+ /**
8399
+ * Sets a new value for property {@link #getUploadState uploadState}.
8400
+ *
8401
+ * If set to `Uploading` or `Error`, a progress indicator showing the `progress` is displayed. Also if set
8402
+ * to `Error`, a refresh button is shown. When this icon is pressed `retry` event is fired. If set to `Uploading`,
8403
+ * a terminate button is shown. When this icon is pressed `terminate` event is fired.
8404
+ *
8405
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8406
+ *
8407
+ * Default value is `Ready`.
8408
+ */
8409
+ setUploadState(
8410
+ /**
8411
+ * New value for property `uploadState`
8412
+ */
8413
+ sUploadState?: UploadState | keyof typeof UploadState
8414
+ ): this;
8415
+ }
8416
+
8417
+ export interface $UploadCollectionItemSettings extends $WebComponentSettings {
8418
+ /**
8419
+ * Disables the delete button.
8420
+ */
8421
+ disableDeleteButton?: boolean | PropertyBindingInfo;
8422
+
8423
+ /**
8424
+ * Holds an instance of `File` associated with this item.
8425
+ */
8426
+ file?: object | PropertyBindingInfo;
8427
+
8428
+ /**
8429
+ * The name of the file.
8430
+ */
8431
+ fileName?: string | PropertyBindingInfo;
8432
+
8433
+ /**
8434
+ * If set to `true` the file name will be clickable and it will fire `file-name-click` event upon click.
8435
+ */
8436
+ fileNameClickable?: boolean | PropertyBindingInfo;
8437
+
8438
+ /**
8439
+ * Hides the retry button when `uploadState` property is `Error`.
8440
+ */
8441
+ hideRetryButton?: boolean | PropertyBindingInfo;
8442
+
8443
+ /**
8444
+ * Hides the terminate button when `uploadState` property is `Uploading`.
8445
+ */
8446
+ hideTerminateButton?: boolean | PropertyBindingInfo;
8447
+
8448
+ /**
8449
+ * The upload progress in percentage.
8450
+ *
8451
+ * **Note:** Expected values are in the interval [0, 100].
8452
+ */
8453
+ progress?: int | PropertyBindingInfo;
8454
+
8455
+ /**
8456
+ * If set to `Uploading` or `Error`, a progress indicator showing the `progress` is displayed. Also if set
8457
+ * to `Error`, a refresh button is shown. When this icon is pressed `retry` event is fired. If set to `Uploading`,
8458
+ * a terminate button is shown. When this icon is pressed `terminate` event is fired.
8459
+ */
8460
+ uploadState?:
8461
+ | (UploadState | keyof typeof UploadState)
8462
+ | PropertyBindingInfo;
8463
+
8464
+ /**
8465
+ * Hold the description of the `sap.ui.webc.fiori.UploadCollectionItem`. Will be shown below the file name.
8466
+ */
8467
+ content?: Control[] | Control | AggregationBindingInfo;
8468
+
8469
+ /**
8470
+ * A thumbnail, which will be shown in the beginning of the `sap.ui.webc.fiori.UploadCollectionItem`.
8471
+ *
8472
+ * **Note:** Use `sap.ui.webc.main.Icon` or `img` for the intended design.
8473
+ */
8474
+ thumbnail?: Control;
8475
+
8476
+ /**
8477
+ * Fired when the file name is clicked.
8478
+ *
8479
+ * **Note:** This event is only available when `fileNameClickable` property is `true`.
8480
+ */
8481
+ fileNameClick?: (oEvent: Event) => void;
8482
+
8483
+ /**
8484
+ * Fired when the `fileName` property gets changed.
8485
+ *
8486
+ * **Note:** An edit button is displayed on each item, when the `sap.ui.webc.fiori.UploadCollectionItem`
8487
+ * `type` property is set to `Detail`.
8488
+ */
8489
+ rename?: (oEvent: Event) => void;
8490
+
8491
+ /**
8492
+ * Fired when the retry button is pressed.
8493
+ *
8494
+ * **Note:** Retry button is displayed when `uploadState` property is set to `Error`.
8495
+ */
8496
+ retry?: (oEvent: Event) => void;
8497
+
8498
+ /**
8499
+ * Fired when the terminate button is pressed.
8500
+ *
8501
+ * **Note:** Terminate button is displayed when `uploadState` property is set to `Uploading`.
8502
+ */
8503
+ terminate?: (oEvent: Event) => void;
8504
+ }
8505
+ }
8506
+
8507
+ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
8508
+ import {
8509
+ default as WebComponent,
8510
+ $WebComponentSettings,
8511
+ } from "sap/ui/webc/common/WebComponent";
8512
+
8513
+ import { IListItem } from "sap/ui/webc/main/library";
8514
+
8515
+ import Event from "sap/ui/base/Event";
8516
+
8517
+ import WebComponentMetadata from "sap/ui/webc/common/WebComponentMetadata";
8518
+
8519
+ import {
8520
+ PropertyBindingInfo,
8521
+ AggregationBindingInfo,
8522
+ } from "sap/ui/base/ManagedObject";
8523
+
8524
+ /**
8525
+ * @SINCE 1.92.0
8526
+ * @EXPERIMENTAL (since 1.92.0)
8527
+ *
8528
+ * Overview: The `sap.ui.webc.fiori.ViewSettingsDialog` component helps the user to sort data within a list
8529
+ * or a table. It consists of several lists like `Sort order` which is built-in and `Sort By` which must
8530
+ * be provided by the developer. The selected options can be used to create sorters for the table.
8531
+ *
8532
+ * The `sap.ui.webc.fiori.ViewSettingsDialog` interrupts the current application processing as it is the
8533
+ * only focused UI element and the main screen is dimmed/blocked. The `sap.ui.webc.fiori.ViewSettingsDialog`
8534
+ * is modal, which means that user action is required before returning to the parent window is possible.
8535
+ *
8536
+ * Structure: A `sap.ui.webc.fiori.ViewSettingsDialog` consists of a header, content, and a footer for action
8537
+ * buttons. The `sap.ui.webc.fiori.ViewSettingsDialog` is usually displayed at the center of the screen.
8538
+ *
8539
+ * Responsive Behavior: `sap.ui.webc.fiori.ViewSettingsDialog` stretches on full screen on phones.
8540
+ */
8541
+ export default class ViewSettingsDialog extends WebComponent {
8542
+ /**
8543
+ * Constructor for a new `ViewSettingsDialog`.
8544
+ *
8545
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
8546
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
8547
+ * of the syntax of the settings object.
8548
+ */
8549
+ constructor(
8550
+ /**
8551
+ * Initial settings for the new control
8552
+ */
8553
+ mSettings?: $ViewSettingsDialogSettings
8554
+ );
8555
+ /**
8556
+ * Constructor for a new `ViewSettingsDialog`.
8557
+ *
8558
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
8559
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
8560
+ * of the syntax of the settings object.
8561
+ */
8562
+ constructor(
8563
+ /**
8564
+ * ID for the new control, generated automatically if no ID is given
8565
+ */
8566
+ sId?: string,
8567
+ /**
8568
+ * Initial settings for the new control
8569
+ */
8570
+ mSettings?: $ViewSettingsDialogSettings
8571
+ );
8572
+
8573
+ /**
8574
+ * Creates a new subclass of class sap.ui.webc.fiori.ViewSettingsDialog with name `sClassName` and enriches
8575
+ * it with the information contained in `oClassInfo`.
8576
+ *
8577
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
8578
+ */
8579
+ static extend<T extends Record<string, unknown>>(
8580
+ /**
8581
+ * Name of the class being created
8582
+ */
8583
+ sClassName: string,
8584
+ /**
8585
+ * Object literal with information about the class
8586
+ */
8587
+ oClassInfo?: sap.ClassInfo<T, ViewSettingsDialog>,
8588
+ /**
8589
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8590
+ * used by this class
8591
+ */
8592
+ FNMetaImpl?: Function
8593
+ ): Function;
8594
+ /**
8595
+ * Returns a metadata object for class sap.ui.webc.fiori.ViewSettingsDialog.
8596
+ */
8597
+ static getMetadata(): WebComponentMetadata;
8598
+ /**
8599
+ * Adds some sortItem to the aggregation {@link #getSortItems sortItems}.
8600
+ */
8601
+ addSortItem(
8602
+ /**
8603
+ * The sortItem to add; if empty, nothing is inserted
8604
+ */
8605
+ oSortItem: IListItem
8606
+ ): this;
8607
+ /**
8608
+ * Attaches event handler `fnFunction` to the {@link #event:cancel cancel} event of this `sap.ui.webc.fiori.ViewSettingsDialog`.
8609
+ *
8610
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
8611
+ * otherwise it will be bound to this `sap.ui.webc.fiori.ViewSettingsDialog` itself.
8612
+ *
8613
+ * Fired when cancel button is activated.
8614
+ */
8615
+ attachCancel(
8616
+ /**
8617
+ * An application-specific payload object that will be passed to the event handler along with the event
8618
+ * object when firing the event
8619
+ */
8620
+ oData: object,
8621
+ /**
8622
+ * The function to be called when the event occurs
8623
+ */
8624
+ fnFunction: (p1: Event) => void,
8625
+ /**
8626
+ * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.ViewSettingsDialog`
8627
+ * itself
8628
+ */
8629
+ oListener?: object
8630
+ ): this;
8631
+ /**
8632
+ * Attaches event handler `fnFunction` to the {@link #event:cancel cancel} event of this `sap.ui.webc.fiori.ViewSettingsDialog`.
8633
+ *
8634
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
8635
+ * otherwise it will be bound to this `sap.ui.webc.fiori.ViewSettingsDialog` itself.
8636
+ *
8637
+ * Fired when cancel button is activated.
8638
+ */
8639
+ attachCancel(
8640
+ /**
8641
+ * The function to be called when the event occurs
8642
+ */
8643
+ fnFunction: (p1: Event) => void,
8644
+ /**
8645
+ * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.ViewSettingsDialog`
8646
+ * itself
8647
+ */
8648
+ oListener?: object
8649
+ ): this;
8650
+ /**
8651
+ * Attaches event handler `fnFunction` to the {@link #event:confirm confirm} event of this `sap.ui.webc.fiori.ViewSettingsDialog`.
8652
+ *
8653
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
8654
+ * otherwise it will be bound to this `sap.ui.webc.fiori.ViewSettingsDialog` itself.
8655
+ *
8656
+ * Fired when confirmation button is activated.
8657
+ */
8658
+ attachConfirm(
8659
+ /**
8660
+ * An application-specific payload object that will be passed to the event handler along with the event
8661
+ * object when firing the event
8662
+ */
8663
+ oData: object,
8664
+ /**
8665
+ * The function to be called when the event occurs
8666
+ */
8667
+ fnFunction: (p1: Event) => void,
8668
+ /**
8669
+ * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.ViewSettingsDialog`
8670
+ * itself
8671
+ */
8672
+ oListener?: object
8673
+ ): this;
8674
+ /**
8675
+ * Attaches event handler `fnFunction` to the {@link #event:confirm confirm} event of this `sap.ui.webc.fiori.ViewSettingsDialog`.
8676
+ *
8677
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
8678
+ * otherwise it will be bound to this `sap.ui.webc.fiori.ViewSettingsDialog` itself.
8679
+ *
8680
+ * Fired when confirmation button is activated.
8681
+ */
8682
+ attachConfirm(
8683
+ /**
8684
+ * The function to be called when the event occurs
8685
+ */
8686
+ fnFunction: (p1: Event) => void,
8687
+ /**
8688
+ * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.ViewSettingsDialog`
8689
+ * itself
8690
+ */
8691
+ oListener?: object
8692
+ ): this;
8693
+ /**
8694
+ * Destroys all the sortItems in the aggregation {@link #getSortItems sortItems}.
8695
+ */
8696
+ destroySortItems(): this;
8697
+ /**
8698
+ * Detaches event handler `fnFunction` from the {@link #event:cancel cancel} event of this `sap.ui.webc.fiori.ViewSettingsDialog`.
8699
+ *
8700
+ * The passed function and listener object must match the ones used for event registration.
8701
+ */
8702
+ detachCancel(
8703
+ /**
8704
+ * The function to be called, when the event occurs
8705
+ */
8706
+ fnFunction: (p1: Event) => void,
8707
+ /**
8708
+ * Context object on which the given function had to be called
7654
8709
  */
7655
- oThumbnail: Control
8710
+ oListener?: object
7656
8711
  ): this;
7657
8712
  /**
7658
- * Sets a new value for property {@link #getUploadState uploadState}.
7659
- *
7660
- * If set to `Uploading` or `Error`, a progress indicator showing the `progress` is displayed. Also if set
7661
- * to `Error`, a refresh button is shown. When this icon is pressed `retry` event is fired. If set to `Uploading`,
7662
- * a terminate button is shown. When this icon is pressed `terminate` event is fired.
7663
- *
7664
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8713
+ * Detaches event handler `fnFunction` from the {@link #event:confirm confirm} event of this `sap.ui.webc.fiori.ViewSettingsDialog`.
7665
8714
  *
7666
- * Default value is `Ready`.
8715
+ * The passed function and listener object must match the ones used for event registration.
7667
8716
  */
7668
- setUploadState(
8717
+ detachConfirm(
7669
8718
  /**
7670
- * New value for property `uploadState`
8719
+ * The function to be called, when the event occurs
7671
8720
  */
7672
- sUploadState?: UploadState | keyof typeof UploadState
8721
+ fnFunction: (p1: Event) => void,
8722
+ /**
8723
+ * Context object on which the given function had to be called
8724
+ */
8725
+ oListener?: object
7673
8726
  ): this;
7674
- }
7675
-
7676
- export interface $UploadCollectionItemSettings extends $WebComponentSettings {
7677
8727
  /**
7678
- * Holds `File`, associated with this item.
8728
+ * Fires event {@link #event:cancel cancel} to attached listeners.
7679
8729
  */
7680
- file?: object | PropertyBindingInfo;
7681
-
8730
+ fireCancel(
8731
+ /**
8732
+ * Parameters to pass along with the event
8733
+ */
8734
+ mParameters?: {
8735
+ /**
8736
+ * The current sort order selected.
8737
+ */
8738
+ sortOrder?: string;
8739
+ /**
8740
+ * The current sort by selected.
8741
+ */
8742
+ sortBy?: string;
8743
+ }
8744
+ ): this;
7682
8745
  /**
7683
- * The name of the file.
8746
+ * Fires event {@link #event:confirm confirm} to attached listeners.
7684
8747
  */
7685
- fileName?: string | PropertyBindingInfo;
7686
-
8748
+ fireConfirm(
8749
+ /**
8750
+ * Parameters to pass along with the event
8751
+ */
8752
+ mParameters?: {
8753
+ /**
8754
+ * The current sort order selected.
8755
+ */
8756
+ sortOrder?: string;
8757
+ /**
8758
+ * The current sort by selected.
8759
+ */
8760
+ sortBy?: string;
8761
+ }
8762
+ ): this;
7687
8763
  /**
7688
- * If set to `true` the file name will be clickable and it will fire `file-name-click` event upon click.
8764
+ * Gets current value of property {@link #getSortDescending sortDescending}.
8765
+ *
8766
+ * Defines the initial sort order.
8767
+ *
8768
+ * Default value is `false`.
7689
8769
  */
7690
- fileNameClickable?: boolean | PropertyBindingInfo;
7691
-
8770
+ getSortDescending(): boolean;
7692
8771
  /**
7693
- * Removes delete option from `sap.ui.webc.fiori.UploadCollection` with `mode` `Delete` for this item.
8772
+ * Gets content of aggregation {@link #getSortItems sortItems}.
8773
+ *
8774
+ * Defines the `sortItems` list.
7694
8775
  */
7695
- noDelete?: boolean | PropertyBindingInfo;
7696
-
8776
+ getSortItems(): IListItem[];
7697
8777
  /**
7698
- * Hides the retry button when `uploadState` property is `Error`.
8778
+ * Checks for the provided `sap.ui.webc.main.IListItem` in the aggregation {@link #getSortItems sortItems}.
8779
+ * and returns its index if found or -1 otherwise.
7699
8780
  */
7700
- noRetry?: boolean | PropertyBindingInfo;
7701
-
8781
+ indexOfSortItem(
8782
+ /**
8783
+ * The sortItem whose index is looked for
8784
+ */
8785
+ oSortItem: IListItem
8786
+ ): int;
7702
8787
  /**
7703
- * Hides the terminate button when `uploadState` property is `Uploading`.
8788
+ * Inserts a sortItem into the aggregation {@link #getSortItems sortItems}.
7704
8789
  */
7705
- noTerminate?: boolean | PropertyBindingInfo;
7706
-
8790
+ insertSortItem(
8791
+ /**
8792
+ * The sortItem to insert; if empty, nothing is inserted
8793
+ */
8794
+ oSortItem: IListItem,
8795
+ /**
8796
+ * The `0`-based index the sortItem should be inserted at; for a negative value of `iIndex`, the sortItem
8797
+ * is inserted at position 0; for a value greater than the current size of the aggregation, the sortItem
8798
+ * is inserted at the last position
8799
+ */
8800
+ iIndex: int
8801
+ ): this;
7707
8802
  /**
7708
- * The upload progress in percentage.
8803
+ * Removes all the controls from the aggregation {@link #getSortItems sortItems}.
7709
8804
  *
7710
- * **Note:** Expected values are in the interval [0, 100].
8805
+ * Additionally, it unregisters them from the hosting UIArea.
7711
8806
  */
7712
- progress?: int | PropertyBindingInfo;
7713
-
8807
+ removeAllSortItems(): IListItem[];
7714
8808
  /**
7715
- * If set to `Uploading` or `Error`, a progress indicator showing the `progress` is displayed. Also if set
7716
- * to `Error`, a refresh button is shown. When this icon is pressed `retry` event is fired. If set to `Uploading`,
7717
- * a terminate button is shown. When this icon is pressed `terminate` event is fired.
8809
+ * Removes a sortItem from the aggregation {@link #getSortItems sortItems}.
7718
8810
  */
7719
- uploadState?:
7720
- | (UploadState | keyof typeof UploadState)
7721
- | PropertyBindingInfo;
7722
-
8811
+ removeSortItem(
8812
+ /**
8813
+ * The sortItem to remove or its index or id
8814
+ */
8815
+ vSortItem: int | string | IListItem
8816
+ ): IListItem;
7723
8817
  /**
7724
- * Hold the description of the `sap.ui.webc.fiori.UploadCollectionItem`. Will be shown below the file name.
8818
+ * Sets a new value for property {@link #getSortDescending sortDescending}.
8819
+ *
8820
+ * Defines the initial sort order.
8821
+ *
8822
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8823
+ *
8824
+ * Default value is `false`.
7725
8825
  */
7726
- content?: Control[] | Control | AggregationBindingInfo;
7727
-
8826
+ setSortDescending(
8827
+ /**
8828
+ * New value for property `sortDescending`
8829
+ */
8830
+ bSortDescending?: boolean
8831
+ ): this;
7728
8832
  /**
7729
- * A thumbnail, which will be shown in the beginning of the `sap.ui.webc.fiori.UploadCollectionItem`.
7730
- *
7731
- * **Note:** Use `sap.ui.webc.main.Icon` or `img` for the intended design.
8833
+ * Shows the dialog.
7732
8834
  */
7733
- thumbnail?: Control;
8835
+ show(): void;
8836
+ }
7734
8837
 
8838
+ export interface $ViewSettingsDialogSettings extends $WebComponentSettings {
7735
8839
  /**
7736
- * Fired when the file name is clicked.
7737
- *
7738
- * **Note:** This event is only available when `fileNameClickable` property is `true`.
8840
+ * Defines the initial sort order.
7739
8841
  */
7740
- fileNameClick?: Function;
8842
+ sortDescending?: boolean | PropertyBindingInfo;
7741
8843
 
7742
8844
  /**
7743
- * Fired when the `fileName` property gets changed.
7744
- *
7745
- * **Note:** An edit button is displayed on each item, when the `sap.ui.webc.fiori.UploadCollectionItem`
7746
- * `type` property is set to `Detail`.
8845
+ * Defines the `sortItems` list.
7747
8846
  */
7748
- rename?: Function;
8847
+ sortItems?: IListItem[] | IListItem | AggregationBindingInfo;
7749
8848
 
7750
8849
  /**
7751
- * Fired when the retry button is pressed.
7752
- *
7753
- * **Note:** Retry button is displayed when `uploadState` property is set to `Error`.
8850
+ * Fired when cancel button is activated.
7754
8851
  */
7755
- retry?: Function;
8852
+ cancel?: (oEvent: Event) => void;
7756
8853
 
7757
8854
  /**
7758
- * Fired when the terminate button is pressed.
7759
- *
7760
- * **Note:** Terminate button is displayed when `uploadState` property is set to `Uploading`.
8855
+ * Fired when confirmation button is activated.
7761
8856
  */
7762
- terminate?: Function;
8857
+ confirm?: (oEvent: Event) => void;
7763
8858
  }
7764
8859
  }
7765
8860
 
@@ -7873,6 +8968,31 @@ declare module "sap/ui/webc/fiori/Wizard" {
7873
8968
  mSettings?: $WizardSettings
7874
8969
  );
7875
8970
 
8971
+ /**
8972
+ * Creates a new subclass of class sap.ui.webc.fiori.Wizard with name `sClassName` and enriches it with
8973
+ * the information contained in `oClassInfo`.
8974
+ *
8975
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
8976
+ */
8977
+ static extend<T extends Record<string, unknown>>(
8978
+ /**
8979
+ * Name of the class being created
8980
+ */
8981
+ sClassName: string,
8982
+ /**
8983
+ * Object literal with information about the class
8984
+ */
8985
+ oClassInfo?: sap.ClassInfo<T, Wizard>,
8986
+ /**
8987
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8988
+ * used by this class
8989
+ */
8990
+ FNMetaImpl?: Function
8991
+ ): Function;
8992
+ /**
8993
+ * Returns a metadata object for class sap.ui.webc.fiori.Wizard.
8994
+ */
8995
+ static getMetadata(): WebComponentMetadata;
7876
8996
  /**
7877
8997
  * Adds some step to the aggregation {@link #getSteps steps}.
7878
8998
  */
@@ -7944,27 +9064,6 @@ declare module "sap/ui/webc/fiori/Wizard" {
7944
9064
  */
7945
9065
  oListener?: object
7946
9066
  ): this;
7947
- /**
7948
- * Creates a new subclass of class sap.ui.webc.fiori.Wizard with name `sClassName` and enriches it with
7949
- * the information contained in `oClassInfo`.
7950
- *
7951
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
7952
- */
7953
- static extend<T extends Record<string, unknown>>(
7954
- /**
7955
- * Name of the class being created
7956
- */
7957
- sClassName: string,
7958
- /**
7959
- * Object literal with information about the class
7960
- */
7961
- oClassInfo?: sap.ClassInfo<T, Wizard>,
7962
- /**
7963
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7964
- * used by this class
7965
- */
7966
- FNMetaImpl?: Function
7967
- ): Function;
7968
9067
  /**
7969
9068
  * Fires event {@link #event:stepChange stepChange} to attached listeners.
7970
9069
  */
@@ -7984,19 +9083,23 @@ declare module "sap/ui/webc/fiori/Wizard" {
7984
9083
  /**
7985
9084
  * the step change occurs due to user's click or 'Enter'/'Space' key press on step within the navigation
7986
9085
  */
7987
- changeWithClick?: Boolean;
9086
+ changeWithClick?: boolean;
7988
9087
  }
7989
9088
  ): this;
9089
+ /**
9090
+ * Gets current value of property {@link #getAccessibleName accessibleName}.
9091
+ *
9092
+ * Sets the accessible aria name of the component.
9093
+ *
9094
+ * Default value is `undefined`.
9095
+ */
9096
+ getAccessibleName(): string;
7990
9097
  /**
7991
9098
  * Gets current value of property {@link #getHeight height}.
7992
9099
  *
7993
9100
  * Defines the height of the control
7994
9101
  */
7995
9102
  getHeight(): CSSSize;
7996
- /**
7997
- * Returns a metadata object for class sap.ui.webc.fiori.Wizard.
7998
- */
7999
- static getMetadata(): WebComponentMetadata;
8000
9103
  /**
8001
9104
  * Gets content of aggregation {@link #getSteps steps}.
8002
9105
  *
@@ -8045,6 +9148,21 @@ declare module "sap/ui/webc/fiori/Wizard" {
8045
9148
  */
8046
9149
  vStep: int | string | IWizardStep
8047
9150
  ): IWizardStep;
9151
+ /**
9152
+ * Sets a new value for property {@link #getAccessibleName accessibleName}.
9153
+ *
9154
+ * Sets the accessible aria name of the component.
9155
+ *
9156
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
9157
+ *
9158
+ * Default value is `undefined`.
9159
+ */
9160
+ setAccessibleName(
9161
+ /**
9162
+ * New value for property `accessibleName`
9163
+ */
9164
+ sAccessibleName?: string
9165
+ ): this;
8048
9166
  /**
8049
9167
  * Sets a new value for property {@link #getHeight height}.
8050
9168
  *
@@ -8061,6 +9179,11 @@ declare module "sap/ui/webc/fiori/Wizard" {
8061
9179
  }
8062
9180
 
8063
9181
  export interface $WizardSettings extends $WebComponentSettings {
9182
+ /**
9183
+ * Sets the accessible aria name of the component.
9184
+ */
9185
+ accessibleName?: string | PropertyBindingInfo;
9186
+
8064
9187
  /**
8065
9188
  * Defines the height of the control
8066
9189
  */
@@ -8077,7 +9200,7 @@ declare module "sap/ui/webc/fiori/Wizard" {
8077
9200
  * Fired when the step is changed by user interaction - either with scrolling, or by clicking on the steps
8078
9201
  * within the component header.
8079
9202
  */
8080
- stepChange?: Function;
9203
+ stepChange?: (oEvent: Event) => void;
8081
9204
  }
8082
9205
  }
8083
9206
 
@@ -8149,19 +9272,6 @@ declare module "sap/ui/webc/fiori/WizardStep" {
8149
9272
  mSettings?: $WizardStepSettings
8150
9273
  );
8151
9274
 
8152
- /**
8153
- * Adds some content to the aggregation {@link #getContent content}.
8154
- */
8155
- addContent(
8156
- /**
8157
- * The content to add; if empty, nothing is inserted
8158
- */
8159
- oContent: Control
8160
- ): this;
8161
- /**
8162
- * Destroys all the content in the aggregation {@link #getContent content}.
8163
- */
8164
- destroyContent(): this;
8165
9275
  /**
8166
9276
  * Creates a new subclass of class sap.ui.webc.fiori.WizardStep with name `sClassName` and enriches it with
8167
9277
  * the information contained in `oClassInfo`.
@@ -8183,6 +9293,39 @@ declare module "sap/ui/webc/fiori/WizardStep" {
8183
9293
  */
8184
9294
  FNMetaImpl?: Function
8185
9295
  ): Function;
9296
+ /**
9297
+ * Returns a metadata object for class sap.ui.webc.fiori.WizardStep.
9298
+ */
9299
+ static getMetadata(): WebComponentMetadata;
9300
+ /**
9301
+ * Adds some content to the aggregation {@link #getContent content}.
9302
+ */
9303
+ addContent(
9304
+ /**
9305
+ * The content to add; if empty, nothing is inserted
9306
+ */
9307
+ oContent: Control
9308
+ ): this;
9309
+ /**
9310
+ * Destroys all the content in the aggregation {@link #getContent content}.
9311
+ */
9312
+ destroyContent(): this;
9313
+ /**
9314
+ * Gets current value of property {@link #getAccessibleName accessibleName}.
9315
+ *
9316
+ * Sets the accessible aria name of the component.
9317
+ *
9318
+ * Default value is `empty string`.
9319
+ */
9320
+ getAccessibleName(): string;
9321
+ /**
9322
+ * Gets current value of property {@link #getAccessibleNameRef accessibleNameRef}.
9323
+ *
9324
+ * Defines the aria-labelledby of the step.
9325
+ *
9326
+ * Default value is `empty string`.
9327
+ */
9328
+ getAccessibleNameRef(): string;
8186
9329
  /**
8187
9330
  * Gets current value of property {@link #getBranching branching}.
8188
9331
  *
@@ -8233,10 +9376,6 @@ declare module "sap/ui/webc/fiori/WizardStep" {
8233
9376
  * Default value is `empty string`.
8234
9377
  */
8235
9378
  getIcon(): string;
8236
- /**
8237
- * Returns a metadata object for class sap.ui.webc.fiori.WizardStep.
8238
- */
8239
- static getMetadata(): WebComponentMetadata;
8240
9379
  /**
8241
9380
  * Gets current value of property {@link #getSelected selected}.
8242
9381
  *
@@ -8316,6 +9455,36 @@ declare module "sap/ui/webc/fiori/WizardStep" {
8316
9455
  */
8317
9456
  vContent: int | string | Control
8318
9457
  ): Control;
9458
+ /**
9459
+ * Sets a new value for property {@link #getAccessibleName accessibleName}.
9460
+ *
9461
+ * Sets the accessible aria name of the component.
9462
+ *
9463
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
9464
+ *
9465
+ * Default value is `empty string`.
9466
+ */
9467
+ setAccessibleName(
9468
+ /**
9469
+ * New value for property `accessibleName`
9470
+ */
9471
+ sAccessibleName?: string
9472
+ ): this;
9473
+ /**
9474
+ * Sets a new value for property {@link #getAccessibleNameRef accessibleNameRef}.
9475
+ *
9476
+ * Defines the aria-labelledby of the step.
9477
+ *
9478
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
9479
+ *
9480
+ * Default value is `empty string`.
9481
+ */
9482
+ setAccessibleNameRef(
9483
+ /**
9484
+ * New value for property `accessibleNameRef`
9485
+ */
9486
+ sAccessibleNameRef?: string
9487
+ ): this;
8319
9488
  /**
8320
9489
  * Sets a new value for property {@link #getBranching branching}.
8321
9490
  *
@@ -8444,6 +9613,16 @@ declare module "sap/ui/webc/fiori/WizardStep" {
8444
9613
  }
8445
9614
 
8446
9615
  export interface $WizardStepSettings extends $WebComponentSettings {
9616
+ /**
9617
+ * Sets the accessible aria name of the component.
9618
+ */
9619
+ accessibleName?: string | PropertyBindingInfo;
9620
+
9621
+ /**
9622
+ * Defines the aria-labelledby of the step.
9623
+ */
9624
+ accessibleNameRef?: string | PropertyBindingInfo;
9625
+
8447
9626
  /**
8448
9627
  * When `branching` is enabled a dashed line would be displayed after the step, meant to indicate that the
8449
9628
  * next step is not yet known and depends on user choice in the current step.
@@ -8520,8 +9699,12 @@ declare namespace sap {
8520
9699
  interface IUI5DefineDependencyNames {
8521
9700
  "sap/ui/webc/fiori/Bar": undefined;
8522
9701
 
9702
+ "sap/ui/webc/fiori/BarcodeScannerDialog": undefined;
9703
+
8523
9704
  "sap/ui/webc/fiori/FlexibleColumnLayout": undefined;
8524
9705
 
9706
+ "sap/ui/webc/fiori/IllustratedMessage": undefined;
9707
+
8525
9708
  "sap/ui/webc/fiori/library": undefined;
8526
9709
 
8527
9710
  "sap/ui/webc/fiori/NotificationAction": undefined;
@@ -8554,6 +9737,8 @@ declare namespace sap {
8554
9737
 
8555
9738
  "sap/ui/webc/fiori/UploadCollectionItem": undefined;
8556
9739
 
9740
+ "sap/ui/webc/fiori/ViewSettingsDialog": undefined;
9741
+
8557
9742
  "sap/ui/webc/fiori/Wizard": undefined;
8558
9743
 
8559
9744
  "sap/ui/webc/fiori/WizardStep": undefined;