@openui5/ts-types 1.96.2 → 1.98.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.
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.2
1
+ // For Library Version: 1.98.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -8,20 +8,6 @@ declare namespace sap {
8
8
  * browsers.
9
9
  */
10
10
  namespace m {
11
- /**
12
- * @EXPERIMENTAL (since 1.92)
13
- *
14
- * A utility class for working with the DynamicDateOption instances.
15
- */
16
- export const DynamicDateUtil: undefined;
17
-
18
- /**
19
- * @EXPERIMENTAL (since 1.92)
20
- *
21
- * The option keys of all the standard options of a DynamicDateRange control.
22
- */
23
- export const StandardDynamicDateRangeKeys: undefined;
24
-
25
11
  /**
26
12
  * @SINCE 1.11.0
27
13
  *
@@ -380,6 +366,857 @@ declare namespace sap {
380
366
  }
381
367
  }
382
368
 
369
+ namespace p13n {
370
+ interface $GroupPanelSettings
371
+ extends /* was: sap.m.p13n.$QueryPanelSettings */ Object {
372
+ /**
373
+ * Toggles an additional checkbox in the group panel to define whether items are made visible.
374
+ */
375
+ enableShowField?:
376
+ | boolean
377
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
378
+ }
379
+
380
+ interface $PopupSettings extends sap.ui.core.$ControlSettings {
381
+ /**
382
+ * Text describing the personalization popup.
383
+ */
384
+ title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
385
+
386
+ /**
387
+ * Describes the corresponding popup mode, see also {@link sap.m.P13nPopupMode}.
388
+ */
389
+ mode?:
390
+ | sap.m.P13nPopupMode
391
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
392
+
393
+ /**
394
+ * Warning text which appears as a message prior to executing the rest callback. **Note:** The `warningText`
395
+ * may only be used in case the `reset` callback has been provided.
396
+ */
397
+ warningText?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
398
+
399
+ /**
400
+ * A callback that will be executed once a reset has been triggered. **Note:** The Reset button will only
401
+ * be shown in case this callback is provided.
402
+ */
403
+ reset?: Function | sap.ui.base.ManagedObject.PropertyBindingInfo;
404
+
405
+ /**
406
+ * The panels that are displayed by the `sap.m.p13n.Popup`.
407
+ */
408
+ panels?: /* was: sap.m.p13n.IContent */
409
+ | any[]
410
+ | /* was: sap.m.p13n.IContent */ any
411
+ | sap.ui.base.ManagedObject.AggregationBindingInfo;
412
+
413
+ /**
414
+ * Additional set of `sap.m.Button` controls that are added to the existing Ok and Cancel buttons.
415
+ */
416
+ additionalButtons?:
417
+ | sap.m.Button[]
418
+ | sap.m.Button
419
+ | sap.ui.base.ManagedObject.AggregationBindingInfo;
420
+
421
+ /**
422
+ * This event is fired after the dialog has been closed.
423
+ */
424
+ close?: (oEvent: sap.ui.base.Event) => void;
425
+ }
426
+
427
+ interface $SelectionPanelSettings
428
+ extends /* was: sap.m.p13n.$BasePanelSettings */ Object {
429
+ /**
430
+ * Shows an additional header with a search field and the Show Selected button.
431
+ */
432
+ showHeader?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
433
+
434
+ /**
435
+ * Enables a count for selected items compared to available items, for example, Currency (3/12), in addition
436
+ * to the first column text.
437
+ */
438
+ enableCount?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
439
+
440
+ /**
441
+ * The first column in the panel describing the selectable fields.
442
+ */
443
+ fieldColumn?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
444
+
445
+ /**
446
+ * The second column in the panel showing the move buttons for reordering.
447
+ */
448
+ activeColumn?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
449
+
450
+ /**
451
+ * An optional callback that may be used to display additional custom content in each selectable item. This
452
+ * factory can be toggled by executing the {@link sap.m.p13n.SelectionPanel#showFactory} method.
453
+ */
454
+ itemFactory?: Function | sap.ui.base.ManagedObject.PropertyBindingInfo;
455
+ }
456
+
457
+ interface $SortPanelSettings
458
+ extends /* was: sap.m.p13n.$QueryPanelSettings */ Object {}
459
+
460
+ /**
461
+ * @SINCE 1.96
462
+ * @EXPERIMENTAL (since 1.96)
463
+ *
464
+ * This control can be used to customize personalization content for grouping for an associated control
465
+ * instance.
466
+ */
467
+ class GroupPanel /* was: sap.m.p13n.QueryPanel */ extends Object {
468
+ /**
469
+ * Constructor for a new `GroupPanel`.
470
+ *
471
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
472
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
473
+ * of the syntax of the settings object.
474
+ */
475
+ constructor(
476
+ /**
477
+ * Initial settings for the new control
478
+ */
479
+ mSettings?: sap.m.p13n.$GroupPanelSettings
480
+ );
481
+ /**
482
+ * Constructor for a new `GroupPanel`.
483
+ *
484
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
485
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
486
+ * of the syntax of the settings object.
487
+ */
488
+ constructor(
489
+ /**
490
+ * ID for the new control, generated automatically if no ID is given
491
+ */
492
+ sId?: string,
493
+ /**
494
+ * Initial settings for the new control
495
+ */
496
+ mSettings?: sap.m.p13n.$GroupPanelSettings
497
+ );
498
+
499
+ /**
500
+ * Creates a new subclass of class sap.m.p13n.GroupPanel with name `sClassName` and enriches it with the
501
+ * information contained in `oClassInfo`.
502
+ *
503
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.m.p13n.QueryPanel.extend}.
504
+ */
505
+ static extend<T extends Record<string, unknown>>(
506
+ /**
507
+ * Name of the class being created
508
+ */
509
+ sClassName: string,
510
+ /**
511
+ * Object literal with information about the class
512
+ */
513
+ oClassInfo?: sap.ClassInfo<T, sap.m.p13n.GroupPanel>,
514
+ /**
515
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
516
+ * used by this class
517
+ */
518
+ FNMetaImpl?: Function
519
+ ): Function;
520
+ /**
521
+ * Returns a metadata object for class sap.m.p13n.GroupPanel.
522
+ */
523
+ static getMetadata(): sap.ui.core.ElementMetadata;
524
+ /**
525
+ * Sets the personalization state of the panel instance.
526
+ */
527
+ static setP13nData(
528
+ /**
529
+ * An array containing the personalization state
530
+ */
531
+ aP13nData: sap.m.p13n.GroupItem
532
+ ): sap.m.p13n.GroupPanel;
533
+ /**
534
+ * Gets current value of property {@link #getEnableShowField enableShowField}.
535
+ *
536
+ * Toggles an additional checkbox in the group panel to define whether items are made visible.
537
+ *
538
+ * Default value is `false`.
539
+ */
540
+ getEnableShowField(): boolean;
541
+ /**
542
+ * Sets a new value for property {@link #getEnableShowField enableShowField}.
543
+ *
544
+ * Toggles an additional checkbox in the group panel to define whether items are made visible.
545
+ *
546
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
547
+ *
548
+ * Default value is `false`.
549
+ */
550
+ setEnableShowField(
551
+ /**
552
+ * New value for property `enableShowField`
553
+ */
554
+ bEnableShowField?: boolean
555
+ ): this;
556
+ }
557
+ /**
558
+ * @SINCE 1.97
559
+ * @EXPERIMENTAL (since 1.97)
560
+ *
561
+ * This control can be used to show personalization-related content in different popup controls.
562
+ */
563
+ class Popup extends sap.ui.core.Control {
564
+ /**
565
+ * Constructor for a new `Popup`.
566
+ *
567
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
568
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
569
+ * of the syntax of the settings object.
570
+ */
571
+ constructor(
572
+ /**
573
+ * Initial settings for the new control
574
+ */
575
+ mSettings?: sap.m.p13n.$PopupSettings
576
+ );
577
+ /**
578
+ * Constructor for a new `Popup`.
579
+ *
580
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
581
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
582
+ * of the syntax of the settings object.
583
+ */
584
+ constructor(
585
+ /**
586
+ * ID for the new control, generated automatically if no ID is given
587
+ */
588
+ sId?: string,
589
+ /**
590
+ * Initial settings for the new control
591
+ */
592
+ mSettings?: sap.m.p13n.$PopupSettings
593
+ );
594
+
595
+ /**
596
+ * Creates a new subclass of class sap.m.p13n.Popup with name `sClassName` and enriches it with the information
597
+ * contained in `oClassInfo`.
598
+ *
599
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
600
+ */
601
+ static extend<T extends Record<string, unknown>>(
602
+ /**
603
+ * Name of the class being created
604
+ */
605
+ sClassName: string,
606
+ /**
607
+ * Object literal with information about the class
608
+ */
609
+ oClassInfo?: sap.ClassInfo<T, sap.m.p13n.Popup>,
610
+ /**
611
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
612
+ * used by this class
613
+ */
614
+ FNMetaImpl?: Function
615
+ ): Function;
616
+ /**
617
+ * Returns a metadata object for class sap.m.p13n.Popup.
618
+ */
619
+ static getMetadata(): sap.ui.core.ElementMetadata;
620
+ /**
621
+ * Adds some additionalButton to the aggregation {@link #getAdditionalButtons additionalButtons}.
622
+ */
623
+ addAdditionalButton(
624
+ /**
625
+ * The additionalButton to add; if empty, nothing is inserted
626
+ */
627
+ oAdditionalButton: sap.m.Button
628
+ ): this;
629
+ /**
630
+ * Adds a new panel to the `panels` aggregation.
631
+ */
632
+ addPanel(
633
+ /**
634
+ * The panel instance
635
+ */
636
+ oPanel: /* was: sap.m.p13n.IContent */ any
637
+ ): sap.m.p13n.Popup;
638
+ /**
639
+ * Attaches event handler `fnFunction` to the {@link #event:close close} event of this `sap.m.p13n.Popup`.
640
+ *
641
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
642
+ * otherwise it will be bound to this `sap.m.p13n.Popup` itself.
643
+ *
644
+ * This event is fired after the dialog has been closed.
645
+ */
646
+ attachClose(
647
+ /**
648
+ * An application-specific payload object that will be passed to the event handler along with the event
649
+ * object when firing the event
650
+ */
651
+ oData: object,
652
+ /**
653
+ * The function to be called when the event occurs
654
+ */
655
+ fnFunction: (p1: sap.ui.base.Event) => void,
656
+ /**
657
+ * Context object to call the event handler with. Defaults to this `sap.m.p13n.Popup` itself
658
+ */
659
+ oListener?: object
660
+ ): this;
661
+ /**
662
+ * Attaches event handler `fnFunction` to the {@link #event:close close} event of this `sap.m.p13n.Popup`.
663
+ *
664
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
665
+ * otherwise it will be bound to this `sap.m.p13n.Popup` itself.
666
+ *
667
+ * This event is fired after the dialog has been closed.
668
+ */
669
+ attachClose(
670
+ /**
671
+ * The function to be called when the event occurs
672
+ */
673
+ fnFunction: (p1: sap.ui.base.Event) => void,
674
+ /**
675
+ * Context object to call the event handler with. Defaults to this `sap.m.p13n.Popup` itself
676
+ */
677
+ oListener?: object
678
+ ): this;
679
+ /**
680
+ * Destroys all the additionalButtons in the aggregation {@link #getAdditionalButtons additionalButtons}.
681
+ */
682
+ destroyAdditionalButtons(): this;
683
+ /**
684
+ * Destroys all the panels in the aggregation {@link #getPanels panels}.
685
+ */
686
+ destroyPanels(): this;
687
+ /**
688
+ * Detaches event handler `fnFunction` from the {@link #event:close close} event of this `sap.m.p13n.Popup`.
689
+ *
690
+ * The passed function and listener object must match the ones used for event registration.
691
+ */
692
+ detachClose(
693
+ /**
694
+ * The function to be called, when the event occurs
695
+ */
696
+ fnFunction: (p1: sap.ui.base.Event) => void,
697
+ /**
698
+ * Context object on which the given function had to be called
699
+ */
700
+ oListener?: object
701
+ ): this;
702
+ /**
703
+ * Fires event {@link #event:close close} to attached listeners.
704
+ */
705
+ fireClose(
706
+ /**
707
+ * Parameters to pass along with the event
708
+ */
709
+ mParameters?: object
710
+ ): this;
711
+ /**
712
+ * Gets content of aggregation {@link #getAdditionalButtons additionalButtons}.
713
+ *
714
+ * Additional set of `sap.m.Button` controls that are added to the existing Ok and Cancel buttons.
715
+ */
716
+ getAdditionalButtons(): sap.m.Button[];
717
+ /**
718
+ * Gets current value of property {@link #getMode mode}.
719
+ *
720
+ * Describes the corresponding popup mode, see also {@link sap.m.P13nPopupMode}.
721
+ *
722
+ * Default value is `Dialog`.
723
+ */
724
+ getMode(): sap.m.P13nPopupMode;
725
+ /**
726
+ * Removes the current panels in the `panels` aggregation.
727
+ */
728
+ getPanels(): /* was: sap.m.p13n.IContent */ any[];
729
+ /**
730
+ * Gets current value of property {@link #getReset reset}.
731
+ *
732
+ * A callback that will be executed once a reset has been triggered. **Note:** The Reset button will only
733
+ * be shown in case this callback is provided.
734
+ */
735
+ getReset(): Function;
736
+ /**
737
+ * Gets current value of property {@link #getTitle title}.
738
+ *
739
+ * Text describing the personalization popup.
740
+ */
741
+ getTitle(): string;
742
+ /**
743
+ * Gets current value of property {@link #getWarningText warningText}.
744
+ *
745
+ * Warning text which appears as a message prior to executing the rest callback. **Note:** The `warningText`
746
+ * may only be used in case the `reset` callback has been provided.
747
+ */
748
+ getWarningText(): string;
749
+ /**
750
+ * Checks for the provided `sap.m.Button` in the aggregation {@link #getAdditionalButtons additionalButtons}.
751
+ * and returns its index if found or -1 otherwise.
752
+ */
753
+ indexOfAdditionalButton(
754
+ /**
755
+ * The additionalButton whose index is looked for
756
+ */
757
+ oAdditionalButton: sap.m.Button
758
+ ): int;
759
+ /**
760
+ * Checks for the provided `sap.m.p13n.IContent` in the aggregation {@link #getPanels panels}. and returns
761
+ * its index if found or -1 otherwise.
762
+ */
763
+ indexOfPanel(
764
+ /**
765
+ * The panel whose index is looked for
766
+ */
767
+ oPanel: /* was: sap.m.p13n.IContent */ any
768
+ ): int;
769
+ /**
770
+ * Inserts a additionalButton into the aggregation {@link #getAdditionalButtons additionalButtons}.
771
+ */
772
+ insertAdditionalButton(
773
+ /**
774
+ * The additionalButton to insert; if empty, nothing is inserted
775
+ */
776
+ oAdditionalButton: sap.m.Button,
777
+ /**
778
+ * The `0`-based index the additionalButton should be inserted at; for a negative value of `iIndex`, the
779
+ * additionalButton is inserted at position 0; for a value greater than the current size of the aggregation,
780
+ * the additionalButton is inserted at the last position
781
+ */
782
+ iIndex: int
783
+ ): this;
784
+ /**
785
+ * Inserts a panel into the aggregation {@link #getPanels panels}.
786
+ */
787
+ insertPanel(
788
+ /**
789
+ * The panel to insert; if empty, nothing is inserted
790
+ */
791
+ oPanel: /* was: sap.m.p13n.IContent */ any,
792
+ /**
793
+ * The `0`-based index the panel should be inserted at; for a negative value of `iIndex`, the panel is inserted
794
+ * at position 0; for a value greater than the current size of the aggregation, the panel is inserted at
795
+ * the last position
796
+ */
797
+ iIndex: int
798
+ ): this;
799
+ /**
800
+ * Checks whether there is an open `Popup` control.
801
+ */
802
+ isOpen(): boolean;
803
+ /**
804
+ * Opens the `Popup` control.
805
+ */
806
+ open(
807
+ /**
808
+ * The referenced control instance (used as anchor, for example, on popovers)
809
+ */
810
+ oSource: sap.ui.core.Control,
811
+ /**
812
+ * Configuration for the related popup container
813
+ */
814
+ mSettings?: {
815
+ /**
816
+ * Height configuration for the related popup container
817
+ */
818
+ contentHeight?: sap.ui.core.CSSSize;
819
+ /**
820
+ * Width configuration for the related popup container
821
+ */
822
+ contentWidth?: sap.ui.core.CSSSize;
823
+ }
824
+ ): void;
825
+ /**
826
+ * Removes a additionalButton from the aggregation {@link #getAdditionalButtons additionalButtons}.
827
+ */
828
+ removeAdditionalButton(
829
+ /**
830
+ * The additionalButton to remove or its index or id
831
+ */
832
+ vAdditionalButton: int | string | sap.m.Button
833
+ ): sap.m.Button;
834
+ /**
835
+ * Removes all the controls from the aggregation {@link #getAdditionalButtons additionalButtons}.
836
+ *
837
+ * Additionally, it unregisters them from the hosting UIArea.
838
+ */
839
+ removeAllAdditionalButtons(): sap.m.Button[];
840
+ /**
841
+ * Removes all the controls from the aggregation {@link #getPanels panels}.
842
+ *
843
+ * Additionally, it unregisters them from the hosting UIArea.
844
+ */
845
+ removeAllPanels(): /* was: sap.m.p13n.IContent */ any[];
846
+ /**
847
+ * Removes a panel instance.
848
+ */
849
+ removePanel(
850
+ /**
851
+ * The panel instance
852
+ */
853
+ oPanel: /* was: sap.m.p13n.IContent */ any
854
+ ): sap.m.p13n.Popup;
855
+ /**
856
+ * Sets the desired popup mode, see also {@link sap.m.P13nPopupMode}.
857
+ */
858
+ setMode(
859
+ /**
860
+ * The mode used for the popup creation
861
+ */
862
+ sMode: sap.m.P13nPopupMode
863
+ ): sap.m.p13n.Popup;
864
+ /**
865
+ * Sets a new value for property {@link #getReset reset}.
866
+ *
867
+ * A callback that will be executed once a reset has been triggered. **Note:** The Reset button will only
868
+ * be shown in case this callback is provided.
869
+ *
870
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
871
+ */
872
+ setReset(
873
+ /**
874
+ * New value for property `reset`
875
+ */
876
+ fnReset: Function
877
+ ): this;
878
+ /**
879
+ * Sets a new value for property {@link #getTitle title}.
880
+ *
881
+ * Text describing the personalization popup.
882
+ *
883
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
884
+ */
885
+ setTitle(
886
+ /**
887
+ * New value for property `title`
888
+ */
889
+ sTitle: string
890
+ ): this;
891
+ /**
892
+ * Sets a new value for property {@link #getWarningText warningText}.
893
+ *
894
+ * Warning text which appears as a message prior to executing the rest callback. **Note:** The `warningText`
895
+ * may only be used in case the `reset` callback has been provided.
896
+ *
897
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
898
+ */
899
+ setWarningText(
900
+ /**
901
+ * New value for property `warningText`
902
+ */
903
+ sWarningText: string
904
+ ): this;
905
+ }
906
+ /**
907
+ * @SINCE 1.96
908
+ * @EXPERIMENTAL (since 1.96)
909
+ *
910
+ * This control can be used to customize personalization content for adding/removing items for an associated
911
+ * control instance.
912
+ */
913
+ class SelectionPanel /* was: sap.m.p13n.BasePanel */ extends Object {
914
+ /**
915
+ * Constructor for a new `SelectionPanel`.
916
+ *
917
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
918
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
919
+ * of the syntax of the settings object.
920
+ */
921
+ constructor(
922
+ /**
923
+ * Initial settings for the new control
924
+ */
925
+ mSettings?: sap.m.p13n.$SelectionPanelSettings
926
+ );
927
+ /**
928
+ * Constructor for a new `SelectionPanel`.
929
+ *
930
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
931
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
932
+ * of the syntax of the settings object.
933
+ */
934
+ constructor(
935
+ /**
936
+ * ID for the new control, generated automatically if no ID is given
937
+ */
938
+ sId?: string,
939
+ /**
940
+ * Initial settings for the new control
941
+ */
942
+ mSettings?: sap.m.p13n.$SelectionPanelSettings
943
+ );
944
+
945
+ /**
946
+ * Creates a new subclass of class sap.m.p13n.SelectionPanel with name `sClassName` and enriches it with
947
+ * the information contained in `oClassInfo`.
948
+ *
949
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.m.p13n.BasePanel.extend}.
950
+ */
951
+ static extend<T extends Record<string, unknown>>(
952
+ /**
953
+ * Name of the class being created
954
+ */
955
+ sClassName: string,
956
+ /**
957
+ * Object literal with information about the class
958
+ */
959
+ oClassInfo?: sap.ClassInfo<T, sap.m.p13n.SelectionPanel>,
960
+ /**
961
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
962
+ * used by this class
963
+ */
964
+ FNMetaImpl?: Function
965
+ ): Function;
966
+ /**
967
+ * Returns a metadata object for class sap.m.p13n.SelectionPanel.
968
+ */
969
+ static getMetadata(): sap.ui.core.ElementMetadata;
970
+ /**
971
+ * Gets current value of property {@link #getActiveColumn activeColumn}.
972
+ *
973
+ * The second column in the panel showing the move buttons for reordering.
974
+ *
975
+ * Default value is `empty string`.
976
+ */
977
+ getActiveColumn(): string;
978
+ /**
979
+ * Gets current value of property {@link #getEnableCount enableCount}.
980
+ *
981
+ * Enables a count for selected items compared to available items, for example, Currency (3/12), in addition
982
+ * to the first column text.
983
+ *
984
+ * Default value is `false`.
985
+ */
986
+ getEnableCount(): boolean;
987
+ /**
988
+ * Gets current value of property {@link #getFieldColumn fieldColumn}.
989
+ *
990
+ * The first column in the panel describing the selectable fields.
991
+ *
992
+ * Default value is `...see text or source`.
993
+ */
994
+ getFieldColumn(): string;
995
+ /**
996
+ * Gets current value of property {@link #getItemFactory itemFactory}.
997
+ *
998
+ * An optional callback that may be used to display additional custom content in each selectable item. This
999
+ * factory can be toggled by executing the {@link sap.m.p13n.SelectionPanel#showFactory} method.
1000
+ */
1001
+ getItemFactory(): Function;
1002
+ /**
1003
+ * Gets current value of property {@link #getShowHeader showHeader}.
1004
+ *
1005
+ * Shows an additional header with a search field and the Show Selected button.
1006
+ *
1007
+ * Default value is `false`.
1008
+ */
1009
+ getShowHeader(): boolean;
1010
+ /**
1011
+ * Sets a new value for property {@link #getActiveColumn activeColumn}.
1012
+ *
1013
+ * The second column in the panel showing the move buttons for reordering.
1014
+ *
1015
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1016
+ *
1017
+ * Default value is `empty string`.
1018
+ */
1019
+ setActiveColumn(
1020
+ /**
1021
+ * New value for property `activeColumn`
1022
+ */
1023
+ sActiveColumn?: string
1024
+ ): this;
1025
+ /**
1026
+ * Sets a new value for property {@link #getEnableCount enableCount}.
1027
+ *
1028
+ * Enables a count for selected items compared to available items, for example, Currency (3/12), in addition
1029
+ * to the first column text.
1030
+ *
1031
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1032
+ *
1033
+ * Default value is `false`.
1034
+ */
1035
+ setEnableCount(
1036
+ /**
1037
+ * New value for property `enableCount`
1038
+ */
1039
+ bEnableCount?: boolean
1040
+ ): this;
1041
+ /**
1042
+ * Sets a new value for property {@link #getFieldColumn fieldColumn}.
1043
+ *
1044
+ * The first column in the panel describing the selectable fields.
1045
+ *
1046
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1047
+ *
1048
+ * Default value is `...see text or source`.
1049
+ */
1050
+ setFieldColumn(
1051
+ /**
1052
+ * New value for property `fieldColumn`
1053
+ */
1054
+ sFieldColumn?: string
1055
+ ): this;
1056
+ /**
1057
+ * Sets a new value for property {@link #getItemFactory itemFactory}.
1058
+ *
1059
+ * An optional callback that may be used to display additional custom content in each selectable item. This
1060
+ * factory can be toggled by executing the {@link sap.m.p13n.SelectionPanel#showFactory} method.
1061
+ *
1062
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1063
+ */
1064
+ setItemFactory(
1065
+ /**
1066
+ * New value for property `itemFactory`
1067
+ */
1068
+ fnItemFactory: Function
1069
+ ): this;
1070
+ /**
1071
+ * Sets the personalization state of the panel instance.
1072
+ */
1073
+ setP13nData(
1074
+ /**
1075
+ * An array containing the personalization state that is represented by the `SelectionPanel`.
1076
+ */
1077
+ aP13nData: sap.m.p13n.Item
1078
+ ): void;
1079
+ /**
1080
+ * Sets a new value for property {@link #getShowHeader showHeader}.
1081
+ *
1082
+ * Shows an additional header with a search field and the Show Selected button.
1083
+ *
1084
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1085
+ *
1086
+ * Default value is `false`.
1087
+ */
1088
+ setShowHeader(
1089
+ /**
1090
+ * New value for property `showHeader`
1091
+ */
1092
+ bShowHeader?: boolean
1093
+ ): this;
1094
+ }
1095
+ /**
1096
+ * @SINCE 1.96
1097
+ * @EXPERIMENTAL (since 1.96)
1098
+ *
1099
+ * This control can be used to customize personalization content for sorting for an associated control instance.
1100
+ */
1101
+ class SortPanel /* was: sap.m.p13n.QueryPanel */ extends Object {
1102
+ /**
1103
+ * Constructor for a new `SortPanel`.
1104
+ */
1105
+ constructor(
1106
+ /**
1107
+ * Initial settings for the new control
1108
+ */
1109
+ mSettings?: sap.m.p13n.$SortPanelSettings
1110
+ );
1111
+ /**
1112
+ * Constructor for a new `SortPanel`.
1113
+ */
1114
+ constructor(
1115
+ /**
1116
+ * ID for the new control, generated automatically if no ID is given
1117
+ */
1118
+ sId?: string,
1119
+ /**
1120
+ * Initial settings for the new control
1121
+ */
1122
+ mSettings?: sap.m.p13n.$SortPanelSettings
1123
+ );
1124
+
1125
+ /**
1126
+ * Creates a new subclass of class sap.m.p13n.SortPanel with name `sClassName` and enriches it with the
1127
+ * information contained in `oClassInfo`.
1128
+ *
1129
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.m.p13n.QueryPanel.extend}.
1130
+ */
1131
+ static extend<T extends Record<string, unknown>>(
1132
+ /**
1133
+ * Name of the class being created
1134
+ */
1135
+ sClassName: string,
1136
+ /**
1137
+ * Object literal with information about the class
1138
+ */
1139
+ oClassInfo?: sap.ClassInfo<T, sap.m.p13n.SortPanel>,
1140
+ /**
1141
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1142
+ * used by this class
1143
+ */
1144
+ FNMetaImpl?: Function
1145
+ ): Function;
1146
+ /**
1147
+ * Returns a metadata object for class sap.m.p13n.SortPanel.
1148
+ */
1149
+ static getMetadata(): sap.ui.core.ElementMetadata;
1150
+ /**
1151
+ * Sets the personalization state of the panel instance.
1152
+ */
1153
+ static setP13nData(
1154
+ /**
1155
+ * An array containing the personalization state
1156
+ */
1157
+ aP13nData: sap.m.p13n.SortItem
1158
+ ): sap.m.p13n.SortPanel;
1159
+ }
1160
+
1161
+ /**
1162
+ * P13n `GroupItem` object type.
1163
+ */
1164
+ type GroupItem = {
1165
+ /**
1166
+ * The unique key of the item
1167
+ */
1168
+ name: String;
1169
+ /**
1170
+ * The label describing the personalization item
1171
+ */
1172
+ label: String;
1173
+ /**
1174
+ * Defines the grouping state of the personalization item
1175
+ */
1176
+ grouped: Boolean;
1177
+ };
1178
+
1179
+ /**
1180
+ * P13n `Item` object type.
1181
+ */
1182
+ type Item = {
1183
+ /**
1184
+ * The unique key of the item
1185
+ */
1186
+ name: string;
1187
+ /**
1188
+ * The label describing the personalization item
1189
+ */
1190
+ label: string;
1191
+ /**
1192
+ * Defines the selection state of the personalization item
1193
+ */
1194
+ visible: boolean;
1195
+ };
1196
+
1197
+ /**
1198
+ * P13n `SortItem` object type.
1199
+ */
1200
+ type SortItem = {
1201
+ /**
1202
+ * The unique key of the item
1203
+ */
1204
+ name: String;
1205
+ /**
1206
+ * The label describing the personalization item
1207
+ */
1208
+ label: String;
1209
+ /**
1210
+ * Defines the sorting state of the personalization item
1211
+ */
1212
+ sorted: Boolean;
1213
+ /**
1214
+ * Defines the descending state of the personalization item
1215
+ */
1216
+ descending: Boolean;
1217
+ };
1218
+ }
1219
+
383
1220
  namespace PlanningCalendar {
384
1221
  /**
385
1222
  * A comparison function for appointments.
@@ -1267,9 +2104,8 @@ declare namespace sap {
1267
2104
  /**
1268
2105
  * @SINCE 1.28.1
1269
2106
  *
1270
- * SAPUI5 mobile `Router`. The difference to the {@link sap.ui.core.routing.Router} are the `viewLevel`,
1271
- * `transition`, and `transitionParameters` properties that you can specify in every Route or Target created
1272
- * by this router.
2107
+ * SAPUI5 mobile `Router`. The difference to the {@link sap.ui.core.routing.Router} are the `level`, `transition`,
2108
+ * and `transitionParameters` properties that you can specify in every Route or Target created by this router.
1273
2109
  */
1274
2110
  class Router extends sap.ui.core.routing.Router {
1275
2111
  /**
@@ -1438,7 +2274,7 @@ declare namespace sap {
1438
2274
  * ],
1439
2275
  * // Default values shared by routes and Targets
1440
2276
  * {
1441
- * viewNamespace: "my.application.namespace",
2277
+ * path: "my.application.namespace",
1442
2278
  * viewType: "XML"
1443
2279
  * },
1444
2280
  * // You should only use this constructor when you are not using a router with a component.
@@ -1450,7 +2286,8 @@ declare namespace sap {
1450
2286
  * //same name as in the route called 'startRoute'
1451
2287
  * welcome: {
1452
2288
  * // All properties for creating and placing a view go here or in the config
1453
- * viewName: "Welcome",
2289
+ * type: "View",
2290
+ * name: "Welcome",
1454
2291
  * controlId: "app",
1455
2292
  * controlAggregation: "pages"
1456
2293
  * }
@@ -1564,7 +2401,7 @@ declare namespace sap {
1564
2401
  *
1565
2402
  * The mobile extension of `Targets` also handles the triggering of page navigation when the target control
1566
2403
  * is an `{@link sap.m.SplitContainer}`, an `{@link sap.m.NavContainer}` or a control which extends one
1567
- * of these. Other controls are also allowed, but the extra parameters `viewLevel`, `transition` and `transitionParameters`
2404
+ * of these. Other controls are also allowed, but the extra parameters `level`, `transition` and `transitionParameters`
1568
2405
  * are ignored and it behaves as `{@link sap.ui.core.routing.Targets}`.
1569
2406
  *
1570
2407
  * When a target is displayed, dialogs will be closed. To change this use `{@link #getTargetHandler}` and
@@ -1576,7 +2413,7 @@ declare namespace sap {
1576
2413
  */
1577
2414
  constructor(oOptions: {
1578
2415
  /**
1579
- * the views instance will create the views of all the targets defined, so if 2 targets have the same viewName,
2416
+ * the views instance will create the views of all the targets defined, so if 2 targets have the same name,
1580
2417
  * the same instance of the view will be displayed.
1581
2418
  */
1582
2419
  views: sap.ui.core.routing.Views;
@@ -1655,13 +2492,15 @@ declare namespace sap {
1655
2492
  * {
1656
2493
  * targets: {
1657
2494
  * welcome: {
1658
- * viewName: "Welcome",
2495
+ * type: "View",
2496
+ * name: "Welcome",
1659
2497
  * viewType: "XML",
1660
2498
  * ....
1661
2499
  * // Other target parameters
1662
2500
  * },
1663
2501
  * goodbye: {
1664
- * viewName: "Bye",
2502
+ * type: "View",
2503
+ * name: "Bye",
1665
2504
  * viewType: "JS",
1666
2505
  * ....
1667
2506
  * // Other target parameters
@@ -1677,8 +2516,14 @@ declare namespace sap {
1677
2516
  */
1678
2517
  anyName: {
1679
2518
  /**
1680
- * The name of a view that will be created. To place the view into a Control use the controlAggregation
1681
- * and controlId. Views will only be created once per viewName.
2519
+ * Defines whether the target creates an instance of 'View' or 'Component'.
2520
+ */
2521
+ type: string;
2522
+ /**
2523
+ * Defines the name of the View or Component that will be created. For type 'Component', use option `usage`
2524
+ * instead if an owner component exists. To place the view or component into a Control, use the options
2525
+ * `controlAggregation` and `controlId`. Instance of View or Component will only be created once per `name`
2526
+ * or `usage` combined with `id`.
1682
2527
  * ```javascript
1683
2528
  *
1684
2529
  *
@@ -1686,14 +2531,16 @@ declare namespace sap {
1686
2531
  * targets: {
1687
2532
  * // If display("masterWelcome") is called, the master view will be placed in the 'MasterPages' of a control with the id splitContainter
1688
2533
  * masterWelcome: {
1689
- * viewName: "Welcome",
2534
+ * type: "View",
2535
+ * name: "Welcome",
1690
2536
  * controlId: "splitContainer",
1691
2537
  * controlAggregation: "masterPages"
1692
2538
  * },
1693
2539
  * // If display("detailWelcome") is called after the masterWelcome, the view will be removed from the master pages and added to the detail pages, since the same instance is used. Also the controls inside of the view will have the same state.
1694
2540
  * detailWelcome: {
1695
2541
  * // same view here, that's why the same instance is used
1696
- * viewName: "Welcome",
2542
+ * type: "View",
2543
+ * name: "Welcome",
1697
2544
  * controlId: "splitContainer",
1698
2545
  * controlAggregation: "detailPages"
1699
2546
  * }
@@ -1703,28 +2550,28 @@ declare namespace sap {
1703
2550
  * ```
1704
2551
  *
1705
2552
  *
1706
- * If you want to have a second instance of the welcome view you can use the following:
2553
+ * If you want to have a second instance of the welcome view you can assign the targets with different ids:
1707
2554
  *
1708
2555
  *
1709
2556
  * ```javascript
1710
2557
  *
1711
2558
  *
1712
- * // Some code you execute before you display the taget named 'detailWelcome':
1713
- * var oView = sap.ui.view(({ viewName : "Welcome", type : sap.ui.core.mvc.ViewType.XML});
1714
- * oTargets.getViews().setView("WelcomeWithAlias", oView)
1715
- *
1716
2559
  * {
1717
2560
  * targets: {
1718
- * // If display("masterWelcome") is called, the master viewName will be placed in the 'MasterPages' of a control with the id splitContainter
2561
+ * // If display("masterWelcome") is called, the "masterWelcome" view will be placed in the 'MasterPages' of a control with the id splitContainter
1719
2562
  * masterWelcome: {
1720
- * viewName: "Welcome",
2563
+ * type: "View",
2564
+ * name: "Welcome",
2565
+ * id: "masterWelcome",
1721
2566
  * controlId: "splitContainer",
1722
2567
  * controlAggregation: "masterPages"
1723
2568
  * },
1724
- * // If display("detailWelcome") is called after the masterWelcome, a second instance with an own controller instance will be added in the detail pages.
2569
+ * // If display("detailWelcome") is called after the "masterWelcome", a second instance with an own controller instance will be added in the detail pages.
1725
2570
  * detailWelcome: {
1726
- * // same viewName here, that's why the same instance is used
1727
- * viewName: "WelcomeWithAlias",
2571
+ * type: "View",
2572
+ * name: "Welcome",
2573
+ * // another instance will be created because a different id is used
2574
+ * id: "detailWelcome",
1728
2575
  * controlId: "splitContainer",
1729
2576
  * controlAggregation: "detailPages"
1730
2577
  * }
@@ -1733,23 +2580,28 @@ declare namespace sap {
1733
2580
  *
1734
2581
  * ```
1735
2582
  */
1736
- viewName: string;
2583
+ name?: string;
2584
+ /**
2585
+ * Defines the 'usage' name for 'Component' target which refers to the '/sap.ui5/componentUsages' entry
2586
+ * in the owner component's manifest.
2587
+ */
2588
+ usage?: string;
1737
2589
  /**
1738
2590
  * The type of the view that is going to be created. These are the supported types: {@link sap.ui.core.mvc.ViewType}.
1739
2591
  * You always have to provide a viewType except if `oOptions.config.viewType` is set or using {@link sap.ui.core.routing.Views#setView}.
1740
2592
  */
1741
2593
  viewType?: string;
1742
2594
  /**
1743
- * A prefix that will be prepended in front of the viewName.
1744
- * **Example:** viewName is set to "myView" and viewPath is set to "myApp" - the created viewName will
1745
- * be "myApp.myView".
2595
+ * A prefix that will be prepended in front of the `name`.
2596
+ * **Example:** `name` is set to "myView" and `path` is set to "myApp" - the created view's name will be
2597
+ * "myApp.myView".
1746
2598
  */
1747
- viewPath?: string;
2599
+ path?: string;
1748
2600
  /**
1749
- * The id of the created view. This is will be prefixed with the id of the component set to the views instance
1750
- * provided in oOptions.views. For details see {@link sap.ui.core.routing.Views#getView}.
2601
+ * The id of the created view or component. This is will be prefixed with the id of the component set to
2602
+ * the views instance provided in oOptions.views. For details see {@link sap.ui.core.routing.Views#getView}.
1751
2603
  */
1752
- viewId?: string;
2604
+ id?: string;
1753
2605
  /**
1754
2606
  * The id of the parent of the controlId - This should be the id of the view that contains your controlId,
1755
2607
  * since the target control will be retrieved by calling the {@link sap.ui.core.mvc.View#byId} function
@@ -1832,11 +2684,13 @@ declare namespace sap {
1832
2684
  * // a reference to the app control in the rootView created by our UIComponent
1833
2685
  * controlId: 'myApp',
1834
2686
  * // An app has a pages aggregation where the views need to be put into
1835
- * controlAggregation: 'pages'
2687
+ * controlAggregation: 'pages',
2688
+ * // all targets have type "View"
2689
+ * type: "View"
1836
2690
  * },
1837
2691
  * targets: {
1838
2692
  * detail: {
1839
- * viewName: 'Detail'
2693
+ * name: 'Detail'
1840
2694
  * },
1841
2695
  * secondTabContent: {
1842
2696
  * // A reference to the detail target defined above
@@ -1846,7 +2700,7 @@ declare namespace sap {
1846
2700
  * // An IconTabFilter has an aggregation called content so we need to overwrite the pages set in the config as default.
1847
2701
  * controlAggregation: 'content',
1848
2702
  * // A view containing the content
1849
- * viewName: 'SecondTabContent'
2703
+ * name: 'SecondTabContent'
1850
2704
  * }
1851
2705
  * }
1852
2706
  * });
@@ -1863,11 +2717,11 @@ declare namespace sap {
1863
2717
  /**
1864
2718
  * If you are having an application that has a logical order of views (eg: a create account process, first
1865
2719
  * provide user data, then review and confirm them). You always want to show a backwards transition if a
1866
- * navigation from the confirm to the userData page takes place. Therefore you may use the viewLevel. The
1867
- * viewLevel has to be an integer. The user data page should have a lower number than the confirm page.
1868
- * These levels should represent the user process of your application and they do not have to match the
1869
- * container structure of your Targets. If the user navigates between views with the same viewLevel, a forward
1870
- * transition is taken. If you pass a direction into the display function, the viewLevel will be ignored.
2720
+ * navigation from the confirm to the userData page takes place. Therefore you may use the `level`. The
2721
+ * `level` has to be an integer. The user data page should have a lower number than the confirm page. These
2722
+ * levels should represent the user process of your application and they do not have to match the container
2723
+ * structure of your Targets. If the user navigates between targets with the same `level`, a forward transition
2724
+ * is taken. If you pass a direction into the display function, the `level` will be ignored.
1871
2725
  * **Example:**
1872
2726
  *
1873
2727
  * ```javascript
@@ -1876,15 +2730,15 @@ declare namespace sap {
1876
2730
  * {
1877
2731
  * targets: {
1878
2732
  * startPage: {
1879
- * viewLevel: 0
2733
+ * level: 0
1880
2734
  * // more properties
1881
2735
  * },
1882
2736
  * userData: {
1883
- * viewLevel: 1
2737
+ * level: 1
1884
2738
  * // more properties
1885
2739
  * },
1886
2740
  * confirmRegistration: {
1887
- * viewLevel: 2
2741
+ * level: 2
1888
2742
  * // more properties
1889
2743
  * },
1890
2744
  * settings: {
@@ -1897,14 +2751,14 @@ declare namespace sap {
1897
2751
  *
1898
2752
  *
1899
2753
  * Currently the 'userData' target is displayed.
1900
- * - If we navigate to 'startPage' the navContainer will show a backwards navigation, since the viewLevel
2754
+ * - If we navigate to 'startPage' the navContainer will show a backwards navigation, since the `level`
1901
2755
  * is lower.
1902
- * - If we navigate to 'userData' the navContainer will show a forwards navigation, since the viewLevel
2756
+ * - If we navigate to 'userData' the navContainer will show a forwards navigation, since the `level`
1903
2757
  * is higher.
1904
- * - If we navigate to 'settings' the navContainer will show a forwards navigation, since the viewLevel
2758
+ * - If we navigate to 'settings' the navContainer will show a forwards navigation, since the `level`
1905
2759
  * is not defined and cannot be compared.
1906
2760
  */
1907
- viewLevel?: int;
2761
+ level?: int;
1908
2762
  /**
1909
2763
  * define which transition of the {@link sap.m.NavContainer} will be applied when navigating. If it is not
1910
2764
  * defined, the nav container will take its default transition.
@@ -7321,6 +8175,7 @@ declare namespace sap {
7321
8175
  * in the `maxFileNameLength` property.
7322
8176
  * - When the file name length restriction changes, and the file to be uploaded fails to meet the new
7323
8177
  * restriction.
8178
+ * - Listeners can use the item parameter to remove the incomplete item that failed to meet the restriction
7324
8179
  */
7325
8180
  fileNameLengthExceeded?: (oEvent: sap.ui.base.Event) => void;
7326
8181
 
@@ -7329,6 +8184,8 @@ declare namespace sap {
7329
8184
  * - When a file that is selected to be uploaded fails to meet the file size restriction specified in
7330
8185
  * the `maxFileSize` property.
7331
8186
  * - When the file size restriction changes, and the file to be uploaded fails to meet the new restriction.
8187
+ *
8188
+ * - Listeners can use the item parameter to remove the incomplete item that failed to meet the restriction
7332
8189
  */
7333
8190
  fileSizeExceeded?: (oEvent: sap.ui.base.Event) => void;
7334
8191
 
@@ -7781,6 +8638,21 @@ declare namespace sap {
7781
8638
  * The item that was uploaded.
7782
8639
  */
7783
8640
  item?: sap.m.upload.UploadSetItem;
8641
+ /**
8642
+ * A JSON object containing the additional response parameters like response, responseXML, readyState, status
8643
+ * and headers. Sample response object:
8644
+ * ```javascript
8645
+ *
8646
+ * {
8647
+ * response: "\n...\n",
8648
+ * responseXML: null,
8649
+ * readyState: 2,
8650
+ * status: 404,
8651
+ * headers: "allow: GET, HEAD"
8652
+ * }
8653
+ * ```
8654
+ */
8655
+ responseXHR?: object;
7784
8656
  }
7785
8657
  ): this;
7786
8658
  /**
@@ -8398,6 +9270,7 @@ declare namespace sap {
8398
9270
  * in the `maxFileNameLength` property.
8399
9271
  * - When the file name length restriction changes, and the file to be uploaded fails to meet the new
8400
9272
  * restriction.
9273
+ * - Listeners can use the item parameter to remove the incomplete item that failed to meet the restriction
8401
9274
  */
8402
9275
  attachFileNameLengthExceeded(
8403
9276
  /**
@@ -8426,6 +9299,7 @@ declare namespace sap {
8426
9299
  * in the `maxFileNameLength` property.
8427
9300
  * - When the file name length restriction changes, and the file to be uploaded fails to meet the new
8428
9301
  * restriction.
9302
+ * - Listeners can use the item parameter to remove the incomplete item that failed to meet the restriction
8429
9303
  */
8430
9304
  attachFileNameLengthExceeded(
8431
9305
  /**
@@ -8448,6 +9322,8 @@ declare namespace sap {
8448
9322
  * - When a file that is selected to be uploaded fails to meet the file size restriction specified in
8449
9323
  * the `maxFileSize` property.
8450
9324
  * - When the file size restriction changes, and the file to be uploaded fails to meet the new restriction.
9325
+ *
9326
+ * - Listeners can use the item parameter to remove the incomplete item that failed to meet the restriction
8451
9327
  */
8452
9328
  attachFileSizeExceeded(
8453
9329
  /**
@@ -8475,6 +9351,8 @@ declare namespace sap {
8475
9351
  * - When a file that is selected to be uploaded fails to meet the file size restriction specified in
8476
9352
  * the `maxFileSize` property.
8477
9353
  * - When the file size restriction changes, and the file to be uploaded fails to meet the new restriction.
9354
+ *
9355
+ * - Listeners can use the item parameter to remove the incomplete item that failed to meet the restriction
8478
9356
  */
8479
9357
  attachFileSizeExceeded(
8480
9358
  /**
@@ -9190,6 +10068,46 @@ declare namespace sap {
9190
10068
  * The file whose upload has just been completed.
9191
10069
  */
9192
10070
  item?: sap.m.upload.UploadSetItem;
10071
+ /**
10072
+ * Response message which comes from the server.
10073
+ *
10074
+ * On the server side this response has to be put within the "body" tags of the response document
10075
+ * of the iFrame. It can consist of a return code and an optional message. This does not work in cross-domain
10076
+ * scenarios.
10077
+ */
10078
+ response?: string;
10079
+ /**
10080
+ * ReadyState of the XHR request.
10081
+ *
10082
+ * Required for receiving a `readyState` is to set the property `sendXHR` to true. This property is not
10083
+ * supported by Internet Explorer 9.
10084
+ */
10085
+ readyState?: string;
10086
+ /**
10087
+ * Status of the XHR request.
10088
+ *
10089
+ * Required for receiving a `status` is to set the property `sendXHR` to true. This property is not supported
10090
+ * by Internet Explorer 9.
10091
+ */
10092
+ status?: string;
10093
+ /**
10094
+ * Http-Response which comes from the server.
10095
+ *
10096
+ * Required for receiving `responseXML` is to set the property `sendXHR` to true.
10097
+ *
10098
+ * This property is not supported by Internet Explorer 9.
10099
+ */
10100
+ responseXML?: string;
10101
+ /**
10102
+ * Http-Response-Headers which come from the server.
10103
+ *
10104
+ * Provided as a JSON-map, i.e. each header-field is reflected by a property in the `headers` object, with
10105
+ * the property value reflecting the header-field's content.
10106
+ *
10107
+ * Required for receiving `headers` is to set the property `sendXHR` to true. This property is not supported
10108
+ * by Internet Explorer 9.
10109
+ */
10110
+ headers?: object;
9193
10111
  }
9194
10112
  ): this;
9195
10113
  /**
@@ -9412,7 +10330,7 @@ declare namespace sap {
9412
10330
  ): this;
9413
10331
  /**
9414
10332
  * Attaches all necessary handlers to the given uploader instance, so that the progress and status of the
9415
- * upload can be displayed and monitored.
10333
+ * upload can be displayed and monitored. This is necessary in case when custom uploader is used.
9416
10334
  */
9417
10335
  registerUploaderEvents(
9418
10336
  /**
@@ -10148,6 +11066,13 @@ declare namespace sap {
10148
11066
  */
10149
11067
  iIndex: int
10150
11068
  ): this;
11069
+ /**
11070
+ * @SINCE 1.98
11071
+ *
11072
+ * Validates if the item is restricted, which means that it is restricted for the file type, media type,
11073
+ * maximum file name length and maximum file size limit.
11074
+ */
11075
+ isRestricted(): boolean;
10151
11076
  /**
10152
11077
  * Removes all the controls from the aggregation {@link #getAttributes attributes}.
10153
11078
  *
@@ -10889,6 +11814,15 @@ declare namespace sap {
10889
11814
  */
10890
11815
  badgeTooltip?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
10891
11816
 
11817
+ /**
11818
+ * @SINCE 1.97
11819
+ *
11820
+ * Defines whether the `sap.m.Avatar` is used for decorative purposes and is ignored by accessibility tools.
11821
+ *
11822
+ * **Note:** This property doesn't take effect if `sap.m.Avatar` has a `press` handler.
11823
+ */
11824
+ decorative?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
11825
+
10892
11826
  /**
10893
11827
  * A `sap.m.LightBox` instance, that will be opened automatically when the user interacts with the `Avatar`
10894
11828
  * control.
@@ -11893,6 +12827,14 @@ declare namespace sap {
11893
12827
  */
11894
12828
  open?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
11895
12829
 
12830
+ /**
12831
+ * @SINCE 1.96
12832
+ *
12833
+ * Specifies whether clear icon is shown. Pressing the icon will clear input's value and fire the change
12834
+ * and liveChange events.
12835
+ */
12836
+ showClearIcon?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
12837
+
11896
12838
  /**
11897
12839
  * Defines the items contained within this control. **Note:** Disabled items are not visualized in the list
11898
12840
  * with the available options, however they can still be accessed through the aggregation.
@@ -12107,6 +13049,21 @@ declare namespace sap {
12107
13049
  | boolean
12108
13050
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
12109
13051
 
13052
+ /**
13053
+ * @SINCE 1.97
13054
+ *
13055
+ * Determines whether the input field of the picker is hidden or visible. When set to `true`, the input
13056
+ * field becomes invisible and there is no way to open the picker popover. In that case it can be opened
13057
+ * by another control through calling of picker's `openBy` method, and the opening control's DOM reference
13058
+ * must be provided as parameter.
13059
+ *
13060
+ * Note: Since the picker is not responsible for accessibility attributes of the control which opens its
13061
+ * popover, those attributes should be added by the application developer. The following is recommended
13062
+ * to be added to the opening control: a text or tooltip that describes the action (example: "Open Date
13063
+ * Picker"), and also aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
13064
+ */
13065
+ hideInput?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
13066
+
12110
13067
  /**
12111
13068
  * @SINCE 1.38.5
12112
13069
  *
@@ -12334,18 +13291,27 @@ declare namespace sap {
12334
13291
  /**
12335
13292
  * @SINCE 1.56
12336
13293
  *
12337
- * Sets the minutes slider step. If the step is less than 1, it will be automatically converted back to
12338
- * 1. The minutes slider is populated only by multiples of the step.
13294
+ * Sets the minutes step. If the step is less than 1, it will be automatically converted back to 1. The
13295
+ * minutes clock is populated only by multiples of the step.
12339
13296
  */
12340
13297
  minutesStep?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
12341
13298
 
12342
13299
  /**
12343
13300
  * @SINCE 1.56
12344
13301
  *
12345
- * Sets the seconds slider step. If the step is less than 1, it will be automatically converted back to
12346
- * 1. The seconds slider is populated only by multiples of the step.
13302
+ * Sets the seconds step. If the step is less than 1, it will be automatically converted back to 1. The
13303
+ * seconds clock is populated only by multiples of the step.
12347
13304
  */
12348
13305
  secondsStep?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
13306
+
13307
+ /**
13308
+ * @SINCE 1.98
13309
+ *
13310
+ * Determines whether there is a shortcut navigation to current time.
13311
+ */
13312
+ showCurrentTimeButton?:
13313
+ | boolean
13314
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
12349
13315
  }
12350
13316
 
12351
13317
  interface $DialogSettings extends sap.ui.core.$ControlSettings {
@@ -12599,7 +13565,7 @@ declare namespace sap {
12599
13565
  * In the Dialog focus is set first on the `beginButton` and then on `endButton`, when available. If another
12600
13566
  * control needs to get the focus, set the `initialFocus` with the control which should be focused on. Setting
12601
13567
  * `initialFocus` to input controls doesn't open the On-Screen keyboard on mobile device as, due to browser
12602
- * limitation, the On-Screen keyboard can't be opened with JavaScript code. The opening of On-Screen keyboard
13568
+ * restriction, the On-Screen keyboard can't be opened with JavaScript code. The opening of On-Screen keyboard
12603
13569
  * must be triggered by real user action.
12604
13570
  */
12605
13571
  initialFocus?: sap.ui.core.Control | string;
@@ -12814,10 +13780,15 @@ declare namespace sap {
12814
13780
  type?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
12815
13781
 
12816
13782
  /**
12817
- * A text for an additional label describing the interactive UI.
13783
+ * A text for an additional label that describes the interactive UI and is placed before the UI element.
12818
13784
  */
12819
13785
  text?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
12820
13786
 
13787
+ /**
13788
+ * A text for an additional label that describes the interactive UI and is placed after the UI element.
13789
+ */
13790
+ additionalText?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
13791
+
12821
13792
  /**
12822
13793
  * Describes the options in a radio button group.
12823
13794
  */
@@ -13771,6 +14742,13 @@ declare namespace sap {
13771
14742
  */
13772
14743
  value?: sap.m.ObjectNumber;
13773
14744
 
14745
+ /**
14746
+ * @SINCE 1.97.0
14747
+ *
14748
+ * Association to controls / ids which label this control (see WAI-ARIA attribute aria-labelledBy).
14749
+ */
14750
+ ariaLabelledBy?: Array<sap.ui.core.Control | string>;
14751
+
13774
14752
  /**
13775
14753
  * Fired when the user clicks/taps on the control.
13776
14754
  */
@@ -14430,7 +15408,6 @@ declare namespace sap {
14430
15408
 
14431
15409
  /**
14432
15410
  * @SINCE 1.77
14433
- * @EXPERIMENTAL (since 1.77)
14434
15411
  *
14435
15412
  * The sub items of this filter (optional).
14436
15413
  */
@@ -14591,6 +15568,102 @@ declare namespace sap {
14591
15568
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
14592
15569
  }
14593
15570
 
15571
+ interface $IllustratedMessageSettings extends sap.ui.core.$ControlSettings {
15572
+ /**
15573
+ * @SINCE 1.98
15574
+ *
15575
+ * Defines the description displayed below the title.
15576
+ *
15577
+ * If there is no initial input from the app developer and the default illustration set is being used, a
15578
+ * default description for the current illustration type is going to be displayed. The default description
15579
+ * is stored in the `sap.m` resource bundle.
15580
+ */
15581
+ description?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
15582
+
15583
+ /**
15584
+ * @SINCE 1.98
15585
+ *
15586
+ * Defines whether the value set in the `description` property is displayed as formatted text in HTML format.
15587
+ *
15588
+ * For details regarding supported HTML tags, see {@link sap.m.FormattedText}.
15589
+ */
15590
+ enableFormattedText?:
15591
+ | boolean
15592
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
15593
+
15594
+ /**
15595
+ * @SINCE 1.98
15596
+ *
15597
+ * Determines which illustration breakpoint variant is used.
15598
+ *
15599
+ * As `IllustratedMessage` adapts itself around the `Illustration`, the other elements of the control are
15600
+ * displayed differently on the different breakpoints/illustration sizes.
15601
+ */
15602
+ illustrationSize?:
15603
+ | sap.m.IllustratedMessageSize
15604
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
15605
+
15606
+ /**
15607
+ * @SINCE 1.98
15608
+ *
15609
+ * Determines which illustration type is displayed.
15610
+ *
15611
+ * **Note:** The {@link sap.m.IllustratedMessageType} enumeration contains a default illustration set. If
15612
+ * you want to use another illustration set, you have to register it in the {@link sap.m.IllustrationPool}.
15613
+ *
15614
+ * Example input for the `illustrationType` property is `sapIllus-UnableToLoad`. The logic behind this format
15615
+ * is as follows:
15616
+ * - First is the the illustration set - sapIllus
15617
+ * - Second is the illustration type - UnableToLoad
15618
+ */
15619
+ illustrationType?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
15620
+
15621
+ /**
15622
+ * @SINCE 1.98
15623
+ *
15624
+ * Defines the title that is displayed below the illustration.
15625
+ *
15626
+ * If there is no initial input from the app developer and the default illustration set is being used, a
15627
+ * default title is displayed corresponding to the current `illustrationType`.
15628
+ */
15629
+ title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
15630
+
15631
+ /**
15632
+ * @SINCE 1.98
15633
+ *
15634
+ * Defines the controls placed below the description as additional content.
15635
+ *
15636
+ * **Note:** Not displayed when `illustrationSize` is set to `Base`.
15637
+ */
15638
+ additionalContent?:
15639
+ | sap.m.Button[]
15640
+ | sap.m.Button
15641
+ | sap.ui.base.ManagedObject.AggregationBindingInfo;
15642
+ }
15643
+
15644
+ interface $IllustrationSettings extends sap.ui.core.$ControlSettings {
15645
+ /**
15646
+ * @SINCE 1.98
15647
+ *
15648
+ * Defines which illustration set should be used when building the Symbol ID.
15649
+ */
15650
+ set?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
15651
+
15652
+ /**
15653
+ * @SINCE 1.98
15654
+ *
15655
+ * Defines which media/breakpoint should be used when building the Symbol ID.
15656
+ */
15657
+ media?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
15658
+
15659
+ /**
15660
+ * @SINCE 1.98
15661
+ *
15662
+ * Defines which illustration type should be used when building the Symbol ID.
15663
+ */
15664
+ type?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
15665
+ }
15666
+
14594
15667
  interface $ImageSettings extends sap.ui.core.$ControlSettings {
14595
15668
  /**
14596
15669
  * Relative or absolute path to URL where the image file is stored.
@@ -14865,7 +15938,7 @@ declare namespace sap {
14865
15938
  *
14866
15939
  * If set to true, direct text input is disabled and the control will trigger the event "valueHelpRequest"
14867
15940
  * for all user interactions. The properties "showValueHelp", "editable", and "enabled" must be set to true,
14868
- * otherwise the property will have no effect
15941
+ * otherwise the property will have no effect. In this scenario, the `showItems` API will not work.
14869
15942
  */
14870
15943
  valueHelpOnly?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
14871
15944
 
@@ -15338,6 +16411,17 @@ declare namespace sap {
15338
16411
  | sap.ui.core.VerticalAlign
15339
16412
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
15340
16413
 
16414
+ /**
16415
+ * @SINCE 1.98
16416
+ *
16417
+ * Defines whether a colon (:) character is added to the label.
16418
+ *
16419
+ * **Note:** By default when the `Label` is in the `sap.ui.layout.form.Form` and `sap.ui.layout.form.SimpleForm`
16420
+ * controls the colon (:) character is displayed automatically regardless of the value of the `showColon`
16421
+ * property.
16422
+ */
16423
+ showColon?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
16424
+
15341
16425
  /**
15342
16426
  * Association to the labeled control. By default the label set the for attribute to the ID of the labeled
15343
16427
  * control. This can be changed by implementing the function getIdForLabel on the labelled control.
@@ -16269,6 +17353,17 @@ declare namespace sap {
16269
17353
  */
16270
17354
  title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
16271
17355
 
17356
+ /**
17357
+ * @SINCE 1.97
17358
+ *
17359
+ * Defines the semantic level of the title. When using `Auto`, no explicit level information is written.
17360
+ *
17361
+ * **Note:** Used for accessibility purposes only.
17362
+ */
17363
+ titleLevel?:
17364
+ | sap.ui.core.TitleLevel
17365
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
17366
+
16272
17367
  /**
16273
17368
  * Determines the visibility of the MessagePage header. Can be used to hide the header of the MessagePage
16274
17369
  * when it's embedded in another page.
@@ -17100,6 +18195,24 @@ declare namespace sap {
17100
18195
  | sap.ui.core.TextDirection
17101
18196
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
17102
18197
 
18198
+ /**
18199
+ * @SINCE 1.97.0
18200
+ *
18201
+ * Specifies the value of the `aria-haspopup` attribute
18202
+ *
18203
+ * If the value is `None`, the attribute will not be rendered. Otherwise it will be rendered with the selected
18204
+ * value.
18205
+ *
18206
+ * NOTE: Use this property only when an `sap.m.ObjectAttribute` instance is active and related to a popover/popup.
18207
+ * The value needs to be equal to the main/root role of the popup - e.g. dialog, menu or list (examples:
18208
+ * if you have dialog -> dialog, if you have menu -> menu; if you have list -> list; if you have dialog
18209
+ * containing a list -> dialog). Do not use it, if you open a standard sap.m.Dialog, MessageBox or other
18210
+ * type of modal dialogs.
18211
+ */
18212
+ ariaHasPopup?:
18213
+ | sap.ui.core.aria.HasPopup
18214
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
18215
+
17103
18216
  /**
17104
18217
  * When the aggregation is set, it replaces the `text`, `active` and `textDirection` properties. This also
17105
18218
  * ignores the press event. The provided control is displayed as an active link in case it is a sap.m.Link.
@@ -19426,6 +20539,17 @@ declare namespace sap {
19426
20539
  */
19427
20540
  firstDayOfWeek?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
19428
20541
 
20542
+ /**
20543
+ * @SINCE 1.97
20544
+ *
20545
+ * Determines whether the selection of multiple appointments is enabled.
20546
+ *
20547
+ * Note: selection of multiple appointments is possible using CTRL key regardless of the value of this property.
20548
+ */
20549
+ multipleAppointmentsSelection?:
20550
+ | boolean
20551
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
20552
+
19429
20553
  /**
19430
20554
  * Rows of the `PlanningCalendar`.
19431
20555
  */
@@ -21518,7 +22642,7 @@ declare namespace sap {
21518
22642
  * user inputs, set this flag to `true`.
21519
22643
  *
21520
22644
  * **Note:** The sap.m.SelectDialog uses {@link sap.m.ListBase#rememberSelections this} property of the
21521
- * ListBase and therefore its limitations also apply here.
22645
+ * ListBase and therefore its behavior and restrictions also apply here.
21522
22646
  */
21523
22647
  rememberSelections?:
21524
22648
  | boolean
@@ -21933,7 +23057,7 @@ declare namespace sap {
21933
23057
  * 'phone@2':'phone-retina_114x114.png', 'tablet':'tablet-icon_72x72.png', 'tablet@2':'tablet-retina_144x144.png',
21934
23058
  * 'precomposed':true, 'favicon':'favicon.ico' }
21935
23059
  *
21936
- * See jQuery.sap.setIcons() for full documentation.
23060
+ * See {@link module:sap/ui/util/Mobile.setIcons} for full documentation.
21937
23061
  */
21938
23062
  homeIcon?: object | sap.ui.base.ManagedObject.PropertyBindingInfo;
21939
23063
 
@@ -22042,6 +23166,17 @@ declare namespace sap {
22042
23166
  | boolean
22043
23167
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
22044
23168
 
23169
+ /**
23170
+ * @SINCE 1.98
23171
+ *
23172
+ * If set, the first day of the displayed week is this day. Valid values are 0 to 6 starting on Sunday.
23173
+ * If there is no valid value set, the default of the used locale is used.
23174
+ *
23175
+ * Note: This property will only have effect in Week view and Month view of the SinglePlanningCalendar,
23176
+ * but it wouldn't have effect in WorkWeek view.
23177
+ */
23178
+ firstDayOfWeek?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
23179
+
22045
23180
  /**
22046
23181
  * The controls to be passed to the toolbar.
22047
23182
  */
@@ -22173,6 +23308,17 @@ declare namespace sap {
22173
23308
  * Adds a title for the view
22174
23309
  */
22175
23310
  title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
23311
+
23312
+ /**
23313
+ * @SINCE 1.98
23314
+ *
23315
+ * If set, the first day of the displayed week is this day. Valid values are 0 to 6 starting on Sunday.
23316
+ * If there is no valid value set, the default of the used locale is used.
23317
+ *
23318
+ * Note: This property will only have effect in Week view and Month view of the SinglePlanningCalendar,
23319
+ * but it wouldn't have effect in WorkWeek view.
23320
+ */
23321
+ firstDayOfWeek?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
22176
23322
  }
22177
23323
 
22178
23324
  interface $SinglePlanningCalendarWeekViewSettings
@@ -22706,6 +23852,18 @@ declare namespace sap {
22706
23852
  * 0 or a positive integer must be used for this property.
22707
23853
  */
22708
23854
  wrapCharLimit?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
23855
+
23856
+ /**
23857
+ * @SINCE 1.98
23858
+ *
23859
+ * A `sap.m.Avatar` control instance that, if set, is used instead of an icon or image.
23860
+ *
23861
+ * The size of the `Avatar` control depends on the `insetIcon` property of `StandardListItem`. The `displaySize`
23862
+ * property of the `Avatar` control is not supported. If the `insetIcon` property of `StandardListItem`
23863
+ * is set to `true`, the size of the `Avatar` control is set to XS; if the `insetIcon` property of `StandardListItem`
23864
+ * is set to `false`, the size of the `Avatar` control is set to "S".
23865
+ */
23866
+ avatar?: sap.m.Avatar;
22709
23867
  }
22710
23868
 
22711
23869
  interface $StandardTileSettings extends sap.m.$TileSettings {
@@ -23879,6 +25037,30 @@ declare namespace sap {
23879
25037
  */
23880
25038
  support2400?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
23881
25039
 
25040
+ /**
25041
+ * @SINCE 1.97
25042
+ *
25043
+ * Determines whether the input field of the picker is hidden or visible. When set to `true`, the input
25044
+ * field becomes invisible and there is no way to open the picker popover. In that case it can be opened
25045
+ * by another control through calling of picker's `openBy` method, and the opening control's DOM reference
25046
+ * must be provided as parameter.
25047
+ *
25048
+ * Note: Since the picker is not responsible for accessibility attributes of the control which opens its
25049
+ * popover, those attributes should be added by the application developer. The following is recommended
25050
+ * to be added to the opening control: a text or tooltip that describes the action (example: "Open Time
25051
+ * Picker"), and also aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
25052
+ */
25053
+ hideInput?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
25054
+
25055
+ /**
25056
+ * @SINCE 1.98
25057
+ *
25058
+ * Determines whether there is a shortcut navigation to current time.
25059
+ */
25060
+ showCurrentTimeButton?:
25061
+ | boolean
25062
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
25063
+
23882
25064
  /**
23883
25065
  * A list of validation rules (one rule per mask character).
23884
25066
  */
@@ -25194,6 +26376,134 @@ declare namespace sap {
25194
26376
  activate?: (oEvent: sap.ui.base.Event) => void;
25195
26377
  }
25196
26378
 
26379
+ /**
26380
+ * @EXPERIMENTAL (since 1.92)
26381
+ *
26382
+ * The DynamicDateUtil is a utility class for working with the DynamicDateOption instances.
26383
+ */
26384
+ interface DynamicDateUtil {
26385
+ /**
26386
+ * Adds an option to be reused as a global object.
26387
+ */
26388
+ addOption(
26389
+ /**
26390
+ * The option to be added
26391
+ */
26392
+ option: sap.m.DynamicDateOption
26393
+ ): void;
26394
+ /**
26395
+ * Gets all available standard and custom dynamic date option keys.
26396
+ */
26397
+ getAllOptionKeys(): string[];
26398
+ /**
26399
+ * Gets an option by its key.
26400
+ */
26401
+ getOption(
26402
+ /**
26403
+ * The option key
26404
+ */
26405
+ sKey: string
26406
+ ): sap.m.DynamicDateOption;
26407
+ /**
26408
+ * Gets sorted array of all standard keys.
26409
+ */
26410
+ getStandardKeys(): string[];
26411
+ /**
26412
+ * Parses a string to an array of objects in the DynamicDateRange's value format. Uses the provided formatter.
26413
+ */
26414
+ parse(
26415
+ /**
26416
+ * The string to be parsed
26417
+ */
26418
+ sValue: string,
26419
+ /**
26420
+ * A dynamic date formatter
26421
+ */
26422
+ oFormatter: sap.m.DynamicDateFormat,
26423
+ /**
26424
+ * array of option names
26425
+ */
26426
+ aOptionKeys: any[]
26427
+ ): object[];
26428
+ /**
26429
+ * Calculates a date range from a provided object in the format of the DynamicDateRange's value.
26430
+ */
26431
+ toDates(
26432
+ /**
26433
+ * The provided value
26434
+ */
26435
+ oValue: string
26436
+ ): /* was: sap.ui.core.date.UniversalDate */ any[];
26437
+ }
26438
+ const DynamicDateUtil: DynamicDateUtil;
26439
+
26440
+ /**
26441
+ * @SINCE 1.98
26442
+ *
26443
+ * `IllustrationPool` loads the illustration assets (SVGs) via XMLHttpRequest requests.
26444
+ *
26445
+ * The successfully loaded data is kept in the DOM (div with ID `sap-illustration-pool`) in the `sap-ui-static`
26446
+ * DOM element.
26447
+ *
26448
+ * To load a given asset, register its illustration set through the {@link sap.m.IllustrationPool.registerIllustrationSet
26449
+ * registerIllustrationSet} API of `IllustrationPool`. The exception being the `sapIllus`, which is the
26450
+ * default illustration set that is registered by default.
26451
+ *
26452
+ * The default behavior of `IllustrationPool` is to load/require an asset only when it's needed by using
26453
+ * the {@link sap.m.IllustrationPool.loadAsset} API. When registering the new illustration set, you are
26454
+ * given the option to load all of its assets.
26455
+ *
26456
+ * If some of the assets are not loaded initially, you can load the rest of them on a later state with the
26457
+ * {@link sap.m.IllustrationPool.loadRestOfTheAssets} API.
26458
+ */
26459
+ interface IllustrationPool {
26460
+ /**
26461
+ * Loads an SVG asset depending on the input asset ID.
26462
+ */
26463
+ loadAsset(
26464
+ /**
26465
+ * The string ID of the asset being loaded
26466
+ */
26467
+ sAssetId: string,
26468
+ /**
26469
+ * the ID of the Illustration instance which is requiring the asset
26470
+ */
26471
+ sInstanceId: string
26472
+ ): void;
26473
+ /**
26474
+ * Loads the rest of the SVG assets for a given illustration set.
26475
+ */
26476
+ loadRestOfTheAssets(
26477
+ /**
26478
+ * The illustration set, the rest of the assets should be loaded for
26479
+ */
26480
+ sIllustrationSet: string
26481
+ ): void;
26482
+ /**
26483
+ * Registers an illustration set, which is needed before loading any of its assets.
26484
+ */
26485
+ registerIllustrationSet(
26486
+ /**
26487
+ * object containing the name and the path of the Illustration Set
26488
+ */
26489
+ oConfig: {
26490
+ /**
26491
+ * Name of the Illustration Set
26492
+ */
26493
+ setFamily: string;
26494
+ /**
26495
+ * URL Path of the Illustration Set
26496
+ */
26497
+ setURI: string;
26498
+ },
26499
+ /**
26500
+ * whether or not all of the assets for the Illustration Set should be loaded once the metadata is loaded
26501
+ */
26502
+ bLoadAllResources: boolean
26503
+ ): void;
26504
+ }
26505
+ const IllustrationPool: IllustrationPool;
26506
+
25197
26507
  /**
25198
26508
  * @SINCE 1.9.2
25199
26509
  *
@@ -28087,6 +29397,18 @@ declare namespace sap {
28087
29397
  * Default value is `"1.125rem"`.
28088
29398
  */
28089
29399
  getCustomFontSize(): sap.ui.core.CSSSize;
29400
+ /**
29401
+ * @SINCE 1.97
29402
+ *
29403
+ * Gets current value of property {@link #getDecorative decorative}.
29404
+ *
29405
+ * Defines whether the `sap.m.Avatar` is used for decorative purposes and is ignored by accessibility tools.
29406
+ *
29407
+ * **Note:** This property doesn't take effect if `sap.m.Avatar` has a `press` handler.
29408
+ *
29409
+ * Default value is `false`.
29410
+ */
29411
+ getDecorative(): boolean;
28090
29412
  /**
28091
29413
  * Gets content of aggregation {@link #getDetailBox detailBox}.
28092
29414
  *
@@ -28266,6 +29588,25 @@ declare namespace sap {
28266
29588
  */
28267
29589
  sCustomFontSize?: sap.ui.core.CSSSize
28268
29590
  ): this;
29591
+ /**
29592
+ * @SINCE 1.97
29593
+ *
29594
+ * Sets a new value for property {@link #getDecorative decorative}.
29595
+ *
29596
+ * Defines whether the `sap.m.Avatar` is used for decorative purposes and is ignored by accessibility tools.
29597
+ *
29598
+ * **Note:** This property doesn't take effect if `sap.m.Avatar` has a `press` handler.
29599
+ *
29600
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
29601
+ *
29602
+ * Default value is `false`.
29603
+ */
29604
+ setDecorative(
29605
+ /**
29606
+ * New value for property `decorative`
29607
+ */
29608
+ bDecorative?: boolean
29609
+ ): this;
28269
29610
  /**
28270
29611
  * Sets the `detailBox` aggregation.
28271
29612
  */
@@ -32739,6 +34080,13 @@ declare namespace sap {
32739
34080
  * Default value is `8`.
32740
34081
  */
32741
34082
  getAutoPopinWidth(): float;
34083
+ /**
34084
+ * @SINCE 1.98.0
34085
+ *
34086
+ * Returns the `sap.ui.core.IColumnHeaderMenu<\code>, which is the current target of the association columnHeaderMenu`,
34087
+ * or null.
34088
+ */
34089
+ getColumnHeaderMenu(): sap.ui.core.IColumnHeaderMenu;
32742
34090
  /**
32743
34091
  * Returns CSS alignment according to column hAlign setting or given parameter for Begin/End values checks
32744
34092
  * the locale settings
@@ -34243,7 +35591,18 @@ declare namespace sap {
34243
35591
  /**
34244
35592
  * Gets the flag indicating whether the list items should be recreated
34245
35593
  */
34246
- getRecreateItems(): void;
35594
+ getRecreateItems(): boolean;
35595
+ /**
35596
+ * @SINCE 1.96
35597
+ *
35598
+ * Gets current value of property {@link #getShowClearIcon showClearIcon}.
35599
+ *
35600
+ * Specifies whether clear icon is shown. Pressing the icon will clear input's value and fire the change
35601
+ * and liveChange events.
35602
+ *
35603
+ * Default value is `false`.
35604
+ */
35605
+ getShowClearIcon(): boolean;
34247
35606
  /**
34248
35607
  * @SINCE 1.60
34249
35608
  *
@@ -34256,13 +35615,23 @@ declare namespace sap {
34256
35615
  */
34257
35616
  getShowSecondaryValues(): boolean;
34258
35617
  /**
34259
- * Fires when an object gets inserted in the items aggregation
35618
+ * Fires when an object gets inserted in the items aggregation.
34260
35619
  */
34261
- handleItemInsertion(): void;
35620
+ handleItemInsertion(
35621
+ /**
35622
+ * The item that should be inserted
35623
+ */
35624
+ oItem: sap.ui.core.Item
35625
+ ): void;
34262
35626
  /**
34263
- * Fires when an object gets removed from the items aggregation
35627
+ * Fires when an object gets removed from the items aggregation.
34264
35628
  */
34265
- handleItemRemoval(): void;
35629
+ handleItemRemoval(
35630
+ /**
35631
+ * The item that should be removed
35632
+ */
35633
+ oItem: sap.ui.core.Item
35634
+ ): void;
34266
35635
  /**
34267
35636
  * Determines whether the control has content or not.
34268
35637
  */
@@ -34399,9 +35768,14 @@ declare namespace sap {
34399
35768
  sPickerType: string
34400
35769
  ): void;
34401
35770
  /**
34402
- * Sets whether the list items should be recreated
35771
+ * Sets whether the list items should be recreated.
34403
35772
  */
34404
- setRecreateItems(): void;
35773
+ setRecreateItems(
35774
+ /**
35775
+ * True if the list items should be recreated
35776
+ */
35777
+ bRecreate: boolean
35778
+ ): void;
34405
35779
  /**
34406
35780
  * Sets the selectable property of `sap.ui.core.Item`
34407
35781
  */
@@ -34415,6 +35789,24 @@ declare namespace sap {
34415
35789
  */
34416
35790
  bSelectable: boolean
34417
35791
  ): void;
35792
+ /**
35793
+ * @SINCE 1.96
35794
+ *
35795
+ * Sets a new value for property {@link #getShowClearIcon showClearIcon}.
35796
+ *
35797
+ * Specifies whether clear icon is shown. Pressing the icon will clear input's value and fire the change
35798
+ * and liveChange events.
35799
+ *
35800
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
35801
+ *
35802
+ * Default value is `false`.
35803
+ */
35804
+ setShowClearIcon(
35805
+ /**
35806
+ * New value for property `showClearIcon`
35807
+ */
35808
+ bShowClearIcon?: boolean
35809
+ ): this;
34418
35810
  /**
34419
35811
  * @SINCE 1.60
34420
35812
  *
@@ -34442,6 +35834,15 @@ declare namespace sap {
34442
35834
  */
34443
35835
  oTextField: sap.m.ComboBoxTextField | sap.m.Input
34444
35836
  ): void;
35837
+ /**
35838
+ * Sets the value property of the control.
35839
+ */
35840
+ setValue(
35841
+ /**
35842
+ * The new value
35843
+ */
35844
+ sValue: string
35845
+ ): this;
34445
35846
  /**
34446
35847
  * @SINCE 1.64
34447
35848
  * @EXPERIMENTAL (since 1.64)
@@ -34499,6 +35900,12 @@ declare namespace sap {
34499
35900
  */
34500
35901
  mSettings?: sap.m.$ComboBoxTextFieldSettings
34501
35902
  );
35903
+ /**
35904
+ * Returns the arrow icon
35905
+ *
35906
+ * Left for backward compatibility.
35907
+ */
35908
+ getIcon: undefined;
34502
35909
 
34503
35910
  /**
34504
35911
  * Creates a new subclass of class sap.m.ComboBoxTextField with name `sClassName` and enriches it with the
@@ -34525,10 +35932,6 @@ declare namespace sap {
34525
35932
  * Returns a metadata object for class sap.m.ComboBoxTextField.
34526
35933
  */
34527
35934
  static getMetadata(): sap.ui.core.ElementMetadata;
34528
- /**
34529
- * Returns the arrow icon
34530
- */
34531
- getIcon(): sap.ui.core.Icon;
34532
35935
  /**
34533
35936
  * Gets current value of property {@link #getMaxWidth maxWidth}.
34534
35937
  *
@@ -35537,6 +36940,24 @@ declare namespace sap {
35537
36940
  * Default value is `empty string`.
35538
36941
  */
35539
36942
  getDisplayFormatType(): string;
36943
+ /**
36944
+ * @SINCE 1.97
36945
+ *
36946
+ * Gets current value of property {@link #getHideInput hideInput}.
36947
+ *
36948
+ * Determines whether the input field of the picker is hidden or visible. When set to `true`, the input
36949
+ * field becomes invisible and there is no way to open the picker popover. In that case it can be opened
36950
+ * by another control through calling of picker's `openBy` method, and the opening control's DOM reference
36951
+ * must be provided as parameter.
36952
+ *
36953
+ * Note: Since the picker is not responsible for accessibility attributes of the control which opens its
36954
+ * popover, those attributes should be added by the application developer. The following is recommended
36955
+ * to be added to the opening control: a text or tooltip that describes the action (example: "Open Date
36956
+ * Picker"), and also aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
36957
+ *
36958
+ * Default value is `false`.
36959
+ */
36960
+ getHideInput(): boolean;
35540
36961
  /**
35541
36962
  * @SINCE 1.38.5
35542
36963
  *
@@ -35674,6 +37095,26 @@ declare namespace sap {
35674
37095
  * Returns if the last entered value is valid.
35675
37096
  */
35676
37097
  isValidValue(): boolean;
37098
+ /**
37099
+ * @SINCE 1.97
37100
+ *
37101
+ * Opens the picker popover. The popover is positioned relatively to the control given as `oDomRef` parameter
37102
+ * on tablet or desktop and is full screen on phone. Therefore the control parameter is only used on tablet
37103
+ * or desktop and is ignored on phone.
37104
+ *
37105
+ * Note: use this method to open the picker popover only when the `hideInput` property is set to `true`.
37106
+ * Please consider opening of the picker popover by another control only in scenarios that comply with Fiori
37107
+ * guidelines. For example, opening the picker popover by another popover is not recommended. The application
37108
+ * developer should implement the following accessibility attributes to the opening control: a text or tooltip
37109
+ * that describes the action (example: "Open Date Picker"), and aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
37110
+ */
37111
+ openBy(
37112
+ /**
37113
+ * DOM reference of the opening control. On tablet or desktop, the popover is positioned relatively to this
37114
+ * control.
37115
+ */
37116
+ oDomRef: HTMLElement
37117
+ ): void;
35677
37118
  /**
35678
37119
  * @SINCE 1.38.5
35679
37120
  *
@@ -35722,6 +37163,31 @@ declare namespace sap {
35722
37163
  */
35723
37164
  sDisplayFormatType?: string
35724
37165
  ): this;
37166
+ /**
37167
+ * @SINCE 1.97
37168
+ *
37169
+ * Sets a new value for property {@link #getHideInput hideInput}.
37170
+ *
37171
+ * Determines whether the input field of the picker is hidden or visible. When set to `true`, the input
37172
+ * field becomes invisible and there is no way to open the picker popover. In that case it can be opened
37173
+ * by another control through calling of picker's `openBy` method, and the opening control's DOM reference
37174
+ * must be provided as parameter.
37175
+ *
37176
+ * Note: Since the picker is not responsible for accessibility attributes of the control which opens its
37177
+ * popover, those attributes should be added by the application developer. The following is recommended
37178
+ * to be added to the opening control: a text or tooltip that describes the action (example: "Open Date
37179
+ * Picker"), and also aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
37180
+ *
37181
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
37182
+ *
37183
+ * Default value is `false`.
37184
+ */
37185
+ setHideInput(
37186
+ /**
37187
+ * New value for property `hideInput`
37188
+ */
37189
+ bHideInput?: boolean
37190
+ ): this;
35725
37191
  /**
35726
37192
  * @SINCE 1.38.5
35727
37193
  *
@@ -37025,8 +38491,8 @@ declare namespace sap {
37025
38491
  *
37026
38492
  * Gets current value of property {@link #getMinutesStep minutesStep}.
37027
38493
  *
37028
- * Sets the minutes slider step. If the step is less than 1, it will be automatically converted back to
37029
- * 1. The minutes slider is populated only by multiples of the step.
38494
+ * Sets the minutes step. If the step is less than 1, it will be automatically converted back to 1. The
38495
+ * minutes clock is populated only by multiples of the step.
37030
38496
  *
37031
38497
  * Default value is `1`.
37032
38498
  */
@@ -37036,19 +38502,29 @@ declare namespace sap {
37036
38502
  *
37037
38503
  * Gets current value of property {@link #getSecondsStep secondsStep}.
37038
38504
  *
37039
- * Sets the seconds slider step. If the step is less than 1, it will be automatically converted back to
37040
- * 1. The seconds slider is populated only by multiples of the step.
38505
+ * Sets the seconds step. If the step is less than 1, it will be automatically converted back to 1. The
38506
+ * seconds clock is populated only by multiples of the step.
37041
38507
  *
37042
38508
  * Default value is `1`.
37043
38509
  */
37044
38510
  getSecondsStep(): int;
38511
+ /**
38512
+ * @SINCE 1.98
38513
+ *
38514
+ * Gets current value of property {@link #getShowCurrentTimeButton showCurrentTimeButton}.
38515
+ *
38516
+ * Determines whether there is a shortcut navigation to current time.
38517
+ *
38518
+ * Default value is `false`.
38519
+ */
38520
+ getShowCurrentTimeButton(): boolean;
37045
38521
  /**
37046
38522
  * @SINCE 1.56
37047
38523
  *
37048
38524
  * Sets a new value for property {@link #getMinutesStep minutesStep}.
37049
38525
  *
37050
- * Sets the minutes slider step. If the step is less than 1, it will be automatically converted back to
37051
- * 1. The minutes slider is populated only by multiples of the step.
38526
+ * Sets the minutes step. If the step is less than 1, it will be automatically converted back to 1. The
38527
+ * minutes clock is populated only by multiples of the step.
37052
38528
  *
37053
38529
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
37054
38530
  *
@@ -37065,8 +38541,8 @@ declare namespace sap {
37065
38541
  *
37066
38542
  * Sets a new value for property {@link #getSecondsStep secondsStep}.
37067
38543
  *
37068
- * Sets the seconds slider step. If the step is less than 1, it will be automatically converted back to
37069
- * 1. The seconds slider is populated only by multiples of the step.
38544
+ * Sets the seconds step. If the step is less than 1, it will be automatically converted back to 1. The
38545
+ * seconds clock is populated only by multiples of the step.
37070
38546
  *
37071
38547
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
37072
38548
  *
@@ -37078,6 +38554,23 @@ declare namespace sap {
37078
38554
  */
37079
38555
  iSecondsStep?: int
37080
38556
  ): this;
38557
+ /**
38558
+ * @SINCE 1.98
38559
+ *
38560
+ * Sets a new value for property {@link #getShowCurrentTimeButton showCurrentTimeButton}.
38561
+ *
38562
+ * Determines whether there is a shortcut navigation to current time.
38563
+ *
38564
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
38565
+ *
38566
+ * Default value is `false`.
38567
+ */
38568
+ setShowCurrentTimeButton(
38569
+ /**
38570
+ * New value for property `showCurrentTimeButton`
38571
+ */
38572
+ bShowCurrentTimeButton?: boolean
38573
+ ): this;
37081
38574
  }
37082
38575
  /**
37083
38576
  * A popup that interrupts the current processing and prompts the user for an action or an input in a modal
@@ -39180,7 +40673,12 @@ declare namespace sap {
39180
40673
  *
39181
40674
  * Array of standard and custom option keys
39182
40675
  *
39183
- * Default value is `[]`.
40676
+ * Default value is `["DATE", "TODAY", "YESTERDAY", "TOMORROW", "FIRSTDAYWEEK", "LASTDAYWEEK", "FIRSTDAYMONTH",
40677
+ * "LASTDAYMONTH", "FIRSTDAYQUARTER", "LASTDAYQUARTER", "FIRSTDAYYEAR", "LASTDAYYEAR", "DATERANGE", "FROM",
40678
+ * "TO", "YEARTODATE", "DATETOYEAR", "LASTDAYS", "LASTWEEKS", "LASTMONTHS", "LASTQUARTERS", "LASTYEARS",
40679
+ * "NEXTDAYS", "NEXTWEEKS", "NEXTMONTHS", "NEXTQUARTERS", "NEXTYEARS", "TODAYFROMTO", "THISWEEK", "LASTWEEK",
40680
+ * "NEXTWEEK", "SPECIFICMONTH", "THISMONTH", "LASTMONTH", "NEXTMONTH", "THISQUARTER", "LASTQUARTER", "NEXTQUARTER",
40681
+ * "QUARTER1", "QUARTER2", "QUARTER3", "QUARTER4", "THISYEAR", "LASTYEAR", "NEXTYEAR"]`.
39184
40682
  */
39185
40683
  getOptions(): string[];
39186
40684
  /**
@@ -39373,7 +40871,12 @@ declare namespace sap {
39373
40871
  *
39374
40872
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
39375
40873
  *
39376
- * Default value is `[]`.
40874
+ * Default value is `["DATE", "TODAY", "YESTERDAY", "TOMORROW", "FIRSTDAYWEEK", "LASTDAYWEEK", "FIRSTDAYMONTH",
40875
+ * "LASTDAYMONTH", "FIRSTDAYQUARTER", "LASTDAYQUARTER", "FIRSTDAYYEAR", "LASTDAYYEAR", "DATERANGE", "FROM",
40876
+ * "TO", "YEARTODATE", "DATETOYEAR", "LASTDAYS", "LASTWEEKS", "LASTMONTHS", "LASTQUARTERS", "LASTYEARS",
40877
+ * "NEXTDAYS", "NEXTWEEKS", "NEXTMONTHS", "NEXTQUARTERS", "NEXTYEARS", "TODAYFROMTO", "THISWEEK", "LASTWEEK",
40878
+ * "NEXTWEEK", "SPECIFICMONTH", "THISMONTH", "LASTMONTH", "NEXTMONTH", "THISQUARTER", "LASTQUARTER", "NEXTQUARTER",
40879
+ * "QUARTER1", "QUARTER2", "QUARTER3", "QUARTER4", "THISYEAR", "LASTYEAR", "NEXTYEAR"]`.
39377
40880
  */
39378
40881
  setOptions(
39379
40882
  /**
@@ -39544,6 +41047,12 @@ declare namespace sap {
39544
41047
  * Returns a metadata object for class sap.m.DynamicDateValueHelpUIType.
39545
41048
  */
39546
41049
  static getMetadata(): sap.ui.core.ElementMetadata;
41050
+ /**
41051
+ * Gets current value of property {@link #getAdditionalText additionalText}.
41052
+ *
41053
+ * A text for an additional label that describes the interactive UI and is placed after the UI element.
41054
+ */
41055
+ getAdditionalText(): string;
39547
41056
  /**
39548
41057
  * Gets current value of property {@link #getOptions options}.
39549
41058
  *
@@ -39553,7 +41062,7 @@ declare namespace sap {
39553
41062
  /**
39554
41063
  * Gets current value of property {@link #getText text}.
39555
41064
  *
39556
- * A text for an additional label describing the interactive UI.
41065
+ * A text for an additional label that describes the interactive UI and is placed before the UI element.
39557
41066
  */
39558
41067
  getText(): string;
39559
41068
  /**
@@ -39563,6 +41072,19 @@ declare namespace sap {
39563
41072
  * or input.
39564
41073
  */
39565
41074
  getType(): string;
41075
+ /**
41076
+ * Sets a new value for property {@link #getAdditionalText additionalText}.
41077
+ *
41078
+ * A text for an additional label that describes the interactive UI and is placed after the UI element.
41079
+ *
41080
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
41081
+ */
41082
+ setAdditionalText(
41083
+ /**
41084
+ * New value for property `additionalText`
41085
+ */
41086
+ sAdditionalText: string
41087
+ ): this;
39566
41088
  /**
39567
41089
  * Sets a new value for property {@link #getOptions options}.
39568
41090
  *
@@ -39579,7 +41101,7 @@ declare namespace sap {
39579
41101
  /**
39580
41102
  * Sets a new value for property {@link #getText text}.
39581
41103
  *
39582
- * A text for an additional label describing the interactive UI.
41104
+ * A text for an additional label that describes the interactive UI and is placed before the UI element.
39583
41105
  *
39584
41106
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
39585
41107
  */
@@ -44056,6 +45578,17 @@ declare namespace sap {
44056
45578
  * Returns a metadata object for class sap.m.GenericTag.
44057
45579
  */
44058
45580
  static getMetadata(): sap.ui.core.ElementMetadata;
45581
+ /**
45582
+ * @SINCE 1.97.0
45583
+ *
45584
+ * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
45585
+ */
45586
+ addAriaLabelledBy(
45587
+ /**
45588
+ * The ariaLabelledBy to add; if empty, nothing is inserted
45589
+ */
45590
+ vAriaLabelledBy: sap.ui.core.ID | sap.ui.core.Control
45591
+ ): this;
44059
45592
  /**
44060
45593
  * Attaches event handler `fnFunction` to the {@link #event:press press} event of this `sap.m.GenericTag`.
44061
45594
  *
@@ -44125,6 +45658,13 @@ declare namespace sap {
44125
45658
  */
44126
45659
  mParameters?: object
44127
45660
  ): this;
45661
+ /**
45662
+ * @SINCE 1.97.0
45663
+ *
45664
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
45665
+ * ariaLabelledBy}.
45666
+ */
45667
+ getAriaLabelledBy(): sap.ui.core.ID[];
44128
45668
  /**
44129
45669
  * Gets current value of property {@link #getDesign design}.
44130
45670
  *
@@ -44171,6 +45711,23 @@ declare namespace sap {
44171
45711
  * Default value is `None`.
44172
45712
  */
44173
45713
  getValueState(): sap.m.GenericTagValueState;
45714
+ /**
45715
+ * @SINCE 1.97.0
45716
+ *
45717
+ * Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
45718
+ */
45719
+ removeAllAriaLabelledBy(): sap.ui.core.ID[];
45720
+ /**
45721
+ * @SINCE 1.97.0
45722
+ *
45723
+ * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
45724
+ */
45725
+ removeAriaLabelledBy(
45726
+ /**
45727
+ * The ariaLabelledBy to be removed or its index or ID
45728
+ */
45729
+ vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
45730
+ ): sap.ui.core.ID;
44174
45731
  /**
44175
45732
  * Sets a new value for property {@link #getDesign design}.
44176
45733
  *
@@ -47004,7 +48561,6 @@ declare namespace sap {
47004
48561
  ): this;
47005
48562
  /**
47006
48563
  * @SINCE 1.77
47007
- * @EXPERIMENTAL (since 1.77)
47008
48564
  *
47009
48565
  * Adds some item to the aggregation {@link #getItems items}.
47010
48566
  */
@@ -47022,7 +48578,6 @@ declare namespace sap {
47022
48578
  destroyContent(): this;
47023
48579
  /**
47024
48580
  * @SINCE 1.77
47025
- * @EXPERIMENTAL (since 1.77)
47026
48581
  *
47027
48582
  * Destroys all the items in the aggregation {@link #getItems items}.
47028
48583
  */
@@ -47087,7 +48642,6 @@ declare namespace sap {
47087
48642
  getIconDensityAware(): boolean;
47088
48643
  /**
47089
48644
  * @SINCE 1.77
47090
- * @EXPERIMENTAL (since 1.77)
47091
48645
  *
47092
48646
  * Gets content of aggregation {@link #getItems items}.
47093
48647
  *
@@ -47128,7 +48682,6 @@ declare namespace sap {
47128
48682
  ): int;
47129
48683
  /**
47130
48684
  * @SINCE 1.77
47131
- * @EXPERIMENTAL (since 1.77)
47132
48685
  *
47133
48686
  * Checks for the provided `sap.m.IconTab` in the aggregation {@link #getItems items}. and returns its index
47134
48687
  * if found or -1 otherwise.
@@ -47158,7 +48711,6 @@ declare namespace sap {
47158
48711
  ): this;
47159
48712
  /**
47160
48713
  * @SINCE 1.77
47161
- * @EXPERIMENTAL (since 1.77)
47162
48714
  *
47163
48715
  * Inserts a item into the aggregation {@link #getItems items}.
47164
48716
  */
@@ -47184,7 +48736,6 @@ declare namespace sap {
47184
48736
  removeAllContent(): sap.ui.core.Control[];
47185
48737
  /**
47186
48738
  * @SINCE 1.77
47187
- * @EXPERIMENTAL (since 1.77)
47188
48739
  *
47189
48740
  * Removes all the controls from the aggregation {@link #getItems items}.
47190
48741
  *
@@ -47204,7 +48755,6 @@ declare namespace sap {
47204
48755
  ): sap.ui.core.Control;
47205
48756
  /**
47206
48757
  * @SINCE 1.77
47207
- * @EXPERIMENTAL (since 1.77)
47208
48758
  *
47209
48759
  * Removes a item from the aggregation {@link #getItems items}.
47210
48760
  */
@@ -47685,238 +49235,735 @@ declare namespace sap {
47685
49235
  /**
47686
49236
  * The item to insert; if empty, nothing is inserted
47687
49237
  */
47688
- oItem: sap.m.IconTab,
49238
+ oItem: sap.m.IconTab,
49239
+ /**
49240
+ * The `0`-based index the item should be inserted at; for a negative value of `iIndex`, the item is inserted
49241
+ * at position 0; for a value greater than the current size of the aggregation, the item is inserted at
49242
+ * the last position
49243
+ */
49244
+ iIndex: int
49245
+ ): this;
49246
+ /**
49247
+ * Removes all the controls from the aggregation {@link #getItems items}.
49248
+ *
49249
+ * Additionally, it unregisters them from the hosting UIArea.
49250
+ */
49251
+ removeAllItems(): sap.m.IconTab[];
49252
+ /**
49253
+ * Removes a item from the aggregation {@link #getItems items}.
49254
+ */
49255
+ removeItem(
49256
+ /**
49257
+ * The item to remove or its index or id
49258
+ */
49259
+ vItem: int | string | sap.m.IconTab
49260
+ ): sap.m.IconTab;
49261
+ /**
49262
+ * @SINCE 1.80
49263
+ *
49264
+ * Sets a new value for property {@link #getAriaTexts ariaTexts}.
49265
+ *
49266
+ * Specifies optional texts for the screen reader.
49267
+ *
49268
+ * The given object can contain the following keys: `headerLabel` - text to serve as a label for the header,
49269
+ * `headerDescription` - text to serve as a description for the header.
49270
+ *
49271
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
49272
+ */
49273
+ setAriaTexts(
49274
+ /**
49275
+ * New value for property `ariaTexts`
49276
+ */
49277
+ oAriaTexts?: object
49278
+ ): this;
49279
+ /**
49280
+ * @SINCE 1.44
49281
+ *
49282
+ * Sets a new value for property {@link #getBackgroundDesign backgroundDesign}.
49283
+ *
49284
+ * Specifies the background color of the header.
49285
+ *
49286
+ * Depending on the theme, you can change the state of the background color to "Solid", "Translucent", or
49287
+ * "Transparent". **Note:** In SAP Belize Deep (sap_belize_plus) theme this property should be set to "Solid".
49288
+ *
49289
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
49290
+ *
49291
+ * Default value is `Solid`.
49292
+ */
49293
+ setBackgroundDesign(
49294
+ /**
49295
+ * New value for property `backgroundDesign`
49296
+ */
49297
+ sBackgroundDesign?: sap.m.BackgroundDesign
49298
+ ): this;
49299
+ /**
49300
+ * @SINCE 1.46
49301
+ *
49302
+ * Sets a new value for property {@link #getEnableTabReordering enableTabReordering}.
49303
+ *
49304
+ * Specifies whether tab reordering is enabled. Relevant only for desktop devices. The {@link sap.m.IconTabSeparator
49305
+ * sap.m.IconTabSeparator} cannot be dragged and dropped Items can be moved around {@link sap.m.IconTabSeparator
49306
+ * sap.m.IconTabSeparator}
49307
+ *
49308
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
49309
+ *
49310
+ * Default value is `false`.
49311
+ */
49312
+ setEnableTabReordering(
49313
+ /**
49314
+ * New value for property `enableTabReordering`
49315
+ */
49316
+ bEnableTabReordering?: boolean
49317
+ ): this;
49318
+ /**
49319
+ * @SINCE 1.79
49320
+ *
49321
+ * Sets a new value for property {@link #getMaxNestingLevel maxNestingLevel}.
49322
+ *
49323
+ * Specifies the allowed level of tabs nesting within one another using drag and drop. Default value is
49324
+ * 0 which means nesting via interaction is not allowed. Maximum value is 100. This property allows nesting
49325
+ * via user interaction only, and does not restrict adding items to the `items` aggregation of {@link sap.m.IconTabFilter
49326
+ * sap.m.IconTabFilter}.
49327
+ *
49328
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
49329
+ *
49330
+ * Default value is `0`.
49331
+ */
49332
+ setMaxNestingLevel(
49333
+ /**
49334
+ * New value for property `maxNestingLevel`
49335
+ */
49336
+ iMaxNestingLevel?: int
49337
+ ): this;
49338
+ /**
49339
+ * @SINCE 1.40
49340
+ *
49341
+ * Sets a new value for property {@link #getMode mode}.
49342
+ *
49343
+ * Specifies the header mode.
49344
+ *
49345
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
49346
+ *
49347
+ * Default value is `Standard`.
49348
+ */
49349
+ setMode(
49350
+ /**
49351
+ * New value for property `mode`
49352
+ */
49353
+ sMode?: sap.m.IconTabHeaderMode
49354
+ ): this;
49355
+ /**
49356
+ * Sets the selected item based on key.
49357
+ */
49358
+ setSelectedKey(
49359
+ /**
49360
+ * The key of the item to be selected
49361
+ */
49362
+ sKey: string
49363
+ ): this;
49364
+ /**
49365
+ * @deprecated (since 1.75)
49366
+ *
49367
+ * Sets a new value for property {@link #getShowOverflowSelectList showOverflowSelectList}.
49368
+ *
49369
+ * Specifies if the overflow select list is displayed.
49370
+ *
49371
+ * The overflow select list represents a list, where all tab filters are displayed, so the user can select
49372
+ * specific tab filter easier.
49373
+ *
49374
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
49375
+ *
49376
+ * Default value is `false`.
49377
+ */
49378
+ setShowOverflowSelectList(
49379
+ /**
49380
+ * New value for property `showOverflowSelectList`
49381
+ */
49382
+ bShowOverflowSelectList?: boolean
49383
+ ): this;
49384
+ /**
49385
+ * @deprecated (since 1.15.0) - Regarding to changes of this control this property is not needed anymore.
49386
+ *
49387
+ * Sets a new value for property {@link #getShowSelection showSelection}.
49388
+ *
49389
+ * Defines whether the current selection is visualized.
49390
+ *
49391
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
49392
+ *
49393
+ * Default value is `true`.
49394
+ */
49395
+ setShowSelection(
49396
+ /**
49397
+ * New value for property `showSelection`
49398
+ */
49399
+ bShowSelection?: boolean
49400
+ ): this;
49401
+ /**
49402
+ * @SINCE 1.56
49403
+ *
49404
+ * Sets a new value for property {@link #getTabDensityMode tabDensityMode}.
49405
+ *
49406
+ * Specifies the visual density mode of the tabs.
49407
+ *
49408
+ * The values that can be applied are `Cozy`, `Compact` and `Inherit`. `Cozy` and `Compact` render the control
49409
+ * in one of these modes independent of the global density settings. The `Inherit` value follows the global
49410
+ * density settings which are applied. For compatibility reasons, the default value is `Cozy`.
49411
+ *
49412
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
49413
+ *
49414
+ * Default value is `Cozy`.
49415
+ */
49416
+ setTabDensityMode(
49417
+ /**
49418
+ * New value for property `tabDensityMode`
49419
+ */
49420
+ sTabDensityMode?: sap.m.IconTabDensityMode
49421
+ ): this;
49422
+ /**
49423
+ * @SINCE 1.90
49424
+ *
49425
+ * Sets a new value for property {@link #getTabsOverflowMode tabsOverflowMode}.
49426
+ *
49427
+ * Specifies the overflow mode of the header.
49428
+ *
49429
+ * The default `End` mode shows as many tabs that can fit on the screen, then shows one overflow at the
49430
+ * end containing the remaining items. The `StartAndEnd` is used to keep the order of tabs intact and offers
49431
+ * overflow tabs on both ends of the bar.
49432
+ *
49433
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
49434
+ *
49435
+ * Default value is `End`.
49436
+ */
49437
+ setTabsOverflowMode(
49438
+ /**
49439
+ * New value for property `tabsOverflowMode`
49440
+ */
49441
+ sTabsOverflowMode?: sap.m.TabsOverflowMode
49442
+ ): this;
49443
+ /**
49444
+ * @SINCE 1.15.0
49445
+ *
49446
+ * Sets a new value for property {@link #getVisible visible}.
49447
+ *
49448
+ * Specifies whether the control is rendered.
49449
+ *
49450
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
49451
+ *
49452
+ * Default value is `true`.
49453
+ */
49454
+ setVisible(
49455
+ /**
49456
+ * New value for property `visible`
49457
+ */
49458
+ bVisible?: boolean
49459
+ ): this;
49460
+ }
49461
+ /**
49462
+ * Represents an Icon used to separate 2 tab filters.
49463
+ */
49464
+ class IconTabSeparator
49465
+ extends sap.ui.core.Element
49466
+ implements sap.m.IconTab {
49467
+ __implements__sap_m_IconTab: boolean;
49468
+ /**
49469
+ * Constructor for a new IconTabSeparator.
49470
+ *
49471
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
49472
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
49473
+ * of the syntax of the settings object.
49474
+ */
49475
+ constructor(
49476
+ /**
49477
+ * Initial settings for the new control
49478
+ */
49479
+ mSettings?: sap.m.$IconTabSeparatorSettings
49480
+ );
49481
+ /**
49482
+ * Constructor for a new IconTabSeparator.
49483
+ *
49484
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
49485
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
49486
+ * of the syntax of the settings object.
49487
+ */
49488
+ constructor(
49489
+ /**
49490
+ * ID for the new control, generated automatically if no ID is given
49491
+ */
49492
+ sId?: string,
49493
+ /**
49494
+ * Initial settings for the new control
49495
+ */
49496
+ mSettings?: sap.m.$IconTabSeparatorSettings
49497
+ );
49498
+
49499
+ /**
49500
+ * Creates a new subclass of class sap.m.IconTabSeparator with name `sClassName` and enriches it with the
49501
+ * information contained in `oClassInfo`.
49502
+ *
49503
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
49504
+ */
49505
+ static extend<T extends Record<string, unknown>>(
49506
+ /**
49507
+ * Name of the class being created
49508
+ */
49509
+ sClassName: string,
49510
+ /**
49511
+ * Object literal with information about the class
49512
+ */
49513
+ oClassInfo?: sap.ClassInfo<T, sap.m.IconTabSeparator>,
49514
+ /**
49515
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
49516
+ * used by this class
49517
+ */
49518
+ FNMetaImpl?: Function
49519
+ ): Function;
49520
+ /**
49521
+ * Returns a metadata object for class sap.m.IconTabSeparator.
49522
+ */
49523
+ static getMetadata(): sap.ui.core.ElementMetadata;
49524
+ /**
49525
+ * Gets current value of property {@link #getIcon icon}.
49526
+ *
49527
+ * The icon to display for this separator. If no icon is given, a separator line is used instead.
49528
+ *
49529
+ * Default value is `empty string`.
49530
+ */
49531
+ getIcon(): sap.ui.core.URI;
49532
+ /**
49533
+ * Gets current value of property {@link #getIconDensityAware iconDensityAware}.
49534
+ *
49535
+ * If set to true, it sends one or more requests, trying to get the density perfect version of the image
49536
+ * if this version of the image doesn't exist on the server. Default value is set to true.
49537
+ *
49538
+ * If bandwidth is key for the application, set this value to false.
49539
+ *
49540
+ * Default value is `true`.
49541
+ */
49542
+ getIconDensityAware(): boolean;
49543
+ /**
49544
+ * Gets current value of property {@link #getVisible visible}.
49545
+ *
49546
+ * Specifies whether the separator is rendered.
49547
+ *
49548
+ * Default value is `true`.
49549
+ */
49550
+ getVisible(): boolean;
49551
+ /**
49552
+ * Renders the item in the IconTabHeader.
49553
+ */
49554
+ render(
49555
+ /**
49556
+ * the RenderManager that can be used for writing to the render output buffer
49557
+ */
49558
+ oRM: sap.ui.core.RenderManager
49559
+ ): void;
49560
+ /**
49561
+ * Renders this item in the IconTabSelectList.
49562
+ */
49563
+ renderInSelectList(
49564
+ /**
49565
+ * RenderManager used for writing to the render output buffer
49566
+ */
49567
+ oRM: sap.ui.core.RenderManager,
49568
+ /**
49569
+ * the select list in which this filter is rendered
49570
+ */
49571
+ oSelectList: /* was: sap.m.IconTabBarSelectList */ any,
49572
+ /**
49573
+ * this item's index within the aggregation of items
49574
+ */
49575
+ iIndexInSet: int,
49576
+ /**
49577
+ * total length of the aggregation of items
49578
+ */
49579
+ iSetSize: int,
49580
+ /**
49581
+ * the padding with which the item should be indented
49582
+ */
49583
+ fPaddingValue: float
49584
+ ): void;
49585
+ /**
49586
+ * Sets a new value for property {@link #getIcon icon}.
49587
+ *
49588
+ * The icon to display for this separator. If no icon is given, a separator line is used instead.
49589
+ *
49590
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
49591
+ *
49592
+ * Default value is `empty string`.
49593
+ */
49594
+ setIcon(
49595
+ /**
49596
+ * New value for property `icon`
49597
+ */
49598
+ sIcon?: sap.ui.core.URI
49599
+ ): this;
49600
+ /**
49601
+ * Sets a new value for property {@link #getIconDensityAware iconDensityAware}.
49602
+ *
49603
+ * If set to true, it sends one or more requests, trying to get the density perfect version of the image
49604
+ * if this version of the image doesn't exist on the server. Default value is set to true.
49605
+ *
49606
+ * If bandwidth is key for the application, set this value to false.
49607
+ *
49608
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
49609
+ *
49610
+ * Default value is `true`.
49611
+ */
49612
+ setIconDensityAware(
49613
+ /**
49614
+ * New value for property `iconDensityAware`
49615
+ */
49616
+ bIconDensityAware?: boolean
49617
+ ): this;
49618
+ /**
49619
+ * Sets a new value for property {@link #getVisible visible}.
49620
+ *
49621
+ * Specifies whether the separator is rendered.
49622
+ *
49623
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
49624
+ *
49625
+ * Default value is `true`.
49626
+ */
49627
+ setVisible(
49628
+ /**
49629
+ * New value for property `visible`
49630
+ */
49631
+ bVisible?: boolean
49632
+ ): this;
49633
+ }
49634
+ /**
49635
+ * @SINCE 1.98
49636
+ *
49637
+ * A combination of message and illustration to represent an empty or a success state.
49638
+ *
49639
+ * Overview:
49640
+ *
49641
+ * An `IllustratedMessage` is a recommended combination of a solution-oriented message, an engaging illustration,
49642
+ * and conversational tone to better communicate an empty or a success state than just show a message alone.
49643
+ * Empty states are moments in the user experience where there’s no data to display. Success states are
49644
+ * occasions to celebrate and reward a user’s special accomplishment or the completion of an important task.
49645
+ *
49646
+ * The `IllustratedMessage` control is meant to be used inside container controls, for example a `Card`,
49647
+ * a `Dialog`, or a `Page`.
49648
+ *
49649
+ * Structure:
49650
+ *
49651
+ * The `IllustratedMessage` consists of the following elements, which are displayed below each other in
49652
+ * the following order:
49653
+ * - Illustration
49654
+ * - Title
49655
+ * - Description
49656
+ * - Additional Content
49657
+ *
49658
+ * Responsive Behavior:
49659
+ *
49660
+ * The `IllustratedMessage` control can adapt depending on the API settings provided by the app developer
49661
+ * and the available space of its parent container. Some of the structural elements are displayed differently
49662
+ * or are omitted in the different breakpoint sizes (XS, S, M, L).
49663
+ */
49664
+ class IllustratedMessage extends sap.ui.core.Control {
49665
+ /**
49666
+ * Constructor for a new `IllustratedMessage`.
49667
+ *
49668
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
49669
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
49670
+ * of the syntax of the settings object.
49671
+ */
49672
+ constructor(
49673
+ /**
49674
+ * Initial settings for the new control
49675
+ */
49676
+ mSettings?: sap.m.$IllustratedMessageSettings
49677
+ );
49678
+ /**
49679
+ * Constructor for a new `IllustratedMessage`.
49680
+ *
49681
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
49682
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
49683
+ * of the syntax of the settings object.
49684
+ */
49685
+ constructor(
49686
+ /**
49687
+ * ID for the new control, generated automatically if no ID is given
49688
+ */
49689
+ sId?: string,
49690
+ /**
49691
+ * Initial settings for the new control
49692
+ */
49693
+ mSettings?: sap.m.$IllustratedMessageSettings
49694
+ );
49695
+
49696
+ /**
49697
+ * Creates a new subclass of class sap.m.IllustratedMessage with name `sClassName` and enriches it with
49698
+ * the information contained in `oClassInfo`.
49699
+ *
49700
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
49701
+ */
49702
+ static extend<T extends Record<string, unknown>>(
49703
+ /**
49704
+ * Name of the class being created
49705
+ */
49706
+ sClassName: string,
49707
+ /**
49708
+ * Object literal with information about the class
49709
+ */
49710
+ oClassInfo?: sap.ClassInfo<T, sap.m.IllustratedMessage>,
47689
49711
  /**
47690
- * The `0`-based index the item should be inserted at; for a negative value of `iIndex`, the item is inserted
47691
- * at position 0; for a value greater than the current size of the aggregation, the item is inserted at
47692
- * the last position
49712
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
49713
+ * used by this class
47693
49714
  */
47694
- iIndex: int
47695
- ): this;
49715
+ FNMetaImpl?: Function
49716
+ ): Function;
47696
49717
  /**
47697
- * Removes all the controls from the aggregation {@link #getItems items}.
47698
- *
47699
- * Additionally, it unregisters them from the hosting UIArea.
49718
+ * Returns a metadata object for class sap.m.IllustratedMessage.
47700
49719
  */
47701
- removeAllItems(): sap.m.IconTab[];
49720
+ static getMetadata(): sap.ui.core.ElementMetadata;
47702
49721
  /**
47703
- * Removes a item from the aggregation {@link #getItems items}.
49722
+ * @SINCE 1.98
49723
+ *
49724
+ * Adds some additionalContent to the aggregation {@link #getAdditionalContent additionalContent}.
47704
49725
  */
47705
- removeItem(
49726
+ addAdditionalContent(
47706
49727
  /**
47707
- * The item to remove or its index or id
49728
+ * The additionalContent to add; if empty, nothing is inserted
47708
49729
  */
47709
- vItem: int | string | sap.m.IconTab
47710
- ): sap.m.IconTab;
49730
+ oAdditionalContent: sap.m.Button
49731
+ ): this;
47711
49732
  /**
47712
- * @SINCE 1.80
47713
- *
47714
- * Sets a new value for property {@link #getAriaTexts ariaTexts}.
49733
+ * @SINCE 1.98
47715
49734
  *
47716
- * Specifies optional texts for the screen reader.
49735
+ * Destroys all the additionalContent in the aggregation {@link #getAdditionalContent additionalContent}.
49736
+ */
49737
+ destroyAdditionalContent(): this;
49738
+ /**
49739
+ * @SINCE 1.98.0
47717
49740
  *
47718
- * The given object can contain the following keys: `headerLabel` - text to serve as a label for the header,
47719
- * `headerDescription` - text to serve as a description for the header.
49741
+ * Returns object with ID references of the title and description containers.
47720
49742
  *
47721
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
49743
+ * **Note:** Changing the value of the `enableFormattedText` property changes the references of of title
49744
+ * and description containers.
47722
49745
  */
47723
- setAriaTexts(
47724
- /**
47725
- * New value for property `ariaTexts`
47726
- */
47727
- oAriaTexts?: object
47728
- ): this;
49746
+ getAccessibilityReferences(): object;
47729
49747
  /**
47730
- * @SINCE 1.44
49748
+ * @SINCE 1.98
47731
49749
  *
47732
- * Sets a new value for property {@link #getBackgroundDesign backgroundDesign}.
49750
+ * Gets content of aggregation {@link #getAdditionalContent additionalContent}.
47733
49751
  *
47734
- * Specifies the background color of the header.
49752
+ * Defines the controls placed below the description as additional content.
47735
49753
  *
47736
- * Depending on the theme, you can change the state of the background color to "Solid", "Translucent", or
47737
- * "Transparent". **Note:** In SAP Belize Deep (sap_belize_plus) theme this property should be set to "Solid".
49754
+ * **Note:** Not displayed when `illustrationSize` is set to `Base`.
49755
+ */
49756
+ getAdditionalContent(): sap.m.Button[];
49757
+ /**
49758
+ * @SINCE 1.98
47738
49759
  *
47739
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
49760
+ * Gets current value of property {@link #getDescription description}.
47740
49761
  *
47741
- * Default value is `Solid`.
49762
+ * Defines the description displayed below the title.
49763
+ *
49764
+ * If there is no initial input from the app developer and the default illustration set is being used, a
49765
+ * default description for the current illustration type is going to be displayed. The default description
49766
+ * is stored in the `sap.m` resource bundle.
49767
+ *
49768
+ * Default value is `empty string`.
47742
49769
  */
47743
- setBackgroundDesign(
47744
- /**
47745
- * New value for property `backgroundDesign`
47746
- */
47747
- sBackgroundDesign?: sap.m.BackgroundDesign
47748
- ): this;
49770
+ getDescription(): string;
47749
49771
  /**
47750
- * @SINCE 1.46
49772
+ * @SINCE 1.98
47751
49773
  *
47752
- * Sets a new value for property {@link #getEnableTabReordering enableTabReordering}.
49774
+ * Gets current value of property {@link #getEnableFormattedText enableFormattedText}.
47753
49775
  *
47754
- * Specifies whether tab reordering is enabled. Relevant only for desktop devices. The {@link sap.m.IconTabSeparator
47755
- * sap.m.IconTabSeparator} cannot be dragged and dropped Items can be moved around {@link sap.m.IconTabSeparator
47756
- * sap.m.IconTabSeparator}
49776
+ * Defines whether the value set in the `description` property is displayed as formatted text in HTML format.
47757
49777
  *
47758
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
49778
+ * For details regarding supported HTML tags, see {@link sap.m.FormattedText}.
47759
49779
  *
47760
49780
  * Default value is `false`.
47761
49781
  */
47762
- setEnableTabReordering(
47763
- /**
47764
- * New value for property `enableTabReordering`
47765
- */
47766
- bEnableTabReordering?: boolean
47767
- ): this;
49782
+ getEnableFormattedText(): boolean;
47768
49783
  /**
47769
- * @SINCE 1.79
49784
+ * @SINCE 1.98
47770
49785
  *
47771
- * Sets a new value for property {@link #getMaxNestingLevel maxNestingLevel}.
49786
+ * Gets current value of property {@link #getIllustrationSize illustrationSize}.
47772
49787
  *
47773
- * Specifies the allowed level of tabs nesting within one another using drag and drop. Default value is
47774
- * 0 which means nesting via interaction is not allowed. Maximum value is 100. This property allows nesting
47775
- * via user interaction only, and does not restrict adding items to the `items` aggregation of {@link sap.m.IconTabFilter
47776
- * sap.m.IconTabFilter}.
49788
+ * Determines which illustration breakpoint variant is used.
47777
49789
  *
47778
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
49790
+ * As `IllustratedMessage` adapts itself around the `Illustration`, the other elements of the control are
49791
+ * displayed differently on the different breakpoints/illustration sizes.
47779
49792
  *
47780
- * Default value is `0`.
49793
+ * Default value is `Auto`.
47781
49794
  */
47782
- setMaxNestingLevel(
47783
- /**
47784
- * New value for property `maxNestingLevel`
47785
- */
47786
- iMaxNestingLevel?: int
47787
- ): this;
49795
+ getIllustrationSize(): sap.m.IllustratedMessageSize;
47788
49796
  /**
47789
- * @SINCE 1.40
49797
+ * @SINCE 1.98
47790
49798
  *
47791
- * Sets a new value for property {@link #getMode mode}.
49799
+ * Gets current value of property {@link #getIllustrationType illustrationType}.
47792
49800
  *
47793
- * Specifies the header mode.
49801
+ * Determines which illustration type is displayed.
47794
49802
  *
47795
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
49803
+ * **Note:** The {@link sap.m.IllustratedMessageType} enumeration contains a default illustration set. If
49804
+ * you want to use another illustration set, you have to register it in the {@link sap.m.IllustrationPool}.
47796
49805
  *
47797
- * Default value is `Standard`.
49806
+ * Example input for the `illustrationType` property is `sapIllus-UnableToLoad`. The logic behind this format
49807
+ * is as follows:
49808
+ * - First is the the illustration set - sapIllus
49809
+ * - Second is the illustration type - UnableToLoad
49810
+ *
49811
+ * Default value is `IllustratedMessageType.NoSearchResults`.
47798
49812
  */
47799
- setMode(
49813
+ getIllustrationType(): string;
49814
+ /**
49815
+ * @SINCE 1.98
49816
+ *
49817
+ * Gets current value of property {@link #getTitle title}.
49818
+ *
49819
+ * Defines the title that is displayed below the illustration.
49820
+ *
49821
+ * If there is no initial input from the app developer and the default illustration set is being used, a
49822
+ * default title is displayed corresponding to the current `illustrationType`.
49823
+ *
49824
+ * Default value is `empty string`.
49825
+ */
49826
+ getTitle(): string;
49827
+ /**
49828
+ * @SINCE 1.98
49829
+ *
49830
+ * Checks for the provided `sap.m.Button` in the aggregation {@link #getAdditionalContent additionalContent}.
49831
+ * and returns its index if found or -1 otherwise.
49832
+ */
49833
+ indexOfAdditionalContent(
47800
49834
  /**
47801
- * New value for property `mode`
49835
+ * The additionalContent whose index is looked for
47802
49836
  */
47803
- sMode?: sap.m.IconTabHeaderMode
47804
- ): this;
49837
+ oAdditionalContent: sap.m.Button
49838
+ ): int;
47805
49839
  /**
47806
- * Sets the selected item based on key.
49840
+ * @SINCE 1.98
49841
+ *
49842
+ * Inserts a additionalContent into the aggregation {@link #getAdditionalContent additionalContent}.
47807
49843
  */
47808
- setSelectedKey(
49844
+ insertAdditionalContent(
47809
49845
  /**
47810
- * The key of the item to be selected
49846
+ * The additionalContent to insert; if empty, nothing is inserted
47811
49847
  */
47812
- sKey: string
49848
+ oAdditionalContent: sap.m.Button,
49849
+ /**
49850
+ * The `0`-based index the additionalContent should be inserted at; for a negative value of `iIndex`, the
49851
+ * additionalContent is inserted at position 0; for a value greater than the current size of the aggregation,
49852
+ * the additionalContent is inserted at the last position
49853
+ */
49854
+ iIndex: int
47813
49855
  ): this;
47814
49856
  /**
47815
- * @deprecated (since 1.75)
47816
- *
47817
- * Sets a new value for property {@link #getShowOverflowSelectList showOverflowSelectList}.
47818
- *
47819
- * Specifies if the overflow select list is displayed.
47820
- *
47821
- * The overflow select list represents a list, where all tab filters are displayed, so the user can select
47822
- * specific tab filter easier.
47823
- *
47824
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
49857
+ * @SINCE 1.98
47825
49858
  *
47826
- * Default value is `false`.
49859
+ * Removes a additionalContent from the aggregation {@link #getAdditionalContent additionalContent}.
47827
49860
  */
47828
- setShowOverflowSelectList(
49861
+ removeAdditionalContent(
47829
49862
  /**
47830
- * New value for property `showOverflowSelectList`
49863
+ * The additionalContent to remove or its index or id
47831
49864
  */
47832
- bShowOverflowSelectList?: boolean
47833
- ): this;
49865
+ vAdditionalContent: int | string | sap.m.Button
49866
+ ): sap.m.Button;
47834
49867
  /**
47835
- * @deprecated (since 1.15.0) - Regarding to changes of this control this property is not needed anymore.
49868
+ * @SINCE 1.98
47836
49869
  *
47837
- * Sets a new value for property {@link #getShowSelection showSelection}.
49870
+ * Removes all the controls from the aggregation {@link #getAdditionalContent additionalContent}.
47838
49871
  *
47839
- * Defines whether the current selection is visualized.
49872
+ * Additionally, it unregisters them from the hosting UIArea.
49873
+ */
49874
+ removeAllAdditionalContent(): sap.m.Button[];
49875
+ /**
49876
+ * @SINCE 1.98
49877
+ *
49878
+ * Sets a new value for property {@link #getDescription description}.
49879
+ *
49880
+ * Defines the description displayed below the title.
49881
+ *
49882
+ * If there is no initial input from the app developer and the default illustration set is being used, a
49883
+ * default description for the current illustration type is going to be displayed. The default description
49884
+ * is stored in the `sap.m` resource bundle.
47840
49885
  *
47841
49886
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
47842
49887
  *
47843
- * Default value is `true`.
49888
+ * Default value is `empty string`.
47844
49889
  */
47845
- setShowSelection(
49890
+ setDescription(
47846
49891
  /**
47847
- * New value for property `showSelection`
49892
+ * New value for property `description`
47848
49893
  */
47849
- bShowSelection?: boolean
49894
+ sDescription?: string
47850
49895
  ): this;
47851
49896
  /**
47852
- * @SINCE 1.56
49897
+ * @SINCE 1.98
47853
49898
  *
47854
- * Sets a new value for property {@link #getTabDensityMode tabDensityMode}.
49899
+ * Sets a new value for property {@link #getEnableFormattedText enableFormattedText}.
47855
49900
  *
47856
- * Specifies the visual density mode of the tabs.
49901
+ * Defines whether the value set in the `description` property is displayed as formatted text in HTML format.
47857
49902
  *
47858
- * The values that can be applied are `Cozy`, `Compact` and `Inherit`. `Cozy` and `Compact` render the control
47859
- * in one of these modes independent of the global density settings. The `Inherit` value follows the global
47860
- * density settings which are applied. For compatibility reasons, the default value is `Cozy`.
49903
+ * For details regarding supported HTML tags, see {@link sap.m.FormattedText}.
47861
49904
  *
47862
49905
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
47863
49906
  *
47864
- * Default value is `Cozy`.
49907
+ * Default value is `false`.
47865
49908
  */
47866
- setTabDensityMode(
49909
+ setEnableFormattedText(
47867
49910
  /**
47868
- * New value for property `tabDensityMode`
49911
+ * New value for property `enableFormattedText`
47869
49912
  */
47870
- sTabDensityMode?: sap.m.IconTabDensityMode
49913
+ bEnableFormattedText?: boolean
47871
49914
  ): this;
47872
49915
  /**
47873
- * @SINCE 1.90
49916
+ * @SINCE 1.98
47874
49917
  *
47875
- * Sets a new value for property {@link #getTabsOverflowMode tabsOverflowMode}.
49918
+ * Sets a new value for property {@link #getIllustrationSize illustrationSize}.
47876
49919
  *
47877
- * Specifies the overflow mode of the header.
49920
+ * Determines which illustration breakpoint variant is used.
47878
49921
  *
47879
- * The default `End` mode shows as many tabs that can fit on the screen, then shows one overflow at the
47880
- * end containing the remaining items. The `StartAndEnd` is used to keep the order of tabs intact and offers
47881
- * overflow tabs on both ends of the bar.
49922
+ * As `IllustratedMessage` adapts itself around the `Illustration`, the other elements of the control are
49923
+ * displayed differently on the different breakpoints/illustration sizes.
47882
49924
  *
47883
49925
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
47884
49926
  *
47885
- * Default value is `End`.
49927
+ * Default value is `Auto`.
47886
49928
  */
47887
- setTabsOverflowMode(
49929
+ setIllustrationSize(
47888
49930
  /**
47889
- * New value for property `tabsOverflowMode`
49931
+ * New value for property `illustrationSize`
47890
49932
  */
47891
- sTabsOverflowMode?: sap.m.TabsOverflowMode
49933
+ sIllustrationSize?: sap.m.IllustratedMessageSize
47892
49934
  ): this;
47893
49935
  /**
47894
- * @SINCE 1.15.0
49936
+ * @SINCE 1.98
47895
49937
  *
47896
- * Sets a new value for property {@link #getVisible visible}.
49938
+ * Sets a new value for property {@link #getTitle title}.
47897
49939
  *
47898
- * Specifies whether the control is rendered.
49940
+ * Defines the title that is displayed below the illustration.
49941
+ *
49942
+ * If there is no initial input from the app developer and the default illustration set is being used, a
49943
+ * default title is displayed corresponding to the current `illustrationType`.
47899
49944
  *
47900
49945
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
47901
49946
  *
47902
- * Default value is `true`.
49947
+ * Default value is `empty string`.
47903
49948
  */
47904
- setVisible(
49949
+ setTitle(
47905
49950
  /**
47906
- * New value for property `visible`
49951
+ * New value for property `title`
47907
49952
  */
47908
- bVisible?: boolean
49953
+ sTitle?: string
47909
49954
  ): this;
47910
49955
  }
47911
49956
  /**
47912
- * Represents an Icon used to separate 2 tab filters.
49957
+ * @SINCE 1.98
49958
+ *
49959
+ * A simple control which uses a Symbol ID to visualize an SVG which has already been loaded in the {@link
49960
+ * sap.m.IllustrationPool}.
49961
+ *
49962
+ * To build a Symbol ID, all of the `Illustration` properties must be populated with data.
47913
49963
  */
47914
- class IconTabSeparator
47915
- extends sap.ui.core.Element
47916
- implements sap.m.IconTab {
47917
- __implements__sap_m_IconTab: boolean;
49964
+ class Illustration extends sap.ui.core.Control {
47918
49965
  /**
47919
- * Constructor for a new IconTabSeparator.
49966
+ * Constructor for a new `Illustration`.
47920
49967
  *
47921
49968
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
47922
49969
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
@@ -47926,10 +49973,10 @@ declare namespace sap {
47926
49973
  /**
47927
49974
  * Initial settings for the new control
47928
49975
  */
47929
- mSettings?: sap.m.$IconTabSeparatorSettings
49976
+ mSettings?: sap.m.$IllustrationSettings
47930
49977
  );
47931
49978
  /**
47932
- * Constructor for a new IconTabSeparator.
49979
+ * Constructor for a new `Illustration`.
47933
49980
  *
47934
49981
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
47935
49982
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
@@ -47943,14 +49990,14 @@ declare namespace sap {
47943
49990
  /**
47944
49991
  * Initial settings for the new control
47945
49992
  */
47946
- mSettings?: sap.m.$IconTabSeparatorSettings
49993
+ mSettings?: sap.m.$IllustrationSettings
47947
49994
  );
47948
49995
 
47949
49996
  /**
47950
- * Creates a new subclass of class sap.m.IconTabSeparator with name `sClassName` and enriches it with the
47951
- * information contained in `oClassInfo`.
49997
+ * Creates a new subclass of class sap.m.Illustration with name `sClassName` and enriches it with the information
49998
+ * contained in `oClassInfo`.
47952
49999
  *
47953
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
50000
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
47954
50001
  */
47955
50002
  static extend<T extends Record<string, unknown>>(
47956
50003
  /**
@@ -47960,7 +50007,7 @@ declare namespace sap {
47960
50007
  /**
47961
50008
  * Object literal with information about the class
47962
50009
  */
47963
- oClassInfo?: sap.ClassInfo<T, sap.m.IconTabSeparator>,
50010
+ oClassInfo?: sap.ClassInfo<T, sap.m.Illustration>,
47964
50011
  /**
47965
50012
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
47966
50013
  * used by this class
@@ -47968,117 +50015,77 @@ declare namespace sap {
47968
50015
  FNMetaImpl?: Function
47969
50016
  ): Function;
47970
50017
  /**
47971
- * Returns a metadata object for class sap.m.IconTabSeparator.
50018
+ * Returns a metadata object for class sap.m.Illustration.
47972
50019
  */
47973
50020
  static getMetadata(): sap.ui.core.ElementMetadata;
47974
50021
  /**
47975
- * Gets current value of property {@link #getIcon icon}.
50022
+ * @SINCE 1.98
47976
50023
  *
47977
- * The icon to display for this separator. If no icon is given, a separator line is used instead.
50024
+ * Gets current value of property {@link #getMedia media}.
47978
50025
  *
47979
- * Default value is `empty string`.
50026
+ * Defines which media/breakpoint should be used when building the Symbol ID.
47980
50027
  */
47981
- getIcon(): sap.ui.core.URI;
50028
+ getMedia(): string;
47982
50029
  /**
47983
- * Gets current value of property {@link #getIconDensityAware iconDensityAware}.
50030
+ * @SINCE 1.98
47984
50031
  *
47985
- * If set to true, it sends one or more requests, trying to get the density perfect version of the image
47986
- * if this version of the image doesn't exist on the server. Default value is set to true.
47987
- *
47988
- * If bandwidth is key for the application, set this value to false.
50032
+ * Gets current value of property {@link #getSet set}.
47989
50033
  *
47990
- * Default value is `true`.
50034
+ * Defines which illustration set should be used when building the Symbol ID.
47991
50035
  */
47992
- getIconDensityAware(): boolean;
50036
+ getSet(): string;
47993
50037
  /**
47994
- * Gets current value of property {@link #getVisible visible}.
50038
+ * @SINCE 1.98
47995
50039
  *
47996
- * Specifies whether the separator is rendered.
50040
+ * Gets current value of property {@link #getType type}.
47997
50041
  *
47998
- * Default value is `true`.
47999
- */
48000
- getVisible(): boolean;
48001
- /**
48002
- * Renders the item in the IconTabHeader.
48003
- */
48004
- render(
48005
- /**
48006
- * the RenderManager that can be used for writing to the render output buffer
48007
- */
48008
- oRM: sap.ui.core.RenderManager
48009
- ): void;
48010
- /**
48011
- * Renders this item in the IconTabSelectList.
50042
+ * Defines which illustration type should be used when building the Symbol ID.
48012
50043
  */
48013
- renderInSelectList(
48014
- /**
48015
- * RenderManager used for writing to the render output buffer
48016
- */
48017
- oRM: sap.ui.core.RenderManager,
48018
- /**
48019
- * the select list in which this filter is rendered
48020
- */
48021
- oSelectList: /* was: sap.m.IconTabBarSelectList */ any,
48022
- /**
48023
- * this item's index within the aggregation of items
48024
- */
48025
- iIndexInSet: int,
48026
- /**
48027
- * total length of the aggregation of items
48028
- */
48029
- iSetSize: int,
48030
- /**
48031
- * the padding with which the item should be indented
48032
- */
48033
- fPaddingValue: float
48034
- ): void;
50044
+ getType(): string;
48035
50045
  /**
48036
- * Sets a new value for property {@link #getIcon icon}.
50046
+ * @SINCE 1.98
48037
50047
  *
48038
- * The icon to display for this separator. If no icon is given, a separator line is used instead.
50048
+ * Sets a new value for property {@link #getMedia media}.
48039
50049
  *
48040
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
50050
+ * Defines which media/breakpoint should be used when building the Symbol ID.
48041
50051
  *
48042
- * Default value is `empty string`.
50052
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
48043
50053
  */
48044
- setIcon(
50054
+ setMedia(
48045
50055
  /**
48046
- * New value for property `icon`
50056
+ * New value for property `media`
48047
50057
  */
48048
- sIcon?: sap.ui.core.URI
50058
+ sMedia?: string
48049
50059
  ): this;
48050
50060
  /**
48051
- * Sets a new value for property {@link #getIconDensityAware iconDensityAware}.
50061
+ * @SINCE 1.98
48052
50062
  *
48053
- * If set to true, it sends one or more requests, trying to get the density perfect version of the image
48054
- * if this version of the image doesn't exist on the server. Default value is set to true.
50063
+ * Sets a new value for property {@link #getSet set}.
48055
50064
  *
48056
- * If bandwidth is key for the application, set this value to false.
50065
+ * Defines which illustration set should be used when building the Symbol ID.
48057
50066
  *
48058
50067
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
48059
- *
48060
- * Default value is `true`.
48061
50068
  */
48062
- setIconDensityAware(
50069
+ setSet(
48063
50070
  /**
48064
- * New value for property `iconDensityAware`
50071
+ * New value for property `set`
48065
50072
  */
48066
- bIconDensityAware?: boolean
50073
+ sSet?: string
48067
50074
  ): this;
48068
50075
  /**
48069
- * Sets a new value for property {@link #getVisible visible}.
50076
+ * @SINCE 1.98
48070
50077
  *
48071
- * Specifies whether the separator is rendered.
50078
+ * Sets a new value for property {@link #getType type}.
48072
50079
  *
48073
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
50080
+ * Defines which illustration type should be used when building the Symbol ID.
48074
50081
  *
48075
- * Default value is `true`.
50082
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
48076
50083
  */
48077
- setVisible(
50084
+ setType(
48078
50085
  /**
48079
- * New value for property `visible`
50086
+ * New value for property `type`
48080
50087
  */
48081
- bVisible?: boolean
50088
+ sType?: string
48082
50089
  ): this;
48083
50090
  }
48084
50091
  /**
@@ -50154,7 +52161,7 @@ declare namespace sap {
50154
52161
  *
50155
52162
  * If set to true, direct text input is disabled and the control will trigger the event "valueHelpRequest"
50156
52163
  * for all user interactions. The properties "showValueHelp", "editable", and "enabled" must be set to true,
50157
- * otherwise the property will have no effect
52164
+ * otherwise the property will have no effect. In this scenario, the `showItems` API will not work.
50158
52165
  *
50159
52166
  * Default value is `false`.
50160
52167
  */
@@ -50873,7 +52880,7 @@ declare namespace sap {
50873
52880
  *
50874
52881
  * If set to true, direct text input is disabled and the control will trigger the event "valueHelpRequest"
50875
52882
  * for all user interactions. The properties "showValueHelp", "editable", and "enabled" must be set to true,
50876
- * otherwise the property will have no effect
52883
+ * otherwise the property will have no effect. In this scenario, the `showItems` API will not work.
50877
52884
  *
50878
52885
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
50879
52886
  *
@@ -50921,11 +52928,21 @@ declare namespace sap {
50921
52928
  */
50922
52929
  sValueStateText: string
50923
52930
  ): this;
52931
+ /**
52932
+ * A helper function calculating if the SuggestionsPopover should be opened on mobile.
52933
+ */
52934
+ shouldSuggetionsPopoverOpenOnMobile(
52935
+ /**
52936
+ * Ontap event.
52937
+ */
52938
+ oEvent: jQuery.Event
52939
+ ): Boolean;
50924
52940
  /**
50925
52941
  * @SINCE 1.64
50926
52942
  * @EXPERIMENTAL (since 1.64)
50927
52943
  *
50928
- * Opens the `SuggestionsPopover` with the available items.
52944
+ * Opens the `SuggestionsPopover` with the available items. **Note:** When `valueHelpOnly` property is set
52945
+ * to true, the `SuggestionsPopover` will not open.
50929
52946
  */
50930
52947
  showItems(
50931
52948
  /**
@@ -52012,6 +54029,20 @@ declare namespace sap {
52012
54029
  * Default value is `false`.
52013
54030
  */
52014
54031
  getRequired(): boolean;
54032
+ /**
54033
+ * @SINCE 1.98
54034
+ *
54035
+ * Gets current value of property {@link #getShowColon showColon}.
54036
+ *
54037
+ * Defines whether a colon (:) character is added to the label.
54038
+ *
54039
+ * **Note:** By default when the `Label` is in the `sap.ui.layout.form.Form` and `sap.ui.layout.form.SimpleForm`
54040
+ * controls the colon (:) character is displayed automatically regardless of the value of the `showColon`
54041
+ * property.
54042
+ *
54043
+ * Default value is `false`.
54044
+ */
54045
+ getShowColon(): boolean;
52015
54046
  /**
52016
54047
  * Gets current value of property {@link #getText text}.
52017
54048
  *
@@ -52136,6 +54167,27 @@ declare namespace sap {
52136
54167
  */
52137
54168
  bRequired?: boolean
52138
54169
  ): this;
54170
+ /**
54171
+ * @SINCE 1.98
54172
+ *
54173
+ * Sets a new value for property {@link #getShowColon showColon}.
54174
+ *
54175
+ * Defines whether a colon (:) character is added to the label.
54176
+ *
54177
+ * **Note:** By default when the `Label` is in the `sap.ui.layout.form.Form` and `sap.ui.layout.form.SimpleForm`
54178
+ * controls the colon (:) character is displayed automatically regardless of the value of the `showColon`
54179
+ * property.
54180
+ *
54181
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
54182
+ *
54183
+ * Default value is `false`.
54184
+ */
54185
+ setShowColon(
54186
+ /**
54187
+ * New value for property `showColon`
54188
+ */
54189
+ bShowColon?: boolean
54190
+ ): this;
52139
54191
  /**
52140
54192
  * Sets a new value for property {@link #getText text}.
52141
54193
  *
@@ -58116,6 +60168,18 @@ declare namespace sap {
58116
60168
  * Determines the title in the header of MessagePage.
58117
60169
  */
58118
60170
  getTitle(): string;
60171
+ /**
60172
+ * @SINCE 1.97
60173
+ *
60174
+ * Gets current value of property {@link #getTitleLevel titleLevel}.
60175
+ *
60176
+ * Defines the semantic level of the title. When using `Auto`, no explicit level information is written.
60177
+ *
60178
+ * **Note:** Used for accessibility purposes only.
60179
+ *
60180
+ * Default value is `Auto`.
60181
+ */
60182
+ getTitleLevel(): sap.ui.core.TitleLevel;
58119
60183
  /**
58120
60184
  * @SINCE 1.54
58121
60185
  *
@@ -58347,6 +60411,25 @@ declare namespace sap {
58347
60411
  */
58348
60412
  sTitle?: string
58349
60413
  ): this;
60414
+ /**
60415
+ * @SINCE 1.97
60416
+ *
60417
+ * Sets a new value for property {@link #getTitleLevel titleLevel}.
60418
+ *
60419
+ * Defines the semantic level of the title. When using `Auto`, no explicit level information is written.
60420
+ *
60421
+ * **Note:** Used for accessibility purposes only.
60422
+ *
60423
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
60424
+ *
60425
+ * Default value is `Auto`.
60426
+ */
60427
+ setTitleLevel(
60428
+ /**
60429
+ * New value for property `titleLevel`
60430
+ */
60431
+ sTitleLevel?: sap.ui.core.TitleLevel
60432
+ ): this;
58350
60433
  }
58351
60434
  /**
58352
60435
  * @SINCE 1.28
@@ -60801,10 +62884,6 @@ declare namespace sap {
60801
62884
  * This hook method is called before the MultiComboBox is rendered.
60802
62885
  */
60803
62886
  onBeforeRendering(): void;
60804
- /**
60805
- * This hook method is called before the MultiComboBox's Pop-up is rendered.
60806
- */
60807
- onBeforeRenderingPicker(): void;
60808
62887
  /**
60809
62888
  * Handles control click event.
60810
62889
  */
@@ -64249,6 +66328,25 @@ declare namespace sap {
64249
66328
  * the `textDirection` property should be set to ensure correct display.
64250
66329
  */
64251
66330
  getActive(): boolean;
66331
+ /**
66332
+ * @SINCE 1.97.0
66333
+ *
66334
+ * Gets current value of property {@link #getAriaHasPopup ariaHasPopup}.
66335
+ *
66336
+ * Specifies the value of the `aria-haspopup` attribute
66337
+ *
66338
+ * If the value is `None`, the attribute will not be rendered. Otherwise it will be rendered with the selected
66339
+ * value.
66340
+ *
66341
+ * NOTE: Use this property only when an `sap.m.ObjectAttribute` instance is active and related to a popover/popup.
66342
+ * The value needs to be equal to the main/root role of the popup - e.g. dialog, menu or list (examples:
66343
+ * if you have dialog -> dialog, if you have menu -> menu; if you have list -> list; if you have dialog
66344
+ * containing a list -> dialog). Do not use it, if you open a standard sap.m.Dialog, MessageBox or other
66345
+ * type of modal dialogs.
66346
+ *
66347
+ * Default value is `None`.
66348
+ */
66349
+ getAriaHasPopup(): sap.ui.core.aria.HasPopup;
64252
66350
  /**
64253
66351
  * Gets content of aggregation {@link #getCustomContent customContent}.
64254
66352
  *
@@ -64301,6 +66399,32 @@ declare namespace sap {
64301
66399
  */
64302
66400
  bActive?: boolean
64303
66401
  ): this;
66402
+ /**
66403
+ * @SINCE 1.97.0
66404
+ *
66405
+ * Sets a new value for property {@link #getAriaHasPopup ariaHasPopup}.
66406
+ *
66407
+ * Specifies the value of the `aria-haspopup` attribute
66408
+ *
66409
+ * If the value is `None`, the attribute will not be rendered. Otherwise it will be rendered with the selected
66410
+ * value.
66411
+ *
66412
+ * NOTE: Use this property only when an `sap.m.ObjectAttribute` instance is active and related to a popover/popup.
66413
+ * The value needs to be equal to the main/root role of the popup - e.g. dialog, menu or list (examples:
66414
+ * if you have dialog -> dialog, if you have menu -> menu; if you have list -> list; if you have dialog
66415
+ * containing a list -> dialog). Do not use it, if you open a standard sap.m.Dialog, MessageBox or other
66416
+ * type of modal dialogs.
66417
+ *
66418
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
66419
+ *
66420
+ * Default value is `None`.
66421
+ */
66422
+ setAriaHasPopup(
66423
+ /**
66424
+ * New value for property `ariaHasPopup`
66425
+ */
66426
+ sAriaHasPopup?: sap.ui.core.aria.HasPopup
66427
+ ): this;
64304
66428
  /**
64305
66429
  * Sets the aggregated {@link #getCustomContent customContent}.
64306
66430
  */
@@ -68620,6 +70744,7 @@ declare namespace sap {
68620
70744
  }
68621
70745
  /**
68622
70746
  * @SINCE 1.26.0
70747
+ * @deprecated (since 1.98) - Use the {@link sap.m.p13n.SelectionPanel} instead.
68623
70748
  *
68624
70749
  * The `P13nColumnsPanel` control is used to define column-specific settings for table personalization.
68625
70750
  */
@@ -69620,6 +71745,7 @@ declare namespace sap {
69620
71745
  }
69621
71746
  /**
69622
71747
  * @SINCE 1.26.0
71748
+ * @deprecated (since 1.98) - Use the {@link sap.m.p13n.Popup} instead.
69623
71749
  *
69624
71750
  * The P13nDialog control provides a dialog that contains one or more panels. On each of the panels, one
69625
71751
  * or more changes with regards to a table can be processed. For example, a panel to set a column to invisible,
@@ -71514,6 +73640,7 @@ declare namespace sap {
71514
73640
  }
71515
73641
  /**
71516
73642
  * @SINCE 1.26.0
73643
+ * @deprecated (since 1.98) - Use the {@link sap.m.p13n.GroupPanel} instead.
71517
73644
  *
71518
73645
  * The P13nGroupPanel control is used to define group-specific settings for table personalization.
71519
73646
  */
@@ -72937,6 +75064,7 @@ declare namespace sap {
72937
75064
  }
72938
75065
  /**
72939
75066
  * @SINCE 1.26.0
75067
+ * @deprecated (since 1.98) - Use the {@link sap.m.p13n.SortPanel} instead.
72940
75068
  *
72941
75069
  * The P13nSortPanel control is used to define settings for sorting in table personalization.
72942
75070
  */
@@ -76684,6 +78812,18 @@ declare namespace sap {
76684
78812
  * date of the month in which the `minDate` belongs.
76685
78813
  */
76686
78814
  getMinDate(): object;
78815
+ /**
78816
+ * @SINCE 1.97
78817
+ *
78818
+ * Gets current value of property {@link #getMultipleAppointmentsSelection multipleAppointmentsSelection}.
78819
+ *
78820
+ * Determines whether the selection of multiple appointments is enabled.
78821
+ *
78822
+ * Note: selection of multiple appointments is possible using CTRL key regardless of the value of this property.
78823
+ *
78824
+ * Default value is `false`.
78825
+ */
78826
+ getMultipleAppointmentsSelection(): boolean;
76687
78827
  /**
76688
78828
  * Gets current value of property {@link #getNoDataText noDataText}.
76689
78829
  *
@@ -77248,6 +79388,25 @@ declare namespace sap {
77248
79388
  */
77249
79389
  oMinDate?: object
77250
79390
  ): this;
79391
+ /**
79392
+ * @SINCE 1.97
79393
+ *
79394
+ * Sets a new value for property {@link #getMultipleAppointmentsSelection multipleAppointmentsSelection}.
79395
+ *
79396
+ * Determines whether the selection of multiple appointments is enabled.
79397
+ *
79398
+ * Note: selection of multiple appointments is possible using CTRL key regardless of the value of this property.
79399
+ *
79400
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
79401
+ *
79402
+ * Default value is `false`.
79403
+ */
79404
+ setMultipleAppointmentsSelection(
79405
+ /**
79406
+ * New value for property `multipleAppointmentsSelection`
79407
+ */
79408
+ bMultipleAppointmentsSelection?: boolean
79409
+ ): this;
77251
79410
  /**
77252
79411
  * Sets a new value for property {@link #getNoDataText noDataText}.
77253
79412
  *
@@ -77505,16 +79664,12 @@ declare namespace sap {
77505
79664
  *
77506
79665
  * Defines the text displayed in the header of the appointment items list. It is commonly related to the
77507
79666
  * calendar appointments.
77508
- *
77509
- * Default value is `"Appointments"`.
77510
79667
  */
77511
79668
  getAppointmentItemsHeader(): string;
77512
79669
  /**
77513
79670
  * Gets current value of property {@link #getItemsHeader itemsHeader}.
77514
79671
  *
77515
79672
  * Defines the text displayed in the header of the items list. It is commonly related to the calendar days.
77516
- *
77517
- * Default value is `"Calendar"`.
77518
79673
  */
77519
79674
  getItemsHeader(): string;
77520
79675
  /**
@@ -77564,14 +79719,12 @@ declare namespace sap {
77564
79719
  * calendar appointments.
77565
79720
  *
77566
79721
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
77567
- *
77568
- * Default value is `"Appointments"`.
77569
79722
  */
77570
79723
  setAppointmentItemsHeader(
77571
79724
  /**
77572
79725
  * New value for property `appointmentItemsHeader`
77573
79726
  */
77574
- sAppointmentItemsHeader?: string
79727
+ sAppointmentItemsHeader: string
77575
79728
  ): this;
77576
79729
  /**
77577
79730
  * Sets a new value for property {@link #getItemsHeader itemsHeader}.
@@ -77579,14 +79732,12 @@ declare namespace sap {
77579
79732
  * Defines the text displayed in the header of the items list. It is commonly related to the calendar days.
77580
79733
  *
77581
79734
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
77582
- *
77583
- * Default value is `"Calendar"`.
77584
79735
  */
77585
79736
  setItemsHeader(
77586
79737
  /**
77587
79738
  * New value for property `itemsHeader`
77588
79739
  */
77589
- sItemsHeader?: string
79740
+ sItemsHeader: string
77590
79741
  ): this;
77591
79742
  }
77592
79743
  /**
@@ -86820,6 +88971,11 @@ declare namespace sap {
86820
88971
  item?: sap.m.SegmentedButtonItem;
86821
88972
  }
86822
88973
  ): this;
88974
+ /**
88975
+ * See:
88976
+ * sap.ui.core.Control#getAccessibilityInfo
88977
+ */
88978
+ getAccessibilityInfo(): object;
86823
88979
  /**
86824
88980
  * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
86825
88981
  * ariaDescribedBy}.
@@ -88769,7 +90925,7 @@ declare namespace sap {
88769
90925
  * user inputs, set this flag to `true`.
88770
90926
  *
88771
90927
  * **Note:** The sap.m.SelectDialog uses {@link sap.m.ListBase#rememberSelections this} property of the
88772
- * ListBase and therefore its limitations also apply here.
90928
+ * ListBase and therefore its behavior and restrictions also apply here.
88773
90929
  *
88774
90930
  * Default value is `false`.
88775
90931
  */
@@ -89009,7 +91165,7 @@ declare namespace sap {
89009
91165
  * user inputs, set this flag to `true`.
89010
91166
  *
89011
91167
  * **Note:** The sap.m.SelectDialog uses {@link sap.m.ListBase#rememberSelections this} property of the
89012
- * ListBase and therefore its limitations also apply here.
91168
+ * ListBase and therefore its behavior and restrictions also apply here.
89013
91169
  *
89014
91170
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
89015
91171
  *
@@ -91605,7 +93761,7 @@ declare namespace sap {
91605
93761
  * 'phone@2':'phone-retina_114x114.png', 'tablet':'tablet-icon_72x72.png', 'tablet@2':'tablet-retina_144x144.png',
91606
93762
  * 'precomposed':true, 'favicon':'favicon.ico' }
91607
93763
  *
91608
- * See jQuery.sap.setIcons() for full documentation.
93764
+ * See {@link module:sap/ui/util/Mobile.setIcons} for full documentation.
91609
93765
  */
91610
93766
  getHomeIcon(): object;
91611
93767
  /**
@@ -91773,7 +93929,7 @@ declare namespace sap {
91773
93929
  * 'phone@2':'phone-retina_114x114.png', 'tablet':'tablet-icon_72x72.png', 'tablet@2':'tablet-retina_144x144.png',
91774
93930
  * 'precomposed':true, 'favicon':'favicon.ico' }
91775
93931
  *
91776
- * See jQuery.sap.setIcons() for full documentation.
93932
+ * See {@link module:sap/ui/util/Mobile.setIcons} for full documentation.
91777
93933
  *
91778
93934
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
91779
93935
  */
@@ -92782,6 +94938,20 @@ declare namespace sap {
92782
94938
  * Default value is `24`.
92783
94939
  */
92784
94940
  getEndHour(): int;
94941
+ /**
94942
+ * @SINCE 1.98
94943
+ *
94944
+ * Gets current value of property {@link #getFirstDayOfWeek firstDayOfWeek}.
94945
+ *
94946
+ * If set, the first day of the displayed week is this day. Valid values are 0 to 6 starting on Sunday.
94947
+ * If there is no valid value set, the default of the used locale is used.
94948
+ *
94949
+ * Note: This property will only have effect in Week view and Month view of the SinglePlanningCalendar,
94950
+ * but it wouldn't have effect in WorkWeek view.
94951
+ *
94952
+ * Default value is `-1`.
94953
+ */
94954
+ getFirstDayOfWeek(): int;
92785
94955
  /**
92786
94956
  * Gets current value of property {@link #getFullDay fullDay}.
92787
94957
  *
@@ -93123,6 +95293,27 @@ declare namespace sap {
93123
95293
  */
93124
95294
  iEndHour?: int
93125
95295
  ): this;
95296
+ /**
95297
+ * @SINCE 1.98
95298
+ *
95299
+ * Sets a new value for property {@link #getFirstDayOfWeek firstDayOfWeek}.
95300
+ *
95301
+ * If set, the first day of the displayed week is this day. Valid values are 0 to 6 starting on Sunday.
95302
+ * If there is no valid value set, the default of the used locale is used.
95303
+ *
95304
+ * Note: This property will only have effect in Week view and Month view of the SinglePlanningCalendar,
95305
+ * but it wouldn't have effect in WorkWeek view.
95306
+ *
95307
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
95308
+ *
95309
+ * Default value is `-1`.
95310
+ */
95311
+ setFirstDayOfWeek(
95312
+ /**
95313
+ * New value for property `firstDayOfWeek`
95314
+ */
95315
+ iFirstDayOfWeek?: int
95316
+ ): this;
93126
95317
  /**
93127
95318
  * Sets a new value for property {@link #getFullDay fullDay}.
93128
95319
  *
@@ -93449,6 +95640,20 @@ declare namespace sap {
93449
95640
  * Should return the number of columns to be displayed in the grid of the `sap.m.SinglePlanningCalendar`.
93450
95641
  */
93451
95642
  getEntityCount(): void;
95643
+ /**
95644
+ * @SINCE 1.98
95645
+ *
95646
+ * Gets current value of property {@link #getFirstDayOfWeek firstDayOfWeek}.
95647
+ *
95648
+ * If set, the first day of the displayed week is this day. Valid values are 0 to 6 starting on Sunday.
95649
+ * If there is no valid value set, the default of the used locale is used.
95650
+ *
95651
+ * Note: This property will only have effect in Week view and Month view of the SinglePlanningCalendar,
95652
+ * but it wouldn't have effect in WorkWeek view.
95653
+ *
95654
+ * Default value is `-1`.
95655
+ */
95656
+ getFirstDayOfWeek(): int;
93452
95657
  /**
93453
95658
  * Gets current value of property {@link #getKey key}.
93454
95659
  *
@@ -93468,6 +95673,27 @@ declare namespace sap {
93468
95673
  * Adds a title for the view
93469
95674
  */
93470
95675
  getTitle(): string;
95676
+ /**
95677
+ * @SINCE 1.98
95678
+ *
95679
+ * Sets a new value for property {@link #getFirstDayOfWeek firstDayOfWeek}.
95680
+ *
95681
+ * If set, the first day of the displayed week is this day. Valid values are 0 to 6 starting on Sunday.
95682
+ * If there is no valid value set, the default of the used locale is used.
95683
+ *
95684
+ * Note: This property will only have effect in Week view and Month view of the SinglePlanningCalendar,
95685
+ * but it wouldn't have effect in WorkWeek view.
95686
+ *
95687
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
95688
+ *
95689
+ * Default value is `-1`.
95690
+ */
95691
+ setFirstDayOfWeek(
95692
+ /**
95693
+ * New value for property `firstDayOfWeek`
95694
+ */
95695
+ iFirstDayOfWeek?: int
95696
+ ): this;
93471
95697
  /**
93472
95698
  * Sets a new value for property {@link #getKey key}.
93473
95699
  *
@@ -97023,6 +99249,12 @@ declare namespace sap {
97023
99249
  * Returns a metadata object for class sap.m.StandardListItem.
97024
99250
  */
97025
99251
  static getMetadata(): sap.ui.core.ElementMetadata;
99252
+ /**
99253
+ * @SINCE 1.98
99254
+ *
99255
+ * Destroys the avatar in the aggregation {@link #getAvatar avatar}.
99256
+ */
99257
+ destroyAvatar(): this;
97026
99258
  /**
97027
99259
  * Gets current value of property {@link #getActiveIcon activeIcon}.
97028
99260
  *
@@ -97041,6 +99273,19 @@ declare namespace sap {
97041
99273
  * Default value is `true`.
97042
99274
  */
97043
99275
  getAdaptTitleSize(): boolean;
99276
+ /**
99277
+ * @SINCE 1.98
99278
+ *
99279
+ * Gets content of aggregation {@link #getAvatar avatar}.
99280
+ *
99281
+ * A `sap.m.Avatar` control instance that, if set, is used instead of an icon or image.
99282
+ *
99283
+ * The size of the `Avatar` control depends on the `insetIcon` property of `StandardListItem`. The `displaySize`
99284
+ * property of the `Avatar` control is not supported. If the `insetIcon` property of `StandardListItem`
99285
+ * is set to `true`, the size of the `Avatar` control is set to XS; if the `insetIcon` property of `StandardListItem`
99286
+ * is set to `false`, the size of the `Avatar` control is set to "S".
99287
+ */
99288
+ getAvatar(): sap.m.Avatar;
97044
99289
  /**
97045
99290
  * Gets current value of property {@link #getDescription description}.
97046
99291
  *
@@ -97196,6 +99441,17 @@ declare namespace sap {
97196
99441
  */
97197
99442
  bAdaptTitleSize?: boolean
97198
99443
  ): this;
99444
+ /**
99445
+ * @SINCE 1.98
99446
+ *
99447
+ * Sets the aggregated {@link #getAvatar avatar}.
99448
+ */
99449
+ setAvatar(
99450
+ /**
99451
+ * The avatar to set
99452
+ */
99453
+ oAvatar: sap.m.Avatar
99454
+ ): this;
97199
99455
  /**
97200
99456
  * Sets a new value for property {@link #getDescription description}.
97201
99457
  *
@@ -100137,6 +102393,28 @@ declare namespace sap {
100137
102393
  hiddenInPopin?: sap.m.Column[];
100138
102394
  }
100139
102395
  ): this;
102396
+ /**
102397
+ * Sets the focus on the stored focus DOM reference.
102398
+ *
102399
+ * If {@param oFocusInfo.targetInfo} is of type {@type sap.ui.core.message.Message}, the focus will be set
102400
+ * as accurately as possible according to the information provided by {@type sap.ui.core.message.Message}.
102401
+ */
102402
+ focus(
102403
+ /**
102404
+ * Options for setting the focus
102405
+ */
102406
+ oFocusInfo?: {
102407
+ /**
102408
+ * @since 1.60 If set to `true`, the focused element won't be moved into the viewport if it's not completely
102409
+ * visible before the focus is set
102410
+ */
102411
+ preventScroll?: boolean;
102412
+ /**
102413
+ * @since 1.98 Further control-specific setting of the focus target within the control
102414
+ */
102415
+ targetInfo?: any;
102416
+ }
102417
+ ): void;
100140
102418
  /**
100141
102419
  * @SINCE 1.52
100142
102420
  *
@@ -101437,8 +103715,8 @@ declare namespace sap {
101437
103715
  * (remain fixed on top when scrolling). This feature is not supported in all browsers. The TableSelectDialog
101438
103716
  * is usually displayed at the center of the screen. Its size and position can be changed by the user. To
101439
103717
  * enable this you need to set the `resizable` and `draggable` properties. Both properties are available
101440
- * only in desktop mode. For more information on browser support limitations, you can refer to the {@link
101441
- * sap.m.ListBase sap.m.ListBase} `sticky` property. Responsive Behavior:
103718
+ * only in desktop mode. For more information on current restrictions, you can refer to the {@link sap.m.ListBase
103719
+ * sap.m.ListBase} `sticky` property. Responsive Behavior:
101442
103720
  * - On smaller screens, the columns of the table wrap and build a list that shows all the information.
101443
103721
  * When using the `sap.m.TableSelectDialog` in SAP Quartz themes, the breakpoints and layout paddings
101444
103722
  * could be determined by the dialog's width. To enable this concept and add responsive paddings to an element
@@ -104288,6 +106566,24 @@ declare namespace sap {
104288
106566
  * the binding itself.
104289
106567
  */
104290
106568
  getDisplayFormat(): string;
106569
+ /**
106570
+ * @SINCE 1.97
106571
+ *
106572
+ * Gets current value of property {@link #getHideInput hideInput}.
106573
+ *
106574
+ * Determines whether the input field of the picker is hidden or visible. When set to `true`, the input
106575
+ * field becomes invisible and there is no way to open the picker popover. In that case it can be opened
106576
+ * by another control through calling of picker's `openBy` method, and the opening control's DOM reference
106577
+ * must be provided as parameter.
106578
+ *
106579
+ * Note: Since the picker is not responsible for accessibility attributes of the control which opens its
106580
+ * popover, those attributes should be added by the application developer. The following is recommended
106581
+ * to be added to the opening control: a text or tooltip that describes the action (example: "Open Time
106582
+ * Picker"), and also aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
106583
+ *
106584
+ * Default value is `false`.
106585
+ */
106586
+ getHideInput(): boolean;
104291
106587
  /**
104292
106588
  * Gets current value of property {@link #getLocaleId localeId}.
104293
106589
  *
@@ -104364,6 +106660,16 @@ declare namespace sap {
104364
106660
  * Default value is `1`.
104365
106661
  */
104366
106662
  getSecondsStep(): int;
106663
+ /**
106664
+ * @SINCE 1.98
106665
+ *
106666
+ * Gets current value of property {@link #getShowCurrentTimeButton showCurrentTimeButton}.
106667
+ *
106668
+ * Determines whether there is a shortcut navigation to current time.
106669
+ *
106670
+ * Default value is `false`.
106671
+ */
106672
+ getShowCurrentTimeButton(): boolean;
104367
106673
  /**
104368
106674
  * @SINCE 1.54
104369
106675
  *
@@ -104435,6 +106741,26 @@ declare namespace sap {
104435
106741
  * Called before the clock picker appears.
104436
106742
  */
104437
106743
  onBeforeOpen(): void;
106744
+ /**
106745
+ * @SINCE 1.97
106746
+ *
106747
+ * Opens the picker popover. The popover is positioned relatively to the control given as `oDomRef` parameter
106748
+ * on tablet or desktop and is full screen on phone. Therefore the control parameter is only used on tablet
106749
+ * or desktop and is ignored on phone.
106750
+ *
106751
+ * Note: use this method to open the picker popover only when the `hideInput` property is set to `true`.
106752
+ * Please consider opening of the picker popover by another control only in scenarios that comply with Fiori
106753
+ * guidelines. For example, opening the picker popover by another popover is not recommended. The application
106754
+ * developer should implement the following accessibility attributes to the opening control: a text or tooltip
106755
+ * that describes the action (example: "Open Time Picker"), and aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
106756
+ */
106757
+ openBy(
106758
+ /**
106759
+ * DOM reference of the opening control. On tablet or desktop, the popover is positioned relatively to this
106760
+ * control.
106761
+ */
106762
+ oDomRef: HTMLElement
106763
+ ): void;
104438
106764
  /**
104439
106765
  * Removes all the controls from the aggregation {@link #getRules rules}.
104440
106766
  *
@@ -104468,6 +106794,31 @@ declare namespace sap {
104468
106794
  */
104469
106795
  sDisplayFormat: string
104470
106796
  ): this;
106797
+ /**
106798
+ * @SINCE 1.97
106799
+ *
106800
+ * Sets a new value for property {@link #getHideInput hideInput}.
106801
+ *
106802
+ * Determines whether the input field of the picker is hidden or visible. When set to `true`, the input
106803
+ * field becomes invisible and there is no way to open the picker popover. In that case it can be opened
106804
+ * by another control through calling of picker's `openBy` method, and the opening control's DOM reference
106805
+ * must be provided as parameter.
106806
+ *
106807
+ * Note: Since the picker is not responsible for accessibility attributes of the control which opens its
106808
+ * popover, those attributes should be added by the application developer. The following is recommended
106809
+ * to be added to the opening control: a text or tooltip that describes the action (example: "Open Time
106810
+ * Picker"), and also aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
106811
+ *
106812
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
106813
+ *
106814
+ * Default value is `false`.
106815
+ */
106816
+ setHideInput(
106817
+ /**
106818
+ * New value for property `hideInput`
106819
+ */
106820
+ bHideInput?: boolean
106821
+ ): this;
104471
106822
  /**
104472
106823
  * Sets the locale of the control.
104473
106824
  *
@@ -104555,6 +106906,23 @@ declare namespace sap {
104555
106906
  */
104556
106907
  step: int
104557
106908
  ): this;
106909
+ /**
106910
+ * @SINCE 1.98
106911
+ *
106912
+ * Sets a new value for property {@link #getShowCurrentTimeButton showCurrentTimeButton}.
106913
+ *
106914
+ * Determines whether there is a shortcut navigation to current time.
106915
+ *
106916
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
106917
+ *
106918
+ * Default value is `false`.
106919
+ */
106920
+ setShowCurrentTimeButton(
106921
+ /**
106922
+ * New value for property `showCurrentTimeButton`
106923
+ */
106924
+ bShowCurrentTimeButton?: boolean
106925
+ ): this;
104558
106926
  /**
104559
106927
  * Sets `support2400` of the control.
104560
106928
  *
@@ -113249,10 +115617,10 @@ declare namespace sap {
113249
115617
  *
113250
115618
  * Enables users to accomplish a single goal which consists of multiple dependable sub-tasks. Overview:
113251
115619
  * The sap.m.Wizard helps users complete a complex and unfamiliar task by dividing it into sections and
113252
- * guiding the user through it. The wizard has two main areas - a navigation area at the top showing the
113253
- * step sequence and a content area below it. Structure: Navigation Area: The top most area of the wizard
113254
- * is occupied by the navigation area. It shows the sequence of {@link sap.m.WizardStep wizard steps}.
113255
- *
115620
+ * guiding the user through it. The wizard has a mandatory title and two main areas - a navigation area
115621
+ * at the top showing the step sequence, and a content area below. Structure: Title: The wizard's title
115622
+ * defines its purpose. Navigation Area: The navigation area shows the sequence of {@link sap.m.WizardStep
115623
+ * wizard steps}.
113256
115624
  * - The minimum number of steps is 3 and the maximum is 8 and are stored in the `steps` aggregation.
113257
115625
  *
113258
115626
  * - Steps can be branching depending on choices the user made in their input - this is set by the `enableBranching`
@@ -115139,6 +117507,243 @@ declare namespace sap {
115139
117507
  */
115140
117508
  Standard = "Standard",
115141
117509
  }
117510
+ /**
117511
+ * @SINCE 1.98
117512
+ *
117513
+ * Available `Illustration` sizes for the {@link sap.m.IllustratedMessage} control.
117514
+ */
117515
+ enum IllustratedMessageSize {
117516
+ /**
117517
+ * Automatically decides the `Illustration` size (`Base`, `Spot`, `Dialog`, or `Scene`) depending on the
117518
+ * `IllustratedMessage` container width.
117519
+ *
117520
+ * **Note:** `Auto` is the only option where the illustration size is changed according to the available
117521
+ * container width. If any other `IllustratedMessageSize` is chosen, it remains until changed by the app
117522
+ * developer.
117523
+ */
117524
+ Auto = "Auto",
117525
+ /**
117526
+ * Base `Illustration` size (XS breakpoint). Suitable for cards (two columns).
117527
+ *
117528
+ * **Note:** When `Base` is in use, no illustration is displayed.
117529
+ */
117530
+ Base = "Base",
117531
+ /**
117532
+ * Dialog `Illustration` size (M breakpoint). Suitable for dialogs.
117533
+ */
117534
+ Dialog = "Dialog",
117535
+ /**
117536
+ * Scene `Illustration` size (L breakpoint). Suitable for a `Page` or a table.
117537
+ */
117538
+ Scene = "Scene",
117539
+ /**
117540
+ * Spot `Illustration` size (S breakpoint). Suitable for cards (four columns).
117541
+ */
117542
+ Spot = "Spot",
117543
+ }
117544
+ /**
117545
+ * @SINCE 1.98
117546
+ *
117547
+ * Available `Illustration` types for the {@link sap.f.IllustratedMessage} control.
117548
+ */
117549
+ enum IllustratedMessageType {
117550
+ /**
117551
+ * "Add Column" illustration type.
117552
+ */
117553
+ AddColumn = "sapIllus-AddColumn",
117554
+ /**
117555
+ * "Add People" illustration type.
117556
+ */
117557
+ AddPeople = "sapIllus-AddPeople",
117558
+ /**
117559
+ * "Balloon Sky" illustration type.
117560
+ */
117561
+ BalloonSky = "sapIllus-BalloonSky",
117562
+ /**
117563
+ * "Before Search" illustration type.
117564
+ */
117565
+ BeforeSearch = "sapIllus-BeforeSearch",
117566
+ /**
117567
+ * "Connection" illustration type.
117568
+ */
117569
+ Connection = "sapIllus-Connection",
117570
+ /**
117571
+ * "Empty Calendar" illustration type.
117572
+ */
117573
+ EmptyCalendar = "sapIllus-EmptyCalendar",
117574
+ /**
117575
+ * "Empty List" illustration type.
117576
+ */
117577
+ EmptyList = "sapIllus-EmptyList",
117578
+ /**
117579
+ * "Empty Planning Calendar" illustration type.
117580
+ */
117581
+ EmptyPlanningCalendar = "sapIllus-EmptyPlanningCalendar",
117582
+ /**
117583
+ * "Error Screen" illustration type.
117584
+ */
117585
+ ErrorScreen = "sapIllus-ErrorScreen",
117586
+ /**
117587
+ * "Filter Table" illustration type.
117588
+ */
117589
+ FilterTable = "sapIllus-FilterTable",
117590
+ /**
117591
+ * "Group Table" illustration type.
117592
+ */
117593
+ GroupTable = "sapIllus-GroupTable",
117594
+ /**
117595
+ * "No Activities" illustration type.
117596
+ */
117597
+ NoActivities = "sapIllus-NoActivities",
117598
+ /**
117599
+ * "No Data" illustration type.
117600
+ */
117601
+ NoData = "sapIllus-NoData",
117602
+ /**
117603
+ * "No Entries" illustration type.
117604
+ */
117605
+ NoEntries = "sapIllus-NoEntries",
117606
+ /**
117607
+ * "No Filter Results" illustration type.
117608
+ */
117609
+ NoFilterResults = "sapIllus-NoFilterResults",
117610
+ /**
117611
+ * "No Email" illustration type.
117612
+ */
117613
+ NoMail = "sapIllus-NoMail",
117614
+ /**
117615
+ * "No Email v1" illustration type.
117616
+ */
117617
+ NoMailV1 = "sapIllus-NoMail_v1",
117618
+ /**
117619
+ * "No Notifications" illustration type.
117620
+ */
117621
+ NoNotifications = "sapIllus-NoNotifications",
117622
+ /**
117623
+ * "No Saved Items" illustration type.
117624
+ */
117625
+ NoSavedItems = "sapIllus-NoSavedItems",
117626
+ /**
117627
+ * "No Saved Items v1" illustration type.
117628
+ */
117629
+ NoSavedItemsV1 = "sapIllus-NoSavedItems_v1",
117630
+ /**
117631
+ * "No Search Results" illustration type.
117632
+ */
117633
+ NoSearchResults = "sapIllus-NoSearchResults",
117634
+ /**
117635
+ * "No Tasks" illustration type.
117636
+ */
117637
+ NoTasks = "sapIllus-NoTasks",
117638
+ /**
117639
+ * "No Tasks v1" illustration type.
117640
+ */
117641
+ NoTasksV1 = "sapIllus-NoTasks_v1",
117642
+ /**
117643
+ * "Page Not Found" illustration type.
117644
+ */
117645
+ PageNotFound = "sapIllus-PageNotFound",
117646
+ /**
117647
+ * "Reload Screen" illustration type.
117648
+ */
117649
+ ReloadScreen = "sapIllus-ReloadScreen",
117650
+ /**
117651
+ * "Resize Column" illustration type.
117652
+ */
117653
+ ResizeColumn = "sapIllus-ResizeColumn",
117654
+ /**
117655
+ * "Search Earth" illustration type.
117656
+ */
117657
+ SearchEarth = "sapIllus-SearchEarth",
117658
+ /**
117659
+ * "Search Folder" illustration type.
117660
+ */
117661
+ SearchFolder = "sapIllus-SearchFolder",
117662
+ /**
117663
+ * "Simple Balloon" illustration type.
117664
+ */
117665
+ SimpleBalloon = "sapIllus-SimpleBalloon",
117666
+ /**
117667
+ * "Simple Bell" illustration type.
117668
+ */
117669
+ SimpleBell = "sapIllus-SimpleBell",
117670
+ /**
117671
+ * "Simple Calendar" illustration type.
117672
+ */
117673
+ SimpleCalendar = "sapIllus-SimpleCalendar",
117674
+ /**
117675
+ * "Simple Checkmark" illustration type.
117676
+ */
117677
+ SimpleCheckmark = "sapIllus-SimpleCheckmark",
117678
+ /**
117679
+ * "Simple Connection" illustration type.
117680
+ */
117681
+ SimpleConnection = "sapIllus-SimpleConnection",
117682
+ /**
117683
+ * "Simple Empty Doc" illustration type.
117684
+ */
117685
+ SimpleEmptyDoc = "sapIllus-SimpleEmptyDoc",
117686
+ /**
117687
+ * "Simple Empty List" illustration type.
117688
+ */
117689
+ SimpleEmptyList = "sapIllus-SimpleEmptyList",
117690
+ /**
117691
+ * "Simple Error" illustration type.
117692
+ */
117693
+ SimpleError = "sapIllus-SimpleError",
117694
+ /**
117695
+ * "Simple Magnifier" illustration type.
117696
+ */
117697
+ SimpleMagnifier = "sapIllus-SimpleMagnifier",
117698
+ /**
117699
+ * "Simple Mail" illustration type.
117700
+ */
117701
+ SimpleMail = "sapIllus-SimpleMail",
117702
+ /**
117703
+ * "Simple No Saved Items" illustration type.
117704
+ */
117705
+ SimpleNoSavedItems = "sapIllus-SimpleNoSavedItems",
117706
+ /**
117707
+ * "Simple Not Found Magnifier" illustration type.
117708
+ */
117709
+ SimpleNotFoundMagnifier = "sapIllus-SimpleNotFoundMagnifier",
117710
+ /**
117711
+ * "Simple Reload" illustration type.
117712
+ */
117713
+ SimpleReload = "sapIllus-SimpleReload",
117714
+ /**
117715
+ * "Simple Task" illustration type.
117716
+ */
117717
+ SimpleTask = "sapIllus-SimpleTask",
117718
+ /**
117719
+ * "Sleeping Bell" illustration type.
117720
+ */
117721
+ SleepingBell = "sapIllus-SleepingBell",
117722
+ /**
117723
+ * "Sort Column" illustration type.
117724
+ */
117725
+ SortColumn = "sapIllus-SortColumn",
117726
+ /**
117727
+ * "Success Screen" illustration type.
117728
+ */
117729
+ SuccessScreen = "sapIllus-SuccessScreen",
117730
+ /**
117731
+ * "Tent" illustration type.
117732
+ */
117733
+ Tent = "sapIllus-Tent",
117734
+ /**
117735
+ * "Unable To Load" illustration type.
117736
+ */
117737
+ UnableToLoad = "sapIllus-UnableToLoad",
117738
+ /**
117739
+ * "Unable To Upload" illustration type.
117740
+ */
117741
+ UnableToUpload = "sapIllus-UnableToUpload",
117742
+ /**
117743
+ * "Upload Collection" illustration type.
117744
+ */
117745
+ UploadCollection = "sapIllus-UploadCollection",
117746
+ }
115142
117747
  /**
115143
117748
  * @SINCE 1.30.0
115144
117749
  *
@@ -115679,6 +118284,19 @@ declare namespace sap {
115679
118284
  */
115680
118285
  sort = "sort",
115681
118286
  }
118287
+ /**
118288
+ * Type of popup used in the `sap.m.p13n.Popup`.
118289
+ */
118290
+ enum P13nPopupMode {
118291
+ /**
118292
+ * Dialog type as popup type.
118293
+ */
118294
+ Dialog = "Dialog",
118295
+ /**
118296
+ * ResponsivePopover type as popup type.
118297
+ */
118298
+ ResponsivePopover = "ResponsivePopover",
118299
+ }
115682
118300
  /**
115683
118301
  * Available Page Background Design.
115684
118302
  */
@@ -116175,6 +118793,195 @@ declare namespace sap {
116175
118793
  */
116176
118794
  StretchCompressMode = "StretchCompressMode",
116177
118795
  }
118796
+ /**
118797
+ * @EXPERIMENTAL (since 1.92)
118798
+ *
118799
+ * The option keys of all the standard options of a DynamicDateRange control.
118800
+ */
118801
+ enum StandardDynamicDateRangeKeys {
118802
+ /**
118803
+ * The date will be selected from a calendar.
118804
+ */
118805
+ DATE = "DATE",
118806
+ /**
118807
+ * The range will be selected from a calendar.
118808
+ */
118809
+ DATERANGE = "DATERANGE",
118810
+ /**
118811
+ * The range will start from the date selected from a calendar and ends with the last day of the current
118812
+ * year.
118813
+ */
118814
+ DATETOYEAR = "DATETOYEAR",
118815
+ /**
118816
+ * The date will be the first day of the current month.
118817
+ */
118818
+ FIRSTDAYMONTH = "FIRSTDAYMONTH",
118819
+ /**
118820
+ * The date will be the first day of the current quarter.
118821
+ */
118822
+ FIRSTDAYQUARTER = "FIRSTDAYQUARTER",
118823
+ /**
118824
+ * The date will be the first day of the current week.
118825
+ */
118826
+ FIRSTDAYWEEK = "FIRSTDAYWEEK",
118827
+ /**
118828
+ * The date will be the first day of the current year.
118829
+ */
118830
+ FIRSTDAYYEAR = "FIRSTDAYYEAR",
118831
+ /**
118832
+ * The range will start from a date selected from a calendar.
118833
+ */
118834
+ FROM = "FROM",
118835
+ /**
118836
+ * The date will be the last day of the current month.
118837
+ */
118838
+ LASTDAYMONTH = "LASTDAYMONTH",
118839
+ /**
118840
+ * The date will be the last day of the current quarter.
118841
+ */
118842
+ LASTDAYQUARTER = "LASTDAYQUARTER",
118843
+ /**
118844
+ * The range will contain the last X days. The count of the days is selected from a StepInput.
118845
+ */
118846
+ LASTDAYS = "LASTDAYS",
118847
+ /**
118848
+ * The date will be the last day of the current week.
118849
+ */
118850
+ LASTDAYWEEK = "LASTDAYWEEK",
118851
+ /**
118852
+ * The date will be the last day of the current year.
118853
+ */
118854
+ LASTDAYYEAR = "LASTDAYYEAR",
118855
+ /**
118856
+ * The range will contain the days in the last month.
118857
+ */
118858
+ LASTMONTH = "LASTMONTH",
118859
+ /**
118860
+ * The range will contain the last X months. The count of the months is selected from a StepInput.
118861
+ */
118862
+ LASTMONTHS = "LASTMONTHS",
118863
+ /**
118864
+ * The range will contain the days in the last quarter.
118865
+ */
118866
+ LASTQUARTER = "LASTQUARTER",
118867
+ /**
118868
+ * The range will contain the last X quarters. The count of the quarters is selected from a StepInput.
118869
+ */
118870
+ LASTQUARTERS = "LASTQUARTERS",
118871
+ /**
118872
+ * The range will contain the days of the last week.
118873
+ */
118874
+ LASTWEEK = "LASTWEEK",
118875
+ /**
118876
+ * The range will contain the last X weeks. The count of the weeks is selected from a StepInput.
118877
+ */
118878
+ LASTWEEKS = "LASTWEEKS",
118879
+ /**
118880
+ * The range will contain the days in the last year.
118881
+ */
118882
+ LASTYEAR = "LASTYEAR",
118883
+ /**
118884
+ * The range will contain the last X years. The count of the years is selected from a StepInput.
118885
+ */
118886
+ LASTYEARS = "LASTYEARS",
118887
+ /**
118888
+ * The range will contain the next X days. The count of the days is selected from a StepInput.
118889
+ */
118890
+ NEXTDAYS = "NEXTDAYS",
118891
+ /**
118892
+ * The range will contain the days in the next month.
118893
+ */
118894
+ NEXTMONTH = "NEXTMONTH",
118895
+ /**
118896
+ * The range will contain the next X months. The count of the months is selected from a StepInput.
118897
+ */
118898
+ NEXTMONTHS = "NEXTMONTHS",
118899
+ /**
118900
+ * The range will contain the days in the next quarter.
118901
+ */
118902
+ NEXTQUARTER = "NEXTQUARTER",
118903
+ /**
118904
+ * The range will contain the next X quarters. The count of the quarters is selected from a StepInput.
118905
+ */
118906
+ NEXTQUARTERS = "NEXTQUARTERS",
118907
+ /**
118908
+ * The range will contain the days of the next week.
118909
+ */
118910
+ NEXTWEEK = "NEXTWEEK",
118911
+ /**
118912
+ * The range will contain the next X weeks. The count of the weeks is selected from a StepInput.
118913
+ */
118914
+ NEXTWEEKS = "NEXTWEEKS",
118915
+ /**
118916
+ * The range will contain the days in the next year.
118917
+ */
118918
+ NEXTYEAR = "NEXTYEAR",
118919
+ /**
118920
+ * The range will contain the next X years. The count of the years is selected from a StepInput.
118921
+ */
118922
+ NEXTYEARS = "NEXTYEARS",
118923
+ /**
118924
+ * The range will contain the days in the first quarter.
118925
+ */
118926
+ QUARTER1 = "QUARTER1",
118927
+ /**
118928
+ * The range will contain the days in the second quarter.
118929
+ */
118930
+ QUARTER2 = "QUARTER2",
118931
+ /**
118932
+ * The range will contain the days in the third quarter.
118933
+ */
118934
+ QUARTER3 = "QUARTER3",
118935
+ /**
118936
+ * The range will contain the days in the fourth quarter.
118937
+ */
118938
+ QUARTER4 = "QUARTER4",
118939
+ /**
118940
+ * The range will contain a month selected from a MonthPicker.
118941
+ */
118942
+ SPECIFICMONTH = "SPECIFICMONTH",
118943
+ /**
118944
+ * The range will contain the days in the current month.
118945
+ */
118946
+ THISMONTH = "THISMONTH",
118947
+ /**
118948
+ * The range will contain the days in the current quarter.
118949
+ */
118950
+ THISQUARTER = "THISQUARTER",
118951
+ /**
118952
+ * The range will contain the days of the current week.
118953
+ */
118954
+ THISWEEK = "THISWEEK",
118955
+ /**
118956
+ * The range will contain the days in the current year.
118957
+ */
118958
+ THISYEAR = "THISYEAR",
118959
+ /**
118960
+ * The range will end in a date selected from a calendar.
118961
+ */
118962
+ TO = "TO",
118963
+ /**
118964
+ * The date will be the day of selection.
118965
+ */
118966
+ TODAY = "TODAY",
118967
+ /**
118968
+ * The range will contain the last X days and the next Y days. The count of the days is selected from a
118969
+ * StepInput.
118970
+ */
118971
+ TODAYFROMTO = "TODAYFROMTO",
118972
+ /**
118973
+ * The date will be the day after the day of selection.
118974
+ */
118975
+ TOMORROW = "TOMORROW",
118976
+ /**
118977
+ * The range will start from the first day of the current year and ends with the date selected from a calendar.
118978
+ */
118979
+ YEARTODATE = "YEARTODATE",
118980
+ /**
118981
+ * The date will be the day before the day of selection.
118982
+ */
118983
+ YESTERDAY = "YESTERDAY",
118984
+ }
116178
118985
  /**
116179
118986
  * Types for StandardTile.
116180
118987
  */
@@ -116690,6 +119497,8 @@ declare namespace sap {
116690
119497
 
116691
119498
  "sap/m/DynamicDateRange": undefined;
116692
119499
 
119500
+ "sap/m/DynamicDateUtil": undefined;
119501
+
116693
119502
  "sap/m/DynamicDateValueHelpUIType": undefined;
116694
119503
 
116695
119504
  "sap/m/ExpandableText": undefined;
@@ -116736,6 +119545,16 @@ declare namespace sap {
116736
119545
 
116737
119546
  "sap/m/IconTabSeparator": undefined;
116738
119547
 
119548
+ "sap/m/IllustratedMessage": undefined;
119549
+
119550
+ "sap/m/IllustratedMessageSize": undefined;
119551
+
119552
+ "sap/m/IllustratedMessageType": undefined;
119553
+
119554
+ "sap/m/Illustration": undefined;
119555
+
119556
+ "sap/m/IllustrationPool": undefined;
119557
+
116739
119558
  "sap/m/Image": undefined;
116740
119559
 
116741
119560
  "sap/m/ImageContent": undefined;
@@ -116832,12 +119651,18 @@ declare namespace sap {
116832
119651
 
116833
119652
  "sap/m/OverflowToolbarToggleButton": undefined;
116834
119653
 
119654
+ "sap/m/p13n/AbstractContainer": undefined;
119655
+
119656
+ "sap/m/p13n/AbstractContainerItem": undefined;
119657
+
116835
119658
  "sap/m/p13n/BasePanel": undefined;
116836
119659
 
116837
119660
  "sap/m/p13n/Container": undefined;
116838
119661
 
116839
119662
  "sap/m/p13n/GroupPanel": undefined;
116840
119663
 
119664
+ "sap/m/p13n/Popup": undefined;
119665
+
116841
119666
  "sap/m/p13n/QueryPanel": undefined;
116842
119667
 
116843
119668
  "sap/m/p13n/SelectionPanel": undefined;