@hubspot/ui-extensions 0.8.12 → 0.8.13
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 +7 -0
- 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
|
+
* @defaulValue `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;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hubspot/ui-extensions",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.13",
|
|
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": "346e376258bf50d9a124e7f0a64b9dfdcf334006"
|
|
55
55
|
}
|