@vonage/vivid 3.0.0-next.101 → 3.0.0-next.103

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/README.md +1 -1
  2. package/accordion/index.js +1 -1
  3. package/accordion-item/index.js +1 -1
  4. package/action-group/index.js +1 -1
  5. package/avatar/index.js +1 -1
  6. package/badge/index.js +1 -1
  7. package/banner/index.js +1 -1
  8. package/breadcrumb-item/index.js +1 -1
  9. package/calendar/index.js +1 -1
  10. package/calendar-event/index.js +1 -1
  11. package/card/index.js +1 -1
  12. package/checkbox/index.js +1 -1
  13. package/custom-elements.json +3643 -0
  14. package/dialog/index.js +1 -1
  15. package/fab/index.js +1 -1
  16. package/focus/index.js +1 -1
  17. package/header/index.js +1 -1
  18. package/icon/index.js +1 -1
  19. package/listbox/index.js +1 -1
  20. package/nav-disclosure/index.js +1 -1
  21. package/nav-item/index.js +1 -1
  22. package/note/index.js +1 -1
  23. package/number-field/index.js +1 -1
  24. package/package.json +3 -3
  25. package/progress/index.js +1 -1
  26. package/progress-ring/index.js +1 -1
  27. package/radio/index.js +1 -1
  28. package/radio-group/index.js +1 -1
  29. package/shared/form-elements.js +22 -9
  30. package/shared/index2.js +1 -1
  31. package/shared/index4.js +1 -1
  32. package/shared/index5.js +1 -1
  33. package/shared/index7.js +1 -1
  34. package/shared/patterns/form-elements/form-elements.d.ts +4 -1
  35. package/side-drawer/index.js +1 -1
  36. package/styles/core/all.css +13 -2
  37. package/styles/core/theme.css +1 -1
  38. package/styles/core/typography.css +13 -2
  39. package/styles/tokens/theme-dark.css +4 -4
  40. package/styles/tokens/theme-light.css +4 -4
  41. package/switch/index.js +1 -1
  42. package/text-area/index.js +1 -1
  43. package/text-field/index.js +1 -1
  44. package/tooltip/index.js +1 -1
  45. package/vivid.api.json +3157 -0
@@ -0,0 +1,3643 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "libs/components/src/lib/accordion/accordion.ts",
8
+ "declarations": [
9
+ {
10
+ "kind": "class",
11
+ "description": "Base class for accordion",
12
+ "name": "Accordion",
13
+ "members": [
14
+ {
15
+ "kind": "field",
16
+ "name": "accordionItems",
17
+ "type": {
18
+ "text": "HTMLCollectionOf<AccordionItem> | undefined"
19
+ },
20
+ "privacy": "private",
21
+ "default": "undefined"
22
+ },
23
+ {
24
+ "kind": "field",
25
+ "name": "multi",
26
+ "type": {
27
+ "text": "boolean"
28
+ },
29
+ "default": "false",
30
+ "privacy": "public",
31
+ "description": ""
32
+ },
33
+ {
34
+ "kind": "method",
35
+ "name": "handleOpened",
36
+ "privacy": "private",
37
+ "return": {
38
+ "type": {
39
+ "text": "any"
40
+ }
41
+ },
42
+ "parameters": [
43
+ {
44
+ "name": "e",
45
+ "type": {
46
+ "text": "Event"
47
+ }
48
+ }
49
+ ]
50
+ },
51
+ {
52
+ "kind": "method",
53
+ "name": "closeAll",
54
+ "return": {
55
+ "type": {
56
+ "text": "void"
57
+ }
58
+ }
59
+ }
60
+ ],
61
+ "attributes": [
62
+ {
63
+ "type": {
64
+ "text": "boolean"
65
+ },
66
+ "default": "false",
67
+ "fieldName": "multi"
68
+ }
69
+ ],
70
+ "superclass": {
71
+ "name": "FoundationElement",
72
+ "package": "@microsoft/fast-foundation"
73
+ }
74
+ }
75
+ ],
76
+ "exports": [
77
+ {
78
+ "kind": "js",
79
+ "name": "Accordion",
80
+ "declaration": {
81
+ "name": "Accordion",
82
+ "module": "libs/components/src/lib/accordion/accordion.ts"
83
+ }
84
+ }
85
+ ]
86
+ },
87
+ {
88
+ "kind": "javascript-module",
89
+ "path": "libs/components/src/lib/accordion-item/accordion-item.ts",
90
+ "declarations": [
91
+ {
92
+ "kind": "class",
93
+ "description": "Base class for accordion-item",
94
+ "name": "AccordionItem",
95
+ "members": [
96
+ {
97
+ "kind": "field",
98
+ "name": "heading",
99
+ "type": {
100
+ "text": "string | undefined"
101
+ },
102
+ "privacy": "public",
103
+ "description": ""
104
+ },
105
+ {
106
+ "kind": "field",
107
+ "name": "headingLevel",
108
+ "type": {
109
+ "text": "2 | 3 | 4 | 5 | 6 | undefined"
110
+ },
111
+ "privacy": "public",
112
+ "description": ""
113
+ },
114
+ {
115
+ "kind": "field",
116
+ "name": "noIndicator",
117
+ "type": {
118
+ "text": "boolean"
119
+ },
120
+ "default": "false",
121
+ "description": "Indicates whether the accordion-item has indicator",
122
+ "privacy": "public"
123
+ },
124
+ {
125
+ "kind": "field",
126
+ "name": "meta",
127
+ "type": {
128
+ "text": "string | undefined"
129
+ },
130
+ "privacy": "public",
131
+ "description": ""
132
+ },
133
+ {
134
+ "kind": "field",
135
+ "name": "open",
136
+ "type": {
137
+ "text": "boolean"
138
+ },
139
+ "default": "false",
140
+ "description": "Indicates whether the accordion-item is open",
141
+ "privacy": "public"
142
+ },
143
+ {
144
+ "kind": "method",
145
+ "name": "emitEvent",
146
+ "privacy": "private",
147
+ "return": {
148
+ "type": {
149
+ "text": "void"
150
+ }
151
+ },
152
+ "parameters": [
153
+ {
154
+ "name": "name",
155
+ "type": {
156
+ "text": "string"
157
+ }
158
+ }
159
+ ]
160
+ }
161
+ ],
162
+ "attributes": [
163
+ {
164
+ "name": "heading",
165
+ "type": {
166
+ "text": "string | undefined"
167
+ },
168
+ "fieldName": "heading"
169
+ },
170
+ {
171
+ "name": "heading-level",
172
+ "type": {
173
+ "text": "2 | 3 | 4 | 5 | 6 | undefined"
174
+ },
175
+ "fieldName": "headingLevel"
176
+ },
177
+ {
178
+ "name": "no-indicator",
179
+ "type": {
180
+ "text": "boolean"
181
+ },
182
+ "default": "false",
183
+ "description": "Indicates whether the accordion-item has indicator",
184
+ "fieldName": "noIndicator"
185
+ },
186
+ {
187
+ "name": "meta",
188
+ "type": {
189
+ "text": "string | undefined"
190
+ },
191
+ "fieldName": "meta"
192
+ },
193
+ {
194
+ "type": {
195
+ "text": "boolean"
196
+ },
197
+ "default": "false",
198
+ "description": "Indicates whether the accordion-item is open",
199
+ "fieldName": "open"
200
+ }
201
+ ],
202
+ "superclass": {
203
+ "name": "FoundationElement",
204
+ "package": "@microsoft/fast-foundation"
205
+ }
206
+ }
207
+ ],
208
+ "exports": [
209
+ {
210
+ "kind": "js",
211
+ "name": "AccordionItem",
212
+ "declaration": {
213
+ "name": "AccordionItem",
214
+ "module": "libs/components/src/lib/accordion-item/accordion-item.ts"
215
+ }
216
+ }
217
+ ]
218
+ },
219
+ {
220
+ "kind": "javascript-module",
221
+ "path": "libs/components/src/lib/action-group/action-group.ts",
222
+ "declarations": [
223
+ {
224
+ "kind": "class",
225
+ "description": "Base class for action-group",
226
+ "name": "ActionGroup",
227
+ "members": [
228
+ {
229
+ "kind": "field",
230
+ "name": "shape",
231
+ "type": {
232
+ "text": "ActionGroupShape | undefined"
233
+ },
234
+ "description": "The shape the ActionGroup should have.",
235
+ "privacy": "public"
236
+ },
237
+ {
238
+ "kind": "field",
239
+ "name": "appearance",
240
+ "type": {
241
+ "text": "ActionGroupAppearance | undefined"
242
+ },
243
+ "description": "The appearance the ActionGroup should have.",
244
+ "privacy": "public"
245
+ },
246
+ {
247
+ "kind": "field",
248
+ "name": "tight",
249
+ "type": {
250
+ "text": "boolean"
251
+ },
252
+ "default": "false",
253
+ "description": "Indicates whether action group should have padding.",
254
+ "privacy": "public"
255
+ }
256
+ ],
257
+ "attributes": [
258
+ {
259
+ "name": "shape",
260
+ "type": {
261
+ "text": "ActionGroupShape | undefined"
262
+ },
263
+ "description": "The shape the ActionGroup should have.",
264
+ "fieldName": "shape"
265
+ },
266
+ {
267
+ "name": "appearance",
268
+ "type": {
269
+ "text": "ActionGroupAppearance | undefined"
270
+ },
271
+ "description": "The appearance the ActionGroup should have.",
272
+ "fieldName": "appearance"
273
+ },
274
+ {
275
+ "type": {
276
+ "text": "boolean"
277
+ },
278
+ "default": "false",
279
+ "description": "Indicates whether action group should have padding.",
280
+ "fieldName": "tight"
281
+ }
282
+ ],
283
+ "superclass": {
284
+ "name": "FoundationElement",
285
+ "package": "@microsoft/fast-foundation"
286
+ }
287
+ }
288
+ ],
289
+ "exports": [
290
+ {
291
+ "kind": "js",
292
+ "name": "ActionGroup",
293
+ "declaration": {
294
+ "name": "ActionGroup",
295
+ "module": "libs/components/src/lib/action-group/action-group.ts"
296
+ }
297
+ }
298
+ ]
299
+ },
300
+ {
301
+ "kind": "javascript-module",
302
+ "path": "libs/components/src/lib/avatar/avatar.ts",
303
+ "declarations": [
304
+ {
305
+ "kind": "class",
306
+ "description": "",
307
+ "name": "Avatar",
308
+ "members": [
309
+ {
310
+ "kind": "field",
311
+ "name": "connotation",
312
+ "type": {
313
+ "text": "AvatarConnotation | undefined"
314
+ },
315
+ "description": "The connotation the avatar should have.",
316
+ "privacy": "public"
317
+ },
318
+ {
319
+ "kind": "field",
320
+ "name": "shape",
321
+ "type": {
322
+ "text": "AvatarShape | undefined"
323
+ },
324
+ "description": "The shape the avatar should have.",
325
+ "privacy": "public"
326
+ },
327
+ {
328
+ "kind": "field",
329
+ "name": "appearance",
330
+ "type": {
331
+ "text": "AvatarAppearance | undefined"
332
+ },
333
+ "description": "The appearance the avatar should have.",
334
+ "privacy": "public"
335
+ },
336
+ {
337
+ "kind": "field",
338
+ "name": "size",
339
+ "type": {
340
+ "text": "AvatarSize | undefined"
341
+ },
342
+ "description": "The size the avatar should have.",
343
+ "privacy": "public"
344
+ },
345
+ {
346
+ "kind": "field",
347
+ "name": "icon",
348
+ "type": {
349
+ "text": "string | undefined"
350
+ },
351
+ "description": "avatar header icon",
352
+ "privacy": "public"
353
+ },
354
+ {
355
+ "kind": "field",
356
+ "name": "name",
357
+ "type": {
358
+ "text": "string | undefined"
359
+ },
360
+ "description": "avatar name",
361
+ "privacy": "public"
362
+ }
363
+ ],
364
+ "attributes": [
365
+ {
366
+ "name": "connotation",
367
+ "type": {
368
+ "text": "AvatarConnotation | undefined"
369
+ },
370
+ "description": "The connotation the avatar should have.",
371
+ "fieldName": "connotation"
372
+ },
373
+ {
374
+ "name": "shape",
375
+ "type": {
376
+ "text": "AvatarShape | undefined"
377
+ },
378
+ "description": "The shape the avatar should have.",
379
+ "fieldName": "shape"
380
+ },
381
+ {
382
+ "name": "appearance",
383
+ "type": {
384
+ "text": "AvatarAppearance | undefined"
385
+ },
386
+ "description": "The appearance the avatar should have.",
387
+ "fieldName": "appearance"
388
+ },
389
+ {
390
+ "name": "size",
391
+ "type": {
392
+ "text": "AvatarSize | undefined"
393
+ },
394
+ "description": "The size the avatar should have.",
395
+ "fieldName": "size"
396
+ },
397
+ {
398
+ "name": "icon",
399
+ "type": {
400
+ "text": "string | undefined"
401
+ },
402
+ "description": "avatar header icon",
403
+ "fieldName": "icon"
404
+ },
405
+ {
406
+ "name": "name",
407
+ "type": {
408
+ "text": "string | undefined"
409
+ },
410
+ "description": "avatar name",
411
+ "fieldName": "name"
412
+ }
413
+ ],
414
+ "superclass": {
415
+ "name": "FoundationElement",
416
+ "package": "@microsoft/fast-foundation"
417
+ }
418
+ }
419
+ ],
420
+ "exports": [
421
+ {
422
+ "kind": "js",
423
+ "name": "Avatar",
424
+ "declaration": {
425
+ "name": "Avatar",
426
+ "module": "libs/components/src/lib/avatar/avatar.ts"
427
+ }
428
+ }
429
+ ]
430
+ },
431
+ {
432
+ "kind": "javascript-module",
433
+ "path": "libs/components/src/lib/badge/badge.ts",
434
+ "declarations": [
435
+ {
436
+ "kind": "class",
437
+ "description": "Base class for badge",
438
+ "name": "Badge",
439
+ "members": [
440
+ {
441
+ "kind": "field",
442
+ "name": "connotation",
443
+ "type": {
444
+ "text": "BadgeConnotation | undefined"
445
+ },
446
+ "description": "The connotation the badge should have.",
447
+ "privacy": "public"
448
+ },
449
+ {
450
+ "kind": "field",
451
+ "name": "shape",
452
+ "type": {
453
+ "text": "BadgeShape | undefined"
454
+ },
455
+ "description": "The shape the badge should have.",
456
+ "privacy": "public"
457
+ },
458
+ {
459
+ "kind": "field",
460
+ "name": "appearance",
461
+ "type": {
462
+ "text": "BadgeAppearance | undefined"
463
+ },
464
+ "description": "The appearance the badge should have.",
465
+ "privacy": "public"
466
+ },
467
+ {
468
+ "kind": "field",
469
+ "name": "text",
470
+ "type": {
471
+ "text": "string | undefined"
472
+ },
473
+ "description": "Indicates the badge's text.",
474
+ "privacy": "public"
475
+ }
476
+ ],
477
+ "attributes": [
478
+ {
479
+ "name": "connotation",
480
+ "type": {
481
+ "text": "BadgeConnotation | undefined"
482
+ },
483
+ "description": "The connotation the badge should have.",
484
+ "fieldName": "connotation"
485
+ },
486
+ {
487
+ "name": "shape",
488
+ "type": {
489
+ "text": "BadgeShape | undefined"
490
+ },
491
+ "description": "The shape the badge should have.",
492
+ "fieldName": "shape"
493
+ },
494
+ {
495
+ "name": "appearance",
496
+ "type": {
497
+ "text": "BadgeAppearance | undefined"
498
+ },
499
+ "description": "The appearance the badge should have.",
500
+ "fieldName": "appearance"
501
+ },
502
+ {
503
+ "name": "text",
504
+ "type": {
505
+ "text": "string | undefined"
506
+ },
507
+ "description": "Indicates the badge's text.",
508
+ "fieldName": "text"
509
+ }
510
+ ],
511
+ "superclass": {
512
+ "name": "FoundationElement",
513
+ "package": "@microsoft/fast-foundation"
514
+ }
515
+ }
516
+ ],
517
+ "exports": [
518
+ {
519
+ "kind": "js",
520
+ "name": "Badge",
521
+ "declaration": {
522
+ "name": "Badge",
523
+ "module": "libs/components/src/lib/badge/badge.ts"
524
+ }
525
+ }
526
+ ]
527
+ },
528
+ {
529
+ "kind": "javascript-module",
530
+ "path": "libs/components/src/lib/banner/banner.ts",
531
+ "declarations": [
532
+ {
533
+ "kind": "class",
534
+ "description": "Base class for banner",
535
+ "name": "Banner",
536
+ "members": [
537
+ {
538
+ "kind": "field",
539
+ "name": "actionHref",
540
+ "type": {
541
+ "text": "string | undefined"
542
+ }
543
+ },
544
+ {
545
+ "kind": "field",
546
+ "name": "actionText",
547
+ "type": {
548
+ "text": "string | undefined"
549
+ }
550
+ },
551
+ {
552
+ "kind": "field",
553
+ "name": "removable",
554
+ "type": {
555
+ "text": "boolean"
556
+ },
557
+ "default": "false"
558
+ },
559
+ {
560
+ "kind": "field",
561
+ "name": "ariaLive",
562
+ "type": {
563
+ "text": "any"
564
+ }
565
+ },
566
+ {
567
+ "kind": "field",
568
+ "name": "role",
569
+ "type": {
570
+ "text": "string | undefined"
571
+ }
572
+ },
573
+ {
574
+ "kind": "field",
575
+ "name": "text",
576
+ "type": {
577
+ "text": "string | undefined"
578
+ }
579
+ },
580
+ {
581
+ "kind": "field",
582
+ "name": "connotation",
583
+ "type": {
584
+ "text": "BannerConnotation | undefined"
585
+ }
586
+ },
587
+ {
588
+ "kind": "field",
589
+ "name": "conditionedIcon",
590
+ "readonly": true
591
+ },
592
+ {
593
+ "kind": "method",
594
+ "name": "remove",
595
+ "return": {
596
+ "type": {
597
+ "text": "void"
598
+ }
599
+ }
600
+ },
601
+ {
602
+ "kind": "field",
603
+ "name": "#handleRemoveEnd",
604
+ "privacy": "private"
605
+ },
606
+ {
607
+ "kind": "field",
608
+ "name": "#closeOnKeyDown",
609
+ "privacy": "private"
610
+ }
611
+ ],
612
+ "attributes": [
613
+ {
614
+ "name": "action-href",
615
+ "type": {
616
+ "text": "string | undefined"
617
+ },
618
+ "fieldName": "actionHref"
619
+ },
620
+ {
621
+ "name": "action-text",
622
+ "type": {
623
+ "text": "string | undefined"
624
+ },
625
+ "fieldName": "actionText"
626
+ },
627
+ {
628
+ "type": {
629
+ "text": "boolean"
630
+ },
631
+ "default": "false",
632
+ "fieldName": "removable"
633
+ },
634
+ {
635
+ "name": "aria-live",
636
+ "type": {
637
+ "text": "any"
638
+ },
639
+ "fieldName": "ariaLive"
640
+ },
641
+ {
642
+ "name": "role",
643
+ "type": {
644
+ "text": "string | undefined"
645
+ },
646
+ "fieldName": "role"
647
+ },
648
+ {
649
+ "name": "text",
650
+ "type": {
651
+ "text": "string | undefined"
652
+ },
653
+ "fieldName": "text"
654
+ },
655
+ {
656
+ "name": "connotation",
657
+ "type": {
658
+ "text": "BannerConnotation | undefined"
659
+ },
660
+ "fieldName": "connotation"
661
+ }
662
+ ],
663
+ "superclass": {
664
+ "name": "FoundationElement",
665
+ "package": "@microsoft/fast-foundation"
666
+ }
667
+ }
668
+ ],
669
+ "exports": [
670
+ {
671
+ "kind": "js",
672
+ "name": "Banner",
673
+ "declaration": {
674
+ "name": "Banner",
675
+ "module": "libs/components/src/lib/banner/banner.ts"
676
+ }
677
+ }
678
+ ]
679
+ },
680
+ {
681
+ "kind": "javascript-module",
682
+ "path": "libs/components/src/lib/breadcrumb/breadcrumb.ts",
683
+ "declarations": [
684
+ {
685
+ "kind": "class",
686
+ "description": "Base class for breadcrumb",
687
+ "name": "Breadcrumb",
688
+ "superclass": {
689
+ "name": "FoundationElement",
690
+ "package": "@microsoft/fast-foundation"
691
+ }
692
+ }
693
+ ],
694
+ "exports": [
695
+ {
696
+ "kind": "js",
697
+ "name": "Breadcrumb",
698
+ "declaration": {
699
+ "name": "Breadcrumb",
700
+ "module": "libs/components/src/lib/breadcrumb/breadcrumb.ts"
701
+ }
702
+ }
703
+ ]
704
+ },
705
+ {
706
+ "kind": "javascript-module",
707
+ "path": "libs/components/src/lib/breadcrumb-item/breadcrumb-item.ts",
708
+ "declarations": [
709
+ {
710
+ "kind": "class",
711
+ "description": "Base class for breadcrumb-item",
712
+ "name": "BreadcrumbItem",
713
+ "members": [
714
+ {
715
+ "kind": "field",
716
+ "name": "text",
717
+ "type": {
718
+ "text": "string | undefined"
719
+ }
720
+ }
721
+ ],
722
+ "attributes": [
723
+ {
724
+ "name": "text",
725
+ "type": {
726
+ "text": "string | undefined"
727
+ },
728
+ "fieldName": "text"
729
+ }
730
+ ],
731
+ "superclass": {
732
+ "name": "FastBreadcrumbItem",
733
+ "package": "@microsoft/fast-foundation"
734
+ }
735
+ }
736
+ ],
737
+ "exports": [
738
+ {
739
+ "kind": "js",
740
+ "name": "BreadcrumbItem",
741
+ "declaration": {
742
+ "name": "BreadcrumbItem",
743
+ "module": "libs/components/src/lib/breadcrumb-item/breadcrumb-item.ts"
744
+ }
745
+ }
746
+ ]
747
+ },
748
+ {
749
+ "kind": "javascript-module",
750
+ "path": "libs/components/src/lib/button/button.ts",
751
+ "declarations": [
752
+ {
753
+ "kind": "class",
754
+ "description": "Base class for button",
755
+ "name": "Button",
756
+ "members": [
757
+ {
758
+ "kind": "field",
759
+ "name": "connotation",
760
+ "type": {
761
+ "text": "ButtonConnotation | undefined"
762
+ },
763
+ "description": "The connotation the button should have.",
764
+ "privacy": "public"
765
+ },
766
+ {
767
+ "kind": "field",
768
+ "name": "shape",
769
+ "type": {
770
+ "text": "ButtonShape | undefined"
771
+ },
772
+ "description": "The shape the button should have.",
773
+ "privacy": "public"
774
+ },
775
+ {
776
+ "kind": "field",
777
+ "name": "appearance",
778
+ "type": {
779
+ "text": "ButtonAppearance | undefined"
780
+ },
781
+ "description": "The appearance the button should have.",
782
+ "privacy": "public"
783
+ },
784
+ {
785
+ "kind": "field",
786
+ "name": "size",
787
+ "type": {
788
+ "text": "ButtonSize | undefined"
789
+ },
790
+ "description": "The size the button should have.",
791
+ "privacy": "public"
792
+ },
793
+ {
794
+ "kind": "field",
795
+ "name": "stacked",
796
+ "type": {
797
+ "text": "boolean"
798
+ },
799
+ "default": "false",
800
+ "description": "Indicates the icon is stacked.",
801
+ "privacy": "public"
802
+ },
803
+ {
804
+ "kind": "field",
805
+ "name": "label",
806
+ "type": {
807
+ "text": "string | undefined"
808
+ },
809
+ "description": "Indicates the button's label.",
810
+ "privacy": "public"
811
+ }
812
+ ],
813
+ "attributes": [
814
+ {
815
+ "name": "connotation",
816
+ "type": {
817
+ "text": "ButtonConnotation | undefined"
818
+ },
819
+ "description": "The connotation the button should have.",
820
+ "fieldName": "connotation"
821
+ },
822
+ {
823
+ "name": "shape",
824
+ "type": {
825
+ "text": "ButtonShape | undefined"
826
+ },
827
+ "description": "The shape the button should have.",
828
+ "fieldName": "shape"
829
+ },
830
+ {
831
+ "name": "appearance",
832
+ "type": {
833
+ "text": "ButtonAppearance | undefined"
834
+ },
835
+ "description": "The appearance the button should have.",
836
+ "fieldName": "appearance"
837
+ },
838
+ {
839
+ "name": "size",
840
+ "type": {
841
+ "text": "ButtonSize | undefined"
842
+ },
843
+ "description": "The size the button should have.",
844
+ "fieldName": "size"
845
+ },
846
+ {
847
+ "name": "stacked",
848
+ "type": {
849
+ "text": "boolean"
850
+ },
851
+ "default": "false",
852
+ "description": "Indicates the icon is stacked.",
853
+ "fieldName": "stacked"
854
+ },
855
+ {
856
+ "name": "label",
857
+ "type": {
858
+ "text": "string | undefined"
859
+ },
860
+ "description": "Indicates the button's label.",
861
+ "fieldName": "label"
862
+ }
863
+ ],
864
+ "superclass": {
865
+ "name": "FoundationButton",
866
+ "package": "@microsoft/fast-foundation"
867
+ }
868
+ }
869
+ ],
870
+ "exports": [
871
+ {
872
+ "kind": "js",
873
+ "name": "Button",
874
+ "declaration": {
875
+ "name": "Button",
876
+ "module": "libs/components/src/lib/button/button.ts"
877
+ }
878
+ }
879
+ ]
880
+ },
881
+ {
882
+ "kind": "javascript-module",
883
+ "path": "libs/components/src/lib/calendar/calendar.ts",
884
+ "declarations": [
885
+ {
886
+ "kind": "class",
887
+ "description": "Base class for calendar",
888
+ "name": "Calendar",
889
+ "members": [
890
+ {
891
+ "kind": "field",
892
+ "name": "datetime",
893
+ "type": {
894
+ "text": "Date | string | undefined"
895
+ },
896
+ "description": "The date within a week of choice.\nAccepts any parameter acceptable by the `Date()` constructor.",
897
+ "privacy": "public"
898
+ },
899
+ {
900
+ "kind": "field",
901
+ "name": "startDay",
902
+ "type": {
903
+ "text": "'sunday' | 'monday' | undefined"
904
+ },
905
+ "description": "The day to show as the first within a work week.\nAccepts either Sunday or Monday\nCalendar will - programmatically - default to Monday if not specified\n\n(only applicable for views of more than a single day)",
906
+ "privacy": "public"
907
+ },
908
+ {
909
+ "kind": "field",
910
+ "name": "locales",
911
+ "type": {
912
+ "text": "string | string[] | undefined | undefined"
913
+ },
914
+ "description": "A locale string or array of locale strings that contain one or more language or locale tags.\nIf you include more than one locale string,\nlist them in descending order of priority so that the first entry is the preferred locale.\nIf you omit this parameter, the default locale of the JavaScript runtime is used.\nThis parameter must conform to BCP 47 standards; see the Intl.Collator object for details.\ne.g. en-US | en-US, he-IL",
915
+ "privacy": "public"
916
+ },
917
+ {
918
+ "kind": "field",
919
+ "name": "hour12",
920
+ "type": {
921
+ "text": "boolean"
922
+ },
923
+ "default": "false",
924
+ "description": "The convention of displayed time in which the day runs from midnight to midnight and is divided into 24 or 12 hours.\nUnless provided, choice will be set according to local time preference (e.g. US = 12, IL = 24)",
925
+ "privacy": "public"
926
+ },
927
+ {
928
+ "kind": "field",
929
+ "name": "#activeCalendarEvent",
930
+ "privacy": "private",
931
+ "type": {
932
+ "text": "CalendarEvent | null"
933
+ },
934
+ "readonly": true
935
+ },
936
+ {
937
+ "kind": "field",
938
+ "name": "getEventContext",
939
+ "default": "getEventContext",
940
+ "description": "Fire an event",
941
+ "parameters": [
942
+ {
943
+ "description": "event name",
944
+ "name": "event",
945
+ "type": {
946
+ "text": "string"
947
+ }
948
+ },
949
+ {
950
+ "description": "optional event detail object",
951
+ "name": "detail",
952
+ "optional": true,
953
+ "type": {
954
+ "text": "Object"
955
+ }
956
+ }
957
+ ],
958
+ "return": {
959
+ "type": {
960
+ "text": "boolean"
961
+ }
962
+ }
963
+ },
964
+ {
965
+ "kind": "method",
966
+ "name": "getCalendarEventContainingCell",
967
+ "privacy": "private",
968
+ "parameters": [
969
+ {
970
+ "name": "calendarEvent",
971
+ "type": {
972
+ "text": "CalendarEvent"
973
+ }
974
+ }
975
+ ]
976
+ },
977
+ {
978
+ "kind": "method",
979
+ "name": "arrowKeysInteractions",
980
+ "privacy": "private",
981
+ "parameters": [
982
+ {
983
+ "name": "key",
984
+ "type": {
985
+ "text": "PredefindKeys"
986
+ }
987
+ }
988
+ ]
989
+ },
990
+ {
991
+ "kind": "method",
992
+ "name": "activateElement",
993
+ "privacy": "private",
994
+ "parameters": [
995
+ {
996
+ "name": "el",
997
+ "type": {
998
+ "text": "HTMLElement | null | undefined"
999
+ }
1000
+ }
1001
+ ]
1002
+ },
1003
+ {
1004
+ "kind": "method",
1005
+ "name": "onKeydown",
1006
+ "parameters": [
1007
+ {
1008
+ "name": "{ key }",
1009
+ "type": {
1010
+ "text": "KeyboardEvent"
1011
+ }
1012
+ }
1013
+ ]
1014
+ }
1015
+ ],
1016
+ "attributes": [
1017
+ {
1018
+ "name": "datetime",
1019
+ "type": {
1020
+ "text": "Date | string | undefined"
1021
+ },
1022
+ "description": "The date within a week of choice.\nAccepts any parameter acceptable by the `Date()` constructor.",
1023
+ "fieldName": "datetime"
1024
+ },
1025
+ {
1026
+ "name": "start-day",
1027
+ "type": {
1028
+ "text": "'sunday' | 'monday' | undefined"
1029
+ },
1030
+ "description": "The day to show as the first within a work week.\nAccepts either Sunday or Monday\nCalendar will - programmatically - default to Monday if not specified\n\n(only applicable for views of more than a single day)",
1031
+ "fieldName": "startDay"
1032
+ },
1033
+ {
1034
+ "name": "locales",
1035
+ "type": {
1036
+ "text": "string | string[] | undefined | undefined"
1037
+ },
1038
+ "description": "A locale string or array of locale strings that contain one or more language or locale tags.\nIf you include more than one locale string,\nlist them in descending order of priority so that the first entry is the preferred locale.\nIf you omit this parameter, the default locale of the JavaScript runtime is used.\nThis parameter must conform to BCP 47 standards; see the Intl.Collator object for details.\ne.g. en-US | en-US, he-IL",
1039
+ "fieldName": "locales"
1040
+ },
1041
+ {
1042
+ "type": {
1043
+ "text": "boolean"
1044
+ },
1045
+ "default": "false",
1046
+ "description": "The convention of displayed time in which the day runs from midnight to midnight and is divided into 24 or 12 hours.\nUnless provided, choice will be set according to local time preference (e.g. US = 12, IL = 24)",
1047
+ "fieldName": "hour12"
1048
+ }
1049
+ ],
1050
+ "superclass": {
1051
+ "name": "FoundationElement",
1052
+ "package": "@microsoft/fast-foundation"
1053
+ }
1054
+ }
1055
+ ],
1056
+ "exports": [
1057
+ {
1058
+ "kind": "js",
1059
+ "name": "Calendar",
1060
+ "declaration": {
1061
+ "name": "Calendar",
1062
+ "module": "libs/components/src/lib/calendar/calendar.ts"
1063
+ }
1064
+ }
1065
+ ]
1066
+ },
1067
+ {
1068
+ "kind": "javascript-module",
1069
+ "path": "libs/components/src/lib/calendar-event/calendar-event.ts",
1070
+ "declarations": [
1071
+ {
1072
+ "kind": "class",
1073
+ "description": "Base class for calendar-event",
1074
+ "name": "CalendarEvent",
1075
+ "members": [
1076
+ {
1077
+ "kind": "field",
1078
+ "name": "heading",
1079
+ "type": {
1080
+ "text": "string | undefined"
1081
+ },
1082
+ "description": "the heading of the event",
1083
+ "privacy": "public"
1084
+ },
1085
+ {
1086
+ "kind": "field",
1087
+ "name": "description",
1088
+ "type": {
1089
+ "text": "string | undefined"
1090
+ },
1091
+ "description": "the description of the event",
1092
+ "privacy": "public"
1093
+ },
1094
+ {
1095
+ "kind": "field",
1096
+ "name": "connotation",
1097
+ "type": {
1098
+ "text": "CalendarEventConnotation | undefined"
1099
+ },
1100
+ "description": "The connotation the calendar event should have.",
1101
+ "privacy": "public"
1102
+ },
1103
+ {
1104
+ "kind": "field",
1105
+ "name": "appearance",
1106
+ "type": {
1107
+ "text": "CalendarEventAppearance | undefined"
1108
+ },
1109
+ "description": "The appearance the calendar event should have.",
1110
+ "privacy": "public"
1111
+ },
1112
+ {
1113
+ "kind": "field",
1114
+ "name": "overlapCount",
1115
+ "type": {
1116
+ "text": "number | undefined"
1117
+ },
1118
+ "description": "sets card display precendence and indentation",
1119
+ "privacy": "public"
1120
+ },
1121
+ {
1122
+ "kind": "field",
1123
+ "name": "start",
1124
+ "type": {
1125
+ "text": "number | undefined"
1126
+ },
1127
+ "description": "time of day event starts",
1128
+ "privacy": "public"
1129
+ },
1130
+ {
1131
+ "kind": "field",
1132
+ "name": "duration",
1133
+ "type": {
1134
+ "text": "number | undefined"
1135
+ },
1136
+ "description": "event's time duration in hours",
1137
+ "privacy": "public"
1138
+ }
1139
+ ],
1140
+ "attributes": [
1141
+ {
1142
+ "name": "heading",
1143
+ "type": {
1144
+ "text": "string | undefined"
1145
+ },
1146
+ "description": "the heading of the event",
1147
+ "fieldName": "heading"
1148
+ },
1149
+ {
1150
+ "name": "description",
1151
+ "type": {
1152
+ "text": "string | undefined"
1153
+ },
1154
+ "description": "the description of the event",
1155
+ "fieldName": "description"
1156
+ },
1157
+ {
1158
+ "name": "connotation",
1159
+ "type": {
1160
+ "text": "CalendarEventConnotation | undefined"
1161
+ },
1162
+ "description": "The connotation the calendar event should have.",
1163
+ "fieldName": "connotation"
1164
+ },
1165
+ {
1166
+ "name": "appearance",
1167
+ "type": {
1168
+ "text": "CalendarEventAppearance | undefined"
1169
+ },
1170
+ "description": "The appearance the calendar event should have.",
1171
+ "fieldName": "appearance"
1172
+ },
1173
+ {
1174
+ "name": "overlap-count",
1175
+ "type": {
1176
+ "text": "number | undefined"
1177
+ },
1178
+ "description": "sets card display precendence and indentation",
1179
+ "fieldName": "overlapCount"
1180
+ },
1181
+ {
1182
+ "type": {
1183
+ "text": "number | undefined"
1184
+ },
1185
+ "description": "time of day event starts",
1186
+ "fieldName": "start"
1187
+ },
1188
+ {
1189
+ "type": {
1190
+ "text": "number | undefined"
1191
+ },
1192
+ "description": "event's time duration in hours",
1193
+ "fieldName": "duration"
1194
+ }
1195
+ ],
1196
+ "superclass": {
1197
+ "name": "FoundationElement",
1198
+ "package": "@microsoft/fast-foundation"
1199
+ }
1200
+ }
1201
+ ],
1202
+ "exports": [
1203
+ {
1204
+ "kind": "js",
1205
+ "name": "CalendarEvent",
1206
+ "declaration": {
1207
+ "name": "CalendarEvent",
1208
+ "module": "libs/components/src/lib/calendar-event/calendar-event.ts"
1209
+ }
1210
+ }
1211
+ ]
1212
+ },
1213
+ {
1214
+ "kind": "javascript-module",
1215
+ "path": "libs/components/src/lib/card/card.ts",
1216
+ "declarations": [
1217
+ {
1218
+ "kind": "class",
1219
+ "description": "Base class for card",
1220
+ "name": "Card",
1221
+ "members": [
1222
+ {
1223
+ "kind": "field",
1224
+ "name": "headline",
1225
+ "type": {
1226
+ "text": "string | undefined"
1227
+ },
1228
+ "description": "the text of the card heading\naccepts string",
1229
+ "privacy": "public"
1230
+ },
1231
+ {
1232
+ "kind": "field",
1233
+ "name": "subtitle",
1234
+ "type": {
1235
+ "text": "string | undefined"
1236
+ },
1237
+ "description": "the text of the card sub-heading\naccepts string",
1238
+ "privacy": "public"
1239
+ },
1240
+ {
1241
+ "kind": "field",
1242
+ "name": "text",
1243
+ "type": {
1244
+ "text": "string | undefined"
1245
+ },
1246
+ "description": "the text of the card sub-heading\naccepts string",
1247
+ "privacy": "public"
1248
+ },
1249
+ {
1250
+ "kind": "field",
1251
+ "name": "icon",
1252
+ "type": {
1253
+ "text": "string | undefined"
1254
+ },
1255
+ "description": "card header icon",
1256
+ "privacy": "public"
1257
+ },
1258
+ {
1259
+ "kind": "field",
1260
+ "name": "elevation",
1261
+ "type": {
1262
+ "text": "0 | 2 | 4 | 8 | 12 | 16 | 24 | undefined"
1263
+ },
1264
+ "description": "card elevation dp",
1265
+ "privacy": "public"
1266
+ },
1267
+ {
1268
+ "kind": "field",
1269
+ "name": "graphicSlottedContent",
1270
+ "type": {
1271
+ "text": "HTMLElement[] | undefined"
1272
+ }
1273
+ },
1274
+ {
1275
+ "kind": "field",
1276
+ "name": "hasMetaSlottedContent",
1277
+ "type": {
1278
+ "text": "HTMLElement[] | undefined"
1279
+ }
1280
+ }
1281
+ ],
1282
+ "attributes": [
1283
+ {
1284
+ "name": "headline",
1285
+ "type": {
1286
+ "text": "string | undefined"
1287
+ },
1288
+ "description": "the text of the card heading\naccepts string",
1289
+ "fieldName": "headline"
1290
+ },
1291
+ {
1292
+ "name": "subtitle",
1293
+ "type": {
1294
+ "text": "string | undefined"
1295
+ },
1296
+ "description": "the text of the card sub-heading\naccepts string",
1297
+ "fieldName": "subtitle"
1298
+ },
1299
+ {
1300
+ "name": "text",
1301
+ "type": {
1302
+ "text": "string | undefined"
1303
+ },
1304
+ "description": "the text of the card sub-heading\naccepts string",
1305
+ "fieldName": "text"
1306
+ },
1307
+ {
1308
+ "name": "icon",
1309
+ "type": {
1310
+ "text": "string | undefined"
1311
+ },
1312
+ "description": "card header icon",
1313
+ "fieldName": "icon"
1314
+ },
1315
+ {
1316
+ "name": "elevation",
1317
+ "type": {
1318
+ "text": "0 | 2 | 4 | 8 | 12 | 16 | 24 | undefined"
1319
+ },
1320
+ "description": "card elevation dp",
1321
+ "fieldName": "elevation"
1322
+ }
1323
+ ],
1324
+ "superclass": {
1325
+ "name": "FoundationElement",
1326
+ "package": "@microsoft/fast-foundation"
1327
+ }
1328
+ }
1329
+ ],
1330
+ "exports": [
1331
+ {
1332
+ "kind": "js",
1333
+ "name": "Card",
1334
+ "declaration": {
1335
+ "name": "Card",
1336
+ "module": "libs/components/src/lib/card/card.ts"
1337
+ }
1338
+ }
1339
+ ]
1340
+ },
1341
+ {
1342
+ "kind": "javascript-module",
1343
+ "path": "libs/components/src/lib/checkbox/checkbox.ts",
1344
+ "declarations": [
1345
+ {
1346
+ "kind": "variable",
1347
+ "name": "keySpace",
1348
+ "type": {
1349
+ "text": "' '"
1350
+ },
1351
+ "default": "' '"
1352
+ },
1353
+ {
1354
+ "kind": "class",
1355
+ "description": "Base class for checkbox",
1356
+ "name": "Checkbox",
1357
+ "members": [
1358
+ {
1359
+ "kind": "field",
1360
+ "name": "label",
1361
+ "type": {
1362
+ "text": "string | undefined"
1363
+ },
1364
+ "description": "Indicates the checkbox's label.",
1365
+ "privacy": "public"
1366
+ }
1367
+ ],
1368
+ "attributes": [
1369
+ {
1370
+ "name": "label",
1371
+ "type": {
1372
+ "text": "string | undefined"
1373
+ },
1374
+ "description": "Indicates the checkbox's label.",
1375
+ "fieldName": "label"
1376
+ }
1377
+ ],
1378
+ "superclass": {
1379
+ "name": "FastCheckbox",
1380
+ "package": "@microsoft/fast-foundation"
1381
+ }
1382
+ }
1383
+ ],
1384
+ "exports": [
1385
+ {
1386
+ "kind": "js",
1387
+ "name": "keySpace",
1388
+ "declaration": {
1389
+ "name": "keySpace",
1390
+ "module": "libs/components/src/lib/checkbox/checkbox.ts"
1391
+ }
1392
+ },
1393
+ {
1394
+ "kind": "js",
1395
+ "name": "Checkbox",
1396
+ "declaration": {
1397
+ "name": "Checkbox",
1398
+ "module": "libs/components/src/lib/checkbox/checkbox.ts"
1399
+ }
1400
+ }
1401
+ ]
1402
+ },
1403
+ {
1404
+ "kind": "javascript-module",
1405
+ "path": "libs/components/src/lib/dialog/dialog.ts",
1406
+ "declarations": [
1407
+ {
1408
+ "kind": "class",
1409
+ "description": "Base class for dialog",
1410
+ "name": "Dialog",
1411
+ "members": [
1412
+ {
1413
+ "kind": "field",
1414
+ "name": "open",
1415
+ "type": {
1416
+ "text": "boolean"
1417
+ },
1418
+ "default": "false",
1419
+ "description": "Indicates dialog's state",
1420
+ "privacy": "public"
1421
+ },
1422
+ {
1423
+ "kind": "field",
1424
+ "name": "icon",
1425
+ "type": {
1426
+ "text": "string | undefined"
1427
+ }
1428
+ },
1429
+ {
1430
+ "kind": "field",
1431
+ "name": "text",
1432
+ "type": {
1433
+ "text": "string | undefined"
1434
+ }
1435
+ },
1436
+ {
1437
+ "kind": "field",
1438
+ "name": "headline",
1439
+ "type": {
1440
+ "text": "string | undefined"
1441
+ }
1442
+ },
1443
+ {
1444
+ "kind": "field",
1445
+ "name": "ariaLabelledBy",
1446
+ "type": {
1447
+ "text": "string | null"
1448
+ },
1449
+ "default": "null"
1450
+ },
1451
+ {
1452
+ "kind": "field",
1453
+ "name": "ariaLabel",
1454
+ "type": {
1455
+ "text": "string | null"
1456
+ },
1457
+ "default": "null"
1458
+ },
1459
+ {
1460
+ "kind": "field",
1461
+ "name": "ariaDescribedBy",
1462
+ "type": {
1463
+ "text": "string | null"
1464
+ },
1465
+ "default": "null"
1466
+ },
1467
+ {
1468
+ "kind": "field",
1469
+ "name": "#modal",
1470
+ "privacy": "private",
1471
+ "type": {
1472
+ "text": "boolean"
1473
+ },
1474
+ "default": "false"
1475
+ },
1476
+ {
1477
+ "kind": "field",
1478
+ "name": "returnValue",
1479
+ "type": {
1480
+ "text": "string"
1481
+ }
1482
+ },
1483
+ {
1484
+ "kind": "field",
1485
+ "name": "modal",
1486
+ "readonly": true
1487
+ },
1488
+ {
1489
+ "kind": "field",
1490
+ "name": "#dialogElement",
1491
+ "privacy": "private",
1492
+ "type": {
1493
+ "text": "HTMLDialogElement | undefined"
1494
+ }
1495
+ },
1496
+ {
1497
+ "kind": "field",
1498
+ "name": "#dialog",
1499
+ "privacy": "private",
1500
+ "readonly": true
1501
+ },
1502
+ {
1503
+ "kind": "method",
1504
+ "name": "openChanged",
1505
+ "parameters": [
1506
+ {
1507
+ "name": "oldValue",
1508
+ "type": {
1509
+ "text": "boolean"
1510
+ }
1511
+ },
1512
+ {
1513
+ "name": "newValue",
1514
+ "type": {
1515
+ "text": "boolean"
1516
+ }
1517
+ }
1518
+ ]
1519
+ },
1520
+ {
1521
+ "kind": "field",
1522
+ "name": "#handleScrimClick",
1523
+ "privacy": "private"
1524
+ },
1525
+ {
1526
+ "kind": "field",
1527
+ "name": "#handleInternalFormSubmit",
1528
+ "privacy": "private"
1529
+ },
1530
+ {
1531
+ "kind": "method",
1532
+ "name": "close"
1533
+ },
1534
+ {
1535
+ "kind": "method",
1536
+ "name": "#handleModal",
1537
+ "parameters": [
1538
+ {
1539
+ "name": "show",
1540
+ "type": {
1541
+ "text": "boolean"
1542
+ }
1543
+ }
1544
+ ]
1545
+ },
1546
+ {
1547
+ "kind": "method",
1548
+ "name": "show"
1549
+ },
1550
+ {
1551
+ "kind": "method",
1552
+ "name": "showModal"
1553
+ }
1554
+ ],
1555
+ "events": [
1556
+ {
1557
+ "name": "close",
1558
+ "type": {
1559
+ "text": "CustomEvent"
1560
+ }
1561
+ }
1562
+ ],
1563
+ "attributes": [
1564
+ {
1565
+ "type": {
1566
+ "text": "boolean"
1567
+ },
1568
+ "default": "false",
1569
+ "description": "Indicates dialog's state",
1570
+ "fieldName": "open"
1571
+ },
1572
+ {
1573
+ "name": "icon",
1574
+ "type": {
1575
+ "text": "string | undefined"
1576
+ },
1577
+ "fieldName": "icon"
1578
+ },
1579
+ {
1580
+ "name": "text",
1581
+ "type": {
1582
+ "text": "string | undefined"
1583
+ },
1584
+ "fieldName": "text"
1585
+ },
1586
+ {
1587
+ "name": "headline",
1588
+ "type": {
1589
+ "text": "string | undefined"
1590
+ },
1591
+ "fieldName": "headline"
1592
+ },
1593
+ {
1594
+ "name": "aria-labelledby",
1595
+ "type": {
1596
+ "text": "string | null"
1597
+ },
1598
+ "default": "null",
1599
+ "fieldName": "ariaLabelledBy"
1600
+ },
1601
+ {
1602
+ "name": "aria-label",
1603
+ "type": {
1604
+ "text": "string | null"
1605
+ },
1606
+ "default": "null",
1607
+ "fieldName": "ariaLabel"
1608
+ },
1609
+ {
1610
+ "name": "aria-describedby",
1611
+ "type": {
1612
+ "text": "string | null"
1613
+ },
1614
+ "default": "null",
1615
+ "fieldName": "ariaDescribedBy"
1616
+ }
1617
+ ],
1618
+ "superclass": {
1619
+ "name": "FoundationElement",
1620
+ "package": "@microsoft/fast-foundation"
1621
+ }
1622
+ }
1623
+ ],
1624
+ "exports": [
1625
+ {
1626
+ "kind": "js",
1627
+ "name": "Dialog",
1628
+ "declaration": {
1629
+ "name": "Dialog",
1630
+ "module": "libs/components/src/lib/dialog/dialog.ts"
1631
+ }
1632
+ }
1633
+ ]
1634
+ },
1635
+ {
1636
+ "kind": "javascript-module",
1637
+ "path": "libs/components/src/lib/divider/divider.ts",
1638
+ "declarations": [
1639
+ {
1640
+ "kind": "class",
1641
+ "description": "Base class for divider",
1642
+ "name": "Divider",
1643
+ "superclass": {
1644
+ "name": "FoundationDivider",
1645
+ "package": "@microsoft/fast-foundation"
1646
+ }
1647
+ }
1648
+ ],
1649
+ "exports": [
1650
+ {
1651
+ "kind": "js",
1652
+ "name": "Divider",
1653
+ "declaration": {
1654
+ "name": "Divider",
1655
+ "module": "libs/components/src/lib/divider/divider.ts"
1656
+ }
1657
+ }
1658
+ ]
1659
+ },
1660
+ {
1661
+ "kind": "javascript-module",
1662
+ "path": "libs/components/src/lib/elevation/elevation.ts",
1663
+ "declarations": [
1664
+ {
1665
+ "kind": "class",
1666
+ "description": "Base class for elevation",
1667
+ "name": "Elevation",
1668
+ "members": [
1669
+ {
1670
+ "kind": "field",
1671
+ "name": "dp",
1672
+ "type": {
1673
+ "text": "0 | 2 | 4 | 8 | 12 | 16 | 24 | undefined"
1674
+ },
1675
+ "description": "Indicates the elevation's dp.",
1676
+ "privacy": "public"
1677
+ },
1678
+ {
1679
+ "kind": "field",
1680
+ "name": "noShadow",
1681
+ "type": {
1682
+ "text": "boolean | undefined"
1683
+ },
1684
+ "description": "toggles the elevation's shadow.",
1685
+ "privacy": "public"
1686
+ }
1687
+ ],
1688
+ "attributes": [
1689
+ {
1690
+ "name": "dp",
1691
+ "type": {
1692
+ "text": "0 | 2 | 4 | 8 | 12 | 16 | 24 | undefined"
1693
+ },
1694
+ "description": "Indicates the elevation's dp.",
1695
+ "fieldName": "dp"
1696
+ },
1697
+ {
1698
+ "name": "no-shadow",
1699
+ "type": {
1700
+ "text": "boolean | undefined"
1701
+ },
1702
+ "description": "toggles the elevation's shadow.",
1703
+ "fieldName": "noShadow"
1704
+ }
1705
+ ],
1706
+ "superclass": {
1707
+ "name": "FoundationElement",
1708
+ "package": "@microsoft/fast-foundation"
1709
+ }
1710
+ }
1711
+ ],
1712
+ "exports": [
1713
+ {
1714
+ "kind": "js",
1715
+ "name": "Elevation",
1716
+ "declaration": {
1717
+ "name": "Elevation",
1718
+ "module": "libs/components/src/lib/elevation/elevation.ts"
1719
+ }
1720
+ }
1721
+ ]
1722
+ },
1723
+ {
1724
+ "kind": "javascript-module",
1725
+ "path": "libs/components/src/lib/fab/fab.ts",
1726
+ "declarations": [
1727
+ {
1728
+ "kind": "class",
1729
+ "description": "Base class for fab",
1730
+ "name": "Fab",
1731
+ "members": [
1732
+ {
1733
+ "kind": "field",
1734
+ "name": "connotation",
1735
+ "type": {
1736
+ "text": "FabConnotation | undefined"
1737
+ },
1738
+ "description": "The connotation the fab should have.",
1739
+ "privacy": "public"
1740
+ },
1741
+ {
1742
+ "kind": "field",
1743
+ "name": "size",
1744
+ "type": {
1745
+ "text": "FABSize | undefined"
1746
+ },
1747
+ "description": "The size the FAB should have.",
1748
+ "privacy": "public"
1749
+ },
1750
+ {
1751
+ "kind": "field",
1752
+ "name": "label",
1753
+ "type": {
1754
+ "text": "string | undefined"
1755
+ },
1756
+ "description": "Indicates the fab's label.",
1757
+ "privacy": "public"
1758
+ }
1759
+ ],
1760
+ "attributes": [
1761
+ {
1762
+ "name": "connotation",
1763
+ "type": {
1764
+ "text": "FabConnotation | undefined"
1765
+ },
1766
+ "description": "The connotation the fab should have.",
1767
+ "fieldName": "connotation"
1768
+ },
1769
+ {
1770
+ "name": "size",
1771
+ "type": {
1772
+ "text": "FABSize | undefined"
1773
+ },
1774
+ "description": "The size the FAB should have.",
1775
+ "fieldName": "size"
1776
+ },
1777
+ {
1778
+ "name": "label",
1779
+ "type": {
1780
+ "text": "string | undefined"
1781
+ },
1782
+ "description": "Indicates the fab's label.",
1783
+ "fieldName": "label"
1784
+ }
1785
+ ],
1786
+ "superclass": {
1787
+ "name": "FoundationButton",
1788
+ "package": "@microsoft/fast-foundation"
1789
+ }
1790
+ }
1791
+ ],
1792
+ "exports": [
1793
+ {
1794
+ "kind": "js",
1795
+ "name": "Fab",
1796
+ "declaration": {
1797
+ "name": "Fab",
1798
+ "module": "libs/components/src/lib/fab/fab.ts"
1799
+ }
1800
+ }
1801
+ ]
1802
+ },
1803
+ {
1804
+ "kind": "javascript-module",
1805
+ "path": "libs/components/src/lib/focus/focus.ts",
1806
+ "declarations": [
1807
+ {
1808
+ "kind": "class",
1809
+ "description": "Base class for badge",
1810
+ "name": "Focus",
1811
+ "superclass": {
1812
+ "name": "FoundationElement",
1813
+ "package": "@microsoft/fast-foundation"
1814
+ }
1815
+ }
1816
+ ],
1817
+ "exports": [
1818
+ {
1819
+ "kind": "js",
1820
+ "name": "Focus",
1821
+ "declaration": {
1822
+ "name": "Focus",
1823
+ "module": "libs/components/src/lib/focus/focus.ts"
1824
+ }
1825
+ }
1826
+ ]
1827
+ },
1828
+ {
1829
+ "kind": "javascript-module",
1830
+ "path": "libs/components/src/lib/header/header.ts",
1831
+ "declarations": [
1832
+ {
1833
+ "kind": "class",
1834
+ "description": "Base class for header",
1835
+ "name": "Header",
1836
+ "members": [
1837
+ {
1838
+ "kind": "field",
1839
+ "name": "elevationShadow",
1840
+ "type": {
1841
+ "text": "boolean"
1842
+ },
1843
+ "default": "false",
1844
+ "description": "header elevation shadow",
1845
+ "privacy": "public"
1846
+ },
1847
+ {
1848
+ "kind": "field",
1849
+ "name": "alternate",
1850
+ "type": {
1851
+ "text": "boolean"
1852
+ },
1853
+ "default": "false",
1854
+ "description": "applies scheme alternate to header region",
1855
+ "privacy": "public"
1856
+ }
1857
+ ],
1858
+ "attributes": [
1859
+ {
1860
+ "name": "elevation-shadow",
1861
+ "type": {
1862
+ "text": "boolean"
1863
+ },
1864
+ "default": "false",
1865
+ "description": "header elevation shadow",
1866
+ "fieldName": "elevationShadow"
1867
+ },
1868
+ {
1869
+ "type": {
1870
+ "text": "boolean"
1871
+ },
1872
+ "default": "false",
1873
+ "description": "applies scheme alternate to header region",
1874
+ "fieldName": "alternate"
1875
+ }
1876
+ ],
1877
+ "superclass": {
1878
+ "name": "FoundationElement",
1879
+ "package": "@microsoft/fast-foundation"
1880
+ }
1881
+ }
1882
+ ],
1883
+ "exports": [
1884
+ {
1885
+ "kind": "js",
1886
+ "name": "Header",
1887
+ "declaration": {
1888
+ "name": "Header",
1889
+ "module": "libs/components/src/lib/header/header.ts"
1890
+ }
1891
+ }
1892
+ ]
1893
+ },
1894
+ {
1895
+ "kind": "javascript-module",
1896
+ "path": "libs/components/src/lib/icon/icon.placeholder.ts",
1897
+ "declarations": [
1898
+ {
1899
+ "kind": "variable",
1900
+ "name": "PLACEHOLDER_ICON",
1901
+ "default": "`<svg width=\"80%\" height=\"80%\" viewBox=\"0 0 64 64\">\n <g>\n <g stroke-width=\"6\" stroke-linecap=\"round\" fill=\"none\">\n <path stroke=\"currentColor\" d=\"M4,32 c0,15,12,28,28,28c8,0,16-4,21-9\">\n </path>\n <path d=\"M60,32 C60,16,47.464,4,32,4S4,16,4,32\">\n </path>\n <animateTransform values=\"0,32,32;360,32,32\" attributeName=\"transform\" type=\"rotate\" repeatCount=\"indefinite\" dur=\"750ms\">\n </animateTransform>\n </g>\n </g>\n</svg>`"
1902
+ }
1903
+ ],
1904
+ "exports": [
1905
+ {
1906
+ "kind": "js",
1907
+ "name": "PLACEHOLDER_ICON",
1908
+ "declaration": {
1909
+ "name": "PLACEHOLDER_ICON",
1910
+ "module": "libs/components/src/lib/icon/icon.placeholder.ts"
1911
+ }
1912
+ }
1913
+ ]
1914
+ },
1915
+ {
1916
+ "kind": "javascript-module",
1917
+ "path": "libs/components/src/lib/icon/icon.ts",
1918
+ "declarations": [
1919
+ {
1920
+ "kind": "class",
1921
+ "description": "",
1922
+ "name": "Icon",
1923
+ "members": [
1924
+ {
1925
+ "kind": "field",
1926
+ "name": "connotation",
1927
+ "type": {
1928
+ "text": "IconConnotation | undefined"
1929
+ },
1930
+ "description": "The connotation the icon should have.",
1931
+ "privacy": "public"
1932
+ },
1933
+ {
1934
+ "kind": "field",
1935
+ "name": "size",
1936
+ "type": {
1937
+ "text": "IconSize | undefined"
1938
+ }
1939
+ },
1940
+ {
1941
+ "kind": "field",
1942
+ "name": "svg",
1943
+ "type": {
1944
+ "text": "string | undefined"
1945
+ }
1946
+ },
1947
+ {
1948
+ "kind": "field",
1949
+ "name": "type",
1950
+ "type": {
1951
+ "text": "string | undefined"
1952
+ },
1953
+ "description": "Indicates which icon to resolve.",
1954
+ "privacy": "public"
1955
+ },
1956
+ {
1957
+ "kind": "method",
1958
+ "name": "typeChanged",
1959
+ "async": true
1960
+ }
1961
+ ],
1962
+ "attributes": [
1963
+ {
1964
+ "name": "connotation",
1965
+ "type": {
1966
+ "text": "IconConnotation | undefined"
1967
+ },
1968
+ "description": "The connotation the icon should have.",
1969
+ "fieldName": "connotation"
1970
+ },
1971
+ {
1972
+ "name": "size",
1973
+ "type": {
1974
+ "text": "IconSize | undefined"
1975
+ },
1976
+ "fieldName": "size"
1977
+ },
1978
+ {
1979
+ "name": "type",
1980
+ "type": {
1981
+ "text": "string | undefined"
1982
+ },
1983
+ "description": "Indicates which icon to resolve.",
1984
+ "fieldName": "type"
1985
+ }
1986
+ ],
1987
+ "superclass": {
1988
+ "name": "FoundationElement",
1989
+ "package": "@microsoft/fast-foundation"
1990
+ }
1991
+ }
1992
+ ],
1993
+ "exports": [
1994
+ {
1995
+ "kind": "js",
1996
+ "name": "Icon",
1997
+ "declaration": {
1998
+ "name": "Icon",
1999
+ "module": "libs/components/src/lib/icon/icon.ts"
2000
+ }
2001
+ }
2002
+ ]
2003
+ },
2004
+ {
2005
+ "kind": "javascript-module",
2006
+ "path": "libs/components/src/lib/layout/layout.ts",
2007
+ "declarations": [
2008
+ {
2009
+ "kind": "class",
2010
+ "description": "Base class for layout",
2011
+ "name": "Layout",
2012
+ "cssProperties": [
2013
+ {}
2014
+ ],
2015
+ "members": [
2016
+ {
2017
+ "kind": "field",
2018
+ "name": "gutters",
2019
+ "type": {
2020
+ "text": "Gutters | undefined"
2021
+ },
2022
+ "description": "sets the initial preferred margin from predefined available options",
2023
+ "privacy": "public"
2024
+ },
2025
+ {
2026
+ "kind": "field",
2027
+ "name": "columnBasis",
2028
+ "type": {
2029
+ "text": "ColumnBasis | undefined"
2030
+ },
2031
+ "description": "sets the initial preferred measure of a column from predefined available options",
2032
+ "privacy": "public"
2033
+ },
2034
+ {
2035
+ "kind": "field",
2036
+ "name": "columnSpacing",
2037
+ "type": {
2038
+ "text": "ColumnSpacing | undefined"
2039
+ },
2040
+ "description": "sets the initial preferred spacing of a column from predefined available options",
2041
+ "privacy": "public"
2042
+ },
2043
+ {
2044
+ "kind": "field",
2045
+ "name": "autoSizing",
2046
+ "type": {
2047
+ "text": "AUTO_SIZING | undefined"
2048
+ },
2049
+ "description": "sets the initial preferred auto-sizing from predefined available options",
2050
+ "privacy": "public"
2051
+ }
2052
+ ],
2053
+ "attributes": [
2054
+ {
2055
+ "name": "gutters",
2056
+ "type": {
2057
+ "text": "Gutters | undefined"
2058
+ },
2059
+ "description": "sets the initial preferred margin from predefined available options",
2060
+ "fieldName": "gutters"
2061
+ },
2062
+ {
2063
+ "name": "column-basis",
2064
+ "type": {
2065
+ "text": "ColumnBasis | undefined"
2066
+ },
2067
+ "description": "sets the initial preferred measure of a column from predefined available options",
2068
+ "fieldName": "columnBasis"
2069
+ },
2070
+ {
2071
+ "name": "column-spacing",
2072
+ "type": {
2073
+ "text": "ColumnSpacing | undefined"
2074
+ },
2075
+ "description": "sets the initial preferred spacing of a column from predefined available options",
2076
+ "fieldName": "columnSpacing"
2077
+ },
2078
+ {
2079
+ "name": "auto-sizing",
2080
+ "type": {
2081
+ "text": "AUTO_SIZING | undefined"
2082
+ },
2083
+ "description": "sets the initial preferred auto-sizing from predefined available options",
2084
+ "fieldName": "autoSizing"
2085
+ }
2086
+ ],
2087
+ "superclass": {
2088
+ "name": "FoundationElement",
2089
+ "package": "@microsoft/fast-foundation"
2090
+ }
2091
+ }
2092
+ ],
2093
+ "exports": [
2094
+ {
2095
+ "kind": "js",
2096
+ "name": "Layout",
2097
+ "declaration": {
2098
+ "name": "Layout",
2099
+ "module": "libs/components/src/lib/layout/layout.ts"
2100
+ }
2101
+ }
2102
+ ]
2103
+ },
2104
+ {
2105
+ "kind": "javascript-module",
2106
+ "path": "libs/components/src/lib/listbox/listbox.ts",
2107
+ "declarations": [
2108
+ {
2109
+ "kind": "class",
2110
+ "description": "Base class for listbox",
2111
+ "name": "Listbox",
2112
+ "members": [
2113
+ {
2114
+ "kind": "field",
2115
+ "name": "appearance",
2116
+ "type": {
2117
+ "text": "LisboxAppearance | undefined"
2118
+ },
2119
+ "description": "The appearance the listbox should have.",
2120
+ "privacy": "public"
2121
+ },
2122
+ {
2123
+ "kind": "method",
2124
+ "name": "slottedOptionsChanged",
2125
+ "parameters": [
2126
+ {
2127
+ "name": "prev",
2128
+ "type": {
2129
+ "text": "Element[] | undefined"
2130
+ }
2131
+ },
2132
+ {
2133
+ "name": "next",
2134
+ "type": {
2135
+ "text": "Element[]"
2136
+ }
2137
+ }
2138
+ ]
2139
+ },
2140
+ {
2141
+ "kind": "method",
2142
+ "name": "#disableSlottedChildren",
2143
+ "return": {
2144
+ "type": {
2145
+ "text": "void"
2146
+ }
2147
+ }
2148
+ }
2149
+ ],
2150
+ "attributes": [
2151
+ {
2152
+ "name": "appearance",
2153
+ "type": {
2154
+ "text": "LisboxAppearance | undefined"
2155
+ },
2156
+ "description": "The appearance the listbox should have.",
2157
+ "fieldName": "appearance"
2158
+ }
2159
+ ],
2160
+ "superclass": {
2161
+ "name": "FoundationListboxElement",
2162
+ "package": "@microsoft/fast-foundation"
2163
+ }
2164
+ }
2165
+ ],
2166
+ "exports": [
2167
+ {
2168
+ "kind": "js",
2169
+ "name": "Listbox",
2170
+ "declaration": {
2171
+ "name": "Listbox",
2172
+ "module": "libs/components/src/lib/listbox/listbox.ts"
2173
+ }
2174
+ }
2175
+ ]
2176
+ },
2177
+ {
2178
+ "kind": "javascript-module",
2179
+ "path": "libs/components/src/lib/listbox-option/listbox-option.ts",
2180
+ "declarations": [
2181
+ {
2182
+ "kind": "class",
2183
+ "description": "Base class for option",
2184
+ "name": "ListboxOption",
2185
+ "members": [
2186
+ {
2187
+ "kind": "field",
2188
+ "name": "_text",
2189
+ "type": {
2190
+ "text": "string | undefined"
2191
+ },
2192
+ "privacy": "public",
2193
+ "description": ""
2194
+ },
2195
+ {
2196
+ "kind": "field",
2197
+ "name": "text"
2198
+ }
2199
+ ],
2200
+ "attributes": [
2201
+ {
2202
+ "name": "text",
2203
+ "type": {
2204
+ "text": "string | undefined"
2205
+ },
2206
+ "fieldName": "_text"
2207
+ }
2208
+ ],
2209
+ "superclass": {
2210
+ "name": "FoundationListboxOption",
2211
+ "package": "@microsoft/fast-foundation"
2212
+ }
2213
+ }
2214
+ ],
2215
+ "exports": [
2216
+ {
2217
+ "kind": "js",
2218
+ "name": "ListboxOption",
2219
+ "declaration": {
2220
+ "name": "ListboxOption",
2221
+ "module": "libs/components/src/lib/listbox-option/listbox-option.ts"
2222
+ }
2223
+ }
2224
+ ]
2225
+ },
2226
+ {
2227
+ "kind": "javascript-module",
2228
+ "path": "libs/components/src/lib/menu/menu.ts",
2229
+ "declarations": [
2230
+ {
2231
+ "kind": "class",
2232
+ "description": "Base class for menu",
2233
+ "name": "Menu",
2234
+ "members": [
2235
+ {
2236
+ "kind": "field",
2237
+ "name": "_popup",
2238
+ "type": {
2239
+ "text": "Popup | undefined"
2240
+ }
2241
+ },
2242
+ {
2243
+ "kind": "field",
2244
+ "name": "open",
2245
+ "type": {
2246
+ "text": "boolean"
2247
+ },
2248
+ "default": "false",
2249
+ "description": "indicates whether the menu is open",
2250
+ "privacy": "public"
2251
+ },
2252
+ {
2253
+ "kind": "field",
2254
+ "name": "placement",
2255
+ "type": {
2256
+ "text": "Placement | undefined"
2257
+ },
2258
+ "description": "the placement of the menu",
2259
+ "privacy": "public"
2260
+ },
2261
+ {
2262
+ "kind": "field",
2263
+ "name": "anchor",
2264
+ "type": {
2265
+ "text": "string | undefined"
2266
+ },
2267
+ "description": "ID reference to element in the menu's owner document.",
2268
+ "privacy": "public"
2269
+ },
2270
+ {
2271
+ "kind": "field",
2272
+ "name": "popupOpenChanged"
2273
+ }
2274
+ ],
2275
+ "attributes": [
2276
+ {
2277
+ "type": {
2278
+ "text": "boolean"
2279
+ },
2280
+ "default": "false",
2281
+ "description": "indicates whether the menu is open",
2282
+ "fieldName": "open"
2283
+ },
2284
+ {
2285
+ "name": "placement",
2286
+ "type": {
2287
+ "text": "Placement | undefined"
2288
+ },
2289
+ "description": "the placement of the menu",
2290
+ "fieldName": "placement"
2291
+ },
2292
+ {
2293
+ "name": "anchor",
2294
+ "type": {
2295
+ "text": "string | undefined"
2296
+ },
2297
+ "description": "ID reference to element in the menu's owner document.",
2298
+ "fieldName": "anchor"
2299
+ }
2300
+ ],
2301
+ "superclass": {
2302
+ "name": "FastMenu",
2303
+ "package": "@microsoft/fast-foundation"
2304
+ }
2305
+ }
2306
+ ],
2307
+ "exports": [
2308
+ {
2309
+ "kind": "js",
2310
+ "name": "Menu",
2311
+ "declaration": {
2312
+ "name": "Menu",
2313
+ "module": "libs/components/src/lib/menu/menu.ts"
2314
+ }
2315
+ }
2316
+ ]
2317
+ },
2318
+ {
2319
+ "kind": "javascript-module",
2320
+ "path": "libs/components/src/lib/menu-item/menu-item.ts",
2321
+ "declarations": [
2322
+ {
2323
+ "kind": "class",
2324
+ "description": "Base class for menu-item",
2325
+ "name": "MenuItem",
2326
+ "members": [
2327
+ {
2328
+ "kind": "field",
2329
+ "name": "text",
2330
+ "type": {
2331
+ "text": "string | undefined"
2332
+ },
2333
+ "description": "Indicates the menu item's text.",
2334
+ "privacy": "public"
2335
+ }
2336
+ ],
2337
+ "attributes": [
2338
+ {
2339
+ "name": "text",
2340
+ "type": {
2341
+ "text": "string | undefined"
2342
+ },
2343
+ "description": "Indicates the menu item's text.",
2344
+ "fieldName": "text"
2345
+ }
2346
+ ],
2347
+ "superclass": {
2348
+ "name": "FastMenuItem",
2349
+ "package": "@microsoft/fast-foundation"
2350
+ }
2351
+ }
2352
+ ],
2353
+ "exports": [
2354
+ {
2355
+ "kind": "js",
2356
+ "name": "MenuItem",
2357
+ "declaration": {
2358
+ "name": "MenuItem",
2359
+ "module": "libs/components/src/lib/menu-item/menu-item.ts"
2360
+ }
2361
+ }
2362
+ ]
2363
+ },
2364
+ {
2365
+ "kind": "javascript-module",
2366
+ "path": "libs/components/src/lib/nav/nav.ts",
2367
+ "declarations": [
2368
+ {
2369
+ "kind": "class",
2370
+ "description": "A Nav Item Custom HTML Element.\nBased largely on the https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a | <a> element .",
2371
+ "name": "Nav",
2372
+ "superclass": {
2373
+ "name": "FoundationElement",
2374
+ "package": "@microsoft/fast-foundation"
2375
+ }
2376
+ }
2377
+ ],
2378
+ "exports": [
2379
+ {
2380
+ "kind": "js",
2381
+ "name": "Nav",
2382
+ "declaration": {
2383
+ "name": "Nav",
2384
+ "module": "libs/components/src/lib/nav/nav.ts"
2385
+ }
2386
+ }
2387
+ ]
2388
+ },
2389
+ {
2390
+ "kind": "javascript-module",
2391
+ "path": "libs/components/src/lib/nav-disclosure/nav-disclosure.ts",
2392
+ "declarations": [
2393
+ {
2394
+ "kind": "class",
2395
+ "description": "A Nav Item Custom HTML Element.\nBased largely on the https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a | <a> element .",
2396
+ "name": "NavDisclosure",
2397
+ "members": [
2398
+ {
2399
+ "kind": "field",
2400
+ "name": "details",
2401
+ "type": {
2402
+ "text": "HTMLDetailsElement"
2403
+ }
2404
+ },
2405
+ {
2406
+ "kind": "field",
2407
+ "name": "label",
2408
+ "type": {
2409
+ "text": "string | undefined"
2410
+ },
2411
+ "privacy": "public",
2412
+ "description": ""
2413
+ },
2414
+ {
2415
+ "kind": "field",
2416
+ "name": "open",
2417
+ "type": {
2418
+ "text": "boolean"
2419
+ },
2420
+ "default": "false",
2421
+ "description": "Indicates whether the nav-disclosure is open",
2422
+ "privacy": "public"
2423
+ },
2424
+ {
2425
+ "kind": "field",
2426
+ "name": "#onToggle",
2427
+ "privacy": "private"
2428
+ }
2429
+ ],
2430
+ "attributes": [
2431
+ {
2432
+ "name": "label",
2433
+ "type": {
2434
+ "text": "string | undefined"
2435
+ },
2436
+ "fieldName": "label"
2437
+ },
2438
+ {
2439
+ "type": {
2440
+ "text": "boolean"
2441
+ },
2442
+ "default": "false",
2443
+ "description": "Indicates whether the nav-disclosure is open",
2444
+ "fieldName": "open"
2445
+ }
2446
+ ],
2447
+ "superclass": {
2448
+ "name": "FoundationElement",
2449
+ "package": "@microsoft/fast-foundation"
2450
+ }
2451
+ }
2452
+ ],
2453
+ "exports": [
2454
+ {
2455
+ "kind": "js",
2456
+ "name": "NavDisclosure",
2457
+ "declaration": {
2458
+ "name": "NavDisclosure",
2459
+ "module": "libs/components/src/lib/nav-disclosure/nav-disclosure.ts"
2460
+ }
2461
+ }
2462
+ ]
2463
+ },
2464
+ {
2465
+ "kind": "javascript-module",
2466
+ "path": "libs/components/src/lib/nav-item/nav-item.ts",
2467
+ "declarations": [
2468
+ {
2469
+ "kind": "class",
2470
+ "description": "A Nav Item Custom HTML Element.\nBased largely on the https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a | <a> element .",
2471
+ "name": "NavItem",
2472
+ "superclass": {
2473
+ "name": "TextAnchor",
2474
+ "module": "/libs/components/src/lib/text-anchor/text-anchor"
2475
+ },
2476
+ "attributes": [
2477
+ {
2478
+ "name": "text",
2479
+ "type": {
2480
+ "text": "string | undefined"
2481
+ },
2482
+ "description": "Indicates the text anchor's text.",
2483
+ "fieldName": "text",
2484
+ "inheritedFrom": {
2485
+ "name": "TextAnchor",
2486
+ "module": "libs/components/src/lib/text-anchor/text-anchor.ts"
2487
+ }
2488
+ }
2489
+ ],
2490
+ "members": [
2491
+ {
2492
+ "kind": "field",
2493
+ "name": "text",
2494
+ "type": {
2495
+ "text": "string | undefined"
2496
+ },
2497
+ "description": "Indicates the text anchor's text.",
2498
+ "privacy": "public",
2499
+ "inheritedFrom": {
2500
+ "name": "TextAnchor",
2501
+ "module": "libs/components/src/lib/text-anchor/text-anchor.ts"
2502
+ }
2503
+ }
2504
+ ]
2505
+ }
2506
+ ],
2507
+ "exports": [
2508
+ {
2509
+ "kind": "js",
2510
+ "name": "NavItem",
2511
+ "declaration": {
2512
+ "name": "NavItem",
2513
+ "module": "libs/components/src/lib/nav-item/nav-item.ts"
2514
+ }
2515
+ }
2516
+ ]
2517
+ },
2518
+ {
2519
+ "kind": "javascript-module",
2520
+ "path": "libs/components/src/lib/note/note.ts",
2521
+ "declarations": [
2522
+ {
2523
+ "kind": "class",
2524
+ "description": "Base class for note",
2525
+ "name": "Note",
2526
+ "members": [
2527
+ {
2528
+ "kind": "field",
2529
+ "name": "headline",
2530
+ "type": {
2531
+ "text": "string | undefined"
2532
+ },
2533
+ "description": "Indicates the note's headline text",
2534
+ "privacy": "public"
2535
+ },
2536
+ {
2537
+ "kind": "field",
2538
+ "name": "connotation",
2539
+ "type": {
2540
+ "text": "NoteConnotation | undefined"
2541
+ }
2542
+ }
2543
+ ],
2544
+ "attributes": [
2545
+ {
2546
+ "name": "headline",
2547
+ "type": {
2548
+ "text": "string | undefined"
2549
+ },
2550
+ "description": "Indicates the note's headline text",
2551
+ "fieldName": "headline"
2552
+ },
2553
+ {
2554
+ "name": "connotation",
2555
+ "type": {
2556
+ "text": "NoteConnotation | undefined"
2557
+ },
2558
+ "fieldName": "connotation"
2559
+ }
2560
+ ],
2561
+ "superclass": {
2562
+ "name": "FoundationElement",
2563
+ "package": "@microsoft/fast-foundation"
2564
+ }
2565
+ }
2566
+ ],
2567
+ "exports": [
2568
+ {
2569
+ "kind": "js",
2570
+ "name": "Note",
2571
+ "declaration": {
2572
+ "name": "Note",
2573
+ "module": "libs/components/src/lib/note/note.ts"
2574
+ }
2575
+ }
2576
+ ]
2577
+ },
2578
+ {
2579
+ "kind": "javascript-module",
2580
+ "path": "libs/components/src/lib/number-field/number-field.ts",
2581
+ "declarations": [
2582
+ {
2583
+ "kind": "class",
2584
+ "description": "Base class for number-field",
2585
+ "name": "NumberField",
2586
+ "members": [
2587
+ {
2588
+ "kind": "field",
2589
+ "name": "appearance",
2590
+ "type": {
2591
+ "text": "NumberFieldAppearance | undefined"
2592
+ }
2593
+ },
2594
+ {
2595
+ "kind": "field",
2596
+ "name": "shape",
2597
+ "type": {
2598
+ "text": "NumberFieldShape | undefined"
2599
+ }
2600
+ },
2601
+ {
2602
+ "kind": "field",
2603
+ "name": "autoComplete",
2604
+ "type": {
2605
+ "text": "string | undefined"
2606
+ }
2607
+ }
2608
+ ],
2609
+ "attributes": [
2610
+ {
2611
+ "name": "appearance",
2612
+ "type": {
2613
+ "text": "NumberFieldAppearance | undefined"
2614
+ },
2615
+ "fieldName": "appearance"
2616
+ },
2617
+ {
2618
+ "name": "shape",
2619
+ "type": {
2620
+ "text": "NumberFieldShape | undefined"
2621
+ },
2622
+ "fieldName": "shape"
2623
+ },
2624
+ {
2625
+ "name": "autoComplete",
2626
+ "type": {
2627
+ "text": "string | undefined"
2628
+ },
2629
+ "fieldName": "autoComplete"
2630
+ }
2631
+ ],
2632
+ "superclass": {
2633
+ "name": "FastNumberField",
2634
+ "package": "@microsoft/fast-foundation"
2635
+ }
2636
+ }
2637
+ ],
2638
+ "exports": [
2639
+ {
2640
+ "kind": "js",
2641
+ "name": "NumberField",
2642
+ "declaration": {
2643
+ "name": "NumberField",
2644
+ "module": "libs/components/src/lib/number-field/number-field.ts"
2645
+ }
2646
+ }
2647
+ ]
2648
+ },
2649
+ {
2650
+ "kind": "javascript-module",
2651
+ "path": "libs/components/src/lib/popup/popup.ts",
2652
+ "declarations": [
2653
+ {
2654
+ "kind": "class",
2655
+ "description": "Base class for popup",
2656
+ "name": "Popup",
2657
+ "members": [
2658
+ {
2659
+ "kind": "field",
2660
+ "name": "#arrowPosition",
2661
+ "privacy": "private",
2662
+ "type": {
2663
+ "text": "any"
2664
+ },
2665
+ "readonly": true
2666
+ },
2667
+ {
2668
+ "kind": "field",
2669
+ "name": "#padding",
2670
+ "privacy": "private",
2671
+ "type": {
2672
+ "text": "number"
2673
+ },
2674
+ "readonly": true
2675
+ },
2676
+ {
2677
+ "kind": "field",
2678
+ "name": "#distance",
2679
+ "privacy": "private",
2680
+ "type": {
2681
+ "text": "number"
2682
+ },
2683
+ "readonly": true
2684
+ },
2685
+ {
2686
+ "kind": "field",
2687
+ "name": "#strategy",
2688
+ "privacy": "private",
2689
+ "type": {
2690
+ "text": "Strategy"
2691
+ },
2692
+ "readonly": true
2693
+ },
2694
+ {
2695
+ "kind": "field",
2696
+ "name": "#middleware",
2697
+ "privacy": "private",
2698
+ "type": {
2699
+ "text": "Array<any>"
2700
+ },
2701
+ "readonly": true
2702
+ },
2703
+ {
2704
+ "kind": "field",
2705
+ "name": "#cleanup",
2706
+ "privacy": "private",
2707
+ "type": {
2708
+ "text": "() => void | undefined"
2709
+ }
2710
+ },
2711
+ {
2712
+ "kind": "field",
2713
+ "name": "#anchorEl",
2714
+ "privacy": "private",
2715
+ "type": {
2716
+ "text": "Element | null | undefined"
2717
+ }
2718
+ },
2719
+ {
2720
+ "kind": "field",
2721
+ "name": "popupEl",
2722
+ "type": {
2723
+ "text": "HTMLElement"
2724
+ }
2725
+ },
2726
+ {
2727
+ "kind": "field",
2728
+ "name": "arrowEl",
2729
+ "type": {
2730
+ "text": "HTMLElement"
2731
+ }
2732
+ },
2733
+ {
2734
+ "kind": "field",
2735
+ "name": "open",
2736
+ "type": {
2737
+ "text": "boolean"
2738
+ },
2739
+ "default": "false",
2740
+ "description": "indicates whether the popup is open",
2741
+ "privacy": "public"
2742
+ },
2743
+ {
2744
+ "kind": "method",
2745
+ "name": "openChanged",
2746
+ "return": {
2747
+ "type": {
2748
+ "text": "void"
2749
+ }
2750
+ },
2751
+ "parameters": [
2752
+ {
2753
+ "name": "_",
2754
+ "type": {
2755
+ "text": "boolean"
2756
+ }
2757
+ },
2758
+ {
2759
+ "name": "newValue",
2760
+ "type": {
2761
+ "text": "boolean"
2762
+ }
2763
+ }
2764
+ ]
2765
+ },
2766
+ {
2767
+ "kind": "field",
2768
+ "name": "dismissible",
2769
+ "type": {
2770
+ "text": "boolean"
2771
+ },
2772
+ "default": "false",
2773
+ "description": "adds close button to the popup",
2774
+ "privacy": "public"
2775
+ },
2776
+ {
2777
+ "kind": "field",
2778
+ "name": "arrow",
2779
+ "type": {
2780
+ "text": "boolean"
2781
+ },
2782
+ "default": "false",
2783
+ "description": "adds small triangle to indicate the trigger element",
2784
+ "privacy": "public"
2785
+ },
2786
+ {
2787
+ "kind": "field",
2788
+ "name": "alternate",
2789
+ "type": {
2790
+ "text": "boolean"
2791
+ },
2792
+ "default": "false",
2793
+ "description": "set the color-scheme to dark",
2794
+ "privacy": "public"
2795
+ },
2796
+ {
2797
+ "kind": "field",
2798
+ "name": "placement",
2799
+ "type": {
2800
+ "text": "Placement | undefined"
2801
+ },
2802
+ "description": "the placement of the popup",
2803
+ "privacy": "public"
2804
+ },
2805
+ {
2806
+ "kind": "field",
2807
+ "name": "anchor",
2808
+ "type": {
2809
+ "text": "string"
2810
+ },
2811
+ "description": "ID reference to element in the popup’s owner document.",
2812
+ "privacy": "public"
2813
+ },
2814
+ {
2815
+ "kind": "method",
2816
+ "name": "updatePosition",
2817
+ "description": "Updates popup's position",
2818
+ "privacy": "public",
2819
+ "async": true
2820
+ },
2821
+ {
2822
+ "kind": "method",
2823
+ "name": "#assignPopupPosition",
2824
+ "return": {
2825
+ "type": {
2826
+ "text": "void"
2827
+ }
2828
+ },
2829
+ "parameters": [
2830
+ {
2831
+ "name": "data",
2832
+ "type": {
2833
+ "text": "any"
2834
+ }
2835
+ }
2836
+ ]
2837
+ },
2838
+ {
2839
+ "kind": "method",
2840
+ "name": "#assignArrowPosition",
2841
+ "return": {
2842
+ "type": {
2843
+ "text": "void"
2844
+ }
2845
+ },
2846
+ "parameters": [
2847
+ {
2848
+ "name": "data",
2849
+ "type": {
2850
+ "text": "any"
2851
+ }
2852
+ }
2853
+ ]
2854
+ },
2855
+ {
2856
+ "kind": "method",
2857
+ "name": "#getAnchorById",
2858
+ "return": {
2859
+ "type": {
2860
+ "text": "HTMLElement | null"
2861
+ }
2862
+ },
2863
+ "description": "Gets the anchor element by id"
2864
+ },
2865
+ {
2866
+ "kind": "field",
2867
+ "name": "#handleKeydown",
2868
+ "privacy": "private"
2869
+ }
2870
+ ],
2871
+ "attributes": [
2872
+ {
2873
+ "type": {
2874
+ "text": "boolean"
2875
+ },
2876
+ "default": "false",
2877
+ "description": "indicates whether the popup is open",
2878
+ "fieldName": "open"
2879
+ },
2880
+ {
2881
+ "type": {
2882
+ "text": "boolean"
2883
+ },
2884
+ "default": "false",
2885
+ "description": "adds close button to the popup",
2886
+ "fieldName": "dismissible"
2887
+ },
2888
+ {
2889
+ "type": {
2890
+ "text": "boolean"
2891
+ },
2892
+ "default": "false",
2893
+ "description": "adds small triangle to indicate the trigger element",
2894
+ "fieldName": "arrow"
2895
+ },
2896
+ {
2897
+ "type": {
2898
+ "text": "boolean"
2899
+ },
2900
+ "default": "false",
2901
+ "description": "set the color-scheme to dark",
2902
+ "fieldName": "alternate"
2903
+ },
2904
+ {
2905
+ "type": {
2906
+ "text": "Placement | undefined"
2907
+ },
2908
+ "description": "the placement of the popup",
2909
+ "fieldName": "placement"
2910
+ },
2911
+ {
2912
+ "name": "anchor",
2913
+ "type": {
2914
+ "text": "string"
2915
+ },
2916
+ "description": "ID reference to element in the popup’s owner document.",
2917
+ "fieldName": "anchor"
2918
+ }
2919
+ ],
2920
+ "superclass": {
2921
+ "name": "FoundationElement",
2922
+ "package": "@microsoft/fast-foundation"
2923
+ }
2924
+ }
2925
+ ],
2926
+ "exports": [
2927
+ {
2928
+ "kind": "js",
2929
+ "name": "Popup",
2930
+ "declaration": {
2931
+ "name": "Popup",
2932
+ "module": "libs/components/src/lib/popup/popup.ts"
2933
+ }
2934
+ }
2935
+ ]
2936
+ },
2937
+ {
2938
+ "kind": "javascript-module",
2939
+ "path": "libs/components/src/lib/progress/progress.ts",
2940
+ "declarations": [
2941
+ {
2942
+ "kind": "class",
2943
+ "description": "Base class for progress",
2944
+ "name": "Progress",
2945
+ "members": [
2946
+ {
2947
+ "kind": "field",
2948
+ "name": "shape",
2949
+ "type": {
2950
+ "text": "ProgressShape | undefined"
2951
+ }
2952
+ },
2953
+ {
2954
+ "kind": "field",
2955
+ "name": "connotation",
2956
+ "type": {
2957
+ "text": "ProgressConnotation | undefined"
2958
+ }
2959
+ },
2960
+ {
2961
+ "kind": "field",
2962
+ "name": "reverse",
2963
+ "type": {
2964
+ "text": "boolean"
2965
+ },
2966
+ "default": "false"
2967
+ }
2968
+ ],
2969
+ "attributes": [
2970
+ {
2971
+ "name": "shape",
2972
+ "type": {
2973
+ "text": "ProgressShape | undefined"
2974
+ },
2975
+ "fieldName": "shape"
2976
+ },
2977
+ {
2978
+ "name": "connotation",
2979
+ "type": {
2980
+ "text": "ProgressConnotation | undefined"
2981
+ },
2982
+ "fieldName": "connotation"
2983
+ },
2984
+ {
2985
+ "type": {
2986
+ "text": "boolean"
2987
+ },
2988
+ "default": "false",
2989
+ "fieldName": "reverse"
2990
+ }
2991
+ ],
2992
+ "superclass": {
2993
+ "name": "BaseProgress",
2994
+ "package": "@microsoft/fast-foundation"
2995
+ }
2996
+ }
2997
+ ],
2998
+ "exports": [
2999
+ {
3000
+ "kind": "js",
3001
+ "name": "Progress",
3002
+ "declaration": {
3003
+ "name": "Progress",
3004
+ "module": "libs/components/src/lib/progress/progress.ts"
3005
+ }
3006
+ }
3007
+ ]
3008
+ },
3009
+ {
3010
+ "kind": "javascript-module",
3011
+ "path": "libs/components/src/lib/progress-ring/progress-ring.ts",
3012
+ "declarations": [
3013
+ {
3014
+ "kind": "class",
3015
+ "description": "Base class for progress-ring",
3016
+ "name": "ProgressRing",
3017
+ "members": [
3018
+ {
3019
+ "kind": "field",
3020
+ "name": "connotation",
3021
+ "type": {
3022
+ "text": "ProgressRingConnotation | undefined"
3023
+ }
3024
+ },
3025
+ {
3026
+ "kind": "field",
3027
+ "name": "size",
3028
+ "type": {
3029
+ "text": "-5 | -4 | -3 | -2 | -1 | 0 | 1 | 2 | 3 | undefined"
3030
+ }
3031
+ }
3032
+ ],
3033
+ "attributes": [
3034
+ {
3035
+ "name": "connotation",
3036
+ "type": {
3037
+ "text": "ProgressRingConnotation | undefined"
3038
+ },
3039
+ "fieldName": "connotation"
3040
+ },
3041
+ {
3042
+ "name": "size",
3043
+ "type": {
3044
+ "text": "-5 | -4 | -3 | -2 | -1 | 0 | 1 | 2 | 3 | undefined"
3045
+ },
3046
+ "fieldName": "size"
3047
+ }
3048
+ ],
3049
+ "superclass": {
3050
+ "name": "BaseProgress",
3051
+ "package": "@microsoft/fast-foundation"
3052
+ }
3053
+ }
3054
+ ],
3055
+ "exports": [
3056
+ {
3057
+ "kind": "js",
3058
+ "name": "ProgressRing",
3059
+ "declaration": {
3060
+ "name": "ProgressRing",
3061
+ "module": "libs/components/src/lib/progress-ring/progress-ring.ts"
3062
+ }
3063
+ }
3064
+ ]
3065
+ },
3066
+ {
3067
+ "kind": "javascript-module",
3068
+ "path": "libs/components/src/lib/radio/radio.ts",
3069
+ "declarations": [
3070
+ {
3071
+ "kind": "class",
3072
+ "description": "Base class for radio",
3073
+ "name": "Radio",
3074
+ "members": [
3075
+ {
3076
+ "kind": "field",
3077
+ "name": "label",
3078
+ "type": {
3079
+ "text": "string | undefined"
3080
+ },
3081
+ "description": "Indicates the radio's label.",
3082
+ "privacy": "public"
3083
+ }
3084
+ ],
3085
+ "attributes": [
3086
+ {
3087
+ "name": "label",
3088
+ "type": {
3089
+ "text": "string | undefined"
3090
+ },
3091
+ "description": "Indicates the radio's label.",
3092
+ "fieldName": "label"
3093
+ }
3094
+ ],
3095
+ "superclass": {
3096
+ "name": "FastRadio",
3097
+ "package": "@microsoft/fast-foundation"
3098
+ }
3099
+ }
3100
+ ],
3101
+ "exports": [
3102
+ {
3103
+ "kind": "js",
3104
+ "name": "Radio",
3105
+ "declaration": {
3106
+ "name": "Radio",
3107
+ "module": "libs/components/src/lib/radio/radio.ts"
3108
+ }
3109
+ }
3110
+ ]
3111
+ },
3112
+ {
3113
+ "kind": "javascript-module",
3114
+ "path": "libs/components/src/lib/radio-group/radio-group.ts",
3115
+ "declarations": [
3116
+ {
3117
+ "kind": "class",
3118
+ "description": "Base class for radio-group",
3119
+ "name": "RadioGroup",
3120
+ "members": [
3121
+ {
3122
+ "kind": "field",
3123
+ "name": "label",
3124
+ "type": {
3125
+ "text": "string | undefined"
3126
+ },
3127
+ "description": "Indicates the group's label.",
3128
+ "privacy": "public"
3129
+ }
3130
+ ],
3131
+ "attributes": [
3132
+ {
3133
+ "name": "label",
3134
+ "type": {
3135
+ "text": "string | undefined"
3136
+ },
3137
+ "description": "Indicates the group's label.",
3138
+ "fieldName": "label"
3139
+ }
3140
+ ],
3141
+ "superclass": {
3142
+ "name": "FastRadioGroup",
3143
+ "package": "@microsoft/fast-foundation"
3144
+ }
3145
+ }
3146
+ ],
3147
+ "exports": [
3148
+ {
3149
+ "kind": "js",
3150
+ "name": "RadioGroup",
3151
+ "declaration": {
3152
+ "name": "RadioGroup",
3153
+ "module": "libs/components/src/lib/radio-group/radio-group.ts"
3154
+ }
3155
+ }
3156
+ ]
3157
+ },
3158
+ {
3159
+ "kind": "javascript-module",
3160
+ "path": "libs/components/src/lib/side-drawer/side-drawer.ts",
3161
+ "declarations": [
3162
+ {
3163
+ "kind": "class",
3164
+ "description": "Base class for side-drawer",
3165
+ "name": "SideDrawer",
3166
+ "members": [
3167
+ {
3168
+ "kind": "field",
3169
+ "name": "alternate",
3170
+ "type": {
3171
+ "text": "boolean"
3172
+ },
3173
+ "default": "false",
3174
+ "description": "applies scheme alternate region",
3175
+ "privacy": "public"
3176
+ },
3177
+ {
3178
+ "kind": "field",
3179
+ "name": "modal",
3180
+ "type": {
3181
+ "text": "boolean"
3182
+ },
3183
+ "default": "false",
3184
+ "description": "sets the side drawer's type to modal",
3185
+ "privacy": "public"
3186
+ },
3187
+ {
3188
+ "kind": "field",
3189
+ "name": "open",
3190
+ "type": {
3191
+ "text": "boolean"
3192
+ },
3193
+ "default": "false",
3194
+ "description": "indicates whether the side drawer is open",
3195
+ "privacy": "public"
3196
+ },
3197
+ {
3198
+ "kind": "field",
3199
+ "name": "trailing",
3200
+ "type": {
3201
+ "text": "boolean"
3202
+ },
3203
+ "default": "false",
3204
+ "description": "sets the side of the side drawer",
3205
+ "privacy": "public"
3206
+ },
3207
+ {
3208
+ "kind": "method",
3209
+ "name": "#close",
3210
+ "return": {
3211
+ "type": {
3212
+ "text": "void"
3213
+ }
3214
+ }
3215
+ },
3216
+ {
3217
+ "kind": "method",
3218
+ "name": "#open",
3219
+ "return": {
3220
+ "type": {
3221
+ "text": "void"
3222
+ }
3223
+ }
3224
+ }
3225
+ ],
3226
+ "attributes": [
3227
+ {
3228
+ "type": {
3229
+ "text": "boolean"
3230
+ },
3231
+ "default": "false",
3232
+ "description": "applies scheme alternate region",
3233
+ "fieldName": "alternate"
3234
+ },
3235
+ {
3236
+ "type": {
3237
+ "text": "boolean"
3238
+ },
3239
+ "default": "false",
3240
+ "description": "sets the side drawer's type to modal",
3241
+ "fieldName": "modal"
3242
+ },
3243
+ {
3244
+ "type": {
3245
+ "text": "boolean"
3246
+ },
3247
+ "default": "false",
3248
+ "description": "indicates whether the side drawer is open",
3249
+ "fieldName": "open"
3250
+ },
3251
+ {
3252
+ "type": {
3253
+ "text": "boolean"
3254
+ },
3255
+ "default": "false",
3256
+ "description": "sets the side of the side drawer",
3257
+ "fieldName": "trailing"
3258
+ }
3259
+ ],
3260
+ "superclass": {
3261
+ "name": "FoundationElement",
3262
+ "package": "@microsoft/fast-foundation"
3263
+ }
3264
+ }
3265
+ ],
3266
+ "exports": [
3267
+ {
3268
+ "kind": "js",
3269
+ "name": "SideDrawer",
3270
+ "declaration": {
3271
+ "name": "SideDrawer",
3272
+ "module": "libs/components/src/lib/side-drawer/side-drawer.ts"
3273
+ }
3274
+ }
3275
+ ]
3276
+ },
3277
+ {
3278
+ "kind": "javascript-module",
3279
+ "path": "libs/components/src/lib/slider/slider.ts",
3280
+ "declarations": [
3281
+ {
3282
+ "kind": "class",
3283
+ "description": "Base class for slider",
3284
+ "name": "Slider",
3285
+ "members": [
3286
+ {
3287
+ "kind": "field",
3288
+ "name": "markers",
3289
+ "type": {
3290
+ "text": "boolean"
3291
+ },
3292
+ "default": "false",
3293
+ "description": "Display markers on/off",
3294
+ "privacy": "public"
3295
+ }
3296
+ ],
3297
+ "attributes": [
3298
+ {
3299
+ "type": {
3300
+ "text": "boolean"
3301
+ },
3302
+ "default": "false",
3303
+ "description": "Display markers on/off",
3304
+ "fieldName": "markers"
3305
+ }
3306
+ ],
3307
+ "superclass": {
3308
+ "name": "FastSlider",
3309
+ "package": "@microsoft/fast-foundation"
3310
+ }
3311
+ }
3312
+ ],
3313
+ "exports": [
3314
+ {
3315
+ "kind": "js",
3316
+ "name": "Slider",
3317
+ "declaration": {
3318
+ "name": "Slider",
3319
+ "module": "libs/components/src/lib/slider/slider.ts"
3320
+ }
3321
+ }
3322
+ ]
3323
+ },
3324
+ {
3325
+ "kind": "javascript-module",
3326
+ "path": "libs/components/src/lib/switch/switch.ts",
3327
+ "declarations": [
3328
+ {
3329
+ "kind": "class",
3330
+ "description": "Base class for switch",
3331
+ "name": "Switch",
3332
+ "members": [
3333
+ {
3334
+ "kind": "field",
3335
+ "name": "label",
3336
+ "type": {
3337
+ "text": "string | undefined"
3338
+ },
3339
+ "description": "Indicates the switch's label.",
3340
+ "privacy": "public"
3341
+ },
3342
+ {
3343
+ "kind": "field",
3344
+ "name": "connotation",
3345
+ "type": {
3346
+ "text": "SwitchConnotation | undefined"
3347
+ }
3348
+ }
3349
+ ],
3350
+ "attributes": [
3351
+ {
3352
+ "name": "label",
3353
+ "type": {
3354
+ "text": "string | undefined"
3355
+ },
3356
+ "description": "Indicates the switch's label.",
3357
+ "fieldName": "label"
3358
+ },
3359
+ {
3360
+ "name": "connotation",
3361
+ "type": {
3362
+ "text": "SwitchConnotation | undefined"
3363
+ },
3364
+ "fieldName": "connotation"
3365
+ }
3366
+ ],
3367
+ "superclass": {
3368
+ "name": "FoundationElement",
3369
+ "package": "@microsoft/fast-foundation"
3370
+ }
3371
+ }
3372
+ ],
3373
+ "exports": [
3374
+ {
3375
+ "kind": "js",
3376
+ "name": "Switch",
3377
+ "declaration": {
3378
+ "name": "Switch",
3379
+ "module": "libs/components/src/lib/switch/switch.ts"
3380
+ }
3381
+ }
3382
+ ]
3383
+ },
3384
+ {
3385
+ "kind": "javascript-module",
3386
+ "path": "libs/components/src/lib/text-anchor/text-anchor.ts",
3387
+ "declarations": [
3388
+ {
3389
+ "kind": "class",
3390
+ "description": "Base class for text-anchor",
3391
+ "name": "TextAnchor",
3392
+ "members": [
3393
+ {
3394
+ "kind": "field",
3395
+ "name": "text",
3396
+ "type": {
3397
+ "text": "string | undefined"
3398
+ },
3399
+ "description": "Indicates the text anchor's text.",
3400
+ "privacy": "public"
3401
+ }
3402
+ ],
3403
+ "attributes": [
3404
+ {
3405
+ "name": "text",
3406
+ "type": {
3407
+ "text": "string | undefined"
3408
+ },
3409
+ "description": "Indicates the text anchor's text.",
3410
+ "fieldName": "text"
3411
+ }
3412
+ ],
3413
+ "superclass": {
3414
+ "name": "Anchor",
3415
+ "package": "@microsoft/fast-foundation"
3416
+ }
3417
+ }
3418
+ ],
3419
+ "exports": [
3420
+ {
3421
+ "kind": "js",
3422
+ "name": "TextAnchor",
3423
+ "declaration": {
3424
+ "name": "TextAnchor",
3425
+ "module": "libs/components/src/lib/text-anchor/text-anchor.ts"
3426
+ }
3427
+ }
3428
+ ]
3429
+ },
3430
+ {
3431
+ "kind": "javascript-module",
3432
+ "path": "libs/components/src/lib/text-area/text-area.ts",
3433
+ "declarations": [
3434
+ {
3435
+ "kind": "class",
3436
+ "description": "Base class for text-area",
3437
+ "name": "TextArea",
3438
+ "members": [
3439
+ {
3440
+ "kind": "field",
3441
+ "name": "wrap",
3442
+ "type": {
3443
+ "text": "TextAreaWrap | undefined"
3444
+ }
3445
+ }
3446
+ ],
3447
+ "attributes": [
3448
+ {
3449
+ "name": "wrap",
3450
+ "type": {
3451
+ "text": "TextAreaWrap | undefined"
3452
+ },
3453
+ "fieldName": "wrap"
3454
+ }
3455
+ ],
3456
+ "superclass": {
3457
+ "name": "FoundationElement",
3458
+ "package": "@microsoft/fast-foundation"
3459
+ }
3460
+ }
3461
+ ],
3462
+ "exports": [
3463
+ {
3464
+ "kind": "js",
3465
+ "name": "TextArea",
3466
+ "declaration": {
3467
+ "name": "TextArea",
3468
+ "module": "libs/components/src/lib/text-area/text-area.ts"
3469
+ }
3470
+ }
3471
+ ]
3472
+ },
3473
+ {
3474
+ "kind": "javascript-module",
3475
+ "path": "libs/components/src/lib/text-field/text-field.ts",
3476
+ "declarations": [
3477
+ {
3478
+ "kind": "class",
3479
+ "description": "Base class for text-field",
3480
+ "name": "TextField",
3481
+ "members": [
3482
+ {
3483
+ "kind": "field",
3484
+ "name": "appearance",
3485
+ "type": {
3486
+ "text": "TextFieldAppearance | undefined"
3487
+ }
3488
+ },
3489
+ {
3490
+ "kind": "field",
3491
+ "name": "shape",
3492
+ "type": {
3493
+ "text": "TextFieldShape | undefined"
3494
+ }
3495
+ },
3496
+ {
3497
+ "kind": "field",
3498
+ "name": "autoComplete",
3499
+ "type": {
3500
+ "text": "string | undefined"
3501
+ }
3502
+ }
3503
+ ],
3504
+ "attributes": [
3505
+ {
3506
+ "name": "appearance",
3507
+ "type": {
3508
+ "text": "TextFieldAppearance | undefined"
3509
+ },
3510
+ "fieldName": "appearance"
3511
+ },
3512
+ {
3513
+ "name": "shape",
3514
+ "type": {
3515
+ "text": "TextFieldShape | undefined"
3516
+ },
3517
+ "fieldName": "shape"
3518
+ },
3519
+ {
3520
+ "name": "autoComplete",
3521
+ "type": {
3522
+ "text": "string | undefined"
3523
+ },
3524
+ "fieldName": "autoComplete"
3525
+ }
3526
+ ],
3527
+ "superclass": {
3528
+ "name": "FoundationTextfield",
3529
+ "package": "@microsoft/fast-foundation"
3530
+ }
3531
+ }
3532
+ ],
3533
+ "exports": [
3534
+ {
3535
+ "kind": "js",
3536
+ "name": "TextField",
3537
+ "declaration": {
3538
+ "name": "TextField",
3539
+ "module": "libs/components/src/lib/text-field/text-field.ts"
3540
+ }
3541
+ }
3542
+ ]
3543
+ },
3544
+ {
3545
+ "kind": "javascript-module",
3546
+ "path": "libs/components/src/lib/tooltip/tooltip.ts",
3547
+ "declarations": [
3548
+ {
3549
+ "kind": "class",
3550
+ "description": "Base class for tooltip",
3551
+ "name": "Tooltip",
3552
+ "members": [
3553
+ {
3554
+ "kind": "field",
3555
+ "name": "text",
3556
+ "type": {
3557
+ "text": "string | undefined"
3558
+ },
3559
+ "description": "the text of the tooltip\naccepts string",
3560
+ "privacy": "public"
3561
+ },
3562
+ {
3563
+ "kind": "field",
3564
+ "name": "open",
3565
+ "type": {
3566
+ "text": "boolean"
3567
+ },
3568
+ "default": "false",
3569
+ "description": "indicates whether the tooltip is open",
3570
+ "privacy": "public"
3571
+ },
3572
+ {
3573
+ "kind": "field",
3574
+ "name": "placement",
3575
+ "type": {
3576
+ "text": "Placement | undefined"
3577
+ },
3578
+ "description": "the placement of the tooltip",
3579
+ "privacy": "public"
3580
+ },
3581
+ {
3582
+ "kind": "field",
3583
+ "name": "anchor",
3584
+ "type": {
3585
+ "text": "string | undefined"
3586
+ },
3587
+ "description": "ID reference to element in the tooltip's owner document.",
3588
+ "privacy": "public"
3589
+ }
3590
+ ],
3591
+ "attributes": [
3592
+ {
3593
+ "name": "text",
3594
+ "type": {
3595
+ "text": "string | undefined"
3596
+ },
3597
+ "description": "the text of the tooltip\naccepts string",
3598
+ "fieldName": "text"
3599
+ },
3600
+ {
3601
+ "type": {
3602
+ "text": "boolean"
3603
+ },
3604
+ "default": "false",
3605
+ "description": "indicates whether the tooltip is open",
3606
+ "fieldName": "open"
3607
+ },
3608
+ {
3609
+ "name": "placement",
3610
+ "type": {
3611
+ "text": "Placement | undefined"
3612
+ },
3613
+ "description": "the placement of the tooltip",
3614
+ "fieldName": "placement"
3615
+ },
3616
+ {
3617
+ "name": "anchor",
3618
+ "type": {
3619
+ "text": "string | undefined"
3620
+ },
3621
+ "description": "ID reference to element in the tooltip's owner document.",
3622
+ "fieldName": "anchor"
3623
+ }
3624
+ ],
3625
+ "superclass": {
3626
+ "name": "FoundationElement",
3627
+ "package": "@microsoft/fast-foundation"
3628
+ }
3629
+ }
3630
+ ],
3631
+ "exports": [
3632
+ {
3633
+ "kind": "js",
3634
+ "name": "Tooltip",
3635
+ "declaration": {
3636
+ "name": "Tooltip",
3637
+ "module": "libs/components/src/lib/tooltip/tooltip.ts"
3638
+ }
3639
+ }
3640
+ ]
3641
+ }
3642
+ ]
3643
+ }