@bigbinary/neeto-molecules 4.0.124 → 4.0.125

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.
@@ -2213,25 +2213,37 @@ var SendToFields = function SendToFields(_ref) {
2213
2213
  onClick: function onClick() {
2214
2214
  return setIsBulkUploadPaneOpen(true);
2215
2215
  }
2216
- }), showSendToField && /*#__PURE__*/jsxRuntime.jsx(MultiEmailInput, _objectSpread(_objectSpread({
2217
- name: "sendTo",
2218
- ref: sendToFieldRef
2219
- }, emailInputProps), {}, {
2220
- suffix: showCcBccButton && /*#__PURE__*/jsxRuntime.jsx(Button, {
2221
- "data-cy": "cc-bcc-button",
2222
- "data-testid": "cc-bcc-button",
2223
- label: t("neetoMolecules.emailForm.labels.ccBcc"),
2224
- size: "small",
2225
- style: "link",
2226
- onClick: handelCcBccButtonClick
2227
- })
2228
- })), (showCopyEmails || showCcField || showBccField) && /*#__PURE__*/jsxRuntime.jsxs("div", {
2229
- className: "mt-5 flex w-full flex-col gap-6",
2230
- children: [(showCopyEmails || showCcField) && /*#__PURE__*/jsxRuntime.jsx(MultiEmailInput, _objectSpread({
2231
- name: "sendToBcc"
2232
- }, ccInputProps)), (showCopyEmails || showBccField) && /*#__PURE__*/jsxRuntime.jsx(MultiEmailInput, _objectSpread({
2233
- name: "sendToCc"
2234
- }, bccInputProps))]
2216
+ }), showSendToField && /*#__PURE__*/jsxRuntime.jsx("div", {
2217
+ className: "neeto-ui-border-gray-200 w-full border-b pb-1",
2218
+ children: /*#__PURE__*/jsxRuntime.jsx(MultiEmailInput, _objectSpread(_objectSpread({
2219
+ name: "sendTo",
2220
+ ref: sendToFieldRef
2221
+ }, emailInputProps), {}, {
2222
+ suffix: showCcBccButton && /*#__PURE__*/jsxRuntime.jsx(Button, {
2223
+ "data-cy": "cc-bcc-button",
2224
+ "data-testid": "cc-bcc-button",
2225
+ label: t("neetoMolecules.emailForm.labels.ccBcc"),
2226
+ size: "small",
2227
+ style: "link",
2228
+ onClick: handelCcBccButtonClick,
2229
+ onKeyDown: function onKeyDown(event) {
2230
+ return event.stopPropagation();
2231
+ }
2232
+ })
2233
+ }))
2234
+ }), (showCopyEmails || showCcField || showBccField) && /*#__PURE__*/jsxRuntime.jsxs("div", {
2235
+ className: "mt-5 flex w-full flex-col gap-5",
2236
+ children: [(showCopyEmails || showCcField) && /*#__PURE__*/jsxRuntime.jsx("div", {
2237
+ className: "neeto-ui-border-gray-200 w-full border-b pb-1",
2238
+ children: /*#__PURE__*/jsxRuntime.jsx(MultiEmailInput, _objectSpread({
2239
+ name: "sendToBcc"
2240
+ }, ccInputProps))
2241
+ }), (showCopyEmails || showBccField) && /*#__PURE__*/jsxRuntime.jsx("div", {
2242
+ className: "neeto-ui-border-gray-200 w-full border-b pb-1",
2243
+ children: /*#__PURE__*/jsxRuntime.jsx(MultiEmailInput, _objectSpread({
2244
+ name: "sendToCc"
2245
+ }, bccInputProps))
2246
+ })]
2235
2247
  }), /*#__PURE__*/jsxRuntime.jsx(BulkUploadPane, {
2236
2248
  fileSize: CSV_FILE_SIZE_IN_KB,
2237
2249
  handleFileSubmit: handleCSVFile,