@openui5/ts-types 1.97.1 → 1.98.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/sap.f.d.ts +108 -573
- package/types/sap.m.d.ts +2648 -268
- package/types/sap.tnt.d.ts +31 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +819 -199
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +7 -1
- package/types/sap.ui.integration.d.ts +21 -3
- package/types/sap.ui.layout.d.ts +4 -4
- package/types/sap.ui.mdc.d.ts +12 -6
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +6 -6
- package/types/sap.ui.table.d.ts +30 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +35 -105
- package/types/sap.ui.webc.main.d.ts +16 -29
- package/types/sap.uxap.d.ts +1 -1
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.98.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -8,13 +8,6 @@ declare namespace sap {
|
|
|
8
8
|
* browsers.
|
|
9
9
|
*/
|
|
10
10
|
namespace m {
|
|
11
|
-
/**
|
|
12
|
-
* @EXPERIMENTAL (since 1.92)
|
|
13
|
-
*
|
|
14
|
-
* The option keys of all the standard options of a DynamicDateRange control.
|
|
15
|
-
*/
|
|
16
|
-
export const StandardDynamicDateRangeKeys: undefined;
|
|
17
|
-
|
|
18
11
|
/**
|
|
19
12
|
* @SINCE 1.11.0
|
|
20
13
|
*
|
|
@@ -373,6 +366,857 @@ declare namespace sap {
|
|
|
373
366
|
}
|
|
374
367
|
}
|
|
375
368
|
|
|
369
|
+
namespace p13n {
|
|
370
|
+
interface $GroupPanelSettings
|
|
371
|
+
extends /* was: sap.m.p13n.$QueryPanelSettings */ Object {
|
|
372
|
+
/**
|
|
373
|
+
* Toggles an additional checkbox in the group panel to define whether items are made visible.
|
|
374
|
+
*/
|
|
375
|
+
enableShowField?:
|
|
376
|
+
| boolean
|
|
377
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
interface $PopupSettings extends sap.ui.core.$ControlSettings {
|
|
381
|
+
/**
|
|
382
|
+
* Text describing the personalization popup.
|
|
383
|
+
*/
|
|
384
|
+
title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
385
|
+
|
|
386
|
+
/**
|
|
387
|
+
* Describes the corresponding popup mode, see also {@link sap.m.P13nPopupMode}.
|
|
388
|
+
*/
|
|
389
|
+
mode?:
|
|
390
|
+
| sap.m.P13nPopupMode
|
|
391
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
392
|
+
|
|
393
|
+
/**
|
|
394
|
+
* Warning text which appears as a message prior to executing the rest callback. **Note:** The `warningText`
|
|
395
|
+
* may only be used in case the `reset` callback has been provided.
|
|
396
|
+
*/
|
|
397
|
+
warningText?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
398
|
+
|
|
399
|
+
/**
|
|
400
|
+
* A callback that will be executed once a reset has been triggered. **Note:** The Reset button will only
|
|
401
|
+
* be shown in case this callback is provided.
|
|
402
|
+
*/
|
|
403
|
+
reset?: Function | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
404
|
+
|
|
405
|
+
/**
|
|
406
|
+
* The panels that are displayed by the `sap.m.p13n.Popup`.
|
|
407
|
+
*/
|
|
408
|
+
panels?: /* was: sap.m.p13n.IContent */
|
|
409
|
+
| any[]
|
|
410
|
+
| /* was: sap.m.p13n.IContent */ any
|
|
411
|
+
| sap.ui.base.ManagedObject.AggregationBindingInfo;
|
|
412
|
+
|
|
413
|
+
/**
|
|
414
|
+
* Additional set of `sap.m.Button` controls that are added to the existing Ok and Cancel buttons.
|
|
415
|
+
*/
|
|
416
|
+
additionalButtons?:
|
|
417
|
+
| sap.m.Button[]
|
|
418
|
+
| sap.m.Button
|
|
419
|
+
| sap.ui.base.ManagedObject.AggregationBindingInfo;
|
|
420
|
+
|
|
421
|
+
/**
|
|
422
|
+
* This event is fired after the dialog has been closed.
|
|
423
|
+
*/
|
|
424
|
+
close?: (oEvent: sap.ui.base.Event) => void;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
interface $SelectionPanelSettings
|
|
428
|
+
extends /* was: sap.m.p13n.$BasePanelSettings */ Object {
|
|
429
|
+
/**
|
|
430
|
+
* Shows an additional header with a search field and the Show Selected button.
|
|
431
|
+
*/
|
|
432
|
+
showHeader?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
433
|
+
|
|
434
|
+
/**
|
|
435
|
+
* Enables a count for selected items compared to available items, for example, Currency (3/12), in addition
|
|
436
|
+
* to the first column text.
|
|
437
|
+
*/
|
|
438
|
+
enableCount?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
439
|
+
|
|
440
|
+
/**
|
|
441
|
+
* The first column in the panel describing the selectable fields.
|
|
442
|
+
*/
|
|
443
|
+
fieldColumn?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
444
|
+
|
|
445
|
+
/**
|
|
446
|
+
* The second column in the panel showing the move buttons for reordering.
|
|
447
|
+
*/
|
|
448
|
+
activeColumn?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
449
|
+
|
|
450
|
+
/**
|
|
451
|
+
* An optional callback that may be used to display additional custom content in each selectable item. This
|
|
452
|
+
* factory can be toggled by executing the {@link sap.m.p13n.SelectionPanel#showFactory} method.
|
|
453
|
+
*/
|
|
454
|
+
itemFactory?: Function | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
interface $SortPanelSettings
|
|
458
|
+
extends /* was: sap.m.p13n.$QueryPanelSettings */ Object {}
|
|
459
|
+
|
|
460
|
+
/**
|
|
461
|
+
* @SINCE 1.96
|
|
462
|
+
* @EXPERIMENTAL (since 1.96)
|
|
463
|
+
*
|
|
464
|
+
* This control can be used to customize personalization content for grouping for an associated control
|
|
465
|
+
* instance.
|
|
466
|
+
*/
|
|
467
|
+
class GroupPanel /* was: sap.m.p13n.QueryPanel */ extends Object {
|
|
468
|
+
/**
|
|
469
|
+
* Constructor for a new `GroupPanel`.
|
|
470
|
+
*
|
|
471
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
472
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
473
|
+
* of the syntax of the settings object.
|
|
474
|
+
*/
|
|
475
|
+
constructor(
|
|
476
|
+
/**
|
|
477
|
+
* Initial settings for the new control
|
|
478
|
+
*/
|
|
479
|
+
mSettings?: sap.m.p13n.$GroupPanelSettings
|
|
480
|
+
);
|
|
481
|
+
/**
|
|
482
|
+
* Constructor for a new `GroupPanel`.
|
|
483
|
+
*
|
|
484
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
485
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
486
|
+
* of the syntax of the settings object.
|
|
487
|
+
*/
|
|
488
|
+
constructor(
|
|
489
|
+
/**
|
|
490
|
+
* ID for the new control, generated automatically if no ID is given
|
|
491
|
+
*/
|
|
492
|
+
sId?: string,
|
|
493
|
+
/**
|
|
494
|
+
* Initial settings for the new control
|
|
495
|
+
*/
|
|
496
|
+
mSettings?: sap.m.p13n.$GroupPanelSettings
|
|
497
|
+
);
|
|
498
|
+
|
|
499
|
+
/**
|
|
500
|
+
* Creates a new subclass of class sap.m.p13n.GroupPanel with name `sClassName` and enriches it with the
|
|
501
|
+
* information contained in `oClassInfo`.
|
|
502
|
+
*
|
|
503
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.p13n.QueryPanel.extend}.
|
|
504
|
+
*/
|
|
505
|
+
static extend<T extends Record<string, unknown>>(
|
|
506
|
+
/**
|
|
507
|
+
* Name of the class being created
|
|
508
|
+
*/
|
|
509
|
+
sClassName: string,
|
|
510
|
+
/**
|
|
511
|
+
* Object literal with information about the class
|
|
512
|
+
*/
|
|
513
|
+
oClassInfo?: sap.ClassInfo<T, sap.m.p13n.GroupPanel>,
|
|
514
|
+
/**
|
|
515
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
516
|
+
* used by this class
|
|
517
|
+
*/
|
|
518
|
+
FNMetaImpl?: Function
|
|
519
|
+
): Function;
|
|
520
|
+
/**
|
|
521
|
+
* Returns a metadata object for class sap.m.p13n.GroupPanel.
|
|
522
|
+
*/
|
|
523
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
524
|
+
/**
|
|
525
|
+
* Sets the personalization state of the panel instance.
|
|
526
|
+
*/
|
|
527
|
+
static setP13nData(
|
|
528
|
+
/**
|
|
529
|
+
* An array containing the personalization state
|
|
530
|
+
*/
|
|
531
|
+
aP13nData: sap.m.p13n.GroupItem
|
|
532
|
+
): sap.m.p13n.GroupPanel;
|
|
533
|
+
/**
|
|
534
|
+
* Gets current value of property {@link #getEnableShowField enableShowField}.
|
|
535
|
+
*
|
|
536
|
+
* Toggles an additional checkbox in the group panel to define whether items are made visible.
|
|
537
|
+
*
|
|
538
|
+
* Default value is `false`.
|
|
539
|
+
*/
|
|
540
|
+
getEnableShowField(): boolean;
|
|
541
|
+
/**
|
|
542
|
+
* Sets a new value for property {@link #getEnableShowField enableShowField}.
|
|
543
|
+
*
|
|
544
|
+
* Toggles an additional checkbox in the group panel to define whether items are made visible.
|
|
545
|
+
*
|
|
546
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
547
|
+
*
|
|
548
|
+
* Default value is `false`.
|
|
549
|
+
*/
|
|
550
|
+
setEnableShowField(
|
|
551
|
+
/**
|
|
552
|
+
* New value for property `enableShowField`
|
|
553
|
+
*/
|
|
554
|
+
bEnableShowField?: boolean
|
|
555
|
+
): this;
|
|
556
|
+
}
|
|
557
|
+
/**
|
|
558
|
+
* @SINCE 1.97
|
|
559
|
+
* @EXPERIMENTAL (since 1.97)
|
|
560
|
+
*
|
|
561
|
+
* This control can be used to show personalization-related content in different popup controls.
|
|
562
|
+
*/
|
|
563
|
+
class Popup extends sap.ui.core.Control {
|
|
564
|
+
/**
|
|
565
|
+
* Constructor for a new `Popup`.
|
|
566
|
+
*
|
|
567
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
568
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
569
|
+
* of the syntax of the settings object.
|
|
570
|
+
*/
|
|
571
|
+
constructor(
|
|
572
|
+
/**
|
|
573
|
+
* Initial settings for the new control
|
|
574
|
+
*/
|
|
575
|
+
mSettings?: sap.m.p13n.$PopupSettings
|
|
576
|
+
);
|
|
577
|
+
/**
|
|
578
|
+
* Constructor for a new `Popup`.
|
|
579
|
+
*
|
|
580
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
581
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
582
|
+
* of the syntax of the settings object.
|
|
583
|
+
*/
|
|
584
|
+
constructor(
|
|
585
|
+
/**
|
|
586
|
+
* ID for the new control, generated automatically if no ID is given
|
|
587
|
+
*/
|
|
588
|
+
sId?: string,
|
|
589
|
+
/**
|
|
590
|
+
* Initial settings for the new control
|
|
591
|
+
*/
|
|
592
|
+
mSettings?: sap.m.p13n.$PopupSettings
|
|
593
|
+
);
|
|
594
|
+
|
|
595
|
+
/**
|
|
596
|
+
* Creates a new subclass of class sap.m.p13n.Popup with name `sClassName` and enriches it with the information
|
|
597
|
+
* contained in `oClassInfo`.
|
|
598
|
+
*
|
|
599
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
600
|
+
*/
|
|
601
|
+
static extend<T extends Record<string, unknown>>(
|
|
602
|
+
/**
|
|
603
|
+
* Name of the class being created
|
|
604
|
+
*/
|
|
605
|
+
sClassName: string,
|
|
606
|
+
/**
|
|
607
|
+
* Object literal with information about the class
|
|
608
|
+
*/
|
|
609
|
+
oClassInfo?: sap.ClassInfo<T, sap.m.p13n.Popup>,
|
|
610
|
+
/**
|
|
611
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
612
|
+
* used by this class
|
|
613
|
+
*/
|
|
614
|
+
FNMetaImpl?: Function
|
|
615
|
+
): Function;
|
|
616
|
+
/**
|
|
617
|
+
* Returns a metadata object for class sap.m.p13n.Popup.
|
|
618
|
+
*/
|
|
619
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
620
|
+
/**
|
|
621
|
+
* Adds some additionalButton to the aggregation {@link #getAdditionalButtons additionalButtons}.
|
|
622
|
+
*/
|
|
623
|
+
addAdditionalButton(
|
|
624
|
+
/**
|
|
625
|
+
* The additionalButton to add; if empty, nothing is inserted
|
|
626
|
+
*/
|
|
627
|
+
oAdditionalButton: sap.m.Button
|
|
628
|
+
): this;
|
|
629
|
+
/**
|
|
630
|
+
* Adds a new panel to the `panels` aggregation.
|
|
631
|
+
*/
|
|
632
|
+
addPanel(
|
|
633
|
+
/**
|
|
634
|
+
* The panel instance
|
|
635
|
+
*/
|
|
636
|
+
oPanel: /* was: sap.m.p13n.IContent */ any
|
|
637
|
+
): sap.m.p13n.Popup;
|
|
638
|
+
/**
|
|
639
|
+
* Attaches event handler `fnFunction` to the {@link #event:close close} event of this `sap.m.p13n.Popup`.
|
|
640
|
+
*
|
|
641
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
642
|
+
* otherwise it will be bound to this `sap.m.p13n.Popup` itself.
|
|
643
|
+
*
|
|
644
|
+
* This event is fired after the dialog has been closed.
|
|
645
|
+
*/
|
|
646
|
+
attachClose(
|
|
647
|
+
/**
|
|
648
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
649
|
+
* object when firing the event
|
|
650
|
+
*/
|
|
651
|
+
oData: object,
|
|
652
|
+
/**
|
|
653
|
+
* The function to be called when the event occurs
|
|
654
|
+
*/
|
|
655
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
656
|
+
/**
|
|
657
|
+
* Context object to call the event handler with. Defaults to this `sap.m.p13n.Popup` itself
|
|
658
|
+
*/
|
|
659
|
+
oListener?: object
|
|
660
|
+
): this;
|
|
661
|
+
/**
|
|
662
|
+
* Attaches event handler `fnFunction` to the {@link #event:close close} event of this `sap.m.p13n.Popup`.
|
|
663
|
+
*
|
|
664
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
665
|
+
* otherwise it will be bound to this `sap.m.p13n.Popup` itself.
|
|
666
|
+
*
|
|
667
|
+
* This event is fired after the dialog has been closed.
|
|
668
|
+
*/
|
|
669
|
+
attachClose(
|
|
670
|
+
/**
|
|
671
|
+
* The function to be called when the event occurs
|
|
672
|
+
*/
|
|
673
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
674
|
+
/**
|
|
675
|
+
* Context object to call the event handler with. Defaults to this `sap.m.p13n.Popup` itself
|
|
676
|
+
*/
|
|
677
|
+
oListener?: object
|
|
678
|
+
): this;
|
|
679
|
+
/**
|
|
680
|
+
* Destroys all the additionalButtons in the aggregation {@link #getAdditionalButtons additionalButtons}.
|
|
681
|
+
*/
|
|
682
|
+
destroyAdditionalButtons(): this;
|
|
683
|
+
/**
|
|
684
|
+
* Destroys all the panels in the aggregation {@link #getPanels panels}.
|
|
685
|
+
*/
|
|
686
|
+
destroyPanels(): this;
|
|
687
|
+
/**
|
|
688
|
+
* Detaches event handler `fnFunction` from the {@link #event:close close} event of this `sap.m.p13n.Popup`.
|
|
689
|
+
*
|
|
690
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
691
|
+
*/
|
|
692
|
+
detachClose(
|
|
693
|
+
/**
|
|
694
|
+
* The function to be called, when the event occurs
|
|
695
|
+
*/
|
|
696
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
697
|
+
/**
|
|
698
|
+
* Context object on which the given function had to be called
|
|
699
|
+
*/
|
|
700
|
+
oListener?: object
|
|
701
|
+
): this;
|
|
702
|
+
/**
|
|
703
|
+
* Fires event {@link #event:close close} to attached listeners.
|
|
704
|
+
*/
|
|
705
|
+
fireClose(
|
|
706
|
+
/**
|
|
707
|
+
* Parameters to pass along with the event
|
|
708
|
+
*/
|
|
709
|
+
mParameters?: object
|
|
710
|
+
): this;
|
|
711
|
+
/**
|
|
712
|
+
* Gets content of aggregation {@link #getAdditionalButtons additionalButtons}.
|
|
713
|
+
*
|
|
714
|
+
* Additional set of `sap.m.Button` controls that are added to the existing Ok and Cancel buttons.
|
|
715
|
+
*/
|
|
716
|
+
getAdditionalButtons(): sap.m.Button[];
|
|
717
|
+
/**
|
|
718
|
+
* Gets current value of property {@link #getMode mode}.
|
|
719
|
+
*
|
|
720
|
+
* Describes the corresponding popup mode, see also {@link sap.m.P13nPopupMode}.
|
|
721
|
+
*
|
|
722
|
+
* Default value is `Dialog`.
|
|
723
|
+
*/
|
|
724
|
+
getMode(): sap.m.P13nPopupMode;
|
|
725
|
+
/**
|
|
726
|
+
* Removes the current panels in the `panels` aggregation.
|
|
727
|
+
*/
|
|
728
|
+
getPanels(): /* was: sap.m.p13n.IContent */ any[];
|
|
729
|
+
/**
|
|
730
|
+
* Gets current value of property {@link #getReset reset}.
|
|
731
|
+
*
|
|
732
|
+
* A callback that will be executed once a reset has been triggered. **Note:** The Reset button will only
|
|
733
|
+
* be shown in case this callback is provided.
|
|
734
|
+
*/
|
|
735
|
+
getReset(): Function;
|
|
736
|
+
/**
|
|
737
|
+
* Gets current value of property {@link #getTitle title}.
|
|
738
|
+
*
|
|
739
|
+
* Text describing the personalization popup.
|
|
740
|
+
*/
|
|
741
|
+
getTitle(): string;
|
|
742
|
+
/**
|
|
743
|
+
* Gets current value of property {@link #getWarningText warningText}.
|
|
744
|
+
*
|
|
745
|
+
* Warning text which appears as a message prior to executing the rest callback. **Note:** The `warningText`
|
|
746
|
+
* may only be used in case the `reset` callback has been provided.
|
|
747
|
+
*/
|
|
748
|
+
getWarningText(): string;
|
|
749
|
+
/**
|
|
750
|
+
* Checks for the provided `sap.m.Button` in the aggregation {@link #getAdditionalButtons additionalButtons}.
|
|
751
|
+
* and returns its index if found or -1 otherwise.
|
|
752
|
+
*/
|
|
753
|
+
indexOfAdditionalButton(
|
|
754
|
+
/**
|
|
755
|
+
* The additionalButton whose index is looked for
|
|
756
|
+
*/
|
|
757
|
+
oAdditionalButton: sap.m.Button
|
|
758
|
+
): int;
|
|
759
|
+
/**
|
|
760
|
+
* Checks for the provided `sap.m.p13n.IContent` in the aggregation {@link #getPanels panels}. and returns
|
|
761
|
+
* its index if found or -1 otherwise.
|
|
762
|
+
*/
|
|
763
|
+
indexOfPanel(
|
|
764
|
+
/**
|
|
765
|
+
* The panel whose index is looked for
|
|
766
|
+
*/
|
|
767
|
+
oPanel: /* was: sap.m.p13n.IContent */ any
|
|
768
|
+
): int;
|
|
769
|
+
/**
|
|
770
|
+
* Inserts a additionalButton into the aggregation {@link #getAdditionalButtons additionalButtons}.
|
|
771
|
+
*/
|
|
772
|
+
insertAdditionalButton(
|
|
773
|
+
/**
|
|
774
|
+
* The additionalButton to insert; if empty, nothing is inserted
|
|
775
|
+
*/
|
|
776
|
+
oAdditionalButton: sap.m.Button,
|
|
777
|
+
/**
|
|
778
|
+
* The `0`-based index the additionalButton should be inserted at; for a negative value of `iIndex`, the
|
|
779
|
+
* additionalButton is inserted at position 0; for a value greater than the current size of the aggregation,
|
|
780
|
+
* the additionalButton is inserted at the last position
|
|
781
|
+
*/
|
|
782
|
+
iIndex: int
|
|
783
|
+
): this;
|
|
784
|
+
/**
|
|
785
|
+
* Inserts a panel into the aggregation {@link #getPanels panels}.
|
|
786
|
+
*/
|
|
787
|
+
insertPanel(
|
|
788
|
+
/**
|
|
789
|
+
* The panel to insert; if empty, nothing is inserted
|
|
790
|
+
*/
|
|
791
|
+
oPanel: /* was: sap.m.p13n.IContent */ any,
|
|
792
|
+
/**
|
|
793
|
+
* The `0`-based index the panel should be inserted at; for a negative value of `iIndex`, the panel is inserted
|
|
794
|
+
* at position 0; for a value greater than the current size of the aggregation, the panel is inserted at
|
|
795
|
+
* the last position
|
|
796
|
+
*/
|
|
797
|
+
iIndex: int
|
|
798
|
+
): this;
|
|
799
|
+
/**
|
|
800
|
+
* Checks whether there is an open `Popup` control.
|
|
801
|
+
*/
|
|
802
|
+
isOpen(): boolean;
|
|
803
|
+
/**
|
|
804
|
+
* Opens the `Popup` control.
|
|
805
|
+
*/
|
|
806
|
+
open(
|
|
807
|
+
/**
|
|
808
|
+
* The referenced control instance (used as anchor, for example, on popovers)
|
|
809
|
+
*/
|
|
810
|
+
oSource: sap.ui.core.Control,
|
|
811
|
+
/**
|
|
812
|
+
* Configuration for the related popup container
|
|
813
|
+
*/
|
|
814
|
+
mSettings?: {
|
|
815
|
+
/**
|
|
816
|
+
* Height configuration for the related popup container
|
|
817
|
+
*/
|
|
818
|
+
contentHeight?: sap.ui.core.CSSSize;
|
|
819
|
+
/**
|
|
820
|
+
* Width configuration for the related popup container
|
|
821
|
+
*/
|
|
822
|
+
contentWidth?: sap.ui.core.CSSSize;
|
|
823
|
+
}
|
|
824
|
+
): void;
|
|
825
|
+
/**
|
|
826
|
+
* Removes a additionalButton from the aggregation {@link #getAdditionalButtons additionalButtons}.
|
|
827
|
+
*/
|
|
828
|
+
removeAdditionalButton(
|
|
829
|
+
/**
|
|
830
|
+
* The additionalButton to remove or its index or id
|
|
831
|
+
*/
|
|
832
|
+
vAdditionalButton: int | string | sap.m.Button
|
|
833
|
+
): sap.m.Button;
|
|
834
|
+
/**
|
|
835
|
+
* Removes all the controls from the aggregation {@link #getAdditionalButtons additionalButtons}.
|
|
836
|
+
*
|
|
837
|
+
* Additionally, it unregisters them from the hosting UIArea.
|
|
838
|
+
*/
|
|
839
|
+
removeAllAdditionalButtons(): sap.m.Button[];
|
|
840
|
+
/**
|
|
841
|
+
* Removes all the controls from the aggregation {@link #getPanels panels}.
|
|
842
|
+
*
|
|
843
|
+
* Additionally, it unregisters them from the hosting UIArea.
|
|
844
|
+
*/
|
|
845
|
+
removeAllPanels(): /* was: sap.m.p13n.IContent */ any[];
|
|
846
|
+
/**
|
|
847
|
+
* Removes a panel instance.
|
|
848
|
+
*/
|
|
849
|
+
removePanel(
|
|
850
|
+
/**
|
|
851
|
+
* The panel instance
|
|
852
|
+
*/
|
|
853
|
+
oPanel: /* was: sap.m.p13n.IContent */ any
|
|
854
|
+
): sap.m.p13n.Popup;
|
|
855
|
+
/**
|
|
856
|
+
* Sets the desired popup mode, see also {@link sap.m.P13nPopupMode}.
|
|
857
|
+
*/
|
|
858
|
+
setMode(
|
|
859
|
+
/**
|
|
860
|
+
* The mode used for the popup creation
|
|
861
|
+
*/
|
|
862
|
+
sMode: sap.m.P13nPopupMode
|
|
863
|
+
): sap.m.p13n.Popup;
|
|
864
|
+
/**
|
|
865
|
+
* Sets a new value for property {@link #getReset reset}.
|
|
866
|
+
*
|
|
867
|
+
* A callback that will be executed once a reset has been triggered. **Note:** The Reset button will only
|
|
868
|
+
* be shown in case this callback is provided.
|
|
869
|
+
*
|
|
870
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
871
|
+
*/
|
|
872
|
+
setReset(
|
|
873
|
+
/**
|
|
874
|
+
* New value for property `reset`
|
|
875
|
+
*/
|
|
876
|
+
fnReset: Function
|
|
877
|
+
): this;
|
|
878
|
+
/**
|
|
879
|
+
* Sets a new value for property {@link #getTitle title}.
|
|
880
|
+
*
|
|
881
|
+
* Text describing the personalization popup.
|
|
882
|
+
*
|
|
883
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
884
|
+
*/
|
|
885
|
+
setTitle(
|
|
886
|
+
/**
|
|
887
|
+
* New value for property `title`
|
|
888
|
+
*/
|
|
889
|
+
sTitle: string
|
|
890
|
+
): this;
|
|
891
|
+
/**
|
|
892
|
+
* Sets a new value for property {@link #getWarningText warningText}.
|
|
893
|
+
*
|
|
894
|
+
* Warning text which appears as a message prior to executing the rest callback. **Note:** The `warningText`
|
|
895
|
+
* may only be used in case the `reset` callback has been provided.
|
|
896
|
+
*
|
|
897
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
898
|
+
*/
|
|
899
|
+
setWarningText(
|
|
900
|
+
/**
|
|
901
|
+
* New value for property `warningText`
|
|
902
|
+
*/
|
|
903
|
+
sWarningText: string
|
|
904
|
+
): this;
|
|
905
|
+
}
|
|
906
|
+
/**
|
|
907
|
+
* @SINCE 1.96
|
|
908
|
+
* @EXPERIMENTAL (since 1.96)
|
|
909
|
+
*
|
|
910
|
+
* This control can be used to customize personalization content for adding/removing items for an associated
|
|
911
|
+
* control instance.
|
|
912
|
+
*/
|
|
913
|
+
class SelectionPanel /* was: sap.m.p13n.BasePanel */ extends Object {
|
|
914
|
+
/**
|
|
915
|
+
* Constructor for a new `SelectionPanel`.
|
|
916
|
+
*
|
|
917
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
918
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
919
|
+
* of the syntax of the settings object.
|
|
920
|
+
*/
|
|
921
|
+
constructor(
|
|
922
|
+
/**
|
|
923
|
+
* Initial settings for the new control
|
|
924
|
+
*/
|
|
925
|
+
mSettings?: sap.m.p13n.$SelectionPanelSettings
|
|
926
|
+
);
|
|
927
|
+
/**
|
|
928
|
+
* Constructor for a new `SelectionPanel`.
|
|
929
|
+
*
|
|
930
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
931
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
932
|
+
* of the syntax of the settings object.
|
|
933
|
+
*/
|
|
934
|
+
constructor(
|
|
935
|
+
/**
|
|
936
|
+
* ID for the new control, generated automatically if no ID is given
|
|
937
|
+
*/
|
|
938
|
+
sId?: string,
|
|
939
|
+
/**
|
|
940
|
+
* Initial settings for the new control
|
|
941
|
+
*/
|
|
942
|
+
mSettings?: sap.m.p13n.$SelectionPanelSettings
|
|
943
|
+
);
|
|
944
|
+
|
|
945
|
+
/**
|
|
946
|
+
* Creates a new subclass of class sap.m.p13n.SelectionPanel with name `sClassName` and enriches it with
|
|
947
|
+
* the information contained in `oClassInfo`.
|
|
948
|
+
*
|
|
949
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.p13n.BasePanel.extend}.
|
|
950
|
+
*/
|
|
951
|
+
static extend<T extends Record<string, unknown>>(
|
|
952
|
+
/**
|
|
953
|
+
* Name of the class being created
|
|
954
|
+
*/
|
|
955
|
+
sClassName: string,
|
|
956
|
+
/**
|
|
957
|
+
* Object literal with information about the class
|
|
958
|
+
*/
|
|
959
|
+
oClassInfo?: sap.ClassInfo<T, sap.m.p13n.SelectionPanel>,
|
|
960
|
+
/**
|
|
961
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
962
|
+
* used by this class
|
|
963
|
+
*/
|
|
964
|
+
FNMetaImpl?: Function
|
|
965
|
+
): Function;
|
|
966
|
+
/**
|
|
967
|
+
* Returns a metadata object for class sap.m.p13n.SelectionPanel.
|
|
968
|
+
*/
|
|
969
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
970
|
+
/**
|
|
971
|
+
* Gets current value of property {@link #getActiveColumn activeColumn}.
|
|
972
|
+
*
|
|
973
|
+
* The second column in the panel showing the move buttons for reordering.
|
|
974
|
+
*
|
|
975
|
+
* Default value is `empty string`.
|
|
976
|
+
*/
|
|
977
|
+
getActiveColumn(): string;
|
|
978
|
+
/**
|
|
979
|
+
* Gets current value of property {@link #getEnableCount enableCount}.
|
|
980
|
+
*
|
|
981
|
+
* Enables a count for selected items compared to available items, for example, Currency (3/12), in addition
|
|
982
|
+
* to the first column text.
|
|
983
|
+
*
|
|
984
|
+
* Default value is `false`.
|
|
985
|
+
*/
|
|
986
|
+
getEnableCount(): boolean;
|
|
987
|
+
/**
|
|
988
|
+
* Gets current value of property {@link #getFieldColumn fieldColumn}.
|
|
989
|
+
*
|
|
990
|
+
* The first column in the panel describing the selectable fields.
|
|
991
|
+
*
|
|
992
|
+
* Default value is `...see text or source`.
|
|
993
|
+
*/
|
|
994
|
+
getFieldColumn(): string;
|
|
995
|
+
/**
|
|
996
|
+
* Gets current value of property {@link #getItemFactory itemFactory}.
|
|
997
|
+
*
|
|
998
|
+
* An optional callback that may be used to display additional custom content in each selectable item. This
|
|
999
|
+
* factory can be toggled by executing the {@link sap.m.p13n.SelectionPanel#showFactory} method.
|
|
1000
|
+
*/
|
|
1001
|
+
getItemFactory(): Function;
|
|
1002
|
+
/**
|
|
1003
|
+
* Gets current value of property {@link #getShowHeader showHeader}.
|
|
1004
|
+
*
|
|
1005
|
+
* Shows an additional header with a search field and the Show Selected button.
|
|
1006
|
+
*
|
|
1007
|
+
* Default value is `false`.
|
|
1008
|
+
*/
|
|
1009
|
+
getShowHeader(): boolean;
|
|
1010
|
+
/**
|
|
1011
|
+
* Sets a new value for property {@link #getActiveColumn activeColumn}.
|
|
1012
|
+
*
|
|
1013
|
+
* The second column in the panel showing the move buttons for reordering.
|
|
1014
|
+
*
|
|
1015
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1016
|
+
*
|
|
1017
|
+
* Default value is `empty string`.
|
|
1018
|
+
*/
|
|
1019
|
+
setActiveColumn(
|
|
1020
|
+
/**
|
|
1021
|
+
* New value for property `activeColumn`
|
|
1022
|
+
*/
|
|
1023
|
+
sActiveColumn?: string
|
|
1024
|
+
): this;
|
|
1025
|
+
/**
|
|
1026
|
+
* Sets a new value for property {@link #getEnableCount enableCount}.
|
|
1027
|
+
*
|
|
1028
|
+
* Enables a count for selected items compared to available items, for example, Currency (3/12), in addition
|
|
1029
|
+
* to the first column text.
|
|
1030
|
+
*
|
|
1031
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1032
|
+
*
|
|
1033
|
+
* Default value is `false`.
|
|
1034
|
+
*/
|
|
1035
|
+
setEnableCount(
|
|
1036
|
+
/**
|
|
1037
|
+
* New value for property `enableCount`
|
|
1038
|
+
*/
|
|
1039
|
+
bEnableCount?: boolean
|
|
1040
|
+
): this;
|
|
1041
|
+
/**
|
|
1042
|
+
* Sets a new value for property {@link #getFieldColumn fieldColumn}.
|
|
1043
|
+
*
|
|
1044
|
+
* The first column in the panel describing the selectable fields.
|
|
1045
|
+
*
|
|
1046
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1047
|
+
*
|
|
1048
|
+
* Default value is `...see text or source`.
|
|
1049
|
+
*/
|
|
1050
|
+
setFieldColumn(
|
|
1051
|
+
/**
|
|
1052
|
+
* New value for property `fieldColumn`
|
|
1053
|
+
*/
|
|
1054
|
+
sFieldColumn?: string
|
|
1055
|
+
): this;
|
|
1056
|
+
/**
|
|
1057
|
+
* Sets a new value for property {@link #getItemFactory itemFactory}.
|
|
1058
|
+
*
|
|
1059
|
+
* An optional callback that may be used to display additional custom content in each selectable item. This
|
|
1060
|
+
* factory can be toggled by executing the {@link sap.m.p13n.SelectionPanel#showFactory} method.
|
|
1061
|
+
*
|
|
1062
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1063
|
+
*/
|
|
1064
|
+
setItemFactory(
|
|
1065
|
+
/**
|
|
1066
|
+
* New value for property `itemFactory`
|
|
1067
|
+
*/
|
|
1068
|
+
fnItemFactory: Function
|
|
1069
|
+
): this;
|
|
1070
|
+
/**
|
|
1071
|
+
* Sets the personalization state of the panel instance.
|
|
1072
|
+
*/
|
|
1073
|
+
setP13nData(
|
|
1074
|
+
/**
|
|
1075
|
+
* An array containing the personalization state that is represented by the `SelectionPanel`.
|
|
1076
|
+
*/
|
|
1077
|
+
aP13nData: sap.m.p13n.Item
|
|
1078
|
+
): void;
|
|
1079
|
+
/**
|
|
1080
|
+
* Sets a new value for property {@link #getShowHeader showHeader}.
|
|
1081
|
+
*
|
|
1082
|
+
* Shows an additional header with a search field and the Show Selected button.
|
|
1083
|
+
*
|
|
1084
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1085
|
+
*
|
|
1086
|
+
* Default value is `false`.
|
|
1087
|
+
*/
|
|
1088
|
+
setShowHeader(
|
|
1089
|
+
/**
|
|
1090
|
+
* New value for property `showHeader`
|
|
1091
|
+
*/
|
|
1092
|
+
bShowHeader?: boolean
|
|
1093
|
+
): this;
|
|
1094
|
+
}
|
|
1095
|
+
/**
|
|
1096
|
+
* @SINCE 1.96
|
|
1097
|
+
* @EXPERIMENTAL (since 1.96)
|
|
1098
|
+
*
|
|
1099
|
+
* This control can be used to customize personalization content for sorting for an associated control instance.
|
|
1100
|
+
*/
|
|
1101
|
+
class SortPanel /* was: sap.m.p13n.QueryPanel */ extends Object {
|
|
1102
|
+
/**
|
|
1103
|
+
* Constructor for a new `SortPanel`.
|
|
1104
|
+
*/
|
|
1105
|
+
constructor(
|
|
1106
|
+
/**
|
|
1107
|
+
* Initial settings for the new control
|
|
1108
|
+
*/
|
|
1109
|
+
mSettings?: sap.m.p13n.$SortPanelSettings
|
|
1110
|
+
);
|
|
1111
|
+
/**
|
|
1112
|
+
* Constructor for a new `SortPanel`.
|
|
1113
|
+
*/
|
|
1114
|
+
constructor(
|
|
1115
|
+
/**
|
|
1116
|
+
* ID for the new control, generated automatically if no ID is given
|
|
1117
|
+
*/
|
|
1118
|
+
sId?: string,
|
|
1119
|
+
/**
|
|
1120
|
+
* Initial settings for the new control
|
|
1121
|
+
*/
|
|
1122
|
+
mSettings?: sap.m.p13n.$SortPanelSettings
|
|
1123
|
+
);
|
|
1124
|
+
|
|
1125
|
+
/**
|
|
1126
|
+
* Creates a new subclass of class sap.m.p13n.SortPanel with name `sClassName` and enriches it with the
|
|
1127
|
+
* information contained in `oClassInfo`.
|
|
1128
|
+
*
|
|
1129
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.p13n.QueryPanel.extend}.
|
|
1130
|
+
*/
|
|
1131
|
+
static extend<T extends Record<string, unknown>>(
|
|
1132
|
+
/**
|
|
1133
|
+
* Name of the class being created
|
|
1134
|
+
*/
|
|
1135
|
+
sClassName: string,
|
|
1136
|
+
/**
|
|
1137
|
+
* Object literal with information about the class
|
|
1138
|
+
*/
|
|
1139
|
+
oClassInfo?: sap.ClassInfo<T, sap.m.p13n.SortPanel>,
|
|
1140
|
+
/**
|
|
1141
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1142
|
+
* used by this class
|
|
1143
|
+
*/
|
|
1144
|
+
FNMetaImpl?: Function
|
|
1145
|
+
): Function;
|
|
1146
|
+
/**
|
|
1147
|
+
* Returns a metadata object for class sap.m.p13n.SortPanel.
|
|
1148
|
+
*/
|
|
1149
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
1150
|
+
/**
|
|
1151
|
+
* Sets the personalization state of the panel instance.
|
|
1152
|
+
*/
|
|
1153
|
+
static setP13nData(
|
|
1154
|
+
/**
|
|
1155
|
+
* An array containing the personalization state
|
|
1156
|
+
*/
|
|
1157
|
+
aP13nData: sap.m.p13n.SortItem
|
|
1158
|
+
): sap.m.p13n.SortPanel;
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
/**
|
|
1162
|
+
* P13n `GroupItem` object type.
|
|
1163
|
+
*/
|
|
1164
|
+
type GroupItem = {
|
|
1165
|
+
/**
|
|
1166
|
+
* The unique key of the item
|
|
1167
|
+
*/
|
|
1168
|
+
name: String;
|
|
1169
|
+
/**
|
|
1170
|
+
* The label describing the personalization item
|
|
1171
|
+
*/
|
|
1172
|
+
label: String;
|
|
1173
|
+
/**
|
|
1174
|
+
* Defines the grouping state of the personalization item
|
|
1175
|
+
*/
|
|
1176
|
+
grouped: Boolean;
|
|
1177
|
+
};
|
|
1178
|
+
|
|
1179
|
+
/**
|
|
1180
|
+
* P13n `Item` object type.
|
|
1181
|
+
*/
|
|
1182
|
+
type Item = {
|
|
1183
|
+
/**
|
|
1184
|
+
* The unique key of the item
|
|
1185
|
+
*/
|
|
1186
|
+
name: string;
|
|
1187
|
+
/**
|
|
1188
|
+
* The label describing the personalization item
|
|
1189
|
+
*/
|
|
1190
|
+
label: string;
|
|
1191
|
+
/**
|
|
1192
|
+
* Defines the selection state of the personalization item
|
|
1193
|
+
*/
|
|
1194
|
+
visible: boolean;
|
|
1195
|
+
};
|
|
1196
|
+
|
|
1197
|
+
/**
|
|
1198
|
+
* P13n `SortItem` object type.
|
|
1199
|
+
*/
|
|
1200
|
+
type SortItem = {
|
|
1201
|
+
/**
|
|
1202
|
+
* The unique key of the item
|
|
1203
|
+
*/
|
|
1204
|
+
name: String;
|
|
1205
|
+
/**
|
|
1206
|
+
* The label describing the personalization item
|
|
1207
|
+
*/
|
|
1208
|
+
label: String;
|
|
1209
|
+
/**
|
|
1210
|
+
* Defines the sorting state of the personalization item
|
|
1211
|
+
*/
|
|
1212
|
+
sorted: Boolean;
|
|
1213
|
+
/**
|
|
1214
|
+
* Defines the descending state of the personalization item
|
|
1215
|
+
*/
|
|
1216
|
+
descending: Boolean;
|
|
1217
|
+
};
|
|
1218
|
+
}
|
|
1219
|
+
|
|
376
1220
|
namespace PlanningCalendar {
|
|
377
1221
|
/**
|
|
378
1222
|
* A comparison function for appointments.
|
|
@@ -1260,9 +2104,8 @@ declare namespace sap {
|
|
|
1260
2104
|
/**
|
|
1261
2105
|
* @SINCE 1.28.1
|
|
1262
2106
|
*
|
|
1263
|
-
* SAPUI5 mobile `Router`. The difference to the {@link sap.ui.core.routing.Router} are the `
|
|
1264
|
-
*
|
|
1265
|
-
* by this router.
|
|
2107
|
+
* SAPUI5 mobile `Router`. The difference to the {@link sap.ui.core.routing.Router} are the `level`, `transition`,
|
|
2108
|
+
* and `transitionParameters` properties that you can specify in every Route or Target created by this router.
|
|
1266
2109
|
*/
|
|
1267
2110
|
class Router extends sap.ui.core.routing.Router {
|
|
1268
2111
|
/**
|
|
@@ -1431,7 +2274,7 @@ declare namespace sap {
|
|
|
1431
2274
|
* ],
|
|
1432
2275
|
* // Default values shared by routes and Targets
|
|
1433
2276
|
* {
|
|
1434
|
-
*
|
|
2277
|
+
* path: "my.application.namespace",
|
|
1435
2278
|
* viewType: "XML"
|
|
1436
2279
|
* },
|
|
1437
2280
|
* // You should only use this constructor when you are not using a router with a component.
|
|
@@ -1443,7 +2286,8 @@ declare namespace sap {
|
|
|
1443
2286
|
* //same name as in the route called 'startRoute'
|
|
1444
2287
|
* welcome: {
|
|
1445
2288
|
* // All properties for creating and placing a view go here or in the config
|
|
1446
|
-
*
|
|
2289
|
+
* type: "View",
|
|
2290
|
+
* name: "Welcome",
|
|
1447
2291
|
* controlId: "app",
|
|
1448
2292
|
* controlAggregation: "pages"
|
|
1449
2293
|
* }
|
|
@@ -1557,7 +2401,7 @@ declare namespace sap {
|
|
|
1557
2401
|
*
|
|
1558
2402
|
* The mobile extension of `Targets` also handles the triggering of page navigation when the target control
|
|
1559
2403
|
* is an `{@link sap.m.SplitContainer}`, an `{@link sap.m.NavContainer}` or a control which extends one
|
|
1560
|
-
* of these. Other controls are also allowed, but the extra parameters `
|
|
2404
|
+
* of these. Other controls are also allowed, but the extra parameters `level`, `transition` and `transitionParameters`
|
|
1561
2405
|
* are ignored and it behaves as `{@link sap.ui.core.routing.Targets}`.
|
|
1562
2406
|
*
|
|
1563
2407
|
* When a target is displayed, dialogs will be closed. To change this use `{@link #getTargetHandler}` and
|
|
@@ -1569,7 +2413,7 @@ declare namespace sap {
|
|
|
1569
2413
|
*/
|
|
1570
2414
|
constructor(oOptions: {
|
|
1571
2415
|
/**
|
|
1572
|
-
* the views instance will create the views of all the targets defined, so if 2 targets have the same
|
|
2416
|
+
* the views instance will create the views of all the targets defined, so if 2 targets have the same name,
|
|
1573
2417
|
* the same instance of the view will be displayed.
|
|
1574
2418
|
*/
|
|
1575
2419
|
views: sap.ui.core.routing.Views;
|
|
@@ -1648,13 +2492,15 @@ declare namespace sap {
|
|
|
1648
2492
|
* {
|
|
1649
2493
|
* targets: {
|
|
1650
2494
|
* welcome: {
|
|
1651
|
-
*
|
|
2495
|
+
* type: "View",
|
|
2496
|
+
* name: "Welcome",
|
|
1652
2497
|
* viewType: "XML",
|
|
1653
2498
|
* ....
|
|
1654
2499
|
* // Other target parameters
|
|
1655
2500
|
* },
|
|
1656
2501
|
* goodbye: {
|
|
1657
|
-
*
|
|
2502
|
+
* type: "View",
|
|
2503
|
+
* name: "Bye",
|
|
1658
2504
|
* viewType: "JS",
|
|
1659
2505
|
* ....
|
|
1660
2506
|
* // Other target parameters
|
|
@@ -1670,8 +2516,14 @@ declare namespace sap {
|
|
|
1670
2516
|
*/
|
|
1671
2517
|
anyName: {
|
|
1672
2518
|
/**
|
|
1673
|
-
*
|
|
1674
|
-
|
|
2519
|
+
* Defines whether the target creates an instance of 'View' or 'Component'.
|
|
2520
|
+
*/
|
|
2521
|
+
type: string;
|
|
2522
|
+
/**
|
|
2523
|
+
* Defines the name of the View or Component that will be created. For type 'Component', use option `usage`
|
|
2524
|
+
* instead if an owner component exists. To place the view or component into a Control, use the options
|
|
2525
|
+
* `controlAggregation` and `controlId`. Instance of View or Component will only be created once per `name`
|
|
2526
|
+
* or `usage` combined with `id`.
|
|
1675
2527
|
* ```javascript
|
|
1676
2528
|
*
|
|
1677
2529
|
*
|
|
@@ -1679,14 +2531,16 @@ declare namespace sap {
|
|
|
1679
2531
|
* targets: {
|
|
1680
2532
|
* // If display("masterWelcome") is called, the master view will be placed in the 'MasterPages' of a control with the id splitContainter
|
|
1681
2533
|
* masterWelcome: {
|
|
1682
|
-
*
|
|
2534
|
+
* type: "View",
|
|
2535
|
+
* name: "Welcome",
|
|
1683
2536
|
* controlId: "splitContainer",
|
|
1684
2537
|
* controlAggregation: "masterPages"
|
|
1685
2538
|
* },
|
|
1686
2539
|
* // If display("detailWelcome") is called after the masterWelcome, the view will be removed from the master pages and added to the detail pages, since the same instance is used. Also the controls inside of the view will have the same state.
|
|
1687
2540
|
* detailWelcome: {
|
|
1688
2541
|
* // same view here, that's why the same instance is used
|
|
1689
|
-
*
|
|
2542
|
+
* type: "View",
|
|
2543
|
+
* name: "Welcome",
|
|
1690
2544
|
* controlId: "splitContainer",
|
|
1691
2545
|
* controlAggregation: "detailPages"
|
|
1692
2546
|
* }
|
|
@@ -1696,28 +2550,28 @@ declare namespace sap {
|
|
|
1696
2550
|
* ```
|
|
1697
2551
|
*
|
|
1698
2552
|
*
|
|
1699
|
-
* If you want to have a second instance of the welcome view you can
|
|
2553
|
+
* If you want to have a second instance of the welcome view you can assign the targets with different ids:
|
|
1700
2554
|
*
|
|
1701
2555
|
*
|
|
1702
2556
|
* ```javascript
|
|
1703
2557
|
*
|
|
1704
2558
|
*
|
|
1705
|
-
* // Some code you execute before you display the taget named 'detailWelcome':
|
|
1706
|
-
* var oView = sap.ui.view(({ viewName : "Welcome", type : sap.ui.core.mvc.ViewType.XML});
|
|
1707
|
-
* oTargets.getViews().setView("WelcomeWithAlias", oView)
|
|
1708
|
-
*
|
|
1709
2559
|
* {
|
|
1710
2560
|
* targets: {
|
|
1711
|
-
* // If display("masterWelcome") is called, the
|
|
2561
|
+
* // If display("masterWelcome") is called, the "masterWelcome" view will be placed in the 'MasterPages' of a control with the id splitContainter
|
|
1712
2562
|
* masterWelcome: {
|
|
1713
|
-
*
|
|
2563
|
+
* type: "View",
|
|
2564
|
+
* name: "Welcome",
|
|
2565
|
+
* id: "masterWelcome",
|
|
1714
2566
|
* controlId: "splitContainer",
|
|
1715
2567
|
* controlAggregation: "masterPages"
|
|
1716
2568
|
* },
|
|
1717
|
-
* // If display("detailWelcome") is called after the masterWelcome, a second instance with an own controller instance will be added in the detail pages.
|
|
2569
|
+
* // If display("detailWelcome") is called after the "masterWelcome", a second instance with an own controller instance will be added in the detail pages.
|
|
1718
2570
|
* detailWelcome: {
|
|
1719
|
-
*
|
|
1720
|
-
*
|
|
2571
|
+
* type: "View",
|
|
2572
|
+
* name: "Welcome",
|
|
2573
|
+
* // another instance will be created because a different id is used
|
|
2574
|
+
* id: "detailWelcome",
|
|
1721
2575
|
* controlId: "splitContainer",
|
|
1722
2576
|
* controlAggregation: "detailPages"
|
|
1723
2577
|
* }
|
|
@@ -1726,23 +2580,28 @@ declare namespace sap {
|
|
|
1726
2580
|
*
|
|
1727
2581
|
* ```
|
|
1728
2582
|
*/
|
|
1729
|
-
|
|
2583
|
+
name?: string;
|
|
2584
|
+
/**
|
|
2585
|
+
* Defines the 'usage' name for 'Component' target which refers to the '/sap.ui5/componentUsages' entry
|
|
2586
|
+
* in the owner component's manifest.
|
|
2587
|
+
*/
|
|
2588
|
+
usage?: string;
|
|
1730
2589
|
/**
|
|
1731
2590
|
* The type of the view that is going to be created. These are the supported types: {@link sap.ui.core.mvc.ViewType}.
|
|
1732
2591
|
* You always have to provide a viewType except if `oOptions.config.viewType` is set or using {@link sap.ui.core.routing.Views#setView}.
|
|
1733
2592
|
*/
|
|
1734
2593
|
viewType?: string;
|
|
1735
2594
|
/**
|
|
1736
|
-
* A prefix that will be prepended in front of the
|
|
1737
|
-
* **Example:**
|
|
1738
|
-
*
|
|
2595
|
+
* A prefix that will be prepended in front of the `name`.
|
|
2596
|
+
* **Example:** `name` is set to "myView" and `path` is set to "myApp" - the created view's name will be
|
|
2597
|
+
* "myApp.myView".
|
|
1739
2598
|
*/
|
|
1740
|
-
|
|
2599
|
+
path?: string;
|
|
1741
2600
|
/**
|
|
1742
|
-
* The id of the created view. This is will be prefixed with the id of the component set to
|
|
1743
|
-
* provided in oOptions.views. For details see {@link sap.ui.core.routing.Views#getView}.
|
|
2601
|
+
* The id of the created view or component. This is will be prefixed with the id of the component set to
|
|
2602
|
+
* the views instance provided in oOptions.views. For details see {@link sap.ui.core.routing.Views#getView}.
|
|
1744
2603
|
*/
|
|
1745
|
-
|
|
2604
|
+
id?: string;
|
|
1746
2605
|
/**
|
|
1747
2606
|
* The id of the parent of the controlId - This should be the id of the view that contains your controlId,
|
|
1748
2607
|
* since the target control will be retrieved by calling the {@link sap.ui.core.mvc.View#byId} function
|
|
@@ -1825,11 +2684,13 @@ declare namespace sap {
|
|
|
1825
2684
|
* // a reference to the app control in the rootView created by our UIComponent
|
|
1826
2685
|
* controlId: 'myApp',
|
|
1827
2686
|
* // An app has a pages aggregation where the views need to be put into
|
|
1828
|
-
* controlAggregation: 'pages'
|
|
2687
|
+
* controlAggregation: 'pages',
|
|
2688
|
+
* // all targets have type "View"
|
|
2689
|
+
* type: "View"
|
|
1829
2690
|
* },
|
|
1830
2691
|
* targets: {
|
|
1831
2692
|
* detail: {
|
|
1832
|
-
*
|
|
2693
|
+
* name: 'Detail'
|
|
1833
2694
|
* },
|
|
1834
2695
|
* secondTabContent: {
|
|
1835
2696
|
* // A reference to the detail target defined above
|
|
@@ -1839,7 +2700,7 @@ declare namespace sap {
|
|
|
1839
2700
|
* // An IconTabFilter has an aggregation called content so we need to overwrite the pages set in the config as default.
|
|
1840
2701
|
* controlAggregation: 'content',
|
|
1841
2702
|
* // A view containing the content
|
|
1842
|
-
*
|
|
2703
|
+
* name: 'SecondTabContent'
|
|
1843
2704
|
* }
|
|
1844
2705
|
* }
|
|
1845
2706
|
* });
|
|
@@ -1856,11 +2717,11 @@ declare namespace sap {
|
|
|
1856
2717
|
/**
|
|
1857
2718
|
* If you are having an application that has a logical order of views (eg: a create account process, first
|
|
1858
2719
|
* provide user data, then review and confirm them). You always want to show a backwards transition if a
|
|
1859
|
-
* navigation from the confirm to the userData page takes place. Therefore you may use the
|
|
1860
|
-
*
|
|
1861
|
-
*
|
|
1862
|
-
*
|
|
1863
|
-
*
|
|
2720
|
+
* navigation from the confirm to the userData page takes place. Therefore you may use the `level`. The
|
|
2721
|
+
* `level` has to be an integer. The user data page should have a lower number than the confirm page. These
|
|
2722
|
+
* levels should represent the user process of your application and they do not have to match the container
|
|
2723
|
+
* structure of your Targets. If the user navigates between targets with the same `level`, a forward transition
|
|
2724
|
+
* is taken. If you pass a direction into the display function, the `level` will be ignored.
|
|
1864
2725
|
* **Example:**
|
|
1865
2726
|
*
|
|
1866
2727
|
* ```javascript
|
|
@@ -1869,15 +2730,15 @@ declare namespace sap {
|
|
|
1869
2730
|
* {
|
|
1870
2731
|
* targets: {
|
|
1871
2732
|
* startPage: {
|
|
1872
|
-
*
|
|
2733
|
+
* level: 0
|
|
1873
2734
|
* // more properties
|
|
1874
2735
|
* },
|
|
1875
2736
|
* userData: {
|
|
1876
|
-
*
|
|
2737
|
+
* level: 1
|
|
1877
2738
|
* // more properties
|
|
1878
2739
|
* },
|
|
1879
2740
|
* confirmRegistration: {
|
|
1880
|
-
*
|
|
2741
|
+
* level: 2
|
|
1881
2742
|
* // more properties
|
|
1882
2743
|
* },
|
|
1883
2744
|
* settings: {
|
|
@@ -1890,14 +2751,14 @@ declare namespace sap {
|
|
|
1890
2751
|
*
|
|
1891
2752
|
*
|
|
1892
2753
|
* Currently the 'userData' target is displayed.
|
|
1893
|
-
* - If we navigate to 'startPage' the navContainer will show a backwards navigation, since the
|
|
2754
|
+
* - If we navigate to 'startPage' the navContainer will show a backwards navigation, since the `level`
|
|
1894
2755
|
* is lower.
|
|
1895
|
-
* - If we navigate to 'userData' the navContainer will show a forwards navigation, since the
|
|
2756
|
+
* - If we navigate to 'userData' the navContainer will show a forwards navigation, since the `level`
|
|
1896
2757
|
* is higher.
|
|
1897
|
-
* - If we navigate to 'settings' the navContainer will show a forwards navigation, since the
|
|
2758
|
+
* - If we navigate to 'settings' the navContainer will show a forwards navigation, since the `level`
|
|
1898
2759
|
* is not defined and cannot be compared.
|
|
1899
2760
|
*/
|
|
1900
|
-
|
|
2761
|
+
level?: int;
|
|
1901
2762
|
/**
|
|
1902
2763
|
* define which transition of the {@link sap.m.NavContainer} will be applied when navigating. If it is not
|
|
1903
2764
|
* defined, the nav container will take its default transition.
|
|
@@ -7314,6 +8175,7 @@ declare namespace sap {
|
|
|
7314
8175
|
* in the `maxFileNameLength` property.
|
|
7315
8176
|
* - When the file name length restriction changes, and the file to be uploaded fails to meet the new
|
|
7316
8177
|
* restriction.
|
|
8178
|
+
* - Listeners can use the item parameter to remove the incomplete item that failed to meet the restriction
|
|
7317
8179
|
*/
|
|
7318
8180
|
fileNameLengthExceeded?: (oEvent: sap.ui.base.Event) => void;
|
|
7319
8181
|
|
|
@@ -7322,6 +8184,8 @@ declare namespace sap {
|
|
|
7322
8184
|
* - When a file that is selected to be uploaded fails to meet the file size restriction specified in
|
|
7323
8185
|
* the `maxFileSize` property.
|
|
7324
8186
|
* - When the file size restriction changes, and the file to be uploaded fails to meet the new restriction.
|
|
8187
|
+
*
|
|
8188
|
+
* - Listeners can use the item parameter to remove the incomplete item that failed to meet the restriction
|
|
7325
8189
|
*/
|
|
7326
8190
|
fileSizeExceeded?: (oEvent: sap.ui.base.Event) => void;
|
|
7327
8191
|
|
|
@@ -7774,6 +8638,21 @@ declare namespace sap {
|
|
|
7774
8638
|
* The item that was uploaded.
|
|
7775
8639
|
*/
|
|
7776
8640
|
item?: sap.m.upload.UploadSetItem;
|
|
8641
|
+
/**
|
|
8642
|
+
* A JSON object containing the additional response parameters like response, responseXML, readyState, status
|
|
8643
|
+
* and headers. Sample response object:
|
|
8644
|
+
* ```javascript
|
|
8645
|
+
*
|
|
8646
|
+
* {
|
|
8647
|
+
* response: "\n...\n",
|
|
8648
|
+
* responseXML: null,
|
|
8649
|
+
* readyState: 2,
|
|
8650
|
+
* status: 404,
|
|
8651
|
+
* headers: "allow: GET, HEAD"
|
|
8652
|
+
* }
|
|
8653
|
+
* ```
|
|
8654
|
+
*/
|
|
8655
|
+
responseXHR?: object;
|
|
7777
8656
|
}
|
|
7778
8657
|
): this;
|
|
7779
8658
|
/**
|
|
@@ -8391,6 +9270,7 @@ declare namespace sap {
|
|
|
8391
9270
|
* in the `maxFileNameLength` property.
|
|
8392
9271
|
* - When the file name length restriction changes, and the file to be uploaded fails to meet the new
|
|
8393
9272
|
* restriction.
|
|
9273
|
+
* - Listeners can use the item parameter to remove the incomplete item that failed to meet the restriction
|
|
8394
9274
|
*/
|
|
8395
9275
|
attachFileNameLengthExceeded(
|
|
8396
9276
|
/**
|
|
@@ -8419,6 +9299,7 @@ declare namespace sap {
|
|
|
8419
9299
|
* in the `maxFileNameLength` property.
|
|
8420
9300
|
* - When the file name length restriction changes, and the file to be uploaded fails to meet the new
|
|
8421
9301
|
* restriction.
|
|
9302
|
+
* - Listeners can use the item parameter to remove the incomplete item that failed to meet the restriction
|
|
8422
9303
|
*/
|
|
8423
9304
|
attachFileNameLengthExceeded(
|
|
8424
9305
|
/**
|
|
@@ -8441,6 +9322,8 @@ declare namespace sap {
|
|
|
8441
9322
|
* - When a file that is selected to be uploaded fails to meet the file size restriction specified in
|
|
8442
9323
|
* the `maxFileSize` property.
|
|
8443
9324
|
* - When the file size restriction changes, and the file to be uploaded fails to meet the new restriction.
|
|
9325
|
+
*
|
|
9326
|
+
* - Listeners can use the item parameter to remove the incomplete item that failed to meet the restriction
|
|
8444
9327
|
*/
|
|
8445
9328
|
attachFileSizeExceeded(
|
|
8446
9329
|
/**
|
|
@@ -8468,6 +9351,8 @@ declare namespace sap {
|
|
|
8468
9351
|
* - When a file that is selected to be uploaded fails to meet the file size restriction specified in
|
|
8469
9352
|
* the `maxFileSize` property.
|
|
8470
9353
|
* - When the file size restriction changes, and the file to be uploaded fails to meet the new restriction.
|
|
9354
|
+
*
|
|
9355
|
+
* - Listeners can use the item parameter to remove the incomplete item that failed to meet the restriction
|
|
8471
9356
|
*/
|
|
8472
9357
|
attachFileSizeExceeded(
|
|
8473
9358
|
/**
|
|
@@ -9183,6 +10068,46 @@ declare namespace sap {
|
|
|
9183
10068
|
* The file whose upload has just been completed.
|
|
9184
10069
|
*/
|
|
9185
10070
|
item?: sap.m.upload.UploadSetItem;
|
|
10071
|
+
/**
|
|
10072
|
+
* Response message which comes from the server.
|
|
10073
|
+
*
|
|
10074
|
+
* On the server side this response has to be put within the "body" tags of the response document
|
|
10075
|
+
* of the iFrame. It can consist of a return code and an optional message. This does not work in cross-domain
|
|
10076
|
+
* scenarios.
|
|
10077
|
+
*/
|
|
10078
|
+
response?: string;
|
|
10079
|
+
/**
|
|
10080
|
+
* ReadyState of the XHR request.
|
|
10081
|
+
*
|
|
10082
|
+
* Required for receiving a `readyState` is to set the property `sendXHR` to true. This property is not
|
|
10083
|
+
* supported by Internet Explorer 9.
|
|
10084
|
+
*/
|
|
10085
|
+
readyState?: string;
|
|
10086
|
+
/**
|
|
10087
|
+
* Status of the XHR request.
|
|
10088
|
+
*
|
|
10089
|
+
* Required for receiving a `status` is to set the property `sendXHR` to true. This property is not supported
|
|
10090
|
+
* by Internet Explorer 9.
|
|
10091
|
+
*/
|
|
10092
|
+
status?: string;
|
|
10093
|
+
/**
|
|
10094
|
+
* Http-Response which comes from the server.
|
|
10095
|
+
*
|
|
10096
|
+
* Required for receiving `responseXML` is to set the property `sendXHR` to true.
|
|
10097
|
+
*
|
|
10098
|
+
* This property is not supported by Internet Explorer 9.
|
|
10099
|
+
*/
|
|
10100
|
+
responseXML?: string;
|
|
10101
|
+
/**
|
|
10102
|
+
* Http-Response-Headers which come from the server.
|
|
10103
|
+
*
|
|
10104
|
+
* Provided as a JSON-map, i.e. each header-field is reflected by a property in the `headers` object, with
|
|
10105
|
+
* the property value reflecting the header-field's content.
|
|
10106
|
+
*
|
|
10107
|
+
* Required for receiving `headers` is to set the property `sendXHR` to true. This property is not supported
|
|
10108
|
+
* by Internet Explorer 9.
|
|
10109
|
+
*/
|
|
10110
|
+
headers?: object;
|
|
9186
10111
|
}
|
|
9187
10112
|
): this;
|
|
9188
10113
|
/**
|
|
@@ -9405,7 +10330,7 @@ declare namespace sap {
|
|
|
9405
10330
|
): this;
|
|
9406
10331
|
/**
|
|
9407
10332
|
* Attaches all necessary handlers to the given uploader instance, so that the progress and status of the
|
|
9408
|
-
* upload can be displayed and monitored.
|
|
10333
|
+
* upload can be displayed and monitored. This is necessary in case when custom uploader is used.
|
|
9409
10334
|
*/
|
|
9410
10335
|
registerUploaderEvents(
|
|
9411
10336
|
/**
|
|
@@ -10141,6 +11066,13 @@ declare namespace sap {
|
|
|
10141
11066
|
*/
|
|
10142
11067
|
iIndex: int
|
|
10143
11068
|
): this;
|
|
11069
|
+
/**
|
|
11070
|
+
* @SINCE 1.98
|
|
11071
|
+
*
|
|
11072
|
+
* Validates if the item is restricted, which means that it is restricted for the file type, media type,
|
|
11073
|
+
* maximum file name length and maximum file size limit.
|
|
11074
|
+
*/
|
|
11075
|
+
isRestricted(): boolean;
|
|
10144
11076
|
/**
|
|
10145
11077
|
* Removes all the controls from the aggregation {@link #getAttributes attributes}.
|
|
10146
11078
|
*
|
|
@@ -12371,6 +13303,15 @@ declare namespace sap {
|
|
|
12371
13303
|
* seconds clock is populated only by multiples of the step.
|
|
12372
13304
|
*/
|
|
12373
13305
|
secondsStep?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13306
|
+
|
|
13307
|
+
/**
|
|
13308
|
+
* @SINCE 1.98
|
|
13309
|
+
*
|
|
13310
|
+
* Determines whether there is a shortcut navigation to current time.
|
|
13311
|
+
*/
|
|
13312
|
+
showCurrentTimeButton?:
|
|
13313
|
+
| boolean
|
|
13314
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
12374
13315
|
}
|
|
12375
13316
|
|
|
12376
13317
|
interface $DialogSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -12624,7 +13565,7 @@ declare namespace sap {
|
|
|
12624
13565
|
* In the Dialog focus is set first on the `beginButton` and then on `endButton`, when available. If another
|
|
12625
13566
|
* control needs to get the focus, set the `initialFocus` with the control which should be focused on. Setting
|
|
12626
13567
|
* `initialFocus` to input controls doesn't open the On-Screen keyboard on mobile device as, due to browser
|
|
12627
|
-
*
|
|
13568
|
+
* restriction, the On-Screen keyboard can't be opened with JavaScript code. The opening of On-Screen keyboard
|
|
12628
13569
|
* must be triggered by real user action.
|
|
12629
13570
|
*/
|
|
12630
13571
|
initialFocus?: sap.ui.core.Control | string;
|
|
@@ -12839,10 +13780,15 @@ declare namespace sap {
|
|
|
12839
13780
|
type?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
12840
13781
|
|
|
12841
13782
|
/**
|
|
12842
|
-
* A text for an additional label
|
|
13783
|
+
* A text for an additional label that describes the interactive UI and is placed before the UI element.
|
|
12843
13784
|
*/
|
|
12844
13785
|
text?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
12845
13786
|
|
|
13787
|
+
/**
|
|
13788
|
+
* A text for an additional label that describes the interactive UI and is placed after the UI element.
|
|
13789
|
+
*/
|
|
13790
|
+
additionalText?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13791
|
+
|
|
12846
13792
|
/**
|
|
12847
13793
|
* Describes the options in a radio button group.
|
|
12848
13794
|
*/
|
|
@@ -14341,7 +15287,230 @@ declare namespace sap {
|
|
|
14341
15287
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14342
15288
|
|
|
14343
15289
|
/**
|
|
14344
|
-
* @SINCE 1.78
|
|
15290
|
+
* @SINCE 1.78
|
|
15291
|
+
*
|
|
15292
|
+
* Specifies optional texts for the screen reader.
|
|
15293
|
+
*
|
|
15294
|
+
* The given object can contain the following keys: `headerLabel` - text to serve as a label for the header,
|
|
15295
|
+
* `headerDescription` - text to serve as a description for the header.
|
|
15296
|
+
*/
|
|
15297
|
+
ariaTexts?: object | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15298
|
+
|
|
15299
|
+
/**
|
|
15300
|
+
* @SINCE 1.90
|
|
15301
|
+
*
|
|
15302
|
+
* Specifies the overflow mode of the header.
|
|
15303
|
+
*
|
|
15304
|
+
* The default `End` mode shows as many tabs that can fit on the screen, then shows one overflow at the
|
|
15305
|
+
* end containing the remaining items. The `StartAndEnd` is used to keep the order of tabs intact and offers
|
|
15306
|
+
* two overflow tabs on both ends of the bar.
|
|
15307
|
+
*/
|
|
15308
|
+
tabsOverflowMode?:
|
|
15309
|
+
| sap.m.TabsOverflowMode
|
|
15310
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15311
|
+
|
|
15312
|
+
/**
|
|
15313
|
+
* The items displayed in the IconTabBar.
|
|
15314
|
+
*/
|
|
15315
|
+
items?:
|
|
15316
|
+
| sap.m.IconTab[]
|
|
15317
|
+
| sap.m.IconTab
|
|
15318
|
+
| sap.ui.base.ManagedObject.AggregationBindingInfo;
|
|
15319
|
+
|
|
15320
|
+
/**
|
|
15321
|
+
* Represents the contents displayed below the IconTabBar. If there are multiple contents, they are rendered
|
|
15322
|
+
* after each other. The developer has to manage to display the right one or use the content aggregation
|
|
15323
|
+
* inside the IconTabFilter (which will be displayed instead if it is set).
|
|
15324
|
+
*/
|
|
15325
|
+
content?:
|
|
15326
|
+
| sap.ui.core.Control[]
|
|
15327
|
+
| sap.ui.core.Control
|
|
15328
|
+
| sap.ui.base.ManagedObject.AggregationBindingInfo;
|
|
15329
|
+
|
|
15330
|
+
/**
|
|
15331
|
+
* Fires when an item is selected.
|
|
15332
|
+
*/
|
|
15333
|
+
select?: (oEvent: sap.ui.base.Event) => void;
|
|
15334
|
+
|
|
15335
|
+
/**
|
|
15336
|
+
* @SINCE 1.15.0
|
|
15337
|
+
*
|
|
15338
|
+
* Indicates that the tab will expand or collapse.
|
|
15339
|
+
*/
|
|
15340
|
+
expand?: (oEvent: sap.ui.base.Event) => void;
|
|
15341
|
+
}
|
|
15342
|
+
|
|
15343
|
+
interface $IconTabFilterSettings extends sap.ui.core.$ItemSettings {
|
|
15344
|
+
/**
|
|
15345
|
+
* Represents the "count" text, which is displayed in the tab filter.
|
|
15346
|
+
*/
|
|
15347
|
+
count?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15348
|
+
|
|
15349
|
+
/**
|
|
15350
|
+
* Enables special visualization for disabled filter (show all items). **Note:** You can use this property
|
|
15351
|
+
* when you use `IconTabBar` as a filter. In order for it to be displayed correctly, the other tabs in the
|
|
15352
|
+
* filter should consist of an icon, text and an optional count. It can be set to true for the first tab
|
|
15353
|
+
* filter. You can find more detailed information in the {@link https://experience.sap.com/fiori-design-web/icontabbar/#tabs-as-filters
|
|
15354
|
+
* UX Guidelines}.
|
|
15355
|
+
*/
|
|
15356
|
+
showAll?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15357
|
+
|
|
15358
|
+
/**
|
|
15359
|
+
* Specifies the icon to be displayed for the tab filter.
|
|
15360
|
+
*/
|
|
15361
|
+
icon?: sap.ui.core.URI | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15362
|
+
|
|
15363
|
+
/**
|
|
15364
|
+
* Specifies the icon color.
|
|
15365
|
+
*
|
|
15366
|
+
* If an icon font is used, the color can be chosen from the icon colors (sap.ui.core.IconColor). Possible
|
|
15367
|
+
* semantic colors are: Neutral, Positive, Critical, Negative. Instead of the semantic icon color the brand
|
|
15368
|
+
* color can be used, this is named Default. Semantic colors and brand colors should not be mixed up inside
|
|
15369
|
+
* one IconTabBar.
|
|
15370
|
+
*/
|
|
15371
|
+
iconColor?:
|
|
15372
|
+
| sap.ui.core.IconColor
|
|
15373
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15374
|
+
|
|
15375
|
+
/**
|
|
15376
|
+
* If set to true, it sends one or more requests, trying to get the density perfect version of the image
|
|
15377
|
+
* if this version of the image doesn't exist on the server. Default value is set to true.
|
|
15378
|
+
*
|
|
15379
|
+
* If bandwidth is key for the application, set this value to false.
|
|
15380
|
+
*/
|
|
15381
|
+
iconDensityAware?:
|
|
15382
|
+
| boolean
|
|
15383
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15384
|
+
|
|
15385
|
+
/**
|
|
15386
|
+
* Specifies whether the tab filter is rendered.
|
|
15387
|
+
*/
|
|
15388
|
+
visible?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15389
|
+
|
|
15390
|
+
/**
|
|
15391
|
+
* Specifies whether the icon and the texts are placed vertically or horizontally.
|
|
15392
|
+
*/
|
|
15393
|
+
design?:
|
|
15394
|
+
| sap.m.IconTabFilterDesign
|
|
15395
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15396
|
+
|
|
15397
|
+
/**
|
|
15398
|
+
* @SINCE 1.15.0
|
|
15399
|
+
*
|
|
15400
|
+
* The content displayed for this item (optional).
|
|
15401
|
+
*
|
|
15402
|
+
* If this content is set, it is displayed instead of the general content inside the IconTabBar.
|
|
15403
|
+
*/
|
|
15404
|
+
content?:
|
|
15405
|
+
| sap.ui.core.Control[]
|
|
15406
|
+
| sap.ui.core.Control
|
|
15407
|
+
| sap.ui.base.ManagedObject.AggregationBindingInfo;
|
|
15408
|
+
|
|
15409
|
+
/**
|
|
15410
|
+
* @SINCE 1.77
|
|
15411
|
+
*
|
|
15412
|
+
* The sub items of this filter (optional).
|
|
15413
|
+
*/
|
|
15414
|
+
items?:
|
|
15415
|
+
| sap.m.IconTab[]
|
|
15416
|
+
| sap.m.IconTab
|
|
15417
|
+
| sap.ui.base.ManagedObject.AggregationBindingInfo;
|
|
15418
|
+
}
|
|
15419
|
+
|
|
15420
|
+
interface $IconTabHeaderSettings extends sap.ui.core.$ControlSettings {
|
|
15421
|
+
/**
|
|
15422
|
+
* @deprecated (since 1.15.0) - Regarding to changes of this control this property is not needed anymore.
|
|
15423
|
+
*
|
|
15424
|
+
* Defines whether the current selection is visualized.
|
|
15425
|
+
*/
|
|
15426
|
+
showSelection?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15427
|
+
|
|
15428
|
+
/**
|
|
15429
|
+
* @SINCE 1.15.0
|
|
15430
|
+
*
|
|
15431
|
+
* Key of the selected item.
|
|
15432
|
+
*
|
|
15433
|
+
* If the key has no corresponding aggregated item, no changes will apply. If duplicate keys exists the
|
|
15434
|
+
* first item matching, the key is used.
|
|
15435
|
+
*/
|
|
15436
|
+
selectedKey?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15437
|
+
|
|
15438
|
+
/**
|
|
15439
|
+
* @SINCE 1.15.0
|
|
15440
|
+
*
|
|
15441
|
+
* Specifies whether the control is rendered.
|
|
15442
|
+
*/
|
|
15443
|
+
visible?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15444
|
+
|
|
15445
|
+
/**
|
|
15446
|
+
* @SINCE 1.40
|
|
15447
|
+
*
|
|
15448
|
+
* Specifies the header mode.
|
|
15449
|
+
*/
|
|
15450
|
+
mode?:
|
|
15451
|
+
| sap.m.IconTabHeaderMode
|
|
15452
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15453
|
+
|
|
15454
|
+
/**
|
|
15455
|
+
* @deprecated (since 1.75)
|
|
15456
|
+
*
|
|
15457
|
+
* Specifies if the overflow select list is displayed.
|
|
15458
|
+
*
|
|
15459
|
+
* The overflow select list represents a list, where all tab filters are displayed, so the user can select
|
|
15460
|
+
* specific tab filter easier.
|
|
15461
|
+
*/
|
|
15462
|
+
showOverflowSelectList?:
|
|
15463
|
+
| boolean
|
|
15464
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15465
|
+
|
|
15466
|
+
/**
|
|
15467
|
+
* @SINCE 1.44
|
|
15468
|
+
*
|
|
15469
|
+
* Specifies the background color of the header.
|
|
15470
|
+
*
|
|
15471
|
+
* Depending on the theme, you can change the state of the background color to "Solid", "Translucent", or
|
|
15472
|
+
* "Transparent". **Note:** In SAP Belize Deep (sap_belize_plus) theme this property should be set to "Solid".
|
|
15473
|
+
*/
|
|
15474
|
+
backgroundDesign?:
|
|
15475
|
+
| sap.m.BackgroundDesign
|
|
15476
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15477
|
+
|
|
15478
|
+
/**
|
|
15479
|
+
* @SINCE 1.46
|
|
15480
|
+
*
|
|
15481
|
+
* Specifies whether tab reordering is enabled. Relevant only for desktop devices. The {@link sap.m.IconTabSeparator
|
|
15482
|
+
* sap.m.IconTabSeparator} cannot be dragged and dropped Items can be moved around {@link sap.m.IconTabSeparator
|
|
15483
|
+
* sap.m.IconTabSeparator}
|
|
15484
|
+
*/
|
|
15485
|
+
enableTabReordering?:
|
|
15486
|
+
| boolean
|
|
15487
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15488
|
+
|
|
15489
|
+
/**
|
|
15490
|
+
* @SINCE 1.79
|
|
15491
|
+
*
|
|
15492
|
+
* Specifies the allowed level of tabs nesting within one another using drag and drop. Default value is
|
|
15493
|
+
* 0 which means nesting via interaction is not allowed. Maximum value is 100. This property allows nesting
|
|
15494
|
+
* via user interaction only, and does not restrict adding items to the `items` aggregation of {@link sap.m.IconTabFilter
|
|
15495
|
+
* sap.m.IconTabFilter}.
|
|
15496
|
+
*/
|
|
15497
|
+
maxNestingLevel?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15498
|
+
|
|
15499
|
+
/**
|
|
15500
|
+
* @SINCE 1.56
|
|
15501
|
+
*
|
|
15502
|
+
* Specifies the visual density mode of the tabs.
|
|
15503
|
+
*
|
|
15504
|
+
* The values that can be applied are `Cozy`, `Compact` and `Inherit`. `Cozy` and `Compact` render the control
|
|
15505
|
+
* in one of these modes independent of the global density settings. The `Inherit` value follows the global
|
|
15506
|
+
* density settings which are applied. For compatibility reasons, the default value is `Cozy`.
|
|
15507
|
+
*/
|
|
15508
|
+
tabDensityMode?:
|
|
15509
|
+
| sap.m.IconTabDensityMode
|
|
15510
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15511
|
+
|
|
15512
|
+
/**
|
|
15513
|
+
* @SINCE 1.80
|
|
14345
15514
|
*
|
|
14346
15515
|
* Specifies optional texts for the screen reader.
|
|
14347
15516
|
*
|
|
@@ -14357,74 +15526,36 @@ declare namespace sap {
|
|
|
14357
15526
|
*
|
|
14358
15527
|
* The default `End` mode shows as many tabs that can fit on the screen, then shows one overflow at the
|
|
14359
15528
|
* end containing the remaining items. The `StartAndEnd` is used to keep the order of tabs intact and offers
|
|
14360
|
-
*
|
|
15529
|
+
* overflow tabs on both ends of the bar.
|
|
14361
15530
|
*/
|
|
14362
15531
|
tabsOverflowMode?:
|
|
14363
15532
|
| sap.m.TabsOverflowMode
|
|
14364
15533
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14365
15534
|
|
|
14366
15535
|
/**
|
|
14367
|
-
* The items displayed in the
|
|
15536
|
+
* The items displayed in the IconTabHeader.
|
|
14368
15537
|
*/
|
|
14369
15538
|
items?:
|
|
14370
15539
|
| sap.m.IconTab[]
|
|
14371
15540
|
| sap.m.IconTab
|
|
14372
15541
|
| sap.ui.base.ManagedObject.AggregationBindingInfo;
|
|
14373
15542
|
|
|
14374
|
-
/**
|
|
14375
|
-
* Represents the contents displayed below the IconTabBar. If there are multiple contents, they are rendered
|
|
14376
|
-
* after each other. The developer has to manage to display the right one or use the content aggregation
|
|
14377
|
-
* inside the IconTabFilter (which will be displayed instead if it is set).
|
|
14378
|
-
*/
|
|
14379
|
-
content?:
|
|
14380
|
-
| sap.ui.core.Control[]
|
|
14381
|
-
| sap.ui.core.Control
|
|
14382
|
-
| sap.ui.base.ManagedObject.AggregationBindingInfo;
|
|
14383
|
-
|
|
14384
15543
|
/**
|
|
14385
15544
|
* Fires when an item is selected.
|
|
14386
15545
|
*/
|
|
14387
15546
|
select?: (oEvent: sap.ui.base.Event) => void;
|
|
14388
|
-
|
|
14389
|
-
/**
|
|
14390
|
-
* @SINCE 1.15.0
|
|
14391
|
-
*
|
|
14392
|
-
* Indicates that the tab will expand or collapse.
|
|
14393
|
-
*/
|
|
14394
|
-
expand?: (oEvent: sap.ui.base.Event) => void;
|
|
14395
15547
|
}
|
|
14396
15548
|
|
|
14397
|
-
interface $
|
|
14398
|
-
/**
|
|
14399
|
-
* Represents the "count" text, which is displayed in the tab filter.
|
|
14400
|
-
*/
|
|
14401
|
-
count?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14402
|
-
|
|
14403
|
-
/**
|
|
14404
|
-
* Enables special visualization for disabled filter (show all items). **Note:** You can use this property
|
|
14405
|
-
* when you use `IconTabBar` as a filter. In order for it to be displayed correctly, the other tabs in the
|
|
14406
|
-
* filter should consist of an icon, text and an optional count. It can be set to true for the first tab
|
|
14407
|
-
* filter. You can find more detailed information in the {@link https://experience.sap.com/fiori-design-web/icontabbar/#tabs-as-filters
|
|
14408
|
-
* UX Guidelines}.
|
|
14409
|
-
*/
|
|
14410
|
-
showAll?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14411
|
-
|
|
15549
|
+
interface $IconTabSeparatorSettings extends sap.ui.core.$ElementSettings {
|
|
14412
15550
|
/**
|
|
14413
|
-
*
|
|
15551
|
+
* The icon to display for this separator. If no icon is given, a separator line is used instead.
|
|
14414
15552
|
*/
|
|
14415
15553
|
icon?: sap.ui.core.URI | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14416
15554
|
|
|
14417
15555
|
/**
|
|
14418
|
-
* Specifies the
|
|
14419
|
-
*
|
|
14420
|
-
* If an icon font is used, the color can be chosen from the icon colors (sap.ui.core.IconColor). Possible
|
|
14421
|
-
* semantic colors are: Neutral, Positive, Critical, Negative. Instead of the semantic icon color the brand
|
|
14422
|
-
* color can be used, this is named Default. Semantic colors and brand colors should not be mixed up inside
|
|
14423
|
-
* one IconTabBar.
|
|
15556
|
+
* Specifies whether the separator is rendered.
|
|
14424
15557
|
*/
|
|
14425
|
-
|
|
14426
|
-
| sap.ui.core.IconColor
|
|
14427
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15558
|
+
visible?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14428
15559
|
|
|
14429
15560
|
/**
|
|
14430
15561
|
* If set to true, it sends one or more requests, trying to get the density perfect version of the image
|
|
@@ -14435,192 +15566,102 @@ declare namespace sap {
|
|
|
14435
15566
|
iconDensityAware?:
|
|
14436
15567
|
| boolean
|
|
14437
15568
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14438
|
-
|
|
14439
|
-
/**
|
|
14440
|
-
* Specifies whether the tab filter is rendered.
|
|
14441
|
-
*/
|
|
14442
|
-
visible?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14443
|
-
|
|
14444
|
-
/**
|
|
14445
|
-
* Specifies whether the icon and the texts are placed vertically or horizontally.
|
|
14446
|
-
*/
|
|
14447
|
-
design?:
|
|
14448
|
-
| sap.m.IconTabFilterDesign
|
|
14449
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14450
|
-
|
|
14451
|
-
/**
|
|
14452
|
-
* @SINCE 1.15.0
|
|
14453
|
-
*
|
|
14454
|
-
* The content displayed for this item (optional).
|
|
14455
|
-
*
|
|
14456
|
-
* If this content is set, it is displayed instead of the general content inside the IconTabBar.
|
|
14457
|
-
*/
|
|
14458
|
-
content?:
|
|
14459
|
-
| sap.ui.core.Control[]
|
|
14460
|
-
| sap.ui.core.Control
|
|
14461
|
-
| sap.ui.base.ManagedObject.AggregationBindingInfo;
|
|
14462
|
-
|
|
14463
|
-
/**
|
|
14464
|
-
* @SINCE 1.77
|
|
14465
|
-
* @EXPERIMENTAL (since 1.77)
|
|
14466
|
-
*
|
|
14467
|
-
* The sub items of this filter (optional).
|
|
14468
|
-
*/
|
|
14469
|
-
items?:
|
|
14470
|
-
| sap.m.IconTab[]
|
|
14471
|
-
| sap.m.IconTab
|
|
14472
|
-
| sap.ui.base.ManagedObject.AggregationBindingInfo;
|
|
14473
15569
|
}
|
|
14474
15570
|
|
|
14475
|
-
interface $
|
|
14476
|
-
/**
|
|
14477
|
-
* @deprecated (since 1.15.0) - Regarding to changes of this control this property is not needed anymore.
|
|
14478
|
-
*
|
|
14479
|
-
* Defines whether the current selection is visualized.
|
|
14480
|
-
*/
|
|
14481
|
-
showSelection?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14482
|
-
|
|
14483
|
-
/**
|
|
14484
|
-
* @SINCE 1.15.0
|
|
14485
|
-
*
|
|
14486
|
-
* Key of the selected item.
|
|
14487
|
-
*
|
|
14488
|
-
* If the key has no corresponding aggregated item, no changes will apply. If duplicate keys exists the
|
|
14489
|
-
* first item matching, the key is used.
|
|
14490
|
-
*/
|
|
14491
|
-
selectedKey?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14492
|
-
|
|
15571
|
+
interface $IllustratedMessageSettings extends sap.ui.core.$ControlSettings {
|
|
14493
15572
|
/**
|
|
14494
|
-
* @SINCE 1.
|
|
15573
|
+
* @SINCE 1.98
|
|
14495
15574
|
*
|
|
14496
|
-
*
|
|
14497
|
-
*/
|
|
14498
|
-
visible?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14499
|
-
|
|
14500
|
-
/**
|
|
14501
|
-
* @SINCE 1.40
|
|
15575
|
+
* Defines the description displayed below the title.
|
|
14502
15576
|
*
|
|
14503
|
-
*
|
|
15577
|
+
* If there is no initial input from the app developer and the default illustration set is being used, a
|
|
15578
|
+
* default description for the current illustration type is going to be displayed. The default description
|
|
15579
|
+
* is stored in the `sap.m` resource bundle.
|
|
14504
15580
|
*/
|
|
14505
|
-
|
|
14506
|
-
| sap.m.IconTabHeaderMode
|
|
14507
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15581
|
+
description?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14508
15582
|
|
|
14509
15583
|
/**
|
|
14510
|
-
* @
|
|
15584
|
+
* @SINCE 1.98
|
|
14511
15585
|
*
|
|
14512
|
-
*
|
|
15586
|
+
* Defines whether the value set in the `description` property is displayed as formatted text in HTML format.
|
|
14513
15587
|
*
|
|
14514
|
-
*
|
|
14515
|
-
* specific tab filter easier.
|
|
15588
|
+
* For details regarding supported HTML tags, see {@link sap.m.FormattedText}.
|
|
14516
15589
|
*/
|
|
14517
|
-
|
|
15590
|
+
enableFormattedText?:
|
|
14518
15591
|
| boolean
|
|
14519
15592
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14520
15593
|
|
|
14521
15594
|
/**
|
|
14522
|
-
* @SINCE 1.
|
|
14523
|
-
*
|
|
14524
|
-
* Specifies the background color of the header.
|
|
15595
|
+
* @SINCE 1.98
|
|
14525
15596
|
*
|
|
14526
|
-
*
|
|
14527
|
-
* "Transparent". **Note:** In SAP Belize Deep (sap_belize_plus) theme this property should be set to "Solid".
|
|
14528
|
-
*/
|
|
14529
|
-
backgroundDesign?:
|
|
14530
|
-
| sap.m.BackgroundDesign
|
|
14531
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14532
|
-
|
|
14533
|
-
/**
|
|
14534
|
-
* @SINCE 1.46
|
|
15597
|
+
* Determines which illustration breakpoint variant is used.
|
|
14535
15598
|
*
|
|
14536
|
-
*
|
|
14537
|
-
*
|
|
14538
|
-
* sap.m.IconTabSeparator}
|
|
15599
|
+
* As `IllustratedMessage` adapts itself around the `Illustration`, the other elements of the control are
|
|
15600
|
+
* displayed differently on the different breakpoints/illustration sizes.
|
|
14539
15601
|
*/
|
|
14540
|
-
|
|
14541
|
-
|
|
|
15602
|
+
illustrationSize?:
|
|
15603
|
+
| sap.m.IllustratedMessageSize
|
|
14542
15604
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14543
15605
|
|
|
14544
15606
|
/**
|
|
14545
|
-
* @SINCE 1.
|
|
15607
|
+
* @SINCE 1.98
|
|
14546
15608
|
*
|
|
14547
|
-
*
|
|
14548
|
-
* 0 which means nesting via interaction is not allowed. Maximum value is 100. This property allows nesting
|
|
14549
|
-
* via user interaction only, and does not restrict adding items to the `items` aggregation of {@link sap.m.IconTabFilter
|
|
14550
|
-
* sap.m.IconTabFilter}.
|
|
14551
|
-
*/
|
|
14552
|
-
maxNestingLevel?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14553
|
-
|
|
14554
|
-
/**
|
|
14555
|
-
* @SINCE 1.56
|
|
15609
|
+
* Determines which illustration type is displayed.
|
|
14556
15610
|
*
|
|
14557
|
-
*
|
|
15611
|
+
* **Note:** The {@link sap.m.IllustratedMessageType} enumeration contains a default illustration set. If
|
|
15612
|
+
* you want to use another illustration set, you have to register it in the {@link sap.m.IllustrationPool}.
|
|
14558
15613
|
*
|
|
14559
|
-
*
|
|
14560
|
-
*
|
|
14561
|
-
*
|
|
15614
|
+
* Example input for the `illustrationType` property is `sapIllus-UnableToLoad`. The logic behind this format
|
|
15615
|
+
* is as follows:
|
|
15616
|
+
* - First is the the illustration set - sapIllus
|
|
15617
|
+
* - Second is the illustration type - UnableToLoad
|
|
14562
15618
|
*/
|
|
14563
|
-
|
|
14564
|
-
| sap.m.IconTabDensityMode
|
|
14565
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15619
|
+
illustrationType?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14566
15620
|
|
|
14567
15621
|
/**
|
|
14568
|
-
* @SINCE 1.
|
|
15622
|
+
* @SINCE 1.98
|
|
14569
15623
|
*
|
|
14570
|
-
*
|
|
15624
|
+
* Defines the title that is displayed below the illustration.
|
|
14571
15625
|
*
|
|
14572
|
-
*
|
|
14573
|
-
*
|
|
15626
|
+
* If there is no initial input from the app developer and the default illustration set is being used, a
|
|
15627
|
+
* default title is displayed corresponding to the current `illustrationType`.
|
|
14574
15628
|
*/
|
|
14575
|
-
|
|
15629
|
+
title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14576
15630
|
|
|
14577
15631
|
/**
|
|
14578
|
-
* @SINCE 1.
|
|
15632
|
+
* @SINCE 1.98
|
|
14579
15633
|
*
|
|
14580
|
-
*
|
|
15634
|
+
* Defines the controls placed below the description as additional content.
|
|
14581
15635
|
*
|
|
14582
|
-
*
|
|
14583
|
-
* end containing the remaining items. The `StartAndEnd` is used to keep the order of tabs intact and offers
|
|
14584
|
-
* overflow tabs on both ends of the bar.
|
|
14585
|
-
*/
|
|
14586
|
-
tabsOverflowMode?:
|
|
14587
|
-
| sap.m.TabsOverflowMode
|
|
14588
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14589
|
-
|
|
14590
|
-
/**
|
|
14591
|
-
* The items displayed in the IconTabHeader.
|
|
15636
|
+
* **Note:** Not displayed when `illustrationSize` is set to `Base`.
|
|
14592
15637
|
*/
|
|
14593
|
-
|
|
14594
|
-
| sap.m.
|
|
14595
|
-
| sap.m.
|
|
15638
|
+
additionalContent?:
|
|
15639
|
+
| sap.m.Button[]
|
|
15640
|
+
| sap.m.Button
|
|
14596
15641
|
| sap.ui.base.ManagedObject.AggregationBindingInfo;
|
|
14597
|
-
|
|
14598
|
-
/**
|
|
14599
|
-
* Fires when an item is selected.
|
|
14600
|
-
*/
|
|
14601
|
-
select?: (oEvent: sap.ui.base.Event) => void;
|
|
14602
15642
|
}
|
|
14603
15643
|
|
|
14604
|
-
interface $
|
|
15644
|
+
interface $IllustrationSettings extends sap.ui.core.$ControlSettings {
|
|
14605
15645
|
/**
|
|
14606
|
-
*
|
|
15646
|
+
* @SINCE 1.98
|
|
15647
|
+
*
|
|
15648
|
+
* Defines which illustration set should be used when building the Symbol ID.
|
|
14607
15649
|
*/
|
|
14608
|
-
|
|
15650
|
+
set?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14609
15651
|
|
|
14610
15652
|
/**
|
|
14611
|
-
*
|
|
15653
|
+
* @SINCE 1.98
|
|
15654
|
+
*
|
|
15655
|
+
* Defines which media/breakpoint should be used when building the Symbol ID.
|
|
14612
15656
|
*/
|
|
14613
|
-
|
|
15657
|
+
media?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14614
15658
|
|
|
14615
15659
|
/**
|
|
14616
|
-
*
|
|
14617
|
-
* if this version of the image doesn't exist on the server. Default value is set to true.
|
|
15660
|
+
* @SINCE 1.98
|
|
14618
15661
|
*
|
|
14619
|
-
*
|
|
15662
|
+
* Defines which illustration type should be used when building the Symbol ID.
|
|
14620
15663
|
*/
|
|
14621
|
-
|
|
14622
|
-
| boolean
|
|
14623
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15664
|
+
type?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14624
15665
|
}
|
|
14625
15666
|
|
|
14626
15667
|
interface $ImageSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -14897,7 +15938,7 @@ declare namespace sap {
|
|
|
14897
15938
|
*
|
|
14898
15939
|
* If set to true, direct text input is disabled and the control will trigger the event "valueHelpRequest"
|
|
14899
15940
|
* for all user interactions. The properties "showValueHelp", "editable", and "enabled" must be set to true,
|
|
14900
|
-
* otherwise the property will have no effect
|
|
15941
|
+
* otherwise the property will have no effect. In this scenario, the `showItems` API will not work.
|
|
14901
15942
|
*/
|
|
14902
15943
|
valueHelpOnly?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14903
15944
|
|
|
@@ -15370,6 +16411,17 @@ declare namespace sap {
|
|
|
15370
16411
|
| sap.ui.core.VerticalAlign
|
|
15371
16412
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15372
16413
|
|
|
16414
|
+
/**
|
|
16415
|
+
* @SINCE 1.98
|
|
16416
|
+
*
|
|
16417
|
+
* Defines whether a colon (:) character is added to the label.
|
|
16418
|
+
*
|
|
16419
|
+
* **Note:** By default when the `Label` is in the `sap.ui.layout.form.Form` and `sap.ui.layout.form.SimpleForm`
|
|
16420
|
+
* controls the colon (:) character is displayed automatically regardless of the value of the `showColon`
|
|
16421
|
+
* property.
|
|
16422
|
+
*/
|
|
16423
|
+
showColon?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
16424
|
+
|
|
15373
16425
|
/**
|
|
15374
16426
|
* Association to the labeled control. By default the label set the for attribute to the ID of the labeled
|
|
15375
16427
|
* control. This can be changed by implementing the function getIdForLabel on the labelled control.
|
|
@@ -17143,6 +18195,24 @@ declare namespace sap {
|
|
|
17143
18195
|
| sap.ui.core.TextDirection
|
|
17144
18196
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
17145
18197
|
|
|
18198
|
+
/**
|
|
18199
|
+
* @SINCE 1.97.0
|
|
18200
|
+
*
|
|
18201
|
+
* Specifies the value of the `aria-haspopup` attribute
|
|
18202
|
+
*
|
|
18203
|
+
* If the value is `None`, the attribute will not be rendered. Otherwise it will be rendered with the selected
|
|
18204
|
+
* value.
|
|
18205
|
+
*
|
|
18206
|
+
* NOTE: Use this property only when an `sap.m.ObjectAttribute` instance is active and related to a popover/popup.
|
|
18207
|
+
* The value needs to be equal to the main/root role of the popup - e.g. dialog, menu or list (examples:
|
|
18208
|
+
* if you have dialog -> dialog, if you have menu -> menu; if you have list -> list; if you have dialog
|
|
18209
|
+
* containing a list -> dialog). Do not use it, if you open a standard sap.m.Dialog, MessageBox or other
|
|
18210
|
+
* type of modal dialogs.
|
|
18211
|
+
*/
|
|
18212
|
+
ariaHasPopup?:
|
|
18213
|
+
| sap.ui.core.aria.HasPopup
|
|
18214
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
18215
|
+
|
|
17146
18216
|
/**
|
|
17147
18217
|
* When the aggregation is set, it replaces the `text`, `active` and `textDirection` properties. This also
|
|
17148
18218
|
* ignores the press event. The provided control is displayed as an active link in case it is a sap.m.Link.
|
|
@@ -21572,7 +22642,7 @@ declare namespace sap {
|
|
|
21572
22642
|
* user inputs, set this flag to `true`.
|
|
21573
22643
|
*
|
|
21574
22644
|
* **Note:** The sap.m.SelectDialog uses {@link sap.m.ListBase#rememberSelections this} property of the
|
|
21575
|
-
* ListBase and therefore its
|
|
22645
|
+
* ListBase and therefore its behavior and restrictions also apply here.
|
|
21576
22646
|
*/
|
|
21577
22647
|
rememberSelections?:
|
|
21578
22648
|
| boolean
|
|
@@ -21987,7 +23057,7 @@ declare namespace sap {
|
|
|
21987
23057
|
* 'phone@2':'phone-retina_114x114.png', 'tablet':'tablet-icon_72x72.png', 'tablet@2':'tablet-retina_144x144.png',
|
|
21988
23058
|
* 'precomposed':true, 'favicon':'favicon.ico' }
|
|
21989
23059
|
*
|
|
21990
|
-
* See
|
|
23060
|
+
* See {@link module:sap/ui/util/Mobile.setIcons} for full documentation.
|
|
21991
23061
|
*/
|
|
21992
23062
|
homeIcon?: object | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
21993
23063
|
|
|
@@ -22096,6 +23166,17 @@ declare namespace sap {
|
|
|
22096
23166
|
| boolean
|
|
22097
23167
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
22098
23168
|
|
|
23169
|
+
/**
|
|
23170
|
+
* @SINCE 1.98
|
|
23171
|
+
*
|
|
23172
|
+
* If set, the first day of the displayed week is this day. Valid values are 0 to 6 starting on Sunday.
|
|
23173
|
+
* If there is no valid value set, the default of the used locale is used.
|
|
23174
|
+
*
|
|
23175
|
+
* Note: This property will only have effect in Week view and Month view of the SinglePlanningCalendar,
|
|
23176
|
+
* but it wouldn't have effect in WorkWeek view.
|
|
23177
|
+
*/
|
|
23178
|
+
firstDayOfWeek?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
23179
|
+
|
|
22099
23180
|
/**
|
|
22100
23181
|
* The controls to be passed to the toolbar.
|
|
22101
23182
|
*/
|
|
@@ -22227,6 +23308,17 @@ declare namespace sap {
|
|
|
22227
23308
|
* Adds a title for the view
|
|
22228
23309
|
*/
|
|
22229
23310
|
title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
23311
|
+
|
|
23312
|
+
/**
|
|
23313
|
+
* @SINCE 1.98
|
|
23314
|
+
*
|
|
23315
|
+
* If set, the first day of the displayed week is this day. Valid values are 0 to 6 starting on Sunday.
|
|
23316
|
+
* If there is no valid value set, the default of the used locale is used.
|
|
23317
|
+
*
|
|
23318
|
+
* Note: This property will only have effect in Week view and Month view of the SinglePlanningCalendar,
|
|
23319
|
+
* but it wouldn't have effect in WorkWeek view.
|
|
23320
|
+
*/
|
|
23321
|
+
firstDayOfWeek?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
22230
23322
|
}
|
|
22231
23323
|
|
|
22232
23324
|
interface $SinglePlanningCalendarWeekViewSettings
|
|
@@ -22760,6 +23852,18 @@ declare namespace sap {
|
|
|
22760
23852
|
* 0 or a positive integer must be used for this property.
|
|
22761
23853
|
*/
|
|
22762
23854
|
wrapCharLimit?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
23855
|
+
|
|
23856
|
+
/**
|
|
23857
|
+
* @SINCE 1.98
|
|
23858
|
+
*
|
|
23859
|
+
* A `sap.m.Avatar` control instance that, if set, is used instead of an icon or image.
|
|
23860
|
+
*
|
|
23861
|
+
* The size of the `Avatar` control depends on the `insetIcon` property of `StandardListItem`. The `displaySize`
|
|
23862
|
+
* property of the `Avatar` control is not supported. If the `insetIcon` property of `StandardListItem`
|
|
23863
|
+
* is set to `true`, the size of the `Avatar` control is set to XS; if the `insetIcon` property of `StandardListItem`
|
|
23864
|
+
* is set to `false`, the size of the `Avatar` control is set to "S".
|
|
23865
|
+
*/
|
|
23866
|
+
avatar?: sap.m.Avatar;
|
|
22763
23867
|
}
|
|
22764
23868
|
|
|
22765
23869
|
interface $StandardTileSettings extends sap.m.$TileSettings {
|
|
@@ -23948,6 +25052,15 @@ declare namespace sap {
|
|
|
23948
25052
|
*/
|
|
23949
25053
|
hideInput?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
23950
25054
|
|
|
25055
|
+
/**
|
|
25056
|
+
* @SINCE 1.98
|
|
25057
|
+
*
|
|
25058
|
+
* Determines whether there is a shortcut navigation to current time.
|
|
25059
|
+
*/
|
|
25060
|
+
showCurrentTimeButton?:
|
|
25061
|
+
| boolean
|
|
25062
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
25063
|
+
|
|
23951
25064
|
/**
|
|
23952
25065
|
* A list of validation rules (one rule per mask character).
|
|
23953
25066
|
*/
|
|
@@ -25291,6 +26404,10 @@ declare namespace sap {
|
|
|
25291
26404
|
*/
|
|
25292
26405
|
sKey: string
|
|
25293
26406
|
): sap.m.DynamicDateOption;
|
|
26407
|
+
/**
|
|
26408
|
+
* Gets sorted array of all standard keys.
|
|
26409
|
+
*/
|
|
26410
|
+
getStandardKeys(): string[];
|
|
25294
26411
|
/**
|
|
25295
26412
|
* Parses a string to an array of objects in the DynamicDateRange's value format. Uses the provided formatter.
|
|
25296
26413
|
*/
|
|
@@ -25320,6 +26437,73 @@ declare namespace sap {
|
|
|
25320
26437
|
}
|
|
25321
26438
|
const DynamicDateUtil: DynamicDateUtil;
|
|
25322
26439
|
|
|
26440
|
+
/**
|
|
26441
|
+
* @SINCE 1.98
|
|
26442
|
+
*
|
|
26443
|
+
* `IllustrationPool` loads the illustration assets (SVGs) via XMLHttpRequest requests.
|
|
26444
|
+
*
|
|
26445
|
+
* The successfully loaded data is kept in the DOM (div with ID `sap-illustration-pool`) in the `sap-ui-static`
|
|
26446
|
+
* DOM element.
|
|
26447
|
+
*
|
|
26448
|
+
* To load a given asset, register its illustration set through the {@link sap.m.IllustrationPool.registerIllustrationSet
|
|
26449
|
+
* registerIllustrationSet} API of `IllustrationPool`. The exception being the `sapIllus`, which is the
|
|
26450
|
+
* default illustration set that is registered by default.
|
|
26451
|
+
*
|
|
26452
|
+
* The default behavior of `IllustrationPool` is to load/require an asset only when it's needed by using
|
|
26453
|
+
* the {@link sap.m.IllustrationPool.loadAsset} API. When registering the new illustration set, you are
|
|
26454
|
+
* given the option to load all of its assets.
|
|
26455
|
+
*
|
|
26456
|
+
* If some of the assets are not loaded initially, you can load the rest of them on a later state with the
|
|
26457
|
+
* {@link sap.m.IllustrationPool.loadRestOfTheAssets} API.
|
|
26458
|
+
*/
|
|
26459
|
+
interface IllustrationPool {
|
|
26460
|
+
/**
|
|
26461
|
+
* Loads an SVG asset depending on the input asset ID.
|
|
26462
|
+
*/
|
|
26463
|
+
loadAsset(
|
|
26464
|
+
/**
|
|
26465
|
+
* The string ID of the asset being loaded
|
|
26466
|
+
*/
|
|
26467
|
+
sAssetId: string,
|
|
26468
|
+
/**
|
|
26469
|
+
* the ID of the Illustration instance which is requiring the asset
|
|
26470
|
+
*/
|
|
26471
|
+
sInstanceId: string
|
|
26472
|
+
): void;
|
|
26473
|
+
/**
|
|
26474
|
+
* Loads the rest of the SVG assets for a given illustration set.
|
|
26475
|
+
*/
|
|
26476
|
+
loadRestOfTheAssets(
|
|
26477
|
+
/**
|
|
26478
|
+
* The illustration set, the rest of the assets should be loaded for
|
|
26479
|
+
*/
|
|
26480
|
+
sIllustrationSet: string
|
|
26481
|
+
): void;
|
|
26482
|
+
/**
|
|
26483
|
+
* Registers an illustration set, which is needed before loading any of its assets.
|
|
26484
|
+
*/
|
|
26485
|
+
registerIllustrationSet(
|
|
26486
|
+
/**
|
|
26487
|
+
* object containing the name and the path of the Illustration Set
|
|
26488
|
+
*/
|
|
26489
|
+
oConfig: {
|
|
26490
|
+
/**
|
|
26491
|
+
* Name of the Illustration Set
|
|
26492
|
+
*/
|
|
26493
|
+
setFamily: string;
|
|
26494
|
+
/**
|
|
26495
|
+
* URL Path of the Illustration Set
|
|
26496
|
+
*/
|
|
26497
|
+
setURI: string;
|
|
26498
|
+
},
|
|
26499
|
+
/**
|
|
26500
|
+
* whether or not all of the assets for the Illustration Set should be loaded once the metadata is loaded
|
|
26501
|
+
*/
|
|
26502
|
+
bLoadAllResources: boolean
|
|
26503
|
+
): void;
|
|
26504
|
+
}
|
|
26505
|
+
const IllustrationPool: IllustrationPool;
|
|
26506
|
+
|
|
25323
26507
|
/**
|
|
25324
26508
|
* @SINCE 1.9.2
|
|
25325
26509
|
*
|
|
@@ -32896,6 +34080,13 @@ declare namespace sap {
|
|
|
32896
34080
|
* Default value is `8`.
|
|
32897
34081
|
*/
|
|
32898
34082
|
getAutoPopinWidth(): float;
|
|
34083
|
+
/**
|
|
34084
|
+
* @SINCE 1.98.0
|
|
34085
|
+
*
|
|
34086
|
+
* Returns the `sap.ui.core.IColumnHeaderMenu<\code>, which is the current target of the association columnHeaderMenu`,
|
|
34087
|
+
* or null.
|
|
34088
|
+
*/
|
|
34089
|
+
getColumnHeaderMenu(): sap.ui.core.IColumnHeaderMenu;
|
|
32899
34090
|
/**
|
|
32900
34091
|
* Returns CSS alignment according to column hAlign setting or given parameter for Begin/End values checks
|
|
32901
34092
|
* the locale settings
|
|
@@ -37317,6 +38508,16 @@ declare namespace sap {
|
|
|
37317
38508
|
* Default value is `1`.
|
|
37318
38509
|
*/
|
|
37319
38510
|
getSecondsStep(): int;
|
|
38511
|
+
/**
|
|
38512
|
+
* @SINCE 1.98
|
|
38513
|
+
*
|
|
38514
|
+
* Gets current value of property {@link #getShowCurrentTimeButton showCurrentTimeButton}.
|
|
38515
|
+
*
|
|
38516
|
+
* Determines whether there is a shortcut navigation to current time.
|
|
38517
|
+
*
|
|
38518
|
+
* Default value is `false`.
|
|
38519
|
+
*/
|
|
38520
|
+
getShowCurrentTimeButton(): boolean;
|
|
37320
38521
|
/**
|
|
37321
38522
|
* @SINCE 1.56
|
|
37322
38523
|
*
|
|
@@ -37353,6 +38554,23 @@ declare namespace sap {
|
|
|
37353
38554
|
*/
|
|
37354
38555
|
iSecondsStep?: int
|
|
37355
38556
|
): this;
|
|
38557
|
+
/**
|
|
38558
|
+
* @SINCE 1.98
|
|
38559
|
+
*
|
|
38560
|
+
* Sets a new value for property {@link #getShowCurrentTimeButton showCurrentTimeButton}.
|
|
38561
|
+
*
|
|
38562
|
+
* Determines whether there is a shortcut navigation to current time.
|
|
38563
|
+
*
|
|
38564
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
38565
|
+
*
|
|
38566
|
+
* Default value is `false`.
|
|
38567
|
+
*/
|
|
38568
|
+
setShowCurrentTimeButton(
|
|
38569
|
+
/**
|
|
38570
|
+
* New value for property `showCurrentTimeButton`
|
|
38571
|
+
*/
|
|
38572
|
+
bShowCurrentTimeButton?: boolean
|
|
38573
|
+
): this;
|
|
37356
38574
|
}
|
|
37357
38575
|
/**
|
|
37358
38576
|
* A popup that interrupts the current processing and prompts the user for an action or an input in a modal
|
|
@@ -39455,7 +40673,12 @@ declare namespace sap {
|
|
|
39455
40673
|
*
|
|
39456
40674
|
* Array of standard and custom option keys
|
|
39457
40675
|
*
|
|
39458
|
-
* Default value is `[
|
|
40676
|
+
* Default value is `["DATE", "TODAY", "YESTERDAY", "TOMORROW", "FIRSTDAYWEEK", "LASTDAYWEEK", "FIRSTDAYMONTH",
|
|
40677
|
+
* "LASTDAYMONTH", "FIRSTDAYQUARTER", "LASTDAYQUARTER", "FIRSTDAYYEAR", "LASTDAYYEAR", "DATERANGE", "FROM",
|
|
40678
|
+
* "TO", "YEARTODATE", "DATETOYEAR", "LASTDAYS", "LASTWEEKS", "LASTMONTHS", "LASTQUARTERS", "LASTYEARS",
|
|
40679
|
+
* "NEXTDAYS", "NEXTWEEKS", "NEXTMONTHS", "NEXTQUARTERS", "NEXTYEARS", "TODAYFROMTO", "THISWEEK", "LASTWEEK",
|
|
40680
|
+
* "NEXTWEEK", "SPECIFICMONTH", "THISMONTH", "LASTMONTH", "NEXTMONTH", "THISQUARTER", "LASTQUARTER", "NEXTQUARTER",
|
|
40681
|
+
* "QUARTER1", "QUARTER2", "QUARTER3", "QUARTER4", "THISYEAR", "LASTYEAR", "NEXTYEAR"]`.
|
|
39459
40682
|
*/
|
|
39460
40683
|
getOptions(): string[];
|
|
39461
40684
|
/**
|
|
@@ -39648,7 +40871,12 @@ declare namespace sap {
|
|
|
39648
40871
|
*
|
|
39649
40872
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
39650
40873
|
*
|
|
39651
|
-
* Default value is `[
|
|
40874
|
+
* Default value is `["DATE", "TODAY", "YESTERDAY", "TOMORROW", "FIRSTDAYWEEK", "LASTDAYWEEK", "FIRSTDAYMONTH",
|
|
40875
|
+
* "LASTDAYMONTH", "FIRSTDAYQUARTER", "LASTDAYQUARTER", "FIRSTDAYYEAR", "LASTDAYYEAR", "DATERANGE", "FROM",
|
|
40876
|
+
* "TO", "YEARTODATE", "DATETOYEAR", "LASTDAYS", "LASTWEEKS", "LASTMONTHS", "LASTQUARTERS", "LASTYEARS",
|
|
40877
|
+
* "NEXTDAYS", "NEXTWEEKS", "NEXTMONTHS", "NEXTQUARTERS", "NEXTYEARS", "TODAYFROMTO", "THISWEEK", "LASTWEEK",
|
|
40878
|
+
* "NEXTWEEK", "SPECIFICMONTH", "THISMONTH", "LASTMONTH", "NEXTMONTH", "THISQUARTER", "LASTQUARTER", "NEXTQUARTER",
|
|
40879
|
+
* "QUARTER1", "QUARTER2", "QUARTER3", "QUARTER4", "THISYEAR", "LASTYEAR", "NEXTYEAR"]`.
|
|
39652
40880
|
*/
|
|
39653
40881
|
setOptions(
|
|
39654
40882
|
/**
|
|
@@ -39819,6 +41047,12 @@ declare namespace sap {
|
|
|
39819
41047
|
* Returns a metadata object for class sap.m.DynamicDateValueHelpUIType.
|
|
39820
41048
|
*/
|
|
39821
41049
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
41050
|
+
/**
|
|
41051
|
+
* Gets current value of property {@link #getAdditionalText additionalText}.
|
|
41052
|
+
*
|
|
41053
|
+
* A text for an additional label that describes the interactive UI and is placed after the UI element.
|
|
41054
|
+
*/
|
|
41055
|
+
getAdditionalText(): string;
|
|
39822
41056
|
/**
|
|
39823
41057
|
* Gets current value of property {@link #getOptions options}.
|
|
39824
41058
|
*
|
|
@@ -39828,7 +41062,7 @@ declare namespace sap {
|
|
|
39828
41062
|
/**
|
|
39829
41063
|
* Gets current value of property {@link #getText text}.
|
|
39830
41064
|
*
|
|
39831
|
-
* A text for an additional label
|
|
41065
|
+
* A text for an additional label that describes the interactive UI and is placed before the UI element.
|
|
39832
41066
|
*/
|
|
39833
41067
|
getText(): string;
|
|
39834
41068
|
/**
|
|
@@ -39838,6 +41072,19 @@ declare namespace sap {
|
|
|
39838
41072
|
* or input.
|
|
39839
41073
|
*/
|
|
39840
41074
|
getType(): string;
|
|
41075
|
+
/**
|
|
41076
|
+
* Sets a new value for property {@link #getAdditionalText additionalText}.
|
|
41077
|
+
*
|
|
41078
|
+
* A text for an additional label that describes the interactive UI and is placed after the UI element.
|
|
41079
|
+
*
|
|
41080
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
41081
|
+
*/
|
|
41082
|
+
setAdditionalText(
|
|
41083
|
+
/**
|
|
41084
|
+
* New value for property `additionalText`
|
|
41085
|
+
*/
|
|
41086
|
+
sAdditionalText: string
|
|
41087
|
+
): this;
|
|
39841
41088
|
/**
|
|
39842
41089
|
* Sets a new value for property {@link #getOptions options}.
|
|
39843
41090
|
*
|
|
@@ -39854,7 +41101,7 @@ declare namespace sap {
|
|
|
39854
41101
|
/**
|
|
39855
41102
|
* Sets a new value for property {@link #getText text}.
|
|
39856
41103
|
*
|
|
39857
|
-
* A text for an additional label
|
|
41104
|
+
* A text for an additional label that describes the interactive UI and is placed before the UI element.
|
|
39858
41105
|
*
|
|
39859
41106
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
39860
41107
|
*/
|
|
@@ -47314,7 +48561,6 @@ declare namespace sap {
|
|
|
47314
48561
|
): this;
|
|
47315
48562
|
/**
|
|
47316
48563
|
* @SINCE 1.77
|
|
47317
|
-
* @EXPERIMENTAL (since 1.77)
|
|
47318
48564
|
*
|
|
47319
48565
|
* Adds some item to the aggregation {@link #getItems items}.
|
|
47320
48566
|
*/
|
|
@@ -47332,7 +48578,6 @@ declare namespace sap {
|
|
|
47332
48578
|
destroyContent(): this;
|
|
47333
48579
|
/**
|
|
47334
48580
|
* @SINCE 1.77
|
|
47335
|
-
* @EXPERIMENTAL (since 1.77)
|
|
47336
48581
|
*
|
|
47337
48582
|
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
47338
48583
|
*/
|
|
@@ -47397,7 +48642,6 @@ declare namespace sap {
|
|
|
47397
48642
|
getIconDensityAware(): boolean;
|
|
47398
48643
|
/**
|
|
47399
48644
|
* @SINCE 1.77
|
|
47400
|
-
* @EXPERIMENTAL (since 1.77)
|
|
47401
48645
|
*
|
|
47402
48646
|
* Gets content of aggregation {@link #getItems items}.
|
|
47403
48647
|
*
|
|
@@ -47438,7 +48682,6 @@ declare namespace sap {
|
|
|
47438
48682
|
): int;
|
|
47439
48683
|
/**
|
|
47440
48684
|
* @SINCE 1.77
|
|
47441
|
-
* @EXPERIMENTAL (since 1.77)
|
|
47442
48685
|
*
|
|
47443
48686
|
* Checks for the provided `sap.m.IconTab` in the aggregation {@link #getItems items}. and returns its index
|
|
47444
48687
|
* if found or -1 otherwise.
|
|
@@ -47468,7 +48711,6 @@ declare namespace sap {
|
|
|
47468
48711
|
): this;
|
|
47469
48712
|
/**
|
|
47470
48713
|
* @SINCE 1.77
|
|
47471
|
-
* @EXPERIMENTAL (since 1.77)
|
|
47472
48714
|
*
|
|
47473
48715
|
* Inserts a item into the aggregation {@link #getItems items}.
|
|
47474
48716
|
*/
|
|
@@ -47494,7 +48736,6 @@ declare namespace sap {
|
|
|
47494
48736
|
removeAllContent(): sap.ui.core.Control[];
|
|
47495
48737
|
/**
|
|
47496
48738
|
* @SINCE 1.77
|
|
47497
|
-
* @EXPERIMENTAL (since 1.77)
|
|
47498
48739
|
*
|
|
47499
48740
|
* Removes all the controls from the aggregation {@link #getItems items}.
|
|
47500
48741
|
*
|
|
@@ -47514,7 +48755,6 @@ declare namespace sap {
|
|
|
47514
48755
|
): sap.ui.core.Control;
|
|
47515
48756
|
/**
|
|
47516
48757
|
* @SINCE 1.77
|
|
47517
|
-
* @EXPERIMENTAL (since 1.77)
|
|
47518
48758
|
*
|
|
47519
48759
|
* Removes a item from the aggregation {@link #getItems items}.
|
|
47520
48760
|
*/
|
|
@@ -48391,6 +49631,463 @@ declare namespace sap {
|
|
|
48391
49631
|
bVisible?: boolean
|
|
48392
49632
|
): this;
|
|
48393
49633
|
}
|
|
49634
|
+
/**
|
|
49635
|
+
* @SINCE 1.98
|
|
49636
|
+
*
|
|
49637
|
+
* A combination of message and illustration to represent an empty or a success state.
|
|
49638
|
+
*
|
|
49639
|
+
* Overview:
|
|
49640
|
+
*
|
|
49641
|
+
* An `IllustratedMessage` is a recommended combination of a solution-oriented message, an engaging illustration,
|
|
49642
|
+
* and conversational tone to better communicate an empty or a success state than just show a message alone.
|
|
49643
|
+
* Empty states are moments in the user experience where there’s no data to display. Success states are
|
|
49644
|
+
* occasions to celebrate and reward a user’s special accomplishment or the completion of an important task.
|
|
49645
|
+
*
|
|
49646
|
+
* The `IllustratedMessage` control is meant to be used inside container controls, for example a `Card`,
|
|
49647
|
+
* a `Dialog`, or a `Page`.
|
|
49648
|
+
*
|
|
49649
|
+
* Structure:
|
|
49650
|
+
*
|
|
49651
|
+
* The `IllustratedMessage` consists of the following elements, which are displayed below each other in
|
|
49652
|
+
* the following order:
|
|
49653
|
+
* - Illustration
|
|
49654
|
+
* - Title
|
|
49655
|
+
* - Description
|
|
49656
|
+
* - Additional Content
|
|
49657
|
+
*
|
|
49658
|
+
* Responsive Behavior:
|
|
49659
|
+
*
|
|
49660
|
+
* The `IllustratedMessage` control can adapt depending on the API settings provided by the app developer
|
|
49661
|
+
* and the available space of its parent container. Some of the structural elements are displayed differently
|
|
49662
|
+
* or are omitted in the different breakpoint sizes (XS, S, M, L).
|
|
49663
|
+
*/
|
|
49664
|
+
class IllustratedMessage extends sap.ui.core.Control {
|
|
49665
|
+
/**
|
|
49666
|
+
* Constructor for a new `IllustratedMessage`.
|
|
49667
|
+
*
|
|
49668
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
49669
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
49670
|
+
* of the syntax of the settings object.
|
|
49671
|
+
*/
|
|
49672
|
+
constructor(
|
|
49673
|
+
/**
|
|
49674
|
+
* Initial settings for the new control
|
|
49675
|
+
*/
|
|
49676
|
+
mSettings?: sap.m.$IllustratedMessageSettings
|
|
49677
|
+
);
|
|
49678
|
+
/**
|
|
49679
|
+
* Constructor for a new `IllustratedMessage`.
|
|
49680
|
+
*
|
|
49681
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
49682
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
49683
|
+
* of the syntax of the settings object.
|
|
49684
|
+
*/
|
|
49685
|
+
constructor(
|
|
49686
|
+
/**
|
|
49687
|
+
* ID for the new control, generated automatically if no ID is given
|
|
49688
|
+
*/
|
|
49689
|
+
sId?: string,
|
|
49690
|
+
/**
|
|
49691
|
+
* Initial settings for the new control
|
|
49692
|
+
*/
|
|
49693
|
+
mSettings?: sap.m.$IllustratedMessageSettings
|
|
49694
|
+
);
|
|
49695
|
+
|
|
49696
|
+
/**
|
|
49697
|
+
* Creates a new subclass of class sap.m.IllustratedMessage with name `sClassName` and enriches it with
|
|
49698
|
+
* the information contained in `oClassInfo`.
|
|
49699
|
+
*
|
|
49700
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
49701
|
+
*/
|
|
49702
|
+
static extend<T extends Record<string, unknown>>(
|
|
49703
|
+
/**
|
|
49704
|
+
* Name of the class being created
|
|
49705
|
+
*/
|
|
49706
|
+
sClassName: string,
|
|
49707
|
+
/**
|
|
49708
|
+
* Object literal with information about the class
|
|
49709
|
+
*/
|
|
49710
|
+
oClassInfo?: sap.ClassInfo<T, sap.m.IllustratedMessage>,
|
|
49711
|
+
/**
|
|
49712
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
49713
|
+
* used by this class
|
|
49714
|
+
*/
|
|
49715
|
+
FNMetaImpl?: Function
|
|
49716
|
+
): Function;
|
|
49717
|
+
/**
|
|
49718
|
+
* Returns a metadata object for class sap.m.IllustratedMessage.
|
|
49719
|
+
*/
|
|
49720
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
49721
|
+
/**
|
|
49722
|
+
* @SINCE 1.98
|
|
49723
|
+
*
|
|
49724
|
+
* Adds some additionalContent to the aggregation {@link #getAdditionalContent additionalContent}.
|
|
49725
|
+
*/
|
|
49726
|
+
addAdditionalContent(
|
|
49727
|
+
/**
|
|
49728
|
+
* The additionalContent to add; if empty, nothing is inserted
|
|
49729
|
+
*/
|
|
49730
|
+
oAdditionalContent: sap.m.Button
|
|
49731
|
+
): this;
|
|
49732
|
+
/**
|
|
49733
|
+
* @SINCE 1.98
|
|
49734
|
+
*
|
|
49735
|
+
* Destroys all the additionalContent in the aggregation {@link #getAdditionalContent additionalContent}.
|
|
49736
|
+
*/
|
|
49737
|
+
destroyAdditionalContent(): this;
|
|
49738
|
+
/**
|
|
49739
|
+
* @SINCE 1.98.0
|
|
49740
|
+
*
|
|
49741
|
+
* Returns object with ID references of the title and description containers.
|
|
49742
|
+
*
|
|
49743
|
+
* **Note:** Changing the value of the `enableFormattedText` property changes the references of of title
|
|
49744
|
+
* and description containers.
|
|
49745
|
+
*/
|
|
49746
|
+
getAccessibilityReferences(): object;
|
|
49747
|
+
/**
|
|
49748
|
+
* @SINCE 1.98
|
|
49749
|
+
*
|
|
49750
|
+
* Gets content of aggregation {@link #getAdditionalContent additionalContent}.
|
|
49751
|
+
*
|
|
49752
|
+
* Defines the controls placed below the description as additional content.
|
|
49753
|
+
*
|
|
49754
|
+
* **Note:** Not displayed when `illustrationSize` is set to `Base`.
|
|
49755
|
+
*/
|
|
49756
|
+
getAdditionalContent(): sap.m.Button[];
|
|
49757
|
+
/**
|
|
49758
|
+
* @SINCE 1.98
|
|
49759
|
+
*
|
|
49760
|
+
* Gets current value of property {@link #getDescription description}.
|
|
49761
|
+
*
|
|
49762
|
+
* Defines the description displayed below the title.
|
|
49763
|
+
*
|
|
49764
|
+
* If there is no initial input from the app developer and the default illustration set is being used, a
|
|
49765
|
+
* default description for the current illustration type is going to be displayed. The default description
|
|
49766
|
+
* is stored in the `sap.m` resource bundle.
|
|
49767
|
+
*
|
|
49768
|
+
* Default value is `empty string`.
|
|
49769
|
+
*/
|
|
49770
|
+
getDescription(): string;
|
|
49771
|
+
/**
|
|
49772
|
+
* @SINCE 1.98
|
|
49773
|
+
*
|
|
49774
|
+
* Gets current value of property {@link #getEnableFormattedText enableFormattedText}.
|
|
49775
|
+
*
|
|
49776
|
+
* Defines whether the value set in the `description` property is displayed as formatted text in HTML format.
|
|
49777
|
+
*
|
|
49778
|
+
* For details regarding supported HTML tags, see {@link sap.m.FormattedText}.
|
|
49779
|
+
*
|
|
49780
|
+
* Default value is `false`.
|
|
49781
|
+
*/
|
|
49782
|
+
getEnableFormattedText(): boolean;
|
|
49783
|
+
/**
|
|
49784
|
+
* @SINCE 1.98
|
|
49785
|
+
*
|
|
49786
|
+
* Gets current value of property {@link #getIllustrationSize illustrationSize}.
|
|
49787
|
+
*
|
|
49788
|
+
* Determines which illustration breakpoint variant is used.
|
|
49789
|
+
*
|
|
49790
|
+
* As `IllustratedMessage` adapts itself around the `Illustration`, the other elements of the control are
|
|
49791
|
+
* displayed differently on the different breakpoints/illustration sizes.
|
|
49792
|
+
*
|
|
49793
|
+
* Default value is `Auto`.
|
|
49794
|
+
*/
|
|
49795
|
+
getIllustrationSize(): sap.m.IllustratedMessageSize;
|
|
49796
|
+
/**
|
|
49797
|
+
* @SINCE 1.98
|
|
49798
|
+
*
|
|
49799
|
+
* Gets current value of property {@link #getIllustrationType illustrationType}.
|
|
49800
|
+
*
|
|
49801
|
+
* Determines which illustration type is displayed.
|
|
49802
|
+
*
|
|
49803
|
+
* **Note:** The {@link sap.m.IllustratedMessageType} enumeration contains a default illustration set. If
|
|
49804
|
+
* you want to use another illustration set, you have to register it in the {@link sap.m.IllustrationPool}.
|
|
49805
|
+
*
|
|
49806
|
+
* Example input for the `illustrationType` property is `sapIllus-UnableToLoad`. The logic behind this format
|
|
49807
|
+
* is as follows:
|
|
49808
|
+
* - First is the the illustration set - sapIllus
|
|
49809
|
+
* - Second is the illustration type - UnableToLoad
|
|
49810
|
+
*
|
|
49811
|
+
* Default value is `IllustratedMessageType.NoSearchResults`.
|
|
49812
|
+
*/
|
|
49813
|
+
getIllustrationType(): string;
|
|
49814
|
+
/**
|
|
49815
|
+
* @SINCE 1.98
|
|
49816
|
+
*
|
|
49817
|
+
* Gets current value of property {@link #getTitle title}.
|
|
49818
|
+
*
|
|
49819
|
+
* Defines the title that is displayed below the illustration.
|
|
49820
|
+
*
|
|
49821
|
+
* If there is no initial input from the app developer and the default illustration set is being used, a
|
|
49822
|
+
* default title is displayed corresponding to the current `illustrationType`.
|
|
49823
|
+
*
|
|
49824
|
+
* Default value is `empty string`.
|
|
49825
|
+
*/
|
|
49826
|
+
getTitle(): string;
|
|
49827
|
+
/**
|
|
49828
|
+
* @SINCE 1.98
|
|
49829
|
+
*
|
|
49830
|
+
* Checks for the provided `sap.m.Button` in the aggregation {@link #getAdditionalContent additionalContent}.
|
|
49831
|
+
* and returns its index if found or -1 otherwise.
|
|
49832
|
+
*/
|
|
49833
|
+
indexOfAdditionalContent(
|
|
49834
|
+
/**
|
|
49835
|
+
* The additionalContent whose index is looked for
|
|
49836
|
+
*/
|
|
49837
|
+
oAdditionalContent: sap.m.Button
|
|
49838
|
+
): int;
|
|
49839
|
+
/**
|
|
49840
|
+
* @SINCE 1.98
|
|
49841
|
+
*
|
|
49842
|
+
* Inserts a additionalContent into the aggregation {@link #getAdditionalContent additionalContent}.
|
|
49843
|
+
*/
|
|
49844
|
+
insertAdditionalContent(
|
|
49845
|
+
/**
|
|
49846
|
+
* The additionalContent to insert; if empty, nothing is inserted
|
|
49847
|
+
*/
|
|
49848
|
+
oAdditionalContent: sap.m.Button,
|
|
49849
|
+
/**
|
|
49850
|
+
* The `0`-based index the additionalContent should be inserted at; for a negative value of `iIndex`, the
|
|
49851
|
+
* additionalContent is inserted at position 0; for a value greater than the current size of the aggregation,
|
|
49852
|
+
* the additionalContent is inserted at the last position
|
|
49853
|
+
*/
|
|
49854
|
+
iIndex: int
|
|
49855
|
+
): this;
|
|
49856
|
+
/**
|
|
49857
|
+
* @SINCE 1.98
|
|
49858
|
+
*
|
|
49859
|
+
* Removes a additionalContent from the aggregation {@link #getAdditionalContent additionalContent}.
|
|
49860
|
+
*/
|
|
49861
|
+
removeAdditionalContent(
|
|
49862
|
+
/**
|
|
49863
|
+
* The additionalContent to remove or its index or id
|
|
49864
|
+
*/
|
|
49865
|
+
vAdditionalContent: int | string | sap.m.Button
|
|
49866
|
+
): sap.m.Button;
|
|
49867
|
+
/**
|
|
49868
|
+
* @SINCE 1.98
|
|
49869
|
+
*
|
|
49870
|
+
* Removes all the controls from the aggregation {@link #getAdditionalContent additionalContent}.
|
|
49871
|
+
*
|
|
49872
|
+
* Additionally, it unregisters them from the hosting UIArea.
|
|
49873
|
+
*/
|
|
49874
|
+
removeAllAdditionalContent(): sap.m.Button[];
|
|
49875
|
+
/**
|
|
49876
|
+
* @SINCE 1.98
|
|
49877
|
+
*
|
|
49878
|
+
* Sets a new value for property {@link #getDescription description}.
|
|
49879
|
+
*
|
|
49880
|
+
* Defines the description displayed below the title.
|
|
49881
|
+
*
|
|
49882
|
+
* If there is no initial input from the app developer and the default illustration set is being used, a
|
|
49883
|
+
* default description for the current illustration type is going to be displayed. The default description
|
|
49884
|
+
* is stored in the `sap.m` resource bundle.
|
|
49885
|
+
*
|
|
49886
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
49887
|
+
*
|
|
49888
|
+
* Default value is `empty string`.
|
|
49889
|
+
*/
|
|
49890
|
+
setDescription(
|
|
49891
|
+
/**
|
|
49892
|
+
* New value for property `description`
|
|
49893
|
+
*/
|
|
49894
|
+
sDescription?: string
|
|
49895
|
+
): this;
|
|
49896
|
+
/**
|
|
49897
|
+
* @SINCE 1.98
|
|
49898
|
+
*
|
|
49899
|
+
* Sets a new value for property {@link #getEnableFormattedText enableFormattedText}.
|
|
49900
|
+
*
|
|
49901
|
+
* Defines whether the value set in the `description` property is displayed as formatted text in HTML format.
|
|
49902
|
+
*
|
|
49903
|
+
* For details regarding supported HTML tags, see {@link sap.m.FormattedText}.
|
|
49904
|
+
*
|
|
49905
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
49906
|
+
*
|
|
49907
|
+
* Default value is `false`.
|
|
49908
|
+
*/
|
|
49909
|
+
setEnableFormattedText(
|
|
49910
|
+
/**
|
|
49911
|
+
* New value for property `enableFormattedText`
|
|
49912
|
+
*/
|
|
49913
|
+
bEnableFormattedText?: boolean
|
|
49914
|
+
): this;
|
|
49915
|
+
/**
|
|
49916
|
+
* @SINCE 1.98
|
|
49917
|
+
*
|
|
49918
|
+
* Sets a new value for property {@link #getIllustrationSize illustrationSize}.
|
|
49919
|
+
*
|
|
49920
|
+
* Determines which illustration breakpoint variant is used.
|
|
49921
|
+
*
|
|
49922
|
+
* As `IllustratedMessage` adapts itself around the `Illustration`, the other elements of the control are
|
|
49923
|
+
* displayed differently on the different breakpoints/illustration sizes.
|
|
49924
|
+
*
|
|
49925
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
49926
|
+
*
|
|
49927
|
+
* Default value is `Auto`.
|
|
49928
|
+
*/
|
|
49929
|
+
setIllustrationSize(
|
|
49930
|
+
/**
|
|
49931
|
+
* New value for property `illustrationSize`
|
|
49932
|
+
*/
|
|
49933
|
+
sIllustrationSize?: sap.m.IllustratedMessageSize
|
|
49934
|
+
): this;
|
|
49935
|
+
/**
|
|
49936
|
+
* @SINCE 1.98
|
|
49937
|
+
*
|
|
49938
|
+
* Sets a new value for property {@link #getTitle title}.
|
|
49939
|
+
*
|
|
49940
|
+
* Defines the title that is displayed below the illustration.
|
|
49941
|
+
*
|
|
49942
|
+
* If there is no initial input from the app developer and the default illustration set is being used, a
|
|
49943
|
+
* default title is displayed corresponding to the current `illustrationType`.
|
|
49944
|
+
*
|
|
49945
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
49946
|
+
*
|
|
49947
|
+
* Default value is `empty string`.
|
|
49948
|
+
*/
|
|
49949
|
+
setTitle(
|
|
49950
|
+
/**
|
|
49951
|
+
* New value for property `title`
|
|
49952
|
+
*/
|
|
49953
|
+
sTitle?: string
|
|
49954
|
+
): this;
|
|
49955
|
+
}
|
|
49956
|
+
/**
|
|
49957
|
+
* @SINCE 1.98
|
|
49958
|
+
*
|
|
49959
|
+
* A simple control which uses a Symbol ID to visualize an SVG which has already been loaded in the {@link
|
|
49960
|
+
* sap.m.IllustrationPool}.
|
|
49961
|
+
*
|
|
49962
|
+
* To build a Symbol ID, all of the `Illustration` properties must be populated with data.
|
|
49963
|
+
*/
|
|
49964
|
+
class Illustration extends sap.ui.core.Control {
|
|
49965
|
+
/**
|
|
49966
|
+
* Constructor for a new `Illustration`.
|
|
49967
|
+
*
|
|
49968
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
49969
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
49970
|
+
* of the syntax of the settings object.
|
|
49971
|
+
*/
|
|
49972
|
+
constructor(
|
|
49973
|
+
/**
|
|
49974
|
+
* Initial settings for the new control
|
|
49975
|
+
*/
|
|
49976
|
+
mSettings?: sap.m.$IllustrationSettings
|
|
49977
|
+
);
|
|
49978
|
+
/**
|
|
49979
|
+
* Constructor for a new `Illustration`.
|
|
49980
|
+
*
|
|
49981
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
49982
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
49983
|
+
* of the syntax of the settings object.
|
|
49984
|
+
*/
|
|
49985
|
+
constructor(
|
|
49986
|
+
/**
|
|
49987
|
+
* ID for the new control, generated automatically if no ID is given
|
|
49988
|
+
*/
|
|
49989
|
+
sId?: string,
|
|
49990
|
+
/**
|
|
49991
|
+
* Initial settings for the new control
|
|
49992
|
+
*/
|
|
49993
|
+
mSettings?: sap.m.$IllustrationSettings
|
|
49994
|
+
);
|
|
49995
|
+
|
|
49996
|
+
/**
|
|
49997
|
+
* Creates a new subclass of class sap.m.Illustration with name `sClassName` and enriches it with the information
|
|
49998
|
+
* contained in `oClassInfo`.
|
|
49999
|
+
*
|
|
50000
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
50001
|
+
*/
|
|
50002
|
+
static extend<T extends Record<string, unknown>>(
|
|
50003
|
+
/**
|
|
50004
|
+
* Name of the class being created
|
|
50005
|
+
*/
|
|
50006
|
+
sClassName: string,
|
|
50007
|
+
/**
|
|
50008
|
+
* Object literal with information about the class
|
|
50009
|
+
*/
|
|
50010
|
+
oClassInfo?: sap.ClassInfo<T, sap.m.Illustration>,
|
|
50011
|
+
/**
|
|
50012
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
50013
|
+
* used by this class
|
|
50014
|
+
*/
|
|
50015
|
+
FNMetaImpl?: Function
|
|
50016
|
+
): Function;
|
|
50017
|
+
/**
|
|
50018
|
+
* Returns a metadata object for class sap.m.Illustration.
|
|
50019
|
+
*/
|
|
50020
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
50021
|
+
/**
|
|
50022
|
+
* @SINCE 1.98
|
|
50023
|
+
*
|
|
50024
|
+
* Gets current value of property {@link #getMedia media}.
|
|
50025
|
+
*
|
|
50026
|
+
* Defines which media/breakpoint should be used when building the Symbol ID.
|
|
50027
|
+
*/
|
|
50028
|
+
getMedia(): string;
|
|
50029
|
+
/**
|
|
50030
|
+
* @SINCE 1.98
|
|
50031
|
+
*
|
|
50032
|
+
* Gets current value of property {@link #getSet set}.
|
|
50033
|
+
*
|
|
50034
|
+
* Defines which illustration set should be used when building the Symbol ID.
|
|
50035
|
+
*/
|
|
50036
|
+
getSet(): string;
|
|
50037
|
+
/**
|
|
50038
|
+
* @SINCE 1.98
|
|
50039
|
+
*
|
|
50040
|
+
* Gets current value of property {@link #getType type}.
|
|
50041
|
+
*
|
|
50042
|
+
* Defines which illustration type should be used when building the Symbol ID.
|
|
50043
|
+
*/
|
|
50044
|
+
getType(): string;
|
|
50045
|
+
/**
|
|
50046
|
+
* @SINCE 1.98
|
|
50047
|
+
*
|
|
50048
|
+
* Sets a new value for property {@link #getMedia media}.
|
|
50049
|
+
*
|
|
50050
|
+
* Defines which media/breakpoint should be used when building the Symbol ID.
|
|
50051
|
+
*
|
|
50052
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
50053
|
+
*/
|
|
50054
|
+
setMedia(
|
|
50055
|
+
/**
|
|
50056
|
+
* New value for property `media`
|
|
50057
|
+
*/
|
|
50058
|
+
sMedia?: string
|
|
50059
|
+
): this;
|
|
50060
|
+
/**
|
|
50061
|
+
* @SINCE 1.98
|
|
50062
|
+
*
|
|
50063
|
+
* Sets a new value for property {@link #getSet set}.
|
|
50064
|
+
*
|
|
50065
|
+
* Defines which illustration set should be used when building the Symbol ID.
|
|
50066
|
+
*
|
|
50067
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
50068
|
+
*/
|
|
50069
|
+
setSet(
|
|
50070
|
+
/**
|
|
50071
|
+
* New value for property `set`
|
|
50072
|
+
*/
|
|
50073
|
+
sSet?: string
|
|
50074
|
+
): this;
|
|
50075
|
+
/**
|
|
50076
|
+
* @SINCE 1.98
|
|
50077
|
+
*
|
|
50078
|
+
* Sets a new value for property {@link #getType type}.
|
|
50079
|
+
*
|
|
50080
|
+
* Defines which illustration type should be used when building the Symbol ID.
|
|
50081
|
+
*
|
|
50082
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
50083
|
+
*/
|
|
50084
|
+
setType(
|
|
50085
|
+
/**
|
|
50086
|
+
* New value for property `type`
|
|
50087
|
+
*/
|
|
50088
|
+
sType?: string
|
|
50089
|
+
): this;
|
|
50090
|
+
}
|
|
48394
50091
|
/**
|
|
48395
50092
|
* A wrapper around the <img> tag; the image can be loaded from a remote or local server.
|
|
48396
50093
|
*
|
|
@@ -50464,7 +52161,7 @@ declare namespace sap {
|
|
|
50464
52161
|
*
|
|
50465
52162
|
* If set to true, direct text input is disabled and the control will trigger the event "valueHelpRequest"
|
|
50466
52163
|
* for all user interactions. The properties "showValueHelp", "editable", and "enabled" must be set to true,
|
|
50467
|
-
* otherwise the property will have no effect
|
|
52164
|
+
* otherwise the property will have no effect. In this scenario, the `showItems` API will not work.
|
|
50468
52165
|
*
|
|
50469
52166
|
* Default value is `false`.
|
|
50470
52167
|
*/
|
|
@@ -51183,7 +52880,7 @@ declare namespace sap {
|
|
|
51183
52880
|
*
|
|
51184
52881
|
* If set to true, direct text input is disabled and the control will trigger the event "valueHelpRequest"
|
|
51185
52882
|
* for all user interactions. The properties "showValueHelp", "editable", and "enabled" must be set to true,
|
|
51186
|
-
* otherwise the property will have no effect
|
|
52883
|
+
* otherwise the property will have no effect. In this scenario, the `showItems` API will not work.
|
|
51187
52884
|
*
|
|
51188
52885
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
51189
52886
|
*
|
|
@@ -51231,11 +52928,21 @@ declare namespace sap {
|
|
|
51231
52928
|
*/
|
|
51232
52929
|
sValueStateText: string
|
|
51233
52930
|
): this;
|
|
52931
|
+
/**
|
|
52932
|
+
* A helper function calculating if the SuggestionsPopover should be opened on mobile.
|
|
52933
|
+
*/
|
|
52934
|
+
shouldSuggetionsPopoverOpenOnMobile(
|
|
52935
|
+
/**
|
|
52936
|
+
* Ontap event.
|
|
52937
|
+
*/
|
|
52938
|
+
oEvent: jQuery.Event
|
|
52939
|
+
): Boolean;
|
|
51234
52940
|
/**
|
|
51235
52941
|
* @SINCE 1.64
|
|
51236
52942
|
* @EXPERIMENTAL (since 1.64)
|
|
51237
52943
|
*
|
|
51238
|
-
* Opens the `SuggestionsPopover` with the available items.
|
|
52944
|
+
* Opens the `SuggestionsPopover` with the available items. **Note:** When `valueHelpOnly` property is set
|
|
52945
|
+
* to true, the `SuggestionsPopover` will not open.
|
|
51239
52946
|
*/
|
|
51240
52947
|
showItems(
|
|
51241
52948
|
/**
|
|
@@ -52322,6 +54029,20 @@ declare namespace sap {
|
|
|
52322
54029
|
* Default value is `false`.
|
|
52323
54030
|
*/
|
|
52324
54031
|
getRequired(): boolean;
|
|
54032
|
+
/**
|
|
54033
|
+
* @SINCE 1.98
|
|
54034
|
+
*
|
|
54035
|
+
* Gets current value of property {@link #getShowColon showColon}.
|
|
54036
|
+
*
|
|
54037
|
+
* Defines whether a colon (:) character is added to the label.
|
|
54038
|
+
*
|
|
54039
|
+
* **Note:** By default when the `Label` is in the `sap.ui.layout.form.Form` and `sap.ui.layout.form.SimpleForm`
|
|
54040
|
+
* controls the colon (:) character is displayed automatically regardless of the value of the `showColon`
|
|
54041
|
+
* property.
|
|
54042
|
+
*
|
|
54043
|
+
* Default value is `false`.
|
|
54044
|
+
*/
|
|
54045
|
+
getShowColon(): boolean;
|
|
52325
54046
|
/**
|
|
52326
54047
|
* Gets current value of property {@link #getText text}.
|
|
52327
54048
|
*
|
|
@@ -52446,6 +54167,27 @@ declare namespace sap {
|
|
|
52446
54167
|
*/
|
|
52447
54168
|
bRequired?: boolean
|
|
52448
54169
|
): this;
|
|
54170
|
+
/**
|
|
54171
|
+
* @SINCE 1.98
|
|
54172
|
+
*
|
|
54173
|
+
* Sets a new value for property {@link #getShowColon showColon}.
|
|
54174
|
+
*
|
|
54175
|
+
* Defines whether a colon (:) character is added to the label.
|
|
54176
|
+
*
|
|
54177
|
+
* **Note:** By default when the `Label` is in the `sap.ui.layout.form.Form` and `sap.ui.layout.form.SimpleForm`
|
|
54178
|
+
* controls the colon (:) character is displayed automatically regardless of the value of the `showColon`
|
|
54179
|
+
* property.
|
|
54180
|
+
*
|
|
54181
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
54182
|
+
*
|
|
54183
|
+
* Default value is `false`.
|
|
54184
|
+
*/
|
|
54185
|
+
setShowColon(
|
|
54186
|
+
/**
|
|
54187
|
+
* New value for property `showColon`
|
|
54188
|
+
*/
|
|
54189
|
+
bShowColon?: boolean
|
|
54190
|
+
): this;
|
|
52449
54191
|
/**
|
|
52450
54192
|
* Sets a new value for property {@link #getText text}.
|
|
52451
54193
|
*
|
|
@@ -64586,6 +66328,25 @@ declare namespace sap {
|
|
|
64586
66328
|
* the `textDirection` property should be set to ensure correct display.
|
|
64587
66329
|
*/
|
|
64588
66330
|
getActive(): boolean;
|
|
66331
|
+
/**
|
|
66332
|
+
* @SINCE 1.97.0
|
|
66333
|
+
*
|
|
66334
|
+
* Gets current value of property {@link #getAriaHasPopup ariaHasPopup}.
|
|
66335
|
+
*
|
|
66336
|
+
* Specifies the value of the `aria-haspopup` attribute
|
|
66337
|
+
*
|
|
66338
|
+
* If the value is `None`, the attribute will not be rendered. Otherwise it will be rendered with the selected
|
|
66339
|
+
* value.
|
|
66340
|
+
*
|
|
66341
|
+
* NOTE: Use this property only when an `sap.m.ObjectAttribute` instance is active and related to a popover/popup.
|
|
66342
|
+
* The value needs to be equal to the main/root role of the popup - e.g. dialog, menu or list (examples:
|
|
66343
|
+
* if you have dialog -> dialog, if you have menu -> menu; if you have list -> list; if you have dialog
|
|
66344
|
+
* containing a list -> dialog). Do not use it, if you open a standard sap.m.Dialog, MessageBox or other
|
|
66345
|
+
* type of modal dialogs.
|
|
66346
|
+
*
|
|
66347
|
+
* Default value is `None`.
|
|
66348
|
+
*/
|
|
66349
|
+
getAriaHasPopup(): sap.ui.core.aria.HasPopup;
|
|
64589
66350
|
/**
|
|
64590
66351
|
* Gets content of aggregation {@link #getCustomContent customContent}.
|
|
64591
66352
|
*
|
|
@@ -64638,6 +66399,32 @@ declare namespace sap {
|
|
|
64638
66399
|
*/
|
|
64639
66400
|
bActive?: boolean
|
|
64640
66401
|
): this;
|
|
66402
|
+
/**
|
|
66403
|
+
* @SINCE 1.97.0
|
|
66404
|
+
*
|
|
66405
|
+
* Sets a new value for property {@link #getAriaHasPopup ariaHasPopup}.
|
|
66406
|
+
*
|
|
66407
|
+
* Specifies the value of the `aria-haspopup` attribute
|
|
66408
|
+
*
|
|
66409
|
+
* If the value is `None`, the attribute will not be rendered. Otherwise it will be rendered with the selected
|
|
66410
|
+
* value.
|
|
66411
|
+
*
|
|
66412
|
+
* NOTE: Use this property only when an `sap.m.ObjectAttribute` instance is active and related to a popover/popup.
|
|
66413
|
+
* The value needs to be equal to the main/root role of the popup - e.g. dialog, menu or list (examples:
|
|
66414
|
+
* if you have dialog -> dialog, if you have menu -> menu; if you have list -> list; if you have dialog
|
|
66415
|
+
* containing a list -> dialog). Do not use it, if you open a standard sap.m.Dialog, MessageBox or other
|
|
66416
|
+
* type of modal dialogs.
|
|
66417
|
+
*
|
|
66418
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
66419
|
+
*
|
|
66420
|
+
* Default value is `None`.
|
|
66421
|
+
*/
|
|
66422
|
+
setAriaHasPopup(
|
|
66423
|
+
/**
|
|
66424
|
+
* New value for property `ariaHasPopup`
|
|
66425
|
+
*/
|
|
66426
|
+
sAriaHasPopup?: sap.ui.core.aria.HasPopup
|
|
66427
|
+
): this;
|
|
64641
66428
|
/**
|
|
64642
66429
|
* Sets the aggregated {@link #getCustomContent customContent}.
|
|
64643
66430
|
*/
|
|
@@ -68957,6 +70744,7 @@ declare namespace sap {
|
|
|
68957
70744
|
}
|
|
68958
70745
|
/**
|
|
68959
70746
|
* @SINCE 1.26.0
|
|
70747
|
+
* @deprecated (since 1.98) - Use the {@link sap.m.p13n.SelectionPanel} instead.
|
|
68960
70748
|
*
|
|
68961
70749
|
* The `P13nColumnsPanel` control is used to define column-specific settings for table personalization.
|
|
68962
70750
|
*/
|
|
@@ -69957,6 +71745,7 @@ declare namespace sap {
|
|
|
69957
71745
|
}
|
|
69958
71746
|
/**
|
|
69959
71747
|
* @SINCE 1.26.0
|
|
71748
|
+
* @deprecated (since 1.98) - Use the {@link sap.m.p13n.Popup} instead.
|
|
69960
71749
|
*
|
|
69961
71750
|
* The P13nDialog control provides a dialog that contains one or more panels. On each of the panels, one
|
|
69962
71751
|
* or more changes with regards to a table can be processed. For example, a panel to set a column to invisible,
|
|
@@ -71851,6 +73640,7 @@ declare namespace sap {
|
|
|
71851
73640
|
}
|
|
71852
73641
|
/**
|
|
71853
73642
|
* @SINCE 1.26.0
|
|
73643
|
+
* @deprecated (since 1.98) - Use the {@link sap.m.p13n.GroupPanel} instead.
|
|
71854
73644
|
*
|
|
71855
73645
|
* The P13nGroupPanel control is used to define group-specific settings for table personalization.
|
|
71856
73646
|
*/
|
|
@@ -73274,6 +75064,7 @@ declare namespace sap {
|
|
|
73274
75064
|
}
|
|
73275
75065
|
/**
|
|
73276
75066
|
* @SINCE 1.26.0
|
|
75067
|
+
* @deprecated (since 1.98) - Use the {@link sap.m.p13n.SortPanel} instead.
|
|
73277
75068
|
*
|
|
73278
75069
|
* The P13nSortPanel control is used to define settings for sorting in table personalization.
|
|
73279
75070
|
*/
|
|
@@ -89134,7 +90925,7 @@ declare namespace sap {
|
|
|
89134
90925
|
* user inputs, set this flag to `true`.
|
|
89135
90926
|
*
|
|
89136
90927
|
* **Note:** The sap.m.SelectDialog uses {@link sap.m.ListBase#rememberSelections this} property of the
|
|
89137
|
-
* ListBase and therefore its
|
|
90928
|
+
* ListBase and therefore its behavior and restrictions also apply here.
|
|
89138
90929
|
*
|
|
89139
90930
|
* Default value is `false`.
|
|
89140
90931
|
*/
|
|
@@ -89374,7 +91165,7 @@ declare namespace sap {
|
|
|
89374
91165
|
* user inputs, set this flag to `true`.
|
|
89375
91166
|
*
|
|
89376
91167
|
* **Note:** The sap.m.SelectDialog uses {@link sap.m.ListBase#rememberSelections this} property of the
|
|
89377
|
-
* ListBase and therefore its
|
|
91168
|
+
* ListBase and therefore its behavior and restrictions also apply here.
|
|
89378
91169
|
*
|
|
89379
91170
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
89380
91171
|
*
|
|
@@ -91970,7 +93761,7 @@ declare namespace sap {
|
|
|
91970
93761
|
* 'phone@2':'phone-retina_114x114.png', 'tablet':'tablet-icon_72x72.png', 'tablet@2':'tablet-retina_144x144.png',
|
|
91971
93762
|
* 'precomposed':true, 'favicon':'favicon.ico' }
|
|
91972
93763
|
*
|
|
91973
|
-
* See
|
|
93764
|
+
* See {@link module:sap/ui/util/Mobile.setIcons} for full documentation.
|
|
91974
93765
|
*/
|
|
91975
93766
|
getHomeIcon(): object;
|
|
91976
93767
|
/**
|
|
@@ -92138,7 +93929,7 @@ declare namespace sap {
|
|
|
92138
93929
|
* 'phone@2':'phone-retina_114x114.png', 'tablet':'tablet-icon_72x72.png', 'tablet@2':'tablet-retina_144x144.png',
|
|
92139
93930
|
* 'precomposed':true, 'favicon':'favicon.ico' }
|
|
92140
93931
|
*
|
|
92141
|
-
* See
|
|
93932
|
+
* See {@link module:sap/ui/util/Mobile.setIcons} for full documentation.
|
|
92142
93933
|
*
|
|
92143
93934
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
92144
93935
|
*/
|
|
@@ -93147,6 +94938,20 @@ declare namespace sap {
|
|
|
93147
94938
|
* Default value is `24`.
|
|
93148
94939
|
*/
|
|
93149
94940
|
getEndHour(): int;
|
|
94941
|
+
/**
|
|
94942
|
+
* @SINCE 1.98
|
|
94943
|
+
*
|
|
94944
|
+
* Gets current value of property {@link #getFirstDayOfWeek firstDayOfWeek}.
|
|
94945
|
+
*
|
|
94946
|
+
* If set, the first day of the displayed week is this day. Valid values are 0 to 6 starting on Sunday.
|
|
94947
|
+
* If there is no valid value set, the default of the used locale is used.
|
|
94948
|
+
*
|
|
94949
|
+
* Note: This property will only have effect in Week view and Month view of the SinglePlanningCalendar,
|
|
94950
|
+
* but it wouldn't have effect in WorkWeek view.
|
|
94951
|
+
*
|
|
94952
|
+
* Default value is `-1`.
|
|
94953
|
+
*/
|
|
94954
|
+
getFirstDayOfWeek(): int;
|
|
93150
94955
|
/**
|
|
93151
94956
|
* Gets current value of property {@link #getFullDay fullDay}.
|
|
93152
94957
|
*
|
|
@@ -93488,6 +95293,27 @@ declare namespace sap {
|
|
|
93488
95293
|
*/
|
|
93489
95294
|
iEndHour?: int
|
|
93490
95295
|
): this;
|
|
95296
|
+
/**
|
|
95297
|
+
* @SINCE 1.98
|
|
95298
|
+
*
|
|
95299
|
+
* Sets a new value for property {@link #getFirstDayOfWeek firstDayOfWeek}.
|
|
95300
|
+
*
|
|
95301
|
+
* If set, the first day of the displayed week is this day. Valid values are 0 to 6 starting on Sunday.
|
|
95302
|
+
* If there is no valid value set, the default of the used locale is used.
|
|
95303
|
+
*
|
|
95304
|
+
* Note: This property will only have effect in Week view and Month view of the SinglePlanningCalendar,
|
|
95305
|
+
* but it wouldn't have effect in WorkWeek view.
|
|
95306
|
+
*
|
|
95307
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
95308
|
+
*
|
|
95309
|
+
* Default value is `-1`.
|
|
95310
|
+
*/
|
|
95311
|
+
setFirstDayOfWeek(
|
|
95312
|
+
/**
|
|
95313
|
+
* New value for property `firstDayOfWeek`
|
|
95314
|
+
*/
|
|
95315
|
+
iFirstDayOfWeek?: int
|
|
95316
|
+
): this;
|
|
93491
95317
|
/**
|
|
93492
95318
|
* Sets a new value for property {@link #getFullDay fullDay}.
|
|
93493
95319
|
*
|
|
@@ -93814,6 +95640,20 @@ declare namespace sap {
|
|
|
93814
95640
|
* Should return the number of columns to be displayed in the grid of the `sap.m.SinglePlanningCalendar`.
|
|
93815
95641
|
*/
|
|
93816
95642
|
getEntityCount(): void;
|
|
95643
|
+
/**
|
|
95644
|
+
* @SINCE 1.98
|
|
95645
|
+
*
|
|
95646
|
+
* Gets current value of property {@link #getFirstDayOfWeek firstDayOfWeek}.
|
|
95647
|
+
*
|
|
95648
|
+
* If set, the first day of the displayed week is this day. Valid values are 0 to 6 starting on Sunday.
|
|
95649
|
+
* If there is no valid value set, the default of the used locale is used.
|
|
95650
|
+
*
|
|
95651
|
+
* Note: This property will only have effect in Week view and Month view of the SinglePlanningCalendar,
|
|
95652
|
+
* but it wouldn't have effect in WorkWeek view.
|
|
95653
|
+
*
|
|
95654
|
+
* Default value is `-1`.
|
|
95655
|
+
*/
|
|
95656
|
+
getFirstDayOfWeek(): int;
|
|
93817
95657
|
/**
|
|
93818
95658
|
* Gets current value of property {@link #getKey key}.
|
|
93819
95659
|
*
|
|
@@ -93833,6 +95673,27 @@ declare namespace sap {
|
|
|
93833
95673
|
* Adds a title for the view
|
|
93834
95674
|
*/
|
|
93835
95675
|
getTitle(): string;
|
|
95676
|
+
/**
|
|
95677
|
+
* @SINCE 1.98
|
|
95678
|
+
*
|
|
95679
|
+
* Sets a new value for property {@link #getFirstDayOfWeek firstDayOfWeek}.
|
|
95680
|
+
*
|
|
95681
|
+
* If set, the first day of the displayed week is this day. Valid values are 0 to 6 starting on Sunday.
|
|
95682
|
+
* If there is no valid value set, the default of the used locale is used.
|
|
95683
|
+
*
|
|
95684
|
+
* Note: This property will only have effect in Week view and Month view of the SinglePlanningCalendar,
|
|
95685
|
+
* but it wouldn't have effect in WorkWeek view.
|
|
95686
|
+
*
|
|
95687
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
95688
|
+
*
|
|
95689
|
+
* Default value is `-1`.
|
|
95690
|
+
*/
|
|
95691
|
+
setFirstDayOfWeek(
|
|
95692
|
+
/**
|
|
95693
|
+
* New value for property `firstDayOfWeek`
|
|
95694
|
+
*/
|
|
95695
|
+
iFirstDayOfWeek?: int
|
|
95696
|
+
): this;
|
|
93836
95697
|
/**
|
|
93837
95698
|
* Sets a new value for property {@link #getKey key}.
|
|
93838
95699
|
*
|
|
@@ -97388,6 +99249,12 @@ declare namespace sap {
|
|
|
97388
99249
|
* Returns a metadata object for class sap.m.StandardListItem.
|
|
97389
99250
|
*/
|
|
97390
99251
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
99252
|
+
/**
|
|
99253
|
+
* @SINCE 1.98
|
|
99254
|
+
*
|
|
99255
|
+
* Destroys the avatar in the aggregation {@link #getAvatar avatar}.
|
|
99256
|
+
*/
|
|
99257
|
+
destroyAvatar(): this;
|
|
97391
99258
|
/**
|
|
97392
99259
|
* Gets current value of property {@link #getActiveIcon activeIcon}.
|
|
97393
99260
|
*
|
|
@@ -97406,6 +99273,19 @@ declare namespace sap {
|
|
|
97406
99273
|
* Default value is `true`.
|
|
97407
99274
|
*/
|
|
97408
99275
|
getAdaptTitleSize(): boolean;
|
|
99276
|
+
/**
|
|
99277
|
+
* @SINCE 1.98
|
|
99278
|
+
*
|
|
99279
|
+
* Gets content of aggregation {@link #getAvatar avatar}.
|
|
99280
|
+
*
|
|
99281
|
+
* A `sap.m.Avatar` control instance that, if set, is used instead of an icon or image.
|
|
99282
|
+
*
|
|
99283
|
+
* The size of the `Avatar` control depends on the `insetIcon` property of `StandardListItem`. The `displaySize`
|
|
99284
|
+
* property of the `Avatar` control is not supported. If the `insetIcon` property of `StandardListItem`
|
|
99285
|
+
* is set to `true`, the size of the `Avatar` control is set to XS; if the `insetIcon` property of `StandardListItem`
|
|
99286
|
+
* is set to `false`, the size of the `Avatar` control is set to "S".
|
|
99287
|
+
*/
|
|
99288
|
+
getAvatar(): sap.m.Avatar;
|
|
97409
99289
|
/**
|
|
97410
99290
|
* Gets current value of property {@link #getDescription description}.
|
|
97411
99291
|
*
|
|
@@ -97561,6 +99441,17 @@ declare namespace sap {
|
|
|
97561
99441
|
*/
|
|
97562
99442
|
bAdaptTitleSize?: boolean
|
|
97563
99443
|
): this;
|
|
99444
|
+
/**
|
|
99445
|
+
* @SINCE 1.98
|
|
99446
|
+
*
|
|
99447
|
+
* Sets the aggregated {@link #getAvatar avatar}.
|
|
99448
|
+
*/
|
|
99449
|
+
setAvatar(
|
|
99450
|
+
/**
|
|
99451
|
+
* The avatar to set
|
|
99452
|
+
*/
|
|
99453
|
+
oAvatar: sap.m.Avatar
|
|
99454
|
+
): this;
|
|
97564
99455
|
/**
|
|
97565
99456
|
* Sets a new value for property {@link #getDescription description}.
|
|
97566
99457
|
*
|
|
@@ -100502,6 +102393,28 @@ declare namespace sap {
|
|
|
100502
102393
|
hiddenInPopin?: sap.m.Column[];
|
|
100503
102394
|
}
|
|
100504
102395
|
): this;
|
|
102396
|
+
/**
|
|
102397
|
+
* Sets the focus on the stored focus DOM reference.
|
|
102398
|
+
*
|
|
102399
|
+
* If {@param oFocusInfo.targetInfo} is of type {@type sap.ui.core.message.Message}, the focus will be set
|
|
102400
|
+
* as accurately as possible according to the information provided by {@type sap.ui.core.message.Message}.
|
|
102401
|
+
*/
|
|
102402
|
+
focus(
|
|
102403
|
+
/**
|
|
102404
|
+
* Options for setting the focus
|
|
102405
|
+
*/
|
|
102406
|
+
oFocusInfo?: {
|
|
102407
|
+
/**
|
|
102408
|
+
* @since 1.60 If set to `true`, the focused element won't be moved into the viewport if it's not completely
|
|
102409
|
+
* visible before the focus is set
|
|
102410
|
+
*/
|
|
102411
|
+
preventScroll?: boolean;
|
|
102412
|
+
/**
|
|
102413
|
+
* @since 1.98 Further control-specific setting of the focus target within the control
|
|
102414
|
+
*/
|
|
102415
|
+
targetInfo?: any;
|
|
102416
|
+
}
|
|
102417
|
+
): void;
|
|
100505
102418
|
/**
|
|
100506
102419
|
* @SINCE 1.52
|
|
100507
102420
|
*
|
|
@@ -101802,8 +103715,8 @@ declare namespace sap {
|
|
|
101802
103715
|
* (remain fixed on top when scrolling). This feature is not supported in all browsers. The TableSelectDialog
|
|
101803
103716
|
* is usually displayed at the center of the screen. Its size and position can be changed by the user. To
|
|
101804
103717
|
* enable this you need to set the `resizable` and `draggable` properties. Both properties are available
|
|
101805
|
-
* only in desktop mode. For more information on
|
|
101806
|
-
* sap.m.ListBase
|
|
103718
|
+
* only in desktop mode. For more information on current restrictions, you can refer to the {@link sap.m.ListBase
|
|
103719
|
+
* sap.m.ListBase} `sticky` property. Responsive Behavior:
|
|
101807
103720
|
* - On smaller screens, the columns of the table wrap and build a list that shows all the information.
|
|
101808
103721
|
* When using the `sap.m.TableSelectDialog` in SAP Quartz themes, the breakpoints and layout paddings
|
|
101809
103722
|
* could be determined by the dialog's width. To enable this concept and add responsive paddings to an element
|
|
@@ -104747,6 +106660,16 @@ declare namespace sap {
|
|
|
104747
106660
|
* Default value is `1`.
|
|
104748
106661
|
*/
|
|
104749
106662
|
getSecondsStep(): int;
|
|
106663
|
+
/**
|
|
106664
|
+
* @SINCE 1.98
|
|
106665
|
+
*
|
|
106666
|
+
* Gets current value of property {@link #getShowCurrentTimeButton showCurrentTimeButton}.
|
|
106667
|
+
*
|
|
106668
|
+
* Determines whether there is a shortcut navigation to current time.
|
|
106669
|
+
*
|
|
106670
|
+
* Default value is `false`.
|
|
106671
|
+
*/
|
|
106672
|
+
getShowCurrentTimeButton(): boolean;
|
|
104750
106673
|
/**
|
|
104751
106674
|
* @SINCE 1.54
|
|
104752
106675
|
*
|
|
@@ -104983,6 +106906,23 @@ declare namespace sap {
|
|
|
104983
106906
|
*/
|
|
104984
106907
|
step: int
|
|
104985
106908
|
): this;
|
|
106909
|
+
/**
|
|
106910
|
+
* @SINCE 1.98
|
|
106911
|
+
*
|
|
106912
|
+
* Sets a new value for property {@link #getShowCurrentTimeButton showCurrentTimeButton}.
|
|
106913
|
+
*
|
|
106914
|
+
* Determines whether there is a shortcut navigation to current time.
|
|
106915
|
+
*
|
|
106916
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
106917
|
+
*
|
|
106918
|
+
* Default value is `false`.
|
|
106919
|
+
*/
|
|
106920
|
+
setShowCurrentTimeButton(
|
|
106921
|
+
/**
|
|
106922
|
+
* New value for property `showCurrentTimeButton`
|
|
106923
|
+
*/
|
|
106924
|
+
bShowCurrentTimeButton?: boolean
|
|
106925
|
+
): this;
|
|
104986
106926
|
/**
|
|
104987
106927
|
* Sets `support2400` of the control.
|
|
104988
106928
|
*
|
|
@@ -113677,10 +115617,10 @@ declare namespace sap {
|
|
|
113677
115617
|
*
|
|
113678
115618
|
* Enables users to accomplish a single goal which consists of multiple dependable sub-tasks. Overview:
|
|
113679
115619
|
* The sap.m.Wizard helps users complete a complex and unfamiliar task by dividing it into sections and
|
|
113680
|
-
* guiding the user through it. The wizard has two main areas - a navigation area
|
|
113681
|
-
* step sequence and a content area below
|
|
113682
|
-
*
|
|
113683
|
-
*
|
|
115620
|
+
* guiding the user through it. The wizard has a mandatory title and two main areas - a navigation area
|
|
115621
|
+
* at the top showing the step sequence, and a content area below. Structure: Title: The wizard's title
|
|
115622
|
+
* defines its purpose. Navigation Area: The navigation area shows the sequence of {@link sap.m.WizardStep
|
|
115623
|
+
* wizard steps}.
|
|
113684
115624
|
* - The minimum number of steps is 3 and the maximum is 8 and are stored in the `steps` aggregation.
|
|
113685
115625
|
*
|
|
113686
115626
|
* - Steps can be branching depending on choices the user made in their input - this is set by the `enableBranching`
|
|
@@ -115567,6 +117507,243 @@ declare namespace sap {
|
|
|
115567
117507
|
*/
|
|
115568
117508
|
Standard = "Standard",
|
|
115569
117509
|
}
|
|
117510
|
+
/**
|
|
117511
|
+
* @SINCE 1.98
|
|
117512
|
+
*
|
|
117513
|
+
* Available `Illustration` sizes for the {@link sap.m.IllustratedMessage} control.
|
|
117514
|
+
*/
|
|
117515
|
+
enum IllustratedMessageSize {
|
|
117516
|
+
/**
|
|
117517
|
+
* Automatically decides the `Illustration` size (`Base`, `Spot`, `Dialog`, or `Scene`) depending on the
|
|
117518
|
+
* `IllustratedMessage` container width.
|
|
117519
|
+
*
|
|
117520
|
+
* **Note:** `Auto` is the only option where the illustration size is changed according to the available
|
|
117521
|
+
* container width. If any other `IllustratedMessageSize` is chosen, it remains until changed by the app
|
|
117522
|
+
* developer.
|
|
117523
|
+
*/
|
|
117524
|
+
Auto = "Auto",
|
|
117525
|
+
/**
|
|
117526
|
+
* Base `Illustration` size (XS breakpoint). Suitable for cards (two columns).
|
|
117527
|
+
*
|
|
117528
|
+
* **Note:** When `Base` is in use, no illustration is displayed.
|
|
117529
|
+
*/
|
|
117530
|
+
Base = "Base",
|
|
117531
|
+
/**
|
|
117532
|
+
* Dialog `Illustration` size (M breakpoint). Suitable for dialogs.
|
|
117533
|
+
*/
|
|
117534
|
+
Dialog = "Dialog",
|
|
117535
|
+
/**
|
|
117536
|
+
* Scene `Illustration` size (L breakpoint). Suitable for a `Page` or a table.
|
|
117537
|
+
*/
|
|
117538
|
+
Scene = "Scene",
|
|
117539
|
+
/**
|
|
117540
|
+
* Spot `Illustration` size (S breakpoint). Suitable for cards (four columns).
|
|
117541
|
+
*/
|
|
117542
|
+
Spot = "Spot",
|
|
117543
|
+
}
|
|
117544
|
+
/**
|
|
117545
|
+
* @SINCE 1.98
|
|
117546
|
+
*
|
|
117547
|
+
* Available `Illustration` types for the {@link sap.f.IllustratedMessage} control.
|
|
117548
|
+
*/
|
|
117549
|
+
enum IllustratedMessageType {
|
|
117550
|
+
/**
|
|
117551
|
+
* "Add Column" illustration type.
|
|
117552
|
+
*/
|
|
117553
|
+
AddColumn = "sapIllus-AddColumn",
|
|
117554
|
+
/**
|
|
117555
|
+
* "Add People" illustration type.
|
|
117556
|
+
*/
|
|
117557
|
+
AddPeople = "sapIllus-AddPeople",
|
|
117558
|
+
/**
|
|
117559
|
+
* "Balloon Sky" illustration type.
|
|
117560
|
+
*/
|
|
117561
|
+
BalloonSky = "sapIllus-BalloonSky",
|
|
117562
|
+
/**
|
|
117563
|
+
* "Before Search" illustration type.
|
|
117564
|
+
*/
|
|
117565
|
+
BeforeSearch = "sapIllus-BeforeSearch",
|
|
117566
|
+
/**
|
|
117567
|
+
* "Connection" illustration type.
|
|
117568
|
+
*/
|
|
117569
|
+
Connection = "sapIllus-Connection",
|
|
117570
|
+
/**
|
|
117571
|
+
* "Empty Calendar" illustration type.
|
|
117572
|
+
*/
|
|
117573
|
+
EmptyCalendar = "sapIllus-EmptyCalendar",
|
|
117574
|
+
/**
|
|
117575
|
+
* "Empty List" illustration type.
|
|
117576
|
+
*/
|
|
117577
|
+
EmptyList = "sapIllus-EmptyList",
|
|
117578
|
+
/**
|
|
117579
|
+
* "Empty Planning Calendar" illustration type.
|
|
117580
|
+
*/
|
|
117581
|
+
EmptyPlanningCalendar = "sapIllus-EmptyPlanningCalendar",
|
|
117582
|
+
/**
|
|
117583
|
+
* "Error Screen" illustration type.
|
|
117584
|
+
*/
|
|
117585
|
+
ErrorScreen = "sapIllus-ErrorScreen",
|
|
117586
|
+
/**
|
|
117587
|
+
* "Filter Table" illustration type.
|
|
117588
|
+
*/
|
|
117589
|
+
FilterTable = "sapIllus-FilterTable",
|
|
117590
|
+
/**
|
|
117591
|
+
* "Group Table" illustration type.
|
|
117592
|
+
*/
|
|
117593
|
+
GroupTable = "sapIllus-GroupTable",
|
|
117594
|
+
/**
|
|
117595
|
+
* "No Activities" illustration type.
|
|
117596
|
+
*/
|
|
117597
|
+
NoActivities = "sapIllus-NoActivities",
|
|
117598
|
+
/**
|
|
117599
|
+
* "No Data" illustration type.
|
|
117600
|
+
*/
|
|
117601
|
+
NoData = "sapIllus-NoData",
|
|
117602
|
+
/**
|
|
117603
|
+
* "No Entries" illustration type.
|
|
117604
|
+
*/
|
|
117605
|
+
NoEntries = "sapIllus-NoEntries",
|
|
117606
|
+
/**
|
|
117607
|
+
* "No Filter Results" illustration type.
|
|
117608
|
+
*/
|
|
117609
|
+
NoFilterResults = "sapIllus-NoFilterResults",
|
|
117610
|
+
/**
|
|
117611
|
+
* "No Email" illustration type.
|
|
117612
|
+
*/
|
|
117613
|
+
NoMail = "sapIllus-NoMail",
|
|
117614
|
+
/**
|
|
117615
|
+
* "No Email v1" illustration type.
|
|
117616
|
+
*/
|
|
117617
|
+
NoMailV1 = "sapIllus-NoMail_v1",
|
|
117618
|
+
/**
|
|
117619
|
+
* "No Notifications" illustration type.
|
|
117620
|
+
*/
|
|
117621
|
+
NoNotifications = "sapIllus-NoNotifications",
|
|
117622
|
+
/**
|
|
117623
|
+
* "No Saved Items" illustration type.
|
|
117624
|
+
*/
|
|
117625
|
+
NoSavedItems = "sapIllus-NoSavedItems",
|
|
117626
|
+
/**
|
|
117627
|
+
* "No Saved Items v1" illustration type.
|
|
117628
|
+
*/
|
|
117629
|
+
NoSavedItemsV1 = "sapIllus-NoSavedItems_v1",
|
|
117630
|
+
/**
|
|
117631
|
+
* "No Search Results" illustration type.
|
|
117632
|
+
*/
|
|
117633
|
+
NoSearchResults = "sapIllus-NoSearchResults",
|
|
117634
|
+
/**
|
|
117635
|
+
* "No Tasks" illustration type.
|
|
117636
|
+
*/
|
|
117637
|
+
NoTasks = "sapIllus-NoTasks",
|
|
117638
|
+
/**
|
|
117639
|
+
* "No Tasks v1" illustration type.
|
|
117640
|
+
*/
|
|
117641
|
+
NoTasksV1 = "sapIllus-NoTasks_v1",
|
|
117642
|
+
/**
|
|
117643
|
+
* "Page Not Found" illustration type.
|
|
117644
|
+
*/
|
|
117645
|
+
PageNotFound = "sapIllus-PageNotFound",
|
|
117646
|
+
/**
|
|
117647
|
+
* "Reload Screen" illustration type.
|
|
117648
|
+
*/
|
|
117649
|
+
ReloadScreen = "sapIllus-ReloadScreen",
|
|
117650
|
+
/**
|
|
117651
|
+
* "Resize Column" illustration type.
|
|
117652
|
+
*/
|
|
117653
|
+
ResizeColumn = "sapIllus-ResizeColumn",
|
|
117654
|
+
/**
|
|
117655
|
+
* "Search Earth" illustration type.
|
|
117656
|
+
*/
|
|
117657
|
+
SearchEarth = "sapIllus-SearchEarth",
|
|
117658
|
+
/**
|
|
117659
|
+
* "Search Folder" illustration type.
|
|
117660
|
+
*/
|
|
117661
|
+
SearchFolder = "sapIllus-SearchFolder",
|
|
117662
|
+
/**
|
|
117663
|
+
* "Simple Balloon" illustration type.
|
|
117664
|
+
*/
|
|
117665
|
+
SimpleBalloon = "sapIllus-SimpleBalloon",
|
|
117666
|
+
/**
|
|
117667
|
+
* "Simple Bell" illustration type.
|
|
117668
|
+
*/
|
|
117669
|
+
SimpleBell = "sapIllus-SimpleBell",
|
|
117670
|
+
/**
|
|
117671
|
+
* "Simple Calendar" illustration type.
|
|
117672
|
+
*/
|
|
117673
|
+
SimpleCalendar = "sapIllus-SimpleCalendar",
|
|
117674
|
+
/**
|
|
117675
|
+
* "Simple Checkmark" illustration type.
|
|
117676
|
+
*/
|
|
117677
|
+
SimpleCheckmark = "sapIllus-SimpleCheckmark",
|
|
117678
|
+
/**
|
|
117679
|
+
* "Simple Connection" illustration type.
|
|
117680
|
+
*/
|
|
117681
|
+
SimpleConnection = "sapIllus-SimpleConnection",
|
|
117682
|
+
/**
|
|
117683
|
+
* "Simple Empty Doc" illustration type.
|
|
117684
|
+
*/
|
|
117685
|
+
SimpleEmptyDoc = "sapIllus-SimpleEmptyDoc",
|
|
117686
|
+
/**
|
|
117687
|
+
* "Simple Empty List" illustration type.
|
|
117688
|
+
*/
|
|
117689
|
+
SimpleEmptyList = "sapIllus-SimpleEmptyList",
|
|
117690
|
+
/**
|
|
117691
|
+
* "Simple Error" illustration type.
|
|
117692
|
+
*/
|
|
117693
|
+
SimpleError = "sapIllus-SimpleError",
|
|
117694
|
+
/**
|
|
117695
|
+
* "Simple Magnifier" illustration type.
|
|
117696
|
+
*/
|
|
117697
|
+
SimpleMagnifier = "sapIllus-SimpleMagnifier",
|
|
117698
|
+
/**
|
|
117699
|
+
* "Simple Mail" illustration type.
|
|
117700
|
+
*/
|
|
117701
|
+
SimpleMail = "sapIllus-SimpleMail",
|
|
117702
|
+
/**
|
|
117703
|
+
* "Simple No Saved Items" illustration type.
|
|
117704
|
+
*/
|
|
117705
|
+
SimpleNoSavedItems = "sapIllus-SimpleNoSavedItems",
|
|
117706
|
+
/**
|
|
117707
|
+
* "Simple Not Found Magnifier" illustration type.
|
|
117708
|
+
*/
|
|
117709
|
+
SimpleNotFoundMagnifier = "sapIllus-SimpleNotFoundMagnifier",
|
|
117710
|
+
/**
|
|
117711
|
+
* "Simple Reload" illustration type.
|
|
117712
|
+
*/
|
|
117713
|
+
SimpleReload = "sapIllus-SimpleReload",
|
|
117714
|
+
/**
|
|
117715
|
+
* "Simple Task" illustration type.
|
|
117716
|
+
*/
|
|
117717
|
+
SimpleTask = "sapIllus-SimpleTask",
|
|
117718
|
+
/**
|
|
117719
|
+
* "Sleeping Bell" illustration type.
|
|
117720
|
+
*/
|
|
117721
|
+
SleepingBell = "sapIllus-SleepingBell",
|
|
117722
|
+
/**
|
|
117723
|
+
* "Sort Column" illustration type.
|
|
117724
|
+
*/
|
|
117725
|
+
SortColumn = "sapIllus-SortColumn",
|
|
117726
|
+
/**
|
|
117727
|
+
* "Success Screen" illustration type.
|
|
117728
|
+
*/
|
|
117729
|
+
SuccessScreen = "sapIllus-SuccessScreen",
|
|
117730
|
+
/**
|
|
117731
|
+
* "Tent" illustration type.
|
|
117732
|
+
*/
|
|
117733
|
+
Tent = "sapIllus-Tent",
|
|
117734
|
+
/**
|
|
117735
|
+
* "Unable To Load" illustration type.
|
|
117736
|
+
*/
|
|
117737
|
+
UnableToLoad = "sapIllus-UnableToLoad",
|
|
117738
|
+
/**
|
|
117739
|
+
* "Unable To Upload" illustration type.
|
|
117740
|
+
*/
|
|
117741
|
+
UnableToUpload = "sapIllus-UnableToUpload",
|
|
117742
|
+
/**
|
|
117743
|
+
* "Upload Collection" illustration type.
|
|
117744
|
+
*/
|
|
117745
|
+
UploadCollection = "sapIllus-UploadCollection",
|
|
117746
|
+
}
|
|
115570
117747
|
/**
|
|
115571
117748
|
* @SINCE 1.30.0
|
|
115572
117749
|
*
|
|
@@ -116616,6 +118793,195 @@ declare namespace sap {
|
|
|
116616
118793
|
*/
|
|
116617
118794
|
StretchCompressMode = "StretchCompressMode",
|
|
116618
118795
|
}
|
|
118796
|
+
/**
|
|
118797
|
+
* @EXPERIMENTAL (since 1.92)
|
|
118798
|
+
*
|
|
118799
|
+
* The option keys of all the standard options of a DynamicDateRange control.
|
|
118800
|
+
*/
|
|
118801
|
+
enum StandardDynamicDateRangeKeys {
|
|
118802
|
+
/**
|
|
118803
|
+
* The date will be selected from a calendar.
|
|
118804
|
+
*/
|
|
118805
|
+
DATE = "DATE",
|
|
118806
|
+
/**
|
|
118807
|
+
* The range will be selected from a calendar.
|
|
118808
|
+
*/
|
|
118809
|
+
DATERANGE = "DATERANGE",
|
|
118810
|
+
/**
|
|
118811
|
+
* The range will start from the date selected from a calendar and ends with the last day of the current
|
|
118812
|
+
* year.
|
|
118813
|
+
*/
|
|
118814
|
+
DATETOYEAR = "DATETOYEAR",
|
|
118815
|
+
/**
|
|
118816
|
+
* The date will be the first day of the current month.
|
|
118817
|
+
*/
|
|
118818
|
+
FIRSTDAYMONTH = "FIRSTDAYMONTH",
|
|
118819
|
+
/**
|
|
118820
|
+
* The date will be the first day of the current quarter.
|
|
118821
|
+
*/
|
|
118822
|
+
FIRSTDAYQUARTER = "FIRSTDAYQUARTER",
|
|
118823
|
+
/**
|
|
118824
|
+
* The date will be the first day of the current week.
|
|
118825
|
+
*/
|
|
118826
|
+
FIRSTDAYWEEK = "FIRSTDAYWEEK",
|
|
118827
|
+
/**
|
|
118828
|
+
* The date will be the first day of the current year.
|
|
118829
|
+
*/
|
|
118830
|
+
FIRSTDAYYEAR = "FIRSTDAYYEAR",
|
|
118831
|
+
/**
|
|
118832
|
+
* The range will start from a date selected from a calendar.
|
|
118833
|
+
*/
|
|
118834
|
+
FROM = "FROM",
|
|
118835
|
+
/**
|
|
118836
|
+
* The date will be the last day of the current month.
|
|
118837
|
+
*/
|
|
118838
|
+
LASTDAYMONTH = "LASTDAYMONTH",
|
|
118839
|
+
/**
|
|
118840
|
+
* The date will be the last day of the current quarter.
|
|
118841
|
+
*/
|
|
118842
|
+
LASTDAYQUARTER = "LASTDAYQUARTER",
|
|
118843
|
+
/**
|
|
118844
|
+
* The range will contain the last X days. The count of the days is selected from a StepInput.
|
|
118845
|
+
*/
|
|
118846
|
+
LASTDAYS = "LASTDAYS",
|
|
118847
|
+
/**
|
|
118848
|
+
* The date will be the last day of the current week.
|
|
118849
|
+
*/
|
|
118850
|
+
LASTDAYWEEK = "LASTDAYWEEK",
|
|
118851
|
+
/**
|
|
118852
|
+
* The date will be the last day of the current year.
|
|
118853
|
+
*/
|
|
118854
|
+
LASTDAYYEAR = "LASTDAYYEAR",
|
|
118855
|
+
/**
|
|
118856
|
+
* The range will contain the days in the last month.
|
|
118857
|
+
*/
|
|
118858
|
+
LASTMONTH = "LASTMONTH",
|
|
118859
|
+
/**
|
|
118860
|
+
* The range will contain the last X months. The count of the months is selected from a StepInput.
|
|
118861
|
+
*/
|
|
118862
|
+
LASTMONTHS = "LASTMONTHS",
|
|
118863
|
+
/**
|
|
118864
|
+
* The range will contain the days in the last quarter.
|
|
118865
|
+
*/
|
|
118866
|
+
LASTQUARTER = "LASTQUARTER",
|
|
118867
|
+
/**
|
|
118868
|
+
* The range will contain the last X quarters. The count of the quarters is selected from a StepInput.
|
|
118869
|
+
*/
|
|
118870
|
+
LASTQUARTERS = "LASTQUARTERS",
|
|
118871
|
+
/**
|
|
118872
|
+
* The range will contain the days of the last week.
|
|
118873
|
+
*/
|
|
118874
|
+
LASTWEEK = "LASTWEEK",
|
|
118875
|
+
/**
|
|
118876
|
+
* The range will contain the last X weeks. The count of the weeks is selected from a StepInput.
|
|
118877
|
+
*/
|
|
118878
|
+
LASTWEEKS = "LASTWEEKS",
|
|
118879
|
+
/**
|
|
118880
|
+
* The range will contain the days in the last year.
|
|
118881
|
+
*/
|
|
118882
|
+
LASTYEAR = "LASTYEAR",
|
|
118883
|
+
/**
|
|
118884
|
+
* The range will contain the last X years. The count of the years is selected from a StepInput.
|
|
118885
|
+
*/
|
|
118886
|
+
LASTYEARS = "LASTYEARS",
|
|
118887
|
+
/**
|
|
118888
|
+
* The range will contain the next X days. The count of the days is selected from a StepInput.
|
|
118889
|
+
*/
|
|
118890
|
+
NEXTDAYS = "NEXTDAYS",
|
|
118891
|
+
/**
|
|
118892
|
+
* The range will contain the days in the next month.
|
|
118893
|
+
*/
|
|
118894
|
+
NEXTMONTH = "NEXTMONTH",
|
|
118895
|
+
/**
|
|
118896
|
+
* The range will contain the next X months. The count of the months is selected from a StepInput.
|
|
118897
|
+
*/
|
|
118898
|
+
NEXTMONTHS = "NEXTMONTHS",
|
|
118899
|
+
/**
|
|
118900
|
+
* The range will contain the days in the next quarter.
|
|
118901
|
+
*/
|
|
118902
|
+
NEXTQUARTER = "NEXTQUARTER",
|
|
118903
|
+
/**
|
|
118904
|
+
* The range will contain the next X quarters. The count of the quarters is selected from a StepInput.
|
|
118905
|
+
*/
|
|
118906
|
+
NEXTQUARTERS = "NEXTQUARTERS",
|
|
118907
|
+
/**
|
|
118908
|
+
* The range will contain the days of the next week.
|
|
118909
|
+
*/
|
|
118910
|
+
NEXTWEEK = "NEXTWEEK",
|
|
118911
|
+
/**
|
|
118912
|
+
* The range will contain the next X weeks. The count of the weeks is selected from a StepInput.
|
|
118913
|
+
*/
|
|
118914
|
+
NEXTWEEKS = "NEXTWEEKS",
|
|
118915
|
+
/**
|
|
118916
|
+
* The range will contain the days in the next year.
|
|
118917
|
+
*/
|
|
118918
|
+
NEXTYEAR = "NEXTYEAR",
|
|
118919
|
+
/**
|
|
118920
|
+
* The range will contain the next X years. The count of the years is selected from a StepInput.
|
|
118921
|
+
*/
|
|
118922
|
+
NEXTYEARS = "NEXTYEARS",
|
|
118923
|
+
/**
|
|
118924
|
+
* The range will contain the days in the first quarter.
|
|
118925
|
+
*/
|
|
118926
|
+
QUARTER1 = "QUARTER1",
|
|
118927
|
+
/**
|
|
118928
|
+
* The range will contain the days in the second quarter.
|
|
118929
|
+
*/
|
|
118930
|
+
QUARTER2 = "QUARTER2",
|
|
118931
|
+
/**
|
|
118932
|
+
* The range will contain the days in the third quarter.
|
|
118933
|
+
*/
|
|
118934
|
+
QUARTER3 = "QUARTER3",
|
|
118935
|
+
/**
|
|
118936
|
+
* The range will contain the days in the fourth quarter.
|
|
118937
|
+
*/
|
|
118938
|
+
QUARTER4 = "QUARTER4",
|
|
118939
|
+
/**
|
|
118940
|
+
* The range will contain a month selected from a MonthPicker.
|
|
118941
|
+
*/
|
|
118942
|
+
SPECIFICMONTH = "SPECIFICMONTH",
|
|
118943
|
+
/**
|
|
118944
|
+
* The range will contain the days in the current month.
|
|
118945
|
+
*/
|
|
118946
|
+
THISMONTH = "THISMONTH",
|
|
118947
|
+
/**
|
|
118948
|
+
* The range will contain the days in the current quarter.
|
|
118949
|
+
*/
|
|
118950
|
+
THISQUARTER = "THISQUARTER",
|
|
118951
|
+
/**
|
|
118952
|
+
* The range will contain the days of the current week.
|
|
118953
|
+
*/
|
|
118954
|
+
THISWEEK = "THISWEEK",
|
|
118955
|
+
/**
|
|
118956
|
+
* The range will contain the days in the current year.
|
|
118957
|
+
*/
|
|
118958
|
+
THISYEAR = "THISYEAR",
|
|
118959
|
+
/**
|
|
118960
|
+
* The range will end in a date selected from a calendar.
|
|
118961
|
+
*/
|
|
118962
|
+
TO = "TO",
|
|
118963
|
+
/**
|
|
118964
|
+
* The date will be the day of selection.
|
|
118965
|
+
*/
|
|
118966
|
+
TODAY = "TODAY",
|
|
118967
|
+
/**
|
|
118968
|
+
* The range will contain the last X days and the next Y days. The count of the days is selected from a
|
|
118969
|
+
* StepInput.
|
|
118970
|
+
*/
|
|
118971
|
+
TODAYFROMTO = "TODAYFROMTO",
|
|
118972
|
+
/**
|
|
118973
|
+
* The date will be the day after the day of selection.
|
|
118974
|
+
*/
|
|
118975
|
+
TOMORROW = "TOMORROW",
|
|
118976
|
+
/**
|
|
118977
|
+
* The range will start from the first day of the current year and ends with the date selected from a calendar.
|
|
118978
|
+
*/
|
|
118979
|
+
YEARTODATE = "YEARTODATE",
|
|
118980
|
+
/**
|
|
118981
|
+
* The date will be the day before the day of selection.
|
|
118982
|
+
*/
|
|
118983
|
+
YESTERDAY = "YESTERDAY",
|
|
118984
|
+
}
|
|
116619
118985
|
/**
|
|
116620
118986
|
* Types for StandardTile.
|
|
116621
118987
|
*/
|
|
@@ -117179,6 +119545,16 @@ declare namespace sap {
|
|
|
117179
119545
|
|
|
117180
119546
|
"sap/m/IconTabSeparator": undefined;
|
|
117181
119547
|
|
|
119548
|
+
"sap/m/IllustratedMessage": undefined;
|
|
119549
|
+
|
|
119550
|
+
"sap/m/IllustratedMessageSize": undefined;
|
|
119551
|
+
|
|
119552
|
+
"sap/m/IllustratedMessageType": undefined;
|
|
119553
|
+
|
|
119554
|
+
"sap/m/Illustration": undefined;
|
|
119555
|
+
|
|
119556
|
+
"sap/m/IllustrationPool": undefined;
|
|
119557
|
+
|
|
117182
119558
|
"sap/m/Image": undefined;
|
|
117183
119559
|
|
|
117184
119560
|
"sap/m/ImageContent": undefined;
|
|
@@ -117275,6 +119651,10 @@ declare namespace sap {
|
|
|
117275
119651
|
|
|
117276
119652
|
"sap/m/OverflowToolbarToggleButton": undefined;
|
|
117277
119653
|
|
|
119654
|
+
"sap/m/p13n/AbstractContainer": undefined;
|
|
119655
|
+
|
|
119656
|
+
"sap/m/p13n/AbstractContainerItem": undefined;
|
|
119657
|
+
|
|
117278
119658
|
"sap/m/p13n/BasePanel": undefined;
|
|
117279
119659
|
|
|
117280
119660
|
"sap/m/p13n/Container": undefined;
|