@hubspot/ui-extensions 0.11.0 → 0.11.2

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 (93) hide show
  1. package/dist/__synced__/experimental/types.synced.d.ts +3 -4
  2. package/dist/__synced__/remoteComponents.synced.d.ts +168 -355
  3. package/dist/__synced__/remoteComponents.synced.js +186 -83
  4. package/dist/__synced__/types/components/button.synced.d.ts +6 -0
  5. package/dist/__synced__/types/components/index.synced.d.ts +38 -38
  6. package/dist/__synced__/types/index.synced.d.ts +7 -7
  7. package/dist/__synced__/types/index.synced.js +1 -9
  8. package/dist/__synced__/types/shared.synced.d.ts +2 -3
  9. package/dist/__synced__/utils/remote-component-registry.synced.d.ts +80 -0
  10. package/dist/__synced__/utils/remote-component-registry.synced.js +64 -0
  11. package/dist/__tests__/crm/hooks/useAssociations.spec.js +33 -29
  12. package/dist/__tests__/crm/hooks/useCrmProperties.spec.js +19 -18
  13. package/dist/__tests__/crm/utils/fetchAssociations.spec.js +8 -7
  14. package/dist/__tests__/crm/utils/fetchCrmProperties.spec.js +34 -33
  15. package/dist/crm/index.d.ts +1 -1
  16. package/dist/crm/index.js +1 -1
  17. package/dist/experimental/index.d.ts +1 -1
  18. package/dist/experimental/index.js +1 -1
  19. package/dist/experimental/testing/__tests__/debug.spec.d.ts +1 -0
  20. package/dist/experimental/testing/__tests__/debug.spec.js +43 -0
  21. package/dist/experimental/testing/__tests__/find.spec.d.ts +1 -0
  22. package/dist/experimental/testing/__tests__/find.spec.js +33 -0
  23. package/dist/experimental/testing/__tests__/findAll.spec.d.ts +1 -0
  24. package/dist/experimental/testing/__tests__/findAll.spec.js +12 -0
  25. package/dist/experimental/testing/__tests__/findAllChildren.spec.d.ts +1 -0
  26. package/dist/experimental/testing/__tests__/findAllChildren.spec.js +48 -0
  27. package/dist/experimental/testing/__tests__/findChild.spec.d.ts +1 -0
  28. package/dist/experimental/testing/__tests__/findChild.spec.js +29 -0
  29. package/dist/experimental/testing/__tests__/fragments.spec.d.ts +1 -0
  30. package/dist/experimental/testing/__tests__/fragments.spec.js +59 -0
  31. package/dist/experimental/testing/__tests__/invalid-components.spec.d.ts +1 -0
  32. package/dist/experimental/testing/__tests__/invalid-components.spec.js +88 -0
  33. package/dist/experimental/testing/__tests__/isMatch.spec.d.ts +1 -0
  34. package/dist/experimental/testing/__tests__/isMatch.spec.js +60 -0
  35. package/dist/experimental/testing/__tests__/maybeFind.spec.d.ts +1 -0
  36. package/dist/experimental/testing/__tests__/maybeFind.spec.js +58 -0
  37. package/dist/experimental/testing/__tests__/maybeFindChild.spec.d.ts +1 -0
  38. package/dist/experimental/testing/__tests__/maybeFindChild.spec.js +65 -0
  39. package/dist/experimental/testing/__tests__/trigger.spec.d.ts +1 -0
  40. package/dist/experimental/testing/__tests__/trigger.spec.js +40 -0
  41. package/dist/experimental/testing/__tests__/type-utils.spec.d.ts +1 -0
  42. package/dist/experimental/testing/__tests__/type-utils.spec.js +163 -0
  43. package/dist/experimental/testing/__tests__/waitFor.spec.d.ts +1 -0
  44. package/dist/experimental/testing/__tests__/waitFor.spec.js +55 -0
  45. package/dist/experimental/testing/index.d.ts +3 -0
  46. package/dist/experimental/testing/index.js +3 -0
  47. package/dist/experimental/testing/internal/constants.d.ts +2 -0
  48. package/dist/experimental/testing/internal/constants.js +1 -0
  49. package/dist/experimental/testing/internal/convert.d.ts +10 -0
  50. package/dist/experimental/testing/internal/convert.js +131 -0
  51. package/dist/experimental/testing/internal/debug.d.ts +8 -0
  52. package/dist/experimental/testing/internal/debug.js +19 -0
  53. package/dist/experimental/testing/internal/document.d.ts +14 -0
  54. package/dist/experimental/testing/internal/document.js +37 -0
  55. package/dist/experimental/testing/internal/element.d.ts +11 -0
  56. package/dist/experimental/testing/internal/element.js +67 -0
  57. package/dist/experimental/testing/internal/errors.d.ts +56 -0
  58. package/dist/experimental/testing/internal/errors.js +70 -0
  59. package/dist/experimental/testing/internal/fragment.d.ts +8 -0
  60. package/dist/experimental/testing/internal/fragment.js +44 -0
  61. package/dist/experimental/testing/internal/match.d.ts +19 -0
  62. package/dist/experimental/testing/internal/match.js +42 -0
  63. package/dist/experimental/testing/internal/print.d.ts +6 -0
  64. package/dist/experimental/testing/internal/print.js +114 -0
  65. package/dist/experimental/testing/internal/query.d.ts +57 -0
  66. package/dist/experimental/testing/internal/query.js +213 -0
  67. package/dist/experimental/testing/internal/root.d.ts +8 -0
  68. package/dist/experimental/testing/internal/root.js +44 -0
  69. package/dist/experimental/testing/internal/text.d.ts +9 -0
  70. package/dist/experimental/testing/internal/text.js +16 -0
  71. package/dist/experimental/testing/internal/utils/promise-utils.d.ts +14 -0
  72. package/dist/experimental/testing/internal/utils/promise-utils.js +14 -0
  73. package/dist/experimental/testing/render.d.ts +9 -0
  74. package/dist/experimental/testing/render.js +155 -0
  75. package/dist/experimental/testing/types.d.ts +2 -1
  76. package/dist/hubspot.d.ts +1 -1
  77. package/dist/index.d.ts +2 -2
  78. package/dist/index.js +2 -2
  79. package/dist/pages/home/index.d.ts +1 -1
  80. package/dist/pages/home/index.js +1 -1
  81. package/package.json +19 -16
  82. package/dist/__synced__/appHomeRemoteComponents.synced.d.ts +0 -28
  83. package/dist/__synced__/appHomeRemoteComponents.synced.js +0 -21
  84. package/dist/__synced__/crmRemoteComponents.synced.d.ts +0 -66
  85. package/dist/__synced__/crmRemoteComponents.synced.js +0 -15
  86. package/dist/__synced__/experimentalRemoteComponents.synced.d.ts +0 -94
  87. package/dist/__synced__/experimentalRemoteComponents.synced.js +0 -56
  88. package/dist/coreComponents.d.ts +0 -848
  89. package/dist/coreComponents.js +0 -582
  90. package/dist/experimental/types.d.ts +0 -240
  91. package/dist/experimental/types.js +0 -5
  92. package/dist/types.d.ts +0 -3214
  93. package/dist/types.js +0 -244
@@ -1,6 +1,14 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- // Do not manually update this file, changes will be autogenerated by our scripts based on: ui-extensions-remote-renderer/static/js/remoteComponents.tsx
3
- import { createRemoteReactComponent } from '@remote-ui/react';
1
+ import { createRemoteComponentRegistry } from './utils/remote-component-registry.synced';
2
+ /**
3
+ * Represents a registry of HubSpot-provided React components that should only be used **internally** by the UI extension SDK.
4
+ *
5
+ * @internal
6
+ */
7
+ export const __hubSpotComponentRegistry = createRemoteComponentRegistry();
8
+ const { createAndRegisterRemoteReactComponent, createAndRegisterRemoteCompoundReactComponent, } = __hubSpotComponentRegistry;
9
+ ////////////////////////////////////////////////////////////
10
+ // STANDARD COMPONENTS
11
+ ////////////////////////////////////////////////////////////
4
12
  /**
5
13
  * The `Alert` component renders an alert within a card. Use this component to give usage guidance, notify users of action results, or warn them about potential issues or failures.
6
14
  *
@@ -9,7 +17,7 @@ import { createRemoteReactComponent } from '@remote-ui/react';
9
17
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/alert Docs}
10
18
  * - {@link https://app.hubspot.com/docs/48008916/reference/ui-components/standard-components/alert#variants Variants}
11
19
  */
12
- export const Alert = createRemoteReactComponent('Alert');
20
+ export const Alert = createAndRegisterRemoteReactComponent('Alert');
13
21
  /**
14
22
  * The `Button` component renders a single button. Use this component to enable users to perform actions, such as submitting a form, sending data to an external system, or deleting data.
15
23
  *
@@ -19,7 +27,7 @@ export const Alert = createRemoteReactComponent('Alert');
19
27
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/button#usage-examples Examples}
20
28
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/design-patterns#button Design Pattern Examples}
21
29
  */
22
- export const Button = createRemoteReactComponent('Button', {
30
+ export const Button = createAndRegisterRemoteReactComponent('Button', {
23
31
  fragmentProps: ['overlay'],
24
32
  });
25
33
  /**
@@ -29,8 +37,8 @@ export const Button = createRemoteReactComponent('Button', {
29
37
  *
30
38
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/button-row Docs}
31
39
  */
32
- export const ButtonRow = createRemoteReactComponent('ButtonRow');
33
- export const Card = createRemoteReactComponent('Card');
40
+ export const ButtonRow = createAndRegisterRemoteReactComponent('ButtonRow');
41
+ export const Card = createAndRegisterRemoteReactComponent('Card');
34
42
  /**
35
43
  * The `DescriptionList` component renders pairs of labels and values. Use this component to display pairs of labels and values in a way that's easy to read at a glance.
36
44
  *
@@ -38,7 +46,7 @@ export const Card = createRemoteReactComponent('Card');
38
46
  *
39
47
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/description-list Docs}
40
48
  */
41
- export const DescriptionList = createRemoteReactComponent('DescriptionList');
49
+ export const DescriptionList = createAndRegisterRemoteReactComponent('DescriptionList');
42
50
  /**
43
51
  * The `DescriptionListItem` component renders a single set of a label and value. Use this component within a `DescriptionList` component.
44
52
  *
@@ -46,7 +54,7 @@ export const DescriptionList = createRemoteReactComponent('DescriptionList');
46
54
  *
47
55
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/description-list Docs}
48
56
  */
49
- export const DescriptionListItem = createRemoteReactComponent('DescriptionListItem');
57
+ export const DescriptionListItem = createAndRegisterRemoteReactComponent('DescriptionListItem');
50
58
  /**
51
59
  * The `Divider` component renders a grey, horizontal line for spacing out components vertically or creating sections in an extension. Use this component to space out other components when the content needs more separation than white space.
52
60
  *
@@ -54,7 +62,7 @@ export const DescriptionListItem = createRemoteReactComponent('DescriptionListIt
54
62
  *
55
63
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/divider Docs}
56
64
  */
57
- export const Divider = createRemoteReactComponent('Divider');
65
+ export const Divider = createAndRegisterRemoteReactComponent('Divider');
58
66
  /**
59
67
  * The `EmptyState` component sets the content that appears when the extension is in an empty state. Use this component when there's no content or data to help guide users.
60
68
  *
@@ -62,7 +70,7 @@ export const Divider = createRemoteReactComponent('Divider');
62
70
  *
63
71
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/empty-state Docs}
64
72
  */
65
- export const EmptyState = createRemoteReactComponent('EmptyState');
73
+ export const EmptyState = createAndRegisterRemoteReactComponent('EmptyState');
66
74
  /**
67
75
  * The `ErrorState` component sets the content of an erroring extension. Use this component to guide users through resolving errors that your extension might encounter.
68
76
  *
@@ -70,7 +78,7 @@ export const EmptyState = createRemoteReactComponent('EmptyState');
70
78
  *
71
79
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/error-state Docs}
72
80
  */
73
- export const ErrorState = createRemoteReactComponent('ErrorState');
81
+ export const ErrorState = createAndRegisterRemoteReactComponent('ErrorState');
74
82
  /**
75
83
  * The `Form` component renders a form that can contain other subcomponents, such as `Input`, `Select`, and `Button`. Use this component to enable users to submit data to HubSpot or an external system.
76
84
  *
@@ -79,7 +87,7 @@ export const ErrorState = createRemoteReactComponent('ErrorState');
79
87
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/form Docs}
80
88
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/design-patterns#form Design Pattern Examples}
81
89
  */
82
- export const Form = createRemoteReactComponent('Form');
90
+ export const Form = createAndRegisterRemoteReactComponent('Form');
83
91
  /**
84
92
  * The `Heading` component renders large heading text. Use this component to introduce or differentiate sections of your component.
85
93
  *
@@ -87,7 +95,7 @@ export const Form = createRemoteReactComponent('Form');
87
95
  *
88
96
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/heading Docs}
89
97
  */
90
- export const Heading = createRemoteReactComponent('Heading');
98
+ export const Heading = createAndRegisterRemoteReactComponent('Heading');
91
99
  /**
92
100
  * The `Image` component renders an image. Use this component to add a logo or other visual brand identity asset, or to accentuate other content in the extension.
93
101
  *
@@ -95,7 +103,7 @@ export const Heading = createRemoteReactComponent('Heading');
95
103
  *
96
104
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/image Docs}
97
105
  */
98
- export const Image = createRemoteReactComponent('Image', {
106
+ export const Image = createAndRegisterRemoteReactComponent('Image', {
99
107
  fragmentProps: ['overlay'],
100
108
  });
101
109
  /**
@@ -105,7 +113,7 @@ export const Image = createRemoteReactComponent('Image', {
105
113
  *
106
114
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/input Docs}
107
115
  */
108
- export const Input = createRemoteReactComponent('Input');
116
+ export const Input = createAndRegisterRemoteReactComponent('Input');
109
117
  /**
110
118
  * The `Link` component renders a clickable hyperlink. Use links to direct users to an external web page or another part of the HubSpot app.
111
119
  *
@@ -113,7 +121,7 @@ export const Input = createRemoteReactComponent('Input');
113
121
  *
114
122
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/link Docs}
115
123
  */
116
- export const Link = createRemoteReactComponent('Link', {
124
+ export const Link = createAndRegisterRemoteReactComponent('Link', {
117
125
  fragmentProps: ['overlay'],
118
126
  });
119
127
  /**
@@ -123,11 +131,11 @@ export const Link = createRemoteReactComponent('Link', {
123
131
  *
124
132
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/text-area Docs}
125
133
  */
126
- export const TextArea = createRemoteReactComponent('TextArea');
134
+ export const TextArea = createAndRegisterRemoteReactComponent('TextArea');
127
135
  // Textarea was changed to TextArea
128
136
  // Exporting both for backwards compat
129
137
  /** @deprecated use TextArea instead. With a capital A.*/
130
- export const Textarea = createRemoteReactComponent('Textarea');
138
+ export const Textarea = createAndRegisterRemoteReactComponent('Textarea');
131
139
  /**
132
140
  * The `LoadingSpinner` component renders a visual indicator for when an extension is loading or processing data.
133
141
  *
@@ -135,7 +143,7 @@ export const Textarea = createRemoteReactComponent('Textarea');
135
143
  *
136
144
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/loading-spinner Docs}
137
145
  */
138
- export const LoadingSpinner = createRemoteReactComponent('LoadingSpinner');
146
+ export const LoadingSpinner = createAndRegisterRemoteReactComponent('LoadingSpinner');
139
147
  /**
140
148
  * The `ProgressBar` component renders a visual indicator showing a numeric and/or percentage-based representation of progress. The percentage is calculated based on the maximum possible value specified in the component.
141
149
  *
@@ -143,7 +151,7 @@ export const LoadingSpinner = createRemoteReactComponent('LoadingSpinner');
143
151
  *
144
152
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/progress-bar Docs}
145
153
  */
146
- export const ProgressBar = createRemoteReactComponent('ProgressBar');
154
+ export const ProgressBar = createAndRegisterRemoteReactComponent('ProgressBar');
147
155
  /**
148
156
  * The `Select` component renders a dropdown menu select field where a user can select a single value. A search bar will be automatically included when there are more than seven options. Like other inputs, this component should be used within a `Form` that has a submit button.
149
157
  *
@@ -151,7 +159,7 @@ export const ProgressBar = createRemoteReactComponent('ProgressBar');
151
159
  *
152
160
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/select Docs}
153
161
  */
154
- export const Select = createRemoteReactComponent('Select');
162
+ export const Select = createAndRegisterRemoteReactComponent('Select');
155
163
  /**
156
164
  * The `Tag` component renders a tag to label or categorize information or other components. Tags can be static or clickable for invoking functions.
157
165
  *
@@ -159,7 +167,7 @@ export const Select = createRemoteReactComponent('Select');
159
167
  *
160
168
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/tag Docs}
161
169
  */
162
- export const Tag = createRemoteReactComponent('Tag', {
170
+ export const Tag = createAndRegisterRemoteReactComponent('Tag', {
163
171
  fragmentProps: ['overlay'],
164
172
  });
165
173
  /**
@@ -169,7 +177,7 @@ export const Tag = createRemoteReactComponent('Tag', {
169
177
  *
170
178
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/text Docs}
171
179
  */
172
- export const Text = createRemoteReactComponent('Text');
180
+ export const Text = createAndRegisterRemoteReactComponent('Text');
173
181
  /**
174
182
  * The `Tile` component renders a square tile that can contain other components. Use this component to create groups of related components.
175
183
  *
@@ -177,9 +185,9 @@ export const Text = createRemoteReactComponent('Text');
177
185
  *
178
186
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/tile Docs}
179
187
  */
180
- export const Tile = createRemoteReactComponent('Tile');
188
+ export const Tile = createAndRegisterRemoteReactComponent('Tile');
181
189
  /** @deprecated use Flex instead. It will be removed in the next release. */
182
- export const Stack = createRemoteReactComponent('Stack');
190
+ export const Stack = createAndRegisterRemoteReactComponent('Stack');
183
191
  /**
184
192
  * The `ToggleGroup` component renders a list of selectable options, either in radio button or checkbox form.
185
193
  *
@@ -187,7 +195,7 @@ export const Stack = createRemoteReactComponent('Stack');
187
195
  *
188
196
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/toggle-group Docs}
189
197
  */
190
- export const ToggleGroup = createRemoteReactComponent('ToggleGroup');
198
+ export const ToggleGroup = createAndRegisterRemoteReactComponent('ToggleGroup');
191
199
  /**
192
200
  * The `StatisticsItem` component renders a single data point within a `Statistics` component. Use this component to display a single data point, such as a number or percentage.
193
201
  *
@@ -195,7 +203,7 @@ export const ToggleGroup = createRemoteReactComponent('ToggleGroup');
195
203
  *
196
204
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/statistics Docs}
197
205
  */
198
- export const StatisticsItem = createRemoteReactComponent('StatisticsItem');
206
+ export const StatisticsItem = createAndRegisterRemoteReactComponent('StatisticsItem');
199
207
  /**
200
208
  * The `Statistics` component renders a visual spotlight of one or more data points. Includes the `StatisticsItem` and `StatisticsTrend` subcomponents.
201
209
  *
@@ -203,7 +211,7 @@ export const StatisticsItem = createRemoteReactComponent('StatisticsItem');
203
211
  *
204
212
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/statistics Docs}
205
213
  */
206
- export const Statistics = createRemoteReactComponent('Statistics');
214
+ export const Statistics = createAndRegisterRemoteReactComponent('Statistics');
207
215
  /**
208
216
  * The `StatisticsTrend` component renders a percentage trend value and direction alonside a `StatisticsItem` component. Use this component within the `StatisticsItem` component.
209
217
  *
@@ -211,7 +219,7 @@ export const Statistics = createRemoteReactComponent('Statistics');
211
219
  *
212
220
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/statistics Docs}
213
221
  */
214
- export const StatisticsTrend = createRemoteReactComponent('StatisticsTrend');
222
+ export const StatisticsTrend = createAndRegisterRemoteReactComponent('StatisticsTrend');
215
223
  /**
216
224
  * The `Table` component renders a table. To format the table, use the subcomponents `TableHead`, `TableRow`, `TableHeader`, `TableBody`, `TableCell`and `TableFooter`.
217
225
  *
@@ -220,7 +228,7 @@ export const StatisticsTrend = createRemoteReactComponent('StatisticsTrend');
220
228
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
221
229
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/design-patterns#table Design Pattern Example}
222
230
  */
223
- export const Table = createRemoteReactComponent('Table');
231
+ export const Table = createAndRegisterRemoteReactComponent('Table');
224
232
  /**
225
233
  * The `TableFooter` component renders a footer within a `Table` component. Use this component to display totals or other summary information.
226
234
  *
@@ -228,7 +236,7 @@ export const Table = createRemoteReactComponent('Table');
228
236
  *
229
237
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
230
238
  */
231
- export const TableFooter = createRemoteReactComponent('TableFooter');
239
+ export const TableFooter = createAndRegisterRemoteReactComponent('TableFooter');
232
240
  /**
233
241
  * The `TableCell` component renders individual cells within the `TableBody` component.
234
242
  *
@@ -236,7 +244,7 @@ export const TableFooter = createRemoteReactComponent('TableFooter');
236
244
  *
237
245
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
238
246
  */
239
- export const TableCell = createRemoteReactComponent('TableCell');
247
+ export const TableCell = createAndRegisterRemoteReactComponent('TableCell');
240
248
  /**
241
249
  * The `TableRow` component renders a row within the `TableBody` or `TableHead` component.
242
250
  *
@@ -244,7 +252,7 @@ export const TableCell = createRemoteReactComponent('TableCell');
244
252
  *
245
253
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
246
254
  */
247
- export const TableRow = createRemoteReactComponent('TableRow');
255
+ export const TableRow = createAndRegisterRemoteReactComponent('TableRow');
248
256
  /**
249
257
  * The `TableBody` component renders the body (rows and cells) of a table within the `Table` component.
250
258
  *
@@ -252,7 +260,7 @@ export const TableRow = createRemoteReactComponent('TableRow');
252
260
  *
253
261
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
254
262
  */
255
- export const TableBody = createRemoteReactComponent('TableBody');
263
+ export const TableBody = createAndRegisterRemoteReactComponent('TableBody');
256
264
  /**
257
265
  * The `TableHeader` component renders individual cells containing bolded column labels, within `TableHead`.
258
266
  *
@@ -260,7 +268,7 @@ export const TableBody = createRemoteReactComponent('TableBody');
260
268
  *
261
269
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
262
270
  */
263
- export const TableHeader = createRemoteReactComponent('TableHeader');
271
+ export const TableHeader = createAndRegisterRemoteReactComponent('TableHeader');
264
272
  /**
265
273
  * The `TableHead` component renders the header section of the `Table` component, containing column labels.
266
274
  *
@@ -268,7 +276,7 @@ export const TableHeader = createRemoteReactComponent('TableHeader');
268
276
  *
269
277
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
270
278
  */
271
- export const TableHead = createRemoteReactComponent('TableHead');
279
+ export const TableHead = createAndRegisterRemoteReactComponent('TableHead');
272
280
  /**
273
281
  * The `NumberInput` component renders a number input field. Like other inputs, this component should be used within a `Form` that has a submit button.
274
282
  *
@@ -276,7 +284,7 @@ export const TableHead = createRemoteReactComponent('TableHead');
276
284
  *
277
285
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/number-input Docs}
278
286
  */
279
- export const NumberInput = createRemoteReactComponent('NumberInput');
287
+ export const NumberInput = createAndRegisterRemoteReactComponent('NumberInput');
280
288
  /**
281
289
  * The `Box` component renders an empty div container for fine tuning the spacing of components. Commonly used with the `Flex` component.
282
290
  *
@@ -285,7 +293,7 @@ export const NumberInput = createRemoteReactComponent('NumberInput');
285
293
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/box Docs}
286
294
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/flex-and-box Flex and Box Example}
287
295
  */
288
- export const Box = createRemoteReactComponent('Box');
296
+ export const Box = createAndRegisterRemoteReactComponent('Box');
289
297
  /**
290
298
  * The `StepIndicator` component renders an indicator to show the current step of a multi-step process.
291
299
  *
@@ -293,7 +301,7 @@ export const Box = createRemoteReactComponent('Box');
293
301
  *
294
302
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/step-indicator Docs}
295
303
  */
296
- export const StepIndicator = createRemoteReactComponent('StepIndicator');
304
+ export const StepIndicator = createAndRegisterRemoteReactComponent('StepIndicator');
297
305
  /**
298
306
  * The `Accordion` component renders an expandable and collapsable section that can contain other components. This component can be helpful for saving space and breaking up extension content.
299
307
  *
@@ -301,7 +309,7 @@ export const StepIndicator = createRemoteReactComponent('StepIndicator');
301
309
  *
302
310
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/accordion Docs}
303
311
  */
304
- export const Accordion = createRemoteReactComponent('Accordion');
312
+ export const Accordion = createAndRegisterRemoteReactComponent('Accordion');
305
313
  /**
306
314
  * The MultiSelect component renders a dropdown menu select field where a user can select multiple values. Commonly used within the `Form` component.
307
315
  *
@@ -309,7 +317,7 @@ export const Accordion = createRemoteReactComponent('Accordion');
309
317
  *
310
318
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/multi-select Docs}
311
319
  */
312
- export const MultiSelect = createRemoteReactComponent('MultiSelect');
320
+ export const MultiSelect = createAndRegisterRemoteReactComponent('MultiSelect');
313
321
  /**
314
322
  * The `Flex` component renders a flex container that can contain other components, and arrange them with props. Use this component to create a flexible and responsive layout.
315
323
  *
@@ -318,7 +326,7 @@ export const MultiSelect = createRemoteReactComponent('MultiSelect');
318
326
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/flex Docs}
319
327
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/flex-and-box Flex and Box Example}
320
328
  */
321
- export const Flex = createRemoteReactComponent('Flex');
329
+ export const Flex = createAndRegisterRemoteReactComponent('Flex');
322
330
  /**
323
331
  * The `DateInput` component renders an input field where a user can select a date. Commonly used within the `Form` component.
324
332
  *
@@ -326,7 +334,7 @@ export const Flex = createRemoteReactComponent('Flex');
326
334
  *
327
335
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/date-input Docs}
328
336
  */
329
- export const DateInput = createRemoteReactComponent('DateInput');
337
+ export const DateInput = createAndRegisterRemoteReactComponent('DateInput');
330
338
  /**
331
339
  * The `Checkbox` component renders a single checkbox input. Commonly used within the `Form` component. If you want to display multiple checkboxes, you should use `ToggleGroup` instead, as it comes with extra logic for handling multiple checkboxes.
332
340
  *
@@ -334,11 +342,11 @@ export const DateInput = createRemoteReactComponent('DateInput');
334
342
  *
335
343
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/checkbox Docs}
336
344
  */
337
- export const Checkbox = createRemoteReactComponent('Checkbox');
345
+ export const Checkbox = createAndRegisterRemoteReactComponent('Checkbox');
338
346
  /**
339
347
  * The `RadioButton` component renders a single radio input. Commonly used within the `Form` component. If you want to display multiple radio inputs, you should use `ToggleGroup` instead, as it comes with extra logic for handling multiple inputs.
340
348
  */
341
- export const RadioButton = createRemoteReactComponent('RadioButton');
349
+ export const RadioButton = createAndRegisterRemoteReactComponent('RadioButton');
342
350
  /**
343
351
  * The `List` component renders a list of items. Use this component to display a list of items, such as a list of contacts, tasks, or other data. A list can be styled as a bulleted list or a numbered list.
344
352
  *
@@ -346,7 +354,7 @@ export const RadioButton = createRemoteReactComponent('RadioButton');
346
354
  *
347
355
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/list Docs}
348
356
  */
349
- export const List = createRemoteReactComponent('List');
357
+ export const List = createAndRegisterRemoteReactComponent('List');
350
358
  /**
351
359
  * The `Toggle` component renders a boolean toggle switch that can be configured with sizing, label position, read-only, and more.
352
360
  *
@@ -354,8 +362,7 @@ export const List = createRemoteReactComponent('List');
354
362
  *
355
363
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/toggle Docs}
356
364
  */
357
- export const Toggle = createRemoteReactComponent('Toggle');
358
- const DropdownInternal = createRemoteReactComponent('Dropdown');
365
+ export const Toggle = createAndRegisterRemoteReactComponent('Toggle');
359
366
  /**
360
367
  * The `Dropdown` component renders a dropdown menu that can appear as a button or hyperlink. Use this component to enable users to select from multiple options in a compact list.
361
368
  *
@@ -363,18 +370,19 @@ const DropdownInternal = createRemoteReactComponent('Dropdown');
363
370
  *
364
371
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/dropdown Docs}
365
372
  */
366
- export function Dropdown(props) {
367
- return _jsx(DropdownInternal, { ...props });
368
- }
369
- /**
370
- * The `DropdownButtonItem` component represents a single option within a `Dropdown` menu. Use this component as a child of the `Dropdown` component.
371
- *
372
- * **Links:**
373
- *
374
- * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/dropdown Docs}
375
- */
376
- Dropdown.ButtonItem = createRemoteReactComponent('DropdownButtonItem', {
377
- fragmentProps: ['overlay'],
373
+ export const Dropdown = createAndRegisterRemoteCompoundReactComponent('Dropdown', {
374
+ compoundComponentProperties: {
375
+ /**
376
+ * The `Dropdown.ButtonItem` component represents a single option within a `Dropdown` menu. Use this component as a child of the `Dropdown` component.
377
+ *
378
+ * **Links:**
379
+ *
380
+ * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/dropdown Docs}
381
+ */
382
+ ButtonItem: createAndRegisterRemoteReactComponent('DropdownButtonItem', {
383
+ fragmentProps: ['overlay'],
384
+ }),
385
+ },
378
386
  });
379
387
  /**
380
388
  * The Panel component renders a panel overlay on the right side of the page and contains other components.
@@ -385,7 +393,7 @@ Dropdown.ButtonItem = createRemoteReactComponent('DropdownButtonItem', {
385
393
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
386
394
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/design-patterns#panel Design Pattern Examples}
387
395
  */
388
- export const Panel = createRemoteReactComponent('Panel');
396
+ export const Panel = createAndRegisterRemoteReactComponent('Panel');
389
397
  /**
390
398
  * The `PanelFooter` is a sticky footer component displayed at the bottom of a `Panel` component. Use this component to display actions or other content that should be visible at all times. Include only one `PanelFooter` component per `Panel`.
391
399
  *
@@ -394,7 +402,7 @@ export const Panel = createRemoteReactComponent('Panel');
394
402
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/panel-footer Docs}
395
403
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
396
404
  */
397
- export const PanelFooter = createRemoteReactComponent('PanelFooter');
405
+ export const PanelFooter = createAndRegisterRemoteReactComponent('PanelFooter');
398
406
  /**
399
407
  * The `PanelBody` component is a container that wraps the panel's content and makes it scrollable. Include only one `PanelBody` component per `Panel`.
400
408
  *
@@ -403,7 +411,7 @@ export const PanelFooter = createRemoteReactComponent('PanelFooter');
403
411
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/panel-footer Docs}
404
412
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
405
413
  */
406
- export const PanelBody = createRemoteReactComponent('PanelBody');
414
+ export const PanelBody = createAndRegisterRemoteReactComponent('PanelBody');
407
415
  /**
408
416
  * The `PanelSection` component is a container that adds padding and bottom margin to provide spacing between content. Use the `PanelSection` component to separate content within a `PanelBody`.
409
417
  *
@@ -412,7 +420,7 @@ export const PanelBody = createRemoteReactComponent('PanelBody');
412
420
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/panel-footer Docs}
413
421
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
414
422
  */
415
- export const PanelSection = createRemoteReactComponent('PanelSection');
423
+ export const PanelSection = createAndRegisterRemoteReactComponent('PanelSection');
416
424
  /**
417
425
  * The `StepperInput` component renders a number input field that can be increased or decreased by a set number. Commonly used within the `Form` component.
418
426
  *
@@ -420,7 +428,7 @@ export const PanelSection = createRemoteReactComponent('PanelSection');
420
428
  *
421
429
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/stepper-input Docs}
422
430
  */
423
- export const StepperInput = createRemoteReactComponent('StepperInput');
431
+ export const StepperInput = createAndRegisterRemoteReactComponent('StepperInput');
424
432
  /**
425
433
  * The Modal component renders a pop-up overlay that can contain other components.
426
434
  *
@@ -430,7 +438,7 @@ export const StepperInput = createRemoteReactComponent('StepperInput');
430
438
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
431
439
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/design-patterns#modal Design Pattern Examples}
432
440
  */
433
- export const Modal = createRemoteReactComponent('Modal');
441
+ export const Modal = createAndRegisterRemoteReactComponent('Modal');
434
442
  /**
435
443
  * The `ModalBody` component contains the main content of the modal. One `ModalBody` is required per `Modal`.
436
444
  *
@@ -439,7 +447,7 @@ export const Modal = createRemoteReactComponent('Modal');
439
447
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/modal Docs}
440
448
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
441
449
  */
442
- export const ModalBody = createRemoteReactComponent('ModalBody');
450
+ export const ModalBody = createAndRegisterRemoteReactComponent('ModalBody');
443
451
  /**
444
452
  * The `ModalFooter` component is an optional component to format the footer section of the modal. Use one `ModalFooter` per `Modal`.
445
453
  *
@@ -448,7 +456,7 @@ export const ModalBody = createRemoteReactComponent('ModalBody');
448
456
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/modal Docs}
449
457
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
450
458
  */
451
- export const ModalFooter = createRemoteReactComponent('ModalFooter');
459
+ export const ModalFooter = createAndRegisterRemoteReactComponent('ModalFooter');
452
460
  /**
453
461
  * Use the `Icon` component to render a visual icon within other components. It can generally be used inside most components, excluding ones that don't support child components.
454
462
  *
@@ -456,7 +464,7 @@ export const ModalFooter = createRemoteReactComponent('ModalFooter');
456
464
  *
457
465
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/icon Docs}
458
466
  */
459
- export const Icon = createRemoteReactComponent('Icon');
467
+ export const Icon = createAndRegisterRemoteReactComponent('Icon');
460
468
  /**
461
469
  * The `StatusTag` component renders a visual indicator to display the current status of an item. Status tags can be static or clickable.
462
470
  *
@@ -465,7 +473,7 @@ export const Icon = createRemoteReactComponent('Icon');
465
473
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/status-tag Docs}
466
474
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/status-tag#variants Variants}
467
475
  */
468
- export const StatusTag = createRemoteReactComponent('StatusTag');
476
+ export const StatusTag = createAndRegisterRemoteReactComponent('StatusTag');
469
477
  /**
470
478
  * The `LoadingButton` component renders a button with loading state options.
471
479
  *
@@ -473,7 +481,7 @@ export const StatusTag = createRemoteReactComponent('StatusTag');
473
481
  *
474
482
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/loading-button Docs}
475
483
  */
476
- export const LoadingButton = createRemoteReactComponent('LoadingButton', {
484
+ export const LoadingButton = createAndRegisterRemoteReactComponent('LoadingButton', {
477
485
  fragmentProps: ['overlay'],
478
486
  });
479
487
  /**
@@ -485,7 +493,7 @@ export const LoadingButton = createRemoteReactComponent('LoadingButton', {
485
493
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/charts Charts Docs}
486
494
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/charts-example Charts Example}
487
495
  */
488
- export const BarChart = createRemoteReactComponent('BarChart');
496
+ export const BarChart = createAndRegisterRemoteReactComponent('BarChart');
489
497
  /**
490
498
  * The `LineChart` component renders a line chart for visualizing data. This type of chart is best suited for time series plots or trend data.
491
499
  *
@@ -495,7 +503,7 @@ export const BarChart = createRemoteReactComponent('BarChart');
495
503
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/charts Charts Docs}
496
504
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/charts-example Charts Example}
497
505
  */
498
- export const LineChart = createRemoteReactComponent('LineChart');
506
+ export const LineChart = createAndRegisterRemoteReactComponent('LineChart');
499
507
  /**
500
508
  * `Tabs` allow you to group related content in a compact space, allowing users to switch between views without leaving the page.
501
509
  * @example
@@ -510,7 +518,7 @@ export const LineChart = createRemoteReactComponent('LineChart');
510
518
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/tabs Documentation}
511
519
  * - {@link https://github.com/hubspotdev/uie-tabbed-product-carousel Tabs Example}
512
520
  */
513
- export const Tabs = createRemoteReactComponent('Tabs');
521
+ export const Tabs = createAndRegisterRemoteReactComponent('Tabs');
514
522
  /**
515
523
  * Each `Tab` represents a single tab (or "view") within the parent `Tabs` component.
516
524
  * @example
@@ -525,7 +533,7 @@ export const Tabs = createRemoteReactComponent('Tabs');
525
533
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/tabs Documentation}
526
534
  * - {@link https://github.com/hubspotdev/uie-tabbed-product-carousel Tabs Example}
527
535
  */
528
- export const Tab = createRemoteReactComponent('Tab');
536
+ export const Tab = createAndRegisterRemoteReactComponent('Tab');
529
537
  /**
530
538
  * The `Illustration` component renders an illustration.
531
539
  *
@@ -533,14 +541,14 @@ export const Tab = createRemoteReactComponent('Tab');
533
541
  *
534
542
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/illustration Illustration Docs}
535
543
  */
536
- export const Illustration = createRemoteReactComponent('Illustration');
544
+ export const Illustration = createAndRegisterRemoteReactComponent('Illustration');
537
545
  /**
538
546
  * The `Tooltip` component renders a tooltip for a component.
539
547
  *
540
548
  * **Links:**
541
549
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/tooltip Documentation}
542
550
  */
543
- export const Tooltip = createRemoteReactComponent('Tooltip');
551
+ export const Tooltip = createAndRegisterRemoteReactComponent('Tooltip');
544
552
  /**
545
553
  * The `SearchInput` component renders a search input field.
546
554
  *
@@ -548,7 +556,7 @@ export const Tooltip = createRemoteReactComponent('Tooltip');
548
556
  *
549
557
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/search-input SearchInput Docs}
550
558
  */
551
- export const SearchInput = createRemoteReactComponent('SearchInput');
559
+ export const SearchInput = createAndRegisterRemoteReactComponent('SearchInput');
552
560
  /**
553
561
  * The `TimeInput` component renders an input field where a user can select a time. Commonly used within the `Form` component.
554
562
  *
@@ -556,7 +564,7 @@ export const SearchInput = createRemoteReactComponent('SearchInput');
556
564
  *
557
565
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/time-input Docs}
558
566
  */
559
- export const TimeInput = createRemoteReactComponent('TimeInput');
567
+ export const TimeInput = createAndRegisterRemoteReactComponent('TimeInput');
560
568
  /**
561
569
  * The `CurrencyInput` component renders a currency input field with proper formatting,
562
570
  * currency symbols, and locale-specific display patterns. Commonly used within the `Form` component.
@@ -565,14 +573,14 @@ export const TimeInput = createRemoteReactComponent('TimeInput');
565
573
  *
566
574
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/currency-input Docs}
567
575
  */
568
- export const CurrencyInput = createRemoteReactComponent('CurrencyInput');
576
+ export const CurrencyInput = createAndRegisterRemoteReactComponent('CurrencyInput');
569
577
  /**
570
578
  * The `Inline` component spreads aligns its children horizontally (along the x-axis).
571
579
  *
572
580
  * **Links:**
573
581
  *
574
582
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/inline Docs}
575
- */ export const Inline = createRemoteReactComponent('Inline');
583
+ */ export const Inline = createAndRegisterRemoteReactComponent('Inline');
576
584
  /**
577
585
  * The `AutoGrid` component renders a responsive grid layout that automatically adjusts the number of columns based on available space. Use this component to create flexible grid layouts for cards, tiles, or other content.
578
586
  *
@@ -580,4 +588,99 @@ export const CurrencyInput = createRemoteReactComponent('CurrencyInput');
580
588
  *
581
589
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/simple-grid Docs}
582
590
  */
583
- export const AutoGrid = createRemoteReactComponent('AutoGrid');
591
+ export const AutoGrid = createAndRegisterRemoteReactComponent('AutoGrid');
592
+ ////////////////////////////////////////////////////////
593
+ // CRM COMPONENTS
594
+ ////////////////////////////////////////////////////////
595
+ export const CrmPropertyList = createAndRegisterRemoteReactComponent('CrmPropertyList');
596
+ export const CrmAssociationTable = createAndRegisterRemoteReactComponent('CrmAssociationTable');
597
+ export const CrmDataHighlight = createAndRegisterRemoteReactComponent('CrmDataHighlight');
598
+ export const CrmReport = createAndRegisterRemoteReactComponent('CrmReport');
599
+ export const CrmAssociationPivot = createAndRegisterRemoteReactComponent('CrmAssociationPivot');
600
+ export const CrmAssociationPropertyList = createAndRegisterRemoteReactComponent('CrmAssociationPropertyList');
601
+ export const CrmAssociationStageTracker = createAndRegisterRemoteReactComponent('CrmAssociationStageTracker');
602
+ export const CrmSimpleDeadline = createAndRegisterRemoteReactComponent('CrmSimpleDeadline');
603
+ export const CrmStageTracker = createAndRegisterRemoteReactComponent('CrmStageTracker');
604
+ export const CrmStatistics = createAndRegisterRemoteReactComponent('CrmStatistics');
605
+ export const CrmActionButton = createAndRegisterRemoteReactComponent('CrmActionButton');
606
+ export const CrmActionLink = createAndRegisterRemoteReactComponent('CrmActionLink');
607
+ export const CrmCardActions = createAndRegisterRemoteReactComponent('CrmCardActions');
608
+ ////////////////////////////////////////////////////////
609
+ // APP HOME COMPONENTS
610
+ ////////////////////////////////////////////////////////
611
+ /**
612
+ * The `HeaderActions` component renders a container for action buttons in the app home header. It accepts `PrimaryHeaderActionButton` and `SecondaryHeaderActionButton` as children.
613
+ *
614
+ */
615
+ export const HeaderActions = createAndRegisterRemoteReactComponent('HeaderActions');
616
+ /**
617
+ * The `PrimaryHeaderActionButton` component renders a primary action button in the app home header. This button is styled as the main call-to-action and only one should be used per `HeaderActions` container.
618
+ *
619
+ */
620
+ export const PrimaryHeaderActionButton = createAndRegisterRemoteReactComponent('PrimaryHeaderActionButton', {
621
+ fragmentProps: ['overlay'],
622
+ });
623
+ /**
624
+ * The `SecondaryHeaderActionButton` component renders a secondary action button in the app home header. Multiple secondary actions can be used and they will be grouped appropriately in the header.
625
+ *
626
+ */
627
+ export const SecondaryHeaderActionButton = createAndRegisterRemoteReactComponent('SecondaryHeaderActionButton', {
628
+ fragmentProps: ['overlay'],
629
+ });
630
+ ////////////////////////////////////////////////////////
631
+ // EXPERIMENTAL COMPONENTS
632
+ ////////////////////////////////////////////////////////
633
+ /**
634
+ * @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
635
+ */
636
+ export const Iframe = createAndRegisterRemoteReactComponent('Iframe');
637
+ /**
638
+ * @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
639
+ */
640
+ export const MediaObject = createAndRegisterRemoteReactComponent('MediaObject', {
641
+ fragmentProps: ['itemRight', 'itemLeft'],
642
+ });
643
+ /**
644
+ * @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
645
+ */
646
+ export const Stack2 = createAndRegisterRemoteReactComponent('Stack2');
647
+ /**
648
+ * @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
649
+ */
650
+ export const Center = createAndRegisterRemoteReactComponent('Center');
651
+ /**
652
+ * @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
653
+ */
654
+ export const Grid = createAndRegisterRemoteReactComponent('Grid');
655
+ /**
656
+ * @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
657
+ */
658
+ export const GridItem = createAndRegisterRemoteReactComponent('GridItem');
659
+ /**
660
+ * @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
661
+ */
662
+ export const SettingsView = createAndRegisterRemoteReactComponent('SettingsView');
663
+ /**
664
+ * The `ExpandableText` component renders a text that can be expanded or collapsed based on a maximum height.
665
+ *
666
+ * @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
667
+ *
668
+ * **Links:**
669
+ *
670
+ * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/expandable-text ExpandableText Docs}
671
+ */
672
+ export const ExpandableText = createAndRegisterRemoteReactComponent('ExpandableText');
673
+ /**
674
+ * The `Popover` component renders a popover overlay that can contain other components.
675
+ *
676
+ * @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
677
+ *
678
+ * **Links:**
679
+ *
680
+ * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/popover Popover Docs}
681
+ */
682
+ export const Popover = createAndRegisterRemoteReactComponent('Popover');
683
+ /**
684
+ * @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
685
+ */
686
+ export const FileInput = createAndRegisterRemoteReactComponent('FileInput');