@hubspot/ui-extensions 0.8.55 → 0.8.56
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.
|
@@ -78,4 +78,9 @@ declare const Popover: "Popover" & {
|
|
|
78
78
|
readonly props?: experimentalTypes.PopoverProps | undefined;
|
|
79
79
|
readonly children?: true | undefined;
|
|
80
80
|
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Popover", experimentalTypes.PopoverProps, true>>;
|
|
81
|
-
|
|
81
|
+
declare const FileInput: "FileInput" & {
|
|
82
|
+
readonly type?: "FileInput" | undefined;
|
|
83
|
+
readonly props?: experimentalTypes.FileInputProps | undefined;
|
|
84
|
+
readonly children?: true | undefined;
|
|
85
|
+
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"FileInput", experimentalTypes.FileInputProps, true>>;
|
|
86
|
+
export { Iframe, MediaObject, Inline, Stack2, Center, SimpleGrid, GridItem, Grid, SettingsView, ExpandableText, Popover, FileInput, };
|
|
@@ -37,4 +37,5 @@ const ExpandableText = createRemoteReactComponent('ExpandableText');
|
|
|
37
37
|
const Popover = createRemoteReactComponent('Popover', {
|
|
38
38
|
fragmentProps: ['header', 'body', 'footer'],
|
|
39
39
|
});
|
|
40
|
-
|
|
40
|
+
const FileInput = createRemoteReactComponent('FileInput');
|
|
41
|
+
export { Iframe, MediaObject, Inline, Stack2, Center, SimpleGrid, GridItem, Grid, SettingsView, ExpandableText, Popover, FileInput, };
|
|
@@ -139,4 +139,11 @@ export interface PopoverProps {
|
|
|
139
139
|
arrowSize?: 'none' | 'small' | 'medium';
|
|
140
140
|
onClick?: ReactionsHandler<ExtensionEvent>;
|
|
141
141
|
}
|
|
142
|
+
export interface FileInputProps {
|
|
143
|
+
value?: File | {
|
|
144
|
+
name: string;
|
|
145
|
+
};
|
|
146
|
+
name: string;
|
|
147
|
+
onChange: (event: any) => void;
|
|
148
|
+
}
|
|
142
149
|
export {};
|
package/dist/types.d.ts
CHANGED
|
@@ -2610,6 +2610,8 @@ interface ActivityCreatorActionArgs {
|
|
|
2610
2610
|
objectTypeId: string;
|
|
2611
2611
|
objectId: number;
|
|
2612
2612
|
windowVariant?: 'windowed' | 'fullscreen';
|
|
2613
|
+
initialEmailBody?: string;
|
|
2614
|
+
initialEmailSubject?: string;
|
|
2613
2615
|
}
|
|
2614
2616
|
/** @ignore */
|
|
2615
2617
|
interface EngagementAppLinkArgs {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hubspot/ui-extensions",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.56",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"ts-jest": "^29.1.1",
|
|
67
67
|
"typescript": "5.0.4"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "ffd40cf0cff95bf11cb470142daf13ea320c95f0"
|
|
70
70
|
}
|