@capturebridge/sdk 0.17.0 → 0.17.2
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/StreamingCapturePlugin.js +2 -0
- package/VerifoneControls.js +14 -9
- package/Version.js +1 -1
- package/package.json +1 -1
|
@@ -27,6 +27,8 @@ class StreamingCapturePlugin extends CapturePlugin {
|
|
|
27
27
|
* If the src is changed, the img removed from the DOM, or client disconnected
|
|
28
28
|
* for any reason, the live feed will automatically be stopped.
|
|
29
29
|
*
|
|
30
|
+
* @param {StreamOptions} [streamOpt] - Additional options for the stream.
|
|
31
|
+
*
|
|
30
32
|
* @param {string|object} [deviceOpt] - Get the stream URL from either a
|
|
31
33
|
* specific Device ID or a Device Object. The default is the first available
|
|
32
34
|
* device.
|
package/VerifoneControls.js
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @module
|
|
2
|
+
* @module VerifoneControls
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
5
|
import { blobToBase64 } from './Common.js'
|
|
6
6
|
import { DisplayWidget } from './SignatureTabletWidgets.js'
|
|
7
7
|
|
|
8
|
+
/**
|
|
9
|
+
* AccessKey
|
|
10
|
+
* @classdesc Special keys which can be mapped to a button
|
|
11
|
+
* @see {@link Verifone}
|
|
12
|
+
*/
|
|
8
13
|
export class AccessKey {
|
|
9
14
|
static STAR = 'Š'
|
|
10
15
|
static HASH = '‹'
|
|
@@ -17,7 +22,7 @@ export class AccessKey {
|
|
|
17
22
|
* Button
|
|
18
23
|
* @classdesc A button for displaying clickable text on a tablet
|
|
19
24
|
* @extends DisplayWidget
|
|
20
|
-
* @see {@link
|
|
25
|
+
* @see {@link Verifone}
|
|
21
26
|
*/
|
|
22
27
|
export class Button extends DisplayWidget {
|
|
23
28
|
id
|
|
@@ -82,7 +87,7 @@ export class Button extends DisplayWidget {
|
|
|
82
87
|
* Text
|
|
83
88
|
* @classdesc Text to be displayed on a tablet
|
|
84
89
|
* @extends DisplayWidget
|
|
85
|
-
* @see {@link
|
|
90
|
+
* @see {@link Verifone}
|
|
86
91
|
*/
|
|
87
92
|
export class Text extends DisplayWidget {
|
|
88
93
|
id
|
|
@@ -145,7 +150,7 @@ export class Text extends DisplayWidget {
|
|
|
145
150
|
* Image
|
|
146
151
|
* @classdesc Image to be displayed on a tablet
|
|
147
152
|
* @extends DisplayWidget
|
|
148
|
-
* @see {@link
|
|
153
|
+
* @see {@link Verifone}
|
|
149
154
|
*/
|
|
150
155
|
export class Image extends DisplayWidget {
|
|
151
156
|
id
|
|
@@ -219,7 +224,7 @@ export class Image extends DisplayWidget {
|
|
|
219
224
|
* SignatureBox
|
|
220
225
|
* @classdesc Bounding box to capture a signature
|
|
221
226
|
* @extends DisplayWidget
|
|
222
|
-
* @see {@link
|
|
227
|
+
* @see {@link Verifone}
|
|
223
228
|
*/
|
|
224
229
|
export class SignatureBox extends DisplayWidget {
|
|
225
230
|
id
|
|
@@ -265,7 +270,7 @@ export class SignatureBox extends DisplayWidget {
|
|
|
265
270
|
* Rect
|
|
266
271
|
* @classdesc A rectangle
|
|
267
272
|
* @extends DisplayWidget
|
|
268
|
-
* @see {@link
|
|
273
|
+
* @see {@link Verifone}
|
|
269
274
|
*/
|
|
270
275
|
export class Rect extends DisplayWidget {
|
|
271
276
|
id
|
|
@@ -318,7 +323,7 @@ export class Rect extends DisplayWidget {
|
|
|
318
323
|
* CheckBox
|
|
319
324
|
* @classdesc A check box object
|
|
320
325
|
* @extends DisplayWidget
|
|
321
|
-
* @see {@link
|
|
326
|
+
* @see {@link Verifone}
|
|
322
327
|
*/
|
|
323
328
|
export class CheckBox extends DisplayWidget {
|
|
324
329
|
id
|
|
@@ -363,7 +368,7 @@ export class CheckBox extends DisplayWidget {
|
|
|
363
368
|
* RadioButton
|
|
364
369
|
* @classdesc A radio button object
|
|
365
370
|
* @extends DisplayWidget
|
|
366
|
-
* @see {@link
|
|
371
|
+
* @see {@link Verifone}
|
|
367
372
|
*/
|
|
368
373
|
export class RadioButton extends DisplayWidget {
|
|
369
374
|
id
|
|
@@ -415,7 +420,7 @@ export class RadioButton extends DisplayWidget {
|
|
|
415
420
|
* TextInput
|
|
416
421
|
* @classdesc A text input object
|
|
417
422
|
* @extends DisplayWidget
|
|
418
|
-
* @see {@link
|
|
423
|
+
* @see {@link Verifone}
|
|
419
424
|
*/
|
|
420
425
|
export class TextInput extends DisplayWidget {
|
|
421
426
|
id
|
package/Version.js
CHANGED