@nylas/web-elements 0.0.0-canary-20241017103834 → 0.0.0-canary-20241017220933
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cdn/nylas-additional-participants/nylas-additional-participants.es.js +7 -7
- package/dist/cdn/nylas-editor-tabs/nylas-editor-tabs.es.js +4558 -4547
- package/dist/cdn/nylas-event-title/nylas-event-title.es.js +6 -3
- package/dist/cdn/nylas-reminder-emails/nylas-reminder-emails.es.js +2289 -2281
- package/dist/cdn/nylas-reminder-time/nylas-reminder-time.es.js +2253 -2245
- package/dist/cdn/nylas-scheduler-editor/nylas-scheduler-editor.es.js +103 -92
- package/dist/cjs/calendar-agenda-fill-icon_54.cjs.entry.js +41 -43
- package/dist/cjs/calendar-agenda-fill-icon_54.cjs.entry.js.map +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/nylas-web-elements.cjs.js +1 -1
- package/dist/collection/components/scheduler-editor/nylas-additional-participants/nylas-additional-participants.js +9 -9
- package/dist/collection/components/scheduler-editor/nylas-additional-participants/nylas-additional-participants.js.map +1 -1
- package/dist/collection/components/scheduler-editor/nylas-event-title/nylas-event-title.js +9 -6
- package/dist/collection/components/scheduler-editor/nylas-event-title/nylas-event-title.js.map +1 -1
- package/dist/collection/components/scheduler-editor/nylas-event-title/test/nylas-event-title.spec.js +24 -0
- package/dist/collection/components/scheduler-editor/nylas-event-title/test/nylas-event-title.spec.js.map +1 -1
- package/dist/collection/components/scheduler-editor/nylas-reminder-time/nylas-reminder-time.js +23 -30
- package/dist/collection/components/scheduler-editor/nylas-reminder-time/nylas-reminder-time.js.map +1 -1
- package/dist/collection/components/scheduler-editor/nylas-reminder-time/test/nylas-reminder-time.spec.js +37 -0
- package/dist/collection/components/scheduler-editor/nylas-reminder-time/test/nylas-reminder-time.spec.js.map +1 -0
- package/dist/components/nylas-additional-participants2.js +9 -9
- package/dist/components/nylas-additional-participants2.js.map +1 -1
- package/dist/components/nylas-event-title2.js +9 -6
- package/dist/components/nylas-event-title2.js.map +1 -1
- package/dist/components/nylas-reminder-time2.js +23 -29
- package/dist/components/nylas-reminder-time2.js.map +1 -1
- package/dist/esm/calendar-agenda-fill-icon_54.entry.js +41 -43
- package/dist/esm/calendar-agenda-fill-icon_54.entry.js.map +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/nylas-web-elements.js +1 -1
- package/dist/nylas-web-elements/nylas-web-elements.esm.js +1 -1
- package/dist/nylas-web-elements/nylas-web-elements.esm.js.map +1 -1
- package/dist/nylas-web-elements/{p-df131a08.entry.js → p-d586ff14.entry.js} +3 -3
- package/dist/nylas-web-elements/p-d586ff14.entry.js.map +1 -0
- package/dist/types/components/scheduler-editor/nylas-additional-participants/nylas-additional-participants.d.ts +1 -1
- package/dist/types/components/scheduler-editor/nylas-event-title/nylas-event-title.d.ts +1 -0
- package/dist/types/components/scheduler-editor/nylas-reminder-time/nylas-reminder-time.d.ts +1 -1
- package/package.json +1 -1
- package/dist/nylas-web-elements/p-df131a08.entry.js.map +0 -1
|
@@ -425,7 +425,7 @@ const NylasAdditionalParticipants = class {
|
|
|
425
425
|
disconnectedCallback() {
|
|
426
426
|
utils.debug('nylas-additional-participants', 'disconnectedCallback');
|
|
427
427
|
}
|
|
428
|
-
isInternalsAvailable() {
|
|
428
|
+
get isInternalsAvailable() {
|
|
429
429
|
return this.internals !== undefined && typeof this.internals.setFormValue === 'function' && typeof this.internals.setValidity === 'function';
|
|
430
430
|
}
|
|
431
431
|
onInputOptionChanged(event) {
|
|
@@ -434,14 +434,14 @@ const NylasAdditionalParticipants = class {
|
|
|
434
434
|
const index = event.detail.name;
|
|
435
435
|
const participant = this.participantOptions?.find(participant => participant.email === event.detail.value);
|
|
436
436
|
if (!participant && this.isRoundRobinConfig) {
|
|
437
|
-
this.isInternalsAvailable
|
|
437
|
+
this.isInternalsAvailable && this.internals.setValidity({ customError: true }, 'For round robin configuration, participant should be selected from the dropdown.');
|
|
438
438
|
this.participantErrors[index] = 'For round robin page, participant should be selected from the dropdown.';
|
|
439
439
|
this.participants[index].is_valid = false;
|
|
440
440
|
this.participants = [...this.participants];
|
|
441
441
|
return;
|
|
442
442
|
}
|
|
443
443
|
else if (!participant && !EMAIL_REGEX.test(event.detail.value)) {
|
|
444
|
-
this.isInternalsAvailable
|
|
444
|
+
this.isInternalsAvailable && this.internals.setValidity({ customError: true }, 'Please enter a valid email address');
|
|
445
445
|
this.participantErrors[index] = 'Please enter a valid email address';
|
|
446
446
|
this.participants[index].is_valid = false;
|
|
447
447
|
this.participants = [...this.participants];
|
|
@@ -450,7 +450,7 @@ const NylasAdditionalParticipants = class {
|
|
|
450
450
|
else {
|
|
451
451
|
this.participantErrors[index] = '';
|
|
452
452
|
this.participants[index].is_valid = true;
|
|
453
|
-
this.isInternalsAvailable
|
|
453
|
+
this.isInternalsAvailable && this.internals.setValidity({});
|
|
454
454
|
}
|
|
455
455
|
this.participants[index].email = event.detail.value;
|
|
456
456
|
this.participants[index].availability = participant ? { calendar_ids: ['primary'] } : undefined;
|
|
@@ -493,13 +493,13 @@ const NylasAdditionalParticipants = class {
|
|
|
493
493
|
utils.debug('nylas-additional-participants', 'updateFormValue');
|
|
494
494
|
const participants = this.isRoundRobinConfig ? (this.includeOrganizerAsParticipant ? this.participants : this.participants.filter(p => !p.is_organizer)) : this.participants;
|
|
495
495
|
if (participants.length === 0) {
|
|
496
|
-
this.isInternalsAvailable
|
|
496
|
+
this.isInternalsAvailable && this.internals.setValidity({ customError: true }, 'Please add at least one participant');
|
|
497
497
|
this.error = 'Please add at least one participant';
|
|
498
498
|
}
|
|
499
499
|
else {
|
|
500
|
-
this.isInternalsAvailable
|
|
500
|
+
this.isInternalsAvailable && this.internals.setValidity({});
|
|
501
501
|
this.error = '';
|
|
502
|
-
this.isInternalsAvailable
|
|
502
|
+
this.isInternalsAvailable && this.internals.setFormValue(JSON.stringify(participants), this.name);
|
|
503
503
|
this.valueChanged.emit({ value: JSON.stringify(participants), name: this.name });
|
|
504
504
|
}
|
|
505
505
|
}
|
|
@@ -510,7 +510,7 @@ const NylasAdditionalParticipants = class {
|
|
|
510
510
|
});
|
|
511
511
|
}
|
|
512
512
|
render() {
|
|
513
|
-
return (index$1.h(index$1.Host, { key: '
|
|
513
|
+
return (index$1.h(index$1.Host, { key: '16a28d7d8ee91b685a22472d8a90721a5074d798', part: "nap" }, index$1.h("nylas-form-card", { key: '9fde59eadfcdf05c3b4add30a5c35f9b21d00c30' }, index$1.h("h3", { key: '82e3c3ad537ef4c60d19695f11e481bac2ed31ae', slot: "header-title", class: "nylas-additional-participants__title", part: "nap__title" }, "Participants"), index$1.h("p", { key: '4df3d661d2c6801ba8e88d82853ae562ed3be8e8', slot: "header-subtitle", class: "nylas-additional-participants__subtitle", part: "nap__subtitle" }, "Add people in your team or organization to join the event."), index$1.h("div", { key: '3ccb34354c025b52760433683812acf37b480e77', slot: "content", class: "nylas-additional-participants__content" }, index$1.h("div", { key: '007cf8396921637cf230cc26d73de147169cd250' }, this.participants.map((participant, index) => {
|
|
514
514
|
return (index$1.h("div", { class: 'nylas-additional-participants__input_group', part: "nap__input_group" }, !participant.is_organizer && index$1.h("label", null, `Participant ${index}`), index$1.h("div", { part: "nap__input_wrapper", class: {
|
|
515
515
|
'nylas-additional-participants__input_wrapper': true,
|
|
516
516
|
'nylas-additional-participants__input_wrapper_organizer': participant?.is_organizer === true,
|
|
@@ -520,7 +520,7 @@ const NylasAdditionalParticipants = class {
|
|
|
520
520
|
this.includeOrganizerAsParticipant = !this.includeOrganizerAsParticipant;
|
|
521
521
|
this.updateFormValue();
|
|
522
522
|
}, checked: this.includeOrganizerAsParticipant }), index$1.h("label", { htmlFor: `organizer_participant`, "aria-label": "Include as participant" }, "Participant", index$1.h("tooltip-component", { id: "organizer_participant_tooltip" }, index$1.h("info-icon", { slot: "tooltip-icon" }), index$1.h("span", { slot: "tooltip-content" }, index$1.h("strong", null, "Include Organizer:"), " The organizer (you) will be included in the round-robin rotation. ", index$1.h("br", null), index$1.h("strong", null, "Exclude Organizer:"), " The organizer (you) will not be included in the round-robin rotation."))))))) : (index$1.h("input-dropdown", { id: `${index}`, name: `${index}`, filterable: true, inputValue: participant.email, options: this.getArrayDifference(this.participantOptions || [], this.participants) })), !participant.is_organizer && (index$1.h("button", { onClick: () => this.removeParticipant(index), part: "nap__remove-participant" }, index$1.h("close-icon", null))))), !participant.is_valid && (index$1.h("p", { class: "nylas-additional-participants__error", part: "nap__error" }, this.participantErrors[index]))));
|
|
523
|
-
}), index$1.h("p", { key: '
|
|
523
|
+
}), index$1.h("p", { key: 'f1dd954c137093fa9e474f3886e4b5320aeb5e2e', class: "nylas-additional-participants__error", part: "nap__error" }, this.error)), index$1.h("button", { key: '859585010fc9fce314b856f5e7e07ac8b8c47b88', class: "nylas-additional-participants__add", part: "nap__add-participant", onClick: () => this.addParticipant() }, index$1.h("add-circle-icon", { key: 'aec7eb5de30e66bca29b73962f356109471c2e9e' }), " ", index$1.h("span", { key: 'f07ecfaa4db46f7954d734314c46f2d773158730' }, "Add ", this.participants.length > 1 ? 'another' : 'a', " participant"))))));
|
|
524
524
|
}
|
|
525
525
|
static get formAssociated() { return true; }
|
|
526
526
|
get host() { return index$1.getElement(this); }
|
|
@@ -6947,17 +6947,20 @@ const NylasEventTitle = class {
|
|
|
6947
6947
|
this.ariaActivedescendant = this.filteredTokens[0].label;
|
|
6948
6948
|
}
|
|
6949
6949
|
}
|
|
6950
|
+
get isInternalsAvailable() {
|
|
6951
|
+
return typeof this.internals !== 'undefined' && typeof this.internals.setValidity === 'function' && typeof this.internals.setFormValue === 'function';
|
|
6952
|
+
}
|
|
6950
6953
|
updateEventTitle(text) {
|
|
6951
6954
|
const value = text.replace(/ +/g, ' ');
|
|
6952
|
-
if (value === '') {
|
|
6953
|
-
this.internals?.setValidity({ customError: true }, `Event title is required`, this.titleRef);
|
|
6955
|
+
if (value === '' || /^[\s]*$/.test(value)) {
|
|
6954
6956
|
this.validationError = 'Event title is required';
|
|
6957
|
+
this.isInternalsAvailable && this.internals?.setValidity({ customError: true }, `Event title is required`, this.titleRef);
|
|
6955
6958
|
}
|
|
6956
6959
|
else {
|
|
6957
|
-
this.internals?.setValidity({ customError: false });
|
|
6958
6960
|
this.validationError = '';
|
|
6961
|
+
this.isInternalsAvailable && this.internals?.setValidity({ customError: false });
|
|
6959
6962
|
}
|
|
6960
|
-
this.internals?.setFormValue(value, this.name);
|
|
6963
|
+
this.isInternalsAvailable && this.internals?.setFormValue(value, this.name);
|
|
6961
6964
|
this.valueChanged.emit({ value: value, name: this.name });
|
|
6962
6965
|
}
|
|
6963
6966
|
resetDropdown() {
|
|
@@ -6968,10 +6971,10 @@ const NylasEventTitle = class {
|
|
|
6968
6971
|
return (index$1.h("div", { class: "token-label" }, index$1.h("span", { class: "token" }, token.token), index$1.h("span", { class: "description" }, token.description)));
|
|
6969
6972
|
}
|
|
6970
6973
|
render() {
|
|
6971
|
-
return (index$1.h(index$1.Host, { key: '
|
|
6974
|
+
return (index$1.h(index$1.Host, { key: 'c9bef753b69793b6db0569ec750a04ceb4a51de8' }, index$1.h("div", { key: 'b80559c8ebe73437fbd347a034fa577c0ee4a60b', class: "nylas-event-title", part: "net" }, index$1.h("label", { key: 'c8b911bdfd24a7934b8359d5ba9a2531edc606c1', htmlFor: "title" }, "Event title", index$1.h("span", { key: '953b07bae8f6ebbcc465cc3349b6b97ecf8cd544', class: "required" }, "*")), index$1.h("div", { key: 'cbc5559de86b4c3a45c30088fba3d2a3382b4311', class: {
|
|
6972
6975
|
title: true,
|
|
6973
6976
|
error: this.validationError !== '',
|
|
6974
|
-
}, part: "net__title", ref: el => (this.titleRef = el), contentEditable: "true", onInput: e => this.handleChange(e), onKeyDown: event => this.handleInputKeyDown(event) }), this.showTokens && this.filteredTokens?.length > 0 && (index$1.h("div", { class: "token-options", part: "net__dropdown-content" }, index$1.h("ul", { tabindex: "-1", role: "listbox", "aria-label": this.name, "aria-activedescendant": this.ariaActivedescendant }, this.filteredTokens.map(option => (index$1.h("li", { tabindex: "0", key: option.label, id: option.label, class: { active: this.ariaActivedescendant === option.label }, onClick: e => this.selectOption(e, option), role: "option" }, this.getLabelHTML(option.labelHTML))))))), index$1.h("span", { key: '
|
|
6977
|
+
}, part: "net__title", ref: el => (this.titleRef = el), contentEditable: "true", onInput: e => this.handleChange(e), onKeyDown: event => this.handleInputKeyDown(event) }), this.showTokens && this.filteredTokens?.length > 0 && (index$1.h("div", { class: "token-options", part: "net__dropdown-content" }, index$1.h("ul", { tabindex: "-1", role: "listbox", "aria-label": this.name, "aria-activedescendant": this.ariaActivedescendant }, this.filteredTokens.map(option => (index$1.h("li", { tabindex: "0", key: option.label, id: option.label, class: { active: this.ariaActivedescendant === option.label }, onClick: e => this.selectOption(e, option), role: "option" }, this.getLabelHTML(option.labelHTML))))))), index$1.h("span", { key: 'cddf49a23d611b00b5a06a431bb6033ee564fba6', class: "help-text" }, "Create a dynamic templated event title by typing ", index$1.h("code", { key: 'b87cf9d630645aedf2c72bb7356ce8737406c127' }, "$"), " and selecting a template item.", index$1.h("span", { key: '75ad5946a822c3ee23ddb46f29b611dd68875d05', class: "label-icon" }, index$1.h("tooltip-component", { key: '20a6fb4aaac4d1ad5264d30364fc695de7f0ca11' }, index$1.h("info-icon", { key: '22413e474fd5113bfa3663d137a67cd2da94268f', slot: "tooltip-icon" }), index$1.h("span", { key: 'f266824868c09cf41564fe1fcbc42e9113bf06fb', slot: "tooltip-content" }, "For example, Interview with ", index$1.h("code", { key: '0989a865eb48e0a0363ec69218be46ab7d6f18f1' }, '${invitee}'))))), this.validationError != '' && index$1.h("span", { class: "error-message" }, this.validationError))));
|
|
6975
6978
|
}
|
|
6976
6979
|
static get formAssociated() { return true; }
|
|
6977
6980
|
get host() { return index$1.getElement(this); }
|
|
@@ -8454,22 +8457,29 @@ var __metadata$2 = (undefined && undefined.__metadata) || function (k, v) {
|
|
|
8454
8457
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
|
|
8455
8458
|
return Reflect.metadata(k, v);
|
|
8456
8459
|
};
|
|
8460
|
+
const reminderTimeOptions = [
|
|
8461
|
+
{ value: 60 * 24, label: 'day' },
|
|
8462
|
+
{ value: 60, label: 'hour' },
|
|
8463
|
+
{ value: 1, label: 'minute' },
|
|
8464
|
+
];
|
|
8457
8465
|
function getInitialTimeValue(timeInMinutes) {
|
|
8458
8466
|
if (!timeInMinutes)
|
|
8459
8467
|
return 30;
|
|
8460
|
-
|
|
8461
|
-
|
|
8462
|
-
|
|
8463
|
-
|
|
8468
|
+
for (const option of reminderTimeOptions) {
|
|
8469
|
+
if (timeInMinutes % option.value === 0) {
|
|
8470
|
+
return timeInMinutes / option.value;
|
|
8471
|
+
}
|
|
8472
|
+
}
|
|
8464
8473
|
return timeInMinutes;
|
|
8465
8474
|
}
|
|
8466
8475
|
function getInitialTimeIncrement(timeInMinutes) {
|
|
8467
8476
|
if (!timeInMinutes)
|
|
8468
|
-
return
|
|
8469
|
-
|
|
8470
|
-
|
|
8471
|
-
|
|
8472
|
-
|
|
8477
|
+
return 1;
|
|
8478
|
+
for (const option of reminderTimeOptions) {
|
|
8479
|
+
if (timeInMinutes % option.value === 0) {
|
|
8480
|
+
return option.value;
|
|
8481
|
+
}
|
|
8482
|
+
}
|
|
8473
8483
|
return 1;
|
|
8474
8484
|
}
|
|
8475
8485
|
const NylasReminderTime = class {
|
|
@@ -8494,15 +8504,6 @@ const NylasReminderTime = class {
|
|
|
8494
8504
|
utils.debug('nylas-reminder-time', 'elementNameChangedHandler', newValue);
|
|
8495
8505
|
this.host.setAttribute('name', newValue);
|
|
8496
8506
|
}
|
|
8497
|
-
eventReminderTimeMinutesChangedHandler(newValue, oldValue) {
|
|
8498
|
-
utils.debug('nylas-reminder-time', 'eventReminderTimeMinutesChangedHandler', newValue);
|
|
8499
|
-
if (newValue === oldValue) {
|
|
8500
|
-
return;
|
|
8501
|
-
}
|
|
8502
|
-
this.reminderTime = getInitialTimeValue(newValue);
|
|
8503
|
-
this.reminderTimeincrement = getInitialTimeIncrement(newValue);
|
|
8504
|
-
this.reminderTimeMinutes = newValue;
|
|
8505
|
-
}
|
|
8506
8507
|
reminderTimeMinutesChangedHandler(newValue, oldValue) {
|
|
8507
8508
|
utils.debug('nylas-reminder-time', 'reminderTimeMinutesChangedHandler', newValue);
|
|
8508
8509
|
if (newValue === oldValue) {
|
|
@@ -8516,14 +8517,17 @@ const NylasReminderTime = class {
|
|
|
8516
8517
|
componentWillLoad() {
|
|
8517
8518
|
utils.debug('nylas-reminder-time', 'componentWillLoad');
|
|
8518
8519
|
this.host.setAttribute('name', this.name);
|
|
8519
|
-
this.setReminderTimeMinuteOptions();
|
|
8520
8520
|
}
|
|
8521
8521
|
componentDidLoad() {
|
|
8522
8522
|
utils.debug('nylas-reminder-time', 'componentDidLoad');
|
|
8523
|
+
this.setReminderTimeMinuteOptions();
|
|
8523
8524
|
}
|
|
8524
8525
|
disconnectedCallback() {
|
|
8525
8526
|
utils.debug('nylas-reminder-time', 'disconnectedCallback');
|
|
8526
8527
|
}
|
|
8528
|
+
get isInternalsAvailable() {
|
|
8529
|
+
return this.internals !== undefined && typeof this.internals.setFormValue === 'function';
|
|
8530
|
+
}
|
|
8527
8531
|
setReminderTimeMinuteOptions() {
|
|
8528
8532
|
if (this.reminderTimeincrement === 1) {
|
|
8529
8533
|
this.reminderTimeMinutesOptions = constants.REMINDER_MINUTE_OPTIONS;
|
|
@@ -8547,28 +8551,22 @@ const NylasReminderTime = class {
|
|
|
8547
8551
|
}
|
|
8548
8552
|
this.setReminderTimeMinuteOptions();
|
|
8549
8553
|
this.reminderTimeMinutes = this.reminderTime * this.reminderTimeincrement;
|
|
8550
|
-
this.internals.setFormValue(this.reminderTimeMinutes.toString(), this.name);
|
|
8554
|
+
this.isInternalsAvailable && this.internals.setFormValue(this.reminderTimeMinutes.toString(), this.name);
|
|
8551
8555
|
}
|
|
8552
8556
|
inputOptionChangedHandler(event) {
|
|
8553
8557
|
utils.debug('nylas-calendar-picker', 'inputOptionChangedHandler', event.detail);
|
|
8554
8558
|
const { value } = event.detail;
|
|
8555
8559
|
this.reminderTime = value;
|
|
8556
8560
|
this.reminderTimeMinutes = this.reminderTime * this.reminderTimeincrement;
|
|
8557
|
-
this.internals.setFormValue(this.reminderTimeMinutes.toString(), this.name);
|
|
8561
|
+
this.isInternalsAvailable && this.internals.setFormValue(this.reminderTimeMinutes.toString(), this.name);
|
|
8558
8562
|
}
|
|
8559
8563
|
render() {
|
|
8560
|
-
|
|
8561
|
-
{ value: 1, label: 'minute' },
|
|
8562
|
-
{ value: 60, label: 'hour' },
|
|
8563
|
-
{ value: 60 * 24, label: 'day' },
|
|
8564
|
-
];
|
|
8565
|
-
return (index$1.h(index$1.Host, { key: 'd5f118391bdd7e4779f6eca15335285047fdb350' }, index$1.h("div", { key: '2dd8d3ba52d4f95480c9cf1fdaf5d0f1f7c1e523', class: "nylas-reminder-time", part: "nrt" }, index$1.h("div", { key: '3799c4b266f4078e22ad78b86225ef9abdc5fa49', class: "nylas-reminder-time__wrapper" }, index$1.h("input-dropdown", { key: '004b6336c041660e1424ac44f16e82c8a5a2ca53', name: 'reminder-time', options: this.reminderTimeMinutesOptions, inputValue: this.reminderTime.toString(), exportparts: "id_dropdown: nrt__input_dropdown, id_dropdown-input: nrt__input_dropdown-input, id_dropdown-content: nrt__input_dropdown-content", defaultInputOption: this.reminderTimeMinutesOptions.find(i => i.value == this.reminderTime) ?? reminderTimeOptions[0] }), index$1.h("select-dropdown", { key: '6a42c7f4633d89dd9a94d3c2f119e151613667ec', name: 'reminder-time-unit', options: reminderTimeOptions, pluralizedLabel: this.reminderTime > 1 ? 's' : '', exportparts: "sd_dropdown: nrt__dropdown, sd_dropdown-button: nrt__dropdown-button, sd_dropdown-content: nrt__dropdown-content", defaultSelectedOption: reminderTimeOptions.find(i => i.value == this.reminderTimeincrement) ?? reminderTimeOptions[0], withSearch: false })))));
|
|
8564
|
+
return (index$1.h(index$1.Host, { key: 'b089eb10d76d001112d867a61889a685b8908355' }, index$1.h("div", { key: '13b8479fb822135c00ff8f97974c8269731b2a84', class: "nylas-reminder-time", part: "nrt" }, index$1.h("div", { key: '728e90c61077b1037aa285329f11a09a296b33b4', class: "nylas-reminder-time__wrapper" }, index$1.h("input-dropdown", { key: '40a22b75424d4b3b552a2dc1b60e79a8cb595032', name: 'reminder-time', options: this.reminderTimeMinutesOptions, inputValue: this.reminderTime.toString(), exportparts: "id_dropdown: nrt__input_dropdown, id_dropdown-input: nrt__input_dropdown-input, id_dropdown-content: nrt__input_dropdown-content", defaultInputOption: this.reminderTimeMinutesOptions.find(i => i.value == this.reminderTime) ?? reminderTimeOptions[0] }), index$1.h("select-dropdown", { key: '6128bb953b883be5341ba005438ab353b0016c48', name: 'reminder-time-unit', options: [...reminderTimeOptions].sort((a, b) => a.value - b.value), pluralizedLabel: this.reminderTime > 1 ? 's' : '', exportparts: "sd_dropdown: nrt__dropdown, sd_dropdown-button: nrt__dropdown-button, sd_dropdown-content: nrt__dropdown-content", defaultSelectedOption: reminderTimeOptions.find(i => i.value == this.reminderTimeincrement) ?? reminderTimeOptions[0], withSearch: false })))));
|
|
8566
8565
|
}
|
|
8567
8566
|
static get formAssociated() { return true; }
|
|
8568
8567
|
get host() { return index$1.getElement(this); }
|
|
8569
8568
|
static get watchers() { return {
|
|
8570
8569
|
"name": ["elementNameChangedHandler"],
|
|
8571
|
-
"eventReminderTimeMinutes": ["eventReminderTimeMinutesChangedHandler"],
|
|
8572
8570
|
"reminderTimeMinutes": ["reminderTimeMinutesChangedHandler"]
|
|
8573
8571
|
}; }
|
|
8574
8572
|
};
|