@vonage/vivid 3.0.0-next.119 → 3.0.0-next.120
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/README.md +11 -6
- package/accordion/index.js +4 -51
- package/accordion-item/index.js +11 -109
- package/action-group/index.js +4 -36
- package/avatar/index.js +8 -64
- package/badge/index.js +9 -48
- package/banner/index.js +15 -117
- package/breadcrumb/index.js +5 -97
- package/breadcrumb-item/index.js +14 -53
- package/button/index.js +14 -92
- package/calendar/index.js +5 -1520
- package/calendar-event/index.js +7 -107
- package/card/index.js +10 -117
- package/checkbox/index.js +13 -175
- package/custom-elements.json +1827 -8
- package/dialog/index.js +14 -227
- package/divider/index.js +4 -25
- package/elevation/index.js +4 -24
- package/fab/index.js +13 -89
- package/focus/index.js +4 -17
- package/header/index.js +7 -12
- package/icon/index.js +7 -28
- package/index.js +49 -55
- package/layout/index.js +4 -42
- package/lib/accordion/definition.d.ts +3 -0
- package/lib/accordion/index.d.ts +1 -2
- package/lib/accordion-item/definition.d.ts +3 -0
- package/lib/accordion-item/index.d.ts +1 -2
- package/lib/action-group/definition.d.ts +3 -0
- package/lib/action-group/index.d.ts +1 -2
- package/lib/avatar/definition.d.ts +3 -0
- package/lib/avatar/index.d.ts +1 -2
- package/lib/badge/definition.d.ts +3 -0
- package/lib/badge/index.d.ts +1 -2
- package/lib/banner/definition.d.ts +3 -0
- package/lib/banner/index.d.ts +1 -2
- package/lib/breadcrumb/definition.d.ts +3 -0
- package/lib/breadcrumb/index.d.ts +1 -2
- package/lib/breadcrumb-item/definition.d.ts +3 -0
- package/lib/breadcrumb-item/index.d.ts +1 -2
- package/lib/button/definition.d.ts +3 -0
- package/lib/calendar/definition.d.ts +3 -0
- package/lib/calendar/index.d.ts +1 -2
- package/lib/calendar-event/definition.d.ts +3 -0
- package/lib/calendar-event/index.d.ts +1 -2
- package/lib/card/definition.d.ts +3 -0
- package/lib/card/index.d.ts +1 -2
- package/lib/checkbox/definition.d.ts +3 -0
- package/lib/checkbox/index.d.ts +1 -2
- package/lib/components.d.ts +38 -38
- package/lib/dialog/definition.d.ts +3 -0
- package/lib/dialog/index.d.ts +1 -2
- package/lib/divider/definition.d.ts +3 -0
- package/lib/divider/index.d.ts +1 -2
- package/lib/elevation/definition.d.ts +3 -0
- package/lib/elevation/index.d.ts +1 -2
- package/lib/fab/definition.d.ts +3 -0
- package/lib/fab/index.d.ts +1 -2
- package/lib/focus/definition.d.ts +3 -0
- package/lib/focus/index.d.ts +1 -2
- package/lib/header/definition.d.ts +3 -0
- package/lib/header/index.d.ts +1 -2
- package/lib/icon/definition.d.ts +3 -0
- package/lib/icon/index.d.ts +1 -2
- package/lib/layout/definition.d.ts +3 -0
- package/lib/layout/index.d.ts +1 -2
- package/lib/listbox/definition.d.ts +3 -0
- package/lib/menu/definition.d.ts +7 -0
- package/lib/menu/index.d.ts +1 -10
- package/lib/menu-item/definition.d.ts +3 -0
- package/lib/menu-item/index.d.ts +1 -2
- package/lib/nav/definition.d.ts +3 -0
- package/lib/nav/index.d.ts +1 -2
- package/lib/nav-disclosure/definition.d.ts +3 -0
- package/lib/nav-disclosure/index.d.ts +1 -2
- package/lib/nav-item/definition.d.ts +3 -0
- package/lib/nav-item/index.d.ts +1 -2
- package/lib/note/definition.d.ts +3 -0
- package/lib/note/index.d.ts +1 -2
- package/lib/number-field/definition.d.ts +3 -0
- package/lib/number-field/index.d.ts +1 -2
- package/lib/option/definition.d.ts +3 -0
- package/lib/option/index.d.ts +1 -2
- package/lib/popup/definition.d.ts +4 -0
- package/lib/popup/index.d.ts +1 -2
- package/lib/progress/definition.d.ts +3 -0
- package/lib/progress/index.d.ts +1 -2
- package/lib/progress-ring/definition.d.ts +3 -0
- package/lib/progress-ring/index.d.ts +1 -2
- package/lib/radio/definition.d.ts +3 -0
- package/lib/radio/index.d.ts +1 -2
- package/lib/radio-group/definition.d.ts +7 -0
- package/lib/radio-group/index.d.ts +1 -10
- package/lib/side-drawer/definition.d.ts +3 -0
- package/lib/side-drawer/index.d.ts +1 -2
- package/lib/slider/definition.d.ts +3 -0
- package/lib/slider/index.d.ts +1 -2
- package/lib/switch/definition.d.ts +3 -0
- package/lib/switch/index.d.ts +1 -2
- package/lib/text-anchor/definition.d.ts +3 -0
- package/lib/text-anchor/index.d.ts +1 -2
- package/lib/text-area/definition.d.ts +3 -0
- package/lib/text-area/index.d.ts +1 -2
- package/lib/text-field/definition.d.ts +3 -0
- package/lib/text-field/index.d.ts +1 -2
- package/lib/tooltip/definition.d.ts +3 -0
- package/lib/tooltip/index.d.ts +1 -2
- package/listbox/index.js +18 -1080
- package/menu/index.js +27 -354
- package/menu-item/index.js +11 -81
- package/nav/index.js +3 -16
- package/nav-disclosure/index.js +13 -77
- package/nav-item/index.js +13 -35
- package/note/index.js +13 -60
- package/number-field/index.js +14 -16
- package/option/index.js +13 -68
- package/package.json +2 -2
- package/popup/index.js +17 -55
- package/progress/index.js +6 -92
- package/progress-ring/index.js +6 -75
- package/radio/index.js +8 -48
- package/radio-group/index.js +9 -433
- package/shared/anchor.js +1 -1
- package/shared/apply-mixins.js +1 -1
- package/shared/base-progress.js +1 -1
- package/shared/breadcrumb-item.js +1 -1
- package/shared/button.js +195 -18
- package/shared/calendar-event.js +1 -1
- package/shared/definition.js +53 -0
- package/shared/definition10.js +99 -0
- package/shared/definition11.js +48 -0
- package/shared/definition12.js +1523 -0
- package/shared/definition13.js +111 -0
- package/shared/definition14.js +114 -0
- package/shared/definition15.js +32 -0
- package/shared/definition16.js +172 -0
- package/shared/definition17.js +223 -0
- package/shared/{divider.js → definition18.js} +25 -2
- package/shared/definition19.js +87 -0
- package/shared/definition2.js +106 -0
- package/shared/definition20.js +44 -0
- package/shared/definition21.js +1078 -0
- package/shared/{listbox-option.js → definition22.js} +71 -11
- package/shared/definition23.js +348 -0
- package/shared/{popup.js → definition24.js} +46 -3
- package/shared/{menu-item.js → definition25.js} +87 -13
- package/shared/definition26.js +18 -0
- package/shared/definition27.js +75 -0
- package/shared/definition28.js +31 -0
- package/shared/definition29.js +56 -0
- package/shared/definition3.js +29 -0
- package/shared/definition30.js +94 -0
- package/shared/definition31.js +77 -0
- package/shared/definition32.js +45 -0
- package/shared/definition33.js +435 -0
- package/shared/definition34.js +86 -0
- package/shared/definition35.js +592 -0
- package/shared/definition36.js +147 -0
- package/shared/definition37.js +279 -0
- package/shared/definition38.js +119 -0
- package/shared/definition39.js +77 -0
- package/shared/definition4.js +19 -0
- package/shared/definition5.js +38 -0
- package/shared/definition6.js +60 -0
- package/shared/definition7.js +45 -0
- package/shared/definition8.js +113 -0
- package/shared/definition9.js +107 -0
- package/shared/design-system/index.d.ts +1 -2
- package/shared/es.object.assign.js +58 -1
- package/shared/es.regexp.to-string.js +2 -1
- package/shared/focus.js +3 -9
- package/shared/focus2.js +9 -3
- package/shared/form-associated.js +1 -1
- package/shared/form-elements.js +2 -2
- package/shared/icon.js +1096 -9
- package/shared/index.js +385 -2501
- package/shared/patterns/form-elements/form-elements.d.ts +2 -2
- package/shared/radio.js +1 -1
- package/shared/ref.js +1 -1
- package/shared/slotted.js +1 -1
- package/shared/string-trim.js +2 -1
- package/shared/text-anchor.template.js +1 -1
- package/shared/to-string.js +51 -0
- package/side-drawer/index.js +5 -84
- package/slider/index.js +14 -593
- package/styles/core/all.css +1 -1
- package/styles/core/theme.css +1 -1
- package/styles/core/typography.css +1 -1
- package/styles/tokens/theme-dark.css +4 -4
- package/styles/tokens/theme-light.css +4 -4
- package/switch/index.js +13 -149
- package/text-anchor/index.js +8 -7
- package/text-area/index.js +16 -282
- package/text-field/index.js +14 -121
- package/tooltip/index.js +24 -82
- package/vivid.api.json +1640 -850
- package/shared/button2.js +0 -200
- package/shared/elevation.js +0 -10
- package/shared/es.promise.resolve.js +0 -944
- package/shared/index2.js +0 -9
- package/shared/utils/index.d.ts +0 -1
package/vivid.api.json
CHANGED
|
@@ -174,81 +174,75 @@
|
|
|
174
174
|
"members": [
|
|
175
175
|
{
|
|
176
176
|
"kind": "Variable",
|
|
177
|
-
"canonicalReference": "@vonage/vivid!
|
|
177
|
+
"canonicalReference": "@vonage/vivid!accordionElements:var",
|
|
178
178
|
"docComment": "",
|
|
179
179
|
"excerptTokens": [
|
|
180
180
|
{
|
|
181
181
|
"kind": "Content",
|
|
182
|
-
"text": "
|
|
182
|
+
"text": "accordionElements: "
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"kind": "Content",
|
|
186
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
183
187
|
},
|
|
184
188
|
{
|
|
185
189
|
"kind": "Reference",
|
|
186
|
-
"text": "
|
|
187
|
-
"canonicalReference": "@microsoft/fast-foundation!
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
190
|
+
"text": "FoundationElementRegistry",
|
|
191
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementRegistry:class"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"kind": "Content",
|
|
195
|
+
"text": "<"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"kind": "Reference",
|
|
199
|
+
"text": "FoundationElementDefinition",
|
|
200
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"kind": "Content",
|
|
204
|
+
"text": ", import(\"@microsoft/fast-element\")."
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"kind": "Reference",
|
|
208
|
+
"text": "Constructable",
|
|
209
|
+
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
210
|
+
},
|
|
204
211
|
{
|
|
205
212
|
"kind": "Content",
|
|
206
|
-
"text": "
|
|
213
|
+
"text": "<import(\"@microsoft/fast-foundation\")."
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"kind": "Reference",
|
|
217
|
+
"text": "FoundationElement",
|
|
218
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElement:class"
|
|
207
219
|
},
|
|
208
220
|
{
|
|
209
221
|
"kind": "Content",
|
|
210
|
-
"text": "
|
|
222
|
+
"text": ">>[]"
|
|
211
223
|
}
|
|
212
224
|
],
|
|
213
|
-
"fileUrlPath": "../../dist/libs/components/
|
|
225
|
+
"fileUrlPath": "../../dist/libs/components/lib/accordion/definition.d.ts",
|
|
214
226
|
"isReadonly": true,
|
|
215
227
|
"releaseTag": "Public",
|
|
216
|
-
"name": "
|
|
228
|
+
"name": "accordionElements",
|
|
217
229
|
"variableTypeTokenRange": {
|
|
218
230
|
"startIndex": 1,
|
|
219
|
-
"endIndex":
|
|
231
|
+
"endIndex": 10
|
|
220
232
|
}
|
|
221
233
|
},
|
|
222
234
|
{
|
|
223
235
|
"kind": "Variable",
|
|
224
|
-
"canonicalReference": "@vonage/vivid!
|
|
236
|
+
"canonicalReference": "@vonage/vivid!accordionItemElements:var",
|
|
225
237
|
"docComment": "",
|
|
226
238
|
"excerptTokens": [
|
|
227
239
|
{
|
|
228
240
|
"kind": "Content",
|
|
229
|
-
"text": "
|
|
230
|
-
},
|
|
231
|
-
{
|
|
232
|
-
"kind": "Content",
|
|
233
|
-
"text": "(overrideDefinition?: import(\"@microsoft/fast-foundation\")."
|
|
234
|
-
},
|
|
235
|
-
{
|
|
236
|
-
"kind": "Reference",
|
|
237
|
-
"text": "OverrideFoundationElementDefinition",
|
|
238
|
-
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
239
|
-
},
|
|
240
|
-
{
|
|
241
|
-
"kind": "Content",
|
|
242
|
-
"text": "<"
|
|
243
|
-
},
|
|
244
|
-
{
|
|
245
|
-
"kind": "Reference",
|
|
246
|
-
"text": "FoundationElementDefinition",
|
|
247
|
-
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
241
|
+
"text": "accordionItemElements: "
|
|
248
242
|
},
|
|
249
243
|
{
|
|
250
244
|
"kind": "Content",
|
|
251
|
-
"text": "
|
|
245
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
252
246
|
},
|
|
253
247
|
{
|
|
254
248
|
"kind": "Reference",
|
|
@@ -284,48 +278,30 @@
|
|
|
284
278
|
},
|
|
285
279
|
{
|
|
286
280
|
"kind": "Content",
|
|
287
|
-
"text": ">>"
|
|
281
|
+
"text": ">>[]"
|
|
288
282
|
}
|
|
289
283
|
],
|
|
290
|
-
"fileUrlPath": "../../dist/libs/components/lib/accordion/
|
|
284
|
+
"fileUrlPath": "../../dist/libs/components/lib/accordion-item/definition.d.ts",
|
|
291
285
|
"isReadonly": true,
|
|
292
286
|
"releaseTag": "Public",
|
|
293
|
-
"name": "
|
|
287
|
+
"name": "accordionItemElements",
|
|
294
288
|
"variableTypeTokenRange": {
|
|
295
289
|
"startIndex": 1,
|
|
296
|
-
"endIndex":
|
|
290
|
+
"endIndex": 10
|
|
297
291
|
}
|
|
298
292
|
},
|
|
299
293
|
{
|
|
300
294
|
"kind": "Variable",
|
|
301
|
-
"canonicalReference": "@vonage/vivid!
|
|
295
|
+
"canonicalReference": "@vonage/vivid!actionGroupElements:var",
|
|
302
296
|
"docComment": "",
|
|
303
297
|
"excerptTokens": [
|
|
304
298
|
{
|
|
305
299
|
"kind": "Content",
|
|
306
|
-
"text": "
|
|
307
|
-
},
|
|
308
|
-
{
|
|
309
|
-
"kind": "Content",
|
|
310
|
-
"text": "(overrideDefinition?: import(\"@microsoft/fast-foundation\")."
|
|
311
|
-
},
|
|
312
|
-
{
|
|
313
|
-
"kind": "Reference",
|
|
314
|
-
"text": "OverrideFoundationElementDefinition",
|
|
315
|
-
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
316
|
-
},
|
|
317
|
-
{
|
|
318
|
-
"kind": "Content",
|
|
319
|
-
"text": "<"
|
|
320
|
-
},
|
|
321
|
-
{
|
|
322
|
-
"kind": "Reference",
|
|
323
|
-
"text": "FoundationElementDefinition",
|
|
324
|
-
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
300
|
+
"text": "actionGroupElements: "
|
|
325
301
|
},
|
|
326
302
|
{
|
|
327
303
|
"kind": "Content",
|
|
328
|
-
"text": "
|
|
304
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
329
305
|
},
|
|
330
306
|
{
|
|
331
307
|
"kind": "Reference",
|
|
@@ -361,48 +337,30 @@
|
|
|
361
337
|
},
|
|
362
338
|
{
|
|
363
339
|
"kind": "Content",
|
|
364
|
-
"text": ">>"
|
|
340
|
+
"text": ">>[]"
|
|
365
341
|
}
|
|
366
342
|
],
|
|
367
|
-
"fileUrlPath": "../../dist/libs/components/lib/
|
|
343
|
+
"fileUrlPath": "../../dist/libs/components/lib/action-group/definition.d.ts",
|
|
368
344
|
"isReadonly": true,
|
|
369
345
|
"releaseTag": "Public",
|
|
370
|
-
"name": "
|
|
346
|
+
"name": "actionGroupElements",
|
|
371
347
|
"variableTypeTokenRange": {
|
|
372
348
|
"startIndex": 1,
|
|
373
|
-
"endIndex":
|
|
349
|
+
"endIndex": 10
|
|
374
350
|
}
|
|
375
351
|
},
|
|
376
352
|
{
|
|
377
353
|
"kind": "Variable",
|
|
378
|
-
"canonicalReference": "@vonage/vivid!
|
|
354
|
+
"canonicalReference": "@vonage/vivid!avatarElements:var",
|
|
379
355
|
"docComment": "",
|
|
380
356
|
"excerptTokens": [
|
|
381
357
|
{
|
|
382
358
|
"kind": "Content",
|
|
383
|
-
"text": "
|
|
384
|
-
},
|
|
385
|
-
{
|
|
386
|
-
"kind": "Content",
|
|
387
|
-
"text": "(overrideDefinition?: import(\"@microsoft/fast-foundation\")."
|
|
388
|
-
},
|
|
389
|
-
{
|
|
390
|
-
"kind": "Reference",
|
|
391
|
-
"text": "OverrideFoundationElementDefinition",
|
|
392
|
-
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
393
|
-
},
|
|
394
|
-
{
|
|
395
|
-
"kind": "Content",
|
|
396
|
-
"text": "<"
|
|
397
|
-
},
|
|
398
|
-
{
|
|
399
|
-
"kind": "Reference",
|
|
400
|
-
"text": "FoundationElementDefinition",
|
|
401
|
-
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
359
|
+
"text": "avatarElements: "
|
|
402
360
|
},
|
|
403
361
|
{
|
|
404
362
|
"kind": "Content",
|
|
405
|
-
"text": "
|
|
363
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
406
364
|
},
|
|
407
365
|
{
|
|
408
366
|
"kind": "Reference",
|
|
@@ -438,48 +396,30 @@
|
|
|
438
396
|
},
|
|
439
397
|
{
|
|
440
398
|
"kind": "Content",
|
|
441
|
-
"text": ">>"
|
|
399
|
+
"text": ">>[]"
|
|
442
400
|
}
|
|
443
401
|
],
|
|
444
|
-
"fileUrlPath": "../../dist/libs/components/lib/
|
|
402
|
+
"fileUrlPath": "../../dist/libs/components/lib/avatar/definition.d.ts",
|
|
445
403
|
"isReadonly": true,
|
|
446
404
|
"releaseTag": "Public",
|
|
447
|
-
"name": "
|
|
405
|
+
"name": "avatarElements",
|
|
448
406
|
"variableTypeTokenRange": {
|
|
449
407
|
"startIndex": 1,
|
|
450
|
-
"endIndex":
|
|
408
|
+
"endIndex": 10
|
|
451
409
|
}
|
|
452
410
|
},
|
|
453
411
|
{
|
|
454
412
|
"kind": "Variable",
|
|
455
|
-
"canonicalReference": "@vonage/vivid!
|
|
413
|
+
"canonicalReference": "@vonage/vivid!badgeElements:var",
|
|
456
414
|
"docComment": "",
|
|
457
415
|
"excerptTokens": [
|
|
458
416
|
{
|
|
459
417
|
"kind": "Content",
|
|
460
|
-
"text": "
|
|
461
|
-
},
|
|
462
|
-
{
|
|
463
|
-
"kind": "Content",
|
|
464
|
-
"text": "(overrideDefinition?: import(\"@microsoft/fast-foundation\")."
|
|
465
|
-
},
|
|
466
|
-
{
|
|
467
|
-
"kind": "Reference",
|
|
468
|
-
"text": "OverrideFoundationElementDefinition",
|
|
469
|
-
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
470
|
-
},
|
|
471
|
-
{
|
|
472
|
-
"kind": "Content",
|
|
473
|
-
"text": "<"
|
|
474
|
-
},
|
|
475
|
-
{
|
|
476
|
-
"kind": "Reference",
|
|
477
|
-
"text": "FoundationElementDefinition",
|
|
478
|
-
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
418
|
+
"text": "badgeElements: "
|
|
479
419
|
},
|
|
480
420
|
{
|
|
481
421
|
"kind": "Content",
|
|
482
|
-
"text": "
|
|
422
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
483
423
|
},
|
|
484
424
|
{
|
|
485
425
|
"kind": "Reference",
|
|
@@ -515,48 +455,30 @@
|
|
|
515
455
|
},
|
|
516
456
|
{
|
|
517
457
|
"kind": "Content",
|
|
518
|
-
"text": ">>"
|
|
458
|
+
"text": ">>[]"
|
|
519
459
|
}
|
|
520
460
|
],
|
|
521
|
-
"fileUrlPath": "../../dist/libs/components/lib/
|
|
461
|
+
"fileUrlPath": "../../dist/libs/components/lib/badge/definition.d.ts",
|
|
522
462
|
"isReadonly": true,
|
|
523
463
|
"releaseTag": "Public",
|
|
524
|
-
"name": "
|
|
464
|
+
"name": "badgeElements",
|
|
525
465
|
"variableTypeTokenRange": {
|
|
526
466
|
"startIndex": 1,
|
|
527
|
-
"endIndex":
|
|
467
|
+
"endIndex": 10
|
|
528
468
|
}
|
|
529
469
|
},
|
|
530
470
|
{
|
|
531
471
|
"kind": "Variable",
|
|
532
|
-
"canonicalReference": "@vonage/vivid!
|
|
472
|
+
"canonicalReference": "@vonage/vivid!bannerElements:var",
|
|
533
473
|
"docComment": "",
|
|
534
474
|
"excerptTokens": [
|
|
535
475
|
{
|
|
536
476
|
"kind": "Content",
|
|
537
|
-
"text": "
|
|
538
|
-
},
|
|
539
|
-
{
|
|
540
|
-
"kind": "Content",
|
|
541
|
-
"text": "(overrideDefinition?: import(\"@microsoft/fast-foundation\")."
|
|
542
|
-
},
|
|
543
|
-
{
|
|
544
|
-
"kind": "Reference",
|
|
545
|
-
"text": "OverrideFoundationElementDefinition",
|
|
546
|
-
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
547
|
-
},
|
|
548
|
-
{
|
|
549
|
-
"kind": "Content",
|
|
550
|
-
"text": "<"
|
|
551
|
-
},
|
|
552
|
-
{
|
|
553
|
-
"kind": "Reference",
|
|
554
|
-
"text": "FoundationElementDefinition",
|
|
555
|
-
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
477
|
+
"text": "bannerElements: "
|
|
556
478
|
},
|
|
557
479
|
{
|
|
558
480
|
"kind": "Content",
|
|
559
|
-
"text": "
|
|
481
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
560
482
|
},
|
|
561
483
|
{
|
|
562
484
|
"kind": "Reference",
|
|
@@ -592,48 +514,30 @@
|
|
|
592
514
|
},
|
|
593
515
|
{
|
|
594
516
|
"kind": "Content",
|
|
595
|
-
"text": ">>"
|
|
517
|
+
"text": ">>[]"
|
|
596
518
|
}
|
|
597
519
|
],
|
|
598
|
-
"fileUrlPath": "../../dist/libs/components/lib/
|
|
520
|
+
"fileUrlPath": "../../dist/libs/components/lib/banner/definition.d.ts",
|
|
599
521
|
"isReadonly": true,
|
|
600
522
|
"releaseTag": "Public",
|
|
601
|
-
"name": "
|
|
523
|
+
"name": "bannerElements",
|
|
602
524
|
"variableTypeTokenRange": {
|
|
603
525
|
"startIndex": 1,
|
|
604
|
-
"endIndex":
|
|
526
|
+
"endIndex": 10
|
|
605
527
|
}
|
|
606
528
|
},
|
|
607
529
|
{
|
|
608
530
|
"kind": "Variable",
|
|
609
|
-
"canonicalReference": "@vonage/vivid!
|
|
531
|
+
"canonicalReference": "@vonage/vivid!breadcrumbElements:var",
|
|
610
532
|
"docComment": "",
|
|
611
533
|
"excerptTokens": [
|
|
612
534
|
{
|
|
613
535
|
"kind": "Content",
|
|
614
|
-
"text": "
|
|
615
|
-
},
|
|
616
|
-
{
|
|
617
|
-
"kind": "Content",
|
|
618
|
-
"text": "(overrideDefinition?: import(\"@microsoft/fast-foundation\")."
|
|
619
|
-
},
|
|
620
|
-
{
|
|
621
|
-
"kind": "Reference",
|
|
622
|
-
"text": "OverrideFoundationElementDefinition",
|
|
623
|
-
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
624
|
-
},
|
|
625
|
-
{
|
|
626
|
-
"kind": "Content",
|
|
627
|
-
"text": "<"
|
|
628
|
-
},
|
|
629
|
-
{
|
|
630
|
-
"kind": "Reference",
|
|
631
|
-
"text": "FoundationElementDefinition",
|
|
632
|
-
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
536
|
+
"text": "breadcrumbElements: "
|
|
633
537
|
},
|
|
634
538
|
{
|
|
635
539
|
"kind": "Content",
|
|
636
|
-
"text": "
|
|
540
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
637
541
|
},
|
|
638
542
|
{
|
|
639
543
|
"kind": "Reference",
|
|
@@ -669,48 +573,30 @@
|
|
|
669
573
|
},
|
|
670
574
|
{
|
|
671
575
|
"kind": "Content",
|
|
672
|
-
"text": ">>"
|
|
576
|
+
"text": ">>[]"
|
|
673
577
|
}
|
|
674
578
|
],
|
|
675
|
-
"fileUrlPath": "../../dist/libs/components/lib/
|
|
579
|
+
"fileUrlPath": "../../dist/libs/components/lib/breadcrumb/definition.d.ts",
|
|
676
580
|
"isReadonly": true,
|
|
677
581
|
"releaseTag": "Public",
|
|
678
|
-
"name": "
|
|
582
|
+
"name": "breadcrumbElements",
|
|
679
583
|
"variableTypeTokenRange": {
|
|
680
584
|
"startIndex": 1,
|
|
681
|
-
"endIndex":
|
|
585
|
+
"endIndex": 10
|
|
682
586
|
}
|
|
683
587
|
},
|
|
684
588
|
{
|
|
685
589
|
"kind": "Variable",
|
|
686
|
-
"canonicalReference": "@vonage/vivid!
|
|
590
|
+
"canonicalReference": "@vonage/vivid!breadcrumbItemElements:var",
|
|
687
591
|
"docComment": "",
|
|
688
592
|
"excerptTokens": [
|
|
689
593
|
{
|
|
690
594
|
"kind": "Content",
|
|
691
|
-
"text": "
|
|
692
|
-
},
|
|
693
|
-
{
|
|
694
|
-
"kind": "Content",
|
|
695
|
-
"text": "(overrideDefinition?: import(\"@microsoft/fast-foundation\")."
|
|
696
|
-
},
|
|
697
|
-
{
|
|
698
|
-
"kind": "Reference",
|
|
699
|
-
"text": "OverrideFoundationElementDefinition",
|
|
700
|
-
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
701
|
-
},
|
|
702
|
-
{
|
|
703
|
-
"kind": "Content",
|
|
704
|
-
"text": "<"
|
|
705
|
-
},
|
|
706
|
-
{
|
|
707
|
-
"kind": "Reference",
|
|
708
|
-
"text": "FoundationElementDefinition",
|
|
709
|
-
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
595
|
+
"text": "breadcrumbItemElements: "
|
|
710
596
|
},
|
|
711
597
|
{
|
|
712
598
|
"kind": "Content",
|
|
713
|
-
"text": "
|
|
599
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
714
600
|
},
|
|
715
601
|
{
|
|
716
602
|
"kind": "Reference",
|
|
@@ -746,48 +632,30 @@
|
|
|
746
632
|
},
|
|
747
633
|
{
|
|
748
634
|
"kind": "Content",
|
|
749
|
-
"text": ">>"
|
|
635
|
+
"text": ">>[]"
|
|
750
636
|
}
|
|
751
637
|
],
|
|
752
|
-
"fileUrlPath": "../../dist/libs/components/lib/breadcrumb/
|
|
638
|
+
"fileUrlPath": "../../dist/libs/components/lib/breadcrumb-item/definition.d.ts",
|
|
753
639
|
"isReadonly": true,
|
|
754
640
|
"releaseTag": "Public",
|
|
755
|
-
"name": "
|
|
641
|
+
"name": "breadcrumbItemElements",
|
|
756
642
|
"variableTypeTokenRange": {
|
|
757
643
|
"startIndex": 1,
|
|
758
|
-
"endIndex":
|
|
644
|
+
"endIndex": 10
|
|
759
645
|
}
|
|
760
646
|
},
|
|
761
647
|
{
|
|
762
648
|
"kind": "Variable",
|
|
763
|
-
"canonicalReference": "@vonage/vivid!
|
|
649
|
+
"canonicalReference": "@vonage/vivid!buttonElements:var",
|
|
764
650
|
"docComment": "",
|
|
765
651
|
"excerptTokens": [
|
|
766
652
|
{
|
|
767
653
|
"kind": "Content",
|
|
768
|
-
"text": "
|
|
769
|
-
},
|
|
770
|
-
{
|
|
771
|
-
"kind": "Content",
|
|
772
|
-
"text": "(overrideDefinition?: import(\"@microsoft/fast-foundation\")."
|
|
773
|
-
},
|
|
774
|
-
{
|
|
775
|
-
"kind": "Reference",
|
|
776
|
-
"text": "OverrideFoundationElementDefinition",
|
|
777
|
-
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
778
|
-
},
|
|
779
|
-
{
|
|
780
|
-
"kind": "Content",
|
|
781
|
-
"text": "<"
|
|
782
|
-
},
|
|
783
|
-
{
|
|
784
|
-
"kind": "Reference",
|
|
785
|
-
"text": "FoundationElementDefinition",
|
|
786
|
-
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
654
|
+
"text": "buttonElements: "
|
|
787
655
|
},
|
|
788
656
|
{
|
|
789
657
|
"kind": "Content",
|
|
790
|
-
"text": "
|
|
658
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
791
659
|
},
|
|
792
660
|
{
|
|
793
661
|
"kind": "Reference",
|
|
@@ -823,48 +691,30 @@
|
|
|
823
691
|
},
|
|
824
692
|
{
|
|
825
693
|
"kind": "Content",
|
|
826
|
-
"text": ">>"
|
|
694
|
+
"text": ">>[]"
|
|
827
695
|
}
|
|
828
696
|
],
|
|
829
|
-
"fileUrlPath": "../../dist/libs/components/lib/
|
|
697
|
+
"fileUrlPath": "../../dist/libs/components/lib/button/definition.d.ts",
|
|
830
698
|
"isReadonly": true,
|
|
831
699
|
"releaseTag": "Public",
|
|
832
|
-
"name": "
|
|
700
|
+
"name": "buttonElements",
|
|
833
701
|
"variableTypeTokenRange": {
|
|
834
702
|
"startIndex": 1,
|
|
835
|
-
"endIndex":
|
|
703
|
+
"endIndex": 10
|
|
836
704
|
}
|
|
837
705
|
},
|
|
838
706
|
{
|
|
839
707
|
"kind": "Variable",
|
|
840
|
-
"canonicalReference": "@vonage/vivid!
|
|
708
|
+
"canonicalReference": "@vonage/vivid!calendarElements:var",
|
|
841
709
|
"docComment": "",
|
|
842
710
|
"excerptTokens": [
|
|
843
711
|
{
|
|
844
712
|
"kind": "Content",
|
|
845
|
-
"text": "
|
|
846
|
-
},
|
|
847
|
-
{
|
|
848
|
-
"kind": "Content",
|
|
849
|
-
"text": "(overrideDefinition?: import(\"@microsoft/fast-foundation\")."
|
|
850
|
-
},
|
|
851
|
-
{
|
|
852
|
-
"kind": "Reference",
|
|
853
|
-
"text": "OverrideFoundationElementDefinition",
|
|
854
|
-
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
855
|
-
},
|
|
856
|
-
{
|
|
857
|
-
"kind": "Content",
|
|
858
|
-
"text": "<"
|
|
859
|
-
},
|
|
860
|
-
{
|
|
861
|
-
"kind": "Reference",
|
|
862
|
-
"text": "FoundationElementDefinition",
|
|
863
|
-
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
713
|
+
"text": "calendarElements: "
|
|
864
714
|
},
|
|
865
715
|
{
|
|
866
716
|
"kind": "Content",
|
|
867
|
-
"text": "
|
|
717
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
868
718
|
},
|
|
869
719
|
{
|
|
870
720
|
"kind": "Reference",
|
|
@@ -900,48 +750,30 @@
|
|
|
900
750
|
},
|
|
901
751
|
{
|
|
902
752
|
"kind": "Content",
|
|
903
|
-
"text": ">>"
|
|
753
|
+
"text": ">>[]"
|
|
904
754
|
}
|
|
905
755
|
],
|
|
906
|
-
"fileUrlPath": "../../dist/libs/components/lib/calendar/
|
|
756
|
+
"fileUrlPath": "../../dist/libs/components/lib/calendar/definition.d.ts",
|
|
907
757
|
"isReadonly": true,
|
|
908
758
|
"releaseTag": "Public",
|
|
909
|
-
"name": "
|
|
759
|
+
"name": "calendarElements",
|
|
910
760
|
"variableTypeTokenRange": {
|
|
911
761
|
"startIndex": 1,
|
|
912
|
-
"endIndex":
|
|
762
|
+
"endIndex": 10
|
|
913
763
|
}
|
|
914
764
|
},
|
|
915
765
|
{
|
|
916
766
|
"kind": "Variable",
|
|
917
|
-
"canonicalReference": "@vonage/vivid!
|
|
767
|
+
"canonicalReference": "@vonage/vivid!calendarEventElements:var",
|
|
918
768
|
"docComment": "",
|
|
919
769
|
"excerptTokens": [
|
|
920
770
|
{
|
|
921
771
|
"kind": "Content",
|
|
922
|
-
"text": "
|
|
923
|
-
},
|
|
924
|
-
{
|
|
925
|
-
"kind": "Content",
|
|
926
|
-
"text": "(overrideDefinition?: import(\"@microsoft/fast-foundation\")."
|
|
927
|
-
},
|
|
928
|
-
{
|
|
929
|
-
"kind": "Reference",
|
|
930
|
-
"text": "OverrideFoundationElementDefinition",
|
|
931
|
-
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
932
|
-
},
|
|
933
|
-
{
|
|
934
|
-
"kind": "Content",
|
|
935
|
-
"text": "<"
|
|
936
|
-
},
|
|
937
|
-
{
|
|
938
|
-
"kind": "Reference",
|
|
939
|
-
"text": "FoundationElementDefinition",
|
|
940
|
-
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
772
|
+
"text": "calendarEventElements: "
|
|
941
773
|
},
|
|
942
774
|
{
|
|
943
775
|
"kind": "Content",
|
|
944
|
-
"text": "
|
|
776
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
945
777
|
},
|
|
946
778
|
{
|
|
947
779
|
"kind": "Reference",
|
|
@@ -977,48 +809,30 @@
|
|
|
977
809
|
},
|
|
978
810
|
{
|
|
979
811
|
"kind": "Content",
|
|
980
|
-
"text": ">>"
|
|
812
|
+
"text": ">>[]"
|
|
981
813
|
}
|
|
982
814
|
],
|
|
983
|
-
"fileUrlPath": "../../dist/libs/components/lib/calendar-event/
|
|
815
|
+
"fileUrlPath": "../../dist/libs/components/lib/calendar-event/definition.d.ts",
|
|
984
816
|
"isReadonly": true,
|
|
985
817
|
"releaseTag": "Public",
|
|
986
|
-
"name": "
|
|
818
|
+
"name": "calendarEventElements",
|
|
987
819
|
"variableTypeTokenRange": {
|
|
988
820
|
"startIndex": 1,
|
|
989
|
-
"endIndex":
|
|
821
|
+
"endIndex": 10
|
|
990
822
|
}
|
|
991
823
|
},
|
|
992
824
|
{
|
|
993
825
|
"kind": "Variable",
|
|
994
|
-
"canonicalReference": "@vonage/vivid!
|
|
826
|
+
"canonicalReference": "@vonage/vivid!cardElements:var",
|
|
995
827
|
"docComment": "",
|
|
996
828
|
"excerptTokens": [
|
|
997
829
|
{
|
|
998
830
|
"kind": "Content",
|
|
999
|
-
"text": "
|
|
1000
|
-
},
|
|
1001
|
-
{
|
|
1002
|
-
"kind": "Content",
|
|
1003
|
-
"text": "(overrideDefinition?: import(\"@microsoft/fast-foundation\")."
|
|
1004
|
-
},
|
|
1005
|
-
{
|
|
1006
|
-
"kind": "Reference",
|
|
1007
|
-
"text": "OverrideFoundationElementDefinition",
|
|
1008
|
-
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
1009
|
-
},
|
|
1010
|
-
{
|
|
1011
|
-
"kind": "Content",
|
|
1012
|
-
"text": "<"
|
|
1013
|
-
},
|
|
1014
|
-
{
|
|
1015
|
-
"kind": "Reference",
|
|
1016
|
-
"text": "FoundationElementDefinition",
|
|
1017
|
-
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
831
|
+
"text": "cardElements: "
|
|
1018
832
|
},
|
|
1019
833
|
{
|
|
1020
834
|
"kind": "Content",
|
|
1021
|
-
"text": "
|
|
835
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
1022
836
|
},
|
|
1023
837
|
{
|
|
1024
838
|
"kind": "Reference",
|
|
@@ -1054,35 +868,35 @@
|
|
|
1054
868
|
},
|
|
1055
869
|
{
|
|
1056
870
|
"kind": "Content",
|
|
1057
|
-
"text": ">>"
|
|
871
|
+
"text": ">>[]"
|
|
1058
872
|
}
|
|
1059
873
|
],
|
|
1060
|
-
"fileUrlPath": "../../dist/libs/components/lib/card/
|
|
874
|
+
"fileUrlPath": "../../dist/libs/components/lib/card/definition.d.ts",
|
|
1061
875
|
"isReadonly": true,
|
|
1062
876
|
"releaseTag": "Public",
|
|
1063
|
-
"name": "
|
|
877
|
+
"name": "cardElements",
|
|
1064
878
|
"variableTypeTokenRange": {
|
|
1065
879
|
"startIndex": 1,
|
|
1066
|
-
"endIndex":
|
|
880
|
+
"endIndex": 10
|
|
1067
881
|
}
|
|
1068
882
|
},
|
|
1069
883
|
{
|
|
1070
884
|
"kind": "Variable",
|
|
1071
|
-
"canonicalReference": "@vonage/vivid!
|
|
885
|
+
"canonicalReference": "@vonage/vivid!checkboxElements:var",
|
|
1072
886
|
"docComment": "",
|
|
1073
887
|
"excerptTokens": [
|
|
1074
888
|
{
|
|
1075
889
|
"kind": "Content",
|
|
1076
|
-
"text": "
|
|
890
|
+
"text": "checkboxElements: "
|
|
1077
891
|
},
|
|
1078
892
|
{
|
|
1079
893
|
"kind": "Content",
|
|
1080
|
-
"text": "(
|
|
894
|
+
"text": "(import(\"@microsoft/fast-foundation\")."
|
|
1081
895
|
},
|
|
1082
896
|
{
|
|
1083
897
|
"kind": "Reference",
|
|
1084
|
-
"text": "
|
|
1085
|
-
"canonicalReference": "@microsoft/fast-foundation!
|
|
898
|
+
"text": "FoundationElementRegistry",
|
|
899
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementRegistry:class"
|
|
1086
900
|
},
|
|
1087
901
|
{
|
|
1088
902
|
"kind": "Content",
|
|
@@ -1095,7 +909,25 @@
|
|
|
1095
909
|
},
|
|
1096
910
|
{
|
|
1097
911
|
"kind": "Content",
|
|
1098
|
-
"text": "
|
|
912
|
+
"text": ", import(\"@microsoft/fast-element\")."
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
"kind": "Reference",
|
|
916
|
+
"text": "Constructable",
|
|
917
|
+
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
918
|
+
},
|
|
919
|
+
{
|
|
920
|
+
"kind": "Content",
|
|
921
|
+
"text": "<import(\"@microsoft/fast-foundation\")."
|
|
922
|
+
},
|
|
923
|
+
{
|
|
924
|
+
"kind": "Reference",
|
|
925
|
+
"text": "FoundationElement",
|
|
926
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElement:class"
|
|
927
|
+
},
|
|
928
|
+
{
|
|
929
|
+
"kind": "Content",
|
|
930
|
+
"text": ">> | import(\"@microsoft/fast-foundation\")."
|
|
1099
931
|
},
|
|
1100
932
|
{
|
|
1101
933
|
"kind": "Reference",
|
|
@@ -1104,12 +936,12 @@
|
|
|
1104
936
|
},
|
|
1105
937
|
{
|
|
1106
938
|
"kind": "Content",
|
|
1107
|
-
"text": "<"
|
|
939
|
+
"text": "<import(\"@microsoft/fast-foundation\")."
|
|
1108
940
|
},
|
|
1109
941
|
{
|
|
1110
942
|
"kind": "Reference",
|
|
1111
|
-
"text": "
|
|
1112
|
-
"canonicalReference": "@microsoft/fast-foundation!
|
|
943
|
+
"text": "FoundationElementDefinition",
|
|
944
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
1113
945
|
},
|
|
1114
946
|
{
|
|
1115
947
|
"kind": "Content",
|
|
@@ -1131,35 +963,35 @@
|
|
|
1131
963
|
},
|
|
1132
964
|
{
|
|
1133
965
|
"kind": "Content",
|
|
1134
|
-
"text": ">>"
|
|
966
|
+
"text": ">>)[]"
|
|
1135
967
|
}
|
|
1136
968
|
],
|
|
1137
|
-
"fileUrlPath": "../../dist/libs/components/lib/checkbox/
|
|
969
|
+
"fileUrlPath": "../../dist/libs/components/lib/checkbox/definition.d.ts",
|
|
1138
970
|
"isReadonly": true,
|
|
1139
971
|
"releaseTag": "Public",
|
|
1140
|
-
"name": "
|
|
972
|
+
"name": "checkboxElements",
|
|
1141
973
|
"variableTypeTokenRange": {
|
|
1142
974
|
"startIndex": 1,
|
|
1143
|
-
"endIndex":
|
|
975
|
+
"endIndex": 18
|
|
1144
976
|
}
|
|
1145
977
|
},
|
|
1146
978
|
{
|
|
1147
979
|
"kind": "Variable",
|
|
1148
|
-
"canonicalReference": "@vonage/vivid!
|
|
980
|
+
"canonicalReference": "@vonage/vivid!dialogElements:var",
|
|
1149
981
|
"docComment": "",
|
|
1150
982
|
"excerptTokens": [
|
|
1151
983
|
{
|
|
1152
984
|
"kind": "Content",
|
|
1153
|
-
"text": "
|
|
985
|
+
"text": "dialogElements: "
|
|
1154
986
|
},
|
|
1155
987
|
{
|
|
1156
988
|
"kind": "Content",
|
|
1157
|
-
"text": "
|
|
989
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
1158
990
|
},
|
|
1159
991
|
{
|
|
1160
992
|
"kind": "Reference",
|
|
1161
|
-
"text": "
|
|
1162
|
-
"canonicalReference": "@microsoft/fast-foundation!
|
|
993
|
+
"text": "FoundationElementRegistry",
|
|
994
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementRegistry:class"
|
|
1163
995
|
},
|
|
1164
996
|
{
|
|
1165
997
|
"kind": "Content",
|
|
@@ -1172,12 +1004,53 @@
|
|
|
1172
1004
|
},
|
|
1173
1005
|
{
|
|
1174
1006
|
"kind": "Content",
|
|
1175
|
-
"text": "
|
|
1007
|
+
"text": ", import(\"@microsoft/fast-element\")."
|
|
1176
1008
|
},
|
|
1177
1009
|
{
|
|
1178
1010
|
"kind": "Reference",
|
|
1179
|
-
"text": "
|
|
1180
|
-
"canonicalReference": "@microsoft/fast-
|
|
1011
|
+
"text": "Constructable",
|
|
1012
|
+
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
1013
|
+
},
|
|
1014
|
+
{
|
|
1015
|
+
"kind": "Content",
|
|
1016
|
+
"text": "<import(\"@microsoft/fast-foundation\")."
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
"kind": "Reference",
|
|
1020
|
+
"text": "FoundationElement",
|
|
1021
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElement:class"
|
|
1022
|
+
},
|
|
1023
|
+
{
|
|
1024
|
+
"kind": "Content",
|
|
1025
|
+
"text": ">>[]"
|
|
1026
|
+
}
|
|
1027
|
+
],
|
|
1028
|
+
"fileUrlPath": "../../dist/libs/components/lib/dialog/definition.d.ts",
|
|
1029
|
+
"isReadonly": true,
|
|
1030
|
+
"releaseTag": "Public",
|
|
1031
|
+
"name": "dialogElements",
|
|
1032
|
+
"variableTypeTokenRange": {
|
|
1033
|
+
"startIndex": 1,
|
|
1034
|
+
"endIndex": 10
|
|
1035
|
+
}
|
|
1036
|
+
},
|
|
1037
|
+
{
|
|
1038
|
+
"kind": "Variable",
|
|
1039
|
+
"canonicalReference": "@vonage/vivid!dividerElements:var",
|
|
1040
|
+
"docComment": "",
|
|
1041
|
+
"excerptTokens": [
|
|
1042
|
+
{
|
|
1043
|
+
"kind": "Content",
|
|
1044
|
+
"text": "dividerElements: "
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
"kind": "Content",
|
|
1048
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
"kind": "Reference",
|
|
1052
|
+
"text": "FoundationElementRegistry",
|
|
1053
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementRegistry:class"
|
|
1181
1054
|
},
|
|
1182
1055
|
{
|
|
1183
1056
|
"kind": "Content",
|
|
@@ -1208,48 +1081,30 @@
|
|
|
1208
1081
|
},
|
|
1209
1082
|
{
|
|
1210
1083
|
"kind": "Content",
|
|
1211
|
-
"text": ">>"
|
|
1084
|
+
"text": ">>[]"
|
|
1212
1085
|
}
|
|
1213
1086
|
],
|
|
1214
|
-
"fileUrlPath": "../../dist/libs/components/lib/
|
|
1087
|
+
"fileUrlPath": "../../dist/libs/components/lib/divider/definition.d.ts",
|
|
1215
1088
|
"isReadonly": true,
|
|
1216
1089
|
"releaseTag": "Public",
|
|
1217
|
-
"name": "
|
|
1090
|
+
"name": "dividerElements",
|
|
1218
1091
|
"variableTypeTokenRange": {
|
|
1219
1092
|
"startIndex": 1,
|
|
1220
|
-
"endIndex":
|
|
1093
|
+
"endIndex": 10
|
|
1221
1094
|
}
|
|
1222
1095
|
},
|
|
1223
1096
|
{
|
|
1224
1097
|
"kind": "Variable",
|
|
1225
|
-
"canonicalReference": "@vonage/vivid!
|
|
1098
|
+
"canonicalReference": "@vonage/vivid!elevationElements:var",
|
|
1226
1099
|
"docComment": "",
|
|
1227
1100
|
"excerptTokens": [
|
|
1228
1101
|
{
|
|
1229
1102
|
"kind": "Content",
|
|
1230
|
-
"text": "
|
|
1231
|
-
},
|
|
1232
|
-
{
|
|
1233
|
-
"kind": "Content",
|
|
1234
|
-
"text": "(overrideDefinition?: import(\"@microsoft/fast-foundation\")."
|
|
1235
|
-
},
|
|
1236
|
-
{
|
|
1237
|
-
"kind": "Reference",
|
|
1238
|
-
"text": "OverrideFoundationElementDefinition",
|
|
1239
|
-
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
1240
|
-
},
|
|
1241
|
-
{
|
|
1242
|
-
"kind": "Content",
|
|
1243
|
-
"text": "<"
|
|
1244
|
-
},
|
|
1245
|
-
{
|
|
1246
|
-
"kind": "Reference",
|
|
1247
|
-
"text": "FoundationElementDefinition",
|
|
1248
|
-
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
1103
|
+
"text": "elevationElements: "
|
|
1249
1104
|
},
|
|
1250
1105
|
{
|
|
1251
1106
|
"kind": "Content",
|
|
1252
|
-
"text": "
|
|
1107
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
1253
1108
|
},
|
|
1254
1109
|
{
|
|
1255
1110
|
"kind": "Reference",
|
|
@@ -1285,48 +1140,30 @@
|
|
|
1285
1140
|
},
|
|
1286
1141
|
{
|
|
1287
1142
|
"kind": "Content",
|
|
1288
|
-
"text": ">>"
|
|
1143
|
+
"text": ">>[]"
|
|
1289
1144
|
}
|
|
1290
1145
|
],
|
|
1291
|
-
"fileUrlPath": "../../dist/libs/components/lib/
|
|
1146
|
+
"fileUrlPath": "../../dist/libs/components/lib/elevation/definition.d.ts",
|
|
1292
1147
|
"isReadonly": true,
|
|
1293
1148
|
"releaseTag": "Public",
|
|
1294
|
-
"name": "
|
|
1149
|
+
"name": "elevationElements",
|
|
1295
1150
|
"variableTypeTokenRange": {
|
|
1296
1151
|
"startIndex": 1,
|
|
1297
|
-
"endIndex":
|
|
1152
|
+
"endIndex": 10
|
|
1298
1153
|
}
|
|
1299
1154
|
},
|
|
1300
1155
|
{
|
|
1301
1156
|
"kind": "Variable",
|
|
1302
|
-
"canonicalReference": "@vonage/vivid!
|
|
1157
|
+
"canonicalReference": "@vonage/vivid!fabElements:var",
|
|
1303
1158
|
"docComment": "",
|
|
1304
1159
|
"excerptTokens": [
|
|
1305
1160
|
{
|
|
1306
1161
|
"kind": "Content",
|
|
1307
|
-
"text": "
|
|
1308
|
-
},
|
|
1309
|
-
{
|
|
1310
|
-
"kind": "Content",
|
|
1311
|
-
"text": "(overrideDefinition?: import(\"@microsoft/fast-foundation\")."
|
|
1312
|
-
},
|
|
1313
|
-
{
|
|
1314
|
-
"kind": "Reference",
|
|
1315
|
-
"text": "OverrideFoundationElementDefinition",
|
|
1316
|
-
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
1317
|
-
},
|
|
1318
|
-
{
|
|
1319
|
-
"kind": "Content",
|
|
1320
|
-
"text": "<"
|
|
1321
|
-
},
|
|
1322
|
-
{
|
|
1323
|
-
"kind": "Reference",
|
|
1324
|
-
"text": "FoundationElementDefinition",
|
|
1325
|
-
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
1162
|
+
"text": "fabElements: "
|
|
1326
1163
|
},
|
|
1327
1164
|
{
|
|
1328
1165
|
"kind": "Content",
|
|
1329
|
-
"text": "
|
|
1166
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
1330
1167
|
},
|
|
1331
1168
|
{
|
|
1332
1169
|
"kind": "Reference",
|
|
@@ -1362,48 +1199,30 @@
|
|
|
1362
1199
|
},
|
|
1363
1200
|
{
|
|
1364
1201
|
"kind": "Content",
|
|
1365
|
-
"text": ">>"
|
|
1202
|
+
"text": ">>[]"
|
|
1366
1203
|
}
|
|
1367
1204
|
],
|
|
1368
|
-
"fileUrlPath": "../../dist/libs/components/lib/
|
|
1205
|
+
"fileUrlPath": "../../dist/libs/components/lib/fab/definition.d.ts",
|
|
1369
1206
|
"isReadonly": true,
|
|
1370
1207
|
"releaseTag": "Public",
|
|
1371
|
-
"name": "
|
|
1208
|
+
"name": "fabElements",
|
|
1372
1209
|
"variableTypeTokenRange": {
|
|
1373
1210
|
"startIndex": 1,
|
|
1374
|
-
"endIndex":
|
|
1211
|
+
"endIndex": 10
|
|
1375
1212
|
}
|
|
1376
1213
|
},
|
|
1377
1214
|
{
|
|
1378
1215
|
"kind": "Variable",
|
|
1379
|
-
"canonicalReference": "@vonage/vivid!
|
|
1216
|
+
"canonicalReference": "@vonage/vivid!iconElements:var",
|
|
1380
1217
|
"docComment": "",
|
|
1381
1218
|
"excerptTokens": [
|
|
1382
1219
|
{
|
|
1383
1220
|
"kind": "Content",
|
|
1384
|
-
"text": "
|
|
1385
|
-
},
|
|
1386
|
-
{
|
|
1387
|
-
"kind": "Content",
|
|
1388
|
-
"text": "(overrideDefinition?: import(\"@microsoft/fast-foundation\")."
|
|
1389
|
-
},
|
|
1390
|
-
{
|
|
1391
|
-
"kind": "Reference",
|
|
1392
|
-
"text": "OverrideFoundationElementDefinition",
|
|
1393
|
-
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
1394
|
-
},
|
|
1395
|
-
{
|
|
1396
|
-
"kind": "Content",
|
|
1397
|
-
"text": "<"
|
|
1398
|
-
},
|
|
1399
|
-
{
|
|
1400
|
-
"kind": "Reference",
|
|
1401
|
-
"text": "FoundationElementDefinition",
|
|
1402
|
-
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
1221
|
+
"text": "iconElements: "
|
|
1403
1222
|
},
|
|
1404
1223
|
{
|
|
1405
1224
|
"kind": "Content",
|
|
1406
|
-
"text": "
|
|
1225
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
1407
1226
|
},
|
|
1408
1227
|
{
|
|
1409
1228
|
"kind": "Reference",
|
|
@@ -1439,48 +1258,30 @@
|
|
|
1439
1258
|
},
|
|
1440
1259
|
{
|
|
1441
1260
|
"kind": "Content",
|
|
1442
|
-
"text": ">>"
|
|
1261
|
+
"text": ">>[]"
|
|
1443
1262
|
}
|
|
1444
1263
|
],
|
|
1445
|
-
"fileUrlPath": "../../dist/libs/components/lib/
|
|
1264
|
+
"fileUrlPath": "../../dist/libs/components/lib/icon/definition.d.ts",
|
|
1446
1265
|
"isReadonly": true,
|
|
1447
1266
|
"releaseTag": "Public",
|
|
1448
|
-
"name": "
|
|
1267
|
+
"name": "iconElements",
|
|
1449
1268
|
"variableTypeTokenRange": {
|
|
1450
1269
|
"startIndex": 1,
|
|
1451
|
-
"endIndex":
|
|
1270
|
+
"endIndex": 10
|
|
1452
1271
|
}
|
|
1453
1272
|
},
|
|
1454
1273
|
{
|
|
1455
1274
|
"kind": "Variable",
|
|
1456
|
-
"canonicalReference": "@vonage/vivid!
|
|
1275
|
+
"canonicalReference": "@vonage/vivid!layoutElements:var",
|
|
1457
1276
|
"docComment": "",
|
|
1458
1277
|
"excerptTokens": [
|
|
1459
1278
|
{
|
|
1460
1279
|
"kind": "Content",
|
|
1461
|
-
"text": "
|
|
1462
|
-
},
|
|
1463
|
-
{
|
|
1464
|
-
"kind": "Content",
|
|
1465
|
-
"text": "(overrideDefinition?: import(\"@microsoft/fast-foundation\")."
|
|
1466
|
-
},
|
|
1467
|
-
{
|
|
1468
|
-
"kind": "Reference",
|
|
1469
|
-
"text": "OverrideFoundationElementDefinition",
|
|
1470
|
-
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
1471
|
-
},
|
|
1472
|
-
{
|
|
1473
|
-
"kind": "Content",
|
|
1474
|
-
"text": "<"
|
|
1475
|
-
},
|
|
1476
|
-
{
|
|
1477
|
-
"kind": "Reference",
|
|
1478
|
-
"text": "FoundationElementDefinition",
|
|
1479
|
-
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
1280
|
+
"text": "layoutElements: "
|
|
1480
1281
|
},
|
|
1481
1282
|
{
|
|
1482
1283
|
"kind": "Content",
|
|
1483
|
-
"text": "
|
|
1284
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
1484
1285
|
},
|
|
1485
1286
|
{
|
|
1486
1287
|
"kind": "Reference",
|
|
@@ -1516,48 +1317,30 @@
|
|
|
1516
1317
|
},
|
|
1517
1318
|
{
|
|
1518
1319
|
"kind": "Content",
|
|
1519
|
-
"text": ">>"
|
|
1320
|
+
"text": ">>[]"
|
|
1520
1321
|
}
|
|
1521
1322
|
],
|
|
1522
|
-
"fileUrlPath": "../../dist/libs/components/lib/
|
|
1323
|
+
"fileUrlPath": "../../dist/libs/components/lib/layout/definition.d.ts",
|
|
1523
1324
|
"isReadonly": true,
|
|
1524
1325
|
"releaseTag": "Public",
|
|
1525
|
-
"name": "
|
|
1326
|
+
"name": "layoutElements",
|
|
1526
1327
|
"variableTypeTokenRange": {
|
|
1527
1328
|
"startIndex": 1,
|
|
1528
|
-
"endIndex":
|
|
1329
|
+
"endIndex": 10
|
|
1529
1330
|
}
|
|
1530
1331
|
},
|
|
1531
1332
|
{
|
|
1532
1333
|
"kind": "Variable",
|
|
1533
|
-
"canonicalReference": "@vonage/vivid!
|
|
1334
|
+
"canonicalReference": "@vonage/vivid!listboxElements:var",
|
|
1534
1335
|
"docComment": "",
|
|
1535
1336
|
"excerptTokens": [
|
|
1536
1337
|
{
|
|
1537
1338
|
"kind": "Content",
|
|
1538
|
-
"text": "
|
|
1539
|
-
},
|
|
1540
|
-
{
|
|
1541
|
-
"kind": "Content",
|
|
1542
|
-
"text": "(overrideDefinition?: import(\"@microsoft/fast-foundation\")."
|
|
1543
|
-
},
|
|
1544
|
-
{
|
|
1545
|
-
"kind": "Reference",
|
|
1546
|
-
"text": "OverrideFoundationElementDefinition",
|
|
1547
|
-
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
1548
|
-
},
|
|
1549
|
-
{
|
|
1550
|
-
"kind": "Content",
|
|
1551
|
-
"text": "<"
|
|
1552
|
-
},
|
|
1553
|
-
{
|
|
1554
|
-
"kind": "Reference",
|
|
1555
|
-
"text": "FoundationElementDefinition",
|
|
1556
|
-
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
1339
|
+
"text": "listboxElements: "
|
|
1557
1340
|
},
|
|
1558
1341
|
{
|
|
1559
1342
|
"kind": "Content",
|
|
1560
|
-
"text": "
|
|
1343
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
1561
1344
|
},
|
|
1562
1345
|
{
|
|
1563
1346
|
"kind": "Reference",
|
|
@@ -1593,48 +1376,30 @@
|
|
|
1593
1376
|
},
|
|
1594
1377
|
{
|
|
1595
1378
|
"kind": "Content",
|
|
1596
|
-
"text": ">>"
|
|
1379
|
+
"text": ">>[]"
|
|
1597
1380
|
}
|
|
1598
1381
|
],
|
|
1599
|
-
"fileUrlPath": "../../dist/libs/components/lib/
|
|
1382
|
+
"fileUrlPath": "../../dist/libs/components/lib/listbox/definition.d.ts",
|
|
1600
1383
|
"isReadonly": true,
|
|
1601
1384
|
"releaseTag": "Public",
|
|
1602
|
-
"name": "
|
|
1385
|
+
"name": "listboxElements",
|
|
1603
1386
|
"variableTypeTokenRange": {
|
|
1604
1387
|
"startIndex": 1,
|
|
1605
|
-
"endIndex":
|
|
1388
|
+
"endIndex": 10
|
|
1606
1389
|
}
|
|
1607
1390
|
},
|
|
1608
1391
|
{
|
|
1609
1392
|
"kind": "Variable",
|
|
1610
|
-
"canonicalReference": "@vonage/vivid!
|
|
1393
|
+
"canonicalReference": "@vonage/vivid!listboxOptionElements:var",
|
|
1611
1394
|
"docComment": "",
|
|
1612
1395
|
"excerptTokens": [
|
|
1613
1396
|
{
|
|
1614
1397
|
"kind": "Content",
|
|
1615
|
-
"text": "
|
|
1616
|
-
},
|
|
1617
|
-
{
|
|
1618
|
-
"kind": "Content",
|
|
1619
|
-
"text": "(overrideDefinition?: import(\"@microsoft/fast-foundation\")."
|
|
1620
|
-
},
|
|
1621
|
-
{
|
|
1622
|
-
"kind": "Reference",
|
|
1623
|
-
"text": "OverrideFoundationElementDefinition",
|
|
1624
|
-
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
1625
|
-
},
|
|
1626
|
-
{
|
|
1627
|
-
"kind": "Content",
|
|
1628
|
-
"text": "<"
|
|
1629
|
-
},
|
|
1630
|
-
{
|
|
1631
|
-
"kind": "Reference",
|
|
1632
|
-
"text": "FoundationElementDefinition",
|
|
1633
|
-
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
1398
|
+
"text": "listboxOptionElements: "
|
|
1634
1399
|
},
|
|
1635
1400
|
{
|
|
1636
1401
|
"kind": "Content",
|
|
1637
|
-
"text": "
|
|
1402
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
1638
1403
|
},
|
|
1639
1404
|
{
|
|
1640
1405
|
"kind": "Reference",
|
|
@@ -1670,35 +1435,35 @@
|
|
|
1670
1435
|
},
|
|
1671
1436
|
{
|
|
1672
1437
|
"kind": "Content",
|
|
1673
|
-
"text": ">>"
|
|
1438
|
+
"text": ">>[]"
|
|
1674
1439
|
}
|
|
1675
1440
|
],
|
|
1676
|
-
"fileUrlPath": "../../dist/libs/components/lib/option/
|
|
1441
|
+
"fileUrlPath": "../../dist/libs/components/lib/option/definition.d.ts",
|
|
1677
1442
|
"isReadonly": true,
|
|
1678
1443
|
"releaseTag": "Public",
|
|
1679
|
-
"name": "
|
|
1444
|
+
"name": "listboxOptionElements",
|
|
1680
1445
|
"variableTypeTokenRange": {
|
|
1681
1446
|
"startIndex": 1,
|
|
1682
|
-
"endIndex":
|
|
1447
|
+
"endIndex": 10
|
|
1683
1448
|
}
|
|
1684
1449
|
},
|
|
1685
1450
|
{
|
|
1686
1451
|
"kind": "Variable",
|
|
1687
|
-
"canonicalReference": "@vonage/vivid!
|
|
1452
|
+
"canonicalReference": "@vonage/vivid!menuElements:var",
|
|
1688
1453
|
"docComment": "",
|
|
1689
1454
|
"excerptTokens": [
|
|
1690
1455
|
{
|
|
1691
1456
|
"kind": "Content",
|
|
1692
|
-
"text": "
|
|
1457
|
+
"text": "menuElements: "
|
|
1693
1458
|
},
|
|
1694
1459
|
{
|
|
1695
1460
|
"kind": "Content",
|
|
1696
|
-
"text": "(
|
|
1461
|
+
"text": "(import(\"@microsoft/fast-foundation\")."
|
|
1697
1462
|
},
|
|
1698
1463
|
{
|
|
1699
1464
|
"kind": "Reference",
|
|
1700
|
-
"text": "
|
|
1701
|
-
"canonicalReference": "@microsoft/fast-foundation!
|
|
1465
|
+
"text": "FoundationElementRegistry",
|
|
1466
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementRegistry:class"
|
|
1702
1467
|
},
|
|
1703
1468
|
{
|
|
1704
1469
|
"kind": "Content",
|
|
@@ -1711,75 +1476,52 @@
|
|
|
1711
1476
|
},
|
|
1712
1477
|
{
|
|
1713
1478
|
"kind": "Content",
|
|
1714
|
-
"text": ";\n}
|
|
1479
|
+
"text": ";\n}, typeof "
|
|
1715
1480
|
},
|
|
1716
1481
|
{
|
|
1717
1482
|
"kind": "Reference",
|
|
1718
|
-
"text": "
|
|
1719
|
-
"canonicalReference": "@
|
|
1483
|
+
"text": "Menu",
|
|
1484
|
+
"canonicalReference": "@vonage/vivid!~Menu:class"
|
|
1720
1485
|
},
|
|
1721
1486
|
{
|
|
1722
1487
|
"kind": "Content",
|
|
1723
|
-
"text": "
|
|
1488
|
+
"text": "> | import(\"@microsoft/fast-foundation\")."
|
|
1724
1489
|
},
|
|
1725
1490
|
{
|
|
1726
1491
|
"kind": "Reference",
|
|
1727
|
-
"text": "
|
|
1728
|
-
"canonicalReference": "@microsoft/fast-
|
|
1492
|
+
"text": "FoundationElementRegistry",
|
|
1493
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementRegistry:class"
|
|
1729
1494
|
},
|
|
1730
1495
|
{
|
|
1731
1496
|
"kind": "Content",
|
|
1732
|
-
"text": "
|
|
1497
|
+
"text": "<import(\"@microsoft/fast-foundation\")."
|
|
1733
1498
|
},
|
|
1734
1499
|
{
|
|
1735
1500
|
"kind": "Reference",
|
|
1736
|
-
"text": "
|
|
1737
|
-
"canonicalReference": "@
|
|
1738
|
-
},
|
|
1739
|
-
{
|
|
1740
|
-
"kind": "Content",
|
|
1741
|
-
"text": ">"
|
|
1742
|
-
}
|
|
1743
|
-
],
|
|
1744
|
-
"fileUrlPath": "../../dist/libs/components/lib/menu/index.d.ts",
|
|
1745
|
-
"isReadonly": true,
|
|
1746
|
-
"releaseTag": "Public",
|
|
1747
|
-
"name": "vividMenu",
|
|
1748
|
-
"variableTypeTokenRange": {
|
|
1749
|
-
"startIndex": 1,
|
|
1750
|
-
"endIndex": 12
|
|
1751
|
-
}
|
|
1752
|
-
},
|
|
1753
|
-
{
|
|
1754
|
-
"kind": "Variable",
|
|
1755
|
-
"canonicalReference": "@vonage/vivid!vividMenuItem:var",
|
|
1756
|
-
"docComment": "",
|
|
1757
|
-
"excerptTokens": [
|
|
1758
|
-
{
|
|
1759
|
-
"kind": "Content",
|
|
1760
|
-
"text": "vividMenuItem: "
|
|
1501
|
+
"text": "FoundationElementDefinition",
|
|
1502
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
1761
1503
|
},
|
|
1762
1504
|
{
|
|
1763
1505
|
"kind": "Content",
|
|
1764
|
-
"text": "
|
|
1506
|
+
"text": ", import(\"@microsoft/fast-element\")."
|
|
1765
1507
|
},
|
|
1766
1508
|
{
|
|
1767
1509
|
"kind": "Reference",
|
|
1768
|
-
"text": "
|
|
1769
|
-
"canonicalReference": "@microsoft/fast-
|
|
1510
|
+
"text": "Constructable",
|
|
1511
|
+
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
1770
1512
|
},
|
|
1771
1513
|
{
|
|
1772
1514
|
"kind": "Content",
|
|
1773
|
-
"text": "<"
|
|
1515
|
+
"text": "<import(\"@microsoft/fast-foundation\")."
|
|
1774
1516
|
},
|
|
1775
1517
|
{
|
|
1776
1518
|
"kind": "Reference",
|
|
1777
|
-
"text": "
|
|
1778
|
-
"canonicalReference": "@microsoft/fast-foundation!
|
|
1519
|
+
"text": "FoundationElement",
|
|
1520
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElement:class"
|
|
1779
1521
|
},
|
|
1780
1522
|
{
|
|
1781
1523
|
"kind": "Content",
|
|
1782
|
-
"text": "
|
|
1524
|
+
"text": ">> | import(\"@microsoft/fast-foundation\")."
|
|
1783
1525
|
},
|
|
1784
1526
|
{
|
|
1785
1527
|
"kind": "Reference",
|
|
@@ -1788,7 +1530,7 @@
|
|
|
1788
1530
|
},
|
|
1789
1531
|
{
|
|
1790
1532
|
"kind": "Content",
|
|
1791
|
-
"text": "<"
|
|
1533
|
+
"text": "<import(\"@microsoft/fast-foundation\")."
|
|
1792
1534
|
},
|
|
1793
1535
|
{
|
|
1794
1536
|
"kind": "Reference",
|
|
@@ -1815,35 +1557,35 @@
|
|
|
1815
1557
|
},
|
|
1816
1558
|
{
|
|
1817
1559
|
"kind": "Content",
|
|
1818
|
-
"text": ">>"
|
|
1560
|
+
"text": ">>)[]"
|
|
1819
1561
|
}
|
|
1820
1562
|
],
|
|
1821
|
-
"fileUrlPath": "../../dist/libs/components/lib/menu
|
|
1563
|
+
"fileUrlPath": "../../dist/libs/components/lib/menu/definition.d.ts",
|
|
1822
1564
|
"isReadonly": true,
|
|
1823
1565
|
"releaseTag": "Public",
|
|
1824
|
-
"name": "
|
|
1566
|
+
"name": "menuElements",
|
|
1825
1567
|
"variableTypeTokenRange": {
|
|
1826
1568
|
"startIndex": 1,
|
|
1827
|
-
"endIndex":
|
|
1569
|
+
"endIndex": 24
|
|
1828
1570
|
}
|
|
1829
1571
|
},
|
|
1830
1572
|
{
|
|
1831
1573
|
"kind": "Variable",
|
|
1832
|
-
"canonicalReference": "@vonage/vivid!
|
|
1574
|
+
"canonicalReference": "@vonage/vivid!menuItemElements:var",
|
|
1833
1575
|
"docComment": "",
|
|
1834
1576
|
"excerptTokens": [
|
|
1835
1577
|
{
|
|
1836
1578
|
"kind": "Content",
|
|
1837
|
-
"text": "
|
|
1579
|
+
"text": "menuItemElements: "
|
|
1838
1580
|
},
|
|
1839
1581
|
{
|
|
1840
1582
|
"kind": "Content",
|
|
1841
|
-
"text": "(
|
|
1583
|
+
"text": "(import(\"@microsoft/fast-foundation\")."
|
|
1842
1584
|
},
|
|
1843
1585
|
{
|
|
1844
1586
|
"kind": "Reference",
|
|
1845
|
-
"text": "
|
|
1846
|
-
"canonicalReference": "@microsoft/fast-foundation!
|
|
1587
|
+
"text": "FoundationElementRegistry",
|
|
1588
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementRegistry:class"
|
|
1847
1589
|
},
|
|
1848
1590
|
{
|
|
1849
1591
|
"kind": "Content",
|
|
@@ -1851,12 +1593,30 @@
|
|
|
1851
1593
|
},
|
|
1852
1594
|
{
|
|
1853
1595
|
"kind": "Reference",
|
|
1854
|
-
"text": "
|
|
1855
|
-
"canonicalReference": "@microsoft/fast-foundation!
|
|
1596
|
+
"text": "MenuItemOptions",
|
|
1597
|
+
"canonicalReference": "@microsoft/fast-foundation!MenuItemOptions:type"
|
|
1598
|
+
},
|
|
1599
|
+
{
|
|
1600
|
+
"kind": "Content",
|
|
1601
|
+
"text": ", import(\"@microsoft/fast-element\")."
|
|
1602
|
+
},
|
|
1603
|
+
{
|
|
1604
|
+
"kind": "Reference",
|
|
1605
|
+
"text": "Constructable",
|
|
1606
|
+
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
1607
|
+
},
|
|
1608
|
+
{
|
|
1609
|
+
"kind": "Content",
|
|
1610
|
+
"text": "<import(\"@microsoft/fast-foundation\")."
|
|
1611
|
+
},
|
|
1612
|
+
{
|
|
1613
|
+
"kind": "Reference",
|
|
1614
|
+
"text": "FoundationElement",
|
|
1615
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElement:class"
|
|
1856
1616
|
},
|
|
1857
1617
|
{
|
|
1858
1618
|
"kind": "Content",
|
|
1859
|
-
"text": "
|
|
1619
|
+
"text": ">> | import(\"@microsoft/fast-foundation\")."
|
|
1860
1620
|
},
|
|
1861
1621
|
{
|
|
1862
1622
|
"kind": "Reference",
|
|
@@ -1865,7 +1625,7 @@
|
|
|
1865
1625
|
},
|
|
1866
1626
|
{
|
|
1867
1627
|
"kind": "Content",
|
|
1868
|
-
"text": "<"
|
|
1628
|
+
"text": "<import(\"@microsoft/fast-foundation\")."
|
|
1869
1629
|
},
|
|
1870
1630
|
{
|
|
1871
1631
|
"kind": "Reference",
|
|
@@ -1892,48 +1652,30 @@
|
|
|
1892
1652
|
},
|
|
1893
1653
|
{
|
|
1894
1654
|
"kind": "Content",
|
|
1895
|
-
"text": ">>"
|
|
1655
|
+
"text": ">>)[]"
|
|
1896
1656
|
}
|
|
1897
1657
|
],
|
|
1898
|
-
"fileUrlPath": "../../dist/libs/components/lib/
|
|
1658
|
+
"fileUrlPath": "../../dist/libs/components/lib/menu-item/definition.d.ts",
|
|
1899
1659
|
"isReadonly": true,
|
|
1900
1660
|
"releaseTag": "Public",
|
|
1901
|
-
"name": "
|
|
1661
|
+
"name": "menuItemElements",
|
|
1902
1662
|
"variableTypeTokenRange": {
|
|
1903
1663
|
"startIndex": 1,
|
|
1904
|
-
"endIndex":
|
|
1664
|
+
"endIndex": 18
|
|
1905
1665
|
}
|
|
1906
1666
|
},
|
|
1907
1667
|
{
|
|
1908
1668
|
"kind": "Variable",
|
|
1909
|
-
"canonicalReference": "@vonage/vivid!
|
|
1669
|
+
"canonicalReference": "@vonage/vivid!navDisclosureElements:var",
|
|
1910
1670
|
"docComment": "",
|
|
1911
1671
|
"excerptTokens": [
|
|
1912
1672
|
{
|
|
1913
1673
|
"kind": "Content",
|
|
1914
|
-
"text": "
|
|
1915
|
-
},
|
|
1916
|
-
{
|
|
1917
|
-
"kind": "Content",
|
|
1918
|
-
"text": "(overrideDefinition?: import(\"@microsoft/fast-foundation\")."
|
|
1919
|
-
},
|
|
1920
|
-
{
|
|
1921
|
-
"kind": "Reference",
|
|
1922
|
-
"text": "OverrideFoundationElementDefinition",
|
|
1923
|
-
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
1924
|
-
},
|
|
1925
|
-
{
|
|
1926
|
-
"kind": "Content",
|
|
1927
|
-
"text": "<"
|
|
1928
|
-
},
|
|
1929
|
-
{
|
|
1930
|
-
"kind": "Reference",
|
|
1931
|
-
"text": "FoundationElementDefinition",
|
|
1932
|
-
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
1674
|
+
"text": "navDisclosureElements: "
|
|
1933
1675
|
},
|
|
1934
1676
|
{
|
|
1935
1677
|
"kind": "Content",
|
|
1936
|
-
"text": "
|
|
1678
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
1937
1679
|
},
|
|
1938
1680
|
{
|
|
1939
1681
|
"kind": "Reference",
|
|
@@ -1969,48 +1711,30 @@
|
|
|
1969
1711
|
},
|
|
1970
1712
|
{
|
|
1971
1713
|
"kind": "Content",
|
|
1972
|
-
"text": ">>"
|
|
1714
|
+
"text": ">>[]"
|
|
1973
1715
|
}
|
|
1974
1716
|
],
|
|
1975
|
-
"fileUrlPath": "../../dist/libs/components/lib/nav-disclosure/
|
|
1717
|
+
"fileUrlPath": "../../dist/libs/components/lib/nav-disclosure/definition.d.ts",
|
|
1976
1718
|
"isReadonly": true,
|
|
1977
1719
|
"releaseTag": "Public",
|
|
1978
|
-
"name": "
|
|
1720
|
+
"name": "navDisclosureElements",
|
|
1979
1721
|
"variableTypeTokenRange": {
|
|
1980
1722
|
"startIndex": 1,
|
|
1981
|
-
"endIndex":
|
|
1723
|
+
"endIndex": 10
|
|
1982
1724
|
}
|
|
1983
1725
|
},
|
|
1984
1726
|
{
|
|
1985
1727
|
"kind": "Variable",
|
|
1986
|
-
"canonicalReference": "@vonage/vivid!
|
|
1728
|
+
"canonicalReference": "@vonage/vivid!navElements:var",
|
|
1987
1729
|
"docComment": "",
|
|
1988
1730
|
"excerptTokens": [
|
|
1989
1731
|
{
|
|
1990
1732
|
"kind": "Content",
|
|
1991
|
-
"text": "
|
|
1992
|
-
},
|
|
1993
|
-
{
|
|
1994
|
-
"kind": "Content",
|
|
1995
|
-
"text": "(overrideDefinition?: import(\"@microsoft/fast-foundation\")."
|
|
1996
|
-
},
|
|
1997
|
-
{
|
|
1998
|
-
"kind": "Reference",
|
|
1999
|
-
"text": "OverrideFoundationElementDefinition",
|
|
2000
|
-
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
2001
|
-
},
|
|
2002
|
-
{
|
|
2003
|
-
"kind": "Content",
|
|
2004
|
-
"text": "<"
|
|
2005
|
-
},
|
|
2006
|
-
{
|
|
2007
|
-
"kind": "Reference",
|
|
2008
|
-
"text": "FoundationElementDefinition",
|
|
2009
|
-
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
1733
|
+
"text": "navElements: "
|
|
2010
1734
|
},
|
|
2011
1735
|
{
|
|
2012
1736
|
"kind": "Content",
|
|
2013
|
-
"text": "
|
|
1737
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
2014
1738
|
},
|
|
2015
1739
|
{
|
|
2016
1740
|
"kind": "Reference",
|
|
@@ -2046,48 +1770,30 @@
|
|
|
2046
1770
|
},
|
|
2047
1771
|
{
|
|
2048
1772
|
"kind": "Content",
|
|
2049
|
-
"text": ">>"
|
|
1773
|
+
"text": ">>[]"
|
|
2050
1774
|
}
|
|
2051
1775
|
],
|
|
2052
|
-
"fileUrlPath": "../../dist/libs/components/lib/nav
|
|
1776
|
+
"fileUrlPath": "../../dist/libs/components/lib/nav/definition.d.ts",
|
|
2053
1777
|
"isReadonly": true,
|
|
2054
1778
|
"releaseTag": "Public",
|
|
2055
|
-
"name": "
|
|
1779
|
+
"name": "navElements",
|
|
2056
1780
|
"variableTypeTokenRange": {
|
|
2057
1781
|
"startIndex": 1,
|
|
2058
|
-
"endIndex":
|
|
1782
|
+
"endIndex": 10
|
|
2059
1783
|
}
|
|
2060
1784
|
},
|
|
2061
1785
|
{
|
|
2062
1786
|
"kind": "Variable",
|
|
2063
|
-
"canonicalReference": "@vonage/vivid!
|
|
1787
|
+
"canonicalReference": "@vonage/vivid!navItemElements:var",
|
|
2064
1788
|
"docComment": "",
|
|
2065
1789
|
"excerptTokens": [
|
|
2066
1790
|
{
|
|
2067
1791
|
"kind": "Content",
|
|
2068
|
-
"text": "
|
|
2069
|
-
},
|
|
2070
|
-
{
|
|
2071
|
-
"kind": "Content",
|
|
2072
|
-
"text": "(overrideDefinition?: import(\"@microsoft/fast-foundation\")."
|
|
2073
|
-
},
|
|
2074
|
-
{
|
|
2075
|
-
"kind": "Reference",
|
|
2076
|
-
"text": "OverrideFoundationElementDefinition",
|
|
2077
|
-
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
2078
|
-
},
|
|
2079
|
-
{
|
|
2080
|
-
"kind": "Content",
|
|
2081
|
-
"text": "<"
|
|
2082
|
-
},
|
|
2083
|
-
{
|
|
2084
|
-
"kind": "Reference",
|
|
2085
|
-
"text": "FoundationElementDefinition",
|
|
2086
|
-
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
1792
|
+
"text": "navItemElements: "
|
|
2087
1793
|
},
|
|
2088
1794
|
{
|
|
2089
1795
|
"kind": "Content",
|
|
2090
|
-
"text": "
|
|
1796
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
2091
1797
|
},
|
|
2092
1798
|
{
|
|
2093
1799
|
"kind": "Reference",
|
|
@@ -2123,35 +1829,35 @@
|
|
|
2123
1829
|
},
|
|
2124
1830
|
{
|
|
2125
1831
|
"kind": "Content",
|
|
2126
|
-
"text": ">>"
|
|
1832
|
+
"text": ">>[]"
|
|
2127
1833
|
}
|
|
2128
1834
|
],
|
|
2129
|
-
"fileUrlPath": "../../dist/libs/components/lib/
|
|
1835
|
+
"fileUrlPath": "../../dist/libs/components/lib/nav-item/definition.d.ts",
|
|
2130
1836
|
"isReadonly": true,
|
|
2131
1837
|
"releaseTag": "Public",
|
|
2132
|
-
"name": "
|
|
1838
|
+
"name": "navItemElements",
|
|
2133
1839
|
"variableTypeTokenRange": {
|
|
2134
1840
|
"startIndex": 1,
|
|
2135
|
-
"endIndex":
|
|
1841
|
+
"endIndex": 10
|
|
2136
1842
|
}
|
|
2137
1843
|
},
|
|
2138
1844
|
{
|
|
2139
1845
|
"kind": "Variable",
|
|
2140
|
-
"canonicalReference": "@vonage/vivid!
|
|
1846
|
+
"canonicalReference": "@vonage/vivid!noteElements:var",
|
|
2141
1847
|
"docComment": "",
|
|
2142
1848
|
"excerptTokens": [
|
|
2143
1849
|
{
|
|
2144
1850
|
"kind": "Content",
|
|
2145
|
-
"text": "
|
|
1851
|
+
"text": "noteElements: "
|
|
2146
1852
|
},
|
|
2147
1853
|
{
|
|
2148
1854
|
"kind": "Content",
|
|
2149
|
-
"text": "
|
|
1855
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
2150
1856
|
},
|
|
2151
1857
|
{
|
|
2152
1858
|
"kind": "Reference",
|
|
2153
|
-
"text": "
|
|
2154
|
-
"canonicalReference": "@microsoft/fast-foundation!
|
|
1859
|
+
"text": "FoundationElementRegistry",
|
|
1860
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementRegistry:class"
|
|
2155
1861
|
},
|
|
2156
1862
|
{
|
|
2157
1863
|
"kind": "Content",
|
|
@@ -2164,7 +1870,48 @@
|
|
|
2164
1870
|
},
|
|
2165
1871
|
{
|
|
2166
1872
|
"kind": "Content",
|
|
2167
|
-
"text": "
|
|
1873
|
+
"text": ", import(\"@microsoft/fast-element\")."
|
|
1874
|
+
},
|
|
1875
|
+
{
|
|
1876
|
+
"kind": "Reference",
|
|
1877
|
+
"text": "Constructable",
|
|
1878
|
+
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
1879
|
+
},
|
|
1880
|
+
{
|
|
1881
|
+
"kind": "Content",
|
|
1882
|
+
"text": "<import(\"@microsoft/fast-foundation\")."
|
|
1883
|
+
},
|
|
1884
|
+
{
|
|
1885
|
+
"kind": "Reference",
|
|
1886
|
+
"text": "FoundationElement",
|
|
1887
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElement:class"
|
|
1888
|
+
},
|
|
1889
|
+
{
|
|
1890
|
+
"kind": "Content",
|
|
1891
|
+
"text": ">>[]"
|
|
1892
|
+
}
|
|
1893
|
+
],
|
|
1894
|
+
"fileUrlPath": "../../dist/libs/components/lib/note/definition.d.ts",
|
|
1895
|
+
"isReadonly": true,
|
|
1896
|
+
"releaseTag": "Public",
|
|
1897
|
+
"name": "noteElements",
|
|
1898
|
+
"variableTypeTokenRange": {
|
|
1899
|
+
"startIndex": 1,
|
|
1900
|
+
"endIndex": 10
|
|
1901
|
+
}
|
|
1902
|
+
},
|
|
1903
|
+
{
|
|
1904
|
+
"kind": "Variable",
|
|
1905
|
+
"canonicalReference": "@vonage/vivid!popup:var",
|
|
1906
|
+
"docComment": "",
|
|
1907
|
+
"excerptTokens": [
|
|
1908
|
+
{
|
|
1909
|
+
"kind": "Content",
|
|
1910
|
+
"text": "popup: "
|
|
1911
|
+
},
|
|
1912
|
+
{
|
|
1913
|
+
"kind": "Content",
|
|
1914
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
2168
1915
|
},
|
|
2169
1916
|
{
|
|
2170
1917
|
"kind": "Reference",
|
|
@@ -2203,32 +1950,32 @@
|
|
|
2203
1950
|
"text": ">>"
|
|
2204
1951
|
}
|
|
2205
1952
|
],
|
|
2206
|
-
"fileUrlPath": "../../dist/libs/components/lib/popup/
|
|
1953
|
+
"fileUrlPath": "../../dist/libs/components/lib/popup/definition.d.ts",
|
|
2207
1954
|
"isReadonly": true,
|
|
2208
1955
|
"releaseTag": "Public",
|
|
2209
|
-
"name": "
|
|
1956
|
+
"name": "popup",
|
|
2210
1957
|
"variableTypeTokenRange": {
|
|
2211
1958
|
"startIndex": 1,
|
|
2212
|
-
"endIndex":
|
|
1959
|
+
"endIndex": 10
|
|
2213
1960
|
}
|
|
2214
1961
|
},
|
|
2215
1962
|
{
|
|
2216
1963
|
"kind": "Variable",
|
|
2217
|
-
"canonicalReference": "@vonage/vivid!
|
|
1964
|
+
"canonicalReference": "@vonage/vivid!popupElements:var",
|
|
2218
1965
|
"docComment": "",
|
|
2219
1966
|
"excerptTokens": [
|
|
2220
1967
|
{
|
|
2221
1968
|
"kind": "Content",
|
|
2222
|
-
"text": "
|
|
1969
|
+
"text": "popupElements: "
|
|
2223
1970
|
},
|
|
2224
1971
|
{
|
|
2225
1972
|
"kind": "Content",
|
|
2226
|
-
"text": "
|
|
1973
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
2227
1974
|
},
|
|
2228
1975
|
{
|
|
2229
1976
|
"kind": "Reference",
|
|
2230
|
-
"text": "
|
|
2231
|
-
"canonicalReference": "@microsoft/fast-foundation!
|
|
1977
|
+
"text": "FoundationElementRegistry",
|
|
1978
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementRegistry:class"
|
|
2232
1979
|
},
|
|
2233
1980
|
{
|
|
2234
1981
|
"kind": "Content",
|
|
@@ -2241,7 +1988,48 @@
|
|
|
2241
1988
|
},
|
|
2242
1989
|
{
|
|
2243
1990
|
"kind": "Content",
|
|
2244
|
-
"text": "
|
|
1991
|
+
"text": ", import(\"@microsoft/fast-element\")."
|
|
1992
|
+
},
|
|
1993
|
+
{
|
|
1994
|
+
"kind": "Reference",
|
|
1995
|
+
"text": "Constructable",
|
|
1996
|
+
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
1997
|
+
},
|
|
1998
|
+
{
|
|
1999
|
+
"kind": "Content",
|
|
2000
|
+
"text": "<import(\"@microsoft/fast-foundation\")."
|
|
2001
|
+
},
|
|
2002
|
+
{
|
|
2003
|
+
"kind": "Reference",
|
|
2004
|
+
"text": "FoundationElement",
|
|
2005
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElement:class"
|
|
2006
|
+
},
|
|
2007
|
+
{
|
|
2008
|
+
"kind": "Content",
|
|
2009
|
+
"text": ">>[]"
|
|
2010
|
+
}
|
|
2011
|
+
],
|
|
2012
|
+
"fileUrlPath": "../../dist/libs/components/lib/popup/definition.d.ts",
|
|
2013
|
+
"isReadonly": true,
|
|
2014
|
+
"releaseTag": "Public",
|
|
2015
|
+
"name": "popupElements",
|
|
2016
|
+
"variableTypeTokenRange": {
|
|
2017
|
+
"startIndex": 1,
|
|
2018
|
+
"endIndex": 10
|
|
2019
|
+
}
|
|
2020
|
+
},
|
|
2021
|
+
{
|
|
2022
|
+
"kind": "Variable",
|
|
2023
|
+
"canonicalReference": "@vonage/vivid!progressElements:var",
|
|
2024
|
+
"docComment": "",
|
|
2025
|
+
"excerptTokens": [
|
|
2026
|
+
{
|
|
2027
|
+
"kind": "Content",
|
|
2028
|
+
"text": "progressElements: "
|
|
2029
|
+
},
|
|
2030
|
+
{
|
|
2031
|
+
"kind": "Content",
|
|
2032
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
2245
2033
|
},
|
|
2246
2034
|
{
|
|
2247
2035
|
"kind": "Reference",
|
|
@@ -2277,35 +2065,35 @@
|
|
|
2277
2065
|
},
|
|
2278
2066
|
{
|
|
2279
2067
|
"kind": "Content",
|
|
2280
|
-
"text": ">>"
|
|
2068
|
+
"text": ">>[]"
|
|
2281
2069
|
}
|
|
2282
2070
|
],
|
|
2283
|
-
"fileUrlPath": "../../dist/libs/components/lib/progress/
|
|
2071
|
+
"fileUrlPath": "../../dist/libs/components/lib/progress/definition.d.ts",
|
|
2284
2072
|
"isReadonly": true,
|
|
2285
2073
|
"releaseTag": "Public",
|
|
2286
|
-
"name": "
|
|
2074
|
+
"name": "progressElements",
|
|
2287
2075
|
"variableTypeTokenRange": {
|
|
2288
2076
|
"startIndex": 1,
|
|
2289
|
-
"endIndex":
|
|
2077
|
+
"endIndex": 10
|
|
2290
2078
|
}
|
|
2291
2079
|
},
|
|
2292
2080
|
{
|
|
2293
2081
|
"kind": "Variable",
|
|
2294
|
-
"canonicalReference": "@vonage/vivid!
|
|
2082
|
+
"canonicalReference": "@vonage/vivid!progressRingElements:var",
|
|
2295
2083
|
"docComment": "",
|
|
2296
2084
|
"excerptTokens": [
|
|
2297
2085
|
{
|
|
2298
2086
|
"kind": "Content",
|
|
2299
|
-
"text": "
|
|
2087
|
+
"text": "progressRingElements: "
|
|
2300
2088
|
},
|
|
2301
2089
|
{
|
|
2302
2090
|
"kind": "Content",
|
|
2303
|
-
"text": "
|
|
2091
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
2304
2092
|
},
|
|
2305
2093
|
{
|
|
2306
2094
|
"kind": "Reference",
|
|
2307
|
-
"text": "
|
|
2308
|
-
"canonicalReference": "@microsoft/fast-foundation!
|
|
2095
|
+
"text": "FoundationElementRegistry",
|
|
2096
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementRegistry:class"
|
|
2309
2097
|
},
|
|
2310
2098
|
{
|
|
2311
2099
|
"kind": "Content",
|
|
@@ -2318,7 +2106,48 @@
|
|
|
2318
2106
|
},
|
|
2319
2107
|
{
|
|
2320
2108
|
"kind": "Content",
|
|
2321
|
-
"text": "
|
|
2109
|
+
"text": ", import(\"@microsoft/fast-element\")."
|
|
2110
|
+
},
|
|
2111
|
+
{
|
|
2112
|
+
"kind": "Reference",
|
|
2113
|
+
"text": "Constructable",
|
|
2114
|
+
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
2115
|
+
},
|
|
2116
|
+
{
|
|
2117
|
+
"kind": "Content",
|
|
2118
|
+
"text": "<import(\"@microsoft/fast-foundation\")."
|
|
2119
|
+
},
|
|
2120
|
+
{
|
|
2121
|
+
"kind": "Reference",
|
|
2122
|
+
"text": "FoundationElement",
|
|
2123
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElement:class"
|
|
2124
|
+
},
|
|
2125
|
+
{
|
|
2126
|
+
"kind": "Content",
|
|
2127
|
+
"text": ">>[]"
|
|
2128
|
+
}
|
|
2129
|
+
],
|
|
2130
|
+
"fileUrlPath": "../../dist/libs/components/lib/progress-ring/definition.d.ts",
|
|
2131
|
+
"isReadonly": true,
|
|
2132
|
+
"releaseTag": "Public",
|
|
2133
|
+
"name": "progressRingElements",
|
|
2134
|
+
"variableTypeTokenRange": {
|
|
2135
|
+
"startIndex": 1,
|
|
2136
|
+
"endIndex": 10
|
|
2137
|
+
}
|
|
2138
|
+
},
|
|
2139
|
+
{
|
|
2140
|
+
"kind": "Variable",
|
|
2141
|
+
"canonicalReference": "@vonage/vivid!radioElements:var",
|
|
2142
|
+
"docComment": "",
|
|
2143
|
+
"excerptTokens": [
|
|
2144
|
+
{
|
|
2145
|
+
"kind": "Content",
|
|
2146
|
+
"text": "radioElements: "
|
|
2147
|
+
},
|
|
2148
|
+
{
|
|
2149
|
+
"kind": "Content",
|
|
2150
|
+
"text": "(import(\"@microsoft/fast-foundation\")."
|
|
2322
2151
|
},
|
|
2323
2152
|
{
|
|
2324
2153
|
"kind": "Reference",
|
|
@@ -2329,6 +2158,42 @@
|
|
|
2329
2158
|
"kind": "Content",
|
|
2330
2159
|
"text": "<"
|
|
2331
2160
|
},
|
|
2161
|
+
{
|
|
2162
|
+
"kind": "Reference",
|
|
2163
|
+
"text": "RadioOptions",
|
|
2164
|
+
"canonicalReference": "@microsoft/fast-foundation!RadioOptions:type"
|
|
2165
|
+
},
|
|
2166
|
+
{
|
|
2167
|
+
"kind": "Content",
|
|
2168
|
+
"text": ", import(\"@microsoft/fast-element\")."
|
|
2169
|
+
},
|
|
2170
|
+
{
|
|
2171
|
+
"kind": "Reference",
|
|
2172
|
+
"text": "Constructable",
|
|
2173
|
+
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
2174
|
+
},
|
|
2175
|
+
{
|
|
2176
|
+
"kind": "Content",
|
|
2177
|
+
"text": "<import(\"@microsoft/fast-foundation\")."
|
|
2178
|
+
},
|
|
2179
|
+
{
|
|
2180
|
+
"kind": "Reference",
|
|
2181
|
+
"text": "FoundationElement",
|
|
2182
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElement:class"
|
|
2183
|
+
},
|
|
2184
|
+
{
|
|
2185
|
+
"kind": "Content",
|
|
2186
|
+
"text": ">> | import(\"@microsoft/fast-foundation\")."
|
|
2187
|
+
},
|
|
2188
|
+
{
|
|
2189
|
+
"kind": "Reference",
|
|
2190
|
+
"text": "FoundationElementRegistry",
|
|
2191
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementRegistry:class"
|
|
2192
|
+
},
|
|
2193
|
+
{
|
|
2194
|
+
"kind": "Content",
|
|
2195
|
+
"text": "<import(\"@microsoft/fast-foundation\")."
|
|
2196
|
+
},
|
|
2332
2197
|
{
|
|
2333
2198
|
"kind": "Reference",
|
|
2334
2199
|
"text": "FoundationElementDefinition",
|
|
@@ -2336,211 +2201,1190 @@
|
|
|
2336
2201
|
},
|
|
2337
2202
|
{
|
|
2338
2203
|
"kind": "Content",
|
|
2339
|
-
"text": ", import(\"@microsoft/fast-element\")."
|
|
2340
|
-
},
|
|
2341
|
-
{
|
|
2342
|
-
"kind": "Reference",
|
|
2343
|
-
"text": "Constructable",
|
|
2344
|
-
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
2204
|
+
"text": ", import(\"@microsoft/fast-element\")."
|
|
2205
|
+
},
|
|
2206
|
+
{
|
|
2207
|
+
"kind": "Reference",
|
|
2208
|
+
"text": "Constructable",
|
|
2209
|
+
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
2210
|
+
},
|
|
2211
|
+
{
|
|
2212
|
+
"kind": "Content",
|
|
2213
|
+
"text": "<import(\"@microsoft/fast-foundation\")."
|
|
2214
|
+
},
|
|
2215
|
+
{
|
|
2216
|
+
"kind": "Reference",
|
|
2217
|
+
"text": "FoundationElement",
|
|
2218
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElement:class"
|
|
2219
|
+
},
|
|
2220
|
+
{
|
|
2221
|
+
"kind": "Content",
|
|
2222
|
+
"text": ">>)[]"
|
|
2223
|
+
}
|
|
2224
|
+
],
|
|
2225
|
+
"fileUrlPath": "../../dist/libs/components/lib/radio/definition.d.ts",
|
|
2226
|
+
"isReadonly": true,
|
|
2227
|
+
"releaseTag": "Public",
|
|
2228
|
+
"name": "radioElements",
|
|
2229
|
+
"variableTypeTokenRange": {
|
|
2230
|
+
"startIndex": 1,
|
|
2231
|
+
"endIndex": 18
|
|
2232
|
+
}
|
|
2233
|
+
},
|
|
2234
|
+
{
|
|
2235
|
+
"kind": "Variable",
|
|
2236
|
+
"canonicalReference": "@vonage/vivid!radioGroupElements:var",
|
|
2237
|
+
"docComment": "",
|
|
2238
|
+
"excerptTokens": [
|
|
2239
|
+
{
|
|
2240
|
+
"kind": "Content",
|
|
2241
|
+
"text": "radioGroupElements: "
|
|
2242
|
+
},
|
|
2243
|
+
{
|
|
2244
|
+
"kind": "Content",
|
|
2245
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
2246
|
+
},
|
|
2247
|
+
{
|
|
2248
|
+
"kind": "Reference",
|
|
2249
|
+
"text": "FoundationElementRegistry",
|
|
2250
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementRegistry:class"
|
|
2251
|
+
},
|
|
2252
|
+
{
|
|
2253
|
+
"kind": "Content",
|
|
2254
|
+
"text": "<{\n baseName: string;\n template: any;\n styles: import(\"@microsoft/fast-element\")."
|
|
2255
|
+
},
|
|
2256
|
+
{
|
|
2257
|
+
"kind": "Reference",
|
|
2258
|
+
"text": "ComposableStyles",
|
|
2259
|
+
"canonicalReference": "@microsoft/fast-element!ComposableStyles:type"
|
|
2260
|
+
},
|
|
2261
|
+
{
|
|
2262
|
+
"kind": "Content",
|
|
2263
|
+
"text": ";\n}, typeof "
|
|
2264
|
+
},
|
|
2265
|
+
{
|
|
2266
|
+
"kind": "Reference",
|
|
2267
|
+
"text": "RadioGroup",
|
|
2268
|
+
"canonicalReference": "@vonage/vivid!~RadioGroup:class"
|
|
2269
|
+
},
|
|
2270
|
+
{
|
|
2271
|
+
"kind": "Content",
|
|
2272
|
+
"text": ">[]"
|
|
2273
|
+
}
|
|
2274
|
+
],
|
|
2275
|
+
"fileUrlPath": "../../dist/libs/components/lib/radio-group/definition.d.ts",
|
|
2276
|
+
"isReadonly": true,
|
|
2277
|
+
"releaseTag": "Public",
|
|
2278
|
+
"name": "radioGroupElements",
|
|
2279
|
+
"variableTypeTokenRange": {
|
|
2280
|
+
"startIndex": 1,
|
|
2281
|
+
"endIndex": 8
|
|
2282
|
+
}
|
|
2283
|
+
},
|
|
2284
|
+
{
|
|
2285
|
+
"kind": "Variable",
|
|
2286
|
+
"canonicalReference": "@vonage/vivid!registerAccordion:var",
|
|
2287
|
+
"docComment": "",
|
|
2288
|
+
"excerptTokens": [
|
|
2289
|
+
{
|
|
2290
|
+
"kind": "Content",
|
|
2291
|
+
"text": "registerAccordion: "
|
|
2292
|
+
},
|
|
2293
|
+
{
|
|
2294
|
+
"kind": "Content",
|
|
2295
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2296
|
+
},
|
|
2297
|
+
{
|
|
2298
|
+
"kind": "Reference",
|
|
2299
|
+
"text": "DesignSystem",
|
|
2300
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2301
|
+
}
|
|
2302
|
+
],
|
|
2303
|
+
"fileUrlPath": "../../dist/libs/components/lib/accordion/definition.d.ts",
|
|
2304
|
+
"isReadonly": true,
|
|
2305
|
+
"releaseTag": "Public",
|
|
2306
|
+
"name": "registerAccordion",
|
|
2307
|
+
"variableTypeTokenRange": {
|
|
2308
|
+
"startIndex": 1,
|
|
2309
|
+
"endIndex": 3
|
|
2310
|
+
}
|
|
2311
|
+
},
|
|
2312
|
+
{
|
|
2313
|
+
"kind": "Variable",
|
|
2314
|
+
"canonicalReference": "@vonage/vivid!registerAccordionItem:var",
|
|
2315
|
+
"docComment": "",
|
|
2316
|
+
"excerptTokens": [
|
|
2317
|
+
{
|
|
2318
|
+
"kind": "Content",
|
|
2319
|
+
"text": "registerAccordionItem: "
|
|
2320
|
+
},
|
|
2321
|
+
{
|
|
2322
|
+
"kind": "Content",
|
|
2323
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2324
|
+
},
|
|
2325
|
+
{
|
|
2326
|
+
"kind": "Reference",
|
|
2327
|
+
"text": "DesignSystem",
|
|
2328
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2329
|
+
}
|
|
2330
|
+
],
|
|
2331
|
+
"fileUrlPath": "../../dist/libs/components/lib/accordion-item/definition.d.ts",
|
|
2332
|
+
"isReadonly": true,
|
|
2333
|
+
"releaseTag": "Public",
|
|
2334
|
+
"name": "registerAccordionItem",
|
|
2335
|
+
"variableTypeTokenRange": {
|
|
2336
|
+
"startIndex": 1,
|
|
2337
|
+
"endIndex": 3
|
|
2338
|
+
}
|
|
2339
|
+
},
|
|
2340
|
+
{
|
|
2341
|
+
"kind": "Variable",
|
|
2342
|
+
"canonicalReference": "@vonage/vivid!registerActionGroup:var",
|
|
2343
|
+
"docComment": "",
|
|
2344
|
+
"excerptTokens": [
|
|
2345
|
+
{
|
|
2346
|
+
"kind": "Content",
|
|
2347
|
+
"text": "registerActionGroup: "
|
|
2348
|
+
},
|
|
2349
|
+
{
|
|
2350
|
+
"kind": "Content",
|
|
2351
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2352
|
+
},
|
|
2353
|
+
{
|
|
2354
|
+
"kind": "Reference",
|
|
2355
|
+
"text": "DesignSystem",
|
|
2356
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2357
|
+
}
|
|
2358
|
+
],
|
|
2359
|
+
"fileUrlPath": "../../dist/libs/components/lib/action-group/definition.d.ts",
|
|
2360
|
+
"isReadonly": true,
|
|
2361
|
+
"releaseTag": "Public",
|
|
2362
|
+
"name": "registerActionGroup",
|
|
2363
|
+
"variableTypeTokenRange": {
|
|
2364
|
+
"startIndex": 1,
|
|
2365
|
+
"endIndex": 3
|
|
2366
|
+
}
|
|
2367
|
+
},
|
|
2368
|
+
{
|
|
2369
|
+
"kind": "Variable",
|
|
2370
|
+
"canonicalReference": "@vonage/vivid!registerAvatar:var",
|
|
2371
|
+
"docComment": "",
|
|
2372
|
+
"excerptTokens": [
|
|
2373
|
+
{
|
|
2374
|
+
"kind": "Content",
|
|
2375
|
+
"text": "registerAvatar: "
|
|
2376
|
+
},
|
|
2377
|
+
{
|
|
2378
|
+
"kind": "Content",
|
|
2379
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2380
|
+
},
|
|
2381
|
+
{
|
|
2382
|
+
"kind": "Reference",
|
|
2383
|
+
"text": "DesignSystem",
|
|
2384
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2385
|
+
}
|
|
2386
|
+
],
|
|
2387
|
+
"fileUrlPath": "../../dist/libs/components/lib/avatar/definition.d.ts",
|
|
2388
|
+
"isReadonly": true,
|
|
2389
|
+
"releaseTag": "Public",
|
|
2390
|
+
"name": "registerAvatar",
|
|
2391
|
+
"variableTypeTokenRange": {
|
|
2392
|
+
"startIndex": 1,
|
|
2393
|
+
"endIndex": 3
|
|
2394
|
+
}
|
|
2395
|
+
},
|
|
2396
|
+
{
|
|
2397
|
+
"kind": "Variable",
|
|
2398
|
+
"canonicalReference": "@vonage/vivid!registerBadge:var",
|
|
2399
|
+
"docComment": "",
|
|
2400
|
+
"excerptTokens": [
|
|
2401
|
+
{
|
|
2402
|
+
"kind": "Content",
|
|
2403
|
+
"text": "registerBadge: "
|
|
2404
|
+
},
|
|
2405
|
+
{
|
|
2406
|
+
"kind": "Content",
|
|
2407
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2408
|
+
},
|
|
2409
|
+
{
|
|
2410
|
+
"kind": "Reference",
|
|
2411
|
+
"text": "DesignSystem",
|
|
2412
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2413
|
+
}
|
|
2414
|
+
],
|
|
2415
|
+
"fileUrlPath": "../../dist/libs/components/lib/badge/definition.d.ts",
|
|
2416
|
+
"isReadonly": true,
|
|
2417
|
+
"releaseTag": "Public",
|
|
2418
|
+
"name": "registerBadge",
|
|
2419
|
+
"variableTypeTokenRange": {
|
|
2420
|
+
"startIndex": 1,
|
|
2421
|
+
"endIndex": 3
|
|
2422
|
+
}
|
|
2423
|
+
},
|
|
2424
|
+
{
|
|
2425
|
+
"kind": "Variable",
|
|
2426
|
+
"canonicalReference": "@vonage/vivid!registerBanner:var",
|
|
2427
|
+
"docComment": "",
|
|
2428
|
+
"excerptTokens": [
|
|
2429
|
+
{
|
|
2430
|
+
"kind": "Content",
|
|
2431
|
+
"text": "registerBanner: "
|
|
2432
|
+
},
|
|
2433
|
+
{
|
|
2434
|
+
"kind": "Content",
|
|
2435
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2436
|
+
},
|
|
2437
|
+
{
|
|
2438
|
+
"kind": "Reference",
|
|
2439
|
+
"text": "DesignSystem",
|
|
2440
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2441
|
+
}
|
|
2442
|
+
],
|
|
2443
|
+
"fileUrlPath": "../../dist/libs/components/lib/banner/definition.d.ts",
|
|
2444
|
+
"isReadonly": true,
|
|
2445
|
+
"releaseTag": "Public",
|
|
2446
|
+
"name": "registerBanner",
|
|
2447
|
+
"variableTypeTokenRange": {
|
|
2448
|
+
"startIndex": 1,
|
|
2449
|
+
"endIndex": 3
|
|
2450
|
+
}
|
|
2451
|
+
},
|
|
2452
|
+
{
|
|
2453
|
+
"kind": "Variable",
|
|
2454
|
+
"canonicalReference": "@vonage/vivid!registerBreadcrumb:var",
|
|
2455
|
+
"docComment": "",
|
|
2456
|
+
"excerptTokens": [
|
|
2457
|
+
{
|
|
2458
|
+
"kind": "Content",
|
|
2459
|
+
"text": "registerBreadcrumb: "
|
|
2460
|
+
},
|
|
2461
|
+
{
|
|
2462
|
+
"kind": "Content",
|
|
2463
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2464
|
+
},
|
|
2465
|
+
{
|
|
2466
|
+
"kind": "Reference",
|
|
2467
|
+
"text": "DesignSystem",
|
|
2468
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2469
|
+
}
|
|
2470
|
+
],
|
|
2471
|
+
"fileUrlPath": "../../dist/libs/components/lib/breadcrumb/definition.d.ts",
|
|
2472
|
+
"isReadonly": true,
|
|
2473
|
+
"releaseTag": "Public",
|
|
2474
|
+
"name": "registerBreadcrumb",
|
|
2475
|
+
"variableTypeTokenRange": {
|
|
2476
|
+
"startIndex": 1,
|
|
2477
|
+
"endIndex": 3
|
|
2478
|
+
}
|
|
2479
|
+
},
|
|
2480
|
+
{
|
|
2481
|
+
"kind": "Variable",
|
|
2482
|
+
"canonicalReference": "@vonage/vivid!registerBreadcrumbItem:var",
|
|
2483
|
+
"docComment": "",
|
|
2484
|
+
"excerptTokens": [
|
|
2485
|
+
{
|
|
2486
|
+
"kind": "Content",
|
|
2487
|
+
"text": "registerBreadcrumbItem: "
|
|
2488
|
+
},
|
|
2489
|
+
{
|
|
2490
|
+
"kind": "Content",
|
|
2491
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2492
|
+
},
|
|
2493
|
+
{
|
|
2494
|
+
"kind": "Reference",
|
|
2495
|
+
"text": "DesignSystem",
|
|
2496
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2497
|
+
}
|
|
2498
|
+
],
|
|
2499
|
+
"fileUrlPath": "../../dist/libs/components/lib/breadcrumb-item/definition.d.ts",
|
|
2500
|
+
"isReadonly": true,
|
|
2501
|
+
"releaseTag": "Public",
|
|
2502
|
+
"name": "registerBreadcrumbItem",
|
|
2503
|
+
"variableTypeTokenRange": {
|
|
2504
|
+
"startIndex": 1,
|
|
2505
|
+
"endIndex": 3
|
|
2506
|
+
}
|
|
2507
|
+
},
|
|
2508
|
+
{
|
|
2509
|
+
"kind": "Variable",
|
|
2510
|
+
"canonicalReference": "@vonage/vivid!registerButton:var",
|
|
2511
|
+
"docComment": "",
|
|
2512
|
+
"excerptTokens": [
|
|
2513
|
+
{
|
|
2514
|
+
"kind": "Content",
|
|
2515
|
+
"text": "registerButton: "
|
|
2516
|
+
},
|
|
2517
|
+
{
|
|
2518
|
+
"kind": "Content",
|
|
2519
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2520
|
+
},
|
|
2521
|
+
{
|
|
2522
|
+
"kind": "Reference",
|
|
2523
|
+
"text": "DesignSystem",
|
|
2524
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2525
|
+
}
|
|
2526
|
+
],
|
|
2527
|
+
"fileUrlPath": "../../dist/libs/components/lib/button/definition.d.ts",
|
|
2528
|
+
"isReadonly": true,
|
|
2529
|
+
"releaseTag": "Public",
|
|
2530
|
+
"name": "registerButton",
|
|
2531
|
+
"variableTypeTokenRange": {
|
|
2532
|
+
"startIndex": 1,
|
|
2533
|
+
"endIndex": 3
|
|
2534
|
+
}
|
|
2535
|
+
},
|
|
2536
|
+
{
|
|
2537
|
+
"kind": "Variable",
|
|
2538
|
+
"canonicalReference": "@vonage/vivid!registerCalendar:var",
|
|
2539
|
+
"docComment": "",
|
|
2540
|
+
"excerptTokens": [
|
|
2541
|
+
{
|
|
2542
|
+
"kind": "Content",
|
|
2543
|
+
"text": "registerCalendar: "
|
|
2544
|
+
},
|
|
2545
|
+
{
|
|
2546
|
+
"kind": "Content",
|
|
2547
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2548
|
+
},
|
|
2549
|
+
{
|
|
2550
|
+
"kind": "Reference",
|
|
2551
|
+
"text": "DesignSystem",
|
|
2552
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2553
|
+
}
|
|
2554
|
+
],
|
|
2555
|
+
"fileUrlPath": "../../dist/libs/components/lib/calendar/definition.d.ts",
|
|
2556
|
+
"isReadonly": true,
|
|
2557
|
+
"releaseTag": "Public",
|
|
2558
|
+
"name": "registerCalendar",
|
|
2559
|
+
"variableTypeTokenRange": {
|
|
2560
|
+
"startIndex": 1,
|
|
2561
|
+
"endIndex": 3
|
|
2562
|
+
}
|
|
2563
|
+
},
|
|
2564
|
+
{
|
|
2565
|
+
"kind": "Variable",
|
|
2566
|
+
"canonicalReference": "@vonage/vivid!registerCalendarEvent:var",
|
|
2567
|
+
"docComment": "",
|
|
2568
|
+
"excerptTokens": [
|
|
2569
|
+
{
|
|
2570
|
+
"kind": "Content",
|
|
2571
|
+
"text": "registerCalendarEvent: "
|
|
2572
|
+
},
|
|
2573
|
+
{
|
|
2574
|
+
"kind": "Content",
|
|
2575
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2576
|
+
},
|
|
2577
|
+
{
|
|
2578
|
+
"kind": "Reference",
|
|
2579
|
+
"text": "DesignSystem",
|
|
2580
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2581
|
+
}
|
|
2582
|
+
],
|
|
2583
|
+
"fileUrlPath": "../../dist/libs/components/lib/calendar-event/definition.d.ts",
|
|
2584
|
+
"isReadonly": true,
|
|
2585
|
+
"releaseTag": "Public",
|
|
2586
|
+
"name": "registerCalendarEvent",
|
|
2587
|
+
"variableTypeTokenRange": {
|
|
2588
|
+
"startIndex": 1,
|
|
2589
|
+
"endIndex": 3
|
|
2590
|
+
}
|
|
2591
|
+
},
|
|
2592
|
+
{
|
|
2593
|
+
"kind": "Variable",
|
|
2594
|
+
"canonicalReference": "@vonage/vivid!registerCard:var",
|
|
2595
|
+
"docComment": "",
|
|
2596
|
+
"excerptTokens": [
|
|
2597
|
+
{
|
|
2598
|
+
"kind": "Content",
|
|
2599
|
+
"text": "registerCard: "
|
|
2600
|
+
},
|
|
2601
|
+
{
|
|
2602
|
+
"kind": "Content",
|
|
2603
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2604
|
+
},
|
|
2605
|
+
{
|
|
2606
|
+
"kind": "Reference",
|
|
2607
|
+
"text": "DesignSystem",
|
|
2608
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2609
|
+
}
|
|
2610
|
+
],
|
|
2611
|
+
"fileUrlPath": "../../dist/libs/components/lib/card/definition.d.ts",
|
|
2612
|
+
"isReadonly": true,
|
|
2613
|
+
"releaseTag": "Public",
|
|
2614
|
+
"name": "registerCard",
|
|
2615
|
+
"variableTypeTokenRange": {
|
|
2616
|
+
"startIndex": 1,
|
|
2617
|
+
"endIndex": 3
|
|
2618
|
+
}
|
|
2619
|
+
},
|
|
2620
|
+
{
|
|
2621
|
+
"kind": "Variable",
|
|
2622
|
+
"canonicalReference": "@vonage/vivid!registerCheckbox:var",
|
|
2623
|
+
"docComment": "",
|
|
2624
|
+
"excerptTokens": [
|
|
2625
|
+
{
|
|
2626
|
+
"kind": "Content",
|
|
2627
|
+
"text": "registerCheckbox: "
|
|
2628
|
+
},
|
|
2629
|
+
{
|
|
2630
|
+
"kind": "Content",
|
|
2631
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2632
|
+
},
|
|
2633
|
+
{
|
|
2634
|
+
"kind": "Reference",
|
|
2635
|
+
"text": "DesignSystem",
|
|
2636
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2637
|
+
}
|
|
2638
|
+
],
|
|
2639
|
+
"fileUrlPath": "../../dist/libs/components/lib/checkbox/definition.d.ts",
|
|
2640
|
+
"isReadonly": true,
|
|
2641
|
+
"releaseTag": "Public",
|
|
2642
|
+
"name": "registerCheckbox",
|
|
2643
|
+
"variableTypeTokenRange": {
|
|
2644
|
+
"startIndex": 1,
|
|
2645
|
+
"endIndex": 3
|
|
2646
|
+
}
|
|
2647
|
+
},
|
|
2648
|
+
{
|
|
2649
|
+
"kind": "Variable",
|
|
2650
|
+
"canonicalReference": "@vonage/vivid!registerDialog:var",
|
|
2651
|
+
"docComment": "",
|
|
2652
|
+
"excerptTokens": [
|
|
2653
|
+
{
|
|
2654
|
+
"kind": "Content",
|
|
2655
|
+
"text": "registerDialog: "
|
|
2656
|
+
},
|
|
2657
|
+
{
|
|
2658
|
+
"kind": "Content",
|
|
2659
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2660
|
+
},
|
|
2661
|
+
{
|
|
2662
|
+
"kind": "Reference",
|
|
2663
|
+
"text": "DesignSystem",
|
|
2664
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2665
|
+
}
|
|
2666
|
+
],
|
|
2667
|
+
"fileUrlPath": "../../dist/libs/components/lib/dialog/definition.d.ts",
|
|
2668
|
+
"isReadonly": true,
|
|
2669
|
+
"releaseTag": "Public",
|
|
2670
|
+
"name": "registerDialog",
|
|
2671
|
+
"variableTypeTokenRange": {
|
|
2672
|
+
"startIndex": 1,
|
|
2673
|
+
"endIndex": 3
|
|
2674
|
+
}
|
|
2675
|
+
},
|
|
2676
|
+
{
|
|
2677
|
+
"kind": "Variable",
|
|
2678
|
+
"canonicalReference": "@vonage/vivid!registerDivider:var",
|
|
2679
|
+
"docComment": "",
|
|
2680
|
+
"excerptTokens": [
|
|
2681
|
+
{
|
|
2682
|
+
"kind": "Content",
|
|
2683
|
+
"text": "registerDivider: "
|
|
2684
|
+
},
|
|
2685
|
+
{
|
|
2686
|
+
"kind": "Content",
|
|
2687
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2688
|
+
},
|
|
2689
|
+
{
|
|
2690
|
+
"kind": "Reference",
|
|
2691
|
+
"text": "DesignSystem",
|
|
2692
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2693
|
+
}
|
|
2694
|
+
],
|
|
2695
|
+
"fileUrlPath": "../../dist/libs/components/lib/divider/definition.d.ts",
|
|
2696
|
+
"isReadonly": true,
|
|
2697
|
+
"releaseTag": "Public",
|
|
2698
|
+
"name": "registerDivider",
|
|
2699
|
+
"variableTypeTokenRange": {
|
|
2700
|
+
"startIndex": 1,
|
|
2701
|
+
"endIndex": 3
|
|
2702
|
+
}
|
|
2703
|
+
},
|
|
2704
|
+
{
|
|
2705
|
+
"kind": "Variable",
|
|
2706
|
+
"canonicalReference": "@vonage/vivid!registerElevation:var",
|
|
2707
|
+
"docComment": "",
|
|
2708
|
+
"excerptTokens": [
|
|
2709
|
+
{
|
|
2710
|
+
"kind": "Content",
|
|
2711
|
+
"text": "registerElevation: "
|
|
2712
|
+
},
|
|
2713
|
+
{
|
|
2714
|
+
"kind": "Content",
|
|
2715
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2716
|
+
},
|
|
2717
|
+
{
|
|
2718
|
+
"kind": "Reference",
|
|
2719
|
+
"text": "DesignSystem",
|
|
2720
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2721
|
+
}
|
|
2722
|
+
],
|
|
2723
|
+
"fileUrlPath": "../../dist/libs/components/lib/elevation/definition.d.ts",
|
|
2724
|
+
"isReadonly": true,
|
|
2725
|
+
"releaseTag": "Public",
|
|
2726
|
+
"name": "registerElevation",
|
|
2727
|
+
"variableTypeTokenRange": {
|
|
2728
|
+
"startIndex": 1,
|
|
2729
|
+
"endIndex": 3
|
|
2730
|
+
}
|
|
2731
|
+
},
|
|
2732
|
+
{
|
|
2733
|
+
"kind": "Variable",
|
|
2734
|
+
"canonicalReference": "@vonage/vivid!registerFab:var",
|
|
2735
|
+
"docComment": "",
|
|
2736
|
+
"excerptTokens": [
|
|
2737
|
+
{
|
|
2738
|
+
"kind": "Content",
|
|
2739
|
+
"text": "registerFab: "
|
|
2740
|
+
},
|
|
2741
|
+
{
|
|
2742
|
+
"kind": "Content",
|
|
2743
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2744
|
+
},
|
|
2745
|
+
{
|
|
2746
|
+
"kind": "Reference",
|
|
2747
|
+
"text": "DesignSystem",
|
|
2748
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2749
|
+
}
|
|
2750
|
+
],
|
|
2751
|
+
"fileUrlPath": "../../dist/libs/components/lib/fab/definition.d.ts",
|
|
2752
|
+
"isReadonly": true,
|
|
2753
|
+
"releaseTag": "Public",
|
|
2754
|
+
"name": "registerFab",
|
|
2755
|
+
"variableTypeTokenRange": {
|
|
2756
|
+
"startIndex": 1,
|
|
2757
|
+
"endIndex": 3
|
|
2758
|
+
}
|
|
2759
|
+
},
|
|
2760
|
+
{
|
|
2761
|
+
"kind": "Variable",
|
|
2762
|
+
"canonicalReference": "@vonage/vivid!registerFactorial:var",
|
|
2763
|
+
"docComment": "",
|
|
2764
|
+
"excerptTokens": [
|
|
2765
|
+
{
|
|
2766
|
+
"kind": "Content",
|
|
2767
|
+
"text": "registerFactorial: "
|
|
2768
|
+
},
|
|
2769
|
+
{
|
|
2770
|
+
"kind": "Content",
|
|
2771
|
+
"text": "(args: any[]) => (prefix?: string) => "
|
|
2772
|
+
},
|
|
2773
|
+
{
|
|
2774
|
+
"kind": "Reference",
|
|
2775
|
+
"text": "DesignSystem",
|
|
2776
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2777
|
+
}
|
|
2778
|
+
],
|
|
2779
|
+
"fileUrlPath": "../../dist/libs/components/shared/design-system/index.d.ts",
|
|
2780
|
+
"isReadonly": true,
|
|
2781
|
+
"releaseTag": "Public",
|
|
2782
|
+
"name": "registerFactorial",
|
|
2783
|
+
"variableTypeTokenRange": {
|
|
2784
|
+
"startIndex": 1,
|
|
2785
|
+
"endIndex": 3
|
|
2786
|
+
}
|
|
2787
|
+
},
|
|
2788
|
+
{
|
|
2789
|
+
"kind": "Variable",
|
|
2790
|
+
"canonicalReference": "@vonage/vivid!registerIcon:var",
|
|
2791
|
+
"docComment": "",
|
|
2792
|
+
"excerptTokens": [
|
|
2793
|
+
{
|
|
2794
|
+
"kind": "Content",
|
|
2795
|
+
"text": "registerIcon: "
|
|
2796
|
+
},
|
|
2797
|
+
{
|
|
2798
|
+
"kind": "Content",
|
|
2799
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2800
|
+
},
|
|
2801
|
+
{
|
|
2802
|
+
"kind": "Reference",
|
|
2803
|
+
"text": "DesignSystem",
|
|
2804
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2805
|
+
}
|
|
2806
|
+
],
|
|
2807
|
+
"fileUrlPath": "../../dist/libs/components/lib/icon/definition.d.ts",
|
|
2808
|
+
"isReadonly": true,
|
|
2809
|
+
"releaseTag": "Public",
|
|
2810
|
+
"name": "registerIcon",
|
|
2811
|
+
"variableTypeTokenRange": {
|
|
2812
|
+
"startIndex": 1,
|
|
2813
|
+
"endIndex": 3
|
|
2814
|
+
}
|
|
2815
|
+
},
|
|
2816
|
+
{
|
|
2817
|
+
"kind": "Variable",
|
|
2818
|
+
"canonicalReference": "@vonage/vivid!registerLayout:var",
|
|
2819
|
+
"docComment": "",
|
|
2820
|
+
"excerptTokens": [
|
|
2821
|
+
{
|
|
2822
|
+
"kind": "Content",
|
|
2823
|
+
"text": "registerLayout: "
|
|
2824
|
+
},
|
|
2825
|
+
{
|
|
2826
|
+
"kind": "Content",
|
|
2827
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2828
|
+
},
|
|
2829
|
+
{
|
|
2830
|
+
"kind": "Reference",
|
|
2831
|
+
"text": "DesignSystem",
|
|
2832
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2833
|
+
}
|
|
2834
|
+
],
|
|
2835
|
+
"fileUrlPath": "../../dist/libs/components/lib/layout/definition.d.ts",
|
|
2836
|
+
"isReadonly": true,
|
|
2837
|
+
"releaseTag": "Public",
|
|
2838
|
+
"name": "registerLayout",
|
|
2839
|
+
"variableTypeTokenRange": {
|
|
2840
|
+
"startIndex": 1,
|
|
2841
|
+
"endIndex": 3
|
|
2842
|
+
}
|
|
2843
|
+
},
|
|
2844
|
+
{
|
|
2845
|
+
"kind": "Variable",
|
|
2846
|
+
"canonicalReference": "@vonage/vivid!registerListbox:var",
|
|
2847
|
+
"docComment": "",
|
|
2848
|
+
"excerptTokens": [
|
|
2849
|
+
{
|
|
2850
|
+
"kind": "Content",
|
|
2851
|
+
"text": "registerListbox: "
|
|
2852
|
+
},
|
|
2853
|
+
{
|
|
2854
|
+
"kind": "Content",
|
|
2855
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2856
|
+
},
|
|
2857
|
+
{
|
|
2858
|
+
"kind": "Reference",
|
|
2859
|
+
"text": "DesignSystem",
|
|
2860
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2861
|
+
}
|
|
2862
|
+
],
|
|
2863
|
+
"fileUrlPath": "../../dist/libs/components/lib/listbox/definition.d.ts",
|
|
2864
|
+
"isReadonly": true,
|
|
2865
|
+
"releaseTag": "Public",
|
|
2866
|
+
"name": "registerListbox",
|
|
2867
|
+
"variableTypeTokenRange": {
|
|
2868
|
+
"startIndex": 1,
|
|
2869
|
+
"endIndex": 3
|
|
2870
|
+
}
|
|
2871
|
+
},
|
|
2872
|
+
{
|
|
2873
|
+
"kind": "Variable",
|
|
2874
|
+
"canonicalReference": "@vonage/vivid!registerMenu:var",
|
|
2875
|
+
"docComment": "",
|
|
2876
|
+
"excerptTokens": [
|
|
2877
|
+
{
|
|
2878
|
+
"kind": "Content",
|
|
2879
|
+
"text": "registerMenu: "
|
|
2880
|
+
},
|
|
2881
|
+
{
|
|
2882
|
+
"kind": "Content",
|
|
2883
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2884
|
+
},
|
|
2885
|
+
{
|
|
2886
|
+
"kind": "Reference",
|
|
2887
|
+
"text": "DesignSystem",
|
|
2888
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2889
|
+
}
|
|
2890
|
+
],
|
|
2891
|
+
"fileUrlPath": "../../dist/libs/components/lib/menu/definition.d.ts",
|
|
2892
|
+
"isReadonly": true,
|
|
2893
|
+
"releaseTag": "Public",
|
|
2894
|
+
"name": "registerMenu",
|
|
2895
|
+
"variableTypeTokenRange": {
|
|
2896
|
+
"startIndex": 1,
|
|
2897
|
+
"endIndex": 3
|
|
2898
|
+
}
|
|
2899
|
+
},
|
|
2900
|
+
{
|
|
2901
|
+
"kind": "Variable",
|
|
2902
|
+
"canonicalReference": "@vonage/vivid!registerMenuItem:var",
|
|
2903
|
+
"docComment": "",
|
|
2904
|
+
"excerptTokens": [
|
|
2905
|
+
{
|
|
2906
|
+
"kind": "Content",
|
|
2907
|
+
"text": "registerMenuItem: "
|
|
2908
|
+
},
|
|
2909
|
+
{
|
|
2910
|
+
"kind": "Content",
|
|
2911
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2912
|
+
},
|
|
2913
|
+
{
|
|
2914
|
+
"kind": "Reference",
|
|
2915
|
+
"text": "DesignSystem",
|
|
2916
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2917
|
+
}
|
|
2918
|
+
],
|
|
2919
|
+
"fileUrlPath": "../../dist/libs/components/lib/menu-item/definition.d.ts",
|
|
2920
|
+
"isReadonly": true,
|
|
2921
|
+
"releaseTag": "Public",
|
|
2922
|
+
"name": "registerMenuItem",
|
|
2923
|
+
"variableTypeTokenRange": {
|
|
2924
|
+
"startIndex": 1,
|
|
2925
|
+
"endIndex": 3
|
|
2926
|
+
}
|
|
2927
|
+
},
|
|
2928
|
+
{
|
|
2929
|
+
"kind": "Variable",
|
|
2930
|
+
"canonicalReference": "@vonage/vivid!registerNav:var",
|
|
2931
|
+
"docComment": "",
|
|
2932
|
+
"excerptTokens": [
|
|
2933
|
+
{
|
|
2934
|
+
"kind": "Content",
|
|
2935
|
+
"text": "registerNav: "
|
|
2936
|
+
},
|
|
2937
|
+
{
|
|
2938
|
+
"kind": "Content",
|
|
2939
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2940
|
+
},
|
|
2941
|
+
{
|
|
2942
|
+
"kind": "Reference",
|
|
2943
|
+
"text": "DesignSystem",
|
|
2944
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2945
|
+
}
|
|
2946
|
+
],
|
|
2947
|
+
"fileUrlPath": "../../dist/libs/components/lib/nav/definition.d.ts",
|
|
2948
|
+
"isReadonly": true,
|
|
2949
|
+
"releaseTag": "Public",
|
|
2950
|
+
"name": "registerNav",
|
|
2951
|
+
"variableTypeTokenRange": {
|
|
2952
|
+
"startIndex": 1,
|
|
2953
|
+
"endIndex": 3
|
|
2954
|
+
}
|
|
2955
|
+
},
|
|
2956
|
+
{
|
|
2957
|
+
"kind": "Variable",
|
|
2958
|
+
"canonicalReference": "@vonage/vivid!registerNavDisclosure:var",
|
|
2959
|
+
"docComment": "",
|
|
2960
|
+
"excerptTokens": [
|
|
2961
|
+
{
|
|
2962
|
+
"kind": "Content",
|
|
2963
|
+
"text": "registerNavDisclosure: "
|
|
2964
|
+
},
|
|
2965
|
+
{
|
|
2966
|
+
"kind": "Content",
|
|
2967
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2968
|
+
},
|
|
2969
|
+
{
|
|
2970
|
+
"kind": "Reference",
|
|
2971
|
+
"text": "DesignSystem",
|
|
2972
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2973
|
+
}
|
|
2974
|
+
],
|
|
2975
|
+
"fileUrlPath": "../../dist/libs/components/lib/nav-disclosure/definition.d.ts",
|
|
2976
|
+
"isReadonly": true,
|
|
2977
|
+
"releaseTag": "Public",
|
|
2978
|
+
"name": "registerNavDisclosure",
|
|
2979
|
+
"variableTypeTokenRange": {
|
|
2980
|
+
"startIndex": 1,
|
|
2981
|
+
"endIndex": 3
|
|
2982
|
+
}
|
|
2983
|
+
},
|
|
2984
|
+
{
|
|
2985
|
+
"kind": "Variable",
|
|
2986
|
+
"canonicalReference": "@vonage/vivid!registerNavItem:var",
|
|
2987
|
+
"docComment": "",
|
|
2988
|
+
"excerptTokens": [
|
|
2989
|
+
{
|
|
2990
|
+
"kind": "Content",
|
|
2991
|
+
"text": "registerNavItem: "
|
|
2992
|
+
},
|
|
2993
|
+
{
|
|
2994
|
+
"kind": "Content",
|
|
2995
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2996
|
+
},
|
|
2997
|
+
{
|
|
2998
|
+
"kind": "Reference",
|
|
2999
|
+
"text": "DesignSystem",
|
|
3000
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
3001
|
+
}
|
|
3002
|
+
],
|
|
3003
|
+
"fileUrlPath": "../../dist/libs/components/lib/nav-item/definition.d.ts",
|
|
3004
|
+
"isReadonly": true,
|
|
3005
|
+
"releaseTag": "Public",
|
|
3006
|
+
"name": "registerNavItem",
|
|
3007
|
+
"variableTypeTokenRange": {
|
|
3008
|
+
"startIndex": 1,
|
|
3009
|
+
"endIndex": 3
|
|
3010
|
+
}
|
|
3011
|
+
},
|
|
3012
|
+
{
|
|
3013
|
+
"kind": "Variable",
|
|
3014
|
+
"canonicalReference": "@vonage/vivid!registerNote:var",
|
|
3015
|
+
"docComment": "",
|
|
3016
|
+
"excerptTokens": [
|
|
3017
|
+
{
|
|
3018
|
+
"kind": "Content",
|
|
3019
|
+
"text": "registerNote: "
|
|
3020
|
+
},
|
|
3021
|
+
{
|
|
3022
|
+
"kind": "Content",
|
|
3023
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
3024
|
+
},
|
|
3025
|
+
{
|
|
3026
|
+
"kind": "Reference",
|
|
3027
|
+
"text": "DesignSystem",
|
|
3028
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
3029
|
+
}
|
|
3030
|
+
],
|
|
3031
|
+
"fileUrlPath": "../../dist/libs/components/lib/note/definition.d.ts",
|
|
3032
|
+
"isReadonly": true,
|
|
3033
|
+
"releaseTag": "Public",
|
|
3034
|
+
"name": "registerNote",
|
|
3035
|
+
"variableTypeTokenRange": {
|
|
3036
|
+
"startIndex": 1,
|
|
3037
|
+
"endIndex": 3
|
|
3038
|
+
}
|
|
3039
|
+
},
|
|
3040
|
+
{
|
|
3041
|
+
"kind": "Variable",
|
|
3042
|
+
"canonicalReference": "@vonage/vivid!registerOption:var",
|
|
3043
|
+
"docComment": "",
|
|
3044
|
+
"excerptTokens": [
|
|
3045
|
+
{
|
|
3046
|
+
"kind": "Content",
|
|
3047
|
+
"text": "registerOption: "
|
|
3048
|
+
},
|
|
3049
|
+
{
|
|
3050
|
+
"kind": "Content",
|
|
3051
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
3052
|
+
},
|
|
3053
|
+
{
|
|
3054
|
+
"kind": "Reference",
|
|
3055
|
+
"text": "DesignSystem",
|
|
3056
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
3057
|
+
}
|
|
3058
|
+
],
|
|
3059
|
+
"fileUrlPath": "../../dist/libs/components/lib/option/definition.d.ts",
|
|
3060
|
+
"isReadonly": true,
|
|
3061
|
+
"releaseTag": "Public",
|
|
3062
|
+
"name": "registerOption",
|
|
3063
|
+
"variableTypeTokenRange": {
|
|
3064
|
+
"startIndex": 1,
|
|
3065
|
+
"endIndex": 3
|
|
3066
|
+
}
|
|
3067
|
+
},
|
|
3068
|
+
{
|
|
3069
|
+
"kind": "Variable",
|
|
3070
|
+
"canonicalReference": "@vonage/vivid!registerPopup:var",
|
|
3071
|
+
"docComment": "",
|
|
3072
|
+
"excerptTokens": [
|
|
3073
|
+
{
|
|
3074
|
+
"kind": "Content",
|
|
3075
|
+
"text": "registerPopup: "
|
|
3076
|
+
},
|
|
3077
|
+
{
|
|
3078
|
+
"kind": "Content",
|
|
3079
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
3080
|
+
},
|
|
3081
|
+
{
|
|
3082
|
+
"kind": "Reference",
|
|
3083
|
+
"text": "DesignSystem",
|
|
3084
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
3085
|
+
}
|
|
3086
|
+
],
|
|
3087
|
+
"fileUrlPath": "../../dist/libs/components/lib/popup/definition.d.ts",
|
|
3088
|
+
"isReadonly": true,
|
|
3089
|
+
"releaseTag": "Public",
|
|
3090
|
+
"name": "registerPopup",
|
|
3091
|
+
"variableTypeTokenRange": {
|
|
3092
|
+
"startIndex": 1,
|
|
3093
|
+
"endIndex": 3
|
|
3094
|
+
}
|
|
3095
|
+
},
|
|
3096
|
+
{
|
|
3097
|
+
"kind": "Variable",
|
|
3098
|
+
"canonicalReference": "@vonage/vivid!registerProgress:var",
|
|
3099
|
+
"docComment": "",
|
|
3100
|
+
"excerptTokens": [
|
|
3101
|
+
{
|
|
3102
|
+
"kind": "Content",
|
|
3103
|
+
"text": "registerProgress: "
|
|
3104
|
+
},
|
|
3105
|
+
{
|
|
3106
|
+
"kind": "Content",
|
|
3107
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
3108
|
+
},
|
|
3109
|
+
{
|
|
3110
|
+
"kind": "Reference",
|
|
3111
|
+
"text": "DesignSystem",
|
|
3112
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
3113
|
+
}
|
|
3114
|
+
],
|
|
3115
|
+
"fileUrlPath": "../../dist/libs/components/lib/progress/definition.d.ts",
|
|
3116
|
+
"isReadonly": true,
|
|
3117
|
+
"releaseTag": "Public",
|
|
3118
|
+
"name": "registerProgress",
|
|
3119
|
+
"variableTypeTokenRange": {
|
|
3120
|
+
"startIndex": 1,
|
|
3121
|
+
"endIndex": 3
|
|
3122
|
+
}
|
|
3123
|
+
},
|
|
3124
|
+
{
|
|
3125
|
+
"kind": "Variable",
|
|
3126
|
+
"canonicalReference": "@vonage/vivid!registerProgressRing:var",
|
|
3127
|
+
"docComment": "",
|
|
3128
|
+
"excerptTokens": [
|
|
3129
|
+
{
|
|
3130
|
+
"kind": "Content",
|
|
3131
|
+
"text": "registerProgressRing: "
|
|
2345
3132
|
},
|
|
2346
3133
|
{
|
|
2347
3134
|
"kind": "Content",
|
|
2348
|
-
"text": "
|
|
3135
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2349
3136
|
},
|
|
2350
3137
|
{
|
|
2351
3138
|
"kind": "Reference",
|
|
2352
|
-
"text": "
|
|
2353
|
-
"canonicalReference": "@microsoft/fast-foundation!
|
|
2354
|
-
},
|
|
2355
|
-
{
|
|
2356
|
-
"kind": "Content",
|
|
2357
|
-
"text": ">>"
|
|
3139
|
+
"text": "DesignSystem",
|
|
3140
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2358
3141
|
}
|
|
2359
3142
|
],
|
|
2360
|
-
"fileUrlPath": "../../dist/libs/components/lib/progress-ring/
|
|
3143
|
+
"fileUrlPath": "../../dist/libs/components/lib/progress-ring/definition.d.ts",
|
|
2361
3144
|
"isReadonly": true,
|
|
2362
3145
|
"releaseTag": "Public",
|
|
2363
|
-
"name": "
|
|
3146
|
+
"name": "registerProgressRing",
|
|
2364
3147
|
"variableTypeTokenRange": {
|
|
2365
3148
|
"startIndex": 1,
|
|
2366
|
-
"endIndex":
|
|
3149
|
+
"endIndex": 3
|
|
2367
3150
|
}
|
|
2368
3151
|
},
|
|
2369
3152
|
{
|
|
2370
3153
|
"kind": "Variable",
|
|
2371
|
-
"canonicalReference": "@vonage/vivid!
|
|
3154
|
+
"canonicalReference": "@vonage/vivid!registerRadio:var",
|
|
2372
3155
|
"docComment": "",
|
|
2373
3156
|
"excerptTokens": [
|
|
2374
3157
|
{
|
|
2375
3158
|
"kind": "Content",
|
|
2376
|
-
"text": "
|
|
3159
|
+
"text": "registerRadio: "
|
|
2377
3160
|
},
|
|
2378
3161
|
{
|
|
2379
3162
|
"kind": "Content",
|
|
2380
|
-
"text": "(
|
|
3163
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2381
3164
|
},
|
|
2382
3165
|
{
|
|
2383
3166
|
"kind": "Reference",
|
|
2384
|
-
"text": "
|
|
2385
|
-
"canonicalReference": "@microsoft/fast-foundation!
|
|
2386
|
-
}
|
|
3167
|
+
"text": "DesignSystem",
|
|
3168
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
3169
|
+
}
|
|
3170
|
+
],
|
|
3171
|
+
"fileUrlPath": "../../dist/libs/components/lib/radio/definition.d.ts",
|
|
3172
|
+
"isReadonly": true,
|
|
3173
|
+
"releaseTag": "Public",
|
|
3174
|
+
"name": "registerRadio",
|
|
3175
|
+
"variableTypeTokenRange": {
|
|
3176
|
+
"startIndex": 1,
|
|
3177
|
+
"endIndex": 3
|
|
3178
|
+
}
|
|
3179
|
+
},
|
|
3180
|
+
{
|
|
3181
|
+
"kind": "Variable",
|
|
3182
|
+
"canonicalReference": "@vonage/vivid!registerRadioGroup:var",
|
|
3183
|
+
"docComment": "",
|
|
3184
|
+
"excerptTokens": [
|
|
2387
3185
|
{
|
|
2388
3186
|
"kind": "Content",
|
|
2389
|
-
"text": "
|
|
2390
|
-
},
|
|
2391
|
-
{
|
|
2392
|
-
"kind": "Reference",
|
|
2393
|
-
"text": "RadioOptions",
|
|
2394
|
-
"canonicalReference": "@microsoft/fast-foundation!RadioOptions:type"
|
|
3187
|
+
"text": "registerRadioGroup: "
|
|
2395
3188
|
},
|
|
2396
3189
|
{
|
|
2397
3190
|
"kind": "Content",
|
|
2398
|
-
"text": "
|
|
3191
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2399
3192
|
},
|
|
2400
3193
|
{
|
|
2401
3194
|
"kind": "Reference",
|
|
2402
|
-
"text": "
|
|
2403
|
-
"canonicalReference": "@microsoft/fast-foundation!
|
|
2404
|
-
}
|
|
3195
|
+
"text": "DesignSystem",
|
|
3196
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
3197
|
+
}
|
|
3198
|
+
],
|
|
3199
|
+
"fileUrlPath": "../../dist/libs/components/lib/radio-group/definition.d.ts",
|
|
3200
|
+
"isReadonly": true,
|
|
3201
|
+
"releaseTag": "Public",
|
|
3202
|
+
"name": "registerRadioGroup",
|
|
3203
|
+
"variableTypeTokenRange": {
|
|
3204
|
+
"startIndex": 1,
|
|
3205
|
+
"endIndex": 3
|
|
3206
|
+
}
|
|
3207
|
+
},
|
|
3208
|
+
{
|
|
3209
|
+
"kind": "Variable",
|
|
3210
|
+
"canonicalReference": "@vonage/vivid!registerSideDrawer:var",
|
|
3211
|
+
"docComment": "",
|
|
3212
|
+
"excerptTokens": [
|
|
2405
3213
|
{
|
|
2406
3214
|
"kind": "Content",
|
|
2407
|
-
"text": "
|
|
2408
|
-
},
|
|
2409
|
-
{
|
|
2410
|
-
"kind": "Reference",
|
|
2411
|
-
"text": "RadioOptions",
|
|
2412
|
-
"canonicalReference": "@microsoft/fast-foundation!RadioOptions:type"
|
|
3215
|
+
"text": "registerSideDrawer: "
|
|
2413
3216
|
},
|
|
2414
3217
|
{
|
|
2415
3218
|
"kind": "Content",
|
|
2416
|
-
"text": "
|
|
3219
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2417
3220
|
},
|
|
2418
3221
|
{
|
|
2419
3222
|
"kind": "Reference",
|
|
2420
|
-
"text": "
|
|
2421
|
-
"canonicalReference": "@microsoft/fast-
|
|
2422
|
-
}
|
|
3223
|
+
"text": "DesignSystem",
|
|
3224
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
3225
|
+
}
|
|
3226
|
+
],
|
|
3227
|
+
"fileUrlPath": "../../dist/libs/components/lib/side-drawer/definition.d.ts",
|
|
3228
|
+
"isReadonly": true,
|
|
3229
|
+
"releaseTag": "Public",
|
|
3230
|
+
"name": "registerSideDrawer",
|
|
3231
|
+
"variableTypeTokenRange": {
|
|
3232
|
+
"startIndex": 1,
|
|
3233
|
+
"endIndex": 3
|
|
3234
|
+
}
|
|
3235
|
+
},
|
|
3236
|
+
{
|
|
3237
|
+
"kind": "Variable",
|
|
3238
|
+
"canonicalReference": "@vonage/vivid!registerSlider:var",
|
|
3239
|
+
"docComment": "",
|
|
3240
|
+
"excerptTokens": [
|
|
2423
3241
|
{
|
|
2424
3242
|
"kind": "Content",
|
|
2425
|
-
"text": "
|
|
3243
|
+
"text": "registerSlider: "
|
|
2426
3244
|
},
|
|
2427
3245
|
{
|
|
2428
|
-
"kind": "
|
|
2429
|
-
"text": "
|
|
2430
|
-
"canonicalReference": "@microsoft/fast-foundation!FoundationElement:class"
|
|
3246
|
+
"kind": "Content",
|
|
3247
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2431
3248
|
},
|
|
2432
3249
|
{
|
|
2433
|
-
"kind": "
|
|
2434
|
-
"text": "
|
|
3250
|
+
"kind": "Reference",
|
|
3251
|
+
"text": "DesignSystem",
|
|
3252
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2435
3253
|
}
|
|
2436
3254
|
],
|
|
2437
|
-
"fileUrlPath": "../../dist/libs/components/lib/
|
|
3255
|
+
"fileUrlPath": "../../dist/libs/components/lib/slider/definition.d.ts",
|
|
2438
3256
|
"isReadonly": true,
|
|
2439
3257
|
"releaseTag": "Public",
|
|
2440
|
-
"name": "
|
|
3258
|
+
"name": "registerSlider",
|
|
2441
3259
|
"variableTypeTokenRange": {
|
|
2442
3260
|
"startIndex": 1,
|
|
2443
|
-
"endIndex":
|
|
3261
|
+
"endIndex": 3
|
|
2444
3262
|
}
|
|
2445
3263
|
},
|
|
2446
3264
|
{
|
|
2447
3265
|
"kind": "Variable",
|
|
2448
|
-
"canonicalReference": "@vonage/vivid!
|
|
3266
|
+
"canonicalReference": "@vonage/vivid!registerSwitch:var",
|
|
2449
3267
|
"docComment": "",
|
|
2450
3268
|
"excerptTokens": [
|
|
2451
3269
|
{
|
|
2452
3270
|
"kind": "Content",
|
|
2453
|
-
"text": "
|
|
3271
|
+
"text": "registerSwitch: "
|
|
2454
3272
|
},
|
|
2455
3273
|
{
|
|
2456
3274
|
"kind": "Content",
|
|
2457
|
-
"text": "(
|
|
3275
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2458
3276
|
},
|
|
2459
3277
|
{
|
|
2460
3278
|
"kind": "Reference",
|
|
2461
|
-
"text": "
|
|
2462
|
-
"canonicalReference": "@microsoft/fast-foundation!
|
|
2463
|
-
}
|
|
3279
|
+
"text": "DesignSystem",
|
|
3280
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
3281
|
+
}
|
|
3282
|
+
],
|
|
3283
|
+
"fileUrlPath": "../../dist/libs/components/lib/switch/definition.d.ts",
|
|
3284
|
+
"isReadonly": true,
|
|
3285
|
+
"releaseTag": "Public",
|
|
3286
|
+
"name": "registerSwitch",
|
|
3287
|
+
"variableTypeTokenRange": {
|
|
3288
|
+
"startIndex": 1,
|
|
3289
|
+
"endIndex": 3
|
|
3290
|
+
}
|
|
3291
|
+
},
|
|
3292
|
+
{
|
|
3293
|
+
"kind": "Variable",
|
|
3294
|
+
"canonicalReference": "@vonage/vivid!registerTextArea:var",
|
|
3295
|
+
"docComment": "",
|
|
3296
|
+
"excerptTokens": [
|
|
2464
3297
|
{
|
|
2465
3298
|
"kind": "Content",
|
|
2466
|
-
"text": "
|
|
2467
|
-
},
|
|
2468
|
-
{
|
|
2469
|
-
"kind": "Reference",
|
|
2470
|
-
"text": "ComposableStyles",
|
|
2471
|
-
"canonicalReference": "@microsoft/fast-element!ComposableStyles:type"
|
|
3299
|
+
"text": "registerTextArea: "
|
|
2472
3300
|
},
|
|
2473
3301
|
{
|
|
2474
3302
|
"kind": "Content",
|
|
2475
|
-
"text": "
|
|
3303
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2476
3304
|
},
|
|
2477
3305
|
{
|
|
2478
3306
|
"kind": "Reference",
|
|
2479
|
-
"text": "
|
|
2480
|
-
"canonicalReference": "@microsoft/fast-foundation!
|
|
2481
|
-
}
|
|
3307
|
+
"text": "DesignSystem",
|
|
3308
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
3309
|
+
}
|
|
3310
|
+
],
|
|
3311
|
+
"fileUrlPath": "../../dist/libs/components/lib/text-area/definition.d.ts",
|
|
3312
|
+
"isReadonly": true,
|
|
3313
|
+
"releaseTag": "Public",
|
|
3314
|
+
"name": "registerTextArea",
|
|
3315
|
+
"variableTypeTokenRange": {
|
|
3316
|
+
"startIndex": 1,
|
|
3317
|
+
"endIndex": 3
|
|
3318
|
+
}
|
|
3319
|
+
},
|
|
3320
|
+
{
|
|
3321
|
+
"kind": "Variable",
|
|
3322
|
+
"canonicalReference": "@vonage/vivid!registerTextField:var",
|
|
3323
|
+
"docComment": "",
|
|
3324
|
+
"excerptTokens": [
|
|
2482
3325
|
{
|
|
2483
3326
|
"kind": "Content",
|
|
2484
|
-
"text": "
|
|
2485
|
-
},
|
|
2486
|
-
{
|
|
2487
|
-
"kind": "Reference",
|
|
2488
|
-
"text": "ComposableStyles",
|
|
2489
|
-
"canonicalReference": "@microsoft/fast-element!ComposableStyles:type"
|
|
3327
|
+
"text": "registerTextField: "
|
|
2490
3328
|
},
|
|
2491
3329
|
{
|
|
2492
3330
|
"kind": "Content",
|
|
2493
|
-
"text": "
|
|
3331
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2494
3332
|
},
|
|
2495
3333
|
{
|
|
2496
3334
|
"kind": "Reference",
|
|
2497
|
-
"text": "
|
|
2498
|
-
"canonicalReference": "@
|
|
2499
|
-
},
|
|
2500
|
-
{
|
|
2501
|
-
"kind": "Content",
|
|
2502
|
-
"text": ">"
|
|
3335
|
+
"text": "DesignSystem",
|
|
3336
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2503
3337
|
}
|
|
2504
3338
|
],
|
|
2505
|
-
"fileUrlPath": "../../dist/libs/components/lib/
|
|
3339
|
+
"fileUrlPath": "../../dist/libs/components/lib/text-field/definition.d.ts",
|
|
2506
3340
|
"isReadonly": true,
|
|
2507
3341
|
"releaseTag": "Public",
|
|
2508
|
-
"name": "
|
|
3342
|
+
"name": "registerTextField",
|
|
2509
3343
|
"variableTypeTokenRange": {
|
|
2510
3344
|
"startIndex": 1,
|
|
2511
|
-
"endIndex":
|
|
3345
|
+
"endIndex": 3
|
|
2512
3346
|
}
|
|
2513
3347
|
},
|
|
2514
3348
|
{
|
|
2515
3349
|
"kind": "Variable",
|
|
2516
|
-
"canonicalReference": "@vonage/vivid!
|
|
3350
|
+
"canonicalReference": "@vonage/vivid!registerTooltip:var",
|
|
2517
3351
|
"docComment": "",
|
|
2518
3352
|
"excerptTokens": [
|
|
2519
3353
|
{
|
|
2520
3354
|
"kind": "Content",
|
|
2521
|
-
"text": "
|
|
3355
|
+
"text": "registerTooltip: "
|
|
2522
3356
|
},
|
|
2523
3357
|
{
|
|
2524
3358
|
"kind": "Content",
|
|
2525
|
-
"text": "(
|
|
3359
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2526
3360
|
},
|
|
2527
3361
|
{
|
|
2528
3362
|
"kind": "Reference",
|
|
2529
|
-
"text": "
|
|
2530
|
-
"canonicalReference": "@microsoft/fast-foundation!
|
|
2531
|
-
}
|
|
3363
|
+
"text": "DesignSystem",
|
|
3364
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
3365
|
+
}
|
|
3366
|
+
],
|
|
3367
|
+
"fileUrlPath": "../../dist/libs/components/lib/tooltip/definition.d.ts",
|
|
3368
|
+
"isReadonly": true,
|
|
3369
|
+
"releaseTag": "Public",
|
|
3370
|
+
"name": "registerTooltip",
|
|
3371
|
+
"variableTypeTokenRange": {
|
|
3372
|
+
"startIndex": 1,
|
|
3373
|
+
"endIndex": 3
|
|
3374
|
+
}
|
|
3375
|
+
},
|
|
3376
|
+
{
|
|
3377
|
+
"kind": "Variable",
|
|
3378
|
+
"canonicalReference": "@vonage/vivid!sideDrawerElements:var",
|
|
3379
|
+
"docComment": "",
|
|
3380
|
+
"excerptTokens": [
|
|
2532
3381
|
{
|
|
2533
3382
|
"kind": "Content",
|
|
2534
|
-
"text": "
|
|
2535
|
-
},
|
|
2536
|
-
{
|
|
2537
|
-
"kind": "Reference",
|
|
2538
|
-
"text": "FoundationElementDefinition",
|
|
2539
|
-
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
3383
|
+
"text": "sideDrawerElements: "
|
|
2540
3384
|
},
|
|
2541
3385
|
{
|
|
2542
3386
|
"kind": "Content",
|
|
2543
|
-
"text": "
|
|
3387
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
2544
3388
|
},
|
|
2545
3389
|
{
|
|
2546
3390
|
"kind": "Reference",
|
|
@@ -2576,35 +3420,35 @@
|
|
|
2576
3420
|
},
|
|
2577
3421
|
{
|
|
2578
3422
|
"kind": "Content",
|
|
2579
|
-
"text": ">>"
|
|
3423
|
+
"text": ">>[]"
|
|
2580
3424
|
}
|
|
2581
3425
|
],
|
|
2582
|
-
"fileUrlPath": "../../dist/libs/components/lib/side-drawer/
|
|
3426
|
+
"fileUrlPath": "../../dist/libs/components/lib/side-drawer/definition.d.ts",
|
|
2583
3427
|
"isReadonly": true,
|
|
2584
3428
|
"releaseTag": "Public",
|
|
2585
|
-
"name": "
|
|
3429
|
+
"name": "sideDrawerElements",
|
|
2586
3430
|
"variableTypeTokenRange": {
|
|
2587
3431
|
"startIndex": 1,
|
|
2588
|
-
"endIndex":
|
|
3432
|
+
"endIndex": 10
|
|
2589
3433
|
}
|
|
2590
3434
|
},
|
|
2591
3435
|
{
|
|
2592
3436
|
"kind": "Variable",
|
|
2593
|
-
"canonicalReference": "@vonage/vivid!
|
|
3437
|
+
"canonicalReference": "@vonage/vivid!sliderElements:var",
|
|
2594
3438
|
"docComment": "",
|
|
2595
3439
|
"excerptTokens": [
|
|
2596
3440
|
{
|
|
2597
3441
|
"kind": "Content",
|
|
2598
|
-
"text": "
|
|
3442
|
+
"text": "sliderElements: "
|
|
2599
3443
|
},
|
|
2600
3444
|
{
|
|
2601
3445
|
"kind": "Content",
|
|
2602
|
-
"text": "(
|
|
3446
|
+
"text": "(import(\"@microsoft/fast-foundation\")."
|
|
2603
3447
|
},
|
|
2604
3448
|
{
|
|
2605
3449
|
"kind": "Reference",
|
|
2606
|
-
"text": "
|
|
2607
|
-
"canonicalReference": "@microsoft/fast-foundation!
|
|
3450
|
+
"text": "FoundationElementRegistry",
|
|
3451
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementRegistry:class"
|
|
2608
3452
|
},
|
|
2609
3453
|
{
|
|
2610
3454
|
"kind": "Content",
|
|
@@ -2617,7 +3461,25 @@
|
|
|
2617
3461
|
},
|
|
2618
3462
|
{
|
|
2619
3463
|
"kind": "Content",
|
|
2620
|
-
"text": "
|
|
3464
|
+
"text": ", import(\"@microsoft/fast-element\")."
|
|
3465
|
+
},
|
|
3466
|
+
{
|
|
3467
|
+
"kind": "Reference",
|
|
3468
|
+
"text": "Constructable",
|
|
3469
|
+
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
3470
|
+
},
|
|
3471
|
+
{
|
|
3472
|
+
"kind": "Content",
|
|
3473
|
+
"text": "<import(\"@microsoft/fast-foundation\")."
|
|
3474
|
+
},
|
|
3475
|
+
{
|
|
3476
|
+
"kind": "Reference",
|
|
3477
|
+
"text": "FoundationElement",
|
|
3478
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElement:class"
|
|
3479
|
+
},
|
|
3480
|
+
{
|
|
3481
|
+
"kind": "Content",
|
|
3482
|
+
"text": ">> | import(\"@microsoft/fast-foundation\")."
|
|
2621
3483
|
},
|
|
2622
3484
|
{
|
|
2623
3485
|
"kind": "Reference",
|
|
@@ -2626,12 +3488,12 @@
|
|
|
2626
3488
|
},
|
|
2627
3489
|
{
|
|
2628
3490
|
"kind": "Content",
|
|
2629
|
-
"text": "<"
|
|
3491
|
+
"text": "<import(\"@microsoft/fast-foundation\")."
|
|
2630
3492
|
},
|
|
2631
3493
|
{
|
|
2632
3494
|
"kind": "Reference",
|
|
2633
|
-
"text": "
|
|
2634
|
-
"canonicalReference": "@microsoft/fast-foundation!
|
|
3495
|
+
"text": "FoundationElementDefinition",
|
|
3496
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
2635
3497
|
},
|
|
2636
3498
|
{
|
|
2637
3499
|
"kind": "Content",
|
|
@@ -2653,48 +3515,30 @@
|
|
|
2653
3515
|
},
|
|
2654
3516
|
{
|
|
2655
3517
|
"kind": "Content",
|
|
2656
|
-
"text": ">>"
|
|
3518
|
+
"text": ">>)[]"
|
|
2657
3519
|
}
|
|
2658
3520
|
],
|
|
2659
|
-
"fileUrlPath": "../../dist/libs/components/lib/slider/
|
|
3521
|
+
"fileUrlPath": "../../dist/libs/components/lib/slider/definition.d.ts",
|
|
2660
3522
|
"isReadonly": true,
|
|
2661
3523
|
"releaseTag": "Public",
|
|
2662
|
-
"name": "
|
|
3524
|
+
"name": "sliderElements",
|
|
2663
3525
|
"variableTypeTokenRange": {
|
|
2664
3526
|
"startIndex": 1,
|
|
2665
|
-
"endIndex":
|
|
3527
|
+
"endIndex": 18
|
|
2666
3528
|
}
|
|
2667
3529
|
},
|
|
2668
3530
|
{
|
|
2669
3531
|
"kind": "Variable",
|
|
2670
|
-
"canonicalReference": "@vonage/vivid!
|
|
3532
|
+
"canonicalReference": "@vonage/vivid!switchElements:var",
|
|
2671
3533
|
"docComment": "",
|
|
2672
3534
|
"excerptTokens": [
|
|
2673
3535
|
{
|
|
2674
3536
|
"kind": "Content",
|
|
2675
|
-
"text": "
|
|
3537
|
+
"text": "switchElements: "
|
|
2676
3538
|
},
|
|
2677
3539
|
{
|
|
2678
3540
|
"kind": "Content",
|
|
2679
|
-
"text": "
|
|
2680
|
-
},
|
|
2681
|
-
{
|
|
2682
|
-
"kind": "Reference",
|
|
2683
|
-
"text": "OverrideFoundationElementDefinition",
|
|
2684
|
-
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
2685
|
-
},
|
|
2686
|
-
{
|
|
2687
|
-
"kind": "Content",
|
|
2688
|
-
"text": "<"
|
|
2689
|
-
},
|
|
2690
|
-
{
|
|
2691
|
-
"kind": "Reference",
|
|
2692
|
-
"text": "FoundationElementDefinition",
|
|
2693
|
-
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
2694
|
-
},
|
|
2695
|
-
{
|
|
2696
|
-
"kind": "Content",
|
|
2697
|
-
"text": "> | undefined) => import(\"@microsoft/fast-foundation\")."
|
|
3541
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
2698
3542
|
},
|
|
2699
3543
|
{
|
|
2700
3544
|
"kind": "Reference",
|
|
@@ -2730,48 +3574,30 @@
|
|
|
2730
3574
|
},
|
|
2731
3575
|
{
|
|
2732
3576
|
"kind": "Content",
|
|
2733
|
-
"text": ">>"
|
|
3577
|
+
"text": ">>[]"
|
|
2734
3578
|
}
|
|
2735
3579
|
],
|
|
2736
|
-
"fileUrlPath": "../../dist/libs/components/lib/switch/
|
|
3580
|
+
"fileUrlPath": "../../dist/libs/components/lib/switch/definition.d.ts",
|
|
2737
3581
|
"isReadonly": true,
|
|
2738
3582
|
"releaseTag": "Public",
|
|
2739
|
-
"name": "
|
|
3583
|
+
"name": "switchElements",
|
|
2740
3584
|
"variableTypeTokenRange": {
|
|
2741
3585
|
"startIndex": 1,
|
|
2742
|
-
"endIndex":
|
|
3586
|
+
"endIndex": 10
|
|
2743
3587
|
}
|
|
2744
3588
|
},
|
|
2745
3589
|
{
|
|
2746
3590
|
"kind": "Variable",
|
|
2747
|
-
"canonicalReference": "@vonage/vivid!
|
|
3591
|
+
"canonicalReference": "@vonage/vivid!textAreaElements:var",
|
|
2748
3592
|
"docComment": "",
|
|
2749
3593
|
"excerptTokens": [
|
|
2750
3594
|
{
|
|
2751
3595
|
"kind": "Content",
|
|
2752
|
-
"text": "
|
|
3596
|
+
"text": "textAreaElements: "
|
|
2753
3597
|
},
|
|
2754
3598
|
{
|
|
2755
3599
|
"kind": "Content",
|
|
2756
|
-
"text": "
|
|
2757
|
-
},
|
|
2758
|
-
{
|
|
2759
|
-
"kind": "Reference",
|
|
2760
|
-
"text": "OverrideFoundationElementDefinition",
|
|
2761
|
-
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
2762
|
-
},
|
|
2763
|
-
{
|
|
2764
|
-
"kind": "Content",
|
|
2765
|
-
"text": "<"
|
|
2766
|
-
},
|
|
2767
|
-
{
|
|
2768
|
-
"kind": "Reference",
|
|
2769
|
-
"text": "FoundationElementDefinition",
|
|
2770
|
-
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
2771
|
-
},
|
|
2772
|
-
{
|
|
2773
|
-
"kind": "Content",
|
|
2774
|
-
"text": "> | undefined) => import(\"@microsoft/fast-foundation\")."
|
|
3600
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
2775
3601
|
},
|
|
2776
3602
|
{
|
|
2777
3603
|
"kind": "Reference",
|
|
@@ -2807,48 +3633,30 @@
|
|
|
2807
3633
|
},
|
|
2808
3634
|
{
|
|
2809
3635
|
"kind": "Content",
|
|
2810
|
-
"text": ">>"
|
|
3636
|
+
"text": ">>[]"
|
|
2811
3637
|
}
|
|
2812
3638
|
],
|
|
2813
|
-
"fileUrlPath": "../../dist/libs/components/lib/text-area/
|
|
3639
|
+
"fileUrlPath": "../../dist/libs/components/lib/text-area/definition.d.ts",
|
|
2814
3640
|
"isReadonly": true,
|
|
2815
3641
|
"releaseTag": "Public",
|
|
2816
|
-
"name": "
|
|
3642
|
+
"name": "textAreaElements",
|
|
2817
3643
|
"variableTypeTokenRange": {
|
|
2818
3644
|
"startIndex": 1,
|
|
2819
|
-
"endIndex":
|
|
3645
|
+
"endIndex": 10
|
|
2820
3646
|
}
|
|
2821
3647
|
},
|
|
2822
3648
|
{
|
|
2823
3649
|
"kind": "Variable",
|
|
2824
|
-
"canonicalReference": "@vonage/vivid!
|
|
3650
|
+
"canonicalReference": "@vonage/vivid!textFieldElements:var",
|
|
2825
3651
|
"docComment": "",
|
|
2826
3652
|
"excerptTokens": [
|
|
2827
3653
|
{
|
|
2828
3654
|
"kind": "Content",
|
|
2829
|
-
"text": "
|
|
3655
|
+
"text": "textFieldElements: "
|
|
2830
3656
|
},
|
|
2831
3657
|
{
|
|
2832
3658
|
"kind": "Content",
|
|
2833
|
-
"text": "
|
|
2834
|
-
},
|
|
2835
|
-
{
|
|
2836
|
-
"kind": "Reference",
|
|
2837
|
-
"text": "OverrideFoundationElementDefinition",
|
|
2838
|
-
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
2839
|
-
},
|
|
2840
|
-
{
|
|
2841
|
-
"kind": "Content",
|
|
2842
|
-
"text": "<"
|
|
2843
|
-
},
|
|
2844
|
-
{
|
|
2845
|
-
"kind": "Reference",
|
|
2846
|
-
"text": "FoundationElementDefinition",
|
|
2847
|
-
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
2848
|
-
},
|
|
2849
|
-
{
|
|
2850
|
-
"kind": "Content",
|
|
2851
|
-
"text": "> | undefined) => import(\"@microsoft/fast-foundation\")."
|
|
3659
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
2852
3660
|
},
|
|
2853
3661
|
{
|
|
2854
3662
|
"kind": "Reference",
|
|
@@ -2884,48 +3692,30 @@
|
|
|
2884
3692
|
},
|
|
2885
3693
|
{
|
|
2886
3694
|
"kind": "Content",
|
|
2887
|
-
"text": ">>"
|
|
3695
|
+
"text": ">>[]"
|
|
2888
3696
|
}
|
|
2889
3697
|
],
|
|
2890
|
-
"fileUrlPath": "../../dist/libs/components/lib/text-field/
|
|
3698
|
+
"fileUrlPath": "../../dist/libs/components/lib/text-field/definition.d.ts",
|
|
2891
3699
|
"isReadonly": true,
|
|
2892
3700
|
"releaseTag": "Public",
|
|
2893
|
-
"name": "
|
|
3701
|
+
"name": "textFieldElements",
|
|
2894
3702
|
"variableTypeTokenRange": {
|
|
2895
3703
|
"startIndex": 1,
|
|
2896
|
-
"endIndex":
|
|
3704
|
+
"endIndex": 10
|
|
2897
3705
|
}
|
|
2898
3706
|
},
|
|
2899
3707
|
{
|
|
2900
3708
|
"kind": "Variable",
|
|
2901
|
-
"canonicalReference": "@vonage/vivid!
|
|
3709
|
+
"canonicalReference": "@vonage/vivid!tooltipElements:var",
|
|
2902
3710
|
"docComment": "",
|
|
2903
3711
|
"excerptTokens": [
|
|
2904
3712
|
{
|
|
2905
3713
|
"kind": "Content",
|
|
2906
|
-
"text": "
|
|
3714
|
+
"text": "tooltipElements: "
|
|
2907
3715
|
},
|
|
2908
3716
|
{
|
|
2909
3717
|
"kind": "Content",
|
|
2910
|
-
"text": "
|
|
2911
|
-
},
|
|
2912
|
-
{
|
|
2913
|
-
"kind": "Reference",
|
|
2914
|
-
"text": "OverrideFoundationElementDefinition",
|
|
2915
|
-
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
2916
|
-
},
|
|
2917
|
-
{
|
|
2918
|
-
"kind": "Content",
|
|
2919
|
-
"text": "<"
|
|
2920
|
-
},
|
|
2921
|
-
{
|
|
2922
|
-
"kind": "Reference",
|
|
2923
|
-
"text": "FoundationElementDefinition",
|
|
2924
|
-
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
2925
|
-
},
|
|
2926
|
-
{
|
|
2927
|
-
"kind": "Content",
|
|
2928
|
-
"text": "> | undefined) => import(\"@microsoft/fast-foundation\")."
|
|
3718
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
2929
3719
|
},
|
|
2930
3720
|
{
|
|
2931
3721
|
"kind": "Reference",
|
|
@@ -2961,16 +3751,16 @@
|
|
|
2961
3751
|
},
|
|
2962
3752
|
{
|
|
2963
3753
|
"kind": "Content",
|
|
2964
|
-
"text": ">>"
|
|
3754
|
+
"text": ">>[]"
|
|
2965
3755
|
}
|
|
2966
3756
|
],
|
|
2967
|
-
"fileUrlPath": "../../dist/libs/components/lib/tooltip/
|
|
3757
|
+
"fileUrlPath": "../../dist/libs/components/lib/tooltip/definition.d.ts",
|
|
2968
3758
|
"isReadonly": true,
|
|
2969
3759
|
"releaseTag": "Public",
|
|
2970
|
-
"name": "
|
|
3760
|
+
"name": "tooltipElements",
|
|
2971
3761
|
"variableTypeTokenRange": {
|
|
2972
3762
|
"startIndex": 1,
|
|
2973
|
-
"endIndex":
|
|
3763
|
+
"endIndex": 10
|
|
2974
3764
|
}
|
|
2975
3765
|
}
|
|
2976
3766
|
]
|