@sapui5/ts-types 1.84.25 → 1.84.26
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.f.d.ts +1 -1
- package/types/sap.m.d.ts +1 -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.suite.ui.commons.d.ts +6 -2
- 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 +1 -1
- package/types/sap.ui.core.d.ts +45 -5
- 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 +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.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.m.d.ts
CHANGED
package/types/sap.makit.d.ts
CHANGED
package/types/sap.me.d.ts
CHANGED
package/types/sap.ndc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.84.
|
|
1
|
+
// For Library Version: 1.84.12
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace suite {
|
|
@@ -7298,7 +7298,11 @@ declare namespace sap {
|
|
|
7298
7298
|
/**
|
|
7299
7299
|
* Object with additional style appended to info icon
|
|
7300
7300
|
*/
|
|
7301
|
-
oStyle: object
|
|
7301
|
+
oStyle: object,
|
|
7302
|
+
/**
|
|
7303
|
+
* Options passed to the method (optional).
|
|
7304
|
+
*/
|
|
7305
|
+
mOptions?: Object
|
|
7302
7306
|
): void;
|
|
7303
7307
|
/**
|
|
7304
7308
|
* Creates an SVG icon string.
|
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.comp.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ declare module "sap/base/util/Version";
|
|
|
18
18
|
declare module "sap/ui/performance/Measurement.Entry";
|
|
19
19
|
|
|
20
20
|
declare module "sap/ui/util/Storage.Type";
|
|
21
|
-
// For Library Version: 1.84.
|
|
21
|
+
// For Library Version: 1.84.25
|
|
22
22
|
/**
|
|
23
23
|
* Root namespace for JavaScript functionality provided by SAP SE.
|
|
24
24
|
*
|
|
@@ -27587,6 +27587,25 @@ declare namespace sap {
|
|
|
27587
27587
|
* Returns whether the Popup is currently open, closed, or in a transition between these states.
|
|
27588
27588
|
*/
|
|
27589
27589
|
getOpenState(): sap.ui.core.OpenState;
|
|
27590
|
+
/**
|
|
27591
|
+
* @SINCE 1.84.26
|
|
27592
|
+
*
|
|
27593
|
+
* Returns the value that has been set by {@link sap.ui.core.Popup.setWithinArea}. When a DOM element that
|
|
27594
|
+
* represents the within area is needed, use {@link sap.ui.core.Popup.getWithinAreaDomRef} instead.
|
|
27595
|
+
*
|
|
27596
|
+
* If no within area is specified, `undefined` is returned.
|
|
27597
|
+
*/
|
|
27598
|
+
static getWithinArea(): string | Element | sap.ui.core.Element | Window;
|
|
27599
|
+
/**
|
|
27600
|
+
* @SINCE 1.84.26
|
|
27601
|
+
*
|
|
27602
|
+
* Returns the actual DOM element of the value that has been set by {@link sap.ui.core.Popup.setWithinArea}.
|
|
27603
|
+
* It returns `window` by default when no within area has been set using {@link sap.ui.core.Popup.setWithinArea}.
|
|
27604
|
+
*
|
|
27605
|
+
* When an {@link sap.ui.core.Element} is set as a within area, `document.documentElement` is returned before
|
|
27606
|
+
* element is rendered.
|
|
27607
|
+
*/
|
|
27608
|
+
static getWithinAreaDomRef(): Element | Window;
|
|
27590
27609
|
/**
|
|
27591
27610
|
* Returns whether the Popup is currently open (this includes opening and closing animations).
|
|
27592
27611
|
*/
|
|
@@ -27636,13 +27655,14 @@ declare namespace sap {
|
|
|
27636
27655
|
*/
|
|
27637
27656
|
offset?: string,
|
|
27638
27657
|
/**
|
|
27639
|
-
* defines how the position of an element should be adjusted in case it overflows the window
|
|
27658
|
+
* defines how the position of an element should be adjusted in case it overflows the window or the within
|
|
27659
|
+
* area that is set via {@link sap.ui.core.Popup.setWithinArea} in some direction.
|
|
27640
27660
|
*/
|
|
27641
27661
|
collision?: string,
|
|
27642
27662
|
/**
|
|
27643
27663
|
* defines whether the popup should follow the dock reference when the reference changes its position.
|
|
27644
27664
|
*/
|
|
27645
|
-
followOf?: boolean
|
|
27665
|
+
followOf?: boolean | Function
|
|
27646
27666
|
): void;
|
|
27647
27667
|
/**
|
|
27648
27668
|
* @SINCE 1.75
|
|
@@ -27800,8 +27820,9 @@ declare namespace sap {
|
|
|
27800
27820
|
*/
|
|
27801
27821
|
offset?: string,
|
|
27802
27822
|
/**
|
|
27803
|
-
* defines how the position of an element should be adjusted in case it overflows the window
|
|
27804
|
-
*
|
|
27823
|
+
* defines how the position of an element should be adjusted in case it overflows the window or the within
|
|
27824
|
+
* area that is set via {@link sap.ui.core.Popup.setWithinArea} in some direction. The valid values that
|
|
27825
|
+
* refer to jQuery-UI's position parameters are "flip", "fit" and "none".
|
|
27805
27826
|
*/
|
|
27806
27827
|
collision?: string
|
|
27807
27828
|
): sap.ui.core.Popup;
|
|
@@ -27815,6 +27836,25 @@ declare namespace sap {
|
|
|
27815
27836
|
*/
|
|
27816
27837
|
bShowShadow: boolean
|
|
27817
27838
|
): sap.ui.core.Popup;
|
|
27839
|
+
/**
|
|
27840
|
+
* @SINCE 1.84.26
|
|
27841
|
+
*
|
|
27842
|
+
* Sets a within area that is used as the area available for positioning the popup. It mainly affects the
|
|
27843
|
+
* collision detection. The position of the popup can then be further adapted depending on the "collision"
|
|
27844
|
+
* parameter that is set with {@link sap.ui.core.Popup#open} or {@link sap.ui.core.Popup#setPosition} when
|
|
27845
|
+
* the popup overflows the within area.
|
|
27846
|
+
*
|
|
27847
|
+
* If no within area is specified, all popups use the `window` as within area.
|
|
27848
|
+
*
|
|
27849
|
+
* When an {@link sap.ui.core.Element} is set as the within area, make sure that the control is rendered
|
|
27850
|
+
* when the popup opens, otherwise the `window` is used as the within area.
|
|
27851
|
+
*/
|
|
27852
|
+
static setWithinArea(
|
|
27853
|
+
/**
|
|
27854
|
+
* The within area
|
|
27855
|
+
*/
|
|
27856
|
+
vValue: string | Element | sap.ui.core.Element | Window
|
|
27857
|
+
): void;
|
|
27818
27858
|
/**
|
|
27819
27859
|
* Attaches event handler `fnFunction` to the static {@link #.blockLayerStateChange blockLayerStateChange}
|
|
27820
27860
|
* event.
|
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.84.
|
|
1
|
+
// For Library Version: 1.84.25
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
|
|
@@ -75,7 +75,7 @@ class Spreadsheet{
|
|
|
75
75
|
* - `workbook.context` - Context object that will be applied to the generated file. It may contain the
|
|
76
76
|
* following fields:
|
|
77
77
|
* - `application` (string) - The application that creates the XLSX document (default: "SAP UI5")
|
|
78
|
-
* - `version` (string) - Application version that creates the XLSX document (default: "1.84.
|
|
78
|
+
* - `version` (string) - Application version that creates the XLSX document (default: "1.84.25")
|
|
79
79
|
* - `title` (string) - Title of the XLSX document (NOT the filename)
|
|
80
80
|
* - `modifiedBy` (string) - User context for the XLSX document
|
|
81
81
|
* - `sheetName` (string) - The label of the data sheet
|
|
@@ -161,7 +161,7 @@ class Spreadsheet{
|
|
|
161
161
|
* columns: aColumns,
|
|
162
162
|
* context: {
|
|
163
163
|
* application: 'Debug Test Application',
|
|
164
|
-
* version: '1.84.
|
|
164
|
+
* version: '1.84.25',
|
|
165
165
|
* title: 'Some random title',
|
|
166
166
|
* modifiedBy: 'John Doe',
|
|
167
167
|
* 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.84.
|
|
1
|
+
// For Library Version: 1.84.25
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -237,7 +237,7 @@ declare namespace sap {
|
|
|
237
237
|
static getType(): string;
|
|
238
238
|
}
|
|
239
239
|
/**
|
|
240
|
-
* @SINCE 1.84.
|
|
240
|
+
* @SINCE 1.84.25
|
|
241
241
|
*
|
|
242
242
|
* Defines the Audiences.
|
|
243
243
|
*/
|
|
@@ -256,7 +256,7 @@ declare namespace sap {
|
|
|
256
256
|
Internal,
|
|
257
257
|
}
|
|
258
258
|
/**
|
|
259
|
-
* @SINCE 1.84.
|
|
259
|
+
* @SINCE 1.84.25
|
|
260
260
|
*
|
|
261
261
|
* Issue Categories.
|
|
262
262
|
*/
|
|
@@ -311,7 +311,7 @@ declare namespace sap {
|
|
|
311
311
|
Usage,
|
|
312
312
|
}
|
|
313
313
|
/**
|
|
314
|
-
* @SINCE 1.84.
|
|
314
|
+
* @SINCE 1.84.25
|
|
315
315
|
*
|
|
316
316
|
* Analysis history formats.
|
|
317
317
|
*/
|
|
@@ -326,7 +326,7 @@ declare namespace sap {
|
|
|
326
326
|
String,
|
|
327
327
|
}
|
|
328
328
|
/**
|
|
329
|
-
* @SINCE 1.84.
|
|
329
|
+
* @SINCE 1.84.25
|
|
330
330
|
*
|
|
331
331
|
* Defines severity types.
|
|
332
332
|
*/
|
|
@@ -345,7 +345,7 @@ declare namespace sap {
|
|
|
345
345
|
Medium,
|
|
346
346
|
}
|
|
347
347
|
/**
|
|
348
|
-
* @SINCE 1.84.
|
|
348
|
+
* @SINCE 1.84.25
|
|
349
349
|
*
|
|
350
350
|
* Contains the available system presets.
|
|
351
351
|
*/
|
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ui.vbm.d.ts
CHANGED
package/types/sap.ushell.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED