@vonage/vivid 5.7.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.
- package/bundled/data-grid.options.cjs +1 -0
- package/bundled/data-grid.options.js +29 -0
- package/bundled/definition19.cjs +3 -4
- package/bundled/definition19.js +35 -52
- package/bundled/definition2.cjs +1 -1
- package/bundled/definition2.js +1 -1
- package/bundled/definition3.cjs +1 -1
- package/bundled/definition3.js +1 -1
- package/bundled/definition8.cjs +1 -1
- package/bundled/definition8.js +1 -1
- package/bundled/definition9.cjs +9 -9
- package/bundled/definition9.js +113 -1342
- package/bundled/feature.cjs +4 -0
- package/bundled/feature.js +2886 -0
- package/bundled/floating-ui.dom.cjs +1 -0
- package/bundled/floating-ui.dom.js +1242 -0
- package/bundled/listbox.cjs +1 -1
- package/bundled/listbox.js +49 -22
- package/bundled/localized.cjs +1 -1
- package/bundled/localized.js +15 -13
- package/bundled/vivid-element.cjs +3 -3
- package/bundled/vivid-element.js +89 -69
- package/checkbox/definition.cjs +1 -1
- package/checkbox/definition.js +1 -1
- package/combobox/definition.cjs +14 -15
- package/combobox/definition.js +15 -16
- package/combobox/index.cjs +4 -4
- package/combobox/index.js +82 -87
- package/contextual-help/definition.cjs +1 -0
- package/contextual-help/definition.js +1 -1
- package/custom-elements.json +5145 -3781
- package/data-grid/definition.cjs +23 -49
- package/data-grid/definition.js +1 -27
- package/data-grid/index.cjs +27 -27
- package/data-grid/index.js +44 -64
- package/data-table/definition.cjs +204 -0
- package/data-table/definition.js +188 -0
- package/data-table/index.cjs +37 -0
- package/data-table/index.js +143 -0
- package/file-picker/definition.cjs +10 -8
- package/file-picker/definition.js +10 -8
- package/file-picker/index.cjs +5 -5
- package/file-picker/index.js +12 -12
- package/icon/definition.cjs +1 -1
- package/icon/definition.js +1 -1
- package/index.cjs +26 -0
- package/index.js +4 -0
- package/lib/components.d.ts +4 -0
- package/lib/contextual-help/definition.d.ts +2 -0
- package/lib/data-table/definition.d.ts +8 -0
- package/lib/data-table/table-body.d.ts +3 -0
- package/lib/data-table/table-body.template.d.ts +3 -0
- package/lib/data-table/table-cell.d.ts +381 -0
- package/lib/data-table/table-cell.template.d.ts +3 -0
- package/lib/data-table/table-head.d.ts +3 -0
- package/lib/data-table/table-head.template.d.ts +3 -0
- package/lib/data-table/table-header-cell.d.ts +381 -0
- package/lib/data-table/table-header-cell.template.d.ts +3 -0
- package/lib/data-table/table-row.d.ts +381 -0
- package/lib/data-table/table-row.template.d.ts +3 -0
- package/lib/data-table/table.d.ts +3 -0
- package/lib/data-table/table.template.d.ts +3 -0
- package/lib/popover/definition.d.ts +4 -0
- package/lib/popover/locale.d.ts +3 -0
- package/lib/popover/popover.d.ts +781 -0
- package/lib/popover/popover.template.d.ts +3 -0
- package/lib/rich-text-editor/locale.d.ts +0 -1
- package/lib/rich-text-editor/rte/config.d.ts +3 -0
- package/lib/rich-text-editor/rte/document.d.ts +2 -0
- package/lib/rich-text-editor/rte/exports.d.ts +1 -0
- package/lib/rich-text-editor/rte/view.d.ts +30 -0
- package/lib/rich-text-view/definition.d.ts +4 -0
- package/lib/rich-text-view/rich-text-view.d.ts +15 -0
- package/lib/rich-text-view/rich-text-view.template.d.ts +3 -0
- package/lib/tag-name-map.d.ts +10 -1
- package/locales/de-DE.cjs +3 -1
- package/locales/de-DE.js +3 -1
- package/locales/en-GB.cjs +3 -1
- package/locales/en-GB.js +3 -1
- package/locales/en-US.cjs +3 -1
- package/locales/en-US.js +3 -1
- package/locales/ja-JP.cjs +3 -1
- package/locales/ja-JP.js +3 -1
- package/locales/zh-CN.cjs +3 -1
- package/locales/zh-CN.js +3 -1
- package/package.json +8 -12
- package/popover/definition.cjs +363 -0
- package/popover/definition.js +357 -0
- package/popover/index.cjs +27 -0
- package/popover/index.js +263 -0
- package/rich-text-editor/definition.cjs +328 -3882
- package/rich-text-editor/definition.js +143 -3697
- package/rich-text-editor/index.cjs +12 -15
- package/rich-text-editor/index.js +3489 -6291
- package/rich-text-view/definition.cjs +159 -0
- package/rich-text-view/definition.js +153 -0
- package/rich-text-view/index.cjs +1 -0
- package/rich-text-view/index.js +95 -0
- package/select/definition.cjs +27 -15
- package/select/definition.js +27 -15
- package/shared/foundation/listbox/listbox.d.ts +0 -1
- package/shared/localization/Locale.d.ts +2 -0
- package/tag/definition.cjs +1 -1
- package/tag/definition.js +1 -1
- package/tag/index.cjs +1 -1
- package/tag/index.js +1 -1
- package/unbundled/_commonjsHelpers.cjs +26 -0
- package/unbundled/_commonjsHelpers.js +26 -1
- package/unbundled/data-grid.options.cjs +34 -0
- package/unbundled/data-grid.options.js +28 -0
- package/unbundled/definition.cjs +1 -1
- package/unbundled/definition.js +1 -1
- package/unbundled/feature.cjs +3678 -0
- package/unbundled/feature.js +3662 -0
- package/unbundled/listbox.cjs +29 -2
- package/unbundled/listbox.js +29 -2
- package/unbundled/vivid-element.cjs +1 -1
- package/unbundled/vivid-element.js +1 -1
- package/video-player/definition.cjs +11 -1
- package/video-player/definition.js +12 -2
- package/video-player/index.cjs +30 -30
- package/video-player/index.js +705 -702
- package/vivid.api.json +1478 -39
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",
|
|
@@ -4570,6 +4598,47 @@
|
|
|
4570
4598
|
],
|
|
4571
4599
|
"name": "registerCombobox"
|
|
4572
4600
|
},
|
|
4601
|
+
{
|
|
4602
|
+
"kind": "Function",
|
|
4603
|
+
"canonicalReference": "@vonage/vivid!registerContextualHelp:function(1)",
|
|
4604
|
+
"docComment": "",
|
|
4605
|
+
"excerptTokens": [
|
|
4606
|
+
{
|
|
4607
|
+
"kind": "Content",
|
|
4608
|
+
"text": "registerContextualHelp: (prefix?: "
|
|
4609
|
+
},
|
|
4610
|
+
{
|
|
4611
|
+
"kind": "Content",
|
|
4612
|
+
"text": "string"
|
|
4613
|
+
},
|
|
4614
|
+
{
|
|
4615
|
+
"kind": "Content",
|
|
4616
|
+
"text": ") => "
|
|
4617
|
+
},
|
|
4618
|
+
{
|
|
4619
|
+
"kind": "Content",
|
|
4620
|
+
"text": "void"
|
|
4621
|
+
}
|
|
4622
|
+
],
|
|
4623
|
+
"fileUrlPath": "dist/lib/contextual-help/definition.d.ts",
|
|
4624
|
+
"returnTypeTokenRange": {
|
|
4625
|
+
"startIndex": 3,
|
|
4626
|
+
"endIndex": 4
|
|
4627
|
+
},
|
|
4628
|
+
"releaseTag": "Public",
|
|
4629
|
+
"overloadIndex": 1,
|
|
4630
|
+
"parameters": [
|
|
4631
|
+
{
|
|
4632
|
+
"parameterName": "prefix",
|
|
4633
|
+
"parameterTypeTokenRange": {
|
|
4634
|
+
"startIndex": 1,
|
|
4635
|
+
"endIndex": 2
|
|
4636
|
+
},
|
|
4637
|
+
"isOptional": true
|
|
4638
|
+
}
|
|
4639
|
+
],
|
|
4640
|
+
"name": "registerContextualHelp"
|
|
4641
|
+
},
|
|
4573
4642
|
{
|
|
4574
4643
|
"kind": "Function",
|
|
4575
4644
|
"canonicalReference": "@vonage/vivid!registerDataGrid:function(1)",
|
|
@@ -4611,6 +4680,47 @@
|
|
|
4611
4680
|
],
|
|
4612
4681
|
"name": "registerDataGrid"
|
|
4613
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
|
+
},
|
|
4614
4724
|
{
|
|
4615
4725
|
"kind": "Function",
|
|
4616
4726
|
"canonicalReference": "@vonage/vivid!registerDatePicker:function(1)",
|
|
@@ -5472,6 +5582,47 @@
|
|
|
5472
5582
|
],
|
|
5473
5583
|
"name": "registerPagination"
|
|
5474
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
|
+
},
|
|
5475
5626
|
{
|
|
5476
5627
|
"kind": "Function",
|
|
5477
5628
|
"canonicalReference": "@vonage/vivid!registerProgress:function(1)",
|
|
@@ -5718,6 +5869,47 @@
|
|
|
5718
5869
|
],
|
|
5719
5870
|
"name": "registerRichTextEditor"
|
|
5720
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
|
+
},
|
|
5721
5913
|
{
|
|
5722
5914
|
"kind": "Function",
|
|
5723
5915
|
"canonicalReference": "@vonage/vivid!registerSearchableSelect:function(1)",
|
|
@@ -6607,6 +6799,34 @@
|
|
|
6607
6799
|
"endIndex": 3
|
|
6608
6800
|
}
|
|
6609
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
|
+
},
|
|
6610
6830
|
{
|
|
6611
6831
|
"kind": "Enum",
|
|
6612
6832
|
"canonicalReference": "@vonage/vivid!Role:enum",
|
|
@@ -6835,6 +7055,73 @@
|
|
|
6835
7055
|
"isOptional": false,
|
|
6836
7056
|
"isAbstract": false,
|
|
6837
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"
|
|
6838
7125
|
}
|
|
6839
7126
|
],
|
|
6840
7127
|
"implementsTokenRanges": []
|
|
@@ -7692,7 +7979,158 @@
|
|
|
7692
7979
|
},
|
|
7693
7980
|
{
|
|
7694
7981
|
"kind": "TypeAlias",
|
|
7695
|
-
"canonicalReference": "@vonage/vivid!
|
|
7982
|
+
"canonicalReference": "@vonage/vivid!RteView:type",
|
|
7983
|
+
"docComment": "",
|
|
7984
|
+
"excerptTokens": [
|
|
7985
|
+
{
|
|
7986
|
+
"kind": "Content",
|
|
7987
|
+
"text": "export type RteView = "
|
|
7988
|
+
},
|
|
7989
|
+
{
|
|
7990
|
+
"kind": "Content",
|
|
7991
|
+
"text": "({\n type: 'node';\n node: "
|
|
7992
|
+
},
|
|
7993
|
+
{
|
|
7994
|
+
"kind": "Reference",
|
|
7995
|
+
"text": "RteDocument",
|
|
7996
|
+
"canonicalReference": "@vonage/vivid!RteDocument:type"
|
|
7997
|
+
},
|
|
7998
|
+
{
|
|
7999
|
+
"kind": "Content",
|
|
8000
|
+
"text": " | "
|
|
8001
|
+
},
|
|
8002
|
+
{
|
|
8003
|
+
"kind": "Reference",
|
|
8004
|
+
"text": "RteNode",
|
|
8005
|
+
"canonicalReference": "@vonage/vivid!RteNode:type"
|
|
8006
|
+
},
|
|
8007
|
+
{
|
|
8008
|
+
"kind": "Content",
|
|
8009
|
+
"text": ";\n children: "
|
|
8010
|
+
},
|
|
8011
|
+
{
|
|
8012
|
+
"kind": "Reference",
|
|
8013
|
+
"text": "RteView",
|
|
8014
|
+
"canonicalReference": "@vonage/vivid!RteView:type"
|
|
8015
|
+
},
|
|
8016
|
+
{
|
|
8017
|
+
"kind": "Content",
|
|
8018
|
+
"text": ";\n} | {\n type: 'mark';\n mark: "
|
|
8019
|
+
},
|
|
8020
|
+
{
|
|
8021
|
+
"kind": "Reference",
|
|
8022
|
+
"text": "RteMark",
|
|
8023
|
+
"canonicalReference": "@vonage/vivid!RteMark:type"
|
|
8024
|
+
},
|
|
8025
|
+
{
|
|
8026
|
+
"kind": "Content",
|
|
8027
|
+
"text": ";\n children: "
|
|
8028
|
+
},
|
|
8029
|
+
{
|
|
8030
|
+
"kind": "Reference",
|
|
8031
|
+
"text": "RteView",
|
|
8032
|
+
"canonicalReference": "@vonage/vivid!RteView:type"
|
|
8033
|
+
},
|
|
8034
|
+
{
|
|
8035
|
+
"kind": "Content",
|
|
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",
|
|
7696
8134
|
"docComment": "",
|
|
7697
8135
|
"excerptTokens": [
|
|
7698
8136
|
{
|
|
@@ -14127,6 +14565,69 @@
|
|
|
14127
14565
|
},
|
|
14128
14566
|
"implementsTokenRanges": []
|
|
14129
14567
|
},
|
|
14568
|
+
{
|
|
14569
|
+
"kind": "Class",
|
|
14570
|
+
"canonicalReference": "@vonage/vivid!VwcContextualHelpElement:class",
|
|
14571
|
+
"docComment": "",
|
|
14572
|
+
"excerptTokens": [
|
|
14573
|
+
{
|
|
14574
|
+
"kind": "Content",
|
|
14575
|
+
"text": "export declare class ContextualHelp extends "
|
|
14576
|
+
},
|
|
14577
|
+
{
|
|
14578
|
+
"kind": "Reference",
|
|
14579
|
+
"text": "VividElement",
|
|
14580
|
+
"canonicalReference": "@vonage/vivid!~VividElement:class"
|
|
14581
|
+
},
|
|
14582
|
+
{
|
|
14583
|
+
"kind": "Content",
|
|
14584
|
+
"text": " "
|
|
14585
|
+
}
|
|
14586
|
+
],
|
|
14587
|
+
"fileUrlPath": "dist/lib/contextual-help/contextual-help.d.ts",
|
|
14588
|
+
"releaseTag": "Public",
|
|
14589
|
+
"isAbstract": false,
|
|
14590
|
+
"name": "VwcContextualHelpElement",
|
|
14591
|
+
"preserveMemberOrder": false,
|
|
14592
|
+
"members": [
|
|
14593
|
+
{
|
|
14594
|
+
"kind": "Property",
|
|
14595
|
+
"canonicalReference": "@vonage/vivid!VwcContextualHelpElement#placement:member",
|
|
14596
|
+
"docComment": "",
|
|
14597
|
+
"excerptTokens": [
|
|
14598
|
+
{
|
|
14599
|
+
"kind": "Content",
|
|
14600
|
+
"text": "placement?: "
|
|
14601
|
+
},
|
|
14602
|
+
{
|
|
14603
|
+
"kind": "Reference",
|
|
14604
|
+
"text": "Placement",
|
|
14605
|
+
"canonicalReference": "@floating-ui/utils!Placement:type"
|
|
14606
|
+
},
|
|
14607
|
+
{
|
|
14608
|
+
"kind": "Content",
|
|
14609
|
+
"text": ";"
|
|
14610
|
+
}
|
|
14611
|
+
],
|
|
14612
|
+
"isReadonly": false,
|
|
14613
|
+
"isOptional": true,
|
|
14614
|
+
"releaseTag": "Public",
|
|
14615
|
+
"name": "placement",
|
|
14616
|
+
"propertyTypeTokenRange": {
|
|
14617
|
+
"startIndex": 1,
|
|
14618
|
+
"endIndex": 2
|
|
14619
|
+
},
|
|
14620
|
+
"isStatic": false,
|
|
14621
|
+
"isProtected": false,
|
|
14622
|
+
"isAbstract": false
|
|
14623
|
+
}
|
|
14624
|
+
],
|
|
14625
|
+
"extendsTokenRange": {
|
|
14626
|
+
"startIndex": 1,
|
|
14627
|
+
"endIndex": 2
|
|
14628
|
+
},
|
|
14629
|
+
"implementsTokenRanges": []
|
|
14630
|
+
},
|
|
14130
14631
|
{
|
|
14131
14632
|
"kind": "Class",
|
|
14132
14633
|
"canonicalReference": "@vonage/vivid!VwcDataGridCellElement:class",
|
|
@@ -21876,32 +22377,738 @@
|
|
|
21876
22377
|
},
|
|
21877
22378
|
{
|
|
21878
22379
|
"kind": "Method",
|
|
21879
|
-
"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)",
|
|
21880
23098
|
"docComment": "",
|
|
21881
23099
|
"excerptTokens": [
|
|
21882
23100
|
{
|
|
21883
23101
|
"kind": "Content",
|
|
21884
|
-
"text": "
|
|
21885
|
-
},
|
|
21886
|
-
{
|
|
21887
|
-
"kind": "Content",
|
|
21888
|
-
"text": "number"
|
|
21889
|
-
},
|
|
21890
|
-
{
|
|
21891
|
-
"kind": "Content",
|
|
21892
|
-
"text": ", newValue: "
|
|
21893
|
-
},
|
|
21894
|
-
{
|
|
21895
|
-
"kind": "Content",
|
|
21896
|
-
"text": "number"
|
|
23102
|
+
"text": "updatePosition(): "
|
|
21897
23103
|
},
|
|
21898
23104
|
{
|
|
21899
|
-
"kind": "
|
|
21900
|
-
"text": "
|
|
23105
|
+
"kind": "Reference",
|
|
23106
|
+
"text": "Promise",
|
|
23107
|
+
"canonicalReference": "!Promise:interface"
|
|
21901
23108
|
},
|
|
21902
23109
|
{
|
|
21903
23110
|
"kind": "Content",
|
|
21904
|
-
"text": "void"
|
|
23111
|
+
"text": "<void>"
|
|
21905
23112
|
},
|
|
21906
23113
|
{
|
|
21907
23114
|
"kind": "Content",
|
|
@@ -21910,33 +23117,16 @@
|
|
|
21910
23117
|
],
|
|
21911
23118
|
"isStatic": false,
|
|
21912
23119
|
"returnTypeTokenRange": {
|
|
21913
|
-
"startIndex":
|
|
21914
|
-
"endIndex":
|
|
23120
|
+
"startIndex": 1,
|
|
23121
|
+
"endIndex": 3
|
|
21915
23122
|
},
|
|
21916
23123
|
"releaseTag": "Public",
|
|
21917
23124
|
"isProtected": false,
|
|
21918
23125
|
"overloadIndex": 1,
|
|
21919
|
-
"parameters": [
|
|
21920
|
-
{
|
|
21921
|
-
"parameterName": "_",
|
|
21922
|
-
"parameterTypeTokenRange": {
|
|
21923
|
-
"startIndex": 1,
|
|
21924
|
-
"endIndex": 2
|
|
21925
|
-
},
|
|
21926
|
-
"isOptional": false
|
|
21927
|
-
},
|
|
21928
|
-
{
|
|
21929
|
-
"parameterName": "newValue",
|
|
21930
|
-
"parameterTypeTokenRange": {
|
|
21931
|
-
"startIndex": 3,
|
|
21932
|
-
"endIndex": 4
|
|
21933
|
-
},
|
|
21934
|
-
"isOptional": false
|
|
21935
|
-
}
|
|
21936
|
-
],
|
|
23126
|
+
"parameters": [],
|
|
21937
23127
|
"isOptional": false,
|
|
21938
23128
|
"isAbstract": false,
|
|
21939
|
-
"name": "
|
|
23129
|
+
"name": "updatePosition"
|
|
21940
23130
|
}
|
|
21941
23131
|
],
|
|
21942
23132
|
"extendsTokenRange": {
|
|
@@ -23432,6 +24622,69 @@
|
|
|
23432
24622
|
},
|
|
23433
24623
|
"implementsTokenRanges": []
|
|
23434
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
|
+
},
|
|
23435
24688
|
{
|
|
23436
24689
|
"kind": "Class",
|
|
23437
24690
|
"canonicalReference": "@vonage/vivid!VwcSearchableSelectElement:class",
|
|
@@ -26797,6 +28050,192 @@
|
|
|
26797
28050
|
},
|
|
26798
28051
|
"implementsTokenRanges": []
|
|
26799
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
|
+
},
|
|
26800
28239
|
{
|
|
26801
28240
|
"kind": "Class",
|
|
26802
28241
|
"canonicalReference": "@vonage/vivid!VwcTabPanelElement:class",
|