groovinads-ui 1.2.66 → 1.2.68

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/README.md CHANGED
@@ -594,7 +594,6 @@ const ExampleInputEmail = () => {
594
594
  /* The responses from the three APIs expect an array of strings (or an empty array) */
595
595
  apiGetEmail='incert/your/endpoint'
596
596
  apiPostEmail='incert/your/endpoint'
597
- apiDeleteEmail='incert/your/endpoint'
598
597
  showModal={showModal} // showModal indicates the visibility of the parent component of InputEmail.
599
598
  />
600
599
  );
@@ -604,9 +603,8 @@ export default ExampleInputChip;
604
603
 
605
604
  | Property | Type | Required | Options | Default | Description |
606
605
  | ---------------- | ------- | -------- | -------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
607
- | `apiDeleteEmail` | String | Yes | n/a | n/a | Endpoint required to remove emails from the list of added emails. |
608
606
  | `apiGetEmail` | Array | Yes | n/a | n/a | Endpoint required to fetch the email list. The response should be an array of strings (or empy array) displayed below the input and `titleList`. |
609
- | `apiPostEmail` | String | Yes | n/a | n/a | Endpoint required to update the list of added emails. It is used to add emails to the existing list. |
607
+ | `apiPostEmail` | String | Yes | n/a | n/a | An endpoint is required to add or remove emails from the existing email list. |
610
608
  | `label` | String | No | n/a | '' | Allows adding custom text as the input label. |
611
609
  | `showModal` | Boolean | No | `true` `false` | `true` | If true, the email list received from apiGetEmail will be shown when rendering InputEmail. |
612
610
  | `textButton` | String | No | n/a | '' | Allows adding custom text to the button for adding emails. |