@vonage/vivid 5.8.0 → 5.9.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 (102) hide show
  1. package/bundled/data-grid.options.cjs +1 -0
  2. package/bundled/data-grid.options.js +29 -0
  3. package/bundled/definition2.cjs +1 -1
  4. package/bundled/definition2.js +1 -1
  5. package/bundled/definition3.cjs +1 -1
  6. package/bundled/definition3.js +1 -1
  7. package/bundled/definition9.cjs +9 -9
  8. package/bundled/definition9.js +113 -1342
  9. package/bundled/feature.cjs +4 -0
  10. package/bundled/feature.js +2886 -0
  11. package/bundled/floating-ui.dom.cjs +1 -0
  12. package/bundled/floating-ui.dom.js +1242 -0
  13. package/bundled/localized.cjs +1 -1
  14. package/bundled/localized.js +8 -5
  15. package/bundled/vivid-element.cjs +3 -3
  16. package/bundled/vivid-element.js +89 -69
  17. package/combobox/definition.cjs +14 -15
  18. package/combobox/definition.js +15 -16
  19. package/combobox/index.cjs +4 -4
  20. package/combobox/index.js +82 -87
  21. package/custom-elements.json +4890 -3492
  22. package/data-grid/definition.cjs +23 -49
  23. package/data-grid/definition.js +1 -27
  24. package/data-grid/index.cjs +27 -27
  25. package/data-grid/index.js +44 -64
  26. package/data-table/definition.cjs +204 -0
  27. package/data-table/definition.js +188 -0
  28. package/data-table/index.cjs +37 -0
  29. package/data-table/index.js +143 -0
  30. package/file-picker/definition.cjs +10 -8
  31. package/file-picker/definition.js +10 -8
  32. package/file-picker/index.cjs +5 -5
  33. package/file-picker/index.js +12 -12
  34. package/icon/definition.cjs +1 -1
  35. package/icon/definition.js +1 -1
  36. package/index.cjs +26 -4
  37. package/index.js +4 -1
  38. package/lib/components.d.ts +4 -1
  39. package/lib/data-table/definition.d.ts +8 -0
  40. package/lib/data-table/table-body.d.ts +3 -0
  41. package/lib/data-table/table-body.template.d.ts +3 -0
  42. package/lib/data-table/table-cell.d.ts +381 -0
  43. package/lib/data-table/table-cell.template.d.ts +3 -0
  44. package/lib/data-table/table-head.d.ts +3 -0
  45. package/lib/data-table/table-head.template.d.ts +3 -0
  46. package/lib/data-table/table-header-cell.d.ts +381 -0
  47. package/lib/data-table/table-header-cell.template.d.ts +3 -0
  48. package/lib/data-table/table-row.d.ts +381 -0
  49. package/lib/data-table/table-row.template.d.ts +3 -0
  50. package/lib/data-table/table.d.ts +3 -0
  51. package/lib/data-table/table.template.d.ts +3 -0
  52. package/lib/popover/definition.d.ts +4 -0
  53. package/lib/popover/locale.d.ts +3 -0
  54. package/lib/popover/popover.d.ts +781 -0
  55. package/lib/popover/popover.template.d.ts +3 -0
  56. package/lib/rich-text-editor/rte/config.d.ts +3 -0
  57. package/lib/rich-text-editor/rte/document.d.ts +2 -0
  58. package/lib/rich-text-editor/rte/exports.d.ts +1 -0
  59. package/lib/rich-text-editor/rte/view.d.ts +30 -0
  60. package/lib/rich-text-view/definition.d.ts +4 -0
  61. package/lib/rich-text-view/rich-text-view.d.ts +15 -0
  62. package/lib/rich-text-view/rich-text-view.template.d.ts +3 -0
  63. package/lib/tag-name-map.d.ts +9 -1
  64. package/locales/de-DE.cjs +3 -0
  65. package/locales/de-DE.js +3 -0
  66. package/locales/en-GB.cjs +3 -0
  67. package/locales/en-GB.js +3 -0
  68. package/locales/en-US.cjs +3 -0
  69. package/locales/en-US.js +3 -0
  70. package/locales/ja-JP.cjs +3 -0
  71. package/locales/ja-JP.js +3 -0
  72. package/locales/zh-CN.cjs +3 -0
  73. package/locales/zh-CN.js +3 -0
  74. package/package.json +7 -7
  75. package/popover/definition.cjs +363 -0
  76. package/popover/definition.js +357 -0
  77. package/popover/index.cjs +27 -0
  78. package/popover/index.js +263 -0
  79. package/rich-text-editor/definition.cjs +327 -3881
  80. package/rich-text-editor/definition.js +142 -3696
  81. package/rich-text-editor/index.cjs +12 -15
  82. package/rich-text-editor/index.js +3489 -6291
  83. package/rich-text-view/definition.cjs +159 -0
  84. package/rich-text-view/definition.js +153 -0
  85. package/rich-text-view/index.cjs +1 -0
  86. package/rich-text-view/index.js +95 -0
  87. package/shared/localization/Locale.d.ts +2 -0
  88. package/unbundled/_commonjsHelpers.cjs +26 -0
  89. package/unbundled/_commonjsHelpers.js +26 -1
  90. package/unbundled/data-grid.options.cjs +34 -0
  91. package/unbundled/data-grid.options.js +28 -0
  92. package/unbundled/definition.cjs +1 -1
  93. package/unbundled/definition.js +1 -1
  94. package/unbundled/feature.cjs +3678 -0
  95. package/unbundled/feature.js +3662 -0
  96. package/unbundled/vivid-element.cjs +1 -1
  97. package/unbundled/vivid-element.js +1 -1
  98. package/video-player/definition.cjs +11 -1
  99. package/video-player/definition.js +12 -2
  100. package/video-player/index.cjs +30 -30
  101. package/video-player/index.js +705 -702
  102. package/vivid.api.json +1402 -67
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",
@@ -4652,6 +4680,47 @@
4652
4680
  ],
4653
4681
  "name": "registerDataGrid"
4654
4682
  },
4683
+ {
4684
+ "kind": "Function",
4685
+ "canonicalReference": "@vonage/vivid!registerDataTable:function(1)",
4686
+ "docComment": "",
4687
+ "excerptTokens": [
4688
+ {
4689
+ "kind": "Content",
4690
+ "text": "registerDataTable: (prefix?: "
4691
+ },
4692
+ {
4693
+ "kind": "Content",
4694
+ "text": "string"
4695
+ },
4696
+ {
4697
+ "kind": "Content",
4698
+ "text": ") => "
4699
+ },
4700
+ {
4701
+ "kind": "Content",
4702
+ "text": "void"
4703
+ }
4704
+ ],
4705
+ "fileUrlPath": "dist/lib/data-table/definition.d.ts",
4706
+ "returnTypeTokenRange": {
4707
+ "startIndex": 3,
4708
+ "endIndex": 4
4709
+ },
4710
+ "releaseTag": "Public",
4711
+ "overloadIndex": 1,
4712
+ "parameters": [
4713
+ {
4714
+ "parameterName": "prefix",
4715
+ "parameterTypeTokenRange": {
4716
+ "startIndex": 1,
4717
+ "endIndex": 2
4718
+ },
4719
+ "isOptional": true
4720
+ }
4721
+ ],
4722
+ "name": "registerDataTable"
4723
+ },
4655
4724
  {
4656
4725
  "kind": "Function",
4657
4726
  "canonicalReference": "@vonage/vivid!registerDatePicker: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)",
@@ -6648,6 +6799,34 @@
6648
6799
  "endIndex": 3
6649
6800
  }
6650
6801
  },
6802
+ {
6803
+ "kind": "Variable",
6804
+ "canonicalReference": "@vonage/vivid!richTextViewDefinition:var",
6805
+ "docComment": "",
6806
+ "excerptTokens": [
6807
+ {
6808
+ "kind": "Content",
6809
+ "text": "richTextViewDefinition: "
6810
+ },
6811
+ {
6812
+ "kind": "Content",
6813
+ "text": "import(\"../../shared/design-system/defineVividComponent\")."
6814
+ },
6815
+ {
6816
+ "kind": "Reference",
6817
+ "text": "VividComponentDefinition",
6818
+ "canonicalReference": "@vonage/vivid!~VividComponentDefinition:type"
6819
+ }
6820
+ ],
6821
+ "fileUrlPath": "dist/lib/rich-text-view/definition.d.ts",
6822
+ "isReadonly": true,
6823
+ "releaseTag": "Public",
6824
+ "name": "richTextViewDefinition",
6825
+ "variableTypeTokenRange": {
6826
+ "startIndex": 1,
6827
+ "endIndex": 3
6828
+ }
6829
+ },
6651
6830
  {
6652
6831
  "kind": "Enum",
6653
6832
  "canonicalReference": "@vonage/vivid!Role:enum",
@@ -6876,6 +7055,73 @@
6876
7055
  "isOptional": false,
6877
7056
  "isAbstract": false,
6878
7057
  "name": "instantiateEditor"
7058
+ },
7059
+ {
7060
+ "kind": "Method",
7061
+ "canonicalReference": "@vonage/vivid!RteConfig#instantiateView:member(1)",
7062
+ "docComment": "",
7063
+ "excerptTokens": [
7064
+ {
7065
+ "kind": "Content",
7066
+ "text": "instantiateView(document: "
7067
+ },
7068
+ {
7069
+ "kind": "Reference",
7070
+ "text": "RteDocument",
7071
+ "canonicalReference": "@vonage/vivid!RteDocument:type"
7072
+ },
7073
+ {
7074
+ "kind": "Content",
7075
+ "text": ", options?: "
7076
+ },
7077
+ {
7078
+ "kind": "Reference",
7079
+ "text": "RteViewOptions",
7080
+ "canonicalReference": "@vonage/vivid!RteViewOptions:type"
7081
+ },
7082
+ {
7083
+ "kind": "Content",
7084
+ "text": "): "
7085
+ },
7086
+ {
7087
+ "kind": "Reference",
7088
+ "text": "RteView",
7089
+ "canonicalReference": "@vonage/vivid!RteView:type"
7090
+ },
7091
+ {
7092
+ "kind": "Content",
7093
+ "text": ";"
7094
+ }
7095
+ ],
7096
+ "isStatic": false,
7097
+ "returnTypeTokenRange": {
7098
+ "startIndex": 5,
7099
+ "endIndex": 6
7100
+ },
7101
+ "releaseTag": "Public",
7102
+ "isProtected": false,
7103
+ "overloadIndex": 1,
7104
+ "parameters": [
7105
+ {
7106
+ "parameterName": "document",
7107
+ "parameterTypeTokenRange": {
7108
+ "startIndex": 1,
7109
+ "endIndex": 2
7110
+ },
7111
+ "isOptional": false
7112
+ },
7113
+ {
7114
+ "parameterName": "options",
7115
+ "parameterTypeTokenRange": {
7116
+ "startIndex": 3,
7117
+ "endIndex": 4
7118
+ },
7119
+ "isOptional": true
7120
+ }
7121
+ ],
7122
+ "isOptional": false,
7123
+ "isAbstract": false,
7124
+ "name": "instantiateView"
6879
7125
  }
6880
7126
  ],
6881
7127
  "implementsTokenRanges": []
@@ -7733,66 +7979,217 @@
7733
7979
  },
7734
7980
  {
7735
7981
  "kind": "TypeAlias",
7736
- "canonicalReference": "@vonage/vivid!SelectAppearance:type",
7982
+ "canonicalReference": "@vonage/vivid!RteView:type",
7737
7983
  "docComment": "",
7738
7984
  "excerptTokens": [
7739
7985
  {
7740
7986
  "kind": "Content",
7741
- "text": "export type SelectAppearance = "
7987
+ "text": "export type RteView = "
7988
+ },
7989
+ {
7990
+ "kind": "Content",
7991
+ "text": "({\n type: 'node';\n node: "
7742
7992
  },
7743
7993
  {
7744
7994
  "kind": "Reference",
7745
- "text": "ExtractFromEnum",
7746
- "canonicalReference": "@vonage/vivid!~ExtractFromEnum:type"
7995
+ "text": "RteDocument",
7996
+ "canonicalReference": "@vonage/vivid!RteDocument:type"
7747
7997
  },
7748
7998
  {
7749
7999
  "kind": "Content",
7750
- "text": "<"
8000
+ "text": " | "
7751
8001
  },
7752
8002
  {
7753
8003
  "kind": "Reference",
7754
- "text": "Appearance",
7755
- "canonicalReference": "@vonage/vivid!Appearance:enum"
8004
+ "text": "RteNode",
8005
+ "canonicalReference": "@vonage/vivid!RteNode:type"
7756
8006
  },
7757
8007
  {
7758
8008
  "kind": "Content",
7759
- "text": ", "
8009
+ "text": ";\n children: "
7760
8010
  },
7761
8011
  {
7762
8012
  "kind": "Reference",
7763
- "text": "Appearance.Fieldset",
7764
- "canonicalReference": "@vonage/vivid!Appearance.Fieldset:member"
8013
+ "text": "RteView",
8014
+ "canonicalReference": "@vonage/vivid!RteView:type"
7765
8015
  },
7766
8016
  {
7767
8017
  "kind": "Content",
7768
- "text": " | "
8018
+ "text": ";\n} | {\n type: 'mark';\n mark: "
7769
8019
  },
7770
8020
  {
7771
8021
  "kind": "Reference",
7772
- "text": "Appearance.Ghost",
7773
- "canonicalReference": "@vonage/vivid!Appearance.Ghost:member"
8022
+ "text": "RteMark",
8023
+ "canonicalReference": "@vonage/vivid!RteMark:type"
7774
8024
  },
7775
8025
  {
7776
8026
  "kind": "Content",
7777
- "text": ">"
8027
+ "text": ";\n children: "
8028
+ },
8029
+ {
8030
+ "kind": "Reference",
8031
+ "text": "RteView",
8032
+ "canonicalReference": "@vonage/vivid!RteView:type"
7778
8033
  },
7779
8034
  {
7780
8035
  "kind": "Content",
7781
- "text": ";"
7782
- }
7783
- ],
7784
- "fileUrlPath": "dist/lib/select/select.d.ts",
7785
- "releaseTag": "Public",
7786
- "name": "SelectAppearance",
7787
- "typeTokenRange": {
7788
- "startIndex": 1,
7789
- "endIndex": 9
7790
- }
7791
- },
7792
- {
7793
- "kind": "TypeAlias",
7794
- "canonicalReference": "@vonage/vivid!SelectShape:type",
7795
- "docComment": "",
8036
+ "text": ";\n} | {\n type: 'fragment';\n content: "
8037
+ },
8038
+ {
8039
+ "kind": "Reference",
8040
+ "text": "RteView",
8041
+ "canonicalReference": "@vonage/vivid!RteView:type"
8042
+ },
8043
+ {
8044
+ "kind": "Content",
8045
+ "text": "[];\n}) & {\n ["
8046
+ },
8047
+ {
8048
+ "kind": "Reference",
8049
+ "text": "impl",
8050
+ "canonicalReference": "@vonage/vivid!~impl:var"
8051
+ },
8052
+ {
8053
+ "kind": "Content",
8054
+ "text": "]: "
8055
+ },
8056
+ {
8057
+ "kind": "Reference",
8058
+ "text": "RteViewCtx",
8059
+ "canonicalReference": "@vonage/vivid!~RteViewCtx:type"
8060
+ },
8061
+ {
8062
+ "kind": "Content",
8063
+ "text": ";\n}"
8064
+ },
8065
+ {
8066
+ "kind": "Content",
8067
+ "text": ";"
8068
+ }
8069
+ ],
8070
+ "fileUrlPath": "dist/lib/rich-text-editor/rte/view.d.ts",
8071
+ "releaseTag": "Public",
8072
+ "name": "RteView",
8073
+ "typeTokenRange": {
8074
+ "startIndex": 1,
8075
+ "endIndex": 18
8076
+ }
8077
+ },
8078
+ {
8079
+ "kind": "TypeAlias",
8080
+ "canonicalReference": "@vonage/vivid!RteViewOptions:type",
8081
+ "docComment": "",
8082
+ "excerptTokens": [
8083
+ {
8084
+ "kind": "Content",
8085
+ "text": "export type RteViewOptions = "
8086
+ },
8087
+ {
8088
+ "kind": "Content",
8089
+ "text": "{\n renderChildView?: (view: "
8090
+ },
8091
+ {
8092
+ "kind": "Reference",
8093
+ "text": "RteView",
8094
+ "canonicalReference": "@vonage/vivid!RteView:type"
8095
+ },
8096
+ {
8097
+ "kind": "Content",
8098
+ "text": " & {\n type: 'node' | 'mark';\n }) => {\n dom: "
8099
+ },
8100
+ {
8101
+ "kind": "Reference",
8102
+ "text": "HTMLElement",
8103
+ "canonicalReference": "!HTMLElement:interface"
8104
+ },
8105
+ {
8106
+ "kind": "Content",
8107
+ "text": ";\n contentDom?: "
8108
+ },
8109
+ {
8110
+ "kind": "Reference",
8111
+ "text": "HTMLElement",
8112
+ "canonicalReference": "!HTMLElement:interface"
8113
+ },
8114
+ {
8115
+ "kind": "Content",
8116
+ "text": ";\n } | false;\n}"
8117
+ },
8118
+ {
8119
+ "kind": "Content",
8120
+ "text": ";"
8121
+ }
8122
+ ],
8123
+ "fileUrlPath": "dist/lib/rich-text-editor/rte/view.d.ts",
8124
+ "releaseTag": "Public",
8125
+ "name": "RteViewOptions",
8126
+ "typeTokenRange": {
8127
+ "startIndex": 1,
8128
+ "endIndex": 8
8129
+ }
8130
+ },
8131
+ {
8132
+ "kind": "TypeAlias",
8133
+ "canonicalReference": "@vonage/vivid!SelectAppearance:type",
8134
+ "docComment": "",
8135
+ "excerptTokens": [
8136
+ {
8137
+ "kind": "Content",
8138
+ "text": "export type SelectAppearance = "
8139
+ },
8140
+ {
8141
+ "kind": "Reference",
8142
+ "text": "ExtractFromEnum",
8143
+ "canonicalReference": "@vonage/vivid!~ExtractFromEnum:type"
8144
+ },
8145
+ {
8146
+ "kind": "Content",
8147
+ "text": "<"
8148
+ },
8149
+ {
8150
+ "kind": "Reference",
8151
+ "text": "Appearance",
8152
+ "canonicalReference": "@vonage/vivid!Appearance:enum"
8153
+ },
8154
+ {
8155
+ "kind": "Content",
8156
+ "text": ", "
8157
+ },
8158
+ {
8159
+ "kind": "Reference",
8160
+ "text": "Appearance.Fieldset",
8161
+ "canonicalReference": "@vonage/vivid!Appearance.Fieldset:member"
8162
+ },
8163
+ {
8164
+ "kind": "Content",
8165
+ "text": " | "
8166
+ },
8167
+ {
8168
+ "kind": "Reference",
8169
+ "text": "Appearance.Ghost",
8170
+ "canonicalReference": "@vonage/vivid!Appearance.Ghost:member"
8171
+ },
8172
+ {
8173
+ "kind": "Content",
8174
+ "text": ">"
8175
+ },
8176
+ {
8177
+ "kind": "Content",
8178
+ "text": ";"
8179
+ }
8180
+ ],
8181
+ "fileUrlPath": "dist/lib/select/select.d.ts",
8182
+ "releaseTag": "Public",
8183
+ "name": "SelectAppearance",
8184
+ "typeTokenRange": {
8185
+ "startIndex": 1,
8186
+ "endIndex": 9
8187
+ }
8188
+ },
8189
+ {
8190
+ "kind": "TypeAlias",
8191
+ "canonicalReference": "@vonage/vivid!SelectShape:type",
8192
+ "docComment": "",
7796
8193
  "excerptTokens": [
7797
8194
  {
7798
8195
  "kind": "Content",
@@ -21980,32 +22377,738 @@
21980
22377
  },
21981
22378
  {
21982
22379
  "kind": "Method",
21983
- "canonicalReference": "@vonage/vivid!VwcPaginationElement#totalChanged:member(1)",
22380
+ "canonicalReference": "@vonage/vivid!VwcPaginationElement#totalChanged:member(1)",
22381
+ "docComment": "",
22382
+ "excerptTokens": [
22383
+ {
22384
+ "kind": "Content",
22385
+ "text": "totalChanged(_: "
22386
+ },
22387
+ {
22388
+ "kind": "Content",
22389
+ "text": "number"
22390
+ },
22391
+ {
22392
+ "kind": "Content",
22393
+ "text": ", newValue: "
22394
+ },
22395
+ {
22396
+ "kind": "Content",
22397
+ "text": "number"
22398
+ },
22399
+ {
22400
+ "kind": "Content",
22401
+ "text": "): "
22402
+ },
22403
+ {
22404
+ "kind": "Content",
22405
+ "text": "void"
22406
+ },
22407
+ {
22408
+ "kind": "Content",
22409
+ "text": ";"
22410
+ }
22411
+ ],
22412
+ "isStatic": false,
22413
+ "returnTypeTokenRange": {
22414
+ "startIndex": 5,
22415
+ "endIndex": 6
22416
+ },
22417
+ "releaseTag": "Public",
22418
+ "isProtected": false,
22419
+ "overloadIndex": 1,
22420
+ "parameters": [
22421
+ {
22422
+ "parameterName": "_",
22423
+ "parameterTypeTokenRange": {
22424
+ "startIndex": 1,
22425
+ "endIndex": 2
22426
+ },
22427
+ "isOptional": false
22428
+ },
22429
+ {
22430
+ "parameterName": "newValue",
22431
+ "parameterTypeTokenRange": {
22432
+ "startIndex": 3,
22433
+ "endIndex": 4
22434
+ },
22435
+ "isOptional": false
22436
+ }
22437
+ ],
22438
+ "isOptional": false,
22439
+ "isAbstract": false,
22440
+ "name": "totalChanged"
22441
+ }
22442
+ ],
22443
+ "extendsTokenRange": {
22444
+ "startIndex": 1,
22445
+ "endIndex": 2
22446
+ },
22447
+ "implementsTokenRanges": []
22448
+ },
22449
+ {
22450
+ "kind": "Class",
22451
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement:class",
22452
+ "docComment": "",
22453
+ "excerptTokens": [
22454
+ {
22455
+ "kind": "Content",
22456
+ "text": "export declare class Popover extends "
22457
+ },
22458
+ {
22459
+ "kind": "Reference",
22460
+ "text": "Popover_base",
22461
+ "canonicalReference": "@vonage/vivid!~Popover_base"
22462
+ },
22463
+ {
22464
+ "kind": "Content",
22465
+ "text": " "
22466
+ }
22467
+ ],
22468
+ "fileUrlPath": "dist/lib/popover/popover.d.ts",
22469
+ "releaseTag": "Public",
22470
+ "isAbstract": false,
22471
+ "name": "VwcPopoverElement",
22472
+ "preserveMemberOrder": false,
22473
+ "members": [
22474
+ {
22475
+ "kind": "Method",
22476
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#_slottedAnchorChanged:member(1)",
22477
+ "docComment": "",
22478
+ "excerptTokens": [
22479
+ {
22480
+ "kind": "Content",
22481
+ "text": "_slottedAnchorChanged(): "
22482
+ },
22483
+ {
22484
+ "kind": "Content",
22485
+ "text": "void"
22486
+ },
22487
+ {
22488
+ "kind": "Content",
22489
+ "text": ";"
22490
+ }
22491
+ ],
22492
+ "isStatic": false,
22493
+ "returnTypeTokenRange": {
22494
+ "startIndex": 1,
22495
+ "endIndex": 2
22496
+ },
22497
+ "releaseTag": "Public",
22498
+ "isProtected": false,
22499
+ "overloadIndex": 1,
22500
+ "parameters": [],
22501
+ "isOptional": false,
22502
+ "isAbstract": false,
22503
+ "name": "_slottedAnchorChanged"
22504
+ },
22505
+ {
22506
+ "kind": "Property",
22507
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#alternate:member",
22508
+ "docComment": "",
22509
+ "excerptTokens": [
22510
+ {
22511
+ "kind": "Content",
22512
+ "text": "alternate: "
22513
+ },
22514
+ {
22515
+ "kind": "Content",
22516
+ "text": "boolean"
22517
+ },
22518
+ {
22519
+ "kind": "Content",
22520
+ "text": ";"
22521
+ }
22522
+ ],
22523
+ "isReadonly": false,
22524
+ "isOptional": false,
22525
+ "releaseTag": "Public",
22526
+ "name": "alternate",
22527
+ "propertyTypeTokenRange": {
22528
+ "startIndex": 1,
22529
+ "endIndex": 2
22530
+ },
22531
+ "isStatic": false,
22532
+ "isProtected": false,
22533
+ "isAbstract": false
22534
+ },
22535
+ {
22536
+ "kind": "Property",
22537
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#anchor:member",
22538
+ "docComment": "",
22539
+ "excerptTokens": [
22540
+ {
22541
+ "kind": "Content",
22542
+ "text": "anchor?: "
22543
+ },
22544
+ {
22545
+ "kind": "Reference",
22546
+ "text": "HTMLElement",
22547
+ "canonicalReference": "!HTMLElement:interface"
22548
+ },
22549
+ {
22550
+ "kind": "Content",
22551
+ "text": ";"
22552
+ }
22553
+ ],
22554
+ "isReadonly": false,
22555
+ "isOptional": true,
22556
+ "releaseTag": "Public",
22557
+ "name": "anchor",
22558
+ "propertyTypeTokenRange": {
22559
+ "startIndex": 1,
22560
+ "endIndex": 2
22561
+ },
22562
+ "isStatic": false,
22563
+ "isProtected": false,
22564
+ "isAbstract": false
22565
+ },
22566
+ {
22567
+ "kind": "Method",
22568
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#anchorChanged:member(1)",
22569
+ "docComment": "",
22570
+ "excerptTokens": [
22571
+ {
22572
+ "kind": "Content",
22573
+ "text": "anchorChanged(): "
22574
+ },
22575
+ {
22576
+ "kind": "Content",
22577
+ "text": "void"
22578
+ },
22579
+ {
22580
+ "kind": "Content",
22581
+ "text": ";"
22582
+ }
22583
+ ],
22584
+ "isStatic": false,
22585
+ "returnTypeTokenRange": {
22586
+ "startIndex": 1,
22587
+ "endIndex": 2
22588
+ },
22589
+ "releaseTag": "Public",
22590
+ "isProtected": false,
22591
+ "overloadIndex": 1,
22592
+ "parameters": [],
22593
+ "isOptional": false,
22594
+ "isAbstract": false,
22595
+ "name": "anchorChanged"
22596
+ },
22597
+ {
22598
+ "kind": "Property",
22599
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#arrow:member",
22600
+ "docComment": "",
22601
+ "excerptTokens": [
22602
+ {
22603
+ "kind": "Content",
22604
+ "text": "arrow: "
22605
+ },
22606
+ {
22607
+ "kind": "Content",
22608
+ "text": "boolean"
22609
+ },
22610
+ {
22611
+ "kind": "Content",
22612
+ "text": ";"
22613
+ }
22614
+ ],
22615
+ "isReadonly": false,
22616
+ "isOptional": false,
22617
+ "releaseTag": "Public",
22618
+ "name": "arrow",
22619
+ "propertyTypeTokenRange": {
22620
+ "startIndex": 1,
22621
+ "endIndex": 2
22622
+ },
22623
+ "isStatic": false,
22624
+ "isProtected": false,
22625
+ "isAbstract": false
22626
+ },
22627
+ {
22628
+ "kind": "Method",
22629
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#arrowChanged:member(1)",
22630
+ "docComment": "",
22631
+ "excerptTokens": [
22632
+ {
22633
+ "kind": "Content",
22634
+ "text": "arrowChanged(): "
22635
+ },
22636
+ {
22637
+ "kind": "Content",
22638
+ "text": "void"
22639
+ },
22640
+ {
22641
+ "kind": "Content",
22642
+ "text": ";"
22643
+ }
22644
+ ],
22645
+ "isStatic": false,
22646
+ "returnTypeTokenRange": {
22647
+ "startIndex": 1,
22648
+ "endIndex": 2
22649
+ },
22650
+ "releaseTag": "Public",
22651
+ "isProtected": false,
22652
+ "overloadIndex": 1,
22653
+ "parameters": [],
22654
+ "isOptional": false,
22655
+ "isAbstract": false,
22656
+ "name": "arrowChanged"
22657
+ },
22658
+ {
22659
+ "kind": "Method",
22660
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#connectedCallback:member(1)",
22661
+ "docComment": "",
22662
+ "excerptTokens": [
22663
+ {
22664
+ "kind": "Content",
22665
+ "text": "connectedCallback(): "
22666
+ },
22667
+ {
22668
+ "kind": "Content",
22669
+ "text": "void"
22670
+ },
22671
+ {
22672
+ "kind": "Content",
22673
+ "text": ";"
22674
+ }
22675
+ ],
22676
+ "isStatic": false,
22677
+ "returnTypeTokenRange": {
22678
+ "startIndex": 1,
22679
+ "endIndex": 2
22680
+ },
22681
+ "releaseTag": "Public",
22682
+ "isProtected": false,
22683
+ "overloadIndex": 1,
22684
+ "parameters": [],
22685
+ "isOptional": false,
22686
+ "isAbstract": false,
22687
+ "name": "connectedCallback"
22688
+ },
22689
+ {
22690
+ "kind": "Method",
22691
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#disconnectedCallback:member(1)",
22692
+ "docComment": "",
22693
+ "excerptTokens": [
22694
+ {
22695
+ "kind": "Content",
22696
+ "text": "disconnectedCallback(): "
22697
+ },
22698
+ {
22699
+ "kind": "Content",
22700
+ "text": "void"
22701
+ },
22702
+ {
22703
+ "kind": "Content",
22704
+ "text": ";"
22705
+ }
22706
+ ],
22707
+ "isStatic": false,
22708
+ "returnTypeTokenRange": {
22709
+ "startIndex": 1,
22710
+ "endIndex": 2
22711
+ },
22712
+ "releaseTag": "Public",
22713
+ "isProtected": false,
22714
+ "overloadIndex": 1,
22715
+ "parameters": [],
22716
+ "isOptional": false,
22717
+ "isAbstract": false,
22718
+ "name": "disconnectedCallback"
22719
+ },
22720
+ {
22721
+ "kind": "Property",
22722
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#dismissButtonAriaLabel:member",
22723
+ "docComment": "",
22724
+ "excerptTokens": [
22725
+ {
22726
+ "kind": "Content",
22727
+ "text": "dismissButtonAriaLabel: "
22728
+ },
22729
+ {
22730
+ "kind": "Content",
22731
+ "text": "string | null"
22732
+ },
22733
+ {
22734
+ "kind": "Content",
22735
+ "text": ";"
22736
+ }
22737
+ ],
22738
+ "isReadonly": false,
22739
+ "isOptional": false,
22740
+ "releaseTag": "Public",
22741
+ "name": "dismissButtonAriaLabel",
22742
+ "propertyTypeTokenRange": {
22743
+ "startIndex": 1,
22744
+ "endIndex": 2
22745
+ },
22746
+ "isStatic": false,
22747
+ "isProtected": false,
22748
+ "isAbstract": false
22749
+ },
22750
+ {
22751
+ "kind": "Method",
22752
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#hide:member(1)",
22753
+ "docComment": "",
22754
+ "excerptTokens": [
22755
+ {
22756
+ "kind": "Content",
22757
+ "text": "hide(): "
22758
+ },
22759
+ {
22760
+ "kind": "Content",
22761
+ "text": "void"
22762
+ },
22763
+ {
22764
+ "kind": "Content",
22765
+ "text": ";"
22766
+ }
22767
+ ],
22768
+ "isStatic": false,
22769
+ "returnTypeTokenRange": {
22770
+ "startIndex": 1,
22771
+ "endIndex": 2
22772
+ },
22773
+ "releaseTag": "Public",
22774
+ "isProtected": false,
22775
+ "overloadIndex": 1,
22776
+ "parameters": [],
22777
+ "isOptional": false,
22778
+ "isAbstract": false,
22779
+ "name": "hide"
22780
+ },
22781
+ {
22782
+ "kind": "Property",
22783
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#layout:member",
22784
+ "docComment": "",
22785
+ "excerptTokens": [
22786
+ {
22787
+ "kind": "Content",
22788
+ "text": "layout: "
22789
+ },
22790
+ {
22791
+ "kind": "Reference",
22792
+ "text": "PopoverLayout",
22793
+ "canonicalReference": "@vonage/vivid!~PopoverLayout:type"
22794
+ },
22795
+ {
22796
+ "kind": "Content",
22797
+ "text": ";"
22798
+ }
22799
+ ],
22800
+ "isReadonly": false,
22801
+ "isOptional": false,
22802
+ "releaseTag": "Public",
22803
+ "name": "layout",
22804
+ "propertyTypeTokenRange": {
22805
+ "startIndex": 1,
22806
+ "endIndex": 2
22807
+ },
22808
+ "isStatic": false,
22809
+ "isProtected": false,
22810
+ "isAbstract": false
22811
+ },
22812
+ {
22813
+ "kind": "Property",
22814
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#manual:member",
22815
+ "docComment": "",
22816
+ "excerptTokens": [
22817
+ {
22818
+ "kind": "Content",
22819
+ "text": "manual: "
22820
+ },
22821
+ {
22822
+ "kind": "Content",
22823
+ "text": "boolean"
22824
+ },
22825
+ {
22826
+ "kind": "Content",
22827
+ "text": ";"
22828
+ }
22829
+ ],
22830
+ "isReadonly": false,
22831
+ "isOptional": false,
22832
+ "releaseTag": "Public",
22833
+ "name": "manual",
22834
+ "propertyTypeTokenRange": {
22835
+ "startIndex": 1,
22836
+ "endIndex": 2
22837
+ },
22838
+ "isStatic": false,
22839
+ "isProtected": false,
22840
+ "isAbstract": false
22841
+ },
22842
+ {
22843
+ "kind": "Property",
22844
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#offset:member",
22845
+ "docComment": "",
22846
+ "excerptTokens": [
22847
+ {
22848
+ "kind": "Content",
22849
+ "text": "offset: "
22850
+ },
22851
+ {
22852
+ "kind": "Content",
22853
+ "text": "number | null"
22854
+ },
22855
+ {
22856
+ "kind": "Content",
22857
+ "text": ";"
22858
+ }
22859
+ ],
22860
+ "isReadonly": false,
22861
+ "isOptional": false,
22862
+ "releaseTag": "Public",
22863
+ "name": "offset",
22864
+ "propertyTypeTokenRange": {
22865
+ "startIndex": 1,
22866
+ "endIndex": 2
22867
+ },
22868
+ "isStatic": false,
22869
+ "isProtected": false,
22870
+ "isAbstract": false
22871
+ },
22872
+ {
22873
+ "kind": "Property",
22874
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#open:member",
22875
+ "docComment": "",
22876
+ "excerptTokens": [
22877
+ {
22878
+ "kind": "Content",
22879
+ "text": "open: "
22880
+ },
22881
+ {
22882
+ "kind": "Content",
22883
+ "text": "boolean"
22884
+ },
22885
+ {
22886
+ "kind": "Content",
22887
+ "text": ";"
22888
+ }
22889
+ ],
22890
+ "isReadonly": false,
22891
+ "isOptional": false,
22892
+ "releaseTag": "Public",
22893
+ "name": "open",
22894
+ "propertyTypeTokenRange": {
22895
+ "startIndex": 1,
22896
+ "endIndex": 2
22897
+ },
22898
+ "isStatic": false,
22899
+ "isProtected": false,
22900
+ "isAbstract": false
22901
+ },
22902
+ {
22903
+ "kind": "Method",
22904
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#openChanged:member(1)",
22905
+ "docComment": "",
22906
+ "excerptTokens": [
22907
+ {
22908
+ "kind": "Content",
22909
+ "text": "openChanged(_oldValue: "
22910
+ },
22911
+ {
22912
+ "kind": "Content",
22913
+ "text": "boolean"
22914
+ },
22915
+ {
22916
+ "kind": "Content",
22917
+ "text": ", newValue: "
22918
+ },
22919
+ {
22920
+ "kind": "Content",
22921
+ "text": "boolean"
22922
+ },
22923
+ {
22924
+ "kind": "Content",
22925
+ "text": "): "
22926
+ },
22927
+ {
22928
+ "kind": "Content",
22929
+ "text": "void"
22930
+ },
22931
+ {
22932
+ "kind": "Content",
22933
+ "text": ";"
22934
+ }
22935
+ ],
22936
+ "isStatic": false,
22937
+ "returnTypeTokenRange": {
22938
+ "startIndex": 5,
22939
+ "endIndex": 6
22940
+ },
22941
+ "releaseTag": "Public",
22942
+ "isProtected": false,
22943
+ "overloadIndex": 1,
22944
+ "parameters": [
22945
+ {
22946
+ "parameterName": "_oldValue",
22947
+ "parameterTypeTokenRange": {
22948
+ "startIndex": 1,
22949
+ "endIndex": 2
22950
+ },
22951
+ "isOptional": false
22952
+ },
22953
+ {
22954
+ "parameterName": "newValue",
22955
+ "parameterTypeTokenRange": {
22956
+ "startIndex": 3,
22957
+ "endIndex": 4
22958
+ },
22959
+ "isOptional": false
22960
+ }
22961
+ ],
22962
+ "isOptional": false,
22963
+ "isAbstract": false,
22964
+ "name": "openChanged"
22965
+ },
22966
+ {
22967
+ "kind": "Property",
22968
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#placement:member",
22969
+ "docComment": "",
22970
+ "excerptTokens": [
22971
+ {
22972
+ "kind": "Content",
22973
+ "text": "placement: "
22974
+ },
22975
+ {
22976
+ "kind": "Reference",
22977
+ "text": "Placement",
22978
+ "canonicalReference": "@floating-ui/utils!Placement:type"
22979
+ },
22980
+ {
22981
+ "kind": "Content",
22982
+ "text": ";"
22983
+ }
22984
+ ],
22985
+ "isReadonly": false,
22986
+ "isOptional": false,
22987
+ "releaseTag": "Public",
22988
+ "name": "placement",
22989
+ "propertyTypeTokenRange": {
22990
+ "startIndex": 1,
22991
+ "endIndex": 2
22992
+ },
22993
+ "isStatic": false,
22994
+ "isProtected": false,
22995
+ "isAbstract": false
22996
+ },
22997
+ {
22998
+ "kind": "Method",
22999
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#placementChanged:member(1)",
23000
+ "docComment": "",
23001
+ "excerptTokens": [
23002
+ {
23003
+ "kind": "Content",
23004
+ "text": "placementChanged(): "
23005
+ },
23006
+ {
23007
+ "kind": "Content",
23008
+ "text": "void"
23009
+ },
23010
+ {
23011
+ "kind": "Content",
23012
+ "text": ";"
23013
+ }
23014
+ ],
23015
+ "isStatic": false,
23016
+ "returnTypeTokenRange": {
23017
+ "startIndex": 1,
23018
+ "endIndex": 2
23019
+ },
23020
+ "releaseTag": "Public",
23021
+ "isProtected": false,
23022
+ "overloadIndex": 1,
23023
+ "parameters": [],
23024
+ "isOptional": false,
23025
+ "isAbstract": false,
23026
+ "name": "placementChanged"
23027
+ },
23028
+ {
23029
+ "kind": "Method",
23030
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#show:member(1)",
23031
+ "docComment": "",
23032
+ "excerptTokens": [
23033
+ {
23034
+ "kind": "Content",
23035
+ "text": "show(): "
23036
+ },
23037
+ {
23038
+ "kind": "Reference",
23039
+ "text": "Promise",
23040
+ "canonicalReference": "!Promise:interface"
23041
+ },
23042
+ {
23043
+ "kind": "Content",
23044
+ "text": "<void>"
23045
+ },
23046
+ {
23047
+ "kind": "Content",
23048
+ "text": ";"
23049
+ }
23050
+ ],
23051
+ "isStatic": false,
23052
+ "returnTypeTokenRange": {
23053
+ "startIndex": 1,
23054
+ "endIndex": 3
23055
+ },
23056
+ "releaseTag": "Public",
23057
+ "isProtected": false,
23058
+ "overloadIndex": 1,
23059
+ "parameters": [],
23060
+ "isOptional": false,
23061
+ "isAbstract": false,
23062
+ "name": "show"
23063
+ },
23064
+ {
23065
+ "kind": "Method",
23066
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#toggle:member(1)",
23067
+ "docComment": "",
23068
+ "excerptTokens": [
23069
+ {
23070
+ "kind": "Content",
23071
+ "text": "toggle(): "
23072
+ },
23073
+ {
23074
+ "kind": "Content",
23075
+ "text": "void"
23076
+ },
23077
+ {
23078
+ "kind": "Content",
23079
+ "text": ";"
23080
+ }
23081
+ ],
23082
+ "isStatic": false,
23083
+ "returnTypeTokenRange": {
23084
+ "startIndex": 1,
23085
+ "endIndex": 2
23086
+ },
23087
+ "releaseTag": "Public",
23088
+ "isProtected": false,
23089
+ "overloadIndex": 1,
23090
+ "parameters": [],
23091
+ "isOptional": false,
23092
+ "isAbstract": false,
23093
+ "name": "toggle"
23094
+ },
23095
+ {
23096
+ "kind": "Method",
23097
+ "canonicalReference": "@vonage/vivid!VwcPopoverElement#updatePosition:member(1)",
21984
23098
  "docComment": "",
21985
23099
  "excerptTokens": [
21986
23100
  {
21987
23101
  "kind": "Content",
21988
- "text": "totalChanged(_: "
21989
- },
21990
- {
21991
- "kind": "Content",
21992
- "text": "number"
21993
- },
21994
- {
21995
- "kind": "Content",
21996
- "text": ", newValue: "
21997
- },
21998
- {
21999
- "kind": "Content",
22000
- "text": "number"
23102
+ "text": "updatePosition(): "
22001
23103
  },
22002
23104
  {
22003
- "kind": "Content",
22004
- "text": "): "
23105
+ "kind": "Reference",
23106
+ "text": "Promise",
23107
+ "canonicalReference": "!Promise:interface"
22005
23108
  },
22006
23109
  {
22007
23110
  "kind": "Content",
22008
- "text": "void"
23111
+ "text": "<void>"
22009
23112
  },
22010
23113
  {
22011
23114
  "kind": "Content",
@@ -22014,33 +23117,16 @@
22014
23117
  ],
22015
23118
  "isStatic": false,
22016
23119
  "returnTypeTokenRange": {
22017
- "startIndex": 5,
22018
- "endIndex": 6
23120
+ "startIndex": 1,
23121
+ "endIndex": 3
22019
23122
  },
22020
23123
  "releaseTag": "Public",
22021
23124
  "isProtected": false,
22022
23125
  "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
- ],
23126
+ "parameters": [],
22041
23127
  "isOptional": false,
22042
23128
  "isAbstract": false,
22043
- "name": "totalChanged"
23129
+ "name": "updatePosition"
22044
23130
  }
22045
23131
  ],
22046
23132
  "extendsTokenRange": {
@@ -23536,6 +24622,69 @@
23536
24622
  },
23537
24623
  "implementsTokenRanges": []
23538
24624
  },
24625
+ {
24626
+ "kind": "Class",
24627
+ "canonicalReference": "@vonage/vivid!VwcRichTextViewElement:class",
24628
+ "docComment": "",
24629
+ "excerptTokens": [
24630
+ {
24631
+ "kind": "Content",
24632
+ "text": "export declare class RichTextView extends "
24633
+ },
24634
+ {
24635
+ "kind": "Reference",
24636
+ "text": "VividElement",
24637
+ "canonicalReference": "@vonage/vivid!~VividElement:class"
24638
+ },
24639
+ {
24640
+ "kind": "Content",
24641
+ "text": " "
24642
+ }
24643
+ ],
24644
+ "fileUrlPath": "dist/lib/rich-text-view/rich-text-view.d.ts",
24645
+ "releaseTag": "Public",
24646
+ "isAbstract": false,
24647
+ "name": "VwcRichTextViewElement",
24648
+ "preserveMemberOrder": false,
24649
+ "members": [
24650
+ {
24651
+ "kind": "Property",
24652
+ "canonicalReference": "@vonage/vivid!VwcRichTextViewElement#view:member",
24653
+ "docComment": "",
24654
+ "excerptTokens": [
24655
+ {
24656
+ "kind": "Content",
24657
+ "text": "view?: "
24658
+ },
24659
+ {
24660
+ "kind": "Reference",
24661
+ "text": "RteView",
24662
+ "canonicalReference": "@vonage/vivid!RteView:type"
24663
+ },
24664
+ {
24665
+ "kind": "Content",
24666
+ "text": ";"
24667
+ }
24668
+ ],
24669
+ "isReadonly": false,
24670
+ "isOptional": true,
24671
+ "releaseTag": "Public",
24672
+ "name": "view",
24673
+ "propertyTypeTokenRange": {
24674
+ "startIndex": 1,
24675
+ "endIndex": 2
24676
+ },
24677
+ "isStatic": false,
24678
+ "isProtected": false,
24679
+ "isAbstract": false
24680
+ }
24681
+ ],
24682
+ "extendsTokenRange": {
24683
+ "startIndex": 1,
24684
+ "endIndex": 2
24685
+ },
24686
+ "implementsTokenRanges": []
24687
+ },
23539
24688
  {
23540
24689
  "kind": "Class",
23541
24690
  "canonicalReference": "@vonage/vivid!VwcSearchableSelectElement:class",
@@ -26901,6 +28050,192 @@
26901
28050
  },
26902
28051
  "implementsTokenRanges": []
26903
28052
  },
28053
+ {
28054
+ "kind": "Class",
28055
+ "canonicalReference": "@vonage/vivid!VwcTableBodyElement:class",
28056
+ "docComment": "",
28057
+ "excerptTokens": [
28058
+ {
28059
+ "kind": "Content",
28060
+ "text": "export declare class TableBody extends "
28061
+ },
28062
+ {
28063
+ "kind": "Reference",
28064
+ "text": "VividElement",
28065
+ "canonicalReference": "@vonage/vivid!~VividElement:class"
28066
+ },
28067
+ {
28068
+ "kind": "Content",
28069
+ "text": " "
28070
+ }
28071
+ ],
28072
+ "fileUrlPath": "dist/lib/data-table/table-body.d.ts",
28073
+ "releaseTag": "Public",
28074
+ "isAbstract": false,
28075
+ "name": "VwcTableBodyElement",
28076
+ "preserveMemberOrder": false,
28077
+ "members": [],
28078
+ "extendsTokenRange": {
28079
+ "startIndex": 1,
28080
+ "endIndex": 2
28081
+ },
28082
+ "implementsTokenRanges": []
28083
+ },
28084
+ {
28085
+ "kind": "Class",
28086
+ "canonicalReference": "@vonage/vivid!VwcTableCellElement:class",
28087
+ "docComment": "",
28088
+ "excerptTokens": [
28089
+ {
28090
+ "kind": "Content",
28091
+ "text": "export declare class TableCell extends "
28092
+ },
28093
+ {
28094
+ "kind": "Reference",
28095
+ "text": "TableCell_base",
28096
+ "canonicalReference": "@vonage/vivid!~TableCell_base"
28097
+ },
28098
+ {
28099
+ "kind": "Content",
28100
+ "text": " "
28101
+ }
28102
+ ],
28103
+ "fileUrlPath": "dist/lib/data-table/table-cell.d.ts",
28104
+ "releaseTag": "Public",
28105
+ "isAbstract": false,
28106
+ "name": "VwcTableCellElement",
28107
+ "preserveMemberOrder": false,
28108
+ "members": [],
28109
+ "extendsTokenRange": {
28110
+ "startIndex": 1,
28111
+ "endIndex": 2
28112
+ },
28113
+ "implementsTokenRanges": []
28114
+ },
28115
+ {
28116
+ "kind": "Class",
28117
+ "canonicalReference": "@vonage/vivid!VwcTableElement:class",
28118
+ "docComment": "",
28119
+ "excerptTokens": [
28120
+ {
28121
+ "kind": "Content",
28122
+ "text": "export declare class Table extends "
28123
+ },
28124
+ {
28125
+ "kind": "Reference",
28126
+ "text": "VividElement",
28127
+ "canonicalReference": "@vonage/vivid!~VividElement:class"
28128
+ },
28129
+ {
28130
+ "kind": "Content",
28131
+ "text": " "
28132
+ }
28133
+ ],
28134
+ "fileUrlPath": "dist/lib/data-table/table.d.ts",
28135
+ "releaseTag": "Public",
28136
+ "isAbstract": false,
28137
+ "name": "VwcTableElement",
28138
+ "preserveMemberOrder": false,
28139
+ "members": [],
28140
+ "extendsTokenRange": {
28141
+ "startIndex": 1,
28142
+ "endIndex": 2
28143
+ },
28144
+ "implementsTokenRanges": []
28145
+ },
28146
+ {
28147
+ "kind": "Class",
28148
+ "canonicalReference": "@vonage/vivid!VwcTableHeadElement:class",
28149
+ "docComment": "",
28150
+ "excerptTokens": [
28151
+ {
28152
+ "kind": "Content",
28153
+ "text": "export declare class TableHead extends "
28154
+ },
28155
+ {
28156
+ "kind": "Reference",
28157
+ "text": "VividElement",
28158
+ "canonicalReference": "@vonage/vivid!~VividElement:class"
28159
+ },
28160
+ {
28161
+ "kind": "Content",
28162
+ "text": " "
28163
+ }
28164
+ ],
28165
+ "fileUrlPath": "dist/lib/data-table/table-head.d.ts",
28166
+ "releaseTag": "Public",
28167
+ "isAbstract": false,
28168
+ "name": "VwcTableHeadElement",
28169
+ "preserveMemberOrder": false,
28170
+ "members": [],
28171
+ "extendsTokenRange": {
28172
+ "startIndex": 1,
28173
+ "endIndex": 2
28174
+ },
28175
+ "implementsTokenRanges": []
28176
+ },
28177
+ {
28178
+ "kind": "Class",
28179
+ "canonicalReference": "@vonage/vivid!VwcTableHeaderCellElement:class",
28180
+ "docComment": "",
28181
+ "excerptTokens": [
28182
+ {
28183
+ "kind": "Content",
28184
+ "text": "export declare class TableHeaderCell extends "
28185
+ },
28186
+ {
28187
+ "kind": "Reference",
28188
+ "text": "TableHeaderCell_base",
28189
+ "canonicalReference": "@vonage/vivid!~TableHeaderCell_base"
28190
+ },
28191
+ {
28192
+ "kind": "Content",
28193
+ "text": " "
28194
+ }
28195
+ ],
28196
+ "fileUrlPath": "dist/lib/data-table/table-header-cell.d.ts",
28197
+ "releaseTag": "Public",
28198
+ "isAbstract": false,
28199
+ "name": "VwcTableHeaderCellElement",
28200
+ "preserveMemberOrder": false,
28201
+ "members": [],
28202
+ "extendsTokenRange": {
28203
+ "startIndex": 1,
28204
+ "endIndex": 2
28205
+ },
28206
+ "implementsTokenRanges": []
28207
+ },
28208
+ {
28209
+ "kind": "Class",
28210
+ "canonicalReference": "@vonage/vivid!VwcTableRowElement:class",
28211
+ "docComment": "",
28212
+ "excerptTokens": [
28213
+ {
28214
+ "kind": "Content",
28215
+ "text": "export declare class TableRow extends "
28216
+ },
28217
+ {
28218
+ "kind": "Reference",
28219
+ "text": "TableRow_base",
28220
+ "canonicalReference": "@vonage/vivid!~TableRow_base"
28221
+ },
28222
+ {
28223
+ "kind": "Content",
28224
+ "text": " "
28225
+ }
28226
+ ],
28227
+ "fileUrlPath": "dist/lib/data-table/table-row.d.ts",
28228
+ "releaseTag": "Public",
28229
+ "isAbstract": false,
28230
+ "name": "VwcTableRowElement",
28231
+ "preserveMemberOrder": false,
28232
+ "members": [],
28233
+ "extendsTokenRange": {
28234
+ "startIndex": 1,
28235
+ "endIndex": 2
28236
+ },
28237
+ "implementsTokenRanges": []
28238
+ },
26904
28239
  {
26905
28240
  "kind": "Class",
26906
28241
  "canonicalReference": "@vonage/vivid!VwcTabPanelElement:class",