@hubspot/ui-extensions 0.8.12 → 0.8.14
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/types.d.ts +9 -1
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -836,6 +836,12 @@ export interface TileProps {
|
|
|
836
836
|
* Sets the content that will render inside the component. This prop is passed implicitly by providing sub-components.
|
|
837
837
|
*/
|
|
838
838
|
children: ReactNode;
|
|
839
|
+
/**
|
|
840
|
+
* When set to `true`, reduces the default amount of padding around the contents of the Tile.
|
|
841
|
+
*
|
|
842
|
+
* @defaultValue `false`
|
|
843
|
+
*/
|
|
844
|
+
compact?: boolean;
|
|
839
845
|
/**
|
|
840
846
|
* When set to `true`, removes left and right padding from tile contents.
|
|
841
847
|
*
|
|
@@ -1281,6 +1287,7 @@ type AlertType = 'info' | 'warning' | 'success' | 'danger' | 'tip' | undefined;
|
|
|
1281
1287
|
export type AddAlertAction = (args: {
|
|
1282
1288
|
type?: AlertType;
|
|
1283
1289
|
message: string;
|
|
1290
|
+
title?: string;
|
|
1284
1291
|
}) => void;
|
|
1285
1292
|
/** @ignore */
|
|
1286
1293
|
export type ReloadPageAction = () => void;
|
|
@@ -1311,7 +1318,7 @@ export interface CrmMiddleExtensionPoint extends ExtensionPointContract {
|
|
|
1311
1318
|
CrmDataHighlight: ComponentType<CrmDataHighlightProps>;
|
|
1312
1319
|
CrmReport: ComponentType<CrmReportProps>;
|
|
1313
1320
|
CrmAssociationPivot: ComponentType<CrmAssociationPivotProps>;
|
|
1314
|
-
CrmObjectProperty
|
|
1321
|
+
CrmObjectProperty?: ComponentType<CrmObjectPropertyProps>;
|
|
1315
1322
|
CrmAssociationPropertyList: ComponentType<CrmAssociationPropertyListProps>;
|
|
1316
1323
|
CrmStageTracker: ComponentType<CrmStageTrackerProps>;
|
|
1317
1324
|
CrmStatistics?: ComponentType<CrmStatisticsProps>;
|
|
@@ -1555,6 +1562,7 @@ interface OpenIframeActionPayload {
|
|
|
1555
1562
|
width: number;
|
|
1556
1563
|
associatedObjectProperties?: string[];
|
|
1557
1564
|
title?: string;
|
|
1565
|
+
flush?: boolean;
|
|
1558
1566
|
}
|
|
1559
1567
|
/**
|
|
1560
1568
|
* The props type for {@link !components.LoadingSpinner}.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hubspot/ui-extensions",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.14",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"typescript": "5.0.4"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "1850d1e7967463bfec84fddaa9d5b167a76b55a7"
|
|
55
55
|
}
|