@vonage/vivid 5.8.0 → 5.10.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 (158) hide show
  1. package/bundled/affix.js +1 -1
  2. package/bundled/anchored.cjs +1 -1
  3. package/bundled/anchored.js +6 -6
  4. package/bundled/data-grid.options.cjs +1 -0
  5. package/bundled/data-grid.options.js +29 -0
  6. package/bundled/definition10.js +4 -4
  7. package/bundled/definition2.cjs +1 -1
  8. package/bundled/definition2.js +1 -1
  9. package/bundled/definition3.cjs +1 -1
  10. package/bundled/definition3.js +1 -1
  11. package/bundled/definition7.js +3 -3
  12. package/bundled/definition9.cjs +9 -9
  13. package/bundled/definition9.js +113 -1342
  14. package/bundled/floating-ui.dom.cjs +1 -0
  15. package/bundled/floating-ui.dom.js +1242 -0
  16. package/bundled/host-semantics.js +4 -4
  17. package/bundled/localized.cjs +1 -1
  18. package/bundled/localized.js +21 -16
  19. package/bundled/mixins.cjs +2 -2
  20. package/bundled/mixins.js +6 -6
  21. package/bundled/slottable-request.cjs +4 -0
  22. package/bundled/slottable-request.js +2907 -0
  23. package/bundled/vivid-element.cjs +3 -3
  24. package/bundled/vivid-element.js +89 -69
  25. package/card/definition.cjs +1 -1
  26. package/card/definition.js +1 -1
  27. package/card/index.cjs +10 -10
  28. package/card/index.js +42 -42
  29. package/combobox/definition.cjs +14 -15
  30. package/combobox/definition.js +15 -16
  31. package/combobox/index.cjs +4 -4
  32. package/combobox/index.js +82 -87
  33. package/country/definition.cjs +340 -0
  34. package/country/definition.js +334 -0
  35. package/country/index.cjs +12 -0
  36. package/country/index.js +317 -0
  37. package/custom-elements.json +4835 -613
  38. package/data-grid/definition.cjs +23 -49
  39. package/data-grid/definition.js +1 -27
  40. package/data-grid/index.cjs +27 -27
  41. package/data-grid/index.js +44 -64
  42. package/file-picker/definition.cjs +10 -8
  43. package/file-picker/definition.js +10 -8
  44. package/file-picker/index.cjs +5 -5
  45. package/file-picker/index.js +12 -12
  46. package/icon/definition.cjs +1 -1
  47. package/icon/definition.js +1 -1
  48. package/index.cjs +38 -4
  49. package/index.js +7 -2
  50. package/lib/components.d.ts +6 -1
  51. package/lib/country/countries-data.d.ts +6 -0
  52. package/lib/country/country-code-to-flag-icon.d.ts +5 -0
  53. package/lib/country/country.d.ts +5 -0
  54. package/lib/country/country.template.d.ts +3 -0
  55. package/lib/country/definition.d.ts +3 -0
  56. package/lib/popover/definition.d.ts +4 -0
  57. package/lib/popover/locale.d.ts +3 -0
  58. package/lib/popover/popover.d.ts +781 -0
  59. package/lib/popover/popover.template.d.ts +3 -0
  60. package/lib/rich-text-editor/locale.d.ts +2 -0
  61. package/lib/rich-text-editor/popover.d.ts +1 -0
  62. package/lib/rich-text-editor/rte/config.d.ts +5 -1
  63. package/lib/rich-text-editor/rte/document.d.ts +2 -0
  64. package/lib/rich-text-editor/rte/exports.d.ts +5 -0
  65. package/lib/rich-text-editor/rte/feature.d.ts +7 -1
  66. package/lib/rich-text-editor/rte/features/internal/basic-text-blocks.d.ts +1 -1
  67. package/lib/rich-text-editor/rte/features/internal/foreign-html.d.ts +1 -1
  68. package/lib/rich-text-editor/rte/features/internal/history.d.ts +1 -1
  69. package/lib/rich-text-editor/rte/features/internal/input-rules.d.ts +15 -0
  70. package/lib/rich-text-editor/rte/instance.d.ts +4 -2
  71. package/lib/rich-text-editor/rte/utils/feature-state.d.ts +8 -0
  72. package/lib/rich-text-editor/rte/utils/text-before-cursor.d.ts +2 -0
  73. package/lib/rich-text-editor/rte/utils/ui.d.ts +2 -0
  74. package/lib/rich-text-editor/rte/view.d.ts +30 -0
  75. package/lib/rich-text-view/definition.d.ts +5 -0
  76. package/lib/rich-text-view/rich-text-view.d.ts +19 -0
  77. package/lib/rich-text-view/rich-text-view.template.d.ts +3 -0
  78. package/lib/selectable-box/selectable-box.d.ts +1 -0
  79. package/lib/status/definition.d.ts +4 -0
  80. package/lib/status/status.d.ts +388 -0
  81. package/lib/status/status.template.d.ts +3 -0
  82. package/lib/table/definition.d.ts +8 -0
  83. package/lib/table/table-body.d.ts +3 -0
  84. package/lib/table/table-body.template.d.ts +3 -0
  85. package/lib/table/table-cell.d.ts +381 -0
  86. package/lib/table/table-cell.template.d.ts +3 -0
  87. package/lib/table/table-head.d.ts +3 -0
  88. package/lib/table/table-head.template.d.ts +3 -0
  89. package/lib/table/table-header-cell.d.ts +381 -0
  90. package/lib/table/table-header-cell.template.d.ts +3 -0
  91. package/lib/table/table-row.d.ts +381 -0
  92. package/lib/table/table-row.template.d.ts +3 -0
  93. package/lib/table/table.d.ts +3 -0
  94. package/lib/table/table.template.d.ts +3 -0
  95. package/lib/tag/tag.d.ts +1 -1
  96. package/lib/tag-name-map.d.ts +11 -1
  97. package/locales/de-DE.cjs +6 -1
  98. package/locales/de-DE.js +6 -1
  99. package/locales/en-GB.cjs +6 -1
  100. package/locales/en-GB.js +6 -1
  101. package/locales/en-US.cjs +6 -1
  102. package/locales/en-US.js +6 -1
  103. package/locales/ja-JP.cjs +6 -1
  104. package/locales/ja-JP.js +6 -1
  105. package/locales/zh-CN.cjs +6 -1
  106. package/locales/zh-CN.js +6 -1
  107. package/package.json +10 -9
  108. package/popover/definition.cjs +363 -0
  109. package/popover/definition.js +357 -0
  110. package/popover/index.cjs +27 -0
  111. package/popover/index.js +263 -0
  112. package/rich-text-editor/definition.cjs +12125 -14657
  113. package/rich-text-editor/definition.js +8876 -11412
  114. package/rich-text-editor/index.cjs +20 -22
  115. package/rich-text-editor/index.js +5046 -7096
  116. package/rich-text-view/definition.cjs +171 -0
  117. package/rich-text-view/definition.js +165 -0
  118. package/rich-text-view/index.cjs +1 -0
  119. package/rich-text-view/index.js +103 -0
  120. package/selectable-box/definition.cjs +16 -5
  121. package/selectable-box/definition.js +16 -5
  122. package/selectable-box/index.cjs +11 -9
  123. package/selectable-box/index.js +86 -78
  124. package/shared/localization/Locale.d.ts +2 -0
  125. package/shared/utils/slottable-request.d.ts +7 -0
  126. package/status/definition.cjs +76 -0
  127. package/status/definition.js +70 -0
  128. package/status/index.cjs +11 -0
  129. package/status/index.js +55 -0
  130. package/styles/core/all.css +2 -2
  131. package/styles/core/theme.css +2 -2
  132. package/styles/core/typography.css +1 -1
  133. package/styles/tokens/theme-dark.css +4 -4
  134. package/styles/tokens/theme-light.css +4 -4
  135. package/styles/tokens/vivid-2-compat.css +1 -1
  136. package/table/definition.cjs +168 -0
  137. package/table/definition.js +152 -0
  138. package/table/index.cjs +37 -0
  139. package/table/index.js +107 -0
  140. package/tag/definition.cjs +1 -1
  141. package/tag/definition.js +1 -1
  142. package/tag/index.cjs +24 -24
  143. package/tag/index.js +89 -89
  144. package/unbundled/_commonjsHelpers.cjs +26 -0
  145. package/unbundled/_commonjsHelpers.js +26 -1
  146. package/unbundled/data-grid.options.cjs +34 -0
  147. package/unbundled/data-grid.options.js +28 -0
  148. package/unbundled/definition.cjs +1 -1
  149. package/unbundled/definition.js +1 -1
  150. package/unbundled/slottable-request.cjs +3702 -0
  151. package/unbundled/slottable-request.js +3684 -0
  152. package/unbundled/vivid-element.cjs +1 -1
  153. package/unbundled/vivid-element.js +1 -1
  154. package/video-player/definition.cjs +11 -1
  155. package/video-player/definition.js +12 -2
  156. package/video-player/index.cjs +30 -30
  157. package/video-player/index.js +705 -702
  158. package/vivid.api.json +1957 -143
package/vivid.api.json CHANGED
@@ -3572,6 +3572,34 @@
3572
3572
  "endIndex": 11
3573
3573
  }
3574
3574
  },
3575
+ {
3576
+ "kind": "Variable",
3577
+ "canonicalReference": "@vonage/vivid!popoverDefinition:var",
3578
+ "docComment": "",
3579
+ "excerptTokens": [
3580
+ {
3581
+ "kind": "Content",
3582
+ "text": "popoverDefinition: "
3583
+ },
3584
+ {
3585
+ "kind": "Content",
3586
+ "text": "import(\"../../shared/design-system/defineVividComponent\")."
3587
+ },
3588
+ {
3589
+ "kind": "Reference",
3590
+ "text": "VividComponentDefinition",
3591
+ "canonicalReference": "@vonage/vivid!~VividComponentDefinition:type"
3592
+ }
3593
+ ],
3594
+ "fileUrlPath": "dist/lib/popover/definition.d.ts",
3595
+ "isReadonly": true,
3596
+ "releaseTag": "Public",
3597
+ "name": "popoverDefinition",
3598
+ "variableTypeTokenRange": {
3599
+ "startIndex": 1,
3600
+ "endIndex": 3
3601
+ }
3602
+ },
3575
3603
  {
3576
3604
  "kind": "TypeAlias",
3577
3605
  "canonicalReference": "@vonage/vivid!PopupPlacement:type",
@@ -4611,6 +4639,47 @@
4611
4639
  ],
4612
4640
  "name": "registerContextualHelp"
4613
4641
  },
4642
+ {
4643
+ "kind": "Function",
4644
+ "canonicalReference": "@vonage/vivid!registerCountry:function(1)",
4645
+ "docComment": "",
4646
+ "excerptTokens": [
4647
+ {
4648
+ "kind": "Content",
4649
+ "text": "registerCountry: (prefix?: "
4650
+ },
4651
+ {
4652
+ "kind": "Content",
4653
+ "text": "string"
4654
+ },
4655
+ {
4656
+ "kind": "Content",
4657
+ "text": ") => "
4658
+ },
4659
+ {
4660
+ "kind": "Content",
4661
+ "text": "void"
4662
+ }
4663
+ ],
4664
+ "fileUrlPath": "dist/lib/country/definition.d.ts",
4665
+ "returnTypeTokenRange": {
4666
+ "startIndex": 3,
4667
+ "endIndex": 4
4668
+ },
4669
+ "releaseTag": "Public",
4670
+ "overloadIndex": 1,
4671
+ "parameters": [
4672
+ {
4673
+ "parameterName": "prefix",
4674
+ "parameterTypeTokenRange": {
4675
+ "startIndex": 1,
4676
+ "endIndex": 2
4677
+ },
4678
+ "isOptional": true
4679
+ }
4680
+ ],
4681
+ "name": "registerCountry"
4682
+ },
4614
4683
  {
4615
4684
  "kind": "Function",
4616
4685
  "canonicalReference": "@vonage/vivid!registerDataGrid:function(1)",
@@ -5513,6 +5582,47 @@
5513
5582
  ],
5514
5583
  "name": "registerPagination"
5515
5584
  },
5585
+ {
5586
+ "kind": "Function",
5587
+ "canonicalReference": "@vonage/vivid!registerPopover:function(1)",
5588
+ "docComment": "",
5589
+ "excerptTokens": [
5590
+ {
5591
+ "kind": "Content",
5592
+ "text": "registerPopover: (prefix?: "
5593
+ },
5594
+ {
5595
+ "kind": "Content",
5596
+ "text": "string"
5597
+ },
5598
+ {
5599
+ "kind": "Content",
5600
+ "text": ") => "
5601
+ },
5602
+ {
5603
+ "kind": "Content",
5604
+ "text": "void"
5605
+ }
5606
+ ],
5607
+ "fileUrlPath": "dist/lib/popover/definition.d.ts",
5608
+ "returnTypeTokenRange": {
5609
+ "startIndex": 3,
5610
+ "endIndex": 4
5611
+ },
5612
+ "releaseTag": "Public",
5613
+ "overloadIndex": 1,
5614
+ "parameters": [
5615
+ {
5616
+ "parameterName": "prefix",
5617
+ "parameterTypeTokenRange": {
5618
+ "startIndex": 1,
5619
+ "endIndex": 2
5620
+ },
5621
+ "isOptional": true
5622
+ }
5623
+ ],
5624
+ "name": "registerPopover"
5625
+ },
5516
5626
  {
5517
5627
  "kind": "Function",
5518
5628
  "canonicalReference": "@vonage/vivid!registerProgress:function(1)",
@@ -5759,6 +5869,47 @@
5759
5869
  ],
5760
5870
  "name": "registerRichTextEditor"
5761
5871
  },
5872
+ {
5873
+ "kind": "Function",
5874
+ "canonicalReference": "@vonage/vivid!registerRichTextView:function(1)",
5875
+ "docComment": "",
5876
+ "excerptTokens": [
5877
+ {
5878
+ "kind": "Content",
5879
+ "text": "registerRichTextView: (prefix?: "
5880
+ },
5881
+ {
5882
+ "kind": "Content",
5883
+ "text": "string"
5884
+ },
5885
+ {
5886
+ "kind": "Content",
5887
+ "text": ") => "
5888
+ },
5889
+ {
5890
+ "kind": "Content",
5891
+ "text": "void"
5892
+ }
5893
+ ],
5894
+ "fileUrlPath": "dist/lib/rich-text-view/definition.d.ts",
5895
+ "returnTypeTokenRange": {
5896
+ "startIndex": 3,
5897
+ "endIndex": 4
5898
+ },
5899
+ "releaseTag": "Public",
5900
+ "overloadIndex": 1,
5901
+ "parameters": [
5902
+ {
5903
+ "parameterName": "prefix",
5904
+ "parameterTypeTokenRange": {
5905
+ "startIndex": 1,
5906
+ "endIndex": 2
5907
+ },
5908
+ "isOptional": true
5909
+ }
5910
+ ],
5911
+ "name": "registerRichTextView"
5912
+ },
5762
5913
  {
5763
5914
  "kind": "Function",
5764
5915
  "canonicalReference": "@vonage/vivid!registerSearchableSelect:function(1)",
@@ -6046,6 +6197,47 @@
6046
6197
  ],
6047
6198
  "name": "registerSplitButton"
6048
6199
  },
6200
+ {
6201
+ "kind": "Function",
6202
+ "canonicalReference": "@vonage/vivid!registerStatus:function(1)",
6203
+ "docComment": "",
6204
+ "excerptTokens": [
6205
+ {
6206
+ "kind": "Content",
6207
+ "text": "registerStatus: (prefix?: "
6208
+ },
6209
+ {
6210
+ "kind": "Content",
6211
+ "text": "string"
6212
+ },
6213
+ {
6214
+ "kind": "Content",
6215
+ "text": ") => "
6216
+ },
6217
+ {
6218
+ "kind": "Content",
6219
+ "text": "void"
6220
+ }
6221
+ ],
6222
+ "fileUrlPath": "dist/lib/status/definition.d.ts",
6223
+ "returnTypeTokenRange": {
6224
+ "startIndex": 3,
6225
+ "endIndex": 4
6226
+ },
6227
+ "releaseTag": "Public",
6228
+ "overloadIndex": 1,
6229
+ "parameters": [
6230
+ {
6231
+ "parameterName": "prefix",
6232
+ "parameterTypeTokenRange": {
6233
+ "startIndex": 1,
6234
+ "endIndex": 2
6235
+ },
6236
+ "isOptional": true
6237
+ }
6238
+ ],
6239
+ "name": "registerStatus"
6240
+ },
6049
6241
  {
6050
6242
  "kind": "Function",
6051
6243
  "canonicalReference": "@vonage/vivid!registerSwitch:function(1)",
@@ -6128,6 +6320,47 @@
6128
6320
  ],
6129
6321
  "name": "registerTab"
6130
6322
  },
6323
+ {
6324
+ "kind": "Function",
6325
+ "canonicalReference": "@vonage/vivid!registerTable:function(1)",
6326
+ "docComment": "",
6327
+ "excerptTokens": [
6328
+ {
6329
+ "kind": "Content",
6330
+ "text": "registerTable: (prefix?: "
6331
+ },
6332
+ {
6333
+ "kind": "Content",
6334
+ "text": "string"
6335
+ },
6336
+ {
6337
+ "kind": "Content",
6338
+ "text": ") => "
6339
+ },
6340
+ {
6341
+ "kind": "Content",
6342
+ "text": "void"
6343
+ }
6344
+ ],
6345
+ "fileUrlPath": "dist/lib/table/definition.d.ts",
6346
+ "returnTypeTokenRange": {
6347
+ "startIndex": 3,
6348
+ "endIndex": 4
6349
+ },
6350
+ "releaseTag": "Public",
6351
+ "overloadIndex": 1,
6352
+ "parameters": [
6353
+ {
6354
+ "parameterName": "prefix",
6355
+ "parameterTypeTokenRange": {
6356
+ "startIndex": 1,
6357
+ "endIndex": 2
6358
+ },
6359
+ "isOptional": true
6360
+ }
6361
+ ],
6362
+ "name": "registerTable"
6363
+ },
6131
6364
  {
6132
6365
  "kind": "Function",
6133
6366
  "canonicalReference": "@vonage/vivid!registerTabPanel:function(1)",
@@ -6648,6 +6881,34 @@
6648
6881
  "endIndex": 3
6649
6882
  }
6650
6883
  },
6884
+ {
6885
+ "kind": "Variable",
6886
+ "canonicalReference": "@vonage/vivid!richTextViewDefinition:var",
6887
+ "docComment": "",
6888
+ "excerptTokens": [
6889
+ {
6890
+ "kind": "Content",
6891
+ "text": "richTextViewDefinition: "
6892
+ },
6893
+ {
6894
+ "kind": "Content",
6895
+ "text": "import(\"../../shared/design-system/defineVividComponent\")."
6896
+ },
6897
+ {
6898
+ "kind": "Reference",
6899
+ "text": "VividComponentDefinition",
6900
+ "canonicalReference": "@vonage/vivid!~VividComponentDefinition:type"
6901
+ }
6902
+ ],
6903
+ "fileUrlPath": "dist/lib/rich-text-view/definition.d.ts",
6904
+ "isReadonly": true,
6905
+ "releaseTag": "Public",
6906
+ "name": "richTextViewDefinition",
6907
+ "variableTypeTokenRange": {
6908
+ "startIndex": 1,
6909
+ "endIndex": 3
6910
+ }
6911
+ },
6651
6912
  {
6652
6913
  "kind": "Enum",
6653
6914
  "canonicalReference": "@vonage/vivid!Role:enum",
@@ -6775,22 +7036,57 @@
6775
7036
  }
6776
7037
  },
6777
7038
  {
6778
- "kind": "Class",
6779
- "canonicalReference": "@vonage/vivid!RteConfig:class",
7039
+ "kind": "TypeAlias",
7040
+ "canonicalReference": "@vonage/vivid!RteChildSlotProps:type",
6780
7041
  "docComment": "",
6781
7042
  "excerptTokens": [
6782
7043
  {
6783
7044
  "kind": "Content",
6784
- "text": "export declare class RteConfig "
7045
+ "text": "export type RteChildSlotProps = "
7046
+ },
7047
+ {
7048
+ "kind": "Content",
7049
+ "text": "{\n view: "
7050
+ },
7051
+ {
7052
+ "kind": "Reference",
7053
+ "text": "RteView",
7054
+ "canonicalReference": "@vonage/vivid!RteView:type"
7055
+ },
7056
+ {
7057
+ "kind": "Content",
7058
+ "text": ";\n}"
7059
+ },
7060
+ {
7061
+ "kind": "Content",
7062
+ "text": ";"
6785
7063
  }
6786
7064
  ],
6787
- "fileUrlPath": "dist/lib/rich-text-editor/rte/config.d.ts",
7065
+ "fileUrlPath": "dist/lib/rich-text-view/rich-text-view.d.ts",
6788
7066
  "releaseTag": "Public",
6789
- "isAbstract": false,
6790
- "name": "RteConfig",
6791
- "preserveMemberOrder": false,
6792
- "members": [
6793
- {
7067
+ "name": "RteChildSlotProps",
7068
+ "typeTokenRange": {
7069
+ "startIndex": 1,
7070
+ "endIndex": 4
7071
+ }
7072
+ },
7073
+ {
7074
+ "kind": "Class",
7075
+ "canonicalReference": "@vonage/vivid!RteConfig:class",
7076
+ "docComment": "",
7077
+ "excerptTokens": [
7078
+ {
7079
+ "kind": "Content",
7080
+ "text": "export declare class RteConfig "
7081
+ }
7082
+ ],
7083
+ "fileUrlPath": "dist/lib/rich-text-editor/rte/config.d.ts",
7084
+ "releaseTag": "Public",
7085
+ "isAbstract": false,
7086
+ "name": "RteConfig",
7087
+ "preserveMemberOrder": false,
7088
+ "members": [
7089
+ {
6794
7090
  "kind": "Constructor",
6795
7091
  "canonicalReference": "@vonage/vivid!RteConfig:constructor(1)",
6796
7092
  "docComment": "/**\n * Constructs a new instance of the `RteConfig` class\n */\n",
@@ -6876,6 +7172,73 @@
6876
7172
  "isOptional": false,
6877
7173
  "isAbstract": false,
6878
7174
  "name": "instantiateEditor"
7175
+ },
7176
+ {
7177
+ "kind": "Method",
7178
+ "canonicalReference": "@vonage/vivid!RteConfig#instantiateView:member(1)",
7179
+ "docComment": "",
7180
+ "excerptTokens": [
7181
+ {
7182
+ "kind": "Content",
7183
+ "text": "instantiateView(document: "
7184
+ },
7185
+ {
7186
+ "kind": "Reference",
7187
+ "text": "RteDocument",
7188
+ "canonicalReference": "@vonage/vivid!RteDocument:type"
7189
+ },
7190
+ {
7191
+ "kind": "Content",
7192
+ "text": ", options?: "
7193
+ },
7194
+ {
7195
+ "kind": "Reference",
7196
+ "text": "RteViewOptions",
7197
+ "canonicalReference": "@vonage/vivid!RteViewOptions:type"
7198
+ },
7199
+ {
7200
+ "kind": "Content",
7201
+ "text": "): "
7202
+ },
7203
+ {
7204
+ "kind": "Reference",
7205
+ "text": "RteView",
7206
+ "canonicalReference": "@vonage/vivid!RteView:type"
7207
+ },
7208
+ {
7209
+ "kind": "Content",
7210
+ "text": ";"
7211
+ }
7212
+ ],
7213
+ "isStatic": false,
7214
+ "returnTypeTokenRange": {
7215
+ "startIndex": 5,
7216
+ "endIndex": 6
7217
+ },
7218
+ "releaseTag": "Public",
7219
+ "isProtected": false,
7220
+ "overloadIndex": 1,
7221
+ "parameters": [
7222
+ {
7223
+ "parameterName": "document",
7224
+ "parameterTypeTokenRange": {
7225
+ "startIndex": 1,
7226
+ "endIndex": 2
7227
+ },
7228
+ "isOptional": false
7229
+ },
7230
+ {
7231
+ "parameterName": "options",
7232
+ "parameterTypeTokenRange": {
7233
+ "startIndex": 3,
7234
+ "endIndex": 4
7235
+ },
7236
+ "isOptional": true
7237
+ }
7238
+ ],
7239
+ "isOptional": false,
7240
+ "isAbstract": false,
7241
+ "name": "instantiateView"
6879
7242
  }
6880
7243
  ],
6881
7244
  "implementsTokenRanges": []
@@ -7419,6 +7782,41 @@
7419
7782
  }
7420
7783
  ]
7421
7784
  },
7785
+ {
7786
+ "kind": "Property",
7787
+ "canonicalReference": "@vonage/vivid!RteInstance#feature:member",
7788
+ "docComment": "",
7789
+ "excerptTokens": [
7790
+ {
7791
+ "kind": "Content",
7792
+ "text": "feature: "
7793
+ },
7794
+ {
7795
+ "kind": "Content",
7796
+ "text": "typeof "
7797
+ },
7798
+ {
7799
+ "kind": "Reference",
7800
+ "text": "getPublicInterface",
7801
+ "canonicalReference": "@vonage/vivid!~getPublicInterface:function"
7802
+ },
7803
+ {
7804
+ "kind": "Content",
7805
+ "text": ";"
7806
+ }
7807
+ ],
7808
+ "isReadonly": false,
7809
+ "isOptional": false,
7810
+ "releaseTag": "Public",
7811
+ "name": "feature",
7812
+ "propertyTypeTokenRange": {
7813
+ "startIndex": 1,
7814
+ "endIndex": 3
7815
+ },
7816
+ "isStatic": false,
7817
+ "isProtected": false,
7818
+ "isAbstract": false
7819
+ },
7422
7820
  {
7423
7821
  "kind": "Method",
7424
7822
  "canonicalReference": "@vonage/vivid!RteInstance#getDocument:member(1)",
@@ -7731,6 +8129,148 @@
7731
8129
  "endIndex": 4
7732
8130
  }
7733
8131
  },
8132
+ {
8133
+ "kind": "TypeAlias",
8134
+ "canonicalReference": "@vonage/vivid!RteView:type",
8135
+ "docComment": "",
8136
+ "excerptTokens": [
8137
+ {
8138
+ "kind": "Content",
8139
+ "text": "export type RteView = "
8140
+ },
8141
+ {
8142
+ "kind": "Content",
8143
+ "text": "({\n type: 'node';\n node: "
8144
+ },
8145
+ {
8146
+ "kind": "Reference",
8147
+ "text": "RteNode",
8148
+ "canonicalReference": "@vonage/vivid!RteNode:type"
8149
+ },
8150
+ {
8151
+ "kind": "Content",
8152
+ "text": ";\n children: "
8153
+ },
8154
+ {
8155
+ "kind": "Reference",
8156
+ "text": "RteView",
8157
+ "canonicalReference": "@vonage/vivid!RteView:type"
8158
+ },
8159
+ {
8160
+ "kind": "Content",
8161
+ "text": ";\n} | {\n type: 'mark';\n mark: "
8162
+ },
8163
+ {
8164
+ "kind": "Reference",
8165
+ "text": "RteMark",
8166
+ "canonicalReference": "@vonage/vivid!RteMark:type"
8167
+ },
8168
+ {
8169
+ "kind": "Content",
8170
+ "text": ";\n children: "
8171
+ },
8172
+ {
8173
+ "kind": "Reference",
8174
+ "text": "RteView",
8175
+ "canonicalReference": "@vonage/vivid!RteView:type"
8176
+ },
8177
+ {
8178
+ "kind": "Content",
8179
+ "text": ";\n} | {\n type: 'fragment';\n content: "
8180
+ },
8181
+ {
8182
+ "kind": "Reference",
8183
+ "text": "RteView",
8184
+ "canonicalReference": "@vonage/vivid!RteView:type"
8185
+ },
8186
+ {
8187
+ "kind": "Content",
8188
+ "text": "[];\n}) & {\n ["
8189
+ },
8190
+ {
8191
+ "kind": "Reference",
8192
+ "text": "impl",
8193
+ "canonicalReference": "@vonage/vivid!~impl:var"
8194
+ },
8195
+ {
8196
+ "kind": "Content",
8197
+ "text": "]: "
8198
+ },
8199
+ {
8200
+ "kind": "Reference",
8201
+ "text": "RteViewCtx",
8202
+ "canonicalReference": "@vonage/vivid!~RteViewCtx:type"
8203
+ },
8204
+ {
8205
+ "kind": "Content",
8206
+ "text": ";\n}"
8207
+ },
8208
+ {
8209
+ "kind": "Content",
8210
+ "text": ";"
8211
+ }
8212
+ ],
8213
+ "fileUrlPath": "dist/lib/rich-text-editor/rte/view.d.ts",
8214
+ "releaseTag": "Public",
8215
+ "name": "RteView",
8216
+ "typeTokenRange": {
8217
+ "startIndex": 1,
8218
+ "endIndex": 16
8219
+ }
8220
+ },
8221
+ {
8222
+ "kind": "TypeAlias",
8223
+ "canonicalReference": "@vonage/vivid!RteViewOptions:type",
8224
+ "docComment": "",
8225
+ "excerptTokens": [
8226
+ {
8227
+ "kind": "Content",
8228
+ "text": "export type RteViewOptions = "
8229
+ },
8230
+ {
8231
+ "kind": "Content",
8232
+ "text": "{\n renderChildView?: (view: "
8233
+ },
8234
+ {
8235
+ "kind": "Reference",
8236
+ "text": "RteView",
8237
+ "canonicalReference": "@vonage/vivid!RteView:type"
8238
+ },
8239
+ {
8240
+ "kind": "Content",
8241
+ "text": " & {\n type: 'node' | 'mark';\n }) => {\n dom: "
8242
+ },
8243
+ {
8244
+ "kind": "Reference",
8245
+ "text": "HTMLElement",
8246
+ "canonicalReference": "!HTMLElement:interface"
8247
+ },
8248
+ {
8249
+ "kind": "Content",
8250
+ "text": ";\n contentDom?: "
8251
+ },
8252
+ {
8253
+ "kind": "Reference",
8254
+ "text": "HTMLElement",
8255
+ "canonicalReference": "!HTMLElement:interface"
8256
+ },
8257
+ {
8258
+ "kind": "Content",
8259
+ "text": ";\n } | true | false;\n}"
8260
+ },
8261
+ {
8262
+ "kind": "Content",
8263
+ "text": ";"
8264
+ }
8265
+ ],
8266
+ "fileUrlPath": "dist/lib/rich-text-editor/rte/view.d.ts",
8267
+ "releaseTag": "Public",
8268
+ "name": "RteViewOptions",
8269
+ "typeTokenRange": {
8270
+ "startIndex": 1,
8271
+ "endIndex": 8
8272
+ }
8273
+ },
7734
8274
  {
7735
8275
  "kind": "TypeAlias",
7736
8276
  "canonicalReference": "@vonage/vivid!SelectAppearance:type",
@@ -8598,51 +9138,127 @@
8598
9138
  }
8599
9139
  },
8600
9140
  {
8601
- "kind": "Enum",
8602
- "canonicalReference": "@vonage/vivid!Sticky:enum",
9141
+ "kind": "TypeAlias",
9142
+ "canonicalReference": "@vonage/vivid!StatusConnotation:type",
8603
9143
  "docComment": "",
8604
9144
  "excerptTokens": [
8605
9145
  {
8606
9146
  "kind": "Content",
8607
- "text": "export declare enum Sticky "
8608
- }
8609
- ],
8610
- "fileUrlPath": "dist/lib/enums.d.ts",
8611
- "releaseTag": "Public",
8612
- "name": "Sticky",
8613
- "preserveMemberOrder": false,
8614
- "members": [
9147
+ "text": "export type StatusConnotation = "
9148
+ },
8615
9149
  {
8616
- "kind": "EnumMember",
8617
- "canonicalReference": "@vonage/vivid!Sticky.All:member",
8618
- "docComment": "",
8619
- "excerptTokens": [
8620
- {
8621
- "kind": "Content",
8622
- "text": "All = "
8623
- },
8624
- {
8625
- "kind": "Content",
8626
- "text": "\"all\""
8627
- }
8628
- ],
8629
- "initializerTokenRange": {
8630
- "startIndex": 1,
8631
- "endIndex": 2
8632
- },
8633
- "releaseTag": "Public",
8634
- "name": "All"
9150
+ "kind": "Reference",
9151
+ "text": "ExtractFromEnum",
9152
+ "canonicalReference": "@vonage/vivid!~ExtractFromEnum:type"
8635
9153
  },
8636
9154
  {
8637
- "kind": "EnumMember",
8638
- "canonicalReference": "@vonage/vivid!Sticky.Column:member",
8639
- "docComment": "",
8640
- "excerptTokens": [
8641
- {
8642
- "kind": "Content",
8643
- "text": "Column = "
8644
- },
8645
- {
9155
+ "kind": "Content",
9156
+ "text": "<"
9157
+ },
9158
+ {
9159
+ "kind": "Reference",
9160
+ "text": "Connotation",
9161
+ "canonicalReference": "@vonage/vivid!Connotation:enum"
9162
+ },
9163
+ {
9164
+ "kind": "Content",
9165
+ "text": ", "
9166
+ },
9167
+ {
9168
+ "kind": "Reference",
9169
+ "text": "Connotation.Success",
9170
+ "canonicalReference": "@vonage/vivid!Connotation.Success:member"
9171
+ },
9172
+ {
9173
+ "kind": "Content",
9174
+ "text": " | "
9175
+ },
9176
+ {
9177
+ "kind": "Reference",
9178
+ "text": "Connotation.Information",
9179
+ "canonicalReference": "@vonage/vivid!Connotation.Information:member"
9180
+ },
9181
+ {
9182
+ "kind": "Content",
9183
+ "text": " | "
9184
+ },
9185
+ {
9186
+ "kind": "Reference",
9187
+ "text": "Connotation.Warning",
9188
+ "canonicalReference": "@vonage/vivid!Connotation.Warning:member"
9189
+ },
9190
+ {
9191
+ "kind": "Content",
9192
+ "text": " | "
9193
+ },
9194
+ {
9195
+ "kind": "Reference",
9196
+ "text": "Connotation.Alert",
9197
+ "canonicalReference": "@vonage/vivid!Connotation.Alert:member"
9198
+ },
9199
+ {
9200
+ "kind": "Content",
9201
+ "text": ">"
9202
+ },
9203
+ {
9204
+ "kind": "Content",
9205
+ "text": ";"
9206
+ }
9207
+ ],
9208
+ "fileUrlPath": "dist/lib/status/status.d.ts",
9209
+ "releaseTag": "Public",
9210
+ "name": "StatusConnotation",
9211
+ "typeTokenRange": {
9212
+ "startIndex": 1,
9213
+ "endIndex": 13
9214
+ }
9215
+ },
9216
+ {
9217
+ "kind": "Enum",
9218
+ "canonicalReference": "@vonage/vivid!Sticky:enum",
9219
+ "docComment": "",
9220
+ "excerptTokens": [
9221
+ {
9222
+ "kind": "Content",
9223
+ "text": "export declare enum Sticky "
9224
+ }
9225
+ ],
9226
+ "fileUrlPath": "dist/lib/enums.d.ts",
9227
+ "releaseTag": "Public",
9228
+ "name": "Sticky",
9229
+ "preserveMemberOrder": false,
9230
+ "members": [
9231
+ {
9232
+ "kind": "EnumMember",
9233
+ "canonicalReference": "@vonage/vivid!Sticky.All:member",
9234
+ "docComment": "",
9235
+ "excerptTokens": [
9236
+ {
9237
+ "kind": "Content",
9238
+ "text": "All = "
9239
+ },
9240
+ {
9241
+ "kind": "Content",
9242
+ "text": "\"all\""
9243
+ }
9244
+ ],
9245
+ "initializerTokenRange": {
9246
+ "startIndex": 1,
9247
+ "endIndex": 2
9248
+ },
9249
+ "releaseTag": "Public",
9250
+ "name": "All"
9251
+ },
9252
+ {
9253
+ "kind": "EnumMember",
9254
+ "canonicalReference": "@vonage/vivid!Sticky.Column:member",
9255
+ "docComment": "",
9256
+ "excerptTokens": [
9257
+ {
9258
+ "kind": "Content",
9259
+ "text": "Column = "
9260
+ },
9261
+ {
8646
9262
  "kind": "Content",
8647
9263
  "text": "\"column\""
8648
9264
  }
@@ -9052,6 +9668,51 @@
9052
9668
  "text": "Connotation.CTA",
9053
9669
  "canonicalReference": "@vonage/vivid!Connotation.CTA:member"
9054
9670
  },
9671
+ {
9672
+ "kind": "Content",
9673
+ "text": " | "
9674
+ },
9675
+ {
9676
+ "kind": "Reference",
9677
+ "text": "Connotation.Success",
9678
+ "canonicalReference": "@vonage/vivid!Connotation.Success:member"
9679
+ },
9680
+ {
9681
+ "kind": "Content",
9682
+ "text": " | "
9683
+ },
9684
+ {
9685
+ "kind": "Reference",
9686
+ "text": "Connotation.Alert",
9687
+ "canonicalReference": "@vonage/vivid!Connotation.Alert:member"
9688
+ },
9689
+ {
9690
+ "kind": "Content",
9691
+ "text": " | "
9692
+ },
9693
+ {
9694
+ "kind": "Reference",
9695
+ "text": "Connotation.Warning",
9696
+ "canonicalReference": "@vonage/vivid!Connotation.Warning:member"
9697
+ },
9698
+ {
9699
+ "kind": "Content",
9700
+ "text": " | "
9701
+ },
9702
+ {
9703
+ "kind": "Reference",
9704
+ "text": "Connotation.Information",
9705
+ "canonicalReference": "@vonage/vivid!Connotation.Information:member"
9706
+ },
9707
+ {
9708
+ "kind": "Content",
9709
+ "text": " | "
9710
+ },
9711
+ {
9712
+ "kind": "Reference",
9713
+ "text": "Connotation.Announcement",
9714
+ "canonicalReference": "@vonage/vivid!Connotation.Announcement:member"
9715
+ },
9055
9716
  {
9056
9717
  "kind": "Content",
9057
9718
  "text": ">"
@@ -9066,7 +9727,7 @@
9066
9727
  "name": "TagConnotation",
9067
9728
  "typeTokenRange": {
9068
9729
  "startIndex": 1,
9069
- "endIndex": 9
9730
+ "endIndex": 19
9070
9731
  }
9071
9732
  },
9072
9733
  {
@@ -14231,6 +14892,98 @@
14231
14892
  },
14232
14893
  "implementsTokenRanges": []
14233
14894
  },
14895
+ {
14896
+ "kind": "Class",
14897
+ "canonicalReference": "@vonage/vivid!VwcCountryElement:class",
14898
+ "docComment": "",
14899
+ "excerptTokens": [
14900
+ {
14901
+ "kind": "Content",
14902
+ "text": "export declare class Country extends "
14903
+ },
14904
+ {
14905
+ "kind": "Reference",
14906
+ "text": "VividElement",
14907
+ "canonicalReference": "@vonage/vivid!~VividElement:class"
14908
+ },
14909
+ {
14910
+ "kind": "Content",
14911
+ "text": " "
14912
+ }
14913
+ ],
14914
+ "fileUrlPath": "dist/lib/country/country.d.ts",
14915
+ "releaseTag": "Public",
14916
+ "isAbstract": false,
14917
+ "name": "VwcCountryElement",
14918
+ "preserveMemberOrder": false,
14919
+ "members": [
14920
+ {
14921
+ "kind": "Property",
14922
+ "canonicalReference": "@vonage/vivid!VwcCountryElement#code:member",
14923
+ "docComment": "",
14924
+ "excerptTokens": [
14925
+ {
14926
+ "kind": "Content",
14927
+ "text": "code?: "
14928
+ },
14929
+ {
14930
+ "kind": "Content",
14931
+ "text": "string"
14932
+ },
14933
+ {
14934
+ "kind": "Content",
14935
+ "text": ";"
14936
+ }
14937
+ ],
14938
+ "isReadonly": false,
14939
+ "isOptional": true,
14940
+ "releaseTag": "Public",
14941
+ "name": "code",
14942
+ "propertyTypeTokenRange": {
14943
+ "startIndex": 1,
14944
+ "endIndex": 2
14945
+ },
14946
+ "isStatic": false,
14947
+ "isProtected": false,
14948
+ "isAbstract": false
14949
+ },
14950
+ {
14951
+ "kind": "Property",
14952
+ "canonicalReference": "@vonage/vivid!VwcCountryElement#label:member",
14953
+ "docComment": "",
14954
+ "excerptTokens": [
14955
+ {
14956
+ "kind": "Content",
14957
+ "text": "label?: "
14958
+ },
14959
+ {
14960
+ "kind": "Content",
14961
+ "text": "string"
14962
+ },
14963
+ {
14964
+ "kind": "Content",
14965
+ "text": ";"
14966
+ }
14967
+ ],
14968
+ "isReadonly": false,
14969
+ "isOptional": true,
14970
+ "releaseTag": "Public",
14971
+ "name": "label",
14972
+ "propertyTypeTokenRange": {
14973
+ "startIndex": 1,
14974
+ "endIndex": 2
14975
+ },
14976
+ "isStatic": false,
14977
+ "isProtected": false,
14978
+ "isAbstract": false
14979
+ }
14980
+ ],
14981
+ "extendsTokenRange": {
14982
+ "startIndex": 1,
14983
+ "endIndex": 2
14984
+ },
14985
+ "implementsTokenRanges": []
14986
+ },
14234
14987
  {
14235
14988
  "kind": "Class",
14236
14989
  "canonicalReference": "@vonage/vivid!VwcDataGridCellElement:class",
@@ -21749,31 +22502,711 @@
21749
22502
  "isOptional": false
21750
22503
  },
21751
22504
  {
21752
- "parameterName": "newValue",
21753
- "parameterTypeTokenRange": {
21754
- "startIndex": 4,
21755
- "endIndex": 6
21756
- },
21757
- "isOptional": false
22505
+ "parameterName": "newValue",
22506
+ "parameterTypeTokenRange": {
22507
+ "startIndex": 4,
22508
+ "endIndex": 6
22509
+ },
22510
+ "isOptional": false
22511
+ }
22512
+ ],
22513
+ "isOptional": false,
22514
+ "isAbstract": false,
22515
+ "name": "paginationButtonsChanged"
22516
+ },
22517
+ {
22518
+ "kind": "Property",
22519
+ "canonicalReference": "@vonage/vivid!VwcPaginationElement#prevButton:member",
22520
+ "docComment": "",
22521
+ "excerptTokens": [
22522
+ {
22523
+ "kind": "Content",
22524
+ "text": "prevButton?: "
22525
+ },
22526
+ {
22527
+ "kind": "Reference",
22528
+ "text": "Button",
22529
+ "canonicalReference": "@vonage/vivid!VwcButtonElement:class"
22530
+ },
22531
+ {
22532
+ "kind": "Content",
22533
+ "text": ";"
22534
+ }
22535
+ ],
22536
+ "isReadonly": false,
22537
+ "isOptional": true,
22538
+ "releaseTag": "Public",
22539
+ "name": "prevButton",
22540
+ "propertyTypeTokenRange": {
22541
+ "startIndex": 1,
22542
+ "endIndex": 2
22543
+ },
22544
+ "isStatic": false,
22545
+ "isProtected": false,
22546
+ "isAbstract": false
22547
+ },
22548
+ {
22549
+ "kind": "Property",
22550
+ "canonicalReference": "@vonage/vivid!VwcPaginationElement#selectedIndex:member",
22551
+ "docComment": "",
22552
+ "excerptTokens": [
22553
+ {
22554
+ "kind": "Content",
22555
+ "text": "selectedIndex: "
22556
+ },
22557
+ {
22558
+ "kind": "Content",
22559
+ "text": "number | undefined"
22560
+ },
22561
+ {
22562
+ "kind": "Content",
22563
+ "text": ";"
22564
+ }
22565
+ ],
22566
+ "isReadonly": false,
22567
+ "isOptional": false,
22568
+ "releaseTag": "Public",
22569
+ "name": "selectedIndex",
22570
+ "propertyTypeTokenRange": {
22571
+ "startIndex": 1,
22572
+ "endIndex": 2
22573
+ },
22574
+ "isStatic": false,
22575
+ "isProtected": false,
22576
+ "isAbstract": false
22577
+ },
22578
+ {
22579
+ "kind": "Method",
22580
+ "canonicalReference": "@vonage/vivid!VwcPaginationElement#selectedIndexChanged:member(1)",
22581
+ "docComment": "",
22582
+ "excerptTokens": [
22583
+ {
22584
+ "kind": "Content",
22585
+ "text": "selectedIndexChanged(oldValue: "
22586
+ },
22587
+ {
22588
+ "kind": "Content",
22589
+ "text": "number"
22590
+ },
22591
+ {
22592
+ "kind": "Content",
22593
+ "text": ", newValue: "
22594
+ },
22595
+ {
22596
+ "kind": "Content",
22597
+ "text": "number"
22598
+ },
22599
+ {
22600
+ "kind": "Content",
22601
+ "text": "): "
22602
+ },
22603
+ {
22604
+ "kind": "Content",
22605
+ "text": "void"
22606
+ },
22607
+ {
22608
+ "kind": "Content",
22609
+ "text": ";"
22610
+ }
22611
+ ],
22612
+ "isStatic": false,
22613
+ "returnTypeTokenRange": {
22614
+ "startIndex": 5,
22615
+ "endIndex": 6
22616
+ },
22617
+ "releaseTag": "Public",
22618
+ "isProtected": false,
22619
+ "overloadIndex": 1,
22620
+ "parameters": [
22621
+ {
22622
+ "parameterName": "oldValue",
22623
+ "parameterTypeTokenRange": {
22624
+ "startIndex": 1,
22625
+ "endIndex": 2
22626
+ },
22627
+ "isOptional": false
22628
+ },
22629
+ {
22630
+ "parameterName": "newValue",
22631
+ "parameterTypeTokenRange": {
22632
+ "startIndex": 3,
22633
+ "endIndex": 4
22634
+ },
22635
+ "isOptional": false
22636
+ }
22637
+ ],
22638
+ "isOptional": false,
22639
+ "isAbstract": false,
22640
+ "name": "selectedIndexChanged"
22641
+ },
22642
+ {
22643
+ "kind": "Property",
22644
+ "canonicalReference": "@vonage/vivid!VwcPaginationElement#shape:member",
22645
+ "docComment": "",
22646
+ "excerptTokens": [
22647
+ {
22648
+ "kind": "Content",
22649
+ "text": "shape?: "
22650
+ },
22651
+ {
22652
+ "kind": "Reference",
22653
+ "text": "PaginationShape",
22654
+ "canonicalReference": "@vonage/vivid!PaginationShape:type"
22655
+ },
22656
+ {
22657
+ "kind": "Content",
22658
+ "text": ";"
22659
+ }
22660
+ ],
22661
+ "isReadonly": false,
22662
+ "isOptional": true,
22663
+ "releaseTag": "Public",
22664
+ "name": "shape",
22665
+ "propertyTypeTokenRange": {
22666
+ "startIndex": 1,
22667
+ "endIndex": 2
22668
+ },
22669
+ "isStatic": false,
22670
+ "isProtected": false,
22671
+ "isAbstract": false
22672
+ },
22673
+ {
22674
+ "kind": "Property",
22675
+ "canonicalReference": "@vonage/vivid!VwcPaginationElement#size:member",
22676
+ "docComment": "",
22677
+ "excerptTokens": [
22678
+ {
22679
+ "kind": "Content",
22680
+ "text": "size?: "
22681
+ },
22682
+ {
22683
+ "kind": "Reference",
22684
+ "text": "PaginationSize",
22685
+ "canonicalReference": "@vonage/vivid!PaginationSize:type"
22686
+ },
22687
+ {
22688
+ "kind": "Content",
22689
+ "text": ";"
22690
+ }
22691
+ ],
22692
+ "isReadonly": false,
22693
+ "isOptional": true,
22694
+ "releaseTag": "Public",
22695
+ "name": "size",
22696
+ "propertyTypeTokenRange": {
22697
+ "startIndex": 1,
22698
+ "endIndex": 2
22699
+ },
22700
+ "isStatic": false,
22701
+ "isProtected": false,
22702
+ "isAbstract": false
22703
+ },
22704
+ {
22705
+ "kind": "Property",
22706
+ "canonicalReference": "@vonage/vivid!VwcPaginationElement#total:member",
22707
+ "docComment": "",
22708
+ "excerptTokens": [
22709
+ {
22710
+ "kind": "Content",
22711
+ "text": "total: "
22712
+ },
22713
+ {
22714
+ "kind": "Content",
22715
+ "text": "number"
22716
+ },
22717
+ {
22718
+ "kind": "Content",
22719
+ "text": ";"
22720
+ }
22721
+ ],
22722
+ "isReadonly": false,
22723
+ "isOptional": false,
22724
+ "releaseTag": "Public",
22725
+ "name": "total",
22726
+ "propertyTypeTokenRange": {
22727
+ "startIndex": 1,
22728
+ "endIndex": 2
22729
+ },
22730
+ "isStatic": false,
22731
+ "isProtected": false,
22732
+ "isAbstract": false
22733
+ },
22734
+ {
22735
+ "kind": "Method",
22736
+ "canonicalReference": "@vonage/vivid!VwcPaginationElement#totalChanged:member(1)",
22737
+ "docComment": "",
22738
+ "excerptTokens": [
22739
+ {
22740
+ "kind": "Content",
22741
+ "text": "totalChanged(_: "
22742
+ },
22743
+ {
22744
+ "kind": "Content",
22745
+ "text": "number"
22746
+ },
22747
+ {
22748
+ "kind": "Content",
22749
+ "text": ", newValue: "
22750
+ },
22751
+ {
22752
+ "kind": "Content",
22753
+ "text": "number"
22754
+ },
22755
+ {
22756
+ "kind": "Content",
22757
+ "text": "): "
22758
+ },
22759
+ {
22760
+ "kind": "Content",
22761
+ "text": "void"
22762
+ },
22763
+ {
22764
+ "kind": "Content",
22765
+ "text": ";"
22766
+ }
22767
+ ],
22768
+ "isStatic": false,
22769
+ "returnTypeTokenRange": {
22770
+ "startIndex": 5,
22771
+ "endIndex": 6
22772
+ },
22773
+ "releaseTag": "Public",
22774
+ "isProtected": false,
22775
+ "overloadIndex": 1,
22776
+ "parameters": [
22777
+ {
22778
+ "parameterName": "_",
22779
+ "parameterTypeTokenRange": {
22780
+ "startIndex": 1,
22781
+ "endIndex": 2
22782
+ },
22783
+ "isOptional": false
22784
+ },
22785
+ {
22786
+ "parameterName": "newValue",
22787
+ "parameterTypeTokenRange": {
22788
+ "startIndex": 3,
22789
+ "endIndex": 4
22790
+ },
22791
+ "isOptional": false
22792
+ }
22793
+ ],
22794
+ "isOptional": false,
22795
+ "isAbstract": false,
22796
+ "name": "totalChanged"
22797
+ }
22798
+ ],
22799
+ "extendsTokenRange": {
22800
+ "startIndex": 1,
22801
+ "endIndex": 2
22802
+ },
22803
+ "implementsTokenRanges": []
22804
+ },
22805
+ {
22806
+ "kind": "Class",
22807
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement:class",
22808
+ "docComment": "",
22809
+ "excerptTokens": [
22810
+ {
22811
+ "kind": "Content",
22812
+ "text": "export declare class Popover extends "
22813
+ },
22814
+ {
22815
+ "kind": "Reference",
22816
+ "text": "Popover_base",
22817
+ "canonicalReference": "@vonage/vivid!~Popover_base"
22818
+ },
22819
+ {
22820
+ "kind": "Content",
22821
+ "text": " "
22822
+ }
22823
+ ],
22824
+ "fileUrlPath": "dist/lib/popover/popover.d.ts",
22825
+ "releaseTag": "Public",
22826
+ "isAbstract": false,
22827
+ "name": "VwcPopoverElement",
22828
+ "preserveMemberOrder": false,
22829
+ "members": [
22830
+ {
22831
+ "kind": "Method",
22832
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#_slottedAnchorChanged:member(1)",
22833
+ "docComment": "",
22834
+ "excerptTokens": [
22835
+ {
22836
+ "kind": "Content",
22837
+ "text": "_slottedAnchorChanged(): "
22838
+ },
22839
+ {
22840
+ "kind": "Content",
22841
+ "text": "void"
22842
+ },
22843
+ {
22844
+ "kind": "Content",
22845
+ "text": ";"
22846
+ }
22847
+ ],
22848
+ "isStatic": false,
22849
+ "returnTypeTokenRange": {
22850
+ "startIndex": 1,
22851
+ "endIndex": 2
22852
+ },
22853
+ "releaseTag": "Public",
22854
+ "isProtected": false,
22855
+ "overloadIndex": 1,
22856
+ "parameters": [],
22857
+ "isOptional": false,
22858
+ "isAbstract": false,
22859
+ "name": "_slottedAnchorChanged"
22860
+ },
22861
+ {
22862
+ "kind": "Property",
22863
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#alternate:member",
22864
+ "docComment": "",
22865
+ "excerptTokens": [
22866
+ {
22867
+ "kind": "Content",
22868
+ "text": "alternate: "
22869
+ },
22870
+ {
22871
+ "kind": "Content",
22872
+ "text": "boolean"
22873
+ },
22874
+ {
22875
+ "kind": "Content",
22876
+ "text": ";"
22877
+ }
22878
+ ],
22879
+ "isReadonly": false,
22880
+ "isOptional": false,
22881
+ "releaseTag": "Public",
22882
+ "name": "alternate",
22883
+ "propertyTypeTokenRange": {
22884
+ "startIndex": 1,
22885
+ "endIndex": 2
22886
+ },
22887
+ "isStatic": false,
22888
+ "isProtected": false,
22889
+ "isAbstract": false
22890
+ },
22891
+ {
22892
+ "kind": "Property",
22893
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#anchor:member",
22894
+ "docComment": "",
22895
+ "excerptTokens": [
22896
+ {
22897
+ "kind": "Content",
22898
+ "text": "anchor?: "
22899
+ },
22900
+ {
22901
+ "kind": "Reference",
22902
+ "text": "HTMLElement",
22903
+ "canonicalReference": "!HTMLElement:interface"
22904
+ },
22905
+ {
22906
+ "kind": "Content",
22907
+ "text": ";"
22908
+ }
22909
+ ],
22910
+ "isReadonly": false,
22911
+ "isOptional": true,
22912
+ "releaseTag": "Public",
22913
+ "name": "anchor",
22914
+ "propertyTypeTokenRange": {
22915
+ "startIndex": 1,
22916
+ "endIndex": 2
22917
+ },
22918
+ "isStatic": false,
22919
+ "isProtected": false,
22920
+ "isAbstract": false
22921
+ },
22922
+ {
22923
+ "kind": "Method",
22924
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#anchorChanged:member(1)",
22925
+ "docComment": "",
22926
+ "excerptTokens": [
22927
+ {
22928
+ "kind": "Content",
22929
+ "text": "anchorChanged(): "
22930
+ },
22931
+ {
22932
+ "kind": "Content",
22933
+ "text": "void"
22934
+ },
22935
+ {
22936
+ "kind": "Content",
22937
+ "text": ";"
22938
+ }
22939
+ ],
22940
+ "isStatic": false,
22941
+ "returnTypeTokenRange": {
22942
+ "startIndex": 1,
22943
+ "endIndex": 2
22944
+ },
22945
+ "releaseTag": "Public",
22946
+ "isProtected": false,
22947
+ "overloadIndex": 1,
22948
+ "parameters": [],
22949
+ "isOptional": false,
22950
+ "isAbstract": false,
22951
+ "name": "anchorChanged"
22952
+ },
22953
+ {
22954
+ "kind": "Property",
22955
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#arrow:member",
22956
+ "docComment": "",
22957
+ "excerptTokens": [
22958
+ {
22959
+ "kind": "Content",
22960
+ "text": "arrow: "
22961
+ },
22962
+ {
22963
+ "kind": "Content",
22964
+ "text": "boolean"
22965
+ },
22966
+ {
22967
+ "kind": "Content",
22968
+ "text": ";"
22969
+ }
22970
+ ],
22971
+ "isReadonly": false,
22972
+ "isOptional": false,
22973
+ "releaseTag": "Public",
22974
+ "name": "arrow",
22975
+ "propertyTypeTokenRange": {
22976
+ "startIndex": 1,
22977
+ "endIndex": 2
22978
+ },
22979
+ "isStatic": false,
22980
+ "isProtected": false,
22981
+ "isAbstract": false
22982
+ },
22983
+ {
22984
+ "kind": "Method",
22985
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#arrowChanged:member(1)",
22986
+ "docComment": "",
22987
+ "excerptTokens": [
22988
+ {
22989
+ "kind": "Content",
22990
+ "text": "arrowChanged(): "
22991
+ },
22992
+ {
22993
+ "kind": "Content",
22994
+ "text": "void"
22995
+ },
22996
+ {
22997
+ "kind": "Content",
22998
+ "text": ";"
22999
+ }
23000
+ ],
23001
+ "isStatic": false,
23002
+ "returnTypeTokenRange": {
23003
+ "startIndex": 1,
23004
+ "endIndex": 2
23005
+ },
23006
+ "releaseTag": "Public",
23007
+ "isProtected": false,
23008
+ "overloadIndex": 1,
23009
+ "parameters": [],
23010
+ "isOptional": false,
23011
+ "isAbstract": false,
23012
+ "name": "arrowChanged"
23013
+ },
23014
+ {
23015
+ "kind": "Method",
23016
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#connectedCallback:member(1)",
23017
+ "docComment": "",
23018
+ "excerptTokens": [
23019
+ {
23020
+ "kind": "Content",
23021
+ "text": "connectedCallback(): "
23022
+ },
23023
+ {
23024
+ "kind": "Content",
23025
+ "text": "void"
23026
+ },
23027
+ {
23028
+ "kind": "Content",
23029
+ "text": ";"
23030
+ }
23031
+ ],
23032
+ "isStatic": false,
23033
+ "returnTypeTokenRange": {
23034
+ "startIndex": 1,
23035
+ "endIndex": 2
23036
+ },
23037
+ "releaseTag": "Public",
23038
+ "isProtected": false,
23039
+ "overloadIndex": 1,
23040
+ "parameters": [],
23041
+ "isOptional": false,
23042
+ "isAbstract": false,
23043
+ "name": "connectedCallback"
23044
+ },
23045
+ {
23046
+ "kind": "Method",
23047
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#disconnectedCallback:member(1)",
23048
+ "docComment": "",
23049
+ "excerptTokens": [
23050
+ {
23051
+ "kind": "Content",
23052
+ "text": "disconnectedCallback(): "
23053
+ },
23054
+ {
23055
+ "kind": "Content",
23056
+ "text": "void"
23057
+ },
23058
+ {
23059
+ "kind": "Content",
23060
+ "text": ";"
23061
+ }
23062
+ ],
23063
+ "isStatic": false,
23064
+ "returnTypeTokenRange": {
23065
+ "startIndex": 1,
23066
+ "endIndex": 2
23067
+ },
23068
+ "releaseTag": "Public",
23069
+ "isProtected": false,
23070
+ "overloadIndex": 1,
23071
+ "parameters": [],
23072
+ "isOptional": false,
23073
+ "isAbstract": false,
23074
+ "name": "disconnectedCallback"
23075
+ },
23076
+ {
23077
+ "kind": "Property",
23078
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#dismissButtonAriaLabel:member",
23079
+ "docComment": "",
23080
+ "excerptTokens": [
23081
+ {
23082
+ "kind": "Content",
23083
+ "text": "dismissButtonAriaLabel: "
23084
+ },
23085
+ {
23086
+ "kind": "Content",
23087
+ "text": "string | null"
23088
+ },
23089
+ {
23090
+ "kind": "Content",
23091
+ "text": ";"
23092
+ }
23093
+ ],
23094
+ "isReadonly": false,
23095
+ "isOptional": false,
23096
+ "releaseTag": "Public",
23097
+ "name": "dismissButtonAriaLabel",
23098
+ "propertyTypeTokenRange": {
23099
+ "startIndex": 1,
23100
+ "endIndex": 2
23101
+ },
23102
+ "isStatic": false,
23103
+ "isProtected": false,
23104
+ "isAbstract": false
23105
+ },
23106
+ {
23107
+ "kind": "Method",
23108
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#hide:member(1)",
23109
+ "docComment": "",
23110
+ "excerptTokens": [
23111
+ {
23112
+ "kind": "Content",
23113
+ "text": "hide(): "
23114
+ },
23115
+ {
23116
+ "kind": "Content",
23117
+ "text": "void"
23118
+ },
23119
+ {
23120
+ "kind": "Content",
23121
+ "text": ";"
23122
+ }
23123
+ ],
23124
+ "isStatic": false,
23125
+ "returnTypeTokenRange": {
23126
+ "startIndex": 1,
23127
+ "endIndex": 2
23128
+ },
23129
+ "releaseTag": "Public",
23130
+ "isProtected": false,
23131
+ "overloadIndex": 1,
23132
+ "parameters": [],
23133
+ "isOptional": false,
23134
+ "isAbstract": false,
23135
+ "name": "hide"
23136
+ },
23137
+ {
23138
+ "kind": "Property",
23139
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#layout:member",
23140
+ "docComment": "",
23141
+ "excerptTokens": [
23142
+ {
23143
+ "kind": "Content",
23144
+ "text": "layout: "
23145
+ },
23146
+ {
23147
+ "kind": "Reference",
23148
+ "text": "PopoverLayout",
23149
+ "canonicalReference": "@vonage/vivid!~PopoverLayout:type"
23150
+ },
23151
+ {
23152
+ "kind": "Content",
23153
+ "text": ";"
23154
+ }
23155
+ ],
23156
+ "isReadonly": false,
23157
+ "isOptional": false,
23158
+ "releaseTag": "Public",
23159
+ "name": "layout",
23160
+ "propertyTypeTokenRange": {
23161
+ "startIndex": 1,
23162
+ "endIndex": 2
23163
+ },
23164
+ "isStatic": false,
23165
+ "isProtected": false,
23166
+ "isAbstract": false
23167
+ },
23168
+ {
23169
+ "kind": "Property",
23170
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#manual:member",
23171
+ "docComment": "",
23172
+ "excerptTokens": [
23173
+ {
23174
+ "kind": "Content",
23175
+ "text": "manual: "
23176
+ },
23177
+ {
23178
+ "kind": "Content",
23179
+ "text": "boolean"
23180
+ },
23181
+ {
23182
+ "kind": "Content",
23183
+ "text": ";"
21758
23184
  }
21759
23185
  ],
23186
+ "isReadonly": false,
21760
23187
  "isOptional": false,
21761
- "isAbstract": false,
21762
- "name": "paginationButtonsChanged"
23188
+ "releaseTag": "Public",
23189
+ "name": "manual",
23190
+ "propertyTypeTokenRange": {
23191
+ "startIndex": 1,
23192
+ "endIndex": 2
23193
+ },
23194
+ "isStatic": false,
23195
+ "isProtected": false,
23196
+ "isAbstract": false
21763
23197
  },
21764
23198
  {
21765
23199
  "kind": "Property",
21766
- "canonicalReference": "@vonage/vivid!VwcPaginationElement#prevButton:member",
23200
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#offset:member",
21767
23201
  "docComment": "",
21768
23202
  "excerptTokens": [
21769
23203
  {
21770
23204
  "kind": "Content",
21771
- "text": "prevButton?: "
23205
+ "text": "offset: "
21772
23206
  },
21773
23207
  {
21774
- "kind": "Reference",
21775
- "text": "Button",
21776
- "canonicalReference": "@vonage/vivid!VwcButtonElement:class"
23208
+ "kind": "Content",
23209
+ "text": "number | null"
21777
23210
  },
21778
23211
  {
21779
23212
  "kind": "Content",
@@ -21781,9 +23214,9 @@
21781
23214
  }
21782
23215
  ],
21783
23216
  "isReadonly": false,
21784
- "isOptional": true,
23217
+ "isOptional": false,
21785
23218
  "releaseTag": "Public",
21786
- "name": "prevButton",
23219
+ "name": "offset",
21787
23220
  "propertyTypeTokenRange": {
21788
23221
  "startIndex": 1,
21789
23222
  "endIndex": 2
@@ -21794,16 +23227,16 @@
21794
23227
  },
21795
23228
  {
21796
23229
  "kind": "Property",
21797
- "canonicalReference": "@vonage/vivid!VwcPaginationElement#selectedIndex:member",
23230
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#open:member",
21798
23231
  "docComment": "",
21799
23232
  "excerptTokens": [
21800
23233
  {
21801
23234
  "kind": "Content",
21802
- "text": "selectedIndex: "
23235
+ "text": "open: "
21803
23236
  },
21804
23237
  {
21805
23238
  "kind": "Content",
21806
- "text": "number | undefined"
23239
+ "text": "boolean"
21807
23240
  },
21808
23241
  {
21809
23242
  "kind": "Content",
@@ -21813,7 +23246,7 @@
21813
23246
  "isReadonly": false,
21814
23247
  "isOptional": false,
21815
23248
  "releaseTag": "Public",
21816
- "name": "selectedIndex",
23249
+ "name": "open",
21817
23250
  "propertyTypeTokenRange": {
21818
23251
  "startIndex": 1,
21819
23252
  "endIndex": 2
@@ -21824,16 +23257,16 @@
21824
23257
  },
21825
23258
  {
21826
23259
  "kind": "Method",
21827
- "canonicalReference": "@vonage/vivid!VwcPaginationElement#selectedIndexChanged:member(1)",
23260
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#openChanged:member(1)",
21828
23261
  "docComment": "",
21829
23262
  "excerptTokens": [
21830
23263
  {
21831
23264
  "kind": "Content",
21832
- "text": "selectedIndexChanged(oldValue: "
23265
+ "text": "openChanged(_oldValue: "
21833
23266
  },
21834
23267
  {
21835
23268
  "kind": "Content",
21836
- "text": "number"
23269
+ "text": "boolean"
21837
23270
  },
21838
23271
  {
21839
23272
  "kind": "Content",
@@ -21841,7 +23274,7 @@
21841
23274
  },
21842
23275
  {
21843
23276
  "kind": "Content",
21844
- "text": "number"
23277
+ "text": "boolean"
21845
23278
  },
21846
23279
  {
21847
23280
  "kind": "Content",
@@ -21866,7 +23299,7 @@
21866
23299
  "overloadIndex": 1,
21867
23300
  "parameters": [
21868
23301
  {
21869
- "parameterName": "oldValue",
23302
+ "parameterName": "_oldValue",
21870
23303
  "parameterTypeTokenRange": {
21871
23304
  "startIndex": 1,
21872
23305
  "endIndex": 2
@@ -21884,21 +23317,21 @@
21884
23317
  ],
21885
23318
  "isOptional": false,
21886
23319
  "isAbstract": false,
21887
- "name": "selectedIndexChanged"
23320
+ "name": "openChanged"
21888
23321
  },
21889
23322
  {
21890
23323
  "kind": "Property",
21891
- "canonicalReference": "@vonage/vivid!VwcPaginationElement#shape:member",
23324
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#placement:member",
21892
23325
  "docComment": "",
21893
23326
  "excerptTokens": [
21894
23327
  {
21895
23328
  "kind": "Content",
21896
- "text": "shape?: "
23329
+ "text": "placement: "
21897
23330
  },
21898
23331
  {
21899
23332
  "kind": "Reference",
21900
- "text": "PaginationShape",
21901
- "canonicalReference": "@vonage/vivid!PaginationShape:type"
23333
+ "text": "Placement",
23334
+ "canonicalReference": "@floating-ui/utils!Placement:type"
21902
23335
  },
21903
23336
  {
21904
23337
  "kind": "Content",
@@ -21906,9 +23339,9 @@
21906
23339
  }
21907
23340
  ],
21908
23341
  "isReadonly": false,
21909
- "isOptional": true,
23342
+ "isOptional": false,
21910
23343
  "releaseTag": "Public",
21911
- "name": "shape",
23344
+ "name": "placement",
21912
23345
  "propertyTypeTokenRange": {
21913
23346
  "startIndex": 1,
21914
23347
  "endIndex": 2
@@ -21918,94 +23351,120 @@
21918
23351
  "isAbstract": false
21919
23352
  },
21920
23353
  {
21921
- "kind": "Property",
21922
- "canonicalReference": "@vonage/vivid!VwcPaginationElement#size:member",
23354
+ "kind": "Method",
23355
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#placementChanged:member(1)",
21923
23356
  "docComment": "",
21924
23357
  "excerptTokens": [
21925
23358
  {
21926
23359
  "kind": "Content",
21927
- "text": "size?: "
23360
+ "text": "placementChanged(): "
21928
23361
  },
21929
23362
  {
21930
- "kind": "Reference",
21931
- "text": "PaginationSize",
21932
- "canonicalReference": "@vonage/vivid!PaginationSize:type"
23363
+ "kind": "Content",
23364
+ "text": "void"
21933
23365
  },
21934
23366
  {
21935
23367
  "kind": "Content",
21936
23368
  "text": ";"
21937
23369
  }
21938
23370
  ],
21939
- "isReadonly": false,
21940
- "isOptional": true,
21941
- "releaseTag": "Public",
21942
- "name": "size",
21943
- "propertyTypeTokenRange": {
23371
+ "isStatic": false,
23372
+ "returnTypeTokenRange": {
21944
23373
  "startIndex": 1,
21945
23374
  "endIndex": 2
21946
23375
  },
21947
- "isStatic": false,
23376
+ "releaseTag": "Public",
21948
23377
  "isProtected": false,
21949
- "isAbstract": false
23378
+ "overloadIndex": 1,
23379
+ "parameters": [],
23380
+ "isOptional": false,
23381
+ "isAbstract": false,
23382
+ "name": "placementChanged"
21950
23383
  },
21951
23384
  {
21952
- "kind": "Property",
21953
- "canonicalReference": "@vonage/vivid!VwcPaginationElement#total:member",
23385
+ "kind": "Method",
23386
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#show:member(1)",
21954
23387
  "docComment": "",
21955
23388
  "excerptTokens": [
21956
23389
  {
21957
23390
  "kind": "Content",
21958
- "text": "total: "
23391
+ "text": "show(): "
23392
+ },
23393
+ {
23394
+ "kind": "Reference",
23395
+ "text": "Promise",
23396
+ "canonicalReference": "!Promise:interface"
21959
23397
  },
21960
23398
  {
21961
23399
  "kind": "Content",
21962
- "text": "number"
23400
+ "text": "<void>"
21963
23401
  },
21964
23402
  {
21965
23403
  "kind": "Content",
21966
23404
  "text": ";"
21967
23405
  }
21968
23406
  ],
21969
- "isReadonly": false,
21970
- "isOptional": false,
21971
- "releaseTag": "Public",
21972
- "name": "total",
21973
- "propertyTypeTokenRange": {
23407
+ "isStatic": false,
23408
+ "returnTypeTokenRange": {
21974
23409
  "startIndex": 1,
21975
- "endIndex": 2
23410
+ "endIndex": 3
21976
23411
  },
21977
- "isStatic": false,
23412
+ "releaseTag": "Public",
21978
23413
  "isProtected": false,
21979
- "isAbstract": false
23414
+ "overloadIndex": 1,
23415
+ "parameters": [],
23416
+ "isOptional": false,
23417
+ "isAbstract": false,
23418
+ "name": "show"
21980
23419
  },
21981
23420
  {
21982
23421
  "kind": "Method",
21983
- "canonicalReference": "@vonage/vivid!VwcPaginationElement#totalChanged:member(1)",
23422
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#toggle:member(1)",
21984
23423
  "docComment": "",
21985
23424
  "excerptTokens": [
21986
23425
  {
21987
23426
  "kind": "Content",
21988
- "text": "totalChanged(_: "
23427
+ "text": "toggle(): "
21989
23428
  },
21990
23429
  {
21991
23430
  "kind": "Content",
21992
- "text": "number"
23431
+ "text": "void"
21993
23432
  },
21994
23433
  {
21995
23434
  "kind": "Content",
21996
- "text": ", newValue: "
21997
- },
23435
+ "text": ";"
23436
+ }
23437
+ ],
23438
+ "isStatic": false,
23439
+ "returnTypeTokenRange": {
23440
+ "startIndex": 1,
23441
+ "endIndex": 2
23442
+ },
23443
+ "releaseTag": "Public",
23444
+ "isProtected": false,
23445
+ "overloadIndex": 1,
23446
+ "parameters": [],
23447
+ "isOptional": false,
23448
+ "isAbstract": false,
23449
+ "name": "toggle"
23450
+ },
23451
+ {
23452
+ "kind": "Method",
23453
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#updatePosition:member(1)",
23454
+ "docComment": "",
23455
+ "excerptTokens": [
21998
23456
  {
21999
23457
  "kind": "Content",
22000
- "text": "number"
23458
+ "text": "updatePosition(): "
22001
23459
  },
22002
23460
  {
22003
- "kind": "Content",
22004
- "text": "): "
23461
+ "kind": "Reference",
23462
+ "text": "Promise",
23463
+ "canonicalReference": "!Promise:interface"
22005
23464
  },
22006
23465
  {
22007
23466
  "kind": "Content",
22008
- "text": "void"
23467
+ "text": "<void>"
22009
23468
  },
22010
23469
  {
22011
23470
  "kind": "Content",
@@ -22014,33 +23473,16 @@
22014
23473
  ],
22015
23474
  "isStatic": false,
22016
23475
  "returnTypeTokenRange": {
22017
- "startIndex": 5,
22018
- "endIndex": 6
23476
+ "startIndex": 1,
23477
+ "endIndex": 3
22019
23478
  },
22020
23479
  "releaseTag": "Public",
22021
23480
  "isProtected": false,
22022
23481
  "overloadIndex": 1,
22023
- "parameters": [
22024
- {
22025
- "parameterName": "_",
22026
- "parameterTypeTokenRange": {
22027
- "startIndex": 1,
22028
- "endIndex": 2
22029
- },
22030
- "isOptional": false
22031
- },
22032
- {
22033
- "parameterName": "newValue",
22034
- "parameterTypeTokenRange": {
22035
- "startIndex": 3,
22036
- "endIndex": 4
22037
- },
22038
- "isOptional": false
22039
- }
22040
- ],
23482
+ "parameters": [],
22041
23483
  "isOptional": false,
22042
23484
  "isAbstract": false,
22043
- "name": "totalChanged"
23485
+ "name": "updatePosition"
22044
23486
  }
22045
23487
  ],
22046
23488
  "extendsTokenRange": {
@@ -23536,6 +24978,69 @@
23536
24978
  },
23537
24979
  "implementsTokenRanges": []
23538
24980
  },
24981
+ {
24982
+ "kind": "Class",
24983
+ "canonicalReference": "@vonage/vivid!VwcRichTextViewElement:class",
24984
+ "docComment": "",
24985
+ "excerptTokens": [
24986
+ {
24987
+ "kind": "Content",
24988
+ "text": "export declare class RichTextView extends "
24989
+ },
24990
+ {
24991
+ "kind": "Reference",
24992
+ "text": "VividElement",
24993
+ "canonicalReference": "@vonage/vivid!~VividElement:class"
24994
+ },
24995
+ {
24996
+ "kind": "Content",
24997
+ "text": " "
24998
+ }
24999
+ ],
25000
+ "fileUrlPath": "dist/lib/rich-text-view/rich-text-view.d.ts",
25001
+ "releaseTag": "Public",
25002
+ "isAbstract": false,
25003
+ "name": "VwcRichTextViewElement",
25004
+ "preserveMemberOrder": false,
25005
+ "members": [
25006
+ {
25007
+ "kind": "Property",
25008
+ "canonicalReference": "@vonage/vivid!VwcRichTextViewElement#view:member",
25009
+ "docComment": "",
25010
+ "excerptTokens": [
25011
+ {
25012
+ "kind": "Content",
25013
+ "text": "view?: "
25014
+ },
25015
+ {
25016
+ "kind": "Reference",
25017
+ "text": "RteView",
25018
+ "canonicalReference": "@vonage/vivid!RteView:type"
25019
+ },
25020
+ {
25021
+ "kind": "Content",
25022
+ "text": ";"
25023
+ }
25024
+ ],
25025
+ "isReadonly": false,
25026
+ "isOptional": true,
25027
+ "releaseTag": "Public",
25028
+ "name": "view",
25029
+ "propertyTypeTokenRange": {
25030
+ "startIndex": 1,
25031
+ "endIndex": 2
25032
+ },
25033
+ "isStatic": false,
25034
+ "isProtected": false,
25035
+ "isAbstract": false
25036
+ }
25037
+ ],
25038
+ "extendsTokenRange": {
25039
+ "startIndex": 1,
25040
+ "endIndex": 2
25041
+ },
25042
+ "implementsTokenRanges": []
25043
+ },
23539
25044
  {
23540
25045
  "kind": "Class",
23541
25046
  "canonicalReference": "@vonage/vivid!VwcSearchableSelectElement:class",
@@ -24483,9 +25988,40 @@
24483
25988
  }
24484
25989
  ],
24485
25990
  "isReadonly": false,
24486
- "isOptional": false,
25991
+ "isOptional": false,
25992
+ "releaseTag": "Public",
25993
+ "name": "controlPlacement",
25994
+ "propertyTypeTokenRange": {
25995
+ "startIndex": 1,
25996
+ "endIndex": 2
25997
+ },
25998
+ "isStatic": false,
25999
+ "isProtected": false,
26000
+ "isAbstract": false
26001
+ },
26002
+ {
26003
+ "kind": "Property",
26004
+ "canonicalReference": "@vonage/vivid!VwcSelectableBoxElement#controlType:member",
26005
+ "docComment": "",
26006
+ "excerptTokens": [
26007
+ {
26008
+ "kind": "Content",
26009
+ "text": "controlType?: "
26010
+ },
26011
+ {
26012
+ "kind": "Reference",
26013
+ "text": "SelectableBoxControlType",
26014
+ "canonicalReference": "@vonage/vivid!~SelectableBoxControlType:type"
26015
+ },
26016
+ {
26017
+ "kind": "Content",
26018
+ "text": ";"
26019
+ }
26020
+ ],
26021
+ "isReadonly": false,
26022
+ "isOptional": true,
24487
26023
  "releaseTag": "Public",
24488
- "name": "controlPlacement",
26024
+ "name": "controlType",
24489
26025
  "propertyTypeTokenRange": {
24490
26026
  "startIndex": 1,
24491
26027
  "endIndex": 2
@@ -24496,17 +26032,16 @@
24496
26032
  },
24497
26033
  {
24498
26034
  "kind": "Property",
24499
- "canonicalReference": "@vonage/vivid!VwcSelectableBoxElement#controlType:member",
26035
+ "canonicalReference": "@vonage/vivid!VwcSelectableBoxElement#disabled:member",
24500
26036
  "docComment": "",
24501
26037
  "excerptTokens": [
24502
26038
  {
24503
26039
  "kind": "Content",
24504
- "text": "controlType?: "
26040
+ "text": "disabled: "
24505
26041
  },
24506
26042
  {
24507
- "kind": "Reference",
24508
- "text": "SelectableBoxControlType",
24509
- "canonicalReference": "@vonage/vivid!~SelectableBoxControlType:type"
26043
+ "kind": "Content",
26044
+ "text": "boolean"
24510
26045
  },
24511
26046
  {
24512
26047
  "kind": "Content",
@@ -24514,9 +26049,9 @@
24514
26049
  }
24515
26050
  ],
24516
26051
  "isReadonly": false,
24517
- "isOptional": true,
26052
+ "isOptional": false,
24518
26053
  "releaseTag": "Public",
24519
- "name": "controlType",
26054
+ "name": "disabled",
24520
26055
  "propertyTypeTokenRange": {
24521
26056
  "startIndex": 1,
24522
26057
  "endIndex": 2
@@ -26451,6 +27986,99 @@
26451
27986
  },
26452
27987
  "implementsTokenRanges": []
26453
27988
  },
27989
+ {
27990
+ "kind": "Class",
27991
+ "canonicalReference": "@vonage/vivid!VwcStatusElement:class",
27992
+ "docComment": "",
27993
+ "excerptTokens": [
27994
+ {
27995
+ "kind": "Content",
27996
+ "text": "export declare class Status extends "
27997
+ },
27998
+ {
27999
+ "kind": "Reference",
28000
+ "text": "Status_base",
28001
+ "canonicalReference": "@vonage/vivid!~Status_base"
28002
+ },
28003
+ {
28004
+ "kind": "Content",
28005
+ "text": " "
28006
+ }
28007
+ ],
28008
+ "fileUrlPath": "dist/lib/status/status.d.ts",
28009
+ "releaseTag": "Public",
28010
+ "isAbstract": false,
28011
+ "name": "VwcStatusElement",
28012
+ "preserveMemberOrder": false,
28013
+ "members": [
28014
+ {
28015
+ "kind": "Property",
28016
+ "canonicalReference": "@vonage/vivid!VwcStatusElement#connotation:member",
28017
+ "docComment": "",
28018
+ "excerptTokens": [
28019
+ {
28020
+ "kind": "Content",
28021
+ "text": "connotation?: "
28022
+ },
28023
+ {
28024
+ "kind": "Reference",
28025
+ "text": "StatusConnotation",
28026
+ "canonicalReference": "@vonage/vivid!StatusConnotation:type"
28027
+ },
28028
+ {
28029
+ "kind": "Content",
28030
+ "text": ";"
28031
+ }
28032
+ ],
28033
+ "isReadonly": false,
28034
+ "isOptional": true,
28035
+ "releaseTag": "Public",
28036
+ "name": "connotation",
28037
+ "propertyTypeTokenRange": {
28038
+ "startIndex": 1,
28039
+ "endIndex": 2
28040
+ },
28041
+ "isStatic": false,
28042
+ "isProtected": false,
28043
+ "isAbstract": false
28044
+ },
28045
+ {
28046
+ "kind": "Property",
28047
+ "canonicalReference": "@vonage/vivid!VwcStatusElement#status:member",
28048
+ "docComment": "",
28049
+ "excerptTokens": [
28050
+ {
28051
+ "kind": "Content",
28052
+ "text": "status?: "
28053
+ },
28054
+ {
28055
+ "kind": "Content",
28056
+ "text": "string"
28057
+ },
28058
+ {
28059
+ "kind": "Content",
28060
+ "text": ";"
28061
+ }
28062
+ ],
28063
+ "isReadonly": false,
28064
+ "isOptional": true,
28065
+ "releaseTag": "Public",
28066
+ "name": "status",
28067
+ "propertyTypeTokenRange": {
28068
+ "startIndex": 1,
28069
+ "endIndex": 2
28070
+ },
28071
+ "isStatic": false,
28072
+ "isProtected": false,
28073
+ "isAbstract": false
28074
+ }
28075
+ ],
28076
+ "extendsTokenRange": {
28077
+ "startIndex": 1,
28078
+ "endIndex": 2
28079
+ },
28080
+ "implementsTokenRanges": []
28081
+ },
26454
28082
  {
26455
28083
  "kind": "Class",
26456
28084
  "canonicalReference": "@vonage/vivid!VwcSwitchElement:class",
@@ -26901,6 +28529,192 @@
26901
28529
  },
26902
28530
  "implementsTokenRanges": []
26903
28531
  },
28532
+ {
28533
+ "kind": "Class",
28534
+ "canonicalReference": "@vonage/vivid!VwcTableBodyElement:class",
28535
+ "docComment": "",
28536
+ "excerptTokens": [
28537
+ {
28538
+ "kind": "Content",
28539
+ "text": "export declare class TableBody extends "
28540
+ },
28541
+ {
28542
+ "kind": "Reference",
28543
+ "text": "VividElement",
28544
+ "canonicalReference": "@vonage/vivid!~VividElement:class"
28545
+ },
28546
+ {
28547
+ "kind": "Content",
28548
+ "text": " "
28549
+ }
28550
+ ],
28551
+ "fileUrlPath": "dist/lib/table/table-body.d.ts",
28552
+ "releaseTag": "Public",
28553
+ "isAbstract": false,
28554
+ "name": "VwcTableBodyElement",
28555
+ "preserveMemberOrder": false,
28556
+ "members": [],
28557
+ "extendsTokenRange": {
28558
+ "startIndex": 1,
28559
+ "endIndex": 2
28560
+ },
28561
+ "implementsTokenRanges": []
28562
+ },
28563
+ {
28564
+ "kind": "Class",
28565
+ "canonicalReference": "@vonage/vivid!VwcTableCellElement:class",
28566
+ "docComment": "",
28567
+ "excerptTokens": [
28568
+ {
28569
+ "kind": "Content",
28570
+ "text": "export declare class TableCell extends "
28571
+ },
28572
+ {
28573
+ "kind": "Reference",
28574
+ "text": "TableCell_base",
28575
+ "canonicalReference": "@vonage/vivid!~TableCell_base"
28576
+ },
28577
+ {
28578
+ "kind": "Content",
28579
+ "text": " "
28580
+ }
28581
+ ],
28582
+ "fileUrlPath": "dist/lib/table/table-cell.d.ts",
28583
+ "releaseTag": "Public",
28584
+ "isAbstract": false,
28585
+ "name": "VwcTableCellElement",
28586
+ "preserveMemberOrder": false,
28587
+ "members": [],
28588
+ "extendsTokenRange": {
28589
+ "startIndex": 1,
28590
+ "endIndex": 2
28591
+ },
28592
+ "implementsTokenRanges": []
28593
+ },
28594
+ {
28595
+ "kind": "Class",
28596
+ "canonicalReference": "@vonage/vivid!VwcTableElement:class",
28597
+ "docComment": "",
28598
+ "excerptTokens": [
28599
+ {
28600
+ "kind": "Content",
28601
+ "text": "export declare class Table extends "
28602
+ },
28603
+ {
28604
+ "kind": "Reference",
28605
+ "text": "VividElement",
28606
+ "canonicalReference": "@vonage/vivid!~VividElement:class"
28607
+ },
28608
+ {
28609
+ "kind": "Content",
28610
+ "text": " "
28611
+ }
28612
+ ],
28613
+ "fileUrlPath": "dist/lib/table/table.d.ts",
28614
+ "releaseTag": "Public",
28615
+ "isAbstract": false,
28616
+ "name": "VwcTableElement",
28617
+ "preserveMemberOrder": false,
28618
+ "members": [],
28619
+ "extendsTokenRange": {
28620
+ "startIndex": 1,
28621
+ "endIndex": 2
28622
+ },
28623
+ "implementsTokenRanges": []
28624
+ },
28625
+ {
28626
+ "kind": "Class",
28627
+ "canonicalReference": "@vonage/vivid!VwcTableHeadElement:class",
28628
+ "docComment": "",
28629
+ "excerptTokens": [
28630
+ {
28631
+ "kind": "Content",
28632
+ "text": "export declare class TableHead extends "
28633
+ },
28634
+ {
28635
+ "kind": "Reference",
28636
+ "text": "VividElement",
28637
+ "canonicalReference": "@vonage/vivid!~VividElement:class"
28638
+ },
28639
+ {
28640
+ "kind": "Content",
28641
+ "text": " "
28642
+ }
28643
+ ],
28644
+ "fileUrlPath": "dist/lib/table/table-head.d.ts",
28645
+ "releaseTag": "Public",
28646
+ "isAbstract": false,
28647
+ "name": "VwcTableHeadElement",
28648
+ "preserveMemberOrder": false,
28649
+ "members": [],
28650
+ "extendsTokenRange": {
28651
+ "startIndex": 1,
28652
+ "endIndex": 2
28653
+ },
28654
+ "implementsTokenRanges": []
28655
+ },
28656
+ {
28657
+ "kind": "Class",
28658
+ "canonicalReference": "@vonage/vivid!VwcTableHeaderCellElement:class",
28659
+ "docComment": "",
28660
+ "excerptTokens": [
28661
+ {
28662
+ "kind": "Content",
28663
+ "text": "export declare class TableHeaderCell extends "
28664
+ },
28665
+ {
28666
+ "kind": "Reference",
28667
+ "text": "TableHeaderCell_base",
28668
+ "canonicalReference": "@vonage/vivid!~TableHeaderCell_base"
28669
+ },
28670
+ {
28671
+ "kind": "Content",
28672
+ "text": " "
28673
+ }
28674
+ ],
28675
+ "fileUrlPath": "dist/lib/table/table-header-cell.d.ts",
28676
+ "releaseTag": "Public",
28677
+ "isAbstract": false,
28678
+ "name": "VwcTableHeaderCellElement",
28679
+ "preserveMemberOrder": false,
28680
+ "members": [],
28681
+ "extendsTokenRange": {
28682
+ "startIndex": 1,
28683
+ "endIndex": 2
28684
+ },
28685
+ "implementsTokenRanges": []
28686
+ },
28687
+ {
28688
+ "kind": "Class",
28689
+ "canonicalReference": "@vonage/vivid!VwcTableRowElement:class",
28690
+ "docComment": "",
28691
+ "excerptTokens": [
28692
+ {
28693
+ "kind": "Content",
28694
+ "text": "export declare class TableRow extends "
28695
+ },
28696
+ {
28697
+ "kind": "Reference",
28698
+ "text": "TableRow_base",
28699
+ "canonicalReference": "@vonage/vivid!~TableRow_base"
28700
+ },
28701
+ {
28702
+ "kind": "Content",
28703
+ "text": " "
28704
+ }
28705
+ ],
28706
+ "fileUrlPath": "dist/lib/table/table-row.d.ts",
28707
+ "releaseTag": "Public",
28708
+ "isAbstract": false,
28709
+ "name": "VwcTableRowElement",
28710
+ "preserveMemberOrder": false,
28711
+ "members": [],
28712
+ "extendsTokenRange": {
28713
+ "startIndex": 1,
28714
+ "endIndex": 2
28715
+ },
28716
+ "implementsTokenRanges": []
28717
+ },
26904
28718
  {
26905
28719
  "kind": "Class",
26906
28720
  "canonicalReference": "@vonage/vivid!VwcTabPanelElement:class",