@aircall/blocks 0.6.0 → 0.7.0
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/README.md +43 -0
- package/dist/globals.css +1 -1
- package/dist/index.d.ts +80 -23
- package/dist/index.js +339 -86
- package/package.json +17 -3
- package/skills/aircall-blocks/migrate-dashboard/SKILL.md +127 -0
- package/skills/aircall-blocks/migrate-dashboard/card/SKILL.md +364 -0
- package/skills/aircall-blocks/migrate-dashboard/combobox/SKILL.md +487 -0
- package/skills/aircall-blocks/migrate-dashboard/copy-button/SKILL.md +138 -0
- package/skills/aircall-blocks/migrate-dashboard/dashboard-page/SKILL.md +198 -0
- package/skills/aircall-blocks/migrate-dashboard/data-table/SKILL.md +395 -0
- package/skills/aircall-blocks/migrate-dashboard/empty-states/SKILL.md +347 -0
- package/skills/aircall-blocks/migrate-dashboard/form-wizard/SKILL.md +271 -0
- package/skills/aircall-blocks/migrate-dashboard/info-popup/SKILL.md +179 -0
- package/skills/aircall-blocks/migrate-dashboard/layout/SKILL.md +328 -0
- package/skills/aircall-blocks/migrate-dashboard/list/SKILL.md +474 -0
- package/skills/aircall-blocks/migrate-dashboard/loading/SKILL.md +260 -0
- package/skills/aircall-blocks/migrate-dashboard/page-header/SKILL.md +394 -0
- package/skills/aircall-blocks/migrate-dashboard/tile/SKILL.md +429 -0
- package/skills/aircall-blocks/migrate-dashboard/toggle-row/SKILL.md +177 -0
- package/skills/aircall-blocks/setup/SKILL.md +127 -0
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Badge, Button, CounterBadge, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, SidebarProvider, TabsList, useSidebar } from "@aircall/ds";
|
|
2
2
|
import * as React$1 from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime1 from "react/jsx-runtime";
|
|
4
4
|
import { VariantProps } from "class-variance-authority";
|
|
5
5
|
import * as _tanstack_react_form0 from "@tanstack/react-form";
|
|
6
6
|
import { DeepKeys, DeepKeysOfType, FieldAsyncValidateOrFn, FieldValidateOrFn } from "@tanstack/react-form";
|
|
@@ -95,6 +95,32 @@ declare const UnknownErrorMedia: React$1.ForwardRefExoticComponent<Omit<Omit<Emp
|
|
|
95
95
|
declare const UnknownErrorTitle: React$1.ForwardRefExoticComponent<Omit<EmptyStateTitleProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
96
96
|
declare const UnknownErrorDescription: React$1.ForwardRefExoticComponent<Omit<EmptyStateDescriptionProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
97
97
|
//#endregion
|
|
98
|
+
//#region src/components/chatbot-response-block.d.ts
|
|
99
|
+
type ChatbotResponseBlockFeedback = 'up' | 'down' | null;
|
|
100
|
+
type ChatbotResponseBlockSource = {
|
|
101
|
+
title: string;
|
|
102
|
+
url: string;
|
|
103
|
+
};
|
|
104
|
+
type ChatbotResponseBlockProps = {
|
|
105
|
+
/** Stable identity for the displayed message. When provided, feedback resets
|
|
106
|
+
* whenever this value changes — even if the markdown text is identical to the
|
|
107
|
+
* previous message. Without it, identical consecutive texts won't reset state. */
|
|
108
|
+
messageId?: string;
|
|
109
|
+
markdown: string;
|
|
110
|
+
streaming?: boolean;
|
|
111
|
+
sources?: ChatbotResponseBlockSource[];
|
|
112
|
+
onFeedback?: (value: ChatbotResponseBlockFeedback) => void;
|
|
113
|
+
className?: string;
|
|
114
|
+
};
|
|
115
|
+
declare function ChatbotResponseBlock({
|
|
116
|
+
messageId,
|
|
117
|
+
markdown,
|
|
118
|
+
streaming,
|
|
119
|
+
sources,
|
|
120
|
+
onFeedback,
|
|
121
|
+
className
|
|
122
|
+
}: ChatbotResponseBlockProps): react_jsx_runtime1.JSX.Element;
|
|
123
|
+
//#endregion
|
|
98
124
|
//#region src/components/chatbot-page.d.ts
|
|
99
125
|
declare const ChatbotPage: React$1.ForwardRefExoticComponent<ChatbotPageProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
100
126
|
interface ChatbotPageProps {
|
|
@@ -105,6 +131,30 @@ declare namespace ChatbotPage {
|
|
|
105
131
|
type Props = ChatbotPageProps;
|
|
106
132
|
}
|
|
107
133
|
//#endregion
|
|
134
|
+
//#region src/components/chatbot-panel-header.d.ts
|
|
135
|
+
type ChatbotPanelHeaderProps = React$1.ComponentProps<'div'> & {
|
|
136
|
+
/** Panel title displayed in the header. Defaults to "Ask Aircall". */title?: React$1.ReactNode; /** Whether the panel body is currently expanded (controlled). */
|
|
137
|
+
open: boolean; /** Fires when the collapse (−) / expand (+) button is pressed. */
|
|
138
|
+
onOpenChange: (open: boolean) => void; /** Fires when the "Send feedback" button is pressed. Omit to hide the button. */
|
|
139
|
+
onFeedback?: () => void; /** Fires when the close (×) button is pressed. Omit to hide the close button. */
|
|
140
|
+
onClose?: () => void;
|
|
141
|
+
};
|
|
142
|
+
/**
|
|
143
|
+
* Header bar for the chatbot panel.
|
|
144
|
+
*
|
|
145
|
+
* Always visible — the panel body collapses/expands below it. Controlled by
|
|
146
|
+
* the parent via `open` + `onOpenChange`; pass `onClose` to show the dismiss (×) button.
|
|
147
|
+
*/
|
|
148
|
+
declare function ChatbotPanelHeader({
|
|
149
|
+
title,
|
|
150
|
+
open,
|
|
151
|
+
onOpenChange,
|
|
152
|
+
onFeedback,
|
|
153
|
+
onClose,
|
|
154
|
+
className,
|
|
155
|
+
...props
|
|
156
|
+
}: ChatbotPanelHeaderProps): react_jsx_runtime1.JSX.Element;
|
|
157
|
+
//#endregion
|
|
108
158
|
//#region src/components/chatbot-sidebar.d.ts
|
|
109
159
|
interface ChatbotSidebarConversation {
|
|
110
160
|
id: string;
|
|
@@ -167,7 +217,7 @@ declare function ChatbotInput({
|
|
|
167
217
|
size,
|
|
168
218
|
disabled,
|
|
169
219
|
...textareaProps
|
|
170
|
-
}: ChatbotInputProps):
|
|
220
|
+
}: ChatbotInputProps): react_jsx_runtime1.JSX.Element;
|
|
171
221
|
//#endregion
|
|
172
222
|
//#region src/components/copy-button.d.ts
|
|
173
223
|
declare const CopyButton: React$1.ForwardRefExoticComponent<Omit<CopyButtonProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
@@ -203,7 +253,7 @@ type ChatbotPanelSuggestionProps = Omit<React.ComponentProps<typeof Button>, 'va
|
|
|
203
253
|
declare function ChatbotPanelSuggestion({
|
|
204
254
|
className,
|
|
205
255
|
...props
|
|
206
|
-
}: ChatbotPanelSuggestionProps):
|
|
256
|
+
}: ChatbotPanelSuggestionProps): react_jsx_runtime1.JSX.Element;
|
|
207
257
|
//#endregion
|
|
208
258
|
//#region src/components/chatbot-user-message.d.ts
|
|
209
259
|
type ChatbotUserMessageProps = React.ComponentProps<'div'>;
|
|
@@ -211,7 +261,7 @@ declare function ChatbotUserMessage({
|
|
|
211
261
|
className,
|
|
212
262
|
children,
|
|
213
263
|
...props
|
|
214
|
-
}: ChatbotUserMessageProps):
|
|
264
|
+
}: ChatbotUserMessageProps): react_jsx_runtime1.JSX.Element;
|
|
215
265
|
//#endregion
|
|
216
266
|
//#region src/components/dashboard-standalone-page.d.ts
|
|
217
267
|
declare const DashboardStandalonePage: React$1.ForwardRefExoticComponent<Omit<DashboardStandalonePageProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -376,7 +426,7 @@ declare function ChatbotPanelTrigger({
|
|
|
376
426
|
icon,
|
|
377
427
|
className,
|
|
378
428
|
...buttonProps
|
|
379
|
-
}: ChatbotPanelTriggerProps):
|
|
429
|
+
}: ChatbotPanelTriggerProps): react_jsx_runtime1.JSX.Element;
|
|
380
430
|
//#endregion
|
|
381
431
|
//#region src/hooks/use-copy-to-clipboard.d.ts
|
|
382
432
|
interface UseCopyToClipboardOptions {
|
|
@@ -413,7 +463,7 @@ declare function CardSaveBar({
|
|
|
413
463
|
submitLabel,
|
|
414
464
|
savingLabel,
|
|
415
465
|
resetLabel
|
|
416
|
-
}: CardSaveBarProps):
|
|
466
|
+
}: CardSaveBarProps): react_jsx_runtime1.JSX.Element;
|
|
417
467
|
//#endregion
|
|
418
468
|
//#region src/components/submit-button.d.ts
|
|
419
469
|
/**
|
|
@@ -437,7 +487,7 @@ declare function SubmitButton({
|
|
|
437
487
|
loadingLabel,
|
|
438
488
|
className,
|
|
439
489
|
...buttonProps
|
|
440
|
-
}: SubmitButtonProps):
|
|
490
|
+
}: SubmitButtonProps): react_jsx_runtime1.JSX.Element;
|
|
441
491
|
//#endregion
|
|
442
492
|
//#region src/form/use-form.d.ts
|
|
443
493
|
/**
|
|
@@ -1032,12 +1082,19 @@ type TypedField<TData> = {
|
|
|
1032
1082
|
/**
|
|
1033
1083
|
* Minimal structural view of a `createFormHook` form. `state.values` is the typed source the
|
|
1034
1084
|
* wrappers read the field-name union from; `AppField` is the binder we render into.
|
|
1085
|
+
*
|
|
1086
|
+
* `AppField` is intentionally loose (`(...args: never[]) => unknown`). A tight signature like
|
|
1087
|
+
* `(props: never) => React.ReactNode` is NOT satisfied by `useForm`'s `AppField` once the form
|
|
1088
|
+
* data is deeply nested (arrays of objects, etc.) — TS can't prove the form's generic `AppField`
|
|
1089
|
+
* assignable, so `TForm extends BoundForm` fails and `name` cascades to `never`. The loose form
|
|
1090
|
+
* accepts any `createFormHook` form for any data shape; `FormFieldBase` casts `AppField` to the
|
|
1091
|
+
* concrete component type before use, so nothing downstream relies on the precise signature.
|
|
1035
1092
|
*/
|
|
1036
1093
|
type BoundForm = {
|
|
1037
1094
|
state: {
|
|
1038
1095
|
values: unknown;
|
|
1039
1096
|
};
|
|
1040
|
-
AppField: (
|
|
1097
|
+
AppField: (...args: never[]) => unknown;
|
|
1041
1098
|
};
|
|
1042
1099
|
type FieldValidator<TFormData, TName> = TName extends DeepKeys<TFormData> ? FieldValidateOrFn<TFormData, TName> : never;
|
|
1043
1100
|
type FieldAsyncValidator<TFormData, TName> = TName extends DeepKeys<TFormData> ? FieldAsyncValidateOrFn<TFormData, TName> : never;
|
|
@@ -1067,7 +1124,7 @@ type FormFieldBaseProps<TData, TControl> = {
|
|
|
1067
1124
|
* Field-name/value/validator typing is enforced at each wrapper's boundary; this just renders
|
|
1068
1125
|
* the AppField + shared shell. `TData`/`TControl` carry the precise field + bundle shapes through.
|
|
1069
1126
|
*/
|
|
1070
|
-
declare function FormFieldBase<TData, TControl>(props: FormFieldBaseProps<TData, TControl>):
|
|
1127
|
+
declare function FormFieldBase<TData, TControl>(props: FormFieldBaseProps<TData, TControl>): react_jsx_runtime1.JSX.Element;
|
|
1071
1128
|
//#endregion
|
|
1072
1129
|
//#region src/components/form-select-field.d.ts
|
|
1073
1130
|
/**
|
|
@@ -1111,7 +1168,7 @@ type FormSelectFieldProps<TForm extends BoundForm, TName extends DeepKeysOfType<
|
|
|
1111
1168
|
* )}
|
|
1112
1169
|
* </FormSelectField>
|
|
1113
1170
|
*/
|
|
1114
|
-
declare function FormSelectField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string>>(props: FormSelectFieldProps<TForm, TName>):
|
|
1171
|
+
declare function FormSelectField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string>>(props: FormSelectFieldProps<TForm, TName>): react_jsx_runtime1.JSX.Element;
|
|
1115
1172
|
//#endregion
|
|
1116
1173
|
//#region src/components/form-input-field.d.ts
|
|
1117
1174
|
/**
|
|
@@ -1144,7 +1201,7 @@ type FormInputFieldProps<TForm extends BoundForm, TName extends DeepKeysOfType<T
|
|
|
1144
1201
|
* {(field, { inputProps }) => <Input {...inputProps} type="email" placeholder="you@co.com" />}
|
|
1145
1202
|
* </FormInputField>
|
|
1146
1203
|
*/
|
|
1147
|
-
declare function FormInputField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string>>(props: FormInputFieldProps<TForm, TName>):
|
|
1204
|
+
declare function FormInputField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string>>(props: FormInputFieldProps<TForm, TName>): react_jsx_runtime1.JSX.Element;
|
|
1148
1205
|
//#endregion
|
|
1149
1206
|
//#region src/components/form-combobox-field.d.ts
|
|
1150
1207
|
/**
|
|
@@ -1189,7 +1246,7 @@ type FormComboboxFieldProps<TForm extends BoundForm, TName extends DeepKeysOfTyp
|
|
|
1189
1246
|
* )}
|
|
1190
1247
|
* </FormComboboxField>
|
|
1191
1248
|
*/
|
|
1192
|
-
declare function FormComboboxField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string>>(props: FormComboboxFieldProps<TForm, TName>):
|
|
1249
|
+
declare function FormComboboxField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string>>(props: FormComboboxFieldProps<TForm, TName>): react_jsx_runtime1.JSX.Element;
|
|
1193
1250
|
//#endregion
|
|
1194
1251
|
//#region src/components/form-multi-combobox-field.d.ts
|
|
1195
1252
|
/**
|
|
@@ -1229,7 +1286,7 @@ type FormMultiComboboxFieldProps<TForm extends BoundForm, TName extends DeepKeys
|
|
|
1229
1286
|
* )}
|
|
1230
1287
|
* </FormMultiComboboxField>
|
|
1231
1288
|
*/
|
|
1232
|
-
declare function FormMultiComboboxField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string[]>>(props: FormMultiComboboxFieldProps<TForm, TName>):
|
|
1289
|
+
declare function FormMultiComboboxField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string[]>>(props: FormMultiComboboxFieldProps<TForm, TName>): react_jsx_runtime1.JSX.Element;
|
|
1233
1290
|
//#endregion
|
|
1234
1291
|
//#region src/components/form-textarea-field.d.ts
|
|
1235
1292
|
/**
|
|
@@ -1262,7 +1319,7 @@ type FormTextareaFieldProps<TForm extends BoundForm, TName extends DeepKeysOfTyp
|
|
|
1262
1319
|
* {(field, { textareaProps }) => <Textarea {...textareaProps} rows={4} />}
|
|
1263
1320
|
* </FormTextareaField>
|
|
1264
1321
|
*/
|
|
1265
|
-
declare function FormTextareaField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string>>(props: FormTextareaFieldProps<TForm, TName>):
|
|
1322
|
+
declare function FormTextareaField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string>>(props: FormTextareaFieldProps<TForm, TName>): react_jsx_runtime1.JSX.Element;
|
|
1266
1323
|
//#endregion
|
|
1267
1324
|
//#region src/components/form-radio-group-field.d.ts
|
|
1268
1325
|
/**
|
|
@@ -1300,7 +1357,7 @@ type FormRadioGroupFieldProps<TForm extends BoundForm, TName extends DeepKeysOfT
|
|
|
1300
1357
|
* )}
|
|
1301
1358
|
* </FormRadioGroupField>
|
|
1302
1359
|
*/
|
|
1303
|
-
declare function FormRadioGroupField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string>>(props: FormRadioGroupFieldProps<TForm, TName>):
|
|
1360
|
+
declare function FormRadioGroupField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string>>(props: FormRadioGroupFieldProps<TForm, TName>): react_jsx_runtime1.JSX.Element;
|
|
1304
1361
|
//#endregion
|
|
1305
1362
|
//#region src/components/form-otp-field.d.ts
|
|
1306
1363
|
/**
|
|
@@ -1333,7 +1390,7 @@ type FormOTPFieldProps<TForm extends BoundForm, TName extends DeepKeysOfType<TFo
|
|
|
1333
1390
|
* {(field, { otpProps }) => <InputOTP maxLength={6} {...otpProps}>{slots}</InputOTP>}
|
|
1334
1391
|
* </FormOTPField>
|
|
1335
1392
|
*/
|
|
1336
|
-
declare function FormOTPField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string>>(props: FormOTPFieldProps<TForm, TName>):
|
|
1393
|
+
declare function FormOTPField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string>>(props: FormOTPFieldProps<TForm, TName>): react_jsx_runtime1.JSX.Element;
|
|
1337
1394
|
//#endregion
|
|
1338
1395
|
//#region src/components/form-switch-field.d.ts
|
|
1339
1396
|
/**
|
|
@@ -1366,7 +1423,7 @@ type FormSwitchFieldProps<TForm extends BoundForm, TName extends DeepKeysOfType<
|
|
|
1366
1423
|
* {(field, { switchProps }) => <Switch {...switchProps} />}
|
|
1367
1424
|
* </FormSwitchField>
|
|
1368
1425
|
*/
|
|
1369
|
-
declare function FormSwitchField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], boolean>>(props: FormSwitchFieldProps<TForm, TName>):
|
|
1426
|
+
declare function FormSwitchField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], boolean>>(props: FormSwitchFieldProps<TForm, TName>): react_jsx_runtime1.JSX.Element;
|
|
1370
1427
|
//#endregion
|
|
1371
1428
|
//#region src/components/form-number-field.d.ts
|
|
1372
1429
|
/**
|
|
@@ -1399,7 +1456,7 @@ type FormNumberFieldProps<TForm extends BoundForm, TName extends DeepKeysOfType<
|
|
|
1399
1456
|
* {(field, { numberProps }) => <Input type="number" {...numberProps} />}
|
|
1400
1457
|
* </FormNumberField>
|
|
1401
1458
|
*/
|
|
1402
|
-
declare function FormNumberField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], number>>(props: FormNumberFieldProps<TForm, TName>):
|
|
1459
|
+
declare function FormNumberField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], number>>(props: FormNumberFieldProps<TForm, TName>): react_jsx_runtime1.JSX.Element;
|
|
1403
1460
|
//#endregion
|
|
1404
1461
|
//#region src/components/form-slider-field.d.ts
|
|
1405
1462
|
/**
|
|
@@ -1431,7 +1488,7 @@ type FormSliderFieldProps<TForm extends BoundForm, TName extends DeepKeysOfType<
|
|
|
1431
1488
|
* {(field, { sliderProps }) => <Slider min={0} max={100} step={1} {...sliderProps} />}
|
|
1432
1489
|
* </FormSliderField>
|
|
1433
1490
|
*/
|
|
1434
|
-
declare function FormSliderField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], number>>(props: FormSliderFieldProps<TForm, TName>):
|
|
1491
|
+
declare function FormSliderField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], number>>(props: FormSliderFieldProps<TForm, TName>): react_jsx_runtime1.JSX.Element;
|
|
1435
1492
|
//#endregion
|
|
1436
1493
|
//#region src/components/form-toggle-group-field.d.ts
|
|
1437
1494
|
/**
|
|
@@ -1469,7 +1526,7 @@ type FormToggleGroupFieldProps<TForm extends BoundForm, TName extends DeepKeysOf
|
|
|
1469
1526
|
* )}
|
|
1470
1527
|
* </FormToggleGroupField>
|
|
1471
1528
|
*/
|
|
1472
|
-
declare function FormToggleGroupField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string | null>>(props: FormToggleGroupFieldProps<TForm, TName>):
|
|
1529
|
+
declare function FormToggleGroupField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string | null>>(props: FormToggleGroupFieldProps<TForm, TName>): react_jsx_runtime1.JSX.Element;
|
|
1473
1530
|
//#endregion
|
|
1474
1531
|
//#region src/form/field-errors.d.ts
|
|
1475
1532
|
/**
|
|
@@ -1517,7 +1574,7 @@ declare function SaveBar({
|
|
|
1517
1574
|
savingLabel,
|
|
1518
1575
|
resetLabel,
|
|
1519
1576
|
className
|
|
1520
|
-
}: SaveBarProps):
|
|
1577
|
+
}: SaveBarProps): react_jsx_runtime1.JSX.Element;
|
|
1521
1578
|
//#endregion
|
|
1522
1579
|
//#region src/components/dashboard-sidebar-nav.d.ts
|
|
1523
1580
|
type DashboardSidebarNavSubmenuSeparator = {
|
|
@@ -1601,7 +1658,7 @@ type DashboardSidebarNavProps = {
|
|
|
1601
1658
|
declare function DashboardSidebarNav({
|
|
1602
1659
|
groups,
|
|
1603
1660
|
renderLink
|
|
1604
|
-
}: DashboardSidebarNavProps):
|
|
1661
|
+
}: DashboardSidebarNavProps): react_jsx_runtime1.JSX.Element;
|
|
1605
1662
|
//#endregion
|
|
1606
1663
|
//#region src/components/dashboard-sidebar.d.ts
|
|
1607
1664
|
declare const DashboardSidebarProvider: React$1.ForwardRefExoticComponent<Omit<DashboardSidebarProviderProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -1701,4 +1758,4 @@ declare namespace DashboardSidebarSubmenuSeparator {
|
|
|
1701
1758
|
type Props = DashboardSidebarSubmenuSeparatorProps;
|
|
1702
1759
|
}
|
|
1703
1760
|
//#endregion
|
|
1704
|
-
export { BetaBadge, type BoundForm, CardSaveBar, type CardSaveBarProps, ChatbotInput, type ChatbotInputProps, ChatbotPage, ChatbotPanelSuggestion, type ChatbotPanelSuggestionProps, ChatbotPanelTrigger, type ChatbotPanelTriggerProps, ChatbotSidebar, type ChatbotSidebarConversation, ChatbotUserMessage, type ChatbotUserMessageProps, type ComboboxControl, ComingSoonDescription, ComingSoonEmptyState, ComingSoonMedia, ComingSoonTitle, CommonForm, CopyButton, CopyButtonIcon, CopyButtonLabel, DashboardPage, DashboardPageBanner, DashboardPageContent, DashboardPageHeader, DashboardPageHeaderAction, DashboardPageHeaderActions, DashboardPageHeaderDescription, DashboardPageHeaderNav, DashboardPageHeaderNavBack, DashboardPageHeaderPrefix, DashboardPageHeaderSubtitle, DashboardPageHeaderTitle, DashboardPageHeaderTitleGroup, DashboardPageMain, DashboardPageTabs, DashboardSidebar, DashboardSidebarContent, DashboardSidebarFooter, DashboardSidebarGroup, DashboardSidebarGroupLabel, DashboardSidebarHeader, DashboardSidebarMenu, DashboardSidebarMenuBadge, DashboardSidebarMenuButton, DashboardSidebarMenuItem, DashboardSidebarNav, type DashboardSidebarNavGroup, type DashboardSidebarNavItem, type DashboardSidebarNavItemAction, type DashboardSidebarNavItemLink, type DashboardSidebarNavItemSubmenu, type DashboardSidebarNavSubmenuItem, DashboardSidebarProvider, DashboardSidebarSubmenu, DashboardSidebarSubmenuItem, DashboardSidebarSubmenuSeparator, DashboardSidebarTrigger, DashboardStandalonePage, DashboardStandalonePageAction, DashboardStandalonePageActions, DashboardStandalonePageContent, DashboardStandalonePageHeader, DashboardStandalonePageTitle, DeprecatedBadge, EmptyState, EmptyStateActions, EmptyStateButton, EmptyStateDescription, EmptyStateExternalLink, EmptyStateHeader, EmptyStateMedia, EmptyStateTitle, FormComboboxField, type FormComboboxFieldProps, FormFieldBase, type FormFieldValidators, FormInputField, type FormInputFieldProps, FormMultiComboboxField, type FormMultiComboboxFieldProps, FormNumberField, type FormNumberFieldProps, FormOTPField, type FormOTPFieldProps, FormRadioGroupField, type FormRadioGroupFieldProps, FormSelectField, type FormSelectFieldProps, FormSliderField, type FormSliderFieldProps, FormSwitchField, type FormSwitchFieldProps, FormTextareaField, type FormTextareaFieldProps, FormToggleGroupField, type FormToggleGroupFieldProps, type InputControl, type MultiComboboxControl, NewBadge, NoDataDescription, NoDataEmptyState, NoDataMedia, NoDataTitle, NoSupportDescription, NoSupportEmptyState, NoSupportMedia, NoSupportTitle, NotFoundDescription, NotFoundEmptyState, NotFoundMedia, NotFoundTitle, type NumberControl, type OTPControl, ProfessionalBadge, type RadioGroupControl, RestrictedAccessDescription, RestrictedAccessEmptyState, RestrictedAccessMedia, RestrictedAccessTitle, RoleBadge, type RoleBadgeRole, SaveBar, type SaveBarProps, type SelectControl, type SliderControl, SubmitButton, type SubmitButtonProps, type SwitchControl, type TextareaControl, type ToggleGroupControl, TrialBadge, type TypedField, UnknownErrorDescription, UnknownErrorEmptyState, UnknownErrorMedia, UnknownErrorTitle, fieldContext, formContext, toFieldErrors, useCopyToClipboard, useSidebar as useDashboardSidebar, useFieldContext, useForm, useFormContext, withForm };
|
|
1761
|
+
export { BetaBadge, type BoundForm, CardSaveBar, type CardSaveBarProps, ChatbotInput, type ChatbotInputProps, ChatbotPage, ChatbotPanelHeader, type ChatbotPanelHeaderProps, ChatbotPanelSuggestion, type ChatbotPanelSuggestionProps, ChatbotPanelTrigger, type ChatbotPanelTriggerProps, ChatbotResponseBlock, type ChatbotResponseBlockFeedback, type ChatbotResponseBlockProps, ChatbotSidebar, type ChatbotSidebarConversation, ChatbotUserMessage, type ChatbotUserMessageProps, type ComboboxControl, ComingSoonDescription, ComingSoonEmptyState, ComingSoonMedia, ComingSoonTitle, CommonForm, CopyButton, CopyButtonIcon, CopyButtonLabel, DashboardPage, DashboardPageBanner, DashboardPageContent, DashboardPageHeader, DashboardPageHeaderAction, DashboardPageHeaderActions, DashboardPageHeaderDescription, DashboardPageHeaderNav, DashboardPageHeaderNavBack, DashboardPageHeaderPrefix, DashboardPageHeaderSubtitle, DashboardPageHeaderTitle, DashboardPageHeaderTitleGroup, DashboardPageMain, DashboardPageTabs, DashboardSidebar, DashboardSidebarContent, DashboardSidebarFooter, DashboardSidebarGroup, DashboardSidebarGroupLabel, DashboardSidebarHeader, DashboardSidebarMenu, DashboardSidebarMenuBadge, DashboardSidebarMenuButton, DashboardSidebarMenuItem, DashboardSidebarNav, type DashboardSidebarNavGroup, type DashboardSidebarNavItem, type DashboardSidebarNavItemAction, type DashboardSidebarNavItemLink, type DashboardSidebarNavItemSubmenu, type DashboardSidebarNavSubmenuItem, DashboardSidebarProvider, DashboardSidebarSubmenu, DashboardSidebarSubmenuItem, DashboardSidebarSubmenuSeparator, DashboardSidebarTrigger, DashboardStandalonePage, DashboardStandalonePageAction, DashboardStandalonePageActions, DashboardStandalonePageContent, DashboardStandalonePageHeader, DashboardStandalonePageTitle, DeprecatedBadge, EmptyState, EmptyStateActions, EmptyStateButton, EmptyStateDescription, EmptyStateExternalLink, EmptyStateHeader, EmptyStateMedia, EmptyStateTitle, FormComboboxField, type FormComboboxFieldProps, FormFieldBase, type FormFieldValidators, FormInputField, type FormInputFieldProps, FormMultiComboboxField, type FormMultiComboboxFieldProps, FormNumberField, type FormNumberFieldProps, FormOTPField, type FormOTPFieldProps, FormRadioGroupField, type FormRadioGroupFieldProps, FormSelectField, type FormSelectFieldProps, FormSliderField, type FormSliderFieldProps, FormSwitchField, type FormSwitchFieldProps, FormTextareaField, type FormTextareaFieldProps, FormToggleGroupField, type FormToggleGroupFieldProps, type InputControl, type MultiComboboxControl, NewBadge, NoDataDescription, NoDataEmptyState, NoDataMedia, NoDataTitle, NoSupportDescription, NoSupportEmptyState, NoSupportMedia, NoSupportTitle, NotFoundDescription, NotFoundEmptyState, NotFoundMedia, NotFoundTitle, type NumberControl, type OTPControl, ProfessionalBadge, type RadioGroupControl, RestrictedAccessDescription, RestrictedAccessEmptyState, RestrictedAccessMedia, RestrictedAccessTitle, RoleBadge, type RoleBadgeRole, SaveBar, type SaveBarProps, type SelectControl, type SliderControl, SubmitButton, type SubmitButtonProps, type SwitchControl, type TextareaControl, type ToggleGroupControl, TrialBadge, type TypedField, UnknownErrorDescription, UnknownErrorEmptyState, UnknownErrorMedia, UnknownErrorTitle, fieldContext, formContext, toFieldErrors, useCopyToClipboard, useSidebar as useDashboardSidebar, useFieldContext, useForm, useFormContext, withForm };
|