-
Notifications
You must be signed in to change notification settings - Fork 1
/
custom-elements.json
1351 lines (1351 loc) · 56.5 KB
/
custom-elements.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"version": 2,
"tags": [
{
"name": "mgt-person",
"description": "The person component is used to display a person or contact by using their photo, name, and/or email address.",
"jsDoc": "/**\n * The person component is used to display a person or contact by using their photo, name, and/or email address.\n *\n * @export\n * @class MgtPerson\n * @extends {MgtTemplatedComponent}\n */",
"attributes": [
{
"name": "person-query",
"description": "allows developer to define name of person for component",
"jsDoc": "/**\n * allows developer to define name of person for component\n * @type {string}\n */",
"type": "string"
},
{
"name": "user-id",
"description": "user-id property allows developer to use id value to determine person",
"jsDoc": "/**\n * user-id property allows developer to use id value to determine person\n * @type {string}\n */",
"type": "string"
},
{
"name": "show-name",
"description": "determines if person component renders user-name",
"jsDoc": "/**\n * determines if person component renders user-name\n * @type {boolean}\n */",
"type": "false"
},
{
"name": "show-email",
"description": "determines if person component renders email",
"jsDoc": "/**\n * determines if person component renders email\n * @type {boolean}\n */",
"type": "false"
},
{
"name": "person-details",
"description": "object containing Graph details on person",
"jsDoc": "/**\n * object containing Graph details on person\n * @type {MgtPersonDetails}\n */",
"type": "User | Person | Contact"
},
{
"name": "person-image",
"description": "Set the image of the person\nSet to '@' to look up image from the graph",
"jsDoc": "/**\n * Set the image of the person\n * Set to '@' to look up image from the graph\n *\n * @type {string}\n * @memberof MgtPersonCard\n */",
"type": "string"
},
{
"name": "person-card",
"description": "Sets how the person-card is invoked\nSet to PersonCardInteraction.none to not show the card",
"jsDoc": "/**\n * Sets how the person-card is invoked\n * Set to PersonCardInteraction.none to not show the card\n *\n * @type {PersonCardInteraction}\n * @memberof MgtPerson\n */",
"type": "PersonCardInteraction"
}
],
"properties": [
{
"name": "templateConverters",
"description": "Collection of functions to be used in template binding",
"jsDoc": "/**\n * Collection of functions to be used in template binding\n *\n * @type {*}\n * @memberof MgtTemplatedComponent\n */",
"type": "any"
},
{
"name": "personQuery",
"description": "allows developer to define name of person for component",
"jsDoc": "/**\n * allows developer to define name of person for component\n * @type {string}\n */",
"type": "string"
},
{
"name": "userId",
"description": "user-id property allows developer to use id value to determine person",
"jsDoc": "/**\n * user-id property allows developer to use id value to determine person\n * @type {string}\n */",
"type": "string"
},
{
"name": "showName",
"description": "determines if person component renders user-name",
"jsDoc": "/**\n * determines if person component renders user-name\n * @type {boolean}\n */",
"type": "false"
},
{
"name": "showEmail",
"description": "determines if person component renders email",
"jsDoc": "/**\n * determines if person component renders email\n * @type {boolean}\n */",
"type": "false"
},
{
"name": "personDetails",
"description": "object containing Graph details on person",
"jsDoc": "/**\n * object containing Graph details on person\n * @type {MgtPersonDetails}\n */",
"type": "User | Person | Contact"
},
{
"name": "personImage",
"description": "Set the image of the person\nSet to '@' to look up image from the graph",
"jsDoc": "/**\n * Set the image of the person\n * Set to '@' to look up image from the graph\n *\n * @type {string}\n * @memberof MgtPersonCard\n */",
"type": "string"
},
{
"name": "personCardInteraction",
"description": "Sets how the person-card is invoked\nSet to PersonCardInteraction.none to not show the card",
"jsDoc": "/**\n * Sets how the person-card is invoked\n * Set to PersonCardInteraction.none to not show the card\n *\n * @type {PersonCardInteraction}\n * @memberof MgtPerson\n */",
"type": "PersonCardInteraction"
}
],
"cssProperties": [
{
"name": "--avatar-size-s",
"description": "Avatar size",
"type": "Length"
},
{
"name": "--avatar-size",
"description": "Avatar size when both name and email are shown",
"type": "Length"
},
{
"name": "--avatar-font-size--s",
"description": "Avatar font size",
"type": "Length"
},
{
"name": "--avatar-font-size",
"description": "Avatar font-size when both name and email are shown",
"type": "Length"
},
{
"name": "--avatar-border",
"description": "Avatar border",
"type": "String"
},
{
"name": "--initials-color",
"description": "Initials color",
"type": "Color"
},
{
"name": "--initials-background-color",
"description": "Initials background color",
"type": "Color"
},
{
"name": "--font-size",
"description": "Font size",
"type": "Length"
},
{
"name": "--font-weight",
"description": "Font weight",
"type": "Length"
},
{
"name": "--color",
"description": "Color",
"type": "Color"
},
{
"name": "--email-font-size",
"description": "Email font size",
"type": "Length"
},
{
"name": "--email-color",
"description": "Email color",
"type": "Color"
}
]
},
{
"name": "mgt-agenda",
"description": "Web Component which represents events in a user or group calendar.",
"jsDoc": "/**\n * Web Component which represents events in a user or group calendar.\n *\n * @export\n * @class MgtAgenda\n * @extends {MgtTemplatedComponent}\n */",
"attributes": [
{
"name": "events",
"description": "array containg events from user agenda.",
"jsDoc": "/**\n * array containg events from user agenda.\n * @type {Array<MicrosoftGraph.Event>}\n */",
"type": "Event[]"
},
{
"name": "group-by-day",
"description": "allows developer to define agenda to group events by day.",
"jsDoc": "/**\n * allows developer to define agenda to group events by day.\n * @type {Boolean}\n */",
"type": "boolean"
},
{
"name": "date",
"description": "stores current date for intial calender selection in events.",
"jsDoc": "/**\n * stores current date for intial calender selection in events.\n * @type {string}\n */",
"type": "string"
},
{
"name": "days",
"description": "sets number of days until endate, 3 is the default",
"jsDoc": "/**\n * sets number of days until endate, 3 is the default\n * @type {number}\n */",
"type": "number"
},
{
"name": "event-query",
"description": "allows developer to specify a different graph query that retrieves events",
"jsDoc": "/**\n * allows developer to specify a different graph query that retrieves events\n * @type {string}\n */",
"type": "string"
},
{
"name": "show-max",
"description": "allows developer to define max number of events shown",
"jsDoc": "/**\n * allows developer to define max number of events shown\n * @type {number}\n */",
"type": "number"
},
{
"name": "group-id",
"description": "determines if agenda events come from specific group",
"jsDoc": "/**\n * determines if agenda events come from specific group\n * @type {string}\n */",
"type": "string"
}
],
"properties": [
{
"name": "templateConverters",
"description": "Collection of functions to be used in template binding",
"jsDoc": "/**\n * Collection of functions to be used in template binding\n *\n * @type {*}\n * @memberof MgtTemplatedComponent\n */",
"type": "any"
},
{
"name": "events",
"description": "array containg events from user agenda.",
"jsDoc": "/**\n * array containg events from user agenda.\n * @type {Array<MicrosoftGraph.Event>}\n */",
"type": "Event[]"
},
{
"name": "groupByDay",
"description": "allows developer to define agenda to group events by day.",
"jsDoc": "/**\n * allows developer to define agenda to group events by day.\n * @type {Boolean}\n */",
"type": "boolean"
},
{
"name": "date",
"description": "stores current date for intial calender selection in events.",
"jsDoc": "/**\n * stores current date for intial calender selection in events.\n * @type {string}\n */",
"type": "string"
},
{
"name": "days",
"description": "sets number of days until endate, 3 is the default",
"jsDoc": "/**\n * sets number of days until endate, 3 is the default\n * @type {number}\n */",
"type": "number"
},
{
"name": "eventQuery",
"description": "allows developer to specify a different graph query that retrieves events",
"jsDoc": "/**\n * allows developer to specify a different graph query that retrieves events\n * @type {string}\n */",
"type": "string"
},
{
"name": "showMax",
"description": "allows developer to define max number of events shown",
"jsDoc": "/**\n * allows developer to define max number of events shown\n * @type {number}\n */",
"type": "number"
},
{
"name": "groupId",
"description": "determines if agenda events come from specific group",
"jsDoc": "/**\n * determines if agenda events come from specific group\n * @type {string}\n */",
"type": "string"
},
{
"name": "onResize",
"type": "any"
},
{
"name": "hours",
"type": "number"
}
],
"cssProperties": [
{
"name": "--event-box-shadow",
"description": "Event box shadow color and size",
"type": "String"
},
{
"name": "--event-margin",
"description": "Event margin",
"type": "String"
},
{
"name": "--event-padding",
"description": "Event padding",
"type": "String"
},
{
"name": "--event-background",
"description": "Event background color",
"type": "Color"
},
{
"name": "--event-border",
"description": "Event border color",
"type": "String"
},
{
"name": "--agenda-header-margin",
"description": "Agenda header margin size",
"type": "String"
},
{
"name": "--agenda-header-font-size",
"description": "Agenda header font size",
"type": "Length"
},
{
"name": "--agenda-header-color",
"description": "Agenda header color",
"type": "Color"
},
{
"name": "--event-time-font-size",
"description": "Event time font size",
"type": "Length"
},
{
"name": "--event-time-color",
"description": "Event time color",
"type": "Color"
},
{
"name": "--event-subject-font-size",
"description": "Event subject font size",
"type": "Length"
},
{
"name": "--event-subject-color",
"description": "Event subject color",
"type": "Color"
},
{
"name": "--event-location-font-size",
"description": "Event location font size",
"type": "Length"
},
{
"name": "--event-location-color",
"description": "Event location color",
"type": "Color"
}
]
},
{
"name": "mgt-get",
"description": "Custom element for making Microsoft Graph get queries",
"jsDoc": "/**\n * Custom element for making Microsoft Graph get queries\n *\n * @export\n * @class mgt-get\n * @extends {MgtTemplatedComponent}\n */",
"attributes": [
{
"name": "resource",
"description": "The resource to get",
"jsDoc": "/**\n * The resource to get\n *\n * @type {string}\n * @memberof MgtGet\n */",
"type": "string"
},
{
"name": "scopes",
"description": "The resource to get",
"jsDoc": "/**\n * The resource to get\n *\n * @type {string[]}\n * @memberof MgtGet\n */",
"type": "string[]"
},
{
"name": "version",
"description": "Api version to use for request",
"jsDoc": "/**\n * Api version to use for request\n *\n * @type {string}\n * @memberof MgtGet\n */",
"type": "string"
},
{
"name": "max-pages",
"description": "Maximum number of pages to get for the resource\ndefault = 3\nif <= 0, all pages will be fetched",
"jsDoc": "/**\n * Maximum number of pages to get for the resource\n * default = 3\n * if <= 0, all pages will be fetched\n *\n * @type {boolean}\n * @memberof MgtGet\n */",
"type": "number"
}
],
"properties": [
{
"name": "templateConverters",
"description": "Collection of functions to be used in template binding",
"jsDoc": "/**\n * Collection of functions to be used in template binding\n *\n * @type {*}\n * @memberof MgtTemplatedComponent\n */",
"type": "any"
},
{
"name": "resource",
"description": "The resource to get",
"jsDoc": "/**\n * The resource to get\n *\n * @type {string}\n * @memberof MgtGet\n */",
"type": "string"
},
{
"name": "scopes",
"description": "The resource to get",
"jsDoc": "/**\n * The resource to get\n *\n * @type {string[]}\n * @memberof MgtGet\n */",
"type": "string[]"
},
{
"name": "version",
"description": "Api version to use for request",
"jsDoc": "/**\n * Api version to use for request\n *\n * @type {string}\n * @memberof MgtGet\n */",
"type": "string"
},
{
"name": "maxPages",
"description": "Maximum number of pages to get for the resource\ndefault = 3\nif <= 0, all pages will be fetched",
"jsDoc": "/**\n * Maximum number of pages to get for the resource\n * default = 3\n * if <= 0, all pages will be fetched\n *\n * @type {boolean}\n * @memberof MgtGet\n */",
"type": "number"
},
{
"name": "response",
"description": "Gets or sets the response of the request",
"jsDoc": "/**\n * Gets or sets the response of the request\n *\n * @type {*}\n * @memberof MgtGet\n */",
"type": "any"
},
{
"name": "error",
"description": "Gets or sets the error (if any) of the request",
"jsDoc": "/**\n *\n * Gets or sets the error (if any) of the request\n * @type {*}\n * @memberof MgtGet\n */",
"type": "any"
}
]
},
{
"name": "mgt-login",
"description": "Web component button and flyout control to facilitate Microsoft identity platform authentication",
"jsDoc": "/**\n * Web component button and flyout control to facilitate Microsoft identity platform authentication\n *\n * @export\n * @class MgtLogin\n * @extends {MgtBaseComponent}\n */",
"attributes": [
{
"name": "user-details",
"description": "allows developer to use specific user details for login",
"jsDoc": "/**\n * allows developer to use specific user details for login\n * @type {MgtPersonDetails}\n */",
"type": "User"
}
],
"properties": [
{
"name": "userDetails",
"description": "allows developer to use specific user details for login",
"jsDoc": "/**\n * allows developer to use specific user details for login\n * @type {MgtPersonDetails}\n */",
"type": "User"
}
],
"cssProperties": [
{
"name": "--font-size",
"description": "Login font size",
"type": "Length"
},
{
"name": "--font-weight",
"description": "Login font weight",
"type": "Length"
},
{
"name": "--height",
"description": "Login height percentage",
"type": "String"
},
{
"name": "--margin",
"description": "Margin size",
"type": "String"
},
{
"name": "--padding",
"description": "Padding size",
"type": "String"
},
{
"name": "--color",
"description": "Login font color",
"type": "Color"
},
{
"name": "--background-color",
"description": "Login background color",
"type": "Color"
},
{
"name": "--background-color--hover",
"description": "Login background hover color",
"type": "Color"
},
{
"name": "--popup-content-background-color",
"description": "Popup content background color",
"type": "Color"
},
{
"name": "--popup-command-font-size",
"description": "Popup command font size",
"type": "Length"
}
]
},
{
"name": "mgt-people-picker",
"description": "Web component used to search for people from the Microsoft Graph",
"jsDoc": "/**\n * Web component used to search for people from the Microsoft Graph\n *\n * @export\n * @class MgtPicker\n * @extends {MgtTemplatedComponent}\n */",
"attributes": [
{
"name": "people",
"description": "containing object of MgtPersonDetails.",
"jsDoc": "/**\n * containing object of MgtPersonDetails.\n * @type {MgtPersonDetails}\n */",
"type": "(User | Person | Contact)[]"
},
{
"name": "show-max",
"description": "determining how many people to show in list.",
"jsDoc": "/**\n * determining how many people to show in list.\n * @type {number}\n */",
"type": "number"
},
{
"name": "group-id",
"description": "value determining if search is filtered to a group.",
"jsDoc": "/**\n * value determining if search is filtered to a group.\n * @type {string}\n */",
"type": "string"
},
{
"name": "selected-people",
"description": "array of user picked people.",
"jsDoc": "/**\n * array of user picked people.\n * @type {Array<any>}\n */",
"type": "(User | Person | Contact)[]"
}
],
"properties": [
{
"name": "templateConverters",
"description": "Collection of functions to be used in template binding",
"jsDoc": "/**\n * Collection of functions to be used in template binding\n *\n * @type {*}\n * @memberof MgtTemplatedComponent\n */",
"type": "any"
},
{
"name": "people",
"description": "containing object of MgtPersonDetails.",
"jsDoc": "/**\n * containing object of MgtPersonDetails.\n * @type {MgtPersonDetails}\n */",
"type": "(User | Person | Contact)[]"
},
{
"name": "showMax",
"description": "determining how many people to show in list.",
"jsDoc": "/**\n * determining how many people to show in list.\n * @type {number}\n */",
"type": "number"
},
{
"name": "groupId",
"description": "value determining if search is filtered to a group.",
"jsDoc": "/**\n * value determining if search is filtered to a group.\n * @type {string}\n */",
"type": "string"
},
{
"name": "selectedPeople",
"description": "array of user picked people.",
"jsDoc": "/**\n * array of user picked people.\n * @type {Array<any>}\n */",
"type": "(User | Person | Contact)[]"
}
],
"cssProperties": [
{
"name": "--people-list-background-color",
"description": "People list background color",
"type": "Color"
},
{
"name": "--accent-color",
"description": "Accent color",
"type": "Color"
}
]
},
{
"name": "mgt-people",
"description": "web component to display a group of people or contacts by using their photos or initials.",
"jsDoc": "/**\n * web component to display a group of people or contacts by using their photos or initials.\n *\n * @export\n * @class MgtPeople\n * @extends {MgtTemplatedComponent}\n */",
"attributes": [
{
"name": "people",
"description": "containing array of people used in the component.",
"jsDoc": "/**\n * containing array of people used in the component.\n * @type {Array<MgtPersonDetails>}\n */",
"type": "(User | Person | Contact)[]"
},
{
"name": "show-max",
"description": "developer determined max people shown in component",
"jsDoc": "/**\n * developer determined max people shown in component\n * @type {number}\n */",
"type": "number"
},
{
"name": "group-id",
"description": "determines if agenda events come from specific group",
"jsDoc": "/**\n * determines if agenda events come from specific group\n * @type {string}\n */",
"type": "string"
},
{
"name": "user-ids",
"description": "user id array",
"jsDoc": "/**\n * user id array\n *\n * @memberof MgtPeople\n */",
"type": "string[]"
},
{
"name": "person-card",
"description": "Sets how the person-card is invoked\nSet to PersonCardInteraction.none to not show the card",
"jsDoc": "/**\n * Sets how the person-card is invoked\n * Set to PersonCardInteraction.none to not show the card\n *\n * @type {PersonCardInteraction}\n * @memberof MgtPerson\n */",
"type": "PersonCardInteraction"
}
],
"properties": [
{
"name": "templateConverters",
"description": "Collection of functions to be used in template binding",
"jsDoc": "/**\n * Collection of functions to be used in template binding\n *\n * @type {*}\n * @memberof MgtTemplatedComponent\n */",
"type": "any"
},
{
"name": "people",
"description": "containing array of people used in the component.",
"jsDoc": "/**\n * containing array of people used in the component.\n * @type {Array<MgtPersonDetails>}\n */",
"type": "(User | Person | Contact)[]"
},
{
"name": "showMax",
"description": "developer determined max people shown in component",
"jsDoc": "/**\n * developer determined max people shown in component\n * @type {number}\n */",
"type": "number"
},
{
"name": "groupId",
"description": "determines if agenda events come from specific group",
"jsDoc": "/**\n * determines if agenda events come from specific group\n * @type {string}\n */",
"type": "string"
},
{
"name": "userIds",
"description": "user id array",
"jsDoc": "/**\n * user id array\n *\n * @memberof MgtPeople\n */",
"type": "string[]"
},
{
"name": "personCardInteraction",
"description": "Sets how the person-card is invoked\nSet to PersonCardInteraction.none to not show the card",
"jsDoc": "/**\n * Sets how the person-card is invoked\n * Set to PersonCardInteraction.none to not show the card\n *\n * @type {PersonCardInteraction}\n * @memberof MgtPerson\n */",
"type": "PersonCardInteraction"
}
],
"cssProperties": [
{
"name": "--list-margin",
"description": "List margin for component",
"type": "String"
},
{
"name": "--avatar-margin",
"description": "Margin for each person",
"type": "String"
}
]
},
{
"name": "mgt-person-card",
"description": "Web Component used to show detailed data for a person in the\nMicrosoft Graph",
"jsDoc": "/**\n * Web Component used to show detailed data for a person in the\n * Microsoft Graph\n *\n * @export\n * @class MgtPersonCard\n * @extends {MgtTemplatedComponent}\n */",
"attributes": [
{
"name": "person-details",
"description": "Set the person details to render",
"jsDoc": "/**\n * Set the person details to render\n *\n * @type {(MicrosoftGraph.User\n * | MicrosoftGraph.Person\n * | MicrosoftGraph.Contact)}\n * @memberof MgtPersonCard\n */",
"type": "User | Person | Contact"
},
{
"name": "person-image",
"description": "Set the image of the person\nSet to '@' to look up image from the graph",
"jsDoc": "/**\n * Set the image of the person\n * Set to '@' to look up image from the graph\n *\n * @type {string}\n * @memberof MgtPersonCard\n */",
"type": "string"
},
{
"name": "is-expanded",
"description": "Gets or sets whether additional details section is rendered",
"jsDoc": "/**\n * Gets or sets whether additional details section is rendered\n *\n * @type {boolean}\n * @memberof MgtPersonCard\n */",
"type": "boolean"
},
{
"name": "inherit-details",
"description": "Gets or sets whether additional details should be inherited from an mgt-person parent\nUseful when used as template in an mgt-person component",
"jsDoc": "/**\n * Gets or sets whether additional details should be inherited from an mgt-person parent\n * Useful when used as template in an mgt-person component\n *\n * @type {boolean}\n * @memberof MgtPersonCard\n */",
"type": "boolean"
}
],
"properties": [
{
"name": "templateConverters",
"description": "Collection of functions to be used in template binding",
"jsDoc": "/**\n * Collection of functions to be used in template binding\n *\n * @type {*}\n * @memberof MgtTemplatedComponent\n */",
"type": "any"
},
{
"name": "personDetails",
"description": "Set the person details to render",
"jsDoc": "/**\n * Set the person details to render\n *\n * @type {(MicrosoftGraph.User\n * | MicrosoftGraph.Person\n * | MicrosoftGraph.Contact)}\n * @memberof MgtPersonCard\n */",
"type": "User | Person | Contact"
},
{
"name": "personImage",
"description": "Set the image of the person\nSet to '@' to look up image from the graph",
"jsDoc": "/**\n * Set the image of the person\n * Set to '@' to look up image from the graph\n *\n * @type {string}\n * @memberof MgtPersonCard\n */",
"type": "string"
},
{
"name": "isExpanded",
"description": "Gets or sets whether additional details section is rendered",
"jsDoc": "/**\n * Gets or sets whether additional details section is rendered\n *\n * @type {boolean}\n * @memberof MgtPersonCard\n */",
"type": "boolean"
},
{
"name": "inheritDetails",
"description": "Gets or sets whether additional details should be inherited from an mgt-person parent\nUseful when used as template in an mgt-person component",
"jsDoc": "/**\n * Gets or sets whether additional details should be inherited from an mgt-person parent\n * Useful when used as template in an mgt-person component\n *\n * @type {boolean}\n * @memberof MgtPersonCard\n */",
"type": "boolean"
},
{
"name": "renderAdditionalSection",
"type": "TemplateResult | null"
}
],
"cssProperties": [
{
"name": "--font-size",
"description": "Font size",
"type": "Length"
},
{
"name": "--font-weight",
"description": "Font weight",
"type": "Length"
},
{
"name": "--height",
"description": "Height",
"type": "String"
},
{
"name": "--background-color",
"description": "Background color",
"type": "Color"
}
]
},
{
"name": "mgt-arrow-options",
"description": "Custom Component used to handle an arrow rendering for TaskGroups utilized in the task component.",
"jsDoc": "/**\n * Custom Component used to handle an arrow rendering for TaskGroups utilized in the task component.\n *\n * @export MgtArrowOptions\n * @class MgtArrowOptions\n * @extends {MgtBaseComponent}\n */",
"attributes": [
{
"name": "open",
"description": "Determines if header menu is rendered or hidden.",
"jsDoc": "/**\n * Determines if header menu is rendered or hidden.\n *\n * @type {boolean}\n * @memberof MgtArrowOptions\n */",
"type": "boolean"
},
{
"name": "value",
"description": "Title of chosen TaskGroup.",
"jsDoc": "/**\n * Title of chosen TaskGroup.\n *\n * @type {string}\n * @memberof MgtArrowOptions\n */",
"type": "string"
},
{
"name": "options",
"description": "Menu options to be rendered with an attached MouseEvent handler for expansion of details",
"jsDoc": "/**\n * Menu options to be rendered with an attached MouseEvent handler for expansion of details\n *\n * @type {object}\n * @memberof MgtArrowOptions\n */",
"type": "{ [name: string]: (e: MouseEvent) => any; }"
}
],
"properties": [
{
"name": "open",
"description": "Determines if header menu is rendered or hidden.",
"jsDoc": "/**\n * Determines if header menu is rendered or hidden.\n *\n * @type {boolean}\n * @memberof MgtArrowOptions\n */",
"type": "boolean"
},
{
"name": "value",
"description": "Title of chosen TaskGroup.",
"jsDoc": "/**\n * Title of chosen TaskGroup.\n *\n * @type {string}\n * @memberof MgtArrowOptions\n */",
"type": "string"
},
{
"name": "options",
"description": "Menu options to be rendered with an attached MouseEvent handler for expansion of details",
"jsDoc": "/**\n * Menu options to be rendered with an attached MouseEvent handler for expansion of details\n *\n * @type {object}\n * @memberof MgtArrowOptions\n */",
"type": "{ [name: string]: (e: MouseEvent) => any; }"
}
]
},
{
"name": "mgt-dot-options",
"description": "Custom Component used to handle an arrow rendering for TaskGroups utilized in the task component.",
"jsDoc": "/**\n * Custom Component used to handle an arrow rendering for TaskGroups utilized in the task component.\n *\n * @export MgtDotOptions\n * @class MgtDotOptions\n * @extends {MgtBaseComponent}\n */",
"attributes": [
{
"name": "open",
"description": "Determines if header menu is rendered or hidden.",
"jsDoc": "/**\n * Determines if header menu is rendered or hidden.\n *\n * @type {boolean}\n * @memberof MgtDotOptions\n */",
"type": "boolean"
},
{
"name": "options",
"description": "Menu options to be rendered with an attached MouseEvent handler for expansion of details",
"jsDoc": "/**\n * Menu options to be rendered with an attached MouseEvent handler for expansion of details\n *\n * @memberof MgtDotOptions\n */",
"type": "{ [option: string]: (e: MouseEvent) => any; }"
}
],
"properties": [
{
"name": "open",
"description": "Determines if header menu is rendered or hidden.",
"jsDoc": "/**\n * Determines if header menu is rendered or hidden.\n *\n * @type {boolean}\n * @memberof MgtDotOptions\n */",
"type": "boolean"
},
{
"name": "options",
"description": "Menu options to be rendered with an attached MouseEvent handler for expansion of details",
"jsDoc": "/**\n * Menu options to be rendered with an attached MouseEvent handler for expansion of details\n *\n * @memberof MgtDotOptions\n */",
"type": "{ [option: string]: (e: MouseEvent) => any; }"
}
]
},
{
"name": "mgt-tasks",
"description": "component enables the user to view, add, remove, complete, or edit tasks. It works with tasks in Microsoft Planner or Microsoft To-Do.",
"jsDoc": "/**\n * component enables the user to view, add, remove, complete, or edit tasks. It works with tasks in Microsoft Planner or Microsoft To-Do.\n *\n * @export\n * @class MgtTasks\n * @extends {MgtBaseComponent}\n */",
"attributes": [
{
"name": "read-only",
"description": "determines if tasks are un-editable",
"jsDoc": "/**\n * determines if tasks are un-editable\n * @type {boolean}\n */",
"type": "boolean"
},
{
"name": "data-source",
"description": "determines which task source is loaded, either planner or todo",
"jsDoc": "/**\n * determines which task source is loaded, either planner or todo\n * @type {string}\n */",
"type": "TasksSource"
},
{
"name": "target-id",
"description": "if set, the component will only show tasks from either this plan or group",
"jsDoc": "/**\n * if set, the component will only show tasks from either this plan or group\n * @type {string}\n */",
"type": "string"
},
{
"name": "target-bucket-id",
"description": "if set, the component will only show tasks from this bucket or folder",
"jsDoc": "/**\n * if set, the component will only show tasks from this bucket or folder\n * @type {string}\n */",
"type": "string"
},
{
"name": "initial-id",
"description": "if set, the component will first show tasks from this plan or group",
"jsDoc": "/**\n * if set, the component will first show tasks from this plan or group\n *\n * @type {string}\n * @memberof MgtTasks\n */",
"type": "string"
},
{
"name": "initial-bucket-id",
"description": "if set, the component will first show tasks from this bucket or folder",
"jsDoc": "/**\n * if set, the component will first show tasks from this bucket or folder\n *\n * @type {string}\n * @memberof MgtTasks\n */",
"type": "string"
},
{
"name": "hide-header",
"description": "sets whether the header is rendered",
"jsDoc": "/**\n * sets whether the header is rendered\n *\n * @type {boolean}\n * @memberof MgtTasks\n */",
"type": "boolean"
},
{
"name": "group-id",
"description": "allows developer to define specific group id",
"jsDoc": "/**\n * allows developer to define specific group id\n */",
"type": "string"
}
],
"properties": [
{
"name": "templateConverters",
"description": "Collection of functions to be used in template binding",
"jsDoc": "/**\n * Collection of functions to be used in template binding\n *\n * @type {*}\n * @memberof MgtTemplatedComponent\n */",
"type": "any"
},
{
"name": "isNewTaskVisible",
"description": "Set whether new task is visible",
"jsDoc": "/**\n * Set whether new task is visible\n *\n * @memberof MgtTasks\n */",
"type": "boolean"
},
{
"name": "readOnly",
"description": "determines if tasks are un-editable",
"jsDoc": "/**\n * determines if tasks are un-editable\n * @type {boolean}\n */",
"type": "boolean"
},
{
"name": "dataSource",
"description": "determines which task source is loaded, either planner or todo",
"jsDoc": "/**\n * determines which task source is loaded, either planner or todo\n * @type {string}\n */",
"type": "TasksSource"
},
{
"name": "targetId",
"description": "if set, the component will only show tasks from either this plan or group",
"jsDoc": "/**\n * if set, the component will only show tasks from either this plan or group\n * @type {string}\n */",
"type": "string"
},
{
"name": "targetBucketId",
"description": "if set, the component will only show tasks from this bucket or folder",
"jsDoc": "/**\n * if set, the component will only show tasks from this bucket or folder\n * @type {string}\n */",
"type": "string"
},
{
"name": "initialId",
"description": "if set, the component will first show tasks from this plan or group",
"jsDoc": "/**\n * if set, the component will first show tasks from this plan or group\n *\n * @type {string}\n * @memberof MgtTasks\n */",
"type": "string"
},
{
"name": "initialBucketId",
"description": "if set, the component will first show tasks from this bucket or folder",
"jsDoc": "/**\n * if set, the component will first show tasks from this bucket or folder\n *\n * @type {string}\n * @memberof MgtTasks\n */",
"type": "string"
},
{
"name": "hideHeader",
"description": "sets whether the header is rendered",
"jsDoc": "/**\n * sets whether the header is rendered\n *\n * @type {boolean}\n * @memberof MgtTasks\n */",
"type": "boolean"
},
{
"name": "groupId",
"description": "allows developer to define specific group id",
"jsDoc": "/**\n * allows developer to define specific group id\n */",
"type": "string"
},
{
"name": "providerUpdateCallback",
"type": "any"
},
{
"name": "handleWindowClick",
"type": "any"
},
{
"name": "task",
"type": "string"
},
{
"name": "isLoading",
"type": "TemplateResult | null"
}
],
"cssProperties": [
{
"name": "--tasks-header-padding",
"description": "Tasks header padding",
"type": "String"
},
{
"name": "--tasks-header-margin",
"description": "Tasks header margin",
"type": "String"
},
{
"name": "--tasks-title-padding",
"description": "Tasks title padding",
"type": "String"
},
{
"name": "--tasks-plan-title-font-size",
"description": "Tasks plan title font size",
"type": "Length"
},
{
"name": "--tasks-plan-title-padding",
"description": "Tasks plan title padding",
"type": "String"
},
{
"name": "--tasks-new-button-width",
"description": "Tasks new button width",
"type": "String"
},
{
"name": "--tasks-new-button-height",
"description": "Tasks new button height",
"type": "Length"
},
{
"name": "--tasks-new-button-color",
"description": "Tasks new button color",
"type": "Color"
},
{
"name": "--tasks-new-button-background",
"description": "Tasks new button background",
"type": "String"
},
{
"name": "--tasks-new-button-border",