@sapui5/ts-types 1.141.2 → 1.142.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 +8 -7
- 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.base.d.ts +3 -0
- package/types/sap.esh.search.ui.d.ts +152 -3
- package/types/sap.f.d.ts +1 -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 +50 -32
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +2646 -125
- package/types/sap.fe.navigation.d.ts +2 -2
- 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 +23 -11
- package/types/sap.fe.test.d.ts +8 -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 +4 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/{mobile-1.141.0-d.ts → sap.m.d.ts} +401 -54
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +106 -2
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +13 -3587
- package/types/sap.suite.ui.commons.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +30 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/{tnt-1.141.0-d.ts → sap.tnt.d.ts} +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/{commons-1.141.0-d.ts → sap.ui.commons.d.ts} +1 -1
- package/types/sap.ui.comp.d.ts +78 -9
- package/types/{core-1.141.0-d.ts → sap.ui.core.d.ts} +712 -187
- package/types/{dt-1.141.0-d.ts → sap.ui.dt.d.ts} +1 -1
- package/types/sap.ui.export.d.ts +56 -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 +100 -94
- package/types/{mdc-1.141.0-d.ts → sap.ui.mdc.d.ts} +1600 -260
- 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 +13 -41
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +34 -78
- package/types/{ux3-1.141.0-d.ts → 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.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 +13 -1
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +326 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
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.
|
|
1
|
+
// For Library Version: 1.142.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -88,8 +88,19 @@ declare namespace sap {
|
|
|
88
88
|
inputLiveUpdate?: (
|
|
89
89
|
oEvent: BarcodeScannerButton$InputLiveUpdateEvent
|
|
90
90
|
) => void;
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* Event is fired when either the cancel button in the scan dialog is pressed, or no scanning library is
|
|
94
|
+
* available. If unset, the default input dialog will be used.
|
|
95
|
+
*/
|
|
96
|
+
customInput?: (oEvent: sap.ui.base.Event) => void;
|
|
91
97
|
}
|
|
92
98
|
|
|
99
|
+
/**
|
|
100
|
+
* Parameters of the BarcodeScannerButton#customInput event.
|
|
101
|
+
*/
|
|
102
|
+
interface BarcodeScannerButton$CustomInputEventParameters {}
|
|
103
|
+
|
|
93
104
|
/**
|
|
94
105
|
* Parameters of the BarcodeScannerButton#inputLiveUpdate event.
|
|
95
106
|
*/
|
|
@@ -330,7 +341,12 @@ declare namespace sap {
|
|
|
330
341
|
/**
|
|
331
342
|
* Flag, which defines whether the Barcode input dialog should be shown.
|
|
332
343
|
*/
|
|
333
|
-
disableBarcodeInputDialog?: boolean
|
|
344
|
+
disableBarcodeInputDialog?: boolean,
|
|
345
|
+
/**
|
|
346
|
+
* Function to be called when either the cancel button in the scan dialog is pressed, or no scanning library
|
|
347
|
+
* is available. If unset, the default input dialog will be used.
|
|
348
|
+
*/
|
|
349
|
+
customInput?: Function
|
|
334
350
|
): void;
|
|
335
351
|
/**
|
|
336
352
|
* Set the configs of the control Barcode Scanner.
|
|
@@ -468,6 +484,55 @@ declare namespace sap {
|
|
|
468
484
|
* @returns Metadata object describing this class
|
|
469
485
|
*/
|
|
470
486
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
487
|
+
/**
|
|
488
|
+
* Attaches event handler `fnFunction` to the {@link #event:customInput customInput} event of this `sap.ndc.BarcodeScannerButton`.
|
|
489
|
+
*
|
|
490
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
491
|
+
* otherwise it will be bound to this `sap.ndc.BarcodeScannerButton` itself.
|
|
492
|
+
*
|
|
493
|
+
* Event is fired when either the cancel button in the scan dialog is pressed, or no scanning library is
|
|
494
|
+
* available. If unset, the default input dialog will be used.
|
|
495
|
+
*
|
|
496
|
+
*
|
|
497
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
498
|
+
*/
|
|
499
|
+
attachCustomInput(
|
|
500
|
+
/**
|
|
501
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
502
|
+
* object when firing the event
|
|
503
|
+
*/
|
|
504
|
+
oData: object,
|
|
505
|
+
/**
|
|
506
|
+
* The function to be called when the event occurs
|
|
507
|
+
*/
|
|
508
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
509
|
+
/**
|
|
510
|
+
* Context object to call the event handler with. Defaults to this `sap.ndc.BarcodeScannerButton` itself
|
|
511
|
+
*/
|
|
512
|
+
oListener?: object
|
|
513
|
+
): this;
|
|
514
|
+
/**
|
|
515
|
+
* Attaches event handler `fnFunction` to the {@link #event:customInput customInput} event of this `sap.ndc.BarcodeScannerButton`.
|
|
516
|
+
*
|
|
517
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
518
|
+
* otherwise it will be bound to this `sap.ndc.BarcodeScannerButton` itself.
|
|
519
|
+
*
|
|
520
|
+
* Event is fired when either the cancel button in the scan dialog is pressed, or no scanning library is
|
|
521
|
+
* available. If unset, the default input dialog will be used.
|
|
522
|
+
*
|
|
523
|
+
*
|
|
524
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
525
|
+
*/
|
|
526
|
+
attachCustomInput(
|
|
527
|
+
/**
|
|
528
|
+
* The function to be called when the event occurs
|
|
529
|
+
*/
|
|
530
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
531
|
+
/**
|
|
532
|
+
* Context object to call the event handler with. Defaults to this `sap.ndc.BarcodeScannerButton` itself
|
|
533
|
+
*/
|
|
534
|
+
oListener?: object
|
|
535
|
+
): this;
|
|
471
536
|
/**
|
|
472
537
|
* Attaches event handler `fnFunction` to the {@link #event:inputLiveUpdate inputLiveUpdate} event of this
|
|
473
538
|
* `sap.ndc.BarcodeScannerButton`.
|
|
@@ -611,6 +676,24 @@ declare namespace sap {
|
|
|
611
676
|
*/
|
|
612
677
|
oListener?: object
|
|
613
678
|
): this;
|
|
679
|
+
/**
|
|
680
|
+
* Detaches event handler `fnFunction` from the {@link #event:customInput customInput} event of this `sap.ndc.BarcodeScannerButton`.
|
|
681
|
+
*
|
|
682
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
683
|
+
*
|
|
684
|
+
*
|
|
685
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
686
|
+
*/
|
|
687
|
+
detachCustomInput(
|
|
688
|
+
/**
|
|
689
|
+
* The function to be called, when the event occurs
|
|
690
|
+
*/
|
|
691
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
692
|
+
/**
|
|
693
|
+
* Context object on which the given function had to be called
|
|
694
|
+
*/
|
|
695
|
+
oListener?: object
|
|
696
|
+
): this;
|
|
614
697
|
/**
|
|
615
698
|
* Detaches event handler `fnFunction` from the {@link #event:inputLiveUpdate inputLiveUpdate} event of
|
|
616
699
|
* this `sap.ndc.BarcodeScannerButton`.
|
|
@@ -666,6 +749,19 @@ declare namespace sap {
|
|
|
666
749
|
*/
|
|
667
750
|
oListener?: object
|
|
668
751
|
): this;
|
|
752
|
+
/**
|
|
753
|
+
* Fires event {@link #event:customInput customInput} to attached listeners.
|
|
754
|
+
*
|
|
755
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
756
|
+
*
|
|
757
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
758
|
+
*/
|
|
759
|
+
fireCustomInput(
|
|
760
|
+
/**
|
|
761
|
+
* Parameters to pass along with the event
|
|
762
|
+
*/
|
|
763
|
+
mParameters?: object
|
|
764
|
+
): this;
|
|
669
765
|
/**
|
|
670
766
|
* Fires event {@link #event:inputLiveUpdate inputLiveUpdate} to attached listeners.
|
|
671
767
|
*
|
|
@@ -925,6 +1021,14 @@ declare namespace sap {
|
|
|
925
1021
|
): this;
|
|
926
1022
|
}
|
|
927
1023
|
|
|
1024
|
+
/**
|
|
1025
|
+
* Event object of the BarcodeScannerButton#customInput event.
|
|
1026
|
+
*/
|
|
1027
|
+
type BarcodeScannerButton$CustomInputEvent = sap.ui.base.Event<
|
|
1028
|
+
BarcodeScannerButton$CustomInputEventParameters,
|
|
1029
|
+
BarcodeScannerButton
|
|
1030
|
+
>;
|
|
1031
|
+
|
|
928
1032
|
/**
|
|
929
1033
|
* Event object of the BarcodeScannerButton#inputLiveUpdate event.
|
|
930
1034
|
*/
|
package/types/sap.ovp.d.ts
CHANGED
package/types/sap.rules.ui.d.ts
CHANGED