@vonage/vivid-vue 3.52.0 → 3.53.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vonage/vivid-vue",
3
- "version": "3.52.0",
3
+ "version": "3.53.0",
4
4
  "description": "A Vue wrapper library for Vivid components.",
5
5
  "author": "Vonage",
6
6
  "license": "ISC",
@@ -20,6 +20,6 @@
20
20
  "vue": "^2.7.0 || >=3.0.0"
21
21
  },
22
22
  "dependencies": {
23
- "@vonage/vivid": "^3.52.0"
23
+ "@vonage/vivid": "^3.53.0"
24
24
  }
25
25
  }
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "framework": "vue",
3
3
  "name": "@vonage/vivid-vue",
4
- "version": "3.52.0",
4
+ "version": "3.53.0",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",
@@ -1804,7 +1804,12 @@
1804
1804
  "description": "Event that emits when the component checked state changes"
1805
1805
  }
1806
1806
  ],
1807
- "slots": [],
1807
+ "slots": [
1808
+ {
1809
+ "name": "helper-text",
1810
+ "description": "Describes how to use the checkbox. Alternative to the `helper-text` attribute."
1811
+ }
1812
+ ],
1808
1813
  "source": {
1809
1814
  "module": "@vonage/vivid-vue",
1810
1815
  "symbol": "VCheckbox"
@@ -2366,7 +2371,12 @@
2366
2371
  "description": "Event emitted when the clear value changes"
2367
2372
  }
2368
2373
  ],
2369
- "slots": [],
2374
+ "slots": [
2375
+ {
2376
+ "name": "helper-text",
2377
+ "description": "Describes how to use the date-picker. Alternative to the `helper-text` attribute."
2378
+ }
2379
+ ],
2370
2380
  "source": {
2371
2381
  "module": "@vonage/vivid-vue",
2372
2382
  "symbol": "VDatePicker"
@@ -2536,13 +2546,136 @@
2536
2546
  "description": "Event emitted when the clear value changes"
2537
2547
  }
2538
2548
  ],
2539
- "slots": [],
2549
+ "slots": [
2550
+ {
2551
+ "name": "helper-text",
2552
+ "description": "Describes how to use the date-range-picker. Alternative to the `helper-text` attribute."
2553
+ }
2554
+ ],
2540
2555
  "source": {
2541
2556
  "module": "@vonage/vivid-vue",
2542
2557
  "symbol": "VDateRangePicker"
2543
2558
  },
2544
2559
  "priority": "highest"
2545
2560
  },
2561
+ {
2562
+ "name": "VDialPad",
2563
+ "description": "Base class for dial-pad",
2564
+ "attributes": [
2565
+ {
2566
+ "name": "ariaCurrent",
2567
+ "description": "Indicates the element that represents the current item within a container or set of related elements.",
2568
+ "value": {
2569
+ "kind": "expression",
2570
+ "type": "'page' | 'step' | 'location' | 'date' | 'time' | 'true' | 'false'"
2571
+ }
2572
+ },
2573
+ {
2574
+ "name": "helperText",
2575
+ "description": "Indicates the helper-text's text.",
2576
+ "value": {
2577
+ "kind": "expression",
2578
+ "type": "string"
2579
+ }
2580
+ },
2581
+ {
2582
+ "name": "placeholder",
2583
+ "description": "Indicates the placeholder's text.",
2584
+ "value": {
2585
+ "kind": "expression",
2586
+ "type": "string"
2587
+ }
2588
+ },
2589
+ {
2590
+ "name": "value",
2591
+ "description": "Indicates the value's text.",
2592
+ "value": {
2593
+ "kind": "expression",
2594
+ "type": "string"
2595
+ }
2596
+ },
2597
+ {
2598
+ "name": "pattern",
2599
+ "description": "Indicates the dial pad's pattern.",
2600
+ "value": {
2601
+ "kind": "expression",
2602
+ "type": "string"
2603
+ }
2604
+ },
2605
+ {
2606
+ "name": "disabled",
2607
+ "description": "Indicates the disabled state of the dial-pad.",
2608
+ "value": {
2609
+ "kind": "expression",
2610
+ "type": "boolean"
2611
+ }
2612
+ },
2613
+ {
2614
+ "name": "callActive",
2615
+ "description": "Indicates the active state of the dial-pad.",
2616
+ "value": {
2617
+ "kind": "expression",
2618
+ "type": "boolean"
2619
+ }
2620
+ },
2621
+ {
2622
+ "name": "noCall",
2623
+ "description": "Indicates the no-call state of the dial-pad.",
2624
+ "value": {
2625
+ "kind": "expression",
2626
+ "type": "boolean"
2627
+ }
2628
+ }
2629
+ ],
2630
+ "events": [
2631
+ {
2632
+ "name": "click",
2633
+ "description": "Fires when a pointing device button (such as a mouse's primary mouse button) is both pressed and released while the pointer is located inside the element."
2634
+ },
2635
+ {
2636
+ "name": "keydown",
2637
+ "description": "Fires when a key is pressed."
2638
+ },
2639
+ {
2640
+ "name": "keyup",
2641
+ "description": "Fires when a key is released."
2642
+ },
2643
+ {
2644
+ "name": "change",
2645
+ "description": "Emitted when the text field value changes"
2646
+ },
2647
+ {
2648
+ "name": "input",
2649
+ "description": "Emitted when the text field value changes"
2650
+ },
2651
+ {
2652
+ "name": "blur",
2653
+ "description": "Emitted when the text field loses focus"
2654
+ },
2655
+ {
2656
+ "name": "focus",
2657
+ "description": "Emitted when the text field receives focus"
2658
+ },
2659
+ {
2660
+ "name": "keypad-click",
2661
+ "description": "Emitted when a digit button is clicked"
2662
+ },
2663
+ {
2664
+ "name": "dial",
2665
+ "description": "Emitted when the call button is clicked"
2666
+ },
2667
+ {
2668
+ "name": "end-call",
2669
+ "description": "Emitted when the end call button is clicked"
2670
+ }
2671
+ ],
2672
+ "slots": [],
2673
+ "source": {
2674
+ "module": "@vonage/vivid-vue",
2675
+ "symbol": "VDialPad"
2676
+ },
2677
+ "priority": "highest"
2678
+ },
2546
2679
  {
2547
2680
  "name": "VDialog",
2548
2681
  "description": "",
@@ -3150,7 +3283,12 @@
3150
3283
  "description": "Emitted when a file is added or removed."
3151
3284
  }
3152
3285
  ],
3153
- "slots": [],
3286
+ "slots": [
3287
+ {
3288
+ "name": "helper-text",
3289
+ "description": "Describes how to use the file-picker. Alternative to the `helper-text` attribute."
3290
+ }
3291
+ ],
3154
3292
  "source": {
3155
3293
  "module": "@vonage/vivid-vue",
3156
3294
  "symbol": "VFilePicker"
@@ -3881,6 +4019,22 @@
3881
4019
  "kind": "expression",
3882
4020
  "type": "string"
3883
4021
  }
4022
+ },
4023
+ {
4024
+ "name": "connotation",
4025
+ "description": "The connotation Text-Anchor should have.",
4026
+ "value": {
4027
+ "kind": "expression",
4028
+ "type": "'accent' | 'cta'"
4029
+ }
4030
+ },
4031
+ {
4032
+ "name": "appearance",
4033
+ "description": "The appearance Text-Anchor should have.",
4034
+ "value": {
4035
+ "kind": "expression",
4036
+ "type": "'ghost'"
4037
+ }
3884
4038
  }
3885
4039
  ],
3886
4040
  "events": [
@@ -4257,7 +4411,12 @@
4257
4411
  "description": "Fires a custom 'change' event when the value has changed"
4258
4412
  }
4259
4413
  ],
4260
- "slots": [],
4414
+ "slots": [
4415
+ {
4416
+ "name": "helper-text",
4417
+ "description": "Describes how to use the number-field. Alternative to the `helper-text` attribute."
4418
+ }
4419
+ ],
4261
4420
  "source": {
4262
4421
  "module": "@vonage/vivid-vue",
4263
4422
  "symbol": "VNumberField"
@@ -5301,6 +5460,10 @@
5301
5460
  {
5302
5461
  "name": "meta",
5303
5462
  "description": "Slot to add meta content to the select control."
5463
+ },
5464
+ {
5465
+ "name": "helper-text",
5466
+ "description": "Describes how to use the select. Alternative to the `helper-text` attribute."
5304
5467
  }
5305
5468
  ],
5306
5469
  "source": {
@@ -6628,7 +6791,12 @@
6628
6791
  "description": "Emits a custom 'change' event when the textarea emits a change event"
6629
6792
  }
6630
6793
  ],
6631
- "slots": [],
6794
+ "slots": [
6795
+ {
6796
+ "name": "helper-text",
6797
+ "description": "Describes how to use the text-area. Alternative to the `helper-text` attribute."
6798
+ }
6799
+ ],
6632
6800
  "source": {
6633
6801
  "module": "@vonage/vivid-vue",
6634
6802
  "symbol": "VTextArea"
@@ -6875,6 +7043,10 @@
6875
7043
  {
6876
7044
  "name": "action-items",
6877
7045
  "description": "Used to add action items to the end of the text-field."
7046
+ },
7047
+ {
7048
+ "name": "helper-text",
7049
+ "description": "Describes how to use the text-field. Alternative to the `helper-text` attribute."
6878
7050
  }
6879
7051
  ],
6880
7052
  "source": {
@@ -7038,7 +7210,12 @@
7038
7210
  "description": "Emitted when the time is changed by the user."
7039
7211
  }
7040
7212
  ],
7041
- "slots": [],
7213
+ "slots": [
7214
+ {
7215
+ "name": "helper-text",
7216
+ "description": "Describes how to use the time-picker. Alternative to the `helper-text` attribute."
7217
+ }
7218
+ ],
7042
7219
  "source": {
7043
7220
  "module": "@vonage/vivid-vue",
7044
7221
  "symbol": "VTimePicker"
@@ -7386,6 +7563,117 @@
7386
7563
  "symbol": "VTreeView"
7387
7564
  },
7388
7565
  "priority": "highest"
7566
+ },
7567
+ {
7568
+ "name": "VVideoPlayer",
7569
+ "description": "Base class for video-player",
7570
+ "attributes": [
7571
+ {
7572
+ "name": "ariaCurrent",
7573
+ "description": "Indicates the element that represents the current item within a container or set of related elements.",
7574
+ "value": {
7575
+ "kind": "expression",
7576
+ "type": "'page' | 'step' | 'location' | 'date' | 'time' | 'true' | 'false'"
7577
+ }
7578
+ },
7579
+ {
7580
+ "name": "poster",
7581
+ "description": "Reference to an image which is displayed before the video is played",
7582
+ "value": {
7583
+ "kind": "expression",
7584
+ "type": "string"
7585
+ }
7586
+ },
7587
+ {
7588
+ "name": "src",
7589
+ "description": "URL of a video file",
7590
+ "value": {
7591
+ "kind": "expression",
7592
+ "type": "string"
7593
+ }
7594
+ },
7595
+ {
7596
+ "name": "autoplay",
7597
+ "description": "Allows the video will play automatically (muted)",
7598
+ "value": {
7599
+ "kind": "expression",
7600
+ "type": "boolean"
7601
+ }
7602
+ },
7603
+ {
7604
+ "name": "loop",
7605
+ "description": "Allows the video to loop back to the beginning when finished",
7606
+ "value": {
7607
+ "kind": "expression",
7608
+ "type": "boolean"
7609
+ }
7610
+ },
7611
+ {
7612
+ "name": "playbackRates",
7613
+ "description": "Sets the available playback rates. When an empty string, no choices will be available",
7614
+ "value": {
7615
+ "kind": "expression",
7616
+ "type": "string"
7617
+ }
7618
+ },
7619
+ {
7620
+ "name": "skipBy",
7621
+ "description": "Allows the video to loop back to the beginning when finished",
7622
+ "value": {
7623
+ "kind": "expression",
7624
+ "type": "'0' | '5' | '10' | '30'"
7625
+ }
7626
+ }
7627
+ ],
7628
+ "events": [
7629
+ {
7630
+ "name": "click",
7631
+ "description": "Fires when a pointing device button (such as a mouse's primary mouse button) is both pressed and released while the pointer is located inside the element."
7632
+ },
7633
+ {
7634
+ "name": "focus",
7635
+ "description": "Fires when the element receives focus."
7636
+ },
7637
+ {
7638
+ "name": "blur",
7639
+ "description": "Fires when the element loses focus."
7640
+ },
7641
+ {
7642
+ "name": "keydown",
7643
+ "description": "Fires when a key is pressed."
7644
+ },
7645
+ {
7646
+ "name": "keyup",
7647
+ "description": "Fires when a key is released."
7648
+ },
7649
+ {
7650
+ "name": "input",
7651
+ "description": "Fires when the value of an element has been changed."
7652
+ },
7653
+ {
7654
+ "name": "play",
7655
+ "description": "Fired when the video is played"
7656
+ },
7657
+ {
7658
+ "name": "pause",
7659
+ "description": "Fired when the video is paused"
7660
+ },
7661
+ {
7662
+ "name": "ended",
7663
+ "description": "Fired when the video is ended"
7664
+ }
7665
+ ],
7666
+ "slots": [
7667
+ {
7668
+ "name": "default",
7669
+ "description": "Default slot"
7670
+ }
7671
+ ],
7672
+ "source": {
7673
+ "module": "@vonage/vivid-vue",
7674
+ "symbol": "VVideoPlayer"
7675
+ },
7676
+ "priority": "highest"
7389
7677
  }
7390
7678
  ]
7391
7679
  }