@sapui5/ts-types 1.151.0 → 1.152.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +18 -1
- package/types/sap.f.d.ts +1189 -292
- package/types/sap.fe.ariba.d.ts +1 -1
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +61 -9
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +40 -34
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +12 -2
- 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 +14 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +114 -3
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +915 -3
- 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 +4 -2
- package/types/sap.ui.core.d.ts +175 -12
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +7 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.geomap.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +101 -325
- package/types/sap.ui.joule.frontend.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +33 -7
- package/types/sap.ui.mdc.d.ts +26 -1
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +3 -3
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +60 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +1 -1
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +63 -46
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
package/types/sap.ui.layout.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.152.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -193,15 +193,21 @@ declare namespace sap {
|
|
|
193
193
|
| `{${string}}`;
|
|
194
194
|
|
|
195
195
|
/**
|
|
196
|
-
* Title of the `Form`. Can either be a
|
|
197
|
-
* of the title can be set.
|
|
196
|
+
* Title of the `Form`. Can either be a {@link sap.ui.core.Title Title} element or a string. If a `Title`
|
|
197
|
+
* element it used, the style of the title can be set.
|
|
198
198
|
*
|
|
199
199
|
* **Note:** If a {@link #getToolbar Toolbar} is used, the `Title` is ignored.
|
|
200
200
|
*
|
|
201
201
|
* **Note:** If the title is provided as a string, the title is rendered with a theme-dependent default
|
|
202
202
|
* level. As the `Form` control cannot know the structure of the page, this might not fit the page structure.
|
|
203
|
-
* In this case, provide the title using a
|
|
203
|
+
* In this case, provide the title using a {@link sap.ui.core.Title Title} element and set its {@link sap.ui.core.Title#setLevel level }
|
|
204
204
|
* to the needed value.
|
|
205
|
+
*
|
|
206
|
+
* **Note:** Do not use {@link sap.ui.core.Title#setIcon icon} for {@link sap.ui.core.Title Title}. If an
|
|
207
|
+
* icon is needed, use a {@link #setToolbar Toolbar} to show both title and icon.
|
|
208
|
+
*
|
|
209
|
+
* **Note:** Do not use {@link sap.ui.core.Title#setEmphasized emphasized} for {@link sap.ui.core.Title Title}.
|
|
210
|
+
* This is not supported in current themes and might lead to accessibillity issues.
|
|
205
211
|
*/
|
|
206
212
|
title?:
|
|
207
213
|
| string
|
|
@@ -288,6 +294,12 @@ declare namespace sap {
|
|
|
288
294
|
* level. As the `Form` control cannot know the structure of the page, this might not fit the page structure.
|
|
289
295
|
* In this case provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel level }
|
|
290
296
|
* to the needed value.
|
|
297
|
+
*
|
|
298
|
+
* **Note:** Do not use {@link sap.ui.core.Title#setIcon icon} for {@link sap.ui.core.Title Title}. If an
|
|
299
|
+
* icon is needed, use a {@link #setToolbar Toolbar} to show both title and icon.
|
|
300
|
+
*
|
|
301
|
+
* **Note:** Do not use {@link sap.ui.core.Title#setEmphasized emphasized} for {@link sap.ui.core.Title Title}.
|
|
302
|
+
* This is not supported in current themes and might lead to accessibillity issues.
|
|
291
303
|
*/
|
|
292
304
|
title?:
|
|
293
305
|
| string
|
|
@@ -1881,15 +1893,21 @@ declare namespace sap {
|
|
|
1881
1893
|
/**
|
|
1882
1894
|
* Gets content of aggregation {@link #getTitle title}.
|
|
1883
1895
|
*
|
|
1884
|
-
* Title of the `Form`. Can either be a
|
|
1885
|
-
* of the title can be set.
|
|
1896
|
+
* Title of the `Form`. Can either be a {@link sap.ui.core.Title Title} element or a string. If a `Title`
|
|
1897
|
+
* element it used, the style of the title can be set.
|
|
1886
1898
|
*
|
|
1887
1899
|
* **Note:** If a {@link #getToolbar Toolbar} is used, the `Title` is ignored.
|
|
1888
1900
|
*
|
|
1889
1901
|
* **Note:** If the title is provided as a string, the title is rendered with a theme-dependent default
|
|
1890
1902
|
* level. As the `Form` control cannot know the structure of the page, this might not fit the page structure.
|
|
1891
|
-
* In this case, provide the title using a
|
|
1903
|
+
* In this case, provide the title using a {@link sap.ui.core.Title Title} element and set its {@link sap.ui.core.Title#setLevel level }
|
|
1892
1904
|
* to the needed value.
|
|
1905
|
+
*
|
|
1906
|
+
* **Note:** Do not use {@link sap.ui.core.Title#setIcon icon} for {@link sap.ui.core.Title Title}. If an
|
|
1907
|
+
* icon is needed, use a {@link #setToolbar Toolbar} to show both title and icon.
|
|
1908
|
+
*
|
|
1909
|
+
* **Note:** Do not use {@link sap.ui.core.Title#setEmphasized emphasized} for {@link sap.ui.core.Title Title}.
|
|
1910
|
+
* This is not supported in current themes and might lead to accessibillity issues.
|
|
1893
1911
|
*/
|
|
1894
1912
|
getTitle(): sap.ui.core.Title | string;
|
|
1895
1913
|
/**
|
|
@@ -2254,6 +2272,12 @@ declare namespace sap {
|
|
|
2254
2272
|
* level. As the `Form` control cannot know the structure of the page, this might not fit the page structure.
|
|
2255
2273
|
* In this case provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel level }
|
|
2256
2274
|
* to the needed value.
|
|
2275
|
+
*
|
|
2276
|
+
* **Note:** Do not use {@link sap.ui.core.Title#setIcon icon} for {@link sap.ui.core.Title Title}. If an
|
|
2277
|
+
* icon is needed, use a {@link #setToolbar Toolbar} to show both title and icon.
|
|
2278
|
+
*
|
|
2279
|
+
* **Note:** Do not use {@link sap.ui.core.Title#setEmphasized emphasized} for {@link sap.ui.core.Title Title}.
|
|
2280
|
+
* This is not supported in current themes and might lead to accessibillity issues.
|
|
2257
2281
|
*/
|
|
2258
2282
|
getTitle(): sap.ui.core.Title | string;
|
|
2259
2283
|
/**
|
|
@@ -15319,6 +15343,8 @@ declare namespace sap {
|
|
|
15319
15343
|
|
|
15320
15344
|
"sap/ui/layout/form/FormLayout": undefined;
|
|
15321
15345
|
|
|
15346
|
+
"sap/ui/layout/form/FormTitleUtil": undefined;
|
|
15347
|
+
|
|
15322
15348
|
"sap/ui/layout/form/GridContainerData": undefined;
|
|
15323
15349
|
|
|
15324
15350
|
"sap/ui/layout/form/GridElementData": undefined;
|
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.152.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/AggregationBaseDelegate" {
|
|
4
4
|
import BaseDelegate from "sap/ui/mdc/BaseDelegate";
|
|
@@ -2513,6 +2513,31 @@ declare module "sap/ui/mdc/TableDelegate" {
|
|
|
2513
2513
|
*/
|
|
2514
2514
|
oBindingInfo: sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
2515
2515
|
): void;
|
|
2516
|
+
/**
|
|
2517
|
+
* Validation hook that is invoked when the user confirms the personalization dialog.
|
|
2518
|
+
*
|
|
2519
|
+
* Applications can use this hook to validate the current personalization state, display their own messages,
|
|
2520
|
+
* and prevent the dialog from closing by resolving to `false`.
|
|
2521
|
+
*
|
|
2522
|
+
* Providing accessible feedback (e.g. screen reader announcements) while the validation is ongoing or once
|
|
2523
|
+
* it has completed is the responsibility of the implementation.
|
|
2524
|
+
*
|
|
2525
|
+
* @since 1.152
|
|
2526
|
+
*
|
|
2527
|
+
* @returns A promise that resolves to `false` (or the literal value `false`) to prevent the dialog from
|
|
2528
|
+
* closing. Any other value allows the dialog to close.
|
|
2529
|
+
*/
|
|
2530
|
+
validateP13nState(
|
|
2531
|
+
/**
|
|
2532
|
+
* Instance of the table
|
|
2533
|
+
*/
|
|
2534
|
+
oTable: sap.ui.mdc.Table,
|
|
2535
|
+
/**
|
|
2536
|
+
* The theoretical (not yet applied) external state of the table's personalization. The format matches the
|
|
2537
|
+
* one processed by {@link sap.ui.mdc.p13n.StateUtil StateUtil}.
|
|
2538
|
+
*/
|
|
2539
|
+
oState: object
|
|
2540
|
+
): Promise<boolean> | boolean;
|
|
2516
2541
|
}
|
|
2517
2542
|
const TableDelegate: TableDelegate;
|
|
2518
2543
|
export default TableDelegate;
|
package/types/sap.ui.rta.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.152.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/rta/api/startAdaptation" {
|
|
4
4
|
/**
|
|
@@ -212,12 +212,12 @@ declare namespace sap {
|
|
|
212
212
|
|
|
213
213
|
"sap/ui/rta/service/Outline": undefined;
|
|
214
214
|
|
|
215
|
+
"sap/ui/rta/service/OverlayInfo": undefined;
|
|
216
|
+
|
|
215
217
|
"sap/ui/rta/service/Property": undefined;
|
|
216
218
|
|
|
217
219
|
"sap/ui/rta/service/Selection": undefined;
|
|
218
220
|
|
|
219
|
-
"sap/ui/rta/service/SupportTools": undefined;
|
|
220
|
-
|
|
221
221
|
"sap/ui/rta/util/ReloadManager": undefined;
|
|
222
222
|
}
|
|
223
223
|
}
|
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.152.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -7269,6 +7269,22 @@ declare namespace sap {
|
|
|
7269
7269
|
| sap.ui.core.CSSColor
|
|
7270
7270
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
7271
7271
|
| `{${string}}`;
|
|
7272
|
+
|
|
7273
|
+
/**
|
|
7274
|
+
* Defines the value of the `aria-haspopup` attribute of the day cell.
|
|
7275
|
+
*
|
|
7276
|
+
* **Note:** Use this property only when the cell is related to a popover/popup. The value should be equal
|
|
7277
|
+
* to the main/root role of the popup.
|
|
7278
|
+
*
|
|
7279
|
+
* **Note:** Setting `type` to `sap.ui.unified.CalendarDayType.None` together with this property allows
|
|
7280
|
+
* adding the attribute without any visual marking.
|
|
7281
|
+
*
|
|
7282
|
+
* @since 1.152.0
|
|
7283
|
+
*/
|
|
7284
|
+
ariaHasPopup?:
|
|
7285
|
+
| sap.ui.core.aria.HasPopup
|
|
7286
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
7287
|
+
| `{${string}}`;
|
|
7272
7288
|
}
|
|
7273
7289
|
|
|
7274
7290
|
/**
|
|
@@ -15898,6 +15914,24 @@ declare namespace sap {
|
|
|
15898
15914
|
* @returns Metadata object describing this class
|
|
15899
15915
|
*/
|
|
15900
15916
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
15917
|
+
/**
|
|
15918
|
+
* Gets current value of property {@link #getAriaHasPopup ariaHasPopup}.
|
|
15919
|
+
*
|
|
15920
|
+
* Defines the value of the `aria-haspopup` attribute of the day cell.
|
|
15921
|
+
*
|
|
15922
|
+
* **Note:** Use this property only when the cell is related to a popover/popup. The value should be equal
|
|
15923
|
+
* to the main/root role of the popup.
|
|
15924
|
+
*
|
|
15925
|
+
* **Note:** Setting `type` to `sap.ui.unified.CalendarDayType.None` together with this property allows
|
|
15926
|
+
* adding the attribute without any visual marking.
|
|
15927
|
+
*
|
|
15928
|
+
* Default value is `None`.
|
|
15929
|
+
*
|
|
15930
|
+
* @since 1.152.0
|
|
15931
|
+
*
|
|
15932
|
+
* @returns Value of property `ariaHasPopup`
|
|
15933
|
+
*/
|
|
15934
|
+
getAriaHasPopup(): sap.ui.core.aria.HasPopup;
|
|
15901
15935
|
/**
|
|
15902
15936
|
* Gets current value of property {@link #getColor color}.
|
|
15903
15937
|
*
|
|
@@ -15933,6 +15967,31 @@ declare namespace sap {
|
|
|
15933
15967
|
* @returns Value of property `type`
|
|
15934
15968
|
*/
|
|
15935
15969
|
getType(): sap.ui.unified.CalendarDayType;
|
|
15970
|
+
/**
|
|
15971
|
+
* Sets a new value for property {@link #getAriaHasPopup ariaHasPopup}.
|
|
15972
|
+
*
|
|
15973
|
+
* Defines the value of the `aria-haspopup` attribute of the day cell.
|
|
15974
|
+
*
|
|
15975
|
+
* **Note:** Use this property only when the cell is related to a popover/popup. The value should be equal
|
|
15976
|
+
* to the main/root role of the popup.
|
|
15977
|
+
*
|
|
15978
|
+
* **Note:** Setting `type` to `sap.ui.unified.CalendarDayType.None` together with this property allows
|
|
15979
|
+
* adding the attribute without any visual marking.
|
|
15980
|
+
*
|
|
15981
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
15982
|
+
*
|
|
15983
|
+
* Default value is `None`.
|
|
15984
|
+
*
|
|
15985
|
+
* @since 1.152.0
|
|
15986
|
+
*
|
|
15987
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
15988
|
+
*/
|
|
15989
|
+
setAriaHasPopup(
|
|
15990
|
+
/**
|
|
15991
|
+
* New value for property `ariaHasPopup`
|
|
15992
|
+
*/
|
|
15993
|
+
sAriaHasPopup?: sap.ui.core.aria.HasPopup
|
|
15994
|
+
): this;
|
|
15936
15995
|
/**
|
|
15937
15996
|
* Sets a new value for property {@link #getColor color}.
|
|
15938
15997
|
*
|
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ui.vbm.d.ts
CHANGED
package/types/sap.ui.vk.d.ts
CHANGED
package/types/sap.ui.vtm.d.ts
CHANGED
package/types/sap.ushell.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.152.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -893,8 +893,8 @@ declare namespace sap {
|
|
|
893
893
|
};
|
|
894
894
|
|
|
895
895
|
/**
|
|
896
|
-
* A target describing the intent:
|
|
897
|
-
*
|
|
896
|
+
* A target describing the intent: #-?&/ **Note:** The
|
|
897
|
+
* intent shall not exceed 512 bytes when serialized as UTF-8.
|
|
898
898
|
*/
|
|
899
899
|
type Target = {
|
|
900
900
|
/**
|
|
@@ -910,10 +910,6 @@ declare namespace sap {
|
|
|
910
910
|
* The action part of the intent.
|
|
911
911
|
*/
|
|
912
912
|
action?: string;
|
|
913
|
-
/**
|
|
914
|
-
* The contextRaw part of the intent without the '~' prefix.
|
|
915
|
-
*/
|
|
916
|
-
contextRaw?: string;
|
|
917
913
|
/**
|
|
918
914
|
* The entire intent including parameters and appSpecificRoute.
|
|
919
915
|
* **Note:** If set all other parameters are ignored.
|
|
@@ -2779,10 +2775,6 @@ declare namespace sap {
|
|
|
2779
2775
|
* the action
|
|
2780
2776
|
*/
|
|
2781
2777
|
action: string;
|
|
2782
|
-
/**
|
|
2783
|
-
* the raw context string
|
|
2784
|
-
*/
|
|
2785
|
-
contextRaw: string;
|
|
2786
2778
|
/**
|
|
2787
2779
|
* the parameters
|
|
2788
2780
|
*/
|
|
@@ -2849,10 +2841,6 @@ declare namespace sap {
|
|
|
2849
2841
|
* the action
|
|
2850
2842
|
*/
|
|
2851
2843
|
action: string;
|
|
2852
|
-
/**
|
|
2853
|
-
* the raw context string
|
|
2854
|
-
*/
|
|
2855
|
-
contextRaw: string;
|
|
2856
2844
|
};
|
|
2857
2845
|
/**
|
|
2858
2846
|
* the parameters
|
|
@@ -6495,7 +6483,7 @@ declare namespace sap {
|
|
|
6495
6483
|
* @deprecated As of version 1.119. Please use {@link sap.ushell.services.NotificationsV2#executeBulkAction }
|
|
6496
6484
|
* instead.
|
|
6497
6485
|
*
|
|
6498
|
-
* @returns
|
|
6486
|
+
* @returns Resolves to undefined on success or is rejected with failed notifications
|
|
6499
6487
|
*/
|
|
6500
6488
|
executeBulkAction(
|
|
6501
6489
|
/**
|
|
@@ -6506,7 +6494,7 @@ declare namespace sap {
|
|
|
6506
6494
|
* The ID of the action that is being executed
|
|
6507
6495
|
*/
|
|
6508
6496
|
sActionId: string
|
|
6509
|
-
): Promise
|
|
6497
|
+
): jQuery.Promise;
|
|
6510
6498
|
/**
|
|
6511
6499
|
* Returns the notifications of the user sorted by type include the group headers and the notifications
|
|
6512
6500
|
*
|
|
@@ -7392,6 +7380,44 @@ declare namespace sap {
|
|
|
7392
7380
|
*/
|
|
7393
7381
|
protected constructor();
|
|
7394
7382
|
}
|
|
7383
|
+
/**
|
|
7384
|
+
* The Unified Shell's session handler service. Manages the timeout of an FLP session:
|
|
7385
|
+
* - Announces user activity to the platform (via the UShell container service).
|
|
7386
|
+
* - Maintains user activity data in local storage to support multi-browser-tab use cases.
|
|
7387
|
+
* - Notifies the user once the session is about to end, offering the option to extend the session.
|
|
7388
|
+
*
|
|
7389
|
+
* **Note:** To retrieve a valid instance of this service, it is necessary to call {@link sap.ushell.Container#getServiceAsync}.
|
|
7390
|
+
*
|
|
7391
|
+
* ```javascript
|
|
7392
|
+
*
|
|
7393
|
+
* sap.ui.require(["sap/ushell/Container"], async function (Container) {
|
|
7394
|
+
* const SessionHandler = await Container.getServiceAsync("SessionHandler");
|
|
7395
|
+
* // do something with the SessionHandler service
|
|
7396
|
+
* });
|
|
7397
|
+
* ```
|
|
7398
|
+
*
|
|
7399
|
+
*
|
|
7400
|
+
* This service should be available in any FLP context (native, iframe, ...).
|
|
7401
|
+
*
|
|
7402
|
+
* @since 1.151.0
|
|
7403
|
+
*/
|
|
7404
|
+
class SessionHandler extends sap.ushell.services.Service {
|
|
7405
|
+
/**
|
|
7406
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
7407
|
+
*/
|
|
7408
|
+
protected constructor();
|
|
7409
|
+
|
|
7410
|
+
/**
|
|
7411
|
+
* Notifies the FLP that the user is currently active, so the FLP treats the session as active and defers
|
|
7412
|
+
* idle warnings / automatic sign-out.
|
|
7413
|
+
*
|
|
7414
|
+
* Intended for apps whose user activity the FLP cannot observe directly (e.g. content embedded in an iframe).
|
|
7415
|
+
* The app decides when the user is active and calls this to signal it.
|
|
7416
|
+
*
|
|
7417
|
+
* @since 1.151.0
|
|
7418
|
+
*/
|
|
7419
|
+
notifyUserActivity(): void;
|
|
7420
|
+
}
|
|
7395
7421
|
/**
|
|
7396
7422
|
* The Unified Shell's internal navigation service (platform independent).
|
|
7397
7423
|
*
|
|
@@ -7480,7 +7506,7 @@ declare namespace sap {
|
|
|
7480
7506
|
* whether an transient appstate is sufficient
|
|
7481
7507
|
*/
|
|
7482
7508
|
bTransient?: boolean
|
|
7483
|
-
): Promise
|
|
7509
|
+
): jQuery.Promise;
|
|
7484
7510
|
/**
|
|
7485
7511
|
* Returns the current navigation context.
|
|
7486
7512
|
*
|
|
@@ -7847,7 +7873,7 @@ declare namespace sap {
|
|
|
7847
7873
|
*
|
|
7848
7874
|
* @since 1.16.0
|
|
7849
7875
|
*
|
|
7850
|
-
* @returns the hash part of an URL, e.g. `"Object-name
|
|
7876
|
+
* @returns the hash part of an URL, e.g. `"Object-name?PV1=PV2&PV4=V5&/display/detail/7?UU=HH` Returns
|
|
7851
7877
|
* an empty string in case no shell hash was provided.
|
|
7852
7878
|
*/
|
|
7853
7879
|
constructShellHash(
|
|
@@ -7878,8 +7904,8 @@ declare namespace sap {
|
|
|
7878
7904
|
* should be treated as opaque) The URL has to comply with the Fiori-Wave 2 agreed upon format This
|
|
7879
7905
|
* service shall be used to extract a hash part from an url. The result can be further broken up by parseShellHash
|
|
7880
7906
|
*
|
|
7881
|
-
* Examples http://a.b.c?defhij#SemanticObject-Action
|
|
7882
|
-
* returns : "#SemanticObject-Action
|
|
7907
|
+
* Examples http://a.b.c?defhij#SemanticObject-Action?PV1=A&PV2=B&/appspecific
|
|
7908
|
+
* returns : "#SemanticObject-Action?PV1=A&PV2=B&/appspecific"
|
|
7883
7909
|
*
|
|
7884
7910
|
* Note: the results when passing an illegal (non-compliant) url are undefined and subject to change w.o.
|
|
7885
7911
|
* notice. Notably further checks may added. The design is deliberately restrictive and non-robust.
|
|
@@ -7891,7 +7917,7 @@ declare namespace sap {
|
|
|
7891
7917
|
getShellHash(
|
|
7892
7918
|
/**
|
|
7893
7919
|
* a valid (Shell) url, e.g.
|
|
7894
|
-
* `http://xx.b.c#Object-name
|
|
7920
|
+
* `http://xx.b.c#Object-name?PV1=PV2&PV4=V5&/display/detail/7?UU=HH`
|
|
7895
7921
|
*/
|
|
7896
7922
|
sShellHashString: sap.ui.core.URI
|
|
7897
7923
|
): sap.ushell.services.Navigation.TargetIntent;
|
|
@@ -7977,9 +8003,8 @@ declare namespace sap {
|
|
|
7977
8003
|
*/
|
|
7978
8004
|
parseShellHash(
|
|
7979
8005
|
/**
|
|
7980
|
-
* Hash part of a shell compliant URL `#SO-Action
|
|
7981
|
-
*
|
|
7982
|
-
* e.g. `"#Object-name~AFE2==?PV1=PV2&PV4=V5&/display/detail/7?UU=HH`
|
|
8006
|
+
* Hash part of a shell compliant URL `#SO-Action?P1=a&P2=x&/route?RPV=1` the hash part of an URL,
|
|
8007
|
+
* e.g. `"#Object-name?PV1=PV2&PV4=V5&/display/detail/7?UU=HH`
|
|
7983
8008
|
*/
|
|
7984
8009
|
sHash: sap.ushell.services.Navigation.TargetIntent
|
|
7985
8010
|
): sap.ushell.services.URLParsing.DecomposedHash;
|
|
@@ -7994,7 +8019,7 @@ declare namespace sap {
|
|
|
7994
8019
|
* ```javascript
|
|
7995
8020
|
*
|
|
7996
8021
|
* {
|
|
7997
|
-
* shellPart : "Object-name
|
|
8022
|
+
* shellPart : "Object-name?PV1=PV2&PV4=V5",
|
|
7998
8023
|
* appSpecificRoute : "display/detail/7?UU=HH"
|
|
7999
8024
|
* }
|
|
8000
8025
|
* ```
|
|
@@ -8002,8 +8027,8 @@ declare namespace sap {
|
|
|
8002
8027
|
*/
|
|
8003
8028
|
splitHash(
|
|
8004
8029
|
/**
|
|
8005
|
-
* The hash part of a shell conformant URL. It has to have the following format: #SO-Action
|
|
8006
|
-
* Here is an example for the hash part of an URL: "#Object-name
|
|
8030
|
+
* The hash part of a shell conformant URL. It has to have the following format: #SO-Action?P1=a&P2=x&/route?RPV=1
|
|
8031
|
+
* Here is an example for the hash part of an URL: "#Object-name?PV1=PV2&PV4=V5&/display/detail/7?UU=HH
|
|
8007
8032
|
*/
|
|
8008
8033
|
sHash: sap.ushell.services.Navigation.TargetIntent
|
|
8009
8034
|
): sap.ushell.services.URLParsing.SplitHash;
|
|
@@ -8195,7 +8220,7 @@ declare namespace sap {
|
|
|
8195
8220
|
*/
|
|
8196
8221
|
type HashComparison = {
|
|
8197
8222
|
/**
|
|
8198
|
-
* The intent is the semantic object
|
|
8223
|
+
* The intent is the semantic object and action of the hash
|
|
8199
8224
|
*
|
|
8200
8225
|
* @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
8201
8226
|
*/
|
|
@@ -8325,8 +8350,7 @@ declare namespace sap {
|
|
|
8325
8350
|
* {
|
|
8326
8351
|
* target: {
|
|
8327
8352
|
* semanticObject: string,
|
|
8328
|
-
* action: string
|
|
8329
|
-
* contextRaw: string
|
|
8353
|
+
* action: string
|
|
8330
8354
|
* },
|
|
8331
8355
|
* params: MapObject,
|
|
8332
8356
|
* appStateKey: string
|
|
@@ -8339,7 +8363,7 @@ declare namespace sap {
|
|
|
8339
8363
|
* @since 1.94.0
|
|
8340
8364
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8341
8365
|
*
|
|
8342
|
-
* @returns the hash part of an URL, e.g. `"Object-name
|
|
8366
|
+
* @returns the hash part of an URL, e.g. `"Object-name?PV1=PV2&PV4=V5&/display/detail/7?UU=HH` returns
|
|
8343
8367
|
* "" for an `undefined` object
|
|
8344
8368
|
*/
|
|
8345
8369
|
constructShellHash(
|
|
@@ -8374,8 +8398,8 @@ declare namespace sap {
|
|
|
8374
8398
|
* should be treated as opaque) The URL has to comply with the Fiori-Wave 2 agreed upon format This
|
|
8375
8399
|
* service shall be used to extract a hash part from an url. The result can be further broken up by parseShellHash
|
|
8376
8400
|
*
|
|
8377
|
-
* Examples http://a.b.c?defhij#SemanticObject-Action
|
|
8378
|
-
* returns : "#SemanticObject-Action
|
|
8401
|
+
* Examples http://a.b.c?defhij#SemanticObject-Action?PV1=A&PV2=B&/appspecific
|
|
8402
|
+
* returns : "#SemanticObject-Action?PV1=A&PV2=B&/appspecific"
|
|
8379
8403
|
*
|
|
8380
8404
|
* Note: the results when passing an illegal (non-compliant) url are undefined and subject to change w.o.
|
|
8381
8405
|
* notice. Notably further checks may added. The design is deliberately restrictive and non-robust.
|
|
@@ -8388,7 +8412,7 @@ declare namespace sap {
|
|
|
8388
8412
|
getShellHash(
|
|
8389
8413
|
/**
|
|
8390
8414
|
* a valid (Shell) url, e.g.
|
|
8391
|
-
* `http://xx.b.c#Object-name
|
|
8415
|
+
* `http://xx.b.c#Object-name?PV1=PV2&PV4=V5&/display/detail/7?UU=HH`
|
|
8392
8416
|
*/
|
|
8393
8417
|
sShellHashString: string
|
|
8394
8418
|
): object;
|
|
@@ -8478,8 +8502,6 @@ declare namespace sap {
|
|
|
8478
8502
|
*
|
|
8479
8503
|
* action : string,
|
|
8480
8504
|
*
|
|
8481
|
-
* contextRaw : string,
|
|
8482
|
-
*
|
|
8483
8505
|
* params : MapObject,
|
|
8484
8506
|
*
|
|
8485
8507
|
* appSpecificRoute : string
|
|
@@ -8490,9 +8512,8 @@ declare namespace sap {
|
|
|
8490
8512
|
*/
|
|
8491
8513
|
parseShellHash(
|
|
8492
8514
|
/**
|
|
8493
|
-
* Hash part of a shell compliant URL `#SO-Action
|
|
8494
|
-
*
|
|
8495
|
-
* e.g. `"#Object-name~AFE2==?PV1=PV2&PV4=V5&/display/detail/7?UU=HH`
|
|
8515
|
+
* Hash part of a shell compliant URL `#SO-Action?P1=a&P2=x&/route?RPV=1` the hash part of an URL,
|
|
8516
|
+
* e.g. `"#Object-name?PV1=PV2&PV4=V5&/display/detail/7?UU=HH`
|
|
8496
8517
|
*/
|
|
8497
8518
|
sHash: string,
|
|
8498
8519
|
/**
|
|
@@ -14733,12 +14754,6 @@ declare namespace sap {
|
|
|
14733
14754
|
|
|
14734
14755
|
"sap/ushell/modules/Notifications/NotificationsProvider": undefined;
|
|
14735
14756
|
|
|
14736
|
-
"sap/ushell/modules/ProductSwitch": undefined;
|
|
14737
|
-
|
|
14738
|
-
"sap/ushell/modules/ProductSwitch/ProductSwitchAPI": undefined;
|
|
14739
|
-
|
|
14740
|
-
"sap/ushell/modules/ProductSwitch/ProductSwitchProvider": undefined;
|
|
14741
|
-
|
|
14742
14757
|
"sap/ushell/modules/Search": undefined;
|
|
14743
14758
|
|
|
14744
14759
|
"sap/ushell/modules/Search/SearchAPI": undefined;
|
|
@@ -14855,6 +14870,8 @@ declare namespace sap {
|
|
|
14855
14870
|
|
|
14856
14871
|
"sap/ushell/services/SearchableContent": undefined;
|
|
14857
14872
|
|
|
14873
|
+
"sap/ushell/services/SessionHandler": undefined;
|
|
14874
|
+
|
|
14858
14875
|
"sap/ushell/services/ShellNavigation": undefined;
|
|
14859
14876
|
|
|
14860
14877
|
"sap/ushell/services/ShellNavigationInternal": undefined;
|
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED
package/types/sap.zen.dsh.d.ts
CHANGED