-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomponents.ts
More file actions
3641 lines (3370 loc) · 121 KB
/
components.ts
File metadata and controls
3641 lines (3370 loc) · 121 KB
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
"use client";
/**
* This file was automatically generated by the Stencil React Output Target.
* Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
*/
/* eslint-disable */
import {
type AdditionalParticipant,
type BookedEventInfo,
type CONFIGURATION_EVENT_TYPE,
type Configuration,
type CreateGroupEventFormState,
type DropdownOption,
type GroupConfiguration,
type GroupEvent,
type GroupEventAPIData,
type ImportGroupEventDetails,
type InputDropdownCustomEvent,
type InputImageUrlCustomEvent,
type Notification,
type NylasAdditionalParticipantsCustomEvent,
type NylasBookedEventCardCustomEvent,
type NylasBookingCalendarPickerCustomEvent,
type NylasBookingConfirmationRedirectCustomEvent,
type NylasBookingConfirmationTypeCustomEvent,
type NylasBookingFormCustomEvent,
type NylasBufferTimeCustomEvent,
type NylasCalendarPickerCustomEvent,
type NylasCancelBookingFormCustomEvent,
type NylasCancelledEventCardCustomEvent,
type NylasConfirmationEmailCustomEvent,
type NylasConfirmedEventCardCustomEvent,
type NylasCustomEventSlugCustomEvent,
type NylasCustomizeBookingSettingsCustomEvent,
type NylasDatePickerCustomEvent,
type NylasDisableEmailsCustomEvent,
type NylasEditorTabsCustomEvent,
type NylasEditorTabsGroupCustomEvent,
type NylasEventCalendarCustomEvent,
type NylasEventCapacityCustomEvent,
type NylasListConfigurationsCustomEvent,
type NylasNotetakerConfigCustomEvent,
type NylasOrganizerConfirmationCardCustomEvent,
type NylasPageNameCustomEvent,
type NylasPageStylingCustomEvent,
type NylasReminderEmailsCustomEvent,
type NylasSchedulerBookingDataWithFlatFields,
type NylasSchedulerEditorCustomEvent,
type NylasSchedulerErrorResponse,
type NylasSchedulerResponse,
type NylasSchedulingCustomEvent,
type NylasSchedulingMethodCustomEvent,
type NylasSelectEventTypeCustomEvent,
type NylasTimeslotPickerCustomEvent,
type RecurrenceDeleteOption,
type RecurrenceUpdateOption,
type SchedulerEventDetail,
type SchedulerGroupEventDetail,
type SelectDropdownCustomEvent,
type Timeslot,
type UISettingsResponse,
} from "@nylas/web-elements";
import {
AddCircleIcon as AddCircleIconElement,
defineCustomElement as defineAddCircleIcon,
} from "@nylas/web-elements/dist/components/add-circle-icon.js";
import {
ArchiveIcon as ArchiveIconElement,
defineCustomElement as defineArchiveIcon,
} from "@nylas/web-elements/dist/components/archive-icon.js";
import {
ArrowIcon as ArrowIconElement,
defineCustomElement as defineArrowIcon,
} from "@nylas/web-elements/dist/components/arrow-icon.js";
import {
BoldIcon as BoldIconElement,
defineCustomElement as defineBoldIcon,
} from "@nylas/web-elements/dist/components/bold-icon.js";
import {
ButtonComponent as ButtonComponentElement,
defineCustomElement as defineButtonComponent,
} from "@nylas/web-elements/dist/components/button-component.js";
import {
CalendarAgendaFillIcon as CalendarAgendaFillIconElement,
defineCustomElement as defineCalendarAgendaFillIcon,
} from "@nylas/web-elements/dist/components/calendar-agenda-fill-icon.js";
import {
CalendarAgendaIcon as CalendarAgendaIconElement,
defineCustomElement as defineCalendarAgendaIcon,
} from "@nylas/web-elements/dist/components/calendar-agenda-icon.js";
import {
CalendarCancelIcon as CalendarCancelIconElement,
defineCustomElement as defineCalendarCancelIcon,
} from "@nylas/web-elements/dist/components/calendar-cancel-icon.js";
import {
CalendarCheckIcon as CalendarCheckIconElement,
defineCustomElement as defineCalendarCheckIcon,
} from "@nylas/web-elements/dist/components/calendar-check-icon.js";
import {
CalendarIcon as CalendarIconElement,
defineCustomElement as defineCalendarIcon,
} from "@nylas/web-elements/dist/components/calendar-icon.js";
import {
CalendarInfoIcon as CalendarInfoIconElement,
defineCustomElement as defineCalendarInfoIcon,
} from "@nylas/web-elements/dist/components/calendar-info-icon.js";
import {
CalendarPatternsIcon as CalendarPatternsIconElement,
defineCustomElement as defineCalendarPatternsIcon,
} from "@nylas/web-elements/dist/components/calendar-patterns-icon.js";
import {
CheckboxComponent as CheckboxComponentElement,
defineCustomElement as defineCheckboxComponent,
} from "@nylas/web-elements/dist/components/checkbox-component.js";
import {
CheckboxGroup as CheckboxGroupElement,
defineCustomElement as defineCheckboxGroup,
} from "@nylas/web-elements/dist/components/checkbox-group.js";
import {
CheckmarkCircleIcon as CheckmarkCircleIconElement,
defineCustomElement as defineCheckmarkCircleIcon,
} from "@nylas/web-elements/dist/components/checkmark-circle-icon.js";
import {
CheckmarkIcon as CheckmarkIconElement,
defineCustomElement as defineCheckmarkIcon,
} from "@nylas/web-elements/dist/components/checkmark-icon.js";
import {
ChevronIcon as ChevronIconElement,
defineCustomElement as defineChevronIcon,
} from "@nylas/web-elements/dist/components/chevron-icon.js";
import {
ClockIcon as ClockIconElement,
defineCustomElement as defineClockIcon,
} from "@nylas/web-elements/dist/components/clock-icon.js";
import {
CloseIcon as CloseIconElement,
defineCustomElement as defineCloseIcon,
} from "@nylas/web-elements/dist/components/close-icon.js";
import {
CopyIcon as CopyIconElement,
defineCustomElement as defineCopyIcon,
} from "@nylas/web-elements/dist/components/copy-icon.js";
import {
DeleteIcon as DeleteIconElement,
defineCustomElement as defineDeleteIcon,
} from "@nylas/web-elements/dist/components/delete-icon.js";
import {
DocumentRefreshIcon as DocumentRefreshIconElement,
defineCustomElement as defineDocumentRefreshIcon,
} from "@nylas/web-elements/dist/components/document-refresh-icon.js";
import {
DragableIcon as DragableIconElement,
defineCustomElement as defineDragableIcon,
} from "@nylas/web-elements/dist/components/dragable-icon.js";
import {
EditIcon as EditIconElement,
defineCustomElement as defineEditIcon,
} from "@nylas/web-elements/dist/components/edit-icon.js";
import {
EnvelopeFillIcon as EnvelopeFillIconElement,
defineCustomElement as defineEnvelopeFillIcon,
} from "@nylas/web-elements/dist/components/envelope-fill-icon.js";
import {
EnvelopeIcon as EnvelopeIconElement,
defineCustomElement as defineEnvelopeIcon,
} from "@nylas/web-elements/dist/components/envelope-icon.js";
import {
EyeIcon as EyeIconElement,
defineCustomElement as defineEyeIcon,
} from "@nylas/web-elements/dist/components/eye-icon.js";
import {
FeedbackIcon as FeedbackIconElement,
defineCustomElement as defineFeedbackIcon,
} from "@nylas/web-elements/dist/components/feedback-icon.js";
import {
FlowIcon as FlowIconElement,
defineCustomElement as defineFlowIcon,
} from "@nylas/web-elements/dist/components/flow-icon.js";
import {
FolderIcon as FolderIconElement,
defineCustomElement as defineFolderIcon,
} from "@nylas/web-elements/dist/components/folder-icon.js";
import {
ForwardIcon as ForwardIconElement,
defineCustomElement as defineForwardIcon,
} from "@nylas/web-elements/dist/components/forward-icon.js";
import {
GlobeIcon as GlobeIconElement,
defineCustomElement as defineGlobeIcon,
} from "@nylas/web-elements/dist/components/globe-icon.js";
import {
GoogleLogoIcon as GoogleLogoIconElement,
defineCustomElement as defineGoogleLogoIcon,
} from "@nylas/web-elements/dist/components/google-logo-icon.js";
import {
GoogleMeetIcon as GoogleMeetIconElement,
defineCustomElement as defineGoogleMeetIcon,
} from "@nylas/web-elements/dist/components/google-meet-icon.js";
import {
InboxIcon as InboxIconElement,
defineCustomElement as defineInboxIcon,
} from "@nylas/web-elements/dist/components/inbox-icon.js";
import {
InfoIcon as InfoIconElement,
defineCustomElement as defineInfoIcon,
} from "@nylas/web-elements/dist/components/info-icon.js";
import {
InputColorPicker as InputColorPickerElement,
defineCustomElement as defineInputColorPicker,
} from "@nylas/web-elements/dist/components/input-color-picker.js";
import {
InputComponent as InputComponentElement,
defineCustomElement as defineInputComponent,
} from "@nylas/web-elements/dist/components/input-component.js";
import {
InputDropdown as InputDropdownElement,
defineCustomElement as defineInputDropdown,
} from "@nylas/web-elements/dist/components/input-dropdown.js";
import {
InputImageUrl as InputImageUrlElement,
defineCustomElement as defineInputImageUrl,
} from "@nylas/web-elements/dist/components/input-image-url.js";
import {
ItalicIcon as ItalicIconElement,
defineCustomElement as defineItalicIcon,
} from "@nylas/web-elements/dist/components/italic-icon.js";
import {
LoadingIcon as LoadingIconElement,
defineCustomElement as defineLoadingIcon,
} from "@nylas/web-elements/dist/components/loading-icon.js";
import {
LocationIcon as LocationIconElement,
defineCustomElement as defineLocationIcon,
} from "@nylas/web-elements/dist/components/location-icon.js";
import {
LocationOffIcon as LocationOffIconElement,
defineCustomElement as defineLocationOffIcon,
} from "@nylas/web-elements/dist/components/location-off-icon.js";
import {
MicrosoftLogoIcon as MicrosoftLogoIconElement,
defineCustomElement as defineMicrosoftLogoIcon,
} from "@nylas/web-elements/dist/components/microsoft-logo-icon.js";
import {
MicrosoftTeamsIcon as MicrosoftTeamsIconElement,
defineCustomElement as defineMicrosoftTeamsIcon,
} from "@nylas/web-elements/dist/components/microsoft-teams-icon.js";
import {
MultiSelectDropdown as MultiSelectDropdownElement,
defineCustomElement as defineMultiSelectDropdown,
} from "@nylas/web-elements/dist/components/multi-select-dropdown.js";
import {
NylasAdditionalParticipants as NylasAdditionalParticipantsElement,
defineCustomElement as defineNylasAdditionalParticipants,
} from "@nylas/web-elements/dist/components/nylas-additional-participants.js";
import {
NylasAvailabilityPicker as NylasAvailabilityPickerElement,
defineCustomElement as defineNylasAvailabilityPicker,
} from "@nylas/web-elements/dist/components/nylas-availability-picker.js";
import {
NylasBookedEventCard as NylasBookedEventCardElement,
defineCustomElement as defineNylasBookedEventCard,
} from "@nylas/web-elements/dist/components/nylas-booked-event-card.js";
import {
NylasBookingCalendarPicker as NylasBookingCalendarPickerElement,
defineCustomElement as defineNylasBookingCalendarPicker,
} from "@nylas/web-elements/dist/components/nylas-booking-calendar-picker.js";
import {
NylasBookingConfirmationRedirect as NylasBookingConfirmationRedirectElement,
defineCustomElement as defineNylasBookingConfirmationRedirect,
} from "@nylas/web-elements/dist/components/nylas-booking-confirmation-redirect.js";
import {
NylasBookingConfirmationType as NylasBookingConfirmationTypeElement,
defineCustomElement as defineNylasBookingConfirmationType,
} from "@nylas/web-elements/dist/components/nylas-booking-confirmation-type.js";
import {
NylasBookingFormConfig as NylasBookingFormConfigElement,
defineCustomElement as defineNylasBookingFormConfig,
} from "@nylas/web-elements/dist/components/nylas-booking-form-config.js";
import {
NylasBookingForm as NylasBookingFormElement,
defineCustomElement as defineNylasBookingForm,
} from "@nylas/web-elements/dist/components/nylas-booking-form.js";
import {
NylasBufferTime as NylasBufferTimeElement,
defineCustomElement as defineNylasBufferTime,
} from "@nylas/web-elements/dist/components/nylas-buffer-time.js";
import {
NylasCalendarPicker as NylasCalendarPickerElement,
defineCustomElement as defineNylasCalendarPicker,
} from "@nylas/web-elements/dist/components/nylas-calendar-picker.js";
import {
NylasCancelBookingForm as NylasCancelBookingFormElement,
defineCustomElement as defineNylasCancelBookingForm,
} from "@nylas/web-elements/dist/components/nylas-cancel-booking-form.js";
import {
NylasCancellationPolicy as NylasCancellationPolicyElement,
defineCustomElement as defineNylasCancellationPolicy,
} from "@nylas/web-elements/dist/components/nylas-cancellation-policy.js";
import {
NylasCancelledEventCard as NylasCancelledEventCardElement,
defineCustomElement as defineNylasCancelledEventCard,
} from "@nylas/web-elements/dist/components/nylas-cancelled-event-card.js";
import {
NylasConfirmationEmail as NylasConfirmationEmailElement,
defineCustomElement as defineNylasConfirmationEmail,
} from "@nylas/web-elements/dist/components/nylas-confirmation-email.js";
import {
NylasConfirmedEventCard as NylasConfirmedEventCardElement,
defineCustomElement as defineNylasConfirmedEventCard,
} from "@nylas/web-elements/dist/components/nylas-confirmed-event-card.js";
import {
NylasConnectedCalendars as NylasConnectedCalendarsElement,
defineCustomElement as defineNylasConnectedCalendars,
} from "@nylas/web-elements/dist/components/nylas-connected-calendars.js";
import {
NylasCustomBookingFlow as NylasCustomBookingFlowElement,
defineCustomElement as defineNylasCustomBookingFlow,
} from "@nylas/web-elements/dist/components/nylas-custom-booking-flow.js";
import {
NylasCustomEventSlug as NylasCustomEventSlugElement,
defineCustomElement as defineNylasCustomEventSlug,
} from "@nylas/web-elements/dist/components/nylas-custom-event-slug.js";
import {
NylasCustomizeBookingSettings as NylasCustomizeBookingSettingsElement,
defineCustomElement as defineNylasCustomizeBookingSettings,
} from "@nylas/web-elements/dist/components/nylas-customize-booking-settings.js";
import {
NylasDateComponent as NylasDateComponentElement,
defineCustomElement as defineNylasDateComponent,
} from "@nylas/web-elements/dist/components/nylas-date-component.js";
import {
NylasDatePicker as NylasDatePickerElement,
defineCustomElement as defineNylasDatePicker,
} from "@nylas/web-elements/dist/components/nylas-date-picker.js";
import {
NylasDisableEmails as NylasDisableEmailsElement,
defineCustomElement as defineNylasDisableEmails,
} from "@nylas/web-elements/dist/components/nylas-disable-emails.js";
import {
NylasEditorTabsGroup as NylasEditorTabsGroupElement,
defineCustomElement as defineNylasEditorTabsGroup,
} from "@nylas/web-elements/dist/components/nylas-editor-tabs-group.js";
import {
NylasEditorTabs as NylasEditorTabsElement,
defineCustomElement as defineNylasEditorTabs,
} from "@nylas/web-elements/dist/components/nylas-editor-tabs.js";
import {
NylasEventCalendar as NylasEventCalendarElement,
defineCustomElement as defineNylasEventCalendar,
} from "@nylas/web-elements/dist/components/nylas-event-calendar.js";
import {
NylasEventCapacity as NylasEventCapacityElement,
defineCustomElement as defineNylasEventCapacity,
} from "@nylas/web-elements/dist/components/nylas-event-capacity.js";
import {
NylasEventDescription as NylasEventDescriptionElement,
defineCustomElement as defineNylasEventDescription,
} from "@nylas/web-elements/dist/components/nylas-event-description.js";
import {
NylasEventDuration as NylasEventDurationElement,
defineCustomElement as defineNylasEventDuration,
} from "@nylas/web-elements/dist/components/nylas-event-duration.js";
import {
NylasEventInfo as NylasEventInfoElement,
defineCustomElement as defineNylasEventInfo,
} from "@nylas/web-elements/dist/components/nylas-event-info.js";
import {
NylasEventLimits as NylasEventLimitsElement,
defineCustomElement as defineNylasEventLimits,
} from "@nylas/web-elements/dist/components/nylas-event-limits.js";
import {
NylasEventLocation as NylasEventLocationElement,
defineCustomElement as defineNylasEventLocation,
} from "@nylas/web-elements/dist/components/nylas-event-location.js";
import {
NylasEventTimeslot as NylasEventTimeslotElement,
defineCustomElement as defineNylasEventTimeslot,
} from "@nylas/web-elements/dist/components/nylas-event-timeslot.js";
import {
NylasEventTitle as NylasEventTitleElement,
defineCustomElement as defineNylasEventTitle,
} from "@nylas/web-elements/dist/components/nylas-event-title.js";
import {
NylasFeedbackForm as NylasFeedbackFormElement,
defineCustomElement as defineNylasFeedbackForm,
} from "@nylas/web-elements/dist/components/nylas-feedback-form.js";
import {
NylasFormCard as NylasFormCardElement,
defineCustomElement as defineNylasFormCard,
} from "@nylas/web-elements/dist/components/nylas-form-card.js";
import {
NylasLimitFutureBookings as NylasLimitFutureBookingsElement,
defineCustomElement as defineNylasLimitFutureBookings,
} from "@nylas/web-elements/dist/components/nylas-limit-future-bookings.js";
import {
NylasListConfigurations as NylasListConfigurationsElement,
defineCustomElement as defineNylasListConfigurations,
} from "@nylas/web-elements/dist/components/nylas-list-configurations.js";
import {
NylasLocaleSwitch as NylasLocaleSwitchElement,
defineCustomElement as defineNylasLocaleSwitch,
} from "@nylas/web-elements/dist/components/nylas-locale-switch.js";
import {
NylasLogo as NylasLogoElement,
defineCustomElement as defineNylasLogo,
} from "@nylas/web-elements/dist/components/nylas-logo.js";
import {
NylasMinBookingNotice as NylasMinBookingNoticeElement,
defineCustomElement as defineNylasMinBookingNotice,
} from "@nylas/web-elements/dist/components/nylas-min-booking-notice.js";
import {
NylasMinCancellationNotice as NylasMinCancellationNoticeElement,
defineCustomElement as defineNylasMinCancellationNotice,
} from "@nylas/web-elements/dist/components/nylas-min-cancellation-notice.js";
import {
NylasNotetakerConfig as NylasNotetakerConfigElement,
defineCustomElement as defineNylasNotetakerConfig,
} from "@nylas/web-elements/dist/components/nylas-notetaker-config.js";
import {
NylasNotification as NylasNotificationElement,
defineCustomElement as defineNylasNotification,
} from "@nylas/web-elements/dist/components/nylas-notification.js";
import {
NylasOnlySpecificTimeAvailability as NylasOnlySpecificTimeAvailabilityElement,
defineCustomElement as defineNylasOnlySpecificTimeAvailability,
} from "@nylas/web-elements/dist/components/nylas-only-specific-time-availability.js";
import {
NylasOrganizerConfirmationCard as NylasOrganizerConfirmationCardElement,
defineCustomElement as defineNylasOrganizerConfirmationCard,
} from "@nylas/web-elements/dist/components/nylas-organizer-confirmation-card.js";
import {
NylasPageName as NylasPageNameElement,
defineCustomElement as defineNylasPageName,
} from "@nylas/web-elements/dist/components/nylas-page-name.js";
import {
NylasPageStyling as NylasPageStylingElement,
defineCustomElement as defineNylasPageStyling,
} from "@nylas/web-elements/dist/components/nylas-page-styling.js";
import {
NylasParticipantBookingCalendars as NylasParticipantBookingCalendarsElement,
defineCustomElement as defineNylasParticipantBookingCalendars,
} from "@nylas/web-elements/dist/components/nylas-participant-booking-calendars.js";
import {
NylasParticipantsCustomAvailability as NylasParticipantsCustomAvailabilityElement,
defineCustomElement as defineNylasParticipantsCustomAvailability,
} from "@nylas/web-elements/dist/components/nylas-participants-custom-availability.js";
import {
NylasReminderEmails as NylasReminderEmailsElement,
defineCustomElement as defineNylasReminderEmails,
} from "@nylas/web-elements/dist/components/nylas-reminder-emails.js";
import {
NylasReminderTime as NylasReminderTimeElement,
defineCustomElement as defineNylasReminderTime,
} from "@nylas/web-elements/dist/components/nylas-reminder-time.js";
import {
NylasSchedulerEditor as NylasSchedulerEditorElement,
defineCustomElement as defineNylasSchedulerEditor,
} from "@nylas/web-elements/dist/components/nylas-scheduler-editor.js";
import {
NylasSchedulingMethod as NylasSchedulingMethodElement,
defineCustomElement as defineNylasSchedulingMethod,
} from "@nylas/web-elements/dist/components/nylas-scheduling-method.js";
import {
NylasScheduling as NylasSchedulingElement,
defineCustomElement as defineNylasScheduling,
} from "@nylas/web-elements/dist/components/nylas-scheduling.js";
import {
NylasSelectEventType as NylasSelectEventTypeElement,
defineCustomElement as defineNylasSelectEventType,
} from "@nylas/web-elements/dist/components/nylas-select-event-type.js";
import {
NylasSelectedEventCard as NylasSelectedEventCardElement,
defineCustomElement as defineNylasSelectedEventCard,
} from "@nylas/web-elements/dist/components/nylas-selected-event-card.js";
import {
NylasSpecificTimeAvailabilityPicker as NylasSpecificTimeAvailabilityPickerElement,
defineCustomElement as defineNylasSpecificTimeAvailabilityPicker,
} from "@nylas/web-elements/dist/components/nylas-specific-time-availability-picker.js";
import {
NylasTimeWindowPicker as NylasTimeWindowPickerElement,
defineCustomElement as defineNylasTimeWindowPicker,
} from "@nylas/web-elements/dist/components/nylas-time-window-picker.js";
import {
NylasTimeslotInterval as NylasTimeslotIntervalElement,
defineCustomElement as defineNylasTimeslotInterval,
} from "@nylas/web-elements/dist/components/nylas-timeslot-interval.js";
import {
NylasTimeslotPicker as NylasTimeslotPickerElement,
defineCustomElement as defineNylasTimeslotPicker,
} from "@nylas/web-elements/dist/components/nylas-timeslot-picker.js";
import {
PaintbrushFillIcon as PaintbrushFillIconElement,
defineCustomElement as definePaintbrushFillIcon,
} from "@nylas/web-elements/dist/components/paintbrush-fill-icon.js";
import {
PaintbrushIcon as PaintbrushIconElement,
defineCustomElement as definePaintbrushIcon,
} from "@nylas/web-elements/dist/components/paintbrush-icon.js";
import {
PeopleIcon as PeopleIconElement,
defineCustomElement as definePeopleIcon,
} from "@nylas/web-elements/dist/components/people-icon.js";
import {
PersonClipboardIcon as PersonClipboardIconElement,
defineCustomElement as definePersonClipboardIcon,
} from "@nylas/web-elements/dist/components/person-clipboard-icon.js";
import {
PersonIcon as PersonIconElement,
defineCustomElement as definePersonIcon,
} from "@nylas/web-elements/dist/components/person-icon.js";
import {
PlayIcon as PlayIconElement,
defineCustomElement as definePlayIcon,
} from "@nylas/web-elements/dist/components/play-icon.js";
import {
PlusIcon as PlusIconElement,
defineCustomElement as definePlusIcon,
} from "@nylas/web-elements/dist/components/plus-icon.js";
import {
RadioButtonGroup as RadioButtonGroupElement,
defineCustomElement as defineRadioButtonGroup,
} from "@nylas/web-elements/dist/components/radio-button-group.js";
import {
RefreshIcon as RefreshIconElement,
defineCustomElement as defineRefreshIcon,
} from "@nylas/web-elements/dist/components/refresh-icon.js";
import {
ReplyAllIcon as ReplyAllIconElement,
defineCustomElement as defineReplyAllIcon,
} from "@nylas/web-elements/dist/components/reply-all-icon.js";
import {
ReplyIcon as ReplyIconElement,
defineCustomElement as defineReplyIcon,
} from "@nylas/web-elements/dist/components/reply-icon.js";
import {
SearchIcon as SearchIconElement,
defineCustomElement as defineSearchIcon,
} from "@nylas/web-elements/dist/components/search-icon.js";
import {
SelectDropdown as SelectDropdownElement,
defineCustomElement as defineSelectDropdown,
} from "@nylas/web-elements/dist/components/select-dropdown.js";
import {
SentIcon as SentIconElement,
defineCustomElement as defineSentIcon,
} from "@nylas/web-elements/dist/components/sent-icon.js";
import {
SpamIcon as SpamIconElement,
defineCustomElement as defineSpamIcon,
} from "@nylas/web-elements/dist/components/spam-icon.js";
import {
StarIcon as StarIconElement,
defineCustomElement as defineStarIcon,
} from "@nylas/web-elements/dist/components/star-icon.js";
import {
StopIcon as StopIconElement,
defineCustomElement as defineStopIcon,
} from "@nylas/web-elements/dist/components/stop-icon.js";
import {
TextareaComponent as TextareaComponentElement,
defineCustomElement as defineTextareaComponent,
} from "@nylas/web-elements/dist/components/textarea-component.js";
import {
TimePeriodSelector as TimePeriodSelectorElement,
defineCustomElement as defineTimePeriodSelector,
} from "@nylas/web-elements/dist/components/time-period-selector.js";
import {
ToggleSwitch as ToggleSwitchElement,
defineCustomElement as defineToggleSwitch,
} from "@nylas/web-elements/dist/components/toggle-switch.js";
import {
TooltipComponent as TooltipComponentElement,
defineCustomElement as defineTooltipComponent,
} from "@nylas/web-elements/dist/components/tooltip-component.js";
import {
TranslateIcon as TranslateIconElement,
defineCustomElement as defineTranslateIcon,
} from "@nylas/web-elements/dist/components/translate-icon.js";
import {
TrashFillIcon as TrashFillIconElement,
defineCustomElement as defineTrashFillIcon,
} from "@nylas/web-elements/dist/components/trash-fill-icon.js";
import {
TrashIcon as TrashIconElement,
defineCustomElement as defineTrashIcon,
} from "@nylas/web-elements/dist/components/trash-icon.js";
import {
UnderlineIcon as UnderlineIconElement,
defineCustomElement as defineUnderlineIcon,
} from "@nylas/web-elements/dist/components/underline-icon.js";
import {
WarningIcon as WarningIconElement,
defineCustomElement as defineWarningIcon,
} from "@nylas/web-elements/dist/components/warning-icon.js";
import {
ZoomIcon as ZoomIconElement,
defineCustomElement as defineZoomIcon,
} from "@nylas/web-elements/dist/components/zoom-icon.js";
import type {
EventName,
StencilReactComponent,
} from "@stencil/react-output-target/runtime";
import { createComponent } from "@stencil/react-output-target/runtime";
import React from "react";
export type AddCircleIconEvents = NonNullable<unknown>;
export const AddCircleIcon: StencilReactComponent<
AddCircleIconElement,
AddCircleIconEvents
> = /*@__PURE__*/ createComponent<AddCircleIconElement, AddCircleIconEvents>({
tagName: "add-circle-icon",
elementClass: AddCircleIconElement,
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
react: React,
events: {} as AddCircleIconEvents,
defineCustomElement: defineAddCircleIcon,
});
export type ArchiveIconEvents = NonNullable<unknown>;
export const ArchiveIcon: StencilReactComponent<
ArchiveIconElement,
ArchiveIconEvents
> = /*@__PURE__*/ createComponent<ArchiveIconElement, ArchiveIconEvents>({
tagName: "archive-icon",
elementClass: ArchiveIconElement,
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
react: React,
events: {} as ArchiveIconEvents,
defineCustomElement: defineArchiveIcon,
});
export type ArrowIconEvents = NonNullable<unknown>;
export const ArrowIcon: StencilReactComponent<
ArrowIconElement,
ArrowIconEvents
> = /*@__PURE__*/ createComponent<ArrowIconElement, ArrowIconEvents>({
tagName: "arrow-icon",
elementClass: ArrowIconElement,
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
react: React,
events: {} as ArrowIconEvents,
defineCustomElement: defineArrowIcon,
});
export type BoldIconEvents = NonNullable<unknown>;
export const BoldIcon: StencilReactComponent<BoldIconElement, BoldIconEvents> =
/*@__PURE__*/ createComponent<BoldIconElement, BoldIconEvents>({
tagName: "bold-icon",
elementClass: BoldIconElement,
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
react: React,
events: {} as BoldIconEvents,
defineCustomElement: defineBoldIcon,
});
export type ButtonComponentEvents = NonNullable<unknown>;
export const ButtonComponent: StencilReactComponent<
ButtonComponentElement,
ButtonComponentEvents
> = /*@__PURE__*/ createComponent<
ButtonComponentElement,
ButtonComponentEvents
>({
tagName: "button-component",
elementClass: ButtonComponentElement,
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
react: React,
events: {} as ButtonComponentEvents,
defineCustomElement: defineButtonComponent,
});
export type CalendarAgendaFillIconEvents = NonNullable<unknown>;
export const CalendarAgendaFillIcon: StencilReactComponent<
CalendarAgendaFillIconElement,
CalendarAgendaFillIconEvents
> = /*@__PURE__*/ createComponent<
CalendarAgendaFillIconElement,
CalendarAgendaFillIconEvents
>({
tagName: "calendar-agenda-fill-icon",
elementClass: CalendarAgendaFillIconElement,
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
react: React,
events: {} as CalendarAgendaFillIconEvents,
defineCustomElement: defineCalendarAgendaFillIcon,
});
export type CalendarAgendaIconEvents = NonNullable<unknown>;
export const CalendarAgendaIcon: StencilReactComponent<
CalendarAgendaIconElement,
CalendarAgendaIconEvents
> = /*@__PURE__*/ createComponent<
CalendarAgendaIconElement,
CalendarAgendaIconEvents
>({
tagName: "calendar-agenda-icon",
elementClass: CalendarAgendaIconElement,
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
react: React,
events: {} as CalendarAgendaIconEvents,
defineCustomElement: defineCalendarAgendaIcon,
});
export type CalendarCancelIconEvents = NonNullable<unknown>;
export const CalendarCancelIcon: StencilReactComponent<
CalendarCancelIconElement,
CalendarCancelIconEvents
> = /*@__PURE__*/ createComponent<
CalendarCancelIconElement,
CalendarCancelIconEvents
>({
tagName: "calendar-cancel-icon",
elementClass: CalendarCancelIconElement,
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
react: React,
events: {} as CalendarCancelIconEvents,
defineCustomElement: defineCalendarCancelIcon,
});
export type CalendarCheckIconEvents = NonNullable<unknown>;
export const CalendarCheckIcon: StencilReactComponent<
CalendarCheckIconElement,
CalendarCheckIconEvents
> = /*@__PURE__*/ createComponent<
CalendarCheckIconElement,
CalendarCheckIconEvents
>({
tagName: "calendar-check-icon",
elementClass: CalendarCheckIconElement,
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
react: React,
events: {} as CalendarCheckIconEvents,
defineCustomElement: defineCalendarCheckIcon,
});
export type CalendarIconEvents = NonNullable<unknown>;
export const CalendarIcon: StencilReactComponent<
CalendarIconElement,
CalendarIconEvents
> = /*@__PURE__*/ createComponent<CalendarIconElement, CalendarIconEvents>({
tagName: "calendar-icon",
elementClass: CalendarIconElement,
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
react: React,
events: {} as CalendarIconEvents,
defineCustomElement: defineCalendarIcon,
});
export type CalendarInfoIconEvents = NonNullable<unknown>;
export const CalendarInfoIcon: StencilReactComponent<
CalendarInfoIconElement,
CalendarInfoIconEvents
> = /*@__PURE__*/ createComponent<
CalendarInfoIconElement,
CalendarInfoIconEvents
>({
tagName: "calendar-info-icon",
elementClass: CalendarInfoIconElement,
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
react: React,
events: {} as CalendarInfoIconEvents,
defineCustomElement: defineCalendarInfoIcon,
});
export type CalendarPatternsIconEvents = NonNullable<unknown>;
export const CalendarPatternsIcon: StencilReactComponent<
CalendarPatternsIconElement,
CalendarPatternsIconEvents
> = /*@__PURE__*/ createComponent<
CalendarPatternsIconElement,
CalendarPatternsIconEvents
>({
tagName: "calendar-patterns-icon",
elementClass: CalendarPatternsIconElement,
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
react: React,
events: {} as CalendarPatternsIconEvents,
defineCustomElement: defineCalendarPatternsIcon,
});
export type CheckboxComponentEvents = {
onNylasFormCheckboxToggled: EventName<
CustomEvent<{
checked: boolean;
name: string;
label: string;
}>
>;
};
export const CheckboxComponent: StencilReactComponent<
CheckboxComponentElement,
CheckboxComponentEvents
> = /*@__PURE__*/ createComponent<
CheckboxComponentElement,
CheckboxComponentEvents
>({
tagName: "checkbox-component",
elementClass: CheckboxComponentElement,
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
react: React,
events: {
onNylasFormCheckboxToggled: "nylasFormCheckboxToggled",
} as CheckboxComponentEvents,
defineCustomElement: defineCheckboxComponent,
});
export type CheckboxGroupEvents = {
onNylasCheckboxGroupChanged: EventName<
CustomEvent<{
selectedValues: string[];
name: string;
}>
>;
};
export const CheckboxGroup: StencilReactComponent<
CheckboxGroupElement,
CheckboxGroupEvents
> = /*@__PURE__*/ createComponent<CheckboxGroupElement, CheckboxGroupEvents>({
tagName: "checkbox-group",
elementClass: CheckboxGroupElement,
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
react: React,
events: {
onNylasCheckboxGroupChanged: "nylasCheckboxGroupChanged",
} as CheckboxGroupEvents,
defineCustomElement: defineCheckboxGroup,
});
export type CheckmarkCircleIconEvents = NonNullable<unknown>;
export const CheckmarkCircleIcon: StencilReactComponent<
CheckmarkCircleIconElement,
CheckmarkCircleIconEvents
> = /*@__PURE__*/ createComponent<
CheckmarkCircleIconElement,
CheckmarkCircleIconEvents
>({
tagName: "checkmark-circle-icon",
elementClass: CheckmarkCircleIconElement,
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
react: React,
events: {} as CheckmarkCircleIconEvents,
defineCustomElement: defineCheckmarkCircleIcon,
});
export type CheckmarkIconEvents = NonNullable<unknown>;
export const CheckmarkIcon: StencilReactComponent<
CheckmarkIconElement,
CheckmarkIconEvents
> = /*@__PURE__*/ createComponent<CheckmarkIconElement, CheckmarkIconEvents>({
tagName: "checkmark-icon",
elementClass: CheckmarkIconElement,
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
react: React,
events: {} as CheckmarkIconEvents,
defineCustomElement: defineCheckmarkIcon,
});
export type ChevronIconEvents = NonNullable<unknown>;
export const ChevronIcon: StencilReactComponent<
ChevronIconElement,
ChevronIconEvents
> = /*@__PURE__*/ createComponent<ChevronIconElement, ChevronIconEvents>({
tagName: "chevron-icon",
elementClass: ChevronIconElement,
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
react: React,
events: {} as ChevronIconEvents,
defineCustomElement: defineChevronIcon,
});
export type ClockIconEvents = NonNullable<unknown>;
export const ClockIcon: StencilReactComponent<
ClockIconElement,
ClockIconEvents
> = /*@__PURE__*/ createComponent<ClockIconElement, ClockIconEvents>({
tagName: "clock-icon",
elementClass: ClockIconElement,
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
react: React,
events: {} as ClockIconEvents,
defineCustomElement: defineClockIcon,
});
export type CloseIconEvents = NonNullable<unknown>;
export const CloseIcon: StencilReactComponent<
CloseIconElement,
CloseIconEvents
> = /*@__PURE__*/ createComponent<CloseIconElement, CloseIconEvents>({
tagName: "close-icon",
elementClass: CloseIconElement,
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
react: React,
events: {} as CloseIconEvents,
defineCustomElement: defineCloseIcon,
});
export type CopyIconEvents = NonNullable<unknown>;
export const CopyIcon: StencilReactComponent<CopyIconElement, CopyIconEvents> =
/*@__PURE__*/ createComponent<CopyIconElement, CopyIconEvents>({
tagName: "copy-icon",
elementClass: CopyIconElement,
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
react: React,
events: {} as CopyIconEvents,
defineCustomElement: defineCopyIcon,
});
export type DeleteIconEvents = NonNullable<unknown>;
export const DeleteIcon: StencilReactComponent<
DeleteIconElement,
DeleteIconEvents
> = /*@__PURE__*/ createComponent<DeleteIconElement, DeleteIconEvents>({
tagName: "delete-icon",
elementClass: DeleteIconElement,
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
react: React,
events: {} as DeleteIconEvents,
defineCustomElement: defineDeleteIcon,
});
export type DocumentRefreshIconEvents = NonNullable<unknown>;
export const DocumentRefreshIcon: StencilReactComponent<
DocumentRefreshIconElement,
DocumentRefreshIconEvents
> = /*@__PURE__*/ createComponent<
DocumentRefreshIconElement,
DocumentRefreshIconEvents
>({
tagName: "document-refresh-icon",
elementClass: DocumentRefreshIconElement,
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
react: React,
events: {} as DocumentRefreshIconEvents,
defineCustomElement: defineDocumentRefreshIcon,
});
export type DragableIconEvents = NonNullable<unknown>;
export const DragableIcon: StencilReactComponent<
DragableIconElement,
DragableIconEvents
> = /*@__PURE__*/ createComponent<DragableIconElement, DragableIconEvents>({
tagName: "dragable-icon",
elementClass: DragableIconElement,
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
react: React,
events: {} as DragableIconEvents,
defineCustomElement: defineDragableIcon,
});
export type EditIconEvents = NonNullable<unknown>;
export const EditIcon: StencilReactComponent<EditIconElement, EditIconEvents> =
/*@__PURE__*/ createComponent<EditIconElement, EditIconEvents>({
tagName: "edit-icon",
elementClass: EditIconElement,
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
react: React,
events: {} as EditIconEvents,
defineCustomElement: defineEditIcon,
});
export type EnvelopeFillIconEvents = NonNullable<unknown>;
export const EnvelopeFillIcon: StencilReactComponent<
EnvelopeFillIconElement,
EnvelopeFillIconEvents
> = /*@__PURE__*/ createComponent<
EnvelopeFillIconElement,
EnvelopeFillIconEvents
>({
tagName: "envelope-fill-icon",
elementClass: EnvelopeFillIconElement,
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
react: React,