@sapui5/ts-types 1.136.15 → 1.136.17
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/{commons-1.136.12-d.ts → commons-1.136.14-d.ts} +1 -1
- package/types/{core-1.136.2-d.ts → core-1.136.14-d.ts} +51 -5
- package/types/{dt-1.136.12-d.ts → dt-1.136.14-d.ts} +1 -1
- package/types/index.d.ts +7 -7
- package/types/{mobile-1.136.2-d.ts → mobile-1.136.14-d.ts} +71 -5
- 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.base.d.ts +1 -1
- package/types/sap.fe.controls.d.ts +3 -0
- package/types/sap.fe.core.d.ts +1 -1
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +1 -1
- 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 +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.gantt.d.ts +1 -1
- package/types/sap.insights.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 +2 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.suite.ui.commons.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.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -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.integration.d.ts +1 -1
- package/types/sap.ui.layout.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 +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 +1 -1
- package/types/sap.ui.vk.d.ts +366 -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 +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/{tnt-1.136.12-d.ts → tnt-1.136.14-d.ts} +1 -1
- package/types/{ux3-1.136.12-d.ts → ux3-1.136.14-d.ts} +1 -1
- package/types/sap.fe.controls-1.136.14-d.ts +0 -3
package/package.json
CHANGED
|
@@ -279,7 +279,7 @@ declare namespace sap {
|
|
|
279
279
|
"sap/ui/thirdparty/qunit-2": undefined;
|
|
280
280
|
}
|
|
281
281
|
}
|
|
282
|
-
// For Library Version: 1.136.
|
|
282
|
+
// For Library Version: 1.136.14
|
|
283
283
|
|
|
284
284
|
declare module "sap/base/assert" {
|
|
285
285
|
/**
|
|
@@ -11460,7 +11460,11 @@ declare namespace sap {
|
|
|
11460
11460
|
/**
|
|
11461
11461
|
* Qualified name of the type to retrieve
|
|
11462
11462
|
*/
|
|
11463
|
-
sTypeName: string
|
|
11463
|
+
sTypeName: string,
|
|
11464
|
+
/**
|
|
11465
|
+
* Metadata of the property
|
|
11466
|
+
*/
|
|
11467
|
+
oProperty?: /* was: sap.ui.base.ManagedObject.MetaOptions.Property */ any
|
|
11464
11468
|
): sap.ui.base.DataType | undefined;
|
|
11465
11469
|
/**
|
|
11466
11470
|
* Registers an enum under the given name. With version 2.0, registering an enum becomes mandatory when
|
|
@@ -54883,6 +54887,43 @@ declare namespace sap {
|
|
|
54883
54887
|
*/
|
|
54884
54888
|
mParameters?: object
|
|
54885
54889
|
);
|
|
54890
|
+
|
|
54891
|
+
/**
|
|
54892
|
+
* Creates a new subclass of class sap.ui.model.json.JSONPropertyBinding with name `sClassName` and enriches
|
|
54893
|
+
* it with the information contained in `oClassInfo`.
|
|
54894
|
+
*
|
|
54895
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.model.ClientPropertyBinding.extend}.
|
|
54896
|
+
*
|
|
54897
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
54898
|
+
*
|
|
54899
|
+
* @returns Created class / constructor function
|
|
54900
|
+
*/
|
|
54901
|
+
static extend<T extends Record<string, unknown>>(
|
|
54902
|
+
/**
|
|
54903
|
+
* Name of the class being created
|
|
54904
|
+
*/
|
|
54905
|
+
sClassName: string,
|
|
54906
|
+
/**
|
|
54907
|
+
* Object literal with information about the class
|
|
54908
|
+
*/
|
|
54909
|
+
oClassInfo?: sap.ClassInfo<
|
|
54910
|
+
T,
|
|
54911
|
+
sap.ui.model.json.JSONPropertyBinding
|
|
54912
|
+
>,
|
|
54913
|
+
/**
|
|
54914
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
54915
|
+
* used by this class
|
|
54916
|
+
*/
|
|
54917
|
+
FNMetaImpl?: Function
|
|
54918
|
+
): Function;
|
|
54919
|
+
/**
|
|
54920
|
+
* Returns a metadata object for class sap.ui.model.json.JSONPropertyBinding.
|
|
54921
|
+
*
|
|
54922
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
54923
|
+
*
|
|
54924
|
+
* @returns Metadata object describing this class
|
|
54925
|
+
*/
|
|
54926
|
+
static getMetadata(): sap.ui.base.Metadata;
|
|
54886
54927
|
}
|
|
54887
54928
|
/**
|
|
54888
54929
|
* Tree binding implementation for JSON format.
|
|
@@ -58652,6 +58693,10 @@ declare namespace sap {
|
|
|
58652
58693
|
* A valid cache key
|
|
58653
58694
|
*/
|
|
58654
58695
|
cacheKey?: string;
|
|
58696
|
+
/**
|
|
58697
|
+
* If set to `true`, the user credentials are included in a cross-origin request
|
|
58698
|
+
*/
|
|
58699
|
+
withCredentials?: boolean;
|
|
58655
58700
|
}
|
|
58656
58701
|
);
|
|
58657
58702
|
/**
|
|
@@ -64269,7 +64314,8 @@ declare namespace sap {
|
|
|
64269
64314
|
* Since 1.82.0 absolute paths are supported. Absolute paths must start with the entity container (example
|
|
64270
64315
|
* "/com.sap.gateway.default.iwbep.tea_busi.v0001.Container/TEAMS") of the service. All (navigation) properties
|
|
64271
64316
|
* in the complete model matching such an absolute path are updated. Since 1.85.0, "14.4.11 Expression edm:String"
|
|
64272
|
-
* is accepted as well.
|
|
64317
|
+
* is accepted as well. Since 1.145.0, you can use `null` values (and `{$Null : null}`) as synonyms for
|
|
64318
|
+
* empty navigation property paths.
|
|
64273
64319
|
*
|
|
64274
64320
|
* Since 1.108.8, a property path matching the "com.sap.vocabularies.Common.v1.Messages" annotation of a
|
|
64275
64321
|
* list binding's entity type is treated specially for a row context of a list binding: It is loaded even
|
|
@@ -85905,11 +85951,11 @@ declare namespace sap {
|
|
|
85905
85951
|
* whether a function is used as arrangement or action. Each function typically contains one or multiple
|
|
85906
85952
|
* `waitFor` statements.
|
|
85907
85953
|
*/
|
|
85908
|
-
actions?: Record<string,
|
|
85954
|
+
actions?: Record<string, Function> | Function;
|
|
85909
85955
|
/**
|
|
85910
85956
|
* A map or a class of functions that can be used as assertions in Opa tests.
|
|
85911
85957
|
*/
|
|
85912
|
-
assertions?: Record<string,
|
|
85958
|
+
assertions?: Record<string, Function> | Function;
|
|
85913
85959
|
};
|
|
85914
85960
|
}
|
|
85915
85961
|
/**
|
package/types/index.d.ts
CHANGED
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
/// <reference path="./sap.zen.dsh.d.ts"/>
|
|
18
18
|
/// <reference path="./sap.zen.commons.d.ts"/>
|
|
19
19
|
/// <reference path="./sap.sac.df.d.ts"/>
|
|
20
|
-
/// <reference path="./commons-1.136.
|
|
20
|
+
/// <reference path="./commons-1.136.14-d.ts"/>
|
|
21
21
|
/// <reference path="./sap.ui.comp.d.ts"/>
|
|
22
|
-
/// <reference path="./core-1.136.
|
|
23
|
-
/// <reference path="./dt-1.136.
|
|
22
|
+
/// <reference path="./core-1.136.14-d.ts"/>
|
|
23
|
+
/// <reference path="./dt-1.136.14-d.ts"/>
|
|
24
24
|
/// <reference path="./sap.ui.export.d.ts"/>
|
|
25
25
|
/// <reference path="./sap.f.d.ts"/>
|
|
26
26
|
/// <reference path="./sap.ui.fl.d.ts"/>
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
/// <reference path="./sap.ui.layout.d.ts"/>
|
|
34
34
|
/// <reference path="./sap.makit.d.ts"/>
|
|
35
35
|
/// <reference path="./mdc-1.136.9-d.ts"/>
|
|
36
|
-
/// <reference path="./mobile-1.136.
|
|
36
|
+
/// <reference path="./mobile-1.136.14-d.ts"/>
|
|
37
37
|
/// <reference path="./sap.me.d.ts"/>
|
|
38
38
|
/// <reference path="./sap.ndc.d.ts"/>
|
|
39
39
|
/// <reference path="./sap.ovp.d.ts"/>
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
/// <reference path="./sap.cux.home.d.ts"/>
|
|
46
46
|
/// <reference path="./sap.esh.search.ui.d.ts"/>
|
|
47
47
|
/// <reference path="./sap.fe.base.d.ts"/>
|
|
48
|
-
/// <reference path="./sap.fe.controls
|
|
48
|
+
/// <reference path="./sap.fe.controls.d.ts"/>
|
|
49
49
|
/// <reference path="./sap.fe.core.d.ts"/>
|
|
50
50
|
/// <reference path="./sap.fe.ina.d.ts"/>
|
|
51
51
|
/// <reference path="./sap.fe.macros.d.ts"/>
|
|
@@ -67,12 +67,12 @@
|
|
|
67
67
|
/// <reference path="./sap.ui.support.d.ts"/>
|
|
68
68
|
/// <reference path="./sap.ui.table.d.ts"/>
|
|
69
69
|
/// <reference path="./sap.ui.testrecorder.d.ts"/>
|
|
70
|
-
/// <reference path="./tnt-1.136.
|
|
70
|
+
/// <reference path="./tnt-1.136.14-d.ts"/>
|
|
71
71
|
/// <reference path="./sap.ca.ui.d.ts"/>
|
|
72
72
|
/// <reference path="./sap.ui.unified.d.ts"/>
|
|
73
73
|
/// <reference path="./sap.ushell.d.ts"/>
|
|
74
74
|
/// <reference path="./sap.ushell_abap.d.ts"/>
|
|
75
|
-
/// <reference path="./ux3-1.136.
|
|
75
|
+
/// <reference path="./ux3-1.136.14-d.ts"/>
|
|
76
76
|
/// <reference path="./sap.uxap.d.ts"/>
|
|
77
77
|
/// <reference path="./sap.ui.vbm.d.ts"/>
|
|
78
78
|
/// <reference path="./sap.viz.d.ts"/>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.136.
|
|
1
|
+
// For Library Version: 1.136.14
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -2489,7 +2489,16 @@ declare namespace sap {
|
|
|
2489
2489
|
/**
|
|
2490
2490
|
* Escape handler for sap.m.Dialog control.
|
|
2491
2491
|
*/
|
|
2492
|
-
type EscapeHandler = (oHandlers:
|
|
2492
|
+
type EscapeHandler = (oHandlers: {
|
|
2493
|
+
/**
|
|
2494
|
+
* Call this function if the dialog should be closed.
|
|
2495
|
+
*/
|
|
2496
|
+
resolve: () => void;
|
|
2497
|
+
/**
|
|
2498
|
+
* Call this function if the dialog should not be closed.
|
|
2499
|
+
*/
|
|
2500
|
+
reject: () => void;
|
|
2501
|
+
}) => void;
|
|
2493
2502
|
}
|
|
2494
2503
|
|
|
2495
2504
|
namespace MessageBox {
|
|
@@ -37419,6 +37428,11 @@ declare namespace sap {
|
|
|
37419
37428
|
* Optionally, this property can also be set to a data URI path or a blob URL in all major web browsers
|
|
37420
37429
|
* except Internet Explorer and Microsoft Edge, provided that this data URI or blob URL is allowed in advance.
|
|
37421
37430
|
* For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
|
|
37431
|
+
*
|
|
37432
|
+
* Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
|
|
37433
|
+
* GET request to ensure it exists and is accessible. This validation:
|
|
37434
|
+
* - Prevents loading invalid or non-existent PDF files
|
|
37435
|
+
* - If validation fails, error content is displayed instead of attempting PDF load
|
|
37422
37436
|
*/
|
|
37423
37437
|
source?:
|
|
37424
37438
|
| sap.ui.core.URI
|
|
@@ -37524,6 +37538,12 @@ declare namespace sap {
|
|
|
37524
37538
|
* configuration of the Mozilla Firefox browser may not allow checking the loaded content. This may also
|
|
37525
37539
|
* happen when the source PDF file is stored in a different domain. If you want no error message to be displayed
|
|
37526
37540
|
* when this event is fired, call the preventDefault() method inside the event handler.
|
|
37541
|
+
*
|
|
37542
|
+
* Modern browsers implement strict policies for validating external resources loaded within an iframe.
|
|
37543
|
+
* PDFViewer cannot determine whether the resource inside the iframe is a valid PDF by itself. As the validation
|
|
37544
|
+
* cannot be performed the sourceValidationFailed event cannot be triggered.
|
|
37545
|
+
*
|
|
37546
|
+
* @deprecated As of version 1.136.9. with no replacement.
|
|
37527
37547
|
*/
|
|
37528
37548
|
sourceValidationFailed?: (oEvent: sap.ui.base.Event) => void;
|
|
37529
37549
|
}
|
|
@@ -47397,6 +47417,8 @@ declare namespace sap {
|
|
|
47397
47417
|
|
|
47398
47418
|
/**
|
|
47399
47419
|
* Parameters of the PDFViewer#sourceValidationFailed event.
|
|
47420
|
+
*
|
|
47421
|
+
* @deprecated As of version 1.136.9. with no replacement.
|
|
47400
47422
|
*/
|
|
47401
47423
|
interface PDFViewer$SourceValidationFailedEventParameters {}
|
|
47402
47424
|
|
|
@@ -48355,6 +48377,11 @@ declare namespace sap {
|
|
|
48355
48377
|
* All appointments with changed selected state.
|
|
48356
48378
|
*/
|
|
48357
48379
|
appointments?: sap.ui.unified.CalendarAppointment[];
|
|
48380
|
+
|
|
48381
|
+
/**
|
|
48382
|
+
* The original browser event.
|
|
48383
|
+
*/
|
|
48384
|
+
originalEvent?: object;
|
|
48358
48385
|
}
|
|
48359
48386
|
|
|
48360
48387
|
/**
|
|
@@ -48370,6 +48397,11 @@ declare namespace sap {
|
|
|
48370
48397
|
* The end date as a UI5Date or JavaScript Date object of the focused grid cell.
|
|
48371
48398
|
*/
|
|
48372
48399
|
endDate?: object;
|
|
48400
|
+
|
|
48401
|
+
/**
|
|
48402
|
+
* The original browser event.
|
|
48403
|
+
*/
|
|
48404
|
+
originalEvent?: object;
|
|
48373
48405
|
}
|
|
48374
48406
|
|
|
48375
48407
|
/**
|
|
@@ -51741,8 +51773,8 @@ declare namespace sap {
|
|
|
51741
51773
|
* sap.m.MessageToast.show("This message should appear in the message toast", {
|
|
51742
51774
|
* duration: 3000, // default
|
|
51743
51775
|
* width: "15em", // default
|
|
51744
|
-
* my: "
|
|
51745
|
-
* at: "
|
|
51776
|
+
* my: "CenterBottom", // default
|
|
51777
|
+
* at: "CenterBottom", // default
|
|
51746
51778
|
* of: window, // default
|
|
51747
51779
|
* offset: "0 0", // default
|
|
51748
51780
|
* collision: "fit fit", // default
|
|
@@ -114941,6 +114973,11 @@ declare namespace sap {
|
|
|
114941
114973
|
* happen when the source PDF file is stored in a different domain. If you want no error message to be displayed
|
|
114942
114974
|
* when this event is fired, call the preventDefault() method inside the event handler.
|
|
114943
114975
|
*
|
|
114976
|
+
* Modern browsers implement strict policies for validating external resources loaded within an iframe.
|
|
114977
|
+
* PDFViewer cannot determine whether the resource inside the iframe is a valid PDF by itself. As the validation
|
|
114978
|
+
* cannot be performed the sourceValidationFailed event cannot be triggered.
|
|
114979
|
+
*
|
|
114980
|
+
* @deprecated As of version 1.136.9. with no replacement.
|
|
114944
114981
|
*
|
|
114945
114982
|
* @returns Reference to `this` in order to allow method chaining
|
|
114946
114983
|
*/
|
|
@@ -114971,6 +115008,11 @@ declare namespace sap {
|
|
|
114971
115008
|
* happen when the source PDF file is stored in a different domain. If you want no error message to be displayed
|
|
114972
115009
|
* when this event is fired, call the preventDefault() method inside the event handler.
|
|
114973
115010
|
*
|
|
115011
|
+
* Modern browsers implement strict policies for validating external resources loaded within an iframe.
|
|
115012
|
+
* PDFViewer cannot determine whether the resource inside the iframe is a valid PDF by itself. As the validation
|
|
115013
|
+
* cannot be performed the sourceValidationFailed event cannot be triggered.
|
|
115014
|
+
*
|
|
115015
|
+
* @deprecated As of version 1.136.9. with no replacement.
|
|
114974
115016
|
*
|
|
114975
115017
|
* @returns Reference to `this` in order to allow method chaining
|
|
114976
115018
|
*/
|
|
@@ -115040,6 +115082,7 @@ declare namespace sap {
|
|
|
115040
115082
|
*
|
|
115041
115083
|
* The passed function and listener object must match the ones used for event registration.
|
|
115042
115084
|
*
|
|
115085
|
+
* @deprecated As of version 1.136.9. with no replacement.
|
|
115043
115086
|
*
|
|
115044
115087
|
* @returns Reference to `this` in order to allow method chaining
|
|
115045
115088
|
*/
|
|
@@ -115086,6 +115129,7 @@ declare namespace sap {
|
|
|
115086
115129
|
/**
|
|
115087
115130
|
* Fires event {@link #event:sourceValidationFailed sourceValidationFailed} to attached listeners.
|
|
115088
115131
|
*
|
|
115132
|
+
* @deprecated As of version 1.136.9. with no replacement.
|
|
115089
115133
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
115090
115134
|
*
|
|
115091
115135
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -115209,6 +115253,11 @@ declare namespace sap {
|
|
|
115209
115253
|
* except Internet Explorer and Microsoft Edge, provided that this data URI or blob URL is allowed in advance.
|
|
115210
115254
|
* For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
|
|
115211
115255
|
*
|
|
115256
|
+
* Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
|
|
115257
|
+
* GET request to ensure it exists and is accessible. This validation:
|
|
115258
|
+
* - Prevents loading invalid or non-existent PDF files
|
|
115259
|
+
* - If validation fails, error content is displayed instead of attempting PDF load
|
|
115260
|
+
*
|
|
115212
115261
|
*
|
|
115213
115262
|
* @returns Value of property `source`
|
|
115214
115263
|
*/
|
|
@@ -115459,6 +115508,11 @@ declare namespace sap {
|
|
|
115459
115508
|
* except Internet Explorer and Microsoft Edge, provided that this data URI or blob URL is allowed in advance.
|
|
115460
115509
|
* For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
|
|
115461
115510
|
*
|
|
115511
|
+
* Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
|
|
115512
|
+
* GET request to ensure it exists and is accessible. This validation:
|
|
115513
|
+
* - Prevents loading invalid or non-existent PDF files
|
|
115514
|
+
* - If validation fails, error content is displayed instead of attempting PDF load
|
|
115515
|
+
*
|
|
115462
115516
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
115463
115517
|
*
|
|
115464
115518
|
*
|
|
@@ -127309,11 +127363,13 @@ declare namespace sap {
|
|
|
127309
127363
|
implements
|
|
127310
127364
|
sap.ui.core.IFormContent,
|
|
127311
127365
|
sap.f.IShellBar,
|
|
127312
|
-
sap.m.IToolbarInteractiveControl
|
|
127366
|
+
sap.m.IToolbarInteractiveControl,
|
|
127367
|
+
sap.m.IOverflowToolbarContent
|
|
127313
127368
|
{
|
|
127314
127369
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
127315
127370
|
__implements__sap_f_IShellBar: boolean;
|
|
127316
127371
|
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
127372
|
+
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
127317
127373
|
/**
|
|
127318
127374
|
* Constructor for a new SearchField.
|
|
127319
127375
|
*
|
|
@@ -127816,6 +127872,14 @@ declare namespace sap {
|
|
|
127816
127872
|
* @returns Value of property `maxLength`
|
|
127817
127873
|
*/
|
|
127818
127874
|
getMaxLength(): int;
|
|
127875
|
+
/**
|
|
127876
|
+
* Enables the `sap.m.SearchField` to be used inside sap.m.OverflowToolbar. Required by the {@link sap.m.IOverflowToolbarContent }
|
|
127877
|
+
* interface.
|
|
127878
|
+
*
|
|
127879
|
+
*
|
|
127880
|
+
* @returns Configuration information for the `sap.m.IOverflowToolbarContent` interface.
|
|
127881
|
+
*/
|
|
127882
|
+
getOverflowToolbarConfig(): sap.m.OverflowToolbarConfig;
|
|
127819
127883
|
/**
|
|
127820
127884
|
* Gets current value of property {@link #getPlaceholder placeholder}.
|
|
127821
127885
|
*
|
|
@@ -168864,6 +168928,8 @@ declare namespace sap {
|
|
|
168864
168928
|
|
|
168865
168929
|
/**
|
|
168866
168930
|
* Event object of the PDFViewer#sourceValidationFailed event.
|
|
168931
|
+
*
|
|
168932
|
+
* @deprecated As of version 1.136.9. with no replacement.
|
|
168867
168933
|
*/
|
|
168868
168934
|
type PDFViewer$SourceValidationFailedEvent = sap.ui.base.Event<
|
|
168869
168935
|
PDFViewer$SourceValidationFailedEventParameters,
|
package/types/sap.chart.d.ts
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.fe.base.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
package/types/sap.fe.ina.d.ts
CHANGED
package/types/sap.fe.macros.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.insights.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.136.
|
|
1
|
+
// For Library Version: 1.136.15
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -362,6 +362,7 @@ declare namespace sap {
|
|
|
362
362
|
* {
|
|
363
363
|
* "enableGS1Header": true, //If set to true, add the symbology identifier (GS1 specification 5.4.3.7. and 5.4.6.4.) as prefix into the result text.
|
|
364
364
|
* "deviceId": "string" // The specific camera id to scan the Barcode. If set to "", Barcode Scanner will use default camera. This option is not working for iOS devices since do not support to get all the cameras.
|
|
365
|
+
* "textMode": "string" // Defines how the decoded byte content of a barcode should be transcoded to text in ZXingcpp. Value can be "Plain", "ECI", "HRI", "Escaped", "Hex", or "HexECI". Default value is "HRI".
|
|
365
366
|
* "multiScan": {
|
|
366
367
|
* "enabled": false, // If set to true, will support scan multi barcodes, and the max number of the barcodes in each scanning is 10. Default value is false. Only working for ZXingCPP.
|
|
367
368
|
* "showPauseButton": false, // If set to true, will show a button so that can pause/restart the scan in the scan dialog.
|
package/types/sap.ovp.d.ts
CHANGED
package/types/sap.ui.comp.d.ts
CHANGED
package/types/sap.ui.export.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.vk.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.136.
|
|
1
|
+
// For Library Version: 1.136.8
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -2557,6 +2557,36 @@ declare namespace sap {
|
|
|
2557
2557
|
}
|
|
2558
2558
|
|
|
2559
2559
|
namespace ecad {
|
|
2560
|
+
/**
|
|
2561
|
+
* Describes the settings that can be provided to the ElementsPanel constructor.
|
|
2562
|
+
*/
|
|
2563
|
+
interface $ElementsPanelSettings extends sap.ui.core.$ControlSettings {
|
|
2564
|
+
width?:
|
|
2565
|
+
| sap.ui.core.CSSSize
|
|
2566
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2567
|
+
| `{${string}}`;
|
|
2568
|
+
|
|
2569
|
+
height?:
|
|
2570
|
+
| sap.ui.core.CSSSize
|
|
2571
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2572
|
+
| `{${string}}`;
|
|
2573
|
+
|
|
2574
|
+
/**
|
|
2575
|
+
* An association to the `ContentConnector` instance that manages content resources.
|
|
2576
|
+
*/
|
|
2577
|
+
contentConnector?: sap.ui.vk.ContentConnector | string;
|
|
2578
|
+
|
|
2579
|
+
/**
|
|
2580
|
+
* An association to the `ViewStateManager` instance.
|
|
2581
|
+
*/
|
|
2582
|
+
viewStateManager?: sap.ui.vk.ViewStateManagerBase | string;
|
|
2583
|
+
|
|
2584
|
+
/**
|
|
2585
|
+
* This event will be fired when content is replaced.
|
|
2586
|
+
*/
|
|
2587
|
+
contentChanged?: (oEvent: sap.ui.base.Event) => void;
|
|
2588
|
+
}
|
|
2589
|
+
|
|
2560
2590
|
/**
|
|
2561
2591
|
* Describes the settings that can be provided to the LayersPanel constructor.
|
|
2562
2592
|
*/
|
|
@@ -2589,11 +2619,258 @@ declare namespace sap {
|
|
|
2589
2619
|
contentChanged?: (oEvent: sap.ui.base.Event) => void;
|
|
2590
2620
|
}
|
|
2591
2621
|
|
|
2622
|
+
/**
|
|
2623
|
+
* Parameters of the ElementsPanel#contentChanged event.
|
|
2624
|
+
*/
|
|
2625
|
+
interface ElementsPanel$ContentChangedEventParameters {}
|
|
2626
|
+
|
|
2592
2627
|
/**
|
|
2593
2628
|
* Parameters of the LayersPanel#contentChanged event.
|
|
2594
2629
|
*/
|
|
2595
2630
|
interface LayersPanel$ContentChangedEventParameters {}
|
|
2596
2631
|
|
|
2632
|
+
/**
|
|
2633
|
+
* Provides a list of all ECAD elements in a given scene in table format.
|
|
2634
|
+
*
|
|
2635
|
+
* **NOTE:** To use this control the application developer should add dependencies to the following libraries
|
|
2636
|
+
* on application level to ensure that the libraries are loaded before the module dependencies will be required:
|
|
2637
|
+
*
|
|
2638
|
+
* - sap.f
|
|
2639
|
+
* - sap.ui.comp
|
|
2640
|
+
*
|
|
2641
|
+
* @since 1.136.0
|
|
2642
|
+
*/
|
|
2643
|
+
class ElementsPanel extends sap.ui.core.Control {
|
|
2644
|
+
/**
|
|
2645
|
+
* Constructor for a new ElementsPanel.
|
|
2646
|
+
*
|
|
2647
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
2648
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
2649
|
+
* of the syntax of the settings object.
|
|
2650
|
+
*/
|
|
2651
|
+
constructor(
|
|
2652
|
+
/**
|
|
2653
|
+
* initial settings for the new control
|
|
2654
|
+
*/
|
|
2655
|
+
mSettings?: sap.ui.vk.ecad.$ElementsPanelSettings
|
|
2656
|
+
);
|
|
2657
|
+
/**
|
|
2658
|
+
* Constructor for a new ElementsPanel.
|
|
2659
|
+
*
|
|
2660
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
2661
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
2662
|
+
* of the syntax of the settings object.
|
|
2663
|
+
*/
|
|
2664
|
+
constructor(
|
|
2665
|
+
/**
|
|
2666
|
+
* id for the new control, generated automatically if no id is given
|
|
2667
|
+
*/
|
|
2668
|
+
sId?: string,
|
|
2669
|
+
/**
|
|
2670
|
+
* initial settings for the new control
|
|
2671
|
+
*/
|
|
2672
|
+
mSettings?: sap.ui.vk.ecad.$ElementsPanelSettings
|
|
2673
|
+
);
|
|
2674
|
+
|
|
2675
|
+
/**
|
|
2676
|
+
* Creates a new subclass of class sap.ui.vk.ecad.ElementsPanel with name `sClassName` and enriches it with
|
|
2677
|
+
* the information contained in `oClassInfo`.
|
|
2678
|
+
*
|
|
2679
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
2680
|
+
*
|
|
2681
|
+
*
|
|
2682
|
+
* @returns Created class / constructor function
|
|
2683
|
+
*/
|
|
2684
|
+
static extend<T extends Record<string, unknown>>(
|
|
2685
|
+
/**
|
|
2686
|
+
* Name of the class being created
|
|
2687
|
+
*/
|
|
2688
|
+
sClassName: string,
|
|
2689
|
+
/**
|
|
2690
|
+
* Object literal with information about the class
|
|
2691
|
+
*/
|
|
2692
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.vk.ecad.ElementsPanel>,
|
|
2693
|
+
/**
|
|
2694
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2695
|
+
* used by this class
|
|
2696
|
+
*/
|
|
2697
|
+
FNMetaImpl?: Function
|
|
2698
|
+
): Function;
|
|
2699
|
+
/**
|
|
2700
|
+
* Returns a metadata object for class sap.ui.vk.ecad.ElementsPanel.
|
|
2701
|
+
*
|
|
2702
|
+
*
|
|
2703
|
+
* @returns Metadata object describing this class
|
|
2704
|
+
*/
|
|
2705
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2706
|
+
/**
|
|
2707
|
+
* Attaches event handler `fnFunction` to the {@link #event:contentChanged contentChanged} event of this
|
|
2708
|
+
* `sap.ui.vk.ecad.ElementsPanel`.
|
|
2709
|
+
*
|
|
2710
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
2711
|
+
* otherwise it will be bound to this `sap.ui.vk.ecad.ElementsPanel` itself.
|
|
2712
|
+
*
|
|
2713
|
+
* This event will be fired when content is replaced.
|
|
2714
|
+
*
|
|
2715
|
+
*
|
|
2716
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2717
|
+
*/
|
|
2718
|
+
attachContentChanged(
|
|
2719
|
+
/**
|
|
2720
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
2721
|
+
* object when firing the event
|
|
2722
|
+
*/
|
|
2723
|
+
oData: object,
|
|
2724
|
+
/**
|
|
2725
|
+
* The function to be called when the event occurs
|
|
2726
|
+
*/
|
|
2727
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
2728
|
+
/**
|
|
2729
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.vk.ecad.ElementsPanel` itself
|
|
2730
|
+
*/
|
|
2731
|
+
oListener?: object
|
|
2732
|
+
): this;
|
|
2733
|
+
/**
|
|
2734
|
+
* Attaches event handler `fnFunction` to the {@link #event:contentChanged contentChanged} event of this
|
|
2735
|
+
* `sap.ui.vk.ecad.ElementsPanel`.
|
|
2736
|
+
*
|
|
2737
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
2738
|
+
* otherwise it will be bound to this `sap.ui.vk.ecad.ElementsPanel` itself.
|
|
2739
|
+
*
|
|
2740
|
+
* This event will be fired when content is replaced.
|
|
2741
|
+
*
|
|
2742
|
+
*
|
|
2743
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2744
|
+
*/
|
|
2745
|
+
attachContentChanged(
|
|
2746
|
+
/**
|
|
2747
|
+
* The function to be called when the event occurs
|
|
2748
|
+
*/
|
|
2749
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
2750
|
+
/**
|
|
2751
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.vk.ecad.ElementsPanel` itself
|
|
2752
|
+
*/
|
|
2753
|
+
oListener?: object
|
|
2754
|
+
): this;
|
|
2755
|
+
/**
|
|
2756
|
+
* Detaches event handler `fnFunction` from the {@link #event:contentChanged contentChanged} event of this
|
|
2757
|
+
* `sap.ui.vk.ecad.ElementsPanel`.
|
|
2758
|
+
*
|
|
2759
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
2760
|
+
*
|
|
2761
|
+
*
|
|
2762
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2763
|
+
*/
|
|
2764
|
+
detachContentChanged(
|
|
2765
|
+
/**
|
|
2766
|
+
* The function to be called, when the event occurs
|
|
2767
|
+
*/
|
|
2768
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
2769
|
+
/**
|
|
2770
|
+
* Context object on which the given function had to be called
|
|
2771
|
+
*/
|
|
2772
|
+
oListener?: object
|
|
2773
|
+
): this;
|
|
2774
|
+
/**
|
|
2775
|
+
* Fires event {@link #event:contentChanged contentChanged} to attached listeners.
|
|
2776
|
+
*
|
|
2777
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2778
|
+
*
|
|
2779
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2780
|
+
*/
|
|
2781
|
+
fireContentChanged(
|
|
2782
|
+
/**
|
|
2783
|
+
* Parameters to pass along with the event
|
|
2784
|
+
*/
|
|
2785
|
+
mParameters?: object
|
|
2786
|
+
): this;
|
|
2787
|
+
/**
|
|
2788
|
+
* ID of the element which is the current target of the association {@link #getContentConnector contentConnector},
|
|
2789
|
+
* or `null`.
|
|
2790
|
+
*/
|
|
2791
|
+
getContentConnector(): sap.ui.core.ID | null;
|
|
2792
|
+
/**
|
|
2793
|
+
* Gets current value of property {@link #getHeight height}.
|
|
2794
|
+
*
|
|
2795
|
+
* Default value is `"100%"`.
|
|
2796
|
+
*
|
|
2797
|
+
*
|
|
2798
|
+
* @returns Value of property `height`
|
|
2799
|
+
*/
|
|
2800
|
+
getHeight(): sap.ui.core.CSSSize;
|
|
2801
|
+
/**
|
|
2802
|
+
* ID of the element which is the current target of the association {@link #getViewStateManager viewStateManager},
|
|
2803
|
+
* or `null`.
|
|
2804
|
+
*/
|
|
2805
|
+
getViewStateManager(): sap.ui.core.ID | null;
|
|
2806
|
+
/**
|
|
2807
|
+
* Gets current value of property {@link #getWidth width}.
|
|
2808
|
+
*
|
|
2809
|
+
* Default value is `"auto"`.
|
|
2810
|
+
*
|
|
2811
|
+
*
|
|
2812
|
+
* @returns Value of property `width`
|
|
2813
|
+
*/
|
|
2814
|
+
getWidth(): sap.ui.core.CSSSize;
|
|
2815
|
+
/**
|
|
2816
|
+
* Sets the associated {@link #getContentConnector contentConnector}.
|
|
2817
|
+
*
|
|
2818
|
+
*
|
|
2819
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2820
|
+
*/
|
|
2821
|
+
setContentConnector(
|
|
2822
|
+
/**
|
|
2823
|
+
* ID of an element which becomes the new target of this contentConnector association; alternatively, an
|
|
2824
|
+
* element instance may be given
|
|
2825
|
+
*/
|
|
2826
|
+
oContentConnector: sap.ui.core.ID | sap.ui.vk.ContentConnector
|
|
2827
|
+
): this;
|
|
2828
|
+
/**
|
|
2829
|
+
* Sets a new value for property {@link #getHeight height}.
|
|
2830
|
+
*
|
|
2831
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2832
|
+
*
|
|
2833
|
+
* Default value is `"100%"`.
|
|
2834
|
+
*
|
|
2835
|
+
*
|
|
2836
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2837
|
+
*/
|
|
2838
|
+
setHeight(
|
|
2839
|
+
/**
|
|
2840
|
+
* New value for property `height`
|
|
2841
|
+
*/
|
|
2842
|
+
sHeight?: sap.ui.core.CSSSize
|
|
2843
|
+
): this;
|
|
2844
|
+
/**
|
|
2845
|
+
* Sets the associated {@link #getViewStateManager viewStateManager}.
|
|
2846
|
+
*
|
|
2847
|
+
*
|
|
2848
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2849
|
+
*/
|
|
2850
|
+
setViewStateManager(
|
|
2851
|
+
/**
|
|
2852
|
+
* ID of an element which becomes the new target of this viewStateManager association; alternatively, an
|
|
2853
|
+
* element instance may be given
|
|
2854
|
+
*/
|
|
2855
|
+
oViewStateManager: sap.ui.core.ID | sap.ui.vk.ViewStateManagerBase
|
|
2856
|
+
): this;
|
|
2857
|
+
/**
|
|
2858
|
+
* Sets a new value for property {@link #getWidth width}.
|
|
2859
|
+
*
|
|
2860
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2861
|
+
*
|
|
2862
|
+
* Default value is `"auto"`.
|
|
2863
|
+
*
|
|
2864
|
+
*
|
|
2865
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2866
|
+
*/
|
|
2867
|
+
setWidth(
|
|
2868
|
+
/**
|
|
2869
|
+
* New value for property `width`
|
|
2870
|
+
*/
|
|
2871
|
+
sWidth?: sap.ui.core.CSSSize
|
|
2872
|
+
): this;
|
|
2873
|
+
}
|
|
2597
2874
|
/**
|
|
2598
2875
|
* Provides a flat list view of all the ECAD layers in a given scene in table format.
|
|
2599
2876
|
*
|
|
@@ -2854,6 +3131,14 @@ declare namespace sap {
|
|
|
2854
3131
|
): this;
|
|
2855
3132
|
}
|
|
2856
3133
|
|
|
3134
|
+
/**
|
|
3135
|
+
* Event object of the ElementsPanel#contentChanged event.
|
|
3136
|
+
*/
|
|
3137
|
+
type ElementsPanel$ContentChangedEvent = sap.ui.base.Event<
|
|
3138
|
+
ElementsPanel$ContentChangedEventParameters,
|
|
3139
|
+
ElementsPanel
|
|
3140
|
+
>;
|
|
3141
|
+
|
|
2857
3142
|
/**
|
|
2858
3143
|
* Event object of the LayersPanel#contentChanged event.
|
|
2859
3144
|
*/
|
|
@@ -6910,6 +7195,10 @@ declare namespace sap {
|
|
|
6910
7195
|
* Indicator to retrieve selection information.
|
|
6911
7196
|
*/
|
|
6912
7197
|
selection?: boolean | object;
|
|
7198
|
+
/**
|
|
7199
|
+
* Indicator to retrieve cross-section tool information.
|
|
7200
|
+
*/
|
|
7201
|
+
crossSection?: boolean | object;
|
|
6913
7202
|
}
|
|
6914
7203
|
): object;
|
|
6915
7204
|
/**
|
|
@@ -7088,6 +7377,27 @@ declare namespace sap {
|
|
|
7088
7377
|
*/
|
|
7089
7378
|
outlined: string[];
|
|
7090
7379
|
};
|
|
7380
|
+
/**
|
|
7381
|
+
* A JSON-like object containing the cross-section tool information.
|
|
7382
|
+
*/
|
|
7383
|
+
crossSection?: {
|
|
7384
|
+
/**
|
|
7385
|
+
* Indicator whether the cross-section tool is enabled.
|
|
7386
|
+
*/
|
|
7387
|
+
enabled?: boolean;
|
|
7388
|
+
/**
|
|
7389
|
+
* Axis along which the cross-section is performed (0 - X, 1 - Y, 2 - Z).
|
|
7390
|
+
*/
|
|
7391
|
+
axis?: int;
|
|
7392
|
+
/**
|
|
7393
|
+
* Indicator whether the cross-section direction is flipped.
|
|
7394
|
+
*/
|
|
7395
|
+
flip?: boolean;
|
|
7396
|
+
/**
|
|
7397
|
+
* Position of the cross-section planes defined as [x, y, z].
|
|
7398
|
+
*/
|
|
7399
|
+
position?: float[];
|
|
7400
|
+
};
|
|
7091
7401
|
},
|
|
7092
7402
|
/**
|
|
7093
7403
|
* Fly-to animation duration in seconds.
|
|
@@ -11187,6 +11497,15 @@ declare namespace sap {
|
|
|
11187
11497
|
* @returns Value of property `showEditingUI`
|
|
11188
11498
|
*/
|
|
11189
11499
|
getShowEditingUI(): boolean;
|
|
11500
|
+
/**
|
|
11501
|
+
* Gets information about the current state.
|
|
11502
|
+
*
|
|
11503
|
+
* @since 1.145.0
|
|
11504
|
+
*
|
|
11505
|
+
* @returns JSON-like object which holds the current state information. See {@link sap.ui.vk.tools.CrossSectionTool#setState setState }
|
|
11506
|
+
* for details.
|
|
11507
|
+
*/
|
|
11508
|
+
getState(): object | null;
|
|
11190
11509
|
/**
|
|
11191
11510
|
* MOVE TO BASE Queues a command for execution during the rendering cycle. All gesture operations should
|
|
11192
11511
|
* be called using this method.
|
|
@@ -11242,6 +11561,40 @@ declare namespace sap {
|
|
|
11242
11561
|
*/
|
|
11243
11562
|
bShowEditingUI?: boolean
|
|
11244
11563
|
): this;
|
|
11564
|
+
/**
|
|
11565
|
+
* Sets the current state.
|
|
11566
|
+
*
|
|
11567
|
+
* @since 1.145.0
|
|
11568
|
+
*
|
|
11569
|
+
* @returns `this` to allow method chaining.
|
|
11570
|
+
*/
|
|
11571
|
+
setState(
|
|
11572
|
+
/**
|
|
11573
|
+
* JSON-like object which holds the state information. See below for details.
|
|
11574
|
+
*/
|
|
11575
|
+
state?: {
|
|
11576
|
+
/**
|
|
11577
|
+
* Specifies whether the cross section tool should be activated.
|
|
11578
|
+
*/
|
|
11579
|
+
enabled?: boolean;
|
|
11580
|
+
/**
|
|
11581
|
+
* Axis index from 0 to 2: 0 - X, 1 - Y, 2 - Z.
|
|
11582
|
+
*/
|
|
11583
|
+
axis?: number;
|
|
11584
|
+
/**
|
|
11585
|
+
* If set to `true`, the clipping plane will be flipped.
|
|
11586
|
+
*/
|
|
11587
|
+
flip?: boolean;
|
|
11588
|
+
/**
|
|
11589
|
+
* The position of the clipping planes defined as [x, y, z].
|
|
11590
|
+
*/
|
|
11591
|
+
position?: number[];
|
|
11592
|
+
},
|
|
11593
|
+
/**
|
|
11594
|
+
* The viewport where the tool is used.
|
|
11595
|
+
*/
|
|
11596
|
+
viewport?: sap.ui.vk.Viewport
|
|
11597
|
+
): this;
|
|
11245
11598
|
}
|
|
11246
11599
|
/**
|
|
11247
11600
|
* The DuplicateSvgElementTool allows applications to duplicate svg elements.
|
|
@@ -38754,6 +39107,12 @@ declare namespace sap {
|
|
|
38754
39107
|
* Provides simple 3D visualization capability by connecting, configuring and presenting the essential Visualization
|
|
38755
39108
|
* Toolkit controls a single composite control.
|
|
38756
39109
|
*
|
|
39110
|
+
* **NOTE:** To use this control the application developer should add dependencies to the following libraries
|
|
39111
|
+
* on application level to ensure that the libraries are loaded before the module dependencies will be required:
|
|
39112
|
+
*
|
|
39113
|
+
* - sap.f
|
|
39114
|
+
* - sap.ui.comp
|
|
39115
|
+
*
|
|
38757
39116
|
* @since 1.32.0
|
|
38758
39117
|
*/
|
|
38759
39118
|
class Viewer extends sap.ui.core.Control {
|
|
@@ -41607,6 +41966,10 @@ declare namespace sap {
|
|
|
41607
41966
|
* Indicator to retrieve selection information.
|
|
41608
41967
|
*/
|
|
41609
41968
|
selection?: boolean | object;
|
|
41969
|
+
/**
|
|
41970
|
+
* Indicator to retrieve cross-section information.
|
|
41971
|
+
*/
|
|
41972
|
+
crossSection?: boolean | object;
|
|
41610
41973
|
}
|
|
41611
41974
|
): object;
|
|
41612
41975
|
/**
|
|
@@ -46763,6 +47126,8 @@ declare namespace sap {
|
|
|
46763
47126
|
|
|
46764
47127
|
"sap/ui/vk/dvl/ViewStateManager": undefined;
|
|
46765
47128
|
|
|
47129
|
+
"sap/ui/vk/ecad/ElementsPanel": undefined;
|
|
47130
|
+
|
|
46766
47131
|
"sap/ui/vk/ecad/LayersPanel": undefined;
|
|
46767
47132
|
|
|
46768
47133
|
"sap/ui/vk/FlexibleControl": undefined;
|
package/types/sap.ushell.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED