@sapui5/ts-types 1.96.14 → 1.96.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +1 -1
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.plugins.d.ts +1 -1
- package/types/sap.fe.semantics.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.gantt.d.ts +1 -1
- package/types/sap.m.d.ts +97 -1
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.sac.grid.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +175 -7
- package/types/sap.ui.core.d.ts +110 -2
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +3 -3
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +1 -1
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +6 -6
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +95 -13
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +1 -1
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.chart.d.ts
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.fe.common.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.fe.tools.d.ts
CHANGED
package/types/sap.gantt.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.96.
|
|
1
|
+
// For Library Version: 1.96.14
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -12107,6 +12107,32 @@ declare namespace sap {
|
|
|
12107
12107
|
| boolean
|
|
12108
12108
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
12109
12109
|
|
|
12110
|
+
/**
|
|
12111
|
+
* @SINCE 1.97
|
|
12112
|
+
*
|
|
12113
|
+
* Determines whether the input field of the picker is hidden or visible. When set to `true`, the input
|
|
12114
|
+
* field becomes invisible and there is no way to open the picker popover. In that case it can be opened
|
|
12115
|
+
* by another control through calling of picker's `openBy` method, and the opening control's DOM reference
|
|
12116
|
+
* must be provided as parameter.
|
|
12117
|
+
*
|
|
12118
|
+
* Note: Since the picker is not responsible for accessibility attributes of the control which opens its
|
|
12119
|
+
* popover, those attributes should be added by the application developer. The following is recommended
|
|
12120
|
+
* to be added to the opening control: a text or tooltip that describes the action (example: "Open Date
|
|
12121
|
+
* Picker"), and also aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
|
|
12122
|
+
*/
|
|
12123
|
+
hideInput?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
12124
|
+
|
|
12125
|
+
/**
|
|
12126
|
+
* @SINCE 1.96.15
|
|
12127
|
+
*
|
|
12128
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
12129
|
+
* global configuration is used. Note: This API has been introduced with version 1.108 and downported to
|
|
12130
|
+
* this release with patch level 15.
|
|
12131
|
+
*/
|
|
12132
|
+
calendarWeekNumbering?:
|
|
12133
|
+
| sap.ui.core.date.CalendarWeekNumbering
|
|
12134
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
12135
|
+
|
|
12110
12136
|
/**
|
|
12111
12137
|
* @SINCE 1.38.5
|
|
12112
12138
|
*
|
|
@@ -35520,6 +35546,16 @@ declare namespace sap {
|
|
|
35520
35546
|
* sap.ui.core.Control#getAccessibilityInfo
|
|
35521
35547
|
*/
|
|
35522
35548
|
getAccessibilityInfo(): object;
|
|
35549
|
+
/**
|
|
35550
|
+
* @SINCE 1.96.15
|
|
35551
|
+
*
|
|
35552
|
+
* Gets current value of property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
35553
|
+
*
|
|
35554
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
35555
|
+
* global configuration is used. Note: This API has been introduced with version 1.108 and downported to
|
|
35556
|
+
* this release with patch level 15.
|
|
35557
|
+
*/
|
|
35558
|
+
getCalendarWeekNumbering(): sap.ui.core.date.CalendarWeekNumbering;
|
|
35523
35559
|
/**
|
|
35524
35560
|
* The date as JavaScript Date object. This is independent from any formatter.
|
|
35525
35561
|
*
|
|
@@ -35548,6 +35584,24 @@ declare namespace sap {
|
|
|
35548
35584
|
* Default value is `empty string`.
|
|
35549
35585
|
*/
|
|
35550
35586
|
getDisplayFormatType(): string;
|
|
35587
|
+
/**
|
|
35588
|
+
* @SINCE 1.97
|
|
35589
|
+
*
|
|
35590
|
+
* Gets current value of property {@link #getHideInput hideInput}.
|
|
35591
|
+
*
|
|
35592
|
+
* Determines whether the input field of the picker is hidden or visible. When set to `true`, the input
|
|
35593
|
+
* field becomes invisible and there is no way to open the picker popover. In that case it can be opened
|
|
35594
|
+
* by another control through calling of picker's `openBy` method, and the opening control's DOM reference
|
|
35595
|
+
* must be provided as parameter.
|
|
35596
|
+
*
|
|
35597
|
+
* Note: Since the picker is not responsible for accessibility attributes of the control which opens its
|
|
35598
|
+
* popover, those attributes should be added by the application developer. The following is recommended
|
|
35599
|
+
* to be added to the opening control: a text or tooltip that describes the action (example: "Open Date
|
|
35600
|
+
* Picker"), and also aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
|
|
35601
|
+
*
|
|
35602
|
+
* Default value is `false`.
|
|
35603
|
+
*/
|
|
35604
|
+
getHideInput(): boolean;
|
|
35551
35605
|
/**
|
|
35552
35606
|
* @SINCE 1.38.5
|
|
35553
35607
|
*
|
|
@@ -35704,6 +35758,23 @@ declare namespace sap {
|
|
|
35704
35758
|
*/
|
|
35705
35759
|
oSpecialDate: sap.ui.unified.DateTypeRange
|
|
35706
35760
|
): sap.ui.unified.DateTypeRange;
|
|
35761
|
+
/**
|
|
35762
|
+
* @SINCE 1.96.15
|
|
35763
|
+
*
|
|
35764
|
+
* Sets a new value for property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
35765
|
+
*
|
|
35766
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
35767
|
+
* global configuration is used. Note: This API has been introduced with version 1.108 and downported to
|
|
35768
|
+
* this release with patch level 15.
|
|
35769
|
+
*
|
|
35770
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
35771
|
+
*/
|
|
35772
|
+
setCalendarWeekNumbering(
|
|
35773
|
+
/**
|
|
35774
|
+
* New value for property `calendarWeekNumbering`
|
|
35775
|
+
*/
|
|
35776
|
+
sCalendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering
|
|
35777
|
+
): this;
|
|
35707
35778
|
/**
|
|
35708
35779
|
* Sets the displayFormat of the DatePicker.
|
|
35709
35780
|
*/
|
|
@@ -35733,6 +35804,31 @@ declare namespace sap {
|
|
|
35733
35804
|
*/
|
|
35734
35805
|
sDisplayFormatType?: string
|
|
35735
35806
|
): this;
|
|
35807
|
+
/**
|
|
35808
|
+
* @SINCE 1.97
|
|
35809
|
+
*
|
|
35810
|
+
* Sets a new value for property {@link #getHideInput hideInput}.
|
|
35811
|
+
*
|
|
35812
|
+
* Determines whether the input field of the picker is hidden or visible. When set to `true`, the input
|
|
35813
|
+
* field becomes invisible and there is no way to open the picker popover. In that case it can be opened
|
|
35814
|
+
* by another control through calling of picker's `openBy` method, and the opening control's DOM reference
|
|
35815
|
+
* must be provided as parameter.
|
|
35816
|
+
*
|
|
35817
|
+
* Note: Since the picker is not responsible for accessibility attributes of the control which opens its
|
|
35818
|
+
* popover, those attributes should be added by the application developer. The following is recommended
|
|
35819
|
+
* to be added to the opening control: a text or tooltip that describes the action (example: "Open Date
|
|
35820
|
+
* Picker"), and also aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
|
|
35821
|
+
*
|
|
35822
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
35823
|
+
*
|
|
35824
|
+
* Default value is `false`.
|
|
35825
|
+
*/
|
|
35826
|
+
setHideInput(
|
|
35827
|
+
/**
|
|
35828
|
+
* New value for property `hideInput`
|
|
35829
|
+
*/
|
|
35830
|
+
bHideInput?: boolean
|
|
35831
|
+
): this;
|
|
35736
35832
|
/**
|
|
35737
35833
|
* @SINCE 1.38.5
|
|
35738
35834
|
*
|
package/types/sap.makit.d.ts
CHANGED
package/types/sap.me.d.ts
CHANGED
package/types/sap.ndc.d.ts
CHANGED
package/types/sap.sac.grid.d.ts
CHANGED
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.comp.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.96.
|
|
1
|
+
// For Library Version: 1.96.14
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -7833,6 +7833,14 @@ declare namespace sap {
|
|
|
7833
7833
|
* The data can be changed via sorters, filters or drill-ups/drill-downs.
|
|
7834
7834
|
*/
|
|
7835
7835
|
chartDataChanged?: (oEvent: sap.ui.base.Event) => void;
|
|
7836
|
+
|
|
7837
|
+
/**
|
|
7838
|
+
* @SINCE 1.96.15
|
|
7839
|
+
*
|
|
7840
|
+
* This event is fired when the UI state changes either via the {@link sap.ui.comp.smartchart.SmartChart#setUiState}
|
|
7841
|
+
* method or the chart personalization.
|
|
7842
|
+
*/
|
|
7843
|
+
uiStateChange?: (oEvent: sap.ui.base.Event) => void;
|
|
7836
7844
|
}
|
|
7837
7845
|
|
|
7838
7846
|
/**
|
|
@@ -8419,6 +8427,53 @@ declare namespace sap {
|
|
|
8419
8427
|
*/
|
|
8420
8428
|
oListener?: object
|
|
8421
8429
|
): this;
|
|
8430
|
+
/**
|
|
8431
|
+
* @SINCE 1.96.15
|
|
8432
|
+
*
|
|
8433
|
+
* Attaches event handler `fnFunction` to the {@link #event:uiStateChange uiStateChange} event of this `sap.ui.comp.smartchart.SmartChart`.
|
|
8434
|
+
*
|
|
8435
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
8436
|
+
* otherwise it will be bound to this `sap.ui.comp.smartchart.SmartChart` itself.
|
|
8437
|
+
*
|
|
8438
|
+
* This event is fired when the UI state changes either via the {@link sap.ui.comp.smartchart.SmartChart#setUiState}
|
|
8439
|
+
* method or the chart personalization.
|
|
8440
|
+
*/
|
|
8441
|
+
attachUiStateChange(
|
|
8442
|
+
/**
|
|
8443
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
8444
|
+
* object when firing the event
|
|
8445
|
+
*/
|
|
8446
|
+
oData: object,
|
|
8447
|
+
/**
|
|
8448
|
+
* The function to be called when the event occurs
|
|
8449
|
+
*/
|
|
8450
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
8451
|
+
/**
|
|
8452
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.comp.smartchart.SmartChart` itself
|
|
8453
|
+
*/
|
|
8454
|
+
oListener?: object
|
|
8455
|
+
): this;
|
|
8456
|
+
/**
|
|
8457
|
+
* @SINCE 1.96.15
|
|
8458
|
+
*
|
|
8459
|
+
* Attaches event handler `fnFunction` to the {@link #event:uiStateChange uiStateChange} event of this `sap.ui.comp.smartchart.SmartChart`.
|
|
8460
|
+
*
|
|
8461
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
8462
|
+
* otherwise it will be bound to this `sap.ui.comp.smartchart.SmartChart` itself.
|
|
8463
|
+
*
|
|
8464
|
+
* This event is fired when the UI state changes either via the {@link sap.ui.comp.smartchart.SmartChart#setUiState}
|
|
8465
|
+
* method or the chart personalization.
|
|
8466
|
+
*/
|
|
8467
|
+
attachUiStateChange(
|
|
8468
|
+
/**
|
|
8469
|
+
* The function to be called when the event occurs
|
|
8470
|
+
*/
|
|
8471
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
8472
|
+
/**
|
|
8473
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.comp.smartchart.SmartChart` itself
|
|
8474
|
+
*/
|
|
8475
|
+
oListener?: object
|
|
8476
|
+
): this;
|
|
8422
8477
|
/**
|
|
8423
8478
|
* @EXPERIMENTAL (since 1.48)
|
|
8424
8479
|
*
|
|
@@ -8630,6 +8685,24 @@ declare namespace sap {
|
|
|
8630
8685
|
*/
|
|
8631
8686
|
oListener?: object
|
|
8632
8687
|
): this;
|
|
8688
|
+
/**
|
|
8689
|
+
* @SINCE 1.96.15
|
|
8690
|
+
*
|
|
8691
|
+
* Detaches event handler `fnFunction` from the {@link #event:uiStateChange uiStateChange} event of this
|
|
8692
|
+
* `sap.ui.comp.smartchart.SmartChart`.
|
|
8693
|
+
*
|
|
8694
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
8695
|
+
*/
|
|
8696
|
+
detachUiStateChange(
|
|
8697
|
+
/**
|
|
8698
|
+
* The function to be called, when the event occurs
|
|
8699
|
+
*/
|
|
8700
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
8701
|
+
/**
|
|
8702
|
+
* Context object on which the given function had to be called
|
|
8703
|
+
*/
|
|
8704
|
+
oListener?: object
|
|
8705
|
+
): this;
|
|
8633
8706
|
/**
|
|
8634
8707
|
* Cleans up the control.
|
|
8635
8708
|
*/
|
|
@@ -8783,6 +8856,17 @@ declare namespace sap {
|
|
|
8783
8856
|
*/
|
|
8784
8857
|
mParameters?: object
|
|
8785
8858
|
): this;
|
|
8859
|
+
/**
|
|
8860
|
+
* @SINCE 1.96.15
|
|
8861
|
+
*
|
|
8862
|
+
* Fires event {@link #event:uiStateChange uiStateChange} to attached listeners.
|
|
8863
|
+
*/
|
|
8864
|
+
fireUiStateChange(
|
|
8865
|
+
/**
|
|
8866
|
+
* Parameters to pass along with the event
|
|
8867
|
+
*/
|
|
8868
|
+
mParameters?: object
|
|
8869
|
+
): this;
|
|
8786
8870
|
/**
|
|
8787
8871
|
* @SINCE 1.84
|
|
8788
8872
|
*
|
|
@@ -23632,6 +23716,14 @@ declare namespace sap {
|
|
|
23632
23716
|
* This event is fired when paste is triggered.
|
|
23633
23717
|
*/
|
|
23634
23718
|
paste?: (oEvent: sap.ui.base.Event) => void;
|
|
23719
|
+
|
|
23720
|
+
/**
|
|
23721
|
+
* @SINCE 1.96.15
|
|
23722
|
+
*
|
|
23723
|
+
* This event is fired when the UI state changes either via the {@link sap.ui.comp.smarttable.SmartTable#setUiState}
|
|
23724
|
+
* method or the table personalization.
|
|
23725
|
+
*/
|
|
23726
|
+
uiStateChange?: (oEvent: sap.ui.base.Event) => void;
|
|
23635
23727
|
}
|
|
23636
23728
|
|
|
23637
23729
|
/**
|
|
@@ -24381,6 +24473,53 @@ declare namespace sap {
|
|
|
24381
24473
|
*/
|
|
24382
24474
|
oListener?: object
|
|
24383
24475
|
): this;
|
|
24476
|
+
/**
|
|
24477
|
+
* @SINCE 1.96.15
|
|
24478
|
+
*
|
|
24479
|
+
* Attaches event handler `fnFunction` to the {@link #event:uiStateChange uiStateChange} event of this `sap.ui.comp.smarttable.SmartTable`.
|
|
24480
|
+
*
|
|
24481
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
24482
|
+
* otherwise it will be bound to this `sap.ui.comp.smarttable.SmartTable` itself.
|
|
24483
|
+
*
|
|
24484
|
+
* This event is fired when the UI state changes either via the {@link sap.ui.comp.smarttable.SmartTable#setUiState}
|
|
24485
|
+
* method or the table personalization.
|
|
24486
|
+
*/
|
|
24487
|
+
attachUiStateChange(
|
|
24488
|
+
/**
|
|
24489
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
24490
|
+
* object when firing the event
|
|
24491
|
+
*/
|
|
24492
|
+
oData: object,
|
|
24493
|
+
/**
|
|
24494
|
+
* The function to be called when the event occurs
|
|
24495
|
+
*/
|
|
24496
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
24497
|
+
/**
|
|
24498
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.comp.smarttable.SmartTable` itself
|
|
24499
|
+
*/
|
|
24500
|
+
oListener?: object
|
|
24501
|
+
): this;
|
|
24502
|
+
/**
|
|
24503
|
+
* @SINCE 1.96.15
|
|
24504
|
+
*
|
|
24505
|
+
* Attaches event handler `fnFunction` to the {@link #event:uiStateChange uiStateChange} event of this `sap.ui.comp.smarttable.SmartTable`.
|
|
24506
|
+
*
|
|
24507
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
24508
|
+
* otherwise it will be bound to this `sap.ui.comp.smarttable.SmartTable` itself.
|
|
24509
|
+
*
|
|
24510
|
+
* This event is fired when the UI state changes either via the {@link sap.ui.comp.smarttable.SmartTable#setUiState}
|
|
24511
|
+
* method or the table personalization.
|
|
24512
|
+
*/
|
|
24513
|
+
attachUiStateChange(
|
|
24514
|
+
/**
|
|
24515
|
+
* The function to be called when the event occurs
|
|
24516
|
+
*/
|
|
24517
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
24518
|
+
/**
|
|
24519
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.comp.smarttable.SmartTable` itself
|
|
24520
|
+
*/
|
|
24521
|
+
oListener?: object
|
|
24522
|
+
): this;
|
|
24384
24523
|
/**
|
|
24385
24524
|
* @SINCE 1.54.0
|
|
24386
24525
|
*
|
|
@@ -24674,6 +24813,24 @@ declare namespace sap {
|
|
|
24674
24813
|
*/
|
|
24675
24814
|
oListener?: object
|
|
24676
24815
|
): this;
|
|
24816
|
+
/**
|
|
24817
|
+
* @SINCE 1.96.15
|
|
24818
|
+
*
|
|
24819
|
+
* Detaches event handler `fnFunction` from the {@link #event:uiStateChange uiStateChange} event of this
|
|
24820
|
+
* `sap.ui.comp.smarttable.SmartTable`.
|
|
24821
|
+
*
|
|
24822
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
24823
|
+
*/
|
|
24824
|
+
detachUiStateChange(
|
|
24825
|
+
/**
|
|
24826
|
+
* The function to be called, when the event occurs
|
|
24827
|
+
*/
|
|
24828
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
24829
|
+
/**
|
|
24830
|
+
* Context object on which the given function had to be called
|
|
24831
|
+
*/
|
|
24832
|
+
oListener?: object
|
|
24833
|
+
): this;
|
|
24677
24834
|
/**
|
|
24678
24835
|
* Cleans up the control
|
|
24679
24836
|
*/
|
|
@@ -24875,6 +25032,17 @@ declare namespace sap {
|
|
|
24875
25032
|
*/
|
|
24876
25033
|
mParameters?: object
|
|
24877
25034
|
): this;
|
|
25035
|
+
/**
|
|
25036
|
+
* @SINCE 1.96.15
|
|
25037
|
+
*
|
|
25038
|
+
* Fires event {@link #event:uiStateChange uiStateChange} to attached listeners.
|
|
25039
|
+
*/
|
|
25040
|
+
fireUiStateChange(
|
|
25041
|
+
/**
|
|
25042
|
+
* Parameters to pass along with the event
|
|
25043
|
+
*/
|
|
25044
|
+
mParameters?: object
|
|
25045
|
+
): this;
|
|
24878
25046
|
/**
|
|
24879
25047
|
* returns the id of the currently selected variant.
|
|
24880
25048
|
*/
|
|
@@ -28180,7 +28348,7 @@ declare namespace sap {
|
|
|
28180
28348
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
28181
28349
|
|
|
28182
28350
|
/**
|
|
28183
|
-
* @deprecated
|
|
28351
|
+
* @deprecated (since 1.84.1)
|
|
28184
28352
|
*
|
|
28185
28353
|
* Defines the maximum number of include ranges.
|
|
28186
28354
|
*/
|
|
@@ -28189,7 +28357,7 @@ declare namespace sap {
|
|
|
28189
28357
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
28190
28358
|
|
|
28191
28359
|
/**
|
|
28192
|
-
* @deprecated
|
|
28360
|
+
* @deprecated (since 1.84.1)
|
|
28193
28361
|
*
|
|
28194
28362
|
* Defines the maximum number of exclude ranges.
|
|
28195
28363
|
*/
|
|
@@ -28862,7 +29030,7 @@ declare namespace sap {
|
|
|
28862
29030
|
*/
|
|
28863
29031
|
getMaxConditions(): string;
|
|
28864
29032
|
/**
|
|
28865
|
-
* @deprecated
|
|
29033
|
+
* @deprecated (since 1.84.1)
|
|
28866
29034
|
*
|
|
28867
29035
|
* Gets current value of property {@link #getMaxExcludeRanges maxExcludeRanges}.
|
|
28868
29036
|
*
|
|
@@ -28872,7 +29040,7 @@ declare namespace sap {
|
|
|
28872
29040
|
*/
|
|
28873
29041
|
getMaxExcludeRanges(): string;
|
|
28874
29042
|
/**
|
|
28875
|
-
* @deprecated
|
|
29043
|
+
* @deprecated (since 1.84.1)
|
|
28876
29044
|
*
|
|
28877
29045
|
* Gets current value of property {@link #getMaxIncludeRanges maxIncludeRanges}.
|
|
28878
29046
|
*
|
|
@@ -29096,7 +29264,7 @@ declare namespace sap {
|
|
|
29096
29264
|
sMaxConditions?: string
|
|
29097
29265
|
): this;
|
|
29098
29266
|
/**
|
|
29099
|
-
* @deprecated
|
|
29267
|
+
* @deprecated (since 1.84.1)
|
|
29100
29268
|
*
|
|
29101
29269
|
* Sets a new value for property {@link #getMaxExcludeRanges maxExcludeRanges}.
|
|
29102
29270
|
*
|
|
@@ -29113,7 +29281,7 @@ declare namespace sap {
|
|
|
29113
29281
|
sMaxExcludeRanges?: string
|
|
29114
29282
|
): this;
|
|
29115
29283
|
/**
|
|
29116
|
-
* @deprecated
|
|
29284
|
+
* @deprecated (since 1.84.1)
|
|
29117
29285
|
*
|
|
29118
29286
|
* Sets a new value for property {@link #getMaxIncludeRanges maxIncludeRanges}.
|
|
29119
29287
|
*
|
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -264,7 +264,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
|
|
|
264
264
|
): jQuery;
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
-
// For Library Version: 1.96.
|
|
267
|
+
// For Library Version: 1.96.14
|
|
268
268
|
|
|
269
269
|
declare module "sap/base/assert" {
|
|
270
270
|
/**
|
|
@@ -941,6 +941,9 @@ declare module "sap/base/security/URLListValidator" {
|
|
|
941
941
|
*
|
|
942
942
|
* Note: Adding the first entry to the list of allowed entries will disallow all URLs but the ones matching
|
|
943
943
|
* the newly added entry.
|
|
944
|
+
*
|
|
945
|
+
* **Note**: It is strongly recommended to set a path only in combination with an origin (never set a path
|
|
946
|
+
* alone). There's almost no case where checking only the path of a URL would allow to ensure its validity.
|
|
944
947
|
*/
|
|
945
948
|
add(
|
|
946
949
|
/**
|
|
@@ -973,7 +976,13 @@ declare module "sap/base/security/URLListValidator" {
|
|
|
973
976
|
/**
|
|
974
977
|
* Validates a URL. Check if it's not a script or other security issue.
|
|
975
978
|
*
|
|
976
|
-
*
|
|
979
|
+
* **Note**: It is strongly recommended to validate only absolute URLs. There's almost no case where checking
|
|
980
|
+
* only the path of a URL would allow to ensure its validity. For compatibility reasons, this API cannot
|
|
981
|
+
* automatically resolve URLs relative to `document.baseURI`, but callers should do so. In that case, and
|
|
982
|
+
* when the allow list is not empty, an entry for the origin of `document.baseURI` must be added to the
|
|
983
|
+
* allow list.
|
|
984
|
+
*
|
|
985
|
+
* Details: Splits the given URL into components and checks for allowed characters according to RFC 3986:
|
|
977
986
|
*
|
|
978
987
|
*
|
|
979
988
|
* ```javascript
|
|
@@ -2086,6 +2095,48 @@ declare module "sap/ui/core/ComponentSupport" {
|
|
|
2086
2095
|
export default ComponentSupport;
|
|
2087
2096
|
}
|
|
2088
2097
|
|
|
2098
|
+
declare module "sap/ui/core/date/CalendarUtils" {
|
|
2099
|
+
/**
|
|
2100
|
+
* @SINCE 1.96.15
|
|
2101
|
+
*
|
|
2102
|
+
* Provides calendar-related utilities.
|
|
2103
|
+
*
|
|
2104
|
+
* Note: This API has been introduced with version 1.108 and downported to this release with patch level
|
|
2105
|
+
* 15.
|
|
2106
|
+
*/
|
|
2107
|
+
interface CalendarUtils {
|
|
2108
|
+
/**
|
|
2109
|
+
* @SINCE 1.96.15
|
|
2110
|
+
*
|
|
2111
|
+
* Resolves calendar week configuration.
|
|
2112
|
+
*
|
|
2113
|
+
* Returns an object with the following fields:
|
|
2114
|
+
* - `firstDayOfWeek`: specifies the first day of the week starting with `0` (which is Sunday)
|
|
2115
|
+
* - `minimalDaysInFirstWeek`: minimal days at the beginning of the year which define the first calendar
|
|
2116
|
+
* week
|
|
2117
|
+
*
|
|
2118
|
+
* Note: This API has been introduced with version 1.108 and downported to this release with patch level
|
|
2119
|
+
* 15.
|
|
2120
|
+
*/
|
|
2121
|
+
getWeekConfigurationValues(
|
|
2122
|
+
/**
|
|
2123
|
+
* The calendar week numbering; if omitted, `Default` is used.
|
|
2124
|
+
*/
|
|
2125
|
+
sCalendarWeekNumbering?:
|
|
2126
|
+
| sap.ui.core.date.CalendarWeekNumbering
|
|
2127
|
+
| keyof typeof sap.ui.core.date.CalendarWeekNumbering,
|
|
2128
|
+
/**
|
|
2129
|
+
* The locale to use; if not provided, this falls back to the format locale from the Configuration; see
|
|
2130
|
+
* {@link sap.ui.core.Configuration.FormatSettings#getFormatLocale}. Is only used when `sCalendarWeekNumbering`
|
|
2131
|
+
* is set to `Default`.
|
|
2132
|
+
*/
|
|
2133
|
+
oLocale?: sap.ui.core.Locale
|
|
2134
|
+
): Object | undefined;
|
|
2135
|
+
}
|
|
2136
|
+
const CalendarUtils: CalendarUtils;
|
|
2137
|
+
export default CalendarUtils;
|
|
2138
|
+
}
|
|
2139
|
+
|
|
2089
2140
|
declare module "sap/ui/core/InvisibleRenderer" {
|
|
2090
2141
|
/**
|
|
2091
2142
|
* @SINCE 1.66.0
|
|
@@ -12096,6 +12147,11 @@ declare namespace sap {
|
|
|
12096
12147
|
* Object which defines the format options
|
|
12097
12148
|
*/
|
|
12098
12149
|
oFormatOptions?: {
|
|
12150
|
+
/**
|
|
12151
|
+
* @since 1.96.15 specifies the calendar week numbering. Note: This API has been introduced with version
|
|
12152
|
+
* 1.108 and downported to this release with patch level 15.
|
|
12153
|
+
*/
|
|
12154
|
+
calendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering;
|
|
12099
12155
|
/**
|
|
12100
12156
|
* @since 1.34.0 contains pattern symbols (e.g. "yMMMd" or "Hms") which will be converted into the pattern
|
|
12101
12157
|
* in the used locale, which matches the wanted symbols best. The symbols must be in canonical order, that
|
|
@@ -12172,6 +12228,11 @@ declare namespace sap {
|
|
|
12172
12228
|
* Object which defines the format options
|
|
12173
12229
|
*/
|
|
12174
12230
|
oFormatOptions?: {
|
|
12231
|
+
/**
|
|
12232
|
+
* @since 1.96.15 specifies the calendar week numbering. Note: This API has been introduced with version
|
|
12233
|
+
* 1.108 and downported to this release with patch level 15.
|
|
12234
|
+
*/
|
|
12235
|
+
calendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering;
|
|
12175
12236
|
/**
|
|
12176
12237
|
* @since 1.34.0 contains pattern symbols (e.g. "yMMMd" or "Hms") which will be converted into the pattern
|
|
12177
12238
|
* in the used locale, which matches the wanted symbols best. The symbols must be in canonical order, that
|
|
@@ -12251,6 +12312,11 @@ declare namespace sap {
|
|
|
12251
12312
|
* Object which defines the format options
|
|
12252
12313
|
*/
|
|
12253
12314
|
oFormatOptions?: {
|
|
12315
|
+
/**
|
|
12316
|
+
* @since 1.96.15 specifies the calendar week numbering. Note: This API has been introduced with version
|
|
12317
|
+
* 1.108 and downported to this release with patch level 15.
|
|
12318
|
+
*/
|
|
12319
|
+
calendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering;
|
|
12254
12320
|
/**
|
|
12255
12321
|
* @since 1.34.0 contains pattern symbols (e.g. "yMMMd" or "Hms") which will be converted into the pattern
|
|
12256
12322
|
* in the used locale, which matches the wanted symbols best. The symbols must be in canonical order, that
|
|
@@ -16604,6 +16670,44 @@ declare namespace sap {
|
|
|
16604
16670
|
}
|
|
16605
16671
|
}
|
|
16606
16672
|
|
|
16673
|
+
namespace date {
|
|
16674
|
+
/**
|
|
16675
|
+
* @SINCE 1.96.15
|
|
16676
|
+
*
|
|
16677
|
+
* The `CalendarWeekNumbering` enum defines how to calculate calendar weeks. Each value defines:
|
|
16678
|
+
* - The first day of the week,
|
|
16679
|
+
* - the first week of the year.
|
|
16680
|
+
*
|
|
16681
|
+
* Note: This API has been introduced with version 1.108 and downported to this release with patch level
|
|
16682
|
+
* 15.
|
|
16683
|
+
*/
|
|
16684
|
+
enum CalendarWeekNumbering {
|
|
16685
|
+
/**
|
|
16686
|
+
* The default calendar week numbering:
|
|
16687
|
+
*
|
|
16688
|
+
* The framework determines the week numbering scheme; currently it is derived from the active format locale.
|
|
16689
|
+
* Future versions of UI5 might select a different week numbering scheme.
|
|
16690
|
+
*/
|
|
16691
|
+
Default = "Default",
|
|
16692
|
+
/**
|
|
16693
|
+
* Official calendar week numbering in most of Europe (ISO 8601 standard):
|
|
16694
|
+
* Monday is first day of the week, the week containing January 4th is first week of the year.
|
|
16695
|
+
*/
|
|
16696
|
+
ISO_8601 = "ISO_8601",
|
|
16697
|
+
/**
|
|
16698
|
+
* Official calendar week numbering in much of the Middle East (Middle Eastern calendar):
|
|
16699
|
+
* Saturday is first day of the week, the week containing January 1st is first week of the year.
|
|
16700
|
+
*/
|
|
16701
|
+
MiddleEastern = "MiddleEastern",
|
|
16702
|
+
/**
|
|
16703
|
+
* Official calendar week numbering in the United States, Canada, Brazil, Israel, Japan, and other countries
|
|
16704
|
+
* (Western traditional calendar):
|
|
16705
|
+
* Sunday is first day of the week, the week containing January 1st is first week of the year.
|
|
16706
|
+
*/
|
|
16707
|
+
WesternTraditional = "WesternTraditional",
|
|
16708
|
+
}
|
|
16709
|
+
}
|
|
16710
|
+
|
|
16607
16711
|
namespace Element {
|
|
16608
16712
|
/**
|
|
16609
16713
|
* Registry of all `sap.ui.core.Element`s that currently exist.
|
|
@@ -64986,6 +65090,10 @@ declare namespace sap {
|
|
|
64986
65090
|
|
|
64987
65091
|
"sap/ui/core/CustomData": undefined;
|
|
64988
65092
|
|
|
65093
|
+
"sap/ui/core/date/CalendarUtils": undefined;
|
|
65094
|
+
|
|
65095
|
+
"sap/ui/core/date/CalendarWeekNumbering": undefined;
|
|
65096
|
+
|
|
64989
65097
|
"sap/ui/core/date/UniversalDate": undefined;
|
|
64990
65098
|
|
|
64991
65099
|
"sap/ui/core/date/UniversalDateUtils": undefined;
|
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.export.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.96.
|
|
1
|
+
// For Library Version: 1.96.14
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -180,7 +180,7 @@ declare namespace sap {
|
|
|
180
180
|
* - `workbook.context` - Context object that will be applied to the generated file. It may contain the
|
|
181
181
|
* following fields:
|
|
182
182
|
* - `application` (string) - The application that creates the XLSX document (default: "SAP UI5")
|
|
183
|
-
* - `version` (string) - Application version that creates the XLSX document (default: "1.96.
|
|
183
|
+
* - `version` (string) - Application version that creates the XLSX document (default: "1.96.14")
|
|
184
184
|
* - `title` (string) - Title of the XLSX document (NOT the filename)
|
|
185
185
|
* - `modifiedBy` (string) - User context for the XLSX document
|
|
186
186
|
* - `sheetName` (string) - The label of the data sheet
|
|
@@ -266,7 +266,7 @@ declare namespace sap {
|
|
|
266
266
|
* columns: aColumns,
|
|
267
267
|
* context: {
|
|
268
268
|
* application: 'Debug Test Application',
|
|
269
|
-
* version: '1.96.
|
|
269
|
+
* version: '1.96.14',
|
|
270
270
|
* title: 'Some random title',
|
|
271
271
|
* modifiedBy: 'John Doe',
|
|
272
272
|
* metaSheetName: 'Custom metadata',
|
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.96.
|
|
1
|
+
// For Library Version: 1.96.14
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -238,7 +238,7 @@ declare namespace sap {
|
|
|
238
238
|
static getType(): string;
|
|
239
239
|
}
|
|
240
240
|
/**
|
|
241
|
-
* @SINCE 1.96.
|
|
241
|
+
* @SINCE 1.96.14
|
|
242
242
|
*
|
|
243
243
|
* Defines the Audiences.
|
|
244
244
|
*/
|
|
@@ -257,7 +257,7 @@ declare namespace sap {
|
|
|
257
257
|
Internal = "Internal",
|
|
258
258
|
}
|
|
259
259
|
/**
|
|
260
|
-
* @SINCE 1.96.
|
|
260
|
+
* @SINCE 1.96.14
|
|
261
261
|
*
|
|
262
262
|
* Issue Categories.
|
|
263
263
|
*/
|
|
@@ -312,7 +312,7 @@ declare namespace sap {
|
|
|
312
312
|
Usage = "Usage",
|
|
313
313
|
}
|
|
314
314
|
/**
|
|
315
|
-
* @SINCE 1.96.
|
|
315
|
+
* @SINCE 1.96.14
|
|
316
316
|
*
|
|
317
317
|
* Analysis history formats.
|
|
318
318
|
*/
|
|
@@ -327,7 +327,7 @@ declare namespace sap {
|
|
|
327
327
|
String = "String",
|
|
328
328
|
}
|
|
329
329
|
/**
|
|
330
|
-
* @SINCE 1.96.
|
|
330
|
+
* @SINCE 1.96.14
|
|
331
331
|
*
|
|
332
332
|
* Defines severity types.
|
|
333
333
|
*/
|
|
@@ -346,7 +346,7 @@ declare namespace sap {
|
|
|
346
346
|
Medium = "Medium",
|
|
347
347
|
}
|
|
348
348
|
/**
|
|
349
|
-
* @SINCE 1.96.
|
|
349
|
+
* @SINCE 1.96.14
|
|
350
350
|
*
|
|
351
351
|
* Contains the available system presets.
|
|
352
352
|
*/
|
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.96.
|
|
1
|
+
// For Library Version: 1.96.14
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -217,8 +217,9 @@ declare namespace sap {
|
|
|
217
217
|
/**
|
|
218
218
|
* @SINCE 1.28.9
|
|
219
219
|
*
|
|
220
|
-
* If set, the
|
|
221
|
-
* is set, the default
|
|
220
|
+
* If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
|
|
221
|
+
* valid property is set, the current locale's default is applied. Note: This property should not be used
|
|
222
|
+
* with the calendarWeekNumbering property.
|
|
222
223
|
*/
|
|
223
224
|
firstDayOfWeek?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
224
225
|
|
|
@@ -273,6 +274,17 @@ declare namespace sap {
|
|
|
273
274
|
| boolean
|
|
274
275
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
275
276
|
|
|
277
|
+
/**
|
|
278
|
+
* @SINCE 1.96.15
|
|
279
|
+
*
|
|
280
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
281
|
+
* global configuration is used. Note: This property should not be used with firstDayOfWeek property. Note:
|
|
282
|
+
* This API has been introduced with version 1.108 and downported to this release with patch level 15.
|
|
283
|
+
*/
|
|
284
|
+
calendarWeekNumbering?:
|
|
285
|
+
| sap.ui.core.date.CalendarWeekNumbering
|
|
286
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
287
|
+
|
|
276
288
|
/**
|
|
277
289
|
* Date Ranges for selected dates of the DatePicker
|
|
278
290
|
*/
|
|
@@ -2031,6 +2043,16 @@ declare namespace sap {
|
|
|
2031
2043
|
* ariaLabelledBy}.
|
|
2032
2044
|
*/
|
|
2033
2045
|
getAriaLabelledBy(): sap.ui.core.ID[];
|
|
2046
|
+
/**
|
|
2047
|
+
* @SINCE 1.96.15
|
|
2048
|
+
*
|
|
2049
|
+
* Gets current value of property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
2050
|
+
*
|
|
2051
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
2052
|
+
* global configuration is used. Note: This property should not be used with firstDayOfWeek property. Note:
|
|
2053
|
+
* This API has been introduced with version 1.108 and downported to this release with patch level 15.
|
|
2054
|
+
*/
|
|
2055
|
+
getCalendarWeekNumbering(): sap.ui.core.date.CalendarWeekNumbering;
|
|
2034
2056
|
/**
|
|
2035
2057
|
* Gets current value of property {@link #getDate date}.
|
|
2036
2058
|
*
|
|
@@ -2051,8 +2073,9 @@ declare namespace sap {
|
|
|
2051
2073
|
*
|
|
2052
2074
|
* Gets current value of property {@link #getFirstDayOfWeek firstDayOfWeek}.
|
|
2053
2075
|
*
|
|
2054
|
-
* If set, the
|
|
2055
|
-
* is set, the default
|
|
2076
|
+
* If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
|
|
2077
|
+
* valid property is set, the current locale's default is applied. Note: This property should not be used
|
|
2078
|
+
* with the calendarWeekNumbering property.
|
|
2056
2079
|
*
|
|
2057
2080
|
* Default value is `-1`.
|
|
2058
2081
|
*/
|
|
@@ -2292,6 +2315,23 @@ declare namespace sap {
|
|
|
2292
2315
|
*/
|
|
2293
2316
|
vSpecialDate: int | string | sap.ui.unified.DateTypeRange
|
|
2294
2317
|
): sap.ui.unified.DateTypeRange;
|
|
2318
|
+
/**
|
|
2319
|
+
* @SINCE 1.96.15
|
|
2320
|
+
*
|
|
2321
|
+
* Sets a new value for property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
2322
|
+
*
|
|
2323
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
2324
|
+
* global configuration is used. Note: This property should not be used with firstDayOfWeek property. Note:
|
|
2325
|
+
* This API has been introduced with version 1.108 and downported to this release with patch level 15.
|
|
2326
|
+
*
|
|
2327
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2328
|
+
*/
|
|
2329
|
+
setCalendarWeekNumbering(
|
|
2330
|
+
/**
|
|
2331
|
+
* New value for property `calendarWeekNumbering`
|
|
2332
|
+
*/
|
|
2333
|
+
sCalendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering
|
|
2334
|
+
): this;
|
|
2295
2335
|
/**
|
|
2296
2336
|
* Sets a new value for property {@link #getDate date}.
|
|
2297
2337
|
*
|
|
@@ -2311,8 +2351,9 @@ declare namespace sap {
|
|
|
2311
2351
|
*
|
|
2312
2352
|
* Sets a new value for property {@link #getFirstDayOfWeek firstDayOfWeek}.
|
|
2313
2353
|
*
|
|
2314
|
-
* If set, the
|
|
2315
|
-
* is set, the default
|
|
2354
|
+
* If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
|
|
2355
|
+
* valid property is set, the current locale's default is applied. Note: This property should not be used
|
|
2356
|
+
* with the calendarWeekNumbering property.
|
|
2316
2357
|
*
|
|
2317
2358
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2318
2359
|
*
|
|
@@ -4518,8 +4559,9 @@ declare namespace sap {
|
|
|
4518
4559
|
/**
|
|
4519
4560
|
* @SINCE 1.28.9
|
|
4520
4561
|
*
|
|
4521
|
-
* If set, the
|
|
4522
|
-
* is set, the default
|
|
4562
|
+
* If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
|
|
4563
|
+
* valid property is set, the current locale's default is applied. Note: This property should not be used
|
|
4564
|
+
* with the calendarWeekNumbering property.
|
|
4523
4565
|
*/
|
|
4524
4566
|
firstDayOfWeek?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
4525
4567
|
|
|
@@ -4614,6 +4656,17 @@ declare namespace sap {
|
|
|
4614
4656
|
| boolean
|
|
4615
4657
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
4616
4658
|
|
|
4659
|
+
/**
|
|
4660
|
+
* @SINCE 1.96.15
|
|
4661
|
+
*
|
|
4662
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
4663
|
+
* global configuration is used. Note: This property should not be used with firstDayOfWeek property. Note:
|
|
4664
|
+
* This API has been introduced with version 1.108 and downported to this release with patch level 15.
|
|
4665
|
+
*/
|
|
4666
|
+
calendarWeekNumbering?:
|
|
4667
|
+
| sap.ui.core.date.CalendarWeekNumbering
|
|
4668
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
4669
|
+
|
|
4617
4670
|
/**
|
|
4618
4671
|
* Dates or date ranges for selected dates.
|
|
4619
4672
|
*
|
|
@@ -6813,6 +6866,16 @@ declare namespace sap {
|
|
|
6813
6866
|
* ariaLabelledBy}.
|
|
6814
6867
|
*/
|
|
6815
6868
|
getAriaLabelledBy(): sap.ui.core.ID[];
|
|
6869
|
+
/**
|
|
6870
|
+
* @SINCE 1.96.15
|
|
6871
|
+
*
|
|
6872
|
+
* Gets current value of property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
6873
|
+
*
|
|
6874
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
6875
|
+
* global configuration is used. Note: This property should not be used with firstDayOfWeek property. Note:
|
|
6876
|
+
* This API has been introduced with version 1.108 and downported to this release with patch level 15.
|
|
6877
|
+
*/
|
|
6878
|
+
getCalendarWeekNumbering(): sap.ui.core.date.CalendarWeekNumbering;
|
|
6816
6879
|
/**
|
|
6817
6880
|
* @SINCE 1.38.0
|
|
6818
6881
|
*
|
|
@@ -6829,8 +6892,9 @@ declare namespace sap {
|
|
|
6829
6892
|
*
|
|
6830
6893
|
* Gets current value of property {@link #getFirstDayOfWeek firstDayOfWeek}.
|
|
6831
6894
|
*
|
|
6832
|
-
* If set, the
|
|
6833
|
-
* is set, the default
|
|
6895
|
+
* If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
|
|
6896
|
+
* valid property is set, the current locale's default is applied. Note: This property should not be used
|
|
6897
|
+
* with the calendarWeekNumbering property.
|
|
6834
6898
|
*
|
|
6835
6899
|
* Default value is `-1`.
|
|
6836
6900
|
*/
|
|
@@ -7150,13 +7214,31 @@ declare namespace sap {
|
|
|
7150
7214
|
*/
|
|
7151
7215
|
vSpecialDate: int | string | sap.ui.unified.DateTypeRange
|
|
7152
7216
|
): sap.ui.unified.DateTypeRange;
|
|
7217
|
+
/**
|
|
7218
|
+
* @SINCE 1.96.15
|
|
7219
|
+
*
|
|
7220
|
+
* Sets a new value for property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
7221
|
+
*
|
|
7222
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
7223
|
+
* global configuration is used. Note: This property should not be used with firstDayOfWeek property. Note:
|
|
7224
|
+
* This API has been introduced with version 1.108 and downported to this release with patch level 15.
|
|
7225
|
+
*
|
|
7226
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
7227
|
+
*/
|
|
7228
|
+
setCalendarWeekNumbering(
|
|
7229
|
+
/**
|
|
7230
|
+
* New value for property `calendarWeekNumbering`
|
|
7231
|
+
*/
|
|
7232
|
+
sCalendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering
|
|
7233
|
+
): this;
|
|
7153
7234
|
/**
|
|
7154
7235
|
* @SINCE 1.28.9
|
|
7155
7236
|
*
|
|
7156
7237
|
* Sets a new value for property {@link #getFirstDayOfWeek firstDayOfWeek}.
|
|
7157
7238
|
*
|
|
7158
|
-
* If set, the
|
|
7159
|
-
* is set, the default
|
|
7239
|
+
* If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
|
|
7240
|
+
* valid property is set, the current locale's default is applied. Note: This property should not be used
|
|
7241
|
+
* with the calendarWeekNumbering property.
|
|
7160
7242
|
*
|
|
7161
7243
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
7162
7244
|
*
|
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ushell.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED
package/types/sap.zen.dsh.d.ts
CHANGED