@openui5/ts-types 1.103.0 → 1.105.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/package.json +1 -1
- package/types/sap.f.d.ts +157 -1
- package/types/sap.m.d.ts +2056 -93
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +305 -62
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1117 -5
- package/types/sap.ui.integration.d.ts +99 -68
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +3 -1
- package/types/sap.ui.rta.d.ts +3 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +131 -4
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +209 -16
- package/types/sap.ui.webc.main.d.ts +524 -62
- package/types/sap.uxap.d.ts +1 -1
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.105.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -388,8 +388,90 @@ declare namespace sap {
|
|
|
388
388
|
}
|
|
389
389
|
|
|
390
390
|
namespace p13n {
|
|
391
|
+
namespace modification {
|
|
392
|
+
/**
|
|
393
|
+
* @EXPERIMENTAL (since 1.104)
|
|
394
|
+
*
|
|
395
|
+
* This class offers `sap.ui.fl` capabilities. It should be used as the persistence layer in the {@link
|
|
396
|
+
* sap.m.p13n.Engine#register Engine#register}process.
|
|
397
|
+
*/
|
|
398
|
+
class FlexModificationHandler {
|
|
399
|
+
constructor();
|
|
400
|
+
}
|
|
401
|
+
/**
|
|
402
|
+
* @EXPERIMENTAL (since 1.104)
|
|
403
|
+
*
|
|
404
|
+
* This class offers `localStorage` capabilities. It should be used as the persistence layer in the {@link
|
|
405
|
+
* sap.m.p13n.Engine#register Engine#register} process.
|
|
406
|
+
*/
|
|
407
|
+
class LocalStorageModificationHandler {
|
|
408
|
+
constructor();
|
|
409
|
+
}
|
|
410
|
+
/**
|
|
411
|
+
* @EXPERIMENTAL (since 1.104)
|
|
412
|
+
*
|
|
413
|
+
* This class offers modification capabilities without persistence. It should be used as the persistence
|
|
414
|
+
* layer in the {@link sap.m.p13n.Engine#register Engine#register} process.
|
|
415
|
+
*/
|
|
416
|
+
class ModificationHandler {
|
|
417
|
+
constructor();
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
/**
|
|
421
|
+
* @SINCE 1.97
|
|
422
|
+
* @EXPERIMENTAL
|
|
423
|
+
*
|
|
424
|
+
* Interface for P13nPopup which are suitable as content for the `sap.m.p13n.Popup`. Implementation of this
|
|
425
|
+
* interface should include the following methods:
|
|
426
|
+
* - `getTitle`
|
|
427
|
+
*/
|
|
428
|
+
interface IContent {
|
|
429
|
+
__implements__sap_m_p13n_IContent: boolean;
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* @EXPERIMENTAL
|
|
433
|
+
*
|
|
434
|
+
* Returns the title, which should be displayed in the P13nPopup to describe related content.
|
|
435
|
+
*
|
|
436
|
+
* @returns The title for the corresponding content to be displayed in the `sap.m.p13n.Popup`.
|
|
437
|
+
*/
|
|
438
|
+
getTitle(): string;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
interface $BasePanelSettings extends sap.ui.core.$ControlSettings {
|
|
442
|
+
/**
|
|
443
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
444
|
+
* in a `sap.m.p13n.Popup`.
|
|
445
|
+
*/
|
|
446
|
+
title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
447
|
+
|
|
448
|
+
/**
|
|
449
|
+
* Determines whether the reordering of personalization items is enabled.
|
|
450
|
+
*/
|
|
451
|
+
enableReorder?:
|
|
452
|
+
| boolean
|
|
453
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
454
|
+
| `{${string}}`;
|
|
455
|
+
|
|
456
|
+
/**
|
|
457
|
+
* Defines an optional message strip to be displayed in the content area.
|
|
458
|
+
*/
|
|
459
|
+
messageStrip?: sap.m.MessageStrip;
|
|
460
|
+
|
|
461
|
+
/**
|
|
462
|
+
* This event is fired if any change has been made within the `BasePanel` control.
|
|
463
|
+
*/
|
|
464
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
465
|
+
}
|
|
466
|
+
|
|
391
467
|
interface $GroupPanelSettings
|
|
392
468
|
extends /* was: sap.m.p13n.$QueryPanelSettings */ Object {
|
|
469
|
+
/**
|
|
470
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
471
|
+
* in a `sap.m.p13n.Popup`.
|
|
472
|
+
*/
|
|
473
|
+
title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
474
|
+
|
|
393
475
|
/**
|
|
394
476
|
* Toggles an additional checkbox in the group panel to define whether items are made visible.
|
|
395
477
|
*/
|
|
@@ -431,9 +513,9 @@ declare namespace sap {
|
|
|
431
513
|
/**
|
|
432
514
|
* The panels that are displayed by the `sap.m.p13n.Popup`.
|
|
433
515
|
*/
|
|
434
|
-
panels?:
|
|
435
|
-
|
|
|
436
|
-
|
|
|
516
|
+
panels?:
|
|
517
|
+
| sap.m.p13n.IContent[]
|
|
518
|
+
| sap.m.p13n.IContent
|
|
437
519
|
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
438
520
|
| `{${string}}`;
|
|
439
521
|
|
|
@@ -452,10 +534,15 @@ declare namespace sap {
|
|
|
452
534
|
close?: (oEvent: sap.ui.base.Event) => void;
|
|
453
535
|
}
|
|
454
536
|
|
|
455
|
-
interface $SelectionPanelSettings
|
|
456
|
-
|
|
537
|
+
interface $SelectionPanelSettings extends sap.m.p13n.$BasePanelSettings {
|
|
538
|
+
/**
|
|
539
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
540
|
+
* in a `sap.m.p13n.Popup`.
|
|
541
|
+
*/
|
|
542
|
+
title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
543
|
+
|
|
457
544
|
/**
|
|
458
|
-
* Shows an additional header with a search field and the Show Selected button.
|
|
545
|
+
* /** Shows an additional header with a search field and the Show Selected button.
|
|
459
546
|
*/
|
|
460
547
|
showHeader?:
|
|
461
548
|
| boolean
|
|
@@ -492,12 +579,500 @@ declare namespace sap {
|
|
|
492
579
|
}
|
|
493
580
|
|
|
494
581
|
interface $SortPanelSettings
|
|
495
|
-
extends /* was: sap.m.p13n.$QueryPanelSettings */ Object {
|
|
582
|
+
extends /* was: sap.m.p13n.$QueryPanelSettings */ Object {
|
|
583
|
+
/**
|
|
584
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
585
|
+
* in a `sap.m.p13n.Popup`.
|
|
586
|
+
*/
|
|
587
|
+
title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
/**
|
|
591
|
+
* @SINCE 1.104
|
|
592
|
+
* @EXPERIMENTAL (since 1.104)
|
|
593
|
+
*
|
|
594
|
+
* The `Engine` offers personalization capabilities by registering a control instance for modification such
|
|
595
|
+
* as:
|
|
596
|
+
*
|
|
597
|
+
*
|
|
598
|
+
* - `sap.m.p13n.Popup` initialization
|
|
599
|
+
* - Storing personalization states by choosing the desired persistence layer
|
|
600
|
+
* - State appliance considering the persistence layer
|
|
601
|
+
*
|
|
602
|
+
* The Engine should be used whenever personalization should be enabled by considering a certain persistence
|
|
603
|
+
* layer. Available controller implementations for the registration process are:
|
|
604
|
+
*
|
|
605
|
+
*
|
|
606
|
+
* - {@link sap.m.p13n.SelectionController SelectionController}: can be used to define a list of selectable
|
|
607
|
+
* entries
|
|
608
|
+
* - {@link sap.m.p13n.SortController SortController}: can be used to define a list of sortable properties
|
|
609
|
+
*
|
|
610
|
+
* - {@link sap.m.p13n.GroupController GroupController}: can be used to define a list of groupable properties
|
|
611
|
+
*
|
|
612
|
+
*
|
|
613
|
+
* The following persistence layers can be chosen for personalization services:
|
|
614
|
+
*
|
|
615
|
+
*
|
|
616
|
+
* - {@link sap.m.p13n.modification.FlexModificationHandler FlexModificationHandler}: Can be used in combination
|
|
617
|
+
* with `sap.ui.fl.variants.VariantManagement` to persist state in variant using `sap.ui.fl` capabilities.
|
|
618
|
+
*
|
|
619
|
+
* - {@link sap.m.p13n.modification.LocalStorageModificationHandler LocalStorageModificationHandler}:
|
|
620
|
+
* can be used to store personalization state in the local storage
|
|
621
|
+
* - {@link sap.m.p13n.modification.ModificationHandler ModificationHandler}: will be used by default
|
|
622
|
+
* - this handler will not persist state.
|
|
623
|
+
*/
|
|
624
|
+
interface Engine {
|
|
625
|
+
/**
|
|
626
|
+
* Creates a new subclass of class sap.m.p13n.Engine with name `sClassName` and enriches it with the information
|
|
627
|
+
* contained in `oClassInfo`.
|
|
628
|
+
*
|
|
629
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.p13n.AdaptationProvider.extend}.
|
|
630
|
+
*
|
|
631
|
+
* @returns Created class / constructor function
|
|
632
|
+
*/
|
|
633
|
+
extend(
|
|
634
|
+
/**
|
|
635
|
+
* Name of the class being created
|
|
636
|
+
*/
|
|
637
|
+
sClassName: string,
|
|
638
|
+
/**
|
|
639
|
+
* Object literal with information about the class
|
|
640
|
+
*/
|
|
641
|
+
oClassInfo?: object,
|
|
642
|
+
/**
|
|
643
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
644
|
+
* used by this class
|
|
645
|
+
*/
|
|
646
|
+
FNMetaImpl?: Function
|
|
647
|
+
): Function;
|
|
648
|
+
/**
|
|
649
|
+
* Returns a metadata object for class sap.m.p13n.Engine.
|
|
650
|
+
*
|
|
651
|
+
* @returns Metadata object describing this class
|
|
652
|
+
*/
|
|
653
|
+
getMetadata(): sap.ui.base.Metadata;
|
|
654
|
+
/**
|
|
655
|
+
* @EXPERIMENTAL (since 1.104)
|
|
656
|
+
*
|
|
657
|
+
* Apply a State on a control by passing an object that contains the registered controller key and an object
|
|
658
|
+
* matching the innter subcontroller housekeeping.
|
|
659
|
+
*
|
|
660
|
+
* @returns A Promise resolving after the state has been applied
|
|
661
|
+
*/
|
|
662
|
+
applyState(
|
|
663
|
+
/**
|
|
664
|
+
* The registered control instance
|
|
665
|
+
*/
|
|
666
|
+
oControl: sap.ui.core.Control,
|
|
667
|
+
/**
|
|
668
|
+
* The state object
|
|
669
|
+
*/
|
|
670
|
+
oState: object,
|
|
671
|
+
/**
|
|
672
|
+
* Defines whether the state should be an additional delta on the current control state
|
|
673
|
+
*/
|
|
674
|
+
bApplyAbsolute: boolean
|
|
675
|
+
): Promise<any>;
|
|
676
|
+
/**
|
|
677
|
+
* @EXPERIMENTAL (since 1.104)
|
|
678
|
+
*
|
|
679
|
+
* Attaches an event handler to the `StateHandlerRegistry` class. The event handler may be fired every time
|
|
680
|
+
* a user triggers a personalization change for a control instance during runtime.
|
|
681
|
+
*
|
|
682
|
+
* @returns Returns `this` to allow method chaining
|
|
683
|
+
*/
|
|
684
|
+
attachStateChange(
|
|
685
|
+
/**
|
|
686
|
+
* The handler function to call when the event occurs
|
|
687
|
+
*/
|
|
688
|
+
fnStateEventHandler: Function
|
|
689
|
+
): this;
|
|
690
|
+
/**
|
|
691
|
+
* @EXPERIMENTAL (since 1.104)
|
|
692
|
+
*
|
|
693
|
+
* Deregister a registered control. By deregistering a control the control will be removed from the `Engine`
|
|
694
|
+
* registry and all instance specific sub modules such as the registered controllers are going to be destroyed.
|
|
695
|
+
*/
|
|
696
|
+
deregister(
|
|
697
|
+
/**
|
|
698
|
+
* The registered control instance
|
|
699
|
+
*/
|
|
700
|
+
oControl: sap.ui.core.Control
|
|
701
|
+
): void;
|
|
702
|
+
/**
|
|
703
|
+
* @EXPERIMENTAL (since 1.104)
|
|
704
|
+
*
|
|
705
|
+
* Removes a previously attached state change event handler from the `StateHandlerRegistry` class. The passed
|
|
706
|
+
* parameters must match those used for registration with {@link sap.m.p13n.Engine#attachStateChange} beforehand.
|
|
707
|
+
*
|
|
708
|
+
* @returns Returns `this` to allow method chaining
|
|
709
|
+
*/
|
|
710
|
+
detachStateChange(
|
|
711
|
+
/**
|
|
712
|
+
* The handler function to detach from the event
|
|
713
|
+
*/
|
|
714
|
+
fnStateEventHandler: Function
|
|
715
|
+
): this;
|
|
716
|
+
/**
|
|
717
|
+
* @EXPERIMENTAL (since 1.104)
|
|
718
|
+
*
|
|
719
|
+
* This method should only be called once per instance to register provided classes of `sap.m.p13n.Controller`
|
|
720
|
+
* for the control instance.
|
|
721
|
+
*/
|
|
722
|
+
register(
|
|
723
|
+
/**
|
|
724
|
+
* The control instance to be registered for adaptation
|
|
725
|
+
*/
|
|
726
|
+
oControl: sap.ui.core.Control,
|
|
727
|
+
/**
|
|
728
|
+
* The config object providing key value pairs of keys and `sap.m.p13n.*Controller` classes.
|
|
729
|
+
*/
|
|
730
|
+
oConfig: Object
|
|
731
|
+
): void;
|
|
732
|
+
/**
|
|
733
|
+
* @EXPERIMENTAL (since 1.104)
|
|
734
|
+
*
|
|
735
|
+
* This method can be used to trigger a reset on the provided control instance.
|
|
736
|
+
*
|
|
737
|
+
* @returns A Promise resolving once the reset is completed.
|
|
738
|
+
*/
|
|
739
|
+
reset(
|
|
740
|
+
/**
|
|
741
|
+
* The according control instance.
|
|
742
|
+
*/
|
|
743
|
+
oControl: sap.ui.core.Control,
|
|
744
|
+
/**
|
|
745
|
+
* The key for the affected config.
|
|
746
|
+
*/
|
|
747
|
+
aKeys: string
|
|
748
|
+
): Promise<any>;
|
|
749
|
+
/**
|
|
750
|
+
* @EXPERIMENTAL (since 1.104)
|
|
751
|
+
*
|
|
752
|
+
* Retrieves the externalized state for a given control instance, after all necessary changes have been
|
|
753
|
+
* applied (e.g. modification handler appliance). After the returned Promise has been resolved, the returned
|
|
754
|
+
* State is in sync with the according state object of the control.
|
|
755
|
+
*
|
|
756
|
+
* @returns a Promise resolving in the current control state.
|
|
757
|
+
*/
|
|
758
|
+
retrieveState(
|
|
759
|
+
/**
|
|
760
|
+
* The control instance implementing IxState to retrieve the externalized state
|
|
761
|
+
*/
|
|
762
|
+
oControl: object
|
|
763
|
+
): Promise<any>;
|
|
764
|
+
/**
|
|
765
|
+
* @EXPERIMENTAL (since 1.104)
|
|
766
|
+
*
|
|
767
|
+
* Opens the personalization dialog.
|
|
768
|
+
*
|
|
769
|
+
* @returns Promise resolving in the `sap.m.p13n.Popup` instance.
|
|
770
|
+
*/
|
|
771
|
+
show(
|
|
772
|
+
/**
|
|
773
|
+
* The control instance to be personalized
|
|
774
|
+
*/
|
|
775
|
+
oControl: sap.ui.core.Control,
|
|
776
|
+
/**
|
|
777
|
+
* The affected panels that should be added to the `sap.m.p13n.Popup`
|
|
778
|
+
*/
|
|
779
|
+
vPanelKeys: string | string[],
|
|
780
|
+
/**
|
|
781
|
+
* The settings object for the personalization
|
|
782
|
+
*/
|
|
783
|
+
mSettings: {
|
|
784
|
+
/**
|
|
785
|
+
* The title for the `sap.m.p13n.Popup` control
|
|
786
|
+
*/
|
|
787
|
+
title?: string;
|
|
788
|
+
/**
|
|
789
|
+
* The source control to be used by the `sap.m.p13n.Popup` control (only necessary in case the mode is set
|
|
790
|
+
* to `ResponsivePopover`)
|
|
791
|
+
*/
|
|
792
|
+
source?: sap.ui.core.Control;
|
|
793
|
+
/**
|
|
794
|
+
* The mode to be used by the `sap.m.p13n.Popup` control
|
|
795
|
+
*/
|
|
796
|
+
mode?: object;
|
|
797
|
+
/**
|
|
798
|
+
* Height configuration for the related popup container
|
|
799
|
+
*/
|
|
800
|
+
contentHeight?: object;
|
|
801
|
+
/**
|
|
802
|
+
* Width configuration for the related popup container
|
|
803
|
+
*/
|
|
804
|
+
contentWidth?: object;
|
|
805
|
+
}
|
|
806
|
+
): Promise<any>;
|
|
807
|
+
}
|
|
808
|
+
const Engine: Engine;
|
|
496
809
|
|
|
497
810
|
/**
|
|
498
811
|
* @SINCE 1.96
|
|
499
812
|
* @EXPERIMENTAL (since 1.96)
|
|
500
813
|
*
|
|
814
|
+
* This control serves as base class for personalization implementations. This faceless class serves as
|
|
815
|
+
* a way to implement control-specific personalization panels.
|
|
816
|
+
*/
|
|
817
|
+
class BasePanel
|
|
818
|
+
extends sap.ui.core.Control
|
|
819
|
+
implements sap.m.p13n.IContent {
|
|
820
|
+
__implements__sap_m_p13n_IContent: boolean;
|
|
821
|
+
/**
|
|
822
|
+
* Constructor for a new `BasePanel`.
|
|
823
|
+
*
|
|
824
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
825
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
826
|
+
* of the syntax of the settings object.
|
|
827
|
+
*/
|
|
828
|
+
constructor(
|
|
829
|
+
/**
|
|
830
|
+
* Initial settings for the new control
|
|
831
|
+
*/
|
|
832
|
+
mSettings?: sap.m.p13n.$BasePanelSettings
|
|
833
|
+
);
|
|
834
|
+
/**
|
|
835
|
+
* Constructor for a new `BasePanel`.
|
|
836
|
+
*
|
|
837
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
838
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
839
|
+
* of the syntax of the settings object.
|
|
840
|
+
*/
|
|
841
|
+
constructor(
|
|
842
|
+
/**
|
|
843
|
+
* ID for the new control, generated automatically if no ID is given
|
|
844
|
+
*/
|
|
845
|
+
sId?: string,
|
|
846
|
+
/**
|
|
847
|
+
* Initial settings for the new control
|
|
848
|
+
*/
|
|
849
|
+
mSettings?: sap.m.p13n.$BasePanelSettings
|
|
850
|
+
);
|
|
851
|
+
|
|
852
|
+
/**
|
|
853
|
+
* Creates a new subclass of class sap.m.p13n.BasePanel with name `sClassName` and enriches it with the
|
|
854
|
+
* information contained in `oClassInfo`.
|
|
855
|
+
*
|
|
856
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
857
|
+
*
|
|
858
|
+
* @returns Created class / constructor function
|
|
859
|
+
*/
|
|
860
|
+
static extend<T extends Record<string, unknown>>(
|
|
861
|
+
/**
|
|
862
|
+
* Name of the class being created
|
|
863
|
+
*/
|
|
864
|
+
sClassName: string,
|
|
865
|
+
/**
|
|
866
|
+
* Object literal with information about the class
|
|
867
|
+
*/
|
|
868
|
+
oClassInfo?: sap.ClassInfo<T, sap.m.p13n.BasePanel>,
|
|
869
|
+
/**
|
|
870
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
871
|
+
* used by this class
|
|
872
|
+
*/
|
|
873
|
+
FNMetaImpl?: Function
|
|
874
|
+
): Function;
|
|
875
|
+
/**
|
|
876
|
+
* Returns a metadata object for class sap.m.p13n.BasePanel.
|
|
877
|
+
*
|
|
878
|
+
* @returns Metadata object describing this class
|
|
879
|
+
*/
|
|
880
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
881
|
+
/**
|
|
882
|
+
* Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.m.p13n.BasePanel`.
|
|
883
|
+
*
|
|
884
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
885
|
+
* otherwise it will be bound to this `sap.m.p13n.BasePanel` itself.
|
|
886
|
+
*
|
|
887
|
+
* This event is fired if any change has been made within the `BasePanel` control.
|
|
888
|
+
*
|
|
889
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
890
|
+
*/
|
|
891
|
+
attachChange(
|
|
892
|
+
/**
|
|
893
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
894
|
+
* object when firing the event
|
|
895
|
+
*/
|
|
896
|
+
oData: object,
|
|
897
|
+
/**
|
|
898
|
+
* The function to be called when the event occurs
|
|
899
|
+
*/
|
|
900
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
901
|
+
/**
|
|
902
|
+
* Context object to call the event handler with. Defaults to this `sap.m.p13n.BasePanel` itself
|
|
903
|
+
*/
|
|
904
|
+
oListener?: object
|
|
905
|
+
): this;
|
|
906
|
+
/**
|
|
907
|
+
* Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.m.p13n.BasePanel`.
|
|
908
|
+
*
|
|
909
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
910
|
+
* otherwise it will be bound to this `sap.m.p13n.BasePanel` itself.
|
|
911
|
+
*
|
|
912
|
+
* This event is fired if any change has been made within the `BasePanel` control.
|
|
913
|
+
*
|
|
914
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
915
|
+
*/
|
|
916
|
+
attachChange(
|
|
917
|
+
/**
|
|
918
|
+
* The function to be called when the event occurs
|
|
919
|
+
*/
|
|
920
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
921
|
+
/**
|
|
922
|
+
* Context object to call the event handler with. Defaults to this `sap.m.p13n.BasePanel` itself
|
|
923
|
+
*/
|
|
924
|
+
oListener?: object
|
|
925
|
+
): this;
|
|
926
|
+
/**
|
|
927
|
+
* Destroys the messageStrip in the aggregation {@link #getMessageStrip messageStrip}.
|
|
928
|
+
*
|
|
929
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
930
|
+
*/
|
|
931
|
+
destroyMessageStrip(): this;
|
|
932
|
+
/**
|
|
933
|
+
* Detaches event handler `fnFunction` from the {@link #event:change change} event of this `sap.m.p13n.BasePanel`.
|
|
934
|
+
*
|
|
935
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
936
|
+
*
|
|
937
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
938
|
+
*/
|
|
939
|
+
detachChange(
|
|
940
|
+
/**
|
|
941
|
+
* The function to be called, when the event occurs
|
|
942
|
+
*/
|
|
943
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
944
|
+
/**
|
|
945
|
+
* Context object on which the given function had to be called
|
|
946
|
+
*/
|
|
947
|
+
oListener?: object
|
|
948
|
+
): this;
|
|
949
|
+
/**
|
|
950
|
+
* Fires event {@link #event:change change} to attached listeners.
|
|
951
|
+
*
|
|
952
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
953
|
+
*/
|
|
954
|
+
fireChange(
|
|
955
|
+
/**
|
|
956
|
+
* Parameters to pass along with the event
|
|
957
|
+
*/
|
|
958
|
+
mParameters?: object
|
|
959
|
+
): this;
|
|
960
|
+
/**
|
|
961
|
+
* Gets current value of property {@link #getEnableReorder enableReorder}.
|
|
962
|
+
*
|
|
963
|
+
* Determines whether the reordering of personalization items is enabled.
|
|
964
|
+
*
|
|
965
|
+
* Default value is `true`.
|
|
966
|
+
*
|
|
967
|
+
* @returns Value of property `enableReorder`
|
|
968
|
+
*/
|
|
969
|
+
getEnableReorder(): boolean;
|
|
970
|
+
/**
|
|
971
|
+
* Getter for the `messageStrip` aggregation.
|
|
972
|
+
*
|
|
973
|
+
* @returns The BasePanel instance
|
|
974
|
+
*/
|
|
975
|
+
getMessageStrip(): sap.m.p13n.BasePanel;
|
|
976
|
+
/**
|
|
977
|
+
* Returns the personalization state that is currently displayed by the `BasePanel`.
|
|
978
|
+
*
|
|
979
|
+
* @returns An array containing the personalization state that is currently displayed by the `BasePanel`
|
|
980
|
+
*/
|
|
981
|
+
getP13nData(
|
|
982
|
+
/**
|
|
983
|
+
* Determines whether only the present items is included
|
|
984
|
+
*/
|
|
985
|
+
bOnlyActive: boolean
|
|
986
|
+
): sap.m.p13n.Item[];
|
|
987
|
+
/**
|
|
988
|
+
* Gets current value of property {@link #getTitle title}.
|
|
989
|
+
*
|
|
990
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
991
|
+
* in a `sap.m.p13n.Popup`.
|
|
992
|
+
*
|
|
993
|
+
* @returns Value of property `title`
|
|
994
|
+
*/
|
|
995
|
+
getTitle(): string;
|
|
996
|
+
/**
|
|
997
|
+
* The `enableReorder` property determines whether additional move buttons are shown when hovering over
|
|
998
|
+
* the inner list. In addition, drag and drop will be enabled for the inner list control.
|
|
999
|
+
*
|
|
1000
|
+
* @returns The BasePanel instance
|
|
1001
|
+
*/
|
|
1002
|
+
setEnableReorder(
|
|
1003
|
+
/**
|
|
1004
|
+
* Determines whether reordering is enabled
|
|
1005
|
+
*/
|
|
1006
|
+
bEnableReorder: boolean
|
|
1007
|
+
): sap.m.p13n.BasePanel;
|
|
1008
|
+
/**
|
|
1009
|
+
* Displays a `sap.m.MessageStrip` instance in the content area of the `BasePanel`.
|
|
1010
|
+
*
|
|
1011
|
+
* @returns The `BasePanel` instance
|
|
1012
|
+
*/
|
|
1013
|
+
setMessageStrip(
|
|
1014
|
+
/**
|
|
1015
|
+
* Instance of a sap.m.MessageStrip
|
|
1016
|
+
*/
|
|
1017
|
+
oStrip: sap.m.MessageStrip
|
|
1018
|
+
): sap.m.p13n.BasePanel;
|
|
1019
|
+
/**
|
|
1020
|
+
* Sets the personalization state of the panel instance.
|
|
1021
|
+
*
|
|
1022
|
+
* @returns The BasePanel instance
|
|
1023
|
+
*/
|
|
1024
|
+
setP13nData(
|
|
1025
|
+
/**
|
|
1026
|
+
* An array containing the personalization state that is represented by the `BasePanel`.
|
|
1027
|
+
*/
|
|
1028
|
+
aP13nData: sap.m.p13n.Item[]
|
|
1029
|
+
): this;
|
|
1030
|
+
/**
|
|
1031
|
+
* Sets a new value for property {@link #getTitle title}.
|
|
1032
|
+
*
|
|
1033
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
1034
|
+
* in a `sap.m.p13n.Popup`.
|
|
1035
|
+
*
|
|
1036
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1037
|
+
*
|
|
1038
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1039
|
+
*/
|
|
1040
|
+
setTitle(
|
|
1041
|
+
/**
|
|
1042
|
+
* New value for property `title`
|
|
1043
|
+
*/
|
|
1044
|
+
sTitle: string
|
|
1045
|
+
): this;
|
|
1046
|
+
}
|
|
1047
|
+
/**
|
|
1048
|
+
* @SINCE 1.104
|
|
1049
|
+
* @EXPERIMENTAL
|
|
1050
|
+
*
|
|
1051
|
+
* The `GroupController` serves as base class to create sort specific personalization implementations.
|
|
1052
|
+
*/
|
|
1053
|
+
class GroupController extends sap.ui.base.Object {
|
|
1054
|
+
/**
|
|
1055
|
+
* Constructor for a new `GroupController`.
|
|
1056
|
+
*/
|
|
1057
|
+
constructor(
|
|
1058
|
+
/**
|
|
1059
|
+
* ID for the new control, generated automatically if no ID is given
|
|
1060
|
+
*/
|
|
1061
|
+
sId?: string,
|
|
1062
|
+
/**
|
|
1063
|
+
* Initial settings for the new control
|
|
1064
|
+
*/
|
|
1065
|
+
mSettings?: {
|
|
1066
|
+
/**
|
|
1067
|
+
* The control instance to be personalized by this controller
|
|
1068
|
+
*/
|
|
1069
|
+
control: sap.ui.core.Control;
|
|
1070
|
+
}
|
|
1071
|
+
);
|
|
1072
|
+
}
|
|
1073
|
+
/**
|
|
1074
|
+
* @EXPERIMENTAL (since 1.104)
|
|
1075
|
+
*
|
|
501
1076
|
* This control can be used to customize personalization content for grouping for an associated control
|
|
502
1077
|
* instance.
|
|
503
1078
|
*/
|
|
@@ -583,6 +1158,17 @@ declare namespace sap {
|
|
|
583
1158
|
* @returns Value of property `enableShowField`
|
|
584
1159
|
*/
|
|
585
1160
|
getEnableShowField(): boolean;
|
|
1161
|
+
/**
|
|
1162
|
+
* Gets current value of property {@link #getTitle title}.
|
|
1163
|
+
*
|
|
1164
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
1165
|
+
* in a `sap.m.p13n.Popup`.
|
|
1166
|
+
*
|
|
1167
|
+
* Default value is `...see text or source`.
|
|
1168
|
+
*
|
|
1169
|
+
* @returns Value of property `title`
|
|
1170
|
+
*/
|
|
1171
|
+
getTitle(): string;
|
|
586
1172
|
/**
|
|
587
1173
|
* Sets a new value for property {@link #getEnableShowField enableShowField}.
|
|
588
1174
|
*
|
|
@@ -600,6 +1186,24 @@ declare namespace sap {
|
|
|
600
1186
|
*/
|
|
601
1187
|
bEnableShowField?: boolean
|
|
602
1188
|
): this;
|
|
1189
|
+
/**
|
|
1190
|
+
* Sets a new value for property {@link #getTitle title}.
|
|
1191
|
+
*
|
|
1192
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
1193
|
+
* in a `sap.m.p13n.Popup`.
|
|
1194
|
+
*
|
|
1195
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1196
|
+
*
|
|
1197
|
+
* Default value is `...see text or source`.
|
|
1198
|
+
*
|
|
1199
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1200
|
+
*/
|
|
1201
|
+
setTitle(
|
|
1202
|
+
/**
|
|
1203
|
+
* New value for property `title`
|
|
1204
|
+
*/
|
|
1205
|
+
sTitle?: string
|
|
1206
|
+
): this;
|
|
603
1207
|
}
|
|
604
1208
|
/**
|
|
605
1209
|
* @SINCE 1.97
|
|
@@ -688,7 +1292,11 @@ declare namespace sap {
|
|
|
688
1292
|
/**
|
|
689
1293
|
* The panel instance
|
|
690
1294
|
*/
|
|
691
|
-
oPanel:
|
|
1295
|
+
oPanel: sap.m.p13n.IContent,
|
|
1296
|
+
/**
|
|
1297
|
+
* Optional key to be used for the panel registration instead of using the id
|
|
1298
|
+
*/
|
|
1299
|
+
sKey?: string
|
|
692
1300
|
): sap.m.p13n.Popup;
|
|
693
1301
|
/**
|
|
694
1302
|
* Attaches event handler `fnFunction` to the {@link #event:close close} event of this `sap.m.p13n.Popup`.
|
|
@@ -796,7 +1404,7 @@ declare namespace sap {
|
|
|
796
1404
|
*
|
|
797
1405
|
* @returns An array of panel instances
|
|
798
1406
|
*/
|
|
799
|
-
getPanels():
|
|
1407
|
+
getPanels(): sap.m.p13n.IContent[];
|
|
800
1408
|
/**
|
|
801
1409
|
* Gets current value of property {@link #getReset reset}.
|
|
802
1410
|
*
|
|
@@ -845,7 +1453,7 @@ declare namespace sap {
|
|
|
845
1453
|
/**
|
|
846
1454
|
* The panel whose index is looked for
|
|
847
1455
|
*/
|
|
848
|
-
oPanel:
|
|
1456
|
+
oPanel: sap.m.p13n.IContent
|
|
849
1457
|
): int;
|
|
850
1458
|
/**
|
|
851
1459
|
* Inserts a additionalButton into the aggregation {@link #getAdditionalButtons additionalButtons}.
|
|
@@ -873,7 +1481,7 @@ declare namespace sap {
|
|
|
873
1481
|
/**
|
|
874
1482
|
* The panel to insert; if empty, nothing is inserted
|
|
875
1483
|
*/
|
|
876
|
-
oPanel:
|
|
1484
|
+
oPanel: sap.m.p13n.IContent,
|
|
877
1485
|
/**
|
|
878
1486
|
* The `0`-based index the panel should be inserted at; for a negative value of `iIndex`, the panel is inserted
|
|
879
1487
|
* at position 0; for a value greater than the current size of the aggregation, the panel is inserted at
|
|
@@ -928,14 +1536,6 @@ declare namespace sap {
|
|
|
928
1536
|
* @returns An array of the removed elements (might be empty)
|
|
929
1537
|
*/
|
|
930
1538
|
removeAllAdditionalButtons(): sap.m.Button[];
|
|
931
|
-
/**
|
|
932
|
-
* Removes all the controls from the aggregation {@link #getPanels panels}.
|
|
933
|
-
*
|
|
934
|
-
* Additionally, it unregisters them from the hosting UIArea.
|
|
935
|
-
*
|
|
936
|
-
* @returns An array of the removed elements (might be empty)
|
|
937
|
-
*/
|
|
938
|
-
removeAllPanels(): /* was: sap.m.p13n.IContent */ any[];
|
|
939
1539
|
/**
|
|
940
1540
|
* Removes a panel instance.
|
|
941
1541
|
*
|
|
@@ -945,7 +1545,7 @@ declare namespace sap {
|
|
|
945
1545
|
/**
|
|
946
1546
|
* The panel instance
|
|
947
1547
|
*/
|
|
948
|
-
oPanel:
|
|
1548
|
+
oPanel: sap.m.p13n.IContent
|
|
949
1549
|
): sap.m.p13n.Popup;
|
|
950
1550
|
/**
|
|
951
1551
|
* Sets the desired popup mode, see also {@link sap.m.P13nPopupMode}.
|
|
@@ -958,22 +1558,6 @@ declare namespace sap {
|
|
|
958
1558
|
*/
|
|
959
1559
|
sMode: sap.m.P13nPopupMode
|
|
960
1560
|
): sap.m.p13n.Popup;
|
|
961
|
-
/**
|
|
962
|
-
* Sets a new value for property {@link #getReset reset}.
|
|
963
|
-
*
|
|
964
|
-
* A callback that will be executed once a reset has been triggered. **Note:** The Reset button will only
|
|
965
|
-
* be shown in case this callback is provided.
|
|
966
|
-
*
|
|
967
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
968
|
-
*
|
|
969
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
970
|
-
*/
|
|
971
|
-
setReset(
|
|
972
|
-
/**
|
|
973
|
-
* New value for property `reset`
|
|
974
|
-
*/
|
|
975
|
-
fnReset: Function
|
|
976
|
-
): this;
|
|
977
1561
|
/**
|
|
978
1562
|
* Sets a new value for property {@link #getTitle title}.
|
|
979
1563
|
*
|
|
@@ -1006,6 +1590,65 @@ declare namespace sap {
|
|
|
1006
1590
|
sWarningText: string
|
|
1007
1591
|
): this;
|
|
1008
1592
|
}
|
|
1593
|
+
/**
|
|
1594
|
+
* @EXPERIMENTAL (since 1.104)
|
|
1595
|
+
*
|
|
1596
|
+
* The `SelectionController` serves as base class to create control specific personalization implementations.
|
|
1597
|
+
*/
|
|
1598
|
+
class SelectionController extends sap.ui.base.Object {
|
|
1599
|
+
/**
|
|
1600
|
+
* Constructor for a new `SelectionController`.
|
|
1601
|
+
*/
|
|
1602
|
+
constructor(
|
|
1603
|
+
/**
|
|
1604
|
+
* ID for the new control, generated automatically if no ID is given
|
|
1605
|
+
*/
|
|
1606
|
+
sId?: string,
|
|
1607
|
+
/**
|
|
1608
|
+
* Initial settings for the new control
|
|
1609
|
+
*/
|
|
1610
|
+
mSettings?: {
|
|
1611
|
+
/**
|
|
1612
|
+
* The control instance to be personalized by this controller
|
|
1613
|
+
*/
|
|
1614
|
+
control: sap.ui.core.Control;
|
|
1615
|
+
/**
|
|
1616
|
+
* The name of the personalized aggregation
|
|
1617
|
+
*/
|
|
1618
|
+
targetAggregation: string;
|
|
1619
|
+
}
|
|
1620
|
+
);
|
|
1621
|
+
|
|
1622
|
+
/**
|
|
1623
|
+
* Creates a new subclass of class sap.m.p13n.SelectionController with name `sClassName` and enriches it
|
|
1624
|
+
* with the information contained in `oClassInfo`.
|
|
1625
|
+
*
|
|
1626
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
|
|
1627
|
+
*
|
|
1628
|
+
* @returns Created class / constructor function
|
|
1629
|
+
*/
|
|
1630
|
+
static extend<T extends Record<string, unknown>>(
|
|
1631
|
+
/**
|
|
1632
|
+
* Name of the class being created
|
|
1633
|
+
*/
|
|
1634
|
+
sClassName: string,
|
|
1635
|
+
/**
|
|
1636
|
+
* Object literal with information about the class
|
|
1637
|
+
*/
|
|
1638
|
+
oClassInfo?: sap.ClassInfo<T, sap.m.p13n.SelectionController>,
|
|
1639
|
+
/**
|
|
1640
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1641
|
+
* used by this class
|
|
1642
|
+
*/
|
|
1643
|
+
FNMetaImpl?: Function
|
|
1644
|
+
): Function;
|
|
1645
|
+
/**
|
|
1646
|
+
* Returns a metadata object for class sap.m.p13n.SelectionController.
|
|
1647
|
+
*
|
|
1648
|
+
* @returns Metadata object describing this class
|
|
1649
|
+
*/
|
|
1650
|
+
static getMetadata(): sap.ui.base.Metadata;
|
|
1651
|
+
}
|
|
1009
1652
|
/**
|
|
1010
1653
|
* @SINCE 1.96
|
|
1011
1654
|
* @EXPERIMENTAL (since 1.96)
|
|
@@ -1013,7 +1656,7 @@ declare namespace sap {
|
|
|
1013
1656
|
* This control can be used to customize personalization content for adding/removing items for an associated
|
|
1014
1657
|
* control instance.
|
|
1015
1658
|
*/
|
|
1016
|
-
class SelectionPanel
|
|
1659
|
+
class SelectionPanel extends sap.m.p13n.BasePanel {
|
|
1017
1660
|
/**
|
|
1018
1661
|
* Constructor for a new `SelectionPanel`.
|
|
1019
1662
|
*
|
|
@@ -1117,13 +1760,24 @@ declare namespace sap {
|
|
|
1117
1760
|
/**
|
|
1118
1761
|
* Gets current value of property {@link #getShowHeader showHeader}.
|
|
1119
1762
|
*
|
|
1120
|
-
* Shows an additional header with a search field and the Show Selected button.
|
|
1763
|
+
* /** Shows an additional header with a search field and the Show Selected button.
|
|
1121
1764
|
*
|
|
1122
1765
|
* Default value is `false`.
|
|
1123
1766
|
*
|
|
1124
1767
|
* @returns Value of property `showHeader`
|
|
1125
1768
|
*/
|
|
1126
1769
|
getShowHeader(): boolean;
|
|
1770
|
+
/**
|
|
1771
|
+
* Gets current value of property {@link #getTitle title}.
|
|
1772
|
+
*
|
|
1773
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
1774
|
+
* in a `sap.m.p13n.Popup`.
|
|
1775
|
+
*
|
|
1776
|
+
* Default value is `...see text or source`.
|
|
1777
|
+
*
|
|
1778
|
+
* @returns Value of property `title`
|
|
1779
|
+
*/
|
|
1780
|
+
getTitle(): string;
|
|
1127
1781
|
/**
|
|
1128
1782
|
* Sets a new value for property {@link #getActiveColumn activeColumn}.
|
|
1129
1783
|
*
|
|
@@ -1194,17 +1848,19 @@ declare namespace sap {
|
|
|
1194
1848
|
): this;
|
|
1195
1849
|
/**
|
|
1196
1850
|
* Sets the personalization state of the panel instance.
|
|
1851
|
+
*
|
|
1852
|
+
* @returns The `SelectionPanel` instance
|
|
1197
1853
|
*/
|
|
1198
1854
|
setP13nData(
|
|
1199
1855
|
/**
|
|
1200
1856
|
* An array containing the personalization state that is represented by the `SelectionPanel`.
|
|
1201
1857
|
*/
|
|
1202
1858
|
aP13nData: sap.m.p13n.Item[]
|
|
1203
|
-
):
|
|
1859
|
+
): this;
|
|
1204
1860
|
/**
|
|
1205
1861
|
* Sets a new value for property {@link #getShowHeader showHeader}.
|
|
1206
1862
|
*
|
|
1207
|
-
* Shows an additional header with a search field and the Show Selected button.
|
|
1863
|
+
* /** Shows an additional header with a search field and the Show Selected button.
|
|
1208
1864
|
*
|
|
1209
1865
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1210
1866
|
*
|
|
@@ -1218,6 +1874,79 @@ declare namespace sap {
|
|
|
1218
1874
|
*/
|
|
1219
1875
|
bShowHeader?: boolean
|
|
1220
1876
|
): this;
|
|
1877
|
+
/**
|
|
1878
|
+
* Sets a new value for property {@link #getTitle title}.
|
|
1879
|
+
*
|
|
1880
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
1881
|
+
* in a `sap.m.p13n.Popup`.
|
|
1882
|
+
*
|
|
1883
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1884
|
+
*
|
|
1885
|
+
* Default value is `...see text or source`.
|
|
1886
|
+
*
|
|
1887
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1888
|
+
*/
|
|
1889
|
+
setTitle(
|
|
1890
|
+
/**
|
|
1891
|
+
* New value for property `title`
|
|
1892
|
+
*/
|
|
1893
|
+
sTitle?: string
|
|
1894
|
+
): this;
|
|
1895
|
+
}
|
|
1896
|
+
/**
|
|
1897
|
+
* @EXPERIMENTAL (since 1.104)
|
|
1898
|
+
*
|
|
1899
|
+
* The `SortController` serves as base class to create sort specific personalization implementations.
|
|
1900
|
+
*/
|
|
1901
|
+
class SortController extends sap.ui.base.Object {
|
|
1902
|
+
/**
|
|
1903
|
+
* Constructor for a new `SortController`.
|
|
1904
|
+
*/
|
|
1905
|
+
constructor(
|
|
1906
|
+
/**
|
|
1907
|
+
* ID for the new control, generated automatically if no ID is given
|
|
1908
|
+
*/
|
|
1909
|
+
sId?: string,
|
|
1910
|
+
/**
|
|
1911
|
+
* Initial settings for the new control
|
|
1912
|
+
*/
|
|
1913
|
+
mSettings?: {
|
|
1914
|
+
/**
|
|
1915
|
+
* The control instance to be personalized by this controller
|
|
1916
|
+
*/
|
|
1917
|
+
control: sap.ui.core.Control;
|
|
1918
|
+
}
|
|
1919
|
+
);
|
|
1920
|
+
|
|
1921
|
+
/**
|
|
1922
|
+
* Creates a new subclass of class sap.m.p13n.SortController with name `sClassName` and enriches it with
|
|
1923
|
+
* the information contained in `oClassInfo`.
|
|
1924
|
+
*
|
|
1925
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
|
|
1926
|
+
*
|
|
1927
|
+
* @returns Created class / constructor function
|
|
1928
|
+
*/
|
|
1929
|
+
static extend<T extends Record<string, unknown>>(
|
|
1930
|
+
/**
|
|
1931
|
+
* Name of the class being created
|
|
1932
|
+
*/
|
|
1933
|
+
sClassName: string,
|
|
1934
|
+
/**
|
|
1935
|
+
* Object literal with information about the class
|
|
1936
|
+
*/
|
|
1937
|
+
oClassInfo?: sap.ClassInfo<T, sap.m.p13n.SortController>,
|
|
1938
|
+
/**
|
|
1939
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1940
|
+
* used by this class
|
|
1941
|
+
*/
|
|
1942
|
+
FNMetaImpl?: Function
|
|
1943
|
+
): Function;
|
|
1944
|
+
/**
|
|
1945
|
+
* Returns a metadata object for class sap.m.p13n.SortController.
|
|
1946
|
+
*
|
|
1947
|
+
* @returns Metadata object describing this class
|
|
1948
|
+
*/
|
|
1949
|
+
static getMetadata(): sap.ui.base.Metadata;
|
|
1221
1950
|
}
|
|
1222
1951
|
/**
|
|
1223
1952
|
* @SINCE 1.96
|
|
@@ -1232,9 +1961,6 @@ declare namespace sap {
|
|
|
1232
1961
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
1233
1962
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
1234
1963
|
* of the syntax of the settings object.
|
|
1235
|
-
*
|
|
1236
|
-
* This class does not have its own settings, but all settings applicable to the base type {@link sap.m.p13n.QueryPanel#constructor
|
|
1237
|
-
* sap.m.p13n.QueryPanel} can be used.
|
|
1238
1964
|
*/
|
|
1239
1965
|
constructor(
|
|
1240
1966
|
/**
|
|
@@ -1248,9 +1974,6 @@ declare namespace sap {
|
|
|
1248
1974
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
1249
1975
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
1250
1976
|
* of the syntax of the settings object.
|
|
1251
|
-
*
|
|
1252
|
-
* This class does not have its own settings, but all settings applicable to the base type {@link sap.m.p13n.QueryPanel#constructor
|
|
1253
|
-
* sap.m.p13n.QueryPanel} can be used.
|
|
1254
1977
|
*/
|
|
1255
1978
|
constructor(
|
|
1256
1979
|
/**
|
|
@@ -1303,6 +2026,35 @@ declare namespace sap {
|
|
|
1303
2026
|
*/
|
|
1304
2027
|
aP13nData: sap.m.p13n.SortItem
|
|
1305
2028
|
): sap.m.p13n.SortPanel;
|
|
2029
|
+
/**
|
|
2030
|
+
* Gets current value of property {@link #getTitle title}.
|
|
2031
|
+
*
|
|
2032
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
2033
|
+
* in a `sap.m.p13n.Popup`.
|
|
2034
|
+
*
|
|
2035
|
+
* Default value is `...see text or source`.
|
|
2036
|
+
*
|
|
2037
|
+
* @returns Value of property `title`
|
|
2038
|
+
*/
|
|
2039
|
+
getTitle(): string;
|
|
2040
|
+
/**
|
|
2041
|
+
* Sets a new value for property {@link #getTitle title}.
|
|
2042
|
+
*
|
|
2043
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
2044
|
+
* in a `sap.m.p13n.Popup`.
|
|
2045
|
+
*
|
|
2046
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2047
|
+
*
|
|
2048
|
+
* Default value is `...see text or source`.
|
|
2049
|
+
*
|
|
2050
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2051
|
+
*/
|
|
2052
|
+
setTitle(
|
|
2053
|
+
/**
|
|
2054
|
+
* New value for property `title`
|
|
2055
|
+
*/
|
|
2056
|
+
sTitle?: string
|
|
2057
|
+
): this;
|
|
1306
2058
|
}
|
|
1307
2059
|
|
|
1308
2060
|
/**
|
|
@@ -8945,6 +9697,18 @@ declare namespace sap {
|
|
|
8945
9697
|
| string
|
|
8946
9698
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
8947
9699
|
|
|
9700
|
+
/**
|
|
9701
|
+
* Defines custom text for the 'No data' text label.
|
|
9702
|
+
*/
|
|
9703
|
+
dragDropText?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
9704
|
+
|
|
9705
|
+
/**
|
|
9706
|
+
* Defines custom text for the 'No data' description label.
|
|
9707
|
+
*/
|
|
9708
|
+
dragDropDescription?:
|
|
9709
|
+
| string
|
|
9710
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
9711
|
+
|
|
8948
9712
|
/**
|
|
8949
9713
|
* Defines whether the upload process should be triggered as soon as the file is added.
|
|
8950
9714
|
* If set to `false`, no upload is triggered when a file is added.
|
|
@@ -11607,6 +12371,22 @@ declare namespace sap {
|
|
|
11607
12371
|
* @returns Instance of the default `sap.ui.unified.FileUploader`.
|
|
11608
12372
|
*/
|
|
11609
12373
|
getDefaultFileUploader(): sap.ui.unified.FileUploader;
|
|
12374
|
+
/**
|
|
12375
|
+
* Gets current value of property {@link #getDragDropDescription dragDropDescription}.
|
|
12376
|
+
*
|
|
12377
|
+
* Defines custom text for the 'No data' description label.
|
|
12378
|
+
*
|
|
12379
|
+
* @returns Value of property `dragDropDescription`
|
|
12380
|
+
*/
|
|
12381
|
+
getDragDropDescription(): string;
|
|
12382
|
+
/**
|
|
12383
|
+
* Gets current value of property {@link #getDragDropText dragDropText}.
|
|
12384
|
+
*
|
|
12385
|
+
* Defines custom text for the 'No data' text label.
|
|
12386
|
+
*
|
|
12387
|
+
* @returns Value of property `dragDropText`
|
|
12388
|
+
*/
|
|
12389
|
+
getDragDropText(): string;
|
|
11610
12390
|
/**
|
|
11611
12391
|
* Gets current value of property {@link #getFileTypes fileTypes}.
|
|
11612
12392
|
*
|
|
@@ -11925,7 +12705,7 @@ declare namespace sap {
|
|
|
11925
12705
|
/**
|
|
11926
12706
|
* The UploadSetItem to update with a new version. This parameter is mandatory.
|
|
11927
12707
|
*/
|
|
11928
|
-
item:
|
|
12708
|
+
item: sap.m.upload.UploadSetItem
|
|
11929
12709
|
): this;
|
|
11930
12710
|
/**
|
|
11931
12711
|
* Attaches all necessary handlers to the given uploader instance, so that the progress and status of the
|
|
@@ -12002,6 +12782,36 @@ declare namespace sap {
|
|
|
12002
12782
|
* @returns this to allow method chaining
|
|
12003
12783
|
*/
|
|
12004
12784
|
selectAll(): this;
|
|
12785
|
+
/**
|
|
12786
|
+
* Sets a new value for property {@link #getDragDropDescription dragDropDescription}.
|
|
12787
|
+
*
|
|
12788
|
+
* Defines custom text for the 'No data' description label.
|
|
12789
|
+
*
|
|
12790
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
12791
|
+
*
|
|
12792
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
12793
|
+
*/
|
|
12794
|
+
setDragDropDescription(
|
|
12795
|
+
/**
|
|
12796
|
+
* New value for property `dragDropDescription`
|
|
12797
|
+
*/
|
|
12798
|
+
sDragDropDescription?: string
|
|
12799
|
+
): this;
|
|
12800
|
+
/**
|
|
12801
|
+
* Sets a new value for property {@link #getDragDropText dragDropText}.
|
|
12802
|
+
*
|
|
12803
|
+
* Defines custom text for the 'No data' text label.
|
|
12804
|
+
*
|
|
12805
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
12806
|
+
*
|
|
12807
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
12808
|
+
*/
|
|
12809
|
+
setDragDropText(
|
|
12810
|
+
/**
|
|
12811
|
+
* New value for property `dragDropText`
|
|
12812
|
+
*/
|
|
12813
|
+
sDragDropText?: string
|
|
12814
|
+
): this;
|
|
12005
12815
|
/**
|
|
12006
12816
|
* Sets a new value for property {@link #getFileTypes fileTypes}.
|
|
12007
12817
|
*
|
|
@@ -12664,6 +13474,14 @@ declare namespace sap {
|
|
|
12664
13474
|
* Attributes of the item.
|
|
12665
13475
|
*/
|
|
12666
13476
|
getAttributes(): sap.m.ObjectAttribute[];
|
|
13477
|
+
/**
|
|
13478
|
+
* @SINCE 1.104.0
|
|
13479
|
+
*
|
|
13480
|
+
* Returns edit state of the item.
|
|
13481
|
+
*
|
|
13482
|
+
* @returns edit state of uploadSetItem
|
|
13483
|
+
*/
|
|
13484
|
+
getEditState(): boolean;
|
|
12667
13485
|
/**
|
|
12668
13486
|
* Gets current value of property {@link #getEnabledEdit enabledEdit}.
|
|
12669
13487
|
*
|
|
@@ -15405,6 +16223,16 @@ declare namespace sap {
|
|
|
15405
16223
|
| object
|
|
15406
16224
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
15407
16225
|
| `{${string}}`;
|
|
16226
|
+
|
|
16227
|
+
/**
|
|
16228
|
+
* @SINCE 1.104.0
|
|
16229
|
+
*
|
|
16230
|
+
* Fired when the value of the `DateTimeField` is changed by user interaction - each keystroke, delete,
|
|
16231
|
+
* paste, etc.
|
|
16232
|
+
*
|
|
16233
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
16234
|
+
*/
|
|
16235
|
+
liveChange?: (oEvent: sap.ui.base.Event) => void;
|
|
15408
16236
|
}
|
|
15409
16237
|
|
|
15410
16238
|
interface $DateTimeInputSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -15592,9 +16420,8 @@ declare namespace sap {
|
|
|
15592
16420
|
* @SINCE 1.99
|
|
15593
16421
|
*
|
|
15594
16422
|
* The IANA timezone ID, e.g `"Europe/Berlin"`. Date and time are displayed in this timezone. The `value`
|
|
15595
|
-
* property string is treated as if it is formatted in this timezone.
|
|
15596
|
-
*
|
|
15597
|
-
* it is adjusted when the `timezone` changes.
|
|
16423
|
+
* property string is treated as if it is formatted in this timezone. The `dateValue` property should not
|
|
16424
|
+
* be used as this could lead to an unpredictable results. Use `getValue()` instead.
|
|
15598
16425
|
*/
|
|
15599
16426
|
timezone?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15600
16427
|
}
|
|
@@ -16097,6 +16924,24 @@ declare namespace sap {
|
|
|
16097
16924
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
16098
16925
|
| `{${string}}`;
|
|
16099
16926
|
|
|
16927
|
+
/**
|
|
16928
|
+
* @SINCE 1.105
|
|
16929
|
+
*
|
|
16930
|
+
* Determines whether the input field of the control is hidden or visible. When set to `true`, the input
|
|
16931
|
+
* field becomes invisible and there is no way to open the value help popover. In that case it can be opened
|
|
16932
|
+
* by another control through calling of control's `openBy` method, and the opening control's DOM reference
|
|
16933
|
+
* must be provided as parameter.
|
|
16934
|
+
*
|
|
16935
|
+
* Note: Since the Dynamic Date Range is not responsible for accessibility attributes of the control which
|
|
16936
|
+
* opens its popover, those attributes should be added by the application developer. The following is recommended
|
|
16937
|
+
* to be added to the opening control: a text or tooltip that describes the action (example: "Open Dynamic
|
|
16938
|
+
* Date Range"), and also aria-haspopup attribute with value of `true`.
|
|
16939
|
+
*/
|
|
16940
|
+
hideInput?:
|
|
16941
|
+
| boolean
|
|
16942
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
16943
|
+
| `{${string}}`;
|
|
16944
|
+
|
|
16100
16945
|
/**
|
|
16101
16946
|
* @SINCE 1.92
|
|
16102
16947
|
*
|
|
@@ -18239,6 +19084,17 @@ declare namespace sap {
|
|
|
18239
19084
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
18240
19085
|
| `{${string}}`;
|
|
18241
19086
|
|
|
19087
|
+
/**
|
|
19088
|
+
* @SINCE 1.104
|
|
19089
|
+
*
|
|
19090
|
+
* Defines whether the `IllustratedMessage` would resize itself according to it's height if `illustrationSize`
|
|
19091
|
+
* property is set to `IllustratedMessageSize.Auto`.
|
|
19092
|
+
*/
|
|
19093
|
+
enableVerticalResponsiveness?:
|
|
19094
|
+
| boolean
|
|
19095
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
19096
|
+
| `{${string}}`;
|
|
19097
|
+
|
|
18242
19098
|
/**
|
|
18243
19099
|
* @SINCE 1.98
|
|
18244
19100
|
*
|
|
@@ -18862,7 +19718,7 @@ declare namespace sap {
|
|
|
18862
19718
|
/**
|
|
18863
19719
|
* Fired when the value of the input is changed by user interaction - each keystroke, delete, paste, etc.
|
|
18864
19720
|
*
|
|
18865
|
-
* **Note:** Browsing autocomplete suggestions does not
|
|
19721
|
+
* **Note:** Browsing autocomplete suggestions does not fire the event.
|
|
18866
19722
|
*/
|
|
18867
19723
|
liveChange?: (oEvent: sap.ui.base.Event) => void;
|
|
18868
19724
|
|
|
@@ -19259,8 +20115,9 @@ declare namespace sap {
|
|
|
19259
20115
|
| `{${string}}`;
|
|
19260
20116
|
|
|
19261
20117
|
/**
|
|
19262
|
-
* Defines the link target URI. Supports standard hyperlink behavior.
|
|
19263
|
-
*
|
|
20118
|
+
* Defines the link target URI. Supports standard hyperlink behavior. **Note:** Don't set `href` property
|
|
20119
|
+
* if an action should be triggered by the link. Instead set `accessibleRole` property to `LinkAccessibleRole.Button`
|
|
20120
|
+
* and register a `press` event handler.
|
|
19264
20121
|
*/
|
|
19265
20122
|
href?:
|
|
19266
20123
|
| sap.ui.core.URI
|
|
@@ -19352,6 +20209,20 @@ declare namespace sap {
|
|
|
19352
20209
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
19353
20210
|
| `{${string}}`;
|
|
19354
20211
|
|
|
20212
|
+
/**
|
|
20213
|
+
* @SINCE 1.104.0
|
|
20214
|
+
*
|
|
20215
|
+
* Describes the accessibility role of the link:
|
|
20216
|
+
* - `LinkAccessibleRole.Default` - a navagation is expected to the location given in `href` property
|
|
20217
|
+
*
|
|
20218
|
+
* - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
|
|
20219
|
+
* scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
|
|
20220
|
+
*/
|
|
20221
|
+
accessibleRole?:
|
|
20222
|
+
| sap.m.LinkAccessibleRole
|
|
20223
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
20224
|
+
| `{${string}}`;
|
|
20225
|
+
|
|
19355
20226
|
/**
|
|
19356
20227
|
* @SINCE 1.89
|
|
19357
20228
|
*
|
|
@@ -19924,6 +20795,16 @@ declare namespace sap {
|
|
|
19924
20795
|
| sap.m.MaskInputRule
|
|
19925
20796
|
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
19926
20797
|
| `{${string}}`;
|
|
20798
|
+
|
|
20799
|
+
/**
|
|
20800
|
+
* @SINCE 1.104.0
|
|
20801
|
+
*
|
|
20802
|
+
* Fired when the value of the `MaskInput` is changed by user interaction - each keystroke, delete, paste,
|
|
20803
|
+
* etc.
|
|
20804
|
+
*
|
|
20805
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
20806
|
+
*/
|
|
20807
|
+
liveChange?: (oEvent: sap.ui.base.Event) => void;
|
|
19927
20808
|
}
|
|
19928
20809
|
|
|
19929
20810
|
interface $MaskInputRuleSettings extends sap.ui.core.$ElementSettings {
|
|
@@ -26132,7 +27013,6 @@ declare namespace sap {
|
|
|
26132
27013
|
|
|
26133
27014
|
/**
|
|
26134
27015
|
* @SINCE 1.86
|
|
26135
|
-
* @EXPERIMENTAL (since 1.86)
|
|
26136
27016
|
*
|
|
26137
27017
|
* Determines the ratio between the first and the second column when secondary values are displayed.
|
|
26138
27018
|
*
|
|
@@ -29083,6 +29963,16 @@ declare namespace sap {
|
|
|
29083
29963
|
* Fired when `value help` dialog closes.
|
|
29084
29964
|
*/
|
|
29085
29965
|
afterValueHelpClose?: (oEvent: sap.ui.base.Event) => void;
|
|
29966
|
+
|
|
29967
|
+
/**
|
|
29968
|
+
* @SINCE 1.104.0
|
|
29969
|
+
*
|
|
29970
|
+
* Fired when the value of the `TimePicker` is changed by user interaction - each keystroke, delete, paste,
|
|
29971
|
+
* etc.
|
|
29972
|
+
*
|
|
29973
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
29974
|
+
*/
|
|
29975
|
+
liveChange?: (oEvent: sap.ui.base.Event) => void;
|
|
29086
29976
|
}
|
|
29087
29977
|
|
|
29088
29978
|
interface $TimePickerClocksSettings extends sap.ui.core.$ControlSettings {}
|
|
@@ -30055,6 +30945,108 @@ declare namespace sap {
|
|
|
30055
30945
|
interface $UploadCollectionToolbarPlaceholderSettings
|
|
30056
30946
|
extends sap.ui.core.$ControlSettings {}
|
|
30057
30947
|
|
|
30948
|
+
interface $VariantItemSettings extends sap.ui.core.$ItemSettings {
|
|
30949
|
+
/**
|
|
30950
|
+
* Contains the information is the item is public or private.
|
|
30951
|
+
*/
|
|
30952
|
+
sharing?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
30953
|
+
|
|
30954
|
+
/**
|
|
30955
|
+
* Indicates if the item is removable.
|
|
30956
|
+
*/
|
|
30957
|
+
remove?:
|
|
30958
|
+
| boolean
|
|
30959
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
30960
|
+
| `{${string}}`;
|
|
30961
|
+
|
|
30962
|
+
/**
|
|
30963
|
+
* Indicates if the item is marked as favorite.
|
|
30964
|
+
*/
|
|
30965
|
+
favorite?:
|
|
30966
|
+
| boolean
|
|
30967
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
30968
|
+
| `{${string}}`;
|
|
30969
|
+
|
|
30970
|
+
/**
|
|
30971
|
+
* Contains the initial value of the property `favorite`. Is used for cancel operations.
|
|
30972
|
+
*/
|
|
30973
|
+
originalFavorite?:
|
|
30974
|
+
| boolean
|
|
30975
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
30976
|
+
| `{${string}}`;
|
|
30977
|
+
|
|
30978
|
+
/**
|
|
30979
|
+
* Indicates if the item is marked as apply automatically.
|
|
30980
|
+
*/
|
|
30981
|
+
executeOnSelect?:
|
|
30982
|
+
| boolean
|
|
30983
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
30984
|
+
| `{${string}}`;
|
|
30985
|
+
|
|
30986
|
+
/**
|
|
30987
|
+
* Contains the initial value of the property `executeOnSelect`. Is used for cancel operations.
|
|
30988
|
+
*/
|
|
30989
|
+
originalExecuteOnSelect?:
|
|
30990
|
+
| boolean
|
|
30991
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
30992
|
+
| `{${string}}`;
|
|
30993
|
+
|
|
30994
|
+
/**
|
|
30995
|
+
* Indicates if the item is renamable.
|
|
30996
|
+
*/
|
|
30997
|
+
rename?:
|
|
30998
|
+
| boolean
|
|
30999
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
31000
|
+
| `{${string}}`;
|
|
31001
|
+
|
|
31002
|
+
/**
|
|
31003
|
+
* Contains the title if the item.
|
|
31004
|
+
*/
|
|
31005
|
+
title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
31006
|
+
|
|
31007
|
+
/**
|
|
31008
|
+
* Contains the initial value of the property `title`. Is used for cancel operations.
|
|
31009
|
+
*/
|
|
31010
|
+
originalTitle?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
31011
|
+
|
|
31012
|
+
/**
|
|
31013
|
+
* Indicates if the item is visible.
|
|
31014
|
+
*/
|
|
31015
|
+
visible?:
|
|
31016
|
+
| boolean
|
|
31017
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
31018
|
+
| `{${string}}`;
|
|
31019
|
+
|
|
31020
|
+
/**
|
|
31021
|
+
* Indicates if the item is changeable.
|
|
31022
|
+
*/
|
|
31023
|
+
changeable?:
|
|
31024
|
+
| boolean
|
|
31025
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
31026
|
+
| `{${string}}`;
|
|
31027
|
+
|
|
31028
|
+
/**
|
|
31029
|
+
* Contains the author information of the item.
|
|
31030
|
+
*/
|
|
31031
|
+
author?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
31032
|
+
|
|
31033
|
+
/**
|
|
31034
|
+
* Contains the contexts information of the item.
|
|
31035
|
+
*/
|
|
31036
|
+
contexts?:
|
|
31037
|
+
| object
|
|
31038
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
31039
|
+
| `{${string}}`;
|
|
31040
|
+
|
|
31041
|
+
/**
|
|
31042
|
+
* Contains the initial value of the property `contexts`. Is used for cancel operations.
|
|
31043
|
+
*/
|
|
31044
|
+
originalContexts?:
|
|
31045
|
+
| object
|
|
31046
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
31047
|
+
| `{${string}}`;
|
|
31048
|
+
}
|
|
31049
|
+
|
|
30058
31050
|
interface $VBoxSettings extends sap.m.$FlexBoxSettings {}
|
|
30059
31051
|
|
|
30060
31052
|
interface $ViewSettingsCustomItemSettings
|
|
@@ -30619,6 +31611,17 @@ declare namespace sap {
|
|
|
30619
31611
|
*/
|
|
30620
31612
|
aOptionKeys: any[]
|
|
30621
31613
|
): object[];
|
|
31614
|
+
/**
|
|
31615
|
+
* Returns a date in machine timezone setting, removing the offset added by the application configuration.
|
|
31616
|
+
*
|
|
31617
|
+
* @returns A local JS date with removed offset
|
|
31618
|
+
*/
|
|
31619
|
+
removeTimezoneOffset(
|
|
31620
|
+
/**
|
|
31621
|
+
* A local JS date with added offset
|
|
31622
|
+
*/
|
|
31623
|
+
oDate: Date
|
|
31624
|
+
): Date;
|
|
30622
31625
|
/**
|
|
30623
31626
|
* Calculates a date range from a provided object in the format of the DynamicDateRange's value.
|
|
30624
31627
|
*
|
|
@@ -34648,7 +35651,7 @@ declare namespace sap {
|
|
|
34648
35651
|
* Instance of the `LightBox` control or undefined
|
|
34649
35652
|
*/
|
|
34650
35653
|
oLightBox: sap.m.LightBox | undefined
|
|
34651
|
-
):
|
|
35654
|
+
): this;
|
|
34652
35655
|
/**
|
|
34653
35656
|
* Sets a new value for property {@link #getDisplayShape displayShape}.
|
|
34654
35657
|
*
|
|
@@ -36688,8 +37691,9 @@ declare namespace sap {
|
|
|
36688
37691
|
*/
|
|
36689
37692
|
class Button
|
|
36690
37693
|
extends sap.ui.core.Control
|
|
36691
|
-
implements sap.ui.core.IFormContent {
|
|
37694
|
+
implements sap.ui.core.IFormContent, sap.ui.core.IAccessKeySupport {
|
|
36692
37695
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
37696
|
+
__implements__sap_ui_core_IAccessKeySupport: boolean;
|
|
36693
37697
|
/**
|
|
36694
37698
|
* Constructor for a new `Button`.
|
|
36695
37699
|
*
|
|
@@ -38228,9 +39232,13 @@ declare namespace sap {
|
|
|
38228
39232
|
*/
|
|
38229
39233
|
class CheckBox
|
|
38230
39234
|
extends sap.ui.core.Control
|
|
38231
|
-
implements
|
|
39235
|
+
implements
|
|
39236
|
+
sap.ui.core.IFormContent,
|
|
39237
|
+
sap.ui.core.ISemanticFormContent,
|
|
39238
|
+
sap.ui.core.IAccessKeySupport {
|
|
38232
39239
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
38233
39240
|
__implements__sap_ui_core_ISemanticFormContent: boolean;
|
|
39241
|
+
__implements__sap_ui_core_IAccessKeySupport: boolean;
|
|
38234
39242
|
/**
|
|
38235
39243
|
* Constructor for a new `CheckBox`.
|
|
38236
39244
|
*
|
|
@@ -44032,6 +45040,102 @@ declare namespace sap {
|
|
|
44032
45040
|
* @returns Metadata object describing this class
|
|
44033
45041
|
*/
|
|
44034
45042
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
45043
|
+
/**
|
|
45044
|
+
* @SINCE 1.104.0
|
|
45045
|
+
*
|
|
45046
|
+
* Attaches event handler `fnFunction` to the {@link #event:liveChange liveChange} event of this `sap.m.DateTimeField`.
|
|
45047
|
+
*
|
|
45048
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
45049
|
+
* otherwise it will be bound to this `sap.m.DateTimeField` itself.
|
|
45050
|
+
*
|
|
45051
|
+
* Fired when the value of the `DateTimeField` is changed by user interaction - each keystroke, delete,
|
|
45052
|
+
* paste, etc.
|
|
45053
|
+
*
|
|
45054
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
45055
|
+
*
|
|
45056
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
45057
|
+
*/
|
|
45058
|
+
attachLiveChange(
|
|
45059
|
+
/**
|
|
45060
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
45061
|
+
* object when firing the event
|
|
45062
|
+
*/
|
|
45063
|
+
oData: object,
|
|
45064
|
+
/**
|
|
45065
|
+
* The function to be called when the event occurs
|
|
45066
|
+
*/
|
|
45067
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
45068
|
+
/**
|
|
45069
|
+
* Context object to call the event handler with. Defaults to this `sap.m.DateTimeField` itself
|
|
45070
|
+
*/
|
|
45071
|
+
oListener?: object
|
|
45072
|
+
): this;
|
|
45073
|
+
/**
|
|
45074
|
+
* @SINCE 1.104.0
|
|
45075
|
+
*
|
|
45076
|
+
* Attaches event handler `fnFunction` to the {@link #event:liveChange liveChange} event of this `sap.m.DateTimeField`.
|
|
45077
|
+
*
|
|
45078
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
45079
|
+
* otherwise it will be bound to this `sap.m.DateTimeField` itself.
|
|
45080
|
+
*
|
|
45081
|
+
* Fired when the value of the `DateTimeField` is changed by user interaction - each keystroke, delete,
|
|
45082
|
+
* paste, etc.
|
|
45083
|
+
*
|
|
45084
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
45085
|
+
*
|
|
45086
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
45087
|
+
*/
|
|
45088
|
+
attachLiveChange(
|
|
45089
|
+
/**
|
|
45090
|
+
* The function to be called when the event occurs
|
|
45091
|
+
*/
|
|
45092
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
45093
|
+
/**
|
|
45094
|
+
* Context object to call the event handler with. Defaults to this `sap.m.DateTimeField` itself
|
|
45095
|
+
*/
|
|
45096
|
+
oListener?: object
|
|
45097
|
+
): this;
|
|
45098
|
+
/**
|
|
45099
|
+
* @SINCE 1.104.0
|
|
45100
|
+
*
|
|
45101
|
+
* Detaches event handler `fnFunction` from the {@link #event:liveChange liveChange} event of this `sap.m.DateTimeField`.
|
|
45102
|
+
*
|
|
45103
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
45104
|
+
*
|
|
45105
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
45106
|
+
*/
|
|
45107
|
+
detachLiveChange(
|
|
45108
|
+
/**
|
|
45109
|
+
* The function to be called, when the event occurs
|
|
45110
|
+
*/
|
|
45111
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
45112
|
+
/**
|
|
45113
|
+
* Context object on which the given function had to be called
|
|
45114
|
+
*/
|
|
45115
|
+
oListener?: object
|
|
45116
|
+
): this;
|
|
45117
|
+
/**
|
|
45118
|
+
* @SINCE 1.104.0
|
|
45119
|
+
*
|
|
45120
|
+
* Fires event {@link #event:liveChange liveChange} to attached listeners.
|
|
45121
|
+
*
|
|
45122
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
45123
|
+
*/
|
|
45124
|
+
fireLiveChange(
|
|
45125
|
+
/**
|
|
45126
|
+
* Parameters to pass along with the event
|
|
45127
|
+
*/
|
|
45128
|
+
mParameters?: {
|
|
45129
|
+
/**
|
|
45130
|
+
* The current value of the input, after a live change event.
|
|
45131
|
+
*/
|
|
45132
|
+
value?: string;
|
|
45133
|
+
/**
|
|
45134
|
+
* The previous value of the input, before the last user interaction.
|
|
45135
|
+
*/
|
|
45136
|
+
previousValue?: string;
|
|
45137
|
+
}
|
|
45138
|
+
): this;
|
|
44035
45139
|
/**
|
|
44036
45140
|
* Gets current value of property {@link #getDateValue dateValue}.
|
|
44037
45141
|
*
|
|
@@ -44052,6 +45156,12 @@ declare namespace sap {
|
|
|
44052
45156
|
* @returns Value of property `displayFormat`
|
|
44053
45157
|
*/
|
|
44054
45158
|
getDisplayFormat(): string;
|
|
45159
|
+
/**
|
|
45160
|
+
* Gets the inner input DOM value.
|
|
45161
|
+
*
|
|
45162
|
+
* @returns The value of the input.
|
|
45163
|
+
*/
|
|
45164
|
+
getDOMValue(): any;
|
|
44055
45165
|
/**
|
|
44056
45166
|
* @SINCE 1.54
|
|
44057
45167
|
*
|
|
@@ -44077,6 +45187,15 @@ declare namespace sap {
|
|
|
44077
45187
|
* @returns Value of property `valueFormat`
|
|
44078
45188
|
*/
|
|
44079
45189
|
getValueFormat(): string;
|
|
45190
|
+
/**
|
|
45191
|
+
* Event handler for user input.
|
|
45192
|
+
*/
|
|
45193
|
+
oninput(
|
|
45194
|
+
/**
|
|
45195
|
+
* User input.
|
|
45196
|
+
*/
|
|
45197
|
+
oEvent: jQuery.Event
|
|
45198
|
+
): void;
|
|
44080
45199
|
/**
|
|
44081
45200
|
* Sets a new value for property {@link #getDateValue dateValue}.
|
|
44082
45201
|
*
|
|
@@ -44936,6 +46055,12 @@ declare namespace sap {
|
|
|
44936
46055
|
* @returns Current accessibility state of the control
|
|
44937
46056
|
*/
|
|
44938
46057
|
getAccessibilityInfo(): object;
|
|
46058
|
+
/**
|
|
46059
|
+
* @SINCE 1.102
|
|
46060
|
+
*
|
|
46061
|
+
* This method should not be used because it could produce unpredictable results. Use `getValue()` instead.
|
|
46062
|
+
*/
|
|
46063
|
+
getDateValue(): object;
|
|
44939
46064
|
/**
|
|
44940
46065
|
* Apply the correct icon to the used Date control
|
|
44941
46066
|
*/
|
|
@@ -44994,9 +46119,8 @@ declare namespace sap {
|
|
|
44994
46119
|
* Gets current value of property {@link #getTimezone timezone}.
|
|
44995
46120
|
*
|
|
44996
46121
|
* The IANA timezone ID, e.g `"Europe/Berlin"`. Date and time are displayed in this timezone. The `value`
|
|
44997
|
-
* property string is treated as if it is formatted in this timezone.
|
|
44998
|
-
*
|
|
44999
|
-
* it is adjusted when the `timezone` changes.
|
|
46122
|
+
* property string is treated as if it is formatted in this timezone. The `dateValue` property should not
|
|
46123
|
+
* be used as this could lead to an unpredictable results. Use `getValue()` instead.
|
|
45000
46124
|
*
|
|
45001
46125
|
* @returns Value of property `timezone`
|
|
45002
46126
|
*/
|
|
@@ -45083,9 +46207,8 @@ declare namespace sap {
|
|
|
45083
46207
|
* Sets a new value for property {@link #getTimezone timezone}.
|
|
45084
46208
|
*
|
|
45085
46209
|
* The IANA timezone ID, e.g `"Europe/Berlin"`. Date and time are displayed in this timezone. The `value`
|
|
45086
|
-
* property string is treated as if it is formatted in this timezone.
|
|
45087
|
-
*
|
|
45088
|
-
* it is adjusted when the `timezone` changes.
|
|
46210
|
+
* property string is treated as if it is formatted in this timezone. The `dateValue` property should not
|
|
46211
|
+
* be used as this could lead to an unpredictable results. Use `getValue()` instead.
|
|
45089
46212
|
*
|
|
45090
46213
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
45091
46214
|
*
|
|
@@ -45441,8 +46564,10 @@ declare namespace sap {
|
|
|
45441
46564
|
): this;
|
|
45442
46565
|
/**
|
|
45443
46566
|
* Close the dialog.
|
|
46567
|
+
*
|
|
46568
|
+
* @returns `this` to allow method chaining
|
|
45444
46569
|
*/
|
|
45445
|
-
close():
|
|
46570
|
+
close(): this;
|
|
45446
46571
|
/**
|
|
45447
46572
|
* @SINCE 1.15.1
|
|
45448
46573
|
*
|
|
@@ -46002,8 +47127,10 @@ declare namespace sap {
|
|
|
46002
47127
|
isOpen(): boolean;
|
|
46003
47128
|
/**
|
|
46004
47129
|
* Open the dialog.
|
|
47130
|
+
*
|
|
47131
|
+
* @returns `this` to allow method chaining
|
|
46005
47132
|
*/
|
|
46006
|
-
open():
|
|
47133
|
+
open(): this;
|
|
46007
47134
|
/**
|
|
46008
47135
|
* Removes all the controls in the association named {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
46009
47136
|
*
|
|
@@ -47453,6 +48580,26 @@ declare namespace sap {
|
|
|
47453
48580
|
* @returns Value of property `formatter`
|
|
47454
48581
|
*/
|
|
47455
48582
|
getFormatter(): object;
|
|
48583
|
+
/**
|
|
48584
|
+
* @SINCE 1.105
|
|
48585
|
+
*
|
|
48586
|
+
* Gets current value of property {@link #getHideInput hideInput}.
|
|
48587
|
+
*
|
|
48588
|
+
* Determines whether the input field of the control is hidden or visible. When set to `true`, the input
|
|
48589
|
+
* field becomes invisible and there is no way to open the value help popover. In that case it can be opened
|
|
48590
|
+
* by another control through calling of control's `openBy` method, and the opening control's DOM reference
|
|
48591
|
+
* must be provided as parameter.
|
|
48592
|
+
*
|
|
48593
|
+
* Note: Since the Dynamic Date Range is not responsible for accessibility attributes of the control which
|
|
48594
|
+
* opens its popover, those attributes should be added by the application developer. The following is recommended
|
|
48595
|
+
* to be added to the opening control: a text or tooltip that describes the action (example: "Open Dynamic
|
|
48596
|
+
* Date Range"), and also aria-haspopup attribute with value of `true`.
|
|
48597
|
+
*
|
|
48598
|
+
* Default value is `false`.
|
|
48599
|
+
*
|
|
48600
|
+
* @returns Value of property `hideInput`
|
|
48601
|
+
*/
|
|
48602
|
+
getHideInput(): boolean;
|
|
47456
48603
|
/**
|
|
47457
48604
|
* Returns the DOMNode Id to be used for the "labelFor" attribute of the label.
|
|
47458
48605
|
*
|
|
@@ -47563,7 +48710,34 @@ declare namespace sap {
|
|
|
47563
48710
|
*
|
|
47564
48711
|
* Opens the value help dialog.
|
|
47565
48712
|
*/
|
|
47566
|
-
open(
|
|
48713
|
+
open(
|
|
48714
|
+
/**
|
|
48715
|
+
* DOM reference of the opening control. On tablet or desktop, the popover is positioned relatively to this
|
|
48716
|
+
* control.
|
|
48717
|
+
*/
|
|
48718
|
+
oDomRef: HTMLElement
|
|
48719
|
+
): void;
|
|
48720
|
+
/**
|
|
48721
|
+
* @SINCE 1.105
|
|
48722
|
+
*
|
|
48723
|
+
* Opens the value help popover. The popover is positioned relatively to the control given as `oDomRef`
|
|
48724
|
+
* parameter on tablet or desktop and is full screen on phone. Therefore the control parameter is only used
|
|
48725
|
+
* on tablet or desktop and is ignored on phone.
|
|
48726
|
+
*
|
|
48727
|
+
* Note: use this method to open the value help popover only when the `hideInput` property is set to `true`.
|
|
48728
|
+
* Please consider opening of the value help popover by another control only in scenarios that comply with
|
|
48729
|
+
* Fiori guidelines. For example, opening the value help popover by another popover is not recommended.
|
|
48730
|
+
* The application developer should implement the following accessibility attributes to the opening control:
|
|
48731
|
+
* a text or tooltip that describes the action (example: "Open Dynamic Date Range"), and aria-haspopup attribute
|
|
48732
|
+
* with value of `true`.
|
|
48733
|
+
*/
|
|
48734
|
+
openBy(
|
|
48735
|
+
/**
|
|
48736
|
+
* DOM reference of the opening control. On tablet or desktop, the popover is positioned relatively to this
|
|
48737
|
+
* control.
|
|
48738
|
+
*/
|
|
48739
|
+
oDomRef: HTMLElement
|
|
48740
|
+
): void;
|
|
47567
48741
|
/**
|
|
47568
48742
|
* @SINCE 1.92
|
|
47569
48743
|
*
|
|
@@ -47683,6 +48857,33 @@ declare namespace sap {
|
|
|
47683
48857
|
*/
|
|
47684
48858
|
oFormatter: object
|
|
47685
48859
|
): this;
|
|
48860
|
+
/**
|
|
48861
|
+
* @SINCE 1.105
|
|
48862
|
+
*
|
|
48863
|
+
* Sets a new value for property {@link #getHideInput hideInput}.
|
|
48864
|
+
*
|
|
48865
|
+
* Determines whether the input field of the control is hidden or visible. When set to `true`, the input
|
|
48866
|
+
* field becomes invisible and there is no way to open the value help popover. In that case it can be opened
|
|
48867
|
+
* by another control through calling of control's `openBy` method, and the opening control's DOM reference
|
|
48868
|
+
* must be provided as parameter.
|
|
48869
|
+
*
|
|
48870
|
+
* Note: Since the Dynamic Date Range is not responsible for accessibility attributes of the control which
|
|
48871
|
+
* opens its popover, those attributes should be added by the application developer. The following is recommended
|
|
48872
|
+
* to be added to the opening control: a text or tooltip that describes the action (example: "Open Dynamic
|
|
48873
|
+
* Date Range"), and also aria-haspopup attribute with value of `true`.
|
|
48874
|
+
*
|
|
48875
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
48876
|
+
*
|
|
48877
|
+
* Default value is `false`.
|
|
48878
|
+
*
|
|
48879
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
48880
|
+
*/
|
|
48881
|
+
setHideInput(
|
|
48882
|
+
/**
|
|
48883
|
+
* New value for property `hideInput`
|
|
48884
|
+
*/
|
|
48885
|
+
bHideInput?: boolean
|
|
48886
|
+
): this;
|
|
47686
48887
|
/**
|
|
47687
48888
|
* @SINCE 1.92
|
|
47688
48889
|
*
|
|
@@ -49452,7 +50653,7 @@ declare namespace sap {
|
|
|
49452
50653
|
*
|
|
49453
50654
|
* @returns Object with the selected keys
|
|
49454
50655
|
*/
|
|
49455
|
-
getSelectedKeys():
|
|
50656
|
+
getSelectedKeys(): Record<string, string>;
|
|
49456
50657
|
/**
|
|
49457
50658
|
* Gets current value of property {@link #getSequence sequence}.
|
|
49458
50659
|
*
|
|
@@ -49661,9 +50862,9 @@ declare namespace sap {
|
|
|
49661
50862
|
*
|
|
49662
50863
|
* Used to pre-select FacetFilterItems, such as when restoring FacetFilterList selections from a variant.
|
|
49663
50864
|
* Keys are cached separately from the actual FacetFilterItems so that they remain even when the physical
|
|
49664
|
-
* items are removed by filtering or sorting. If
|
|
49665
|
-
* all
|
|
49666
|
-
* All other items in the list will be deselected.
|
|
50865
|
+
* items are removed by filtering or sorting. If oKeys is `undefined`, `null`, or {} (empty object) then
|
|
50866
|
+
* all items will be deselected. After this method completes, only those items with matching keys will be
|
|
50867
|
+
* selected. All other items in the list will be deselected.
|
|
49667
50868
|
*/
|
|
49668
50869
|
setSelectedKeys(
|
|
49669
50870
|
/**
|
|
@@ -49673,7 +50874,7 @@ declare namespace sap {
|
|
|
49673
50874
|
* or FacetFilter summary bar is displayed. If no property value is set then the property key is used for
|
|
49674
50875
|
* the text.
|
|
49675
50876
|
*/
|
|
49676
|
-
oKeys:
|
|
50877
|
+
oKeys: Record<string, string>
|
|
49677
50878
|
): void;
|
|
49678
50879
|
/**
|
|
49679
50880
|
* Sets a new value for property {@link #getSequence sequence}.
|
|
@@ -55994,9 +57195,15 @@ declare namespace sap {
|
|
|
55994
57195
|
*/
|
|
55995
57196
|
getShowOverflowSelectList(): boolean;
|
|
55996
57197
|
/**
|
|
55997
|
-
*
|
|
57198
|
+
* @deprecated (since 1.15.0) - Regarding to changes of this control this property is not needed anymore.
|
|
55998
57199
|
*
|
|
55999
|
-
*
|
|
57200
|
+
* Gets current value of property {@link #getShowSelection showSelection}.
|
|
57201
|
+
*
|
|
57202
|
+
* Defines whether the current selection should be visualized.
|
|
57203
|
+
*
|
|
57204
|
+
* Default value is `true`.
|
|
57205
|
+
*
|
|
57206
|
+
* @returns Value of property `showSelection`
|
|
56000
57207
|
*/
|
|
56001
57208
|
getShowSelection(): boolean;
|
|
56002
57209
|
/**
|
|
@@ -57871,6 +59078,19 @@ declare namespace sap {
|
|
|
57871
59078
|
* @returns Value of property `enableFormattedText`
|
|
57872
59079
|
*/
|
|
57873
59080
|
getEnableFormattedText(): boolean;
|
|
59081
|
+
/**
|
|
59082
|
+
* @SINCE 1.104
|
|
59083
|
+
*
|
|
59084
|
+
* Gets current value of property {@link #getEnableVerticalResponsiveness enableVerticalResponsiveness}.
|
|
59085
|
+
*
|
|
59086
|
+
* Defines whether the `IllustratedMessage` would resize itself according to it's height if `illustrationSize`
|
|
59087
|
+
* property is set to `IllustratedMessageSize.Auto`.
|
|
59088
|
+
*
|
|
59089
|
+
* Default value is `false`.
|
|
59090
|
+
*
|
|
59091
|
+
* @returns Value of property `enableVerticalResponsiveness`
|
|
59092
|
+
*/
|
|
59093
|
+
getEnableVerticalResponsiveness(): boolean;
|
|
57874
59094
|
/**
|
|
57875
59095
|
* @SINCE 1.98
|
|
57876
59096
|
*
|
|
@@ -58021,6 +59241,26 @@ declare namespace sap {
|
|
|
58021
59241
|
*/
|
|
58022
59242
|
bEnableFormattedText?: boolean
|
|
58023
59243
|
): this;
|
|
59244
|
+
/**
|
|
59245
|
+
* @SINCE 1.104
|
|
59246
|
+
*
|
|
59247
|
+
* Sets a new value for property {@link #getEnableVerticalResponsiveness enableVerticalResponsiveness}.
|
|
59248
|
+
*
|
|
59249
|
+
* Defines whether the `IllustratedMessage` would resize itself according to it's height if `illustrationSize`
|
|
59250
|
+
* property is set to `IllustratedMessageSize.Auto`.
|
|
59251
|
+
*
|
|
59252
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
59253
|
+
*
|
|
59254
|
+
* Default value is `false`.
|
|
59255
|
+
*
|
|
59256
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
59257
|
+
*/
|
|
59258
|
+
setEnableVerticalResponsiveness(
|
|
59259
|
+
/**
|
|
59260
|
+
* New value for property `enableVerticalResponsiveness`
|
|
59261
|
+
*/
|
|
59262
|
+
bEnableVerticalResponsiveness?: boolean
|
|
59263
|
+
): this;
|
|
58024
59264
|
/**
|
|
58025
59265
|
* @SINCE 1.98
|
|
58026
59266
|
*
|
|
@@ -59155,7 +60395,7 @@ declare namespace sap {
|
|
|
59155
60395
|
* Instance of the `LightBox` control or undefined
|
|
59156
60396
|
*/
|
|
59157
60397
|
oLightBox: sap.m.LightBox | undefined
|
|
59158
|
-
):
|
|
60398
|
+
): this;
|
|
59159
60399
|
/**
|
|
59160
60400
|
* Sets a new value for property {@link #getHeight height}.
|
|
59161
60401
|
*
|
|
@@ -59529,7 +60769,10 @@ declare namespace sap {
|
|
|
59529
60769
|
* - If a `selectedKey` is bound and the user types before the data is loaded, the user's input will
|
|
59530
60770
|
* be overwritten by the binding update.
|
|
59531
60771
|
*/
|
|
59532
|
-
class Input
|
|
60772
|
+
class Input
|
|
60773
|
+
extends sap.m.InputBase
|
|
60774
|
+
implements sap.ui.core.IAccessKeySupport {
|
|
60775
|
+
__implements__sap_ui_core_IAccessKeySupport: boolean;
|
|
59533
60776
|
/**
|
|
59534
60777
|
* Constructor for a new `Input`.
|
|
59535
60778
|
*
|
|
@@ -59639,7 +60882,7 @@ declare namespace sap {
|
|
|
59639
60882
|
*
|
|
59640
60883
|
* Fired when the value of the input is changed by user interaction - each keystroke, delete, paste, etc.
|
|
59641
60884
|
*
|
|
59642
|
-
* **Note:** Browsing autocomplete suggestions does not
|
|
60885
|
+
* **Note:** Browsing autocomplete suggestions does not fire the event.
|
|
59643
60886
|
*
|
|
59644
60887
|
* @returns Reference to `this` in order to allow method chaining
|
|
59645
60888
|
*/
|
|
@@ -59666,7 +60909,7 @@ declare namespace sap {
|
|
|
59666
60909
|
*
|
|
59667
60910
|
* Fired when the value of the input is changed by user interaction - each keystroke, delete, paste, etc.
|
|
59668
60911
|
*
|
|
59669
|
-
* **Note:** Browsing autocomplete suggestions does not
|
|
60912
|
+
* **Note:** Browsing autocomplete suggestions does not fire the event.
|
|
59670
60913
|
*
|
|
59671
60914
|
* @returns Reference to `this` in order to allow method chaining
|
|
59672
60915
|
*/
|
|
@@ -62546,9 +63789,11 @@ declare namespace sap {
|
|
|
62546
63789
|
implements
|
|
62547
63790
|
sap.ui.core.Label,
|
|
62548
63791
|
sap.ui.core.IShrinkable,
|
|
63792
|
+
sap.ui.core.IAccessKeySupport,
|
|
62549
63793
|
sap.m.IOverflowToolbarContent {
|
|
62550
63794
|
__implements__sap_ui_core_Label: boolean;
|
|
62551
63795
|
__implements__sap_ui_core_IShrinkable: boolean;
|
|
63796
|
+
__implements__sap_ui_core_IAccessKeySupport: boolean;
|
|
62552
63797
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
62553
63798
|
/**
|
|
62554
63799
|
* Constructor for a new Label.
|
|
@@ -63401,10 +64646,12 @@ declare namespace sap {
|
|
|
63401
64646
|
implements
|
|
63402
64647
|
sap.ui.core.IShrinkable,
|
|
63403
64648
|
sap.ui.core.IFormContent,
|
|
63404
|
-
sap.ui.core.ITitleContent
|
|
64649
|
+
sap.ui.core.ITitleContent,
|
|
64650
|
+
sap.ui.core.IAccessKeySupport {
|
|
63405
64651
|
__implements__sap_ui_core_IShrinkable: boolean;
|
|
63406
64652
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
63407
64653
|
__implements__sap_ui_core_ITitleContent: boolean;
|
|
64654
|
+
__implements__sap_ui_core_IAccessKeySupport: boolean;
|
|
63408
64655
|
/**
|
|
63409
64656
|
* Constructor for a new `Link`.
|
|
63410
64657
|
*
|
|
@@ -63586,6 +64833,22 @@ declare namespace sap {
|
|
|
63586
64833
|
* @returns The `sap.m.Link` accessibility information
|
|
63587
64834
|
*/
|
|
63588
64835
|
getAccessibilityInfo(): object;
|
|
64836
|
+
/**
|
|
64837
|
+
* @SINCE 1.104.0
|
|
64838
|
+
*
|
|
64839
|
+
* Gets current value of property {@link #getAccessibleRole accessibleRole}.
|
|
64840
|
+
*
|
|
64841
|
+
* Describes the accessibility role of the link:
|
|
64842
|
+
* - `LinkAccessibleRole.Default` - a navagation is expected to the location given in `href` property
|
|
64843
|
+
*
|
|
64844
|
+
* - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
|
|
64845
|
+
* scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
|
|
64846
|
+
*
|
|
64847
|
+
* Default value is `Default`.
|
|
64848
|
+
*
|
|
64849
|
+
* @returns Value of property `accessibleRole`
|
|
64850
|
+
*/
|
|
64851
|
+
getAccessibleRole(): sap.m.LinkAccessibleRole;
|
|
63589
64852
|
/**
|
|
63590
64853
|
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
|
|
63591
64854
|
* ariaDescribedBy}.
|
|
@@ -63654,8 +64917,9 @@ declare namespace sap {
|
|
|
63654
64917
|
/**
|
|
63655
64918
|
* Gets current value of property {@link #getHref href}.
|
|
63656
64919
|
*
|
|
63657
|
-
* Defines the link target URI. Supports standard hyperlink behavior.
|
|
63658
|
-
*
|
|
64920
|
+
* Defines the link target URI. Supports standard hyperlink behavior. **Note:** Don't set `href` property
|
|
64921
|
+
* if an action should be triggered by the link. Instead set `accessibleRole` property to `LinkAccessibleRole.Button`
|
|
64922
|
+
* and register a `press` event handler.
|
|
63659
64923
|
*
|
|
63660
64924
|
* @returns Value of property `href`
|
|
63661
64925
|
*/
|
|
@@ -63804,6 +65068,29 @@ declare namespace sap {
|
|
|
63804
65068
|
*/
|
|
63805
65069
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
63806
65070
|
): sap.ui.core.ID;
|
|
65071
|
+
/**
|
|
65072
|
+
* @SINCE 1.104.0
|
|
65073
|
+
*
|
|
65074
|
+
* Sets a new value for property {@link #getAccessibleRole accessibleRole}.
|
|
65075
|
+
*
|
|
65076
|
+
* Describes the accessibility role of the link:
|
|
65077
|
+
* - `LinkAccessibleRole.Default` - a navagation is expected to the location given in `href` property
|
|
65078
|
+
*
|
|
65079
|
+
* - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
|
|
65080
|
+
* scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
|
|
65081
|
+
*
|
|
65082
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
65083
|
+
*
|
|
65084
|
+
* Default value is `Default`.
|
|
65085
|
+
*
|
|
65086
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
65087
|
+
*/
|
|
65088
|
+
setAccessibleRole(
|
|
65089
|
+
/**
|
|
65090
|
+
* New value for property `accessibleRole`
|
|
65091
|
+
*/
|
|
65092
|
+
sAccessibleRole?: sap.m.LinkAccessibleRole
|
|
65093
|
+
): this;
|
|
63807
65094
|
/**
|
|
63808
65095
|
* @SINCE 1.86.0
|
|
63809
65096
|
*
|
|
@@ -63890,8 +65177,9 @@ declare namespace sap {
|
|
|
63890
65177
|
/**
|
|
63891
65178
|
* Sets a new value for property {@link #getHref href}.
|
|
63892
65179
|
*
|
|
63893
|
-
* Defines the link target URI. Supports standard hyperlink behavior.
|
|
63894
|
-
*
|
|
65180
|
+
* Defines the link target URI. Supports standard hyperlink behavior. **Note:** Don't set `href` property
|
|
65181
|
+
* if an action should be triggered by the link. Instead set `accessibleRole` property to `LinkAccessibleRole.Button`
|
|
65182
|
+
* and register a `press` event handler.
|
|
63895
65183
|
*
|
|
63896
65184
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
63897
65185
|
*
|
|
@@ -65049,6 +66337,20 @@ declare namespace sap {
|
|
|
65049
66337
|
*/
|
|
65050
66338
|
oListener?: object
|
|
65051
66339
|
): this;
|
|
66340
|
+
/**
|
|
66341
|
+
* This method is a hook for the RenderManager that gets called during the rendering of child Controls.
|
|
66342
|
+
* It allows to add, remove and update existing accessibility attributes (ARIA) of those controls.
|
|
66343
|
+
*/
|
|
66344
|
+
enhanceAccessibilityState(
|
|
66345
|
+
/**
|
|
66346
|
+
* The Control that gets rendered by the RenderManager
|
|
66347
|
+
*/
|
|
66348
|
+
oElement: sap.ui.core.Control,
|
|
66349
|
+
/**
|
|
66350
|
+
* The mapping of "aria-" prefixed attributes
|
|
66351
|
+
*/
|
|
66352
|
+
mAriaProps: object
|
|
66353
|
+
): void;
|
|
65052
66354
|
/**
|
|
65053
66355
|
* @SINCE 1.54
|
|
65054
66356
|
*
|
|
@@ -65360,7 +66662,11 @@ declare namespace sap {
|
|
|
65360
66662
|
* Returns growing information as object with "actual" and "total" keys. Note: This function returns "null"
|
|
65361
66663
|
* if "growing" feature is disabled.
|
|
65362
66664
|
*/
|
|
65363
|
-
getGrowingInfo():
|
|
66665
|
+
getGrowingInfo(): {
|
|
66666
|
+
actual: int;
|
|
66667
|
+
|
|
66668
|
+
total: int;
|
|
66669
|
+
} | null;
|
|
65364
66670
|
/**
|
|
65365
66671
|
* @SINCE 1.16.0
|
|
65366
66672
|
*
|
|
@@ -67143,12 +68449,108 @@ declare namespace sap {
|
|
|
67143
68449
|
*/
|
|
67144
68450
|
oRule: sap.m.MaskInputRule
|
|
67145
68451
|
): this;
|
|
68452
|
+
/**
|
|
68453
|
+
* @SINCE 1.104.0
|
|
68454
|
+
*
|
|
68455
|
+
* Attaches event handler `fnFunction` to the {@link #event:liveChange liveChange} event of this `sap.m.MaskInput`.
|
|
68456
|
+
*
|
|
68457
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
68458
|
+
* otherwise it will be bound to this `sap.m.MaskInput` itself.
|
|
68459
|
+
*
|
|
68460
|
+
* Fired when the value of the `MaskInput` is changed by user interaction - each keystroke, delete, paste,
|
|
68461
|
+
* etc.
|
|
68462
|
+
*
|
|
68463
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
68464
|
+
*
|
|
68465
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
68466
|
+
*/
|
|
68467
|
+
attachLiveChange(
|
|
68468
|
+
/**
|
|
68469
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
68470
|
+
* object when firing the event
|
|
68471
|
+
*/
|
|
68472
|
+
oData: object,
|
|
68473
|
+
/**
|
|
68474
|
+
* The function to be called when the event occurs
|
|
68475
|
+
*/
|
|
68476
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
68477
|
+
/**
|
|
68478
|
+
* Context object to call the event handler with. Defaults to this `sap.m.MaskInput` itself
|
|
68479
|
+
*/
|
|
68480
|
+
oListener?: object
|
|
68481
|
+
): this;
|
|
68482
|
+
/**
|
|
68483
|
+
* @SINCE 1.104.0
|
|
68484
|
+
*
|
|
68485
|
+
* Attaches event handler `fnFunction` to the {@link #event:liveChange liveChange} event of this `sap.m.MaskInput`.
|
|
68486
|
+
*
|
|
68487
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
68488
|
+
* otherwise it will be bound to this `sap.m.MaskInput` itself.
|
|
68489
|
+
*
|
|
68490
|
+
* Fired when the value of the `MaskInput` is changed by user interaction - each keystroke, delete, paste,
|
|
68491
|
+
* etc.
|
|
68492
|
+
*
|
|
68493
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
68494
|
+
*
|
|
68495
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
68496
|
+
*/
|
|
68497
|
+
attachLiveChange(
|
|
68498
|
+
/**
|
|
68499
|
+
* The function to be called when the event occurs
|
|
68500
|
+
*/
|
|
68501
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
68502
|
+
/**
|
|
68503
|
+
* Context object to call the event handler with. Defaults to this `sap.m.MaskInput` itself
|
|
68504
|
+
*/
|
|
68505
|
+
oListener?: object
|
|
68506
|
+
): this;
|
|
67146
68507
|
/**
|
|
67147
68508
|
* Destroys all the rules in the aggregation {@link #getRules rules}.
|
|
67148
68509
|
*
|
|
67149
68510
|
* @returns Reference to `this` in order to allow method chaining
|
|
67150
68511
|
*/
|
|
67151
68512
|
destroyRules(): this;
|
|
68513
|
+
/**
|
|
68514
|
+
* @SINCE 1.104.0
|
|
68515
|
+
*
|
|
68516
|
+
* Detaches event handler `fnFunction` from the {@link #event:liveChange liveChange} event of this `sap.m.MaskInput`.
|
|
68517
|
+
*
|
|
68518
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
68519
|
+
*
|
|
68520
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
68521
|
+
*/
|
|
68522
|
+
detachLiveChange(
|
|
68523
|
+
/**
|
|
68524
|
+
* The function to be called, when the event occurs
|
|
68525
|
+
*/
|
|
68526
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
68527
|
+
/**
|
|
68528
|
+
* Context object on which the given function had to be called
|
|
68529
|
+
*/
|
|
68530
|
+
oListener?: object
|
|
68531
|
+
): this;
|
|
68532
|
+
/**
|
|
68533
|
+
* @SINCE 1.104.0
|
|
68534
|
+
*
|
|
68535
|
+
* Fires event {@link #event:liveChange liveChange} to attached listeners.
|
|
68536
|
+
*
|
|
68537
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
68538
|
+
*/
|
|
68539
|
+
fireLiveChange(
|
|
68540
|
+
/**
|
|
68541
|
+
* Parameters to pass along with the event
|
|
68542
|
+
*/
|
|
68543
|
+
mParameters?: {
|
|
68544
|
+
/**
|
|
68545
|
+
* The current value of the input, after a live change event.
|
|
68546
|
+
*/
|
|
68547
|
+
value?: string;
|
|
68548
|
+
/**
|
|
68549
|
+
* The previous value of the input, before the last user interaction.
|
|
68550
|
+
*/
|
|
68551
|
+
previousValue?: string;
|
|
68552
|
+
}
|
|
68553
|
+
): this;
|
|
67152
68554
|
/**
|
|
67153
68555
|
* Gets current value of property {@link #getMask mask}.
|
|
67154
68556
|
*
|
|
@@ -74318,7 +75720,7 @@ declare namespace sap {
|
|
|
74318
75720
|
/**
|
|
74319
75721
|
* The screen to which drilldown should happen. The ID or the control itself can be given.
|
|
74320
75722
|
*/
|
|
74321
|
-
vPageIdOrControl: string,
|
|
75723
|
+
vPageIdOrControl: string | sap.ui.core.Control,
|
|
74322
75724
|
/**
|
|
74323
75725
|
* The type of the transition/animation to apply. Options are "slide" (horizontal movement from the right),
|
|
74324
75726
|
* "baseSlide", "fade", "flip", and "show" and the names of any registered custom transitions.
|
|
@@ -85872,7 +87274,8 @@ declare namespace sap {
|
|
|
85872
87274
|
*
|
|
85873
87275
|
* An abstract base type for `panels` aggregation in `P13nDialog` control.
|
|
85874
87276
|
*/
|
|
85875
|
-
class P13nPanel extends sap.ui.core.Control {
|
|
87277
|
+
class P13nPanel extends sap.ui.core.Control implements sap.m.p13n.IContent {
|
|
87278
|
+
__implements__sap_m_p13n_IContent: boolean;
|
|
85876
87279
|
/**
|
|
85877
87280
|
* Constructor for a new P13nPanel.
|
|
85878
87281
|
*
|
|
@@ -91548,8 +92951,8 @@ declare namespace sap {
|
|
|
91548
92951
|
/**
|
|
91549
92952
|
* the width to be set to the PlanningCalendar
|
|
91550
92953
|
*/
|
|
91551
|
-
sWidth:
|
|
91552
|
-
):
|
|
92954
|
+
sWidth: sap.ui.core.CSSSize
|
|
92955
|
+
): this;
|
|
91553
92956
|
}
|
|
91554
92957
|
/**
|
|
91555
92958
|
* @SINCE 1.50
|
|
@@ -99979,10 +101382,10 @@ declare namespace sap {
|
|
|
99979
101382
|
openBy(
|
|
99980
101383
|
/**
|
|
99981
101384
|
* When this control is displayed on tablet or desktop, the ResponsivePopover is positioned relative to
|
|
99982
|
-
* this control.
|
|
101385
|
+
* this UI5 control or DOM element.
|
|
99983
101386
|
*/
|
|
99984
|
-
oParent:
|
|
99985
|
-
):
|
|
101387
|
+
oParent: sap.ui.core.Control | HTMLElement
|
|
101388
|
+
): sap.m.Popover | sap.m.Dialog;
|
|
99986
101389
|
/**
|
|
99987
101390
|
* Removes all the controls in the association named {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
99988
101391
|
*
|
|
@@ -103083,7 +104486,6 @@ declare namespace sap {
|
|
|
103083
104486
|
getAutoAdjustWidth(): boolean;
|
|
103084
104487
|
/**
|
|
103085
104488
|
* @SINCE 1.86
|
|
103086
|
-
* @EXPERIMENTAL (since 1.86)
|
|
103087
104489
|
*
|
|
103088
104490
|
* Gets current value of property {@link #getColumnRatio columnRatio}.
|
|
103089
104491
|
*
|
|
@@ -103536,7 +104938,6 @@ declare namespace sap {
|
|
|
103536
104938
|
): this;
|
|
103537
104939
|
/**
|
|
103538
104940
|
* @SINCE 1.86
|
|
103539
|
-
* @EXPERIMENTAL (since 1.86)
|
|
103540
104941
|
*
|
|
103541
104942
|
* Sets a new value for property {@link #getColumnRatio columnRatio}.
|
|
103542
104943
|
*
|
|
@@ -122221,6 +123622,61 @@ declare namespace sap {
|
|
|
122221
123622
|
*/
|
|
122222
123623
|
oListener?: object
|
|
122223
123624
|
): this;
|
|
123625
|
+
/**
|
|
123626
|
+
* @SINCE 1.104.0
|
|
123627
|
+
*
|
|
123628
|
+
* Attaches event handler `fnFunction` to the {@link #event:liveChange liveChange} event of this `sap.m.TimePicker`.
|
|
123629
|
+
*
|
|
123630
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
123631
|
+
* otherwise it will be bound to this `sap.m.TimePicker` itself.
|
|
123632
|
+
*
|
|
123633
|
+
* Fired when the value of the `TimePicker` is changed by user interaction - each keystroke, delete, paste,
|
|
123634
|
+
* etc.
|
|
123635
|
+
*
|
|
123636
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
123637
|
+
*
|
|
123638
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
123639
|
+
*/
|
|
123640
|
+
attachLiveChange(
|
|
123641
|
+
/**
|
|
123642
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
123643
|
+
* object when firing the event
|
|
123644
|
+
*/
|
|
123645
|
+
oData: object,
|
|
123646
|
+
/**
|
|
123647
|
+
* The function to be called when the event occurs
|
|
123648
|
+
*/
|
|
123649
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
123650
|
+
/**
|
|
123651
|
+
* Context object to call the event handler with. Defaults to this `sap.m.TimePicker` itself
|
|
123652
|
+
*/
|
|
123653
|
+
oListener?: object
|
|
123654
|
+
): this;
|
|
123655
|
+
/**
|
|
123656
|
+
* @SINCE 1.104.0
|
|
123657
|
+
*
|
|
123658
|
+
* Attaches event handler `fnFunction` to the {@link #event:liveChange liveChange} event of this `sap.m.TimePicker`.
|
|
123659
|
+
*
|
|
123660
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
123661
|
+
* otherwise it will be bound to this `sap.m.TimePicker` itself.
|
|
123662
|
+
*
|
|
123663
|
+
* Fired when the value of the `TimePicker` is changed by user interaction - each keystroke, delete, paste,
|
|
123664
|
+
* etc.
|
|
123665
|
+
*
|
|
123666
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
123667
|
+
*
|
|
123668
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
123669
|
+
*/
|
|
123670
|
+
attachLiveChange(
|
|
123671
|
+
/**
|
|
123672
|
+
* The function to be called when the event occurs
|
|
123673
|
+
*/
|
|
123674
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
123675
|
+
/**
|
|
123676
|
+
* Context object to call the event handler with. Defaults to this `sap.m.TimePicker` itself
|
|
123677
|
+
*/
|
|
123678
|
+
oListener?: object
|
|
123679
|
+
): this;
|
|
122224
123680
|
/**
|
|
122225
123681
|
* Destroys all the rules in the aggregation {@link #getRules rules}.
|
|
122226
123682
|
*
|
|
@@ -122267,6 +123723,25 @@ declare namespace sap {
|
|
|
122267
123723
|
*/
|
|
122268
123724
|
oListener?: object
|
|
122269
123725
|
): this;
|
|
123726
|
+
/**
|
|
123727
|
+
* @SINCE 1.104.0
|
|
123728
|
+
*
|
|
123729
|
+
* Detaches event handler `fnFunction` from the {@link #event:liveChange liveChange} event of this `sap.m.TimePicker`.
|
|
123730
|
+
*
|
|
123731
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
123732
|
+
*
|
|
123733
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
123734
|
+
*/
|
|
123735
|
+
detachLiveChange(
|
|
123736
|
+
/**
|
|
123737
|
+
* The function to be called, when the event occurs
|
|
123738
|
+
*/
|
|
123739
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
123740
|
+
/**
|
|
123741
|
+
* Context object on which the given function had to be called
|
|
123742
|
+
*/
|
|
123743
|
+
oListener?: object
|
|
123744
|
+
): this;
|
|
122270
123745
|
/**
|
|
122271
123746
|
* @SINCE 1.102.0
|
|
122272
123747
|
*
|
|
@@ -122321,6 +123796,28 @@ declare namespace sap {
|
|
|
122321
123796
|
*/
|
|
122322
123797
|
oParams?: object
|
|
122323
123798
|
): void;
|
|
123799
|
+
/**
|
|
123800
|
+
* @SINCE 1.104.0
|
|
123801
|
+
*
|
|
123802
|
+
* Fires event {@link #event:liveChange liveChange} to attached listeners.
|
|
123803
|
+
*
|
|
123804
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
123805
|
+
*/
|
|
123806
|
+
fireLiveChange(
|
|
123807
|
+
/**
|
|
123808
|
+
* Parameters to pass along with the event
|
|
123809
|
+
*/
|
|
123810
|
+
mParameters?: {
|
|
123811
|
+
/**
|
|
123812
|
+
* The current value of the input, after a live change event.
|
|
123813
|
+
*/
|
|
123814
|
+
value?: string;
|
|
123815
|
+
/**
|
|
123816
|
+
* The previous value of the input, before the last user interaction.
|
|
123817
|
+
*/
|
|
123818
|
+
previousValue?: string;
|
|
123819
|
+
}
|
|
123820
|
+
): this;
|
|
122324
123821
|
/**
|
|
122325
123822
|
* See:
|
|
122326
123823
|
* sap.ui.core.Control#getAccessibilityInfo
|
|
@@ -129628,6 +131125,437 @@ declare namespace sap {
|
|
|
129628
131125
|
*/
|
|
129629
131126
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
129630
131127
|
}
|
|
131128
|
+
/**
|
|
131129
|
+
* The VariantItem class describes a variant item.
|
|
131130
|
+
*/
|
|
131131
|
+
class VariantItem extends sap.ui.core.Item {
|
|
131132
|
+
/**
|
|
131133
|
+
* Constructor for a new sap.m.VariantItem.
|
|
131134
|
+
*
|
|
131135
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
131136
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
131137
|
+
* of the syntax of the settings object.
|
|
131138
|
+
*/
|
|
131139
|
+
constructor(
|
|
131140
|
+
/**
|
|
131141
|
+
* Initial settings for the new control
|
|
131142
|
+
*/
|
|
131143
|
+
mSettings?: sap.m.$VariantItemSettings
|
|
131144
|
+
);
|
|
131145
|
+
/**
|
|
131146
|
+
* Constructor for a new sap.m.VariantItem.
|
|
131147
|
+
*
|
|
131148
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
131149
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
131150
|
+
* of the syntax of the settings object.
|
|
131151
|
+
*/
|
|
131152
|
+
constructor(
|
|
131153
|
+
/**
|
|
131154
|
+
* ID for the new control, generated automatically if no ID is given
|
|
131155
|
+
*/
|
|
131156
|
+
sId?: string,
|
|
131157
|
+
/**
|
|
131158
|
+
* Initial settings for the new control
|
|
131159
|
+
*/
|
|
131160
|
+
mSettings?: sap.m.$VariantItemSettings
|
|
131161
|
+
);
|
|
131162
|
+
|
|
131163
|
+
/**
|
|
131164
|
+
* Creates a new subclass of class sap.m.VariantItem with name `sClassName` and enriches it with the information
|
|
131165
|
+
* contained in `oClassInfo`.
|
|
131166
|
+
*
|
|
131167
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Item.extend}.
|
|
131168
|
+
*
|
|
131169
|
+
* @returns Created class / constructor function
|
|
131170
|
+
*/
|
|
131171
|
+
static extend<T extends Record<string, unknown>>(
|
|
131172
|
+
/**
|
|
131173
|
+
* Name of the class being created
|
|
131174
|
+
*/
|
|
131175
|
+
sClassName: string,
|
|
131176
|
+
/**
|
|
131177
|
+
* Object literal with information about the class
|
|
131178
|
+
*/
|
|
131179
|
+
oClassInfo?: sap.ClassInfo<T, sap.m.VariantItem>,
|
|
131180
|
+
/**
|
|
131181
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
131182
|
+
* used by this class
|
|
131183
|
+
*/
|
|
131184
|
+
FNMetaImpl?: Function
|
|
131185
|
+
): Function;
|
|
131186
|
+
/**
|
|
131187
|
+
* Returns a metadata object for class sap.m.VariantItem.
|
|
131188
|
+
*
|
|
131189
|
+
* @returns Metadata object describing this class
|
|
131190
|
+
*/
|
|
131191
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
131192
|
+
/**
|
|
131193
|
+
* Gets current value of property {@link #getAuthor author}.
|
|
131194
|
+
*
|
|
131195
|
+
* Contains the author information of the item.
|
|
131196
|
+
*
|
|
131197
|
+
* @returns Value of property `author`
|
|
131198
|
+
*/
|
|
131199
|
+
getAuthor(): string;
|
|
131200
|
+
/**
|
|
131201
|
+
* Gets current value of property {@link #getChangeable changeable}.
|
|
131202
|
+
*
|
|
131203
|
+
* Indicates if the item is changeable.
|
|
131204
|
+
*
|
|
131205
|
+
* Default value is `false`.
|
|
131206
|
+
*
|
|
131207
|
+
* @returns Value of property `changeable`
|
|
131208
|
+
*/
|
|
131209
|
+
getChangeable(): boolean;
|
|
131210
|
+
/**
|
|
131211
|
+
* Gets current value of property {@link #getContexts contexts}.
|
|
131212
|
+
*
|
|
131213
|
+
* Contains the contexts information of the item.
|
|
131214
|
+
*
|
|
131215
|
+
* Default value is `{}`.
|
|
131216
|
+
*
|
|
131217
|
+
* @returns Value of property `contexts`
|
|
131218
|
+
*/
|
|
131219
|
+
getContexts(): object;
|
|
131220
|
+
/**
|
|
131221
|
+
* Gets current value of property {@link #getExecuteOnSelect executeOnSelect}.
|
|
131222
|
+
*
|
|
131223
|
+
* Indicates if the item is marked as apply automatically.
|
|
131224
|
+
*
|
|
131225
|
+
* Default value is `false`.
|
|
131226
|
+
*
|
|
131227
|
+
* @returns Value of property `executeOnSelect`
|
|
131228
|
+
*/
|
|
131229
|
+
getExecuteOnSelect(): boolean;
|
|
131230
|
+
/**
|
|
131231
|
+
* Gets current value of property {@link #getFavorite favorite}.
|
|
131232
|
+
*
|
|
131233
|
+
* Indicates if the item is marked as favorite.
|
|
131234
|
+
*
|
|
131235
|
+
* Default value is `true`.
|
|
131236
|
+
*
|
|
131237
|
+
* @returns Value of property `favorite`
|
|
131238
|
+
*/
|
|
131239
|
+
getFavorite(): boolean;
|
|
131240
|
+
/**
|
|
131241
|
+
* Gets current value of property {@link #getOriginalContexts originalContexts}.
|
|
131242
|
+
*
|
|
131243
|
+
* Contains the initial value of the property `contexts`. Is used for cancel operations.
|
|
131244
|
+
*
|
|
131245
|
+
* Default value is `{}`.
|
|
131246
|
+
*
|
|
131247
|
+
* @returns Value of property `originalContexts`
|
|
131248
|
+
*/
|
|
131249
|
+
getOriginalContexts(): object;
|
|
131250
|
+
/**
|
|
131251
|
+
* Gets current value of property {@link #getOriginalExecuteOnSelect originalExecuteOnSelect}.
|
|
131252
|
+
*
|
|
131253
|
+
* Contains the initial value of the property `executeOnSelect`. Is used for cancel operations.
|
|
131254
|
+
*
|
|
131255
|
+
* Default value is `false`.
|
|
131256
|
+
*
|
|
131257
|
+
* @returns Value of property `originalExecuteOnSelect`
|
|
131258
|
+
*/
|
|
131259
|
+
getOriginalExecuteOnSelect(): boolean;
|
|
131260
|
+
/**
|
|
131261
|
+
* Gets current value of property {@link #getOriginalFavorite originalFavorite}.
|
|
131262
|
+
*
|
|
131263
|
+
* Contains the initial value of the property `favorite`. Is used for cancel operations.
|
|
131264
|
+
*
|
|
131265
|
+
* Default value is `true`.
|
|
131266
|
+
*
|
|
131267
|
+
* @returns Value of property `originalFavorite`
|
|
131268
|
+
*/
|
|
131269
|
+
getOriginalFavorite(): boolean;
|
|
131270
|
+
/**
|
|
131271
|
+
* Gets current value of property {@link #getOriginalTitle originalTitle}.
|
|
131272
|
+
*
|
|
131273
|
+
* Contains the initial value of the property `title`. Is used for cancel operations.
|
|
131274
|
+
*
|
|
131275
|
+
* @returns Value of property `originalTitle`
|
|
131276
|
+
*/
|
|
131277
|
+
getOriginalTitle(): string;
|
|
131278
|
+
/**
|
|
131279
|
+
* Gets current value of property {@link #getRemove remove}.
|
|
131280
|
+
*
|
|
131281
|
+
* Indicates if the item is removable.
|
|
131282
|
+
*
|
|
131283
|
+
* Default value is `false`.
|
|
131284
|
+
*
|
|
131285
|
+
* @returns Value of property `remove`
|
|
131286
|
+
*/
|
|
131287
|
+
getRemove(): boolean;
|
|
131288
|
+
/**
|
|
131289
|
+
* Gets current value of property {@link #getRename rename}.
|
|
131290
|
+
*
|
|
131291
|
+
* Indicates if the item is renamable.
|
|
131292
|
+
*
|
|
131293
|
+
* Default value is `true`.
|
|
131294
|
+
*
|
|
131295
|
+
* @returns Value of property `rename`
|
|
131296
|
+
*/
|
|
131297
|
+
getRename(): boolean;
|
|
131298
|
+
/**
|
|
131299
|
+
* Gets current value of property {@link #getSharing sharing}.
|
|
131300
|
+
*
|
|
131301
|
+
* Contains the information is the item is public or private.
|
|
131302
|
+
*
|
|
131303
|
+
* Default value is `"private"`.
|
|
131304
|
+
*
|
|
131305
|
+
* @returns Value of property `sharing`
|
|
131306
|
+
*/
|
|
131307
|
+
getSharing(): string;
|
|
131308
|
+
/**
|
|
131309
|
+
* Gets current value of property {@link #getTitle title}.
|
|
131310
|
+
*
|
|
131311
|
+
* Contains the title if the item.
|
|
131312
|
+
*
|
|
131313
|
+
* @returns Value of property `title`
|
|
131314
|
+
*/
|
|
131315
|
+
getTitle(): string;
|
|
131316
|
+
/**
|
|
131317
|
+
* Gets current value of property {@link #getVisible visible}.
|
|
131318
|
+
*
|
|
131319
|
+
* Indicates if the item is visible.
|
|
131320
|
+
*
|
|
131321
|
+
* Default value is `true`.
|
|
131322
|
+
*
|
|
131323
|
+
* @returns Value of property `visible`
|
|
131324
|
+
*/
|
|
131325
|
+
getVisible(): boolean;
|
|
131326
|
+
/**
|
|
131327
|
+
* Sets a new value for property {@link #getAuthor author}.
|
|
131328
|
+
*
|
|
131329
|
+
* Contains the author information of the item.
|
|
131330
|
+
*
|
|
131331
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131332
|
+
*
|
|
131333
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131334
|
+
*/
|
|
131335
|
+
setAuthor(
|
|
131336
|
+
/**
|
|
131337
|
+
* New value for property `author`
|
|
131338
|
+
*/
|
|
131339
|
+
sAuthor?: string
|
|
131340
|
+
): this;
|
|
131341
|
+
/**
|
|
131342
|
+
* Sets a new value for property {@link #getChangeable changeable}.
|
|
131343
|
+
*
|
|
131344
|
+
* Indicates if the item is changeable.
|
|
131345
|
+
*
|
|
131346
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131347
|
+
*
|
|
131348
|
+
* Default value is `false`.
|
|
131349
|
+
*
|
|
131350
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131351
|
+
*/
|
|
131352
|
+
setChangeable(
|
|
131353
|
+
/**
|
|
131354
|
+
* New value for property `changeable`
|
|
131355
|
+
*/
|
|
131356
|
+
bChangeable?: boolean
|
|
131357
|
+
): this;
|
|
131358
|
+
/**
|
|
131359
|
+
* Sets a new value for property {@link #getContexts contexts}.
|
|
131360
|
+
*
|
|
131361
|
+
* Contains the contexts information of the item.
|
|
131362
|
+
*
|
|
131363
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131364
|
+
*
|
|
131365
|
+
* Default value is `{}`.
|
|
131366
|
+
*
|
|
131367
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131368
|
+
*/
|
|
131369
|
+
setContexts(
|
|
131370
|
+
/**
|
|
131371
|
+
* New value for property `contexts`
|
|
131372
|
+
*/
|
|
131373
|
+
oContexts?: object
|
|
131374
|
+
): this;
|
|
131375
|
+
/**
|
|
131376
|
+
* Sets a new value for property {@link #getExecuteOnSelect executeOnSelect}.
|
|
131377
|
+
*
|
|
131378
|
+
* Indicates if the item is marked as apply automatically.
|
|
131379
|
+
*
|
|
131380
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131381
|
+
*
|
|
131382
|
+
* Default value is `false`.
|
|
131383
|
+
*
|
|
131384
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131385
|
+
*/
|
|
131386
|
+
setExecuteOnSelect(
|
|
131387
|
+
/**
|
|
131388
|
+
* New value for property `executeOnSelect`
|
|
131389
|
+
*/
|
|
131390
|
+
bExecuteOnSelect?: boolean
|
|
131391
|
+
): this;
|
|
131392
|
+
/**
|
|
131393
|
+
* Sets a new value for property {@link #getFavorite favorite}.
|
|
131394
|
+
*
|
|
131395
|
+
* Indicates if the item is marked as favorite.
|
|
131396
|
+
*
|
|
131397
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131398
|
+
*
|
|
131399
|
+
* Default value is `true`.
|
|
131400
|
+
*
|
|
131401
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131402
|
+
*/
|
|
131403
|
+
setFavorite(
|
|
131404
|
+
/**
|
|
131405
|
+
* New value for property `favorite`
|
|
131406
|
+
*/
|
|
131407
|
+
bFavorite?: boolean
|
|
131408
|
+
): this;
|
|
131409
|
+
/**
|
|
131410
|
+
* Sets a new value for property {@link #getOriginalContexts originalContexts}.
|
|
131411
|
+
*
|
|
131412
|
+
* Contains the initial value of the property `contexts`. Is used for cancel operations.
|
|
131413
|
+
*
|
|
131414
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131415
|
+
*
|
|
131416
|
+
* Default value is `{}`.
|
|
131417
|
+
*
|
|
131418
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131419
|
+
*/
|
|
131420
|
+
setOriginalContexts(
|
|
131421
|
+
/**
|
|
131422
|
+
* New value for property `originalContexts`
|
|
131423
|
+
*/
|
|
131424
|
+
oOriginalContexts?: object
|
|
131425
|
+
): this;
|
|
131426
|
+
/**
|
|
131427
|
+
* Sets a new value for property {@link #getOriginalExecuteOnSelect originalExecuteOnSelect}.
|
|
131428
|
+
*
|
|
131429
|
+
* Contains the initial value of the property `executeOnSelect`. Is used for cancel operations.
|
|
131430
|
+
*
|
|
131431
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131432
|
+
*
|
|
131433
|
+
* Default value is `false`.
|
|
131434
|
+
*
|
|
131435
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131436
|
+
*/
|
|
131437
|
+
setOriginalExecuteOnSelect(
|
|
131438
|
+
/**
|
|
131439
|
+
* New value for property `originalExecuteOnSelect`
|
|
131440
|
+
*/
|
|
131441
|
+
bOriginalExecuteOnSelect?: boolean
|
|
131442
|
+
): this;
|
|
131443
|
+
/**
|
|
131444
|
+
* Sets a new value for property {@link #getOriginalFavorite originalFavorite}.
|
|
131445
|
+
*
|
|
131446
|
+
* Contains the initial value of the property `favorite`. Is used for cancel operations.
|
|
131447
|
+
*
|
|
131448
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131449
|
+
*
|
|
131450
|
+
* Default value is `true`.
|
|
131451
|
+
*
|
|
131452
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131453
|
+
*/
|
|
131454
|
+
setOriginalFavorite(
|
|
131455
|
+
/**
|
|
131456
|
+
* New value for property `originalFavorite`
|
|
131457
|
+
*/
|
|
131458
|
+
bOriginalFavorite?: boolean
|
|
131459
|
+
): this;
|
|
131460
|
+
/**
|
|
131461
|
+
* Sets a new value for property {@link #getOriginalTitle originalTitle}.
|
|
131462
|
+
*
|
|
131463
|
+
* Contains the initial value of the property `title`. Is used for cancel operations.
|
|
131464
|
+
*
|
|
131465
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131466
|
+
*
|
|
131467
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131468
|
+
*/
|
|
131469
|
+
setOriginalTitle(
|
|
131470
|
+
/**
|
|
131471
|
+
* New value for property `originalTitle`
|
|
131472
|
+
*/
|
|
131473
|
+
sOriginalTitle?: string
|
|
131474
|
+
): this;
|
|
131475
|
+
/**
|
|
131476
|
+
* Sets a new value for property {@link #getRemove remove}.
|
|
131477
|
+
*
|
|
131478
|
+
* Indicates if the item is removable.
|
|
131479
|
+
*
|
|
131480
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131481
|
+
*
|
|
131482
|
+
* Default value is `false`.
|
|
131483
|
+
*
|
|
131484
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131485
|
+
*/
|
|
131486
|
+
setRemove(
|
|
131487
|
+
/**
|
|
131488
|
+
* New value for property `remove`
|
|
131489
|
+
*/
|
|
131490
|
+
bRemove?: boolean
|
|
131491
|
+
): this;
|
|
131492
|
+
/**
|
|
131493
|
+
* Sets a new value for property {@link #getRename rename}.
|
|
131494
|
+
*
|
|
131495
|
+
* Indicates if the item is renamable.
|
|
131496
|
+
*
|
|
131497
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131498
|
+
*
|
|
131499
|
+
* Default value is `true`.
|
|
131500
|
+
*
|
|
131501
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131502
|
+
*/
|
|
131503
|
+
setRename(
|
|
131504
|
+
/**
|
|
131505
|
+
* New value for property `rename`
|
|
131506
|
+
*/
|
|
131507
|
+
bRename?: boolean
|
|
131508
|
+
): this;
|
|
131509
|
+
/**
|
|
131510
|
+
* Sets a new value for property {@link #getSharing sharing}.
|
|
131511
|
+
*
|
|
131512
|
+
* Contains the information is the item is public or private.
|
|
131513
|
+
*
|
|
131514
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131515
|
+
*
|
|
131516
|
+
* Default value is `"private"`.
|
|
131517
|
+
*
|
|
131518
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131519
|
+
*/
|
|
131520
|
+
setSharing(
|
|
131521
|
+
/**
|
|
131522
|
+
* New value for property `sharing`
|
|
131523
|
+
*/
|
|
131524
|
+
sSharing?: string
|
|
131525
|
+
): this;
|
|
131526
|
+
/**
|
|
131527
|
+
* Sets a new value for property {@link #getTitle title}.
|
|
131528
|
+
*
|
|
131529
|
+
* Contains the title if the item.
|
|
131530
|
+
*
|
|
131531
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131532
|
+
*
|
|
131533
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131534
|
+
*/
|
|
131535
|
+
setTitle(
|
|
131536
|
+
/**
|
|
131537
|
+
* New value for property `title`
|
|
131538
|
+
*/
|
|
131539
|
+
sTitle?: string
|
|
131540
|
+
): this;
|
|
131541
|
+
/**
|
|
131542
|
+
* Sets a new value for property {@link #getVisible visible}.
|
|
131543
|
+
*
|
|
131544
|
+
* Indicates if the item is visible.
|
|
131545
|
+
*
|
|
131546
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131547
|
+
*
|
|
131548
|
+
* Default value is `true`.
|
|
131549
|
+
*
|
|
131550
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131551
|
+
*/
|
|
131552
|
+
setVisible(
|
|
131553
|
+
/**
|
|
131554
|
+
* New value for property `visible`
|
|
131555
|
+
*/
|
|
131556
|
+
bVisible?: boolean
|
|
131557
|
+
): this;
|
|
131558
|
+
}
|
|
129631
131559
|
/**
|
|
129632
131560
|
* The VBox control builds the container for a vertical flexible box layout. VBox is a convenience control,
|
|
129633
131561
|
* as it is just a specialized FlexBox control.
|
|
@@ -135107,6 +137035,21 @@ declare namespace sap {
|
|
|
135107
137035
|
*/
|
|
135108
137036
|
TimeOutError = "TIME_OUT_ERROR",
|
|
135109
137037
|
}
|
|
137038
|
+
/**
|
|
137039
|
+
* @SINCE 1.104.0
|
|
137040
|
+
*
|
|
137041
|
+
* Enumeration for possible Link accessibility roles.
|
|
137042
|
+
*/
|
|
137043
|
+
enum LinkAccessibleRole {
|
|
137044
|
+
/**
|
|
137045
|
+
* Link will receive `role="Button"` attibute.
|
|
137046
|
+
*/
|
|
137047
|
+
Button = "Button",
|
|
137048
|
+
/**
|
|
137049
|
+
* Default mode.
|
|
137050
|
+
*/
|
|
137051
|
+
Default = "Default",
|
|
137052
|
+
}
|
|
135110
137053
|
/**
|
|
135111
137054
|
* @SINCE 1.45.5
|
|
135112
137055
|
*
|
|
@@ -136923,14 +138866,30 @@ declare namespace sap {
|
|
|
136923
138866
|
|
|
136924
138867
|
"sap/m/p13n/Container": undefined;
|
|
136925
138868
|
|
|
138869
|
+
"sap/m/p13n/Engine": undefined;
|
|
138870
|
+
|
|
138871
|
+
"sap/m/p13n/GroupController": undefined;
|
|
138872
|
+
|
|
136926
138873
|
"sap/m/p13n/GroupPanel": undefined;
|
|
136927
138874
|
|
|
138875
|
+
"sap/m/p13n/modification/FlexModificationHandler": undefined;
|
|
138876
|
+
|
|
138877
|
+
"sap/m/p13n/modification/LocalStorageModificationHandler": undefined;
|
|
138878
|
+
|
|
138879
|
+
"sap/m/p13n/modification/ModificationHandler": undefined;
|
|
138880
|
+
|
|
138881
|
+
"sap/m/p13n/modules/AdaptationProvider": undefined;
|
|
138882
|
+
|
|
136928
138883
|
"sap/m/p13n/Popup": undefined;
|
|
136929
138884
|
|
|
136930
138885
|
"sap/m/p13n/QueryPanel": undefined;
|
|
136931
138886
|
|
|
138887
|
+
"sap/m/p13n/SelectionController": undefined;
|
|
138888
|
+
|
|
136932
138889
|
"sap/m/p13n/SelectionPanel": undefined;
|
|
136933
138890
|
|
|
138891
|
+
"sap/m/p13n/SortController": undefined;
|
|
138892
|
+
|
|
136934
138893
|
"sap/m/p13n/SortPanel": undefined;
|
|
136935
138894
|
|
|
136936
138895
|
"sap/m/P13nColumnsItem": undefined;
|
|
@@ -137161,6 +139120,8 @@ declare namespace sap {
|
|
|
137161
139120
|
|
|
137162
139121
|
"sap/m/Table": undefined;
|
|
137163
139122
|
|
|
139123
|
+
"sap/m/table/Util": undefined;
|
|
139124
|
+
|
|
137164
139125
|
"sap/m/TablePersoController": undefined;
|
|
137165
139126
|
|
|
137166
139127
|
"sap/m/TablePersoDialog": undefined;
|
|
@@ -137225,6 +139186,8 @@ declare namespace sap {
|
|
|
137225
139186
|
|
|
137226
139187
|
"sap/m/UploadCollectionToolbarPlaceholder": undefined;
|
|
137227
139188
|
|
|
139189
|
+
"sap/m/VariantItem": undefined;
|
|
139190
|
+
|
|
137228
139191
|
"sap/m/VariantManagement": undefined;
|
|
137229
139192
|
|
|
137230
139193
|
"sap/m/VBox": undefined;
|