@vonage/vivid 3.58.0 → 3.59.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.
Files changed (64) hide show
  1. package/appearance-ui/index.cjs +1 -1
  2. package/appearance-ui/index.js +1 -1
  3. package/custom-elements.json +832 -55
  4. package/lib/audio-player/audio-player.d.ts +3 -0
  5. package/lib/combobox/combobox.d.ts +3 -0
  6. package/lib/combobox/definition.d.ts +1 -1
  7. package/lib/number-field/number-field.d.ts +23 -8
  8. package/lib/number-field/number-field.form-associated.d.ts +10 -0
  9. package/lib/video-player/video-player.d.ts +1 -0
  10. package/listbox/index.cjs +1 -1
  11. package/listbox/index.js +1 -1
  12. package/package.json +1 -1
  13. package/shared/definition.cjs +1 -1
  14. package/shared/definition.js +1 -1
  15. package/shared/definition11.cjs +1 -1
  16. package/shared/definition11.js +1 -1
  17. package/shared/definition16.cjs +11 -2
  18. package/shared/definition16.js +11 -2
  19. package/shared/definition20.cjs +13 -13
  20. package/shared/definition20.js +13 -13
  21. package/shared/definition29.cjs +1 -0
  22. package/shared/definition29.js +1 -1
  23. package/shared/definition3.cjs +1 -1
  24. package/shared/definition3.js +1 -1
  25. package/shared/definition31.cjs +1 -1
  26. package/shared/definition31.js +1 -1
  27. package/shared/definition32.cjs +1 -1
  28. package/shared/definition32.js +1 -1
  29. package/shared/definition35.cjs +240 -331
  30. package/shared/definition35.js +241 -332
  31. package/shared/definition38.cjs +1 -1
  32. package/shared/definition38.js +1 -1
  33. package/shared/definition42.js +1 -1
  34. package/shared/definition43.cjs +1 -1
  35. package/shared/definition43.js +1 -1
  36. package/shared/definition47.cjs +1 -1
  37. package/shared/definition47.js +1 -1
  38. package/shared/definition5.cjs +74 -11
  39. package/shared/definition5.js +67 -4
  40. package/shared/definition50.cjs +1 -1
  41. package/shared/definition50.js +1 -1
  42. package/shared/definition51.cjs +1 -1
  43. package/shared/definition51.js +1 -1
  44. package/shared/definition54.cjs +1 -1
  45. package/shared/definition54.js +1 -1
  46. package/shared/definition59.cjs +1 -1
  47. package/shared/definition59.js +1 -1
  48. package/shared/definition61.cjs +2 -65859
  49. package/shared/definition61.js +2 -65859
  50. package/shared/definition8.cjs +1 -1
  51. package/shared/definition8.js +1 -1
  52. package/shared/key-codes2.js +1 -1
  53. package/shared/patterns/anchored.d.ts +4 -4
  54. package/shared/text-field.cjs +1 -1
  55. package/shared/text-field.js +1 -1
  56. package/shared/video-player.cjs +65864 -0
  57. package/shared/video-player.js +65861 -0
  58. package/styles/core/all.css +1 -1
  59. package/styles/core/theme.css +1 -1
  60. package/styles/core/typography.css +1 -1
  61. package/styles/tokens/theme-dark.css +5 -5
  62. package/styles/tokens/theme-light.css +5 -5
  63. package/styles/tokens/vivid-2-compat.css +1 -1
  64. package/vivid.api.json +58 -0
@@ -36,6 +36,15 @@
36
36
  }
37
37
  }
38
38
  ],
39
+ "events": [
40
+ {
41
+ "type": {
42
+ "text": "CustomEvent<string | null>"
43
+ },
44
+ "description": "Fires a custom 'change' event when the active item changes",
45
+ "name": "change"
46
+ }
47
+ ],
39
48
  "superclass": {
40
49
  "name": "FastAccordion",
41
50
  "package": "@microsoft/fast-foundation"
@@ -101,10 +110,6 @@
101
110
  "description": "",
102
111
  "name": "AccordionItem",
103
112
  "cssProperties": [
104
- {
105
- "name": "--vvd-accordion-item-accent-primary",
106
- "default": "var(--vvd-color-canvas-text)"
107
- },
108
113
  {
109
114
  "name": "--vvd-accordion-item-accent-faint",
110
115
  "default": "var(--vvd-color-neutral-50)"
@@ -112,6 +117,10 @@
112
117
  {
113
118
  "name": "--vvd-accordion-item-accent-soft",
114
119
  "default": "var(--vvd-color-neutral-100)"
120
+ },
121
+ {
122
+ "name": "--vvd-accordion-item-accent-firm",
123
+ "default": "var(--vvd-color-canvas-text)"
115
124
  }
116
125
  ],
117
126
  "slots": [
@@ -163,6 +172,15 @@
163
172
  "privacy": "public"
164
173
  }
165
174
  ],
175
+ "events": [
176
+ {
177
+ "type": {
178
+ "text": "CustomEvent<undefined>"
179
+ },
180
+ "description": "Fires a custom 'change' event when the button is invoked",
181
+ "name": "change"
182
+ }
183
+ ],
166
184
  "attributes": [
167
185
  {
168
186
  "name": "heading",
@@ -635,10 +653,16 @@
635
653
  ],
636
654
  "events": [
637
655
  {
656
+ "type": {
657
+ "text": "CustomEvent<undefined>"
658
+ },
638
659
  "description": "Fired when the alert is opened",
639
660
  "name": "open"
640
661
  },
641
662
  {
663
+ "type": {
664
+ "text": "CustomEvent<undefined>"
665
+ },
642
666
  "description": "Fired when the alert is closed",
643
667
  "name": "close"
644
668
  }
@@ -1468,6 +1492,10 @@
1468
1492
  "description": "Indicates the audio-player's src.",
1469
1493
  "privacy": "public"
1470
1494
  },
1495
+ {
1496
+ "kind": "field",
1497
+ "name": "playbackRate"
1498
+ },
1471
1499
  {
1472
1500
  "kind": "method",
1473
1501
  "name": "srcChanged"
@@ -1501,6 +1529,16 @@
1501
1529
  "description": "Allows the audio to skip back or forward",
1502
1530
  "privacy": "public"
1503
1531
  },
1532
+ {
1533
+ "kind": "field",
1534
+ "name": "playbackRates",
1535
+ "type": {
1536
+ "text": "string | null"
1537
+ },
1538
+ "default": "null",
1539
+ "description": "Sets the available playback rates. When an empty string, no choices will be available",
1540
+ "privacy": "public"
1541
+ },
1504
1542
  {
1505
1543
  "kind": "field",
1506
1544
  "name": "paused",
@@ -1668,6 +1706,15 @@
1668
1706
  },
1669
1707
  "description": "Allows the audio to skip back or forward",
1670
1708
  "fieldName": "skipBy"
1709
+ },
1710
+ {
1711
+ "name": "playback-rates",
1712
+ "type": {
1713
+ "text": "string | null"
1714
+ },
1715
+ "default": "null",
1716
+ "description": "Sets the available playback rates. When an empty string, no choices will be available",
1717
+ "fieldName": "playbackRates"
1671
1718
  }
1672
1719
  ],
1673
1720
  "superclass": {
@@ -2943,6 +2990,42 @@
2943
2990
  "name": "--vvd-button-alert-fierce-primary",
2944
2991
  "default": "var(--vvd-color-alert-700)"
2945
2992
  },
2993
+ {
2994
+ "name": "--vvd-button-announcement-primary",
2995
+ "default": "var(--vvd-color-announcement-500)"
2996
+ },
2997
+ {
2998
+ "name": "--vvd-button-announcement-primary-text",
2999
+ "default": "var(--vvd-color-canvas)"
3000
+ },
3001
+ {
3002
+ "name": "--vvd-button-announcement-primary-increment",
3003
+ "default": "var(--vvd-color-announcement-600)"
3004
+ },
3005
+ {
3006
+ "name": "--vvd-button-announcement-contrast",
3007
+ "default": "var(--vvd-color-announcement-800)"
3008
+ },
3009
+ {
3010
+ "name": "--vvd-button-announcement-fierce",
3011
+ "default": "var(--vvd-color-announcement-700)"
3012
+ },
3013
+ {
3014
+ "name": "--vvd-button-announcement-firm",
3015
+ "default": "var(--vvd-color-announcement-600)"
3016
+ },
3017
+ {
3018
+ "name": "--vvd-button-announcement-soft",
3019
+ "default": "var(--vvd-color-announcement-100)"
3020
+ },
3021
+ {
3022
+ "name": "--vvd-button-announcement-faint",
3023
+ "default": "var(--vvd-color-announcement-50)"
3024
+ },
3025
+ {
3026
+ "name": "--vvd-button-announcement-fierce-primary",
3027
+ "default": "var(--vvd-color-announcement-700)"
3028
+ },
2946
3029
  {
2947
3030
  "name": "--vvd-button-accent-primary",
2948
3031
  "default": "var(--vvd-color-canvas-text)"
@@ -4200,7 +4283,17 @@
4200
4283
  ],
4201
4284
  "events": [
4202
4285
  {
4203
- "description": "Event that emits when the component checked state changes",
4286
+ "type": {
4287
+ "text": "CustomEvent<undefined>"
4288
+ },
4289
+ "description": "Emitted when the checked state changes.",
4290
+ "name": "change"
4291
+ },
4292
+ {
4293
+ "type": {
4294
+ "text": "CustomEvent<undefined>"
4295
+ },
4296
+ "description": "Emitted when the checked state changes.",
4204
4297
  "name": "input"
4205
4298
  }
4206
4299
  ],
@@ -4309,6 +4402,15 @@
4309
4402
  }
4310
4403
  ],
4311
4404
  "members": [
4405
+ {
4406
+ "kind": "field",
4407
+ "name": "appearance",
4408
+ "type": {
4409
+ "text": "ComboboxAppearance | undefined"
4410
+ },
4411
+ "description": "The appearance attribute.",
4412
+ "privacy": "public"
4413
+ },
4312
4414
  {
4313
4415
  "kind": "field",
4314
4416
  "name": "placement",
@@ -4342,7 +4444,24 @@
4342
4444
  }
4343
4445
  }
4344
4446
  ],
4447
+ "events": [
4448
+ {
4449
+ "type": {
4450
+ "text": "CustomEvent<undefined>"
4451
+ },
4452
+ "description": "Fires a custom 'change' event when the value updates",
4453
+ "name": "change"
4454
+ }
4455
+ ],
4345
4456
  "attributes": [
4457
+ {
4458
+ "name": "appearance",
4459
+ "type": {
4460
+ "text": "ComboboxAppearance | undefined"
4461
+ },
4462
+ "description": "The appearance attribute.",
4463
+ "fieldName": "appearance"
4464
+ },
4346
4465
  {
4347
4466
  "name": "placement",
4348
4467
  "type": {
@@ -4423,6 +4542,14 @@
4423
4542
  "module": "./combobox"
4424
4543
  }
4425
4544
  },
4545
+ {
4546
+ "kind": "js",
4547
+ "name": "ComboboxAppearance",
4548
+ "declaration": {
4549
+ "name": "ComboboxAppearance",
4550
+ "module": "./combobox"
4551
+ }
4552
+ },
4426
4553
  {
4427
4554
  "kind": "js",
4428
4555
  "name": "comboboxRegistries",
@@ -4595,12 +4722,25 @@
4595
4722
  ],
4596
4723
  "events": [
4597
4724
  {
4725
+ "type": {
4726
+ "text": "CustomEvent<{columnDataKey: string, ariaSort: string | null}>"
4727
+ },
4598
4728
  "description": "Event that fires when a sortable column header is clicked",
4599
4729
  "name": "sort"
4600
4730
  },
4601
4731
  {
4732
+ "type": {
4733
+ "text": "CustomEvent<{cell: HTMLElement, row: HTMLElement, isHeaderCell: boolean, columnDataKey: string}>"
4734
+ },
4602
4735
  "description": "Event that fires when a cell is clicked",
4603
4736
  "name": "cell-click"
4737
+ },
4738
+ {
4739
+ "type": {
4740
+ "text": "CustomEvent<HTMLElement>"
4741
+ },
4742
+ "description": "Fires a custom 'cell-focused' event when focus is on the cell or its contents",
4743
+ "name": "cell-focused"
4604
4744
  }
4605
4745
  ],
4606
4746
  "attributes": [
@@ -4738,8 +4878,18 @@
4738
4878
  ],
4739
4879
  "events": [
4740
4880
  {
4881
+ "type": {
4882
+ "text": "CustomEvent<{cell: HTMLElement, row: HTMLElement, isHeaderCell: boolean, columnDataKey: string}>"
4883
+ },
4741
4884
  "description": "Event that fires when a cell is clicked",
4742
4885
  "name": "cell-click"
4886
+ },
4887
+ {
4888
+ "type": {
4889
+ "text": "CustomEvent<HTMLElement>"
4890
+ },
4891
+ "description": "Fires a custom 'row-focused' event when focus is on an element (usually a cell or its contents) in the row",
4892
+ "name": "row-focused"
4743
4893
  }
4744
4894
  ],
4745
4895
  "attributes": [
@@ -5016,6 +5166,9 @@
5016
5166
  ],
5017
5167
  "events": [
5018
5168
  {
5169
+ "type": {
5170
+ "text": "CustomEvent<{cell: HTMLElement, row: HTMLElement, isHeaderCell: boolean, columnDataKey: string}>"
5171
+ },
5019
5172
  "description": "Event that fires when a cell is clicked",
5020
5173
  "name": "cell-click"
5021
5174
  }
@@ -5377,6 +5530,33 @@
5377
5530
  }
5378
5531
  }
5379
5532
  ],
5533
+ "events": [
5534
+ {
5535
+ "type": {
5536
+ "text": "CustomEvent<undefined>"
5537
+ },
5538
+ "description": "Emitted when the date is changed by the user.",
5539
+ "name": "input"
5540
+ },
5541
+ {
5542
+ "type": {
5543
+ "text": "CustomEvent<undefined>"
5544
+ },
5545
+ "description": "Emitted when the date is changed by the user.",
5546
+ "name": "change"
5547
+ },
5548
+ {
5549
+ "type": {
5550
+ "text": "CustomEvent<undefined>"
5551
+ },
5552
+ "description": "Event emitted when the clear button is clicked.",
5553
+ "name": "clear-click",
5554
+ "inheritedFrom": {
5555
+ "name": "DatePickerBase",
5556
+ "module": "libs/components/src/shared/date-picker/date-picker-base.ts"
5557
+ }
5558
+ }
5559
+ ],
5380
5560
  "superclass": {
5381
5561
  "name": "DatePickerBase",
5382
5562
  "module": "/libs/components/src/shared/date-picker/date-picker-base"
@@ -5443,16 +5623,6 @@
5443
5623
  "module": "libs/components/src/shared/date-picker/date-picker-base.ts"
5444
5624
  }
5445
5625
  }
5446
- ],
5447
- "events": [
5448
- {
5449
- "description": "Event emitted when the clear value changes",
5450
- "name": "clear-click",
5451
- "inheritedFrom": {
5452
- "name": "DatePickerBase",
5453
- "module": "libs/components/src/shared/date-picker/date-picker-base.ts"
5454
- }
5455
- }
5456
5626
  ]
5457
5627
  }
5458
5628
  ],
@@ -5821,15 +5991,38 @@
5821
5991
  ],
5822
5992
  "events": [
5823
5993
  {
5994
+ "type": {
5995
+ "text": "CustomEvent<undefined>"
5996
+ },
5824
5997
  "description": "Event emitted when the start value changes",
5825
5998
  "name": "input:start"
5826
5999
  },
5827
6000
  {
6001
+ "type": {
6002
+ "text": "CustomEvent<undefined>"
6003
+ },
5828
6004
  "description": "Event emitted when the end value changes",
5829
6005
  "name": "input:end"
5830
6006
  },
5831
6007
  {
5832
- "description": "Event emitted when the clear value changes",
6008
+ "type": {
6009
+ "text": "CustomEvent<undefined>"
6010
+ },
6011
+ "description": "Emitted when either the start or end value changes",
6012
+ "name": "input"
6013
+ },
6014
+ {
6015
+ "type": {
6016
+ "text": "CustomEvent<undefined>"
6017
+ },
6018
+ "description": "Emitted when either the start or end value changes",
6019
+ "name": "change"
6020
+ },
6021
+ {
6022
+ "type": {
6023
+ "text": "CustomEvent<undefined>"
6024
+ },
6025
+ "description": "Event emitted when the clear button is clicked.",
5833
6026
  "name": "clear-click",
5834
6027
  "inheritedFrom": {
5835
6028
  "name": "DatePickerBase",
@@ -6205,30 +6398,51 @@
6205
6398
  ],
6206
6399
  "events": [
6207
6400
  {
6401
+ "type": {
6402
+ "text": "CustomEvent<undefined>"
6403
+ },
6208
6404
  "description": "Emitted when the text field value changes",
6209
6405
  "name": "change"
6210
6406
  },
6211
6407
  {
6408
+ "type": {
6409
+ "text": "CustomEvent<undefined>"
6410
+ },
6212
6411
  "description": "Emitted when the text field value changes",
6213
6412
  "name": "input"
6214
6413
  },
6215
6414
  {
6415
+ "type": {
6416
+ "text": "CustomEvent<undefined>"
6417
+ },
6216
6418
  "description": "Emitted when the text field loses focus",
6217
6419
  "name": "blur"
6218
6420
  },
6219
6421
  {
6422
+ "type": {
6423
+ "text": "CustomEvent<undefined>"
6424
+ },
6220
6425
  "description": "Emitted when the text field receives focus",
6221
6426
  "name": "focus"
6222
6427
  },
6223
6428
  {
6429
+ "type": {
6430
+ "text": "CustomEvent<HTMLElement>"
6431
+ },
6224
6432
  "description": "Emitted when a digit button is clicked",
6225
6433
  "name": "keypad-click"
6226
6434
  },
6227
6435
  {
6436
+ "type": {
6437
+ "text": "CustomEvent<undefined>"
6438
+ },
6228
6439
  "description": "Emitted when the call button is clicked",
6229
6440
  "name": "dial"
6230
6441
  },
6231
6442
  {
6443
+ "type": {
6444
+ "text": "CustomEvent<undefined>"
6445
+ },
6232
6446
  "description": "Emitted when the end call button is clicked",
6233
6447
  "name": "end-call"
6234
6448
  }
@@ -6570,7 +6784,10 @@
6570
6784
  ],
6571
6785
  "events": [
6572
6786
  {
6573
- "description": "Fired when the dialog is closed.",
6787
+ "type": {
6788
+ "text": "CustomEvent<string>"
6789
+ },
6790
+ "description": "The `close` event fires when the dialog closes (either via user interaction or via the API). It returns the return value inside the event's details property.",
6574
6791
  "name": "close"
6575
6792
  }
6576
6793
  ],
@@ -7511,6 +7728,9 @@
7511
7728
  ],
7512
7729
  "events": [
7513
7730
  {
7731
+ "type": {
7732
+ "text": "CustomEvent<undefined>"
7733
+ },
7514
7734
  "description": "Emitted when a file is added or removed.",
7515
7735
  "name": "change"
7516
7736
  }
@@ -8507,10 +8727,16 @@
8507
8727
  ],
8508
8728
  "events": [
8509
8729
  {
8730
+ "type": {
8731
+ "text": "CustomEvent<undefined>"
8732
+ },
8510
8733
  "description": "Fired when the menu is opened",
8511
8734
  "name": "open"
8512
8735
  },
8513
8736
  {
8737
+ "type": {
8738
+ "text": "CustomEvent<undefined>"
8739
+ },
8514
8740
  "description": "Fired when the menu is closed",
8515
8741
  "name": "close"
8516
8742
  }
@@ -8803,6 +9029,22 @@
8803
9029
  "name": "updateSubmenu"
8804
9030
  }
8805
9031
  ],
9032
+ "events": [
9033
+ {
9034
+ "type": {
9035
+ "text": "CustomEvent<HTMLElement>"
9036
+ },
9037
+ "description": "Fires a custom 'expanded-change' event when the expanded state changes",
9038
+ "name": "expanded-change"
9039
+ },
9040
+ {
9041
+ "type": {
9042
+ "text": "CustomEvent<undefined>"
9043
+ },
9044
+ "description": "Fires a custom 'change' event when a non-submenu item with a role of `menuitemcheckbox`, `menuitemradio`, or `menuitem` is invoked",
9045
+ "name": "change"
9046
+ }
9047
+ ],
8806
9048
  "attributes": [
8807
9049
  {
8808
9050
  "name": "text",
@@ -9155,6 +9397,9 @@
9155
9397
  ],
9156
9398
  "events": [
9157
9399
  {
9400
+ "type": {
9401
+ "text": "CustomEvent<undefined>"
9402
+ },
9158
9403
  "description": "Event emitted when the nav disclosure is toggled.",
9159
9404
  "name": "toggle"
9160
9405
  }
@@ -9719,6 +9964,43 @@
9719
9964
  "declarations": [],
9720
9965
  "exports": []
9721
9966
  },
9967
+ {
9968
+ "kind": "javascript-module",
9969
+ "path": "libs/components/src/lib/number-field/number-field.form-associated.ts",
9970
+ "declarations": [
9971
+ {
9972
+ "kind": "class",
9973
+ "description": "",
9974
+ "name": "FormAssociatedNumberField",
9975
+ "members": [
9976
+ {
9977
+ "kind": "field",
9978
+ "name": "proxy"
9979
+ }
9980
+ ],
9981
+ "mixins": [
9982
+ {
9983
+ "name": "FormAssociated",
9984
+ "package": "@microsoft/fast-foundation"
9985
+ }
9986
+ ],
9987
+ "superclass": {
9988
+ "name": "_NumberField",
9989
+ "module": "libs/components/src/lib/number-field/number-field.form-associated.ts"
9990
+ }
9991
+ }
9992
+ ],
9993
+ "exports": [
9994
+ {
9995
+ "kind": "js",
9996
+ "name": "FormAssociatedNumberField",
9997
+ "declaration": {
9998
+ "name": "FormAssociatedNumberField",
9999
+ "module": "libs/components/src/lib/number-field/number-field.form-associated.ts"
10000
+ }
10001
+ }
10002
+ ]
10003
+ },
9722
10004
  {
9723
10005
  "kind": "javascript-module",
9724
10006
  "path": "libs/components/src/lib/number-field/number-field.ts",
@@ -9770,47 +10052,85 @@
9770
10052
  "members": [
9771
10053
  {
9772
10054
  "kind": "field",
9773
- "name": "incrementButtonAriaLabel",
10055
+ "name": "readOnly",
9774
10056
  "type": {
9775
- "text": "| string\n\t\t| null"
10057
+ "text": "boolean"
9776
10058
  },
9777
- "default": "null"
10059
+ "default": "false",
10060
+ "description": "When true, the control will be immutable by user interaction. See https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/readonly | readonly HTML attribute for more information.",
10061
+ "privacy": "public"
9778
10062
  },
9779
10063
  {
9780
10064
  "kind": "field",
9781
- "name": "decrementButtonAriaLabel",
10065
+ "name": "autofocus",
9782
10066
  "type": {
9783
- "text": "| string\n\t\t| null"
10067
+ "text": "boolean"
9784
10068
  },
9785
- "default": "null"
10069
+ "default": "false",
10070
+ "description": "Indicates that this element should get focus after the page finishes loading. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefautofocus | autofocus HTML attribute for more information.",
10071
+ "privacy": "public"
9786
10072
  },
9787
10073
  {
9788
10074
  "kind": "field",
9789
- "name": "appearance",
10075
+ "name": "placeholder",
9790
10076
  "type": {
9791
- "text": "NumberFieldAppearance | undefined"
9792
- }
10077
+ "text": "string"
10078
+ },
10079
+ "description": "Sets the placeholder value of the element, generally used to provide a hint to the user.",
10080
+ "privacy": "public"
9793
10081
  },
9794
10082
  {
9795
10083
  "kind": "field",
9796
- "name": "shape",
10084
+ "name": "list",
9797
10085
  "type": {
9798
- "text": "NumberFieldShape | undefined"
9799
- }
10086
+ "text": "string"
10087
+ },
10088
+ "description": "Allows associating a https://developer.mozilla.org/en-US/docs/Web/HTML/Element/datalist | datalist to the element by https://developer.mozilla.org/en-US/docs/Web/API/Element/id.",
10089
+ "privacy": "public"
9800
10090
  },
9801
10091
  {
9802
10092
  "kind": "field",
9803
- "name": "autoComplete",
10093
+ "name": "maxlength",
9804
10094
  "type": {
9805
- "text": "string | undefined"
9806
- }
10095
+ "text": "number"
10096
+ },
10097
+ "description": "The maximum number of characters a user can enter.",
10098
+ "privacy": "public"
10099
+ },
10100
+ {
10101
+ "kind": "field",
10102
+ "name": "minlength",
10103
+ "type": {
10104
+ "text": "number"
10105
+ },
10106
+ "description": "The minimum number of characters a user can enter.",
10107
+ "privacy": "public"
10108
+ },
10109
+ {
10110
+ "kind": "field",
10111
+ "name": "size",
10112
+ "type": {
10113
+ "text": "number"
10114
+ },
10115
+ "description": "Sets the width of the element to a specified number of characters.",
10116
+ "privacy": "public"
10117
+ },
10118
+ {
10119
+ "kind": "field",
10120
+ "name": "step",
10121
+ "type": {
10122
+ "text": "number"
10123
+ },
10124
+ "default": "1",
10125
+ "description": "Amount to increment or decrement the value by",
10126
+ "privacy": "public"
9807
10127
  },
9808
10128
  {
9809
10129
  "kind": "method",
9810
10130
  "name": "stepChanged",
9811
10131
  "parameters": [
9812
10132
  {
9813
- "name": "_previous",
10133
+ "name": "_",
9814
10134
  "type": {
9815
10135
  "text": "number"
9816
10136
  }
@@ -9823,21 +10143,246 @@
9823
10143
  }
9824
10144
  ]
9825
10145
  },
10146
+ {
10147
+ "kind": "field",
10148
+ "name": "max",
10149
+ "type": {
10150
+ "text": "number"
10151
+ },
10152
+ "description": "The maximum the value can be",
10153
+ "privacy": "public"
10154
+ },
10155
+ {
10156
+ "kind": "field",
10157
+ "name": "min",
10158
+ "type": {
10159
+ "text": "number"
10160
+ },
10161
+ "description": "The minimum the value can be",
10162
+ "privacy": "public"
10163
+ },
10164
+ {
10165
+ "kind": "field",
10166
+ "name": "valueAsNumber",
10167
+ "type": {
10168
+ "text": "number"
10169
+ },
10170
+ "description": "The value property, typed as a number.",
10171
+ "privacy": "public"
10172
+ },
10173
+ {
10174
+ "kind": "method",
10175
+ "name": "#valueToPresentationValue",
10176
+ "return": {
10177
+ "type": {
10178
+ "text": "string"
10179
+ }
10180
+ },
10181
+ "parameters": [
10182
+ {
10183
+ "name": "value",
10184
+ "type": {
10185
+ "text": "string"
10186
+ }
10187
+ }
10188
+ ]
10189
+ },
9826
10190
  {
9827
10191
  "kind": "method",
9828
- "name": "stepUp"
10192
+ "name": "#inputToPresentationValue",
10193
+ "return": {
10194
+ "type": {
10195
+ "text": "string"
10196
+ }
10197
+ },
10198
+ "parameters": [
10199
+ {
10200
+ "name": "input",
10201
+ "type": {
10202
+ "text": "string"
10203
+ }
10204
+ }
10205
+ ]
9829
10206
  },
9830
10207
  {
9831
10208
  "kind": "method",
9832
- "name": "stepDown",
10209
+ "name": "#presentationValueToValue",
9833
10210
  "return": {
9834
10211
  "type": {
9835
- "text": "void"
10212
+ "text": "string"
10213
+ }
10214
+ },
10215
+ "parameters": [
10216
+ {
10217
+ "name": "presentationValue",
10218
+ "type": {
10219
+ "text": "string"
10220
+ }
9836
10221
  }
10222
+ ]
10223
+ },
10224
+ {
10225
+ "kind": "method",
10226
+ "name": "validate",
10227
+ "description": "{@inheritDoc (FormAssociated:interface).validate}"
10228
+ },
10229
+ {
10230
+ "kind": "method",
10231
+ "name": "stepUp",
10232
+ "description": "Increments the value using the step value",
10233
+ "privacy": "public"
10234
+ },
10235
+ {
10236
+ "kind": "method",
10237
+ "name": "stepDown",
10238
+ "description": "Decrements the value using the step value",
10239
+ "privacy": "public"
10240
+ },
10241
+ {
10242
+ "kind": "method",
10243
+ "name": "select",
10244
+ "description": "Selects all the text in the number field",
10245
+ "privacy": "public"
10246
+ },
10247
+ {
10248
+ "kind": "field",
10249
+ "name": "incrementButtonAriaLabel",
10250
+ "type": {
10251
+ "text": "| string\n\t\t| null"
10252
+ },
10253
+ "default": "null"
10254
+ },
10255
+ {
10256
+ "kind": "field",
10257
+ "name": "decrementButtonAriaLabel",
10258
+ "type": {
10259
+ "text": "| string\n\t\t| null"
10260
+ },
10261
+ "default": "null"
10262
+ },
10263
+ {
10264
+ "kind": "field",
10265
+ "name": "appearance",
10266
+ "type": {
10267
+ "text": "NumberFieldAppearance | undefined"
10268
+ }
10269
+ },
10270
+ {
10271
+ "kind": "field",
10272
+ "name": "shape",
10273
+ "type": {
10274
+ "text": "NumberFieldShape | undefined"
10275
+ }
10276
+ },
10277
+ {
10278
+ "kind": "field",
10279
+ "name": "autoComplete",
10280
+ "type": {
10281
+ "text": "string | undefined"
9837
10282
  }
10283
+ },
10284
+ {
10285
+ "kind": "field",
10286
+ "name": "proxy",
10287
+ "inheritedFrom": {
10288
+ "name": "FormAssociatedNumberField",
10289
+ "module": "libs/components/src/lib/number-field/number-field.form-associated.ts"
10290
+ }
10291
+ }
10292
+ ],
10293
+ "events": [
10294
+ {
10295
+ "type": {
10296
+ "text": "CustomEvent<undefined>"
10297
+ },
10298
+ "description": "Fires a custom 'input' event when the value has changed",
10299
+ "name": "input"
10300
+ },
10301
+ {
10302
+ "type": {
10303
+ "text": "CustomEvent<undefined>"
10304
+ },
10305
+ "description": "Fires a custom 'change' event when the value has changed",
10306
+ "name": "change"
9838
10307
  }
9839
10308
  ],
9840
10309
  "attributes": [
10310
+ {
10311
+ "name": "readonly",
10312
+ "type": {
10313
+ "text": "boolean"
10314
+ },
10315
+ "default": "false",
10316
+ "description": "When true, the control will be immutable by user interaction. See https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/readonly | readonly HTML attribute for more information.",
10317
+ "fieldName": "readOnly"
10318
+ },
10319
+ {
10320
+ "type": {
10321
+ "text": "boolean"
10322
+ },
10323
+ "default": "false",
10324
+ "description": "Indicates that this element should get focus after the page finishes loading. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefautofocus | autofocus HTML attribute for more information.",
10325
+ "fieldName": "autofocus"
10326
+ },
10327
+ {
10328
+ "name": "placeholder",
10329
+ "type": {
10330
+ "text": "string"
10331
+ },
10332
+ "description": "Sets the placeholder value of the element, generally used to provide a hint to the user.",
10333
+ "fieldName": "placeholder"
10334
+ },
10335
+ {
10336
+ "name": "list",
10337
+ "type": {
10338
+ "text": "string"
10339
+ },
10340
+ "description": "Allows associating a https://developer.mozilla.org/en-US/docs/Web/HTML/Element/datalist | datalist to the element by https://developer.mozilla.org/en-US/docs/Web/API/Element/id.",
10341
+ "fieldName": "list"
10342
+ },
10343
+ {
10344
+ "type": {
10345
+ "text": "number"
10346
+ },
10347
+ "description": "The maximum number of characters a user can enter.",
10348
+ "fieldName": "maxlength"
10349
+ },
10350
+ {
10351
+ "type": {
10352
+ "text": "number"
10353
+ },
10354
+ "description": "The minimum number of characters a user can enter.",
10355
+ "fieldName": "minlength"
10356
+ },
10357
+ {
10358
+ "type": {
10359
+ "text": "number"
10360
+ },
10361
+ "description": "Sets the width of the element to a specified number of characters.",
10362
+ "fieldName": "size"
10363
+ },
10364
+ {
10365
+ "type": {
10366
+ "text": "number"
10367
+ },
10368
+ "default": "1",
10369
+ "description": "Amount to increment or decrement the value by",
10370
+ "fieldName": "step"
10371
+ },
10372
+ {
10373
+ "type": {
10374
+ "text": "number"
10375
+ },
10376
+ "description": "The maximum the value can be",
10377
+ "fieldName": "max"
10378
+ },
10379
+ {
10380
+ "type": {
10381
+ "text": "number"
10382
+ },
10383
+ "description": "The minimum the value can be",
10384
+ "fieldName": "min"
10385
+ },
9841
10386
  {
9842
10387
  "name": "increment-button-aria-label",
9843
10388
  "type": {
@@ -9877,8 +10422,8 @@
9877
10422
  }
9878
10423
  ],
9879
10424
  "superclass": {
9880
- "name": "FastNumberField",
9881
- "package": "@microsoft/fast-foundation"
10425
+ "name": "FormAssociatedNumberField",
10426
+ "module": "/libs/components/src/lib/number-field/number-field.form-associated"
9882
10427
  },
9883
10428
  "vividComponent": {
9884
10429
  "public": true,
@@ -10248,6 +10793,9 @@
10248
10793
  ],
10249
10794
  "events": [
10250
10795
  {
10796
+ "type": {
10797
+ "text": "CustomEvent<{selectedIndex: number, total: number, oldIndex: number}>"
10798
+ },
10251
10799
  "description": "Fires when the page changes.",
10252
10800
  "name": "pagination-change"
10253
10801
  }
@@ -10625,19 +11173,19 @@
10625
11173
  "name": "ProgressRing",
10626
11174
  "cssProperties": [
10627
11175
  {
10628
- "name": "--vvd-progress-ring-cta-primary",
10629
- "default": "var(--vvd-color-cta-500)"
11176
+ "name": "--vvd-progress-ring-cta-firm",
11177
+ "default": "var(--vvd-color-cta-600)"
10630
11178
  },
10631
11179
  {
10632
- "name": "--vvd-progress-ring-alert-primary",
10633
- "default": "var(--vvd-color-alert-500)"
11180
+ "name": "--vvd-progress-ring-alert-firm",
11181
+ "default": "var(--vvd-color-alert-600)"
10634
11182
  },
10635
11183
  {
10636
- "name": "--vvd-progress-ring-success-primary",
10637
- "default": "var(--vvd-color-success-500)"
11184
+ "name": "--vvd-progress-ring-success-firm",
11185
+ "default": "var(--vvd-color-success-600)"
10638
11186
  },
10639
11187
  {
10640
- "name": "--vvd-progress-ring-accent-primary",
11188
+ "name": "--vvd-progress-ring-accent-firm",
10641
11189
  "default": "var(--vvd-color-canvas-text)"
10642
11190
  }
10643
11191
  ],
@@ -10836,6 +11384,15 @@
10836
11384
  "privacy": "public"
10837
11385
  }
10838
11386
  ],
11387
+ "events": [
11388
+ {
11389
+ "type": {
11390
+ "text": "CustomEvent<undefined>"
11391
+ },
11392
+ "description": "Fires a custom 'change' event when the value changes",
11393
+ "name": "change"
11394
+ }
11395
+ ],
10839
11396
  "attributes": [
10840
11397
  {
10841
11398
  "name": "aria-label",
@@ -10948,6 +11505,15 @@
10948
11505
  "privacy": "public"
10949
11506
  }
10950
11507
  ],
11508
+ "events": [
11509
+ {
11510
+ "type": {
11511
+ "text": "CustomEvent<undefined>"
11512
+ },
11513
+ "description": "Fires a custom 'change' event when the value changes",
11514
+ "name": "change"
11515
+ }
11516
+ ],
10951
11517
  "attributes": [
10952
11518
  {
10953
11519
  "name": "label",
@@ -11405,12 +11971,32 @@
11405
11971
  ],
11406
11972
  "events": [
11407
11973
  {
11974
+ "type": {
11975
+ "text": "CustomEvent<undefined>"
11976
+ },
11408
11977
  "description": "Event emitted when the start value changes",
11409
11978
  "name": "input:start"
11410
11979
  },
11411
11980
  {
11981
+ "type": {
11982
+ "text": "CustomEvent<undefined>"
11983
+ },
11412
11984
  "description": "Event emitted when the end value changes",
11413
11985
  "name": "input:end"
11986
+ },
11987
+ {
11988
+ "type": {
11989
+ "text": "CustomEvent<undefined>"
11990
+ },
11991
+ "description": "Event emitted when either the start or end value changes.",
11992
+ "name": "input"
11993
+ },
11994
+ {
11995
+ "type": {
11996
+ "text": "CustomEvent<undefined>"
11997
+ },
11998
+ "description": "Event emitted when either the start or end value changes.",
11999
+ "name": "change"
11414
12000
  }
11415
12001
  ],
11416
12002
  "attributes": [
@@ -11720,6 +12306,22 @@
11720
12306
  }
11721
12307
  }
11722
12308
  ],
12309
+ "events": [
12310
+ {
12311
+ "type": {
12312
+ "text": "CustomEvent<undefined>"
12313
+ },
12314
+ "description": "Fires a custom 'input' event when the value updates",
12315
+ "name": "input"
12316
+ },
12317
+ {
12318
+ "type": {
12319
+ "text": "CustomEvent<HTMLElement>"
12320
+ },
12321
+ "description": "Fires a custom 'change' event when the value updates",
12322
+ "name": "change"
12323
+ }
12324
+ ],
11723
12325
  "attributes": [
11724
12326
  {
11725
12327
  "name": "appearance",
@@ -11949,6 +12551,9 @@
11949
12551
  ],
11950
12552
  "events": [
11951
12553
  {
12554
+ "type": {
12555
+ "text": "CustomEvent<undefined>"
12556
+ },
11952
12557
  "description": "Fired when the checked state changes",
11953
12558
  "name": "change"
11954
12559
  }
@@ -12153,10 +12758,16 @@
12153
12758
  ],
12154
12759
  "events": [
12155
12760
  {
12761
+ "type": {
12762
+ "text": "CustomEvent<undefined>"
12763
+ },
12156
12764
  "description": "Fired when the side drawer is closed.",
12157
12765
  "name": "close"
12158
12766
  },
12159
12767
  {
12768
+ "type": {
12769
+ "text": "CustomEvent<undefined>"
12770
+ },
12160
12771
  "description": "Fired when the side drawer is opened.",
12161
12772
  "name": "open"
12162
12773
  }
@@ -12328,6 +12939,15 @@
12328
12939
  "privacy": "public"
12329
12940
  }
12330
12941
  ],
12942
+ "events": [
12943
+ {
12944
+ "type": {
12945
+ "text": "CustomEvent<undefined>"
12946
+ },
12947
+ "description": "Fires a custom 'change' event when the slider value changes",
12948
+ "name": "change"
12949
+ }
12950
+ ],
12331
12951
  "attributes": [
12332
12952
  {
12333
12953
  "name": "aria-label",
@@ -12561,6 +13181,38 @@
12561
13181
  "name": "--vvd-split-button-alert-faint",
12562
13182
  "default": "var(--vvd-color-alert-50)"
12563
13183
  },
13184
+ {
13185
+ "name": "--vvd-split-button-announcement-primary",
13186
+ "default": "var(--vvd-color-announcement-500)"
13187
+ },
13188
+ {
13189
+ "name": "--vvd-split-button-announcement-primary-text",
13190
+ "default": "var(--vvd-color-canvas)"
13191
+ },
13192
+ {
13193
+ "name": "--vvd-split-button-announcement-primary-increment",
13194
+ "default": "var(--vvd-color-announcement-600)"
13195
+ },
13196
+ {
13197
+ "name": "--vvd-split-button-announcement-contrast",
13198
+ "default": "var(--vvd-color-announcement-800)"
13199
+ },
13200
+ {
13201
+ "name": "--vvd-split-button-announcement-fierce",
13202
+ "default": "var(--vvd-color-announcement-700)"
13203
+ },
13204
+ {
13205
+ "name": "--vvd-split-button-announcement-firm",
13206
+ "default": "var(--vvd-color-announcement-600)"
13207
+ },
13208
+ {
13209
+ "name": "--vvd-split-button-announcement-soft",
13210
+ "default": "var(--vvd-color-announcement-100)"
13211
+ },
13212
+ {
13213
+ "name": "--vvd-split-button-announcement-faint",
13214
+ "default": "var(--vvd-color-announcement-50)"
13215
+ },
12564
13216
  {
12565
13217
  "name": "--vvd-split-button-accent-primary",
12566
13218
  "default": "var(--vvd-color-canvas-text)"
@@ -12742,10 +13394,16 @@
12742
13394
  ],
12743
13395
  "events": [
12744
13396
  {
13397
+ "type": {
13398
+ "text": "CustomEvent<undefined>"
13399
+ },
12745
13400
  "description": "Event emitted when the action button is clicked",
12746
13401
  "name": "action-click"
12747
13402
  },
12748
13403
  {
13404
+ "type": {
13405
+ "text": "CustomEvent<undefined>"
13406
+ },
12749
13407
  "description": "Event emitted when the indicator button is clicked",
12750
13408
  "name": "indicator-click"
12751
13409
  }
@@ -13038,6 +13696,15 @@
13038
13696
  "privacy": "public"
13039
13697
  }
13040
13698
  ],
13699
+ "events": [
13700
+ {
13701
+ "type": {
13702
+ "text": "CustomEvent<undefined>"
13703
+ },
13704
+ "description": "Emits a custom change event when the checked state changes",
13705
+ "name": "change"
13706
+ }
13707
+ ],
13041
13708
  "attributes": [
13042
13709
  {
13043
13710
  "name": "label",
@@ -13150,10 +13817,6 @@
13150
13817
  "description": "",
13151
13818
  "name": "Tab",
13152
13819
  "cssProperties": [
13153
- {
13154
- "name": "--vvd-tab-cta-primary",
13155
- "default": "var(--vvd-color-cta-500)"
13156
- },
13157
13820
  {
13158
13821
  "name": "--vvd-tab-cta-primary-text",
13159
13822
  "default": "var(--vvd-color-canvas)"
@@ -13175,8 +13838,8 @@
13175
13838
  "default": "var(--vvd-color-cta-300)"
13176
13839
  },
13177
13840
  {
13178
- "name": "--vvd-tab-accent-primary",
13179
- "default": "var(--vvd-color-canvas-text)"
13841
+ "name": "--vvd-tab-cta-soft",
13842
+ "default": "var(--vvd-color-cta-100)"
13180
13843
  },
13181
13844
  {
13182
13845
  "name": "--vvd-tab-accent-primary-text",
@@ -13197,6 +13860,10 @@
13197
13860
  {
13198
13861
  "name": "--vvd-tab-accent-pale",
13199
13862
  "default": "var(--vvd-color-neutral-300)"
13863
+ },
13864
+ {
13865
+ "name": "--vvd-tab-accent-soft",
13866
+ "default": "var(--vvd-color-neutral-100)"
13200
13867
  }
13201
13868
  ],
13202
13869
  "slots": [
@@ -13445,11 +14112,11 @@
13445
14112
  "name": "Tabs",
13446
14113
  "cssProperties": [
13447
14114
  {
13448
- "name": "--vvd-tabs-cta-primary",
13449
- "default": "var(--vvd-color-cta-500)"
14115
+ "name": "--vvd-tabs-cta-firm",
14116
+ "default": "var(--vvd-color-cta-600)"
13450
14117
  },
13451
14118
  {
13452
- "name": "--vvd-tabs-accent-primary",
14119
+ "name": "--vvd-tabs-accent-firm",
13453
14120
  "default": "var(--vvd-color-canvas-text)"
13454
14121
  }
13455
14122
  ],
@@ -13580,6 +14247,15 @@
13580
14247
  "name": "#patchActiveID"
13581
14248
  }
13582
14249
  ],
14250
+ "events": [
14251
+ {
14252
+ "type": {
14253
+ "text": "CustomEvent<HTMLElement>"
14254
+ },
14255
+ "description": "Fires a custom 'change' event when a tab is clicked or during keyboard navigation",
14256
+ "name": "change"
14257
+ }
14258
+ ],
13583
14259
  "attributes": [
13584
14260
  {
13585
14261
  "name": "connotation",
@@ -13885,6 +14561,22 @@
13885
14561
  }
13886
14562
  }
13887
14563
  ],
14564
+ "events": [
14565
+ {
14566
+ "type": {
14567
+ "text": "CustomEvent<undefined>"
14568
+ },
14569
+ "description": "Fires when the selected state changes",
14570
+ "name": "selected-change"
14571
+ },
14572
+ {
14573
+ "type": {
14574
+ "text": "CustomEvent<undefined>"
14575
+ },
14576
+ "description": "Fires when the tag is removed",
14577
+ "name": "removed"
14578
+ }
14579
+ ],
13888
14580
  "attributes": [
13889
14581
  {
13890
14582
  "name": "connotation",
@@ -14390,6 +15082,15 @@
14390
15082
  }
14391
15083
  }
14392
15084
  ],
15085
+ "events": [
15086
+ {
15087
+ "type": {
15088
+ "text": "CustomEvent<undefined>"
15089
+ },
15090
+ "description": "Emits a custom 'change' event when the textarea emits a change event",
15091
+ "name": "change"
15092
+ }
15093
+ ],
14393
15094
  "attributes": [
14394
15095
  {
14395
15096
  "name": "wrap",
@@ -14619,6 +15320,15 @@
14619
15320
  "name": "#updateMirroredHelperText"
14620
15321
  }
14621
15322
  ],
15323
+ "events": [
15324
+ {
15325
+ "type": {
15326
+ "text": "CustomEvent<undefined>"
15327
+ },
15328
+ "description": "Fires a custom 'change' event when the value has changed",
15329
+ "name": "change"
15330
+ }
15331
+ ],
14622
15332
  "attributes": [
14623
15333
  {
14624
15334
  "name": "appearance",
@@ -14948,6 +15658,16 @@
14948
15658
  ],
14949
15659
  "events": [
14950
15660
  {
15661
+ "type": {
15662
+ "text": "CustomEvent<undefined>"
15663
+ },
15664
+ "description": "Emitted when the time is changed by the user.",
15665
+ "name": "input"
15666
+ },
15667
+ {
15668
+ "type": {
15669
+ "text": "CustomEvent<undefined>"
15670
+ },
14951
15671
  "description": "Emitted when the time is changed by the user.",
14952
15672
  "name": "change"
14953
15673
  }
@@ -15513,6 +16233,10 @@
15513
16233
  {
15514
16234
  "name": "--vvd-tree-item-accent-soft",
15515
16235
  "default": "var(--vvd-color-neutral-100)"
16236
+ },
16237
+ {
16238
+ "name": "--vvd-tree-item-accent-firm",
16239
+ "default": "var(--vvd-color-canvas-text)"
15516
16240
  }
15517
16241
  ],
15518
16242
  "slots": [
@@ -15536,6 +16260,22 @@
15536
16260
  "privacy": "public"
15537
16261
  }
15538
16262
  ],
16263
+ "events": [
16264
+ {
16265
+ "type": {
16266
+ "text": "CustomEvent<HTMLElement>"
16267
+ },
16268
+ "description": "Fires a custom 'expanded-change' event when the expanded state changes",
16269
+ "name": "expanded-change"
16270
+ },
16271
+ {
16272
+ "type": {
16273
+ "text": "CustomEvent<HTMLElement>"
16274
+ },
16275
+ "description": "Fires a custom 'selected-change' event when the selected state changes",
16276
+ "name": "selected-change"
16277
+ }
16278
+ ],
15539
16279
  "attributes": [
15540
16280
  {
15541
16281
  "name": "text",
@@ -15698,6 +16438,23 @@
15698
16438
  },
15699
16439
  "default": "'0.5, 1, 1.5, 2'"
15700
16440
  },
16441
+ {
16442
+ "kind": "function",
16443
+ "name": "getPlaybackRatesArray",
16444
+ "return": {
16445
+ "type": {
16446
+ "text": "number[]"
16447
+ }
16448
+ },
16449
+ "parameters": [
16450
+ {
16451
+ "name": "playbackRates",
16452
+ "type": {
16453
+ "text": "string"
16454
+ }
16455
+ }
16456
+ ]
16457
+ },
15701
16458
  {
15702
16459
  "kind": "class",
15703
16460
  "description": "Base class for video-player",
@@ -15815,14 +16572,23 @@
15815
16572
  ],
15816
16573
  "events": [
15817
16574
  {
16575
+ "type": {
16576
+ "text": "CustomEvent<undefined>"
16577
+ },
15818
16578
  "description": "Fired when the video is played",
15819
16579
  "name": "play"
15820
16580
  },
15821
16581
  {
16582
+ "type": {
16583
+ "text": "CustomEvent<undefined>"
16584
+ },
15822
16585
  "description": "Fired when the video is paused",
15823
16586
  "name": "pause"
15824
16587
  },
15825
16588
  {
16589
+ "type": {
16590
+ "text": "CustomEvent<undefined>"
16591
+ },
15826
16592
  "description": "Fired when the video is ended",
15827
16593
  "name": "ended"
15828
16594
  }
@@ -15900,6 +16666,14 @@
15900
16666
  "module": "libs/components/src/lib/video-player/video-player.ts"
15901
16667
  }
15902
16668
  },
16669
+ {
16670
+ "kind": "js",
16671
+ "name": "getPlaybackRatesArray",
16672
+ "declaration": {
16673
+ "name": "getPlaybackRatesArray",
16674
+ "module": "libs/components/src/lib/video-player/video-player.ts"
16675
+ }
16676
+ },
15903
16677
  {
15904
16678
  "kind": "js",
15905
16679
  "name": "VideoPlayer",
@@ -16568,7 +17342,10 @@
16568
17342
  ],
16569
17343
  "events": [
16570
17344
  {
16571
- "description": "Event emitted when the clear value changes",
17345
+ "type": {
17346
+ "text": "CustomEvent<undefined>"
17347
+ },
17348
+ "description": "Event emitted when the clear button is clicked.",
16572
17349
  "name": "clear-click"
16573
17350
  }
16574
17351
  ],