@sapui5/types 1.142.0 → 1.143.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/index.d.ts +1 -0
- 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.cux.home.d.ts +7 -3
- package/types/sap.esh.search.ui.d.ts +651 -13
- package/types/sap.f.d.ts +8 -1
- 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 +1 -6
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +40 -78
- 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 +1 -1
- package/types/sap.fe.test.d.ts +7 -2
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +167 -11
- 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 +216 -11
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +24 -2
- 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 +7 -4
- package/types/sap.ui.core.d.ts +62 -47
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +3 -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.geomap.d.ts +27255 -0
- package/types/sap.ui.integration.d.ts +45 -9
- package/types/sap.ui.layout.d.ts +64 -46
- package/types/sap.ui.mdc.d.ts +529 -125
- package/types/sap.ui.richtexteditor.d.ts +52 -15
- 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 +1 -1
- package/types/sap.ui.table.d.ts +35 -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.ui.vk.d.ts +55 -1
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +53 -8
- 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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.143.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/richtexteditor/library" {
|
|
4
4
|
/**
|
|
@@ -101,8 +101,7 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
101
101
|
* Below is a list of supported groups and buttons, which can be specified in the configuration objects
|
|
102
102
|
* (format is <>: <>):
|
|
103
103
|
* - font-style: bold, italic, underline, strikethrough
|
|
104
|
-
* - font: fontfamily
|
|
105
|
-
*
|
|
104
|
+
* - font: fontfamily, fontsize, forecolor, backcolor
|
|
106
105
|
* - clipboard: cut, copy, paste
|
|
107
106
|
* - structure: bullist, numlist, outdent, indent
|
|
108
107
|
* - undo: undo, redo
|
|
@@ -697,9 +696,9 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
697
696
|
* Gets current value of property {@link #getCustomToolbar customToolbar}.
|
|
698
697
|
*
|
|
699
698
|
* Determines whether a Fiori Toolbar is used instead of the TinyMCE default toolbar one. It is applied
|
|
700
|
-
* only when the EditorType is
|
|
701
|
-
*
|
|
702
|
-
*
|
|
699
|
+
* only when the EditorType is TinyMCE6 or TinyMCE7 and sap.m library is loaded. **Note:** The `customToolbar`
|
|
700
|
+
* property will have effect only on initial loading. Changing it during runtime will not affect the initially
|
|
701
|
+
* loaded toolbar.
|
|
703
702
|
*
|
|
704
703
|
* Default value is `false`.
|
|
705
704
|
*
|
|
@@ -752,7 +751,7 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
752
751
|
* update.
|
|
753
752
|
* - Have in mind when choosing a specific TinyMCE version that there might be differences in the support
|
|
754
753
|
* rules compared to UI5, therefore we might be forced to remove any TinyMCE version.
|
|
755
|
-
* - TinyMCE
|
|
754
|
+
* - TinyMCE 6 will be removed in future releases.
|
|
756
755
|
*
|
|
757
756
|
* Default value is `'TinyMCE'`.
|
|
758
757
|
*
|
|
@@ -789,6 +788,18 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
789
788
|
* @returns The native editor object (here: The TinyMCE editor instance)
|
|
790
789
|
*/
|
|
791
790
|
getNativeApi(): object;
|
|
791
|
+
/**
|
|
792
|
+
* Gets current value of property {@link #getPlaceholder placeholder}.
|
|
793
|
+
*
|
|
794
|
+
* Placeholder text for the editor.
|
|
795
|
+
*
|
|
796
|
+
* Default value is `empty string`.
|
|
797
|
+
*
|
|
798
|
+
* @since 1.144
|
|
799
|
+
*
|
|
800
|
+
* @returns Value of property `placeholder`
|
|
801
|
+
*/
|
|
802
|
+
getPlaceholder(): string;
|
|
792
803
|
/**
|
|
793
804
|
* Gets current value of property {@link #getPlugins plugins}.
|
|
794
805
|
*
|
|
@@ -1183,9 +1194,9 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
1183
1194
|
* Sets a new value for property {@link #getCustomToolbar customToolbar}.
|
|
1184
1195
|
*
|
|
1185
1196
|
* Determines whether a Fiori Toolbar is used instead of the TinyMCE default toolbar one. It is applied
|
|
1186
|
-
* only when the EditorType is
|
|
1187
|
-
*
|
|
1188
|
-
*
|
|
1197
|
+
* only when the EditorType is TinyMCE6 or TinyMCE7 and sap.m library is loaded. **Note:** The `customToolbar`
|
|
1198
|
+
* property will have effect only on initial loading. Changing it during runtime will not affect the initially
|
|
1199
|
+
* loaded toolbar.
|
|
1189
1200
|
*
|
|
1190
1201
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1191
1202
|
*
|
|
@@ -1249,7 +1260,7 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
1249
1260
|
*/
|
|
1250
1261
|
setEditorType(
|
|
1251
1262
|
/**
|
|
1252
|
-
* Which editor type to be used (currently only
|
|
1263
|
+
* Which editor type to be used (currently only 6 and 7)
|
|
1253
1264
|
*/
|
|
1254
1265
|
sEditorType?: string
|
|
1255
1266
|
): RichTextEditor;
|
|
@@ -1284,6 +1295,25 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
1284
1295
|
*/
|
|
1285
1296
|
sHeight?: CSSSize
|
|
1286
1297
|
): this;
|
|
1298
|
+
/**
|
|
1299
|
+
* Sets a new value for property {@link #getPlaceholder placeholder}.
|
|
1300
|
+
*
|
|
1301
|
+
* Placeholder text for the editor.
|
|
1302
|
+
*
|
|
1303
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1304
|
+
*
|
|
1305
|
+
* Default value is `empty string`.
|
|
1306
|
+
*
|
|
1307
|
+
* @since 1.144
|
|
1308
|
+
*
|
|
1309
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1310
|
+
*/
|
|
1311
|
+
setPlaceholder(
|
|
1312
|
+
/**
|
|
1313
|
+
* New value for property `placeholder`
|
|
1314
|
+
*/
|
|
1315
|
+
sPlaceholder?: string
|
|
1316
|
+
): this;
|
|
1287
1317
|
/**
|
|
1288
1318
|
* Sets the plugins to the editor.
|
|
1289
1319
|
*
|
|
@@ -1667,7 +1697,7 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
1667
1697
|
* update.
|
|
1668
1698
|
* - Have in mind when choosing a specific TinyMCE version that there might be differences in the support
|
|
1669
1699
|
* rules compared to UI5, therefore we might be forced to remove any TinyMCE version.
|
|
1670
|
-
* - TinyMCE
|
|
1700
|
+
* - TinyMCE 6 will be removed in future releases.
|
|
1671
1701
|
*/
|
|
1672
1702
|
editorType?: string | PropertyBindingInfo;
|
|
1673
1703
|
|
|
@@ -1803,14 +1833,21 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
1803
1833
|
|
|
1804
1834
|
/**
|
|
1805
1835
|
* Determines whether a Fiori Toolbar is used instead of the TinyMCE default toolbar one. It is applied
|
|
1806
|
-
* only when the EditorType is
|
|
1807
|
-
*
|
|
1808
|
-
*
|
|
1836
|
+
* only when the EditorType is TinyMCE6 or TinyMCE7 and sap.m library is loaded. **Note:** The `customToolbar`
|
|
1837
|
+
* property will have effect only on initial loading. Changing it during runtime will not affect the initially
|
|
1838
|
+
* loaded toolbar.
|
|
1809
1839
|
*
|
|
1810
1840
|
* @since 1.48
|
|
1811
1841
|
*/
|
|
1812
1842
|
customToolbar?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1813
1843
|
|
|
1844
|
+
/**
|
|
1845
|
+
* Placeholder text for the editor.
|
|
1846
|
+
*
|
|
1847
|
+
* @since 1.144
|
|
1848
|
+
*/
|
|
1849
|
+
placeholder?: string | PropertyBindingInfo;
|
|
1850
|
+
|
|
1814
1851
|
/**
|
|
1815
1852
|
* Defines the footer of the control. The footer will be available only with custom toolbar. **Note:** The
|
|
1816
1853
|
* footer aggregation accepts only controls inheriting `sap.m.IBar`.
|
package/types/sap.ui.rta.d.ts
CHANGED
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.143.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/table/library" {
|
|
4
4
|
import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
|
|
@@ -4941,6 +4941,40 @@ declare module "sap/ui/table/RowActionItem" {
|
|
|
4941
4941
|
* @returns Value of property `visible`
|
|
4942
4942
|
*/
|
|
4943
4943
|
getVisible(): boolean;
|
|
4944
|
+
/**
|
|
4945
|
+
* Sets a new value for property {@link #getIcon icon}.
|
|
4946
|
+
*
|
|
4947
|
+
* The icon of the item.
|
|
4948
|
+
*
|
|
4949
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4950
|
+
*
|
|
4951
|
+
*
|
|
4952
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4953
|
+
*/
|
|
4954
|
+
setIcon(
|
|
4955
|
+
/**
|
|
4956
|
+
* New value for property `icon`
|
|
4957
|
+
*/
|
|
4958
|
+
sIcon?: URI
|
|
4959
|
+
): this;
|
|
4960
|
+
/**
|
|
4961
|
+
* Sets a new value for property {@link #getText text}.
|
|
4962
|
+
*
|
|
4963
|
+
* The text of the item. It is used as tooltip and for accessibility purposes.
|
|
4964
|
+
*
|
|
4965
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4966
|
+
*
|
|
4967
|
+
* Default value is `empty string`.
|
|
4968
|
+
*
|
|
4969
|
+
*
|
|
4970
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4971
|
+
*/
|
|
4972
|
+
setText(
|
|
4973
|
+
/**
|
|
4974
|
+
* New value for property `text`
|
|
4975
|
+
*/
|
|
4976
|
+
sText?: string
|
|
4977
|
+
): this;
|
|
4944
4978
|
/**
|
|
4945
4979
|
* Sets a new value for property {@link #getType type}.
|
|
4946
4980
|
*
|
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ui.vbm.d.ts
CHANGED
package/types/sap.ui.vk.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.143.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/vk/library" {
|
|
4
4
|
/**
|
|
@@ -43660,6 +43660,24 @@ declare module "sap/ui/vk/ViewportBase" {
|
|
|
43660
43660
|
* @returns Value of property `keepOutputSize`
|
|
43661
43661
|
*/
|
|
43662
43662
|
getKeepOutputSize(): boolean;
|
|
43663
|
+
/**
|
|
43664
|
+
* Gets current value of property {@link #getMaxCameraPitch maxCameraPitch}.
|
|
43665
|
+
*
|
|
43666
|
+
* Default value is `90`.
|
|
43667
|
+
*
|
|
43668
|
+
*
|
|
43669
|
+
* @returns Value of property `maxCameraPitch`
|
|
43670
|
+
*/
|
|
43671
|
+
getMaxCameraPitch(): float;
|
|
43672
|
+
/**
|
|
43673
|
+
* Gets current value of property {@link #getMinCameraPitch minCameraPitch}.
|
|
43674
|
+
*
|
|
43675
|
+
* Default value is `-90`.
|
|
43676
|
+
*
|
|
43677
|
+
*
|
|
43678
|
+
* @returns Value of property `minCameraPitch`
|
|
43679
|
+
*/
|
|
43680
|
+
getMinCameraPitch(): float;
|
|
43663
43681
|
/**
|
|
43664
43682
|
* Gets content of aggregation {@link #getOutputSettings outputSettings}.
|
|
43665
43683
|
*
|
|
@@ -44204,6 +44222,38 @@ declare module "sap/ui/vk/ViewportBase" {
|
|
|
44204
44222
|
*/
|
|
44205
44223
|
bKeepOutputSize?: boolean
|
|
44206
44224
|
): this;
|
|
44225
|
+
/**
|
|
44226
|
+
* Sets a new value for property {@link #getMaxCameraPitch maxCameraPitch}.
|
|
44227
|
+
*
|
|
44228
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
44229
|
+
*
|
|
44230
|
+
* Default value is `90`.
|
|
44231
|
+
*
|
|
44232
|
+
*
|
|
44233
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
44234
|
+
*/
|
|
44235
|
+
setMaxCameraPitch(
|
|
44236
|
+
/**
|
|
44237
|
+
* New value for property `maxCameraPitch`
|
|
44238
|
+
*/
|
|
44239
|
+
fMaxCameraPitch?: float
|
|
44240
|
+
): this;
|
|
44241
|
+
/**
|
|
44242
|
+
* Sets a new value for property {@link #getMinCameraPitch minCameraPitch}.
|
|
44243
|
+
*
|
|
44244
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
44245
|
+
*
|
|
44246
|
+
* Default value is `-90`.
|
|
44247
|
+
*
|
|
44248
|
+
*
|
|
44249
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
44250
|
+
*/
|
|
44251
|
+
setMinCameraPitch(
|
|
44252
|
+
/**
|
|
44253
|
+
* New value for property `minCameraPitch`
|
|
44254
|
+
*/
|
|
44255
|
+
fMinCameraPitch?: float
|
|
44256
|
+
): this;
|
|
44207
44257
|
/**
|
|
44208
44258
|
* Sets the aggregated {@link #getOutputSettings outputSettings}.
|
|
44209
44259
|
*
|
|
@@ -44561,6 +44611,10 @@ declare module "sap/ui/vk/ViewportBase" {
|
|
|
44561
44611
|
*/
|
|
44562
44612
|
autoStartRendering?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
44563
44613
|
|
|
44614
|
+
minCameraPitch?: float | PropertyBindingInfo | `{${string}}`;
|
|
44615
|
+
|
|
44616
|
+
maxCameraPitch?: float | PropertyBindingInfo | `{${string}}`;
|
|
44617
|
+
|
|
44564
44618
|
/**
|
|
44565
44619
|
* The controls inside the viewport.
|
|
44566
44620
|
*/
|
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.143.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ushell/library" {
|
|
4
4
|
/**
|
|
@@ -10317,7 +10317,7 @@ declare module "sap/ushell/services/URLParsing" {
|
|
|
10317
10317
|
* The parts of a shell hash. Its action must be a valid action, It may not contain "?" or directly a parameter
|
|
10318
10318
|
* string. Note: In general it is preferred to add an appStateKey directly to the params object.
|
|
10319
10319
|
*/
|
|
10320
|
-
oShellHash?:
|
|
10320
|
+
oShellHash?: /* was: sap.ushell.services.URLParsing.ShellHash */ any
|
|
10321
10321
|
): TargetIntentStrict;
|
|
10322
10322
|
/**
|
|
10323
10323
|
* Extract a hash part from an URL, including an app-specific part
|
|
@@ -10471,7 +10471,7 @@ declare module "sap/ushell/services/URLParsing" {
|
|
|
10471
10471
|
): SplitHash;
|
|
10472
10472
|
}
|
|
10473
10473
|
/**
|
|
10474
|
-
*
|
|
10474
|
+
* Describes the result of {@link #parseShellHash}.
|
|
10475
10475
|
*
|
|
10476
10476
|
* @since 1.120.0
|
|
10477
10477
|
*/
|
|
@@ -10499,16 +10499,16 @@ declare module "sap/ushell/services/URLParsing" {
|
|
|
10499
10499
|
/**
|
|
10500
10500
|
* the app specific route
|
|
10501
10501
|
*/
|
|
10502
|
-
appSpecificRoute
|
|
10502
|
+
appSpecificRoute: string;
|
|
10503
10503
|
};
|
|
10504
10504
|
|
|
10505
10505
|
/**
|
|
10506
|
-
*
|
|
10507
|
-
*
|
|
10506
|
+
* Commonly used by services like {@link sap.ushell.services.Navigation}. Use this type for edge cases only.
|
|
10507
|
+
* Use {@link sap.ushell.services.URLParsing.DecomposedHash} instead. This type ignores all other properties
|
|
10508
10508
|
*
|
|
10509
10509
|
* @since 1.124.0
|
|
10510
10510
|
*/
|
|
10511
|
-
export type
|
|
10511
|
+
export type SimpleTarget = {
|
|
10512
10512
|
/**
|
|
10513
10513
|
* The target object
|
|
10514
10514
|
*/
|
|
@@ -10516,7 +10516,7 @@ declare module "sap/ushell/services/URLParsing" {
|
|
|
10516
10516
|
/**
|
|
10517
10517
|
* The shell hash
|
|
10518
10518
|
*/
|
|
10519
|
-
|
|
10519
|
+
shellHash: TargetIntent;
|
|
10520
10520
|
};
|
|
10521
10521
|
};
|
|
10522
10522
|
|
|
@@ -10536,6 +10536,43 @@ declare module "sap/ushell/services/URLParsing" {
|
|
|
10536
10536
|
appSpecificRoute: URI;
|
|
10537
10537
|
};
|
|
10538
10538
|
|
|
10539
|
+
/**
|
|
10540
|
+
* Commonly used by services like {@link sap.ushell.services.Navigation}
|
|
10541
|
+
*
|
|
10542
|
+
* @since 1.142.0
|
|
10543
|
+
*/
|
|
10544
|
+
export type Target = {
|
|
10545
|
+
/**
|
|
10546
|
+
* The target object
|
|
10547
|
+
*/
|
|
10548
|
+
target: {
|
|
10549
|
+
/**
|
|
10550
|
+
* the semantic object
|
|
10551
|
+
*/
|
|
10552
|
+
semanticObject: string;
|
|
10553
|
+
/**
|
|
10554
|
+
* the action
|
|
10555
|
+
*/
|
|
10556
|
+
action: string;
|
|
10557
|
+
/**
|
|
10558
|
+
* the raw context string
|
|
10559
|
+
*/
|
|
10560
|
+
contextRaw: string;
|
|
10561
|
+
};
|
|
10562
|
+
/**
|
|
10563
|
+
* the parameters
|
|
10564
|
+
*/
|
|
10565
|
+
params: Record<string, string | string[]>;
|
|
10566
|
+
/**
|
|
10567
|
+
* the app specific route
|
|
10568
|
+
*/
|
|
10569
|
+
appSpecificRoute: string;
|
|
10570
|
+
/**
|
|
10571
|
+
* the app state key
|
|
10572
|
+
*/
|
|
10573
|
+
appStateKey?: string;
|
|
10574
|
+
};
|
|
10575
|
+
|
|
10539
10576
|
/**
|
|
10540
10577
|
* Type for Url value
|
|
10541
10578
|
*
|
|
@@ -14154,6 +14191,14 @@ declare namespace sap {
|
|
|
14154
14191
|
|
|
14155
14192
|
"sap/ushell/library": undefined;
|
|
14156
14193
|
|
|
14194
|
+
"sap/ushell/modules/Assistant": undefined;
|
|
14195
|
+
|
|
14196
|
+
"sap/ushell/modules/Assistant/AssistantAPI": undefined;
|
|
14197
|
+
|
|
14198
|
+
"sap/ushell/modules/Assistant/AssistantProvider": undefined;
|
|
14199
|
+
|
|
14200
|
+
"sap/ushell/modules/Assistant/VisualConfiguration": undefined;
|
|
14201
|
+
|
|
14157
14202
|
"sap/ushell/modules/NavigationMenu": undefined;
|
|
14158
14203
|
|
|
14159
14204
|
"sap/ushell/modules/NavigationMenu/ListProvider": undefined;
|
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED
package/types/sap.zen.dsh.d.ts
CHANGED