├── .env-sample ├── .eslintignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── request-for-comment.md ├── auto_assign.yml └── workflows │ ├── build-test-publish.yaml │ └── cancel.yaml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .npmignore ├── .nvmrc ├── .nycrc ├── .prettierignore ├── .prettierrc ├── .vscode ├── launch.json └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DOCUMENTATION.md ├── LICENSE ├── README.md ├── babel.config.json ├── bower.json ├── commons ├── .npmignore ├── package.json ├── src │ ├── components │ │ ├── ContactImage │ │ │ └── ContactImage.svelte │ │ ├── ErrorMessage.svelte │ │ ├── MessageBody.svelte │ │ ├── NError.svelte │ │ ├── Tooltip.svelte │ │ └── checkbox.scss │ ├── connections │ │ ├── accounts.ts │ │ ├── availability.ts │ │ ├── contacts.ts │ │ ├── events.ts │ │ ├── files.ts │ │ ├── folders.ts │ │ ├── labels.ts │ │ ├── manifest.ts │ │ ├── messages.ts │ │ ├── neural.ts │ │ └── threads.ts │ ├── constants │ │ ├── attachment-content-types.ts │ │ └── custom-fields.ts │ ├── define-component-patch.ts │ ├── enums │ │ ├── Availability.ts │ │ ├── Booking.ts │ │ ├── Events.ts │ │ └── Nylas.ts │ ├── index.ts │ ├── memoize.ts │ ├── methods │ │ ├── api.ts │ │ ├── colour.ts │ │ ├── component.ts │ │ ├── contact_strings.ts │ │ ├── convertDateTimeZone.ts │ │ ├── datetime.ts │ │ ├── isFileAnAttachment.ts │ │ └── participants.ts │ ├── store │ │ ├── accounts.ts │ │ ├── availability.ts │ │ ├── calendars.ts │ │ ├── consecutive-availability.ts │ │ ├── contact-avatar.ts │ │ ├── contacts.ts │ │ ├── conversations.ts │ │ ├── error.ts │ │ ├── events.ts │ │ ├── files.ts │ │ ├── folders.ts │ │ ├── labels.ts │ │ ├── mailbox.ts │ │ ├── manifest.ts │ │ └── messages.ts │ └── types │ │ ├── Availability.ts │ │ ├── Booking.ts │ │ ├── Composer.ts │ │ ├── Contacts.ts │ │ ├── ContactsSearch.ts │ │ ├── Events.ts │ │ ├── Global.d.ts │ │ ├── Nylas.ts │ │ └── ScheduleEditor.ts ├── tsconfig.json └── yarn.lock ├── components ├── agenda │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── bower.json │ ├── package.json │ ├── rollup.config.js │ ├── sample.png │ ├── src │ │ ├── Agenda.svelte │ │ ├── cypress.html │ │ ├── index.html │ │ ├── init.spec.js │ │ ├── main.ts │ │ ├── methods │ │ │ ├── position.ts │ │ │ └── time.ts │ │ ├── properties.json │ │ └── styles │ │ │ ├── agenda-themes.scss │ │ │ ├── agenda.scss │ │ │ └── theme.scss │ ├── tsconfig.json │ └── yarn.lock ├── availability │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── bower.json │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── Availability.svelte │ │ ├── assets │ │ │ ├── available.svg │ │ │ ├── left-arrow.svg │ │ │ ├── right-arrow.svg │ │ │ └── unavailable.svg │ │ ├── cypress.html │ │ ├── index.html │ │ ├── init.spec.js │ │ ├── main.ts │ │ ├── method │ │ │ ├── availabilityUtils.ts │ │ │ ├── openhours.ts │ │ │ └── slot.ts │ │ ├── properties.json │ │ ├── styles │ │ │ └── availability.scss │ │ └── test.js │ └── tsconfig.json ├── booking │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── bower.json │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── Booking.svelte │ │ ├── cypress.html │ │ ├── index.html │ │ ├── init.spec.js │ │ ├── main.ts │ │ └── styles │ │ │ └── booking.scss │ └── tsconfig.json ├── composer │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── bower.json │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── Composer.svelte │ │ ├── assets │ │ │ ├── aligned-left.svg │ │ │ ├── aligned-right.svg │ │ │ ├── attachment.svg │ │ │ ├── bold.svg │ │ │ ├── bullet.svg │ │ │ ├── centered.svg │ │ │ ├── close-rounded.svg │ │ │ ├── close.svg │ │ │ ├── dash.svg │ │ │ ├── drafts.svg │ │ │ ├── expand.svg │ │ │ ├── italic.svg │ │ │ ├── justified.svg │ │ │ ├── link.svg │ │ │ ├── list.svg │ │ │ ├── loading.svg │ │ │ ├── send-later.svg │ │ │ ├── send.svg │ │ │ └── underline.svg │ │ ├── components │ │ │ ├── AlertBar.svelte │ │ │ ├── Attachment.svelte │ │ │ ├── ContactsSearch.svelte │ │ │ ├── DatepickerModal.svelte │ │ │ └── HTMLEditor.svelte │ │ ├── composer.d.ts │ │ ├── cypress.html │ │ ├── index.html │ │ ├── init.spec.js │ │ ├── lib │ │ │ ├── format-date.ts │ │ │ ├── html-editor.ts │ │ │ ├── store.ts │ │ │ └── utils.ts │ │ ├── main.ts │ │ └── properties.json │ ├── themes │ │ ├── auto.css │ │ ├── dark-2.css │ │ ├── dark.css │ │ ├── light-2.css │ │ └── light.css │ └── tsconfig.json ├── contact-list │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── bower.json │ ├── lib │ │ └── sorting.ts │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── ContactList.svelte │ │ ├── cypress.html │ │ ├── default_photo.js │ │ ├── index.html │ │ ├── init.spec.js │ │ ├── main.ts │ │ ├── properties.json │ │ └── themes │ │ │ ├── theme-1.css │ │ │ ├── theme-2.css │ │ │ ├── theme-3.css │ │ │ ├── theme-4.css │ │ │ └── theme-5.css │ └── tsconfig.json ├── conversation │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── bower.json │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── Conversation.svelte │ │ ├── assets │ │ │ ├── send.svg │ │ │ └── toggle.svg │ │ ├── cypress.html │ │ ├── feedback.svg │ │ ├── index.html │ │ ├── init.spec.js │ │ ├── main.ts │ │ ├── properties.json │ │ └── test-data.js │ ├── tsconfig.json │ └── yarn.lock ├── datepicker │ ├── .npmignore │ ├── README.md │ ├── bower.json │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── Datepicker.svelte │ │ ├── assets │ │ │ └── chevron.svg │ │ ├── datepicker.d.ts │ │ ├── datepicker.html │ │ ├── main.ts │ │ └── variables.css │ └── tsconfig.json ├── email │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── bower.json │ ├── package.json │ ├── rollup.config.js │ ├── sample.png │ ├── src │ │ ├── Email.svelte │ │ ├── assets │ │ │ ├── arrow-line.svg │ │ │ ├── attachment.svg │ │ │ ├── chevron-down.svg │ │ │ ├── draft.svg │ │ │ ├── envelope-open-text.svg │ │ │ ├── envelope.svg │ │ │ ├── forward.svg │ │ │ ├── loading.svg │ │ │ ├── no-messages.svg │ │ │ ├── reply-all.svg │ │ │ ├── reply.svg │ │ │ └── trash-alt.svg │ │ ├── cypress.html │ │ ├── index.css │ │ ├── index.html │ │ ├── init.spec.js │ │ ├── main.ts │ │ ├── methods │ │ │ └── lib.ts │ │ ├── properties.json │ │ └── styles │ │ │ └── email.scss │ ├── themes │ │ ├── auto.css │ │ ├── dark.css │ │ └── light.css │ ├── tsconfig.json │ └── yarn.lock ├── mailbox │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── bower.json │ ├── package.json │ ├── rollup.config.js │ ├── sample.png │ ├── src │ │ ├── Mailbox.svelte │ │ ├── assets │ │ │ ├── arrow-line.svg │ │ │ ├── double-left-arrow.svg │ │ │ ├── double-right-arrow.svg │ │ │ ├── envelope-open-text.svg │ │ │ ├── envelope.svg │ │ │ ├── left-arrow.svg │ │ │ ├── loading.svg │ │ │ ├── right-arrow.svg │ │ │ └── trash-alt.svg │ │ ├── components │ │ │ └── PaginationNav.svelte │ │ ├── cypress.html │ │ ├── index.html │ │ ├── init.spec.js │ │ ├── main.ts │ │ ├── properties.json │ │ └── styles │ │ │ └── modal.scss │ ├── themes │ │ ├── auto.css │ │ ├── dark.css │ │ └── light.css │ ├── tsconfig.json │ └── yarn.lock ├── schedule-editor │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── docs │ │ └── configure-schedule-editor-id.png │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── ScheduleEditor.svelte │ │ ├── assets │ │ │ ├── checkmark-icon.svg │ │ │ ├── drag-icon.svg │ │ │ ├── expand.svg │ │ │ ├── pencil-icon.svg │ │ │ ├── plus-icon.svg │ │ │ └── trash-icon.svg │ │ ├── components │ │ │ ├── DragItemPlaceholder.svelte │ │ │ └── EditorSection.svelte │ │ ├── cypress.html │ │ ├── index.html │ │ ├── init.spec.js │ │ ├── main.ts │ │ ├── methods │ │ │ └── dom.ts │ │ └── styles │ │ │ ├── drag-item-placeholder.scss │ │ │ └── schedule-editor.scss │ └── tsconfig.json └── theming │ ├── .npmignore │ ├── animation.scss │ ├── bower.json │ ├── package.json │ ├── reset.scss │ ├── themes.scss │ └── variables.scss ├── cypress.json ├── cypress ├── fixtures │ ├── agenda │ │ ├── calendars │ │ │ └── calendarId.json │ │ ├── events.json │ │ └── manifest.json │ ├── composer │ │ ├── account.json │ │ ├── files │ │ │ ├── fileResponse.json │ │ │ ├── file_size_3.jpg │ │ │ ├── file_size_5.jpg │ │ │ └── tiny_text_file.txt │ │ └── manifest.json │ ├── contact-list │ │ ├── contactPictureResponse.json │ │ ├── contacts100.json │ │ ├── contactsWithPicture.json │ │ └── manifest.json │ ├── conversation │ │ ├── account.json │ │ ├── manifest.json │ │ ├── sendMessageResponse.json │ │ ├── testConversationThread.json │ │ └── threadsId.json │ ├── draftThread.json │ ├── email │ │ ├── account.json │ │ ├── files │ │ │ └── download.json │ │ ├── labels.json │ │ ├── manifest.json │ │ ├── messages │ │ │ ├── id.json │ │ │ ├── idWithImage.json │ │ │ ├── idWithMultipleSenders.json │ │ │ └── messageWithImageAttachment.json │ │ └── threads │ │ │ ├── id.json │ │ │ ├── idWithImage.json │ │ │ ├── idWithMultipleSenders.json │ │ │ └── threadWithImageAttachment.json │ ├── example.json │ ├── mailbox │ │ ├── account.json │ │ ├── labels.json │ │ ├── manifest.json │ │ ├── messages │ │ │ ├── id.json │ │ │ ├── idWithImage.json │ │ │ ├── idWithLastMessageFromSelf.json │ │ │ ├── idWithMultipleToParticipants.json │ │ │ └── messageForDraftThread.json │ │ └── threads │ │ │ ├── SAMPLE_1.json │ │ │ ├── SAMPLE_2.json │ │ │ ├── draftMessage1.json │ │ │ ├── draftMessage2.json │ │ │ ├── index.json │ │ │ ├── threadRegular.json │ │ │ ├── threadWithCalendarAttachments copy.json │ │ │ ├── threadWithCalendarAttachments.json │ │ │ ├── threadWithDraft.json │ │ │ ├── threadWithMessageThatDoesNotHaveFromOrToFields.json │ │ │ ├── threadWithMultipleToParticipants.json │ │ │ ├── threadWithlastMessageFromSelf.json │ │ │ ├── threadsWithCount.json │ │ │ └── threadsWithImage.json │ ├── threadsMock.json │ └── users.json ├── plugins │ └── index.js └── support │ ├── commands.js │ └── index.js ├── index.html ├── jest.config.js ├── lerna.json ├── mocks ├── mock-account.ts ├── mock-calendars.ts ├── mock-contacts.ts ├── mock-events.ts ├── mock-manifest.ts └── mock-picture.ts ├── package.json ├── public └── themes │ ├── auto.css │ ├── dark-2.css │ ├── dark.css │ ├── light-2.css │ └── light.css ├── pull_request_template.md ├── rollup.common.config.js ├── scripts ├── new.js └── template │ ├── README.md │ ├── package.json │ ├── rollup.config.js │ ├── src │ ├── index.html │ ├── index.svelte │ ├── init.spec.js │ └── main.ts │ └── tsconfig.json ├── svelte.config.js ├── tests ├── agenda │ ├── agenda.spec.ts │ └── methods │ │ └── position.spec.ts ├── composer │ └── lib │ │ ├── store.spec.ts │ │ └── utils.spec.ts ├── contact-list │ └── lib │ │ └── utils.spec.ts ├── methods │ └── convertDateTimeZone.spec.ts ├── mocks │ ├── MockCalendars.ts │ ├── MockEvents.ts │ └── MockManifests.ts └── region │ └── region.spec.ts ├── tsconfig.json └── yarn.lock /.env-sample: -------------------------------------------------------------------------------- 1 | API_GATEWAY=web-components.nylas.com/middleware 2 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/request-for-comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/.github/ISSUE_TEMPLATE/request-for-comment.md -------------------------------------------------------------------------------- /.github/auto_assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/.github/auto_assign.yml -------------------------------------------------------------------------------- /.github/workflows/build-test-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/.github/workflows/build-test-publish.yaml -------------------------------------------------------------------------------- /.github/workflows/cancel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/.github/workflows/cancel.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn run lint:pretty-quick -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 14 -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/.nycrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/DOCUMENTATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/babel.config.json -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/bower.json -------------------------------------------------------------------------------- /commons/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/.npmignore -------------------------------------------------------------------------------- /commons/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/package.json -------------------------------------------------------------------------------- /commons/src/components/ContactImage/ContactImage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/components/ContactImage/ContactImage.svelte -------------------------------------------------------------------------------- /commons/src/components/ErrorMessage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/components/ErrorMessage.svelte -------------------------------------------------------------------------------- /commons/src/components/MessageBody.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/components/MessageBody.svelte -------------------------------------------------------------------------------- /commons/src/components/NError.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/components/NError.svelte -------------------------------------------------------------------------------- /commons/src/components/Tooltip.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/components/Tooltip.svelte -------------------------------------------------------------------------------- /commons/src/components/checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/components/checkbox.scss -------------------------------------------------------------------------------- /commons/src/connections/accounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/connections/accounts.ts -------------------------------------------------------------------------------- /commons/src/connections/availability.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/connections/availability.ts -------------------------------------------------------------------------------- /commons/src/connections/contacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/connections/contacts.ts -------------------------------------------------------------------------------- /commons/src/connections/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/connections/events.ts -------------------------------------------------------------------------------- /commons/src/connections/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/connections/files.ts -------------------------------------------------------------------------------- /commons/src/connections/folders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/connections/folders.ts -------------------------------------------------------------------------------- /commons/src/connections/labels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/connections/labels.ts -------------------------------------------------------------------------------- /commons/src/connections/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/connections/manifest.ts -------------------------------------------------------------------------------- /commons/src/connections/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/connections/messages.ts -------------------------------------------------------------------------------- /commons/src/connections/neural.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/connections/neural.ts -------------------------------------------------------------------------------- /commons/src/connections/threads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/connections/threads.ts -------------------------------------------------------------------------------- /commons/src/constants/attachment-content-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/constants/attachment-content-types.ts -------------------------------------------------------------------------------- /commons/src/constants/custom-fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/constants/custom-fields.ts -------------------------------------------------------------------------------- /commons/src/define-component-patch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/define-component-patch.ts -------------------------------------------------------------------------------- /commons/src/enums/Availability.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/enums/Availability.ts -------------------------------------------------------------------------------- /commons/src/enums/Booking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/enums/Booking.ts -------------------------------------------------------------------------------- /commons/src/enums/Events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/enums/Events.ts -------------------------------------------------------------------------------- /commons/src/enums/Nylas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/enums/Nylas.ts -------------------------------------------------------------------------------- /commons/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/index.ts -------------------------------------------------------------------------------- /commons/src/memoize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/memoize.ts -------------------------------------------------------------------------------- /commons/src/methods/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/methods/api.ts -------------------------------------------------------------------------------- /commons/src/methods/colour.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/methods/colour.ts -------------------------------------------------------------------------------- /commons/src/methods/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/methods/component.ts -------------------------------------------------------------------------------- /commons/src/methods/contact_strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/methods/contact_strings.ts -------------------------------------------------------------------------------- /commons/src/methods/convertDateTimeZone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/methods/convertDateTimeZone.ts -------------------------------------------------------------------------------- /commons/src/methods/datetime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/methods/datetime.ts -------------------------------------------------------------------------------- /commons/src/methods/isFileAnAttachment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/methods/isFileAnAttachment.ts -------------------------------------------------------------------------------- /commons/src/methods/participants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/methods/participants.ts -------------------------------------------------------------------------------- /commons/src/store/accounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/store/accounts.ts -------------------------------------------------------------------------------- /commons/src/store/availability.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/store/availability.ts -------------------------------------------------------------------------------- /commons/src/store/calendars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/store/calendars.ts -------------------------------------------------------------------------------- /commons/src/store/consecutive-availability.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/store/consecutive-availability.ts -------------------------------------------------------------------------------- /commons/src/store/contact-avatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/store/contact-avatar.ts -------------------------------------------------------------------------------- /commons/src/store/contacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/store/contacts.ts -------------------------------------------------------------------------------- /commons/src/store/conversations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/store/conversations.ts -------------------------------------------------------------------------------- /commons/src/store/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/store/error.ts -------------------------------------------------------------------------------- /commons/src/store/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/store/events.ts -------------------------------------------------------------------------------- /commons/src/store/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/store/files.ts -------------------------------------------------------------------------------- /commons/src/store/folders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/store/folders.ts -------------------------------------------------------------------------------- /commons/src/store/labels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/store/labels.ts -------------------------------------------------------------------------------- /commons/src/store/mailbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/store/mailbox.ts -------------------------------------------------------------------------------- /commons/src/store/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/store/manifest.ts -------------------------------------------------------------------------------- /commons/src/store/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/store/messages.ts -------------------------------------------------------------------------------- /commons/src/types/Availability.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/types/Availability.ts -------------------------------------------------------------------------------- /commons/src/types/Booking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/types/Booking.ts -------------------------------------------------------------------------------- /commons/src/types/Composer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/types/Composer.ts -------------------------------------------------------------------------------- /commons/src/types/Contacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/types/Contacts.ts -------------------------------------------------------------------------------- /commons/src/types/ContactsSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/types/ContactsSearch.ts -------------------------------------------------------------------------------- /commons/src/types/Events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/types/Events.ts -------------------------------------------------------------------------------- /commons/src/types/Global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/types/Global.d.ts -------------------------------------------------------------------------------- /commons/src/types/Nylas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/types/Nylas.ts -------------------------------------------------------------------------------- /commons/src/types/ScheduleEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/src/types/ScheduleEditor.ts -------------------------------------------------------------------------------- /commons/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /commons/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/commons/yarn.lock -------------------------------------------------------------------------------- /components/agenda/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/agenda/.npmignore -------------------------------------------------------------------------------- /components/agenda/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/agenda/CHANGELOG.md -------------------------------------------------------------------------------- /components/agenda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/agenda/README.md -------------------------------------------------------------------------------- /components/agenda/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@nylas/components-agenda" 3 | } 4 | -------------------------------------------------------------------------------- /components/agenda/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/agenda/package.json -------------------------------------------------------------------------------- /components/agenda/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/agenda/rollup.config.js -------------------------------------------------------------------------------- /components/agenda/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/agenda/sample.png -------------------------------------------------------------------------------- /components/agenda/src/Agenda.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/agenda/src/Agenda.svelte -------------------------------------------------------------------------------- /components/agenda/src/cypress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/agenda/src/cypress.html -------------------------------------------------------------------------------- /components/agenda/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/agenda/src/index.html -------------------------------------------------------------------------------- /components/agenda/src/init.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/agenda/src/init.spec.js -------------------------------------------------------------------------------- /components/agenda/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/agenda/src/main.ts -------------------------------------------------------------------------------- /components/agenda/src/methods/position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/agenda/src/methods/position.ts -------------------------------------------------------------------------------- /components/agenda/src/methods/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/agenda/src/methods/time.ts -------------------------------------------------------------------------------- /components/agenda/src/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/agenda/src/properties.json -------------------------------------------------------------------------------- /components/agenda/src/styles/agenda-themes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/agenda/src/styles/agenda-themes.scss -------------------------------------------------------------------------------- /components/agenda/src/styles/agenda.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/agenda/src/styles/agenda.scss -------------------------------------------------------------------------------- /components/agenda/src/styles/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/agenda/src/styles/theme.scss -------------------------------------------------------------------------------- /components/agenda/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /components/agenda/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/agenda/yarn.lock -------------------------------------------------------------------------------- /components/availability/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/availability/.npmignore -------------------------------------------------------------------------------- /components/availability/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/availability/CHANGELOG.md -------------------------------------------------------------------------------- /components/availability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/availability/README.md -------------------------------------------------------------------------------- /components/availability/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@nylas/components-availability" 3 | } 4 | -------------------------------------------------------------------------------- /components/availability/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/availability/package.json -------------------------------------------------------------------------------- /components/availability/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/availability/rollup.config.js -------------------------------------------------------------------------------- /components/availability/src/Availability.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/availability/src/Availability.svelte -------------------------------------------------------------------------------- /components/availability/src/assets/available.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/availability/src/assets/available.svg -------------------------------------------------------------------------------- /components/availability/src/assets/left-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/availability/src/assets/left-arrow.svg -------------------------------------------------------------------------------- /components/availability/src/assets/right-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/availability/src/assets/right-arrow.svg -------------------------------------------------------------------------------- /components/availability/src/assets/unavailable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/availability/src/assets/unavailable.svg -------------------------------------------------------------------------------- /components/availability/src/cypress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/availability/src/cypress.html -------------------------------------------------------------------------------- /components/availability/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/availability/src/index.html -------------------------------------------------------------------------------- /components/availability/src/init.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/availability/src/init.spec.js -------------------------------------------------------------------------------- /components/availability/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/availability/src/main.ts -------------------------------------------------------------------------------- /components/availability/src/method/availabilityUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/availability/src/method/availabilityUtils.ts -------------------------------------------------------------------------------- /components/availability/src/method/openhours.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/availability/src/method/openhours.ts -------------------------------------------------------------------------------- /components/availability/src/method/slot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/availability/src/method/slot.ts -------------------------------------------------------------------------------- /components/availability/src/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/availability/src/properties.json -------------------------------------------------------------------------------- /components/availability/src/styles/availability.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/availability/src/styles/availability.scss -------------------------------------------------------------------------------- /components/availability/src/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/availability/src/test.js -------------------------------------------------------------------------------- /components/availability/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /components/booking/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/booking/.npmignore -------------------------------------------------------------------------------- /components/booking/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/booking/CHANGELOG.md -------------------------------------------------------------------------------- /components/booking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/booking/README.md -------------------------------------------------------------------------------- /components/booking/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@nylas/components-booking" 3 | } 4 | -------------------------------------------------------------------------------- /components/booking/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/booking/package.json -------------------------------------------------------------------------------- /components/booking/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/booking/rollup.config.js -------------------------------------------------------------------------------- /components/booking/src/Booking.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/booking/src/Booking.svelte -------------------------------------------------------------------------------- /components/booking/src/cypress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/booking/src/cypress.html -------------------------------------------------------------------------------- /components/booking/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/booking/src/index.html -------------------------------------------------------------------------------- /components/booking/src/init.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/booking/src/init.spec.js -------------------------------------------------------------------------------- /components/booking/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/booking/src/main.ts -------------------------------------------------------------------------------- /components/booking/src/styles/booking.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/booking/src/styles/booking.scss -------------------------------------------------------------------------------- /components/booking/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /components/composer/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/.npmignore -------------------------------------------------------------------------------- /components/composer/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/CHANGELOG.md -------------------------------------------------------------------------------- /components/composer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/README.md -------------------------------------------------------------------------------- /components/composer/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/bower.json -------------------------------------------------------------------------------- /components/composer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/package.json -------------------------------------------------------------------------------- /components/composer/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/rollup.config.js -------------------------------------------------------------------------------- /components/composer/src/Composer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/Composer.svelte -------------------------------------------------------------------------------- /components/composer/src/assets/aligned-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/assets/aligned-left.svg -------------------------------------------------------------------------------- /components/composer/src/assets/aligned-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/assets/aligned-right.svg -------------------------------------------------------------------------------- /components/composer/src/assets/attachment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/assets/attachment.svg -------------------------------------------------------------------------------- /components/composer/src/assets/bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/assets/bold.svg -------------------------------------------------------------------------------- /components/composer/src/assets/bullet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/assets/bullet.svg -------------------------------------------------------------------------------- /components/composer/src/assets/centered.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/assets/centered.svg -------------------------------------------------------------------------------- /components/composer/src/assets/close-rounded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/assets/close-rounded.svg -------------------------------------------------------------------------------- /components/composer/src/assets/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/assets/close.svg -------------------------------------------------------------------------------- /components/composer/src/assets/dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/assets/dash.svg -------------------------------------------------------------------------------- /components/composer/src/assets/drafts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/assets/drafts.svg -------------------------------------------------------------------------------- /components/composer/src/assets/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/assets/expand.svg -------------------------------------------------------------------------------- /components/composer/src/assets/italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/assets/italic.svg -------------------------------------------------------------------------------- /components/composer/src/assets/justified.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/assets/justified.svg -------------------------------------------------------------------------------- /components/composer/src/assets/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/assets/link.svg -------------------------------------------------------------------------------- /components/composer/src/assets/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/assets/list.svg -------------------------------------------------------------------------------- /components/composer/src/assets/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/assets/loading.svg -------------------------------------------------------------------------------- /components/composer/src/assets/send-later.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/assets/send-later.svg -------------------------------------------------------------------------------- /components/composer/src/assets/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/assets/send.svg -------------------------------------------------------------------------------- /components/composer/src/assets/underline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/assets/underline.svg -------------------------------------------------------------------------------- /components/composer/src/components/AlertBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/components/AlertBar.svelte -------------------------------------------------------------------------------- /components/composer/src/components/Attachment.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/components/Attachment.svelte -------------------------------------------------------------------------------- /components/composer/src/components/ContactsSearch.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/components/ContactsSearch.svelte -------------------------------------------------------------------------------- /components/composer/src/components/DatepickerModal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/components/DatepickerModal.svelte -------------------------------------------------------------------------------- /components/composer/src/components/HTMLEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/components/HTMLEditor.svelte -------------------------------------------------------------------------------- /components/composer/src/composer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/composer.d.ts -------------------------------------------------------------------------------- /components/composer/src/cypress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/cypress.html -------------------------------------------------------------------------------- /components/composer/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/index.html -------------------------------------------------------------------------------- /components/composer/src/init.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/init.spec.js -------------------------------------------------------------------------------- /components/composer/src/lib/format-date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/lib/format-date.ts -------------------------------------------------------------------------------- /components/composer/src/lib/html-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/lib/html-editor.ts -------------------------------------------------------------------------------- /components/composer/src/lib/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/lib/store.ts -------------------------------------------------------------------------------- /components/composer/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/lib/utils.ts -------------------------------------------------------------------------------- /components/composer/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/main.ts -------------------------------------------------------------------------------- /components/composer/src/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/src/properties.json -------------------------------------------------------------------------------- /components/composer/themes/auto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/themes/auto.css -------------------------------------------------------------------------------- /components/composer/themes/dark-2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/themes/dark-2.css -------------------------------------------------------------------------------- /components/composer/themes/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/themes/dark.css -------------------------------------------------------------------------------- /components/composer/themes/light-2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/composer/themes/light-2.css -------------------------------------------------------------------------------- /components/composer/themes/light.css: -------------------------------------------------------------------------------- 1 | .nylas-composer { 2 | } 3 | -------------------------------------------------------------------------------- /components/composer/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /components/contact-list/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/contact-list/.npmignore -------------------------------------------------------------------------------- /components/contact-list/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/contact-list/CHANGELOG.md -------------------------------------------------------------------------------- /components/contact-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/contact-list/README.md -------------------------------------------------------------------------------- /components/contact-list/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@nylas/components-contact-list" 3 | } 4 | -------------------------------------------------------------------------------- /components/contact-list/lib/sorting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/contact-list/lib/sorting.ts -------------------------------------------------------------------------------- /components/contact-list/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/contact-list/package.json -------------------------------------------------------------------------------- /components/contact-list/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/contact-list/rollup.config.js -------------------------------------------------------------------------------- /components/contact-list/src/ContactList.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/contact-list/src/ContactList.svelte -------------------------------------------------------------------------------- /components/contact-list/src/cypress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/contact-list/src/cypress.html -------------------------------------------------------------------------------- /components/contact-list/src/default_photo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/contact-list/src/default_photo.js -------------------------------------------------------------------------------- /components/contact-list/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/contact-list/src/index.html -------------------------------------------------------------------------------- /components/contact-list/src/init.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/contact-list/src/init.spec.js -------------------------------------------------------------------------------- /components/contact-list/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/contact-list/src/main.ts -------------------------------------------------------------------------------- /components/contact-list/src/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/contact-list/src/properties.json -------------------------------------------------------------------------------- /components/contact-list/src/themes/theme-1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/contact-list/src/themes/theme-1.css -------------------------------------------------------------------------------- /components/contact-list/src/themes/theme-2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/contact-list/src/themes/theme-2.css -------------------------------------------------------------------------------- /components/contact-list/src/themes/theme-3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/contact-list/src/themes/theme-3.css -------------------------------------------------------------------------------- /components/contact-list/src/themes/theme-4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/contact-list/src/themes/theme-4.css -------------------------------------------------------------------------------- /components/contact-list/src/themes/theme-5.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/contact-list/src/themes/theme-5.css -------------------------------------------------------------------------------- /components/contact-list/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /components/conversation/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/conversation/.npmignore -------------------------------------------------------------------------------- /components/conversation/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/conversation/CHANGELOG.md -------------------------------------------------------------------------------- /components/conversation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/conversation/README.md -------------------------------------------------------------------------------- /components/conversation/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@nylas/components-conversation" 3 | } 4 | -------------------------------------------------------------------------------- /components/conversation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/conversation/package.json -------------------------------------------------------------------------------- /components/conversation/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/conversation/rollup.config.js -------------------------------------------------------------------------------- /components/conversation/src/Conversation.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/conversation/src/Conversation.svelte -------------------------------------------------------------------------------- /components/conversation/src/assets/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/conversation/src/assets/send.svg -------------------------------------------------------------------------------- /components/conversation/src/assets/toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/conversation/src/assets/toggle.svg -------------------------------------------------------------------------------- /components/conversation/src/cypress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/conversation/src/cypress.html -------------------------------------------------------------------------------- /components/conversation/src/feedback.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/conversation/src/feedback.svg -------------------------------------------------------------------------------- /components/conversation/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/conversation/src/index.html -------------------------------------------------------------------------------- /components/conversation/src/init.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/conversation/src/init.spec.js -------------------------------------------------------------------------------- /components/conversation/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/conversation/src/main.ts -------------------------------------------------------------------------------- /components/conversation/src/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/conversation/src/properties.json -------------------------------------------------------------------------------- /components/conversation/src/test-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/conversation/src/test-data.js -------------------------------------------------------------------------------- /components/conversation/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /components/conversation/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/conversation/yarn.lock -------------------------------------------------------------------------------- /components/datepicker/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/datepicker/.npmignore -------------------------------------------------------------------------------- /components/datepicker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/datepicker/README.md -------------------------------------------------------------------------------- /components/datepicker/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@nylas/components-datepicker" 3 | } 4 | -------------------------------------------------------------------------------- /components/datepicker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/datepicker/package.json -------------------------------------------------------------------------------- /components/datepicker/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/datepicker/rollup.config.js -------------------------------------------------------------------------------- /components/datepicker/src/Datepicker.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/datepicker/src/Datepicker.svelte -------------------------------------------------------------------------------- /components/datepicker/src/assets/chevron.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/datepicker/src/datepicker.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/datepicker/src/datepicker.d.ts -------------------------------------------------------------------------------- /components/datepicker/src/datepicker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/datepicker/src/datepicker.html -------------------------------------------------------------------------------- /components/datepicker/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/datepicker/src/main.ts -------------------------------------------------------------------------------- /components/datepicker/src/variables.css: -------------------------------------------------------------------------------- 1 | .nylas-contacts { 2 | } 3 | -------------------------------------------------------------------------------- /components/datepicker/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /components/email/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/.npmignore -------------------------------------------------------------------------------- /components/email/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/CHANGELOG.md -------------------------------------------------------------------------------- /components/email/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/README.md -------------------------------------------------------------------------------- /components/email/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@nylas/components-email" 3 | } 4 | -------------------------------------------------------------------------------- /components/email/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/package.json -------------------------------------------------------------------------------- /components/email/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/rollup.config.js -------------------------------------------------------------------------------- /components/email/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/sample.png -------------------------------------------------------------------------------- /components/email/src/Email.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/src/Email.svelte -------------------------------------------------------------------------------- /components/email/src/assets/arrow-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/src/assets/arrow-line.svg -------------------------------------------------------------------------------- /components/email/src/assets/attachment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/src/assets/attachment.svg -------------------------------------------------------------------------------- /components/email/src/assets/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/src/assets/chevron-down.svg -------------------------------------------------------------------------------- /components/email/src/assets/draft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/src/assets/draft.svg -------------------------------------------------------------------------------- /components/email/src/assets/envelope-open-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/src/assets/envelope-open-text.svg -------------------------------------------------------------------------------- /components/email/src/assets/envelope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/src/assets/envelope.svg -------------------------------------------------------------------------------- /components/email/src/assets/forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/src/assets/forward.svg -------------------------------------------------------------------------------- /components/email/src/assets/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/src/assets/loading.svg -------------------------------------------------------------------------------- /components/email/src/assets/no-messages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/src/assets/no-messages.svg -------------------------------------------------------------------------------- /components/email/src/assets/reply-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/src/assets/reply-all.svg -------------------------------------------------------------------------------- /components/email/src/assets/reply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/src/assets/reply.svg -------------------------------------------------------------------------------- /components/email/src/assets/trash-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/src/assets/trash-alt.svg -------------------------------------------------------------------------------- /components/email/src/cypress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/src/cypress.html -------------------------------------------------------------------------------- /components/email/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/src/index.css -------------------------------------------------------------------------------- /components/email/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/src/index.html -------------------------------------------------------------------------------- /components/email/src/init.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/src/init.spec.js -------------------------------------------------------------------------------- /components/email/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/src/main.ts -------------------------------------------------------------------------------- /components/email/src/methods/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/src/methods/lib.ts -------------------------------------------------------------------------------- /components/email/src/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/src/properties.json -------------------------------------------------------------------------------- /components/email/src/styles/email.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/src/styles/email.scss -------------------------------------------------------------------------------- /components/email/themes/auto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/themes/auto.css -------------------------------------------------------------------------------- /components/email/themes/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/themes/dark.css -------------------------------------------------------------------------------- /components/email/themes/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/themes/light.css -------------------------------------------------------------------------------- /components/email/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /components/email/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/email/yarn.lock -------------------------------------------------------------------------------- /components/mailbox/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/.npmignore -------------------------------------------------------------------------------- /components/mailbox/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/CHANGELOG.md -------------------------------------------------------------------------------- /components/mailbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/README.md -------------------------------------------------------------------------------- /components/mailbox/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@nylas/components-mailbox" 3 | } 4 | -------------------------------------------------------------------------------- /components/mailbox/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/package.json -------------------------------------------------------------------------------- /components/mailbox/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/rollup.config.js -------------------------------------------------------------------------------- /components/mailbox/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/sample.png -------------------------------------------------------------------------------- /components/mailbox/src/Mailbox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/src/Mailbox.svelte -------------------------------------------------------------------------------- /components/mailbox/src/assets/arrow-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/src/assets/arrow-line.svg -------------------------------------------------------------------------------- /components/mailbox/src/assets/double-left-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/src/assets/double-left-arrow.svg -------------------------------------------------------------------------------- /components/mailbox/src/assets/double-right-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/src/assets/double-right-arrow.svg -------------------------------------------------------------------------------- /components/mailbox/src/assets/envelope-open-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/src/assets/envelope-open-text.svg -------------------------------------------------------------------------------- /components/mailbox/src/assets/envelope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/src/assets/envelope.svg -------------------------------------------------------------------------------- /components/mailbox/src/assets/left-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/src/assets/left-arrow.svg -------------------------------------------------------------------------------- /components/mailbox/src/assets/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/src/assets/loading.svg -------------------------------------------------------------------------------- /components/mailbox/src/assets/right-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/src/assets/right-arrow.svg -------------------------------------------------------------------------------- /components/mailbox/src/assets/trash-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/src/assets/trash-alt.svg -------------------------------------------------------------------------------- /components/mailbox/src/components/PaginationNav.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/src/components/PaginationNav.svelte -------------------------------------------------------------------------------- /components/mailbox/src/cypress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/src/cypress.html -------------------------------------------------------------------------------- /components/mailbox/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/src/index.html -------------------------------------------------------------------------------- /components/mailbox/src/init.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/src/init.spec.js -------------------------------------------------------------------------------- /components/mailbox/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/src/main.ts -------------------------------------------------------------------------------- /components/mailbox/src/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/src/properties.json -------------------------------------------------------------------------------- /components/mailbox/src/styles/modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/src/styles/modal.scss -------------------------------------------------------------------------------- /components/mailbox/themes/auto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/themes/auto.css -------------------------------------------------------------------------------- /components/mailbox/themes/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/themes/dark.css -------------------------------------------------------------------------------- /components/mailbox/themes/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/themes/light.css -------------------------------------------------------------------------------- /components/mailbox/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /components/mailbox/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/mailbox/yarn.lock -------------------------------------------------------------------------------- /components/schedule-editor/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/schedule-editor/.npmignore -------------------------------------------------------------------------------- /components/schedule-editor/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/schedule-editor/CHANGELOG.md -------------------------------------------------------------------------------- /components/schedule-editor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/schedule-editor/README.md -------------------------------------------------------------------------------- /components/schedule-editor/docs/configure-schedule-editor-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/schedule-editor/docs/configure-schedule-editor-id.png -------------------------------------------------------------------------------- /components/schedule-editor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/schedule-editor/package.json -------------------------------------------------------------------------------- /components/schedule-editor/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/schedule-editor/rollup.config.js -------------------------------------------------------------------------------- /components/schedule-editor/src/ScheduleEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/schedule-editor/src/ScheduleEditor.svelte -------------------------------------------------------------------------------- /components/schedule-editor/src/assets/checkmark-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/schedule-editor/src/assets/checkmark-icon.svg -------------------------------------------------------------------------------- /components/schedule-editor/src/assets/drag-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/schedule-editor/src/assets/drag-icon.svg -------------------------------------------------------------------------------- /components/schedule-editor/src/assets/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/schedule-editor/src/assets/expand.svg -------------------------------------------------------------------------------- /components/schedule-editor/src/assets/pencil-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/schedule-editor/src/assets/pencil-icon.svg -------------------------------------------------------------------------------- /components/schedule-editor/src/assets/plus-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/schedule-editor/src/assets/plus-icon.svg -------------------------------------------------------------------------------- /components/schedule-editor/src/assets/trash-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/schedule-editor/src/assets/trash-icon.svg -------------------------------------------------------------------------------- /components/schedule-editor/src/components/DragItemPlaceholder.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/schedule-editor/src/components/DragItemPlaceholder.svelte -------------------------------------------------------------------------------- /components/schedule-editor/src/components/EditorSection.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/schedule-editor/src/components/EditorSection.svelte -------------------------------------------------------------------------------- /components/schedule-editor/src/cypress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/schedule-editor/src/cypress.html -------------------------------------------------------------------------------- /components/schedule-editor/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/schedule-editor/src/index.html -------------------------------------------------------------------------------- /components/schedule-editor/src/init.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/schedule-editor/src/init.spec.js -------------------------------------------------------------------------------- /components/schedule-editor/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/schedule-editor/src/main.ts -------------------------------------------------------------------------------- /components/schedule-editor/src/methods/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/schedule-editor/src/methods/dom.ts -------------------------------------------------------------------------------- /components/schedule-editor/src/styles/drag-item-placeholder.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/schedule-editor/src/styles/drag-item-placeholder.scss -------------------------------------------------------------------------------- /components/schedule-editor/src/styles/schedule-editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/schedule-editor/src/styles/schedule-editor.scss -------------------------------------------------------------------------------- /components/schedule-editor/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /components/theming/.npmignore: -------------------------------------------------------------------------------- 1 | **/* 2 | -------------------------------------------------------------------------------- /components/theming/animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/theming/animation.scss -------------------------------------------------------------------------------- /components/theming/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@nylas/components-theming" 3 | } 4 | -------------------------------------------------------------------------------- /components/theming/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/theming/package.json -------------------------------------------------------------------------------- /components/theming/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/theming/reset.scss -------------------------------------------------------------------------------- /components/theming/themes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/theming/themes.scss -------------------------------------------------------------------------------- /components/theming/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/components/theming/variables.scss -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress.json -------------------------------------------------------------------------------- /cypress/fixtures/agenda/calendars/calendarId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/agenda/calendars/calendarId.json -------------------------------------------------------------------------------- /cypress/fixtures/agenda/events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/agenda/events.json -------------------------------------------------------------------------------- /cypress/fixtures/agenda/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/agenda/manifest.json -------------------------------------------------------------------------------- /cypress/fixtures/composer/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/composer/account.json -------------------------------------------------------------------------------- /cypress/fixtures/composer/files/fileResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/composer/files/fileResponse.json -------------------------------------------------------------------------------- /cypress/fixtures/composer/files/file_size_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/composer/files/file_size_3.jpg -------------------------------------------------------------------------------- /cypress/fixtures/composer/files/file_size_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/composer/files/file_size_5.jpg -------------------------------------------------------------------------------- /cypress/fixtures/composer/files/tiny_text_file.txt: -------------------------------------------------------------------------------- 1 | Tiny text file -------------------------------------------------------------------------------- /cypress/fixtures/composer/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/composer/manifest.json -------------------------------------------------------------------------------- /cypress/fixtures/contact-list/contactPictureResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/contact-list/contactPictureResponse.json -------------------------------------------------------------------------------- /cypress/fixtures/contact-list/contacts100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/contact-list/contacts100.json -------------------------------------------------------------------------------- /cypress/fixtures/contact-list/contactsWithPicture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/contact-list/contactsWithPicture.json -------------------------------------------------------------------------------- /cypress/fixtures/contact-list/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/contact-list/manifest.json -------------------------------------------------------------------------------- /cypress/fixtures/conversation/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/conversation/account.json -------------------------------------------------------------------------------- /cypress/fixtures/conversation/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/conversation/manifest.json -------------------------------------------------------------------------------- /cypress/fixtures/conversation/sendMessageResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/conversation/sendMessageResponse.json -------------------------------------------------------------------------------- /cypress/fixtures/conversation/testConversationThread.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/conversation/testConversationThread.json -------------------------------------------------------------------------------- /cypress/fixtures/conversation/threadsId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/conversation/threadsId.json -------------------------------------------------------------------------------- /cypress/fixtures/draftThread.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/draftThread.json -------------------------------------------------------------------------------- /cypress/fixtures/email/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/email/account.json -------------------------------------------------------------------------------- /cypress/fixtures/email/files/download.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/email/files/download.json -------------------------------------------------------------------------------- /cypress/fixtures/email/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/email/labels.json -------------------------------------------------------------------------------- /cypress/fixtures/email/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/email/manifest.json -------------------------------------------------------------------------------- /cypress/fixtures/email/messages/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/email/messages/id.json -------------------------------------------------------------------------------- /cypress/fixtures/email/messages/idWithImage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/email/messages/idWithImage.json -------------------------------------------------------------------------------- /cypress/fixtures/email/messages/idWithMultipleSenders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/email/messages/idWithMultipleSenders.json -------------------------------------------------------------------------------- /cypress/fixtures/email/messages/messageWithImageAttachment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/email/messages/messageWithImageAttachment.json -------------------------------------------------------------------------------- /cypress/fixtures/email/threads/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/email/threads/id.json -------------------------------------------------------------------------------- /cypress/fixtures/email/threads/idWithImage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/email/threads/idWithImage.json -------------------------------------------------------------------------------- /cypress/fixtures/email/threads/idWithMultipleSenders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/email/threads/idWithMultipleSenders.json -------------------------------------------------------------------------------- /cypress/fixtures/email/threads/threadWithImageAttachment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/email/threads/threadWithImageAttachment.json -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/fixtures/mailbox/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/mailbox/account.json -------------------------------------------------------------------------------- /cypress/fixtures/mailbox/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/mailbox/labels.json -------------------------------------------------------------------------------- /cypress/fixtures/mailbox/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/mailbox/manifest.json -------------------------------------------------------------------------------- /cypress/fixtures/mailbox/messages/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/mailbox/messages/id.json -------------------------------------------------------------------------------- /cypress/fixtures/mailbox/messages/idWithImage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/mailbox/messages/idWithImage.json -------------------------------------------------------------------------------- /cypress/fixtures/mailbox/messages/idWithLastMessageFromSelf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/mailbox/messages/idWithLastMessageFromSelf.json -------------------------------------------------------------------------------- /cypress/fixtures/mailbox/messages/idWithMultipleToParticipants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/mailbox/messages/idWithMultipleToParticipants.json -------------------------------------------------------------------------------- /cypress/fixtures/mailbox/messages/messageForDraftThread.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/mailbox/messages/messageForDraftThread.json -------------------------------------------------------------------------------- /cypress/fixtures/mailbox/threads/SAMPLE_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/mailbox/threads/SAMPLE_1.json -------------------------------------------------------------------------------- /cypress/fixtures/mailbox/threads/SAMPLE_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/mailbox/threads/SAMPLE_2.json -------------------------------------------------------------------------------- /cypress/fixtures/mailbox/threads/draftMessage1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/mailbox/threads/draftMessage1.json -------------------------------------------------------------------------------- /cypress/fixtures/mailbox/threads/draftMessage2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/mailbox/threads/draftMessage2.json -------------------------------------------------------------------------------- /cypress/fixtures/mailbox/threads/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/mailbox/threads/index.json -------------------------------------------------------------------------------- /cypress/fixtures/mailbox/threads/threadRegular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/mailbox/threads/threadRegular.json -------------------------------------------------------------------------------- /cypress/fixtures/mailbox/threads/threadWithCalendarAttachments copy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/mailbox/threads/threadWithCalendarAttachments copy.json -------------------------------------------------------------------------------- /cypress/fixtures/mailbox/threads/threadWithCalendarAttachments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/mailbox/threads/threadWithCalendarAttachments.json -------------------------------------------------------------------------------- /cypress/fixtures/mailbox/threads/threadWithDraft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/mailbox/threads/threadWithDraft.json -------------------------------------------------------------------------------- /cypress/fixtures/mailbox/threads/threadWithMessageThatDoesNotHaveFromOrToFields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/mailbox/threads/threadWithMessageThatDoesNotHaveFromOrToFields.json -------------------------------------------------------------------------------- /cypress/fixtures/mailbox/threads/threadWithMultipleToParticipants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/mailbox/threads/threadWithMultipleToParticipants.json -------------------------------------------------------------------------------- /cypress/fixtures/mailbox/threads/threadWithlastMessageFromSelf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/mailbox/threads/threadWithlastMessageFromSelf.json -------------------------------------------------------------------------------- /cypress/fixtures/mailbox/threads/threadsWithCount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/mailbox/threads/threadsWithCount.json -------------------------------------------------------------------------------- /cypress/fixtures/mailbox/threads/threadsWithImage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/mailbox/threads/threadsWithImage.json -------------------------------------------------------------------------------- /cypress/fixtures/threadsMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/threadsMock.json -------------------------------------------------------------------------------- /cypress/fixtures/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/fixtures/users.json -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/index.html -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/jest.config.js -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/lerna.json -------------------------------------------------------------------------------- /mocks/mock-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/mocks/mock-account.ts -------------------------------------------------------------------------------- /mocks/mock-calendars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/mocks/mock-calendars.ts -------------------------------------------------------------------------------- /mocks/mock-contacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/mocks/mock-contacts.ts -------------------------------------------------------------------------------- /mocks/mock-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/mocks/mock-events.ts -------------------------------------------------------------------------------- /mocks/mock-manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/mocks/mock-manifest.ts -------------------------------------------------------------------------------- /mocks/mock-picture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/mocks/mock-picture.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/package.json -------------------------------------------------------------------------------- /public/themes/auto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/public/themes/auto.css -------------------------------------------------------------------------------- /public/themes/dark-2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/public/themes/dark-2.css -------------------------------------------------------------------------------- /public/themes/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/public/themes/dark.css -------------------------------------------------------------------------------- /public/themes/light-2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/public/themes/light-2.css -------------------------------------------------------------------------------- /public/themes/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/public/themes/light.css -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /rollup.common.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/rollup.common.config.js -------------------------------------------------------------------------------- /scripts/new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/scripts/new.js -------------------------------------------------------------------------------- /scripts/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/scripts/template/README.md -------------------------------------------------------------------------------- /scripts/template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/scripts/template/package.json -------------------------------------------------------------------------------- /scripts/template/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/scripts/template/rollup.config.js -------------------------------------------------------------------------------- /scripts/template/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/scripts/template/src/index.html -------------------------------------------------------------------------------- /scripts/template/src/index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/scripts/template/src/index.svelte -------------------------------------------------------------------------------- /scripts/template/src/init.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/scripts/template/src/init.spec.js -------------------------------------------------------------------------------- /scripts/template/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/scripts/template/src/main.ts -------------------------------------------------------------------------------- /scripts/template/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tests/agenda/agenda.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/tests/agenda/agenda.spec.ts -------------------------------------------------------------------------------- /tests/agenda/methods/position.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/tests/agenda/methods/position.spec.ts -------------------------------------------------------------------------------- /tests/composer/lib/store.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/tests/composer/lib/store.spec.ts -------------------------------------------------------------------------------- /tests/composer/lib/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/tests/composer/lib/utils.spec.ts -------------------------------------------------------------------------------- /tests/contact-list/lib/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/tests/contact-list/lib/utils.spec.ts -------------------------------------------------------------------------------- /tests/methods/convertDateTimeZone.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/tests/methods/convertDateTimeZone.spec.ts -------------------------------------------------------------------------------- /tests/mocks/MockCalendars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/tests/mocks/MockCalendars.ts -------------------------------------------------------------------------------- /tests/mocks/MockEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/tests/mocks/MockEvents.ts -------------------------------------------------------------------------------- /tests/mocks/MockManifests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/tests/mocks/MockManifests.ts -------------------------------------------------------------------------------- /tests/region/region.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/tests/region/region.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/components/HEAD/yarn.lock --------------------------------------------------------------------------------