@embedreach/components 0.1.46 → 0.1.48
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/chunks/index.js +200 -138
- package/dist/index.d.ts +4 -4
- package/dist/index.umd.js +111 -111
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -14,11 +14,11 @@ declare interface CreateAutomationModalProps {
|
|
|
14
14
|
/**
|
|
15
15
|
* Optional keys to override the default icon definitions
|
|
16
16
|
*/
|
|
17
|
-
iconDefinitions?: IconDefinitionsType
|
|
17
|
+
iconDefinitions?: Partial<IconDefinitionsType>;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
export declare const Engage: default_2.FC<{
|
|
21
|
-
iconDefinitions: IconDefinitionsType
|
|
21
|
+
iconDefinitions: Partial<IconDefinitionsType>;
|
|
22
22
|
}>;
|
|
23
23
|
|
|
24
24
|
/**
|
|
@@ -101,7 +101,7 @@ declare type ReauthCallback = () => Promise<string> | void;
|
|
|
101
101
|
declare interface SDKCallbacks {
|
|
102
102
|
/** Called when reauthentication is required */
|
|
103
103
|
onReauthRequested: ReauthCallback;
|
|
104
|
-
/** Called when tenant information is requested
|
|
104
|
+
/** Called when tenant information is requested */
|
|
105
105
|
onTenantInformationRequested?: () => void;
|
|
106
106
|
}
|
|
107
107
|
|
|
@@ -120,7 +120,7 @@ declare interface SegmentBuilderProps {
|
|
|
120
120
|
/**
|
|
121
121
|
* Optional keys to override the default icon definitions
|
|
122
122
|
*/
|
|
123
|
-
iconDefinitions?: IconDefinitionsType
|
|
123
|
+
iconDefinitions?: Partial<IconDefinitionsType>;
|
|
124
124
|
}
|
|
125
125
|
|
|
126
126
|
/**
|