@embedreach/components 0.1.67 → 0.1.69
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 +8091 -6000
- package/dist/index.d.ts +4 -3
- package/dist/index.umd.js +114 -114
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -5,7 +5,8 @@ import { LucideProps } from 'lucide-react';
|
|
|
5
5
|
import { RefAttributes } from 'react';
|
|
6
6
|
|
|
7
7
|
export declare enum AutomationTriggerType {
|
|
8
|
-
ONE_TIME = "one_time"
|
|
8
|
+
ONE_TIME = "one_time",
|
|
9
|
+
TRIGGER_BASED = "trigger_based"
|
|
9
10
|
}
|
|
10
11
|
|
|
11
12
|
export declare function CreateAutomationDialog({ open, setOpen, onClose, iconDefinitions, automationType, }: CreateAutomationDialogProps): JSX_2.Element;
|
|
@@ -226,11 +227,11 @@ declare interface ThemeStyles {
|
|
|
226
227
|
'font-heading'?: string;
|
|
227
228
|
}
|
|
228
229
|
|
|
229
|
-
export declare const ViewAutomationModal: default_2.FC<
|
|
230
|
+
export declare const ViewAutomationModal: default_2.FC<ViewAutomationProps & {
|
|
230
231
|
inRouter?: boolean;
|
|
231
232
|
}>;
|
|
232
233
|
|
|
233
|
-
declare type
|
|
234
|
+
declare type ViewAutomationProps = {
|
|
234
235
|
/**
|
|
235
236
|
* The id of the automation to view
|
|
236
237
|
*/
|