@hubspot/ui-extensions 0.8.22 → 0.8.23

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +3 -2
  2. package/package.json +2 -2
package/dist/types.d.ts CHANGED
@@ -59,7 +59,7 @@ export interface ButtonProps {
59
59
  *
60
60
  * @defaultValue `"secondary"`
61
61
  */
62
- variant?: 'primary' | 'secondary' | 'destructive';
62
+ variant?: 'primary' | 'secondary' | 'destructive' | 'transparent';
63
63
  /**
64
64
  * Sets the HTML attribute "role" of the button.
65
65
  *
@@ -1573,13 +1573,14 @@ interface ActivityCreatorActionArgs {
1573
1573
  interface ActionArgs {
1574
1574
  PREVIEW_OBJECT: ObjectCoordinates;
1575
1575
  ADD_NOTE: ActivityCreatorActionArgs;
1576
+ ADD_TASK: ActivityCreatorActionArgs;
1576
1577
  SEND_EMAIL: ActivityCreatorActionArgs;
1577
1578
  SCHEDULE_MEETING: ActivityCreatorActionArgs;
1578
1579
  OPEN_RECORD_ASSOCIATION_FORM: OpenRecordAssociationFormArgs;
1579
1580
  }
1580
1581
  /** @ignore */
1581
1582
  export type ArgsFor<SpecificActionType extends ActionType> = ActionArgs[SpecificActionType];
1582
- export type ActionType = 'PREVIEW_OBJECT' | 'ADD_NOTE' | 'SEND_EMAIL' | 'SCHEDULE_MEETING' | 'OPEN_RECORD_ASSOCIATION_FORM';
1583
+ export type ActionType = 'PREVIEW_OBJECT' | 'ADD_NOTE' | 'ADD_TASK' | 'SEND_EMAIL' | 'SCHEDULE_MEETING' | 'OPEN_RECORD_ASSOCIATION_FORM';
1583
1584
  /** @ignore */
1584
1585
  interface BaseActionComponent {
1585
1586
  children: ReactNode;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hubspot/ui-extensions",
3
- "version": "0.8.22",
3
+ "version": "0.8.23",
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": "b2a018c5b7c7bc4cffc3d212536fdb5f8f15db9a"
54
+ "gitHead": "4e1721543d4dd631fb2aedbcd314d92b66f56e33"
55
55
  }