@asaleh37/ui-base 25.8.23-2 → 25.8.23-3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@asaleh37/ui-base",
3
- "version": "25.8.23-2",
3
+ "version": "25.8.23-3",
4
4
  "description": "",
5
5
  "license": "ISC",
6
6
  "author": "Ahmed Saleh Mohamed",
@@ -113,6 +113,7 @@ const MailRecipientGrid: React.FC<MailRecipientGridProps> = (props) => {
113
113
  options: [{ value: "To" }, { value: "CC" }],
114
114
  optionDisplayField: "value",
115
115
  optionValueField: "value",
116
+ comboboxValueDataType: "string",
116
117
  },
117
118
  },
118
119
  {
@@ -142,7 +143,7 @@ const MailRecipientGrid: React.FC<MailRecipientGridProps> = (props) => {
142
143
  apiActions={apiActions}
143
144
  data={data}
144
145
  hideInfoBar={true}
145
- gridLoadParametersValues={{mailTemplateId:props.selectedRecord.id}}
146
+ gridLoadParametersValues={{ mailTemplateId: props.selectedRecord.id }}
146
147
  setData={setData}
147
148
  editMode={{ editMode: "row" }}
148
149
  formElements={formElements}
@@ -210,6 +210,7 @@ const MailSenderConfigGrid: React.FC = () => {
210
210
  fieldName: "mailEngine",
211
211
  required: true,
212
212
  fieldType: "combobox",
213
+ comboboxValueDataType: "string",
213
214
  options: [{ value: "Gmail" }, { value: "Azure" }],
214
215
  optionDisplayField: "value",
215
216
  optionValueField: "value",