@embedreach/components 0.1.69 → 0.1.71

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/index.d.ts CHANGED
@@ -28,9 +28,9 @@ declare interface CreateAutomationModalProps {
28
28
  */
29
29
  onClose?: (createdAutomation: string | false | 'error') => void;
30
30
  /**
31
- * Optional keys to override the default icon definitions
31
+ * Optional icon definitions to use for the automation
32
32
  */
33
- iconDefinitions?: Partial<IconDefinitionsType>;
33
+ iconDefinitions?: IconDefinitionsType;
34
34
  /**
35
35
  * Optionally skip the selection of automation and jump to the automation type
36
36
  * Currently only supports one time automation
@@ -40,9 +40,9 @@ declare interface CreateAutomationModalProps {
40
40
  automationType?: AutomationTriggerType.ONE_TIME;
41
41
  }
42
42
 
43
- export declare const Engage: default_2.FC<{
44
- iconDefinitions: Partial<IconDefinitionsType>;
45
- }>;
43
+ export declare const Engage: ({ iconDefinitions: mergedIconDefinitions, }: {
44
+ iconDefinitions: IconDefinitionsType;
45
+ }) => JSX_2.Element;
46
46
 
47
47
  /**
48
48
  * Represents the available features in our application.
@@ -241,7 +241,7 @@ declare type ViewAutomationProps = {
241
241
  */
242
242
  autoOpenEditPopup?: boolean;
243
243
  /**
244
- * Optional keys to override the default icon definitions
244
+ * Optional icon definitions to use for the automation
245
245
  */
246
246
  iconDefinitions?: IconDefinitionsType;
247
247
  /**