@sapui5/types 1.116.0 → 1.117.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/index.d.ts +1 -0
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +114 -30
- package/types/sap.chart.d.ts +29 -8
- package/types/sap.collaboration.d.ts +5 -2
- package/types/sap.esh.search.ui.d.ts +9 -3
- package/types/sap.f.d.ts +130 -36
- package/types/sap.fe.core.d.ts +21 -11
- package/types/sap.fe.macros.d.ts +160 -9
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.optimisticBatch.d.ts +3 -0
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +282 -1118
- package/types/sap.insights.d.ts +248 -2
- package/types/sap.landvisz.d.ts +53 -14
- package/types/sap.m.d.ts +1793 -403
- package/types/sap.makit.d.ts +22 -7
- package/types/sap.me.d.ts +33 -9
- package/types/sap.ndc.d.ts +20 -15
- package/types/sap.ovp.d.ts +7 -97
- package/types/sap.rules.ui.d.ts +17 -5
- package/types/sap.sac.df.d.ts +90 -1
- package/types/sap.suite.ui.commons.d.ts +439 -108
- package/types/sap.suite.ui.generic.template.d.ts +5 -2
- package/types/sap.suite.ui.microchart.d.ts +69 -18
- package/types/sap.tnt.d.ts +13 -4
- package/types/sap.ui.codeeditor.d.ts +9 -3
- package/types/sap.ui.commons.d.ts +236 -68
- package/types/sap.ui.comp.d.ts +544 -169
- package/types/sap.ui.core.d.ts +929 -259
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +204 -3
- package/types/sap.ui.fl.d.ts +21 -6
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +71 -13
- package/types/sap.ui.layout.d.ts +95 -30
- package/types/sap.ui.mdc.d.ts +296 -98
- package/types/sap.ui.richtexteditor.d.ts +17 -5
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +9 -3
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +118 -24
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +209 -53
- package/types/sap.ui.ux3.d.ts +220 -61
- package/types/sap.ui.vbm.d.ts +184 -61
- package/types/sap.ui.vk.d.ts +544 -139
- package/types/sap.ui.vtm.d.ts +130 -37
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +137 -35
- package/types/sap.ui.webc.main.d.ts +331 -100
- package/types/sap.uiext.inbox.d.ts +50 -14
- package/types/sap.ushell.d.ts +625 -46
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +42 -12
- package/types/sap.viz.d.ts +521 -137
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +29 -8
package/types/sap.gantt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/gantt/library" {
|
|
4
4
|
import ChartScheme from "sap/gantt/config/ChartScheme";
|
|
@@ -5811,16 +5811,6 @@ declare module "sap/gantt/config/SettingItem" {
|
|
|
5811
5811
|
* @returns Metadata object describing this class
|
|
5812
5812
|
*/
|
|
5813
5813
|
static getMetadata(): ElementMetadata;
|
|
5814
|
-
/**
|
|
5815
|
-
* Gets current value of property {@link #get_isStandard _isStandard}.
|
|
5816
|
-
*
|
|
5817
|
-
* private property. Set this to true for all standard settings
|
|
5818
|
-
*
|
|
5819
|
-
* Default value is `false`.
|
|
5820
|
-
*
|
|
5821
|
-
* @returns Value of property `_isStandard`
|
|
5822
|
-
*/
|
|
5823
|
-
get_isStandard(): boolean;
|
|
5824
5814
|
/**
|
|
5825
5815
|
* Gets current value of property {@link #getChecked checked}.
|
|
5826
5816
|
*
|
|
@@ -5847,23 +5837,6 @@ declare module "sap/gantt/config/SettingItem" {
|
|
|
5847
5837
|
* @returns Value of property `key`
|
|
5848
5838
|
*/
|
|
5849
5839
|
getKey(): string;
|
|
5850
|
-
/**
|
|
5851
|
-
* Sets a new value for property {@link #get_isStandard _isStandard}.
|
|
5852
|
-
*
|
|
5853
|
-
* private property. Set this to true for all standard settings
|
|
5854
|
-
*
|
|
5855
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5856
|
-
*
|
|
5857
|
-
* Default value is `false`.
|
|
5858
|
-
*
|
|
5859
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
5860
|
-
*/
|
|
5861
|
-
set_isStandard(
|
|
5862
|
-
/**
|
|
5863
|
-
* New value for property `_isStandard`
|
|
5864
|
-
*/
|
|
5865
|
-
b_isStandard?: boolean
|
|
5866
|
-
): this;
|
|
5867
5840
|
/**
|
|
5868
5841
|
* Sets a new value for property {@link #getChecked checked}.
|
|
5869
5842
|
*
|
|
@@ -5928,11 +5901,6 @@ declare module "sap/gantt/config/SettingItem" {
|
|
|
5928
5901
|
* Aria label of the checkbox
|
|
5929
5902
|
*/
|
|
5930
5903
|
displayText?: string | PropertyBindingInfo;
|
|
5931
|
-
|
|
5932
|
-
/**
|
|
5933
|
-
* private property. Set this to true for all standard settings
|
|
5934
|
-
*/
|
|
5935
|
-
_isStandard?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
5936
5904
|
}
|
|
5937
5905
|
}
|
|
5938
5906
|
|
|
@@ -14457,7 +14425,10 @@ declare module "sap/gantt/GanttChartBase" {
|
|
|
14457
14425
|
originEvent?: object;
|
|
14458
14426
|
}
|
|
14459
14427
|
|
|
14460
|
-
export type GanttChartBase$ChartClickEvent = Event<
|
|
14428
|
+
export type GanttChartBase$ChartClickEvent = Event<
|
|
14429
|
+
GanttChartBase$ChartClickEventParameters,
|
|
14430
|
+
GanttChartBase
|
|
14431
|
+
>;
|
|
14461
14432
|
|
|
14462
14433
|
export interface GanttChartBase$ChartDoubleClickEventParameters {
|
|
14463
14434
|
/**
|
|
@@ -14497,13 +14468,19 @@ declare module "sap/gantt/GanttChartBase" {
|
|
|
14497
14468
|
originEvent?: object;
|
|
14498
14469
|
}
|
|
14499
14470
|
|
|
14500
|
-
export type GanttChartBase$ChartDoubleClickEvent = Event<
|
|
14471
|
+
export type GanttChartBase$ChartDoubleClickEvent = Event<
|
|
14472
|
+
GanttChartBase$ChartDoubleClickEventParameters,
|
|
14473
|
+
GanttChartBase
|
|
14474
|
+
>;
|
|
14501
14475
|
|
|
14502
14476
|
export interface GanttChartBase$ChartDragEnterEventParameters {
|
|
14503
14477
|
originEvent?: object;
|
|
14504
14478
|
}
|
|
14505
14479
|
|
|
14506
|
-
export type GanttChartBase$ChartDragEnterEvent = Event<
|
|
14480
|
+
export type GanttChartBase$ChartDragEnterEvent = Event<
|
|
14481
|
+
GanttChartBase$ChartDragEnterEventParameters,
|
|
14482
|
+
GanttChartBase
|
|
14483
|
+
>;
|
|
14507
14484
|
|
|
14508
14485
|
export interface GanttChartBase$ChartDragLeaveEventParameters {
|
|
14509
14486
|
originEvent?: object;
|
|
@@ -14511,7 +14488,10 @@ declare module "sap/gantt/GanttChartBase" {
|
|
|
14511
14488
|
draggingSource?: object;
|
|
14512
14489
|
}
|
|
14513
14490
|
|
|
14514
|
-
export type GanttChartBase$ChartDragLeaveEvent = Event<
|
|
14491
|
+
export type GanttChartBase$ChartDragLeaveEvent = Event<
|
|
14492
|
+
GanttChartBase$ChartDragLeaveEventParameters,
|
|
14493
|
+
GanttChartBase
|
|
14494
|
+
>;
|
|
14515
14495
|
|
|
14516
14496
|
export interface GanttChartBase$ChartMouseOverEventParameters {
|
|
14517
14497
|
/**
|
|
@@ -14551,7 +14531,10 @@ declare module "sap/gantt/GanttChartBase" {
|
|
|
14551
14531
|
originEvent?: object;
|
|
14552
14532
|
}
|
|
14553
14533
|
|
|
14554
|
-
export type GanttChartBase$ChartMouseOverEvent = Event<
|
|
14534
|
+
export type GanttChartBase$ChartMouseOverEvent = Event<
|
|
14535
|
+
GanttChartBase$ChartMouseOverEventParameters,
|
|
14536
|
+
GanttChartBase
|
|
14537
|
+
>;
|
|
14555
14538
|
|
|
14556
14539
|
export interface GanttChartBase$ChartRightClickEventParameters {
|
|
14557
14540
|
/**
|
|
@@ -14591,7 +14574,10 @@ declare module "sap/gantt/GanttChartBase" {
|
|
|
14591
14574
|
originEvent?: object;
|
|
14592
14575
|
}
|
|
14593
14576
|
|
|
14594
|
-
export type GanttChartBase$ChartRightClickEvent = Event<
|
|
14577
|
+
export type GanttChartBase$ChartRightClickEvent = Event<
|
|
14578
|
+
GanttChartBase$ChartRightClickEventParameters,
|
|
14579
|
+
GanttChartBase
|
|
14580
|
+
>;
|
|
14595
14581
|
|
|
14596
14582
|
export interface GanttChartBase$GanttChartSwitchRequestedEventParameters {
|
|
14597
14583
|
/**
|
|
@@ -14600,7 +14586,10 @@ declare module "sap/gantt/GanttChartBase" {
|
|
|
14600
14586
|
hierarchyKey?: string;
|
|
14601
14587
|
}
|
|
14602
14588
|
|
|
14603
|
-
export type GanttChartBase$GanttChartSwitchRequestedEvent = Event<
|
|
14589
|
+
export type GanttChartBase$GanttChartSwitchRequestedEvent = Event<
|
|
14590
|
+
GanttChartBase$GanttChartSwitchRequestedEventParameters,
|
|
14591
|
+
GanttChartBase
|
|
14592
|
+
>;
|
|
14604
14593
|
|
|
14605
14594
|
export interface GanttChartBase$HorizontalScrollEventParameters {
|
|
14606
14595
|
/**
|
|
@@ -14619,7 +14608,10 @@ declare module "sap/gantt/GanttChartBase" {
|
|
|
14619
14608
|
endTime?: string;
|
|
14620
14609
|
}
|
|
14621
14610
|
|
|
14622
|
-
export type GanttChartBase$HorizontalScrollEvent = Event<
|
|
14611
|
+
export type GanttChartBase$HorizontalScrollEvent = Event<
|
|
14612
|
+
GanttChartBase$HorizontalScrollEventParameters,
|
|
14613
|
+
GanttChartBase
|
|
14614
|
+
>;
|
|
14623
14615
|
|
|
14624
14616
|
export interface GanttChartBase$RelationshipSelectionChangeEventParameters {
|
|
14625
14617
|
/**
|
|
@@ -14628,7 +14620,10 @@ declare module "sap/gantt/GanttChartBase" {
|
|
|
14628
14620
|
originEvent?: object;
|
|
14629
14621
|
}
|
|
14630
14622
|
|
|
14631
|
-
export type GanttChartBase$RelationshipSelectionChangeEvent = Event<
|
|
14623
|
+
export type GanttChartBase$RelationshipSelectionChangeEvent = Event<
|
|
14624
|
+
GanttChartBase$RelationshipSelectionChangeEventParameters,
|
|
14625
|
+
GanttChartBase
|
|
14626
|
+
>;
|
|
14632
14627
|
|
|
14633
14628
|
export interface GanttChartBase$RowSelectionChangeEventParameters {
|
|
14634
14629
|
/**
|
|
@@ -14637,7 +14632,10 @@ declare module "sap/gantt/GanttChartBase" {
|
|
|
14637
14632
|
originEvent?: object;
|
|
14638
14633
|
}
|
|
14639
14634
|
|
|
14640
|
-
export type GanttChartBase$RowSelectionChangeEvent = Event<
|
|
14635
|
+
export type GanttChartBase$RowSelectionChangeEvent = Event<
|
|
14636
|
+
GanttChartBase$RowSelectionChangeEventParameters,
|
|
14637
|
+
GanttChartBase
|
|
14638
|
+
>;
|
|
14641
14639
|
|
|
14642
14640
|
export interface GanttChartBase$ShapeDragEndEventParameters {
|
|
14643
14641
|
/**
|
|
@@ -14673,7 +14671,10 @@ declare module "sap/gantt/GanttChartBase" {
|
|
|
14673
14671
|
targetSvgId?: string;
|
|
14674
14672
|
}
|
|
14675
14673
|
|
|
14676
|
-
export type GanttChartBase$ShapeDragEndEvent = Event<
|
|
14674
|
+
export type GanttChartBase$ShapeDragEndEvent = Event<
|
|
14675
|
+
GanttChartBase$ShapeDragEndEventParameters,
|
|
14676
|
+
GanttChartBase
|
|
14677
|
+
>;
|
|
14677
14678
|
|
|
14678
14679
|
export interface GanttChartBase$ShapeMouseEnterEventParameters {
|
|
14679
14680
|
/**
|
|
@@ -14697,7 +14698,10 @@ declare module "sap/gantt/GanttChartBase" {
|
|
|
14697
14698
|
originEvent?: object;
|
|
14698
14699
|
}
|
|
14699
14700
|
|
|
14700
|
-
export type GanttChartBase$ShapeMouseEnterEvent = Event<
|
|
14701
|
+
export type GanttChartBase$ShapeMouseEnterEvent = Event<
|
|
14702
|
+
GanttChartBase$ShapeMouseEnterEventParameters,
|
|
14703
|
+
GanttChartBase
|
|
14704
|
+
>;
|
|
14701
14705
|
|
|
14702
14706
|
export interface GanttChartBase$ShapeMouseLeaveEventParameters {
|
|
14703
14707
|
/**
|
|
@@ -14711,7 +14715,10 @@ declare module "sap/gantt/GanttChartBase" {
|
|
|
14711
14715
|
originEvent?: object;
|
|
14712
14716
|
}
|
|
14713
14717
|
|
|
14714
|
-
export type GanttChartBase$ShapeMouseLeaveEvent = Event<
|
|
14718
|
+
export type GanttChartBase$ShapeMouseLeaveEvent = Event<
|
|
14719
|
+
GanttChartBase$ShapeMouseLeaveEventParameters,
|
|
14720
|
+
GanttChartBase
|
|
14721
|
+
>;
|
|
14715
14722
|
|
|
14716
14723
|
export interface GanttChartBase$ShapeResizeEndEventParameters {
|
|
14717
14724
|
/**
|
|
@@ -14735,7 +14742,10 @@ declare module "sap/gantt/GanttChartBase" {
|
|
|
14735
14742
|
newTime?: string[];
|
|
14736
14743
|
}
|
|
14737
14744
|
|
|
14738
|
-
export type GanttChartBase$ShapeResizeEndEvent = Event<
|
|
14745
|
+
export type GanttChartBase$ShapeResizeEndEvent = Event<
|
|
14746
|
+
GanttChartBase$ShapeResizeEndEventParameters,
|
|
14747
|
+
GanttChartBase
|
|
14748
|
+
>;
|
|
14739
14749
|
|
|
14740
14750
|
export interface GanttChartBase$ShapeSelectionChangeEventParameters {
|
|
14741
14751
|
/**
|
|
@@ -14744,7 +14754,10 @@ declare module "sap/gantt/GanttChartBase" {
|
|
|
14744
14754
|
originEvent?: object;
|
|
14745
14755
|
}
|
|
14746
14756
|
|
|
14747
|
-
export type GanttChartBase$ShapeSelectionChangeEvent = Event<
|
|
14757
|
+
export type GanttChartBase$ShapeSelectionChangeEvent = Event<
|
|
14758
|
+
GanttChartBase$ShapeSelectionChangeEventParameters,
|
|
14759
|
+
GanttChartBase
|
|
14760
|
+
>;
|
|
14748
14761
|
|
|
14749
14762
|
export interface GanttChartBase$SplitterResizeEventParameters {
|
|
14750
14763
|
/**
|
|
@@ -14786,7 +14799,10 @@ declare module "sap/gantt/GanttChartBase" {
|
|
|
14786
14799
|
zoomInfo?: object;
|
|
14787
14800
|
}
|
|
14788
14801
|
|
|
14789
|
-
export type GanttChartBase$SplitterResizeEvent = Event<
|
|
14802
|
+
export type GanttChartBase$SplitterResizeEvent = Event<
|
|
14803
|
+
GanttChartBase$SplitterResizeEventParameters,
|
|
14804
|
+
GanttChartBase
|
|
14805
|
+
>;
|
|
14790
14806
|
|
|
14791
14807
|
export interface GanttChartBase$TreeTableToggleEventEventParameters {
|
|
14792
14808
|
/**
|
|
@@ -14805,7 +14821,10 @@ declare module "sap/gantt/GanttChartBase" {
|
|
|
14805
14821
|
expanded?: boolean;
|
|
14806
14822
|
}
|
|
14807
14823
|
|
|
14808
|
-
export type GanttChartBase$TreeTableToggleEventEvent = Event<
|
|
14824
|
+
export type GanttChartBase$TreeTableToggleEventEvent = Event<
|
|
14825
|
+
GanttChartBase$TreeTableToggleEventEventParameters,
|
|
14826
|
+
GanttChartBase
|
|
14827
|
+
>;
|
|
14809
14828
|
|
|
14810
14829
|
export interface GanttChartBase$VerticalScrollEventParameters {
|
|
14811
14830
|
/**
|
|
@@ -14814,7 +14833,10 @@ declare module "sap/gantt/GanttChartBase" {
|
|
|
14814
14833
|
scrollSteps?: int;
|
|
14815
14834
|
}
|
|
14816
14835
|
|
|
14817
|
-
export type GanttChartBase$VerticalScrollEvent = Event<
|
|
14836
|
+
export type GanttChartBase$VerticalScrollEvent = Event<
|
|
14837
|
+
GanttChartBase$VerticalScrollEventParameters,
|
|
14838
|
+
GanttChartBase
|
|
14839
|
+
>;
|
|
14818
14840
|
}
|
|
14819
14841
|
|
|
14820
14842
|
declare module "sap/gantt/GanttChartContainer" {
|
|
@@ -16265,7 +16287,10 @@ declare module "sap/gantt/GanttChartContainer" {
|
|
|
16265
16287
|
value?: boolean;
|
|
16266
16288
|
}
|
|
16267
16289
|
|
|
16268
|
-
export type GanttChartContainer$CustomSettingChangeEvent = Event<
|
|
16290
|
+
export type GanttChartContainer$CustomSettingChangeEvent = Event<
|
|
16291
|
+
GanttChartContainer$CustomSettingChangeEventParameters,
|
|
16292
|
+
GanttChartContainer
|
|
16293
|
+
>;
|
|
16269
16294
|
|
|
16270
16295
|
export interface GanttChartContainer$GanttChartChangeRequestedEventParameters {
|
|
16271
16296
|
/**
|
|
@@ -16300,7 +16325,10 @@ declare module "sap/gantt/GanttChartContainer" {
|
|
|
16300
16325
|
containerLayoutKey?: string;
|
|
16301
16326
|
}
|
|
16302
16327
|
|
|
16303
|
-
export type GanttChartContainer$GanttChartChangeRequestedEvent = Event<
|
|
16328
|
+
export type GanttChartContainer$GanttChartChangeRequestedEvent = Event<
|
|
16329
|
+
GanttChartContainer$GanttChartChangeRequestedEventParameters,
|
|
16330
|
+
GanttChartContainer
|
|
16331
|
+
>;
|
|
16304
16332
|
|
|
16305
16333
|
export interface GanttChartContainer$TreeTableToggleEventEventParameters {
|
|
16306
16334
|
/**
|
|
@@ -16319,7 +16347,10 @@ declare module "sap/gantt/GanttChartContainer" {
|
|
|
16319
16347
|
expanded?: boolean;
|
|
16320
16348
|
}
|
|
16321
16349
|
|
|
16322
|
-
export type GanttChartContainer$TreeTableToggleEventEvent = Event<
|
|
16350
|
+
export type GanttChartContainer$TreeTableToggleEventEvent = Event<
|
|
16351
|
+
GanttChartContainer$TreeTableToggleEventEventParameters,
|
|
16352
|
+
GanttChartContainer
|
|
16353
|
+
>;
|
|
16323
16354
|
}
|
|
16324
16355
|
|
|
16325
16356
|
declare module "sap/gantt/GanttChartWithTable" {
|
|
@@ -17811,7 +17842,10 @@ declare module "sap/gantt/legend/ListLegend" {
|
|
|
17811
17842
|
value?: boolean;
|
|
17812
17843
|
}
|
|
17813
17844
|
|
|
17814
|
-
export type ListLegend$CheckBoxChangeEvent = Event<
|
|
17845
|
+
export type ListLegend$CheckBoxChangeEvent = Event<
|
|
17846
|
+
ListLegend$CheckBoxChangeEventParameters,
|
|
17847
|
+
ListLegend
|
|
17848
|
+
>;
|
|
17815
17849
|
}
|
|
17816
17850
|
|
|
17817
17851
|
declare module "sap/gantt/misc/AxisOrdinal" {
|
|
@@ -28820,15 +28854,24 @@ declare module "sap/gantt/simple/AdhocDiamond" {
|
|
|
28820
28854
|
|
|
28821
28855
|
export interface AdhocDiamond$MouseEnterEventParameters {}
|
|
28822
28856
|
|
|
28823
|
-
export type AdhocDiamond$MouseEnterEvent = Event<
|
|
28857
|
+
export type AdhocDiamond$MouseEnterEvent = Event<
|
|
28858
|
+
AdhocDiamond$MouseEnterEventParameters,
|
|
28859
|
+
AdhocDiamond
|
|
28860
|
+
>;
|
|
28824
28861
|
|
|
28825
28862
|
export interface AdhocDiamond$MouseLeaveEventParameters {}
|
|
28826
28863
|
|
|
28827
|
-
export type AdhocDiamond$MouseLeaveEvent = Event<
|
|
28864
|
+
export type AdhocDiamond$MouseLeaveEvent = Event<
|
|
28865
|
+
AdhocDiamond$MouseLeaveEventParameters,
|
|
28866
|
+
AdhocDiamond
|
|
28867
|
+
>;
|
|
28828
28868
|
|
|
28829
28869
|
export interface AdhocDiamond$PressEventParameters {}
|
|
28830
28870
|
|
|
28831
|
-
export type AdhocDiamond$PressEvent = Event<
|
|
28871
|
+
export type AdhocDiamond$PressEvent = Event<
|
|
28872
|
+
AdhocDiamond$PressEventParameters,
|
|
28873
|
+
AdhocDiamond
|
|
28874
|
+
>;
|
|
28832
28875
|
}
|
|
28833
28876
|
|
|
28834
28877
|
declare module "sap/gantt/simple/AdhocLine" {
|
|
@@ -28836,10 +28879,6 @@ declare module "sap/gantt/simple/AdhocLine" {
|
|
|
28836
28879
|
|
|
28837
28880
|
import Event from "sap/ui/base/Event";
|
|
28838
28881
|
|
|
28839
|
-
import BaseLine from "sap/gantt/simple/BaseLine";
|
|
28840
|
-
|
|
28841
|
-
import AdhocDiamond from "sap/gantt/simple/AdhocDiamond";
|
|
28842
|
-
|
|
28843
28882
|
import MarkerType from "sap/gantt/simple/MarkerType";
|
|
28844
28883
|
|
|
28845
28884
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
@@ -29104,24 +29143,6 @@ declare module "sap/gantt/simple/AdhocLine" {
|
|
|
29104
29143
|
*/
|
|
29105
29144
|
oListener?: object
|
|
29106
29145
|
): this;
|
|
29107
|
-
/**
|
|
29108
|
-
* Destroys the _headerLine in the aggregation {@link #get_headerLine _headerLine}.
|
|
29109
|
-
*
|
|
29110
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
29111
|
-
*/
|
|
29112
|
-
destroy_headerLine(): this;
|
|
29113
|
-
/**
|
|
29114
|
-
* Destroys the _line in the aggregation {@link #get_line _line}.
|
|
29115
|
-
*
|
|
29116
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
29117
|
-
*/
|
|
29118
|
-
destroy_line(): this;
|
|
29119
|
-
/**
|
|
29120
|
-
* Destroys the _marker in the aggregation {@link #get_marker _marker}.
|
|
29121
|
-
*
|
|
29122
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
29123
|
-
*/
|
|
29124
|
-
destroy_marker(): this;
|
|
29125
29146
|
/**
|
|
29126
29147
|
* @since 1.88
|
|
29127
29148
|
*
|
|
@@ -29248,54 +29269,6 @@ declare module "sap/gantt/simple/AdhocLine" {
|
|
|
29248
29269
|
*/
|
|
29249
29270
|
mParameters?: object
|
|
29250
29271
|
): this;
|
|
29251
|
-
/**
|
|
29252
|
-
* Gets content of aggregation {@link #get_headerLine _headerLine}.
|
|
29253
|
-
*
|
|
29254
|
-
* Adhoc Marker
|
|
29255
|
-
*/
|
|
29256
|
-
get_headerLine(): BaseLine;
|
|
29257
|
-
/**
|
|
29258
|
-
* Gets current value of property {@link #get_level _level}.
|
|
29259
|
-
*
|
|
29260
|
-
* Level of markers in the header.
|
|
29261
|
-
*
|
|
29262
|
-
* Default value is `1`.
|
|
29263
|
-
*
|
|
29264
|
-
* @returns Value of property `_level`
|
|
29265
|
-
*/
|
|
29266
|
-
get_level(): int;
|
|
29267
|
-
/**
|
|
29268
|
-
* Gets content of aggregation {@link #get_line _line}.
|
|
29269
|
-
*
|
|
29270
|
-
* Adhoc Line
|
|
29271
|
-
*/
|
|
29272
|
-
get_line(): BaseLine;
|
|
29273
|
-
/**
|
|
29274
|
-
* Gets content of aggregation {@link #get_marker _marker}.
|
|
29275
|
-
*
|
|
29276
|
-
* Adhoc Marker
|
|
29277
|
-
*/
|
|
29278
|
-
get_marker(): AdhocDiamond;
|
|
29279
|
-
/**
|
|
29280
|
-
* Gets current value of property {@link #get_selected _selected}.
|
|
29281
|
-
*
|
|
29282
|
-
* Line Selected
|
|
29283
|
-
*
|
|
29284
|
-
* Default value is `false`.
|
|
29285
|
-
*
|
|
29286
|
-
* @returns Value of property `_selected`
|
|
29287
|
-
*/
|
|
29288
|
-
get_selected(): boolean;
|
|
29289
|
-
/**
|
|
29290
|
-
* Gets current value of property {@link #get_strokeWidth _strokeWidth}.
|
|
29291
|
-
*
|
|
29292
|
-
* Standard SVG 'stroke-width' attribute.
|
|
29293
|
-
*
|
|
29294
|
-
* Default value is `1`.
|
|
29295
|
-
*
|
|
29296
|
-
* @returns Value of property `_strokeWidth`
|
|
29297
|
-
*/
|
|
29298
|
-
get_strokeWidth(): float;
|
|
29299
29272
|
/**
|
|
29300
29273
|
* Gets current value of property {@link #getDescription description}.
|
|
29301
29274
|
*
|
|
@@ -29384,90 +29357,6 @@ declare module "sap/gantt/simple/AdhocLine" {
|
|
|
29384
29357
|
* @returns Value of property `visible`
|
|
29385
29358
|
*/
|
|
29386
29359
|
getVisible(): boolean;
|
|
29387
|
-
/**
|
|
29388
|
-
* Sets the aggregated {@link #get_headerLine _headerLine}.
|
|
29389
|
-
*
|
|
29390
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
29391
|
-
*/
|
|
29392
|
-
set_headerLine(
|
|
29393
|
-
/**
|
|
29394
|
-
* The _headerLine to set
|
|
29395
|
-
*/
|
|
29396
|
-
o_headerLine: BaseLine
|
|
29397
|
-
): this;
|
|
29398
|
-
/**
|
|
29399
|
-
* Sets a new value for property {@link #get_level _level}.
|
|
29400
|
-
*
|
|
29401
|
-
* Level of markers in the header.
|
|
29402
|
-
*
|
|
29403
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
29404
|
-
*
|
|
29405
|
-
* Default value is `1`.
|
|
29406
|
-
*
|
|
29407
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
29408
|
-
*/
|
|
29409
|
-
set_level(
|
|
29410
|
-
/**
|
|
29411
|
-
* New value for property `_level`
|
|
29412
|
-
*/
|
|
29413
|
-
i_level?: int
|
|
29414
|
-
): this;
|
|
29415
|
-
/**
|
|
29416
|
-
* Sets the aggregated {@link #get_line _line}.
|
|
29417
|
-
*
|
|
29418
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
29419
|
-
*/
|
|
29420
|
-
set_line(
|
|
29421
|
-
/**
|
|
29422
|
-
* The _line to set
|
|
29423
|
-
*/
|
|
29424
|
-
o_line: BaseLine
|
|
29425
|
-
): this;
|
|
29426
|
-
/**
|
|
29427
|
-
* Sets the aggregated {@link #get_marker _marker}.
|
|
29428
|
-
*
|
|
29429
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
29430
|
-
*/
|
|
29431
|
-
set_marker(
|
|
29432
|
-
/**
|
|
29433
|
-
* The _marker to set
|
|
29434
|
-
*/
|
|
29435
|
-
o_marker: AdhocDiamond
|
|
29436
|
-
): this;
|
|
29437
|
-
/**
|
|
29438
|
-
* Sets a new value for property {@link #get_selected _selected}.
|
|
29439
|
-
*
|
|
29440
|
-
* Line Selected
|
|
29441
|
-
*
|
|
29442
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
29443
|
-
*
|
|
29444
|
-
* Default value is `false`.
|
|
29445
|
-
*
|
|
29446
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
29447
|
-
*/
|
|
29448
|
-
set_selected(
|
|
29449
|
-
/**
|
|
29450
|
-
* New value for property `_selected`
|
|
29451
|
-
*/
|
|
29452
|
-
b_selected?: boolean
|
|
29453
|
-
): this;
|
|
29454
|
-
/**
|
|
29455
|
-
* Sets a new value for property {@link #get_strokeWidth _strokeWidth}.
|
|
29456
|
-
*
|
|
29457
|
-
* Standard SVG 'stroke-width' attribute.
|
|
29458
|
-
*
|
|
29459
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
29460
|
-
*
|
|
29461
|
-
* Default value is `1`.
|
|
29462
|
-
*
|
|
29463
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
29464
|
-
*/
|
|
29465
|
-
set_strokeWidth(
|
|
29466
|
-
/**
|
|
29467
|
-
* New value for property `_strokeWidth`
|
|
29468
|
-
*/
|
|
29469
|
-
f_strokeWidth?: float
|
|
29470
|
-
): this;
|
|
29471
29360
|
/**
|
|
29472
29361
|
* Sets a new value for property {@link #getDescription description}.
|
|
29473
29362
|
*
|
|
@@ -29629,11 +29518,6 @@ declare module "sap/gantt/simple/AdhocLine" {
|
|
|
29629
29518
|
*/
|
|
29630
29519
|
stroke?: ValueSVGPaintServer | PropertyBindingInfo | `{${string}}`;
|
|
29631
29520
|
|
|
29632
|
-
/**
|
|
29633
|
-
* Standard SVG 'stroke-width' attribute.
|
|
29634
|
-
*/
|
|
29635
|
-
_strokeWidth?: float | PropertyBindingInfo | `{${string}}`;
|
|
29636
|
-
|
|
29637
29521
|
/**
|
|
29638
29522
|
* Standard SVG 'stroke-dasharray' attribute.
|
|
29639
29523
|
*/
|
|
@@ -29674,16 +29558,6 @@ declare module "sap/gantt/simple/AdhocLine" {
|
|
|
29674
29558
|
*/
|
|
29675
29559
|
markerPopoverDelay?: int | PropertyBindingInfo | `{${string}}`;
|
|
29676
29560
|
|
|
29677
|
-
/**
|
|
29678
|
-
* Line Selected
|
|
29679
|
-
*/
|
|
29680
|
-
_selected?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
29681
|
-
|
|
29682
|
-
/**
|
|
29683
|
-
* Level of markers in the header.
|
|
29684
|
-
*/
|
|
29685
|
-
_level?: int | PropertyBindingInfo | `{${string}}`;
|
|
29686
|
-
|
|
29687
29561
|
/**
|
|
29688
29562
|
* @since 1.88
|
|
29689
29563
|
*
|
|
@@ -29691,21 +29565,6 @@ declare module "sap/gantt/simple/AdhocLine" {
|
|
|
29691
29565
|
*/
|
|
29692
29566
|
draggable?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
29693
29567
|
|
|
29694
|
-
/**
|
|
29695
|
-
* Adhoc Line
|
|
29696
|
-
*/
|
|
29697
|
-
_line?: BaseLine;
|
|
29698
|
-
|
|
29699
|
-
/**
|
|
29700
|
-
* Adhoc Marker
|
|
29701
|
-
*/
|
|
29702
|
-
_marker?: AdhocDiamond;
|
|
29703
|
-
|
|
29704
|
-
/**
|
|
29705
|
-
* Adhoc Marker
|
|
29706
|
-
*/
|
|
29707
|
-
_headerLine?: BaseLine;
|
|
29708
|
-
|
|
29709
29568
|
/**
|
|
29710
29569
|
* Fires when the adhoc marker is pressed.
|
|
29711
29570
|
*/
|
|
@@ -29735,19 +29594,31 @@ declare module "sap/gantt/simple/AdhocLine" {
|
|
|
29735
29594
|
oldTimeStamp?: string;
|
|
29736
29595
|
}
|
|
29737
29596
|
|
|
29738
|
-
export type AdhocLine$AdhoclineDropEvent = Event<
|
|
29597
|
+
export type AdhocLine$AdhoclineDropEvent = Event<
|
|
29598
|
+
AdhocLine$AdhoclineDropEventParameters,
|
|
29599
|
+
AdhocLine
|
|
29600
|
+
>;
|
|
29739
29601
|
|
|
29740
29602
|
export interface AdhocLine$MarkerMouseEnterEventParameters {}
|
|
29741
29603
|
|
|
29742
|
-
export type AdhocLine$MarkerMouseEnterEvent = Event<
|
|
29604
|
+
export type AdhocLine$MarkerMouseEnterEvent = Event<
|
|
29605
|
+
AdhocLine$MarkerMouseEnterEventParameters,
|
|
29606
|
+
AdhocLine
|
|
29607
|
+
>;
|
|
29743
29608
|
|
|
29744
29609
|
export interface AdhocLine$MarkerMouseLeaveEventParameters {}
|
|
29745
29610
|
|
|
29746
|
-
export type AdhocLine$MarkerMouseLeaveEvent = Event<
|
|
29611
|
+
export type AdhocLine$MarkerMouseLeaveEvent = Event<
|
|
29612
|
+
AdhocLine$MarkerMouseLeaveEventParameters,
|
|
29613
|
+
AdhocLine
|
|
29614
|
+
>;
|
|
29747
29615
|
|
|
29748
29616
|
export interface AdhocLine$MarkerPressEventParameters {}
|
|
29749
29617
|
|
|
29750
|
-
export type AdhocLine$MarkerPressEvent = Event<
|
|
29618
|
+
export type AdhocLine$MarkerPressEvent = Event<
|
|
29619
|
+
AdhocLine$MarkerPressEventParameters,
|
|
29620
|
+
AdhocLine
|
|
29621
|
+
>;
|
|
29751
29622
|
}
|
|
29752
29623
|
|
|
29753
29624
|
declare module "sap/gantt/simple/BaseCalendar" {
|
|
@@ -31071,15 +30942,24 @@ declare module "sap/gantt/simple/BaseDeltaRectangle" {
|
|
|
31071
30942
|
|
|
31072
30943
|
export interface BaseDeltaRectangle$MouseEnterEventParameters {}
|
|
31073
30944
|
|
|
31074
|
-
export type BaseDeltaRectangle$MouseEnterEvent = Event<
|
|
30945
|
+
export type BaseDeltaRectangle$MouseEnterEvent = Event<
|
|
30946
|
+
BaseDeltaRectangle$MouseEnterEventParameters,
|
|
30947
|
+
BaseDeltaRectangle
|
|
30948
|
+
>;
|
|
31075
30949
|
|
|
31076
30950
|
export interface BaseDeltaRectangle$MouseLeaveEventParameters {}
|
|
31077
30951
|
|
|
31078
|
-
export type BaseDeltaRectangle$MouseLeaveEvent = Event<
|
|
30952
|
+
export type BaseDeltaRectangle$MouseLeaveEvent = Event<
|
|
30953
|
+
BaseDeltaRectangle$MouseLeaveEventParameters,
|
|
30954
|
+
BaseDeltaRectangle
|
|
30955
|
+
>;
|
|
31079
30956
|
|
|
31080
30957
|
export interface BaseDeltaRectangle$PressEventParameters {}
|
|
31081
30958
|
|
|
31082
|
-
export type BaseDeltaRectangle$PressEvent = Event<
|
|
30959
|
+
export type BaseDeltaRectangle$PressEvent = Event<
|
|
30960
|
+
BaseDeltaRectangle$PressEventParameters,
|
|
30961
|
+
BaseDeltaRectangle
|
|
30962
|
+
>;
|
|
31083
30963
|
}
|
|
31084
30964
|
|
|
31085
30965
|
declare module "sap/gantt/simple/BaseDiamond" {
|
|
@@ -34039,28 +33919,6 @@ declare module "sap/gantt/simple/BaseText" {
|
|
|
34039
33919
|
* @returns Metadata object describing this class
|
|
34040
33920
|
*/
|
|
34041
33921
|
static getMetadata(): ElementMetadata;
|
|
34042
|
-
/**
|
|
34043
|
-
* @since 1.96
|
|
34044
|
-
*
|
|
34045
|
-
* Gets current value of property {@link #get_shapeCropped _shapeCropped}.
|
|
34046
|
-
*
|
|
34047
|
-
* property to check if shape is cropped by the visible horizon
|
|
34048
|
-
*
|
|
34049
|
-
* Default value is `false`.
|
|
34050
|
-
*
|
|
34051
|
-
* @returns Value of property `_shapeCropped`
|
|
34052
|
-
*/
|
|
34053
|
-
get_shapeCropped(): boolean;
|
|
34054
|
-
/**
|
|
34055
|
-
* @since 1.96
|
|
34056
|
-
*
|
|
34057
|
-
* Gets current value of property {@link #get_xBiassed _xBiassed}.
|
|
34058
|
-
*
|
|
34059
|
-
* xBaised value to be added to cropped shape when horizontalTextAligment is set to "Dynamic"
|
|
34060
|
-
*
|
|
34061
|
-
* @returns Value of property `_xBiassed`
|
|
34062
|
-
*/
|
|
34063
|
-
get_xBiassed(): float;
|
|
34064
33922
|
/**
|
|
34065
33923
|
* Gets current value of property {@link #getFontFamily fontFamily}.
|
|
34066
33924
|
*
|
|
@@ -34173,42 +34031,6 @@ declare module "sap/gantt/simple/BaseText" {
|
|
|
34173
34031
|
*/
|
|
34174
34032
|
oElement: BaseText
|
|
34175
34033
|
): void;
|
|
34176
|
-
/**
|
|
34177
|
-
* @since 1.96
|
|
34178
|
-
*
|
|
34179
|
-
* Sets a new value for property {@link #get_shapeCropped _shapeCropped}.
|
|
34180
|
-
*
|
|
34181
|
-
* property to check if shape is cropped by the visible horizon
|
|
34182
|
-
*
|
|
34183
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
34184
|
-
*
|
|
34185
|
-
* Default value is `false`.
|
|
34186
|
-
*
|
|
34187
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
34188
|
-
*/
|
|
34189
|
-
set_shapeCropped(
|
|
34190
|
-
/**
|
|
34191
|
-
* New value for property `_shapeCropped`
|
|
34192
|
-
*/
|
|
34193
|
-
b_shapeCropped?: boolean
|
|
34194
|
-
): this;
|
|
34195
|
-
/**
|
|
34196
|
-
* @since 1.96
|
|
34197
|
-
*
|
|
34198
|
-
* Sets a new value for property {@link #get_xBiassed _xBiassed}.
|
|
34199
|
-
*
|
|
34200
|
-
* xBaised value to be added to cropped shape when horizontalTextAligment is set to "Dynamic"
|
|
34201
|
-
*
|
|
34202
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
34203
|
-
*
|
|
34204
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
34205
|
-
*/
|
|
34206
|
-
set_xBiassed(
|
|
34207
|
-
/**
|
|
34208
|
-
* New value for property `_xBiassed`
|
|
34209
|
-
*/
|
|
34210
|
-
f_xBiassed: float
|
|
34211
|
-
): this;
|
|
34212
34034
|
/**
|
|
34213
34035
|
* Sets a new value for property {@link #getFontFamily fontFamily}.
|
|
34214
34036
|
*
|
|
@@ -34413,20 +34235,6 @@ declare module "sap/gantt/simple/BaseText" {
|
|
|
34413
34235
|
* basegroup.
|
|
34414
34236
|
*/
|
|
34415
34237
|
isLabel?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
34416
|
-
|
|
34417
|
-
/**
|
|
34418
|
-
* @since 1.96
|
|
34419
|
-
*
|
|
34420
|
-
* property to check if shape is cropped by the visible horizon
|
|
34421
|
-
*/
|
|
34422
|
-
_shapeCropped?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
34423
|
-
|
|
34424
|
-
/**
|
|
34425
|
-
* @since 1.96
|
|
34426
|
-
*
|
|
34427
|
-
* xBaised value to be added to cropped shape when horizontalTextAligment is set to "Dynamic"
|
|
34428
|
-
*/
|
|
34429
|
-
_xBiassed?: float | PropertyBindingInfo | `{${string}}`;
|
|
34430
34238
|
}
|
|
34431
34239
|
}
|
|
34432
34240
|
|
|
@@ -34888,15 +34696,24 @@ declare module "sap/gantt/simple/BaseTriangle" {
|
|
|
34888
34696
|
|
|
34889
34697
|
export interface BaseTriangle$MouseEnterEventParameters {}
|
|
34890
34698
|
|
|
34891
|
-
export type BaseTriangle$MouseEnterEvent = Event<
|
|
34699
|
+
export type BaseTriangle$MouseEnterEvent = Event<
|
|
34700
|
+
BaseTriangle$MouseEnterEventParameters,
|
|
34701
|
+
BaseTriangle
|
|
34702
|
+
>;
|
|
34892
34703
|
|
|
34893
34704
|
export interface BaseTriangle$MouseLeaveEventParameters {}
|
|
34894
34705
|
|
|
34895
|
-
export type BaseTriangle$MouseLeaveEvent = Event<
|
|
34706
|
+
export type BaseTriangle$MouseLeaveEvent = Event<
|
|
34707
|
+
BaseTriangle$MouseLeaveEventParameters,
|
|
34708
|
+
BaseTriangle
|
|
34709
|
+
>;
|
|
34896
34710
|
|
|
34897
34711
|
export interface BaseTriangle$PressEventParameters {}
|
|
34898
34712
|
|
|
34899
|
-
export type BaseTriangle$PressEvent = Event<
|
|
34713
|
+
export type BaseTriangle$PressEvent = Event<
|
|
34714
|
+
BaseTriangle$PressEventParameters,
|
|
34715
|
+
BaseTriangle
|
|
34716
|
+
>;
|
|
34900
34717
|
}
|
|
34901
34718
|
|
|
34902
34719
|
declare module "sap/gantt/simple/ContainerToolbar" {
|
|
@@ -36242,15 +36059,24 @@ declare module "sap/gantt/simple/ContainerToolbar" {
|
|
|
36242
36059
|
|
|
36243
36060
|
export interface ContainerToolbar$BirdEyeButtonPressEventParameters {}
|
|
36244
36061
|
|
|
36245
|
-
export type ContainerToolbar$BirdEyeButtonPressEvent = Event<
|
|
36062
|
+
export type ContainerToolbar$BirdEyeButtonPressEvent = Event<
|
|
36063
|
+
ContainerToolbar$BirdEyeButtonPressEventParameters,
|
|
36064
|
+
ContainerToolbar
|
|
36065
|
+
>;
|
|
36246
36066
|
|
|
36247
36067
|
export interface ContainerToolbar$CloseFindButtonPressEventParameters {}
|
|
36248
36068
|
|
|
36249
|
-
export type ContainerToolbar$CloseFindButtonPressEvent = Event<
|
|
36069
|
+
export type ContainerToolbar$CloseFindButtonPressEvent = Event<
|
|
36070
|
+
ContainerToolbar$CloseFindButtonPressEventParameters,
|
|
36071
|
+
ContainerToolbar
|
|
36072
|
+
>;
|
|
36250
36073
|
|
|
36251
36074
|
export interface ContainerToolbar$CloseSidePanelButtonPressEventParameters {}
|
|
36252
36075
|
|
|
36253
|
-
export type ContainerToolbar$CloseSidePanelButtonPressEvent = Event<
|
|
36076
|
+
export type ContainerToolbar$CloseSidePanelButtonPressEvent = Event<
|
|
36077
|
+
ContainerToolbar$CloseSidePanelButtonPressEventParameters,
|
|
36078
|
+
ContainerToolbar
|
|
36079
|
+
>;
|
|
36254
36080
|
|
|
36255
36081
|
export interface ContainerToolbar$DisplayTypeChangeEventParameters {
|
|
36256
36082
|
displayType?:
|
|
@@ -36258,21 +36084,33 @@ declare module "sap/gantt/simple/ContainerToolbar" {
|
|
|
36258
36084
|
| keyof typeof simple.GanttChartWithTableDisplayType;
|
|
36259
36085
|
}
|
|
36260
36086
|
|
|
36261
|
-
export type ContainerToolbar$DisplayTypeChangeEvent = Event<
|
|
36087
|
+
export type ContainerToolbar$DisplayTypeChangeEvent = Event<
|
|
36088
|
+
ContainerToolbar$DisplayTypeChangeEventParameters,
|
|
36089
|
+
ContainerToolbar
|
|
36090
|
+
>;
|
|
36262
36091
|
|
|
36263
36092
|
export interface ContainerToolbar$FindButtonPressEventParameters {}
|
|
36264
36093
|
|
|
36265
|
-
export type ContainerToolbar$FindButtonPressEvent = Event<
|
|
36094
|
+
export type ContainerToolbar$FindButtonPressEvent = Event<
|
|
36095
|
+
ContainerToolbar$FindButtonPressEventParameters,
|
|
36096
|
+
ContainerToolbar
|
|
36097
|
+
>;
|
|
36266
36098
|
|
|
36267
36099
|
export interface ContainerToolbar$FindPopupButtonPressEventParameters {}
|
|
36268
36100
|
|
|
36269
|
-
export type ContainerToolbar$FindPopupButtonPressEvent = Event<
|
|
36101
|
+
export type ContainerToolbar$FindPopupButtonPressEvent = Event<
|
|
36102
|
+
ContainerToolbar$FindPopupButtonPressEventParameters,
|
|
36103
|
+
ContainerToolbar
|
|
36104
|
+
>;
|
|
36270
36105
|
|
|
36271
36106
|
export interface ContainerToolbar$GanttSidePanelEventParameters {
|
|
36272
36107
|
updateSidePanelState?: object;
|
|
36273
36108
|
}
|
|
36274
36109
|
|
|
36275
|
-
export type ContainerToolbar$GanttSidePanelEvent = Event<
|
|
36110
|
+
export type ContainerToolbar$GanttSidePanelEvent = Event<
|
|
36111
|
+
ContainerToolbar$GanttSidePanelEventParameters,
|
|
36112
|
+
ContainerToolbar
|
|
36113
|
+
>;
|
|
36276
36114
|
|
|
36277
36115
|
export interface ContainerToolbar$ZoomStopChangeEventParameters {
|
|
36278
36116
|
index?: int;
|
|
@@ -36280,7 +36118,10 @@ declare module "sap/gantt/simple/ContainerToolbar" {
|
|
|
36280
36118
|
selectedItem?: Item;
|
|
36281
36119
|
}
|
|
36282
36120
|
|
|
36283
|
-
export type ContainerToolbar$ZoomStopChangeEvent = Event<
|
|
36121
|
+
export type ContainerToolbar$ZoomStopChangeEvent = Event<
|
|
36122
|
+
ContainerToolbar$ZoomStopChangeEventParameters,
|
|
36123
|
+
ContainerToolbar
|
|
36124
|
+
>;
|
|
36284
36125
|
}
|
|
36285
36126
|
|
|
36286
36127
|
declare module "sap/gantt/simple/ContainerToolbarPlaceholder" {
|
|
@@ -36363,28 +36204,6 @@ declare module "sap/gantt/simple/ContainerToolbarPlaceholder" {
|
|
|
36363
36204
|
* @returns Metadata object describing this class
|
|
36364
36205
|
*/
|
|
36365
36206
|
static getMetadata(): ElementMetadata;
|
|
36366
|
-
/**
|
|
36367
|
-
* Destroys the _control in the aggregation {@link #get_control _control}.
|
|
36368
|
-
*
|
|
36369
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
36370
|
-
*/
|
|
36371
|
-
destroy_control(): this;
|
|
36372
|
-
/**
|
|
36373
|
-
* Gets content of aggregation {@link #get_control _control}.
|
|
36374
|
-
*
|
|
36375
|
-
* Represented control.
|
|
36376
|
-
*/
|
|
36377
|
-
get_control(): Control;
|
|
36378
|
-
/**
|
|
36379
|
-
* Gets current value of property {@link #get_show _show}.
|
|
36380
|
-
*
|
|
36381
|
-
* Shows or hides the represented control.
|
|
36382
|
-
*
|
|
36383
|
-
* Default value is `false`.
|
|
36384
|
-
*
|
|
36385
|
-
* @returns Value of property `_show`
|
|
36386
|
-
*/
|
|
36387
|
-
get_show(): boolean;
|
|
36388
36207
|
/**
|
|
36389
36208
|
* Enables the `sap.m.ContainerToolbarPlaceholder` to move inside the {@link sap.m.OverflowToolbar}. Required
|
|
36390
36209
|
* by the {@link sap.m.IOverflowToolbarContent} interface.
|
|
@@ -36402,34 +36221,6 @@ declare module "sap/gantt/simple/ContainerToolbarPlaceholder" {
|
|
|
36402
36221
|
getType():
|
|
36403
36222
|
| simple.ContainerToolbarPlaceholderType
|
|
36404
36223
|
| keyof typeof simple.ContainerToolbarPlaceholderType;
|
|
36405
|
-
/**
|
|
36406
|
-
* Sets the aggregated {@link #get_control _control}.
|
|
36407
|
-
*
|
|
36408
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
36409
|
-
*/
|
|
36410
|
-
set_control(
|
|
36411
|
-
/**
|
|
36412
|
-
* The _control to set
|
|
36413
|
-
*/
|
|
36414
|
-
o_control: Control
|
|
36415
|
-
): this;
|
|
36416
|
-
/**
|
|
36417
|
-
* Sets a new value for property {@link #get_show _show}.
|
|
36418
|
-
*
|
|
36419
|
-
* Shows or hides the represented control.
|
|
36420
|
-
*
|
|
36421
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
36422
|
-
*
|
|
36423
|
-
* Default value is `false`.
|
|
36424
|
-
*
|
|
36425
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
36426
|
-
*/
|
|
36427
|
-
set_show(
|
|
36428
|
-
/**
|
|
36429
|
-
* New value for property `_show`
|
|
36430
|
-
*/
|
|
36431
|
-
b_show?: boolean
|
|
36432
|
-
): this;
|
|
36433
36224
|
/**
|
|
36434
36225
|
* Sets a new value for property {@link #getType type}.
|
|
36435
36226
|
*
|
|
@@ -36461,24 +36252,12 @@ declare module "sap/gantt/simple/ContainerToolbarPlaceholder" {
|
|
|
36461
36252
|
)
|
|
36462
36253
|
| PropertyBindingInfo
|
|
36463
36254
|
| `{${string}}`;
|
|
36464
|
-
|
|
36465
|
-
/**
|
|
36466
|
-
* Shows or hides the represented control.
|
|
36467
|
-
*/
|
|
36468
|
-
_show?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
36469
|
-
|
|
36470
|
-
/**
|
|
36471
|
-
* Represented control.
|
|
36472
|
-
*/
|
|
36473
|
-
_control?: Control;
|
|
36474
36255
|
}
|
|
36475
36256
|
}
|
|
36476
36257
|
|
|
36477
36258
|
declare module "sap/gantt/simple/CustomVariantHandler" {
|
|
36478
36259
|
import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
|
|
36479
36260
|
|
|
36480
|
-
import Event from "sap/ui/base/Event";
|
|
36481
|
-
|
|
36482
36261
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
36483
36262
|
|
|
36484
36263
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
@@ -36547,93 +36326,6 @@ declare module "sap/gantt/simple/CustomVariantHandler" {
|
|
|
36547
36326
|
* @returns Metadata object describing this class
|
|
36548
36327
|
*/
|
|
36549
36328
|
static getMetadata(): ElementMetadata;
|
|
36550
|
-
/**
|
|
36551
|
-
* @since 1.88
|
|
36552
|
-
*
|
|
36553
|
-
* Attaches event handler `fnFunction` to the {@link #event:setDataComplete setDataComplete} event of this
|
|
36554
|
-
* `sap.gantt.simple.CustomVariantHandler`.
|
|
36555
|
-
*
|
|
36556
|
-
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
36557
|
-
* otherwise it will be bound to this `sap.gantt.simple.CustomVariantHandler` itself.
|
|
36558
|
-
*
|
|
36559
|
-
* The event is triggered when custom variant data is set to update gantt chart with table
|
|
36560
|
-
*
|
|
36561
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
36562
|
-
*/
|
|
36563
|
-
attachSetDataComplete(
|
|
36564
|
-
/**
|
|
36565
|
-
* An application-specific payload object that will be passed to the event handler along with the event
|
|
36566
|
-
* object when firing the event
|
|
36567
|
-
*/
|
|
36568
|
-
oData: object,
|
|
36569
|
-
/**
|
|
36570
|
-
* The function to be called when the event occurs
|
|
36571
|
-
*/
|
|
36572
|
-
fnFunction: (p1: Event) => void,
|
|
36573
|
-
/**
|
|
36574
|
-
* Context object to call the event handler with. Defaults to this `sap.gantt.simple.CustomVariantHandler`
|
|
36575
|
-
* itself
|
|
36576
|
-
*/
|
|
36577
|
-
oListener?: object
|
|
36578
|
-
): this;
|
|
36579
|
-
/**
|
|
36580
|
-
* @since 1.88
|
|
36581
|
-
*
|
|
36582
|
-
* Attaches event handler `fnFunction` to the {@link #event:setDataComplete setDataComplete} event of this
|
|
36583
|
-
* `sap.gantt.simple.CustomVariantHandler`.
|
|
36584
|
-
*
|
|
36585
|
-
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
36586
|
-
* otherwise it will be bound to this `sap.gantt.simple.CustomVariantHandler` itself.
|
|
36587
|
-
*
|
|
36588
|
-
* The event is triggered when custom variant data is set to update gantt chart with table
|
|
36589
|
-
*
|
|
36590
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
36591
|
-
*/
|
|
36592
|
-
attachSetDataComplete(
|
|
36593
|
-
/**
|
|
36594
|
-
* The function to be called when the event occurs
|
|
36595
|
-
*/
|
|
36596
|
-
fnFunction: (p1: Event) => void,
|
|
36597
|
-
/**
|
|
36598
|
-
* Context object to call the event handler with. Defaults to this `sap.gantt.simple.CustomVariantHandler`
|
|
36599
|
-
* itself
|
|
36600
|
-
*/
|
|
36601
|
-
oListener?: object
|
|
36602
|
-
): this;
|
|
36603
|
-
/**
|
|
36604
|
-
* @since 1.88
|
|
36605
|
-
*
|
|
36606
|
-
* Detaches event handler `fnFunction` from the {@link #event:setDataComplete setDataComplete} event of
|
|
36607
|
-
* this `sap.gantt.simple.CustomVariantHandler`.
|
|
36608
|
-
*
|
|
36609
|
-
* The passed function and listener object must match the ones used for event registration.
|
|
36610
|
-
*
|
|
36611
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
36612
|
-
*/
|
|
36613
|
-
detachSetDataComplete(
|
|
36614
|
-
/**
|
|
36615
|
-
* The function to be called, when the event occurs
|
|
36616
|
-
*/
|
|
36617
|
-
fnFunction: (p1: Event) => void,
|
|
36618
|
-
/**
|
|
36619
|
-
* Context object on which the given function had to be called
|
|
36620
|
-
*/
|
|
36621
|
-
oListener?: object
|
|
36622
|
-
): this;
|
|
36623
|
-
/**
|
|
36624
|
-
* @since 1.88
|
|
36625
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
36626
|
-
*
|
|
36627
|
-
* Fires event {@link #event:setDataComplete setDataComplete} to attached listeners.
|
|
36628
|
-
*
|
|
36629
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
36630
|
-
*/
|
|
36631
|
-
fireSetDataComplete(
|
|
36632
|
-
/**
|
|
36633
|
-
* Parameters to pass along with the event
|
|
36634
|
-
*/
|
|
36635
|
-
mParameters?: object
|
|
36636
|
-
): this;
|
|
36637
36329
|
/**
|
|
36638
36330
|
* Gets current value of property {@link #getData data}.
|
|
36639
36331
|
*
|
|
@@ -36682,18 +36374,7 @@ declare module "sap/gantt/simple/CustomVariantHandler" {
|
|
|
36682
36374
|
data?: object | PropertyBindingInfo | `{${string}}`;
|
|
36683
36375
|
|
|
36684
36376
|
dependantControlID?: string[] | PropertyBindingInfo | `{${string}}`;
|
|
36685
|
-
|
|
36686
|
-
/**
|
|
36687
|
-
* @since 1.88
|
|
36688
|
-
*
|
|
36689
|
-
* The event is triggered when custom variant data is set to update gantt chart with table
|
|
36690
|
-
*/
|
|
36691
|
-
setDataComplete?: (oEvent: Event) => void;
|
|
36692
36377
|
}
|
|
36693
|
-
|
|
36694
|
-
export interface CustomVariantHandler$SetDataCompleteEventParameters {}
|
|
36695
|
-
|
|
36696
|
-
export type CustomVariantHandler$SetDataCompleteEvent = Event<CustomVariantHandler$SetDataCompleteEventParameters>;
|
|
36697
36378
|
}
|
|
36698
36379
|
|
|
36699
36380
|
declare module "sap/gantt/simple/DeltaLine" {
|
|
@@ -36701,12 +36382,6 @@ declare module "sap/gantt/simple/DeltaLine" {
|
|
|
36701
36382
|
|
|
36702
36383
|
import Event from "sap/ui/base/Event";
|
|
36703
36384
|
|
|
36704
|
-
import BaseTriangle from "sap/gantt/simple/BaseTriangle";
|
|
36705
|
-
|
|
36706
|
-
import BaseDeltaRectangle from "sap/gantt/simple/BaseDeltaRectangle";
|
|
36707
|
-
|
|
36708
|
-
import BaseLine from "sap/gantt/simple/BaseLine";
|
|
36709
|
-
|
|
36710
36385
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
36711
36386
|
|
|
36712
36387
|
import { ValueSVGPaintServer } from "sap/gantt/library";
|
|
@@ -36986,54 +36661,6 @@ declare module "sap/gantt/simple/DeltaLine" {
|
|
|
36986
36661
|
*/
|
|
36987
36662
|
oListener?: object
|
|
36988
36663
|
): this;
|
|
36989
|
-
/**
|
|
36990
|
-
* Destroys the _backwardMarker in the aggregation {@link #get_backwardMarker _backwardMarker}.
|
|
36991
|
-
*
|
|
36992
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
36993
|
-
*/
|
|
36994
|
-
destroy_backwardMarker(): this;
|
|
36995
|
-
/**
|
|
36996
|
-
* Destroys the _chartDeltaArea in the aggregation {@link #get_chartDeltaArea _chartDeltaArea}.
|
|
36997
|
-
*
|
|
36998
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
36999
|
-
*/
|
|
37000
|
-
destroy_chartDeltaArea(): this;
|
|
37001
|
-
/**
|
|
37002
|
-
* Destroys the _endLine in the aggregation {@link #get_endLine _endLine}.
|
|
37003
|
-
*
|
|
37004
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
37005
|
-
*/
|
|
37006
|
-
destroy_endLine(): this;
|
|
37007
|
-
/**
|
|
37008
|
-
* Destroys the _forwardMarker in the aggregation {@link #get_forwardMarker _forwardMarker}.
|
|
37009
|
-
*
|
|
37010
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
37011
|
-
*/
|
|
37012
|
-
destroy_forwardMarker(): this;
|
|
37013
|
-
/**
|
|
37014
|
-
* Destroys the _headerDeltaArea in the aggregation {@link #get_headerDeltaArea _headerDeltaArea}.
|
|
37015
|
-
*
|
|
37016
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
37017
|
-
*/
|
|
37018
|
-
destroy_headerDeltaArea(): this;
|
|
37019
|
-
/**
|
|
37020
|
-
* Destroys the _headerEndLine in the aggregation {@link #get_headerEndLine _headerEndLine}.
|
|
37021
|
-
*
|
|
37022
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
37023
|
-
*/
|
|
37024
|
-
destroy_headerEndLine(): this;
|
|
37025
|
-
/**
|
|
37026
|
-
* Destroys the _headerStartLine in the aggregation {@link #get_headerStartLine _headerStartLine}.
|
|
37027
|
-
*
|
|
37028
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
37029
|
-
*/
|
|
37030
|
-
destroy_headerStartLine(): this;
|
|
37031
|
-
/**
|
|
37032
|
-
* Destroys the _startLine in the aggregation {@link #get_startLine _startLine}.
|
|
37033
|
-
*
|
|
37034
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
37035
|
-
*/
|
|
37036
|
-
destroy_startLine(): this;
|
|
37037
36664
|
/**
|
|
37038
36665
|
* @since 1.88
|
|
37039
36666
|
*
|
|
@@ -37192,104 +36819,6 @@ declare module "sap/gantt/simple/DeltaLine" {
|
|
|
37192
36819
|
*/
|
|
37193
36820
|
mParameters?: object
|
|
37194
36821
|
): this;
|
|
37195
|
-
/**
|
|
37196
|
-
* Gets content of aggregation {@link #get_backwardMarker _backwardMarker}.
|
|
37197
|
-
*
|
|
37198
|
-
* Backward Delta Marker
|
|
37199
|
-
*/
|
|
37200
|
-
get_backwardMarker(): BaseTriangle;
|
|
37201
|
-
/**
|
|
37202
|
-
* Gets content of aggregation {@link #get_chartDeltaArea _chartDeltaArea}.
|
|
37203
|
-
*
|
|
37204
|
-
* Chart area between Delta Lines
|
|
37205
|
-
*/
|
|
37206
|
-
get_chartDeltaArea(): BaseDeltaRectangle;
|
|
37207
|
-
/**
|
|
37208
|
-
* Gets current value of property {@link #get_enableChartDeltaAreaHighlight _enableChartDeltaAreaHighlight}.
|
|
37209
|
-
*
|
|
37210
|
-
* Background area between Delta Lines
|
|
37211
|
-
*
|
|
37212
|
-
* Default value is `true`.
|
|
37213
|
-
*
|
|
37214
|
-
* @returns Value of property `_enableChartDeltaAreaHighlight`
|
|
37215
|
-
*/
|
|
37216
|
-
get_enableChartDeltaAreaHighlight(): boolean;
|
|
37217
|
-
/**
|
|
37218
|
-
* Gets content of aggregation {@link #get_endLine _endLine}.
|
|
37219
|
-
*
|
|
37220
|
-
* End line of the Delta Line
|
|
37221
|
-
*/
|
|
37222
|
-
get_endLine(): BaseLine;
|
|
37223
|
-
/**
|
|
37224
|
-
* Gets content of aggregation {@link #get_forwardMarker _forwardMarker}.
|
|
37225
|
-
*
|
|
37226
|
-
* Forward Delta Marker
|
|
37227
|
-
*/
|
|
37228
|
-
get_forwardMarker(): BaseTriangle;
|
|
37229
|
-
/**
|
|
37230
|
-
* Gets content of aggregation {@link #get_headerDeltaArea _headerDeltaArea}.
|
|
37231
|
-
*
|
|
37232
|
-
* Header area between the Delta Markers
|
|
37233
|
-
*/
|
|
37234
|
-
get_headerDeltaArea(): BaseDeltaRectangle;
|
|
37235
|
-
/**
|
|
37236
|
-
* Gets content of aggregation {@link #get_headerEndLine _headerEndLine}.
|
|
37237
|
-
*
|
|
37238
|
-
* Header end line
|
|
37239
|
-
*/
|
|
37240
|
-
get_headerEndLine(): BaseLine;
|
|
37241
|
-
/**
|
|
37242
|
-
* Gets content of aggregation {@link #get_headerStartLine _headerStartLine}.
|
|
37243
|
-
*
|
|
37244
|
-
* Header start line
|
|
37245
|
-
*/
|
|
37246
|
-
get_headerStartLine(): BaseLine;
|
|
37247
|
-
/**
|
|
37248
|
-
* Gets current value of property {@link #get_isSelected _isSelected}.
|
|
37249
|
-
*
|
|
37250
|
-
* Selection property of the Delta Markers
|
|
37251
|
-
*
|
|
37252
|
-
* Default value is `false`.
|
|
37253
|
-
*
|
|
37254
|
-
* @returns Value of property `_isSelected`
|
|
37255
|
-
*/
|
|
37256
|
-
get_isSelected(): boolean;
|
|
37257
|
-
/**
|
|
37258
|
-
* Gets current value of property {@link #get_level _level}.
|
|
37259
|
-
*
|
|
37260
|
-
* Level of markers in the header.
|
|
37261
|
-
*
|
|
37262
|
-
* Default value is `1`.
|
|
37263
|
-
*
|
|
37264
|
-
* @returns Value of property `_level`
|
|
37265
|
-
*/
|
|
37266
|
-
get_level(): int;
|
|
37267
|
-
/**
|
|
37268
|
-
* Gets content of aggregation {@link #get_startLine _startLine}.
|
|
37269
|
-
*
|
|
37270
|
-
* Start line of the Delta Line
|
|
37271
|
-
*/
|
|
37272
|
-
get_startLine(): BaseLine;
|
|
37273
|
-
/**
|
|
37274
|
-
* Gets current value of property {@link #get_strokeWidth _strokeWidth}.
|
|
37275
|
-
*
|
|
37276
|
-
* Standard SVG 'stroke-width' attribute.
|
|
37277
|
-
*
|
|
37278
|
-
* Default value is `1`.
|
|
37279
|
-
*
|
|
37280
|
-
* @returns Value of property `_strokeWidth`
|
|
37281
|
-
*/
|
|
37282
|
-
get_strokeWidth(): float;
|
|
37283
|
-
/**
|
|
37284
|
-
* Gets current value of property {@link #get_visibleMarker _visibleMarker}.
|
|
37285
|
-
*
|
|
37286
|
-
* Visibility of the Delta Markers
|
|
37287
|
-
*
|
|
37288
|
-
* Default value is `false`.
|
|
37289
|
-
*
|
|
37290
|
-
* @returns Value of property `_visibleMarker`
|
|
37291
|
-
*/
|
|
37292
|
-
get_visibleMarker(): boolean;
|
|
37293
36822
|
/**
|
|
37294
36823
|
* Gets current value of property {@link #getDescription description}.
|
|
37295
36824
|
*
|
|
@@ -37400,179 +36929,6 @@ declare module "sap/gantt/simple/DeltaLine" {
|
|
|
37400
36929
|
* @returns Value of property `visibleDeltaStartEndLines`
|
|
37401
36930
|
*/
|
|
37402
36931
|
getVisibleDeltaStartEndLines(): boolean;
|
|
37403
|
-
/**
|
|
37404
|
-
* Sets the aggregated {@link #get_backwardMarker _backwardMarker}.
|
|
37405
|
-
*
|
|
37406
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
37407
|
-
*/
|
|
37408
|
-
set_backwardMarker(
|
|
37409
|
-
/**
|
|
37410
|
-
* The _backwardMarker to set
|
|
37411
|
-
*/
|
|
37412
|
-
o_backwardMarker: BaseTriangle
|
|
37413
|
-
): this;
|
|
37414
|
-
/**
|
|
37415
|
-
* Sets the aggregated {@link #get_chartDeltaArea _chartDeltaArea}.
|
|
37416
|
-
*
|
|
37417
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
37418
|
-
*/
|
|
37419
|
-
set_chartDeltaArea(
|
|
37420
|
-
/**
|
|
37421
|
-
* The _chartDeltaArea to set
|
|
37422
|
-
*/
|
|
37423
|
-
o_chartDeltaArea: BaseDeltaRectangle
|
|
37424
|
-
): this;
|
|
37425
|
-
/**
|
|
37426
|
-
* Sets a new value for property {@link #get_enableChartDeltaAreaHighlight _enableChartDeltaAreaHighlight}.
|
|
37427
|
-
*
|
|
37428
|
-
* Background area between Delta Lines
|
|
37429
|
-
*
|
|
37430
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
37431
|
-
*
|
|
37432
|
-
* Default value is `true`.
|
|
37433
|
-
*
|
|
37434
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
37435
|
-
*/
|
|
37436
|
-
set_enableChartDeltaAreaHighlight(
|
|
37437
|
-
/**
|
|
37438
|
-
* New value for property `_enableChartDeltaAreaHighlight`
|
|
37439
|
-
*/
|
|
37440
|
-
b_enableChartDeltaAreaHighlight?: boolean
|
|
37441
|
-
): this;
|
|
37442
|
-
/**
|
|
37443
|
-
* Sets the aggregated {@link #get_endLine _endLine}.
|
|
37444
|
-
*
|
|
37445
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
37446
|
-
*/
|
|
37447
|
-
set_endLine(
|
|
37448
|
-
/**
|
|
37449
|
-
* The _endLine to set
|
|
37450
|
-
*/
|
|
37451
|
-
o_endLine: BaseLine
|
|
37452
|
-
): this;
|
|
37453
|
-
/**
|
|
37454
|
-
* Sets the aggregated {@link #get_forwardMarker _forwardMarker}.
|
|
37455
|
-
*
|
|
37456
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
37457
|
-
*/
|
|
37458
|
-
set_forwardMarker(
|
|
37459
|
-
/**
|
|
37460
|
-
* The _forwardMarker to set
|
|
37461
|
-
*/
|
|
37462
|
-
o_forwardMarker: BaseTriangle
|
|
37463
|
-
): this;
|
|
37464
|
-
/**
|
|
37465
|
-
* Sets the aggregated {@link #get_headerDeltaArea _headerDeltaArea}.
|
|
37466
|
-
*
|
|
37467
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
37468
|
-
*/
|
|
37469
|
-
set_headerDeltaArea(
|
|
37470
|
-
/**
|
|
37471
|
-
* The _headerDeltaArea to set
|
|
37472
|
-
*/
|
|
37473
|
-
o_headerDeltaArea: BaseDeltaRectangle
|
|
37474
|
-
): this;
|
|
37475
|
-
/**
|
|
37476
|
-
* Sets the aggregated {@link #get_headerEndLine _headerEndLine}.
|
|
37477
|
-
*
|
|
37478
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
37479
|
-
*/
|
|
37480
|
-
set_headerEndLine(
|
|
37481
|
-
/**
|
|
37482
|
-
* The _headerEndLine to set
|
|
37483
|
-
*/
|
|
37484
|
-
o_headerEndLine: BaseLine
|
|
37485
|
-
): this;
|
|
37486
|
-
/**
|
|
37487
|
-
* Sets the aggregated {@link #get_headerStartLine _headerStartLine}.
|
|
37488
|
-
*
|
|
37489
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
37490
|
-
*/
|
|
37491
|
-
set_headerStartLine(
|
|
37492
|
-
/**
|
|
37493
|
-
* The _headerStartLine to set
|
|
37494
|
-
*/
|
|
37495
|
-
o_headerStartLine: BaseLine
|
|
37496
|
-
): this;
|
|
37497
|
-
/**
|
|
37498
|
-
* Sets a new value for property {@link #get_isSelected _isSelected}.
|
|
37499
|
-
*
|
|
37500
|
-
* Selection property of the Delta Markers
|
|
37501
|
-
*
|
|
37502
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
37503
|
-
*
|
|
37504
|
-
* Default value is `false`.
|
|
37505
|
-
*
|
|
37506
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
37507
|
-
*/
|
|
37508
|
-
set_isSelected(
|
|
37509
|
-
/**
|
|
37510
|
-
* New value for property `_isSelected`
|
|
37511
|
-
*/
|
|
37512
|
-
b_isSelected?: boolean
|
|
37513
|
-
): this;
|
|
37514
|
-
/**
|
|
37515
|
-
* Sets a new value for property {@link #get_level _level}.
|
|
37516
|
-
*
|
|
37517
|
-
* Level of markers in the header.
|
|
37518
|
-
*
|
|
37519
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
37520
|
-
*
|
|
37521
|
-
* Default value is `1`.
|
|
37522
|
-
*
|
|
37523
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
37524
|
-
*/
|
|
37525
|
-
set_level(
|
|
37526
|
-
/**
|
|
37527
|
-
* New value for property `_level`
|
|
37528
|
-
*/
|
|
37529
|
-
i_level?: int
|
|
37530
|
-
): this;
|
|
37531
|
-
/**
|
|
37532
|
-
* Sets the aggregated {@link #get_startLine _startLine}.
|
|
37533
|
-
*
|
|
37534
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
37535
|
-
*/
|
|
37536
|
-
set_startLine(
|
|
37537
|
-
/**
|
|
37538
|
-
* The _startLine to set
|
|
37539
|
-
*/
|
|
37540
|
-
o_startLine: BaseLine
|
|
37541
|
-
): this;
|
|
37542
|
-
/**
|
|
37543
|
-
* Sets a new value for property {@link #get_strokeWidth _strokeWidth}.
|
|
37544
|
-
*
|
|
37545
|
-
* Standard SVG 'stroke-width' attribute.
|
|
37546
|
-
*
|
|
37547
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
37548
|
-
*
|
|
37549
|
-
* Default value is `1`.
|
|
37550
|
-
*
|
|
37551
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
37552
|
-
*/
|
|
37553
|
-
set_strokeWidth(
|
|
37554
|
-
/**
|
|
37555
|
-
* New value for property `_strokeWidth`
|
|
37556
|
-
*/
|
|
37557
|
-
f_strokeWidth?: float
|
|
37558
|
-
): this;
|
|
37559
|
-
/**
|
|
37560
|
-
* Sets a new value for property {@link #get_visibleMarker _visibleMarker}.
|
|
37561
|
-
*
|
|
37562
|
-
* Visibility of the Delta Markers
|
|
37563
|
-
*
|
|
37564
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
37565
|
-
*
|
|
37566
|
-
* Default value is `false`.
|
|
37567
|
-
*
|
|
37568
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
37569
|
-
*/
|
|
37570
|
-
set_visibleMarker(
|
|
37571
|
-
/**
|
|
37572
|
-
* New value for property `_visibleMarker`
|
|
37573
|
-
*/
|
|
37574
|
-
b_visibleMarker?: boolean
|
|
37575
|
-
): this;
|
|
37576
36932
|
/**
|
|
37577
36933
|
* Sets a new value for property {@link #getDescription description}.
|
|
37578
36934
|
*
|
|
@@ -37770,11 +37126,6 @@ declare module "sap/gantt/simple/DeltaLine" {
|
|
|
37770
37126
|
*/
|
|
37771
37127
|
stroke?: ValueSVGPaintServer | PropertyBindingInfo | `{${string}}`;
|
|
37772
37128
|
|
|
37773
|
-
/**
|
|
37774
|
-
* Standard SVG 'stroke-width' attribute.
|
|
37775
|
-
*/
|
|
37776
|
-
_strokeWidth?: float | PropertyBindingInfo | `{${string}}`;
|
|
37777
|
-
|
|
37778
37129
|
/**
|
|
37779
37130
|
* Standard SVG 'stroke-dasharray' attribute.
|
|
37780
37131
|
*/
|
|
@@ -37833,69 +37184,6 @@ declare module "sap/gantt/simple/DeltaLine" {
|
|
|
37833
37184
|
*/
|
|
37834
37185
|
resizable?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
37835
37186
|
|
|
37836
|
-
/**
|
|
37837
|
-
* Background area between Delta Lines
|
|
37838
|
-
*/
|
|
37839
|
-
_enableChartDeltaAreaHighlight?:
|
|
37840
|
-
| boolean
|
|
37841
|
-
| PropertyBindingInfo
|
|
37842
|
-
| `{${string}}`;
|
|
37843
|
-
|
|
37844
|
-
/**
|
|
37845
|
-
* Selection property of the Delta Markers
|
|
37846
|
-
*/
|
|
37847
|
-
_isSelected?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
37848
|
-
|
|
37849
|
-
/**
|
|
37850
|
-
* Level of markers in the header.
|
|
37851
|
-
*/
|
|
37852
|
-
_level?: int | PropertyBindingInfo | `{${string}}`;
|
|
37853
|
-
|
|
37854
|
-
/**
|
|
37855
|
-
* Visibility of the Delta Markers
|
|
37856
|
-
*/
|
|
37857
|
-
_visibleMarker?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
37858
|
-
|
|
37859
|
-
/**
|
|
37860
|
-
* Start line of the Delta Line
|
|
37861
|
-
*/
|
|
37862
|
-
_startLine?: BaseLine;
|
|
37863
|
-
|
|
37864
|
-
/**
|
|
37865
|
-
* End line of the Delta Line
|
|
37866
|
-
*/
|
|
37867
|
-
_endLine?: BaseLine;
|
|
37868
|
-
|
|
37869
|
-
/**
|
|
37870
|
-
* Forward Delta Marker
|
|
37871
|
-
*/
|
|
37872
|
-
_forwardMarker?: BaseTriangle;
|
|
37873
|
-
|
|
37874
|
-
/**
|
|
37875
|
-
* Backward Delta Marker
|
|
37876
|
-
*/
|
|
37877
|
-
_backwardMarker?: BaseTriangle;
|
|
37878
|
-
|
|
37879
|
-
/**
|
|
37880
|
-
* Header area between the Delta Markers
|
|
37881
|
-
*/
|
|
37882
|
-
_headerDeltaArea?: BaseDeltaRectangle;
|
|
37883
|
-
|
|
37884
|
-
/**
|
|
37885
|
-
* Header start line
|
|
37886
|
-
*/
|
|
37887
|
-
_headerStartLine?: BaseLine;
|
|
37888
|
-
|
|
37889
|
-
/**
|
|
37890
|
-
* Header end line
|
|
37891
|
-
*/
|
|
37892
|
-
_headerEndLine?: BaseLine;
|
|
37893
|
-
|
|
37894
|
-
/**
|
|
37895
|
-
* Chart area between Delta Lines
|
|
37896
|
-
*/
|
|
37897
|
-
_chartDeltaArea?: BaseDeltaRectangle;
|
|
37898
|
-
|
|
37899
37187
|
press?: (oEvent: Event) => void;
|
|
37900
37188
|
|
|
37901
37189
|
mouseEnter?: (oEvent: Event) => void;
|
|
@@ -37927,7 +37215,10 @@ declare module "sap/gantt/simple/DeltaLine" {
|
|
|
37927
37215
|
oldEndTime?: string;
|
|
37928
37216
|
}
|
|
37929
37217
|
|
|
37930
|
-
export type DeltaLine$DeltalineDropEvent = Event<
|
|
37218
|
+
export type DeltaLine$DeltalineDropEvent = Event<
|
|
37219
|
+
DeltaLine$DeltalineDropEventParameters,
|
|
37220
|
+
DeltaLine
|
|
37221
|
+
>;
|
|
37931
37222
|
|
|
37932
37223
|
export interface DeltaLine$DeltalineResizeEventParameters {
|
|
37933
37224
|
newTimeStamp?: string;
|
|
@@ -37941,19 +37232,31 @@ declare module "sap/gantt/simple/DeltaLine" {
|
|
|
37941
37232
|
deltaline?: DeltaLine;
|
|
37942
37233
|
}
|
|
37943
37234
|
|
|
37944
|
-
export type DeltaLine$DeltalineResizeEvent = Event<
|
|
37235
|
+
export type DeltaLine$DeltalineResizeEvent = Event<
|
|
37236
|
+
DeltaLine$DeltalineResizeEventParameters,
|
|
37237
|
+
DeltaLine
|
|
37238
|
+
>;
|
|
37945
37239
|
|
|
37946
37240
|
export interface DeltaLine$MouseEnterEventParameters {}
|
|
37947
37241
|
|
|
37948
|
-
export type DeltaLine$MouseEnterEvent = Event<
|
|
37242
|
+
export type DeltaLine$MouseEnterEvent = Event<
|
|
37243
|
+
DeltaLine$MouseEnterEventParameters,
|
|
37244
|
+
DeltaLine
|
|
37245
|
+
>;
|
|
37949
37246
|
|
|
37950
37247
|
export interface DeltaLine$MouseLeaveEventParameters {}
|
|
37951
37248
|
|
|
37952
|
-
export type DeltaLine$MouseLeaveEvent = Event<
|
|
37249
|
+
export type DeltaLine$MouseLeaveEvent = Event<
|
|
37250
|
+
DeltaLine$MouseLeaveEventParameters,
|
|
37251
|
+
DeltaLine
|
|
37252
|
+
>;
|
|
37953
37253
|
|
|
37954
37254
|
export interface DeltaLine$PressEventParameters {}
|
|
37955
37255
|
|
|
37956
|
-
export type DeltaLine$PressEvent = Event<
|
|
37256
|
+
export type DeltaLine$PressEvent = Event<
|
|
37257
|
+
DeltaLine$PressEventParameters,
|
|
37258
|
+
DeltaLine
|
|
37259
|
+
>;
|
|
37957
37260
|
}
|
|
37958
37261
|
|
|
37959
37262
|
declare module "sap/gantt/simple/DimensionLegend" {
|
|
@@ -38786,18 +38089,6 @@ declare module "sap/gantt/simple/GanttChartContainer" {
|
|
|
38786
38089
|
*/
|
|
38787
38090
|
mParameters?: object
|
|
38788
38091
|
): this;
|
|
38789
|
-
/**
|
|
38790
|
-
* @since 1.91
|
|
38791
|
-
*
|
|
38792
|
-
* Gets current value of property {@link #get_enableRTA _enableRTA}.
|
|
38793
|
-
*
|
|
38794
|
-
* Flag to enable and disable RTA mode.
|
|
38795
|
-
*
|
|
38796
|
-
* Default value is `false`.
|
|
38797
|
-
*
|
|
38798
|
-
* @returns Value of property `_enableRTA`
|
|
38799
|
-
*/
|
|
38800
|
-
get_enableRTA(): boolean;
|
|
38801
38092
|
/**
|
|
38802
38093
|
* @experimental (since 1.106)
|
|
38803
38094
|
*
|
|
@@ -39006,18 +38297,6 @@ declare module "sap/gantt/simple/GanttChartContainer" {
|
|
|
39006
38297
|
* List of search results displayed on the side panel of Find and Select operation
|
|
39007
38298
|
*/
|
|
39008
38299
|
getSearchSidePanelList(): /* was: sap.tnt.NavigationList */ any;
|
|
39009
|
-
/**
|
|
39010
|
-
* @experimental (since 1.100)
|
|
39011
|
-
*
|
|
39012
|
-
* Gets current value of property {@link #getShowSearchSidePanel showSearchSidePanel}.
|
|
39013
|
-
*
|
|
39014
|
-
* Flag to enable and disable search side panel.
|
|
39015
|
-
*
|
|
39016
|
-
* Default value is `false`.
|
|
39017
|
-
*
|
|
39018
|
-
* @returns Value of property `showSearchSidePanel`
|
|
39019
|
-
*/
|
|
39020
|
-
getShowSearchSidePanel(): boolean;
|
|
39021
38300
|
/**
|
|
39022
38301
|
* Gets content of aggregation {@link #getStatusBar statusBar}.
|
|
39023
38302
|
*
|
|
@@ -39142,25 +38421,6 @@ declare module "sap/gantt/simple/GanttChartContainer" {
|
|
|
39142
38421
|
*/
|
|
39143
38422
|
vGanttChart: int | string | GanttChartWithTable
|
|
39144
38423
|
): GanttChartWithTable | null;
|
|
39145
|
-
/**
|
|
39146
|
-
* @since 1.91
|
|
39147
|
-
*
|
|
39148
|
-
* Sets a new value for property {@link #get_enableRTA _enableRTA}.
|
|
39149
|
-
*
|
|
39150
|
-
* Flag to enable and disable RTA mode.
|
|
39151
|
-
*
|
|
39152
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
39153
|
-
*
|
|
39154
|
-
* Default value is `false`.
|
|
39155
|
-
*
|
|
39156
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
39157
|
-
*/
|
|
39158
|
-
set_enableRTA(
|
|
39159
|
-
/**
|
|
39160
|
-
* New value for property `_enableRTA`
|
|
39161
|
-
*/
|
|
39162
|
-
b_enableRTA?: boolean
|
|
39163
|
-
): this;
|
|
39164
38424
|
/**
|
|
39165
38425
|
* @experimental (since 1.106)
|
|
39166
38426
|
*
|
|
@@ -39478,25 +38738,6 @@ declare module "sap/gantt/simple/GanttChartContainer" {
|
|
|
39478
38738
|
*/
|
|
39479
38739
|
oSearchSidePanelList: /* was: sap.tnt.NavigationList */ any
|
|
39480
38740
|
): this;
|
|
39481
|
-
/**
|
|
39482
|
-
* @experimental (since 1.100)
|
|
39483
|
-
*
|
|
39484
|
-
* Sets a new value for property {@link #getShowSearchSidePanel showSearchSidePanel}.
|
|
39485
|
-
*
|
|
39486
|
-
* Flag to enable and disable search side panel.
|
|
39487
|
-
*
|
|
39488
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
39489
|
-
*
|
|
39490
|
-
* Default value is `false`.
|
|
39491
|
-
*
|
|
39492
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
39493
|
-
*/
|
|
39494
|
-
setShowSearchSidePanel(
|
|
39495
|
-
/**
|
|
39496
|
-
* New value for property `showSearchSidePanel`
|
|
39497
|
-
*/
|
|
39498
|
-
bShowSearchSidePanel?: boolean
|
|
39499
|
-
): this;
|
|
39500
38741
|
/**
|
|
39501
38742
|
* Sets the aggregated {@link #getStatusBar statusBar}.
|
|
39502
38743
|
*
|
|
@@ -39756,20 +38997,6 @@ declare module "sap/gantt/simple/GanttChartContainer" {
|
|
|
39756
38997
|
*/
|
|
39757
38998
|
enableVariantManagement?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
39758
38999
|
|
|
39759
|
-
/**
|
|
39760
|
-
* @since 1.91
|
|
39761
|
-
*
|
|
39762
|
-
* Flag to enable and disable RTA mode.
|
|
39763
|
-
*/
|
|
39764
|
-
_enableRTA?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
39765
|
-
|
|
39766
|
-
/**
|
|
39767
|
-
* @experimental (since 1.100)
|
|
39768
|
-
*
|
|
39769
|
-
* Flag to enable and disable search side panel.
|
|
39770
|
-
*/
|
|
39771
|
-
showSearchSidePanel?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
39772
|
-
|
|
39773
39000
|
/**
|
|
39774
39001
|
* @experimental (since 1.106)
|
|
39775
39002
|
*
|
|
@@ -39884,7 +39111,10 @@ declare module "sap/gantt/simple/GanttChartContainer" {
|
|
|
39884
39111
|
searchResults?: any[];
|
|
39885
39112
|
}
|
|
39886
39113
|
|
|
39887
|
-
export type GanttChartContainer$CustomGanttSearchResultEvent = Event<
|
|
39114
|
+
export type GanttChartContainer$CustomGanttSearchResultEvent = Event<
|
|
39115
|
+
GanttChartContainer$CustomGanttSearchResultEventParameters,
|
|
39116
|
+
GanttChartContainer
|
|
39117
|
+
>;
|
|
39888
39118
|
|
|
39889
39119
|
export interface GanttChartContainer$CustomSettingChangeEventParameters {
|
|
39890
39120
|
/**
|
|
@@ -39898,7 +39128,10 @@ declare module "sap/gantt/simple/GanttChartContainer" {
|
|
|
39898
39128
|
value?: boolean;
|
|
39899
39129
|
}
|
|
39900
39130
|
|
|
39901
|
-
export type GanttChartContainer$CustomSettingChangeEvent = Event<
|
|
39131
|
+
export type GanttChartContainer$CustomSettingChangeEvent = Event<
|
|
39132
|
+
GanttChartContainer$CustomSettingChangeEventParameters,
|
|
39133
|
+
GanttChartContainer
|
|
39134
|
+
>;
|
|
39902
39135
|
|
|
39903
39136
|
export interface GanttChartContainer$GanttSearchSidePanelListEventParameters {
|
|
39904
39137
|
/**
|
|
@@ -39908,11 +39141,17 @@ declare module "sap/gantt/simple/GanttChartContainer" {
|
|
|
39908
39141
|
searchResults?: any[];
|
|
39909
39142
|
}
|
|
39910
39143
|
|
|
39911
|
-
export type GanttChartContainer$GanttSearchSidePanelListEvent = Event<
|
|
39144
|
+
export type GanttChartContainer$GanttSearchSidePanelListEvent = Event<
|
|
39145
|
+
GanttChartContainer$GanttSearchSidePanelListEventParameters,
|
|
39146
|
+
GanttChartContainer
|
|
39147
|
+
>;
|
|
39912
39148
|
|
|
39913
39149
|
export interface GanttChartContainer$VariantAppliedEventParameters {}
|
|
39914
39150
|
|
|
39915
|
-
export type GanttChartContainer$VariantAppliedEvent = Event<
|
|
39151
|
+
export type GanttChartContainer$VariantAppliedEvent = Event<
|
|
39152
|
+
GanttChartContainer$VariantAppliedEventParameters,
|
|
39153
|
+
GanttChartContainer
|
|
39154
|
+
>;
|
|
39916
39155
|
}
|
|
39917
39156
|
|
|
39918
39157
|
declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
@@ -39935,8 +39174,6 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
39935
39174
|
PropertyBindingInfo,
|
|
39936
39175
|
} from "sap/ui/base/ManagedObject";
|
|
39937
39176
|
|
|
39938
|
-
import SvgDefs from "sap/gantt/def/SvgDefs";
|
|
39939
|
-
|
|
39940
39177
|
import AxisTime from "sap/gantt/misc/AxisTime";
|
|
39941
39178
|
|
|
39942
39179
|
import AxisTimeStrategyBase from "sap/gantt/axistime/AxisTimeStrategyBase";
|
|
@@ -39959,6 +39196,8 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
39959
39196
|
|
|
39960
39197
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
39961
39198
|
|
|
39199
|
+
import SvgDefs from "sap/gantt/def/SvgDefs";
|
|
39200
|
+
|
|
39962
39201
|
import Table from "sap/ui/table/Table";
|
|
39963
39202
|
|
|
39964
39203
|
import LayoutData from "sap/ui/core/LayoutData";
|
|
@@ -40908,12 +40147,6 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
40908
40147
|
*/
|
|
40909
40148
|
aShapeUids: string[]
|
|
40910
40149
|
): this;
|
|
40911
|
-
/**
|
|
40912
|
-
* Destroys the _pseudoSvgDefs in the aggregation {@link #get_pseudoSvgDefs _pseudoSvgDefs}.
|
|
40913
|
-
*
|
|
40914
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
40915
|
-
*/
|
|
40916
|
-
destroy_pseudoSvgDefs(): this;
|
|
40917
40150
|
/**
|
|
40918
40151
|
* @deprecated (since 1.84) - use {@link sap.gantt.simple.AdhocLine} instead.
|
|
40919
40152
|
*
|
|
@@ -41528,24 +40761,6 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
41528
40761
|
* @returns return true if gantt chart is in fullscreen mode.
|
|
41529
40762
|
*/
|
|
41530
40763
|
fullScreenMode(): boolean;
|
|
41531
|
-
/**
|
|
41532
|
-
* @since 1.91
|
|
41533
|
-
*
|
|
41534
|
-
* Gets current value of property {@link #get_enableRTA _enableRTA}.
|
|
41535
|
-
*
|
|
41536
|
-
* Flag to enable and disable Runtime Adaptation (RTA) mode.
|
|
41537
|
-
*
|
|
41538
|
-
* Default value is `false`.
|
|
41539
|
-
*
|
|
41540
|
-
* @returns Value of property `_enableRTA`
|
|
41541
|
-
*/
|
|
41542
|
-
get_enableRTA(): boolean;
|
|
41543
|
-
/**
|
|
41544
|
-
* Gets content of aggregation {@link #get_pseudoSvgDefs _pseudoSvgDefs}.
|
|
41545
|
-
*
|
|
41546
|
-
* SVG reusable element definitions for pseudo shapes.
|
|
41547
|
-
*/
|
|
41548
|
-
get_pseudoSvgDefs(): SvgDefs;
|
|
41549
40764
|
/**
|
|
41550
40765
|
* Gets current value of property {@link #getAdhocLineLayer adhocLineLayer}.
|
|
41551
40766
|
*
|
|
@@ -41758,8 +40973,7 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
41758
40973
|
*/
|
|
41759
40974
|
getEnableCursorLine(): boolean;
|
|
41760
40975
|
/**
|
|
41761
|
-
* @since 1.115
|
|
41762
|
-
* @experimental
|
|
40976
|
+
* @experimental (since 1.115)
|
|
41763
40977
|
*
|
|
41764
40978
|
* Gets current value of property {@link #getEnableDateTimezoneFormatter enableDateTimezoneFormatter}.
|
|
41765
40979
|
*
|
|
@@ -41842,6 +41056,8 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
41842
41056
|
*/
|
|
41843
41057
|
getEnableNowLine(): boolean;
|
|
41844
41058
|
/**
|
|
41059
|
+
* @experimental (since 1.110)
|
|
41060
|
+
*
|
|
41845
41061
|
* Gets current value of property {@link #getEnablePseudoShapes enablePseudoShapes}.
|
|
41846
41062
|
*
|
|
41847
41063
|
* Optimizes the rendering of overlapping shapes
|
|
@@ -41944,7 +41160,7 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
41944
41160
|
*/
|
|
41945
41161
|
getHighlightedShapeUid(): Object[];
|
|
41946
41162
|
/**
|
|
41947
|
-
* @since 1.109
|
|
41163
|
+
* @experimental (since 1.109)
|
|
41948
41164
|
*
|
|
41949
41165
|
* Gets current value of property {@link #getHorizontalLazyLoadingEnabled horizontalLazyLoadingEnabled}.
|
|
41950
41166
|
*
|
|
@@ -42794,36 +42010,6 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
42794
42010
|
*/
|
|
42795
42011
|
bExclusive: boolean
|
|
42796
42012
|
): this;
|
|
42797
|
-
/**
|
|
42798
|
-
* @since 1.91
|
|
42799
|
-
*
|
|
42800
|
-
* Sets a new value for property {@link #get_enableRTA _enableRTA}.
|
|
42801
|
-
*
|
|
42802
|
-
* Flag to enable and disable Runtime Adaptation (RTA) mode.
|
|
42803
|
-
*
|
|
42804
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
42805
|
-
*
|
|
42806
|
-
* Default value is `false`.
|
|
42807
|
-
*
|
|
42808
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
42809
|
-
*/
|
|
42810
|
-
set_enableRTA(
|
|
42811
|
-
/**
|
|
42812
|
-
* New value for property `_enableRTA`
|
|
42813
|
-
*/
|
|
42814
|
-
b_enableRTA?: boolean
|
|
42815
|
-
): this;
|
|
42816
|
-
/**
|
|
42817
|
-
* Sets the aggregated {@link #get_pseudoSvgDefs _pseudoSvgDefs}.
|
|
42818
|
-
*
|
|
42819
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
42820
|
-
*/
|
|
42821
|
-
set_pseudoSvgDefs(
|
|
42822
|
-
/**
|
|
42823
|
-
* The _pseudoSvgDefs to set
|
|
42824
|
-
*/
|
|
42825
|
-
o_pseudoSvgDefs: SvgDefs
|
|
42826
|
-
): this;
|
|
42827
42013
|
/**
|
|
42828
42014
|
* Sets a new value for property {@link #getAdhocLineLayer adhocLineLayer}.
|
|
42829
42015
|
*
|
|
@@ -43227,6 +42413,8 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
43227
42413
|
bEnableNowLine?: boolean
|
|
43228
42414
|
): this;
|
|
43229
42415
|
/**
|
|
42416
|
+
* @experimental (since 1.110)
|
|
42417
|
+
*
|
|
43230
42418
|
* Sets a new value for property {@link #getEnablePseudoShapes enablePseudoShapes}.
|
|
43231
42419
|
*
|
|
43232
42420
|
* Optimizes the rendering of overlapping shapes
|
|
@@ -43379,7 +42567,7 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
43379
42567
|
sHeight?: CSSSize
|
|
43380
42568
|
): this;
|
|
43381
42569
|
/**
|
|
43382
|
-
* @since 1.109
|
|
42570
|
+
* @experimental (since 1.109)
|
|
43383
42571
|
*
|
|
43384
42572
|
* Sets a new value for property {@link #getHorizontalLazyLoadingEnabled horizontalLazyLoadingEnabled}.
|
|
43385
42573
|
*
|
|
@@ -44347,13 +43535,6 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
44347
43535
|
*/
|
|
44348
43536
|
showGanttHeader?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
44349
43537
|
|
|
44350
|
-
/**
|
|
44351
|
-
* @since 1.91
|
|
44352
|
-
*
|
|
44353
|
-
* Flag to enable and disable Runtime Adaptation (RTA) mode.
|
|
44354
|
-
*/
|
|
44355
|
-
_enableRTA?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
44356
|
-
|
|
44357
43538
|
/**
|
|
44358
43539
|
* @since 1.91
|
|
44359
43540
|
*
|
|
@@ -44472,7 +43653,7 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
44472
43653
|
| `{${string}}`;
|
|
44473
43654
|
|
|
44474
43655
|
/**
|
|
44475
|
-
* @since 1.109
|
|
43656
|
+
* @experimental (since 1.109)
|
|
44476
43657
|
*
|
|
44477
43658
|
* Set to true if Gantt chart is configured to be lazy loaded horizontally. Application should fetch the
|
|
44478
43659
|
* data only for the visible horizon. Application also should make sure to fetch the relevant data on user
|
|
@@ -44485,6 +43666,8 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
44485
43666
|
| `{${string}}`;
|
|
44486
43667
|
|
|
44487
43668
|
/**
|
|
43669
|
+
* @experimental (since 1.110)
|
|
43670
|
+
*
|
|
44488
43671
|
* Optimizes the rendering of overlapping shapes
|
|
44489
43672
|
*/
|
|
44490
43673
|
enablePseudoShapes?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
@@ -44516,8 +43699,7 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
44516
43699
|
shapeRenderOrder?: string[] | PropertyBindingInfo | `{${string}}`;
|
|
44517
43700
|
|
|
44518
43701
|
/**
|
|
44519
|
-
* @since 1.115
|
|
44520
|
-
* @experimental
|
|
43702
|
+
* @experimental (since 1.115)
|
|
44521
43703
|
*
|
|
44522
43704
|
* Flag to check whether the DateFormat should be used for Fiori launchpad timezone support. This flag is
|
|
44523
43705
|
* experimental, and it might be removed in a future release. When the flag is enabled, the start and end
|
|
@@ -44579,11 +43761,6 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
44579
43761
|
*/
|
|
44580
43762
|
svgDefs?: SvgDefs;
|
|
44581
43763
|
|
|
44582
|
-
/**
|
|
44583
|
-
* SVG reusable element definitions for pseudo shapes.
|
|
44584
|
-
*/
|
|
44585
|
-
_pseudoSvgDefs?: SvgDefs;
|
|
44586
|
-
|
|
44587
43764
|
/**
|
|
44588
43765
|
* Shape schemes of Gantt Chart.
|
|
44589
43766
|
*
|
|
@@ -44777,11 +43954,17 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
44777
43954
|
cursorDateTime?: object;
|
|
44778
43955
|
}
|
|
44779
43956
|
|
|
44780
|
-
export type GanttChartWithTable$DragStartEvent = Event<
|
|
43957
|
+
export type GanttChartWithTable$DragStartEvent = Event<
|
|
43958
|
+
GanttChartWithTable$DragStartEventParameters,
|
|
43959
|
+
GanttChartWithTable
|
|
43960
|
+
>;
|
|
44781
43961
|
|
|
44782
43962
|
export interface GanttChartWithTable$RenderingCompleteEventParameters {}
|
|
44783
43963
|
|
|
44784
|
-
export type GanttChartWithTable$RenderingCompleteEvent = Event<
|
|
43964
|
+
export type GanttChartWithTable$RenderingCompleteEvent = Event<
|
|
43965
|
+
GanttChartWithTable$RenderingCompleteEventParameters,
|
|
43966
|
+
GanttChartWithTable
|
|
43967
|
+
>;
|
|
44785
43968
|
|
|
44786
43969
|
export interface GanttChartWithTable$ShapeConnectEventParameters {
|
|
44787
43970
|
/**
|
|
@@ -44800,7 +43983,10 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
44800
43983
|
type?: simple.RelationshipType | keyof typeof simple.RelationshipType;
|
|
44801
43984
|
}
|
|
44802
43985
|
|
|
44803
|
-
export type GanttChartWithTable$ShapeConnectEvent = Event<
|
|
43986
|
+
export type GanttChartWithTable$ShapeConnectEvent = Event<
|
|
43987
|
+
GanttChartWithTable$ShapeConnectEventParameters,
|
|
43988
|
+
GanttChartWithTable
|
|
43989
|
+
>;
|
|
44804
43990
|
|
|
44805
43991
|
export interface GanttChartWithTable$ShapeConnectorListEventParameters {
|
|
44806
43992
|
/**
|
|
@@ -44819,7 +44005,10 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
44819
44005
|
connectorList?: object;
|
|
44820
44006
|
}
|
|
44821
44007
|
|
|
44822
|
-
export type GanttChartWithTable$ShapeConnectorListEvent = Event<
|
|
44008
|
+
export type GanttChartWithTable$ShapeConnectorListEvent = Event<
|
|
44009
|
+
GanttChartWithTable$ShapeConnectorListEventParameters,
|
|
44010
|
+
GanttChartWithTable
|
|
44011
|
+
>;
|
|
44823
44012
|
|
|
44824
44013
|
export interface GanttChartWithTable$ShapeContextMenuEventParameters {
|
|
44825
44014
|
/**
|
|
@@ -44848,7 +44037,10 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
44848
44037
|
shape?: BaseShape;
|
|
44849
44038
|
}
|
|
44850
44039
|
|
|
44851
|
-
export type GanttChartWithTable$ShapeContextMenuEvent = Event<
|
|
44040
|
+
export type GanttChartWithTable$ShapeContextMenuEvent = Event<
|
|
44041
|
+
GanttChartWithTable$ShapeContextMenuEventParameters,
|
|
44042
|
+
GanttChartWithTable
|
|
44043
|
+
>;
|
|
44852
44044
|
|
|
44853
44045
|
export interface GanttChartWithTable$ShapeDoubleClickEventParameters {
|
|
44854
44046
|
/**
|
|
@@ -44867,7 +44059,10 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
44867
44059
|
shape?: BaseShape;
|
|
44868
44060
|
}
|
|
44869
44061
|
|
|
44870
|
-
export type GanttChartWithTable$ShapeDoubleClickEvent = Event<
|
|
44062
|
+
export type GanttChartWithTable$ShapeDoubleClickEvent = Event<
|
|
44063
|
+
GanttChartWithTable$ShapeDoubleClickEventParameters,
|
|
44064
|
+
GanttChartWithTable
|
|
44065
|
+
>;
|
|
44871
44066
|
|
|
44872
44067
|
export interface GanttChartWithTable$ShapeDropEventParameters {
|
|
44873
44068
|
/**
|
|
@@ -44936,7 +44131,10 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
44936
44131
|
targetShape?: BaseShape;
|
|
44937
44132
|
}
|
|
44938
44133
|
|
|
44939
|
-
export type GanttChartWithTable$ShapeDropEvent = Event<
|
|
44134
|
+
export type GanttChartWithTable$ShapeDropEvent = Event<
|
|
44135
|
+
GanttChartWithTable$ShapeDropEventParameters,
|
|
44136
|
+
GanttChartWithTable
|
|
44137
|
+
>;
|
|
44940
44138
|
|
|
44941
44139
|
export interface GanttChartWithTable$ShapeHighlightChangeEventParameters {
|
|
44942
44140
|
/**
|
|
@@ -44945,7 +44143,10 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
44945
44143
|
shapeUids?: string[];
|
|
44946
44144
|
}
|
|
44947
44145
|
|
|
44948
|
-
export type GanttChartWithTable$ShapeHighlightChangeEvent = Event<
|
|
44146
|
+
export type GanttChartWithTable$ShapeHighlightChangeEvent = Event<
|
|
44147
|
+
GanttChartWithTable$ShapeHighlightChangeEventParameters,
|
|
44148
|
+
GanttChartWithTable
|
|
44149
|
+
>;
|
|
44949
44150
|
|
|
44950
44151
|
export interface GanttChartWithTable$ShapeMouseEnterEventParameters {
|
|
44951
44152
|
/**
|
|
@@ -44964,7 +44165,10 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
44964
44165
|
pageY?: int;
|
|
44965
44166
|
}
|
|
44966
44167
|
|
|
44967
|
-
export type GanttChartWithTable$ShapeMouseEnterEvent = Event<
|
|
44168
|
+
export type GanttChartWithTable$ShapeMouseEnterEvent = Event<
|
|
44169
|
+
GanttChartWithTable$ShapeMouseEnterEventParameters,
|
|
44170
|
+
GanttChartWithTable
|
|
44171
|
+
>;
|
|
44968
44172
|
|
|
44969
44173
|
export interface GanttChartWithTable$ShapeMouseLeaveEventParameters {
|
|
44970
44174
|
/**
|
|
@@ -44978,7 +44182,10 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
44978
44182
|
originEvent?: object;
|
|
44979
44183
|
}
|
|
44980
44184
|
|
|
44981
|
-
export type GanttChartWithTable$ShapeMouseLeaveEvent = Event<
|
|
44185
|
+
export type GanttChartWithTable$ShapeMouseLeaveEvent = Event<
|
|
44186
|
+
GanttChartWithTable$ShapeMouseLeaveEventParameters,
|
|
44187
|
+
GanttChartWithTable
|
|
44188
|
+
>;
|
|
44982
44189
|
|
|
44983
44190
|
export interface GanttChartWithTable$ShapePressEventParameters {
|
|
44984
44191
|
/**
|
|
@@ -44997,7 +44204,10 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
44997
44204
|
shape?: BaseShape;
|
|
44998
44205
|
}
|
|
44999
44206
|
|
|
45000
|
-
export type GanttChartWithTable$ShapePressEvent = Event<
|
|
44207
|
+
export type GanttChartWithTable$ShapePressEvent = Event<
|
|
44208
|
+
GanttChartWithTable$ShapePressEventParameters,
|
|
44209
|
+
GanttChartWithTable
|
|
44210
|
+
>;
|
|
45001
44211
|
|
|
45002
44212
|
export interface GanttChartWithTable$ShapeResizeEventParameters {
|
|
45003
44213
|
/**
|
|
@@ -45026,7 +44236,10 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
45026
44236
|
newTime?: string[];
|
|
45027
44237
|
}
|
|
45028
44238
|
|
|
45029
|
-
export type GanttChartWithTable$ShapeResizeEvent = Event<
|
|
44239
|
+
export type GanttChartWithTable$ShapeResizeEvent = Event<
|
|
44240
|
+
GanttChartWithTable$ShapeResizeEventParameters,
|
|
44241
|
+
GanttChartWithTable
|
|
44242
|
+
>;
|
|
45030
44243
|
|
|
45031
44244
|
export interface GanttChartWithTable$ShapeSelectionChangeEventParameters {
|
|
45032
44245
|
/**
|
|
@@ -45035,7 +44248,10 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
45035
44248
|
shapeUids?: string[];
|
|
45036
44249
|
}
|
|
45037
44250
|
|
|
45038
|
-
export type GanttChartWithTable$ShapeSelectionChangeEvent = Event<
|
|
44251
|
+
export type GanttChartWithTable$ShapeSelectionChangeEvent = Event<
|
|
44252
|
+
GanttChartWithTable$ShapeSelectionChangeEventParameters,
|
|
44253
|
+
GanttChartWithTable
|
|
44254
|
+
>;
|
|
45039
44255
|
|
|
45040
44256
|
export interface GanttChartWithTable$VisibleHorizonUpdateEventParameters {
|
|
45041
44257
|
/**
|
|
@@ -45073,7 +44289,10 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
45073
44289
|
currentRenderedVisibleHorizon?: TimeHorizon;
|
|
45074
44290
|
}
|
|
45075
44291
|
|
|
45076
|
-
export type GanttChartWithTable$VisibleHorizonUpdateEvent = Event<
|
|
44292
|
+
export type GanttChartWithTable$VisibleHorizonUpdateEvent = Event<
|
|
44293
|
+
GanttChartWithTable$VisibleHorizonUpdateEventParameters,
|
|
44294
|
+
GanttChartWithTable
|
|
44295
|
+
>;
|
|
45077
44296
|
}
|
|
45078
44297
|
|
|
45079
44298
|
declare module "sap/gantt/simple/GanttPrinting" {
|
|
@@ -47759,7 +46978,10 @@ declare module "sap/gantt/simple/ListLegendItem" {
|
|
|
47759
46978
|
value?: boolean;
|
|
47760
46979
|
}
|
|
47761
46980
|
|
|
47762
|
-
export type ListLegendItem$InteractiveChangeEvent = Event<
|
|
46981
|
+
export type ListLegendItem$InteractiveChangeEvent = Event<
|
|
46982
|
+
ListLegendItem$InteractiveChangeEventParameters,
|
|
46983
|
+
ListLegendItem
|
|
46984
|
+
>;
|
|
47763
46985
|
}
|
|
47764
46986
|
|
|
47765
46987
|
declare module "sap/gantt/simple/MarkerType" {
|
|
@@ -48059,8 +47281,6 @@ declare module "sap/gantt/simple/MultiActivityRowSettings" {
|
|
|
48059
47281
|
|
|
48060
47282
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
48061
47283
|
|
|
48062
|
-
import MultiActivityGroup from "sap/gantt/simple/MultiActivityGroup";
|
|
48063
|
-
|
|
48064
47284
|
import { AggregationBindingInfo } from "sap/ui/base/ManagedObject";
|
|
48065
47285
|
|
|
48066
47286
|
/**
|
|
@@ -48128,24 +47348,12 @@ declare module "sap/gantt/simple/MultiActivityRowSettings" {
|
|
|
48128
47348
|
*/
|
|
48129
47349
|
oTask: BaseShape
|
|
48130
47350
|
): this;
|
|
48131
|
-
/**
|
|
48132
|
-
* Destroys the pseudoShapeTemplate in the aggregation {@link #getPseudoShapeTemplate pseudoShapeTemplate}.
|
|
48133
|
-
*
|
|
48134
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
48135
|
-
*/
|
|
48136
|
-
destroyPseudoShapeTemplate(): this;
|
|
48137
47351
|
/**
|
|
48138
47352
|
* Destroys all the tasks in the aggregation {@link #getTasks tasks}.
|
|
48139
47353
|
*
|
|
48140
47354
|
* @returns Reference to `this` in order to allow method chaining
|
|
48141
47355
|
*/
|
|
48142
47356
|
destroyTasks(): this;
|
|
48143
|
-
/**
|
|
48144
|
-
* Gets content of aggregation {@link #getPseudoShapeTemplate pseudoShapeTemplate}.
|
|
48145
|
-
*
|
|
48146
|
-
* Pseudo shape template
|
|
48147
|
-
*/
|
|
48148
|
-
getPseudoShapeTemplate(): MultiActivityGroup;
|
|
48149
47357
|
/**
|
|
48150
47358
|
* Gets content of aggregation {@link #getTasks tasks}.
|
|
48151
47359
|
*
|
|
@@ -48200,17 +47408,6 @@ declare module "sap/gantt/simple/MultiActivityRowSettings" {
|
|
|
48200
47408
|
*/
|
|
48201
47409
|
vTask: int | string | BaseShape
|
|
48202
47410
|
): BaseShape | null;
|
|
48203
|
-
/**
|
|
48204
|
-
* Sets the aggregated {@link #getPseudoShapeTemplate pseudoShapeTemplate}.
|
|
48205
|
-
*
|
|
48206
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
48207
|
-
*/
|
|
48208
|
-
setPseudoShapeTemplate(
|
|
48209
|
-
/**
|
|
48210
|
-
* The pseudoShapeTemplate to set
|
|
48211
|
-
*/
|
|
48212
|
-
oPseudoShapeTemplate: MultiActivityGroup
|
|
48213
|
-
): this;
|
|
48214
47411
|
}
|
|
48215
47412
|
|
|
48216
47413
|
export interface $MultiActivityRowSettingsSettings
|
|
@@ -48219,11 +47416,6 @@ declare module "sap/gantt/simple/MultiActivityRowSettings" {
|
|
|
48219
47416
|
* The control which holds the shape groups.
|
|
48220
47417
|
*/
|
|
48221
47418
|
tasks?: BaseShape[] | BaseShape | AggregationBindingInfo | `{${string}}`;
|
|
48222
|
-
|
|
48223
|
-
/**
|
|
48224
|
-
* Pseudo shape template
|
|
48225
|
-
*/
|
|
48226
|
-
pseudoShapeTemplate?: MultiActivityGroup;
|
|
48227
47419
|
}
|
|
48228
47420
|
}
|
|
48229
47421
|
|
|
@@ -48290,14 +47482,6 @@ declare module "sap/gantt/simple/Relationship" {
|
|
|
48290
47482
|
* @returns Metadata object describing this class
|
|
48291
47483
|
*/
|
|
48292
47484
|
static getMetadata(): ElementMetadata;
|
|
48293
|
-
/**
|
|
48294
|
-
* Gets current value of property {@link #get_lMarker _lMarker}.
|
|
48295
|
-
*
|
|
48296
|
-
* _lMarker determines up/down relation of L type .
|
|
48297
|
-
*
|
|
48298
|
-
* @returns Value of property `_lMarker`
|
|
48299
|
-
*/
|
|
48300
|
-
get_lMarker(): string;
|
|
48301
47485
|
/**
|
|
48302
47486
|
* Gets current value of property {@link #getEnableCurvedEdge enableCurvedEdge}.
|
|
48303
47487
|
*
|
|
@@ -48444,21 +47628,6 @@ declare module "sap/gantt/simple/Relationship" {
|
|
|
48444
47628
|
* @returns Value of property `type`
|
|
48445
47629
|
*/
|
|
48446
47630
|
getType(): simple.RelationshipType | keyof typeof simple.RelationshipType;
|
|
48447
|
-
/**
|
|
48448
|
-
* Sets a new value for property {@link #get_lMarker _lMarker}.
|
|
48449
|
-
*
|
|
48450
|
-
* _lMarker determines up/down relation of L type .
|
|
48451
|
-
*
|
|
48452
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
48453
|
-
*
|
|
48454
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
48455
|
-
*/
|
|
48456
|
-
set_lMarker(
|
|
48457
|
-
/**
|
|
48458
|
-
* New value for property `_lMarker`
|
|
48459
|
-
*/
|
|
48460
|
-
s_lMarker: string
|
|
48461
|
-
): this;
|
|
48462
47631
|
/**
|
|
48463
47632
|
* Sets a new value for property {@link #getEnableCurvedEdge enableCurvedEdge}.
|
|
48464
47633
|
*
|
|
@@ -48808,11 +47977,6 @@ declare module "sap/gantt/simple/Relationship" {
|
|
|
48808
47977
|
* Flag to have relationship pass over divider line
|
|
48809
47978
|
*/
|
|
48810
47979
|
relationshipOverDivider?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
48811
|
-
|
|
48812
|
-
/**
|
|
48813
|
-
* _lMarker determines up/down relation of L type .
|
|
48814
|
-
*/
|
|
48815
|
-
_lMarker?: string | PropertyBindingInfo;
|
|
48816
47980
|
}
|
|
48817
47981
|
}
|
|
48818
47982
|
|