@vonage/vivid 3.6.0 → 3.8.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 (77) hide show
  1. package/README.md +9 -5
  2. package/custom-elements.json +585 -0
  3. package/index.js +7 -5
  4. package/lib/accordion-item/accordion-item.d.ts +3 -0
  5. package/lib/button/button.d.ts +1 -1
  6. package/lib/components.d.ts +2 -0
  7. package/lib/select/select.d.ts +2 -2
  8. package/lib/tag/definition.d.ts +4 -0
  9. package/lib/tag/index.d.ts +1 -0
  10. package/lib/tag/tag.d.ts +22 -0
  11. package/lib/tag/tag.template.d.ts +4 -0
  12. package/lib/tag-group/definition.d.ts +3 -0
  13. package/lib/tag-group/index.d.ts +1 -0
  14. package/lib/tag-group/tag-group.d.ts +3 -0
  15. package/lib/tag-group/tag-group.template.d.ts +4 -0
  16. package/package.json +1 -1
  17. package/shared/definition.js +1 -1
  18. package/shared/definition10.js +1 -1
  19. package/shared/definition12.js +1 -1
  20. package/shared/definition13.js +1 -1
  21. package/shared/definition14.js +1 -1
  22. package/shared/definition15.js +1 -1
  23. package/shared/definition17.js +3 -3
  24. package/shared/definition18.js +1 -1
  25. package/shared/definition19.js +1 -2
  26. package/shared/definition2.js +8 -7
  27. package/shared/definition20.js +1 -1
  28. package/shared/definition21.js +2 -2
  29. package/shared/definition22.js +1 -1
  30. package/shared/definition23.js +1 -1
  31. package/shared/definition24.js +1 -1
  32. package/shared/definition25.js +1 -1
  33. package/shared/definition27.js +1 -1
  34. package/shared/definition29.js +1 -1
  35. package/shared/definition31.js +1 -1
  36. package/shared/definition32.js +1 -1
  37. package/shared/definition33.js +1 -1
  38. package/shared/definition34.js +1 -1
  39. package/shared/definition35.js +1 -1
  40. package/shared/definition36.js +3 -3
  41. package/shared/definition37.js +1 -1
  42. package/shared/definition38.js +14 -8
  43. package/shared/definition39.js +1 -1
  44. package/shared/definition4.js +1 -1
  45. package/shared/definition41.js +1 -1
  46. package/shared/definition42.js +1 -1
  47. package/shared/definition44.js +1 -1
  48. package/shared/definition45.js +90 -250
  49. package/shared/definition46.js +20 -112
  50. package/shared/definition47.js +265 -65
  51. package/shared/definition48.js +98 -58
  52. package/shared/definition49.js +67 -295
  53. package/shared/definition5.js +1 -1
  54. package/shared/definition50.js +79 -0
  55. package/shared/definition51.js +305 -0
  56. package/shared/definition6.js +1 -1
  57. package/shared/definition7.js +1 -1
  58. package/shared/definition8.js +1 -1
  59. package/shared/definition9.js +1 -1
  60. package/shared/form-elements.js +1 -1
  61. package/shared/icon.js +1 -1
  62. package/shared/patterns/form-elements/form-elements.d.ts +2 -2
  63. package/shared/text-field.js +1 -1
  64. package/styles/core/all.css +1 -1
  65. package/styles/core/theme.css +1 -1
  66. package/styles/core/typography.css +1 -1
  67. package/styles/fonts/spezia-variable.css +31 -0
  68. package/styles/tokens/theme-dark.css +4 -4
  69. package/styles/tokens/theme-light.css +4 -4
  70. package/tag/index.js +16 -0
  71. package/tag-group/index.js +5 -0
  72. package/text-area/index.js +1 -2
  73. package/text-field/index.js +1 -1
  74. package/tooltip/index.js +1 -1
  75. package/tree-item/index.js +1 -1
  76. package/tree-view/index.js +1 -1
  77. package/vivid.api.json +394 -1
@@ -10,6 +10,12 @@
10
10
  "kind": "class",
11
11
  "description": "Base class for accordion",
12
12
  "name": "Accordion",
13
+ "slots": [
14
+ {
15
+ "description": "Default slot.",
16
+ "name": ""
17
+ }
18
+ ],
13
19
  "members": [
14
20
  {
15
21
  "kind": "field",
@@ -90,6 +96,12 @@
90
96
  "kind": "class",
91
97
  "description": "",
92
98
  "name": "AccordionItem",
99
+ "slots": [
100
+ {
101
+ "description": "Default slot.",
102
+ "name": ""
103
+ }
104
+ ],
93
105
  "members": [
94
106
  {
95
107
  "kind": "field",
@@ -118,6 +130,15 @@
118
130
  },
119
131
  "privacy": "public",
120
132
  "description": ""
133
+ },
134
+ {
135
+ "kind": "field",
136
+ "name": "size",
137
+ "type": {
138
+ "text": "AccordionItemSize | undefined"
139
+ },
140
+ "description": "The size the accordion-item should have.",
141
+ "privacy": "public"
121
142
  }
122
143
  ],
123
144
  "attributes": [
@@ -143,6 +164,14 @@
143
164
  "text": "string | undefined"
144
165
  },
145
166
  "fieldName": "meta"
167
+ },
168
+ {
169
+ "name": "size",
170
+ "type": {
171
+ "text": "AccordionItemSize | undefined"
172
+ },
173
+ "description": "The size the accordion-item should have.",
174
+ "fieldName": "size"
146
175
  }
147
176
  ],
148
177
  "superclass": {
@@ -197,6 +226,12 @@
197
226
  "kind": "class",
198
227
  "description": "Base class for action-group",
199
228
  "name": "ActionGroup",
229
+ "slots": [
230
+ {
231
+ "description": "Default slot.",
232
+ "name": ""
233
+ }
234
+ ],
200
235
  "members": [
201
236
  {
202
237
  "kind": "field",
@@ -351,6 +386,12 @@
351
386
  "kind": "class",
352
387
  "description": "",
353
388
  "name": "Avatar",
389
+ "slots": [
390
+ {
391
+ "description": "Assign nodes to the graphic slot to set a graphic media of any kind (e.g. image, illustration etc).",
392
+ "name": "graphic"
393
+ }
394
+ ],
354
395
  "members": [
355
396
  {
356
397
  "kind": "field",
@@ -702,6 +743,12 @@
702
743
  "kind": "class",
703
744
  "description": "Base class for banner",
704
745
  "name": "Banner",
746
+ "slots": [
747
+ {
748
+ "description": "Add action items to banner using this slot.",
749
+ "name": "action-items"
750
+ }
751
+ ],
705
752
  "members": [
706
753
  {
707
754
  "kind": "field",
@@ -889,6 +936,12 @@
889
936
  "kind": "class",
890
937
  "description": "Base class for breadcrumb",
891
938
  "name": "Breadcrumb",
939
+ "slots": [
940
+ {
941
+ "description": "Default slot.",
942
+ "name": ""
943
+ }
944
+ ],
892
945
  "superclass": {
893
946
  "name": "FoundationElement",
894
947
  "package": "@microsoft/fast-foundation"
@@ -1222,6 +1275,40 @@
1222
1275
  "kind": "class",
1223
1276
  "description": "Base class for calendar",
1224
1277
  "name": "Calendar",
1278
+ "slots": [
1279
+ {
1280
+ "description": "Default slot.",
1281
+ "name": ""
1282
+ },
1283
+ {
1284
+ "description": "Assign elements to corresponding day column using this slot.",
1285
+ "name": "day-0"
1286
+ },
1287
+ {
1288
+ "description": "Assign elements to corresponding day column using this slot.",
1289
+ "name": "day-1"
1290
+ },
1291
+ {
1292
+ "description": "Assign elements to corresponding day column using this slot.",
1293
+ "name": "day-2"
1294
+ },
1295
+ {
1296
+ "description": "Assign elements to corresponding day column using this slot.",
1297
+ "name": "day-3"
1298
+ },
1299
+ {
1300
+ "description": "Assign elements to corresponding day column using this slot.",
1301
+ "name": "day-4"
1302
+ },
1303
+ {
1304
+ "description": "Assign elements to corresponding day column using this slot.",
1305
+ "name": "day-5"
1306
+ },
1307
+ {
1308
+ "description": "Assign elements to corresponding day column using this slot.",
1309
+ "name": "day-6"
1310
+ }
1311
+ ],
1225
1312
  "members": [
1226
1313
  {
1227
1314
  "kind": "field",
@@ -1624,6 +1711,28 @@
1624
1711
  "kind": "class",
1625
1712
  "description": "Base class for card",
1626
1713
  "name": "Card",
1714
+ "slots": [
1715
+ {
1716
+ "description": "The graphic slot overrides the icon property.",
1717
+ "name": "graphic"
1718
+ },
1719
+ {
1720
+ "description": "The media slot is mainly for images or video content above the card header.",
1721
+ "name": "media"
1722
+ },
1723
+ {
1724
+ "description": "The meta slot is for action content in the card header.",
1725
+ "name": "meta"
1726
+ },
1727
+ {
1728
+ "description": "The footer slot is for content in the card footer.",
1729
+ "name": "footer"
1730
+ },
1731
+ {
1732
+ "description": "Assign nodes to main slot to fully override a card's predefined flow and style with your own.",
1733
+ "name": "main"
1734
+ }
1735
+ ],
1627
1736
  "members": [
1628
1737
  {
1629
1738
  "kind": "field",
@@ -1868,6 +1977,12 @@
1868
1977
  "kind": "class",
1869
1978
  "description": "Base class for combobox",
1870
1979
  "name": "Combobox",
1980
+ "slots": [
1981
+ {
1982
+ "description": "Default slot.",
1983
+ "name": ""
1984
+ }
1985
+ ],
1871
1986
  "members": [
1872
1987
  {
1873
1988
  "kind": "field",
@@ -2160,6 +2275,12 @@
2160
2275
  "kind": "class",
2161
2276
  "description": "Base class for data-grid",
2162
2277
  "name": "DataGrid",
2278
+ "slots": [
2279
+ {
2280
+ "description": "Default slot.",
2281
+ "name": ""
2282
+ }
2283
+ ],
2163
2284
  "members": [
2164
2285
  {
2165
2286
  "kind": "field",
@@ -2325,6 +2446,24 @@
2325
2446
  "kind": "class",
2326
2447
  "description": "Base class for dialog",
2327
2448
  "name": "Dialog",
2449
+ "slots": [
2450
+ {
2451
+ "description": "Use the graphic slot in order to replace the icon.",
2452
+ "name": "graphic"
2453
+ },
2454
+ {
2455
+ "description": "Use the body slot in order to add custom HTML to the dialog.",
2456
+ "name": "body"
2457
+ },
2458
+ {
2459
+ "description": "Use the footer slot in order to add action buttons to the bottom of the dialog.",
2460
+ "name": "footer"
2461
+ },
2462
+ {
2463
+ "description": "Assign nodes to the main slot to fully override a dialog’s predefined flow and style with your own.",
2464
+ "name": "main"
2465
+ }
2466
+ ],
2328
2467
  "members": [
2329
2468
  {
2330
2469
  "kind": "field",
@@ -2665,6 +2804,12 @@
2665
2804
  "kind": "class",
2666
2805
  "description": "Base class for elevation",
2667
2806
  "name": "Elevation",
2807
+ "slots": [
2808
+ {
2809
+ "description": "Default slot.",
2810
+ "name": ""
2811
+ }
2812
+ ],
2668
2813
  "members": [
2669
2814
  {
2670
2815
  "kind": "field",
@@ -2969,6 +3114,20 @@
2969
3114
  "kind": "class",
2970
3115
  "description": "Base class for header",
2971
3116
  "name": "Header",
3117
+ "slots": [
3118
+ {
3119
+ "description": "Default slot.",
3120
+ "name": ""
3121
+ },
3122
+ {
3123
+ "description": "Nodes assigned to action-items slot will be set at the end of the header.",
3124
+ "name": "action-items"
3125
+ },
3126
+ {
3127
+ "description": "Content vertically aligned with header.",
3128
+ "name": "app-content"
3129
+ }
3130
+ ],
2972
3131
  "members": [
2973
3132
  {
2974
3133
  "kind": "field",
@@ -3103,6 +3262,12 @@
3103
3262
  "kind": "class",
3104
3263
  "description": "",
3105
3264
  "name": "Icon",
3265
+ "slots": [
3266
+ {
3267
+ "description": "Default slot.",
3268
+ "name": ""
3269
+ }
3270
+ ],
3106
3271
  "members": [
3107
3272
  {
3108
3273
  "kind": "field",
@@ -3260,6 +3425,12 @@
3260
3425
  "cssProperties": [
3261
3426
  {}
3262
3427
  ],
3428
+ "slots": [
3429
+ {
3430
+ "description": "Default slot.",
3431
+ "name": ""
3432
+ }
3433
+ ],
3263
3434
  "members": [
3264
3435
  {
3265
3436
  "kind": "field",
@@ -3405,6 +3576,12 @@
3405
3576
  "kind": "class",
3406
3577
  "description": "Base class for listbox",
3407
3578
  "name": "Listbox",
3579
+ "slots": [
3580
+ {
3581
+ "description": "Default slot.",
3582
+ "name": ""
3583
+ }
3584
+ ],
3408
3585
  "members": [
3409
3586
  {
3410
3587
  "kind": "field",
@@ -3499,6 +3676,12 @@
3499
3676
  "kind": "class",
3500
3677
  "description": "Base class for menu",
3501
3678
  "name": "Menu",
3679
+ "slots": [
3680
+ {
3681
+ "description": "Default slot.",
3682
+ "name": ""
3683
+ }
3684
+ ],
3502
3685
  "members": [
3503
3686
  {
3504
3687
  "kind": "field",
@@ -3752,6 +3935,12 @@
3752
3935
  "kind": "class",
3753
3936
  "description": "A Nav Item Custom HTML Element.\nBased largely on the https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a | <a> element .",
3754
3937
  "name": "Nav",
3938
+ "slots": [
3939
+ {
3940
+ "description": "Default slot.",
3941
+ "name": ""
3942
+ }
3943
+ ],
3755
3944
  "superclass": {
3756
3945
  "name": "FoundationElement",
3757
3946
  "package": "@microsoft/fast-foundation"
@@ -3817,6 +4006,12 @@
3817
4006
  "kind": "class",
3818
4007
  "description": "A Nav Item Custom HTML Element.\nBased largely on the https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a | <a> element .",
3819
4008
  "name": "NavDisclosure",
4009
+ "slots": [
4010
+ {
4011
+ "description": "Default slot.",
4012
+ "name": ""
4013
+ }
4014
+ ],
3820
4015
  "members": [
3821
4016
  {
3822
4017
  "kind": "field",
@@ -4034,6 +4229,12 @@
4034
4229
  "kind": "class",
4035
4230
  "description": "Base class for note",
4036
4231
  "name": "Note",
4232
+ "slots": [
4233
+ {
4234
+ "description": "Any slotted content will appear below the headline.",
4235
+ "name": ""
4236
+ }
4237
+ ],
4037
4238
  "members": [
4038
4239
  {
4039
4240
  "kind": "field",
@@ -4403,6 +4604,12 @@
4403
4604
  "kind": "class",
4404
4605
  "description": "Base class for popup",
4405
4606
  "name": "Popup",
4607
+ "slots": [
4608
+ {
4609
+ "description": "Default slot.",
4610
+ "name": ""
4611
+ }
4612
+ ],
4406
4613
  "members": [
4407
4614
  {
4408
4615
  "kind": "field",
@@ -5072,6 +5279,12 @@
5072
5279
  "kind": "class",
5073
5280
  "description": "Base class for radio-group",
5074
5281
  "name": "RadioGroup",
5282
+ "slots": [
5283
+ {
5284
+ "description": "Default slot.",
5285
+ "name": ""
5286
+ }
5287
+ ],
5075
5288
  "members": [
5076
5289
  {
5077
5290
  "kind": "field",
@@ -5174,6 +5387,12 @@
5174
5387
  "kind": "class",
5175
5388
  "description": "Base class for select",
5176
5389
  "name": "Select",
5390
+ "slots": [
5391
+ {
5392
+ "description": "Default slot.",
5393
+ "name": ""
5394
+ }
5395
+ ],
5177
5396
  "members": [
5178
5397
  {
5179
5398
  "kind": "field",
@@ -5293,6 +5512,16 @@
5293
5512
  "kind": "class",
5294
5513
  "description": "Base class for side-drawer",
5295
5514
  "name": "SideDrawer",
5515
+ "slots": [
5516
+ {
5517
+ "description": "Sets assigned nodes to the side drawer itself.",
5518
+ "name": ""
5519
+ },
5520
+ {
5521
+ "description": "Sets assigned nodes to the main application content, the side drawer is opened next to.",
5522
+ "name": "app-content"
5523
+ }
5524
+ ],
5296
5525
  "members": [
5297
5526
  {
5298
5527
  "kind": "field",
@@ -5764,6 +5993,12 @@
5764
5993
  "kind": "class",
5765
5994
  "description": "Base class for tab-panel",
5766
5995
  "name": "TabPanel",
5996
+ "slots": [
5997
+ {
5998
+ "description": "Default slot.",
5999
+ "name": ""
6000
+ }
6001
+ ],
5767
6002
  "superclass": {
5768
6003
  "name": "FoundationTabPanel",
5769
6004
  "package": "@microsoft/fast-foundation"
@@ -5837,6 +6072,12 @@
5837
6072
  "kind": "class",
5838
6073
  "description": "Base class for tabs",
5839
6074
  "name": "Tabs",
6075
+ "slots": [
6076
+ {
6077
+ "description": "Default slot.",
6078
+ "name": ""
6079
+ }
6080
+ ],
5840
6081
  "members": [
5841
6082
  {
5842
6083
  "kind": "field",
@@ -5926,6 +6167,338 @@
5926
6167
  }
5927
6168
  ]
5928
6169
  },
6170
+ {
6171
+ "kind": "javascript-module",
6172
+ "path": "libs/components/src/lib/tag/definition.ts",
6173
+ "declarations": [
6174
+ {
6175
+ "kind": "variable",
6176
+ "name": "tagDefinition",
6177
+ "description": "Represents a tag custom element.\ntag is a label that holds small amounts of information.\nA tag can be used to display unread notifications, or to label a block of text."
6178
+ },
6179
+ {
6180
+ "kind": "variable",
6181
+ "name": "registerTag",
6182
+ "description": "Registers the tag elements with the design system.",
6183
+ "parameters": [
6184
+ {
6185
+ "description": "the prefix to use for the component name",
6186
+ "name": "prefix"
6187
+ }
6188
+ ]
6189
+ }
6190
+ ],
6191
+ "exports": [
6192
+ {
6193
+ "kind": "js",
6194
+ "name": "TagConnotation",
6195
+ "declaration": {
6196
+ "name": "TagConnotation",
6197
+ "module": "./tag"
6198
+ }
6199
+ },
6200
+ {
6201
+ "kind": "js",
6202
+ "name": "TagAppearance",
6203
+ "declaration": {
6204
+ "name": "TagAppearance",
6205
+ "module": "./tag"
6206
+ }
6207
+ },
6208
+ {
6209
+ "kind": "js",
6210
+ "name": "TagShape",
6211
+ "declaration": {
6212
+ "name": "TagShape",
6213
+ "module": "./tag"
6214
+ }
6215
+ },
6216
+ {
6217
+ "kind": "js",
6218
+ "name": "tagDefinition",
6219
+ "declaration": {
6220
+ "name": "tagDefinition",
6221
+ "module": "libs/components/src/lib/tag/definition.ts"
6222
+ }
6223
+ },
6224
+ {
6225
+ "kind": "js",
6226
+ "name": "registerTag",
6227
+ "declaration": {
6228
+ "name": "registerTag",
6229
+ "module": "libs/components/src/lib/tag/definition.ts"
6230
+ }
6231
+ }
6232
+ ]
6233
+ },
6234
+ {
6235
+ "kind": "javascript-module",
6236
+ "path": "libs/components/src/lib/tag/tag.ts",
6237
+ "declarations": [
6238
+ {
6239
+ "kind": "class",
6240
+ "description": "Base class for tag.",
6241
+ "name": "Tag",
6242
+ "members": [
6243
+ {
6244
+ "kind": "field",
6245
+ "name": "connotation",
6246
+ "type": {
6247
+ "text": "TagConnotation | undefined"
6248
+ },
6249
+ "description": "The connotation the tag should have.",
6250
+ "privacy": "public"
6251
+ },
6252
+ {
6253
+ "kind": "field",
6254
+ "name": "shape",
6255
+ "type": {
6256
+ "text": "TagShape | undefined"
6257
+ },
6258
+ "description": "The shape the tag should have.",
6259
+ "privacy": "public"
6260
+ },
6261
+ {
6262
+ "kind": "field",
6263
+ "name": "appearance",
6264
+ "type": {
6265
+ "text": "TagAppearance | undefined"
6266
+ },
6267
+ "description": "The appearance the tag should have.",
6268
+ "privacy": "public"
6269
+ },
6270
+ {
6271
+ "kind": "field",
6272
+ "name": "label",
6273
+ "type": {
6274
+ "text": "string | undefined"
6275
+ },
6276
+ "description": "Indicates the tag's label.",
6277
+ "privacy": "public"
6278
+ },
6279
+ {
6280
+ "kind": "field",
6281
+ "name": "removable",
6282
+ "type": {
6283
+ "text": "boolean"
6284
+ },
6285
+ "default": "false",
6286
+ "description": "indicates whether the tag is removable",
6287
+ "privacy": "public"
6288
+ },
6289
+ {
6290
+ "kind": "field",
6291
+ "name": "disabled",
6292
+ "type": {
6293
+ "text": "boolean"
6294
+ },
6295
+ "default": "false",
6296
+ "description": "indicates whether the tag is disabled",
6297
+ "privacy": "public"
6298
+ },
6299
+ {
6300
+ "kind": "field",
6301
+ "name": "selectable",
6302
+ "type": {
6303
+ "text": "boolean"
6304
+ },
6305
+ "default": "false",
6306
+ "description": "indicates whether the tag is selectable",
6307
+ "privacy": "public"
6308
+ },
6309
+ {
6310
+ "kind": "field",
6311
+ "name": "selected",
6312
+ "type": {
6313
+ "text": "boolean"
6314
+ },
6315
+ "default": "false",
6316
+ "description": "indicates whether the tag is selected",
6317
+ "privacy": "public"
6318
+ },
6319
+ {
6320
+ "kind": "method",
6321
+ "name": "remove",
6322
+ "return": {
6323
+ "type": {
6324
+ "text": "void"
6325
+ }
6326
+ }
6327
+ },
6328
+ {
6329
+ "kind": "field",
6330
+ "name": "#select",
6331
+ "privacy": "private"
6332
+ },
6333
+ {
6334
+ "kind": "method",
6335
+ "name": "handleKeydown",
6336
+ "parameters": [
6337
+ {
6338
+ "name": "e",
6339
+ "type": {
6340
+ "text": "KeyboardEvent"
6341
+ }
6342
+ }
6343
+ ]
6344
+ },
6345
+ {
6346
+ "kind": "method",
6347
+ "name": "handleClick",
6348
+ "return": {
6349
+ "type": {
6350
+ "text": "void"
6351
+ }
6352
+ }
6353
+ }
6354
+ ],
6355
+ "attributes": [
6356
+ {
6357
+ "name": "connotation",
6358
+ "type": {
6359
+ "text": "TagConnotation | undefined"
6360
+ },
6361
+ "description": "The connotation the tag should have.",
6362
+ "fieldName": "connotation"
6363
+ },
6364
+ {
6365
+ "name": "shape",
6366
+ "type": {
6367
+ "text": "TagShape | undefined"
6368
+ },
6369
+ "description": "The shape the tag should have.",
6370
+ "fieldName": "shape"
6371
+ },
6372
+ {
6373
+ "name": "appearance",
6374
+ "type": {
6375
+ "text": "TagAppearance | undefined"
6376
+ },
6377
+ "description": "The appearance the tag should have.",
6378
+ "fieldName": "appearance"
6379
+ },
6380
+ {
6381
+ "name": "label",
6382
+ "type": {
6383
+ "text": "string | undefined"
6384
+ },
6385
+ "description": "Indicates the tag's label.",
6386
+ "fieldName": "label"
6387
+ },
6388
+ {
6389
+ "type": {
6390
+ "text": "boolean"
6391
+ },
6392
+ "default": "false",
6393
+ "description": "indicates whether the tag is removable",
6394
+ "fieldName": "removable"
6395
+ },
6396
+ {
6397
+ "type": {
6398
+ "text": "boolean"
6399
+ },
6400
+ "default": "false",
6401
+ "description": "indicates whether the tag is disabled",
6402
+ "fieldName": "disabled"
6403
+ },
6404
+ {
6405
+ "type": {
6406
+ "text": "boolean"
6407
+ },
6408
+ "default": "false",
6409
+ "description": "indicates whether the tag is selectable",
6410
+ "fieldName": "selectable"
6411
+ },
6412
+ {
6413
+ "type": {
6414
+ "text": "boolean"
6415
+ },
6416
+ "default": "false",
6417
+ "description": "indicates whether the tag is selected",
6418
+ "fieldName": "selected"
6419
+ }
6420
+ ],
6421
+ "superclass": {
6422
+ "name": "FoundationElement",
6423
+ "package": "@microsoft/fast-foundation"
6424
+ }
6425
+ }
6426
+ ],
6427
+ "exports": [
6428
+ {
6429
+ "kind": "js",
6430
+ "name": "Tag",
6431
+ "declaration": {
6432
+ "name": "Tag",
6433
+ "module": "libs/components/src/lib/tag/tag.ts"
6434
+ }
6435
+ }
6436
+ ]
6437
+ },
6438
+ {
6439
+ "kind": "javascript-module",
6440
+ "path": "libs/components/src/lib/tag-group/definition.ts",
6441
+ "declarations": [
6442
+ {
6443
+ "kind": "variable",
6444
+ "name": "tagGroupDefinition"
6445
+ },
6446
+ {
6447
+ "kind": "variable",
6448
+ "name": "registerTagGroup",
6449
+ "description": "Registers the tag-group element with the design system.",
6450
+ "parameters": [
6451
+ {
6452
+ "description": "the prefix to use for the component name",
6453
+ "name": "prefix"
6454
+ }
6455
+ ]
6456
+ }
6457
+ ],
6458
+ "exports": [
6459
+ {
6460
+ "kind": "js",
6461
+ "name": "tagGroupDefinition",
6462
+ "declaration": {
6463
+ "name": "tagGroupDefinition",
6464
+ "module": "libs/components/src/lib/tag-group/definition.ts"
6465
+ }
6466
+ },
6467
+ {
6468
+ "kind": "js",
6469
+ "name": "registerTagGroup",
6470
+ "declaration": {
6471
+ "name": "registerTagGroup",
6472
+ "module": "libs/components/src/lib/tag-group/definition.ts"
6473
+ }
6474
+ }
6475
+ ]
6476
+ },
6477
+ {
6478
+ "kind": "javascript-module",
6479
+ "path": "libs/components/src/lib/tag-group/tag-group.ts",
6480
+ "declarations": [
6481
+ {
6482
+ "kind": "class",
6483
+ "description": "Base class for tag-group",
6484
+ "name": "TagGroup",
6485
+ "superclass": {
6486
+ "name": "FoundationElement",
6487
+ "package": "@microsoft/fast-foundation"
6488
+ }
6489
+ }
6490
+ ],
6491
+ "exports": [
6492
+ {
6493
+ "kind": "js",
6494
+ "name": "TagGroup",
6495
+ "declaration": {
6496
+ "name": "TagGroup",
6497
+ "module": "libs/components/src/lib/tag-group/tag-group.ts"
6498
+ }
6499
+ }
6500
+ ]
6501
+ },
5929
6502
  {
5930
6503
  "kind": "javascript-module",
5931
6504
  "path": "libs/components/src/lib/text-anchor/definition.ts",
@@ -6738,6 +7311,12 @@
6738
7311
  "kind": "class",
6739
7312
  "description": "Base class for tree-item",
6740
7313
  "name": "TreeItem",
7314
+ "slots": [
7315
+ {
7316
+ "description": "To specify a child tree item.",
7317
+ "name": "item"
7318
+ }
7319
+ ],
6741
7320
  "members": [
6742
7321
  {
6743
7322
  "kind": "field",
@@ -6823,6 +7402,12 @@
6823
7402
  "kind": "class",
6824
7403
  "description": "Base class for Tree View",
6825
7404
  "name": "TreeView",
7405
+ "slots": [
7406
+ {
7407
+ "description": "Default slot.",
7408
+ "name": ""
7409
+ }
7410
+ ],
6826
7411
  "superclass": {
6827
7412
  "name": "FastTreeView",
6828
7413
  "package": "@microsoft/fast-foundation"