@hubspot/ui-extensions 0.11.0 → 0.11.1
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/__synced__/remoteComponents.synced.d.ts +85 -354
- package/dist/__synced__/remoteComponents.synced.js +88 -83
- package/dist/__synced__/types/components/index.synced.d.ts +38 -38
- package/dist/__synced__/types/index.synced.d.ts +7 -7
- package/dist/__synced__/types/index.synced.js +1 -9
- package/dist/__synced__/types/shared.synced.d.ts +2 -3
- package/dist/__synced__/utils/remote-component-registry.synced.d.ts +80 -0
- package/dist/__synced__/utils/remote-component-registry.synced.js +64 -0
- package/dist/experimental/testing/internal/constants.d.ts +2 -0
- package/dist/experimental/testing/internal/constants.js +1 -0
- package/dist/experimental/testing/internal/debug.d.ts +8 -0
- package/dist/experimental/testing/internal/debug.js +10 -0
- package/dist/experimental/testing/internal/element.d.ts +11 -0
- package/dist/experimental/testing/internal/element.js +67 -0
- package/dist/experimental/testing/internal/errors.d.ts +44 -0
- package/dist/experimental/testing/internal/errors.js +52 -0
- package/dist/experimental/testing/internal/fragment.d.ts +8 -0
- package/dist/experimental/testing/internal/fragment.js +44 -0
- package/dist/experimental/testing/internal/print.d.ts +6 -0
- package/dist/experimental/testing/internal/print.js +114 -0
- package/dist/experimental/testing/internal/query.d.ts +57 -0
- package/dist/experimental/testing/internal/query.js +231 -0
- package/dist/experimental/testing/internal/root.d.ts +8 -0
- package/dist/experimental/testing/internal/root.js +44 -0
- package/dist/experimental/testing/internal/text.d.ts +9 -0
- package/dist/experimental/testing/internal/text.js +16 -0
- package/dist/experimental/testing/types.d.ts +1 -1
- package/dist/hubspot.d.ts +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/pages/home/index.d.ts +1 -1
- package/dist/pages/home/index.js +1 -1
- package/package.json +10 -5
- package/dist/coreComponents.d.ts +0 -848
- package/dist/coreComponents.js +0 -582
- package/dist/experimental/types.d.ts +0 -240
- package/dist/experimental/types.js +0 -5
- package/dist/types.d.ts +0 -3214
- package/dist/types.js +0 -244
|
@@ -1,5 +1,10 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type * as types from './types/components/index.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 declare const __hubSpotComponentRegistry: import("./utils/remote-component-registry.synced").RemoteComponentRegistry;
|
|
3
8
|
/**
|
|
4
9
|
* 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.
|
|
5
10
|
*
|
|
@@ -8,11 +13,7 @@ import type * as types from './types/components/index.synced';
|
|
|
8
13
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/alert Docs}
|
|
9
14
|
* - {@link https://app.hubspot.com/docs/48008916/reference/ui-components/standard-components/alert#variants Variants}
|
|
10
15
|
*/
|
|
11
|
-
export declare const Alert: "
|
|
12
|
-
readonly type?: "Alert" | undefined;
|
|
13
|
-
readonly props?: types.AlertProps | undefined;
|
|
14
|
-
readonly children?: true | undefined;
|
|
15
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Alert", types.AlertProps, true>>;
|
|
16
|
+
export declare const Alert: import("..").HubSpotReactComponent<types.AlertProps>;
|
|
16
17
|
/**
|
|
17
18
|
* 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.
|
|
18
19
|
*
|
|
@@ -22,11 +23,7 @@ export declare const Alert: "Alert" & {
|
|
|
22
23
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/button#usage-examples Examples}
|
|
23
24
|
* - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/design-patterns#button Design Pattern Examples}
|
|
24
25
|
*/
|
|
25
|
-
export declare const Button: "
|
|
26
|
-
readonly type?: "Button" | undefined;
|
|
27
|
-
readonly props?: types.ButtonProps | undefined;
|
|
28
|
-
readonly children?: true | undefined;
|
|
29
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Button", types.ButtonProps, true>>;
|
|
26
|
+
export declare const Button: import("..").HubSpotReactComponent<types.ButtonProps>;
|
|
30
27
|
/**
|
|
31
28
|
* The `ButtonRow` component renders a row of specified `Button` components. Use this component when you want to include multiple buttons in a row.
|
|
32
29
|
*
|
|
@@ -34,16 +31,8 @@ export declare const Button: "Button" & {
|
|
|
34
31
|
*
|
|
35
32
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/button-row Docs}
|
|
36
33
|
*/
|
|
37
|
-
export declare const ButtonRow: "
|
|
38
|
-
|
|
39
|
-
readonly props?: types.ButtonRowProps | undefined;
|
|
40
|
-
readonly children?: true | undefined;
|
|
41
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"ButtonRow", types.ButtonRowProps, true>>;
|
|
42
|
-
export declare const Card: "Card" & {
|
|
43
|
-
readonly type?: "Card" | undefined;
|
|
44
|
-
readonly props?: types.CardProps | undefined;
|
|
45
|
-
readonly children?: true | undefined;
|
|
46
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Card", types.CardProps, true>>;
|
|
34
|
+
export declare const ButtonRow: import("..").HubSpotReactComponent<types.ButtonRowProps>;
|
|
35
|
+
export declare const Card: import("..").HubSpotReactComponent<types.CardProps>;
|
|
47
36
|
/**
|
|
48
37
|
* 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.
|
|
49
38
|
*
|
|
@@ -51,11 +40,7 @@ export declare const Card: "Card" & {
|
|
|
51
40
|
*
|
|
52
41
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/description-list Docs}
|
|
53
42
|
*/
|
|
54
|
-
export declare const DescriptionList: "
|
|
55
|
-
readonly type?: "DescriptionList" | undefined;
|
|
56
|
-
readonly props?: types.DescriptionListProps | undefined;
|
|
57
|
-
readonly children?: true | undefined;
|
|
58
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"DescriptionList", types.DescriptionListProps, true>>;
|
|
43
|
+
export declare const DescriptionList: import("..").HubSpotReactComponent<types.DescriptionListProps>;
|
|
59
44
|
/**
|
|
60
45
|
* The `DescriptionListItem` component renders a single set of a label and value. Use this component within a `DescriptionList` component.
|
|
61
46
|
*
|
|
@@ -63,11 +48,7 @@ export declare const DescriptionList: "DescriptionList" & {
|
|
|
63
48
|
*
|
|
64
49
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/description-list Docs}
|
|
65
50
|
*/
|
|
66
|
-
export declare const DescriptionListItem: "
|
|
67
|
-
readonly type?: "DescriptionListItem" | undefined;
|
|
68
|
-
readonly props?: types.DescriptionListItemProps | undefined;
|
|
69
|
-
readonly children?: true | undefined;
|
|
70
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"DescriptionListItem", types.DescriptionListItemProps, true>>;
|
|
51
|
+
export declare const DescriptionListItem: import("..").HubSpotReactComponent<types.DescriptionListItemProps>;
|
|
71
52
|
/**
|
|
72
53
|
* 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.
|
|
73
54
|
*
|
|
@@ -75,11 +56,7 @@ export declare const DescriptionListItem: "DescriptionListItem" & {
|
|
|
75
56
|
*
|
|
76
57
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/divider Docs}
|
|
77
58
|
*/
|
|
78
|
-
export declare const Divider: "
|
|
79
|
-
readonly type?: "Divider" | undefined;
|
|
80
|
-
readonly props?: types.DividerProps | undefined;
|
|
81
|
-
readonly children?: true | undefined;
|
|
82
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Divider", types.DividerProps, true>>;
|
|
59
|
+
export declare const Divider: import("..").HubSpotReactComponent<types.DividerProps>;
|
|
83
60
|
/**
|
|
84
61
|
* 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.
|
|
85
62
|
*
|
|
@@ -87,11 +64,7 @@ export declare const Divider: "Divider" & {
|
|
|
87
64
|
*
|
|
88
65
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/empty-state Docs}
|
|
89
66
|
*/
|
|
90
|
-
export declare const EmptyState: "
|
|
91
|
-
readonly type?: "EmptyState" | undefined;
|
|
92
|
-
readonly props?: types.EmptyStateProps | undefined;
|
|
93
|
-
readonly children?: true | undefined;
|
|
94
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"EmptyState", types.EmptyStateProps, true>>;
|
|
67
|
+
export declare const EmptyState: import("..").HubSpotReactComponent<types.EmptyStateProps>;
|
|
95
68
|
/**
|
|
96
69
|
* The `ErrorState` component sets the content of an erroring extension. Use this component to guide users through resolving errors that your extension might encounter.
|
|
97
70
|
*
|
|
@@ -99,11 +72,7 @@ export declare const EmptyState: "EmptyState" & {
|
|
|
99
72
|
*
|
|
100
73
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/error-state Docs}
|
|
101
74
|
*/
|
|
102
|
-
export declare const ErrorState: "
|
|
103
|
-
readonly type?: "ErrorState" | undefined;
|
|
104
|
-
readonly props?: types.ErrorStateProps | undefined;
|
|
105
|
-
readonly children?: true | undefined;
|
|
106
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"ErrorState", types.ErrorStateProps, true>>;
|
|
75
|
+
export declare const ErrorState: import("..").HubSpotReactComponent<types.ErrorStateProps>;
|
|
107
76
|
/**
|
|
108
77
|
* 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.
|
|
109
78
|
*
|
|
@@ -112,11 +81,7 @@ export declare const ErrorState: "ErrorState" & {
|
|
|
112
81
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/form Docs}
|
|
113
82
|
* - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/design-patterns#form Design Pattern Examples}
|
|
114
83
|
*/
|
|
115
|
-
export declare const Form: "
|
|
116
|
-
readonly type?: "Form" | undefined;
|
|
117
|
-
readonly props?: types.FormProps | undefined;
|
|
118
|
-
readonly children?: true | undefined;
|
|
119
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Form", types.FormProps, true>>;
|
|
84
|
+
export declare const Form: import("..").HubSpotReactComponent<types.FormProps>;
|
|
120
85
|
/**
|
|
121
86
|
* The `Heading` component renders large heading text. Use this component to introduce or differentiate sections of your component.
|
|
122
87
|
*
|
|
@@ -124,11 +89,7 @@ export declare const Form: "Form" & {
|
|
|
124
89
|
*
|
|
125
90
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/heading Docs}
|
|
126
91
|
*/
|
|
127
|
-
export declare const Heading: "
|
|
128
|
-
readonly type?: "Heading" | undefined;
|
|
129
|
-
readonly props?: types.HeadingProps | undefined;
|
|
130
|
-
readonly children?: true | undefined;
|
|
131
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Heading", types.HeadingProps, true>>;
|
|
92
|
+
export declare const Heading: import("..").HubSpotReactComponent<types.HeadingProps>;
|
|
132
93
|
/**
|
|
133
94
|
* 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.
|
|
134
95
|
*
|
|
@@ -136,11 +97,7 @@ export declare const Heading: "Heading" & {
|
|
|
136
97
|
*
|
|
137
98
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/image Docs}
|
|
138
99
|
*/
|
|
139
|
-
export declare const Image: "
|
|
140
|
-
readonly type?: "Image" | undefined;
|
|
141
|
-
readonly props?: types.ImageProps | undefined;
|
|
142
|
-
readonly children?: true | undefined;
|
|
143
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Image", types.ImageProps, true>>;
|
|
100
|
+
export declare const Image: import("..").HubSpotReactComponent<types.ImageProps>;
|
|
144
101
|
/**
|
|
145
102
|
* The `Input` component renders a text input field where a user can enter a custom text value. Like other inputs, this component should be used within a `Form` that has a submit button.
|
|
146
103
|
*
|
|
@@ -148,11 +105,7 @@ export declare const Image: "Image" & {
|
|
|
148
105
|
*
|
|
149
106
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/input Docs}
|
|
150
107
|
*/
|
|
151
|
-
export declare const Input: "
|
|
152
|
-
readonly type?: "Input" | undefined;
|
|
153
|
-
readonly props?: types.InputProps | undefined;
|
|
154
|
-
readonly children?: true | undefined;
|
|
155
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Input", types.InputProps, true>>;
|
|
108
|
+
export declare const Input: import("..").HubSpotReactComponent<types.InputProps>;
|
|
156
109
|
/**
|
|
157
110
|
* The `Link` component renders a clickable hyperlink. Use links to direct users to an external web page or another part of the HubSpot app.
|
|
158
111
|
*
|
|
@@ -160,11 +113,7 @@ export declare const Input: "Input" & {
|
|
|
160
113
|
*
|
|
161
114
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/link Docs}
|
|
162
115
|
*/
|
|
163
|
-
export declare const Link: "
|
|
164
|
-
readonly type?: "Link" | undefined;
|
|
165
|
-
readonly props?: types.LinkProps | undefined;
|
|
166
|
-
readonly children?: true | undefined;
|
|
167
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Link", types.LinkProps, true>>;
|
|
116
|
+
export declare const Link: import("..").HubSpotReactComponent<types.LinkProps>;
|
|
168
117
|
/**
|
|
169
118
|
* The `TextArea` component renders a fillable text field. Like other inputs, this component should be used within a `Form` that has a submit button.
|
|
170
119
|
*
|
|
@@ -172,17 +121,9 @@ export declare const Link: "Link" & {
|
|
|
172
121
|
*
|
|
173
122
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/text-area Docs}
|
|
174
123
|
*/
|
|
175
|
-
export declare const TextArea: "
|
|
176
|
-
readonly type?: "TextArea" | undefined;
|
|
177
|
-
readonly props?: types.TextAreaProps | undefined;
|
|
178
|
-
readonly children?: true | undefined;
|
|
179
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"TextArea", types.TextAreaProps, true>>;
|
|
124
|
+
export declare const TextArea: import("..").HubSpotReactComponent<types.TextAreaProps>;
|
|
180
125
|
/** @deprecated use TextArea instead. With a capital A.*/
|
|
181
|
-
export declare const Textarea: "
|
|
182
|
-
readonly type?: "Textarea" | undefined;
|
|
183
|
-
readonly props?: types.TextAreaProps | undefined;
|
|
184
|
-
readonly children?: true | undefined;
|
|
185
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Textarea", types.TextAreaProps, true>>;
|
|
126
|
+
export declare const Textarea: import("..").HubSpotReactComponent<types.TextAreaProps>;
|
|
186
127
|
/**
|
|
187
128
|
* The `LoadingSpinner` component renders a visual indicator for when an extension is loading or processing data.
|
|
188
129
|
*
|
|
@@ -190,11 +131,7 @@ export declare const Textarea: "Textarea" & {
|
|
|
190
131
|
*
|
|
191
132
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/loading-spinner Docs}
|
|
192
133
|
*/
|
|
193
|
-
export declare const LoadingSpinner: "
|
|
194
|
-
readonly type?: "LoadingSpinner" | undefined;
|
|
195
|
-
readonly props?: types.LoadingSpinnerProps | undefined;
|
|
196
|
-
readonly children?: true | undefined;
|
|
197
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"LoadingSpinner", types.LoadingSpinnerProps, true>>;
|
|
134
|
+
export declare const LoadingSpinner: import("..").HubSpotReactComponent<types.LoadingSpinnerProps>;
|
|
198
135
|
/**
|
|
199
136
|
* 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.
|
|
200
137
|
*
|
|
@@ -202,11 +139,7 @@ export declare const LoadingSpinner: "LoadingSpinner" & {
|
|
|
202
139
|
*
|
|
203
140
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/progress-bar Docs}
|
|
204
141
|
*/
|
|
205
|
-
export declare const ProgressBar: "
|
|
206
|
-
readonly type?: "ProgressBar" | undefined;
|
|
207
|
-
readonly props?: types.ProgressBarProps | undefined;
|
|
208
|
-
readonly children?: true | undefined;
|
|
209
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"ProgressBar", types.ProgressBarProps, true>>;
|
|
142
|
+
export declare const ProgressBar: import("..").HubSpotReactComponent<types.ProgressBarProps>;
|
|
210
143
|
/**
|
|
211
144
|
* 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.
|
|
212
145
|
*
|
|
@@ -214,11 +147,7 @@ export declare const ProgressBar: "ProgressBar" & {
|
|
|
214
147
|
*
|
|
215
148
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/select Docs}
|
|
216
149
|
*/
|
|
217
|
-
export declare const Select: "
|
|
218
|
-
readonly type?: "Select" | undefined;
|
|
219
|
-
readonly props?: types.SelectProps | undefined;
|
|
220
|
-
readonly children?: true | undefined;
|
|
221
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Select", types.SelectProps, true>>;
|
|
150
|
+
export declare const Select: import("..").HubSpotReactComponent<types.SelectProps>;
|
|
222
151
|
/**
|
|
223
152
|
* The `Tag` component renders a tag to label or categorize information or other components. Tags can be static or clickable for invoking functions.
|
|
224
153
|
*
|
|
@@ -226,11 +155,7 @@ export declare const Select: "Select" & {
|
|
|
226
155
|
*
|
|
227
156
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/tag Docs}
|
|
228
157
|
*/
|
|
229
|
-
export declare const Tag: "
|
|
230
|
-
readonly type?: "Tag" | undefined;
|
|
231
|
-
readonly props?: types.TagProps | undefined;
|
|
232
|
-
readonly children?: true | undefined;
|
|
233
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Tag", types.TagProps, true>>;
|
|
158
|
+
export declare const Tag: import("..").HubSpotReactComponent<types.TagProps>;
|
|
234
159
|
/**
|
|
235
160
|
* The `Text` component renders text with formatting options.
|
|
236
161
|
*
|
|
@@ -238,11 +163,7 @@ export declare const Tag: "Tag" & {
|
|
|
238
163
|
*
|
|
239
164
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/text Docs}
|
|
240
165
|
*/
|
|
241
|
-
export declare const Text: "
|
|
242
|
-
readonly type?: "Text" | undefined;
|
|
243
|
-
readonly props?: types.TextProps | undefined;
|
|
244
|
-
readonly children?: true | undefined;
|
|
245
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Text", types.TextProps, true>>;
|
|
166
|
+
export declare const Text: import("..").HubSpotReactComponent<types.TextProps>;
|
|
246
167
|
/**
|
|
247
168
|
* The `Tile` component renders a square tile that can contain other components. Use this component to create groups of related components.
|
|
248
169
|
*
|
|
@@ -250,17 +171,9 @@ export declare const Text: "Text" & {
|
|
|
250
171
|
*
|
|
251
172
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/tile Docs}
|
|
252
173
|
*/
|
|
253
|
-
export declare const Tile: "
|
|
254
|
-
readonly type?: "Tile" | undefined;
|
|
255
|
-
readonly props?: types.TileProps | undefined;
|
|
256
|
-
readonly children?: true | undefined;
|
|
257
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Tile", types.TileProps, true>>;
|
|
174
|
+
export declare const Tile: import("..").HubSpotReactComponent<types.TileProps>;
|
|
258
175
|
/** @deprecated use Flex instead. It will be removed in the next release. */
|
|
259
|
-
export declare const Stack: "
|
|
260
|
-
readonly type?: "Stack" | undefined;
|
|
261
|
-
readonly props?: types.StackProps | undefined;
|
|
262
|
-
readonly children?: true | undefined;
|
|
263
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Stack", types.StackProps, true>>;
|
|
176
|
+
export declare const Stack: import("..").HubSpotReactComponent<types.StackProps>;
|
|
264
177
|
/**
|
|
265
178
|
* The `ToggleGroup` component renders a list of selectable options, either in radio button or checkbox form.
|
|
266
179
|
*
|
|
@@ -268,27 +181,15 @@ export declare const Stack: "Stack" & {
|
|
|
268
181
|
*
|
|
269
182
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/toggle-group Docs}
|
|
270
183
|
*/
|
|
271
|
-
export declare const ToggleGroup: "
|
|
272
|
-
readonly type?: "ToggleGroup" | undefined;
|
|
273
|
-
readonly props?: ({
|
|
274
|
-
toggleType: "checkboxList";
|
|
275
|
-
onChange?: ((value: string[]) => void) | undefined;
|
|
276
|
-
value?: string[] | undefined;
|
|
277
|
-
} & import("./types/components/toggleInputs.synced").CommonGroupProps) | ({
|
|
278
|
-
toggleType: "radioButtonList";
|
|
279
|
-
onChange?: ((value: string) => void) | undefined;
|
|
280
|
-
value?: string | undefined;
|
|
281
|
-
} & import("./types/components/toggleInputs.synced").CommonGroupProps) | undefined;
|
|
282
|
-
readonly children?: true | undefined;
|
|
283
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"ToggleGroup", ({
|
|
184
|
+
export declare const ToggleGroup: import("..").HubSpotReactComponent<({
|
|
284
185
|
toggleType: "checkboxList";
|
|
285
186
|
onChange?: ((value: string[]) => void) | undefined;
|
|
286
187
|
value?: string[] | undefined;
|
|
287
|
-
} &
|
|
188
|
+
} & types.CommonGroupProps) | ({
|
|
288
189
|
toggleType: "radioButtonList";
|
|
289
190
|
onChange?: ((value: string) => void) | undefined;
|
|
290
191
|
value?: string | undefined;
|
|
291
|
-
} &
|
|
192
|
+
} & types.CommonGroupProps)>;
|
|
292
193
|
/**
|
|
293
194
|
* 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.
|
|
294
195
|
*
|
|
@@ -296,11 +197,7 @@ export declare const ToggleGroup: "ToggleGroup" & {
|
|
|
296
197
|
*
|
|
297
198
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/statistics Docs}
|
|
298
199
|
*/
|
|
299
|
-
export declare const StatisticsItem: "
|
|
300
|
-
readonly type?: "StatisticsItem" | undefined;
|
|
301
|
-
readonly props?: types.StatisticsItemProps | undefined;
|
|
302
|
-
readonly children?: true | undefined;
|
|
303
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"StatisticsItem", types.StatisticsItemProps, true>>;
|
|
200
|
+
export declare const StatisticsItem: import("..").HubSpotReactComponent<types.StatisticsItemProps>;
|
|
304
201
|
/**
|
|
305
202
|
* The `Statistics` component renders a visual spotlight of one or more data points. Includes the `StatisticsItem` and `StatisticsTrend` subcomponents.
|
|
306
203
|
*
|
|
@@ -308,11 +205,7 @@ export declare const StatisticsItem: "StatisticsItem" & {
|
|
|
308
205
|
*
|
|
309
206
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/statistics Docs}
|
|
310
207
|
*/
|
|
311
|
-
export declare const Statistics: "
|
|
312
|
-
readonly type?: "Statistics" | undefined;
|
|
313
|
-
readonly props?: types.StatisticsProps | undefined;
|
|
314
|
-
readonly children?: true | undefined;
|
|
315
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Statistics", types.StatisticsProps, true>>;
|
|
208
|
+
export declare const Statistics: import("..").HubSpotReactComponent<types.StatisticsProps>;
|
|
316
209
|
/**
|
|
317
210
|
* The `StatisticsTrend` component renders a percentage trend value and direction alonside a `StatisticsItem` component. Use this component within the `StatisticsItem` component.
|
|
318
211
|
*
|
|
@@ -320,11 +213,7 @@ export declare const Statistics: "Statistics" & {
|
|
|
320
213
|
*
|
|
321
214
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/statistics Docs}
|
|
322
215
|
*/
|
|
323
|
-
export declare const StatisticsTrend: "
|
|
324
|
-
readonly type?: "StatisticsTrend" | undefined;
|
|
325
|
-
readonly props?: types.StatisticsTrendProps | undefined;
|
|
326
|
-
readonly children?: true | undefined;
|
|
327
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"StatisticsTrend", types.StatisticsTrendProps, true>>;
|
|
216
|
+
export declare const StatisticsTrend: import("..").HubSpotReactComponent<types.StatisticsTrendProps>;
|
|
328
217
|
/**
|
|
329
218
|
* The `Table` component renders a table. To format the table, use the subcomponents `TableHead`, `TableRow`, `TableHeader`, `TableBody`, `TableCell`and `TableFooter`.
|
|
330
219
|
*
|
|
@@ -333,11 +222,7 @@ export declare const StatisticsTrend: "StatisticsTrend" & {
|
|
|
333
222
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
|
|
334
223
|
* - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/design-patterns#table Design Pattern Example}
|
|
335
224
|
*/
|
|
336
|
-
export declare const Table: "
|
|
337
|
-
readonly type?: "Table" | undefined;
|
|
338
|
-
readonly props?: types.TableProps | undefined;
|
|
339
|
-
readonly children?: true | undefined;
|
|
340
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Table", types.TableProps, true>>;
|
|
225
|
+
export declare const Table: import("..").HubSpotReactComponent<types.TableProps>;
|
|
341
226
|
/**
|
|
342
227
|
* The `TableFooter` component renders a footer within a `Table` component. Use this component to display totals or other summary information.
|
|
343
228
|
*
|
|
@@ -345,11 +230,7 @@ export declare const Table: "Table" & {
|
|
|
345
230
|
*
|
|
346
231
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
|
|
347
232
|
*/
|
|
348
|
-
export declare const TableFooter: "
|
|
349
|
-
readonly type?: "TableFooter" | undefined;
|
|
350
|
-
readonly props?: types.TableElementProps | undefined;
|
|
351
|
-
readonly children?: true | undefined;
|
|
352
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"TableFooter", types.TableElementProps, true>>;
|
|
233
|
+
export declare const TableFooter: import("..").HubSpotReactComponent<types.TableElementProps>;
|
|
353
234
|
/**
|
|
354
235
|
* The `TableCell` component renders individual cells within the `TableBody` component.
|
|
355
236
|
*
|
|
@@ -357,11 +238,7 @@ export declare const TableFooter: "TableFooter" & {
|
|
|
357
238
|
*
|
|
358
239
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
|
|
359
240
|
*/
|
|
360
|
-
export declare const TableCell: "
|
|
361
|
-
readonly type?: "TableCell" | undefined;
|
|
362
|
-
readonly props?: types.TableCellProps | undefined;
|
|
363
|
-
readonly children?: true | undefined;
|
|
364
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"TableCell", types.TableCellProps, true>>;
|
|
241
|
+
export declare const TableCell: import("..").HubSpotReactComponent<types.TableCellProps>;
|
|
365
242
|
/**
|
|
366
243
|
* The `TableRow` component renders a row within the `TableBody` or `TableHead` component.
|
|
367
244
|
*
|
|
@@ -369,11 +246,7 @@ export declare const TableCell: "TableCell" & {
|
|
|
369
246
|
*
|
|
370
247
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
|
|
371
248
|
*/
|
|
372
|
-
export declare const TableRow: "
|
|
373
|
-
readonly type?: "TableRow" | undefined;
|
|
374
|
-
readonly props?: types.TableElementProps | undefined;
|
|
375
|
-
readonly children?: true | undefined;
|
|
376
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"TableRow", types.TableElementProps, true>>;
|
|
249
|
+
export declare const TableRow: import("..").HubSpotReactComponent<types.TableElementProps>;
|
|
377
250
|
/**
|
|
378
251
|
* The `TableBody` component renders the body (rows and cells) of a table within the `Table` component.
|
|
379
252
|
*
|
|
@@ -381,11 +254,7 @@ export declare const TableRow: "TableRow" & {
|
|
|
381
254
|
*
|
|
382
255
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
|
|
383
256
|
*/
|
|
384
|
-
export declare const TableBody: "
|
|
385
|
-
readonly type?: "TableBody" | undefined;
|
|
386
|
-
readonly props?: types.TableElementProps | undefined;
|
|
387
|
-
readonly children?: true | undefined;
|
|
388
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"TableBody", types.TableElementProps, true>>;
|
|
257
|
+
export declare const TableBody: import("..").HubSpotReactComponent<types.TableElementProps>;
|
|
389
258
|
/**
|
|
390
259
|
* The `TableHeader` component renders individual cells containing bolded column labels, within `TableHead`.
|
|
391
260
|
*
|
|
@@ -393,11 +262,7 @@ export declare const TableBody: "TableBody" & {
|
|
|
393
262
|
*
|
|
394
263
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
|
|
395
264
|
*/
|
|
396
|
-
export declare const TableHeader: "
|
|
397
|
-
readonly type?: "TableHeader" | undefined;
|
|
398
|
-
readonly props?: types.TableHeaderProps | undefined;
|
|
399
|
-
readonly children?: true | undefined;
|
|
400
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"TableHeader", types.TableHeaderProps, true>>;
|
|
265
|
+
export declare const TableHeader: import("..").HubSpotReactComponent<types.TableHeaderProps>;
|
|
401
266
|
/**
|
|
402
267
|
* The `TableHead` component renders the header section of the `Table` component, containing column labels.
|
|
403
268
|
*
|
|
@@ -405,11 +270,7 @@ export declare const TableHeader: "TableHeader" & {
|
|
|
405
270
|
*
|
|
406
271
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
|
|
407
272
|
*/
|
|
408
|
-
export declare const TableHead: "
|
|
409
|
-
readonly type?: "TableHead" | undefined;
|
|
410
|
-
readonly props?: types.TableElementProps | undefined;
|
|
411
|
-
readonly children?: true | undefined;
|
|
412
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"TableHead", types.TableElementProps, true>>;
|
|
273
|
+
export declare const TableHead: import("..").HubSpotReactComponent<types.TableElementProps>;
|
|
413
274
|
/**
|
|
414
275
|
* The `NumberInput` component renders a number input field. Like other inputs, this component should be used within a `Form` that has a submit button.
|
|
415
276
|
*
|
|
@@ -417,11 +278,7 @@ export declare const TableHead: "TableHead" & {
|
|
|
417
278
|
*
|
|
418
279
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/number-input Docs}
|
|
419
280
|
*/
|
|
420
|
-
export declare const NumberInput: "
|
|
421
|
-
readonly type?: "NumberInput" | undefined;
|
|
422
|
-
readonly props?: types.NumberInputProps | undefined;
|
|
423
|
-
readonly children?: true | undefined;
|
|
424
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"NumberInput", types.NumberInputProps, true>>;
|
|
281
|
+
export declare const NumberInput: import("..").HubSpotReactComponent<types.NumberInputProps>;
|
|
425
282
|
/**
|
|
426
283
|
* The `Box` component renders an empty div container for fine tuning the spacing of components. Commonly used with the `Flex` component.
|
|
427
284
|
*
|
|
@@ -430,11 +287,7 @@ export declare const NumberInput: "NumberInput" & {
|
|
|
430
287
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/box Docs}
|
|
431
288
|
* - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/flex-and-box Flex and Box Example}
|
|
432
289
|
*/
|
|
433
|
-
export declare const Box: "
|
|
434
|
-
readonly type?: "Box" | undefined;
|
|
435
|
-
readonly props?: types.BoxProps | undefined;
|
|
436
|
-
readonly children?: true | undefined;
|
|
437
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Box", types.BoxProps, true>>;
|
|
290
|
+
export declare const Box: import("..").HubSpotReactComponent<types.BoxProps>;
|
|
438
291
|
/**
|
|
439
292
|
* The `StepIndicator` component renders an indicator to show the current step of a multi-step process.
|
|
440
293
|
*
|
|
@@ -442,11 +295,7 @@ export declare const Box: "Box" & {
|
|
|
442
295
|
*
|
|
443
296
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/step-indicator Docs}
|
|
444
297
|
*/
|
|
445
|
-
export declare const StepIndicator: "
|
|
446
|
-
readonly type?: "StepIndicator" | undefined;
|
|
447
|
-
readonly props?: types.StepIndicatorProps | undefined;
|
|
448
|
-
readonly children?: true | undefined;
|
|
449
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"StepIndicator", types.StepIndicatorProps, true>>;
|
|
298
|
+
export declare const StepIndicator: import("..").HubSpotReactComponent<types.StepIndicatorProps>;
|
|
450
299
|
/**
|
|
451
300
|
* 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.
|
|
452
301
|
*
|
|
@@ -454,11 +303,7 @@ export declare const StepIndicator: "StepIndicator" & {
|
|
|
454
303
|
*
|
|
455
304
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/accordion Docs}
|
|
456
305
|
*/
|
|
457
|
-
export declare const Accordion: "
|
|
458
|
-
readonly type?: "Accordion" | undefined;
|
|
459
|
-
readonly props?: types.AccordionProps | undefined;
|
|
460
|
-
readonly children?: true | undefined;
|
|
461
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Accordion", types.AccordionProps, true>>;
|
|
306
|
+
export declare const Accordion: import("..").HubSpotReactComponent<types.AccordionProps>;
|
|
462
307
|
/**
|
|
463
308
|
* The MultiSelect component renders a dropdown menu select field where a user can select multiple values. Commonly used within the `Form` component.
|
|
464
309
|
*
|
|
@@ -466,11 +311,7 @@ export declare const Accordion: "Accordion" & {
|
|
|
466
311
|
*
|
|
467
312
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/multi-select Docs}
|
|
468
313
|
*/
|
|
469
|
-
export declare const MultiSelect: "
|
|
470
|
-
readonly type?: "MultiSelect" | undefined;
|
|
471
|
-
readonly props?: types.MultiSelectProps | undefined;
|
|
472
|
-
readonly children?: true | undefined;
|
|
473
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"MultiSelect", types.MultiSelectProps, true>>;
|
|
314
|
+
export declare const MultiSelect: import("..").HubSpotReactComponent<types.MultiSelectProps>;
|
|
474
315
|
/**
|
|
475
316
|
* 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.
|
|
476
317
|
*
|
|
@@ -479,11 +320,7 @@ export declare const MultiSelect: "MultiSelect" & {
|
|
|
479
320
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/flex Docs}
|
|
480
321
|
* - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/flex-and-box Flex and Box Example}
|
|
481
322
|
*/
|
|
482
|
-
export declare const Flex: "
|
|
483
|
-
readonly type?: "Flex" | undefined;
|
|
484
|
-
readonly props?: types.FlexProps | undefined;
|
|
485
|
-
readonly children?: true | undefined;
|
|
486
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Flex", types.FlexProps, true>>;
|
|
323
|
+
export declare const Flex: import("..").HubSpotReactComponent<types.FlexProps>;
|
|
487
324
|
/**
|
|
488
325
|
* The `DateInput` component renders an input field where a user can select a date. Commonly used within the `Form` component.
|
|
489
326
|
*
|
|
@@ -491,11 +328,7 @@ export declare const Flex: "Flex" & {
|
|
|
491
328
|
*
|
|
492
329
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/date-input Docs}
|
|
493
330
|
*/
|
|
494
|
-
export declare const DateInput: "
|
|
495
|
-
readonly type?: "DateInput" | undefined;
|
|
496
|
-
readonly props?: types.DateInputProps | undefined;
|
|
497
|
-
readonly children?: true | undefined;
|
|
498
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"DateInput", types.DateInputProps, true>>;
|
|
331
|
+
export declare const DateInput: import("..").HubSpotReactComponent<types.DateInputProps>;
|
|
499
332
|
/**
|
|
500
333
|
* 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.
|
|
501
334
|
*
|
|
@@ -503,19 +336,11 @@ export declare const DateInput: "DateInput" & {
|
|
|
503
336
|
*
|
|
504
337
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/checkbox Docs}
|
|
505
338
|
*/
|
|
506
|
-
export declare const Checkbox: "
|
|
507
|
-
readonly type?: "Checkbox" | undefined;
|
|
508
|
-
readonly props?: types.CheckboxProps | undefined;
|
|
509
|
-
readonly children?: true | undefined;
|
|
510
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Checkbox", types.CheckboxProps, true>>;
|
|
339
|
+
export declare const Checkbox: import("..").HubSpotReactComponent<types.CheckboxProps>;
|
|
511
340
|
/**
|
|
512
341
|
* 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.
|
|
513
342
|
*/
|
|
514
|
-
export declare const RadioButton: "
|
|
515
|
-
readonly type?: "RadioButton" | undefined;
|
|
516
|
-
readonly props?: types.RadioButtonProps | undefined;
|
|
517
|
-
readonly children?: true | undefined;
|
|
518
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"RadioButton", types.RadioButtonProps, true>>;
|
|
343
|
+
export declare const RadioButton: import("..").HubSpotReactComponent<types.RadioButtonProps>;
|
|
519
344
|
/**
|
|
520
345
|
* 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.
|
|
521
346
|
*
|
|
@@ -523,11 +348,7 @@ export declare const RadioButton: "RadioButton" & {
|
|
|
523
348
|
*
|
|
524
349
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/list Docs}
|
|
525
350
|
*/
|
|
526
|
-
export declare const List: "
|
|
527
|
-
readonly type?: "List" | undefined;
|
|
528
|
-
readonly props?: types.ListProps | undefined;
|
|
529
|
-
readonly children?: true | undefined;
|
|
530
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"List", types.ListProps, true>>;
|
|
351
|
+
export declare const List: import("..").HubSpotReactComponent<types.ListProps>;
|
|
531
352
|
/**
|
|
532
353
|
* The `Toggle` component renders a boolean toggle switch that can be configured with sizing, label position, read-only, and more.
|
|
533
354
|
*
|
|
@@ -535,11 +356,7 @@ export declare const List: "List" & {
|
|
|
535
356
|
*
|
|
536
357
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/toggle Docs}
|
|
537
358
|
*/
|
|
538
|
-
export declare const Toggle: "
|
|
539
|
-
readonly type?: "Toggle" | undefined;
|
|
540
|
-
readonly props?: types.ToggleProps | undefined;
|
|
541
|
-
readonly children?: true | undefined;
|
|
542
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Toggle", types.ToggleProps, true>>;
|
|
359
|
+
export declare const Toggle: import("..").HubSpotReactComponent<types.ToggleProps>;
|
|
543
360
|
/**
|
|
544
361
|
* 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.
|
|
545
362
|
*
|
|
@@ -547,14 +364,16 @@ export declare const Toggle: "Toggle" & {
|
|
|
547
364
|
*
|
|
548
365
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/dropdown Docs}
|
|
549
366
|
*/
|
|
550
|
-
export declare
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
367
|
+
export declare const Dropdown: import("..").HubSpotReactComponent<import("..").UnknownComponentProps> & {
|
|
368
|
+
/**
|
|
369
|
+
* The `Dropdown.ButtonItem` component represents a single option within a `Dropdown` menu. Use this component as a child of the `Dropdown` component.
|
|
370
|
+
*
|
|
371
|
+
* **Links:**
|
|
372
|
+
*
|
|
373
|
+
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/dropdown Docs}
|
|
374
|
+
*/
|
|
375
|
+
ButtonItem: import("..").HubSpotReactComponent<types.DropdownButtonItemProps>;
|
|
376
|
+
};
|
|
558
377
|
/**
|
|
559
378
|
* The Panel component renders a panel overlay on the right side of the page and contains other components.
|
|
560
379
|
*
|
|
@@ -564,11 +383,7 @@ export declare namespace Dropdown {
|
|
|
564
383
|
* - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
|
|
565
384
|
* - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/design-patterns#panel Design Pattern Examples}
|
|
566
385
|
*/
|
|
567
|
-
export declare const Panel: "
|
|
568
|
-
readonly type?: "Panel" | undefined;
|
|
569
|
-
readonly props?: types.PanelProps | undefined;
|
|
570
|
-
readonly children?: true | undefined;
|
|
571
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Panel", types.PanelProps, true>>;
|
|
386
|
+
export declare const Panel: import("..").HubSpotReactComponent<types.PanelProps>;
|
|
572
387
|
/**
|
|
573
388
|
* 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`.
|
|
574
389
|
*
|
|
@@ -577,11 +392,7 @@ export declare const Panel: "Panel" & {
|
|
|
577
392
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/panel-footer Docs}
|
|
578
393
|
* - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
|
|
579
394
|
*/
|
|
580
|
-
export declare const PanelFooter: "
|
|
581
|
-
readonly type?: "PanelFooter" | undefined;
|
|
582
|
-
readonly props?: types.PanelFooterProps | undefined;
|
|
583
|
-
readonly children?: true | undefined;
|
|
584
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"PanelFooter", types.PanelFooterProps, true>>;
|
|
395
|
+
export declare const PanelFooter: import("..").HubSpotReactComponent<types.PanelFooterProps>;
|
|
585
396
|
/**
|
|
586
397
|
* The `PanelBody` component is a container that wraps the panel's content and makes it scrollable. Include only one `PanelBody` component per `Panel`.
|
|
587
398
|
*
|
|
@@ -590,11 +401,7 @@ export declare const PanelFooter: "PanelFooter" & {
|
|
|
590
401
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/panel-footer Docs}
|
|
591
402
|
* - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
|
|
592
403
|
*/
|
|
593
|
-
export declare const PanelBody: "
|
|
594
|
-
readonly type?: "PanelBody" | undefined;
|
|
595
|
-
readonly props?: types.PanelBodyProps | undefined;
|
|
596
|
-
readonly children?: true | undefined;
|
|
597
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"PanelBody", types.PanelBodyProps, true>>;
|
|
404
|
+
export declare const PanelBody: import("..").HubSpotReactComponent<types.PanelBodyProps>;
|
|
598
405
|
/**
|
|
599
406
|
* 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`.
|
|
600
407
|
*
|
|
@@ -603,11 +410,7 @@ export declare const PanelBody: "PanelBody" & {
|
|
|
603
410
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/panel-footer Docs}
|
|
604
411
|
* - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
|
|
605
412
|
*/
|
|
606
|
-
export declare const PanelSection: "
|
|
607
|
-
readonly type?: "PanelSection" | undefined;
|
|
608
|
-
readonly props?: types.PanelSectionProps | undefined;
|
|
609
|
-
readonly children?: true | undefined;
|
|
610
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"PanelSection", types.PanelSectionProps, true>>;
|
|
413
|
+
export declare const PanelSection: import("..").HubSpotReactComponent<types.PanelSectionProps>;
|
|
611
414
|
/**
|
|
612
415
|
* The `StepperInput` component renders a number input field that can be increased or decreased by a set number. Commonly used within the `Form` component.
|
|
613
416
|
*
|
|
@@ -615,11 +418,7 @@ export declare const PanelSection: "PanelSection" & {
|
|
|
615
418
|
*
|
|
616
419
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/stepper-input Docs}
|
|
617
420
|
*/
|
|
618
|
-
export declare const StepperInput: "
|
|
619
|
-
readonly type?: "StepperInput" | undefined;
|
|
620
|
-
readonly props?: types.StepperInputProps | undefined;
|
|
621
|
-
readonly children?: true | undefined;
|
|
622
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"StepperInput", types.StepperInputProps, true>>;
|
|
421
|
+
export declare const StepperInput: import("..").HubSpotReactComponent<types.StepperInputProps>;
|
|
623
422
|
/**
|
|
624
423
|
* The Modal component renders a pop-up overlay that can contain other components.
|
|
625
424
|
*
|
|
@@ -629,11 +428,7 @@ export declare const StepperInput: "StepperInput" & {
|
|
|
629
428
|
* - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
|
|
630
429
|
* - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/design-patterns#modal Design Pattern Examples}
|
|
631
430
|
*/
|
|
632
|
-
export declare const Modal: "
|
|
633
|
-
readonly type?: "Modal" | undefined;
|
|
634
|
-
readonly props?: types.ModalProps | undefined;
|
|
635
|
-
readonly children?: true | undefined;
|
|
636
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Modal", types.ModalProps, true>>;
|
|
431
|
+
export declare const Modal: import("..").HubSpotReactComponent<types.ModalProps>;
|
|
637
432
|
/**
|
|
638
433
|
* The `ModalBody` component contains the main content of the modal. One `ModalBody` is required per `Modal`.
|
|
639
434
|
*
|
|
@@ -642,11 +437,7 @@ export declare const Modal: "Modal" & {
|
|
|
642
437
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/modal Docs}
|
|
643
438
|
* - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
|
|
644
439
|
*/
|
|
645
|
-
export declare const ModalBody: "
|
|
646
|
-
readonly type?: "ModalBody" | undefined;
|
|
647
|
-
readonly props?: types.ModalBodyProps | undefined;
|
|
648
|
-
readonly children?: true | undefined;
|
|
649
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"ModalBody", types.ModalBodyProps, true>>;
|
|
440
|
+
export declare const ModalBody: import("..").HubSpotReactComponent<types.ModalBodyProps>;
|
|
650
441
|
/**
|
|
651
442
|
* The `ModalFooter` component is an optional component to format the footer section of the modal. Use one `ModalFooter` per `Modal`.
|
|
652
443
|
*
|
|
@@ -655,11 +446,7 @@ export declare const ModalBody: "ModalBody" & {
|
|
|
655
446
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/modal Docs}
|
|
656
447
|
* - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
|
|
657
448
|
*/
|
|
658
|
-
export declare const ModalFooter: "
|
|
659
|
-
readonly type?: "ModalFooter" | undefined;
|
|
660
|
-
readonly props?: types.ModalFooterProps | undefined;
|
|
661
|
-
readonly children?: true | undefined;
|
|
662
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"ModalFooter", types.ModalFooterProps, true>>;
|
|
449
|
+
export declare const ModalFooter: import("..").HubSpotReactComponent<types.ModalFooterProps>;
|
|
663
450
|
/**
|
|
664
451
|
* 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.
|
|
665
452
|
*
|
|
@@ -667,11 +454,7 @@ export declare const ModalFooter: "ModalFooter" & {
|
|
|
667
454
|
*
|
|
668
455
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/icon Docs}
|
|
669
456
|
*/
|
|
670
|
-
export declare const Icon: "
|
|
671
|
-
readonly type?: "Icon" | undefined;
|
|
672
|
-
readonly props?: types.IconProps | undefined;
|
|
673
|
-
readonly children?: true | undefined;
|
|
674
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Icon", types.IconProps, true>>;
|
|
457
|
+
export declare const Icon: import("..").HubSpotReactComponent<types.IconProps>;
|
|
675
458
|
/**
|
|
676
459
|
* The `StatusTag` component renders a visual indicator to display the current status of an item. Status tags can be static or clickable.
|
|
677
460
|
*
|
|
@@ -680,11 +463,7 @@ export declare const Icon: "Icon" & {
|
|
|
680
463
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/status-tag Docs}
|
|
681
464
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/status-tag#variants Variants}
|
|
682
465
|
*/
|
|
683
|
-
export declare const StatusTag: "
|
|
684
|
-
readonly type?: "StatusTag" | undefined;
|
|
685
|
-
readonly props?: types.StatusTagProps | undefined;
|
|
686
|
-
readonly children?: true | undefined;
|
|
687
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"StatusTag", types.StatusTagProps, true>>;
|
|
466
|
+
export declare const StatusTag: import("..").HubSpotReactComponent<types.StatusTagProps>;
|
|
688
467
|
/**
|
|
689
468
|
* The `LoadingButton` component renders a button with loading state options.
|
|
690
469
|
*
|
|
@@ -692,11 +471,7 @@ export declare const StatusTag: "StatusTag" & {
|
|
|
692
471
|
*
|
|
693
472
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/loading-button Docs}
|
|
694
473
|
*/
|
|
695
|
-
export declare const LoadingButton: "
|
|
696
|
-
readonly type?: "LoadingButton" | undefined;
|
|
697
|
-
readonly props?: types.LoadingButtonProps | undefined;
|
|
698
|
-
readonly children?: true | undefined;
|
|
699
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"LoadingButton", types.LoadingButtonProps, true>>;
|
|
474
|
+
export declare const LoadingButton: import("..").HubSpotReactComponent<types.LoadingButtonProps>;
|
|
700
475
|
/**
|
|
701
476
|
* The `BarChart` component renders a bar chart for visualizing data. This type of chart is best suited for comparing categorical data.
|
|
702
477
|
*
|
|
@@ -706,11 +481,7 @@ export declare const LoadingButton: "LoadingButton" & {
|
|
|
706
481
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/charts Charts Docs}
|
|
707
482
|
* - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/charts-example Charts Example}
|
|
708
483
|
*/
|
|
709
|
-
export declare const BarChart: "
|
|
710
|
-
readonly type?: "BarChart" | undefined;
|
|
711
|
-
readonly props?: types.ChartProps | undefined;
|
|
712
|
-
readonly children?: true | undefined;
|
|
713
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"BarChart", types.ChartProps, true>>;
|
|
484
|
+
export declare const BarChart: import("..").HubSpotReactComponent<types.ChartProps>;
|
|
714
485
|
/**
|
|
715
486
|
* The `LineChart` component renders a line chart for visualizing data. This type of chart is best suited for time series plots or trend data.
|
|
716
487
|
*
|
|
@@ -720,11 +491,7 @@ export declare const BarChart: "BarChart" & {
|
|
|
720
491
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/charts Charts Docs}
|
|
721
492
|
* - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/charts-example Charts Example}
|
|
722
493
|
*/
|
|
723
|
-
export declare const LineChart: "
|
|
724
|
-
readonly type?: "LineChart" | undefined;
|
|
725
|
-
readonly props?: types.ChartProps | undefined;
|
|
726
|
-
readonly children?: true | undefined;
|
|
727
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"LineChart", types.ChartProps, true>>;
|
|
494
|
+
export declare const LineChart: import("..").HubSpotReactComponent<types.ChartProps>;
|
|
728
495
|
/**
|
|
729
496
|
* `Tabs` allow you to group related content in a compact space, allowing users to switch between views without leaving the page.
|
|
730
497
|
* @example
|
|
@@ -739,11 +506,7 @@ export declare const LineChart: "LineChart" & {
|
|
|
739
506
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/tabs Documentation}
|
|
740
507
|
* - {@link https://github.com/hubspotdev/uie-tabbed-product-carousel Tabs Example}
|
|
741
508
|
*/
|
|
742
|
-
export declare const Tabs: "
|
|
743
|
-
readonly type?: "Tabs" | undefined;
|
|
744
|
-
readonly props?: types.TabsProps | undefined;
|
|
745
|
-
readonly children?: true | undefined;
|
|
746
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Tabs", types.TabsProps, true>>;
|
|
509
|
+
export declare const Tabs: import("..").HubSpotReactComponent<types.TabsProps>;
|
|
747
510
|
/**
|
|
748
511
|
* Each `Tab` represents a single tab (or "view") within the parent `Tabs` component.
|
|
749
512
|
* @example
|
|
@@ -758,11 +521,7 @@ export declare const Tabs: "Tabs" & {
|
|
|
758
521
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/tabs Documentation}
|
|
759
522
|
* - {@link https://github.com/hubspotdev/uie-tabbed-product-carousel Tabs Example}
|
|
760
523
|
*/
|
|
761
|
-
export declare const Tab: "
|
|
762
|
-
readonly type?: "Tab" | undefined;
|
|
763
|
-
readonly props?: types.TabProps | undefined;
|
|
764
|
-
readonly children?: true | undefined;
|
|
765
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Tab", types.TabProps, true>>;
|
|
524
|
+
export declare const Tab: import("..").HubSpotReactComponent<types.TabProps>;
|
|
766
525
|
/**
|
|
767
526
|
* The `Illustration` component renders an illustration.
|
|
768
527
|
*
|
|
@@ -770,22 +529,14 @@ export declare const Tab: "Tab" & {
|
|
|
770
529
|
*
|
|
771
530
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/illustration Illustration Docs}
|
|
772
531
|
*/
|
|
773
|
-
export declare const Illustration: "
|
|
774
|
-
readonly type?: "Illustration" | undefined;
|
|
775
|
-
readonly props?: types.IllustrationProps | undefined;
|
|
776
|
-
readonly children?: true | undefined;
|
|
777
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Illustration", types.IllustrationProps, true>>;
|
|
532
|
+
export declare const Illustration: import("..").HubSpotReactComponent<types.IllustrationProps>;
|
|
778
533
|
/**
|
|
779
534
|
* The `Tooltip` component renders a tooltip for a component.
|
|
780
535
|
*
|
|
781
536
|
* **Links:**
|
|
782
537
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/tooltip Documentation}
|
|
783
538
|
*/
|
|
784
|
-
export declare const Tooltip: "
|
|
785
|
-
readonly type?: "Tooltip" | undefined;
|
|
786
|
-
readonly props?: types.TooltipProps | undefined;
|
|
787
|
-
readonly children?: true | undefined;
|
|
788
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Tooltip", types.TooltipProps, true>>;
|
|
539
|
+
export declare const Tooltip: import("..").HubSpotReactComponent<types.TooltipProps>;
|
|
789
540
|
/**
|
|
790
541
|
* The `SearchInput` component renders a search input field.
|
|
791
542
|
*
|
|
@@ -793,11 +544,7 @@ export declare const Tooltip: "Tooltip" & {
|
|
|
793
544
|
*
|
|
794
545
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/search-input SearchInput Docs}
|
|
795
546
|
*/
|
|
796
|
-
export declare const SearchInput: "
|
|
797
|
-
readonly type?: "SearchInput" | undefined;
|
|
798
|
-
readonly props?: types.SearchInputProps | undefined;
|
|
799
|
-
readonly children?: true | undefined;
|
|
800
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"SearchInput", types.SearchInputProps, true>>;
|
|
547
|
+
export declare const SearchInput: import("..").HubSpotReactComponent<types.SearchInputProps>;
|
|
801
548
|
/**
|
|
802
549
|
* The `TimeInput` component renders an input field where a user can select a time. Commonly used within the `Form` component.
|
|
803
550
|
*
|
|
@@ -805,11 +552,7 @@ export declare const SearchInput: "SearchInput" & {
|
|
|
805
552
|
*
|
|
806
553
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/time-input Docs}
|
|
807
554
|
*/
|
|
808
|
-
export declare const TimeInput: "
|
|
809
|
-
readonly type?: "TimeInput" | undefined;
|
|
810
|
-
readonly props?: types.TimeInputProps | undefined;
|
|
811
|
-
readonly children?: true | undefined;
|
|
812
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"TimeInput", types.TimeInputProps, true>>;
|
|
555
|
+
export declare const TimeInput: import("..").HubSpotReactComponent<types.TimeInputProps>;
|
|
813
556
|
/**
|
|
814
557
|
* The `CurrencyInput` component renders a currency input field with proper formatting,
|
|
815
558
|
* currency symbols, and locale-specific display patterns. Commonly used within the `Form` component.
|
|
@@ -818,22 +561,14 @@ export declare const TimeInput: "TimeInput" & {
|
|
|
818
561
|
*
|
|
819
562
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/currency-input Docs}
|
|
820
563
|
*/
|
|
821
|
-
export declare const CurrencyInput: "
|
|
822
|
-
readonly type?: "CurrencyInput" | undefined;
|
|
823
|
-
readonly props?: types.CurrencyInputProps | undefined;
|
|
824
|
-
readonly children?: true | undefined;
|
|
825
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"CurrencyInput", types.CurrencyInputProps, true>>;
|
|
564
|
+
export declare const CurrencyInput: import("..").HubSpotReactComponent<types.CurrencyInputProps>;
|
|
826
565
|
/**
|
|
827
566
|
* The `Inline` component spreads aligns its children horizontally (along the x-axis).
|
|
828
567
|
*
|
|
829
568
|
* **Links:**
|
|
830
569
|
*
|
|
831
570
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/inline Docs}
|
|
832
|
-
*/ export declare const Inline: "
|
|
833
|
-
readonly type?: "Inline" | undefined;
|
|
834
|
-
readonly props?: types.InlineProps | undefined;
|
|
835
|
-
readonly children?: true | undefined;
|
|
836
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Inline", types.InlineProps, true>>;
|
|
571
|
+
*/ export declare const Inline: import("..").HubSpotReactComponent<types.InlineProps>;
|
|
837
572
|
/**
|
|
838
573
|
* 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.
|
|
839
574
|
*
|
|
@@ -841,8 +576,4 @@ export declare const CurrencyInput: "CurrencyInput" & {
|
|
|
841
576
|
*
|
|
842
577
|
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/simple-grid Docs}
|
|
843
578
|
*/
|
|
844
|
-
export declare const AutoGrid: "
|
|
845
|
-
readonly type?: "AutoGrid" | undefined;
|
|
846
|
-
readonly props?: types.AutoGridProps | undefined;
|
|
847
|
-
readonly children?: true | undefined;
|
|
848
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"AutoGrid", types.AutoGridProps, true>>;
|
|
579
|
+
export declare const AutoGrid: import("..").HubSpotReactComponent<types.AutoGridProps>;
|