@sapui5/ts-types 1.103.1 → 1.104.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/index.d.ts +3 -0
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +157 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +7 -4
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.landvisz.d.ts +1 -1
- package/types/sap.m.d.ts +1870 -57
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +2 -2
- package/types/sap.sac.grid.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +498 -18
- package/types/sap.suite.ui.generic.template.d.ts +32 -25
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- 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.comp.d.ts +1128 -243
- package/types/sap.ui.core.d.ts +111 -20
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +3 -3
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +41 -62
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +1 -1
- package/types/sap.ui.richtexteditor.d.ts +1 -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 +81 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -161
- package/types/sap.ui.vk.d.ts +59 -1
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +118 -0
- package/types/sap.ui.webc.fiori.d.ts +13298 -0
- package/types/sap.ui.webc.main.d.ts +39842 -0
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +32 -20
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.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.104.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,498 @@ 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 capabilites by registering a control instance for modification such
|
|
595
|
+
* as:
|
|
596
|
+
*
|
|
597
|
+
*
|
|
598
|
+
* - `sap.m.p13n.Popup` initialization
|
|
599
|
+
* - Storing personalization states by chosing 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` capabilites.
|
|
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: /* was: sap.m.Control */ any,
|
|
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: /* was: sap.m.Control */ any
|
|
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 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 insance to be registered for adaptation
|
|
725
|
+
*/
|
|
726
|
+
oControl: /* was: sap.m.Control */ any,
|
|
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: /* was: sap.m.Control */ any,
|
|
744
|
+
/**
|
|
745
|
+
* The key for the affected config.
|
|
746
|
+
*/
|
|
747
|
+
aKeys: string
|
|
748
|
+
): Promise<any>;
|
|
749
|
+
/**
|
|
750
|
+
* Retrieves the externalized state for a given control instance, after all necessary changes have been
|
|
751
|
+
* applied (e.g. modification handler appliance). After the returned Promise has been resolved, the returned
|
|
752
|
+
* State is in sync with the according state object of the control.
|
|
753
|
+
*
|
|
754
|
+
* @returns a Promise resolving in the current control state.
|
|
755
|
+
*/
|
|
756
|
+
retrieveState(
|
|
757
|
+
/**
|
|
758
|
+
* The control instance implementing IxState to retrieve the externalized state
|
|
759
|
+
*/
|
|
760
|
+
oControl: object
|
|
761
|
+
): Promise<any>;
|
|
762
|
+
/**
|
|
763
|
+
* @EXPERIMENTAL (since 1.104)
|
|
764
|
+
*
|
|
765
|
+
* Opens the personalization dialog.
|
|
766
|
+
*
|
|
767
|
+
* @returns Promise resolving in the `sap.m.p13n.Popup` instance.
|
|
768
|
+
*/
|
|
769
|
+
show(
|
|
770
|
+
/**
|
|
771
|
+
* The control instance to be personalized
|
|
772
|
+
*/
|
|
773
|
+
oControl: sap.ui.core.Control,
|
|
774
|
+
/**
|
|
775
|
+
* The affected panels that should be added to the `sap.m.p13n.Popup`
|
|
776
|
+
*/
|
|
777
|
+
vPanelKeys: string | string[],
|
|
778
|
+
/**
|
|
779
|
+
* The settings object for the personalization
|
|
780
|
+
*/
|
|
781
|
+
mSettings: {
|
|
782
|
+
/**
|
|
783
|
+
* The title for the `sap.m.p13n.Popup` control
|
|
784
|
+
*/
|
|
785
|
+
title?: string;
|
|
786
|
+
/**
|
|
787
|
+
* The source control to be used by the `sap.m.p13n.Popup` control (only necessary in case the mode is set
|
|
788
|
+
* to `ResponsivePopover`)
|
|
789
|
+
*/
|
|
790
|
+
source?: object;
|
|
791
|
+
/**
|
|
792
|
+
* The mode to be used by the `sap.m.p13n.Popup` control
|
|
793
|
+
*/
|
|
794
|
+
mode?: object;
|
|
795
|
+
/**
|
|
796
|
+
* Height configuration for the related popup container
|
|
797
|
+
*/
|
|
798
|
+
contentHeight?: object;
|
|
799
|
+
/**
|
|
800
|
+
* Width configuration for the related popup container
|
|
801
|
+
*/
|
|
802
|
+
contentWidth?: object;
|
|
803
|
+
}
|
|
804
|
+
): Promise<any>;
|
|
805
|
+
}
|
|
806
|
+
const Engine: Engine;
|
|
496
807
|
|
|
497
808
|
/**
|
|
498
809
|
* @SINCE 1.96
|
|
499
810
|
* @EXPERIMENTAL (since 1.96)
|
|
500
811
|
*
|
|
812
|
+
* This control serves as base class for personalization implementations. This faceless class serves as
|
|
813
|
+
* a way to implement control-specific personalization panels.
|
|
814
|
+
*/
|
|
815
|
+
class BasePanel
|
|
816
|
+
extends sap.ui.core.Control
|
|
817
|
+
implements sap.m.p13n.IContent {
|
|
818
|
+
__implements__sap_m_p13n_IContent: boolean;
|
|
819
|
+
/**
|
|
820
|
+
* Constructor for a new `BasePanel`.
|
|
821
|
+
*
|
|
822
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
823
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
824
|
+
* of the syntax of the settings object.
|
|
825
|
+
*/
|
|
826
|
+
constructor(
|
|
827
|
+
/**
|
|
828
|
+
* Initial settings for the new control
|
|
829
|
+
*/
|
|
830
|
+
mSettings?: sap.m.p13n.$BasePanelSettings
|
|
831
|
+
);
|
|
832
|
+
/**
|
|
833
|
+
* Constructor for a new `BasePanel`.
|
|
834
|
+
*
|
|
835
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
836
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
837
|
+
* of the syntax of the settings object.
|
|
838
|
+
*/
|
|
839
|
+
constructor(
|
|
840
|
+
/**
|
|
841
|
+
* ID for the new control, generated automatically if no ID is given
|
|
842
|
+
*/
|
|
843
|
+
sId?: string,
|
|
844
|
+
/**
|
|
845
|
+
* Initial settings for the new control
|
|
846
|
+
*/
|
|
847
|
+
mSettings?: sap.m.p13n.$BasePanelSettings
|
|
848
|
+
);
|
|
849
|
+
|
|
850
|
+
/**
|
|
851
|
+
* Creates a new subclass of class sap.m.p13n.BasePanel with name `sClassName` and enriches it with the
|
|
852
|
+
* information contained in `oClassInfo`.
|
|
853
|
+
*
|
|
854
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
855
|
+
*
|
|
856
|
+
* @returns Created class / constructor function
|
|
857
|
+
*/
|
|
858
|
+
static extend<T extends Record<string, unknown>>(
|
|
859
|
+
/**
|
|
860
|
+
* Name of the class being created
|
|
861
|
+
*/
|
|
862
|
+
sClassName: string,
|
|
863
|
+
/**
|
|
864
|
+
* Object literal with information about the class
|
|
865
|
+
*/
|
|
866
|
+
oClassInfo?: sap.ClassInfo<T, sap.m.p13n.BasePanel>,
|
|
867
|
+
/**
|
|
868
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
869
|
+
* used by this class
|
|
870
|
+
*/
|
|
871
|
+
FNMetaImpl?: Function
|
|
872
|
+
): Function;
|
|
873
|
+
/**
|
|
874
|
+
* Returns a metadata object for class sap.m.p13n.BasePanel.
|
|
875
|
+
*
|
|
876
|
+
* @returns Metadata object describing this class
|
|
877
|
+
*/
|
|
878
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
879
|
+
/**
|
|
880
|
+
* Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.m.p13n.BasePanel`.
|
|
881
|
+
*
|
|
882
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
883
|
+
* otherwise it will be bound to this `sap.m.p13n.BasePanel` itself.
|
|
884
|
+
*
|
|
885
|
+
* This event is fired if any change has been made within the `BasePanel` control.
|
|
886
|
+
*
|
|
887
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
888
|
+
*/
|
|
889
|
+
attachChange(
|
|
890
|
+
/**
|
|
891
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
892
|
+
* object when firing the event
|
|
893
|
+
*/
|
|
894
|
+
oData: object,
|
|
895
|
+
/**
|
|
896
|
+
* The function to be called when the event occurs
|
|
897
|
+
*/
|
|
898
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
899
|
+
/**
|
|
900
|
+
* Context object to call the event handler with. Defaults to this `sap.m.p13n.BasePanel` itself
|
|
901
|
+
*/
|
|
902
|
+
oListener?: object
|
|
903
|
+
): this;
|
|
904
|
+
/**
|
|
905
|
+
* Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.m.p13n.BasePanel`.
|
|
906
|
+
*
|
|
907
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
908
|
+
* otherwise it will be bound to this `sap.m.p13n.BasePanel` itself.
|
|
909
|
+
*
|
|
910
|
+
* This event is fired if any change has been made within the `BasePanel` control.
|
|
911
|
+
*
|
|
912
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
913
|
+
*/
|
|
914
|
+
attachChange(
|
|
915
|
+
/**
|
|
916
|
+
* The function to be called when the event occurs
|
|
917
|
+
*/
|
|
918
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
919
|
+
/**
|
|
920
|
+
* Context object to call the event handler with. Defaults to this `sap.m.p13n.BasePanel` itself
|
|
921
|
+
*/
|
|
922
|
+
oListener?: object
|
|
923
|
+
): this;
|
|
924
|
+
/**
|
|
925
|
+
* Destroys the messageStrip in the aggregation {@link #getMessageStrip messageStrip}.
|
|
926
|
+
*
|
|
927
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
928
|
+
*/
|
|
929
|
+
destroyMessageStrip(): this;
|
|
930
|
+
/**
|
|
931
|
+
* Detaches event handler `fnFunction` from the {@link #event:change change} event of this `sap.m.p13n.BasePanel`.
|
|
932
|
+
*
|
|
933
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
934
|
+
*
|
|
935
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
936
|
+
*/
|
|
937
|
+
detachChange(
|
|
938
|
+
/**
|
|
939
|
+
* The function to be called, when the event occurs
|
|
940
|
+
*/
|
|
941
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
942
|
+
/**
|
|
943
|
+
* Context object on which the given function had to be called
|
|
944
|
+
*/
|
|
945
|
+
oListener?: object
|
|
946
|
+
): this;
|
|
947
|
+
/**
|
|
948
|
+
* Fires event {@link #event:change change} to attached listeners.
|
|
949
|
+
*
|
|
950
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
951
|
+
*/
|
|
952
|
+
fireChange(
|
|
953
|
+
/**
|
|
954
|
+
* Parameters to pass along with the event
|
|
955
|
+
*/
|
|
956
|
+
mParameters?: object
|
|
957
|
+
): this;
|
|
958
|
+
/**
|
|
959
|
+
* Gets current value of property {@link #getEnableReorder enableReorder}.
|
|
960
|
+
*
|
|
961
|
+
* Determines whether the reordering of personalization items is enabled.
|
|
962
|
+
*
|
|
963
|
+
* Default value is `true`.
|
|
964
|
+
*
|
|
965
|
+
* @returns Value of property `enableReorder`
|
|
966
|
+
*/
|
|
967
|
+
getEnableReorder(): boolean;
|
|
968
|
+
/**
|
|
969
|
+
* Getter for the `messageStrip` aggregation.
|
|
970
|
+
*
|
|
971
|
+
* @returns The BasePanel instance
|
|
972
|
+
*/
|
|
973
|
+
getMessageStrip(): sap.m.p13n.BasePanel;
|
|
974
|
+
/**
|
|
975
|
+
* Returns the personalization state that is currently displayed by the `BasePanel`.
|
|
976
|
+
*
|
|
977
|
+
* @returns An array containing the personalization state that is currently displayed by the `BasePanel`
|
|
978
|
+
*/
|
|
979
|
+
getP13nData(
|
|
980
|
+
/**
|
|
981
|
+
* Determines whether only the present items is included
|
|
982
|
+
*/
|
|
983
|
+
bOnlyActive: boolean
|
|
984
|
+
): sap.m.p13n.Item[];
|
|
985
|
+
/**
|
|
986
|
+
* Gets current value of property {@link #getTitle title}.
|
|
987
|
+
*
|
|
988
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
989
|
+
* in a `sap.m.p13n.Popup`.
|
|
990
|
+
*
|
|
991
|
+
* @returns Value of property `title`
|
|
992
|
+
*/
|
|
993
|
+
getTitle(): string;
|
|
994
|
+
/**
|
|
995
|
+
* The `enableReorder` property determines whether additional move buttons are shown when hovering over
|
|
996
|
+
* the inner list. In addition, drag and drop will be enabled for the inner list control.
|
|
997
|
+
*
|
|
998
|
+
* @returns The BasePanel instance
|
|
999
|
+
*/
|
|
1000
|
+
setEnableReorder(
|
|
1001
|
+
/**
|
|
1002
|
+
* Determines whether reordering is enabled
|
|
1003
|
+
*/
|
|
1004
|
+
bEnableReorder: boolean
|
|
1005
|
+
): sap.m.p13n.BasePanel;
|
|
1006
|
+
/**
|
|
1007
|
+
* Displays a `sap.m.MessageStrip` instance in the content area of the `BasePanel`.
|
|
1008
|
+
*
|
|
1009
|
+
* @returns The `BasePanel` instance
|
|
1010
|
+
*/
|
|
1011
|
+
setMessageStrip(
|
|
1012
|
+
/**
|
|
1013
|
+
* Instance of a sap.m.MessageStrip
|
|
1014
|
+
*/
|
|
1015
|
+
oStrip: sap.m.MessageStrip
|
|
1016
|
+
): sap.m.p13n.BasePanel;
|
|
1017
|
+
/**
|
|
1018
|
+
* Sets the personalization state of the panel instance.
|
|
1019
|
+
*
|
|
1020
|
+
* @returns The BasePanel instance
|
|
1021
|
+
*/
|
|
1022
|
+
setP13nData(
|
|
1023
|
+
/**
|
|
1024
|
+
* An array containing the personalization state that is represented by the `BasePanel`.
|
|
1025
|
+
*/
|
|
1026
|
+
aP13nData: sap.m.p13n.Item[]
|
|
1027
|
+
): this;
|
|
1028
|
+
/**
|
|
1029
|
+
* Sets a new value for property {@link #getTitle title}.
|
|
1030
|
+
*
|
|
1031
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
1032
|
+
* in a `sap.m.p13n.Popup`.
|
|
1033
|
+
*
|
|
1034
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1035
|
+
*
|
|
1036
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1037
|
+
*/
|
|
1038
|
+
setTitle(
|
|
1039
|
+
/**
|
|
1040
|
+
* New value for property `title`
|
|
1041
|
+
*/
|
|
1042
|
+
sTitle: string
|
|
1043
|
+
): this;
|
|
1044
|
+
}
|
|
1045
|
+
/**
|
|
1046
|
+
* @SINCE 1.104
|
|
1047
|
+
* @EXPERIMENTAL
|
|
1048
|
+
*
|
|
1049
|
+
* The `GroupController` serves as base class to create sort specific personalization implementations.
|
|
1050
|
+
*/
|
|
1051
|
+
class GroupController extends sap.ui.base.Object {
|
|
1052
|
+
/**
|
|
1053
|
+
* Constructor for a new `GroupController`.
|
|
1054
|
+
*/
|
|
1055
|
+
constructor(
|
|
1056
|
+
/**
|
|
1057
|
+
* ID for the new control, generated automatically if no ID is given
|
|
1058
|
+
*/
|
|
1059
|
+
sId?: string,
|
|
1060
|
+
/**
|
|
1061
|
+
* Initial settings for the new control
|
|
1062
|
+
*/
|
|
1063
|
+
mSettings?: {
|
|
1064
|
+
/**
|
|
1065
|
+
* The control instance to be personalized by this controller
|
|
1066
|
+
*/
|
|
1067
|
+
control: sap.ui.core.Control;
|
|
1068
|
+
}
|
|
1069
|
+
);
|
|
1070
|
+
}
|
|
1071
|
+
/**
|
|
1072
|
+
* @EXPERIMENTAL (since 1.104)
|
|
1073
|
+
*
|
|
501
1074
|
* This control can be used to customize personalization content for grouping for an associated control
|
|
502
1075
|
* instance.
|
|
503
1076
|
*/
|
|
@@ -583,6 +1156,17 @@ declare namespace sap {
|
|
|
583
1156
|
* @returns Value of property `enableShowField`
|
|
584
1157
|
*/
|
|
585
1158
|
getEnableShowField(): boolean;
|
|
1159
|
+
/**
|
|
1160
|
+
* Gets current value of property {@link #getTitle title}.
|
|
1161
|
+
*
|
|
1162
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
1163
|
+
* in a `sap.m.p13n.Popup`.
|
|
1164
|
+
*
|
|
1165
|
+
* Default value is `...see text or source`.
|
|
1166
|
+
*
|
|
1167
|
+
* @returns Value of property `title`
|
|
1168
|
+
*/
|
|
1169
|
+
getTitle(): string;
|
|
586
1170
|
/**
|
|
587
1171
|
* Sets a new value for property {@link #getEnableShowField enableShowField}.
|
|
588
1172
|
*
|
|
@@ -600,6 +1184,24 @@ declare namespace sap {
|
|
|
600
1184
|
*/
|
|
601
1185
|
bEnableShowField?: boolean
|
|
602
1186
|
): this;
|
|
1187
|
+
/**
|
|
1188
|
+
* Sets a new value for property {@link #getTitle title}.
|
|
1189
|
+
*
|
|
1190
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
1191
|
+
* in a `sap.m.p13n.Popup`.
|
|
1192
|
+
*
|
|
1193
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1194
|
+
*
|
|
1195
|
+
* Default value is `...see text or source`.
|
|
1196
|
+
*
|
|
1197
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1198
|
+
*/
|
|
1199
|
+
setTitle(
|
|
1200
|
+
/**
|
|
1201
|
+
* New value for property `title`
|
|
1202
|
+
*/
|
|
1203
|
+
sTitle?: string
|
|
1204
|
+
): this;
|
|
603
1205
|
}
|
|
604
1206
|
/**
|
|
605
1207
|
* @SINCE 1.97
|
|
@@ -688,7 +1290,11 @@ declare namespace sap {
|
|
|
688
1290
|
/**
|
|
689
1291
|
* The panel instance
|
|
690
1292
|
*/
|
|
691
|
-
oPanel:
|
|
1293
|
+
oPanel: sap.m.p13n.IContent,
|
|
1294
|
+
/**
|
|
1295
|
+
* Optional key to be used for the panel registration instead of using the id
|
|
1296
|
+
*/
|
|
1297
|
+
sKey?: string
|
|
692
1298
|
): sap.m.p13n.Popup;
|
|
693
1299
|
/**
|
|
694
1300
|
* Attaches event handler `fnFunction` to the {@link #event:close close} event of this `sap.m.p13n.Popup`.
|
|
@@ -796,7 +1402,7 @@ declare namespace sap {
|
|
|
796
1402
|
*
|
|
797
1403
|
* @returns An array of panel instances
|
|
798
1404
|
*/
|
|
799
|
-
getPanels():
|
|
1405
|
+
getPanels(): sap.m.p13n.IContent[];
|
|
800
1406
|
/**
|
|
801
1407
|
* Gets current value of property {@link #getReset reset}.
|
|
802
1408
|
*
|
|
@@ -845,7 +1451,7 @@ declare namespace sap {
|
|
|
845
1451
|
/**
|
|
846
1452
|
* The panel whose index is looked for
|
|
847
1453
|
*/
|
|
848
|
-
oPanel:
|
|
1454
|
+
oPanel: sap.m.p13n.IContent
|
|
849
1455
|
): int;
|
|
850
1456
|
/**
|
|
851
1457
|
* Inserts a additionalButton into the aggregation {@link #getAdditionalButtons additionalButtons}.
|
|
@@ -873,7 +1479,7 @@ declare namespace sap {
|
|
|
873
1479
|
/**
|
|
874
1480
|
* The panel to insert; if empty, nothing is inserted
|
|
875
1481
|
*/
|
|
876
|
-
oPanel:
|
|
1482
|
+
oPanel: sap.m.p13n.IContent,
|
|
877
1483
|
/**
|
|
878
1484
|
* The `0`-based index the panel should be inserted at; for a negative value of `iIndex`, the panel is inserted
|
|
879
1485
|
* at position 0; for a value greater than the current size of the aggregation, the panel is inserted at
|
|
@@ -928,14 +1534,6 @@ declare namespace sap {
|
|
|
928
1534
|
* @returns An array of the removed elements (might be empty)
|
|
929
1535
|
*/
|
|
930
1536
|
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
1537
|
/**
|
|
940
1538
|
* Removes a panel instance.
|
|
941
1539
|
*
|
|
@@ -945,7 +1543,7 @@ declare namespace sap {
|
|
|
945
1543
|
/**
|
|
946
1544
|
* The panel instance
|
|
947
1545
|
*/
|
|
948
|
-
oPanel:
|
|
1546
|
+
oPanel: sap.m.p13n.IContent
|
|
949
1547
|
): sap.m.p13n.Popup;
|
|
950
1548
|
/**
|
|
951
1549
|
* Sets the desired popup mode, see also {@link sap.m.P13nPopupMode}.
|
|
@@ -958,22 +1556,6 @@ declare namespace sap {
|
|
|
958
1556
|
*/
|
|
959
1557
|
sMode: sap.m.P13nPopupMode
|
|
960
1558
|
): 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
1559
|
/**
|
|
978
1560
|
* Sets a new value for property {@link #getTitle title}.
|
|
979
1561
|
*
|
|
@@ -1006,6 +1588,65 @@ declare namespace sap {
|
|
|
1006
1588
|
sWarningText: string
|
|
1007
1589
|
): this;
|
|
1008
1590
|
}
|
|
1591
|
+
/**
|
|
1592
|
+
* @EXPERIMENTAL (since 1.104)
|
|
1593
|
+
*
|
|
1594
|
+
* The `SelectionController` serves as base class to create control specific personalization implementations.
|
|
1595
|
+
*/
|
|
1596
|
+
class SelectionController extends sap.ui.base.Object {
|
|
1597
|
+
/**
|
|
1598
|
+
* Constructor for a new `SelectionController`.
|
|
1599
|
+
*/
|
|
1600
|
+
constructor(
|
|
1601
|
+
/**
|
|
1602
|
+
* ID for the new control, generated automatically if no ID is given
|
|
1603
|
+
*/
|
|
1604
|
+
sId?: string,
|
|
1605
|
+
/**
|
|
1606
|
+
* Initial settings for the new control
|
|
1607
|
+
*/
|
|
1608
|
+
mSettings?: {
|
|
1609
|
+
/**
|
|
1610
|
+
* The control instance to be personalized by this controller
|
|
1611
|
+
*/
|
|
1612
|
+
control: sap.ui.core.Control;
|
|
1613
|
+
/**
|
|
1614
|
+
* The name of the personalized aggregation
|
|
1615
|
+
*/
|
|
1616
|
+
targetAggregation: string;
|
|
1617
|
+
}
|
|
1618
|
+
);
|
|
1619
|
+
|
|
1620
|
+
/**
|
|
1621
|
+
* Creates a new subclass of class sap.m.p13n.SelectionController with name `sClassName` and enriches it
|
|
1622
|
+
* with the information contained in `oClassInfo`.
|
|
1623
|
+
*
|
|
1624
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
|
|
1625
|
+
*
|
|
1626
|
+
* @returns Created class / constructor function
|
|
1627
|
+
*/
|
|
1628
|
+
static extend<T extends Record<string, unknown>>(
|
|
1629
|
+
/**
|
|
1630
|
+
* Name of the class being created
|
|
1631
|
+
*/
|
|
1632
|
+
sClassName: string,
|
|
1633
|
+
/**
|
|
1634
|
+
* Object literal with information about the class
|
|
1635
|
+
*/
|
|
1636
|
+
oClassInfo?: sap.ClassInfo<T, sap.m.p13n.SelectionController>,
|
|
1637
|
+
/**
|
|
1638
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1639
|
+
* used by this class
|
|
1640
|
+
*/
|
|
1641
|
+
FNMetaImpl?: Function
|
|
1642
|
+
): Function;
|
|
1643
|
+
/**
|
|
1644
|
+
* Returns a metadata object for class sap.m.p13n.SelectionController.
|
|
1645
|
+
*
|
|
1646
|
+
* @returns Metadata object describing this class
|
|
1647
|
+
*/
|
|
1648
|
+
static getMetadata(): sap.ui.base.Metadata;
|
|
1649
|
+
}
|
|
1009
1650
|
/**
|
|
1010
1651
|
* @SINCE 1.96
|
|
1011
1652
|
* @EXPERIMENTAL (since 1.96)
|
|
@@ -1013,7 +1654,7 @@ declare namespace sap {
|
|
|
1013
1654
|
* This control can be used to customize personalization content for adding/removing items for an associated
|
|
1014
1655
|
* control instance.
|
|
1015
1656
|
*/
|
|
1016
|
-
class SelectionPanel
|
|
1657
|
+
class SelectionPanel extends sap.m.p13n.BasePanel {
|
|
1017
1658
|
/**
|
|
1018
1659
|
* Constructor for a new `SelectionPanel`.
|
|
1019
1660
|
*
|
|
@@ -1117,13 +1758,24 @@ declare namespace sap {
|
|
|
1117
1758
|
/**
|
|
1118
1759
|
* Gets current value of property {@link #getShowHeader showHeader}.
|
|
1119
1760
|
*
|
|
1120
|
-
* Shows an additional header with a search field and the Show Selected button.
|
|
1761
|
+
* /** Shows an additional header with a search field and the Show Selected button.
|
|
1121
1762
|
*
|
|
1122
1763
|
* Default value is `false`.
|
|
1123
1764
|
*
|
|
1124
1765
|
* @returns Value of property `showHeader`
|
|
1125
1766
|
*/
|
|
1126
1767
|
getShowHeader(): boolean;
|
|
1768
|
+
/**
|
|
1769
|
+
* Gets current value of property {@link #getTitle title}.
|
|
1770
|
+
*
|
|
1771
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
1772
|
+
* in a `sap.m.p13n.Popup`.
|
|
1773
|
+
*
|
|
1774
|
+
* Default value is `...see text or source`.
|
|
1775
|
+
*
|
|
1776
|
+
* @returns Value of property `title`
|
|
1777
|
+
*/
|
|
1778
|
+
getTitle(): string;
|
|
1127
1779
|
/**
|
|
1128
1780
|
* Sets a new value for property {@link #getActiveColumn activeColumn}.
|
|
1129
1781
|
*
|
|
@@ -1194,17 +1846,19 @@ declare namespace sap {
|
|
|
1194
1846
|
): this;
|
|
1195
1847
|
/**
|
|
1196
1848
|
* Sets the personalization state of the panel instance.
|
|
1849
|
+
*
|
|
1850
|
+
* @returns The `SelectionPanel` instance
|
|
1197
1851
|
*/
|
|
1198
1852
|
setP13nData(
|
|
1199
1853
|
/**
|
|
1200
1854
|
* An array containing the personalization state that is represented by the `SelectionPanel`.
|
|
1201
1855
|
*/
|
|
1202
1856
|
aP13nData: sap.m.p13n.Item[]
|
|
1203
|
-
):
|
|
1857
|
+
): this;
|
|
1204
1858
|
/**
|
|
1205
1859
|
* Sets a new value for property {@link #getShowHeader showHeader}.
|
|
1206
1860
|
*
|
|
1207
|
-
* Shows an additional header with a search field and the Show Selected button.
|
|
1861
|
+
* /** Shows an additional header with a search field and the Show Selected button.
|
|
1208
1862
|
*
|
|
1209
1863
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1210
1864
|
*
|
|
@@ -1218,6 +1872,79 @@ declare namespace sap {
|
|
|
1218
1872
|
*/
|
|
1219
1873
|
bShowHeader?: boolean
|
|
1220
1874
|
): this;
|
|
1875
|
+
/**
|
|
1876
|
+
* Sets a new value for property {@link #getTitle title}.
|
|
1877
|
+
*
|
|
1878
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
1879
|
+
* in a `sap.m.p13n.Popup`.
|
|
1880
|
+
*
|
|
1881
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1882
|
+
*
|
|
1883
|
+
* Default value is `...see text or source`.
|
|
1884
|
+
*
|
|
1885
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1886
|
+
*/
|
|
1887
|
+
setTitle(
|
|
1888
|
+
/**
|
|
1889
|
+
* New value for property `title`
|
|
1890
|
+
*/
|
|
1891
|
+
sTitle?: string
|
|
1892
|
+
): this;
|
|
1893
|
+
}
|
|
1894
|
+
/**
|
|
1895
|
+
* @EXPERIMENTAL (since 1.104)
|
|
1896
|
+
*
|
|
1897
|
+
* The `SortController` serves as base class to create sort specific personalization implementations.
|
|
1898
|
+
*/
|
|
1899
|
+
class SortController extends sap.ui.base.Object {
|
|
1900
|
+
/**
|
|
1901
|
+
* Constructor for a new `SortController`.
|
|
1902
|
+
*/
|
|
1903
|
+
constructor(
|
|
1904
|
+
/**
|
|
1905
|
+
* ID for the new control, generated automatically if no ID is given
|
|
1906
|
+
*/
|
|
1907
|
+
sId?: string,
|
|
1908
|
+
/**
|
|
1909
|
+
* Initial settings for the new control
|
|
1910
|
+
*/
|
|
1911
|
+
mSettings?: {
|
|
1912
|
+
/**
|
|
1913
|
+
* The control instance to be personalized by this controller
|
|
1914
|
+
*/
|
|
1915
|
+
control: sap.ui.core.Control;
|
|
1916
|
+
}
|
|
1917
|
+
);
|
|
1918
|
+
|
|
1919
|
+
/**
|
|
1920
|
+
* Creates a new subclass of class sap.m.p13n.SortController with name `sClassName` and enriches it with
|
|
1921
|
+
* the information contained in `oClassInfo`.
|
|
1922
|
+
*
|
|
1923
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
|
|
1924
|
+
*
|
|
1925
|
+
* @returns Created class / constructor function
|
|
1926
|
+
*/
|
|
1927
|
+
static extend<T extends Record<string, unknown>>(
|
|
1928
|
+
/**
|
|
1929
|
+
* Name of the class being created
|
|
1930
|
+
*/
|
|
1931
|
+
sClassName: string,
|
|
1932
|
+
/**
|
|
1933
|
+
* Object literal with information about the class
|
|
1934
|
+
*/
|
|
1935
|
+
oClassInfo?: sap.ClassInfo<T, sap.m.p13n.SortController>,
|
|
1936
|
+
/**
|
|
1937
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1938
|
+
* used by this class
|
|
1939
|
+
*/
|
|
1940
|
+
FNMetaImpl?: Function
|
|
1941
|
+
): Function;
|
|
1942
|
+
/**
|
|
1943
|
+
* Returns a metadata object for class sap.m.p13n.SortController.
|
|
1944
|
+
*
|
|
1945
|
+
* @returns Metadata object describing this class
|
|
1946
|
+
*/
|
|
1947
|
+
static getMetadata(): sap.ui.base.Metadata;
|
|
1221
1948
|
}
|
|
1222
1949
|
/**
|
|
1223
1950
|
* @SINCE 1.96
|
|
@@ -1232,9 +1959,6 @@ declare namespace sap {
|
|
|
1232
1959
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
1233
1960
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
1234
1961
|
* 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
1962
|
*/
|
|
1239
1963
|
constructor(
|
|
1240
1964
|
/**
|
|
@@ -1248,9 +1972,6 @@ declare namespace sap {
|
|
|
1248
1972
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
1249
1973
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
1250
1974
|
* 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
1975
|
*/
|
|
1255
1976
|
constructor(
|
|
1256
1977
|
/**
|
|
@@ -1303,6 +2024,35 @@ declare namespace sap {
|
|
|
1303
2024
|
*/
|
|
1304
2025
|
aP13nData: sap.m.p13n.SortItem
|
|
1305
2026
|
): sap.m.p13n.SortPanel;
|
|
2027
|
+
/**
|
|
2028
|
+
* Gets current value of property {@link #getTitle title}.
|
|
2029
|
+
*
|
|
2030
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
2031
|
+
* in a `sap.m.p13n.Popup`.
|
|
2032
|
+
*
|
|
2033
|
+
* Default value is `...see text or source`.
|
|
2034
|
+
*
|
|
2035
|
+
* @returns Value of property `title`
|
|
2036
|
+
*/
|
|
2037
|
+
getTitle(): string;
|
|
2038
|
+
/**
|
|
2039
|
+
* Sets a new value for property {@link #getTitle title}.
|
|
2040
|
+
*
|
|
2041
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
2042
|
+
* in a `sap.m.p13n.Popup`.
|
|
2043
|
+
*
|
|
2044
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2045
|
+
*
|
|
2046
|
+
* Default value is `...see text or source`.
|
|
2047
|
+
*
|
|
2048
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2049
|
+
*/
|
|
2050
|
+
setTitle(
|
|
2051
|
+
/**
|
|
2052
|
+
* New value for property `title`
|
|
2053
|
+
*/
|
|
2054
|
+
sTitle?: string
|
|
2055
|
+
): this;
|
|
1306
2056
|
}
|
|
1307
2057
|
|
|
1308
2058
|
/**
|
|
@@ -8945,6 +9695,18 @@ declare namespace sap {
|
|
|
8945
9695
|
| string
|
|
8946
9696
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
8947
9697
|
|
|
9698
|
+
/**
|
|
9699
|
+
* Defines custom text for the 'No data' text label.
|
|
9700
|
+
*/
|
|
9701
|
+
dragDropText?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
9702
|
+
|
|
9703
|
+
/**
|
|
9704
|
+
* Defines custom text for the 'No data' description label.
|
|
9705
|
+
*/
|
|
9706
|
+
dragDropDescription?:
|
|
9707
|
+
| string
|
|
9708
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
9709
|
+
|
|
8948
9710
|
/**
|
|
8949
9711
|
* Defines whether the upload process should be triggered as soon as the file is added.
|
|
8950
9712
|
* If set to `false`, no upload is triggered when a file is added.
|
|
@@ -11607,6 +12369,22 @@ declare namespace sap {
|
|
|
11607
12369
|
* @returns Instance of the default `sap.ui.unified.FileUploader`.
|
|
11608
12370
|
*/
|
|
11609
12371
|
getDefaultFileUploader(): sap.ui.unified.FileUploader;
|
|
12372
|
+
/**
|
|
12373
|
+
* Gets current value of property {@link #getDragDropDescription dragDropDescription}.
|
|
12374
|
+
*
|
|
12375
|
+
* Defines custom text for the 'No data' description label.
|
|
12376
|
+
*
|
|
12377
|
+
* @returns Value of property `dragDropDescription`
|
|
12378
|
+
*/
|
|
12379
|
+
getDragDropDescription(): string;
|
|
12380
|
+
/**
|
|
12381
|
+
* Gets current value of property {@link #getDragDropText dragDropText}.
|
|
12382
|
+
*
|
|
12383
|
+
* Defines custom text for the 'No data' text label.
|
|
12384
|
+
*
|
|
12385
|
+
* @returns Value of property `dragDropText`
|
|
12386
|
+
*/
|
|
12387
|
+
getDragDropText(): string;
|
|
11610
12388
|
/**
|
|
11611
12389
|
* Gets current value of property {@link #getFileTypes fileTypes}.
|
|
11612
12390
|
*
|
|
@@ -12002,6 +12780,36 @@ declare namespace sap {
|
|
|
12002
12780
|
* @returns this to allow method chaining
|
|
12003
12781
|
*/
|
|
12004
12782
|
selectAll(): this;
|
|
12783
|
+
/**
|
|
12784
|
+
* Sets a new value for property {@link #getDragDropDescription dragDropDescription}.
|
|
12785
|
+
*
|
|
12786
|
+
* Defines custom text for the 'No data' description label.
|
|
12787
|
+
*
|
|
12788
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
12789
|
+
*
|
|
12790
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
12791
|
+
*/
|
|
12792
|
+
setDragDropDescription(
|
|
12793
|
+
/**
|
|
12794
|
+
* New value for property `dragDropDescription`
|
|
12795
|
+
*/
|
|
12796
|
+
sDragDropDescription?: string
|
|
12797
|
+
): this;
|
|
12798
|
+
/**
|
|
12799
|
+
* Sets a new value for property {@link #getDragDropText dragDropText}.
|
|
12800
|
+
*
|
|
12801
|
+
* Defines custom text for the 'No data' text label.
|
|
12802
|
+
*
|
|
12803
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
12804
|
+
*
|
|
12805
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
12806
|
+
*/
|
|
12807
|
+
setDragDropText(
|
|
12808
|
+
/**
|
|
12809
|
+
* New value for property `dragDropText`
|
|
12810
|
+
*/
|
|
12811
|
+
sDragDropText?: string
|
|
12812
|
+
): this;
|
|
12005
12813
|
/**
|
|
12006
12814
|
* Sets a new value for property {@link #getFileTypes fileTypes}.
|
|
12007
12815
|
*
|
|
@@ -12664,6 +13472,14 @@ declare namespace sap {
|
|
|
12664
13472
|
* Attributes of the item.
|
|
12665
13473
|
*/
|
|
12666
13474
|
getAttributes(): sap.m.ObjectAttribute[];
|
|
13475
|
+
/**
|
|
13476
|
+
* @SINCE 1.104.0
|
|
13477
|
+
*
|
|
13478
|
+
* Returns edit state of the item.
|
|
13479
|
+
*
|
|
13480
|
+
* @returns edit state of uploadSetItem
|
|
13481
|
+
*/
|
|
13482
|
+
getEditState(): boolean;
|
|
12667
13483
|
/**
|
|
12668
13484
|
* Gets current value of property {@link #getEnabledEdit enabledEdit}.
|
|
12669
13485
|
*
|
|
@@ -15405,6 +16221,16 @@ declare namespace sap {
|
|
|
15405
16221
|
| object
|
|
15406
16222
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
15407
16223
|
| `{${string}}`;
|
|
16224
|
+
|
|
16225
|
+
/**
|
|
16226
|
+
* @SINCE 1.104.0
|
|
16227
|
+
*
|
|
16228
|
+
* Fired when the value of the `DateTimeField` is changed by user interaction - each keystroke, delete,
|
|
16229
|
+
* paste, etc.
|
|
16230
|
+
*
|
|
16231
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
16232
|
+
*/
|
|
16233
|
+
liveChange?: (oEvent: sap.ui.base.Event) => void;
|
|
15408
16234
|
}
|
|
15409
16235
|
|
|
15410
16236
|
interface $DateTimeInputSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -18239,6 +19065,17 @@ declare namespace sap {
|
|
|
18239
19065
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
18240
19066
|
| `{${string}}`;
|
|
18241
19067
|
|
|
19068
|
+
/**
|
|
19069
|
+
* @SINCE 1.104
|
|
19070
|
+
*
|
|
19071
|
+
* Defines whether the `IllustratedMessage` would resize itself according to it's height if `illustrationSize`
|
|
19072
|
+
* property is set to `IllustratedMessageSize.Auto`.
|
|
19073
|
+
*/
|
|
19074
|
+
enableVerticalResponsiveness?:
|
|
19075
|
+
| boolean
|
|
19076
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
19077
|
+
| `{${string}}`;
|
|
19078
|
+
|
|
18242
19079
|
/**
|
|
18243
19080
|
* @SINCE 1.98
|
|
18244
19081
|
*
|
|
@@ -19259,8 +20096,9 @@ declare namespace sap {
|
|
|
19259
20096
|
| `{${string}}`;
|
|
19260
20097
|
|
|
19261
20098
|
/**
|
|
19262
|
-
* Defines the link target URI. Supports standard hyperlink behavior.
|
|
19263
|
-
*
|
|
20099
|
+
* Defines the link target URI. Supports standard hyperlink behavior. **Note:** Don't set `href` property
|
|
20100
|
+
* if an action should be triggered by the link. Instead set `accessibleRole` property to `LinkAccessibleRole.Button`
|
|
20101
|
+
* and register a `press` event handler.
|
|
19264
20102
|
*/
|
|
19265
20103
|
href?:
|
|
19266
20104
|
| sap.ui.core.URI
|
|
@@ -19352,6 +20190,20 @@ declare namespace sap {
|
|
|
19352
20190
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
19353
20191
|
| `{${string}}`;
|
|
19354
20192
|
|
|
20193
|
+
/**
|
|
20194
|
+
* @SINCE 1.104.0
|
|
20195
|
+
*
|
|
20196
|
+
* Describes the accessibility role of the link:
|
|
20197
|
+
* - `LinkAccessibleRole.Default` - a navagation is expected to the location given in `href` property
|
|
20198
|
+
*
|
|
20199
|
+
* - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
|
|
20200
|
+
* scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
|
|
20201
|
+
*/
|
|
20202
|
+
accessibleRole?:
|
|
20203
|
+
| sap.m.LinkAccessibleRole
|
|
20204
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
20205
|
+
| `{${string}}`;
|
|
20206
|
+
|
|
19355
20207
|
/**
|
|
19356
20208
|
* @SINCE 1.89
|
|
19357
20209
|
*
|
|
@@ -19924,6 +20776,16 @@ declare namespace sap {
|
|
|
19924
20776
|
| sap.m.MaskInputRule
|
|
19925
20777
|
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
19926
20778
|
| `{${string}}`;
|
|
20779
|
+
|
|
20780
|
+
/**
|
|
20781
|
+
* @SINCE 1.104.0
|
|
20782
|
+
*
|
|
20783
|
+
* Fired when the value of the `MaskInput` is changed by user interaction - each keystroke, delete, paste,
|
|
20784
|
+
* etc.
|
|
20785
|
+
*
|
|
20786
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
20787
|
+
*/
|
|
20788
|
+
liveChange?: (oEvent: sap.ui.base.Event) => void;
|
|
19927
20789
|
}
|
|
19928
20790
|
|
|
19929
20791
|
interface $MaskInputRuleSettings extends sap.ui.core.$ElementSettings {
|
|
@@ -26132,7 +26994,6 @@ declare namespace sap {
|
|
|
26132
26994
|
|
|
26133
26995
|
/**
|
|
26134
26996
|
* @SINCE 1.86
|
|
26135
|
-
* @EXPERIMENTAL (since 1.86)
|
|
26136
26997
|
*
|
|
26137
26998
|
* Determines the ratio between the first and the second column when secondary values are displayed.
|
|
26138
26999
|
*
|
|
@@ -29083,6 +29944,16 @@ declare namespace sap {
|
|
|
29083
29944
|
* Fired when `value help` dialog closes.
|
|
29084
29945
|
*/
|
|
29085
29946
|
afterValueHelpClose?: (oEvent: sap.ui.base.Event) => void;
|
|
29947
|
+
|
|
29948
|
+
/**
|
|
29949
|
+
* @SINCE 1.104.0
|
|
29950
|
+
*
|
|
29951
|
+
* Fired when the value of the `TimePicker` is changed by user interaction - each keystroke, delete, paste,
|
|
29952
|
+
* etc.
|
|
29953
|
+
*
|
|
29954
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
29955
|
+
*/
|
|
29956
|
+
liveChange?: (oEvent: sap.ui.base.Event) => void;
|
|
29086
29957
|
}
|
|
29087
29958
|
|
|
29088
29959
|
interface $TimePickerClocksSettings extends sap.ui.core.$ControlSettings {}
|
|
@@ -30055,6 +30926,108 @@ declare namespace sap {
|
|
|
30055
30926
|
interface $UploadCollectionToolbarPlaceholderSettings
|
|
30056
30927
|
extends sap.ui.core.$ControlSettings {}
|
|
30057
30928
|
|
|
30929
|
+
interface $VariantItemSettings extends sap.ui.core.$ItemSettings {
|
|
30930
|
+
/**
|
|
30931
|
+
* Contains the information is the item is public or private.
|
|
30932
|
+
*/
|
|
30933
|
+
sharing?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
30934
|
+
|
|
30935
|
+
/**
|
|
30936
|
+
* Indicates if the item is removable.
|
|
30937
|
+
*/
|
|
30938
|
+
remove?:
|
|
30939
|
+
| boolean
|
|
30940
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
30941
|
+
| `{${string}}`;
|
|
30942
|
+
|
|
30943
|
+
/**
|
|
30944
|
+
* Indicates if the item is marked as favorite.
|
|
30945
|
+
*/
|
|
30946
|
+
favorite?:
|
|
30947
|
+
| boolean
|
|
30948
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
30949
|
+
| `{${string}}`;
|
|
30950
|
+
|
|
30951
|
+
/**
|
|
30952
|
+
* Contains the initial value of the property `favorite`. Is used for cancel operations.
|
|
30953
|
+
*/
|
|
30954
|
+
originalFavorite?:
|
|
30955
|
+
| boolean
|
|
30956
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
30957
|
+
| `{${string}}`;
|
|
30958
|
+
|
|
30959
|
+
/**
|
|
30960
|
+
* Indicates if the item is marked as apply automatically.
|
|
30961
|
+
*/
|
|
30962
|
+
executeOnSelect?:
|
|
30963
|
+
| boolean
|
|
30964
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
30965
|
+
| `{${string}}`;
|
|
30966
|
+
|
|
30967
|
+
/**
|
|
30968
|
+
* Contains the initial value of the property `executeOnSelect`. Is used for cancel operations.
|
|
30969
|
+
*/
|
|
30970
|
+
originalExecuteOnSelect?:
|
|
30971
|
+
| boolean
|
|
30972
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
30973
|
+
| `{${string}}`;
|
|
30974
|
+
|
|
30975
|
+
/**
|
|
30976
|
+
* Indicates if the item is renamable.
|
|
30977
|
+
*/
|
|
30978
|
+
rename?:
|
|
30979
|
+
| boolean
|
|
30980
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
30981
|
+
| `{${string}}`;
|
|
30982
|
+
|
|
30983
|
+
/**
|
|
30984
|
+
* Contains the title if the item.
|
|
30985
|
+
*/
|
|
30986
|
+
title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
30987
|
+
|
|
30988
|
+
/**
|
|
30989
|
+
* Contains the initial value of the property `title`. Is used for cancel operations.
|
|
30990
|
+
*/
|
|
30991
|
+
originalTitle?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
30992
|
+
|
|
30993
|
+
/**
|
|
30994
|
+
* Indicates if the item is visible.
|
|
30995
|
+
*/
|
|
30996
|
+
visible?:
|
|
30997
|
+
| boolean
|
|
30998
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
30999
|
+
| `{${string}}`;
|
|
31000
|
+
|
|
31001
|
+
/**
|
|
31002
|
+
* Indicates if the item is changeable.
|
|
31003
|
+
*/
|
|
31004
|
+
changeable?:
|
|
31005
|
+
| boolean
|
|
31006
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
31007
|
+
| `{${string}}`;
|
|
31008
|
+
|
|
31009
|
+
/**
|
|
31010
|
+
* Contains the author information of the item.
|
|
31011
|
+
*/
|
|
31012
|
+
author?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
31013
|
+
|
|
31014
|
+
/**
|
|
31015
|
+
* Contains the contexts information of the item.
|
|
31016
|
+
*/
|
|
31017
|
+
contexts?:
|
|
31018
|
+
| object
|
|
31019
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
31020
|
+
| `{${string}}`;
|
|
31021
|
+
|
|
31022
|
+
/**
|
|
31023
|
+
* Contains the initial value of the property `contexts`. Is used for cancel operations.
|
|
31024
|
+
*/
|
|
31025
|
+
originalContexts?:
|
|
31026
|
+
| object
|
|
31027
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
31028
|
+
| `{${string}}`;
|
|
31029
|
+
}
|
|
31030
|
+
|
|
30058
31031
|
interface $VBoxSettings extends sap.m.$FlexBoxSettings {}
|
|
30059
31032
|
|
|
30060
31033
|
interface $ViewSettingsCustomItemSettings
|
|
@@ -44032,6 +45005,102 @@ declare namespace sap {
|
|
|
44032
45005
|
* @returns Metadata object describing this class
|
|
44033
45006
|
*/
|
|
44034
45007
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
45008
|
+
/**
|
|
45009
|
+
* @SINCE 1.104.0
|
|
45010
|
+
*
|
|
45011
|
+
* Attaches event handler `fnFunction` to the {@link #event:liveChange liveChange} event of this `sap.m.DateTimeField`.
|
|
45012
|
+
*
|
|
45013
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
45014
|
+
* otherwise it will be bound to this `sap.m.DateTimeField` itself.
|
|
45015
|
+
*
|
|
45016
|
+
* Fired when the value of the `DateTimeField` is changed by user interaction - each keystroke, delete,
|
|
45017
|
+
* paste, etc.
|
|
45018
|
+
*
|
|
45019
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
45020
|
+
*
|
|
45021
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
45022
|
+
*/
|
|
45023
|
+
attachLiveChange(
|
|
45024
|
+
/**
|
|
45025
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
45026
|
+
* object when firing the event
|
|
45027
|
+
*/
|
|
45028
|
+
oData: object,
|
|
45029
|
+
/**
|
|
45030
|
+
* The function to be called when the event occurs
|
|
45031
|
+
*/
|
|
45032
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
45033
|
+
/**
|
|
45034
|
+
* Context object to call the event handler with. Defaults to this `sap.m.DateTimeField` itself
|
|
45035
|
+
*/
|
|
45036
|
+
oListener?: object
|
|
45037
|
+
): this;
|
|
45038
|
+
/**
|
|
45039
|
+
* @SINCE 1.104.0
|
|
45040
|
+
*
|
|
45041
|
+
* Attaches event handler `fnFunction` to the {@link #event:liveChange liveChange} event of this `sap.m.DateTimeField`.
|
|
45042
|
+
*
|
|
45043
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
45044
|
+
* otherwise it will be bound to this `sap.m.DateTimeField` itself.
|
|
45045
|
+
*
|
|
45046
|
+
* Fired when the value of the `DateTimeField` is changed by user interaction - each keystroke, delete,
|
|
45047
|
+
* paste, etc.
|
|
45048
|
+
*
|
|
45049
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
45050
|
+
*
|
|
45051
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
45052
|
+
*/
|
|
45053
|
+
attachLiveChange(
|
|
45054
|
+
/**
|
|
45055
|
+
* The function to be called when the event occurs
|
|
45056
|
+
*/
|
|
45057
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
45058
|
+
/**
|
|
45059
|
+
* Context object to call the event handler with. Defaults to this `sap.m.DateTimeField` itself
|
|
45060
|
+
*/
|
|
45061
|
+
oListener?: object
|
|
45062
|
+
): this;
|
|
45063
|
+
/**
|
|
45064
|
+
* @SINCE 1.104.0
|
|
45065
|
+
*
|
|
45066
|
+
* Detaches event handler `fnFunction` from the {@link #event:liveChange liveChange} event of this `sap.m.DateTimeField`.
|
|
45067
|
+
*
|
|
45068
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
45069
|
+
*
|
|
45070
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
45071
|
+
*/
|
|
45072
|
+
detachLiveChange(
|
|
45073
|
+
/**
|
|
45074
|
+
* The function to be called, when the event occurs
|
|
45075
|
+
*/
|
|
45076
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
45077
|
+
/**
|
|
45078
|
+
* Context object on which the given function had to be called
|
|
45079
|
+
*/
|
|
45080
|
+
oListener?: object
|
|
45081
|
+
): this;
|
|
45082
|
+
/**
|
|
45083
|
+
* @SINCE 1.104.0
|
|
45084
|
+
*
|
|
45085
|
+
* Fires event {@link #event:liveChange liveChange} to attached listeners.
|
|
45086
|
+
*
|
|
45087
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
45088
|
+
*/
|
|
45089
|
+
fireLiveChange(
|
|
45090
|
+
/**
|
|
45091
|
+
* Parameters to pass along with the event
|
|
45092
|
+
*/
|
|
45093
|
+
mParameters?: {
|
|
45094
|
+
/**
|
|
45095
|
+
* The current value of the input, after a live change event.
|
|
45096
|
+
*/
|
|
45097
|
+
value?: string;
|
|
45098
|
+
/**
|
|
45099
|
+
* The previous value of the input, before the last user interaction.
|
|
45100
|
+
*/
|
|
45101
|
+
previousValue?: string;
|
|
45102
|
+
}
|
|
45103
|
+
): this;
|
|
44035
45104
|
/**
|
|
44036
45105
|
* Gets current value of property {@link #getDateValue dateValue}.
|
|
44037
45106
|
*
|
|
@@ -44052,6 +45121,12 @@ declare namespace sap {
|
|
|
44052
45121
|
* @returns Value of property `displayFormat`
|
|
44053
45122
|
*/
|
|
44054
45123
|
getDisplayFormat(): string;
|
|
45124
|
+
/**
|
|
45125
|
+
* Gets the inner input DOM value.
|
|
45126
|
+
*
|
|
45127
|
+
* @returns The value of the input.
|
|
45128
|
+
*/
|
|
45129
|
+
getDOMValue(): any;
|
|
44055
45130
|
/**
|
|
44056
45131
|
* @SINCE 1.54
|
|
44057
45132
|
*
|
|
@@ -44077,6 +45152,15 @@ declare namespace sap {
|
|
|
44077
45152
|
* @returns Value of property `valueFormat`
|
|
44078
45153
|
*/
|
|
44079
45154
|
getValueFormat(): string;
|
|
45155
|
+
/**
|
|
45156
|
+
* Event handler for user input.
|
|
45157
|
+
*/
|
|
45158
|
+
oninput(
|
|
45159
|
+
/**
|
|
45160
|
+
* User input.
|
|
45161
|
+
*/
|
|
45162
|
+
oEvent: jQuery.Event
|
|
45163
|
+
): void;
|
|
44080
45164
|
/**
|
|
44081
45165
|
* Sets a new value for property {@link #getDateValue dateValue}.
|
|
44082
45166
|
*
|
|
@@ -57871,6 +58955,19 @@ declare namespace sap {
|
|
|
57871
58955
|
* @returns Value of property `enableFormattedText`
|
|
57872
58956
|
*/
|
|
57873
58957
|
getEnableFormattedText(): boolean;
|
|
58958
|
+
/**
|
|
58959
|
+
* @SINCE 1.104
|
|
58960
|
+
*
|
|
58961
|
+
* Gets current value of property {@link #getEnableVerticalResponsiveness enableVerticalResponsiveness}.
|
|
58962
|
+
*
|
|
58963
|
+
* Defines whether the `IllustratedMessage` would resize itself according to it's height if `illustrationSize`
|
|
58964
|
+
* property is set to `IllustratedMessageSize.Auto`.
|
|
58965
|
+
*
|
|
58966
|
+
* Default value is `false`.
|
|
58967
|
+
*
|
|
58968
|
+
* @returns Value of property `enableVerticalResponsiveness`
|
|
58969
|
+
*/
|
|
58970
|
+
getEnableVerticalResponsiveness(): boolean;
|
|
57874
58971
|
/**
|
|
57875
58972
|
* @SINCE 1.98
|
|
57876
58973
|
*
|
|
@@ -58021,6 +59118,26 @@ declare namespace sap {
|
|
|
58021
59118
|
*/
|
|
58022
59119
|
bEnableFormattedText?: boolean
|
|
58023
59120
|
): this;
|
|
59121
|
+
/**
|
|
59122
|
+
* @SINCE 1.104
|
|
59123
|
+
*
|
|
59124
|
+
* Sets a new value for property {@link #getEnableVerticalResponsiveness enableVerticalResponsiveness}.
|
|
59125
|
+
*
|
|
59126
|
+
* Defines whether the `IllustratedMessage` would resize itself according to it's height if `illustrationSize`
|
|
59127
|
+
* property is set to `IllustratedMessageSize.Auto`.
|
|
59128
|
+
*
|
|
59129
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
59130
|
+
*
|
|
59131
|
+
* Default value is `false`.
|
|
59132
|
+
*
|
|
59133
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
59134
|
+
*/
|
|
59135
|
+
setEnableVerticalResponsiveness(
|
|
59136
|
+
/**
|
|
59137
|
+
* New value for property `enableVerticalResponsiveness`
|
|
59138
|
+
*/
|
|
59139
|
+
bEnableVerticalResponsiveness?: boolean
|
|
59140
|
+
): this;
|
|
58024
59141
|
/**
|
|
58025
59142
|
* @SINCE 1.98
|
|
58026
59143
|
*
|
|
@@ -63586,6 +64703,22 @@ declare namespace sap {
|
|
|
63586
64703
|
* @returns The `sap.m.Link` accessibility information
|
|
63587
64704
|
*/
|
|
63588
64705
|
getAccessibilityInfo(): object;
|
|
64706
|
+
/**
|
|
64707
|
+
* @SINCE 1.104.0
|
|
64708
|
+
*
|
|
64709
|
+
* Gets current value of property {@link #getAccessibleRole accessibleRole}.
|
|
64710
|
+
*
|
|
64711
|
+
* Describes the accessibility role of the link:
|
|
64712
|
+
* - `LinkAccessibleRole.Default` - a navagation is expected to the location given in `href` property
|
|
64713
|
+
*
|
|
64714
|
+
* - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
|
|
64715
|
+
* scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
|
|
64716
|
+
*
|
|
64717
|
+
* Default value is `Default`.
|
|
64718
|
+
*
|
|
64719
|
+
* @returns Value of property `accessibleRole`
|
|
64720
|
+
*/
|
|
64721
|
+
getAccessibleRole(): sap.m.LinkAccessibleRole;
|
|
63589
64722
|
/**
|
|
63590
64723
|
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
|
|
63591
64724
|
* ariaDescribedBy}.
|
|
@@ -63654,8 +64787,9 @@ declare namespace sap {
|
|
|
63654
64787
|
/**
|
|
63655
64788
|
* Gets current value of property {@link #getHref href}.
|
|
63656
64789
|
*
|
|
63657
|
-
* Defines the link target URI. Supports standard hyperlink behavior.
|
|
63658
|
-
*
|
|
64790
|
+
* Defines the link target URI. Supports standard hyperlink behavior. **Note:** Don't set `href` property
|
|
64791
|
+
* if an action should be triggered by the link. Instead set `accessibleRole` property to `LinkAccessibleRole.Button`
|
|
64792
|
+
* and register a `press` event handler.
|
|
63659
64793
|
*
|
|
63660
64794
|
* @returns Value of property `href`
|
|
63661
64795
|
*/
|
|
@@ -63804,6 +64938,29 @@ declare namespace sap {
|
|
|
63804
64938
|
*/
|
|
63805
64939
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
63806
64940
|
): sap.ui.core.ID;
|
|
64941
|
+
/**
|
|
64942
|
+
* @SINCE 1.104.0
|
|
64943
|
+
*
|
|
64944
|
+
* Sets a new value for property {@link #getAccessibleRole accessibleRole}.
|
|
64945
|
+
*
|
|
64946
|
+
* Describes the accessibility role of the link:
|
|
64947
|
+
* - `LinkAccessibleRole.Default` - a navagation is expected to the location given in `href` property
|
|
64948
|
+
*
|
|
64949
|
+
* - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
|
|
64950
|
+
* scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
|
|
64951
|
+
*
|
|
64952
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
64953
|
+
*
|
|
64954
|
+
* Default value is `Default`.
|
|
64955
|
+
*
|
|
64956
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
64957
|
+
*/
|
|
64958
|
+
setAccessibleRole(
|
|
64959
|
+
/**
|
|
64960
|
+
* New value for property `accessibleRole`
|
|
64961
|
+
*/
|
|
64962
|
+
sAccessibleRole?: sap.m.LinkAccessibleRole
|
|
64963
|
+
): this;
|
|
63807
64964
|
/**
|
|
63808
64965
|
* @SINCE 1.86.0
|
|
63809
64966
|
*
|
|
@@ -63890,8 +65047,9 @@ declare namespace sap {
|
|
|
63890
65047
|
/**
|
|
63891
65048
|
* Sets a new value for property {@link #getHref href}.
|
|
63892
65049
|
*
|
|
63893
|
-
* Defines the link target URI. Supports standard hyperlink behavior.
|
|
63894
|
-
*
|
|
65050
|
+
* Defines the link target URI. Supports standard hyperlink behavior. **Note:** Don't set `href` property
|
|
65051
|
+
* if an action should be triggered by the link. Instead set `accessibleRole` property to `LinkAccessibleRole.Button`
|
|
65052
|
+
* and register a `press` event handler.
|
|
63895
65053
|
*
|
|
63896
65054
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
63897
65055
|
*
|
|
@@ -67143,12 +68301,108 @@ declare namespace sap {
|
|
|
67143
68301
|
*/
|
|
67144
68302
|
oRule: sap.m.MaskInputRule
|
|
67145
68303
|
): this;
|
|
68304
|
+
/**
|
|
68305
|
+
* @SINCE 1.104.0
|
|
68306
|
+
*
|
|
68307
|
+
* Attaches event handler `fnFunction` to the {@link #event:liveChange liveChange} event of this `sap.m.MaskInput`.
|
|
68308
|
+
*
|
|
68309
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
68310
|
+
* otherwise it will be bound to this `sap.m.MaskInput` itself.
|
|
68311
|
+
*
|
|
68312
|
+
* Fired when the value of the `MaskInput` is changed by user interaction - each keystroke, delete, paste,
|
|
68313
|
+
* etc.
|
|
68314
|
+
*
|
|
68315
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
68316
|
+
*
|
|
68317
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
68318
|
+
*/
|
|
68319
|
+
attachLiveChange(
|
|
68320
|
+
/**
|
|
68321
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
68322
|
+
* object when firing the event
|
|
68323
|
+
*/
|
|
68324
|
+
oData: object,
|
|
68325
|
+
/**
|
|
68326
|
+
* The function to be called when the event occurs
|
|
68327
|
+
*/
|
|
68328
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
68329
|
+
/**
|
|
68330
|
+
* Context object to call the event handler with. Defaults to this `sap.m.MaskInput` itself
|
|
68331
|
+
*/
|
|
68332
|
+
oListener?: object
|
|
68333
|
+
): this;
|
|
68334
|
+
/**
|
|
68335
|
+
* @SINCE 1.104.0
|
|
68336
|
+
*
|
|
68337
|
+
* Attaches event handler `fnFunction` to the {@link #event:liveChange liveChange} event of this `sap.m.MaskInput`.
|
|
68338
|
+
*
|
|
68339
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
68340
|
+
* otherwise it will be bound to this `sap.m.MaskInput` itself.
|
|
68341
|
+
*
|
|
68342
|
+
* Fired when the value of the `MaskInput` is changed by user interaction - each keystroke, delete, paste,
|
|
68343
|
+
* etc.
|
|
68344
|
+
*
|
|
68345
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
68346
|
+
*
|
|
68347
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
68348
|
+
*/
|
|
68349
|
+
attachLiveChange(
|
|
68350
|
+
/**
|
|
68351
|
+
* The function to be called when the event occurs
|
|
68352
|
+
*/
|
|
68353
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
68354
|
+
/**
|
|
68355
|
+
* Context object to call the event handler with. Defaults to this `sap.m.MaskInput` itself
|
|
68356
|
+
*/
|
|
68357
|
+
oListener?: object
|
|
68358
|
+
): this;
|
|
67146
68359
|
/**
|
|
67147
68360
|
* Destroys all the rules in the aggregation {@link #getRules rules}.
|
|
67148
68361
|
*
|
|
67149
68362
|
* @returns Reference to `this` in order to allow method chaining
|
|
67150
68363
|
*/
|
|
67151
68364
|
destroyRules(): this;
|
|
68365
|
+
/**
|
|
68366
|
+
* @SINCE 1.104.0
|
|
68367
|
+
*
|
|
68368
|
+
* Detaches event handler `fnFunction` from the {@link #event:liveChange liveChange} event of this `sap.m.MaskInput`.
|
|
68369
|
+
*
|
|
68370
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
68371
|
+
*
|
|
68372
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
68373
|
+
*/
|
|
68374
|
+
detachLiveChange(
|
|
68375
|
+
/**
|
|
68376
|
+
* The function to be called, when the event occurs
|
|
68377
|
+
*/
|
|
68378
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
68379
|
+
/**
|
|
68380
|
+
* Context object on which the given function had to be called
|
|
68381
|
+
*/
|
|
68382
|
+
oListener?: object
|
|
68383
|
+
): this;
|
|
68384
|
+
/**
|
|
68385
|
+
* @SINCE 1.104.0
|
|
68386
|
+
*
|
|
68387
|
+
* Fires event {@link #event:liveChange liveChange} to attached listeners.
|
|
68388
|
+
*
|
|
68389
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
68390
|
+
*/
|
|
68391
|
+
fireLiveChange(
|
|
68392
|
+
/**
|
|
68393
|
+
* Parameters to pass along with the event
|
|
68394
|
+
*/
|
|
68395
|
+
mParameters?: {
|
|
68396
|
+
/**
|
|
68397
|
+
* The current value of the input, after a live change event.
|
|
68398
|
+
*/
|
|
68399
|
+
value?: string;
|
|
68400
|
+
/**
|
|
68401
|
+
* The previous value of the input, before the last user interaction.
|
|
68402
|
+
*/
|
|
68403
|
+
previousValue?: string;
|
|
68404
|
+
}
|
|
68405
|
+
): this;
|
|
67152
68406
|
/**
|
|
67153
68407
|
* Gets current value of property {@link #getMask mask}.
|
|
67154
68408
|
*
|
|
@@ -85872,7 +87126,8 @@ declare namespace sap {
|
|
|
85872
87126
|
*
|
|
85873
87127
|
* An abstract base type for `panels` aggregation in `P13nDialog` control.
|
|
85874
87128
|
*/
|
|
85875
|
-
class P13nPanel extends sap.ui.core.Control {
|
|
87129
|
+
class P13nPanel extends sap.ui.core.Control implements sap.m.p13n.IContent {
|
|
87130
|
+
__implements__sap_m_p13n_IContent: boolean;
|
|
85876
87131
|
/**
|
|
85877
87132
|
* Constructor for a new P13nPanel.
|
|
85878
87133
|
*
|
|
@@ -103083,7 +104338,6 @@ declare namespace sap {
|
|
|
103083
104338
|
getAutoAdjustWidth(): boolean;
|
|
103084
104339
|
/**
|
|
103085
104340
|
* @SINCE 1.86
|
|
103086
|
-
* @EXPERIMENTAL (since 1.86)
|
|
103087
104341
|
*
|
|
103088
104342
|
* Gets current value of property {@link #getColumnRatio columnRatio}.
|
|
103089
104343
|
*
|
|
@@ -103536,7 +104790,6 @@ declare namespace sap {
|
|
|
103536
104790
|
): this;
|
|
103537
104791
|
/**
|
|
103538
104792
|
* @SINCE 1.86
|
|
103539
|
-
* @EXPERIMENTAL (since 1.86)
|
|
103540
104793
|
*
|
|
103541
104794
|
* Sets a new value for property {@link #getColumnRatio columnRatio}.
|
|
103542
104795
|
*
|
|
@@ -122221,6 +123474,61 @@ declare namespace sap {
|
|
|
122221
123474
|
*/
|
|
122222
123475
|
oListener?: object
|
|
122223
123476
|
): this;
|
|
123477
|
+
/**
|
|
123478
|
+
* @SINCE 1.104.0
|
|
123479
|
+
*
|
|
123480
|
+
* Attaches event handler `fnFunction` to the {@link #event:liveChange liveChange} event of this `sap.m.TimePicker`.
|
|
123481
|
+
*
|
|
123482
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
123483
|
+
* otherwise it will be bound to this `sap.m.TimePicker` itself.
|
|
123484
|
+
*
|
|
123485
|
+
* Fired when the value of the `TimePicker` is changed by user interaction - each keystroke, delete, paste,
|
|
123486
|
+
* etc.
|
|
123487
|
+
*
|
|
123488
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
123489
|
+
*
|
|
123490
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
123491
|
+
*/
|
|
123492
|
+
attachLiveChange(
|
|
123493
|
+
/**
|
|
123494
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
123495
|
+
* object when firing the event
|
|
123496
|
+
*/
|
|
123497
|
+
oData: object,
|
|
123498
|
+
/**
|
|
123499
|
+
* The function to be called when the event occurs
|
|
123500
|
+
*/
|
|
123501
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
123502
|
+
/**
|
|
123503
|
+
* Context object to call the event handler with. Defaults to this `sap.m.TimePicker` itself
|
|
123504
|
+
*/
|
|
123505
|
+
oListener?: object
|
|
123506
|
+
): this;
|
|
123507
|
+
/**
|
|
123508
|
+
* @SINCE 1.104.0
|
|
123509
|
+
*
|
|
123510
|
+
* Attaches event handler `fnFunction` to the {@link #event:liveChange liveChange} event of this `sap.m.TimePicker`.
|
|
123511
|
+
*
|
|
123512
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
123513
|
+
* otherwise it will be bound to this `sap.m.TimePicker` itself.
|
|
123514
|
+
*
|
|
123515
|
+
* Fired when the value of the `TimePicker` is changed by user interaction - each keystroke, delete, paste,
|
|
123516
|
+
* etc.
|
|
123517
|
+
*
|
|
123518
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
123519
|
+
*
|
|
123520
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
123521
|
+
*/
|
|
123522
|
+
attachLiveChange(
|
|
123523
|
+
/**
|
|
123524
|
+
* The function to be called when the event occurs
|
|
123525
|
+
*/
|
|
123526
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
123527
|
+
/**
|
|
123528
|
+
* Context object to call the event handler with. Defaults to this `sap.m.TimePicker` itself
|
|
123529
|
+
*/
|
|
123530
|
+
oListener?: object
|
|
123531
|
+
): this;
|
|
122224
123532
|
/**
|
|
122225
123533
|
* Destroys all the rules in the aggregation {@link #getRules rules}.
|
|
122226
123534
|
*
|
|
@@ -122267,6 +123575,25 @@ declare namespace sap {
|
|
|
122267
123575
|
*/
|
|
122268
123576
|
oListener?: object
|
|
122269
123577
|
): this;
|
|
123578
|
+
/**
|
|
123579
|
+
* @SINCE 1.104.0
|
|
123580
|
+
*
|
|
123581
|
+
* Detaches event handler `fnFunction` from the {@link #event:liveChange liveChange} event of this `sap.m.TimePicker`.
|
|
123582
|
+
*
|
|
123583
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
123584
|
+
*
|
|
123585
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
123586
|
+
*/
|
|
123587
|
+
detachLiveChange(
|
|
123588
|
+
/**
|
|
123589
|
+
* The function to be called, when the event occurs
|
|
123590
|
+
*/
|
|
123591
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
123592
|
+
/**
|
|
123593
|
+
* Context object on which the given function had to be called
|
|
123594
|
+
*/
|
|
123595
|
+
oListener?: object
|
|
123596
|
+
): this;
|
|
122270
123597
|
/**
|
|
122271
123598
|
* @SINCE 1.102.0
|
|
122272
123599
|
*
|
|
@@ -122321,6 +123648,28 @@ declare namespace sap {
|
|
|
122321
123648
|
*/
|
|
122322
123649
|
oParams?: object
|
|
122323
123650
|
): void;
|
|
123651
|
+
/**
|
|
123652
|
+
* @SINCE 1.104.0
|
|
123653
|
+
*
|
|
123654
|
+
* Fires event {@link #event:liveChange liveChange} to attached listeners.
|
|
123655
|
+
*
|
|
123656
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
123657
|
+
*/
|
|
123658
|
+
fireLiveChange(
|
|
123659
|
+
/**
|
|
123660
|
+
* Parameters to pass along with the event
|
|
123661
|
+
*/
|
|
123662
|
+
mParameters?: {
|
|
123663
|
+
/**
|
|
123664
|
+
* The current value of the input, after a live change event.
|
|
123665
|
+
*/
|
|
123666
|
+
value?: string;
|
|
123667
|
+
/**
|
|
123668
|
+
* The previous value of the input, before the last user interaction.
|
|
123669
|
+
*/
|
|
123670
|
+
previousValue?: string;
|
|
123671
|
+
}
|
|
123672
|
+
): this;
|
|
122324
123673
|
/**
|
|
122325
123674
|
* See:
|
|
122326
123675
|
* sap.ui.core.Control#getAccessibilityInfo
|
|
@@ -129628,6 +130977,437 @@ declare namespace sap {
|
|
|
129628
130977
|
*/
|
|
129629
130978
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
129630
130979
|
}
|
|
130980
|
+
/**
|
|
130981
|
+
* The VariantItem class describes a variant item.
|
|
130982
|
+
*/
|
|
130983
|
+
class VariantItem extends sap.ui.core.Item {
|
|
130984
|
+
/**
|
|
130985
|
+
* Constructor for a new sap.m.VariantItem.
|
|
130986
|
+
*
|
|
130987
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
130988
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
130989
|
+
* of the syntax of the settings object.
|
|
130990
|
+
*/
|
|
130991
|
+
constructor(
|
|
130992
|
+
/**
|
|
130993
|
+
* Initial settings for the new control
|
|
130994
|
+
*/
|
|
130995
|
+
mSettings?: sap.m.$VariantItemSettings
|
|
130996
|
+
);
|
|
130997
|
+
/**
|
|
130998
|
+
* Constructor for a new sap.m.VariantItem.
|
|
130999
|
+
*
|
|
131000
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
131001
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
131002
|
+
* of the syntax of the settings object.
|
|
131003
|
+
*/
|
|
131004
|
+
constructor(
|
|
131005
|
+
/**
|
|
131006
|
+
* ID for the new control, generated automatically if no ID is given
|
|
131007
|
+
*/
|
|
131008
|
+
sId?: string,
|
|
131009
|
+
/**
|
|
131010
|
+
* Initial settings for the new control
|
|
131011
|
+
*/
|
|
131012
|
+
mSettings?: sap.m.$VariantItemSettings
|
|
131013
|
+
);
|
|
131014
|
+
|
|
131015
|
+
/**
|
|
131016
|
+
* Creates a new subclass of class sap.m.VariantItem with name `sClassName` and enriches it with the information
|
|
131017
|
+
* contained in `oClassInfo`.
|
|
131018
|
+
*
|
|
131019
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Item.extend}.
|
|
131020
|
+
*
|
|
131021
|
+
* @returns Created class / constructor function
|
|
131022
|
+
*/
|
|
131023
|
+
static extend<T extends Record<string, unknown>>(
|
|
131024
|
+
/**
|
|
131025
|
+
* Name of the class being created
|
|
131026
|
+
*/
|
|
131027
|
+
sClassName: string,
|
|
131028
|
+
/**
|
|
131029
|
+
* Object literal with information about the class
|
|
131030
|
+
*/
|
|
131031
|
+
oClassInfo?: sap.ClassInfo<T, sap.m.VariantItem>,
|
|
131032
|
+
/**
|
|
131033
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
131034
|
+
* used by this class
|
|
131035
|
+
*/
|
|
131036
|
+
FNMetaImpl?: Function
|
|
131037
|
+
): Function;
|
|
131038
|
+
/**
|
|
131039
|
+
* Returns a metadata object for class sap.m.VariantItem.
|
|
131040
|
+
*
|
|
131041
|
+
* @returns Metadata object describing this class
|
|
131042
|
+
*/
|
|
131043
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
131044
|
+
/**
|
|
131045
|
+
* Gets current value of property {@link #getAuthor author}.
|
|
131046
|
+
*
|
|
131047
|
+
* Contains the author information of the item.
|
|
131048
|
+
*
|
|
131049
|
+
* @returns Value of property `author`
|
|
131050
|
+
*/
|
|
131051
|
+
getAuthor(): string;
|
|
131052
|
+
/**
|
|
131053
|
+
* Gets current value of property {@link #getChangeable changeable}.
|
|
131054
|
+
*
|
|
131055
|
+
* Indicates if the item is changeable.
|
|
131056
|
+
*
|
|
131057
|
+
* Default value is `false`.
|
|
131058
|
+
*
|
|
131059
|
+
* @returns Value of property `changeable`
|
|
131060
|
+
*/
|
|
131061
|
+
getChangeable(): boolean;
|
|
131062
|
+
/**
|
|
131063
|
+
* Gets current value of property {@link #getContexts contexts}.
|
|
131064
|
+
*
|
|
131065
|
+
* Contains the contexts information of the item.
|
|
131066
|
+
*
|
|
131067
|
+
* Default value is `{}`.
|
|
131068
|
+
*
|
|
131069
|
+
* @returns Value of property `contexts`
|
|
131070
|
+
*/
|
|
131071
|
+
getContexts(): object;
|
|
131072
|
+
/**
|
|
131073
|
+
* Gets current value of property {@link #getExecuteOnSelect executeOnSelect}.
|
|
131074
|
+
*
|
|
131075
|
+
* Indicates if the item is marked as apply automatically.
|
|
131076
|
+
*
|
|
131077
|
+
* Default value is `false`.
|
|
131078
|
+
*
|
|
131079
|
+
* @returns Value of property `executeOnSelect`
|
|
131080
|
+
*/
|
|
131081
|
+
getExecuteOnSelect(): boolean;
|
|
131082
|
+
/**
|
|
131083
|
+
* Gets current value of property {@link #getFavorite favorite}.
|
|
131084
|
+
*
|
|
131085
|
+
* Indicates if the item is marked as favorite.
|
|
131086
|
+
*
|
|
131087
|
+
* Default value is `true`.
|
|
131088
|
+
*
|
|
131089
|
+
* @returns Value of property `favorite`
|
|
131090
|
+
*/
|
|
131091
|
+
getFavorite(): boolean;
|
|
131092
|
+
/**
|
|
131093
|
+
* Gets current value of property {@link #getOriginalContexts originalContexts}.
|
|
131094
|
+
*
|
|
131095
|
+
* Contains the initial value of the property `contexts`. Is used for cancel operations.
|
|
131096
|
+
*
|
|
131097
|
+
* Default value is `{}`.
|
|
131098
|
+
*
|
|
131099
|
+
* @returns Value of property `originalContexts`
|
|
131100
|
+
*/
|
|
131101
|
+
getOriginalContexts(): object;
|
|
131102
|
+
/**
|
|
131103
|
+
* Gets current value of property {@link #getOriginalExecuteOnSelect originalExecuteOnSelect}.
|
|
131104
|
+
*
|
|
131105
|
+
* Contains the initial value of the property `executeOnSelect`. Is used for cancel operations.
|
|
131106
|
+
*
|
|
131107
|
+
* Default value is `false`.
|
|
131108
|
+
*
|
|
131109
|
+
* @returns Value of property `originalExecuteOnSelect`
|
|
131110
|
+
*/
|
|
131111
|
+
getOriginalExecuteOnSelect(): boolean;
|
|
131112
|
+
/**
|
|
131113
|
+
* Gets current value of property {@link #getOriginalFavorite originalFavorite}.
|
|
131114
|
+
*
|
|
131115
|
+
* Contains the initial value of the property `favorite`. Is used for cancel operations.
|
|
131116
|
+
*
|
|
131117
|
+
* Default value is `true`.
|
|
131118
|
+
*
|
|
131119
|
+
* @returns Value of property `originalFavorite`
|
|
131120
|
+
*/
|
|
131121
|
+
getOriginalFavorite(): boolean;
|
|
131122
|
+
/**
|
|
131123
|
+
* Gets current value of property {@link #getOriginalTitle originalTitle}.
|
|
131124
|
+
*
|
|
131125
|
+
* Contains the initial value of the property `title`. Is used for cancel operations.
|
|
131126
|
+
*
|
|
131127
|
+
* @returns Value of property `originalTitle`
|
|
131128
|
+
*/
|
|
131129
|
+
getOriginalTitle(): string;
|
|
131130
|
+
/**
|
|
131131
|
+
* Gets current value of property {@link #getRemove remove}.
|
|
131132
|
+
*
|
|
131133
|
+
* Indicates if the item is removable.
|
|
131134
|
+
*
|
|
131135
|
+
* Default value is `false`.
|
|
131136
|
+
*
|
|
131137
|
+
* @returns Value of property `remove`
|
|
131138
|
+
*/
|
|
131139
|
+
getRemove(): boolean;
|
|
131140
|
+
/**
|
|
131141
|
+
* Gets current value of property {@link #getRename rename}.
|
|
131142
|
+
*
|
|
131143
|
+
* Indicates if the item is renamable.
|
|
131144
|
+
*
|
|
131145
|
+
* Default value is `true`.
|
|
131146
|
+
*
|
|
131147
|
+
* @returns Value of property `rename`
|
|
131148
|
+
*/
|
|
131149
|
+
getRename(): boolean;
|
|
131150
|
+
/**
|
|
131151
|
+
* Gets current value of property {@link #getSharing sharing}.
|
|
131152
|
+
*
|
|
131153
|
+
* Contains the information is the item is public or private.
|
|
131154
|
+
*
|
|
131155
|
+
* Default value is `"private"`.
|
|
131156
|
+
*
|
|
131157
|
+
* @returns Value of property `sharing`
|
|
131158
|
+
*/
|
|
131159
|
+
getSharing(): string;
|
|
131160
|
+
/**
|
|
131161
|
+
* Gets current value of property {@link #getTitle title}.
|
|
131162
|
+
*
|
|
131163
|
+
* Contains the title if the item.
|
|
131164
|
+
*
|
|
131165
|
+
* @returns Value of property `title`
|
|
131166
|
+
*/
|
|
131167
|
+
getTitle(): string;
|
|
131168
|
+
/**
|
|
131169
|
+
* Gets current value of property {@link #getVisible visible}.
|
|
131170
|
+
*
|
|
131171
|
+
* Indicates if the item is visible.
|
|
131172
|
+
*
|
|
131173
|
+
* Default value is `true`.
|
|
131174
|
+
*
|
|
131175
|
+
* @returns Value of property `visible`
|
|
131176
|
+
*/
|
|
131177
|
+
getVisible(): boolean;
|
|
131178
|
+
/**
|
|
131179
|
+
* Sets a new value for property {@link #getAuthor author}.
|
|
131180
|
+
*
|
|
131181
|
+
* Contains the author information of the item.
|
|
131182
|
+
*
|
|
131183
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131184
|
+
*
|
|
131185
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131186
|
+
*/
|
|
131187
|
+
setAuthor(
|
|
131188
|
+
/**
|
|
131189
|
+
* New value for property `author`
|
|
131190
|
+
*/
|
|
131191
|
+
sAuthor?: string
|
|
131192
|
+
): this;
|
|
131193
|
+
/**
|
|
131194
|
+
* Sets a new value for property {@link #getChangeable changeable}.
|
|
131195
|
+
*
|
|
131196
|
+
* Indicates if the item is changeable.
|
|
131197
|
+
*
|
|
131198
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131199
|
+
*
|
|
131200
|
+
* Default value is `false`.
|
|
131201
|
+
*
|
|
131202
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131203
|
+
*/
|
|
131204
|
+
setChangeable(
|
|
131205
|
+
/**
|
|
131206
|
+
* New value for property `changeable`
|
|
131207
|
+
*/
|
|
131208
|
+
bChangeable?: boolean
|
|
131209
|
+
): this;
|
|
131210
|
+
/**
|
|
131211
|
+
* Sets a new value for property {@link #getContexts contexts}.
|
|
131212
|
+
*
|
|
131213
|
+
* Contains the contexts information of the item.
|
|
131214
|
+
*
|
|
131215
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131216
|
+
*
|
|
131217
|
+
* Default value is `{}`.
|
|
131218
|
+
*
|
|
131219
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131220
|
+
*/
|
|
131221
|
+
setContexts(
|
|
131222
|
+
/**
|
|
131223
|
+
* New value for property `contexts`
|
|
131224
|
+
*/
|
|
131225
|
+
oContexts?: object
|
|
131226
|
+
): this;
|
|
131227
|
+
/**
|
|
131228
|
+
* Sets a new value for property {@link #getExecuteOnSelect executeOnSelect}.
|
|
131229
|
+
*
|
|
131230
|
+
* Indicates if the item is marked as apply automatically.
|
|
131231
|
+
*
|
|
131232
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131233
|
+
*
|
|
131234
|
+
* Default value is `false`.
|
|
131235
|
+
*
|
|
131236
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131237
|
+
*/
|
|
131238
|
+
setExecuteOnSelect(
|
|
131239
|
+
/**
|
|
131240
|
+
* New value for property `executeOnSelect`
|
|
131241
|
+
*/
|
|
131242
|
+
bExecuteOnSelect?: boolean
|
|
131243
|
+
): this;
|
|
131244
|
+
/**
|
|
131245
|
+
* Sets a new value for property {@link #getFavorite favorite}.
|
|
131246
|
+
*
|
|
131247
|
+
* Indicates if the item is marked as favorite.
|
|
131248
|
+
*
|
|
131249
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131250
|
+
*
|
|
131251
|
+
* Default value is `true`.
|
|
131252
|
+
*
|
|
131253
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131254
|
+
*/
|
|
131255
|
+
setFavorite(
|
|
131256
|
+
/**
|
|
131257
|
+
* New value for property `favorite`
|
|
131258
|
+
*/
|
|
131259
|
+
bFavorite?: boolean
|
|
131260
|
+
): this;
|
|
131261
|
+
/**
|
|
131262
|
+
* Sets a new value for property {@link #getOriginalContexts originalContexts}.
|
|
131263
|
+
*
|
|
131264
|
+
* Contains the initial value of the property `contexts`. Is used for cancel operations.
|
|
131265
|
+
*
|
|
131266
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131267
|
+
*
|
|
131268
|
+
* Default value is `{}`.
|
|
131269
|
+
*
|
|
131270
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131271
|
+
*/
|
|
131272
|
+
setOriginalContexts(
|
|
131273
|
+
/**
|
|
131274
|
+
* New value for property `originalContexts`
|
|
131275
|
+
*/
|
|
131276
|
+
oOriginalContexts?: object
|
|
131277
|
+
): this;
|
|
131278
|
+
/**
|
|
131279
|
+
* Sets a new value for property {@link #getOriginalExecuteOnSelect originalExecuteOnSelect}.
|
|
131280
|
+
*
|
|
131281
|
+
* Contains the initial value of the property `executeOnSelect`. Is used for cancel operations.
|
|
131282
|
+
*
|
|
131283
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131284
|
+
*
|
|
131285
|
+
* Default value is `false`.
|
|
131286
|
+
*
|
|
131287
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131288
|
+
*/
|
|
131289
|
+
setOriginalExecuteOnSelect(
|
|
131290
|
+
/**
|
|
131291
|
+
* New value for property `originalExecuteOnSelect`
|
|
131292
|
+
*/
|
|
131293
|
+
bOriginalExecuteOnSelect?: boolean
|
|
131294
|
+
): this;
|
|
131295
|
+
/**
|
|
131296
|
+
* Sets a new value for property {@link #getOriginalFavorite originalFavorite}.
|
|
131297
|
+
*
|
|
131298
|
+
* Contains the initial value of the property `favorite`. Is used for cancel operations.
|
|
131299
|
+
*
|
|
131300
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131301
|
+
*
|
|
131302
|
+
* Default value is `true`.
|
|
131303
|
+
*
|
|
131304
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131305
|
+
*/
|
|
131306
|
+
setOriginalFavorite(
|
|
131307
|
+
/**
|
|
131308
|
+
* New value for property `originalFavorite`
|
|
131309
|
+
*/
|
|
131310
|
+
bOriginalFavorite?: boolean
|
|
131311
|
+
): this;
|
|
131312
|
+
/**
|
|
131313
|
+
* Sets a new value for property {@link #getOriginalTitle originalTitle}.
|
|
131314
|
+
*
|
|
131315
|
+
* Contains the initial value of the property `title`. Is used for cancel operations.
|
|
131316
|
+
*
|
|
131317
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131318
|
+
*
|
|
131319
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131320
|
+
*/
|
|
131321
|
+
setOriginalTitle(
|
|
131322
|
+
/**
|
|
131323
|
+
* New value for property `originalTitle`
|
|
131324
|
+
*/
|
|
131325
|
+
sOriginalTitle?: string
|
|
131326
|
+
): this;
|
|
131327
|
+
/**
|
|
131328
|
+
* Sets a new value for property {@link #getRemove remove}.
|
|
131329
|
+
*
|
|
131330
|
+
* Indicates if the item is removable.
|
|
131331
|
+
*
|
|
131332
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131333
|
+
*
|
|
131334
|
+
* Default value is `false`.
|
|
131335
|
+
*
|
|
131336
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131337
|
+
*/
|
|
131338
|
+
setRemove(
|
|
131339
|
+
/**
|
|
131340
|
+
* New value for property `remove`
|
|
131341
|
+
*/
|
|
131342
|
+
bRemove?: boolean
|
|
131343
|
+
): this;
|
|
131344
|
+
/**
|
|
131345
|
+
* Sets a new value for property {@link #getRename rename}.
|
|
131346
|
+
*
|
|
131347
|
+
* Indicates if the item is renamable.
|
|
131348
|
+
*
|
|
131349
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131350
|
+
*
|
|
131351
|
+
* Default value is `true`.
|
|
131352
|
+
*
|
|
131353
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131354
|
+
*/
|
|
131355
|
+
setRename(
|
|
131356
|
+
/**
|
|
131357
|
+
* New value for property `rename`
|
|
131358
|
+
*/
|
|
131359
|
+
bRename?: boolean
|
|
131360
|
+
): this;
|
|
131361
|
+
/**
|
|
131362
|
+
* Sets a new value for property {@link #getSharing sharing}.
|
|
131363
|
+
*
|
|
131364
|
+
* Contains the information is the item is public or private.
|
|
131365
|
+
*
|
|
131366
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131367
|
+
*
|
|
131368
|
+
* Default value is `"private"`.
|
|
131369
|
+
*
|
|
131370
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131371
|
+
*/
|
|
131372
|
+
setSharing(
|
|
131373
|
+
/**
|
|
131374
|
+
* New value for property `sharing`
|
|
131375
|
+
*/
|
|
131376
|
+
sSharing?: string
|
|
131377
|
+
): this;
|
|
131378
|
+
/**
|
|
131379
|
+
* Sets a new value for property {@link #getTitle title}.
|
|
131380
|
+
*
|
|
131381
|
+
* Contains the title if the item.
|
|
131382
|
+
*
|
|
131383
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131384
|
+
*
|
|
131385
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131386
|
+
*/
|
|
131387
|
+
setTitle(
|
|
131388
|
+
/**
|
|
131389
|
+
* New value for property `title`
|
|
131390
|
+
*/
|
|
131391
|
+
sTitle?: string
|
|
131392
|
+
): this;
|
|
131393
|
+
/**
|
|
131394
|
+
* Sets a new value for property {@link #getVisible visible}.
|
|
131395
|
+
*
|
|
131396
|
+
* Indicates if the item is visible.
|
|
131397
|
+
*
|
|
131398
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131399
|
+
*
|
|
131400
|
+
* Default value is `true`.
|
|
131401
|
+
*
|
|
131402
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131403
|
+
*/
|
|
131404
|
+
setVisible(
|
|
131405
|
+
/**
|
|
131406
|
+
* New value for property `visible`
|
|
131407
|
+
*/
|
|
131408
|
+
bVisible?: boolean
|
|
131409
|
+
): this;
|
|
131410
|
+
}
|
|
129631
131411
|
/**
|
|
129632
131412
|
* The VBox control builds the container for a vertical flexible box layout. VBox is a convenience control,
|
|
129633
131413
|
* as it is just a specialized FlexBox control.
|
|
@@ -135107,6 +136887,21 @@ declare namespace sap {
|
|
|
135107
136887
|
*/
|
|
135108
136888
|
TimeOutError = "TIME_OUT_ERROR",
|
|
135109
136889
|
}
|
|
136890
|
+
/**
|
|
136891
|
+
* @SINCE 1.104.0
|
|
136892
|
+
*
|
|
136893
|
+
* Enumeration for possible Link accessibility roles.
|
|
136894
|
+
*/
|
|
136895
|
+
enum LinkAccessibleRole {
|
|
136896
|
+
/**
|
|
136897
|
+
* Link will receive `role="Button"` attibute.
|
|
136898
|
+
*/
|
|
136899
|
+
Button = "Button",
|
|
136900
|
+
/**
|
|
136901
|
+
* Default mode.
|
|
136902
|
+
*/
|
|
136903
|
+
Default = "Default",
|
|
136904
|
+
}
|
|
135110
136905
|
/**
|
|
135111
136906
|
* @SINCE 1.45.5
|
|
135112
136907
|
*
|
|
@@ -136923,14 +138718,30 @@ declare namespace sap {
|
|
|
136923
138718
|
|
|
136924
138719
|
"sap/m/p13n/Container": undefined;
|
|
136925
138720
|
|
|
138721
|
+
"sap/m/p13n/Engine": undefined;
|
|
138722
|
+
|
|
138723
|
+
"sap/m/p13n/GroupController": undefined;
|
|
138724
|
+
|
|
136926
138725
|
"sap/m/p13n/GroupPanel": undefined;
|
|
136927
138726
|
|
|
138727
|
+
"sap/m/p13n/modification/FlexModificationHandler": undefined;
|
|
138728
|
+
|
|
138729
|
+
"sap/m/p13n/modification/LocalStorageModificationHandler": undefined;
|
|
138730
|
+
|
|
138731
|
+
"sap/m/p13n/modification/ModificationHandler": undefined;
|
|
138732
|
+
|
|
138733
|
+
"sap/m/p13n/modules/AdaptationProvider": undefined;
|
|
138734
|
+
|
|
136928
138735
|
"sap/m/p13n/Popup": undefined;
|
|
136929
138736
|
|
|
136930
138737
|
"sap/m/p13n/QueryPanel": undefined;
|
|
136931
138738
|
|
|
138739
|
+
"sap/m/p13n/SelectionController": undefined;
|
|
138740
|
+
|
|
136932
138741
|
"sap/m/p13n/SelectionPanel": undefined;
|
|
136933
138742
|
|
|
138743
|
+
"sap/m/p13n/SortController": undefined;
|
|
138744
|
+
|
|
136934
138745
|
"sap/m/p13n/SortPanel": undefined;
|
|
136935
138746
|
|
|
136936
138747
|
"sap/m/P13nColumnsItem": undefined;
|
|
@@ -137225,6 +139036,8 @@ declare namespace sap {
|
|
|
137225
139036
|
|
|
137226
139037
|
"sap/m/UploadCollectionToolbarPlaceholder": undefined;
|
|
137227
139038
|
|
|
139039
|
+
"sap/m/VariantItem": undefined;
|
|
139040
|
+
|
|
137228
139041
|
"sap/m/VariantManagement": undefined;
|
|
137229
139042
|
|
|
137230
139043
|
"sap/m/VBox": undefined;
|